
    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_c00000 {
    display:none;
  }
  .loading-indicator_c00000.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00000 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_c00000 { 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_c00000" -> "#page-container .classname_c00000")
 */
.pf_c00000 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00000 { /* 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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00000 { /* 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_c00000 { /* 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_c00000 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00000 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00000 {overflow:visible;}
  }
}
.c_c00000 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00000 { /* 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_c00000:after { /* webkit #35443 */
  content: '';
}
.t_c00000:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00000 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 */
}
.__c00000 { /* 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_c00000 { /* info for Javascript */
  display:none;
}
.l_c00000 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00000 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00000 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00000: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_c00000 {
    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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00000.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_c00000 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00000;src:url('chunks/assets/font_c1076d2e833146986fdab1d6.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;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:ff2_c00000;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.311035;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_c00000;src:url('chunks/assets/font_618bd27ebf292010e853cec8.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;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:ff4_c00000;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:1.284668;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_c00000;src:url('chunks/assets/font_441c02942d9118c15b220b68.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:0.693359;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;}
.m1_c00000{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_c00000{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);}
.v0_c00000{vertical-align:0.000000px;}
.lsb_c00000{letter-spacing:-0.077827px;}
.ls9_c00000{letter-spacing:0.000000px;}
.ls3_c00000{letter-spacing:0.040786px;}
.ls8_c00000{letter-spacing:0.040961px;}
.lsa_c00000{letter-spacing:0.073415px;}
.ls7_c00000{letter-spacing:0.081572px;}
.ls6_c00000{letter-spacing:0.106044px;}
.ls4_c00000{letter-spacing:0.114201px;}
.ls1_c00000{letter-spacing:0.130516px;}
.ls0_c00000{letter-spacing:0.138673px;}
.ls2_c00000{letter-spacing:0.154044px;}
.ls5_c00000{letter-spacing:0.212088px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{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__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00000{word-spacing:-0.525150px;}
.ws0_c00000{word-spacing:-0.301818px;}
.ws4_c00000{word-spacing:-0.277346px;}
.ws1_c00000{word-spacing:-0.114201px;}
.ws6_c00000{word-spacing:-0.106044px;}
.ws9_c00000{word-spacing:-0.065258px;}
.ws7_c00000{word-spacing:-0.057101px;}
.ws3_c00000{word-spacing:-0.024472px;}
.ws5_c00000{word-spacing:0.000000px;}
.ws8_c00000{word-spacing:0.089730px;}
.wsa_c00000{word-spacing:0.217095px;}
._0_c00000{margin-left:-1.142014px;}
._1_c00000{width:1.093070px;}
.fc0_c00000{color:rgb(0,0,0);}
.fs2_c00000{font-size:40.961400px;}
.fs1_c00000{font-size:70.020000px;}
.fs0_c00000{font-size:81.572400px;}
.y0_c00000{bottom:0.000000px;}
.y5_c00000{bottom:254.730450px;}
.y4_c00000{bottom:332.850450px;}
.y8_c00000{bottom:454.890450px;}
.y7_c00000{bottom:533.191137px;}
.y6_c00000{bottom:556.500450px;}
.y3_c00000{bottom:647.940450px;}
.y2_c00000{bottom:1001.017050px;}
.y1_c00000{bottom:1042.230450px;}
.h3_c00000{height:42.721460px;}
.h2_c00000{height:73.028672px;}
.h1_c00000{height:85.077464px;}
.h0_c00000{height:1263.000000px;}
.w0_c00000{width:892.500000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:194.670000px;}
.x5_c00000{left:258.570000px;}
.x7_c00000{left:266.406928px;}
.x6_c00000{left:290.430000px;}
.x2_c00000{left:316.799100px;}
.x4_c00000{left:329.310000px;}
.x3_c00000{left:362.070000px;}
.x8_c00000{left:867.150000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.lsb_c00000{letter-spacing:-0.069179pt;}
.ls9_c00000{letter-spacing:0.000000pt;}
.ls3_c00000{letter-spacing:0.036254pt;}
.ls8_c00000{letter-spacing:0.036410pt;}
.lsa_c00000{letter-spacing:0.065258pt;}
.ls7_c00000{letter-spacing:0.072509pt;}
.ls6_c00000{letter-spacing:0.094261pt;}
.ls4_c00000{letter-spacing:0.101512pt;}
.ls1_c00000{letter-spacing:0.116014pt;}
.ls0_c00000{letter-spacing:0.123265pt;}
.ls2_c00000{letter-spacing:0.136928pt;}
.ls5_c00000{letter-spacing:0.188523pt;}
.ws2_c00000{word-spacing:-0.466800pt;}
.ws0_c00000{word-spacing:-0.268283pt;}
.ws4_c00000{word-spacing:-0.246530pt;}
.ws1_c00000{word-spacing:-0.101512pt;}
.ws6_c00000{word-spacing:-0.094261pt;}
.ws9_c00000{word-spacing:-0.058007pt;}
.ws7_c00000{word-spacing:-0.050756pt;}
.ws3_c00000{word-spacing:-0.021753pt;}
.ws5_c00000{word-spacing:0.000000pt;}
.ws8_c00000{word-spacing:0.079760pt;}
.wsa_c00000{word-spacing:0.192974pt;}
._0_c00000{margin-left:-1.015123pt;}
._1_c00000{width:0.971618pt;}
.fs2_c00000{font-size:36.410133pt;}
.fs1_c00000{font-size:62.240000pt;}
.fs0_c00000{font-size:72.508800pt;}
.y0_c00000{bottom:0.000000pt;}
.y5_c00000{bottom:226.427067pt;}
.y4_c00000{bottom:295.867067pt;}
.y8_c00000{bottom:404.347067pt;}
.y7_c00000{bottom:473.947677pt;}
.y6_c00000{bottom:494.667067pt;}
.y3_c00000{bottom:575.947067pt;}
.y2_c00000{bottom:889.792933pt;}
.y1_c00000{bottom:926.427067pt;}
.h3_c00000{height:37.974631pt;}
.h2_c00000{height:64.914375pt;}
.h1_c00000{height:75.624413pt;}
.h0_c00000{height:1122.666667pt;}
.w0_c00000{width:793.333333pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:173.040000pt;}
.x5_c00000{left:229.840000pt;}
.x7_c00000{left:236.806158pt;}
.x6_c00000{left:258.160000pt;}
.x2_c00000{left:281.599200pt;}
.x4_c00000{left:292.720000pt;}
.x3_c00000{left:321.840000pt;}
.x8_c00000{left:770.800000pt;}
}





/* 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_c00001 {
    display:none;
  }
  .loading-indicator_c00001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00001 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_c00001 { 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_c00001" -> "#page-container .classname_c00001")
 */
.pf_c00001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00001 { /* 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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00001 { /* 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_c00001 { /* 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_c00001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00001 {overflow:visible;}
  }
}
.c_c00001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00001 { /* 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_c00001:after { /* webkit #35443 */
  content: '';
}
.t_c00001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00001 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 */
}
.__c00001 { /* 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_c00001 { /* info for Javascript */
  display:none;
}
.l_c00001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00001: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_c00001 {
    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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00001.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_c00001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_b31a54872e34033b2ecf4118.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:0.921000;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_c00001;src:url('chunks/assets/font_354144db72ab72fad25d5acc.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:0.747000;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_c00001;src:url('chunks/assets/font_b3ce2033e8268226e9c31855.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:0.708000;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_c00001;src:url('chunks/assets/font_56d3ded94c84aafe40f628db.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:0.666000;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_c00001;src:url('chunks/assets/font_219590faf9d3d6ae8a5d5f0e.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:5.242508;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_c00001;src:url('chunks/assets/font_eaf60326547278b92c86aa96.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:1.656000;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_c00001;src:url('chunks/assets/font_03e08f69ea58d5cc2bf23c92.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:0.672000;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_c00001;src:url('chunks/assets/font_837334c5d87c095d0cb87a07.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:2.622000;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_c00001;src:url('chunks/assets/font_4652840e429ca95b9c3f2831.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{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_c00001{transform:matrix(0.250000,-0.000350,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,-0.000350,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,-0.000350,0.000000,0.250000,0,0);}
.v3_c00001{vertical-align:-20.880000px;}
.v2_c00001{vertical-align:-10.560000px;}
.v5_c00001{vertical-align:-6.720000px;}
.v6_c00001{vertical-align:-3.900000px;}
.v0_c00001{vertical-align:0.000000px;}
.v4_c00001{vertical-align:2.340000px;}
.v7_c00001{vertical-align:4.620000px;}
.v8_c00001{vertical-align:7.860000px;}
.v1_c00001{vertical-align:12.960000px;}
.ls56_c00001{letter-spacing:-1.465200px;}
.ls44_c00001{letter-spacing:-1.292400px;}
.ls4e_c00001{letter-spacing:-0.844200px;}
.ls45_c00001{letter-spacing:-0.511200px;}
.ls55_c00001{letter-spacing:-0.414000px;}
.ls4f_c00001{letter-spacing:-0.410400px;}
.ls4b_c00001{letter-spacing:-0.345600px;}
.ls4d_c00001{letter-spacing:-0.339000px;}
.ls46_c00001{letter-spacing:-0.271800px;}
.ls4a_c00001{letter-spacing:-0.252000px;}
.ls52_c00001{letter-spacing:-0.144000px;}
.ls48_c00001{letter-spacing:-0.108000px;}
.ls50_c00001{letter-spacing:-0.102000px;}
.ls53_c00001{letter-spacing:-0.094200px;}
.ls49_c00001{letter-spacing:-0.070800px;}
.ls57_c00001{letter-spacing:-0.060000px;}
.ls58_c00001{letter-spacing:-0.059400px;}
.ls43_c00001{letter-spacing:-0.028800px;}
.ls4c_c00001{letter-spacing:-0.021000px;}
.ls54_c00001{letter-spacing:-0.009600px;}
.ls47_c00001{letter-spacing:-0.008400px;}
.ls51_c00001{letter-spacing:-0.001800px;}
.ls41_c00001{letter-spacing:-0.000600px;}
.ls42_c00001{letter-spacing:0.000000px;}
.ls4_c00001{letter-spacing:0.000600px;}
.ls29_c00001{letter-spacing:0.001800px;}
.ls3d_c00001{letter-spacing:0.008400px;}
.ls2d_c00001{letter-spacing:0.010800px;}
.ls30_c00001{letter-spacing:0.011400px;}
.ls20_c00001{letter-spacing:0.034200px;}
.ls33_c00001{letter-spacing:0.036000px;}
.ls12_c00001{letter-spacing:0.041400px;}
.ls18_c00001{letter-spacing:0.042600px;}
.ls1f_c00001{letter-spacing:0.052200px;}
.ls40_c00001{letter-spacing:0.060000px;}
.lsd_c00001{letter-spacing:0.063600px;}
.ls39_c00001{letter-spacing:0.064200px;}
.ls17_c00001{letter-spacing:0.064800px;}
.ls14_c00001{letter-spacing:0.076800px;}
.ls6_c00001{letter-spacing:0.080400px;}
.ls1_c00001{letter-spacing:0.085200px;}
.ls7_c00001{letter-spacing:0.086400px;}
.ls0_c00001{letter-spacing:0.097200px;}
.ls3e_c00001{letter-spacing:0.120000px;}
.lse_c00001{letter-spacing:0.129000px;}
.ls2_c00001{letter-spacing:0.133200px;}
.lsb_c00001{letter-spacing:0.136800px;}
.ls8_c00001{letter-spacing:0.160200px;}
.ls37_c00001{letter-spacing:0.163200px;}
.ls3_c00001{letter-spacing:0.164400px;}
.ls11_c00001{letter-spacing:0.169800px;}
.lsf_c00001{letter-spacing:0.183000px;}
.ls3f_c00001{letter-spacing:0.189600px;}
.ls24_c00001{letter-spacing:0.207000px;}
.ls19_c00001{letter-spacing:0.225600px;}
.ls2c_c00001{letter-spacing:0.233400px;}
.ls3a_c00001{letter-spacing:0.248400px;}
.ls31_c00001{letter-spacing:0.254400px;}
.ls35_c00001{letter-spacing:0.255600px;}
.ls36_c00001{letter-spacing:0.264000px;}
.ls3b_c00001{letter-spacing:0.299400px;}
.ls2f_c00001{letter-spacing:0.300000px;}
.ls9_c00001{letter-spacing:0.312000px;}
.ls38_c00001{letter-spacing:0.334200px;}
.ls2e_c00001{letter-spacing:0.338400px;}
.ls1e_c00001{letter-spacing:0.348000px;}
.ls1c_c00001{letter-spacing:0.361800px;}
.ls10_c00001{letter-spacing:0.370800px;}
.ls15_c00001{letter-spacing:0.422400px;}
.ls3c_c00001{letter-spacing:0.472800px;}
.ls16_c00001{letter-spacing:0.479400px;}
.ls23_c00001{letter-spacing:0.481800px;}
.ls2b_c00001{letter-spacing:0.495600px;}
.ls32_c00001{letter-spacing:0.554400px;}
.ls21_c00001{letter-spacing:0.574800px;}
.ls1b_c00001{letter-spacing:0.576000px;}
.ls13_c00001{letter-spacing:0.630000px;}
.ls1d_c00001{letter-spacing:0.723600px;}
.ls22_c00001{letter-spacing:0.910800px;}
.ls2a_c00001{letter-spacing:0.993600px;}
.lsa_c00001{letter-spacing:1.040400px;}
.ls26_c00001{letter-spacing:1.087200px;}
.ls5_c00001{letter-spacing:1.702800px;}
.lsc_c00001{letter-spacing:1.857600px;}
.ls27_c00001{letter-spacing:2.098800px;}
.ls1a_c00001{letter-spacing:2.160000px;}
.ls25_c00001{letter-spacing:2.368800px;}
.ls28_c00001{letter-spacing:21.630000px;}
.ls34_c00001{letter-spacing:264.774000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{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__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00001{word-spacing:-25.500000px;}
.ws1_c00001{word-spacing:-24.000000px;}
.ws2_c00001{word-spacing:-16.848000px;}
.ws6_c00001{word-spacing:-16.564200px;}
.ws5_c00001{word-spacing:-16.501800px;}
.ws3_c00001{word-spacing:-16.500000px;}
.ws0_c00001{word-spacing:-9.000000px;}
.ws7_c00001{word-spacing:0.000000px;}
._6_c00001{margin-left:-5.682000px;}
._5_c00001{margin-left:-3.777000px;}
._11_c00001{margin-left:-1.031400px;}
._2_c00001{width:1.080000px;}
._b_c00001{width:2.391600px;}
._1_c00001{width:3.399000px;}
._3_c00001{width:5.376000px;}
._9_c00001{width:6.608400px;}
._4_c00001{width:8.015400px;}
._7_c00001{width:10.069200px;}
._14_c00001{width:11.136600px;}
._0_c00001{width:12.628800px;}
._12_c00001{width:20.946000px;}
._8_c00001{width:24.169800px;}
._f_c00001{width:26.190000px;}
._10_c00001{width:30.670800px;}
._13_c00001{width:50.922000px;}
._a_c00001{width:62.766000px;}
._d_c00001{width:104.424000px;}
._e_c00001{width:167.826000px;}
._c_c00001{width:175.616400px;}
.fc0_c00001{color:rgb(0,0,0);}
.fs4_c00001{font-size:21.000000px;}
.fs2_c00001{font-size:24.000000px;}
.fs1_c00001{font-size:27.000000px;}
.fs0_c00001{font-size:36.000000px;}
.fs5_c00001{font-size:45.000000px;}
.fs3_c00001{font-size:66.000000px;}
.fs6_c00001{font-size:102.000000px;}
.y0_c00001{bottom:0.000000px;}
.y10_c00001{bottom:390.000000px;}
.yf_c00001{bottom:550.320000px;}
.ye_c00001{bottom:639.360000px;}
.yd_c00001{bottom:728.670000px;}
.yc_c00001{bottom:817.260000px;}
.yb_c00001{bottom:871.305000px;}
.ya_c00001{bottom:906.915000px;}
.y9_c00001{bottom:925.335000px;}
.y8_c00001{bottom:942.975000px;}
.y7_c00001{bottom:960.495000px;}
.y6_c00001{bottom:978.195000px;}
.y5_c00001{bottom:995.955000px;}
.y4_c00001{bottom:1031.400000px;}
.y3_c00001{bottom:1048.995000px;}
.y2_c00001{bottom:1066.680000px;}
.y1_c00001{bottom:1070.310000px;}
.h2_c00001{height:31.680000px;}
.h3_c00001{height:189.704308px;}
.h5_c00001{height:192.224308px;}
.h4_c00001{height:258.984000px;}
.h1_c00001{height:1263.000000px;}
.h0_c00001{height:1263.240000px;}
.w1_c00001{width:892.500000px;}
.w0_c00001{width:892.800000px;}
.x0_c00001{left:0.000000px;}
.x4_c00001{left:273.795000px;}
.x5_c00001{left:278.475000px;}
.x2_c00001{left:287.835000px;}
.x3_c00001{left:292.500000px;}
.x1_c00001{left:538.020000px;}
@media print{
.v3_c00001{vertical-align:-18.560000pt;}
.v2_c00001{vertical-align:-9.386667pt;}
.v5_c00001{vertical-align:-5.973333pt;}
.v6_c00001{vertical-align:-3.466667pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v4_c00001{vertical-align:2.080000pt;}
.v7_c00001{vertical-align:4.106667pt;}
.v8_c00001{vertical-align:6.986667pt;}
.v1_c00001{vertical-align:11.520000pt;}
.ls56_c00001{letter-spacing:-1.302400pt;}
.ls44_c00001{letter-spacing:-1.148800pt;}
.ls4e_c00001{letter-spacing:-0.750400pt;}
.ls45_c00001{letter-spacing:-0.454400pt;}
.ls55_c00001{letter-spacing:-0.368000pt;}
.ls4f_c00001{letter-spacing:-0.364800pt;}
.ls4b_c00001{letter-spacing:-0.307200pt;}
.ls4d_c00001{letter-spacing:-0.301333pt;}
.ls46_c00001{letter-spacing:-0.241600pt;}
.ls4a_c00001{letter-spacing:-0.224000pt;}
.ls52_c00001{letter-spacing:-0.128000pt;}
.ls48_c00001{letter-spacing:-0.096000pt;}
.ls50_c00001{letter-spacing:-0.090667pt;}
.ls53_c00001{letter-spacing:-0.083733pt;}
.ls49_c00001{letter-spacing:-0.062933pt;}
.ls57_c00001{letter-spacing:-0.053333pt;}
.ls58_c00001{letter-spacing:-0.052800pt;}
.ls43_c00001{letter-spacing:-0.025600pt;}
.ls4c_c00001{letter-spacing:-0.018667pt;}
.ls54_c00001{letter-spacing:-0.008533pt;}
.ls47_c00001{letter-spacing:-0.007467pt;}
.ls51_c00001{letter-spacing:-0.001600pt;}
.ls41_c00001{letter-spacing:-0.000533pt;}
.ls42_c00001{letter-spacing:0.000000pt;}
.ls4_c00001{letter-spacing:0.000533pt;}
.ls29_c00001{letter-spacing:0.001600pt;}
.ls3d_c00001{letter-spacing:0.007467pt;}
.ls2d_c00001{letter-spacing:0.009600pt;}
.ls30_c00001{letter-spacing:0.010133pt;}
.ls20_c00001{letter-spacing:0.030400pt;}
.ls33_c00001{letter-spacing:0.032000pt;}
.ls12_c00001{letter-spacing:0.036800pt;}
.ls18_c00001{letter-spacing:0.037867pt;}
.ls1f_c00001{letter-spacing:0.046400pt;}
.ls40_c00001{letter-spacing:0.053333pt;}
.lsd_c00001{letter-spacing:0.056533pt;}
.ls39_c00001{letter-spacing:0.057067pt;}
.ls17_c00001{letter-spacing:0.057600pt;}
.ls14_c00001{letter-spacing:0.068267pt;}
.ls6_c00001{letter-spacing:0.071467pt;}
.ls1_c00001{letter-spacing:0.075733pt;}
.ls7_c00001{letter-spacing:0.076800pt;}
.ls0_c00001{letter-spacing:0.086400pt;}
.ls3e_c00001{letter-spacing:0.106667pt;}
.lse_c00001{letter-spacing:0.114667pt;}
.ls2_c00001{letter-spacing:0.118400pt;}
.lsb_c00001{letter-spacing:0.121600pt;}
.ls8_c00001{letter-spacing:0.142400pt;}
.ls37_c00001{letter-spacing:0.145067pt;}
.ls3_c00001{letter-spacing:0.146133pt;}
.ls11_c00001{letter-spacing:0.150933pt;}
.lsf_c00001{letter-spacing:0.162667pt;}
.ls3f_c00001{letter-spacing:0.168533pt;}
.ls24_c00001{letter-spacing:0.184000pt;}
.ls19_c00001{letter-spacing:0.200533pt;}
.ls2c_c00001{letter-spacing:0.207467pt;}
.ls3a_c00001{letter-spacing:0.220800pt;}
.ls31_c00001{letter-spacing:0.226133pt;}
.ls35_c00001{letter-spacing:0.227200pt;}
.ls36_c00001{letter-spacing:0.234667pt;}
.ls3b_c00001{letter-spacing:0.266133pt;}
.ls2f_c00001{letter-spacing:0.266667pt;}
.ls9_c00001{letter-spacing:0.277333pt;}
.ls38_c00001{letter-spacing:0.297067pt;}
.ls2e_c00001{letter-spacing:0.300800pt;}
.ls1e_c00001{letter-spacing:0.309333pt;}
.ls1c_c00001{letter-spacing:0.321600pt;}
.ls10_c00001{letter-spacing:0.329600pt;}
.ls15_c00001{letter-spacing:0.375467pt;}
.ls3c_c00001{letter-spacing:0.420267pt;}
.ls16_c00001{letter-spacing:0.426133pt;}
.ls23_c00001{letter-spacing:0.428267pt;}
.ls2b_c00001{letter-spacing:0.440533pt;}
.ls32_c00001{letter-spacing:0.492800pt;}
.ls21_c00001{letter-spacing:0.510933pt;}
.ls1b_c00001{letter-spacing:0.512000pt;}
.ls13_c00001{letter-spacing:0.560000pt;}
.ls1d_c00001{letter-spacing:0.643200pt;}
.ls22_c00001{letter-spacing:0.809600pt;}
.ls2a_c00001{letter-spacing:0.883200pt;}
.lsa_c00001{letter-spacing:0.924800pt;}
.ls26_c00001{letter-spacing:0.966400pt;}
.ls5_c00001{letter-spacing:1.513600pt;}
.lsc_c00001{letter-spacing:1.651200pt;}
.ls27_c00001{letter-spacing:1.865600pt;}
.ls1a_c00001{letter-spacing:1.920000pt;}
.ls25_c00001{letter-spacing:2.105600pt;}
.ls28_c00001{letter-spacing:19.226667pt;}
.ls34_c00001{letter-spacing:235.354667pt;}
.ws4_c00001{word-spacing:-22.666667pt;}
.ws1_c00001{word-spacing:-21.333333pt;}
.ws2_c00001{word-spacing:-14.976000pt;}
.ws6_c00001{word-spacing:-14.723733pt;}
.ws5_c00001{word-spacing:-14.668267pt;}
.ws3_c00001{word-spacing:-14.666667pt;}
.ws0_c00001{word-spacing:-8.000000pt;}
.ws7_c00001{word-spacing:0.000000pt;}
._6_c00001{margin-left:-5.050667pt;}
._5_c00001{margin-left:-3.357333pt;}
._11_c00001{margin-left:-0.916800pt;}
._2_c00001{width:0.960000pt;}
._b_c00001{width:2.125867pt;}
._1_c00001{width:3.021333pt;}
._3_c00001{width:4.778667pt;}
._9_c00001{width:5.874133pt;}
._4_c00001{width:7.124800pt;}
._7_c00001{width:8.950400pt;}
._14_c00001{width:9.899200pt;}
._0_c00001{width:11.225600pt;}
._12_c00001{width:18.618667pt;}
._8_c00001{width:21.484267pt;}
._f_c00001{width:23.280000pt;}
._10_c00001{width:27.262933pt;}
._13_c00001{width:45.264000pt;}
._a_c00001{width:55.792000pt;}
._d_c00001{width:92.821333pt;}
._e_c00001{width:149.178667pt;}
._c_c00001{width:156.103467pt;}
.fs4_c00001{font-size:18.666667pt;}
.fs2_c00001{font-size:21.333333pt;}
.fs1_c00001{font-size:24.000000pt;}
.fs0_c00001{font-size:32.000000pt;}
.fs5_c00001{font-size:40.000000pt;}
.fs3_c00001{font-size:58.666667pt;}
.fs6_c00001{font-size:90.666667pt;}
.y0_c00001{bottom:0.000000pt;}
.y10_c00001{bottom:346.666667pt;}
.yf_c00001{bottom:489.173333pt;}
.ye_c00001{bottom:568.320000pt;}
.yd_c00001{bottom:647.706667pt;}
.yc_c00001{bottom:726.453333pt;}
.yb_c00001{bottom:774.493333pt;}
.ya_c00001{bottom:806.146667pt;}
.y9_c00001{bottom:822.520000pt;}
.y8_c00001{bottom:838.200000pt;}
.y7_c00001{bottom:853.773333pt;}
.y6_c00001{bottom:869.506667pt;}
.y5_c00001{bottom:885.293333pt;}
.y4_c00001{bottom:916.800000pt;}
.y3_c00001{bottom:932.440000pt;}
.y2_c00001{bottom:948.160000pt;}
.y1_c00001{bottom:951.386667pt;}
.h2_c00001{height:28.160000pt;}
.h3_c00001{height:168.626051pt;}
.h5_c00001{height:170.866051pt;}
.h4_c00001{height:230.208000pt;}
.h1_c00001{height:1122.666667pt;}
.h0_c00001{height:1122.880000pt;}
.w1_c00001{width:793.333333pt;}
.w0_c00001{width:793.600000pt;}
.x0_c00001{left:0.000000pt;}
.x4_c00001{left:243.373333pt;}
.x5_c00001{left:247.533333pt;}
.x2_c00001{left:255.853333pt;}
.x3_c00001{left:260.000000pt;}
.x1_c00001{left:478.240000pt;}
}





/* 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_c00002 {
    display:none;
  }
  .loading-indicator_c00002.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00002 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_c00002 { 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_c00002" -> "#page-container .classname_c00002")
 */
.pf_c00002 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00002 { /* 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_c00002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00002 { /* 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_c00002 { /* 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_c00002 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00002 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00002 {overflow:visible;}
  }
}
.c_c00002 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00002 { /* 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_c00002:after { /* webkit #35443 */
  content: '';
}
.t_c00002:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00002 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 */
}
.__c00002 { /* 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_c00002 { /* info for Javascript */
  display:none;
}
.l_c00002 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00002 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00002 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00002: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_c00002 {
    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_c00002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00002.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_c00002 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00002;src:url('chunks/assets/font_0c4bc37ebcc7ded836885049.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:0.716000;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_c00002;src:url('chunks/assets/font_7ee90ea63e7d823153f53594.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.048000;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_c00002;src:url('chunks/assets/font_44b5a6ff3c9027619df8ddfe.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:0.911000;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_c00002;src:url('chunks/assets/font_17b218cdba9142051ebdc8e8.woff2')format("woff");}.ff4_c00002{font-family:ff4_c00002;line-height:0.928000;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_c00002;src:url('chunks/assets/font_fb5fa5bcae5c02b587774c5f.woff2')format("woff");}.ff5_c00002{font-family:ff5_c00002;line-height:0.677000;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_c00002;src:url('chunks/assets/font_ebddd5e0f7cda0b788101167.woff2')format("woff");}.ff6_c00002{font-family:ff6_c00002;line-height:0.826000;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_c00002;src:url('chunks/assets/font_8a91270abe5dae7a1ad157fb.woff2')format("woff");}.ff7_c00002{font-family:ff7_c00002;line-height:0.855000;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_c00002;src:url('chunks/assets/font_705344797b47876cd86572c3.woff2')format("woff");}.ff8_c00002{font-family:ff8_c00002;line-height:0.719583;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_c00002;src:url('chunks/assets/font_01d012c202c38caf8cbc6a6b.woff2')format("woff");}.ff9_c00002{font-family:ff9_c00002;line-height:0.720000;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_c00002;src:url('chunks/assets/font_c30ab98d684a8ba78b28dcf0.woff2')format("woff");}.ffa_c00002{font-family:ffa_c00002;line-height:0.676000;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_c00002;src:url('chunks/assets/font_97df45bc94cd997ba798adcd.woff2')format("woff");}.ffb_c00002{font-family:ffb_c00002;line-height:0.764000;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_c00002;src:url('chunks/assets/font_b4d17519dd044fe96bb09306.woff2')format("woff");}.ffc_c00002{font-family:ffc_c00002;line-height:0.780000;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_c00002;src:url('chunks/assets/font_828dd85b3c7717f0986162e0.woff2')format("woff");}.ffd_c00002{font-family:ffd_c00002;line-height:0.807000;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_c00002;src:url('chunks/assets/font_44700c224c395af61cf86ce7.woff2')format("woff");}.ffe_c00002{font-family:ffe_c00002;line-height:0.702000;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_c00002;src:url('chunks/assets/font_789de3e68baeca9d4f49aa19.woff2')format("woff");}.fff_c00002{font-family:fff_c00002;line-height:0.774000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{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);}
.v5_c00002{vertical-align:-22.440000px;}
.v0_c00002{vertical-align:0.000000px;}
.v1_c00002{vertical-align:1.800000px;}
.v3_c00002{vertical-align:11.160000px;}
.v2_c00002{vertical-align:20.040000px;}
.v4_c00002{vertical-align:22.380000px;}
.ls26_c00002{letter-spacing:-0.529200px;}
.ls18_c00002{letter-spacing:-0.392400px;}
.ls25_c00002{letter-spacing:-0.360000px;}
.ls1c_c00002{letter-spacing:-0.241200px;}
.ls28_c00002{letter-spacing:-0.237600px;}
.ls1e_c00002{letter-spacing:-0.187200px;}
.ls1b_c00002{letter-spacing:-0.178200px;}
.ls22_c00002{letter-spacing:-0.130800px;}
.ls23_c00002{letter-spacing:-0.097200px;}
.ls19_c00002{letter-spacing:-0.086400px;}
.ls24_c00002{letter-spacing:-0.079800px;}
.ls20_c00002{letter-spacing:-0.069600px;}
.ls27_c00002{letter-spacing:-0.053400px;}
.ls1f_c00002{letter-spacing:-0.047400px;}
.ls21_c00002{letter-spacing:-0.038400px;}
.ls1d_c00002{letter-spacing:-0.007800px;}
.ls1a_c00002{letter-spacing:0.000000px;}
.ls4_c00002{letter-spacing:0.002400px;}
.lsc_c00002{letter-spacing:0.007200px;}
.lsb_c00002{letter-spacing:0.013800px;}
.ls2_c00002{letter-spacing:0.014400px;}
.ls3_c00002{letter-spacing:0.018000px;}
.ls6_c00002{letter-spacing:0.026400px;}
.ls5_c00002{letter-spacing:0.039600px;}
.lsa_c00002{letter-spacing:0.044400px;}
.ls10_c00002{letter-spacing:0.052800px;}
.ls13_c00002{letter-spacing:0.060000px;}
.ls16_c00002{letter-spacing:0.063600px;}
.ls15_c00002{letter-spacing:0.064800px;}
.ls0_c00002{letter-spacing:0.075000px;}
.ls8_c00002{letter-spacing:0.079200px;}
.ls9_c00002{letter-spacing:0.081000px;}
.lse_c00002{letter-spacing:0.084000px;}
.ls7_c00002{letter-spacing:0.116400px;}
.ls1_c00002{letter-spacing:0.133800px;}
.lsd_c00002{letter-spacing:0.145800px;}
.ls11_c00002{letter-spacing:0.180000px;}
.lsf_c00002{letter-spacing:0.396000px;}
.ls17_c00002{letter-spacing:0.496800px;}
.ls12_c00002{letter-spacing:2.856000px;}
.ls14_c00002{letter-spacing:12.990000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{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__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:-11.640000px;}
.ws1_c00002{word-spacing:0.000000px;}
._a_c00002{margin-left:-14.490000px;}
._8_c00002{margin-left:-10.398000px;}
._7_c00002{margin-left:-7.716000px;}
._4_c00002{margin-left:-6.214800px;}
._3_c00002{margin-left:-4.057200px;}
._5_c00002{margin-left:-2.935200px;}
._0_c00002{margin-left:-1.251000px;}
._2_c00002{width:1.455600px;}
._1_c00002{width:3.589200px;}
._9_c00002{width:4.650000px;}
._b_c00002{width:5.994000px;}
._6_c00002{width:11.052000px;}
.fc0_c00002{color:rgb(0,0,0);}
.fs5_c00002{font-size:36.000000px;}
.fs9_c00002{font-size:39.000000px;}
.fs3_c00002{font-size:48.000000px;}
.fs8_c00002{font-size:60.000000px;}
.fs4_c00002{font-size:66.000000px;}
.fs2_c00002{font-size:72.000000px;}
.fs1_c00002{font-size:78.000000px;}
.fs6_c00002{font-size:81.000000px;}
.fs0_c00002{font-size:87.000000px;}
.fs7_c00002{font-size:96.000000px;}
.y0_c00002{bottom:0.000000px;}
.yf_c00002{bottom:192.225000px;}
.y9_c00002{bottom:407.790000px;}
.y8_c00002{bottom:500.865000px;}
.y7_c00002{bottom:531.660000px;}
.ye_c00002{bottom:539.280000px;}
.yd_c00002{bottom:561.285000px;}
.yc_c00002{bottom:587.130000px;}
.yb_c00002{bottom:601.635000px;}
.ya_c00002{bottom:620.955000px;}
.y6_c00002{bottom:671.760000px;}
.y5_c00002{bottom:707.850000px;}
.y4_c00002{bottom:834.525000px;}
.y3_c00002{bottom:895.770000px;}
.y2_c00002{bottom:999.405000px;}
.y1_c00002{bottom:1071.360000px;}
.h8_c00002{height:38.208000px;}
.h7_c00002{height:40.008000px;}
.h5_c00002{height:51.948000px;}
.h2_c00002{height:59.508000px;}
.h6_c00002{height:63.336000px;}
.h3_c00002{height:65.520000px;}
.ha_c00002{height:66.852000px;}
.h4_c00002{height:77.778000px;}
.h9_c00002{height:78.072000px;}
.h1_c00002{height:1263.000000px;}
.h0_c00002{height:1263.240000px;}
.w1_c00002{width:892.500000px;}
.w0_c00002{width:892.800000px;}
.x0_c00002{left:0.000000px;}
.x7_c00002{left:112.860000px;}
.x5_c00002{left:134.460000px;}
.x8_c00002{left:165.780000px;}
.x1_c00002{left:173.340000px;}
.x2_c00002{left:245.355000px;}
.x4_c00002{left:257.235000px;}
.x3_c00002{left:304.035000px;}
.x6_c00002{left:377.205000px;}
.xc_c00002{left:608.940000px;}
.xa_c00002{left:632.700000px;}
.x9_c00002{left:635.940000px;}
.xb_c00002{left:657.180000px;}
@media print{
.v5_c00002{vertical-align:-19.946667pt;}
.v0_c00002{vertical-align:0.000000pt;}
.v1_c00002{vertical-align:1.600000pt;}
.v3_c00002{vertical-align:9.920000pt;}
.v2_c00002{vertical-align:17.813333pt;}
.v4_c00002{vertical-align:19.893333pt;}
.ls26_c00002{letter-spacing:-0.470400pt;}
.ls18_c00002{letter-spacing:-0.348800pt;}
.ls25_c00002{letter-spacing:-0.320000pt;}
.ls1c_c00002{letter-spacing:-0.214400pt;}
.ls28_c00002{letter-spacing:-0.211200pt;}
.ls1e_c00002{letter-spacing:-0.166400pt;}
.ls1b_c00002{letter-spacing:-0.158400pt;}
.ls22_c00002{letter-spacing:-0.116267pt;}
.ls23_c00002{letter-spacing:-0.086400pt;}
.ls19_c00002{letter-spacing:-0.076800pt;}
.ls24_c00002{letter-spacing:-0.070933pt;}
.ls20_c00002{letter-spacing:-0.061867pt;}
.ls27_c00002{letter-spacing:-0.047467pt;}
.ls1f_c00002{letter-spacing:-0.042133pt;}
.ls21_c00002{letter-spacing:-0.034133pt;}
.ls1d_c00002{letter-spacing:-0.006933pt;}
.ls1a_c00002{letter-spacing:0.000000pt;}
.ls4_c00002{letter-spacing:0.002133pt;}
.lsc_c00002{letter-spacing:0.006400pt;}
.lsb_c00002{letter-spacing:0.012267pt;}
.ls2_c00002{letter-spacing:0.012800pt;}
.ls3_c00002{letter-spacing:0.016000pt;}
.ls6_c00002{letter-spacing:0.023467pt;}
.ls5_c00002{letter-spacing:0.035200pt;}
.lsa_c00002{letter-spacing:0.039467pt;}
.ls10_c00002{letter-spacing:0.046933pt;}
.ls13_c00002{letter-spacing:0.053333pt;}
.ls16_c00002{letter-spacing:0.056533pt;}
.ls15_c00002{letter-spacing:0.057600pt;}
.ls0_c00002{letter-spacing:0.066667pt;}
.ls8_c00002{letter-spacing:0.070400pt;}
.ls9_c00002{letter-spacing:0.072000pt;}
.lse_c00002{letter-spacing:0.074667pt;}
.ls7_c00002{letter-spacing:0.103467pt;}
.ls1_c00002{letter-spacing:0.118933pt;}
.lsd_c00002{letter-spacing:0.129600pt;}
.ls11_c00002{letter-spacing:0.160000pt;}
.lsf_c00002{letter-spacing:0.352000pt;}
.ls17_c00002{letter-spacing:0.441600pt;}
.ls12_c00002{letter-spacing:2.538667pt;}
.ls14_c00002{letter-spacing:11.546667pt;}
.ws0_c00002{word-spacing:-10.346667pt;}
.ws1_c00002{word-spacing:0.000000pt;}
._a_c00002{margin-left:-12.880000pt;}
._8_c00002{margin-left:-9.242667pt;}
._7_c00002{margin-left:-6.858667pt;}
._4_c00002{margin-left:-5.524267pt;}
._3_c00002{margin-left:-3.606400pt;}
._5_c00002{margin-left:-2.609067pt;}
._0_c00002{margin-left:-1.112000pt;}
._2_c00002{width:1.293867pt;}
._1_c00002{width:3.190400pt;}
._9_c00002{width:4.133333pt;}
._b_c00002{width:5.328000pt;}
._6_c00002{width:9.824000pt;}
.fs5_c00002{font-size:32.000000pt;}
.fs9_c00002{font-size:34.666667pt;}
.fs3_c00002{font-size:42.666667pt;}
.fs8_c00002{font-size:53.333333pt;}
.fs4_c00002{font-size:58.666667pt;}
.fs2_c00002{font-size:64.000000pt;}
.fs1_c00002{font-size:69.333333pt;}
.fs6_c00002{font-size:72.000000pt;}
.fs0_c00002{font-size:77.333333pt;}
.fs7_c00002{font-size:85.333333pt;}
.y0_c00002{bottom:0.000000pt;}
.yf_c00002{bottom:170.866667pt;}
.y9_c00002{bottom:362.480000pt;}
.y8_c00002{bottom:445.213333pt;}
.y7_c00002{bottom:472.586667pt;}
.ye_c00002{bottom:479.360000pt;}
.yd_c00002{bottom:498.920000pt;}
.yc_c00002{bottom:521.893333pt;}
.yb_c00002{bottom:534.786667pt;}
.ya_c00002{bottom:551.960000pt;}
.y6_c00002{bottom:597.120000pt;}
.y5_c00002{bottom:629.200000pt;}
.y4_c00002{bottom:741.800000pt;}
.y3_c00002{bottom:796.240000pt;}
.y2_c00002{bottom:888.360000pt;}
.y1_c00002{bottom:952.320000pt;}
.h8_c00002{height:33.962667pt;}
.h7_c00002{height:35.562667pt;}
.h5_c00002{height:46.176000pt;}
.h2_c00002{height:52.896000pt;}
.h6_c00002{height:56.298667pt;}
.h3_c00002{height:58.240000pt;}
.ha_c00002{height:59.424000pt;}
.h4_c00002{height:69.136000pt;}
.h9_c00002{height:69.397333pt;}
.h1_c00002{height:1122.666667pt;}
.h0_c00002{height:1122.880000pt;}
.w1_c00002{width:793.333333pt;}
.w0_c00002{width:793.600000pt;}
.x0_c00002{left:0.000000pt;}
.x7_c00002{left:100.320000pt;}
.x5_c00002{left:119.520000pt;}
.x8_c00002{left:147.360000pt;}
.x1_c00002{left:154.080000pt;}
.x2_c00002{left:218.093333pt;}
.x4_c00002{left:228.653333pt;}
.x3_c00002{left:270.253333pt;}
.x6_c00002{left:335.293333pt;}
.xc_c00002{left:541.280000pt;}
.xa_c00002{left:562.400000pt;}
.x9_c00002{left:565.280000pt;}
.xb_c00002{left:584.160000pt;}
}





/* 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_c00003 {
    display:none;
  }
  .loading-indicator_c00003.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00003 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_c00003 { 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_c00003" -> "#page-container .classname_c00003")
 */
.pf_c00003 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00003 { /* 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_c00003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00003 { /* 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_c00003 { /* 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_c00003 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00003 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00003 {overflow:visible;}
  }
}
.c_c00003 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00003 { /* 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_c00003:after { /* webkit #35443 */
  content: '';
}
.t_c00003:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00003 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 */
}
.__c00003 { /* 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_c00003 { /* info for Javascript */
  display:none;
}
.l_c00003 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00003 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00003 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00003: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_c00003 {
    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_c00003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00003.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_c00003 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00003;src:url('chunks/assets/font_ac000e6bbbcad5942168e4b7.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.311035;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_c00003;src:url('chunks/assets/font_740693249c2d91a04ac9eb45.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.284668;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_c00003;src:url('chunks/assets/font_da53acb9a6b1ecbe27405693.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;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;}
.m6_c00003{transform:matrix(0.202607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202607,0.000000,0.000000,0.250000,0,0);}
.m2_c00003{transform:matrix(0.222743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222743,0.000000,0.000000,0.250000,0,0);}
.m3_c00003{transform:matrix(0.243306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243306,0.000000,0.000000,0.250000,0,0);}
.m8_c00003{transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);}
.m1_c00003{transform:matrix(0.246884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246884,0.000000,0.000000,0.250000,0,0);}
.m5_c00003{transform:matrix(0.247004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247004,0.000000,0.000000,0.250000,0,0);}
.m4_c00003{transform:matrix(0.247804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247804,0.000000,0.000000,0.250000,0,0);}
.m9_c00003{transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);}
.m7_c00003{transform:matrix(0.249216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249216,0.000000,0.000000,0.250000,0,0);}
.m0_c00003{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);}
.v0_c00003{vertical-align:0.000000px;}
.ls34_c00003{letter-spacing:-2.499000px;}
.ls4a_c00003{letter-spacing:-2.457000px;}
.ls48_c00003{letter-spacing:-2.415000px;}
.ls42_c00003{letter-spacing:-2.077740px;}
.ls53_c00003{letter-spacing:-2.042040px;}
.ls4d_c00003{letter-spacing:-1.977780px;}
.ls37_c00003{letter-spacing:-1.884960px;}
.ls4b_c00003{letter-spacing:-1.874340px;}
.ls46_c00003{letter-spacing:-1.827840px;}
.ls6c_c00003{letter-spacing:-1.720740px;}
.ls4c_c00003{letter-spacing:-1.499400px;}
.ls5b_c00003{letter-spacing:-1.485120px;}
.ls62_c00003{letter-spacing:-1.470840px;}
.ls35_c00003{letter-spacing:-1.356600px;}
.ls6b_c00003{letter-spacing:-1.292340px;}
.ls39_c00003{letter-spacing:-1.192380px;}
.ls69_c00003{letter-spacing:-1.163820px;}
.ls51_c00003{letter-spacing:-1.120980px;}
.ls59_c00003{letter-spacing:-1.035300px;}
.ls3c_c00003{letter-spacing:-0.885360px;}
.ls66_c00003{letter-spacing:-0.799680px;}
.ls4e_c00003{letter-spacing:-0.763980px;}
.ls47_c00003{letter-spacing:-0.749700px;}
.ls45_c00003{letter-spacing:-0.728280px;}
.ls32_c00003{letter-spacing:-0.699720px;}
.ls56_c00003{letter-spacing:-0.578340px;}
.ls49_c00003{letter-spacing:-0.558900px;}
.ls5a_c00003{letter-spacing:-0.549780px;}
.ls3f_c00003{letter-spacing:-0.464100px;}
.ls64_c00003{letter-spacing:-0.449820px;}
.ls52_c00003{letter-spacing:-0.406980px;}
.ls61_c00003{letter-spacing:-0.392700px;}
.ls5f_c00003{letter-spacing:-0.378420px;}
.ls38_c00003{letter-spacing:-0.371280px;}
.ls40_c00003{letter-spacing:-0.364140px;}
.ls41_c00003{letter-spacing:-0.357000px;}
.ls3d_c00003{letter-spacing:-0.342720px;}
.ls36_c00003{letter-spacing:-0.285600px;}
.ls58_c00003{letter-spacing:-0.271320px;}
.ls6a_c00003{letter-spacing:-0.257040px;}
.ls50_c00003{letter-spacing:-0.249900px;}
.ls55_c00003{letter-spacing:-0.221340px;}
.ls67_c00003{letter-spacing:-0.214200px;}
.ls3a_c00003{letter-spacing:-0.207060px;}
.ls43_c00003{letter-spacing:-0.171360px;}
.ls54_c00003{letter-spacing:-0.157080px;}
.ls63_c00003{letter-spacing:-0.121380px;}
.ls5e_c00003{letter-spacing:-0.114240px;}
.ls60_c00003{letter-spacing:-0.099960px;}
.ls44_c00003{letter-spacing:-0.085680px;}
.ls65_c00003{letter-spacing:-0.078540px;}
.ls33_c00003{letter-spacing:-0.057120px;}
.ls5d_c00003{letter-spacing:-0.042840px;}
.ls5c_c00003{letter-spacing:-0.035700px;}
.ls57_c00003{letter-spacing:-0.021420px;}
.ls3e_c00003{letter-spacing:-0.014280px;}
.ls3b_c00003{letter-spacing:0.000000px;}
.ls25_c00003{letter-spacing:0.014280px;}
.ls28_c00003{letter-spacing:0.028560px;}
.ls2f_c00003{letter-spacing:0.035700px;}
.ls6_c00003{letter-spacing:0.078540px;}
.ls7_c00003{letter-spacing:0.085680px;}
.ls2b_c00003{letter-spacing:0.099960px;}
.ls1b_c00003{letter-spacing:0.114240px;}
.ls22_c00003{letter-spacing:0.121380px;}
.ls2c_c00003{letter-spacing:0.128520px;}
.ls9_c00003{letter-spacing:0.135660px;}
.lsb_c00003{letter-spacing:0.142800px;}
.ls12_c00003{letter-spacing:0.149940px;}
.ls11_c00003{letter-spacing:0.157080px;}
.ls3_c00003{letter-spacing:0.171360px;}
.ls15_c00003{letter-spacing:0.192780px;}
.ls14_c00003{letter-spacing:0.199920px;}
.ls18_c00003{letter-spacing:0.207060px;}
.ls29_c00003{letter-spacing:0.221340px;}
.ls1a_c00003{letter-spacing:0.228480px;}
.ls19_c00003{letter-spacing:0.249900px;}
.ls16_c00003{letter-spacing:0.257040px;}
.ls23_c00003{letter-spacing:0.271320px;}
.ls2e_c00003{letter-spacing:0.285600px;}
.ls21_c00003{letter-spacing:0.292740px;}
.ls4_c00003{letter-spacing:0.299880px;}
.ls20_c00003{letter-spacing:0.307020px;}
.ls8_c00003{letter-spacing:0.321300px;}
.ls4f_c00003{letter-spacing:0.328440px;}
.ls13_c00003{letter-spacing:0.342720px;}
.lsc_c00003{letter-spacing:0.349860px;}
.ls1d_c00003{letter-spacing:0.364140px;}
.ls2d_c00003{letter-spacing:0.371280px;}
.ls1e_c00003{letter-spacing:0.378420px;}
.ls1_c00003{letter-spacing:0.406980px;}
.ls1f_c00003{letter-spacing:0.428400px;}
.ls24_c00003{letter-spacing:0.442680px;}
.ls2a_c00003{letter-spacing:0.464100px;}
.ls68_c00003{letter-spacing:0.478380px;}
.ls27_c00003{letter-spacing:0.485520px;}
.lse_c00003{letter-spacing:0.492660px;}
.ls30_c00003{letter-spacing:0.521220px;}
.ls17_c00003{letter-spacing:0.535500px;}
.lsa_c00003{letter-spacing:0.549780px;}
.ls2_c00003{letter-spacing:0.621180px;}
.ls0_c00003{letter-spacing:0.863940px;}
.ls6d_c00003{letter-spacing:0.878220px;}
.ls1c_c00003{letter-spacing:0.913920px;}
.lsd_c00003{letter-spacing:0.921060px;}
.ls5_c00003{letter-spacing:0.971040px;}
.ls26_c00003{letter-spacing:1.063860px;}
.lsf_c00003{letter-spacing:1.085280px;}
.ls10_c00003{letter-spacing:1.399440px;}
.ls31_c00003{letter-spacing:1.752780px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{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__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:0.000000px;}
._d_c00003{margin-left:-2.106300px;}
._c_c00003{margin-left:-1.099560px;}
._b_c00003{width:1.128120px;}
._0_c00003{width:2.977380px;}
._4_c00003{width:4.862340px;}
._5_c00003{width:6.818700px;}
._1_c00003{width:8.575140px;}
._2_c00003{width:10.181640px;}
._3_c00003{width:12.423600px;}
._7_c00003{width:14.394240px;}
._9_c00003{width:15.765120px;}
._f_c00003{width:16.986060px;}
._8_c00003{width:18.999540px;}
._6_c00003{width:20.234760px;}
._a_c00003{width:21.941220px;}
._10_c00003{width:23.219280px;}
._11_c00003{width:24.875760px;}
._e_c00003{width:26.032440px;}
._12_c00003{width:27.389040px;}
._17_c00003{width:30.345000px;}
._13_c00003{width:31.587360px;}
._14_c00003{width:32.644080px;}
._16_c00003{width:35.985600px;}
._15_c00003{width:37.213680px;}
.fc0_c00003{color:transparent;}
.fs6_c00003{font-size:66.000000px;}
.fs4_c00003{font-size:68.400000px;}
.fs2_c00003{font-size:69.000000px;}
.fs3_c00003{font-size:70.200000px;}
.fs1_c00003{font-size:71.400000px;}
.fs5_c00003{font-size:76.800000px;}
.fs0_c00003{font-size:78.600000px;}
.y0_c00003{bottom:0.000000px;}
.y18_c00003{bottom:174.599235px;}
.y17_c00003{bottom:204.858435px;}
.y16_c00003{bottom:266.423085px;}
.y15_c00003{bottom:297.374985px;}
.y14_c00003{bottom:297.381285px;}
.y13_c00003{bottom:328.333185px;}
.y12_c00003{bottom:389.879985px;}
.y11_c00003{bottom:389.905335px;}
.y10_c00003{bottom:420.875085px;}
.yf_c00003{bottom:482.439735px;}
.ye_c00003{bottom:513.391635px;}
.yd_c00003{bottom:544.343535px;}
.yc_c00003{bottom:605.890335px;}
.y1a_c00003{bottom:613.454985px;}
.y19_c00003{bottom:617.039985px;}
.yb_c00003{bottom:636.860085px;}
.ya_c00003{bottom:667.454985px;}
.y9_c00003{bottom:667.463085px;}
.y8_c00003{bottom:698.414985px;}
.y7_c00003{bottom:759.959985px;}
.y6_c00003{bottom:790.932885px;}
.y5_c00003{bottom:852.836685px;}
.y4_c00003{bottom:913.312485px;}
.y3_c00003{bottom:944.639235px;}
.y2_c00003{bottom:974.894985px;}
.y1_c00003{bottom:1068.119985px;}
.h7_c00003{height:68.835938px;}
.h4_c00003{height:69.539062px;}
.h3_c00003{height:70.075195px;}
.h5_c00003{height:70.748437px;}
.h2_c00003{height:79.214062px;}
.h6_c00003{height:80.100000px;}
.h1_c00003{height:1263.000000px;}
.h0_c00003{height:1263.239985px;}
.w1_c00003{width:892.500000px;}
.w0_c00003{width:892.800000px;}
.x0_c00003{left:0.000000px;}
.x5_c00003{left:112.277550px;}
.x2_c00003{left:165.495000px;}
.x6_c00003{left:195.285000px;}
.xf_c00003{left:200.370000px;}
.x10_c00003{left:217.410000px;}
.x7_c00003{left:227.430000px;}
.x8_c00003{left:286.830000px;}
.x9_c00003{left:315.885000px;}
.x1_c00003{left:331.155000px;}
.xa_c00003{left:336.450000px;}
.x11_c00003{left:337.875000px;}
.x12_c00003{left:359.565000px;}
.xb_c00003{left:408.735000px;}
.xd_c00003{left:411.315000px;}
.x13_c00003{left:426.435000px;}
.xe_c00003{left:434.010000px;}
.x3_c00003{left:435.420000px;}
.x14_c00003{left:448.050000px;}
.x4_c00003{left:454.230000px;}
.xc_c00003{left:475.335000px;}
.x15_c00003{left:532.635000px;}
.x16_c00003{left:554.220000px;}
.x18_c00003{left:854.775000px;}
.x17_c00003{left:855.825000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls34_c00003{letter-spacing:-2.221333pt;}
.ls4a_c00003{letter-spacing:-2.184000pt;}
.ls48_c00003{letter-spacing:-2.146667pt;}
.ls42_c00003{letter-spacing:-1.846880pt;}
.ls53_c00003{letter-spacing:-1.815147pt;}
.ls4d_c00003{letter-spacing:-1.758027pt;}
.ls37_c00003{letter-spacing:-1.675520pt;}
.ls4b_c00003{letter-spacing:-1.666080pt;}
.ls46_c00003{letter-spacing:-1.624747pt;}
.ls6c_c00003{letter-spacing:-1.529547pt;}
.ls4c_c00003{letter-spacing:-1.332800pt;}
.ls5b_c00003{letter-spacing:-1.320107pt;}
.ls62_c00003{letter-spacing:-1.307413pt;}
.ls35_c00003{letter-spacing:-1.205867pt;}
.ls6b_c00003{letter-spacing:-1.148747pt;}
.ls39_c00003{letter-spacing:-1.059893pt;}
.ls69_c00003{letter-spacing:-1.034507pt;}
.ls51_c00003{letter-spacing:-0.996427pt;}
.ls59_c00003{letter-spacing:-0.920267pt;}
.ls3c_c00003{letter-spacing:-0.786987pt;}
.ls66_c00003{letter-spacing:-0.710827pt;}
.ls4e_c00003{letter-spacing:-0.679093pt;}
.ls47_c00003{letter-spacing:-0.666400pt;}
.ls45_c00003{letter-spacing:-0.647360pt;}
.ls32_c00003{letter-spacing:-0.621973pt;}
.ls56_c00003{letter-spacing:-0.514080pt;}
.ls49_c00003{letter-spacing:-0.496800pt;}
.ls5a_c00003{letter-spacing:-0.488693pt;}
.ls3f_c00003{letter-spacing:-0.412533pt;}
.ls64_c00003{letter-spacing:-0.399840pt;}
.ls52_c00003{letter-spacing:-0.361760pt;}
.ls61_c00003{letter-spacing:-0.349067pt;}
.ls5f_c00003{letter-spacing:-0.336373pt;}
.ls38_c00003{letter-spacing:-0.330027pt;}
.ls40_c00003{letter-spacing:-0.323680pt;}
.ls41_c00003{letter-spacing:-0.317333pt;}
.ls3d_c00003{letter-spacing:-0.304640pt;}
.ls36_c00003{letter-spacing:-0.253867pt;}
.ls58_c00003{letter-spacing:-0.241173pt;}
.ls6a_c00003{letter-spacing:-0.228480pt;}
.ls50_c00003{letter-spacing:-0.222133pt;}
.ls55_c00003{letter-spacing:-0.196747pt;}
.ls67_c00003{letter-spacing:-0.190400pt;}
.ls3a_c00003{letter-spacing:-0.184053pt;}
.ls43_c00003{letter-spacing:-0.152320pt;}
.ls54_c00003{letter-spacing:-0.139627pt;}
.ls63_c00003{letter-spacing:-0.107893pt;}
.ls5e_c00003{letter-spacing:-0.101547pt;}
.ls60_c00003{letter-spacing:-0.088853pt;}
.ls44_c00003{letter-spacing:-0.076160pt;}
.ls65_c00003{letter-spacing:-0.069813pt;}
.ls33_c00003{letter-spacing:-0.050773pt;}
.ls5d_c00003{letter-spacing:-0.038080pt;}
.ls5c_c00003{letter-spacing:-0.031733pt;}
.ls57_c00003{letter-spacing:-0.019040pt;}
.ls3e_c00003{letter-spacing:-0.012693pt;}
.ls3b_c00003{letter-spacing:0.000000pt;}
.ls25_c00003{letter-spacing:0.012693pt;}
.ls28_c00003{letter-spacing:0.025387pt;}
.ls2f_c00003{letter-spacing:0.031733pt;}
.ls6_c00003{letter-spacing:0.069813pt;}
.ls7_c00003{letter-spacing:0.076160pt;}
.ls2b_c00003{letter-spacing:0.088853pt;}
.ls1b_c00003{letter-spacing:0.101547pt;}
.ls22_c00003{letter-spacing:0.107893pt;}
.ls2c_c00003{letter-spacing:0.114240pt;}
.ls9_c00003{letter-spacing:0.120587pt;}
.lsb_c00003{letter-spacing:0.126933pt;}
.ls12_c00003{letter-spacing:0.133280pt;}
.ls11_c00003{letter-spacing:0.139627pt;}
.ls3_c00003{letter-spacing:0.152320pt;}
.ls15_c00003{letter-spacing:0.171360pt;}
.ls14_c00003{letter-spacing:0.177707pt;}
.ls18_c00003{letter-spacing:0.184053pt;}
.ls29_c00003{letter-spacing:0.196747pt;}
.ls1a_c00003{letter-spacing:0.203093pt;}
.ls19_c00003{letter-spacing:0.222133pt;}
.ls16_c00003{letter-spacing:0.228480pt;}
.ls23_c00003{letter-spacing:0.241173pt;}
.ls2e_c00003{letter-spacing:0.253867pt;}
.ls21_c00003{letter-spacing:0.260213pt;}
.ls4_c00003{letter-spacing:0.266560pt;}
.ls20_c00003{letter-spacing:0.272907pt;}
.ls8_c00003{letter-spacing:0.285600pt;}
.ls4f_c00003{letter-spacing:0.291947pt;}
.ls13_c00003{letter-spacing:0.304640pt;}
.lsc_c00003{letter-spacing:0.310987pt;}
.ls1d_c00003{letter-spacing:0.323680pt;}
.ls2d_c00003{letter-spacing:0.330027pt;}
.ls1e_c00003{letter-spacing:0.336373pt;}
.ls1_c00003{letter-spacing:0.361760pt;}
.ls1f_c00003{letter-spacing:0.380800pt;}
.ls24_c00003{letter-spacing:0.393493pt;}
.ls2a_c00003{letter-spacing:0.412533pt;}
.ls68_c00003{letter-spacing:0.425227pt;}
.ls27_c00003{letter-spacing:0.431573pt;}
.lse_c00003{letter-spacing:0.437920pt;}
.ls30_c00003{letter-spacing:0.463307pt;}
.ls17_c00003{letter-spacing:0.476000pt;}
.lsa_c00003{letter-spacing:0.488693pt;}
.ls2_c00003{letter-spacing:0.552160pt;}
.ls0_c00003{letter-spacing:0.767947pt;}
.ls6d_c00003{letter-spacing:0.780640pt;}
.ls1c_c00003{letter-spacing:0.812373pt;}
.lsd_c00003{letter-spacing:0.818720pt;}
.ls5_c00003{letter-spacing:0.863147pt;}
.ls26_c00003{letter-spacing:0.945653pt;}
.lsf_c00003{letter-spacing:0.964693pt;}
.ls10_c00003{letter-spacing:1.243947pt;}
.ls31_c00003{letter-spacing:1.558027pt;}
.ws0_c00003{word-spacing:0.000000pt;}
._d_c00003{margin-left:-1.872267pt;}
._c_c00003{margin-left:-0.977387pt;}
._b_c00003{width:1.002773pt;}
._0_c00003{width:2.646560pt;}
._4_c00003{width:4.322080pt;}
._5_c00003{width:6.061067pt;}
._1_c00003{width:7.622347pt;}
._2_c00003{width:9.050347pt;}
._3_c00003{width:11.043200pt;}
._7_c00003{width:12.794880pt;}
._9_c00003{width:14.013440pt;}
._f_c00003{width:15.098720pt;}
._8_c00003{width:16.888480pt;}
._6_c00003{width:17.986453pt;}
._a_c00003{width:19.503307pt;}
._10_c00003{width:20.639360pt;}
._11_c00003{width:22.111787pt;}
._e_c00003{width:23.139947pt;}
._12_c00003{width:24.345813pt;}
._17_c00003{width:26.973333pt;}
._13_c00003{width:28.077653pt;}
._14_c00003{width:29.016960pt;}
._16_c00003{width:31.987200pt;}
._15_c00003{width:33.078827pt;}
.fs6_c00003{font-size:58.666667pt;}
.fs4_c00003{font-size:60.800000pt;}
.fs2_c00003{font-size:61.333333pt;}
.fs3_c00003{font-size:62.400000pt;}
.fs1_c00003{font-size:63.466667pt;}
.fs5_c00003{font-size:68.266667pt;}
.fs0_c00003{font-size:69.866667pt;}
.y0_c00003{bottom:0.000000pt;}
.y18_c00003{bottom:155.199320pt;}
.y17_c00003{bottom:182.096387pt;}
.y16_c00003{bottom:236.820520pt;}
.y15_c00003{bottom:264.333320pt;}
.y14_c00003{bottom:264.338920pt;}
.y13_c00003{bottom:291.851720pt;}
.y12_c00003{bottom:346.559987pt;}
.y11_c00003{bottom:346.582520pt;}
.y10_c00003{bottom:374.111187pt;}
.yf_c00003{bottom:428.835320pt;}
.ye_c00003{bottom:456.348120pt;}
.yd_c00003{bottom:483.860920pt;}
.yc_c00003{bottom:538.569187pt;}
.y1a_c00003{bottom:545.293320pt;}
.y19_c00003{bottom:548.479987pt;}
.yb_c00003{bottom:566.097853pt;}
.ya_c00003{bottom:593.293320pt;}
.y9_c00003{bottom:593.300520pt;}
.y8_c00003{bottom:620.813320pt;}
.y7_c00003{bottom:675.519987pt;}
.y6_c00003{bottom:703.051453pt;}
.y5_c00003{bottom:758.077053pt;}
.y4_c00003{bottom:811.833320pt;}
.y3_c00003{bottom:839.679320pt;}
.y2_c00003{bottom:866.573320pt;}
.y1_c00003{bottom:949.439987pt;}
.h7_c00003{height:61.187500pt;}
.h4_c00003{height:61.812500pt;}
.h3_c00003{height:62.289062pt;}
.h5_c00003{height:62.887500pt;}
.h2_c00003{height:70.412500pt;}
.h6_c00003{height:71.200000pt;}
.h1_c00003{height:1122.666667pt;}
.h0_c00003{height:1122.879987pt;}
.w1_c00003{width:793.333333pt;}
.w0_c00003{width:793.600000pt;}
.x0_c00003{left:0.000000pt;}
.x5_c00003{left:99.802267pt;}
.x2_c00003{left:147.106667pt;}
.x6_c00003{left:173.586667pt;}
.xf_c00003{left:178.106667pt;}
.x10_c00003{left:193.253333pt;}
.x7_c00003{left:202.160000pt;}
.x8_c00003{left:254.960000pt;}
.x9_c00003{left:280.786667pt;}
.x1_c00003{left:294.360000pt;}
.xa_c00003{left:299.066667pt;}
.x11_c00003{left:300.333333pt;}
.x12_c00003{left:319.613333pt;}
.xb_c00003{left:363.320000pt;}
.xd_c00003{left:365.613333pt;}
.x13_c00003{left:379.053333pt;}
.xe_c00003{left:385.786667pt;}
.x3_c00003{left:387.040000pt;}
.x14_c00003{left:398.266667pt;}
.x4_c00003{left:403.760000pt;}
.xc_c00003{left:422.520000pt;}
.x15_c00003{left:473.453333pt;}
.x16_c00003{left:492.640000pt;}
.x18_c00003{left:759.800000pt;}
.x17_c00003{left:760.733333pt;}
}





/* 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_c00004 {
    display:none;
  }
  .loading-indicator_c00004.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00004 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_c00004 { 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_c00004" -> "#page-container .classname_c00004")
 */
.pf_c00004 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00004 { /* 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_c00004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00004 { /* 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_c00004 { /* 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_c00004 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00004 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00004 {overflow:visible;}
  }
}
.c_c00004 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00004 { /* 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_c00004:after { /* webkit #35443 */
  content: '';
}
.t_c00004:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00004 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 */
}
.__c00004 { /* 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_c00004 { /* info for Javascript */
  display:none;
}
.l_c00004 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00004 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00004 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00004: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_c00004 {
    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_c00004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00004.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_c00004 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00004;src:url('chunks/assets/font_3ca6a61bd98b5f0082413f76.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.284668;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;}
.m1_c00004{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);}
.m5_c00004{transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);}
.m4_c00004{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m2_c00004{transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);}
.m7_c00004{transform:matrix(0.252219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252219,0.000000,0.000000,0.250000,0,0);}
.m6_c00004{transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);}
.m8_c00004{transform:matrix(0.255336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255336,0.000000,0.000000,0.250000,0,0);}
.m0_c00004{transform:matrix(0.256971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256971,0.000000,0.000000,0.250000,0,0);}
.m3_c00004{transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls33_c00004{letter-spacing:0.000000px;}
.lsf_c00004{letter-spacing:0.189840px;}
.ls2b_c00004{letter-spacing:1.084800px;}
.ls2_c00004{letter-spacing:1.179720px;}
.ls16_c00004{letter-spacing:1.308540px;}
.ls3b_c00004{letter-spacing:1.328880px;}
.ls12_c00004{letter-spacing:1.464480px;}
.ls9_c00004{letter-spacing:1.478040px;}
.ls22_c00004{letter-spacing:1.484820px;}
.ls35_c00004{letter-spacing:1.498380px;}
.ls23_c00004{letter-spacing:1.552620px;}
.ls1b_c00004{letter-spacing:1.600080px;}
.ls28_c00004{letter-spacing:1.627200px;}
.ls3_c00004{letter-spacing:1.667880px;}
.ls26_c00004{letter-spacing:1.674660px;}
.ls0_c00004{letter-spacing:1.708560px;}
.ls32_c00004{letter-spacing:1.762800px;}
.ls3a_c00004{letter-spacing:1.783140px;}
.ls3e_c00004{letter-spacing:1.817040px;}
.ls10_c00004{letter-spacing:1.830600px;}
.ls30_c00004{letter-spacing:1.850940px;}
.ls20_c00004{letter-spacing:1.925520px;}
.ls1_c00004{letter-spacing:1.959420px;}
.ls34_c00004{letter-spacing:1.972980px;}
.ls1a_c00004{letter-spacing:1.979760px;}
.ls3f_c00004{letter-spacing:2.013660px;}
.ls17_c00004{letter-spacing:2.047560px;}
.ls2a_c00004{letter-spacing:2.122140px;}
.ls19_c00004{letter-spacing:2.135700px;}
.ls2c_c00004{letter-spacing:2.149260px;}
.ls2e_c00004{letter-spacing:2.169600px;}
.ls39_c00004{letter-spacing:2.183160px;}
.ls15_c00004{letter-spacing:2.244180px;}
.ls13_c00004{letter-spacing:2.250960px;}
.ls24_c00004{letter-spacing:2.271300px;}
.ls21_c00004{letter-spacing:2.278080px;}
.lse_c00004{letter-spacing:2.318760px;}
.ls5_c00004{letter-spacing:2.325540px;}
.ls36_c00004{letter-spacing:2.332320px;}
.ls27_c00004{letter-spacing:2.339100px;}
.ls14_c00004{letter-spacing:2.366220px;}
.ls1c_c00004{letter-spacing:2.379780px;}
.lsd_c00004{letter-spacing:2.434020px;}
.lsc_c00004{letter-spacing:2.440800px;}
.ls8_c00004{letter-spacing:2.461140px;}
.ls25_c00004{letter-spacing:2.481480px;}
.lsa_c00004{letter-spacing:2.501820px;}
.ls6_c00004{letter-spacing:2.542500px;}
.ls37_c00004{letter-spacing:2.549280px;}
.ls11_c00004{letter-spacing:2.562840px;}
.ls29_c00004{letter-spacing:2.610300px;}
.ls1d_c00004{letter-spacing:2.623860px;}
.ls1e_c00004{letter-spacing:2.664540px;}
.lsb_c00004{letter-spacing:2.705220px;}
.ls3d_c00004{letter-spacing:2.813700px;}
.ls1f_c00004{letter-spacing:2.901840px;}
.ls18_c00004{letter-spacing:2.922180px;}
.ls4_c00004{letter-spacing:2.928960px;}
.ls38_c00004{letter-spacing:2.989980px;}
.ls2f_c00004{letter-spacing:3.281520px;}
.ls7_c00004{letter-spacing:3.315420px;}
.ls2d_c00004{letter-spacing:3.335760px;}
.ls3c_c00004{letter-spacing:3.356100px;}
.ls31_c00004{letter-spacing:3.390000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{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__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00004{word-spacing:0.000000px;}
._5_c00004{margin-left:-6.210480px;}
._7_c00004{margin-left:-5.017200px;}
._6_c00004{margin-left:-2.983200px;}
._c_c00004{margin-left:-1.328880px;}
._4_c00004{width:1.911960px;}
._1_c00004{width:3.695100px;}
._0_c00004{width:5.342640px;}
._3_c00004{width:6.461340px;}
._9_c00004{width:8.407200px;}
._8_c00004{width:9.614040px;}
._2_c00004{width:10.644600px;}
._b_c00004{width:12.048060px;}
._a_c00004{width:13.071840px;}
.fc0_c00004{color:transparent;}
.fs0_c00004{font-size:67.800000px;}
.y0_c00004{bottom:0.000000px;}
.ya_c00004{bottom:789.139806px;}
.y9_c00004{bottom:850.685256px;}
.y8_c00004{bottom:881.280006px;}
.y7_c00004{bottom:942.840006px;}
.y6_c00004{bottom:973.800006px;}
.y5_c00004{bottom:973.803306px;}
.y4_c00004{bottom:1004.415006px;}
.y2_c00004{bottom:1035.352356px;}
.y3_c00004{bottom:1035.360006px;}
.y1_c00004{bottom:1066.320006px;}
.h2_c00004{height:66.541992px;}
.h1_c00004{height:1263.000000px;}
.h0_c00004{height:1263.240006px;}
.w1_c00004{width:892.500000px;}
.w0_c00004{width:892.799998px;}
.x0_c00004{left:0.000000px;}
.xd_c00004{left:109.075049px;}
.x5_c00004{left:110.448149px;}
.x17_c00004{left:161.976748px;}
.x13_c00004{left:163.004998px;}
.x1_c00004{left:164.084998px;}
.xe_c00004{left:190.259998px;}
.x2_c00004{left:191.684998px;}
.x14_c00004{left:193.319998px;}
.xf_c00004{left:212.219998px;}
.x3_c00004{left:308.849999px;}
.x11_c00004{left:312.149999px;}
.x6_c00004{left:322.589999px;}
.x4_c00004{left:333.899999px;}
.x12_c00004{left:341.099999px;}
.x7_c00004{left:351.689999px;}
.x8_c00004{left:481.859998px;}
.x15_c00004{left:483.314998px;}
.x9_c00004{left:503.819999px;}
.xa_c00004{left:536.954998px;}
.x16_c00004{left:552.419999px;}
.xb_c00004{left:590.954998px;}
.xc_c00004{left:743.789999px;}
.x10_c00004{left:750.779999px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls33_c00004{letter-spacing:0.000000pt;}
.lsf_c00004{letter-spacing:0.168747pt;}
.ls2b_c00004{letter-spacing:0.964267pt;}
.ls2_c00004{letter-spacing:1.048640pt;}
.ls16_c00004{letter-spacing:1.163147pt;}
.ls3b_c00004{letter-spacing:1.181227pt;}
.ls12_c00004{letter-spacing:1.301760pt;}
.ls9_c00004{letter-spacing:1.313813pt;}
.ls22_c00004{letter-spacing:1.319840pt;}
.ls35_c00004{letter-spacing:1.331893pt;}
.ls23_c00004{letter-spacing:1.380107pt;}
.ls1b_c00004{letter-spacing:1.422293pt;}
.ls28_c00004{letter-spacing:1.446400pt;}
.ls3_c00004{letter-spacing:1.482560pt;}
.ls26_c00004{letter-spacing:1.488587pt;}
.ls0_c00004{letter-spacing:1.518720pt;}
.ls32_c00004{letter-spacing:1.566933pt;}
.ls3a_c00004{letter-spacing:1.585013pt;}
.ls3e_c00004{letter-spacing:1.615147pt;}
.ls10_c00004{letter-spacing:1.627200pt;}
.ls30_c00004{letter-spacing:1.645280pt;}
.ls20_c00004{letter-spacing:1.711573pt;}
.ls1_c00004{letter-spacing:1.741707pt;}
.ls34_c00004{letter-spacing:1.753760pt;}
.ls1a_c00004{letter-spacing:1.759787pt;}
.ls3f_c00004{letter-spacing:1.789920pt;}
.ls17_c00004{letter-spacing:1.820053pt;}
.ls2a_c00004{letter-spacing:1.886347pt;}
.ls19_c00004{letter-spacing:1.898400pt;}
.ls2c_c00004{letter-spacing:1.910453pt;}
.ls2e_c00004{letter-spacing:1.928533pt;}
.ls39_c00004{letter-spacing:1.940587pt;}
.ls15_c00004{letter-spacing:1.994827pt;}
.ls13_c00004{letter-spacing:2.000853pt;}
.ls24_c00004{letter-spacing:2.018933pt;}
.ls21_c00004{letter-spacing:2.024960pt;}
.lse_c00004{letter-spacing:2.061120pt;}
.ls5_c00004{letter-spacing:2.067147pt;}
.ls36_c00004{letter-spacing:2.073173pt;}
.ls27_c00004{letter-spacing:2.079200pt;}
.ls14_c00004{letter-spacing:2.103307pt;}
.ls1c_c00004{letter-spacing:2.115360pt;}
.lsd_c00004{letter-spacing:2.163573pt;}
.lsc_c00004{letter-spacing:2.169600pt;}
.ls8_c00004{letter-spacing:2.187680pt;}
.ls25_c00004{letter-spacing:2.205760pt;}
.lsa_c00004{letter-spacing:2.223840pt;}
.ls6_c00004{letter-spacing:2.260000pt;}
.ls37_c00004{letter-spacing:2.266027pt;}
.ls11_c00004{letter-spacing:2.278080pt;}
.ls29_c00004{letter-spacing:2.320267pt;}
.ls1d_c00004{letter-spacing:2.332320pt;}
.ls1e_c00004{letter-spacing:2.368480pt;}
.lsb_c00004{letter-spacing:2.404640pt;}
.ls3d_c00004{letter-spacing:2.501067pt;}
.ls1f_c00004{letter-spacing:2.579413pt;}
.ls18_c00004{letter-spacing:2.597493pt;}
.ls4_c00004{letter-spacing:2.603520pt;}
.ls38_c00004{letter-spacing:2.657760pt;}
.ls2f_c00004{letter-spacing:2.916907pt;}
.ls7_c00004{letter-spacing:2.947040pt;}
.ls2d_c00004{letter-spacing:2.965120pt;}
.ls3c_c00004{letter-spacing:2.983200pt;}
.ls31_c00004{letter-spacing:3.013333pt;}
.ws0_c00004{word-spacing:0.000000pt;}
._5_c00004{margin-left:-5.520427pt;}
._7_c00004{margin-left:-4.459733pt;}
._6_c00004{margin-left:-2.651733pt;}
._c_c00004{margin-left:-1.181227pt;}
._4_c00004{width:1.699520pt;}
._1_c00004{width:3.284533pt;}
._0_c00004{width:4.749013pt;}
._3_c00004{width:5.743413pt;}
._9_c00004{width:7.473067pt;}
._8_c00004{width:8.545813pt;}
._2_c00004{width:9.461867pt;}
._b_c00004{width:10.709387pt;}
._a_c00004{width:11.619413pt;}
.fs0_c00004{font-size:60.266667pt;}
.y0_c00004{bottom:0.000000pt;}
.ya_c00004{bottom:701.457605pt;}
.y9_c00004{bottom:756.164672pt;}
.y8_c00004{bottom:783.360005pt;}
.y7_c00004{bottom:838.080005pt;}
.y6_c00004{bottom:865.600005pt;}
.y5_c00004{bottom:865.602939pt;}
.y4_c00004{bottom:892.813339pt;}
.y2_c00004{bottom:920.313205pt;}
.y3_c00004{bottom:920.320005pt;}
.y1_c00004{bottom:947.840005pt;}
.h2_c00004{height:59.148438pt;}
.h1_c00004{height:1122.666667pt;}
.h0_c00004{height:1122.880005pt;}
.w1_c00004{width:793.333333pt;}
.w0_c00004{width:793.599999pt;}
.x0_c00004{left:0.000000pt;}
.xd_c00004{left:96.955599pt;}
.x5_c00004{left:98.176132pt;}
.x17_c00004{left:143.979332pt;}
.x13_c00004{left:144.893332pt;}
.x1_c00004{left:145.853332pt;}
.xe_c00004{left:169.119999pt;}
.x2_c00004{left:170.386665pt;}
.x14_c00004{left:171.839999pt;}
.xf_c00004{left:188.639999pt;}
.x3_c00004{left:274.533332pt;}
.x11_c00004{left:277.466665pt;}
.x6_c00004{left:286.746665pt;}
.x4_c00004{left:296.799999pt;}
.x12_c00004{left:303.199999pt;}
.x7_c00004{left:312.613332pt;}
.x8_c00004{left:428.319999pt;}
.x15_c00004{left:429.613332pt;}
.x9_c00004{left:447.839999pt;}
.xa_c00004{left:477.293332pt;}
.x16_c00004{left:491.039999pt;}
.xb_c00004{left:525.293332pt;}
.xc_c00004{left:661.146665pt;}
.x10_c00004{left:667.359999pt;}
}





/* 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_c00005 {
    display:none;
  }
  .loading-indicator_c00005.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00005 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_c00005 { 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_c00005" -> "#page-container .classname_c00005")
 */
.pf_c00005 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00005 { /* 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_c00005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00005 { /* 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_c00005 { /* 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_c00005 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00005 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00005 {overflow:visible;}
  }
}
.c_c00005 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00005 { /* 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_c00005:after { /* webkit #35443 */
  content: '';
}
.t_c00005:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00005 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 */
}
.__c00005 { /* 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_c00005 { /* info for Javascript */
  display:none;
}
.l_c00005 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00005 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00005 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00005: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_c00005 {
    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_c00005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00005.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_c00005 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00005;src:url('chunks/assets/font_160a4678693b3e0bb6a44314.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.284668;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_c00005;src:url('chunks/assets/font_5e1c69dfe6257c2d4d8475de.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.311035;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_c00005;src:url('chunks/assets/font_ddd28a14963715f50401a627.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;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:ff4_c00005;src:url('chunks/assets/font_06b01beebdbf5d94311a193a.woff2')format("woff");}.ff4_c00005{font-family:ff4_c00005;line-height:0.666000;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_c00005{transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);}
.m2_c00005{transform:matrix(0.235034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235034,0.000000,0.000000,0.250000,0,0);}
.m1_c00005{transform:matrix(0.238546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238546,0.000000,0.000000,0.250000,0,0);}
.m3_c00005{transform:matrix(0.243069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243069,0.000000,0.000000,0.250000,0,0);}
.m0_c00005{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);}
.m5_c00005{transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls3_c00005{letter-spacing:-2.961000px;}
.ls4_c00005{letter-spacing:-2.411100px;}
.ls1_c00005{letter-spacing:0.000000px;}
.ls5_c00005{letter-spacing:1.050030px;}
.ls0_c00005{letter-spacing:1.204980px;}
.ls2_c00005{letter-spacing:1.923180px;}
.sc__c00005{text-shadow:none;}
.sc0_c00005{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__c00005{-webkit-text-stroke:0px transparent;}
.sc0_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00005{word-spacing:0.000000px;}
._0_c00005{width:5.985000px;}
.fc0_c00005{color:transparent;}
.fs6_c00005{font-size:19.800600px;}
.fs5_c00005{font-size:21.000600px;}
.fs4_c00005{font-size:36.000000px;}
.fs2_c00005{font-size:66.000000px;}
.fs3_c00005{font-size:71.400000px;}
.fs0_c00005{font-size:79.800000px;}
.fs1_c00005{font-size:84.600000px;}
.y0_c00005{bottom:0.000000px;}
.y7_c00005{bottom:527.760015px;}
.y6_c00005{bottom:533.520015px;}
.y5_c00005{bottom:540.375015px;}
.y4_c00005{bottom:541.815015px;}
.y3_c00005{bottom:547.920015px;}
.y2_c00005{bottom:756.375015px;}
.y1_c00005{bottom:792.360015px;}
.h8_c00005{height:19.433206px;}
.h7_c00005{height:21.902970px;}
.h6_c00005{height:23.976000px;}
.h4_c00005{height:68.835938px;}
.h5_c00005{height:74.467969px;}
.h2_c00005{height:78.319336px;}
.h3_c00005{height:85.260937px;}
.h1_c00005{height:1263.000000px;}
.h0_c00005{height:1263.240015px;}
.w1_c00005{width:892.500000px;}
.w0_c00005{width:892.800015px;}
.x0_c00005{left:0.000000px;}
.x1_c00005{left:533.115015px;}
.x2_c00005{left:557.415015px;}
.x3_c00005{left:581.640015px;}
.x4_c00005{left:681.255015px;}
.x5_c00005{left:854.775015px;}
.x6_c00005{left:855.840015px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls3_c00005{letter-spacing:-2.632000pt;}
.ls4_c00005{letter-spacing:-2.143200pt;}
.ls1_c00005{letter-spacing:0.000000pt;}
.ls5_c00005{letter-spacing:0.933360pt;}
.ls0_c00005{letter-spacing:1.071093pt;}
.ls2_c00005{letter-spacing:1.709493pt;}
.ws0_c00005{word-spacing:0.000000pt;}
._0_c00005{width:5.320000pt;}
.fs6_c00005{font-size:17.600533pt;}
.fs5_c00005{font-size:18.667200pt;}
.fs4_c00005{font-size:32.000000pt;}
.fs2_c00005{font-size:58.666667pt;}
.fs3_c00005{font-size:63.466667pt;}
.fs0_c00005{font-size:70.933333pt;}
.fs1_c00005{font-size:75.200000pt;}
.y0_c00005{bottom:0.000000pt;}
.y7_c00005{bottom:469.120013pt;}
.y6_c00005{bottom:474.240013pt;}
.y5_c00005{bottom:480.333347pt;}
.y4_c00005{bottom:481.613347pt;}
.y3_c00005{bottom:487.040013pt;}
.y2_c00005{bottom:672.333347pt;}
.y1_c00005{bottom:704.320013pt;}
.h8_c00005{height:17.273961pt;}
.h7_c00005{height:19.469306pt;}
.h6_c00005{height:21.312000pt;}
.h4_c00005{height:61.187500pt;}
.h5_c00005{height:66.193750pt;}
.h2_c00005{height:69.617188pt;}
.h3_c00005{height:75.787500pt;}
.h1_c00005{height:1122.666667pt;}
.h0_c00005{height:1122.880013pt;}
.w1_c00005{width:793.333333pt;}
.w0_c00005{width:793.600013pt;}
.x0_c00005{left:0.000000pt;}
.x1_c00005{left:473.880013pt;}
.x2_c00005{left:495.480013pt;}
.x3_c00005{left:517.013347pt;}
.x4_c00005{left:605.560013pt;}
.x5_c00005{left:759.800013pt;}
.x6_c00005{left:760.746680pt;}
}





/* 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_c00006 {
    display:none;
  }
  .loading-indicator_c00006.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00006 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_c00006 { 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_c00006" -> "#page-container .classname_c00006")
 */
.pf_c00006 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00006 { /* 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_c00006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00006 { /* 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_c00006 { /* 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_c00006 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00006 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00006 {overflow:visible;}
  }
}
.c_c00006 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00006 { /* 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_c00006:after { /* webkit #35443 */
  content: '';
}
.t_c00006:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00006 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 */
}
.__c00006 { /* 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_c00006 { /* info for Javascript */
  display:none;
}
.l_c00006 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00006 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00006 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00006: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_c00006 {
    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_c00006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00006.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_c00006 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00006;src:url('chunks/assets/font_9c50c20178894f22dd0c889e.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.311035;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_c00006;src:url('chunks/assets/font_fed7aff74a7359b5e921ad0f.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.284668;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_c00006;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;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:ff4_c00006;src:url('chunks/assets/font_11e8040c17942028fb4b3970.woff2')format("woff");}.ff4_c00006{font-family:ff4_c00006;line-height:1.284180;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;}
.m5_c00006{transform:matrix(0.232796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232796,0.000000,0.000000,0.250000,0,0);}
.m2_c00006{transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);}
.m6_c00006{transform:matrix(0.243883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243883,0.000000,0.000000,0.250000,0,0);}
.m1_c00006{transform:matrix(0.246159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246159,0.000000,0.000000,0.250000,0,0);}
.m4_c00006{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.m0_c00006{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);}
.m3_c00006{transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls4e_c00006{letter-spacing:-2.436000px;}
.ls6b_c00006{letter-spacing:-2.415000px;}
.ls54_c00006{letter-spacing:-2.394000px;}
.ls61_c00006{letter-spacing:-2.305080px;}
.ls55_c00006{letter-spacing:-1.887840px;}
.ls50_c00006{letter-spacing:-1.719120px;}
.ls56_c00006{letter-spacing:-1.593720px;}
.ls62_c00006{letter-spacing:-1.539060px;}
.ls72_c00006{letter-spacing:-1.400700px;}
.ls5c_c00006{letter-spacing:-1.169640px;}
.ls6e_c00006{letter-spacing:-1.124700px;}
.ls5e_c00006{letter-spacing:-0.868680px;}
.ls64_c00006{letter-spacing:-0.458280px;}
.ls6d_c00006{letter-spacing:-0.455400px;}
.ls5f_c00006{letter-spacing:-0.424560px;}
.ls60_c00006{letter-spacing:-0.410640px;}
.ls67_c00006{letter-spacing:-0.269100px;}
.ls52_c00006{letter-spacing:-0.257520px;}
.ls66_c00006{letter-spacing:-0.253080px;}
.ls68_c00006{letter-spacing:-0.138000px;}
.ls6f_c00006{letter-spacing:-0.124200px;}
.ls5a_c00006{letter-spacing:-0.088920px;}
.ls71_c00006{letter-spacing:-0.027600px;}
.ls4f_c00006{letter-spacing:0.000000px;}
.ls1c_c00006{letter-spacing:0.020880px;}
.ls73_c00006{letter-spacing:0.200100px;}
.ls40_c00006{letter-spacing:0.241500px;}
.ls1f_c00006{letter-spacing:0.253080px;}
.ls29_c00006{letter-spacing:0.259920px;}
.ls69_c00006{letter-spacing:0.317400px;}
.ls3d_c00006{letter-spacing:0.365700px;}
.ls39_c00006{letter-spacing:0.448500px;}
.ls53_c00006{letter-spacing:0.535920px;}
.ls2_c00006{letter-spacing:0.549840px;}
.ls65_c00006{letter-spacing:0.574560px;}
.ls2e_c00006{letter-spacing:0.622440px;}
.ls48_c00006{letter-spacing:0.627900px;}
.ls6a_c00006{letter-spacing:0.641700px;}
.ls45_c00006{letter-spacing:0.655500px;}
.ls6c_c00006{letter-spacing:0.662400px;}
.ls4b_c00006{letter-spacing:0.683100px;}
.ls49_c00006{letter-spacing:0.690000px;}
.ls46_c00006{letter-spacing:0.696900px;}
.ls31_c00006{letter-spacing:0.752400px;}
.ls22_c00006{letter-spacing:0.786600px;}
.ls28_c00006{letter-spacing:0.800280px;}
.ls59_c00006{letter-spacing:0.807120px;}
.ls33_c00006{letter-spacing:0.807300px;}
.ls2b_c00006{letter-spacing:0.813960px;}
.lsb_c00006{letter-spacing:0.820800px;}
.ls32_c00006{letter-spacing:0.821100px;}
.ls13_c00006{letter-spacing:0.827640px;}
.ls1e_c00006{letter-spacing:0.834480px;}
.ls12_c00006{letter-spacing:0.841320px;}
.ls17_c00006{letter-spacing:0.848160px;}
.ls1a_c00006{letter-spacing:0.849120px;}
.ls35_c00006{letter-spacing:0.910800px;}
.ls11_c00006{letter-spacing:0.916560px;}
.ls37_c00006{letter-spacing:0.931500px;}
.ls25_c00006{letter-spacing:0.984960px;}
.lsc_c00006{letter-spacing:0.991800px;}
.ls4_c00006{letter-spacing:1.030080px;}
.ls51_c00006{letter-spacing:1.078800px;}
.ls36_c00006{letter-spacing:1.104000px;}
.ls3b_c00006{letter-spacing:1.166100px;}
.ls3f_c00006{letter-spacing:1.200600px;}
.ls3e_c00006{letter-spacing:1.207500px;}
.ls0_c00006{letter-spacing:1.231200px;}
.ls43_c00006{letter-spacing:1.306440px;}
.ls2c_c00006{letter-spacing:1.340640px;}
.ls3c_c00006{letter-spacing:1.345500px;}
.ls14_c00006{letter-spacing:1.354320px;}
.ls20_c00006{letter-spacing:1.368000px;}
.ls5_c00006{letter-spacing:1.371120px;}
.ls44_c00006{letter-spacing:1.442100px;}
.ls38_c00006{letter-spacing:1.518000px;}
.ls2f_c00006{letter-spacing:1.545840px;}
.ls3a_c00006{letter-spacing:1.559400px;}
.ls27_c00006{letter-spacing:1.559520px;}
.ls4d_c00006{letter-spacing:1.579500px;}
.ls5b_c00006{letter-spacing:1.580040px;}
.ls19_c00006{letter-spacing:1.593840px;}
.ls4c_c00006{letter-spacing:1.636200px;}
.ls30_c00006{letter-spacing:1.648440px;}
.ls4a_c00006{letter-spacing:1.649100px;}
.ls47_c00006{letter-spacing:1.669800px;}
.ls10_c00006{letter-spacing:1.675800px;}
.ls24_c00006{letter-spacing:1.710000px;}
.ls2a_c00006{letter-spacing:1.744200px;}
.ls1b_c00006{letter-spacing:1.760880px;}
.ls70_c00006{letter-spacing:1.805760px;}
.lse_c00006{letter-spacing:1.833120px;}
.ls9_c00006{letter-spacing:1.851360px;}
.ls2d_c00006{letter-spacing:1.853640px;}
.ls41_c00006{letter-spacing:1.856100px;}
.ls7_c00006{letter-spacing:1.872240px;}
.ls18_c00006{letter-spacing:1.879200px;}
.ls26_c00006{letter-spacing:1.922040px;}
.ls15_c00006{letter-spacing:1.963080px;}
.ls21_c00006{letter-spacing:1.976760px;}
.ls34_c00006{letter-spacing:1.980300px;}
.ls1_c00006{letter-spacing:2.025360px;}
.lsd_c00006{letter-spacing:2.031480px;}
.ls3_c00006{letter-spacing:2.067120px;}
.ls16_c00006{letter-spacing:2.106720px;}
.ls42_c00006{letter-spacing:2.228700px;}
.ls8_c00006{letter-spacing:2.241120px;}
.lsf_c00006{letter-spacing:2.373480px;}
.lsa_c00006{letter-spacing:2.394000px;}
.ls23_c00006{letter-spacing:2.476080px;}
.ls5d_c00006{letter-spacing:2.667600px;}
.ls6_c00006{letter-spacing:2.672640px;}
.ls1d_c00006{letter-spacing:2.674440px;}
.ls57_c00006{letter-spacing:2.681280px;}
.ls63_c00006{letter-spacing:2.715480px;}
.ls58_c00006{letter-spacing:3.420000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{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__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:0.000000px;}
._e_c00006{margin-left:-15.580680px;}
._6_c00006{margin-left:-13.885920px;}
._11_c00006{margin-left:-12.627240px;}
._9_c00006{margin-left:-10.772880px;}
._2_c00006{margin-left:-9.273840px;}
._13_c00006{margin-left:-6.706440px;}
._f_c00006{margin-left:-4.648560px;}
._12_c00006{margin-left:-3.545940px;}
._4_c00006{margin-left:-2.452320px;}
._a_c00006{margin-left:-1.333920px;}
._0_c00006{width:1.620000px;}
._1_c00006{width:3.682320px;}
._c_c00006{width:4.823280px;}
._10_c00006{width:6.840480px;}
._3_c00006{width:7.941360px;}
._b_c00006{width:9.835920px;}
._8_c00006{width:11.991360px;}
._d_c00006{width:13.716240px;}
._5_c00006{width:14.926800px;}
._7_c00006{width:18.212880px;}
.fc0_c00006{color:transparent;}
.fs2_c00006{font-size:66.000000px;}
.fs5_c00006{font-size:67.800000px;}
.fs4_c00006{font-size:68.400000px;}
.fs6_c00006{font-size:69.000000px;}
.fs1_c00006{font-size:69.600000px;}
.fs7_c00006{font-size:70.200000px;}
.fs3_c00006{font-size:74.400000px;}
.fs0_c00006{font-size:81.000000px;}
.y0_c00006{bottom:0.000000px;}
.y1f_c00006{bottom:119.519250px;}
.y1e_c00006{bottom:149.758500px;}
.y1d_c00006{bottom:180.360000px;}
.y1c_c00006{bottom:210.975000px;}
.y1a_c00006{bottom:241.571250px;}
.y1b_c00006{bottom:241.575000px;}
.y19_c00006{bottom:272.535000px;}
.y18_c00006{bottom:303.495000px;}
.y17_c00006{bottom:333.720000px;}
.y16_c00006{bottom:364.695000px;}
.y15_c00006{bottom:395.639700px;}
.y14_c00006{bottom:426.966900px;}
.y13_c00006{bottom:457.951200px;}
.y12_c00006{bottom:488.543100px;}
.y11_c00006{bottom:519.128100px;}
.y10_c00006{bottom:549.720000px;}
.yf_c00006{bottom:549.726900px;}
.ye_c00006{bottom:580.695000px;}
.yd_c00006{bottom:641.895000px;}
.yc_c00006{bottom:703.800000px;}
.ya_c00006{bottom:734.769000px;}
.yb_c00006{bottom:734.775000px;}
.y9_c00006{bottom:765.720000px;}
.y7_c00006{bottom:796.686900px;}
.y8_c00006{bottom:796.695000px;}
.y6_c00006{bottom:827.655000px;}
.y5_c00006{bottom:889.200000px;}
.y4_c00006{bottom:950.760000px;}
.y3_c00006{bottom:981.015000px;}
.y2_c00006{bottom:1042.920000px;}
.y1_c00006{bottom:1106.280000px;}
.h5_c00006{height:67.130859px;}
.h8_c00006{height:67.132059px;}
.h7_c00006{height:67.158459px;}
.h6_c00006{height:67.163259px;}
.ha_c00006{height:67.686035px;}
.hb_c00006{height:67.689035px;}
.h9_c00006{height:68.863184px;}
.h3_c00006{height:70.143750px;}
.h4_c00006{height:73.019531px;}
.h2_c00006{height:81.632812px;}
.h1_c00006{height:1263.000000px;}
.h0_c00006{height:1263.240000px;}
.w1_c00006{width:892.500000px;}
.w0_c00006{width:892.800000px;}
.x0_c00006{left:0.000000px;}
.x2_c00006{left:127.110000px;}
.x3_c00006{left:144.630000px;}
.x5_c00006{left:181.245000px;}
.xb_c00006{left:182.325000px;}
.x6_c00006{left:184.127400px;}
.xf_c00006{left:233.205000px;}
.x10_c00006{left:234.273600px;}
.xa_c00006{left:235.969500px;}
.x9_c00006{left:237.765000px;}
.x12_c00006{left:284.250000px;}
.x11_c00006{left:285.330000px;}
.x14_c00006{left:286.410000px;}
.x15_c00006{left:287.850000px;}
.x16_c00006{left:291.093000px;}
.x7_c00006{left:312.405000px;}
.x1_c00006{left:325.680000px;}
.xe_c00006{left:335.805000px;}
.x8_c00006{left:341.100000px;}
.xc_c00006{left:364.245000px;}
.xd_c00006{left:392.940000px;}
.x13_c00006{left:736.050000px;}
.x4_c00006{left:738.510000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls4e_c00006{letter-spacing:-2.165333pt;}
.ls6b_c00006{letter-spacing:-2.146667pt;}
.ls54_c00006{letter-spacing:-2.128000pt;}
.ls61_c00006{letter-spacing:-2.048960pt;}
.ls55_c00006{letter-spacing:-1.678080pt;}
.ls50_c00006{letter-spacing:-1.528107pt;}
.ls56_c00006{letter-spacing:-1.416640pt;}
.ls62_c00006{letter-spacing:-1.368053pt;}
.ls72_c00006{letter-spacing:-1.245067pt;}
.ls5c_c00006{letter-spacing:-1.039680pt;}
.ls6e_c00006{letter-spacing:-0.999733pt;}
.ls5e_c00006{letter-spacing:-0.772160pt;}
.ls64_c00006{letter-spacing:-0.407360pt;}
.ls6d_c00006{letter-spacing:-0.404800pt;}
.ls5f_c00006{letter-spacing:-0.377387pt;}
.ls60_c00006{letter-spacing:-0.365013pt;}
.ls67_c00006{letter-spacing:-0.239200pt;}
.ls52_c00006{letter-spacing:-0.228907pt;}
.ls66_c00006{letter-spacing:-0.224960pt;}
.ls68_c00006{letter-spacing:-0.122667pt;}
.ls6f_c00006{letter-spacing:-0.110400pt;}
.ls5a_c00006{letter-spacing:-0.079040pt;}
.ls71_c00006{letter-spacing:-0.024533pt;}
.ls4f_c00006{letter-spacing:0.000000pt;}
.ls1c_c00006{letter-spacing:0.018560pt;}
.ls73_c00006{letter-spacing:0.177867pt;}
.ls40_c00006{letter-spacing:0.214667pt;}
.ls1f_c00006{letter-spacing:0.224960pt;}
.ls29_c00006{letter-spacing:0.231040pt;}
.ls69_c00006{letter-spacing:0.282133pt;}
.ls3d_c00006{letter-spacing:0.325067pt;}
.ls39_c00006{letter-spacing:0.398667pt;}
.ls53_c00006{letter-spacing:0.476373pt;}
.ls2_c00006{letter-spacing:0.488747pt;}
.ls65_c00006{letter-spacing:0.510720pt;}
.ls2e_c00006{letter-spacing:0.553280pt;}
.ls48_c00006{letter-spacing:0.558133pt;}
.ls6a_c00006{letter-spacing:0.570400pt;}
.ls45_c00006{letter-spacing:0.582667pt;}
.ls6c_c00006{letter-spacing:0.588800pt;}
.ls4b_c00006{letter-spacing:0.607200pt;}
.ls49_c00006{letter-spacing:0.613333pt;}
.ls46_c00006{letter-spacing:0.619467pt;}
.ls31_c00006{letter-spacing:0.668800pt;}
.ls22_c00006{letter-spacing:0.699200pt;}
.ls28_c00006{letter-spacing:0.711360pt;}
.ls59_c00006{letter-spacing:0.717440pt;}
.ls33_c00006{letter-spacing:0.717600pt;}
.ls2b_c00006{letter-spacing:0.723520pt;}
.lsb_c00006{letter-spacing:0.729600pt;}
.ls32_c00006{letter-spacing:0.729867pt;}
.ls13_c00006{letter-spacing:0.735680pt;}
.ls1e_c00006{letter-spacing:0.741760pt;}
.ls12_c00006{letter-spacing:0.747840pt;}
.ls17_c00006{letter-spacing:0.753920pt;}
.ls1a_c00006{letter-spacing:0.754773pt;}
.ls35_c00006{letter-spacing:0.809600pt;}
.ls11_c00006{letter-spacing:0.814720pt;}
.ls37_c00006{letter-spacing:0.828000pt;}
.ls25_c00006{letter-spacing:0.875520pt;}
.lsc_c00006{letter-spacing:0.881600pt;}
.ls4_c00006{letter-spacing:0.915627pt;}
.ls51_c00006{letter-spacing:0.958933pt;}
.ls36_c00006{letter-spacing:0.981333pt;}
.ls3b_c00006{letter-spacing:1.036533pt;}
.ls3f_c00006{letter-spacing:1.067200pt;}
.ls3e_c00006{letter-spacing:1.073333pt;}
.ls0_c00006{letter-spacing:1.094400pt;}
.ls43_c00006{letter-spacing:1.161280pt;}
.ls2c_c00006{letter-spacing:1.191680pt;}
.ls3c_c00006{letter-spacing:1.196000pt;}
.ls14_c00006{letter-spacing:1.203840pt;}
.ls20_c00006{letter-spacing:1.216000pt;}
.ls5_c00006{letter-spacing:1.218773pt;}
.ls44_c00006{letter-spacing:1.281867pt;}
.ls38_c00006{letter-spacing:1.349333pt;}
.ls2f_c00006{letter-spacing:1.374080pt;}
.ls3a_c00006{letter-spacing:1.386133pt;}
.ls27_c00006{letter-spacing:1.386240pt;}
.ls4d_c00006{letter-spacing:1.404000pt;}
.ls5b_c00006{letter-spacing:1.404480pt;}
.ls19_c00006{letter-spacing:1.416747pt;}
.ls4c_c00006{letter-spacing:1.454400pt;}
.ls30_c00006{letter-spacing:1.465280pt;}
.ls4a_c00006{letter-spacing:1.465867pt;}
.ls47_c00006{letter-spacing:1.484267pt;}
.ls10_c00006{letter-spacing:1.489600pt;}
.ls24_c00006{letter-spacing:1.520000pt;}
.ls2a_c00006{letter-spacing:1.550400pt;}
.ls1b_c00006{letter-spacing:1.565227pt;}
.ls70_c00006{letter-spacing:1.605120pt;}
.lse_c00006{letter-spacing:1.629440pt;}
.ls9_c00006{letter-spacing:1.645653pt;}
.ls2d_c00006{letter-spacing:1.647680pt;}
.ls41_c00006{letter-spacing:1.649867pt;}
.ls7_c00006{letter-spacing:1.664213pt;}
.ls18_c00006{letter-spacing:1.670400pt;}
.ls26_c00006{letter-spacing:1.708480pt;}
.ls15_c00006{letter-spacing:1.744960pt;}
.ls21_c00006{letter-spacing:1.757120pt;}
.ls34_c00006{letter-spacing:1.760267pt;}
.ls1_c00006{letter-spacing:1.800320pt;}
.lsd_c00006{letter-spacing:1.805760pt;}
.ls3_c00006{letter-spacing:1.837440pt;}
.ls16_c00006{letter-spacing:1.872640pt;}
.ls42_c00006{letter-spacing:1.981067pt;}
.ls8_c00006{letter-spacing:1.992107pt;}
.lsf_c00006{letter-spacing:2.109760pt;}
.lsa_c00006{letter-spacing:2.128000pt;}
.ls23_c00006{letter-spacing:2.200960pt;}
.ls5d_c00006{letter-spacing:2.371200pt;}
.ls6_c00006{letter-spacing:2.375680pt;}
.ls1d_c00006{letter-spacing:2.377280pt;}
.ls57_c00006{letter-spacing:2.383360pt;}
.ls63_c00006{letter-spacing:2.413760pt;}
.ls58_c00006{letter-spacing:3.040000pt;}
.ws0_c00006{word-spacing:0.000000pt;}
._e_c00006{margin-left:-13.849493pt;}
._6_c00006{margin-left:-12.343040pt;}
._11_c00006{margin-left:-11.224213pt;}
._9_c00006{margin-left:-9.575893pt;}
._2_c00006{margin-left:-8.243413pt;}
._13_c00006{margin-left:-5.961280pt;}
._f_c00006{margin-left:-4.132053pt;}
._12_c00006{margin-left:-3.151947pt;}
._4_c00006{margin-left:-2.179840pt;}
._a_c00006{margin-left:-1.185707pt;}
._0_c00006{width:1.440000pt;}
._1_c00006{width:3.273173pt;}
._c_c00006{width:4.287360pt;}
._10_c00006{width:6.080427pt;}
._3_c00006{width:7.058987pt;}
._b_c00006{width:8.743040pt;}
._8_c00006{width:10.658987pt;}
._d_c00006{width:12.192213pt;}
._5_c00006{width:13.268267pt;}
._7_c00006{width:16.189227pt;}
.fs2_c00006{font-size:58.666667pt;}
.fs5_c00006{font-size:60.266667pt;}
.fs4_c00006{font-size:60.800000pt;}
.fs6_c00006{font-size:61.333333pt;}
.fs1_c00006{font-size:61.866667pt;}
.fs7_c00006{font-size:62.400000pt;}
.fs3_c00006{font-size:66.133333pt;}
.fs0_c00006{font-size:72.000000pt;}
.y0_c00006{bottom:0.000000pt;}
.y1f_c00006{bottom:106.239333pt;}
.y1e_c00006{bottom:133.118667pt;}
.y1d_c00006{bottom:160.320000pt;}
.y1c_c00006{bottom:187.533333pt;}
.y1a_c00006{bottom:214.730000pt;}
.y1b_c00006{bottom:214.733333pt;}
.y19_c00006{bottom:242.253333pt;}
.y18_c00006{bottom:269.773333pt;}
.y17_c00006{bottom:296.640000pt;}
.y16_c00006{bottom:324.173333pt;}
.y15_c00006{bottom:351.679733pt;}
.y14_c00006{bottom:379.526133pt;}
.y13_c00006{bottom:407.067733pt;}
.y12_c00006{bottom:434.260533pt;}
.y11_c00006{bottom:461.447200pt;}
.y10_c00006{bottom:488.640000pt;}
.yf_c00006{bottom:488.646133pt;}
.ye_c00006{bottom:516.173333pt;}
.yd_c00006{bottom:570.573333pt;}
.yc_c00006{bottom:625.600000pt;}
.ya_c00006{bottom:653.128000pt;}
.yb_c00006{bottom:653.133333pt;}
.y9_c00006{bottom:680.640000pt;}
.y7_c00006{bottom:708.166133pt;}
.y8_c00006{bottom:708.173333pt;}
.y6_c00006{bottom:735.693333pt;}
.y5_c00006{bottom:790.400000pt;}
.y4_c00006{bottom:845.120000pt;}
.y3_c00006{bottom:872.013333pt;}
.y2_c00006{bottom:927.040000pt;}
.y1_c00006{bottom:983.360000pt;}
.h5_c00006{height:59.671875pt;}
.h8_c00006{height:59.672942pt;}
.h7_c00006{height:59.696408pt;}
.h6_c00006{height:59.700675pt;}
.ha_c00006{height:60.165365pt;}
.hb_c00006{height:60.168031pt;}
.h9_c00006{height:61.211719pt;}
.h3_c00006{height:62.350000pt;}
.h4_c00006{height:64.906250pt;}
.h2_c00006{height:72.562500pt;}
.h1_c00006{height:1122.666667pt;}
.h0_c00006{height:1122.880000pt;}
.w1_c00006{width:793.333333pt;}
.w0_c00006{width:793.600000pt;}
.x0_c00006{left:0.000000pt;}
.x2_c00006{left:112.986667pt;}
.x3_c00006{left:128.560000pt;}
.x5_c00006{left:161.106667pt;}
.xb_c00006{left:162.066667pt;}
.x6_c00006{left:163.668800pt;}
.xf_c00006{left:207.293333pt;}
.x10_c00006{left:208.243200pt;}
.xa_c00006{left:209.750667pt;}
.x9_c00006{left:211.346667pt;}
.x12_c00006{left:252.666667pt;}
.x11_c00006{left:253.626667pt;}
.x14_c00006{left:254.586667pt;}
.x15_c00006{left:255.866667pt;}
.x16_c00006{left:258.749333pt;}
.x7_c00006{left:277.693333pt;}
.x1_c00006{left:289.493333pt;}
.xe_c00006{left:298.493333pt;}
.x8_c00006{left:303.200000pt;}
.xc_c00006{left:323.773333pt;}
.xd_c00006{left:349.280000pt;}
.x13_c00006{left:654.266667pt;}
.x4_c00006{left:656.453333pt;}
}





/* 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_c00007 {
    display:none;
  }
  .loading-indicator_c00007.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00007 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_c00007 { 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_c00007" -> "#page-container .classname_c00007")
 */
.pf_c00007 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00007 { /* 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_c00007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00007 { /* 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_c00007 { /* 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_c00007 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00007 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00007 {overflow:visible;}
  }
}
.c_c00007 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00007 { /* 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_c00007:after { /* webkit #35443 */
  content: '';
}
.t_c00007:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00007 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 */
}
.__c00007 { /* 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_c00007 { /* info for Javascript */
  display:none;
}
.l_c00007 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00007 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00007 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00007: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_c00007 {
    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_c00007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00007.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_c00007 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00007;src:url('chunks/assets/font_3f69555e96f0cd477a9e8c0b.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.284180;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_c00007;src:url('chunks/assets/font_e3bdd3e19d059c0269428765.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.284668;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_c00007;src:url('chunks/assets/font_94a06ee4a0cbdd3732981b8c.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.311035;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_c00007;src:url('chunks/assets/font_d325f2f1bd6e156f63a84302.woff2')format("woff");}.ff4_c00007{font-family:ff4_c00007;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:ff5_c00007;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff5_c00007{font-family:ff5_c00007;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:ff6_c00007;src:url('chunks/assets/font_7b549f3bf49301076a23bf85.woff2')format("woff");}.ff6_c00007{font-family:ff6_c00007;line-height:0.666000;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;}
.mb_c00007{transform:matrix(0.222263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222263,0.000000,0.000000,0.250000,0,0);}
.m8_c00007{transform:matrix(0.230337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230337,0.000000,0.000000,0.250000,0,0);}
.m9_c00007{transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);}
.m2_c00007{transform:matrix(0.237592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237592,0.000000,0.000000,0.250000,0,0);}
.m1_c00007{transform:matrix(0.238964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238964,0.000000,0.000000,0.250000,0,0);}
.m5_c00007{transform:matrix(0.239942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239942,0.000000,0.000000,0.250000,0,0);}
.m3_c00007{transform:matrix(0.242417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242417,0.000000,0.000000,0.250000,0,0);}
.me_c00007{transform:matrix(0.242652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242652,0.000000,0.000000,0.250000,0,0);}
.m7_c00007{transform:matrix(0.245395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245395,0.000000,0.000000,0.250000,0,0);}
.md_c00007{transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);}
.m6_c00007{transform:matrix(0.246162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246162,0.000000,0.000000,0.250000,0,0);}
.m4_c00007{transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);}
.m0_c00007{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);}
.ma_c00007{transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);}
.mc_c00007{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls64_c00007{letter-spacing:-2.898000px;}
.ls60_c00007{letter-spacing:-2.604000px;}
.ls4a_c00007{letter-spacing:-2.457000px;}
.ls51_c00007{letter-spacing:-1.579500px;}
.ls58_c00007{letter-spacing:-1.558440px;}
.ls69_c00007{letter-spacing:-1.509300px;}
.ls61_c00007{letter-spacing:-1.249920px;}
.ls63_c00007{letter-spacing:-1.104000px;}
.ls54_c00007{letter-spacing:-0.989820px;}
.ls5f_c00007{letter-spacing:-0.842400px;}
.ls65_c00007{letter-spacing:-0.828360px;}
.ls53_c00007{letter-spacing:-0.800280px;}
.ls5b_c00007{letter-spacing:-0.793260px;}
.ls6b_c00007{letter-spacing:-0.772200px;}
.ls48_c00007{letter-spacing:-0.765180px;}
.ls5c_c00007{letter-spacing:-0.758160px;}
.ls4e_c00007{letter-spacing:-0.617760px;}
.ls68_c00007{letter-spacing:-0.533520px;}
.ls46_c00007{letter-spacing:-0.526500px;}
.ls4c_c00007{letter-spacing:-0.477360px;}
.ls66_c00007{letter-spacing:-0.294840px;}
.ls57_c00007{letter-spacing:-0.273780px;}
.ls49_c00007{letter-spacing:-0.231660px;}
.ls50_c00007{letter-spacing:-0.119340px;}
.ls4b_c00007{letter-spacing:-0.098280px;}
.ls56_c00007{letter-spacing:-0.070200px;}
.ls47_c00007{letter-spacing:-0.007020px;}
.ls4d_c00007{letter-spacing:0.000000px;}
.ls28_c00007{letter-spacing:0.091260px;}
.ls45_c00007{letter-spacing:0.098280px;}
.ls42_c00007{letter-spacing:0.224640px;}
.ls43_c00007{letter-spacing:0.252720px;}
.ls6a_c00007{letter-spacing:0.351000px;}
.ls67_c00007{letter-spacing:0.365040px;}
.ls4_c00007{letter-spacing:0.379080px;}
.ls1d_c00007{letter-spacing:0.400140px;}
.ls5e_c00007{letter-spacing:0.421200px;}
.ls7_c00007{letter-spacing:0.435240px;}
.lsf_c00007{letter-spacing:0.449280px;}
.ls1a_c00007{letter-spacing:0.456300px;}
.ls2f_c00007{letter-spacing:0.484380px;}
.ls3_c00007{letter-spacing:0.498420px;}
.ls5d_c00007{letter-spacing:0.505440px;}
.lsd_c00007{letter-spacing:0.512460px;}
.ls27_c00007{letter-spacing:0.519480px;}
.ls24_c00007{letter-spacing:0.526500px;}
.ls19_c00007{letter-spacing:0.533520px;}
.ls14_c00007{letter-spacing:0.540540px;}
.ls12_c00007{letter-spacing:0.547560px;}
.ls9_c00007{letter-spacing:0.554580px;}
.ls59_c00007{letter-spacing:0.568620px;}
.ls29_c00007{letter-spacing:0.575640px;}
.ls55_c00007{letter-spacing:0.582660px;}
.ls3c_c00007{letter-spacing:0.610740px;}
.ls15_c00007{letter-spacing:0.624780px;}
.ls5a_c00007{letter-spacing:0.645840px;}
.ls38_c00007{letter-spacing:0.673920px;}
.ls3b_c00007{letter-spacing:0.744120px;}
.ls40_c00007{letter-spacing:0.765180px;}
.ls25_c00007{letter-spacing:0.807300px;}
.ls0_c00007{letter-spacing:0.863460px;}
.ls8_c00007{letter-spacing:0.884520px;}
.ls37_c00007{letter-spacing:0.905580px;}
.ls3e_c00007{letter-spacing:0.919620px;}
.lse_c00007{letter-spacing:0.961740px;}
.ls2d_c00007{letter-spacing:0.968760px;}
.ls2c_c00007{letter-spacing:0.975780px;}
.ls3d_c00007{letter-spacing:0.982800px;}
.ls39_c00007{letter-spacing:1.010880px;}
.ls22_c00007{letter-spacing:1.017900px;}
.ls2e_c00007{letter-spacing:1.031940px;}
.ls13_c00007{letter-spacing:1.067040px;}
.ls17_c00007{letter-spacing:1.081080px;}
.ls2_c00007{letter-spacing:1.095120px;}
.ls10_c00007{letter-spacing:1.109160px;}
.ls18_c00007{letter-spacing:1.116180px;}
.ls2a_c00007{letter-spacing:1.151280px;}
.ls5_c00007{letter-spacing:1.158300px;}
.lsa_c00007{letter-spacing:1.165320px;}
.ls11_c00007{letter-spacing:1.172340px;}
.ls26_c00007{letter-spacing:1.214460px;}
.ls41_c00007{letter-spacing:1.221480px;}
.ls1f_c00007{letter-spacing:1.249560px;}
.ls1c_c00007{letter-spacing:1.256580px;}
.lsb_c00007{letter-spacing:1.319760px;}
.lsc_c00007{letter-spacing:1.340820px;}
.ls20_c00007{letter-spacing:1.361880px;}
.ls23_c00007{letter-spacing:1.368900px;}
.ls16_c00007{letter-spacing:1.389960px;}
.ls21_c00007{letter-spacing:1.396980px;}
.ls3f_c00007{letter-spacing:1.425060px;}
.ls4f_c00007{letter-spacing:1.432080px;}
.ls1_c00007{letter-spacing:1.488240px;}
.ls2b_c00007{letter-spacing:1.537380px;}
.ls52_c00007{letter-spacing:1.551420px;}
.ls6_c00007{letter-spacing:1.621620px;}
.ls35_c00007{letter-spacing:1.635660px;}
.ls31_c00007{letter-spacing:1.719900px;}
.ls34_c00007{letter-spacing:1.733940px;}
.ls3a_c00007{letter-spacing:1.747980px;}
.ls30_c00007{letter-spacing:1.776060px;}
.ls36_c00007{letter-spacing:1.797120px;}
.ls32_c00007{letter-spacing:1.825200px;}
.ls44_c00007{letter-spacing:1.909440px;}
.ls1b_c00007{letter-spacing:1.930500px;}
.ls1e_c00007{letter-spacing:1.993680px;}
.ls33_c00007{letter-spacing:2.393820px;}
.ls62_c00007{letter-spacing:3.360000px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{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__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00007{word-spacing:0.000000px;}
._6_c00007{margin-left:-16.343160px;}
._e_c00007{margin-left:-15.128100px;}
._c_c00007{margin-left:-13.955760px;}
._1_c00007{margin-left:-12.781920px;}
._4_c00007{margin-left:-11.689440px;}
._2_c00007{margin-left:-10.382580px;}
._11_c00007{margin-left:-3.979440px;}
._f_c00007{margin-left:-2.653560px;}
._7_c00007{margin-left:-1.600560px;}
._5_c00007{width:2.007720px;}
._9_c00007{width:3.116880px;}
._0_c00007{width:4.296240px;}
._8_c00007{width:5.370300px;}
._3_c00007{width:6.718140px;}
._b_c00007{width:8.213400px;}
._10_c00007{width:9.364680px;}
._d_c00007{width:10.698000px;}
._a_c00007{width:12.579840px;}
.fc0_c00007{color:transparent;}
.fs5_c00007{font-size:15.840000px;}
.fs2_c00007{font-size:67.200000px;}
.fs3_c00007{font-size:69.000000px;}
.fs0_c00007{font-size:70.200000px;}
.fs1_c00007{font-size:74.400000px;}
.fs4_c00007{font-size:82.800000px;}
.y0_c00007{bottom:0.000000px;}
.y23_c00007{bottom:109.440000px;}
.y22_c00007{bottom:140.400000px;}
.y21_c00007{bottom:171.360000px;}
.y20_c00007{bottom:202.335000px;}
.y1f_c00007{bottom:202.336800px;}
.y1e_c00007{bottom:233.295000px;}
.y1b_c00007{bottom:262.455000px;}
.y1d_c00007{bottom:263.520000px;}
.y1c_c00007{bottom:267.855000px;}
.y1a_c00007{bottom:325.815000px;}
.y19_c00007{bottom:387.735000px;}
.y18_c00007{bottom:449.280000px;}
.y17_c00007{bottom:449.280600px;}
.y16_c00007{bottom:510.495000px;}
.y15_c00007{bottom:541.095000px;}
.y14_c00007{bottom:572.415000px;}
.y12_c00007{bottom:602.999250px;}
.y13_c00007{bottom:603.000000px;}
.y11_c00007{bottom:633.970050px;}
.y10_c00007{bottom:665.279250px;}
.yf_c00007{bottom:696.259350px;}
.ye_c00007{bottom:727.200000px;}
.yd_c00007{bottom:758.520000px;}
.yc_c00007{bottom:789.135000px;}
.yb_c00007{bottom:820.455000px;}
.ya_c00007{bottom:851.400000px;}
.y9_c00007{bottom:851.404950px;}
.y8_c00007{bottom:882.012150px;}
.y7_c00007{bottom:912.619350px;}
.y6_c00007{bottom:943.560000px;}
.y5_c00007{bottom:974.520000px;}
.y4_c00007{bottom:1005.135000px;}
.y3_c00007{bottom:1036.080000px;}
.y2_c00007{bottom:1067.040000px;}
.y1_c00007{bottom:1098.720000px;}
.ha_c00007{height:10.549440px;}
.h7_c00007{height:65.953125px;}
.h3_c00007{height:68.863184px;}
.h2_c00007{height:68.897461px;}
.h4_c00007{height:68.917261px;}
.h5_c00007{height:70.748437px;}
.h8_c00007{height:71.964844px;}
.h6_c00007{height:73.019531px;}
.h9_c00007{height:86.357813px;}
.h1_c00007{height:1263.000000px;}
.h0_c00007{height:1263.240000px;}
.w1_c00007{width:892.500000px;}
.w0_c00007{width:892.800000px;}
.x0_c00007{left:0.000000px;}
.xd_c00007{left:118.985550px;}
.x10_c00007{left:172.950000px;}
.xe_c00007{left:174.720000px;}
.x14_c00007{left:176.175000px;}
.x9_c00007{left:179.565000px;}
.x11_c00007{left:200.055000px;}
.xf_c00007{left:201.780000px;}
.xa_c00007{left:227.445000px;}
.x4_c00007{left:229.245000px;}
.x7_c00007{left:278.472300px;}
.x8_c00007{left:280.630950px;}
.x3_c00007{left:281.730000px;}
.x2_c00007{left:283.170000px;}
.x1_c00007{left:284.610000px;}
.x12_c00007{left:417.600000px;}
.x13_c00007{left:662.265000px;}
.x5_c00007{left:733.695000px;}
.xc_c00007{left:735.975000px;}
.x6_c00007{left:737.205000px;}
.xb_c00007{left:738.840000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls64_c00007{letter-spacing:-2.576000pt;}
.ls60_c00007{letter-spacing:-2.314667pt;}
.ls4a_c00007{letter-spacing:-2.184000pt;}
.ls51_c00007{letter-spacing:-1.404000pt;}
.ls58_c00007{letter-spacing:-1.385280pt;}
.ls69_c00007{letter-spacing:-1.341600pt;}
.ls61_c00007{letter-spacing:-1.111040pt;}
.ls63_c00007{letter-spacing:-0.981333pt;}
.ls54_c00007{letter-spacing:-0.879840pt;}
.ls5f_c00007{letter-spacing:-0.748800pt;}
.ls65_c00007{letter-spacing:-0.736320pt;}
.ls53_c00007{letter-spacing:-0.711360pt;}
.ls5b_c00007{letter-spacing:-0.705120pt;}
.ls6b_c00007{letter-spacing:-0.686400pt;}
.ls48_c00007{letter-spacing:-0.680160pt;}
.ls5c_c00007{letter-spacing:-0.673920pt;}
.ls4e_c00007{letter-spacing:-0.549120pt;}
.ls68_c00007{letter-spacing:-0.474240pt;}
.ls46_c00007{letter-spacing:-0.468000pt;}
.ls4c_c00007{letter-spacing:-0.424320pt;}
.ls66_c00007{letter-spacing:-0.262080pt;}
.ls57_c00007{letter-spacing:-0.243360pt;}
.ls49_c00007{letter-spacing:-0.205920pt;}
.ls50_c00007{letter-spacing:-0.106080pt;}
.ls4b_c00007{letter-spacing:-0.087360pt;}
.ls56_c00007{letter-spacing:-0.062400pt;}
.ls47_c00007{letter-spacing:-0.006240pt;}
.ls4d_c00007{letter-spacing:0.000000pt;}
.ls28_c00007{letter-spacing:0.081120pt;}
.ls45_c00007{letter-spacing:0.087360pt;}
.ls42_c00007{letter-spacing:0.199680pt;}
.ls43_c00007{letter-spacing:0.224640pt;}
.ls6a_c00007{letter-spacing:0.312000pt;}
.ls67_c00007{letter-spacing:0.324480pt;}
.ls4_c00007{letter-spacing:0.336960pt;}
.ls1d_c00007{letter-spacing:0.355680pt;}
.ls5e_c00007{letter-spacing:0.374400pt;}
.ls7_c00007{letter-spacing:0.386880pt;}
.lsf_c00007{letter-spacing:0.399360pt;}
.ls1a_c00007{letter-spacing:0.405600pt;}
.ls2f_c00007{letter-spacing:0.430560pt;}
.ls3_c00007{letter-spacing:0.443040pt;}
.ls5d_c00007{letter-spacing:0.449280pt;}
.lsd_c00007{letter-spacing:0.455520pt;}
.ls27_c00007{letter-spacing:0.461760pt;}
.ls24_c00007{letter-spacing:0.468000pt;}
.ls19_c00007{letter-spacing:0.474240pt;}
.ls14_c00007{letter-spacing:0.480480pt;}
.ls12_c00007{letter-spacing:0.486720pt;}
.ls9_c00007{letter-spacing:0.492960pt;}
.ls59_c00007{letter-spacing:0.505440pt;}
.ls29_c00007{letter-spacing:0.511680pt;}
.ls55_c00007{letter-spacing:0.517920pt;}
.ls3c_c00007{letter-spacing:0.542880pt;}
.ls15_c00007{letter-spacing:0.555360pt;}
.ls5a_c00007{letter-spacing:0.574080pt;}
.ls38_c00007{letter-spacing:0.599040pt;}
.ls3b_c00007{letter-spacing:0.661440pt;}
.ls40_c00007{letter-spacing:0.680160pt;}
.ls25_c00007{letter-spacing:0.717600pt;}
.ls0_c00007{letter-spacing:0.767520pt;}
.ls8_c00007{letter-spacing:0.786240pt;}
.ls37_c00007{letter-spacing:0.804960pt;}
.ls3e_c00007{letter-spacing:0.817440pt;}
.lse_c00007{letter-spacing:0.854880pt;}
.ls2d_c00007{letter-spacing:0.861120pt;}
.ls2c_c00007{letter-spacing:0.867360pt;}
.ls3d_c00007{letter-spacing:0.873600pt;}
.ls39_c00007{letter-spacing:0.898560pt;}
.ls22_c00007{letter-spacing:0.904800pt;}
.ls2e_c00007{letter-spacing:0.917280pt;}
.ls13_c00007{letter-spacing:0.948480pt;}
.ls17_c00007{letter-spacing:0.960960pt;}
.ls2_c00007{letter-spacing:0.973440pt;}
.ls10_c00007{letter-spacing:0.985920pt;}
.ls18_c00007{letter-spacing:0.992160pt;}
.ls2a_c00007{letter-spacing:1.023360pt;}
.ls5_c00007{letter-spacing:1.029600pt;}
.lsa_c00007{letter-spacing:1.035840pt;}
.ls11_c00007{letter-spacing:1.042080pt;}
.ls26_c00007{letter-spacing:1.079520pt;}
.ls41_c00007{letter-spacing:1.085760pt;}
.ls1f_c00007{letter-spacing:1.110720pt;}
.ls1c_c00007{letter-spacing:1.116960pt;}
.lsb_c00007{letter-spacing:1.173120pt;}
.lsc_c00007{letter-spacing:1.191840pt;}
.ls20_c00007{letter-spacing:1.210560pt;}
.ls23_c00007{letter-spacing:1.216800pt;}
.ls16_c00007{letter-spacing:1.235520pt;}
.ls21_c00007{letter-spacing:1.241760pt;}
.ls3f_c00007{letter-spacing:1.266720pt;}
.ls4f_c00007{letter-spacing:1.272960pt;}
.ls1_c00007{letter-spacing:1.322880pt;}
.ls2b_c00007{letter-spacing:1.366560pt;}
.ls52_c00007{letter-spacing:1.379040pt;}
.ls6_c00007{letter-spacing:1.441440pt;}
.ls35_c00007{letter-spacing:1.453920pt;}
.ls31_c00007{letter-spacing:1.528800pt;}
.ls34_c00007{letter-spacing:1.541280pt;}
.ls3a_c00007{letter-spacing:1.553760pt;}
.ls30_c00007{letter-spacing:1.578720pt;}
.ls36_c00007{letter-spacing:1.597440pt;}
.ls32_c00007{letter-spacing:1.622400pt;}
.ls44_c00007{letter-spacing:1.697280pt;}
.ls1b_c00007{letter-spacing:1.716000pt;}
.ls1e_c00007{letter-spacing:1.772160pt;}
.ls33_c00007{letter-spacing:2.127840pt;}
.ls62_c00007{letter-spacing:2.986667pt;}
.ws0_c00007{word-spacing:0.000000pt;}
._6_c00007{margin-left:-14.527253pt;}
._e_c00007{margin-left:-13.447200pt;}
._c_c00007{margin-left:-12.405120pt;}
._1_c00007{margin-left:-11.361707pt;}
._4_c00007{margin-left:-10.390613pt;}
._2_c00007{margin-left:-9.228960pt;}
._11_c00007{margin-left:-3.537280pt;}
._f_c00007{margin-left:-2.358720pt;}
._7_c00007{margin-left:-1.422720pt;}
._5_c00007{width:1.784640pt;}
._9_c00007{width:2.770560pt;}
._0_c00007{width:3.818880pt;}
._8_c00007{width:4.773600pt;}
._3_c00007{width:5.971680pt;}
._b_c00007{width:7.300800pt;}
._10_c00007{width:8.324160pt;}
._d_c00007{width:9.509333pt;}
._a_c00007{width:11.182080pt;}
.fs5_c00007{font-size:14.080000pt;}
.fs2_c00007{font-size:59.733333pt;}
.fs3_c00007{font-size:61.333333pt;}
.fs0_c00007{font-size:62.400000pt;}
.fs1_c00007{font-size:66.133333pt;}
.fs4_c00007{font-size:73.600000pt;}
.y0_c00007{bottom:0.000000pt;}
.y23_c00007{bottom:97.280000pt;}
.y22_c00007{bottom:124.800000pt;}
.y21_c00007{bottom:152.320000pt;}
.y20_c00007{bottom:179.853333pt;}
.y1f_c00007{bottom:179.854933pt;}
.y1e_c00007{bottom:207.373333pt;}
.y1b_c00007{bottom:233.293333pt;}
.y1d_c00007{bottom:234.240000pt;}
.y1c_c00007{bottom:238.093333pt;}
.y1a_c00007{bottom:289.613333pt;}
.y19_c00007{bottom:344.653333pt;}
.y18_c00007{bottom:399.360000pt;}
.y17_c00007{bottom:399.360533pt;}
.y16_c00007{bottom:453.773333pt;}
.y15_c00007{bottom:480.973333pt;}
.y14_c00007{bottom:508.813333pt;}
.y12_c00007{bottom:535.999333pt;}
.y13_c00007{bottom:536.000000pt;}
.y11_c00007{bottom:563.528933pt;}
.y10_c00007{bottom:591.359333pt;}
.yf_c00007{bottom:618.897200pt;}
.ye_c00007{bottom:646.400000pt;}
.yd_c00007{bottom:674.240000pt;}
.yc_c00007{bottom:701.453333pt;}
.yb_c00007{bottom:729.293333pt;}
.ya_c00007{bottom:756.800000pt;}
.y9_c00007{bottom:756.804400pt;}
.y8_c00007{bottom:784.010800pt;}
.y7_c00007{bottom:811.217200pt;}
.y6_c00007{bottom:838.720000pt;}
.y5_c00007{bottom:866.240000pt;}
.y4_c00007{bottom:893.453333pt;}
.y3_c00007{bottom:920.960000pt;}
.y2_c00007{bottom:948.480000pt;}
.y1_c00007{bottom:976.640000pt;}
.ha_c00007{height:9.377280pt;}
.h7_c00007{height:58.625000pt;}
.h3_c00007{height:61.211719pt;}
.h2_c00007{height:61.242187pt;}
.h4_c00007{height:61.259788pt;}
.h5_c00007{height:62.887500pt;}
.h8_c00007{height:63.968750pt;}
.h6_c00007{height:64.906250pt;}
.h9_c00007{height:76.762500pt;}
.h1_c00007{height:1122.666667pt;}
.h0_c00007{height:1122.880000pt;}
.w1_c00007{width:793.333333pt;}
.w0_c00007{width:793.600000pt;}
.x0_c00007{left:0.000000pt;}
.xd_c00007{left:105.764933pt;}
.x10_c00007{left:153.733333pt;}
.xe_c00007{left:155.306667pt;}
.x14_c00007{left:156.600000pt;}
.x9_c00007{left:159.613333pt;}
.x11_c00007{left:177.826667pt;}
.xf_c00007{left:179.360000pt;}
.xa_c00007{left:202.173333pt;}
.x4_c00007{left:203.773333pt;}
.x7_c00007{left:247.530933pt;}
.x8_c00007{left:249.449733pt;}
.x3_c00007{left:250.426667pt;}
.x2_c00007{left:251.706667pt;}
.x1_c00007{left:252.986667pt;}
.x12_c00007{left:371.200000pt;}
.x13_c00007{left:588.680000pt;}
.x5_c00007{left:652.173333pt;}
.xc_c00007{left:654.200000pt;}
.x6_c00007{left:655.293333pt;}
.xb_c00007{left:656.746667pt;}
}





/* 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_c00008 {
    display:none;
  }
  .loading-indicator_c00008.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00008 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_c00008 { 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_c00008" -> "#page-container .classname_c00008")
 */
.pf_c00008 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00008 { /* 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_c00008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00008 { /* 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_c00008 { /* 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_c00008 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00008 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00008 {overflow:visible;}
  }
}
.c_c00008 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00008 { /* 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_c00008:after { /* webkit #35443 */
  content: '';
}
.t_c00008:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00008 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 */
}
.__c00008 { /* 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_c00008 { /* info for Javascript */
  display:none;
}
.l_c00008 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00008 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00008 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00008: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_c00008 {
    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_c00008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00008.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_c00008 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00008;src:url('chunks/assets/font_0f4e97c7c2558f579502c815.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.284668;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_c00008;src:url('chunks/assets/font_3d59be85cc139b7de1221c1d.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;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_c00008;src:url('chunks/assets/font_46274e4b1f55280550129f4d.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:0.666000;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_c00008;src:url('chunks/assets/font_907cf9cf09c04e89a9a3a26b.woff2')format("woff");}.ff4_c00008{font-family:ff4_c00008;line-height:1.311035;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;}
.m3_c00008{transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);}
.m2_c00008{transform:matrix(0.243659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243659,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);}
.m5_c00008{transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);}
.m0_c00008{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);}
.m4_c00008{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m7_c00008{transform:matrix(0.255246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255246,0.000000,0.000000,0.250000,0,0);}
.m6_c00008{transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls47_c00008{letter-spacing:-2.436000px;}
.ls62_c00008{letter-spacing:-1.823520px;}
.ls61_c00008{letter-spacing:-1.781760px;}
.ls57_c00008{letter-spacing:-1.691280px;}
.ls4a_c00008{letter-spacing:-1.600800px;}
.ls60_c00008{letter-spacing:-1.524240px;}
.ls49_c00008{letter-spacing:-1.475520px;}
.ls5e_c00008{letter-spacing:-1.252800px;}
.ls59_c00008{letter-spacing:-1.238880px;}
.ls65_c00008{letter-spacing:-0.974400px;}
.ls5b_c00008{letter-spacing:-0.897840px;}
.ls58_c00008{letter-spacing:-0.890880px;}
.ls55_c00008{letter-spacing:-0.883920px;}
.ls48_c00008{letter-spacing:-0.758640px;}
.ls5c_c00008{letter-spacing:-0.730800px;}
.ls4e_c00008{letter-spacing:-0.702960px;}
.ls52_c00008{letter-spacing:-0.619440px;}
.ls51_c00008{letter-spacing:-0.515040px;}
.ls63_c00008{letter-spacing:-0.410640px;}
.ls67_c00008{letter-spacing:-0.257520px;}
.ls5d_c00008{letter-spacing:-0.250560px;}
.ls5a_c00008{letter-spacing:-0.208800px;}
.ls45_c00008{letter-spacing:-0.174000px;}
.ls4c_c00008{letter-spacing:-0.167040px;}
.ls4d_c00008{letter-spacing:0.000000px;}
.ls2_c00008{letter-spacing:0.187920px;}
.ls4f_c00008{letter-spacing:0.201840px;}
.ls4b_c00008{letter-spacing:0.229680px;}
.ls25_c00008{letter-spacing:0.292320px;}
.ls27_c00008{letter-spacing:0.306240px;}
.ls24_c00008{letter-spacing:0.348000px;}
.ls15_c00008{letter-spacing:0.375840px;}
.ls3a_c00008{letter-spacing:0.382800px;}
.ls40_c00008{letter-spacing:0.389760px;}
.ls10_c00008{letter-spacing:0.396720px;}
.ls34_c00008{letter-spacing:0.410640px;}
.ls2e_c00008{letter-spacing:0.417600px;}
.ls50_c00008{letter-spacing:0.424560px;}
.lsc_c00008{letter-spacing:0.431520px;}
.lsa_c00008{letter-spacing:0.438480px;}
.ls7_c00008{letter-spacing:0.445440px;}
.ls3f_c00008{letter-spacing:0.459360px;}
.ls4_c00008{letter-spacing:0.466320px;}
.ls1c_c00008{letter-spacing:0.473280px;}
.ls46_c00008{letter-spacing:0.480240px;}
.ls19_c00008{letter-spacing:0.542880px;}
.ls8_c00008{letter-spacing:0.549840px;}
.ls2f_c00008{letter-spacing:0.556800px;}
.ls20_c00008{letter-spacing:0.605520px;}
.ls28_c00008{letter-spacing:0.626400px;}
.ls2b_c00008{letter-spacing:0.654240px;}
.ls17_c00008{letter-spacing:0.709920px;}
.ls26_c00008{letter-spacing:0.716880px;}
.ls18_c00008{letter-spacing:0.730800px;}
.ls13_c00008{letter-spacing:0.737760px;}
.lsd_c00008{letter-spacing:0.772560px;}
.ls53_c00008{letter-spacing:0.793440px;}
.ls1f_c00008{letter-spacing:0.821280px;}
.ls68_c00008{letter-spacing:0.859020px;}
.ls2a_c00008{letter-spacing:0.870000px;}
.ls64_c00008{letter-spacing:0.890880px;}
.lse_c00008{letter-spacing:0.897840px;}
.ls54_c00008{letter-spacing:0.925680px;}
.ls21_c00008{letter-spacing:0.967440px;}
.ls1_c00008{letter-spacing:0.981360px;}
.ls6_c00008{letter-spacing:1.016160px;}
.ls41_c00008{letter-spacing:1.030080px;}
.ls39_c00008{letter-spacing:1.044000px;}
.ls11_c00008{letter-spacing:1.085760px;}
.ls9_c00008{letter-spacing:1.134480px;}
.ls3_c00008{letter-spacing:1.162320px;}
.ls16_c00008{letter-spacing:1.169280px;}
.lsf_c00008{letter-spacing:1.183200px;}
.ls38_c00008{letter-spacing:1.197120px;}
.ls56_c00008{letter-spacing:1.211040px;}
.ls14_c00008{letter-spacing:1.224960px;}
.ls1b_c00008{letter-spacing:1.266720px;}
.lsb_c00008{letter-spacing:1.280640px;}
.ls29_c00008{letter-spacing:1.287600px;}
.ls22_c00008{letter-spacing:1.308480px;}
.ls23_c00008{letter-spacing:1.343280px;}
.ls31_c00008{letter-spacing:1.357200px;}
.ls1e_c00008{letter-spacing:1.364160px;}
.ls33_c00008{letter-spacing:1.405920px;}
.ls36_c00008{letter-spacing:1.433760px;}
.ls3e_c00008{letter-spacing:1.482480px;}
.ls2d_c00008{letter-spacing:1.510320px;}
.ls35_c00008{letter-spacing:1.517280px;}
.ls66_c00008{letter-spacing:1.524240px;}
.ls42_c00008{letter-spacing:1.545120px;}
.ls5_c00008{letter-spacing:1.559040px;}
.ls32_c00008{letter-spacing:1.572960px;}
.ls3d_c00008{letter-spacing:1.600800px;}
.ls2c_c00008{letter-spacing:1.670400px;}
.ls3b_c00008{letter-spacing:1.684320px;}
.ls30_c00008{letter-spacing:1.705200px;}
.ls3c_c00008{letter-spacing:1.774800px;}
.ls12_c00008{letter-spacing:1.781760px;}
.ls37_c00008{letter-spacing:1.837440px;}
.ls0_c00008{letter-spacing:1.920960px;}
.ls1a_c00008{letter-spacing:1.983600px;}
.ls1d_c00008{letter-spacing:2.046240px;}
.ls44_c00008{letter-spacing:2.122800px;}
.ls43_c00008{letter-spacing:2.644800px;}
.ls5f_c00008{letter-spacing:3.480000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{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__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:0.000000px;}
._e_c00008{margin-left:-19.476480px;}
._10_c00008{margin-left:-14.931840px;}
._12_c00008{margin-left:-13.307520px;}
._d_c00008{margin-left:-12.023280px;}
._4_c00008{margin-left:-10.654800px;}
._7_c00008{margin-left:-9.257520px;}
._9_c00008{margin-left:-5.996160px;}
._1_c00008{margin-left:-3.716160px;}
._b_c00008{margin-left:-2.276160px;}
._13_c00008{margin-left:-1.180560px;}
._8_c00008{width:1.500960px;}
._c_c00008{width:2.596080px;}
._3_c00008{width:3.672480px;}
._5_c00008{width:5.844000px;}
._0_c00008{width:7.284000px;}
._11_c00008{width:8.463360px;}
._a_c00008{width:9.836880px;}
._6_c00008{width:12.335760px;}
._14_c00008{width:14.585760px;}
._16_c00008{width:15.605280px;}
._f_c00008{width:16.784640px;}
._2_c00008{width:34.138800px;}
._15_c00008{width:436.432800px;}
.fc0_c00008{color:transparent;}
.fs3_c00008{font-size:51.600000px;}
.fs2_c00008{font-size:53.280000px;}
.fs4_c00008{font-size:61.800000px;}
.fs1_c00008{font-size:67.200000px;}
.fs0_c00008{font-size:69.600000px;}
.y0_c00008{bottom:0.000000px;}
.y22_c00008{bottom:126.735000px;}
.y21_c00008{bottom:141.480000px;}
.y20_c00008{bottom:187.560000px;}
.y1f_c00008{bottom:187.568400px;}
.y1e_c00008{bottom:249.495000px;}
.y1d_c00008{bottom:311.415000px;}
.y1c_c00008{bottom:311.421600px;}
.y1b_c00008{bottom:372.600000px;}
.y1a_c00008{bottom:434.523000px;}
.y19_c00008{bottom:465.495000px;}
.y18_c00008{bottom:465.496200px;}
.y17_c00008{bottom:496.102800px;}
.y16_c00008{bottom:527.048400px;}
.y15_c00008{bottom:557.655000px;}
.y14_c00008{bottom:588.978000px;}
.y13_c00008{bottom:619.201800px;}
.y12_c00008{bottom:650.173800px;}
.y11_c00008{bottom:680.780400px;}
.y10_c00008{bottom:711.728400px;}
.yf_c00008{bottom:742.353600px;}
.ye_c00008{bottom:773.308200px;}
.yd_c00008{bottom:804.245400px;}
.yc_c00008{bottom:835.200000px;}
.yb_c00008{bottom:835.203000px;}
.ya_c00008{bottom:866.168400px;}
.y9_c00008{bottom:896.770800px;}
.y8_c00008{bottom:927.360000px;}
.y6_c00008{bottom:957.970800px;}
.y7_c00008{bottom:957.975000px;}
.y5_c00008{bottom:988.560000px;}
.y4_c00008{bottom:1019.528400px;}
.y3_c00008{bottom:1050.135000px;}
.y2_c00008{bottom:1080.720000px;}
.y1_c00008{bottom:1112.040000px;}
.h5_c00008{height:35.484480px;}
.h8_c00008{height:53.817187px;}
.h2_c00008{height:68.308594px;}
.h3_c00008{height:68.325394px;}
.h6_c00008{height:68.334994px;}
.h4_c00008{height:70.113900px;}
.h7_c00008{height:70.143750px;}
.h1_c00008{height:1263.000000px;}
.h0_c00008{height:1263.240000px;}
.w1_c00008{width:892.500000px;}
.w0_c00008{width:892.800000px;}
.x0_c00008{left:0.000000px;}
.xd_c00008{left:121.860000px;}
.x12_c00008{left:148.215000px;}
.x11_c00008{left:149.805000px;}
.x4_c00008{left:174.748800px;}
.x9_c00008{left:202.600800px;}
.x13_c00008{left:218.100000px;}
.x1_c00008{left:227.670000px;}
.x5_c00008{left:229.842000px;}
.xa_c00008{left:233.435400px;}
.xf_c00008{left:250.410000px;}
.x8_c00008{left:270.175800px;}
.xb_c00008{left:272.916000px;}
.xc_c00008{left:297.645000px;}
.x10_c00008{left:413.640000px;}
.x6_c00008{left:595.095000px;}
.x7_c00008{left:600.480000px;}
.x3_c00008{left:722.295000px;}
.xe_c00008{left:723.750000px;}
.x2_c00008{left:730.965000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls47_c00008{letter-spacing:-2.165333pt;}
.ls62_c00008{letter-spacing:-1.620907pt;}
.ls61_c00008{letter-spacing:-1.583787pt;}
.ls57_c00008{letter-spacing:-1.503360pt;}
.ls4a_c00008{letter-spacing:-1.422933pt;}
.ls60_c00008{letter-spacing:-1.354880pt;}
.ls49_c00008{letter-spacing:-1.311573pt;}
.ls5e_c00008{letter-spacing:-1.113600pt;}
.ls59_c00008{letter-spacing:-1.101227pt;}
.ls65_c00008{letter-spacing:-0.866133pt;}
.ls5b_c00008{letter-spacing:-0.798080pt;}
.ls58_c00008{letter-spacing:-0.791893pt;}
.ls55_c00008{letter-spacing:-0.785707pt;}
.ls48_c00008{letter-spacing:-0.674347pt;}
.ls5c_c00008{letter-spacing:-0.649600pt;}
.ls4e_c00008{letter-spacing:-0.624853pt;}
.ls52_c00008{letter-spacing:-0.550613pt;}
.ls51_c00008{letter-spacing:-0.457813pt;}
.ls63_c00008{letter-spacing:-0.365013pt;}
.ls67_c00008{letter-spacing:-0.228907pt;}
.ls5d_c00008{letter-spacing:-0.222720pt;}
.ls5a_c00008{letter-spacing:-0.185600pt;}
.ls45_c00008{letter-spacing:-0.154667pt;}
.ls4c_c00008{letter-spacing:-0.148480pt;}
.ls4d_c00008{letter-spacing:0.000000pt;}
.ls2_c00008{letter-spacing:0.167040pt;}
.ls4f_c00008{letter-spacing:0.179413pt;}
.ls4b_c00008{letter-spacing:0.204160pt;}
.ls25_c00008{letter-spacing:0.259840pt;}
.ls27_c00008{letter-spacing:0.272213pt;}
.ls24_c00008{letter-spacing:0.309333pt;}
.ls15_c00008{letter-spacing:0.334080pt;}
.ls3a_c00008{letter-spacing:0.340267pt;}
.ls40_c00008{letter-spacing:0.346453pt;}
.ls10_c00008{letter-spacing:0.352640pt;}
.ls34_c00008{letter-spacing:0.365013pt;}
.ls2e_c00008{letter-spacing:0.371200pt;}
.ls50_c00008{letter-spacing:0.377387pt;}
.lsc_c00008{letter-spacing:0.383573pt;}
.lsa_c00008{letter-spacing:0.389760pt;}
.ls7_c00008{letter-spacing:0.395947pt;}
.ls3f_c00008{letter-spacing:0.408320pt;}
.ls4_c00008{letter-spacing:0.414507pt;}
.ls1c_c00008{letter-spacing:0.420693pt;}
.ls46_c00008{letter-spacing:0.426880pt;}
.ls19_c00008{letter-spacing:0.482560pt;}
.ls8_c00008{letter-spacing:0.488747pt;}
.ls2f_c00008{letter-spacing:0.494933pt;}
.ls20_c00008{letter-spacing:0.538240pt;}
.ls28_c00008{letter-spacing:0.556800pt;}
.ls2b_c00008{letter-spacing:0.581547pt;}
.ls17_c00008{letter-spacing:0.631040pt;}
.ls26_c00008{letter-spacing:0.637227pt;}
.ls18_c00008{letter-spacing:0.649600pt;}
.ls13_c00008{letter-spacing:0.655787pt;}
.lsd_c00008{letter-spacing:0.686720pt;}
.ls53_c00008{letter-spacing:0.705280pt;}
.ls1f_c00008{letter-spacing:0.730027pt;}
.ls68_c00008{letter-spacing:0.763573pt;}
.ls2a_c00008{letter-spacing:0.773333pt;}
.ls64_c00008{letter-spacing:0.791893pt;}
.lse_c00008{letter-spacing:0.798080pt;}
.ls54_c00008{letter-spacing:0.822827pt;}
.ls21_c00008{letter-spacing:0.859947pt;}
.ls1_c00008{letter-spacing:0.872320pt;}
.ls6_c00008{letter-spacing:0.903253pt;}
.ls41_c00008{letter-spacing:0.915627pt;}
.ls39_c00008{letter-spacing:0.928000pt;}
.ls11_c00008{letter-spacing:0.965120pt;}
.ls9_c00008{letter-spacing:1.008427pt;}
.ls3_c00008{letter-spacing:1.033173pt;}
.ls16_c00008{letter-spacing:1.039360pt;}
.lsf_c00008{letter-spacing:1.051733pt;}
.ls38_c00008{letter-spacing:1.064107pt;}
.ls56_c00008{letter-spacing:1.076480pt;}
.ls14_c00008{letter-spacing:1.088853pt;}
.ls1b_c00008{letter-spacing:1.125973pt;}
.lsb_c00008{letter-spacing:1.138347pt;}
.ls29_c00008{letter-spacing:1.144533pt;}
.ls22_c00008{letter-spacing:1.163093pt;}
.ls23_c00008{letter-spacing:1.194027pt;}
.ls31_c00008{letter-spacing:1.206400pt;}
.ls1e_c00008{letter-spacing:1.212587pt;}
.ls33_c00008{letter-spacing:1.249707pt;}
.ls36_c00008{letter-spacing:1.274453pt;}
.ls3e_c00008{letter-spacing:1.317760pt;}
.ls2d_c00008{letter-spacing:1.342507pt;}
.ls35_c00008{letter-spacing:1.348693pt;}
.ls66_c00008{letter-spacing:1.354880pt;}
.ls42_c00008{letter-spacing:1.373440pt;}
.ls5_c00008{letter-spacing:1.385813pt;}
.ls32_c00008{letter-spacing:1.398187pt;}
.ls3d_c00008{letter-spacing:1.422933pt;}
.ls2c_c00008{letter-spacing:1.484800pt;}
.ls3b_c00008{letter-spacing:1.497173pt;}
.ls30_c00008{letter-spacing:1.515733pt;}
.ls3c_c00008{letter-spacing:1.577600pt;}
.ls12_c00008{letter-spacing:1.583787pt;}
.ls37_c00008{letter-spacing:1.633280pt;}
.ls0_c00008{letter-spacing:1.707520pt;}
.ls1a_c00008{letter-spacing:1.763200pt;}
.ls1d_c00008{letter-spacing:1.818880pt;}
.ls44_c00008{letter-spacing:1.886933pt;}
.ls43_c00008{letter-spacing:2.350933pt;}
.ls5f_c00008{letter-spacing:3.093333pt;}
.ws0_c00008{word-spacing:0.000000pt;}
._e_c00008{margin-left:-17.312427pt;}
._10_c00008{margin-left:-13.272747pt;}
._12_c00008{margin-left:-11.828907pt;}
._d_c00008{margin-left:-10.687360pt;}
._4_c00008{margin-left:-9.470933pt;}
._7_c00008{margin-left:-8.228907pt;}
._9_c00008{margin-left:-5.329920pt;}
._1_c00008{margin-left:-3.303253pt;}
._b_c00008{margin-left:-2.023253pt;}
._13_c00008{margin-left:-1.049387pt;}
._8_c00008{width:1.334187pt;}
._c_c00008{width:2.307627pt;}
._3_c00008{width:3.264427pt;}
._5_c00008{width:5.194667pt;}
._0_c00008{width:6.474667pt;}
._11_c00008{width:7.522987pt;}
._a_c00008{width:8.743893pt;}
._6_c00008{width:10.965120pt;}
._14_c00008{width:12.965120pt;}
._16_c00008{width:13.871360pt;}
._f_c00008{width:14.919680pt;}
._2_c00008{width:30.345600pt;}
._15_c00008{width:387.940267pt;}
.fs3_c00008{font-size:45.866667pt;}
.fs2_c00008{font-size:47.360000pt;}
.fs4_c00008{font-size:54.933333pt;}
.fs1_c00008{font-size:59.733333pt;}
.fs0_c00008{font-size:61.866667pt;}
.y0_c00008{bottom:0.000000pt;}
.y22_c00008{bottom:112.653333pt;}
.y21_c00008{bottom:125.760000pt;}
.y20_c00008{bottom:166.720000pt;}
.y1f_c00008{bottom:166.727467pt;}
.y1e_c00008{bottom:221.773333pt;}
.y1d_c00008{bottom:276.813333pt;}
.y1c_c00008{bottom:276.819200pt;}
.y1b_c00008{bottom:331.200000pt;}
.y1a_c00008{bottom:386.242667pt;}
.y19_c00008{bottom:413.773333pt;}
.y18_c00008{bottom:413.774400pt;}
.y17_c00008{bottom:440.980267pt;}
.y16_c00008{bottom:468.487467pt;}
.y15_c00008{bottom:495.693333pt;}
.y14_c00008{bottom:523.536000pt;}
.y13_c00008{bottom:550.401600pt;}
.y12_c00008{bottom:577.932267pt;}
.y11_c00008{bottom:605.138133pt;}
.y10_c00008{bottom:632.647467pt;}
.yf_c00008{bottom:659.869867pt;}
.ye_c00008{bottom:687.385067pt;}
.yd_c00008{bottom:714.884800pt;}
.yc_c00008{bottom:742.400000pt;}
.yb_c00008{bottom:742.402667pt;}
.ya_c00008{bottom:769.927467pt;}
.y9_c00008{bottom:797.129600pt;}
.y8_c00008{bottom:824.320000pt;}
.y6_c00008{bottom:851.529600pt;}
.y7_c00008{bottom:851.533333pt;}
.y5_c00008{bottom:878.720000pt;}
.y4_c00008{bottom:906.247467pt;}
.y3_c00008{bottom:933.453333pt;}
.y2_c00008{bottom:960.640000pt;}
.y1_c00008{bottom:988.480000pt;}
.h5_c00008{height:31.541760pt;}
.h8_c00008{height:47.837500pt;}
.h2_c00008{height:60.718750pt;}
.h3_c00008{height:60.733683pt;}
.h6_c00008{height:60.742217pt;}
.h4_c00008{height:62.323467pt;}
.h7_c00008{height:62.350000pt;}
.h1_c00008{height:1122.666667pt;}
.h0_c00008{height:1122.880000pt;}
.w1_c00008{width:793.333333pt;}
.w0_c00008{width:793.600000pt;}
.x0_c00008{left:0.000000pt;}
.xd_c00008{left:108.320000pt;}
.x12_c00008{left:131.746667pt;}
.x11_c00008{left:133.160000pt;}
.x4_c00008{left:155.332267pt;}
.x9_c00008{left:180.089600pt;}
.x13_c00008{left:193.866667pt;}
.x1_c00008{left:202.373333pt;}
.x5_c00008{left:204.304000pt;}
.xa_c00008{left:207.498133pt;}
.xf_c00008{left:222.586667pt;}
.x8_c00008{left:240.156267pt;}
.xb_c00008{left:242.592000pt;}
.xc_c00008{left:264.573333pt;}
.x10_c00008{left:367.680000pt;}
.x6_c00008{left:528.973333pt;}
.x7_c00008{left:533.760000pt;}
.x3_c00008{left:642.040000pt;}
.xe_c00008{left:643.333333pt;}
.x2_c00008{left:649.746667pt;}
}





/* 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_c00009 {
    display:none;
  }
  .loading-indicator_c00009.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00009 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_c00009 { 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_c00009" -> "#page-container .classname_c00009")
 */
.pf_c00009 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00009 { /* 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_c00009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00009 { /* 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_c00009 { /* 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_c00009 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00009 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00009 {overflow:visible;}
  }
}
.c_c00009 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00009 { /* 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_c00009:after { /* webkit #35443 */
  content: '';
}
.t_c00009:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00009 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 */
}
.__c00009 { /* 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_c00009 { /* info for Javascript */
  display:none;
}
.l_c00009 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00009 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00009 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00009: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_c00009 {
    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_c00009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00009.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_c00009 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00009;src:url('chunks/assets/font_f9dcce868ed25e52947a6377.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.311035;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_c00009;src:url('chunks/assets/font_4bc00ac539f2e2b86a36c534.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.284668;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_c00009;src:url('chunks/assets/font_13c8f16089d7fec066fdeee9.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.284180;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_c00009;src:url('chunks/assets/font_6ac733a6f011e0f6498ca22a.woff2')format("woff");}.ff4_c00009{font-family:ff4_c00009;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:ff5_c00009;src:url('chunks/assets/font_2912a226aa9f85c6670d1929.woff2')format("woff");}.ff5_c00009{font-family:ff5_c00009;line-height:0.666000;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_c00009;src:url('chunks/assets/font_6dbbcdd3257cb3e365f00552.woff2')format("woff");}.ff6_c00009{font-family:ff6_c00009;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:ff7_c00009;src:url('chunks/assets/font_508200af099318f815a5ec2c.woff2')format("woff");}.ff7_c00009{font-family:ff7_c00009;line-height:1.284180;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;}
.m5_c00009{transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);}
.m3_c00009{transform:matrix(0.119481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119481,0.000000,0.000000,0.250000,0,0);}
.m8_c00009{transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);}
.m9_c00009{transform:matrix(0.211716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211716,0.000000,0.000000,0.250000,0,0);}
.m0_c00009{transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);}
.ma_c00009{transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);}
.mb_c00009{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{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);}
.m6_c00009{transform:matrix(0.275333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275333,0.000000,0.000000,0.250000,0,0);}
.m2_c00009{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.m4_c00009{transform:matrix(0.338581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338581,0.000000,0.000000,0.250000,0,0);}
.m7_c00009{transform:matrix(1.250461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250461,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls4c_c00009{letter-spacing:-2.835000px;}
.ls98_c00009{letter-spacing:-2.499000px;}
.ls90_c00009{letter-spacing:-2.484720px;}
.ls8f_c00009{letter-spacing:-2.331000px;}
.ls55_c00009{letter-spacing:-1.884960px;}
.ls4e_c00009{letter-spacing:-1.656480px;}
.ls5f_c00009{letter-spacing:-1.570800px;}
.ls5b_c00009{letter-spacing:-1.485120px;}
.lsa8_c00009{letter-spacing:-1.477980px;}
.ls62_c00009{letter-spacing:-1.449420px;}
.ls86_c00009{letter-spacing:-1.442280px;}
.ls68_c00009{letter-spacing:-1.439100px;}
.ls54_c00009{letter-spacing:-1.356600px;}
.ls95_c00009{letter-spacing:-1.320900px;}
.ls64_c00009{letter-spacing:-1.206660px;}
.lsa5_c00009{letter-spacing:-1.192380px;}
.ls94_c00009{letter-spacing:-1.159200px;}
.ls8e_c00009{letter-spacing:-1.134021px;}
.ls89_c00009{letter-spacing:-1.120980px;}
.ls65_c00009{letter-spacing:-1.085280px;}
.ls92_c00009{letter-spacing:-1.042440px;}
.ls75_c00009{letter-spacing:-1.035300px;}
.ls69_c00009{letter-spacing:-1.021020px;}
.ls6f_c00009{letter-spacing:-0.959400px;}
.ls8c_c00009{letter-spacing:-0.945021px;}
.ls61_c00009{letter-spacing:-0.935340px;}
.ls7a_c00009{letter-spacing:-0.885360px;}
.ls9a_c00009{letter-spacing:-0.871080px;}
.ls5d_c00009{letter-spacing:-0.849660px;}
.ls88_c00009{letter-spacing:-0.813960px;}
.ls7c_c00009{letter-spacing:-0.799680px;}
.ls8b_c00009{letter-spacing:-0.785400px;}
.ls9e_c00009{letter-spacing:-0.771120px;}
.ls56_c00009{letter-spacing:-0.763980px;}
.lsa0_c00009{letter-spacing:-0.756840px;}
.ls4f_c00009{letter-spacing:-0.749700px;}
.ls63_c00009{letter-spacing:-0.728280px;}
.ls7d_c00009{letter-spacing:-0.706860px;}
.ls81_c00009{letter-spacing:-0.642600px;}
.ls85_c00009{letter-spacing:-0.606900px;}
.lsa2_c00009{letter-spacing:-0.592620px;}
.ls6a_c00009{letter-spacing:-0.578340px;}
.ls5e_c00009{letter-spacing:-0.571200px;}
.ls66_c00009{letter-spacing:-0.492660px;}
.ls72_c00009{letter-spacing:-0.485520px;}
.ls52_c00009{letter-spacing:-0.449820px;}
.lsa6_c00009{letter-spacing:-0.414120px;}
.ls5a_c00009{letter-spacing:-0.399840px;}
.ls77_c00009{letter-spacing:-0.392700px;}
.ls9f_c00009{letter-spacing:-0.371280px;}
.ls71_c00009{letter-spacing:-0.335580px;}
.ls6d_c00009{letter-spacing:-0.314160px;}
.ls60_c00009{letter-spacing:-0.302580px;}
.ls96_c00009{letter-spacing:-0.292740px;}
.ls6c_c00009{letter-spacing:-0.285600px;}
.ls7e_c00009{letter-spacing:-0.278460px;}
.ls9d_c00009{letter-spacing:-0.271320px;}
.ls99_c00009{letter-spacing:-0.249900px;}
.lsa7_c00009{letter-spacing:-0.235620px;}
.ls7b_c00009{letter-spacing:-0.228480px;}
.ls70_c00009{letter-spacing:-0.221340px;}
.ls87_c00009{letter-spacing:-0.214200px;}
.ls58_c00009{letter-spacing:-0.207060px;}
.ls78_c00009{letter-spacing:-0.199920px;}
.ls93_c00009{letter-spacing:-0.194400px;}
.ls6e_c00009{letter-spacing:-0.192780px;}
.ls83_c00009{letter-spacing:-0.185640px;}
.ls9b_c00009{letter-spacing:-0.178500px;}
.ls50_c00009{letter-spacing:-0.171360px;}
.ls59_c00009{letter-spacing:-0.164220px;}
.ls82_c00009{letter-spacing:-0.149940px;}
.ls67_c00009{letter-spacing:-0.142800px;}
.ls6b_c00009{letter-spacing:-0.128520px;}
.ls57_c00009{letter-spacing:-0.121380px;}
.ls9c_c00009{letter-spacing:-0.114240px;}
.ls51_c00009{letter-spacing:-0.092820px;}
.ls91_c00009{letter-spacing:-0.090480px;}
.ls73_c00009{letter-spacing:-0.085680px;}
.lsa1_c00009{letter-spacing:-0.078540px;}
.lsa4_c00009{letter-spacing:-0.064260px;}
.ls80_c00009{letter-spacing:-0.057120px;}
.ls8a_c00009{letter-spacing:-0.049980px;}
.ls84_c00009{letter-spacing:-0.042840px;}
.ls76_c00009{letter-spacing:-0.035700px;}
.ls79_c00009{letter-spacing:-0.028560px;}
.ls74_c00009{letter-spacing:-0.007140px;}
.ls53_c00009{letter-spacing:0.000000px;}
.ls2d_c00009{letter-spacing:0.007140px;}
.ls12_c00009{letter-spacing:0.014280px;}
.ls1f_c00009{letter-spacing:0.028560px;}
.ls3e_c00009{letter-spacing:0.035700px;}
.ls5c_c00009{letter-spacing:0.049980px;}
.ls30_c00009{letter-spacing:0.057120px;}
.ls2b_c00009{letter-spacing:0.064260px;}
.ls26_c00009{letter-spacing:0.078540px;}
.ls47_c00009{letter-spacing:0.085680px;}
.ls40_c00009{letter-spacing:0.092820px;}
.ls18_c00009{letter-spacing:0.099960px;}
.ls97_c00009{letter-spacing:0.107100px;}
.ls19_c00009{letter-spacing:0.114240px;}
.ls7f_c00009{letter-spacing:0.121380px;}
.ls2_c00009{letter-spacing:0.128520px;}
.ls32_c00009{letter-spacing:0.135660px;}
.ls2c_c00009{letter-spacing:0.142800px;}
.ls16_c00009{letter-spacing:0.149940px;}
.ls1b_c00009{letter-spacing:0.157080px;}
.lsf_c00009{letter-spacing:0.171360px;}
.lsa9_c00009{letter-spacing:0.185640px;}
.ls25_c00009{letter-spacing:0.192780px;}
.ls0_c00009{letter-spacing:0.199920px;}
.ls2f_c00009{letter-spacing:0.207060px;}
.ls3_c00009{letter-spacing:0.214200px;}
.ls1e_c00009{letter-spacing:0.221340px;}
.ls13_c00009{letter-spacing:0.228480px;}
.ls27_c00009{letter-spacing:0.235620px;}
.ls1c_c00009{letter-spacing:0.242760px;}
.ls48_c00009{letter-spacing:0.249900px;}
.ls46_c00009{letter-spacing:0.257040px;}
.ls1_c00009{letter-spacing:0.271320px;}
.ls3a_c00009{letter-spacing:0.278460px;}
.ls7_c00009{letter-spacing:0.285600px;}
.ls6_c00009{letter-spacing:0.292740px;}
.lsc_c00009{letter-spacing:0.299880px;}
.ls33_c00009{letter-spacing:0.307020px;}
.ls3b_c00009{letter-spacing:0.314160px;}
.ls4_c00009{letter-spacing:0.321300px;}
.ls4a_c00009{letter-spacing:0.328440px;}
.ls45_c00009{letter-spacing:0.335580px;}
.ls17_c00009{letter-spacing:0.342720px;}
.ls11_c00009{letter-spacing:0.357000px;}
.ls29_c00009{letter-spacing:0.364140px;}
.ls28_c00009{letter-spacing:0.385560px;}
.lse_c00009{letter-spacing:0.392700px;}
.ls24_c00009{letter-spacing:0.399840px;}
.lsb_c00009{letter-spacing:0.406980px;}
.ls49_c00009{letter-spacing:0.414120px;}
.ls20_c00009{letter-spacing:0.442680px;}
.ls41_c00009{letter-spacing:0.449820px;}
.ls21_c00009{letter-spacing:0.464100px;}
.lsd_c00009{letter-spacing:0.478380px;}
.lsa3_c00009{letter-spacing:0.492660px;}
.ls1a_c00009{letter-spacing:0.499800px;}
.ls42_c00009{letter-spacing:0.514080px;}
.ls23_c00009{letter-spacing:0.521220px;}
.ls15_c00009{letter-spacing:0.528360px;}
.ls8_c00009{letter-spacing:0.535500px;}
.ls9_c00009{letter-spacing:0.564060px;}
.ls31_c00009{letter-spacing:0.585480px;}
.ls5_c00009{letter-spacing:0.628320px;}
.ls10_c00009{letter-spacing:0.714000px;}
.ls35_c00009{letter-spacing:0.721140px;}
.ls44_c00009{letter-spacing:0.742560px;}
.lsa_c00009{letter-spacing:0.763980px;}
.ls4b_c00009{letter-spacing:0.921060px;}
.ls2e_c00009{letter-spacing:0.971040px;}
.ls3c_c00009{letter-spacing:0.972000px;}
.ls3f_c00009{letter-spacing:0.992460px;}
.ls38_c00009{letter-spacing:1.013880px;}
.ls22_c00009{letter-spacing:1.063860px;}
.ls14_c00009{letter-spacing:1.092420px;}
.ls1d_c00009{letter-spacing:1.136520px;}
.ls34_c00009{letter-spacing:1.185240px;}
.ls8d_c00009{letter-spacing:1.350030px;}
.ls37_c00009{letter-spacing:1.364160px;}
.ls43_c00009{letter-spacing:1.692180px;}
.ls36_c00009{letter-spacing:1.711620px;}
.ls39_c00009{letter-spacing:1.763580px;}
.ls2a_c00009{letter-spacing:2.013480px;}
.ls3d_c00009{letter-spacing:2.412000px;}
.ls4d_c00009{letter-spacing:2.592000px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{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__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00009{word-spacing:0.000000px;}
._1c_c00009{margin-left:-16.236360px;}
._1e_c00009{margin-left:-7.355700px;}
._1d_c00009{margin-left:-5.998980px;}
._1b_c00009{margin-left:-4.869480px;}
._c_c00009{margin-left:-1.735020px;}
._20_c00009{width:1.063860px;}
._8_c00009{width:2.606100px;}
._e_c00009{width:3.714660px;}
._a_c00009{width:4.948020px;}
._9_c00009{width:6.133260px;}
._b_c00009{width:7.561260px;}
._5_c00009{width:9.282000px;}
._6_c00009{width:10.895640px;}
._f_c00009{width:11.923800px;}
._7_c00009{width:13.344660px;}
._d_c00009{width:14.513940px;}
._11_c00009{width:15.593760px;}
._17_c00009{width:16.779000px;}
._10_c00009{width:18.892620px;}
._3_c00009{width:20.491800px;}
._1f_c00009{width:21.691320px;}
._0_c00009{width:22.833720px;}
._1_c00009{width:24.404520px;}
._4_c00009{width:25.918200px;}
._2_c00009{width:27.417600px;}
._21_c00009{width:28.952700px;}
._12_c00009{width:43.082760px;}
._14_c00009{width:48.630540px;}
._13_c00009{width:49.951440px;}
._15_c00009{width:52.421880px;}
._1a_c00009{width:53.812196px;}
._16_c00009{width:55.977600px;}
._19_c00009{width:106.358483px;}
._18_c00009{width:118.001500px;}
.fc0_c00009{color:transparent;}
.fs4_c00009{font-size:20.160000px;}
.fs5_c00009{font-size:21.000600px;}
.fs3_c00009{font-size:27.000600px;}
.fs6_c00009{font-size:32.400600px;}
.fs7_c00009{font-size:34.800600px;}
.fsc_c00009{font-size:66.000000px;}
.fs8_c00009{font-size:66.600000px;}
.fs9_c00009{font-size:69.600000px;}
.fs1_c00009{font-size:71.400000px;}
.fsa_c00009{font-size:72.000000px;}
.fs2_c00009{font-size:73.800000px;}
.fsb_c00009{font-size:76.800000px;}
.fs0_c00009{font-size:81.000000px;}
.y0_c00009{bottom:0.000000px;}
.y20_c00009{bottom:125.288715px;}
.y1f_c00009{bottom:155.883615px;}
.y1e_c00009{bottom:186.478515px;}
.y1d_c00009{bottom:248.775015px;}
.y1c_c00009{bottom:248.806515px;}
.y1b_c00009{bottom:279.401415px;}
.y1a_c00009{bottom:309.978465px;}
.y19_c00009{bottom:340.930365px;}
.y18_c00009{bottom:371.900115px;}
.y16_c00009{bottom:402.483615px;}
.y17_c00009{bottom:402.495015px;}
.y15_c00009{bottom:433.810365px;}
.y14_c00009{bottom:495.375015px;}
.y13_c00009{bottom:526.335015px;}
.y12_c00009{bottom:534.600015px;}
.y11_c00009{bottom:556.934265px;}
.y10_c00009{bottom:588.261015px;}
.y22_c00009{bottom:615.600015px;}
.yf_c00009{bottom:618.498915px;}
.y21_c00009{bottom:619.215015px;}
.ye_c00009{bottom:649.450815px;}
.yd_c00009{bottom:711.015465px;}
.yc_c00009{bottom:741.610365px;}
.yb_c00009{bottom:772.580115px;}
.ya_c00009{bottom:803.168115px;}
.y9_c00009{bottom:834.121365px;}
.y8_c00009{bottom:865.448115px;}
.y7_c00009{bottom:896.405265px;}
.y6_c00009{bottom:927.375015px;}
.y5_c00009{bottom:958.356165px;}
.y4_c00009{bottom:988.933215px;}
.y3_c00009{bottom:1019.902965px;}
.y2_c00009{bottom:1050.480015px;}
.y1_c00009{bottom:1114.215015px;}
.ha_c00009{height:13.426560px;}
.h9_c00009{height:28.160782px;}
.hb_c00009{height:33.792813px;}
.hc_c00009{height:35.072480px;}
.hd_c00009{height:65.364258px;}
.h10_c00009{height:68.835938px;}
.h3_c00009{height:70.075195px;}
.h8_c00009{height:70.102795px;}
.he_c00009{height:70.628906px;}
.h4_c00009{height:72.310029px;}
.h6_c00009{height:72.373629px;}
.h7_c00009{height:72.389229px;}
.h5_c00009{height:72.394629px;}
.hf_c00009{height:80.100000px;}
.h2_c00009{height:81.632812px;}
.h1_c00009{height:1263.000000px;}
.h0_c00009{height:1263.240015px;}
.w1_c00009{width:892.500000px;}
.w0_c00009{width:892.800000px;}
.x0_c00009{left:0.000000px;}
.x15_c00009{left:122.208000px;}
.x4_c00009{left:123.874800px;}
.x1_c00009{left:124.890000px;}
.x2_c00009{left:144.960000px;}
.x3_c00009{left:177.375000px;}
.x5_c00009{left:196.020000px;}
.x13_c00009{left:231.330000px;}
.x14_c00009{left:249.300000px;}
.x6_c00009{left:299.880000px;}
.x7_c00009{left:326.445000px;}
.x8_c00009{left:380.310000px;}
.x9_c00009{left:397.440000px;}
.xa_c00009{left:408.480000px;}
.x11_c00009{left:433.650000px;}
.x12_c00009{left:451.980000px;}
.xb_c00009{left:460.365000px;}
.xc_c00009{left:529.050000px;}
.xf_c00009{left:595.305000px;}
.x10_c00009{left:614.745000px;}
.xd_c00009{left:657.585000px;}
.xe_c00009{left:678.795000px;}
.x17_c00009{left:855.135000px;}
.x16_c00009{left:856.185000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls4c_c00009{letter-spacing:-2.520000pt;}
.ls98_c00009{letter-spacing:-2.221333pt;}
.ls90_c00009{letter-spacing:-2.208640pt;}
.ls8f_c00009{letter-spacing:-2.072000pt;}
.ls55_c00009{letter-spacing:-1.675520pt;}
.ls4e_c00009{letter-spacing:-1.472427pt;}
.ls5f_c00009{letter-spacing:-1.396267pt;}
.ls5b_c00009{letter-spacing:-1.320107pt;}
.lsa8_c00009{letter-spacing:-1.313760pt;}
.ls62_c00009{letter-spacing:-1.288373pt;}
.ls86_c00009{letter-spacing:-1.282027pt;}
.ls68_c00009{letter-spacing:-1.279200pt;}
.ls54_c00009{letter-spacing:-1.205867pt;}
.ls95_c00009{letter-spacing:-1.174133pt;}
.ls64_c00009{letter-spacing:-1.072587pt;}
.lsa5_c00009{letter-spacing:-1.059893pt;}
.ls94_c00009{letter-spacing:-1.030400pt;}
.ls8e_c00009{letter-spacing:-1.008019pt;}
.ls89_c00009{letter-spacing:-0.996427pt;}
.ls65_c00009{letter-spacing:-0.964693pt;}
.ls92_c00009{letter-spacing:-0.926613pt;}
.ls75_c00009{letter-spacing:-0.920267pt;}
.ls69_c00009{letter-spacing:-0.907573pt;}
.ls6f_c00009{letter-spacing:-0.852800pt;}
.ls8c_c00009{letter-spacing:-0.840019pt;}
.ls61_c00009{letter-spacing:-0.831413pt;}
.ls7a_c00009{letter-spacing:-0.786987pt;}
.ls9a_c00009{letter-spacing:-0.774293pt;}
.ls5d_c00009{letter-spacing:-0.755253pt;}
.ls88_c00009{letter-spacing:-0.723520pt;}
.ls7c_c00009{letter-spacing:-0.710827pt;}
.ls8b_c00009{letter-spacing:-0.698133pt;}
.ls9e_c00009{letter-spacing:-0.685440pt;}
.ls56_c00009{letter-spacing:-0.679093pt;}
.lsa0_c00009{letter-spacing:-0.672747pt;}
.ls4f_c00009{letter-spacing:-0.666400pt;}
.ls63_c00009{letter-spacing:-0.647360pt;}
.ls7d_c00009{letter-spacing:-0.628320pt;}
.ls81_c00009{letter-spacing:-0.571200pt;}
.ls85_c00009{letter-spacing:-0.539467pt;}
.lsa2_c00009{letter-spacing:-0.526773pt;}
.ls6a_c00009{letter-spacing:-0.514080pt;}
.ls5e_c00009{letter-spacing:-0.507733pt;}
.ls66_c00009{letter-spacing:-0.437920pt;}
.ls72_c00009{letter-spacing:-0.431573pt;}
.ls52_c00009{letter-spacing:-0.399840pt;}
.lsa6_c00009{letter-spacing:-0.368107pt;}
.ls5a_c00009{letter-spacing:-0.355413pt;}
.ls77_c00009{letter-spacing:-0.349067pt;}
.ls9f_c00009{letter-spacing:-0.330027pt;}
.ls71_c00009{letter-spacing:-0.298293pt;}
.ls6d_c00009{letter-spacing:-0.279253pt;}
.ls60_c00009{letter-spacing:-0.268960pt;}
.ls96_c00009{letter-spacing:-0.260213pt;}
.ls6c_c00009{letter-spacing:-0.253867pt;}
.ls7e_c00009{letter-spacing:-0.247520pt;}
.ls9d_c00009{letter-spacing:-0.241173pt;}
.ls99_c00009{letter-spacing:-0.222133pt;}
.lsa7_c00009{letter-spacing:-0.209440pt;}
.ls7b_c00009{letter-spacing:-0.203093pt;}
.ls70_c00009{letter-spacing:-0.196747pt;}
.ls87_c00009{letter-spacing:-0.190400pt;}
.ls58_c00009{letter-spacing:-0.184053pt;}
.ls78_c00009{letter-spacing:-0.177707pt;}
.ls93_c00009{letter-spacing:-0.172800pt;}
.ls6e_c00009{letter-spacing:-0.171360pt;}
.ls83_c00009{letter-spacing:-0.165013pt;}
.ls9b_c00009{letter-spacing:-0.158667pt;}
.ls50_c00009{letter-spacing:-0.152320pt;}
.ls59_c00009{letter-spacing:-0.145973pt;}
.ls82_c00009{letter-spacing:-0.133280pt;}
.ls67_c00009{letter-spacing:-0.126933pt;}
.ls6b_c00009{letter-spacing:-0.114240pt;}
.ls57_c00009{letter-spacing:-0.107893pt;}
.ls9c_c00009{letter-spacing:-0.101547pt;}
.ls51_c00009{letter-spacing:-0.082507pt;}
.ls91_c00009{letter-spacing:-0.080427pt;}
.ls73_c00009{letter-spacing:-0.076160pt;}
.lsa1_c00009{letter-spacing:-0.069813pt;}
.lsa4_c00009{letter-spacing:-0.057120pt;}
.ls80_c00009{letter-spacing:-0.050773pt;}
.ls8a_c00009{letter-spacing:-0.044427pt;}
.ls84_c00009{letter-spacing:-0.038080pt;}
.ls76_c00009{letter-spacing:-0.031733pt;}
.ls79_c00009{letter-spacing:-0.025387pt;}
.ls74_c00009{letter-spacing:-0.006347pt;}
.ls53_c00009{letter-spacing:0.000000pt;}
.ls2d_c00009{letter-spacing:0.006347pt;}
.ls12_c00009{letter-spacing:0.012693pt;}
.ls1f_c00009{letter-spacing:0.025387pt;}
.ls3e_c00009{letter-spacing:0.031733pt;}
.ls5c_c00009{letter-spacing:0.044427pt;}
.ls30_c00009{letter-spacing:0.050773pt;}
.ls2b_c00009{letter-spacing:0.057120pt;}
.ls26_c00009{letter-spacing:0.069813pt;}
.ls47_c00009{letter-spacing:0.076160pt;}
.ls40_c00009{letter-spacing:0.082507pt;}
.ls18_c00009{letter-spacing:0.088853pt;}
.ls97_c00009{letter-spacing:0.095200pt;}
.ls19_c00009{letter-spacing:0.101547pt;}
.ls7f_c00009{letter-spacing:0.107893pt;}
.ls2_c00009{letter-spacing:0.114240pt;}
.ls32_c00009{letter-spacing:0.120587pt;}
.ls2c_c00009{letter-spacing:0.126933pt;}
.ls16_c00009{letter-spacing:0.133280pt;}
.ls1b_c00009{letter-spacing:0.139627pt;}
.lsf_c00009{letter-spacing:0.152320pt;}
.lsa9_c00009{letter-spacing:0.165013pt;}
.ls25_c00009{letter-spacing:0.171360pt;}
.ls0_c00009{letter-spacing:0.177707pt;}
.ls2f_c00009{letter-spacing:0.184053pt;}
.ls3_c00009{letter-spacing:0.190400pt;}
.ls1e_c00009{letter-spacing:0.196747pt;}
.ls13_c00009{letter-spacing:0.203093pt;}
.ls27_c00009{letter-spacing:0.209440pt;}
.ls1c_c00009{letter-spacing:0.215787pt;}
.ls48_c00009{letter-spacing:0.222133pt;}
.ls46_c00009{letter-spacing:0.228480pt;}
.ls1_c00009{letter-spacing:0.241173pt;}
.ls3a_c00009{letter-spacing:0.247520pt;}
.ls7_c00009{letter-spacing:0.253867pt;}
.ls6_c00009{letter-spacing:0.260213pt;}
.lsc_c00009{letter-spacing:0.266560pt;}
.ls33_c00009{letter-spacing:0.272907pt;}
.ls3b_c00009{letter-spacing:0.279253pt;}
.ls4_c00009{letter-spacing:0.285600pt;}
.ls4a_c00009{letter-spacing:0.291947pt;}
.ls45_c00009{letter-spacing:0.298293pt;}
.ls17_c00009{letter-spacing:0.304640pt;}
.ls11_c00009{letter-spacing:0.317333pt;}
.ls29_c00009{letter-spacing:0.323680pt;}
.ls28_c00009{letter-spacing:0.342720pt;}
.lse_c00009{letter-spacing:0.349067pt;}
.ls24_c00009{letter-spacing:0.355413pt;}
.lsb_c00009{letter-spacing:0.361760pt;}
.ls49_c00009{letter-spacing:0.368107pt;}
.ls20_c00009{letter-spacing:0.393493pt;}
.ls41_c00009{letter-spacing:0.399840pt;}
.ls21_c00009{letter-spacing:0.412533pt;}
.lsd_c00009{letter-spacing:0.425227pt;}
.lsa3_c00009{letter-spacing:0.437920pt;}
.ls1a_c00009{letter-spacing:0.444267pt;}
.ls42_c00009{letter-spacing:0.456960pt;}
.ls23_c00009{letter-spacing:0.463307pt;}
.ls15_c00009{letter-spacing:0.469653pt;}
.ls8_c00009{letter-spacing:0.476000pt;}
.ls9_c00009{letter-spacing:0.501387pt;}
.ls31_c00009{letter-spacing:0.520427pt;}
.ls5_c00009{letter-spacing:0.558507pt;}
.ls10_c00009{letter-spacing:0.634667pt;}
.ls35_c00009{letter-spacing:0.641013pt;}
.ls44_c00009{letter-spacing:0.660053pt;}
.lsa_c00009{letter-spacing:0.679093pt;}
.ls4b_c00009{letter-spacing:0.818720pt;}
.ls2e_c00009{letter-spacing:0.863147pt;}
.ls3c_c00009{letter-spacing:0.864000pt;}
.ls3f_c00009{letter-spacing:0.882187pt;}
.ls38_c00009{letter-spacing:0.901227pt;}
.ls22_c00009{letter-spacing:0.945653pt;}
.ls14_c00009{letter-spacing:0.971040pt;}
.ls1d_c00009{letter-spacing:1.010240pt;}
.ls34_c00009{letter-spacing:1.053547pt;}
.ls8d_c00009{letter-spacing:1.200027pt;}
.ls37_c00009{letter-spacing:1.212587pt;}
.ls43_c00009{letter-spacing:1.504160pt;}
.ls36_c00009{letter-spacing:1.521440pt;}
.ls39_c00009{letter-spacing:1.567627pt;}
.ls2a_c00009{letter-spacing:1.789760pt;}
.ls3d_c00009{letter-spacing:2.144000pt;}
.ls4d_c00009{letter-spacing:2.304000pt;}
.ws0_c00009{word-spacing:0.000000pt;}
._1c_c00009{margin-left:-14.432320pt;}
._1e_c00009{margin-left:-6.538400pt;}
._1d_c00009{margin-left:-5.332427pt;}
._1b_c00009{margin-left:-4.328427pt;}
._c_c00009{margin-left:-1.542240pt;}
._20_c00009{width:0.945653pt;}
._8_c00009{width:2.316533pt;}
._e_c00009{width:3.301920pt;}
._a_c00009{width:4.398240pt;}
._9_c00009{width:5.451787pt;}
._b_c00009{width:6.721120pt;}
._5_c00009{width:8.250667pt;}
._6_c00009{width:9.685013pt;}
._f_c00009{width:10.598933pt;}
._7_c00009{width:11.861920pt;}
._d_c00009{width:12.901280pt;}
._11_c00009{width:13.861120pt;}
._17_c00009{width:14.914667pt;}
._10_c00009{width:16.793440pt;}
._3_c00009{width:18.214933pt;}
._1f_c00009{width:19.281173pt;}
._0_c00009{width:20.296640pt;}
._1_c00009{width:21.692907pt;}
._4_c00009{width:23.038400pt;}
._2_c00009{width:24.371200pt;}
._21_c00009{width:25.735733pt;}
._12_c00009{width:38.295787pt;}
._14_c00009{width:43.227147pt;}
._13_c00009{width:44.401280pt;}
._15_c00009{width:46.597227pt;}
._1a_c00009{width:47.833063pt;}
._16_c00009{width:49.757867pt;}
._19_c00009{width:94.540874pt;}
._18_c00009{width:104.890222pt;}
.fs4_c00009{font-size:17.920000pt;}
.fs5_c00009{font-size:18.667200pt;}
.fs3_c00009{font-size:24.000533pt;}
.fs6_c00009{font-size:28.800533pt;}
.fs7_c00009{font-size:30.933867pt;}
.fsc_c00009{font-size:58.666667pt;}
.fs8_c00009{font-size:59.200000pt;}
.fs9_c00009{font-size:61.866667pt;}
.fs1_c00009{font-size:63.466667pt;}
.fsa_c00009{font-size:64.000000pt;}
.fs2_c00009{font-size:65.600000pt;}
.fsb_c00009{font-size:68.266667pt;}
.fs0_c00009{font-size:72.000000pt;}
.y0_c00009{bottom:0.000000pt;}
.y20_c00009{bottom:111.367747pt;}
.y1f_c00009{bottom:138.563213pt;}
.y1e_c00009{bottom:165.758680pt;}
.y1d_c00009{bottom:221.133347pt;}
.y1c_c00009{bottom:221.161347pt;}
.y1b_c00009{bottom:248.356813pt;}
.y1a_c00009{bottom:275.536413pt;}
.y19_c00009{bottom:303.049213pt;}
.y18_c00009{bottom:330.577880pt;}
.y16_c00009{bottom:357.763213pt;}
.y17_c00009{bottom:357.773347pt;}
.y15_c00009{bottom:385.609213pt;}
.y14_c00009{bottom:440.333347pt;}
.y13_c00009{bottom:467.853347pt;}
.y12_c00009{bottom:475.200013pt;}
.y11_c00009{bottom:495.052680pt;}
.y10_c00009{bottom:522.898680pt;}
.y22_c00009{bottom:547.200013pt;}
.yf_c00009{bottom:549.776813pt;}
.y21_c00009{bottom:550.413347pt;}
.ye_c00009{bottom:577.289613pt;}
.yd_c00009{bottom:632.013747pt;}
.yc_c00009{bottom:659.209213pt;}
.yb_c00009{bottom:686.737880pt;}
.ya_c00009{bottom:713.927213pt;}
.y9_c00009{bottom:741.441213pt;}
.y8_c00009{bottom:769.287213pt;}
.y7_c00009{bottom:796.804680pt;}
.y6_c00009{bottom:824.333347pt;}
.y5_c00009{bottom:851.872147pt;}
.y4_c00009{bottom:879.051747pt;}
.y3_c00009{bottom:906.580413pt;}
.y2_c00009{bottom:933.760013pt;}
.y1_c00009{bottom:990.413347pt;}
.ha_c00009{height:11.934720pt;}
.h9_c00009{height:25.031806pt;}
.hb_c00009{height:30.038056pt;}
.hc_c00009{height:31.175537pt;}
.hd_c00009{height:58.101562pt;}
.h10_c00009{height:61.187500pt;}
.h3_c00009{height:62.289062pt;}
.h8_c00009{height:62.313596pt;}
.he_c00009{height:62.781250pt;}
.h4_c00009{height:64.275581pt;}
.h6_c00009{height:64.332115pt;}
.h7_c00009{height:64.345981pt;}
.h5_c00009{height:64.350781pt;}
.hf_c00009{height:71.200000pt;}
.h2_c00009{height:72.562500pt;}
.h1_c00009{height:1122.666667pt;}
.h0_c00009{height:1122.880013pt;}
.w1_c00009{width:793.333333pt;}
.w0_c00009{width:793.600000pt;}
.x0_c00009{left:0.000000pt;}
.x15_c00009{left:108.629333pt;}
.x4_c00009{left:110.110933pt;}
.x1_c00009{left:111.013333pt;}
.x2_c00009{left:128.853333pt;}
.x3_c00009{left:157.666667pt;}
.x5_c00009{left:174.240000pt;}
.x13_c00009{left:205.626667pt;}
.x14_c00009{left:221.600000pt;}
.x6_c00009{left:266.560000pt;}
.x7_c00009{left:290.173333pt;}
.x8_c00009{left:338.053333pt;}
.x9_c00009{left:353.280000pt;}
.xa_c00009{left:363.093333pt;}
.x11_c00009{left:385.466667pt;}
.x12_c00009{left:401.760000pt;}
.xb_c00009{left:409.213333pt;}
.xc_c00009{left:470.266667pt;}
.xf_c00009{left:529.160000pt;}
.x10_c00009{left:546.440000pt;}
.xd_c00009{left:584.520000pt;}
.xe_c00009{left:603.373333pt;}
.x17_c00009{left:760.120000pt;}
.x16_c00009{left:761.053333pt;}
}





/* 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_c00010 {
    display:none;
  }
  .loading-indicator_c00010.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00010 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_c00010 { 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_c00010" -> "#page-container .classname_c00010")
 */
.pf_c00010 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00010 { /* 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_c00010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00010 { /* 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_c00010 { /* 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_c00010 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00010 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00010 {overflow:visible;}
  }
}
.c_c00010 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00010 { /* 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_c00010:after { /* webkit #35443 */
  content: '';
}
.t_c00010:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00010 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 */
}
.__c00010 { /* 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_c00010 { /* info for Javascript */
  display:none;
}
.l_c00010 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00010 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00010 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00010: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_c00010 {
    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_c00010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00010.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_c00010 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00010;src:url('chunks/assets/font_b189196c7db54973c74c4450.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.284668;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_c00010;src:url('chunks/assets/font_81be7f3f19043438ceec9841.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.284180;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;}
.m6_c00010{transform:matrix(0.191961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191961,0.000000,0.000000,0.250000,0,0);}
.m4_c00010{transform:matrix(0.244859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244859,0.000000,0.000000,0.250000,0,0);}
.m3_c00010{transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);}
.m5_c00010{transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);}
.m2_c00010{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{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);}
.m7_c00010{transform:matrix(0.255398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255398,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls32_c00010{letter-spacing:-2.562000px;}
.ls61_c00010{letter-spacing:-2.518080px;}
.ls2a_c00010{letter-spacing:-2.298480px;}
.ls3b_c00010{letter-spacing:-2.232600px;}
.ls81_c00010{letter-spacing:-2.203320px;}
.ls1a_c00010{letter-spacing:-2.130120px;}
.ls80_c00010{letter-spacing:-2.071560px;}
.ls2d_c00010{letter-spacing:-1.859280px;}
.ls57_c00010{letter-spacing:-1.844640px;}
.ls4f_c00010{letter-spacing:-1.800720px;}
.ls2b_c00010{letter-spacing:-1.647000px;}
.ls8c_c00010{letter-spacing:-1.632360px;}
.ls71_c00010{letter-spacing:-1.346880px;}
.ls29_c00010{letter-spacing:-1.339560px;}
.ls17_c00010{letter-spacing:-1.317600px;}
.ls43_c00010{letter-spacing:-1.302960px;}
.ls6c_c00010{letter-spacing:-1.185840px;}
.ls4e_c00010{letter-spacing:-1.178520px;}
.ls38_c00010{letter-spacing:-1.156560px;}
.ls8e_c00010{letter-spacing:-1.149240px;}
.ls6d_c00010{letter-spacing:-1.127280px;}
.ls6b_c00010{letter-spacing:-1.119960px;}
.ls72_c00010{letter-spacing:-1.098000px;}
.ls8f_c00010{letter-spacing:-1.090680px;}
.ls64_c00010{letter-spacing:-1.083360px;}
.ls23_c00010{letter-spacing:-1.076040px;}
.ls85_c00010{letter-spacing:-1.068720px;}
.ls12_c00010{letter-spacing:-1.061400px;}
.ls31_c00010{letter-spacing:-1.046760px;}
.ls6f_c00010{letter-spacing:-1.024800px;}
.ls24_c00010{letter-spacing:-1.017480px;}
.ls79_c00010{letter-spacing:-0.988200px;}
.ls7d_c00010{letter-spacing:-0.958920px;}
.ls78_c00010{letter-spacing:-0.922320px;}
.ls54_c00010{letter-spacing:-0.900360px;}
.ls65_c00010{letter-spacing:-0.878400px;}
.ls7c_c00010{letter-spacing:-0.871080px;}
.ls18_c00010{letter-spacing:-0.856440px;}
.ls5d_c00010{letter-spacing:-0.834480px;}
.ls75_c00010{letter-spacing:-0.827160px;}
.ls86_c00010{letter-spacing:-0.812520px;}
.ls1f_c00010{letter-spacing:-0.797880px;}
.ls59_c00010{letter-spacing:-0.775920px;}
.ls8b_c00010{letter-spacing:-0.761280px;}
.ls36_c00010{letter-spacing:-0.753960px;}
.ls52_c00010{letter-spacing:-0.746640px;}
.ls5f_c00010{letter-spacing:-0.732000px;}
.ls40_c00010{letter-spacing:-0.724680px;}
.ls87_c00010{letter-spacing:-0.717360px;}
.ls5b_c00010{letter-spacing:-0.710040px;}
.ls37_c00010{letter-spacing:-0.688080px;}
.ls5e_c00010{letter-spacing:-0.673440px;}
.ls74_c00010{letter-spacing:-0.666120px;}
.ls62_c00010{letter-spacing:-0.651480px;}
.ls4c_c00010{letter-spacing:-0.644160px;}
.ls34_c00010{letter-spacing:-0.636840px;}
.ls60_c00010{letter-spacing:-0.629520px;}
.ls67_c00010{letter-spacing:-0.622200px;}
.ls50_c00010{letter-spacing:-0.614880px;}
.ls3f_c00010{letter-spacing:-0.600240px;}
.ls22_c00010{letter-spacing:-0.592920px;}
.ls88_c00010{letter-spacing:-0.585600px;}
.ls2e_c00010{letter-spacing:-0.578280px;}
.ls73_c00010{letter-spacing:-0.570960px;}
.ls16_c00010{letter-spacing:-0.563640px;}
.ls19_c00010{letter-spacing:-0.549000px;}
.ls30_c00010{letter-spacing:-0.534360px;}
.ls35_c00010{letter-spacing:-0.519720px;}
.ls58_c00010{letter-spacing:-0.512400px;}
.ls82_c00010{letter-spacing:-0.505080px;}
.ls69_c00010{letter-spacing:-0.497760px;}
.ls3e_c00010{letter-spacing:-0.490440px;}
.ls20_c00010{letter-spacing:-0.483120px;}
.ls55_c00010{letter-spacing:-0.468480px;}
.ls77_c00010{letter-spacing:-0.461160px;}
.ls66_c00010{letter-spacing:-0.453840px;}
.ls4b_c00010{letter-spacing:-0.446520px;}
.ls14_c00010{letter-spacing:-0.439200px;}
.ls3a_c00010{letter-spacing:-0.431880px;}
.ls13_c00010{letter-spacing:-0.424560px;}
.ls1c_c00010{letter-spacing:-0.417240px;}
.ls90_c00010{letter-spacing:-0.409920px;}
.ls39_c00010{letter-spacing:-0.402600px;}
.ls2c_c00010{letter-spacing:-0.395280px;}
.ls3c_c00010{letter-spacing:-0.387960px;}
.ls1b_c00010{letter-spacing:-0.380640px;}
.ls6e_c00010{letter-spacing:-0.373320px;}
.ls53_c00010{letter-spacing:-0.351360px;}
.ls70_c00010{letter-spacing:-0.344040px;}
.ls7b_c00010{letter-spacing:-0.336720px;}
.ls1e_c00010{letter-spacing:-0.322080px;}
.ls45_c00010{letter-spacing:-0.314760px;}
.ls63_c00010{letter-spacing:-0.307440px;}
.ls33_c00010{letter-spacing:-0.300120px;}
.ls51_c00010{letter-spacing:-0.292800px;}
.ls25_c00010{letter-spacing:-0.263520px;}
.ls91_c00010{letter-spacing:-0.256200px;}
.ls47_c00010{letter-spacing:-0.241560px;}
.ls83_c00010{letter-spacing:-0.234240px;}
.ls7f_c00010{letter-spacing:-0.226920px;}
.ls48_c00010{letter-spacing:-0.219600px;}
.ls5a_c00010{letter-spacing:-0.212280px;}
.ls27_c00010{letter-spacing:-0.204960px;}
.ls3d_c00010{letter-spacing:-0.197640px;}
.ls42_c00010{letter-spacing:-0.190320px;}
.ls84_c00010{letter-spacing:-0.183000px;}
.ls4d_c00010{letter-spacing:-0.175680px;}
.ls2f_c00010{letter-spacing:-0.168360px;}
.ls8a_c00010{letter-spacing:-0.146400px;}
.ls89_c00010{letter-spacing:-0.139080px;}
.ls4a_c00010{letter-spacing:-0.131760px;}
.ls46_c00010{letter-spacing:-0.117120px;}
.ls41_c00010{letter-spacing:-0.109800px;}
.ls49_c00010{letter-spacing:-0.102480px;}
.ls7e_c00010{letter-spacing:-0.095160px;}
.ls68_c00010{letter-spacing:-0.087840px;}
.ls5c_c00010{letter-spacing:-0.080520px;}
.ls28_c00010{letter-spacing:-0.073200px;}
.ls76_c00010{letter-spacing:-0.058560px;}
.ls8d_c00010{letter-spacing:-0.051240px;}
.ls44_c00010{letter-spacing:-0.043920px;}
.ls56_c00010{letter-spacing:-0.036600px;}
.ls7a_c00010{letter-spacing:-0.029280px;}
.ls26_c00010{letter-spacing:-0.021960px;}
.ls15_c00010{letter-spacing:-0.014640px;}
.ls21_c00010{letter-spacing:0.000000px;}
.ls9_c00010{letter-spacing:0.014640px;}
.ls6_c00010{letter-spacing:0.029280px;}
.ls4_c00010{letter-spacing:0.058560px;}
.ls6a_c00010{letter-spacing:0.073200px;}
.lsa_c00010{letter-spacing:0.080520px;}
.ls2_c00010{letter-spacing:0.087840px;}
.ls1_c00010{letter-spacing:0.095160px;}
.lse_c00010{letter-spacing:0.117120px;}
.lsc_c00010{letter-spacing:0.146400px;}
.lsb_c00010{letter-spacing:0.161040px;}
.ls10_c00010{letter-spacing:0.248880px;}
.ls1d_c00010{letter-spacing:0.285480px;}
.ls3_c00010{letter-spacing:0.329400px;}
.ls5_c00010{letter-spacing:0.380640px;}
.lsd_c00010{letter-spacing:0.395280px;}
.ls8_c00010{letter-spacing:0.505080px;}
.ls11_c00010{letter-spacing:1.185600px;}
.lsf_c00010{letter-spacing:1.537200px;}
.ls0_c00010{letter-spacing:1.815360px;}
.ls7_c00010{letter-spacing:1.939800px;}
.ls92_c00010{letter-spacing:3.540000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{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__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00010{word-spacing:0.000000px;}
._1_c00010{margin-left:-14.666640px;}
._19_c00010{margin-left:-9.113400px;}
._1b_c00010{margin-left:-5.270400px;}
._13_c00010{width:2.005680px;}
._11_c00010{width:3.301320px;}
._14_c00010{width:4.699440px;}
._3_c00010{width:5.899920px;}
._15_c00010{width:7.664040px;}
._1a_c00010{width:9.076800px;}
._2_c00010{width:10.659120px;}
._4_c00010{width:12.129240px;}
._0_c00010{width:13.834200px;}
._5_c00010{width:15.152400px;}
._6_c00010{width:17.341680px;}
._12_c00010{width:18.768480px;}
._7_c00010{width:20.700960px;}
._8_c00010{width:21.930720px;}
._9_c00010{width:23.467320px;}
._1c_c00010{width:24.852240px;}
._16_c00010{width:26.074440px;}
._17_c00010{width:27.273120px;}
._d_c00010{width:28.548000px;}
._18_c00010{width:29.682600px;}
._b_c00010{width:31.476000px;}
._a_c00010{width:33.569520px;}
._c_c00010{width:34.770000px;}
._10_c00010{width:36.907440px;}
._e_c00010{width:38.583720px;}
._f_c00010{width:39.747600px;}
.fc0_c00010{color:transparent;}
.fs3_c00010{font-size:60.000000px;}
.fs0_c00010{font-size:62.400000px;}
.fs2_c00010{font-size:70.800000px;}
.fs1_c00010{font-size:73.200000px;}
.y0_c00010{bottom:0.000000px;}
.y26_c00010{bottom:56.535000px;}
.y25_c00010{bottom:118.080000px;}
.y24_c00010{bottom:149.760000px;}
.y23_c00010{bottom:149.762100px;}
.y22_c00010{bottom:181.805400px;}
.y21_c00010{bottom:213.135000px;}
.y20_c00010{bottom:213.138900px;}
.y1f_c00010{bottom:243.736500px;}
.y1d_c00010{bottom:336.971400px;}
.y1e_c00010{bottom:336.975000px;}
.y1b_c00010{bottom:367.927800px;}
.y1c_c00010{bottom:367.935000px;}
.y1a_c00010{bottom:398.891400px;}
.y19_c00010{bottom:429.860700px;}
.y17_c00010{bottom:460.433100px;}
.y18_c00010{bottom:460.440000px;}
.y16_c00010{bottom:491.423400px;}
.y15_c00010{bottom:521.655000px;}
.y14_c00010{bottom:521.663700px;}
.y13_c00010{bottom:552.964200px;}
.y12_c00010{bottom:614.891400px;}
.y11_c00010{bottom:645.855000px;}
.y10_c00010{bottom:676.467300px;}
.yf_c00010{bottom:707.064900px;}
.ye_c00010{bottom:738.376200px;}
.yd_c00010{bottom:800.303400px;}
.yc_c00010{bottom:831.980700px;}
.yb_c00010{bottom:862.560000px;}
.ya_c00010{bottom:862.564200px;}
.y9_c00010{bottom:893.527800px;}
.y8_c00010{bottom:924.857400px;}
.y7_c00010{bottom:955.455000px;}
.y6_c00010{bottom:955.458600px;}
.y5_c00010{bottom:1017.715200px;}
.y4_c00010{bottom:1048.697100px;}
.y3_c00010{bottom:1078.928700px;}
.y2_c00010{bottom:1110.240000px;}
.y1_c00010{bottom:1186.935000px;}
.h6_c00010{height:58.886719px;}
.h2_c00010{height:61.242188px;}
.h5_c00010{height:69.451758px;}
.h3_c00010{height:71.841797px;}
.h4_c00010{height:71.884997px;}
.h1_c00010{height:1263.000000px;}
.h0_c00010{height:1263.240000px;}
.w1_c00010{width:892.500000px;}
.w0_c00010{width:892.800000px;}
.x0_c00010{left:0.000000px;}
.x18_c00010{left:117.673800px;}
.xc_c00010{left:119.273400px;}
.x8_c00010{left:120.423300px;}
.x2_c00010{left:122.002200px;}
.x1_c00010{left:123.375000px;}
.xd_c00010{left:172.710600px;}
.x3_c00010{left:174.504900px;}
.x4_c00010{left:306.465000px;}
.x5_c00010{left:330.090000px;}
.x12_c00010{left:393.585000px;}
.x6_c00010{left:398.010000px;}
.x13_c00010{left:414.525000px;}
.x7_c00010{left:419.610000px;}
.x1b_c00010{left:429.390000px;}
.x9_c00010{left:464.235000px;}
.x16_c00010{left:479.715000px;}
.xa_c00010{left:493.050000px;}
.x17_c00010{left:502.170000px;}
.xb_c00010{left:517.335000px;}
.xe_c00010{left:534.405000px;}
.xf_c00010{left:562.170000px;}
.x14_c00010{left:581.790000px;}
.x10_c00010{left:590.955000px;}
.x11_c00010{left:618.690000px;}
.x15_c00010{left:659.610000px;}
.x19_c00010{left:718.845000px;}
.x1a_c00010{left:735.315000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls32_c00010{letter-spacing:-2.277333pt;}
.ls61_c00010{letter-spacing:-2.238293pt;}
.ls2a_c00010{letter-spacing:-2.043093pt;}
.ls3b_c00010{letter-spacing:-1.984533pt;}
.ls81_c00010{letter-spacing:-1.958507pt;}
.ls1a_c00010{letter-spacing:-1.893440pt;}
.ls80_c00010{letter-spacing:-1.841387pt;}
.ls2d_c00010{letter-spacing:-1.652693pt;}
.ls57_c00010{letter-spacing:-1.639680pt;}
.ls4f_c00010{letter-spacing:-1.600640pt;}
.ls2b_c00010{letter-spacing:-1.464000pt;}
.ls8c_c00010{letter-spacing:-1.450987pt;}
.ls71_c00010{letter-spacing:-1.197227pt;}
.ls29_c00010{letter-spacing:-1.190720pt;}
.ls17_c00010{letter-spacing:-1.171200pt;}
.ls43_c00010{letter-spacing:-1.158187pt;}
.ls6c_c00010{letter-spacing:-1.054080pt;}
.ls4e_c00010{letter-spacing:-1.047573pt;}
.ls38_c00010{letter-spacing:-1.028053pt;}
.ls8e_c00010{letter-spacing:-1.021547pt;}
.ls6d_c00010{letter-spacing:-1.002027pt;}
.ls6b_c00010{letter-spacing:-0.995520pt;}
.ls72_c00010{letter-spacing:-0.976000pt;}
.ls8f_c00010{letter-spacing:-0.969493pt;}
.ls64_c00010{letter-spacing:-0.962987pt;}
.ls23_c00010{letter-spacing:-0.956480pt;}
.ls85_c00010{letter-spacing:-0.949973pt;}
.ls12_c00010{letter-spacing:-0.943467pt;}
.ls31_c00010{letter-spacing:-0.930453pt;}
.ls6f_c00010{letter-spacing:-0.910933pt;}
.ls24_c00010{letter-spacing:-0.904427pt;}
.ls79_c00010{letter-spacing:-0.878400pt;}
.ls7d_c00010{letter-spacing:-0.852373pt;}
.ls78_c00010{letter-spacing:-0.819840pt;}
.ls54_c00010{letter-spacing:-0.800320pt;}
.ls65_c00010{letter-spacing:-0.780800pt;}
.ls7c_c00010{letter-spacing:-0.774293pt;}
.ls18_c00010{letter-spacing:-0.761280pt;}
.ls5d_c00010{letter-spacing:-0.741760pt;}
.ls75_c00010{letter-spacing:-0.735253pt;}
.ls86_c00010{letter-spacing:-0.722240pt;}
.ls1f_c00010{letter-spacing:-0.709227pt;}
.ls59_c00010{letter-spacing:-0.689707pt;}
.ls8b_c00010{letter-spacing:-0.676693pt;}
.ls36_c00010{letter-spacing:-0.670187pt;}
.ls52_c00010{letter-spacing:-0.663680pt;}
.ls5f_c00010{letter-spacing:-0.650667pt;}
.ls40_c00010{letter-spacing:-0.644160pt;}
.ls87_c00010{letter-spacing:-0.637653pt;}
.ls5b_c00010{letter-spacing:-0.631147pt;}
.ls37_c00010{letter-spacing:-0.611627pt;}
.ls5e_c00010{letter-spacing:-0.598613pt;}
.ls74_c00010{letter-spacing:-0.592107pt;}
.ls62_c00010{letter-spacing:-0.579093pt;}
.ls4c_c00010{letter-spacing:-0.572587pt;}
.ls34_c00010{letter-spacing:-0.566080pt;}
.ls60_c00010{letter-spacing:-0.559573pt;}
.ls67_c00010{letter-spacing:-0.553067pt;}
.ls50_c00010{letter-spacing:-0.546560pt;}
.ls3f_c00010{letter-spacing:-0.533547pt;}
.ls22_c00010{letter-spacing:-0.527040pt;}
.ls88_c00010{letter-spacing:-0.520533pt;}
.ls2e_c00010{letter-spacing:-0.514027pt;}
.ls73_c00010{letter-spacing:-0.507520pt;}
.ls16_c00010{letter-spacing:-0.501013pt;}
.ls19_c00010{letter-spacing:-0.488000pt;}
.ls30_c00010{letter-spacing:-0.474987pt;}
.ls35_c00010{letter-spacing:-0.461973pt;}
.ls58_c00010{letter-spacing:-0.455467pt;}
.ls82_c00010{letter-spacing:-0.448960pt;}
.ls69_c00010{letter-spacing:-0.442453pt;}
.ls3e_c00010{letter-spacing:-0.435947pt;}
.ls20_c00010{letter-spacing:-0.429440pt;}
.ls55_c00010{letter-spacing:-0.416427pt;}
.ls77_c00010{letter-spacing:-0.409920pt;}
.ls66_c00010{letter-spacing:-0.403413pt;}
.ls4b_c00010{letter-spacing:-0.396907pt;}
.ls14_c00010{letter-spacing:-0.390400pt;}
.ls3a_c00010{letter-spacing:-0.383893pt;}
.ls13_c00010{letter-spacing:-0.377387pt;}
.ls1c_c00010{letter-spacing:-0.370880pt;}
.ls90_c00010{letter-spacing:-0.364373pt;}
.ls39_c00010{letter-spacing:-0.357867pt;}
.ls2c_c00010{letter-spacing:-0.351360pt;}
.ls3c_c00010{letter-spacing:-0.344853pt;}
.ls1b_c00010{letter-spacing:-0.338347pt;}
.ls6e_c00010{letter-spacing:-0.331840pt;}
.ls53_c00010{letter-spacing:-0.312320pt;}
.ls70_c00010{letter-spacing:-0.305813pt;}
.ls7b_c00010{letter-spacing:-0.299307pt;}
.ls1e_c00010{letter-spacing:-0.286293pt;}
.ls45_c00010{letter-spacing:-0.279787pt;}
.ls63_c00010{letter-spacing:-0.273280pt;}
.ls33_c00010{letter-spacing:-0.266773pt;}
.ls51_c00010{letter-spacing:-0.260267pt;}
.ls25_c00010{letter-spacing:-0.234240pt;}
.ls91_c00010{letter-spacing:-0.227733pt;}
.ls47_c00010{letter-spacing:-0.214720pt;}
.ls83_c00010{letter-spacing:-0.208213pt;}
.ls7f_c00010{letter-spacing:-0.201707pt;}
.ls48_c00010{letter-spacing:-0.195200pt;}
.ls5a_c00010{letter-spacing:-0.188693pt;}
.ls27_c00010{letter-spacing:-0.182187pt;}
.ls3d_c00010{letter-spacing:-0.175680pt;}
.ls42_c00010{letter-spacing:-0.169173pt;}
.ls84_c00010{letter-spacing:-0.162667pt;}
.ls4d_c00010{letter-spacing:-0.156160pt;}
.ls2f_c00010{letter-spacing:-0.149653pt;}
.ls8a_c00010{letter-spacing:-0.130133pt;}
.ls89_c00010{letter-spacing:-0.123627pt;}
.ls4a_c00010{letter-spacing:-0.117120pt;}
.ls46_c00010{letter-spacing:-0.104107pt;}
.ls41_c00010{letter-spacing:-0.097600pt;}
.ls49_c00010{letter-spacing:-0.091093pt;}
.ls7e_c00010{letter-spacing:-0.084587pt;}
.ls68_c00010{letter-spacing:-0.078080pt;}
.ls5c_c00010{letter-spacing:-0.071573pt;}
.ls28_c00010{letter-spacing:-0.065067pt;}
.ls76_c00010{letter-spacing:-0.052053pt;}
.ls8d_c00010{letter-spacing:-0.045547pt;}
.ls44_c00010{letter-spacing:-0.039040pt;}
.ls56_c00010{letter-spacing:-0.032533pt;}
.ls7a_c00010{letter-spacing:-0.026027pt;}
.ls26_c00010{letter-spacing:-0.019520pt;}
.ls15_c00010{letter-spacing:-0.013013pt;}
.ls21_c00010{letter-spacing:0.000000pt;}
.ls9_c00010{letter-spacing:0.013013pt;}
.ls6_c00010{letter-spacing:0.026027pt;}
.ls4_c00010{letter-spacing:0.052053pt;}
.ls6a_c00010{letter-spacing:0.065067pt;}
.lsa_c00010{letter-spacing:0.071573pt;}
.ls2_c00010{letter-spacing:0.078080pt;}
.ls1_c00010{letter-spacing:0.084587pt;}
.lse_c00010{letter-spacing:0.104107pt;}
.lsc_c00010{letter-spacing:0.130133pt;}
.lsb_c00010{letter-spacing:0.143147pt;}
.ls10_c00010{letter-spacing:0.221227pt;}
.ls1d_c00010{letter-spacing:0.253760pt;}
.ls3_c00010{letter-spacing:0.292800pt;}
.ls5_c00010{letter-spacing:0.338347pt;}
.lsd_c00010{letter-spacing:0.351360pt;}
.ls8_c00010{letter-spacing:0.448960pt;}
.ls11_c00010{letter-spacing:1.053867pt;}
.lsf_c00010{letter-spacing:1.366400pt;}
.ls0_c00010{letter-spacing:1.613653pt;}
.ls7_c00010{letter-spacing:1.724267pt;}
.ls92_c00010{letter-spacing:3.146667pt;}
.ws0_c00010{word-spacing:0.000000pt;}
._1_c00010{margin-left:-13.037013pt;}
._19_c00010{margin-left:-8.100800pt;}
._1b_c00010{margin-left:-4.684800pt;}
._13_c00010{width:1.782827pt;}
._11_c00010{width:2.934507pt;}
._14_c00010{width:4.177280pt;}
._3_c00010{width:5.244373pt;}
._15_c00010{width:6.812480pt;}
._1a_c00010{width:8.068267pt;}
._2_c00010{width:9.474773pt;}
._4_c00010{width:10.781547pt;}
._0_c00010{width:12.297067pt;}
._5_c00010{width:13.468800pt;}
._6_c00010{width:15.414827pt;}
._12_c00010{width:16.683093pt;}
._7_c00010{width:18.400853pt;}
._8_c00010{width:19.493973pt;}
._9_c00010{width:20.859840pt;}
._1c_c00010{width:22.090880pt;}
._16_c00010{width:23.177280pt;}
._17_c00010{width:24.242773pt;}
._d_c00010{width:25.376000pt;}
._18_c00010{width:26.384533pt;}
._b_c00010{width:27.978667pt;}
._a_c00010{width:29.839573pt;}
._c_c00010{width:30.906667pt;}
._10_c00010{width:32.806613pt;}
._e_c00010{width:34.296640pt;}
._f_c00010{width:35.331200pt;}
.fs3_c00010{font-size:53.333333pt;}
.fs0_c00010{font-size:55.466667pt;}
.fs2_c00010{font-size:62.933333pt;}
.fs1_c00010{font-size:65.066667pt;}
.y0_c00010{bottom:0.000000pt;}
.y26_c00010{bottom:50.253333pt;}
.y25_c00010{bottom:104.960000pt;}
.y24_c00010{bottom:133.120000pt;}
.y23_c00010{bottom:133.121867pt;}
.y22_c00010{bottom:161.604800pt;}
.y21_c00010{bottom:189.453333pt;}
.y20_c00010{bottom:189.456800pt;}
.y1f_c00010{bottom:216.654667pt;}
.y1d_c00010{bottom:299.530133pt;}
.y1e_c00010{bottom:299.533333pt;}
.y1b_c00010{bottom:327.046933pt;}
.y1c_c00010{bottom:327.053333pt;}
.y1a_c00010{bottom:354.570133pt;}
.y19_c00010{bottom:382.098400pt;}
.y17_c00010{bottom:409.273867pt;}
.y18_c00010{bottom:409.280000pt;}
.y16_c00010{bottom:436.820800pt;}
.y15_c00010{bottom:463.693333pt;}
.y14_c00010{bottom:463.701067pt;}
.y13_c00010{bottom:491.523733pt;}
.y12_c00010{bottom:546.570133pt;}
.y11_c00010{bottom:574.093333pt;}
.y10_c00010{bottom:601.304267pt;}
.yf_c00010{bottom:628.502133pt;}
.ye_c00010{bottom:656.334400pt;}
.yd_c00010{bottom:711.380800pt;}
.yc_c00010{bottom:739.538400pt;}
.yb_c00010{bottom:766.720000pt;}
.ya_c00010{bottom:766.723733pt;}
.y9_c00010{bottom:794.246933pt;}
.y8_c00010{bottom:822.095467pt;}
.y7_c00010{bottom:849.293333pt;}
.y6_c00010{bottom:849.296533pt;}
.y5_c00010{bottom:904.635733pt;}
.y4_c00010{bottom:932.175200pt;}
.y3_c00010{bottom:959.047733pt;}
.y2_c00010{bottom:986.880000pt;}
.y1_c00010{bottom:1055.053333pt;}
.h6_c00010{height:52.343750pt;}
.h2_c00010{height:54.437500pt;}
.h5_c00010{height:61.734896pt;}
.h3_c00010{height:63.859375pt;}
.h4_c00010{height:63.897775pt;}
.h1_c00010{height:1122.666667pt;}
.h0_c00010{height:1122.880000pt;}
.w1_c00010{width:793.333333pt;}
.w0_c00010{width:793.600000pt;}
.x0_c00010{left:0.000000pt;}
.x18_c00010{left:104.598933pt;}
.xc_c00010{left:106.020800pt;}
.x8_c00010{left:107.042933pt;}
.x2_c00010{left:108.446400pt;}
.x1_c00010{left:109.666667pt;}
.xd_c00010{left:153.520533pt;}
.x3_c00010{left:155.115467pt;}
.x4_c00010{left:272.413333pt;}
.x5_c00010{left:293.413333pt;}
.x12_c00010{left:349.853333pt;}
.x6_c00010{left:353.786667pt;}
.x13_c00010{left:368.466667pt;}
.x7_c00010{left:372.986667pt;}
.x1b_c00010{left:381.680000pt;}
.x9_c00010{left:412.653333pt;}
.x16_c00010{left:426.413333pt;}
.xa_c00010{left:438.266667pt;}
.x17_c00010{left:446.373333pt;}
.xb_c00010{left:459.853333pt;}
.xe_c00010{left:475.026667pt;}
.xf_c00010{left:499.706667pt;}
.x14_c00010{left:517.146667pt;}
.x10_c00010{left:525.293333pt;}
.x11_c00010{left:549.946667pt;}
.x15_c00010{left:586.320000pt;}
.x19_c00010{left:638.973333pt;}
.x1a_c00010{left:653.613333pt;}
}





/* 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_c00011 {
    display:none;
  }
  .loading-indicator_c00011.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00011 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_c00011 { 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_c00011" -> "#page-container .classname_c00011")
 */
.pf_c00011 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00011 { /* 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_c00011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00011 { /* 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_c00011 { /* 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_c00011 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00011 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00011 {overflow:visible;}
  }
}
.c_c00011 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00011 { /* 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_c00011:after { /* webkit #35443 */
  content: '';
}
.t_c00011:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00011 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 */
}
.__c00011 { /* 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_c00011 { /* info for Javascript */
  display:none;
}
.l_c00011 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00011 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00011 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00011: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_c00011 {
    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_c00011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00011.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_c00011 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00011;src:url('chunks/assets/font_e9b6d24081cb2e34e720b725.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.284668;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_c00011;src:url('chunks/assets/font_852dd3ffeadaf3510013bf75.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.284180;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_c00011;src:url('chunks/assets/font_22052dbefdb814944c22fc1b.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;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:ff4_c00011;src:url('chunks/assets/font_32ffeb23fb84eb25c4bc9eba.woff2')format("woff");}.ff4_c00011{font-family:ff4_c00011;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;}
.m1_c00011{transform:matrix(0.204666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204666,0.000000,0.000000,0.250000,0,0);}
.m4_c00011{transform:matrix(0.228203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228203,0.000000,0.000000,0.250000,0,0);}
.m7_c00011{transform:matrix(0.236922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236922,0.000000,0.000000,0.250000,0,0);}
.m3_c00011{transform:matrix(0.246513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246513,0.000000,0.000000,0.250000,0,0);}
.m0_c00011{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);}
.m2_c00011{transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);}
.m5_c00011{transform:matrix(0.303069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303069,0.000000,0.000000,0.250000,0,0);}
.m6_c00011{transform:matrix(2.289897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.289897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.289897,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls90_c00011{letter-spacing:-2.520000px;}
.lsa3_c00011{letter-spacing:-2.457000px;}
.ls8c_c00011{letter-spacing:-2.310000px;}
.ls85_c00011{letter-spacing:-1.951560px;}
.ls83_c00011{letter-spacing:-1.916460px;}
.lsa1_c00011{letter-spacing:-1.642200px;}
.lsa2_c00011{letter-spacing:-1.635660px;}
.ls93_c00011{letter-spacing:-1.221480px;}
.ls81_c00011{letter-spacing:-0.947700px;}
.ls9c_c00011{letter-spacing:-0.943200px;}
.ls95_c00011{letter-spacing:-0.807300px;}
.ls96_c00011{letter-spacing:-0.793260px;}
.ls99_c00011{letter-spacing:-0.784800px;}
.ls7d_c00011{letter-spacing:-0.765180px;}
.ls8a_c00011{letter-spacing:-0.744120px;}
.ls87_c00011{letter-spacing:-0.676800px;}
.lsa5_c00011{letter-spacing:-0.672021px;}
.ls9a_c00011{letter-spacing:-0.633600px;}
.ls79_c00011{letter-spacing:-0.610740px;}
.ls86_c00011{letter-spacing:-0.547560px;}
.ls7b_c00011{letter-spacing:-0.512460px;}
.ls9b_c00011{letter-spacing:-0.475200px;}
.ls94_c00011{letter-spacing:-0.470340px;}
.ls91_c00011{letter-spacing:-0.414180px;}
.ls92_c00011{letter-spacing:-0.231660px;}
.ls9e_c00011{letter-spacing:-0.208800px;}
.ls7f_c00011{letter-spacing:-0.196560px;}
.ls88_c00011{letter-spacing:-0.189540px;}
.ls98_c00011{letter-spacing:-0.180000px;}
.lsa6_c00011{letter-spacing:-0.161460px;}
.ls9d_c00011{letter-spacing:-0.154440px;}
.ls7e_c00011{letter-spacing:-0.126360px;}
.ls9f_c00011{letter-spacing:-0.122400px;}
.ls89_c00011{letter-spacing:-0.091260px;}
.ls8e_c00011{letter-spacing:-0.077220px;}
.ls7a_c00011{letter-spacing:-0.070200px;}
.ls80_c00011{letter-spacing:0.000000px;}
.ls1f_c00011{letter-spacing:0.042120px;}
.ls64_c00011{letter-spacing:0.043200px;}
.ls0_c00011{letter-spacing:0.072000px;}
.ls27_c00011{letter-spacing:0.091260px;}
.lsa0_c00011{letter-spacing:0.098280px;}
.ls15_c00011{letter-spacing:0.105300px;}
.ls62_c00011{letter-spacing:0.112320px;}
.ls63_c00011{letter-spacing:0.144000px;}
.ls42_c00011{letter-spacing:0.147420px;}
.ls59_c00011{letter-spacing:0.217620px;}
.ls39_c00011{letter-spacing:0.224640px;}
.ls76_c00011{letter-spacing:0.266760px;}
.ls4_c00011{letter-spacing:0.273780px;}
.ls6f_c00011{letter-spacing:0.322920px;}
.ls4a_c00011{letter-spacing:0.329940px;}
.ls72_c00011{letter-spacing:0.351000px;}
.ls18_c00011{letter-spacing:0.386100px;}
.ls58_c00011{letter-spacing:0.393120px;}
.ls4b_c00011{letter-spacing:0.400140px;}
.ls55_c00011{letter-spacing:0.407160px;}
.ls41_c00011{letter-spacing:0.414180px;}
.ls75_c00011{letter-spacing:0.428220px;}
.ls7c_c00011{letter-spacing:0.442260px;}
.ls49_c00011{letter-spacing:0.456300px;}
.lsd_c00011{letter-spacing:0.463320px;}
.ls3a_c00011{letter-spacing:0.470340px;}
.ls6e_c00011{letter-spacing:0.477360px;}
.ls4f_c00011{letter-spacing:0.484380px;}
.lsa8_c00011{letter-spacing:0.505440px;}
.ls48_c00011{letter-spacing:0.526500px;}
.ls73_c00011{letter-spacing:0.554580px;}
.ls32_c00011{letter-spacing:0.561600px;}
.ls1a_c00011{letter-spacing:0.568620px;}
.ls74_c00011{letter-spacing:0.575640px;}
.ls8d_c00011{letter-spacing:0.582660px;}
.ls2d_c00011{letter-spacing:0.589680px;}
.ls56_c00011{letter-spacing:0.596700px;}
.lsa7_c00011{letter-spacing:0.603720px;}
.ls5e_c00011{letter-spacing:0.610740px;}
.ls44_c00011{letter-spacing:0.617760px;}
.ls11_c00011{letter-spacing:0.624780px;}
.ls29_c00011{letter-spacing:0.631800px;}
.ls45_c00011{letter-spacing:0.638820px;}
.ls6a_c00011{letter-spacing:0.645840px;}
.ls60_c00011{letter-spacing:0.652860px;}
.ls5_c00011{letter-spacing:0.659880px;}
.ls5c_c00011{letter-spacing:0.666900px;}
.ls20_c00011{letter-spacing:0.673920px;}
.ls2e_c00011{letter-spacing:0.680940px;}
.lsa_c00011{letter-spacing:0.694980px;}
.ls50_c00011{letter-spacing:0.702000px;}
.ls37_c00011{letter-spacing:0.709020px;}
.ls53_c00011{letter-spacing:0.716040px;}
.ls52_c00011{letter-spacing:0.723060px;}
.lsc_c00011{letter-spacing:0.730080px;}
.ls71_c00011{letter-spacing:0.744120px;}
.ls35_c00011{letter-spacing:0.751140px;}
.ls77_c00011{letter-spacing:0.779220px;}
.ls66_c00011{letter-spacing:0.807300px;}
.ls5d_c00011{letter-spacing:0.828360px;}
.ls68_c00011{letter-spacing:0.835380px;}
.ls54_c00011{letter-spacing:0.842400px;}
.ls14_c00011{letter-spacing:0.856440px;}
.ls46_c00011{letter-spacing:0.870480px;}
.ls84_c00011{letter-spacing:0.884520px;}
.ls25_c00011{letter-spacing:0.891540px;}
.ls61_c00011{letter-spacing:0.898560px;}
.ls43_c00011{letter-spacing:0.912600px;}
.ls1d_c00011{letter-spacing:0.919620px;}
.ls7_c00011{letter-spacing:0.926640px;}
.lse_c00011{letter-spacing:0.933660px;}
.ls6b_c00011{letter-spacing:0.940680px;}
.ls34_c00011{letter-spacing:0.947700px;}
.ls19_c00011{letter-spacing:0.954720px;}
.lsa4_c00011{letter-spacing:0.960030px;}
.ls28_c00011{letter-spacing:0.961740px;}
.ls8_c00011{letter-spacing:0.968760px;}
.ls38_c00011{letter-spacing:0.972000px;}
.lsb_c00011{letter-spacing:0.975780px;}
.ls30_c00011{letter-spacing:0.989820px;}
.ls36_c00011{letter-spacing:1.003860px;}
.ls17_c00011{letter-spacing:1.010880px;}
.ls1e_c00011{letter-spacing:1.017900px;}
.ls69_c00011{letter-spacing:1.024920px;}
.ls3e_c00011{letter-spacing:1.045980px;}
.ls1c_c00011{letter-spacing:1.074060px;}
.ls65_c00011{letter-spacing:1.081080px;}
.ls16_c00011{letter-spacing:1.102140px;}
.ls40_c00011{letter-spacing:1.123200px;}
.ls4e_c00011{letter-spacing:1.137240px;}
.ls24_c00011{letter-spacing:1.144260px;}
.ls26_c00011{letter-spacing:1.151280px;}
.ls2b_c00011{letter-spacing:1.158300px;}
.ls9_c00011{letter-spacing:1.207440px;}
.ls4d_c00011{letter-spacing:1.214460px;}
.ls6c_c00011{letter-spacing:1.228500px;}
.ls10_c00011{letter-spacing:1.242540px;}
.ls21_c00011{letter-spacing:1.263600px;}
.ls3f_c00011{letter-spacing:1.277640px;}
.ls82_c00011{letter-spacing:1.291680px;}
.ls3c_c00011{letter-spacing:1.305720px;}
.ls5f_c00011{letter-spacing:1.319760px;}
.ls33_c00011{letter-spacing:1.333800px;}
.ls3b_c00011{letter-spacing:1.382940px;}
.ls2a_c00011{letter-spacing:1.425060px;}
.ls47_c00011{letter-spacing:1.439100px;}
.ls51_c00011{letter-spacing:1.481220px;}
.ls4c_c00011{letter-spacing:1.495260px;}
.ls67_c00011{letter-spacing:1.544400px;}
.ls97_c00011{letter-spacing:1.545120px;}
.ls5a_c00011{letter-spacing:1.551420px;}
.ls23_c00011{letter-spacing:1.628640px;}
.ls8b_c00011{letter-spacing:1.684800px;}
.ls70_c00011{letter-spacing:1.755000px;}
.ls13_c00011{letter-spacing:1.839240px;}
.ls1_c00011{letter-spacing:1.923480px;}
.ls6d_c00011{letter-spacing:1.930500px;}
.ls1b_c00011{letter-spacing:1.993680px;}
.ls12_c00011{letter-spacing:2.021760px;}
.ls31_c00011{letter-spacing:2.042820px;}
.ls2c_c00011{letter-spacing:2.183220px;}
.ls57_c00011{letter-spacing:2.262000px;}
.ls3_c00011{letter-spacing:2.289600px;}
.ls22_c00011{letter-spacing:2.295540px;}
.ls2_c00011{letter-spacing:2.412000px;}
.ls78_c00011{letter-spacing:2.424000px;}
.lsf_c00011{letter-spacing:2.485080px;}
.ls3d_c00011{letter-spacing:2.694960px;}
.ls6_c00011{letter-spacing:2.871180px;}
.ls2f_c00011{letter-spacing:3.194100px;}
.ls5b_c00011{letter-spacing:3.208140px;}
.ls8f_c00011{letter-spacing:3.600000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{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__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00011{word-spacing:0.000000px;}
._1d_c00011{margin-left:-12.154440px;}
._13_c00011{margin-left:-4.212000px;}
._18_c00011{margin-left:-3.067740px;}
._1b_c00011{margin-left:-1.751400px;}
._12_c00011{width:1.333680px;}
._f_c00011{width:2.899260px;}
._19_c00011{width:3.938220px;}
._10_c00011{width:4.998240px;}
._11_c00011{width:6.809400px;}
._26_c00011{width:8.002800px;}
._d_c00011{width:9.133020px;}
._1a_c00011{width:10.724760px;}
._a_c00011{width:11.730480px;}
._c_c00011{width:12.930840px;}
._e_c00011{width:14.736660px;}
._9_c00011{width:15.816060px;}
._b_c00011{width:17.332380px;}
._1c_c00011{width:18.367200px;}
._2_c00011{width:19.404000px;}
._17_c00011{width:21.051660px;}
._1_c00011{width:22.095000px;}
._5_c00011{width:23.154480px;}
._4_c00011{width:24.176880px;}
._6_c00011{width:26.133120px;}
._7_c00011{width:27.785160px;}
._0_c00011{width:29.016000px;}
._3_c00011{width:30.134340px;}
._15_c00011{width:32.994000px;}
._14_c00011{width:35.102520px;}
._16_c00011{width:36.494460px;}
._1f_c00011{width:38.716800px;}
._20_c00011{width:40.293300px;}
._1e_c00011{width:42.112800px;}
._23_c00011{width:44.920980px;}
._21_c00011{width:46.654920px;}
._22_c00011{width:48.171240px;}
._24_c00011{width:49.287600px;}
._25_c00011{width:50.319360px;}
._8_c00011{width:51.877800px;}
.fc0_c00011{color:transparent;}
.fs8_c00011{font-size:19.200600px;}
.fs9_c00011{font-size:58.800000px;}
.fs0_c00011{font-size:60.600000px;}
.fs4_c00011{font-size:66.000000px;}
.fs3_c00011{font-size:68.400000px;}
.fs7_c00011{font-size:69.000000px;}
.fs5_c00011{font-size:69.600000px;}
.fs2_c00011{font-size:70.200000px;}
.fs1_c00011{font-size:72.000000px;}
.fs6_c00011{font-size:73.800000px;}
.y0_c00011{bottom:0.000000px;}
.y21_c00011{bottom:66.600000px;}
.y20_c00011{bottom:159.841350px;}
.y1f_c00011{bottom:190.080000px;}
.y1e_c00011{bottom:216.720000px;}
.y1d_c00011{bottom:221.055000px;}
.y1c_c00011{bottom:221.060400px;}
.y1b_c00011{bottom:252.018600px;}
.y1a_c00011{bottom:282.976800px;}
.y19_c00011{bottom:313.933500px;}
.y18_c00011{bottom:375.130350px;}
.y17_c00011{bottom:405.720000px;}
.y16_c00011{bottom:437.055000px;}
.y15_c00011{bottom:468.002400px;}
.y14_c00011{bottom:498.609600px;}
.y13_c00011{bottom:560.175000px;}
.y12_c00011{bottom:591.480000px;}
.y11_c00011{bottom:652.313250px;}
.y10_c00011{bottom:683.640000px;}
.yf_c00011{bottom:714.619350px;}
.ye_c00011{bottom:745.560000px;}
.yc_c00011{bottom:776.168250px;}
.yd_c00011{bottom:776.175000px;}
.yb_c00011{bottom:807.495000px;}
.ya_c00011{bottom:840.241800px;}
.y9_c00011{bottom:871.199100px;}
.y8_c00011{bottom:901.806300px;}
.y7_c00011{bottom:963.003150px;}
.y6_c00011{bottom:993.592800px;}
.y5_c00011{bottom:1024.201050px;}
.y4_c00011{bottom:1055.176800px;}
.y3_c00011{bottom:1086.139350px;}
.y2_c00011{bottom:1117.080000px;}
.y1_c00011{bottom:1193.055000px;}
.hd_c00011{height:20.025626px;}
.he_c00011{height:57.708984px;}
.h2_c00011{height:59.475586px;}
.h8_c00011{height:68.835938px;}
.h4_c00011{height:68.897461px;}
.h5_c00011{height:68.901061px;}
.h9_c00011{height:68.924461px;}
.h6_c00011{height:70.621706px;}
.h3_c00011{height:70.628906px;}
.ha_c00011{height:70.679306px;}
.h7_c00011{height:71.339063px;}
.hc_c00011{height:71.970844px;}
.hb_c00011{height:72.430664px;}
.h1_c00011{height:1263.000000px;}
.h0_c00011{height:1263.240000px;}
.w1_c00011{width:892.500000px;}
.w0_c00011{width:892.800000px;}
.x0_c00011{left:0.000000px;}
.x1_c00011{left:124.815000px;}
.x2_c00011{left:179.182500px;}
.xa_c00011{left:350.940000px;}
.xb_c00011{left:361.020000px;}
.xe_c00011{left:433.275000px;}
.xc_c00011{left:519.015000px;}
.x8_c00011{left:593.115000px;}
.x9_c00011{left:625.890000px;}
.x5_c00011{left:659.355000px;}
.x6_c00011{left:679.920000px;}
.xd_c00011{left:695.040000px;}
.x3_c00011{left:698.175000px;}
.x7_c00011{left:712.125000px;}
.x4_c00011{left:736.725000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls90_c00011{letter-spacing:-2.240000pt;}
.lsa3_c00011{letter-spacing:-2.184000pt;}
.ls8c_c00011{letter-spacing:-2.053333pt;}
.ls85_c00011{letter-spacing:-1.734720pt;}
.ls83_c00011{letter-spacing:-1.703520pt;}
.lsa1_c00011{letter-spacing:-1.459733pt;}
.lsa2_c00011{letter-spacing:-1.453920pt;}
.ls93_c00011{letter-spacing:-1.085760pt;}
.ls81_c00011{letter-spacing:-0.842400pt;}
.ls9c_c00011{letter-spacing:-0.838400pt;}
.ls95_c00011{letter-spacing:-0.717600pt;}
.ls96_c00011{letter-spacing:-0.705120pt;}
.ls99_c00011{letter-spacing:-0.697600pt;}
.ls7d_c00011{letter-spacing:-0.680160pt;}
.ls8a_c00011{letter-spacing:-0.661440pt;}
.ls87_c00011{letter-spacing:-0.601600pt;}
.lsa5_c00011{letter-spacing:-0.597352pt;}
.ls9a_c00011{letter-spacing:-0.563200pt;}
.ls79_c00011{letter-spacing:-0.542880pt;}
.ls86_c00011{letter-spacing:-0.486720pt;}
.ls7b_c00011{letter-spacing:-0.455520pt;}
.ls9b_c00011{letter-spacing:-0.422400pt;}
.ls94_c00011{letter-spacing:-0.418080pt;}
.ls91_c00011{letter-spacing:-0.368160pt;}
.ls92_c00011{letter-spacing:-0.205920pt;}
.ls9e_c00011{letter-spacing:-0.185600pt;}
.ls7f_c00011{letter-spacing:-0.174720pt;}
.ls88_c00011{letter-spacing:-0.168480pt;}
.ls98_c00011{letter-spacing:-0.160000pt;}
.lsa6_c00011{letter-spacing:-0.143520pt;}
.ls9d_c00011{letter-spacing:-0.137280pt;}
.ls7e_c00011{letter-spacing:-0.112320pt;}
.ls9f_c00011{letter-spacing:-0.108800pt;}
.ls89_c00011{letter-spacing:-0.081120pt;}
.ls8e_c00011{letter-spacing:-0.068640pt;}
.ls7a_c00011{letter-spacing:-0.062400pt;}
.ls80_c00011{letter-spacing:0.000000pt;}
.ls1f_c00011{letter-spacing:0.037440pt;}
.ls64_c00011{letter-spacing:0.038400pt;}
.ls0_c00011{letter-spacing:0.064000pt;}
.ls27_c00011{letter-spacing:0.081120pt;}
.lsa0_c00011{letter-spacing:0.087360pt;}
.ls15_c00011{letter-spacing:0.093600pt;}
.ls62_c00011{letter-spacing:0.099840pt;}
.ls63_c00011{letter-spacing:0.128000pt;}
.ls42_c00011{letter-spacing:0.131040pt;}
.ls59_c00011{letter-spacing:0.193440pt;}
.ls39_c00011{letter-spacing:0.199680pt;}
.ls76_c00011{letter-spacing:0.237120pt;}
.ls4_c00011{letter-spacing:0.243360pt;}
.ls6f_c00011{letter-spacing:0.287040pt;}
.ls4a_c00011{letter-spacing:0.293280pt;}
.ls72_c00011{letter-spacing:0.312000pt;}
.ls18_c00011{letter-spacing:0.343200pt;}
.ls58_c00011{letter-spacing:0.349440pt;}
.ls4b_c00011{letter-spacing:0.355680pt;}
.ls55_c00011{letter-spacing:0.361920pt;}
.ls41_c00011{letter-spacing:0.368160pt;}
.ls75_c00011{letter-spacing:0.380640pt;}
.ls7c_c00011{letter-spacing:0.393120pt;}
.ls49_c00011{letter-spacing:0.405600pt;}
.lsd_c00011{letter-spacing:0.411840pt;}
.ls3a_c00011{letter-spacing:0.418080pt;}
.ls6e_c00011{letter-spacing:0.424320pt;}
.ls4f_c00011{letter-spacing:0.430560pt;}
.lsa8_c00011{letter-spacing:0.449280pt;}
.ls48_c00011{letter-spacing:0.468000pt;}
.ls73_c00011{letter-spacing:0.492960pt;}
.ls32_c00011{letter-spacing:0.499200pt;}
.ls1a_c00011{letter-spacing:0.505440pt;}
.ls74_c00011{letter-spacing:0.511680pt;}
.ls8d_c00011{letter-spacing:0.517920pt;}
.ls2d_c00011{letter-spacing:0.524160pt;}
.ls56_c00011{letter-spacing:0.530400pt;}
.lsa7_c00011{letter-spacing:0.536640pt;}
.ls5e_c00011{letter-spacing:0.542880pt;}
.ls44_c00011{letter-spacing:0.549120pt;}
.ls11_c00011{letter-spacing:0.555360pt;}
.ls29_c00011{letter-spacing:0.561600pt;}
.ls45_c00011{letter-spacing:0.567840pt;}
.ls6a_c00011{letter-spacing:0.574080pt;}
.ls60_c00011{letter-spacing:0.580320pt;}
.ls5_c00011{letter-spacing:0.586560pt;}
.ls5c_c00011{letter-spacing:0.592800pt;}
.ls20_c00011{letter-spacing:0.599040pt;}
.ls2e_c00011{letter-spacing:0.605280pt;}
.lsa_c00011{letter-spacing:0.617760pt;}
.ls50_c00011{letter-spacing:0.624000pt;}
.ls37_c00011{letter-spacing:0.630240pt;}
.ls53_c00011{letter-spacing:0.636480pt;}
.ls52_c00011{letter-spacing:0.642720pt;}
.lsc_c00011{letter-spacing:0.648960pt;}
.ls71_c00011{letter-spacing:0.661440pt;}
.ls35_c00011{letter-spacing:0.667680pt;}
.ls77_c00011{letter-spacing:0.692640pt;}
.ls66_c00011{letter-spacing:0.717600pt;}
.ls5d_c00011{letter-spacing:0.736320pt;}
.ls68_c00011{letter-spacing:0.742560pt;}
.ls54_c00011{letter-spacing:0.748800pt;}
.ls14_c00011{letter-spacing:0.761280pt;}
.ls46_c00011{letter-spacing:0.773760pt;}
.ls84_c00011{letter-spacing:0.786240pt;}
.ls25_c00011{letter-spacing:0.792480pt;}
.ls61_c00011{letter-spacing:0.798720pt;}
.ls43_c00011{letter-spacing:0.811200pt;}
.ls1d_c00011{letter-spacing:0.817440pt;}
.ls7_c00011{letter-spacing:0.823680pt;}
.lse_c00011{letter-spacing:0.829920pt;}
.ls6b_c00011{letter-spacing:0.836160pt;}
.ls34_c00011{letter-spacing:0.842400pt;}
.ls19_c00011{letter-spacing:0.848640pt;}
.lsa4_c00011{letter-spacing:0.853360pt;}
.ls28_c00011{letter-spacing:0.854880pt;}
.ls8_c00011{letter-spacing:0.861120pt;}
.ls38_c00011{letter-spacing:0.864000pt;}
.lsb_c00011{letter-spacing:0.867360pt;}
.ls30_c00011{letter-spacing:0.879840pt;}
.ls36_c00011{letter-spacing:0.892320pt;}
.ls17_c00011{letter-spacing:0.898560pt;}
.ls1e_c00011{letter-spacing:0.904800pt;}
.ls69_c00011{letter-spacing:0.911040pt;}
.ls3e_c00011{letter-spacing:0.929760pt;}
.ls1c_c00011{letter-spacing:0.954720pt;}
.ls65_c00011{letter-spacing:0.960960pt;}
.ls16_c00011{letter-spacing:0.979680pt;}
.ls40_c00011{letter-spacing:0.998400pt;}
.ls4e_c00011{letter-spacing:1.010880pt;}
.ls24_c00011{letter-spacing:1.017120pt;}
.ls26_c00011{letter-spacing:1.023360pt;}
.ls2b_c00011{letter-spacing:1.029600pt;}
.ls9_c00011{letter-spacing:1.073280pt;}
.ls4d_c00011{letter-spacing:1.079520pt;}
.ls6c_c00011{letter-spacing:1.092000pt;}
.ls10_c00011{letter-spacing:1.104480pt;}
.ls21_c00011{letter-spacing:1.123200pt;}
.ls3f_c00011{letter-spacing:1.135680pt;}
.ls82_c00011{letter-spacing:1.148160pt;}
.ls3c_c00011{letter-spacing:1.160640pt;}
.ls5f_c00011{letter-spacing:1.173120pt;}
.ls33_c00011{letter-spacing:1.185600pt;}
.ls3b_c00011{letter-spacing:1.229280pt;}
.ls2a_c00011{letter-spacing:1.266720pt;}
.ls47_c00011{letter-spacing:1.279200pt;}
.ls51_c00011{letter-spacing:1.316640pt;}
.ls4c_c00011{letter-spacing:1.329120pt;}
.ls67_c00011{letter-spacing:1.372800pt;}
.ls97_c00011{letter-spacing:1.373440pt;}
.ls5a_c00011{letter-spacing:1.379040pt;}
.ls23_c00011{letter-spacing:1.447680pt;}
.ls8b_c00011{letter-spacing:1.497600pt;}
.ls70_c00011{letter-spacing:1.560000pt;}
.ls13_c00011{letter-spacing:1.634880pt;}
.ls1_c00011{letter-spacing:1.709760pt;}
.ls6d_c00011{letter-spacing:1.716000pt;}
.ls1b_c00011{letter-spacing:1.772160pt;}
.ls12_c00011{letter-spacing:1.797120pt;}
.ls31_c00011{letter-spacing:1.815840pt;}
.ls2c_c00011{letter-spacing:1.940640pt;}
.ls57_c00011{letter-spacing:2.010667pt;}
.ls3_c00011{letter-spacing:2.035200pt;}
.ls22_c00011{letter-spacing:2.040480pt;}
.ls2_c00011{letter-spacing:2.144000pt;}
.ls78_c00011{letter-spacing:2.154667pt;}
.lsf_c00011{letter-spacing:2.208960pt;}
.ls3d_c00011{letter-spacing:2.395520pt;}
.ls6_c00011{letter-spacing:2.552160pt;}
.ls2f_c00011{letter-spacing:2.839200pt;}
.ls5b_c00011{letter-spacing:2.851680pt;}
.ls8f_c00011{letter-spacing:3.200000pt;}
.ws0_c00011{word-spacing:0.000000pt;}
._1d_c00011{margin-left:-10.803947pt;}
._13_c00011{margin-left:-3.744000pt;}
._18_c00011{margin-left:-2.726880pt;}
._1b_c00011{margin-left:-1.556800pt;}
._12_c00011{width:1.185493pt;}
._f_c00011{width:2.577120pt;}
._19_c00011{width:3.500640pt;}
._10_c00011{width:4.442880pt;}
._11_c00011{width:6.052800pt;}
._26_c00011{width:7.113600pt;}
._d_c00011{width:8.118240pt;}
._1a_c00011{width:9.533120pt;}
._a_c00011{width:10.427093pt;}
._c_c00011{width:11.494080pt;}
._e_c00011{width:13.099253pt;}
._9_c00011{width:14.058720pt;}
._b_c00011{width:15.406560pt;}
._1c_c00011{width:16.326400pt;}
._2_c00011{width:17.248000pt;}
._17_c00011{width:18.712587pt;}
._1_c00011{width:19.640000pt;}
._5_c00011{width:20.581760pt;}
._4_c00011{width:21.490560pt;}
._6_c00011{width:23.229440pt;}
._7_c00011{width:24.697920pt;}
._0_c00011{width:25.792000pt;}
._3_c00011{width:26.786080pt;}
._15_c00011{width:29.328000pt;}
._14_c00011{width:31.202240pt;}
._16_c00011{width:32.439520pt;}
._1f_c00011{width:34.414933pt;}
._20_c00011{width:35.816267pt;}
._1e_c00011{width:37.433600pt;}
._23_c00011{width:39.929760pt;}
._21_c00011{width:41.471040pt;}
._22_c00011{width:42.818880pt;}
._24_c00011{width:43.811200pt;}
._25_c00011{width:44.728320pt;}
._8_c00011{width:46.113600pt;}
.fs8_c00011{font-size:17.067200pt;}
.fs9_c00011{font-size:52.266667pt;}
.fs0_c00011{font-size:53.866667pt;}
.fs4_c00011{font-size:58.666667pt;}
.fs3_c00011{font-size:60.800000pt;}
.fs7_c00011{font-size:61.333333pt;}
.fs5_c00011{font-size:61.866667pt;}
.fs2_c00011{font-size:62.400000pt;}
.fs1_c00011{font-size:64.000000pt;}
.fs6_c00011{font-size:65.600000pt;}
.y0_c00011{bottom:0.000000pt;}
.y21_c00011{bottom:59.200000pt;}
.y20_c00011{bottom:142.081200pt;}
.y1f_c00011{bottom:168.960000pt;}
.y1e_c00011{bottom:192.640000pt;}
.y1d_c00011{bottom:196.493333pt;}
.y1c_c00011{bottom:196.498133pt;}
.y1b_c00011{bottom:224.016533pt;}
.y1a_c00011{bottom:251.534933pt;}
.y19_c00011{bottom:279.052000pt;}
.y18_c00011{bottom:333.449200pt;}
.y17_c00011{bottom:360.640000pt;}
.y16_c00011{bottom:388.493333pt;}
.y15_c00011{bottom:416.002133pt;}
.y14_c00011{bottom:443.208533pt;}
.y13_c00011{bottom:497.933333pt;}
.y12_c00011{bottom:525.760000pt;}
.y11_c00011{bottom:579.834000pt;}
.y10_c00011{bottom:607.680000pt;}
.yf_c00011{bottom:635.217200pt;}
.ye_c00011{bottom:662.720000pt;}
.yc_c00011{bottom:689.927333pt;}
.yd_c00011{bottom:689.933333pt;}
.yb_c00011{bottom:717.773333pt;}
.ya_c00011{bottom:746.881600pt;}
.y9_c00011{bottom:774.399200pt;}
.y8_c00011{bottom:801.605600pt;}
.y7_c00011{bottom:856.002800pt;}
.y6_c00011{bottom:883.193600pt;}
.y5_c00011{bottom:910.400933pt;}
.y4_c00011{bottom:937.934933pt;}
.y3_c00011{bottom:965.457200pt;}
.y2_c00011{bottom:992.960000pt;}
.y1_c00011{bottom:1060.493333pt;}
.hd_c00011{height:17.800556pt;}
.he_c00011{height:51.296875pt;}
.h2_c00011{height:52.867187pt;}
.h8_c00011{height:61.187500pt;}
.h4_c00011{height:61.242187pt;}
.h5_c00011{height:61.245387pt;}
.h9_c00011{height:61.266187pt;}
.h6_c00011{height:62.774850pt;}
.h3_c00011{height:62.781250pt;}
.ha_c00011{height:62.826050pt;}
.h7_c00011{height:63.412500pt;}
.hc_c00011{height:63.974083pt;}
.hb_c00011{height:64.382813pt;}
.h1_c00011{height:1122.666667pt;}
.h0_c00011{height:1122.880000pt;}
.w1_c00011{width:793.333333pt;}
.w0_c00011{width:793.600000pt;}
.x0_c00011{left:0.000000pt;}
.x1_c00011{left:110.946667pt;}
.x2_c00011{left:159.273333pt;}
.xa_c00011{left:311.946667pt;}
.xb_c00011{left:320.906667pt;}
.xe_c00011{left:385.133333pt;}
.xc_c00011{left:461.346667pt;}
.x8_c00011{left:527.213333pt;}
.x9_c00011{left:556.346667pt;}
.x5_c00011{left:586.093333pt;}
.x6_c00011{left:604.373333pt;}
.xd_c00011{left:617.813333pt;}
.x3_c00011{left:620.600000pt;}
.x7_c00011{left:633.000000pt;}
.x4_c00011{left:654.866667pt;}
}





/* 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_c00012 {
    display:none;
  }
  .loading-indicator_c00012.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00012 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_c00012 { 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_c00012" -> "#page-container .classname_c00012")
 */
.pf_c00012 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00012 { /* 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_c00012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00012 { /* 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_c00012 { /* 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_c00012 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00012 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00012 {overflow:visible;}
  }
}
.c_c00012 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00012 { /* 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_c00012:after { /* webkit #35443 */
  content: '';
}
.t_c00012:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00012 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 */
}
.__c00012 { /* 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_c00012 { /* info for Javascript */
  display:none;
}
.l_c00012 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00012 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00012 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00012: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_c00012 {
    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_c00012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00012.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_c00012 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00012;src:url('chunks/assets/font_f1752984feb9327fee824caa.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.284668;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;}
.m5_c00012{transform:matrix(0.193963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193963,0.000000,0.000000,0.250000,0,0);}
.m8_c00012{transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);}
.m7_c00012{transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);}
.m6_c00012{transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);}
.m2_c00012{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m3_c00012{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m4_c00012{transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);}
.m0_c00012{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);}
.v0_c00012{vertical-align:0.000000px;}
.ls16_c00012{letter-spacing:-2.562000px;}
.ls31_c00012{letter-spacing:-2.400960px;}
.ls52_c00012{letter-spacing:-2.298480px;}
.ls11_c00012{letter-spacing:-2.130120px;}
.ls4c_c00012{letter-spacing:-1.888560px;}
.ls14_c00012{letter-spacing:-1.873920px;}
.ls17_c00012{letter-spacing:-1.800720px;}
.ls54_c00012{letter-spacing:-1.712880px;}
.ls35_c00012{letter-spacing:-1.493280px;}
.ls1e_c00012{letter-spacing:-1.449360px;}
.ls50_c00012{letter-spacing:-1.434720px;}
.ls3d_c00012{letter-spacing:-1.339560px;}
.ls3a_c00012{letter-spacing:-1.302960px;}
.ls23_c00012{letter-spacing:-1.237080px;}
.ls1a_c00012{letter-spacing:-1.185840px;}
.ls32_c00012{letter-spacing:-1.156560px;}
.ls1b_c00012{letter-spacing:-1.127280px;}
.ls3b_c00012{letter-spacing:-1.083360px;}
.ls1f_c00012{letter-spacing:-0.958920px;}
.ls45_c00012{letter-spacing:-0.951600px;}
.ls56_c00012{letter-spacing:-0.907680px;}
.ls34_c00012{letter-spacing:-0.841800px;}
.ls38_c00012{letter-spacing:-0.827160px;}
.ls29_c00012{letter-spacing:-0.812520px;}
.ls3c_c00012{letter-spacing:-0.783240px;}
.ls51_c00012{letter-spacing:-0.775920px;}
.ls15_c00012{letter-spacing:-0.732000px;}
.ls4e_c00012{letter-spacing:-0.688080px;}
.ls2b_c00012{letter-spacing:-0.644160px;}
.ls22_c00012{letter-spacing:-0.629520px;}
.ls1c_c00012{letter-spacing:-0.607560px;}
.ls24_c00012{letter-spacing:-0.592920px;}
.ls46_c00012{letter-spacing:-0.549000px;}
.ls39_c00012{letter-spacing:-0.541680px;}
.ls4a_c00012{letter-spacing:-0.527040px;}
.ls36_c00012{letter-spacing:-0.519720px;}
.ls3e_c00012{letter-spacing:-0.468480px;}
.ls4b_c00012{letter-spacing:-0.461160px;}
.ls55_c00012{letter-spacing:-0.446520px;}
.ls2c_c00012{letter-spacing:-0.439200px;}
.ls49_c00012{letter-spacing:-0.424560px;}
.ls19_c00012{letter-spacing:-0.409920px;}
.ls47_c00012{letter-spacing:-0.402600px;}
.ls1d_c00012{letter-spacing:-0.380640px;}
.ls21_c00012{letter-spacing:-0.358680px;}
.ls41_c00012{letter-spacing:-0.351360px;}
.ls37_c00012{letter-spacing:-0.314760px;}
.ls2f_c00012{letter-spacing:-0.292800px;}
.ls13_c00012{letter-spacing:-0.285480px;}
.ls40_c00012{letter-spacing:-0.278160px;}
.ls12_c00012{letter-spacing:-0.270840px;}
.ls25_c00012{letter-spacing:-0.263520px;}
.ls27_c00012{letter-spacing:-0.256200px;}
.ls44_c00012{letter-spacing:-0.248880px;}
.ls26_c00012{letter-spacing:-0.241560px;}
.ls4f_c00012{letter-spacing:-0.204960px;}
.ls18_c00012{letter-spacing:-0.190320px;}
.ls33_c00012{letter-spacing:-0.161040px;}
.ls4d_c00012{letter-spacing:-0.131760px;}
.ls43_c00012{letter-spacing:-0.109800px;}
.ls28_c00012{letter-spacing:-0.102480px;}
.ls42_c00012{letter-spacing:-0.087840px;}
.ls30_c00012{letter-spacing:-0.051240px;}
.ls53_c00012{letter-spacing:-0.043920px;}
.ls2a_c00012{letter-spacing:-0.036600px;}
.ls10_c00012{letter-spacing:0.000000px;}
.lsa_c00012{letter-spacing:0.007320px;}
.ls8_c00012{letter-spacing:0.029280px;}
.ls20_c00012{letter-spacing:0.043920px;}
.lsb_c00012{letter-spacing:0.095160px;}
.lsc_c00012{letter-spacing:0.117120px;}
.ls5_c00012{letter-spacing:0.139080px;}
.ls1_c00012{letter-spacing:0.146400px;}
.ls3f_c00012{letter-spacing:0.153720px;}
.lsd_c00012{letter-spacing:0.212280px;}
.ls6_c00012{letter-spacing:0.219600px;}
.ls2e_c00012{letter-spacing:0.226920px;}
.ls2_c00012{letter-spacing:0.241560px;}
.ls48_c00012{letter-spacing:0.285480px;}
.ls4_c00012{letter-spacing:0.322080px;}
.ls3_c00012{letter-spacing:0.380640px;}
.ls0_c00012{letter-spacing:0.468480px;}
.ls2d_c00012{letter-spacing:0.563640px;}
.lse_c00012{letter-spacing:0.578280px;}
.ls9_c00012{letter-spacing:0.717360px;}
.lsf_c00012{letter-spacing:1.316640px;}
.ls7_c00012{letter-spacing:2.196000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{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__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:0.000000px;}
._1c_c00012{margin-left:-1.705560px;}
._17_c00012{width:1.610400px;}
._1b_c00012{width:4.655520px;}
._18_c00012{width:6.009720px;}
._1a_c00012{width:7.158960px;}
._d_c00012{width:8.308200px;}
._7_c00012{width:9.362280px;}
._6_c00012{width:10.584720px;}
._9_c00012{width:11.916960px;}
._4_c00012{width:13.088160px;}
._8_c00012{width:14.610720px;}
._f_c00012{width:16.001520px;}
._5_c00012{width:18.468360px;}
._e_c00012{width:20.459400px;}
._b_c00012{width:23.248320px;}
._a_c00012{width:25.166160px;}
._1_c00012{width:26.615520px;}
._19_c00012{width:28.196640px;}
._0_c00012{width:29.865600px;}
._3_c00012{width:31.651680px;}
._c_c00012{width:33.862800px;}
._2_c00012{width:36.255960px;}
._10_c00012{width:38.834400px;}
._11_c00012{width:43.993200px;}
._12_c00012{width:46.767480px;}
._15_c00012{width:48.282720px;}
._14_c00012{width:49.336800px;}
._16_c00012{width:52.235520px;}
._13_c00012{width:53.318880px;}
.fc0_c00012{color:transparent;}
.fs2_c00012{font-size:60.000000px;}
.fs0_c00012{font-size:62.400000px;}
.fs1_c00012{font-size:73.200000px;}
.y0_c00012{bottom:0.000000px;}
.y16_c00012{bottom:59.775015px;}
.y15_c00012{bottom:679.331415px;}
.y13_c00012{bottom:710.290215px;}
.y14_c00012{bottom:710.295015px;}
.y12_c00012{bottom:741.253815px;}
.y11_c00012{bottom:802.815015px;}
.y10_c00012{bottom:802.823715px;}
.yf_c00012{bottom:834.135015px;}
.ye_c00012{bottom:865.093815px;}
.yd_c00012{bottom:896.039115px;}
.yc_c00012{bottom:926.655015px;}
.yb_c00012{bottom:957.615015px;}
.ya_c00012{bottom:957.620715px;}
.y8_c00012{bottom:988.193115px;}
.y9_c00012{bottom:988.200015px;}
.y6_c00012{bottom:1019.171415px;}
.y7_c00012{bottom:1019.175015px;}
.y5_c00012{bottom:1050.135015px;}
.y4_c00012{bottom:1050.149415px;}
.y3_c00012{bottom:1080.728715px;}
.y2_c00012{bottom:1112.040015px;}
.y1_c00012{bottom:1188.720015px;}
.h4_c00012{height:58.886719px;}
.h2_c00012{height:61.242188px;}
.h3_c00012{height:71.841797px;}
.h1_c00012{height:1263.000000px;}
.h0_c00012{height:1263.240015px;}
.w1_c00012{width:892.500000px;}
.w0_c00012{width:892.800015px;}
.x0_c00012{left:0.000000px;}
.x20_c00012{left:122.224815px;}
.x1c_c00012{left:123.295515px;}
.x5_c00012{left:124.491915px;}
.x1_c00012{left:125.535015px;}
.x1f_c00012{left:176.649015px;}
.x2_c00012{left:178.530015px;}
.x11_c00012{left:187.035015px;}
.x8_c00012{left:197.850015px;}
.x1d_c00012{left:203.145015px;}
.x12_c00012{left:211.125015px;}
.x9_c00012{left:219.030015px;}
.x1e_c00012{left:224.595015px;}
.x17_c00012{left:272.370015px;}
.x18_c00012{left:293.565015px;}
.xa_c00012{left:386.475015px;}
.xb_c00012{left:412.410015px;}
.x13_c00012{left:414.195015px;}
.x23_c00012{left:434.100015px;}
.x14_c00012{left:439.155015px;}
.xc_c00012{left:440.445015px;}
.x15_c00012{left:474.315015px;}
.x16_c00012{left:506.340015px;}
.xd_c00012{left:509.235015px;}
.xe_c00012{left:534.780015px;}
.x6_c00012{left:540.915015px;}
.x7_c00012{left:569.010015px;}
.x21_c00012{left:593.085015px;}
.x19_c00012{left:605.385015px;}
.x3_c00012{left:608.955015px;}
.x1a_c00012{left:631.005015px;}
.x4_c00012{left:638.850015px;}
.x22_c00012{left:649.980015px;}
.x1b_c00012{left:657.930015px;}
.xf_c00012{left:696.600015px;}
.x10_c00012{left:723.090015px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls16_c00012{letter-spacing:-2.277333pt;}
.ls31_c00012{letter-spacing:-2.134187pt;}
.ls52_c00012{letter-spacing:-2.043093pt;}
.ls11_c00012{letter-spacing:-1.893440pt;}
.ls4c_c00012{letter-spacing:-1.678720pt;}
.ls14_c00012{letter-spacing:-1.665707pt;}
.ls17_c00012{letter-spacing:-1.600640pt;}
.ls54_c00012{letter-spacing:-1.522560pt;}
.ls35_c00012{letter-spacing:-1.327360pt;}
.ls1e_c00012{letter-spacing:-1.288320pt;}
.ls50_c00012{letter-spacing:-1.275307pt;}
.ls3d_c00012{letter-spacing:-1.190720pt;}
.ls3a_c00012{letter-spacing:-1.158187pt;}
.ls23_c00012{letter-spacing:-1.099627pt;}
.ls1a_c00012{letter-spacing:-1.054080pt;}
.ls32_c00012{letter-spacing:-1.028053pt;}
.ls1b_c00012{letter-spacing:-1.002027pt;}
.ls3b_c00012{letter-spacing:-0.962987pt;}
.ls1f_c00012{letter-spacing:-0.852373pt;}
.ls45_c00012{letter-spacing:-0.845867pt;}
.ls56_c00012{letter-spacing:-0.806827pt;}
.ls34_c00012{letter-spacing:-0.748267pt;}
.ls38_c00012{letter-spacing:-0.735253pt;}
.ls29_c00012{letter-spacing:-0.722240pt;}
.ls3c_c00012{letter-spacing:-0.696213pt;}
.ls51_c00012{letter-spacing:-0.689707pt;}
.ls15_c00012{letter-spacing:-0.650667pt;}
.ls4e_c00012{letter-spacing:-0.611627pt;}
.ls2b_c00012{letter-spacing:-0.572587pt;}
.ls22_c00012{letter-spacing:-0.559573pt;}
.ls1c_c00012{letter-spacing:-0.540053pt;}
.ls24_c00012{letter-spacing:-0.527040pt;}
.ls46_c00012{letter-spacing:-0.488000pt;}
.ls39_c00012{letter-spacing:-0.481493pt;}
.ls4a_c00012{letter-spacing:-0.468480pt;}
.ls36_c00012{letter-spacing:-0.461973pt;}
.ls3e_c00012{letter-spacing:-0.416427pt;}
.ls4b_c00012{letter-spacing:-0.409920pt;}
.ls55_c00012{letter-spacing:-0.396907pt;}
.ls2c_c00012{letter-spacing:-0.390400pt;}
.ls49_c00012{letter-spacing:-0.377387pt;}
.ls19_c00012{letter-spacing:-0.364373pt;}
.ls47_c00012{letter-spacing:-0.357867pt;}
.ls1d_c00012{letter-spacing:-0.338347pt;}
.ls21_c00012{letter-spacing:-0.318827pt;}
.ls41_c00012{letter-spacing:-0.312320pt;}
.ls37_c00012{letter-spacing:-0.279787pt;}
.ls2f_c00012{letter-spacing:-0.260267pt;}
.ls13_c00012{letter-spacing:-0.253760pt;}
.ls40_c00012{letter-spacing:-0.247253pt;}
.ls12_c00012{letter-spacing:-0.240747pt;}
.ls25_c00012{letter-spacing:-0.234240pt;}
.ls27_c00012{letter-spacing:-0.227733pt;}
.ls44_c00012{letter-spacing:-0.221227pt;}
.ls26_c00012{letter-spacing:-0.214720pt;}
.ls4f_c00012{letter-spacing:-0.182187pt;}
.ls18_c00012{letter-spacing:-0.169173pt;}
.ls33_c00012{letter-spacing:-0.143147pt;}
.ls4d_c00012{letter-spacing:-0.117120pt;}
.ls43_c00012{letter-spacing:-0.097600pt;}
.ls28_c00012{letter-spacing:-0.091093pt;}
.ls42_c00012{letter-spacing:-0.078080pt;}
.ls30_c00012{letter-spacing:-0.045547pt;}
.ls53_c00012{letter-spacing:-0.039040pt;}
.ls2a_c00012{letter-spacing:-0.032533pt;}
.ls10_c00012{letter-spacing:0.000000pt;}
.lsa_c00012{letter-spacing:0.006507pt;}
.ls8_c00012{letter-spacing:0.026027pt;}
.ls20_c00012{letter-spacing:0.039040pt;}
.lsb_c00012{letter-spacing:0.084587pt;}
.lsc_c00012{letter-spacing:0.104107pt;}
.ls5_c00012{letter-spacing:0.123627pt;}
.ls1_c00012{letter-spacing:0.130133pt;}
.ls3f_c00012{letter-spacing:0.136640pt;}
.lsd_c00012{letter-spacing:0.188693pt;}
.ls6_c00012{letter-spacing:0.195200pt;}
.ls2e_c00012{letter-spacing:0.201707pt;}
.ls2_c00012{letter-spacing:0.214720pt;}
.ls48_c00012{letter-spacing:0.253760pt;}
.ls4_c00012{letter-spacing:0.286293pt;}
.ls3_c00012{letter-spacing:0.338347pt;}
.ls0_c00012{letter-spacing:0.416427pt;}
.ls2d_c00012{letter-spacing:0.501013pt;}
.lse_c00012{letter-spacing:0.514027pt;}
.ls9_c00012{letter-spacing:0.637653pt;}
.lsf_c00012{letter-spacing:1.170347pt;}
.ls7_c00012{letter-spacing:1.952000pt;}
.ws0_c00012{word-spacing:0.000000pt;}
._1c_c00012{margin-left:-1.516053pt;}
._17_c00012{width:1.431467pt;}
._1b_c00012{width:4.138240pt;}
._18_c00012{width:5.341973pt;}
._1a_c00012{width:6.363520pt;}
._d_c00012{width:7.385067pt;}
._7_c00012{width:8.322027pt;}
._6_c00012{width:9.408640pt;}
._9_c00012{width:10.592853pt;}
._4_c00012{width:11.633920pt;}
._8_c00012{width:12.987307pt;}
._f_c00012{width:14.223573pt;}
._5_c00012{width:16.416320pt;}
._e_c00012{width:18.186133pt;}
._b_c00012{width:20.665173pt;}
._a_c00012{width:22.369920pt;}
._1_c00012{width:23.658240pt;}
._19_c00012{width:25.063680pt;}
._0_c00012{width:26.547200pt;}
._3_c00012{width:28.134827pt;}
._c_c00012{width:30.100267pt;}
._2_c00012{width:32.227520pt;}
._10_c00012{width:34.519467pt;}
._11_c00012{width:39.105067pt;}
._12_c00012{width:41.571093pt;}
._15_c00012{width:42.917973pt;}
._14_c00012{width:43.854933pt;}
._16_c00012{width:46.431573pt;}
._13_c00012{width:47.394560pt;}
.fs2_c00012{font-size:53.333333pt;}
.fs0_c00012{font-size:55.466667pt;}
.fs1_c00012{font-size:65.066667pt;}
.y0_c00012{bottom:0.000000pt;}
.y16_c00012{bottom:53.133347pt;}
.y15_c00012{bottom:603.850147pt;}
.y13_c00012{bottom:631.369080pt;}
.y14_c00012{bottom:631.373347pt;}
.y12_c00012{bottom:658.892280pt;}
.y11_c00012{bottom:713.613347pt;}
.y10_c00012{bottom:713.621080pt;}
.yf_c00012{bottom:741.453347pt;}
.ye_c00012{bottom:768.972280pt;}
.yd_c00012{bottom:796.479213pt;}
.yc_c00012{bottom:823.693347pt;}
.yb_c00012{bottom:851.213347pt;}
.ya_c00012{bottom:851.218413pt;}
.y8_c00012{bottom:878.393880pt;}
.y9_c00012{bottom:878.400013pt;}
.y6_c00012{bottom:905.930147pt;}
.y7_c00012{bottom:905.933347pt;}
.y5_c00012{bottom:933.453347pt;}
.y4_c00012{bottom:933.466147pt;}
.y3_c00012{bottom:960.647747pt;}
.y2_c00012{bottom:988.480013pt;}
.y1_c00012{bottom:1056.640013pt;}
.h4_c00012{height:52.343750pt;}
.h2_c00012{height:54.437500pt;}
.h3_c00012{height:63.859375pt;}
.h1_c00012{height:1122.666667pt;}
.h0_c00012{height:1122.880013pt;}
.w1_c00012{width:793.333333pt;}
.w0_c00012{width:793.600013pt;}
.x0_c00012{left:0.000000pt;}
.x20_c00012{left:108.644280pt;}
.x1c_c00012{left:109.596013pt;}
.x5_c00012{left:110.659480pt;}
.x1_c00012{left:111.586680pt;}
.x1f_c00012{left:157.021347pt;}
.x2_c00012{left:158.693347pt;}
.x11_c00012{left:166.253347pt;}
.x8_c00012{left:175.866680pt;}
.x1d_c00012{left:180.573347pt;}
.x12_c00012{left:187.666680pt;}
.x9_c00012{left:194.693347pt;}
.x1e_c00012{left:199.640013pt;}
.x17_c00012{left:242.106680pt;}
.x18_c00012{left:260.946680pt;}
.xa_c00012{left:343.533347pt;}
.xb_c00012{left:366.586680pt;}
.x13_c00012{left:368.173347pt;}
.x23_c00012{left:385.866680pt;}
.x14_c00012{left:390.360013pt;}
.xc_c00012{left:391.506680pt;}
.x15_c00012{left:421.613347pt;}
.x16_c00012{left:450.080013pt;}
.xd_c00012{left:452.653347pt;}
.xe_c00012{left:475.360013pt;}
.x6_c00012{left:480.813347pt;}
.x7_c00012{left:505.786680pt;}
.x21_c00012{left:527.186680pt;}
.x19_c00012{left:538.120013pt;}
.x3_c00012{left:541.293347pt;}
.x1a_c00012{left:560.893347pt;}
.x4_c00012{left:567.866680pt;}
.x22_c00012{left:577.760013pt;}
.x1b_c00012{left:584.826680pt;}
.xf_c00012{left:619.200013pt;}
.x10_c00012{left:642.746680pt;}
}





/* 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_c00013 {
    display:none;
  }
  .loading-indicator_c00013.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00013 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_c00013 { 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_c00013" -> "#page-container .classname_c00013")
 */
.pf_c00013 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00013 { /* 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_c00013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00013 { /* 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_c00013 { /* 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_c00013 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00013 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00013 {overflow:visible;}
  }
}
.c_c00013 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00013 { /* 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_c00013:after { /* webkit #35443 */
  content: '';
}
.t_c00013:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00013 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 */
}
.__c00013 { /* 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_c00013 { /* info for Javascript */
  display:none;
}
.l_c00013 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00013 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00013 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00013: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_c00013 {
    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_c00013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00013.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_c00013 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00013;src:url('chunks/assets/font_7037752c9f11f72c2acf8c5f.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.311035;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_c00013;src:url('chunks/assets/font_faf901926816cbdfecc5fdfb.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.284668;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_c00013;src:url('chunks/assets/font_ba0b7b0ad8f8a11c2f739444.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.284180;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_c00013;src:url('chunks/assets/font_b091801ae8a87fa1af8df050.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;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:ff5_c00013;src:url('chunks/assets/font_d52832ddba3bed2688362615.woff2')format("woff");}.ff5_c00013{font-family:ff5_c00013;line-height:1.284180;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_c00013;src:url('chunks/assets/font_e5cc58055fcca96b297ee0ca.woff2')format("woff");}.ff6_c00013{font-family:ff6_c00013;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;}
.m7_c00013{transform:matrix(0.204259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204259,0.000000,0.000000,0.250000,0,0);}
.m6_c00013{transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);}
.m3_c00013{transform:matrix(0.244342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244342,0.000000,0.000000,0.250000,0,0);}
.m4_c00013{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m5_c00013{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.m0_c00013{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);}
.m8_c00013{transform:matrix(0.250451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250451,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(0.252526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252526,0.000000,0.000000,0.250000,0,0);}
.m2_c00013{transform:matrix(0.256660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256660,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.lsb3_c00013{letter-spacing:-2.478000px;}
.lsc4_c00013{letter-spacing:-2.436000px;}
.lsa0_c00013{letter-spacing:-2.400120px;}
.ls93_c00013{letter-spacing:-2.394000px;}
.lscb_c00013{letter-spacing:-2.003640px;}
.ls7f_c00013{letter-spacing:-1.932840px;}
.lsc1_c00013{letter-spacing:-1.833720px;}
.lsc9_c00013{letter-spacing:-1.642200px;}
.ls89_c00013{letter-spacing:-1.477980px;}
.lsbc_c00013{letter-spacing:-1.419180px;}
.lsc5_c00013{letter-spacing:-1.378020px;}
.ls90_c00013{letter-spacing:-1.363740px;}
.ls9b_c00013{letter-spacing:-1.323960px;}
.lsa1_c00013{letter-spacing:-1.281480px;}
.lsbb_c00013{letter-spacing:-1.268760px;}
.ls94_c00013{letter-spacing:-1.249500px;}
.lsc3_c00013{letter-spacing:-1.231920px;}
.lsb4_c00013{letter-spacing:-1.139880px;}
.ls95_c00013{letter-spacing:-1.099560px;}
.ls84_c00013{letter-spacing:-1.049580px;}
.ls88_c00013{letter-spacing:-1.042440px;}
.lsb0_c00013{letter-spacing:-0.955800px;}
.ls8f_c00013{letter-spacing:-0.942480px;}
.lscd_c00013{letter-spacing:-0.934560px;}
.ls83_c00013{letter-spacing:-0.892500px;}
.ls99_c00013{letter-spacing:-0.706860px;}
.lsc7_c00013{letter-spacing:-0.637200px;}
.ls9f_c00013{letter-spacing:-0.615960px;}
.ls91_c00013{letter-spacing:-0.614040px;}
.lsc2_c00013{letter-spacing:-0.608880px;}
.lsa5_c00013{letter-spacing:-0.606900px;}
.ls9d_c00013{letter-spacing:-0.566400px;}
.lsbf_c00013{letter-spacing:-0.549780px;}
.lsd2_c00013{letter-spacing:-0.545160px;}
.ls96_c00013{letter-spacing:-0.535500px;}
.lsbd_c00013{letter-spacing:-0.497040px;}
.lsae_c00013{letter-spacing:-0.488520px;}
.lsc6_c00013{letter-spacing:-0.456960px;}
.lsa2_c00013{letter-spacing:-0.438960px;}
.lsb6_c00013{letter-spacing:-0.417720px;}
.lsab_c00013{letter-spacing:-0.414120px;}
.lsa4_c00013{letter-spacing:-0.392700px;}
.lsd1_c00013{letter-spacing:-0.389400px;}
.lsbe_c00013{letter-spacing:-0.378420px;}
.lsb7_c00013{letter-spacing:-0.371280px;}
.ls87_c00013{letter-spacing:-0.328440px;}
.lscc_c00013{letter-spacing:-0.318600px;}
.lsb1_c00013{letter-spacing:-0.304440px;}
.lsb5_c00013{letter-spacing:-0.285600px;}
.ls97_c00013{letter-spacing:-0.271320px;}
.lsba_c00013{letter-spacing:-0.255060px;}
.lsac_c00013{letter-spacing:-0.254880px;}
.ls98_c00013{letter-spacing:-0.235620px;}
.lsc8_c00013{letter-spacing:-0.233640px;}
.lsaa_c00013{letter-spacing:-0.214200px;}
.ls82_c00013{letter-spacing:-0.199920px;}
.ls9e_c00013{letter-spacing:-0.198240px;}
.ls81_c00013{letter-spacing:-0.191160px;}
.lsa3_c00013{letter-spacing:-0.162840px;}
.ls80_c00013{letter-spacing:-0.155760px;}
.ls8c_c00013{letter-spacing:-0.149940px;}
.lsad_c00013{letter-spacing:-0.127440px;}
.lsa8_c00013{letter-spacing:-0.113280px;}
.lsa7_c00013{letter-spacing:-0.092820px;}
.lsa9_c00013{letter-spacing:-0.078540px;}
.lscf_c00013{letter-spacing:-0.077880px;}
.ls8b_c00013{letter-spacing:-0.071400px;}
.ls7e_c00013{letter-spacing:-0.070800px;}
.ls8e_c00013{letter-spacing:-0.057120px;}
.ls9a_c00013{letter-spacing:-0.056640px;}
.lsa6_c00013{letter-spacing:-0.035700px;}
.ls9c_c00013{letter-spacing:-0.035400px;}
.ls92_c00013{letter-spacing:-0.028560px;}
.ls8d_c00013{letter-spacing:-0.007140px;}
.lsaf_c00013{letter-spacing:-0.007080px;}
.ls8a_c00013{letter-spacing:0.000000px;}
.ls4e_c00013{letter-spacing:0.021240px;}
.ls4_c00013{letter-spacing:0.028320px;}
.ls21_c00013{letter-spacing:0.056640px;}
.ls5a_c00013{letter-spacing:0.077880px;}
.ls24_c00013{letter-spacing:0.084960px;}
.ls62_c00013{letter-spacing:0.085680px;}
.ls15_c00013{letter-spacing:0.092820px;}
.ls60_c00013{letter-spacing:0.099120px;}
.ls28_c00013{letter-spacing:0.106200px;}
.ls2b_c00013{letter-spacing:0.113280px;}
.ls36_c00013{letter-spacing:0.120360px;}
.ls17_c00013{letter-spacing:0.128520px;}
.ls14_c00013{letter-spacing:0.135660px;}
.ls31_c00013{letter-spacing:0.141600px;}
.ls27_c00013{letter-spacing:0.148680px;}
.ls35_c00013{letter-spacing:0.155760px;}
.ls1b_c00013{letter-spacing:0.157080px;}
.ls63_c00013{letter-spacing:0.164220px;}
.ls73_c00013{letter-spacing:0.177000px;}
.ls61_c00013{letter-spacing:0.178500px;}
.ls69_c00013{letter-spacing:0.184080px;}
.ls25_c00013{letter-spacing:0.191160px;}
.ls19_c00013{letter-spacing:0.192780px;}
.ls1c_c00013{letter-spacing:0.207060px;}
.ls48_c00013{letter-spacing:0.226560px;}
.ls13_c00013{letter-spacing:0.228480px;}
.lsd3_c00013{letter-spacing:0.233640px;}
.ls4f_c00013{letter-spacing:0.240720px;}
.ls8_c00013{letter-spacing:0.247800px;}
.ls26_c00013{letter-spacing:0.254880px;}
.ls10_c00013{letter-spacing:0.257040px;}
.ls65_c00013{letter-spacing:0.261960px;}
.ls6c_c00013{letter-spacing:0.269040px;}
.ls5f_c00013{letter-spacing:0.276120px;}
.ls52_c00013{letter-spacing:0.282900px;}
.ls29_c00013{letter-spacing:0.283200px;}
.ls85_c00013{letter-spacing:0.292740px;}
.ls3a_c00013{letter-spacing:0.304440px;}
.ls3c_c00013{letter-spacing:0.311520px;}
.ls38_c00013{letter-spacing:0.318600px;}
.ls5d_c00013{letter-spacing:0.325680px;}
.ls47_c00013{letter-spacing:0.339840px;}
.ls1f_c00013{letter-spacing:0.357000px;}
.ls34_c00013{letter-spacing:0.361080px;}
.ls41_c00013{letter-spacing:0.368160px;}
.ls33_c00013{letter-spacing:0.375240px;}
.ls2e_c00013{letter-spacing:0.378420px;}
.ls9_c00013{letter-spacing:0.382320px;}
.ls2c_c00013{letter-spacing:0.389400px;}
.ls6d_c00013{letter-spacing:0.396480px;}
.ls3f_c00013{letter-spacing:0.403560px;}
.ls2f_c00013{letter-spacing:0.417720px;}
.ls11_c00013{letter-spacing:0.428400px;}
.ls43_c00013{letter-spacing:0.431880px;}
.ls5e_c00013{letter-spacing:0.446040px;}
.ls20_c00013{letter-spacing:0.449820px;}
.ls22_c00013{letter-spacing:0.453120px;}
.ls6f_c00013{letter-spacing:0.460200px;}
.ls2a_c00013{letter-spacing:0.467280px;}
.ls55_c00013{letter-spacing:0.470880px;}
.lsb9_c00013{letter-spacing:0.474360px;}
.ls7_c00013{letter-spacing:0.488520px;}
.lsce_c00013{letter-spacing:0.495600px;}
.ls3d_c00013{letter-spacing:0.502680px;}
.lsd6_c00013{letter-spacing:0.506880px;}
.ls45_c00013{letter-spacing:0.514080px;}
.lsc_c00013{letter-spacing:0.516840px;}
.lsb2_c00013{letter-spacing:0.523920px;}
.ls37_c00013{letter-spacing:0.538080px;}
.ls66_c00013{letter-spacing:0.552240px;}
.ls6a_c00013{letter-spacing:0.559320px;}
.ls2d_c00013{letter-spacing:0.564060px;}
.ls6e_c00013{letter-spacing:0.573480px;}
.ls12_c00013{letter-spacing:0.578340px;}
.ls75_c00013{letter-spacing:0.581760px;}
.ls59_c00013{letter-spacing:0.587640px;}
.ls46_c00013{letter-spacing:0.594720px;}
.ls42_c00013{letter-spacing:0.608880px;}
.ls4c_c00013{letter-spacing:0.644280px;}
.ls40_c00013{letter-spacing:0.658440px;}
.ls44_c00013{letter-spacing:0.664020px;}
.ls6_c00013{letter-spacing:0.665520px;}
.ls50_c00013{letter-spacing:0.686700px;}
.ls32_c00013{letter-spacing:0.693840px;}
.ls5c_c00013{letter-spacing:0.708000px;}
.ls54_c00013{letter-spacing:0.719400px;}
.ls3e_c00013{letter-spacing:0.729240px;}
.ls23_c00013{letter-spacing:0.764640px;}
.ls30_c00013{letter-spacing:0.778800px;}
.ls1a_c00013{letter-spacing:0.785400px;}
.ls64_c00013{letter-spacing:0.792540px;}
.ls71_c00013{letter-spacing:0.807120px;}
.lsd4_c00013{letter-spacing:0.812160px;}
.ls58_c00013{letter-spacing:0.814200px;}
.lsb_c00013{letter-spacing:0.821280px;}
.lsd_c00013{letter-spacing:0.828240px;}
.lsf_c00013{letter-spacing:0.849660px;}
.lsc0_c00013{letter-spacing:0.856680px;}
.ls5b_c00013{letter-spacing:0.877920px;}
.ls70_c00013{letter-spacing:0.892080px;}
.ls72_c00013{letter-spacing:0.906240px;}
.ls3b_c00013{letter-spacing:0.920400px;}
.ls16_c00013{letter-spacing:0.921060px;}
.ls4d_c00013{letter-spacing:0.927480px;}
.ls1d_c00013{letter-spacing:0.928200px;}
.ls78_c00013{letter-spacing:0.950400px;}
.ls4b_c00013{letter-spacing:0.955800px;}
.ls76_c00013{letter-spacing:0.979200px;}
.ls39_c00013{letter-spacing:1.012440px;}
.ls4a_c00013{letter-spacing:1.196520px;}
.ls68_c00013{letter-spacing:1.239000px;}
.ls53_c00013{letter-spacing:1.268760px;}
.ls5_c00013{letter-spacing:1.302720px;}
.lsca_c00013{letter-spacing:1.338120px;}
.lsb8_c00013{letter-spacing:1.373520px;}
.ls18_c00013{letter-spacing:1.392300px;}
.ls77_c00013{letter-spacing:1.393920px;}
.ls49_c00013{letter-spacing:1.401840px;}
.ls7a_c00013{letter-spacing:1.480320px;}
.ls74_c00013{letter-spacing:1.500960px;}
.ls67_c00013{letter-spacing:1.522200px;}
.ls79_c00013{letter-spacing:1.704960px;}
.lsd0_c00013{letter-spacing:1.770000px;}
.ls0_c00013{letter-spacing:1.937640px;}
.ls3_c00013{letter-spacing:2.034120px;}
.ls2_c00013{letter-spacing:2.058240px;}
.lsa_c00013{letter-spacing:2.088600px;}
.ls1e_c00013{letter-spacing:2.191980px;}
.ls56_c00013{letter-spacing:2.236680px;}
.ls7b_c00013{letter-spacing:2.275320px;}
.ls6b_c00013{letter-spacing:2.315160px;}
.ls51_c00013{letter-spacing:2.445960px;}
.ls7d_c00013{letter-spacing:2.637120px;}
.ls57_c00013{letter-spacing:2.810760px;}
.ls1_c00013{letter-spacing:2.830080px;}
.lse_c00013{letter-spacing:2.834580px;}
.lsd5_c00013{letter-spacing:2.880000px;}
.ls86_c00013{letter-spacing:3.570000px;}
.ls7c_c00013{letter-spacing:4.020000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{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__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00013{word-spacing:0.000000px;}
._0_c00013{margin-left:-3.288360px;}
._5_c00013{margin-left:-2.251440px;}
._6_c00013{width:1.571760px;}
._1_c00013{width:3.313440px;}
._2_c00013{width:4.704360px;}
._3_c00013{width:5.883480px;}
._e_c00013{width:7.477680px;}
._10_c00013{width:9.167760px;}
._4_c00013{width:11.129760px;}
._16_c00013{width:12.510000px;}
._1b_c00013{width:13.830000px;}
._11_c00013{width:15.208200px;}
._f_c00013{width:16.216440px;}
._1c_c00013{width:17.583960px;}
._13_c00013{width:19.049520px;}
._15_c00013{width:20.682360px;}
._12_c00013{width:21.706500px;}
._14_c00013{width:23.820660px;}
._a_c00013{width:24.881820px;}
._1a_c00013{width:26.363220px;}
._19_c00013{width:27.641220px;}
._c_c00013{width:29.802360px;}
._1d_c00013{width:30.988500px;}
._7_c00013{width:32.037720px;}
._17_c00013{width:34.008240px;}
._18_c00013{width:35.290800px;}
._9_c00013{width:36.329280px;}
._8_c00013{width:37.616400px;}
._b_c00013{width:41.554800px;}
._d_c00013{width:44.646420px;}
.fc0_c00013{color:transparent;}
.fs7_c00013{font-size:57.600000px;}
.fs4_c00013{font-size:65.400000px;}
.fs3_c00013{font-size:68.400000px;}
.fs5_c00013{font-size:69.000000px;}
.fs6_c00013{font-size:69.600000px;}
.fs1_c00013{font-size:70.800000px;}
.fs2_c00013{font-size:71.400000px;}
.fs0_c00013{font-size:80.400000px;}
.y0_c00013{bottom:0.000000px;}
.y22_c00013{bottom:131.040000px;}
.y21_c00013{bottom:219.983700px;}
.y20_c00013{bottom:251.295000px;}
.y1f_c00013{bottom:281.903100px;}
.y1e_c00013{bottom:312.842700px;}
.y1d_c00013{bottom:343.808400px;}
.y1b_c00013{bottom:405.011100px;}
.y1c_c00013{bottom:405.015000px;}
.y19_c00013{bottom:436.314000px;}
.y1a_c00013{bottom:436.320000px;}
.y18_c00013{bottom:466.935000px;}
.y17_c00013{bottom:466.943100px;}
.y16_c00013{bottom:497.895000px;}
.y15_c00013{bottom:528.855000px;}
.y14_c00013{bottom:559.455000px;}
.y13_c00013{bottom:590.775000px;}
.y12_c00013{bottom:651.975000px;}
.y11_c00013{bottom:682.937700px;}
.y10_c00013{bottom:713.895000px;}
.yf_c00013{bottom:713.897700px;}
.ye_c00013{bottom:744.855000px;}
.yd_c00013{bottom:775.815000px;}
.yc_c00013{bottom:806.396700px;}
.yb_c00013{bottom:837.017700px;}
.ya_c00013{bottom:867.982950px;}
.y9_c00013{bottom:898.560000px;}
.y8_c00013{bottom:898.570350px;}
.y7_c00013{bottom:929.540100px;}
.y6_c00013{bottom:960.135000px;}
.y5_c00013{bottom:960.142950px;}
.y4_c00013{bottom:990.720000px;}
.y3_c00013{bottom:1021.695000px;}
.y2_c00013{bottom:1074.600000px;}
.y1_c00013{bottom:1110.600000px;}
.hd_c00013{height:56.531250px;}
.h8_c00013{height:67.686035px;}
.h3_c00013{height:69.486328px;}
.hc_c00013{height:70.007932px;}
.h7_c00013{height:70.029532px;}
.h4_c00013{height:70.040332px;}
.h6_c00013{height:70.053532px;}
.h9_c00013{height:70.064332px;}
.h5_c00013{height:71.339063px;}
.hb_c00013{height:71.931244px;}
.ha_c00013{height:72.590625px;}
.h2_c00013{height:81.028125px;}
.h1_c00013{height:1263.000000px;}
.h0_c00013{height:1263.240000px;}
.w1_c00013{width:892.500000px;}
.w0_c00013{width:892.800000px;}
.x0_c00013{left:0.000000px;}
.x1_c00013{left:125.145000px;}
.x9_c00013{left:126.820800px;}
.x3_c00013{left:146.805000px;}
.x4_c00013{left:178.815000px;}
.xc_c00013{left:209.805000px;}
.x5_c00013{left:218.040000px;}
.x12_c00013{left:225.510000px;}
.xd_c00013{left:229.995000px;}
.x6_c00013{left:241.095000px;}
.x13_c00013{left:246.030000px;}
.xe_c00013{left:336.435000px;}
.xf_c00013{left:361.110000px;}
.x14_c00013{left:446.610000px;}
.x15_c00013{left:464.640000px;}
.x7_c00013{left:528.645000px;}
.x8_c00013{left:551.340000px;}
.x10_c00013{left:559.230000px;}
.x11_c00013{left:583.455000px;}
.x2_c00013{left:614.040000px;}
.xa_c00013{left:707.595000px;}
.xb_c00013{left:731.010000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.lsb3_c00013{letter-spacing:-2.202667pt;}
.lsc4_c00013{letter-spacing:-2.165333pt;}
.lsa0_c00013{letter-spacing:-2.133440pt;}
.ls93_c00013{letter-spacing:-2.128000pt;}
.lscb_c00013{letter-spacing:-1.781013pt;}
.ls7f_c00013{letter-spacing:-1.718080pt;}
.lsc1_c00013{letter-spacing:-1.629973pt;}
.lsc9_c00013{letter-spacing:-1.459733pt;}
.ls89_c00013{letter-spacing:-1.313760pt;}
.lsbc_c00013{letter-spacing:-1.261493pt;}
.lsc5_c00013{letter-spacing:-1.224907pt;}
.ls90_c00013{letter-spacing:-1.212213pt;}
.ls9b_c00013{letter-spacing:-1.176853pt;}
.lsa1_c00013{letter-spacing:-1.139093pt;}
.lsbb_c00013{letter-spacing:-1.127787pt;}
.ls94_c00013{letter-spacing:-1.110667pt;}
.lsc3_c00013{letter-spacing:-1.095040pt;}
.lsb4_c00013{letter-spacing:-1.013227pt;}
.ls95_c00013{letter-spacing:-0.977387pt;}
.ls84_c00013{letter-spacing:-0.932960pt;}
.ls88_c00013{letter-spacing:-0.926613pt;}
.lsb0_c00013{letter-spacing:-0.849600pt;}
.ls8f_c00013{letter-spacing:-0.837760pt;}
.lscd_c00013{letter-spacing:-0.830720pt;}
.ls83_c00013{letter-spacing:-0.793333pt;}
.ls99_c00013{letter-spacing:-0.628320pt;}
.lsc7_c00013{letter-spacing:-0.566400pt;}
.ls9f_c00013{letter-spacing:-0.547520pt;}
.ls91_c00013{letter-spacing:-0.545813pt;}
.lsc2_c00013{letter-spacing:-0.541227pt;}
.lsa5_c00013{letter-spacing:-0.539467pt;}
.ls9d_c00013{letter-spacing:-0.503467pt;}
.lsbf_c00013{letter-spacing:-0.488693pt;}
.lsd2_c00013{letter-spacing:-0.484587pt;}
.ls96_c00013{letter-spacing:-0.476000pt;}
.lsbd_c00013{letter-spacing:-0.441813pt;}
.lsae_c00013{letter-spacing:-0.434240pt;}
.lsc6_c00013{letter-spacing:-0.406187pt;}
.lsa2_c00013{letter-spacing:-0.390187pt;}
.lsb6_c00013{letter-spacing:-0.371307pt;}
.lsab_c00013{letter-spacing:-0.368107pt;}
.lsa4_c00013{letter-spacing:-0.349067pt;}
.lsd1_c00013{letter-spacing:-0.346133pt;}
.lsbe_c00013{letter-spacing:-0.336373pt;}
.lsb7_c00013{letter-spacing:-0.330027pt;}
.ls87_c00013{letter-spacing:-0.291947pt;}
.lscc_c00013{letter-spacing:-0.283200pt;}
.lsb1_c00013{letter-spacing:-0.270613pt;}
.lsb5_c00013{letter-spacing:-0.253867pt;}
.ls97_c00013{letter-spacing:-0.241173pt;}
.lsba_c00013{letter-spacing:-0.226720pt;}
.lsac_c00013{letter-spacing:-0.226560pt;}
.ls98_c00013{letter-spacing:-0.209440pt;}
.lsc8_c00013{letter-spacing:-0.207680pt;}
.lsaa_c00013{letter-spacing:-0.190400pt;}
.ls82_c00013{letter-spacing:-0.177707pt;}
.ls9e_c00013{letter-spacing:-0.176213pt;}
.ls81_c00013{letter-spacing:-0.169920pt;}
.lsa3_c00013{letter-spacing:-0.144747pt;}
.ls80_c00013{letter-spacing:-0.138453pt;}
.ls8c_c00013{letter-spacing:-0.133280pt;}
.lsad_c00013{letter-spacing:-0.113280pt;}
.lsa8_c00013{letter-spacing:-0.100693pt;}
.lsa7_c00013{letter-spacing:-0.082507pt;}
.lsa9_c00013{letter-spacing:-0.069813pt;}
.lscf_c00013{letter-spacing:-0.069227pt;}
.ls8b_c00013{letter-spacing:-0.063467pt;}
.ls7e_c00013{letter-spacing:-0.062933pt;}
.ls8e_c00013{letter-spacing:-0.050773pt;}
.ls9a_c00013{letter-spacing:-0.050347pt;}
.lsa6_c00013{letter-spacing:-0.031733pt;}
.ls9c_c00013{letter-spacing:-0.031467pt;}
.ls92_c00013{letter-spacing:-0.025387pt;}
.ls8d_c00013{letter-spacing:-0.006347pt;}
.lsaf_c00013{letter-spacing:-0.006293pt;}
.ls8a_c00013{letter-spacing:0.000000pt;}
.ls4e_c00013{letter-spacing:0.018880pt;}
.ls4_c00013{letter-spacing:0.025173pt;}
.ls21_c00013{letter-spacing:0.050347pt;}
.ls5a_c00013{letter-spacing:0.069227pt;}
.ls24_c00013{letter-spacing:0.075520pt;}
.ls62_c00013{letter-spacing:0.076160pt;}
.ls15_c00013{letter-spacing:0.082507pt;}
.ls60_c00013{letter-spacing:0.088107pt;}
.ls28_c00013{letter-spacing:0.094400pt;}
.ls2b_c00013{letter-spacing:0.100693pt;}
.ls36_c00013{letter-spacing:0.106987pt;}
.ls17_c00013{letter-spacing:0.114240pt;}
.ls14_c00013{letter-spacing:0.120587pt;}
.ls31_c00013{letter-spacing:0.125867pt;}
.ls27_c00013{letter-spacing:0.132160pt;}
.ls35_c00013{letter-spacing:0.138453pt;}
.ls1b_c00013{letter-spacing:0.139627pt;}
.ls63_c00013{letter-spacing:0.145973pt;}
.ls73_c00013{letter-spacing:0.157333pt;}
.ls61_c00013{letter-spacing:0.158667pt;}
.ls69_c00013{letter-spacing:0.163627pt;}
.ls25_c00013{letter-spacing:0.169920pt;}
.ls19_c00013{letter-spacing:0.171360pt;}
.ls1c_c00013{letter-spacing:0.184053pt;}
.ls48_c00013{letter-spacing:0.201387pt;}
.ls13_c00013{letter-spacing:0.203093pt;}
.lsd3_c00013{letter-spacing:0.207680pt;}
.ls4f_c00013{letter-spacing:0.213973pt;}
.ls8_c00013{letter-spacing:0.220267pt;}
.ls26_c00013{letter-spacing:0.226560pt;}
.ls10_c00013{letter-spacing:0.228480pt;}
.ls65_c00013{letter-spacing:0.232853pt;}
.ls6c_c00013{letter-spacing:0.239147pt;}
.ls5f_c00013{letter-spacing:0.245440pt;}
.ls52_c00013{letter-spacing:0.251467pt;}
.ls29_c00013{letter-spacing:0.251733pt;}
.ls85_c00013{letter-spacing:0.260213pt;}
.ls3a_c00013{letter-spacing:0.270613pt;}
.ls3c_c00013{letter-spacing:0.276907pt;}
.ls38_c00013{letter-spacing:0.283200pt;}
.ls5d_c00013{letter-spacing:0.289493pt;}
.ls47_c00013{letter-spacing:0.302080pt;}
.ls1f_c00013{letter-spacing:0.317333pt;}
.ls34_c00013{letter-spacing:0.320960pt;}
.ls41_c00013{letter-spacing:0.327253pt;}
.ls33_c00013{letter-spacing:0.333547pt;}
.ls2e_c00013{letter-spacing:0.336373pt;}
.ls9_c00013{letter-spacing:0.339840pt;}
.ls2c_c00013{letter-spacing:0.346133pt;}
.ls6d_c00013{letter-spacing:0.352427pt;}
.ls3f_c00013{letter-spacing:0.358720pt;}
.ls2f_c00013{letter-spacing:0.371307pt;}
.ls11_c00013{letter-spacing:0.380800pt;}
.ls43_c00013{letter-spacing:0.383893pt;}
.ls5e_c00013{letter-spacing:0.396480pt;}
.ls20_c00013{letter-spacing:0.399840pt;}
.ls22_c00013{letter-spacing:0.402773pt;}
.ls6f_c00013{letter-spacing:0.409067pt;}
.ls2a_c00013{letter-spacing:0.415360pt;}
.ls55_c00013{letter-spacing:0.418560pt;}
.lsb9_c00013{letter-spacing:0.421653pt;}
.ls7_c00013{letter-spacing:0.434240pt;}
.lsce_c00013{letter-spacing:0.440533pt;}
.ls3d_c00013{letter-spacing:0.446827pt;}
.lsd6_c00013{letter-spacing:0.450560pt;}
.ls45_c00013{letter-spacing:0.456960pt;}
.lsc_c00013{letter-spacing:0.459413pt;}
.lsb2_c00013{letter-spacing:0.465707pt;}
.ls37_c00013{letter-spacing:0.478293pt;}
.ls66_c00013{letter-spacing:0.490880pt;}
.ls6a_c00013{letter-spacing:0.497173pt;}
.ls2d_c00013{letter-spacing:0.501387pt;}
.ls6e_c00013{letter-spacing:0.509760pt;}
.ls12_c00013{letter-spacing:0.514080pt;}
.ls75_c00013{letter-spacing:0.517120pt;}
.ls59_c00013{letter-spacing:0.522347pt;}
.ls46_c00013{letter-spacing:0.528640pt;}
.ls42_c00013{letter-spacing:0.541227pt;}
.ls4c_c00013{letter-spacing:0.572693pt;}
.ls40_c00013{letter-spacing:0.585280pt;}
.ls44_c00013{letter-spacing:0.590240pt;}
.ls6_c00013{letter-spacing:0.591573pt;}
.ls50_c00013{letter-spacing:0.610400pt;}
.ls32_c00013{letter-spacing:0.616747pt;}
.ls5c_c00013{letter-spacing:0.629333pt;}
.ls54_c00013{letter-spacing:0.639467pt;}
.ls3e_c00013{letter-spacing:0.648213pt;}
.ls23_c00013{letter-spacing:0.679680pt;}
.ls30_c00013{letter-spacing:0.692267pt;}
.ls1a_c00013{letter-spacing:0.698133pt;}
.ls64_c00013{letter-spacing:0.704480pt;}
.ls71_c00013{letter-spacing:0.717440pt;}
.lsd4_c00013{letter-spacing:0.721920pt;}
.ls58_c00013{letter-spacing:0.723733pt;}
.lsb_c00013{letter-spacing:0.730027pt;}
.lsd_c00013{letter-spacing:0.736213pt;}
.lsf_c00013{letter-spacing:0.755253pt;}
.lsc0_c00013{letter-spacing:0.761493pt;}
.ls5b_c00013{letter-spacing:0.780373pt;}
.ls70_c00013{letter-spacing:0.792960pt;}
.ls72_c00013{letter-spacing:0.805547pt;}
.ls3b_c00013{letter-spacing:0.818133pt;}
.ls16_c00013{letter-spacing:0.818720pt;}
.ls4d_c00013{letter-spacing:0.824427pt;}
.ls1d_c00013{letter-spacing:0.825067pt;}
.ls78_c00013{letter-spacing:0.844800pt;}
.ls4b_c00013{letter-spacing:0.849600pt;}
.ls76_c00013{letter-spacing:0.870400pt;}
.ls39_c00013{letter-spacing:0.899947pt;}
.ls4a_c00013{letter-spacing:1.063573pt;}
.ls68_c00013{letter-spacing:1.101333pt;}
.ls53_c00013{letter-spacing:1.127787pt;}
.ls5_c00013{letter-spacing:1.157973pt;}
.lsca_c00013{letter-spacing:1.189440pt;}
.lsb8_c00013{letter-spacing:1.220907pt;}
.ls18_c00013{letter-spacing:1.237600pt;}
.ls77_c00013{letter-spacing:1.239040pt;}
.ls49_c00013{letter-spacing:1.246080pt;}
.ls7a_c00013{letter-spacing:1.315840pt;}
.ls74_c00013{letter-spacing:1.334187pt;}
.ls67_c00013{letter-spacing:1.353067pt;}
.ls79_c00013{letter-spacing:1.515520pt;}
.lsd0_c00013{letter-spacing:1.573333pt;}
.ls0_c00013{letter-spacing:1.722347pt;}
.ls3_c00013{letter-spacing:1.808107pt;}
.ls2_c00013{letter-spacing:1.829547pt;}
.lsa_c00013{letter-spacing:1.856533pt;}
.ls1e_c00013{letter-spacing:1.948427pt;}
.ls56_c00013{letter-spacing:1.988160pt;}
.ls7b_c00013{letter-spacing:2.022507pt;}
.ls6b_c00013{letter-spacing:2.057920pt;}
.ls51_c00013{letter-spacing:2.174187pt;}
.ls7d_c00013{letter-spacing:2.344107pt;}
.ls57_c00013{letter-spacing:2.498453pt;}
.ls1_c00013{letter-spacing:2.515627pt;}
.lse_c00013{letter-spacing:2.519627pt;}
.lsd5_c00013{letter-spacing:2.560000pt;}
.ls86_c00013{letter-spacing:3.173333pt;}
.ls7c_c00013{letter-spacing:3.573333pt;}
.ws0_c00013{word-spacing:0.000000pt;}
._0_c00013{margin-left:-2.922987pt;}
._5_c00013{margin-left:-2.001280pt;}
._6_c00013{width:1.397120pt;}
._1_c00013{width:2.945280pt;}
._2_c00013{width:4.181653pt;}
._3_c00013{width:5.229760pt;}
._e_c00013{width:6.646827pt;}
._10_c00013{width:8.149120pt;}
._4_c00013{width:9.893120pt;}
._16_c00013{width:11.120000pt;}
._1b_c00013{width:12.293333pt;}
._11_c00013{width:13.518400pt;}
._f_c00013{width:14.414613pt;}
._1c_c00013{width:15.630187pt;}
._13_c00013{width:16.932907pt;}
._15_c00013{width:18.384320pt;}
._12_c00013{width:19.294667pt;}
._14_c00013{width:21.173920pt;}
._a_c00013{width:22.117173pt;}
._1a_c00013{width:23.433973pt;}
._19_c00013{width:24.569973pt;}
._c_c00013{width:26.490987pt;}
._1d_c00013{width:27.545333pt;}
._7_c00013{width:28.477973pt;}
._17_c00013{width:30.229547pt;}
._18_c00013{width:31.369600pt;}
._9_c00013{width:32.292693pt;}
._8_c00013{width:33.436800pt;}
._b_c00013{width:36.937600pt;}
._d_c00013{width:39.685707pt;}
.fs7_c00013{font-size:51.200000pt;}
.fs4_c00013{font-size:58.133333pt;}
.fs3_c00013{font-size:60.800000pt;}
.fs5_c00013{font-size:61.333333pt;}
.fs6_c00013{font-size:61.866667pt;}
.fs1_c00013{font-size:62.933333pt;}
.fs2_c00013{font-size:63.466667pt;}
.fs0_c00013{font-size:71.466667pt;}
.y0_c00013{bottom:0.000000pt;}
.y22_c00013{bottom:116.480000pt;}
.y21_c00013{bottom:195.541067pt;}
.y20_c00013{bottom:223.373333pt;}
.y1f_c00013{bottom:250.580533pt;}
.y1e_c00013{bottom:278.082400pt;}
.y1d_c00013{bottom:305.607467pt;}
.y1b_c00013{bottom:360.009867pt;}
.y1c_c00013{bottom:360.013333pt;}
.y19_c00013{bottom:387.834667pt;}
.y1a_c00013{bottom:387.840000pt;}
.y18_c00013{bottom:415.053333pt;}
.y17_c00013{bottom:415.060533pt;}
.y16_c00013{bottom:442.573333pt;}
.y15_c00013{bottom:470.093333pt;}
.y14_c00013{bottom:497.293333pt;}
.y13_c00013{bottom:525.133333pt;}
.y12_c00013{bottom:579.533333pt;}
.y11_c00013{bottom:607.055733pt;}
.y10_c00013{bottom:634.573333pt;}
.yf_c00013{bottom:634.575733pt;}
.ye_c00013{bottom:662.093333pt;}
.yd_c00013{bottom:689.613333pt;}
.yc_c00013{bottom:716.797067pt;}
.yb_c00013{bottom:744.015733pt;}
.ya_c00013{bottom:771.540400pt;}
.y9_c00013{bottom:798.720000pt;}
.y8_c00013{bottom:798.729200pt;}
.y7_c00013{bottom:826.257867pt;}
.y6_c00013{bottom:853.453333pt;}
.y5_c00013{bottom:853.460400pt;}
.y4_c00013{bottom:880.640000pt;}
.y3_c00013{bottom:908.173333pt;}
.y2_c00013{bottom:955.200000pt;}
.y1_c00013{bottom:987.200000pt;}
.hd_c00013{height:50.250000pt;}
.h8_c00013{height:60.165365pt;}
.h3_c00013{height:61.765625pt;}
.hc_c00013{height:62.229273pt;}
.h7_c00013{height:62.248473pt;}
.h4_c00013{height:62.258073pt;}
.h6_c00013{height:62.269806pt;}
.h9_c00013{height:62.279406pt;}
.h5_c00013{height:63.412500pt;}
.hb_c00013{height:63.938883pt;}
.ha_c00013{height:64.525000pt;}
.h2_c00013{height:72.025000pt;}
.h1_c00013{height:1122.666667pt;}
.h0_c00013{height:1122.880000pt;}
.w1_c00013{width:793.333333pt;}
.w0_c00013{width:793.600000pt;}
.x0_c00013{left:0.000000pt;}
.x1_c00013{left:111.240000pt;}
.x9_c00013{left:112.729600pt;}
.x3_c00013{left:130.493333pt;}
.x4_c00013{left:158.946667pt;}
.xc_c00013{left:186.493333pt;}
.x5_c00013{left:193.813333pt;}
.x12_c00013{left:200.453333pt;}
.xd_c00013{left:204.440000pt;}
.x6_c00013{left:214.306667pt;}
.x13_c00013{left:218.693333pt;}
.xe_c00013{left:299.053333pt;}
.xf_c00013{left:320.986667pt;}
.x14_c00013{left:396.986667pt;}
.x15_c00013{left:413.013333pt;}
.x7_c00013{left:469.906667pt;}
.x8_c00013{left:490.080000pt;}
.x10_c00013{left:497.093333pt;}
.x11_c00013{left:518.626667pt;}
.x2_c00013{left:545.813333pt;}
.xa_c00013{left:628.973333pt;}
.xb_c00013{left:649.786667pt;}
}





/* 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_c00014 {
    display:none;
  }
  .loading-indicator_c00014.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00014 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_c00014 { 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_c00014" -> "#page-container .classname_c00014")
 */
.pf_c00014 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00014 { /* 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_c00014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00014 { /* 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_c00014 { /* 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_c00014 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00014 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00014 {overflow:visible;}
  }
}
.c_c00014 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00014 { /* 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_c00014:after { /* webkit #35443 */
  content: '';
}
.t_c00014:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00014 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 */
}
.__c00014 { /* 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_c00014 { /* info for Javascript */
  display:none;
}
.l_c00014 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00014 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00014 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00014: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_c00014 {
    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_c00014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00014.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_c00014 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00014;src:url('chunks/assets/font_fe6bd22e5207c1b2e9d7565f.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.284668;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_c00014;src:url('chunks/assets/font_0f236efc1ab73b2546220d45.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.284180;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_c00014;src:url('chunks/assets/font_46e07a43264f13a9fabaaf55.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:0.666000;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_c00014;src:url('chunks/assets/font_64cab2f16e477c5370cd1cdc.woff2')format("woff");}.ff4_c00014{font-family:ff4_c00014;line-height:1.311035;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_c00014;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff5_c00014{font-family:ff5_c00014;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;}
.m5_c00014{transform:matrix(0.103606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103606,0.000000,0.000000,0.250000,0,0);}
.m7_c00014{transform:matrix(0.134738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134738,0.000000,0.000000,0.250000,0,0);}
.m8_c00014{transform:matrix(0.136261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136261,0.000000,0.000000,0.250000,0,0);}
.mf_c00014{transform:matrix(0.212226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212226,0.000000,0.000000,0.250000,0,0);}
.mc_c00014{transform:matrix(0.222752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222752,0.000000,0.000000,0.250000,0,0);}
.m0_c00014{transform:matrix(0.227934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227934,0.000000,0.000000,0.250000,0,0);}
.m3_c00014{transform:matrix(0.229627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229627,0.000000,0.000000,0.250000,0,0);}
.ma_c00014{transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);}
.m2_c00014{transform:matrix(0.235186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235186,0.000000,0.000000,0.250000,0,0);}
.mb_c00014{transform:matrix(0.238808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238808,0.000000,0.000000,0.250000,0,0);}
.md_c00014{transform:matrix(0.242008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242008,0.000000,0.000000,0.250000,0,0);}
.m9_c00014{transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);}
.me_c00014{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m4_c00014{transform:matrix(0.246882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246882,0.000000,0.000000,0.250000,0,0);}
.m6_c00014{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{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);}
.v0_c00014{vertical-align:0.000000px;}
.lsab_c00014{letter-spacing:-2.583000px;}
.ls37_c00014{letter-spacing:-2.562000px;}
.ls48_c00014{letter-spacing:-2.541000px;}
.lsaa_c00014{letter-spacing:-2.415000px;}
.ls79_c00014{letter-spacing:-2.410320px;}
.ls3c_c00014{letter-spacing:-2.374020px;}
.lsa3_c00014{letter-spacing:-2.331000px;}
.ls4b_c00014{letter-spacing:-2.265120px;}
.ls8d_c00014{letter-spacing:-2.228820px;}
.ls39_c00014{letter-spacing:-2.207040px;}
.ls5d_c00014{letter-spacing:-1.960200px;}
.ls3e_c00014{letter-spacing:-1.880340px;}
.ls7c_c00014{letter-spacing:-1.851300px;}
.ls93_c00014{letter-spacing:-1.822260px;}
.lsa9_c00014{letter-spacing:-1.632360px;}
.ls4a_c00014{letter-spacing:-1.611720px;}
.ls7f_c00014{letter-spacing:-1.589940px;}
.ls46_c00014{letter-spacing:-1.568160px;}
.ls69_c00014{letter-spacing:-1.452000px;}
.ls3a_c00014{letter-spacing:-1.386660px;}
.lsac_c00014{letter-spacing:-1.357620px;}
.ls77_c00014{letter-spacing:-1.317600px;}
.ls52_c00014{letter-spacing:-1.234200px;}
.ls8a_c00014{letter-spacing:-1.168860px;}
.ls67_c00014{letter-spacing:-1.127280px;}
.ls63_c00014{letter-spacing:-1.090680px;}
.ls84_c00014{letter-spacing:-1.074480px;}
.ls65_c00014{letter-spacing:-1.068720px;}
.ls80_c00014{letter-spacing:-1.009140px;}
.ls86_c00014{letter-spacing:-0.994620px;}
.lsa0_c00014{letter-spacing:-0.979020px;}
.ls49_c00014{letter-spacing:-0.973560px;}
.ls5a_c00014{letter-spacing:-0.972840px;}
.ls82_c00014{letter-spacing:-0.922020px;}
.ls4d_c00014{letter-spacing:-0.892980px;}
.ls55_c00014{letter-spacing:-0.827640px;}
.ls98_c00014{letter-spacing:-0.820380px;}
.ls45_c00014{letter-spacing:-0.791340px;}
.ls74_c00014{letter-spacing:-0.762300px;}
.ls9f_c00014{letter-spacing:-0.755040px;}
.lsa7_c00014{letter-spacing:-0.739320px;}
.ls96_c00014{letter-spacing:-0.733260px;}
.ls6e_c00014{letter-spacing:-0.726000px;}
.ls87_c00014{letter-spacing:-0.646140px;}
.ls66_c00014{letter-spacing:-0.644160px;}
.ls7b_c00014{letter-spacing:-0.631620px;}
.ls94_c00014{letter-spacing:-0.617100px;}
.ls78_c00014{letter-spacing:-0.607560px;}
.ls51_c00014{letter-spacing:-0.602580px;}
.ls60_c00014{letter-spacing:-0.592920px;}
.lsa6_c00014{letter-spacing:-0.588060px;}
.ls6f_c00014{letter-spacing:-0.559020px;}
.ls85_c00014{letter-spacing:-0.556320px;}
.ls58_c00014{letter-spacing:-0.529980px;}
.lsa8_c00014{letter-spacing:-0.522720px;}
.ls62_c00014{letter-spacing:-0.519720px;}
.ls8b_c00014{letter-spacing:-0.508200px;}
.ls5c_c00014{letter-spacing:-0.500940px;}
.ls42_c00014{letter-spacing:-0.493680px;}
.lsa4_c00014{letter-spacing:-0.492840px;}
.ls40_c00014{letter-spacing:-0.483120px;}
.ls4c_c00014{letter-spacing:-0.471900px;}
.ls38_c00014{letter-spacing:-0.450120px;}
.ls41_c00014{letter-spacing:-0.435600px;}
.ls7d_c00014{letter-spacing:-0.417240px;}
.ls8c_c00014{letter-spacing:-0.409920px;}
.ls75_c00014{letter-spacing:-0.399300px;}
.ls89_c00014{letter-spacing:-0.392040px;}
.ls5b_c00014{letter-spacing:-0.384780px;}
.ls97_c00014{letter-spacing:-0.370260px;}
.ls61_c00014{letter-spacing:-0.366000px;}
.ls99_c00014{letter-spacing:-0.363000px;}
.ls6d_c00014{letter-spacing:-0.348480px;}
.ls57_c00014{letter-spacing:-0.333960px;}
.ls53_c00014{letter-spacing:-0.326700px;}
.ls6b_c00014{letter-spacing:-0.319440px;}
.ls72_c00014{letter-spacing:-0.312180px;}
.ls5f_c00014{letter-spacing:-0.307440px;}
.ls76_c00014{letter-spacing:-0.304920px;}
.ls7e_c00014{letter-spacing:-0.300120px;}
.ls3b_c00014{letter-spacing:-0.297660px;}
.ls44_c00014{letter-spacing:-0.283140px;}
.ls90_c00014{letter-spacing:-0.275880px;}
.ls47_c00014{letter-spacing:-0.254100px;}
.ls68_c00014{letter-spacing:-0.246840px;}
.ls71_c00014{letter-spacing:-0.239580px;}
.ls6a_c00014{letter-spacing:-0.225060px;}
.ls3d_c00014{letter-spacing:-0.217800px;}
.ls54_c00014{letter-spacing:-0.210540px;}
.ls91_c00014{letter-spacing:-0.188760px;}
.ls88_c00014{letter-spacing:-0.181500px;}
.ls70_c00014{letter-spacing:-0.174240px;}
.ls5e_c00014{letter-spacing:-0.166980px;}
.ls9a_c00014{letter-spacing:-0.159720px;}
.ls43_c00014{letter-spacing:-0.152460px;}
.ls4f_c00014{letter-spacing:-0.145200px;}
.ls73_c00014{letter-spacing:-0.130680px;}
.ls9d_c00014{letter-spacing:-0.123420px;}
.ls64_c00014{letter-spacing:-0.109800px;}
.ls7a_c00014{letter-spacing:-0.108900px;}
.ls3f_c00014{letter-spacing:-0.101640px;}
.ls50_c00014{letter-spacing:-0.094380px;}
.lsa1_c00014{letter-spacing:-0.079920px;}
.ls8e_c00014{letter-spacing:-0.079860px;}
.ls59_c00014{letter-spacing:-0.065340px;}
.ls81_c00014{letter-spacing:-0.058080px;}
.ls9e_c00014{letter-spacing:-0.050820px;}
.ls83_c00014{letter-spacing:-0.043560px;}
.ls8f_c00014{letter-spacing:-0.036300px;}
.ls4e_c00014{letter-spacing:-0.029040px;}
.ls6c_c00014{letter-spacing:-0.014520px;}
.ls9b_c00014{letter-spacing:-0.007260px;}
.ls56_c00014{letter-spacing:0.000000px;}
.ls30_c00014{letter-spacing:0.007260px;}
.ls17_c00014{letter-spacing:0.007320px;}
.ls11_c00014{letter-spacing:0.014520px;}
.ls25_c00014{letter-spacing:0.021780px;}
.lsc_c00014{letter-spacing:0.029040px;}
.ls5_c00014{letter-spacing:0.036300px;}
.ls18_c00014{letter-spacing:0.036600px;}
.lsb_c00014{letter-spacing:0.043560px;}
.ls14_c00014{letter-spacing:0.050820px;}
.ls33_c00014{letter-spacing:0.058080px;}
.ls12_c00014{letter-spacing:0.065340px;}
.ls92_c00014{letter-spacing:0.072600px;}
.ls1_c00014{letter-spacing:0.079860px;}
.ls1a_c00014{letter-spacing:0.087120px;}
.ls26_c00014{letter-spacing:0.094380px;}
.lsa_c00014{letter-spacing:0.101640px;}
.lsd_c00014{letter-spacing:0.108900px;}
.ls95_c00014{letter-spacing:0.123420px;}
.ls34_c00014{letter-spacing:0.130680px;}
.ls32_c00014{letter-spacing:0.137940px;}
.ls16_c00014{letter-spacing:0.139080px;}
.ls27_c00014{letter-spacing:0.145200px;}
.ls9c_c00014{letter-spacing:0.152460px;}
.ls13_c00014{letter-spacing:0.166980px;}
.ls1f_c00014{letter-spacing:0.174240px;}
.ls1d_c00014{letter-spacing:0.181500px;}
.ls6_c00014{letter-spacing:0.188760px;}
.lsf_c00014{letter-spacing:0.203280px;}
.ls2_c00014{letter-spacing:0.210540px;}
.ls19_c00014{letter-spacing:0.232320px;}
.ls7_c00014{letter-spacing:0.239580px;}
.ls4_c00014{letter-spacing:0.268620px;}
.ls8_c00014{letter-spacing:0.297660px;}
.ls21_c00014{letter-spacing:0.304920px;}
.ls10_c00014{letter-spacing:0.341220px;}
.ls35_c00014{letter-spacing:0.355740px;}
.ls9_c00014{letter-spacing:0.373320px;}
.ls23_c00014{letter-spacing:0.377520px;}
.ls24_c00014{letter-spacing:0.384780px;}
.ls1b_c00014{letter-spacing:0.421080px;}
.ls29_c00014{letter-spacing:0.432900px;}
.ls3_c00014{letter-spacing:0.442860px;}
.ls22_c00014{letter-spacing:0.617100px;}
.ls2b_c00014{letter-spacing:0.632700px;}
.ls15_c00014{letter-spacing:0.653400px;}
.ls1c_c00014{letter-spacing:0.675180px;}
.lsa5_c00014{letter-spacing:0.719280px;}
.ls20_c00014{letter-spacing:0.726000px;}
.ls1e_c00014{letter-spacing:0.856680px;}
.ls0_c00014{letter-spacing:0.900240px;}
.ls2a_c00014{letter-spacing:0.945720px;}
.ls28_c00014{letter-spacing:0.958320px;}
.ls31_c00014{letter-spacing:0.965580px;}
.ls2f_c00014{letter-spacing:0.979020px;}
.ls36_c00014{letter-spacing:1.001880px;}
.ls2e_c00014{letter-spacing:1.058940px;}
.lsa2_c00014{letter-spacing:1.258740px;}
.ls2d_c00014{letter-spacing:1.345320px;}
.lse_c00014{letter-spacing:1.618980px;}
.ls2c_c00014{letter-spacing:1.778220px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{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__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00014{word-spacing:0.000000px;}
.ws0_c00014{word-spacing:9.247800px;}
._15_c00014{margin-left:-2.773320px;}
._1b_c00014{width:1.098900px;}
._14_c00014{width:2.468400px;}
._a_c00014{width:4.022040px;}
._6_c00014{width:5.735400px;}
._7_c00014{width:6.969600px;}
._1c_c00014{width:7.981560px;}
._8_c00014{width:9.336360px;}
._9_c00014{width:11.057280px;}
._b_c00014{width:12.145680px;}
._c_c00014{width:13.510560px;}
._16_c00014{width:14.553720px;}
._11_c00014{width:16.294620px;}
._13_c00014{width:19.663500px;}
._12_c00014{width:21.140160px;}
._5_c00014{width:22.428180px;}
._4_c00014{width:24.393600px;}
._0_c00014{width:26.179560px;}
._2_c00014{width:27.348420px;}
._1_c00014{width:28.618920px;}
._f_c00014{width:30.055920px;}
._3_c00014{width:31.203480px;}
._e_c00014{width:33.953400px;}
._10_c00014{width:35.171640px;}
._d_c00014{width:37.969800px;}
._18_c00014{width:69.993840px;}
._19_c00014{width:76.570320px;}
._1a_c00014{width:79.871760px;}
._17_c00014{width:85.478040px;}
.fc0_c00014{color:transparent;}
.fs2_c00014{font-size:53.280000px;}
.fs6_c00014{font-size:58.800000px;}
.fs3_c00014{font-size:66.600000px;}
.fs4_c00014{font-size:69.000000px;}
.fs1_c00014{font-size:72.600000px;}
.fs0_c00014{font-size:73.200000px;}
.fs5_c00014{font-size:73.800000px;}
.y0_c00014{bottom:0.000000px;}
.y2c_c00014{bottom:55.440006px;}
.y2a_c00014{bottom:118.076106px;}
.y2b_c00014{bottom:118.080006px;}
.y29_c00014{bottom:149.040006px;}
.y28_c00014{bottom:210.615006px;}
.y27_c00014{bottom:241.575006px;}
.y26_c00014{bottom:272.535006px;}
.y24_c00014{bottom:303.491256px;}
.y25_c00014{bottom:303.495006px;}
.y22_c00014{bottom:334.792056px;}
.y23_c00014{bottom:334.800006px;}
.y21_c00014{bottom:365.774106px;}
.y1f_c00014{bottom:396.370356px;}
.y20_c00014{bottom:396.375006px;}
.y1e_c00014{bottom:427.697256px;}
.y1d_c00014{bottom:458.272956px;}
.y1c_c00014{bottom:489.255006px;}
.y1b_c00014{bottom:489.257556px;}
.y1a_c00014{bottom:519.858456px;}
.y19_c00014{bottom:582.131106px;}
.y18_c00014{bottom:613.095006px;}
.y16_c00014{bottom:644.051106px;}
.y17_c00014{bottom:644.055006px;}
.y15_c00014{bottom:675.011106px;}
.y14_c00014{bottom:705.977256px;}
.y13_c00014{bottom:736.555956px;}
.y11_c00014{bottom:767.171406px;}
.y12_c00014{bottom:767.175006px;}
.yf_c00014{bottom:798.128106px;}
.y10_c00014{bottom:798.135006px;}
.yd_c00014{bottom:829.454106px;}
.ye_c00014{bottom:829.455006px;}
.yb_c00014{bottom:860.054256px;}
.yc_c00014{bottom:860.055006px;}
.ya_c00014{bottom:890.993106px;}
.y9_c00014{bottom:921.974106px;}
.y7_c00014{bottom:952.570356px;}
.y8_c00014{bottom:952.575006px;}
.y6_c00014{bottom:983.516106px;}
.y5_c00014{bottom:1014.480006px;}
.y3_c00014{bottom:1045.451106px;}
.y4_c00014{bottom:1045.455006px;}
.y2_c00014{bottom:1076.415006px;}
.y1_c00014{bottom:1184.415006px;}
.h5_c00014{height:35.484480px;}
.hd_c00014{height:57.708984px;}
.ha_c00014{height:67.120312px;}
.h4_c00014{height:71.252930px;}
.h9_c00014{height:71.281130px;}
.h3_c00014{height:71.806055px;}
.h6_c00014{height:71.809655px;}
.h8_c00014{height:71.821655px;}
.h7_c00014{height:71.822255px;}
.h2_c00014{height:71.841797px;}
.hb_c00014{height:71.964844px;}
.hc_c00014{height:72.430664px;}
.h1_c00014{height:1263.000000px;}
.h0_c00014{height:1263.240006px;}
.w1_c00014{width:892.500000px;}
.w0_c00014{width:892.799998px;}
.x0_c00014{left:0.000000px;}
.x1d_c00014{left:113.973898px;}
.x13_c00014{left:115.059748px;}
.xa_c00014{left:116.101198px;}
.x3_c00014{left:117.165898px;}
.x1_c00014{left:119.129999px;}
.x7_c00014{left:146.369998px;}
.x24_c00014{left:165.044998px;}
.x17_c00014{left:168.069599px;}
.x2_c00014{left:171.254998px;}
.xb_c00014{left:174.434999px;}
.xc_c00014{left:197.669998px;}
.x28_c00014{left:199.964999px;}
.x29_c00014{left:228.884998px;}
.xf_c00014{left:262.994999px;}
.x10_c00014{left:284.939999px;}
.x18_c00014{left:311.354999px;}
.x1e_c00014{left:395.474999px;}
.x2a_c00014{left:403.304999px;}
.x2c_c00014{left:413.114999px;}
.x1f_c00014{left:418.229999px;}
.x32_c00014{left:426.059999px;}
.x2d_c00014{left:434.489999px;}
.x2b_c00014{left:439.184999px;}
.x19_c00014{left:446.234998px;}
.x1a_c00014{left:472.499998px;}
.x11_c00014{left:485.114999px;}
.x12_c00014{left:510.479999px;}
.x2e_c00014{left:533.684999px;}
.xd_c00014{left:542.519998px;}
.x2f_c00014{left:561.779999px;}
.x30_c00014{left:580.154998px;}
.x15_c00014{left:584.654998px;}
.x20_c00014{left:586.814999px;}
.x4_c00014{left:593.114998px;}
.x27_c00014{left:597.149999px;}
.x31_c00014{left:602.564999px;}
.x8_c00014{left:609.854998px;}
.x21_c00014{left:631.649999px;}
.x9_c00014{left:633.614998px;}
.x5_c00014{left:637.694999px;}
.x16_c00014{left:640.259999px;}
.x6_c00014{left:659.729999px;}
.xe_c00014{left:670.949998px;}
.x22_c00014{left:676.289999px;}
.x25_c00014{left:685.274999px;}
.x23_c00014{left:696.779999px;}
.x1b_c00014{left:705.704998px;}
.x26_c00014{left:711.884999px;}
.x1c_c00014{left:729.314999px;}
.x14_c00014{left:730.634999px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.lsab_c00014{letter-spacing:-2.296000pt;}
.ls37_c00014{letter-spacing:-2.277333pt;}
.ls48_c00014{letter-spacing:-2.258667pt;}
.lsaa_c00014{letter-spacing:-2.146667pt;}
.ls79_c00014{letter-spacing:-2.142507pt;}
.ls3c_c00014{letter-spacing:-2.110240pt;}
.lsa3_c00014{letter-spacing:-2.072000pt;}
.ls4b_c00014{letter-spacing:-2.013440pt;}
.ls8d_c00014{letter-spacing:-1.981173pt;}
.ls39_c00014{letter-spacing:-1.961813pt;}
.ls5d_c00014{letter-spacing:-1.742400pt;}
.ls3e_c00014{letter-spacing:-1.671413pt;}
.ls7c_c00014{letter-spacing:-1.645600pt;}
.ls93_c00014{letter-spacing:-1.619787pt;}
.lsa9_c00014{letter-spacing:-1.450987pt;}
.ls4a_c00014{letter-spacing:-1.432640pt;}
.ls7f_c00014{letter-spacing:-1.413280pt;}
.ls46_c00014{letter-spacing:-1.393920pt;}
.ls69_c00014{letter-spacing:-1.290667pt;}
.ls3a_c00014{letter-spacing:-1.232587pt;}
.lsac_c00014{letter-spacing:-1.206773pt;}
.ls77_c00014{letter-spacing:-1.171200pt;}
.ls52_c00014{letter-spacing:-1.097067pt;}
.ls8a_c00014{letter-spacing:-1.038987pt;}
.ls67_c00014{letter-spacing:-1.002027pt;}
.ls63_c00014{letter-spacing:-0.969493pt;}
.ls84_c00014{letter-spacing:-0.955093pt;}
.ls65_c00014{letter-spacing:-0.949973pt;}
.ls80_c00014{letter-spacing:-0.897013pt;}
.ls86_c00014{letter-spacing:-0.884107pt;}
.lsa0_c00014{letter-spacing:-0.870240pt;}
.ls49_c00014{letter-spacing:-0.865387pt;}
.ls5a_c00014{letter-spacing:-0.864747pt;}
.ls82_c00014{letter-spacing:-0.819573pt;}
.ls4d_c00014{letter-spacing:-0.793760pt;}
.ls55_c00014{letter-spacing:-0.735680pt;}
.ls98_c00014{letter-spacing:-0.729227pt;}
.ls45_c00014{letter-spacing:-0.703413pt;}
.ls74_c00014{letter-spacing:-0.677600pt;}
.ls9f_c00014{letter-spacing:-0.671147pt;}
.lsa7_c00014{letter-spacing:-0.657173pt;}
.ls96_c00014{letter-spacing:-0.651787pt;}
.ls6e_c00014{letter-spacing:-0.645333pt;}
.ls87_c00014{letter-spacing:-0.574347pt;}
.ls66_c00014{letter-spacing:-0.572587pt;}
.ls7b_c00014{letter-spacing:-0.561440pt;}
.ls94_c00014{letter-spacing:-0.548533pt;}
.ls78_c00014{letter-spacing:-0.540053pt;}
.ls51_c00014{letter-spacing:-0.535627pt;}
.ls60_c00014{letter-spacing:-0.527040pt;}
.lsa6_c00014{letter-spacing:-0.522720pt;}
.ls6f_c00014{letter-spacing:-0.496907pt;}
.ls85_c00014{letter-spacing:-0.494507pt;}
.ls58_c00014{letter-spacing:-0.471093pt;}
.lsa8_c00014{letter-spacing:-0.464640pt;}
.ls62_c00014{letter-spacing:-0.461973pt;}
.ls8b_c00014{letter-spacing:-0.451733pt;}
.ls5c_c00014{letter-spacing:-0.445280pt;}
.ls42_c00014{letter-spacing:-0.438827pt;}
.lsa4_c00014{letter-spacing:-0.438080pt;}
.ls40_c00014{letter-spacing:-0.429440pt;}
.ls4c_c00014{letter-spacing:-0.419467pt;}
.ls38_c00014{letter-spacing:-0.400107pt;}
.ls41_c00014{letter-spacing:-0.387200pt;}
.ls7d_c00014{letter-spacing:-0.370880pt;}
.ls8c_c00014{letter-spacing:-0.364373pt;}
.ls75_c00014{letter-spacing:-0.354933pt;}
.ls89_c00014{letter-spacing:-0.348480pt;}
.ls5b_c00014{letter-spacing:-0.342027pt;}
.ls97_c00014{letter-spacing:-0.329120pt;}
.ls61_c00014{letter-spacing:-0.325333pt;}
.ls99_c00014{letter-spacing:-0.322667pt;}
.ls6d_c00014{letter-spacing:-0.309760pt;}
.ls57_c00014{letter-spacing:-0.296853pt;}
.ls53_c00014{letter-spacing:-0.290400pt;}
.ls6b_c00014{letter-spacing:-0.283947pt;}
.ls72_c00014{letter-spacing:-0.277493pt;}
.ls5f_c00014{letter-spacing:-0.273280pt;}
.ls76_c00014{letter-spacing:-0.271040pt;}
.ls7e_c00014{letter-spacing:-0.266773pt;}
.ls3b_c00014{letter-spacing:-0.264587pt;}
.ls44_c00014{letter-spacing:-0.251680pt;}
.ls90_c00014{letter-spacing:-0.245227pt;}
.ls47_c00014{letter-spacing:-0.225867pt;}
.ls68_c00014{letter-spacing:-0.219413pt;}
.ls71_c00014{letter-spacing:-0.212960pt;}
.ls6a_c00014{letter-spacing:-0.200053pt;}
.ls3d_c00014{letter-spacing:-0.193600pt;}
.ls54_c00014{letter-spacing:-0.187147pt;}
.ls91_c00014{letter-spacing:-0.167787pt;}
.ls88_c00014{letter-spacing:-0.161333pt;}
.ls70_c00014{letter-spacing:-0.154880pt;}
.ls5e_c00014{letter-spacing:-0.148427pt;}
.ls9a_c00014{letter-spacing:-0.141973pt;}
.ls43_c00014{letter-spacing:-0.135520pt;}
.ls4f_c00014{letter-spacing:-0.129067pt;}
.ls73_c00014{letter-spacing:-0.116160pt;}
.ls9d_c00014{letter-spacing:-0.109707pt;}
.ls64_c00014{letter-spacing:-0.097600pt;}
.ls7a_c00014{letter-spacing:-0.096800pt;}
.ls3f_c00014{letter-spacing:-0.090347pt;}
.ls50_c00014{letter-spacing:-0.083893pt;}
.lsa1_c00014{letter-spacing:-0.071040pt;}
.ls8e_c00014{letter-spacing:-0.070987pt;}
.ls59_c00014{letter-spacing:-0.058080pt;}
.ls81_c00014{letter-spacing:-0.051627pt;}
.ls9e_c00014{letter-spacing:-0.045173pt;}
.ls83_c00014{letter-spacing:-0.038720pt;}
.ls8f_c00014{letter-spacing:-0.032267pt;}
.ls4e_c00014{letter-spacing:-0.025813pt;}
.ls6c_c00014{letter-spacing:-0.012907pt;}
.ls9b_c00014{letter-spacing:-0.006453pt;}
.ls56_c00014{letter-spacing:0.000000pt;}
.ls30_c00014{letter-spacing:0.006453pt;}
.ls17_c00014{letter-spacing:0.006507pt;}
.ls11_c00014{letter-spacing:0.012907pt;}
.ls25_c00014{letter-spacing:0.019360pt;}
.lsc_c00014{letter-spacing:0.025813pt;}
.ls5_c00014{letter-spacing:0.032267pt;}
.ls18_c00014{letter-spacing:0.032533pt;}
.lsb_c00014{letter-spacing:0.038720pt;}
.ls14_c00014{letter-spacing:0.045173pt;}
.ls33_c00014{letter-spacing:0.051627pt;}
.ls12_c00014{letter-spacing:0.058080pt;}
.ls92_c00014{letter-spacing:0.064533pt;}
.ls1_c00014{letter-spacing:0.070987pt;}
.ls1a_c00014{letter-spacing:0.077440pt;}
.ls26_c00014{letter-spacing:0.083893pt;}
.lsa_c00014{letter-spacing:0.090347pt;}
.lsd_c00014{letter-spacing:0.096800pt;}
.ls95_c00014{letter-spacing:0.109707pt;}
.ls34_c00014{letter-spacing:0.116160pt;}
.ls32_c00014{letter-spacing:0.122613pt;}
.ls16_c00014{letter-spacing:0.123627pt;}
.ls27_c00014{letter-spacing:0.129067pt;}
.ls9c_c00014{letter-spacing:0.135520pt;}
.ls13_c00014{letter-spacing:0.148427pt;}
.ls1f_c00014{letter-spacing:0.154880pt;}
.ls1d_c00014{letter-spacing:0.161333pt;}
.ls6_c00014{letter-spacing:0.167787pt;}
.lsf_c00014{letter-spacing:0.180693pt;}
.ls2_c00014{letter-spacing:0.187147pt;}
.ls19_c00014{letter-spacing:0.206507pt;}
.ls7_c00014{letter-spacing:0.212960pt;}
.ls4_c00014{letter-spacing:0.238773pt;}
.ls8_c00014{letter-spacing:0.264587pt;}
.ls21_c00014{letter-spacing:0.271040pt;}
.ls10_c00014{letter-spacing:0.303307pt;}
.ls35_c00014{letter-spacing:0.316213pt;}
.ls9_c00014{letter-spacing:0.331840pt;}
.ls23_c00014{letter-spacing:0.335573pt;}
.ls24_c00014{letter-spacing:0.342027pt;}
.ls1b_c00014{letter-spacing:0.374293pt;}
.ls29_c00014{letter-spacing:0.384800pt;}
.ls3_c00014{letter-spacing:0.393653pt;}
.ls22_c00014{letter-spacing:0.548533pt;}
.ls2b_c00014{letter-spacing:0.562400pt;}
.ls15_c00014{letter-spacing:0.580800pt;}
.ls1c_c00014{letter-spacing:0.600160pt;}
.lsa5_c00014{letter-spacing:0.639360pt;}
.ls20_c00014{letter-spacing:0.645333pt;}
.ls1e_c00014{letter-spacing:0.761493pt;}
.ls0_c00014{letter-spacing:0.800213pt;}
.ls2a_c00014{letter-spacing:0.840640pt;}
.ls28_c00014{letter-spacing:0.851840pt;}
.ls31_c00014{letter-spacing:0.858293pt;}
.ls2f_c00014{letter-spacing:0.870240pt;}
.ls36_c00014{letter-spacing:0.890560pt;}
.ls2e_c00014{letter-spacing:0.941280pt;}
.lsa2_c00014{letter-spacing:1.118880pt;}
.ls2d_c00014{letter-spacing:1.195840pt;}
.lse_c00014{letter-spacing:1.439093pt;}
.ls2c_c00014{letter-spacing:1.580640pt;}
.ws1_c00014{word-spacing:0.000000pt;}
.ws0_c00014{word-spacing:8.220267pt;}
._15_c00014{margin-left:-2.465173pt;}
._1b_c00014{width:0.976800pt;}
._14_c00014{width:2.194133pt;}
._a_c00014{width:3.575147pt;}
._6_c00014{width:5.098133pt;}
._7_c00014{width:6.195200pt;}
._1c_c00014{width:7.094720pt;}
._8_c00014{width:8.298987pt;}
._9_c00014{width:9.828693pt;}
._b_c00014{width:10.796160pt;}
._c_c00014{width:12.009387pt;}
._16_c00014{width:12.936640pt;}
._11_c00014{width:14.484107pt;}
._13_c00014{width:17.478667pt;}
._12_c00014{width:18.791253pt;}
._5_c00014{width:19.936160pt;}
._4_c00014{width:21.683200pt;}
._0_c00014{width:23.270720pt;}
._2_c00014{width:24.309707pt;}
._1_c00014{width:25.439040pt;}
._f_c00014{width:26.716373pt;}
._3_c00014{width:27.736427pt;}
._e_c00014{width:30.180800pt;}
._10_c00014{width:31.263680pt;}
._d_c00014{width:33.750933pt;}
._18_c00014{width:62.216747pt;}
._19_c00014{width:68.062507pt;}
._1a_c00014{width:70.997120pt;}
._17_c00014{width:75.980480pt;}
.fs2_c00014{font-size:47.360000pt;}
.fs6_c00014{font-size:52.266667pt;}
.fs3_c00014{font-size:59.200000pt;}
.fs4_c00014{font-size:61.333333pt;}
.fs1_c00014{font-size:64.533333pt;}
.fs0_c00014{font-size:65.066667pt;}
.fs5_c00014{font-size:65.600000pt;}
.y0_c00014{bottom:0.000000pt;}
.y2c_c00014{bottom:49.280005pt;}
.y2a_c00014{bottom:104.956539pt;}
.y2b_c00014{bottom:104.960005pt;}
.y29_c00014{bottom:132.480005pt;}
.y28_c00014{bottom:187.213339pt;}
.y27_c00014{bottom:214.733339pt;}
.y26_c00014{bottom:242.253339pt;}
.y24_c00014{bottom:269.770005pt;}
.y25_c00014{bottom:269.773339pt;}
.y22_c00014{bottom:297.592939pt;}
.y23_c00014{bottom:297.600005pt;}
.y21_c00014{bottom:325.132539pt;}
.y1f_c00014{bottom:352.329205pt;}
.y20_c00014{bottom:352.333339pt;}
.y1e_c00014{bottom:380.175339pt;}
.y1d_c00014{bottom:407.353739pt;}
.y1c_c00014{bottom:434.893339pt;}
.y1b_c00014{bottom:434.895605pt;}
.y1a_c00014{bottom:462.096405pt;}
.y19_c00014{bottom:517.449872pt;}
.y18_c00014{bottom:544.973339pt;}
.y16_c00014{bottom:572.489872pt;}
.y17_c00014{bottom:572.493339pt;}
.y15_c00014{bottom:600.009872pt;}
.y14_c00014{bottom:627.535339pt;}
.y13_c00014{bottom:654.716405pt;}
.y11_c00014{bottom:681.930139pt;}
.y12_c00014{bottom:681.933339pt;}
.yf_c00014{bottom:709.447205pt;}
.y10_c00014{bottom:709.453339pt;}
.yd_c00014{bottom:737.292539pt;}
.ye_c00014{bottom:737.293339pt;}
.yb_c00014{bottom:764.492672pt;}
.yc_c00014{bottom:764.493339pt;}
.ya_c00014{bottom:791.993872pt;}
.y9_c00014{bottom:819.532539pt;}
.y7_c00014{bottom:846.729205pt;}
.y8_c00014{bottom:846.733339pt;}
.y6_c00014{bottom:874.236539pt;}
.y5_c00014{bottom:901.760005pt;}
.y3_c00014{bottom:929.289872pt;}
.y4_c00014{bottom:929.293339pt;}
.y2_c00014{bottom:956.813339pt;}
.y1_c00014{bottom:1052.813339pt;}
.h5_c00014{height:31.541760pt;}
.hd_c00014{height:51.296875pt;}
.ha_c00014{height:59.662500pt;}
.h4_c00014{height:63.335938pt;}
.h9_c00014{height:63.361004pt;}
.h3_c00014{height:63.827604pt;}
.h6_c00014{height:63.830804pt;}
.h8_c00014{height:63.841471pt;}
.h7_c00014{height:63.842004pt;}
.h2_c00014{height:63.859375pt;}
.hb_c00014{height:63.968750pt;}
.hc_c00014{height:64.382813pt;}
.h1_c00014{height:1122.666667pt;}
.h0_c00014{height:1122.880005pt;}
.w1_c00014{width:793.333333pt;}
.w0_c00014{width:793.599999pt;}
.x0_c00014{left:0.000000pt;}
.x1d_c00014{left:101.310132pt;}
.x13_c00014{left:102.275332pt;}
.xa_c00014{left:103.201065pt;}
.x3_c00014{left:104.147465pt;}
.x1_c00014{left:105.893332pt;}
.x7_c00014{left:130.106665pt;}
.x24_c00014{left:146.706665pt;}
.x17_c00014{left:149.395199pt;}
.x2_c00014{left:152.226665pt;}
.xb_c00014{left:155.053332pt;}
.xc_c00014{left:175.706665pt;}
.x28_c00014{left:177.746665pt;}
.x29_c00014{left:203.453332pt;}
.xf_c00014{left:233.773332pt;}
.x10_c00014{left:253.279999pt;}
.x18_c00014{left:276.759999pt;}
.x1e_c00014{left:351.533332pt;}
.x2a_c00014{left:358.493332pt;}
.x2c_c00014{left:367.213332pt;}
.x1f_c00014{left:371.759999pt;}
.x32_c00014{left:378.719999pt;}
.x2d_c00014{left:386.213332pt;}
.x2b_c00014{left:390.386665pt;}
.x19_c00014{left:396.653332pt;}
.x1a_c00014{left:419.999999pt;}
.x11_c00014{left:431.213332pt;}
.x12_c00014{left:453.759999pt;}
.x2e_c00014{left:474.386665pt;}
.xd_c00014{left:482.239999pt;}
.x2f_c00014{left:499.359999pt;}
.x30_c00014{left:515.693332pt;}
.x15_c00014{left:519.693332pt;}
.x20_c00014{left:521.613332pt;}
.x4_c00014{left:527.213332pt;}
.x27_c00014{left:530.799999pt;}
.x31_c00014{left:535.613332pt;}
.x8_c00014{left:542.093332pt;}
.x21_c00014{left:561.466665pt;}
.x9_c00014{left:563.213332pt;}
.x5_c00014{left:566.839999pt;}
.x16_c00014{left:569.119999pt;}
.x6_c00014{left:586.426665pt;}
.xe_c00014{left:596.399999pt;}
.x22_c00014{left:601.146665pt;}
.x25_c00014{left:609.133332pt;}
.x23_c00014{left:619.359999pt;}
.x1b_c00014{left:627.293332pt;}
.x26_c00014{left:632.786665pt;}
.x1c_c00014{left:648.279999pt;}
.x14_c00014{left:649.453332pt;}
}





/* 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_c00015 {
    display:none;
  }
  .loading-indicator_c00015.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00015 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_c00015 { 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_c00015" -> "#page-container .classname_c00015")
 */
.pf_c00015 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00015 { /* 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_c00015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00015 { /* 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_c00015 { /* 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_c00015 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00015 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00015 {overflow:visible;}
  }
}
.c_c00015 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00015 { /* 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_c00015:after { /* webkit #35443 */
  content: '';
}
.t_c00015:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00015 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 */
}
.__c00015 { /* 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_c00015 { /* info for Javascript */
  display:none;
}
.l_c00015 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00015 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00015 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00015: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_c00015 {
    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_c00015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00015.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_c00015 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00015;src:url('chunks/assets/font_6a6b702f43f4884ecccf4b58.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.284668;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_c00015;src:url('chunks/assets/font_d5c02b9da1c82215ee3f9972.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.284180;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_c00015{transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);}
.m2_c00015{transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);}
.m1_c00015{transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);}
.m5_c00015{transform:matrix(0.248029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248029,0.000000,0.000000,0.250000,0,0);}
.m3_c00015{transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);}
.m0_c00015{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);}
.v0_c00015{vertical-align:0.000000px;}
.ls39_c00015{letter-spacing:-2.520000px;}
.ls2e_c00015{letter-spacing:-2.448000px;}
.ls7e_c00015{letter-spacing:-2.368800px;}
.ls26_c00015{letter-spacing:-2.237760px;}
.ls27_c00015{letter-spacing:-2.080800px;}
.ls49_c00015{letter-spacing:-1.936800px;}
.ls89_c00015{letter-spacing:-1.922400px;}
.ls6a_c00015{letter-spacing:-1.900800px;}
.ls97_c00015{letter-spacing:-1.884960px;}
.ls6f_c00015{letter-spacing:-1.828800px;}
.ls3e_c00015{letter-spacing:-1.785600px;}
.ls8b_c00015{letter-spacing:-1.764000px;}
.ls5f_c00015{letter-spacing:-1.749600px;}
.ls62_c00015{letter-spacing:-1.706400px;}
.ls3b_c00015{letter-spacing:-1.670400px;}
.ls3c_c00015{letter-spacing:-1.648800px;}
.ls5c_c00015{letter-spacing:-1.605600px;}
.ls5e_c00015{letter-spacing:-1.504800px;}
.ls98_c00015{letter-spacing:-1.485120px;}
.ls38_c00015{letter-spacing:-1.454400px;}
.ls66_c00015{letter-spacing:-1.440000px;}
.ls55_c00015{letter-spacing:-1.396800px;}
.ls83_c00015{letter-spacing:-1.382400px;}
.ls96_c00015{letter-spacing:-1.356600px;}
.ls7f_c00015{letter-spacing:-1.267200px;}
.ls28_c00015{letter-spacing:-1.238400px;}
.ls85_c00015{letter-spacing:-1.216800px;}
.ls30_c00015{letter-spacing:-1.180800px;}
.ls69_c00015{letter-spacing:-1.108800px;}
.ls52_c00015{letter-spacing:-1.065600px;}
.ls32_c00015{letter-spacing:-0.979200px;}
.ls91_c00015{letter-spacing:-0.964800px;}
.ls88_c00015{letter-spacing:-0.921600px;}
.ls90_c00015{letter-spacing:-0.885600px;}
.ls9a_c00015{letter-spacing:-0.856800px;}
.ls4d_c00015{letter-spacing:-0.842400px;}
.ls75_c00015{letter-spacing:-0.828000px;}
.ls74_c00015{letter-spacing:-0.806400px;}
.ls86_c00015{letter-spacing:-0.792000px;}
.ls5a_c00015{letter-spacing:-0.777600px;}
.ls77_c00015{letter-spacing:-0.770400px;}
.ls44_c00015{letter-spacing:-0.734400px;}
.ls94_c00015{letter-spacing:-0.728280px;}
.ls8a_c00015{letter-spacing:-0.720000px;}
.ls4b_c00015{letter-spacing:-0.712800px;}
.ls51_c00015{letter-spacing:-0.698400px;}
.ls6d_c00015{letter-spacing:-0.691200px;}
.ls84_c00015{letter-spacing:-0.684000px;}
.ls7c_c00015{letter-spacing:-0.669600px;}
.ls65_c00015{letter-spacing:-0.662400px;}
.ls54_c00015{letter-spacing:-0.640800px;}
.ls60_c00015{letter-spacing:-0.633600px;}
.ls56_c00015{letter-spacing:-0.604800px;}
.ls92_c00015{letter-spacing:-0.590400px;}
.ls50_c00015{letter-spacing:-0.576000px;}
.ls37_c00015{letter-spacing:-0.540000px;}
.ls70_c00015{letter-spacing:-0.511200px;}
.ls45_c00015{letter-spacing:-0.504000px;}
.ls47_c00015{letter-spacing:-0.496800px;}
.ls8e_c00015{letter-spacing:-0.489600px;}
.ls7d_c00015{letter-spacing:-0.482400px;}
.ls43_c00015{letter-spacing:-0.475200px;}
.ls80_c00015{letter-spacing:-0.446400px;}
.ls2a_c00015{letter-spacing:-0.417600px;}
.ls3f_c00015{letter-spacing:-0.410400px;}
.ls6e_c00015{letter-spacing:-0.403200px;}
.ls3d_c00015{letter-spacing:-0.388800px;}
.ls59_c00015{letter-spacing:-0.381600px;}
.ls61_c00015{letter-spacing:-0.374400px;}
.ls64_c00015{letter-spacing:-0.367200px;}
.ls8f_c00015{letter-spacing:-0.360000px;}
.ls2d_c00015{letter-spacing:-0.352800px;}
.ls42_c00015{letter-spacing:-0.345600px;}
.ls78_c00015{letter-spacing:-0.338400px;}
.ls4c_c00015{letter-spacing:-0.331200px;}
.ls71_c00015{letter-spacing:-0.324000px;}
.ls7a_c00015{letter-spacing:-0.302400px;}
.ls29_c00015{letter-spacing:-0.295200px;}
.ls4a_c00015{letter-spacing:-0.280800px;}
.ls57_c00015{letter-spacing:-0.273600px;}
.ls87_c00015{letter-spacing:-0.266400px;}
.ls3a_c00015{letter-spacing:-0.252000px;}
.ls5d_c00015{letter-spacing:-0.244800px;}
.ls63_c00015{letter-spacing:-0.237600px;}
.ls76_c00015{letter-spacing:-0.230400px;}
.ls68_c00015{letter-spacing:-0.223200px;}
.ls2f_c00015{letter-spacing:-0.216000px;}
.ls53_c00015{letter-spacing:-0.208800px;}
.ls67_c00015{letter-spacing:-0.187200px;}
.ls4f_c00015{letter-spacing:-0.172800px;}
.ls48_c00015{letter-spacing:-0.165600px;}
.ls31_c00015{letter-spacing:-0.158400px;}
.ls5b_c00015{letter-spacing:-0.144000px;}
.ls8d_c00015{letter-spacing:-0.136800px;}
.ls99_c00015{letter-spacing:-0.135660px;}
.ls36_c00015{letter-spacing:-0.122400px;}
.ls6b_c00015{letter-spacing:-0.115200px;}
.ls4e_c00015{letter-spacing:-0.108000px;}
.ls82_c00015{letter-spacing:-0.100800px;}
.ls93_c00015{letter-spacing:-0.098280px;}
.ls72_c00015{letter-spacing:-0.093600px;}
.ls2c_c00015{letter-spacing:-0.086400px;}
.ls35_c00015{letter-spacing:-0.079200px;}
.ls33_c00015{letter-spacing:-0.072000px;}
.ls40_c00015{letter-spacing:-0.064800px;}
.ls58_c00015{letter-spacing:-0.050400px;}
.ls73_c00015{letter-spacing:-0.043200px;}
.ls95_c00015{letter-spacing:-0.028560px;}
.ls46_c00015{letter-spacing:-0.021600px;}
.ls79_c00015{letter-spacing:-0.014400px;}
.ls41_c00015{letter-spacing:0.000000px;}
.ls4_c00015{letter-spacing:0.007200px;}
.ls24_c00015{letter-spacing:0.014280px;}
.ls1a_c00015{letter-spacing:0.014400px;}
.lsc_c00015{letter-spacing:0.021600px;}
.ls16_c00015{letter-spacing:0.043200px;}
.ls8c_c00015{letter-spacing:0.057600px;}
.ls7_c00015{letter-spacing:0.064800px;}
.ls10_c00015{letter-spacing:0.072000px;}
.lse_c00015{letter-spacing:0.079200px;}
.ls5_c00015{letter-spacing:0.086400px;}
.ls1_c00015{letter-spacing:0.093600px;}
.lsa_c00015{letter-spacing:0.100800px;}
.ls6c_c00015{letter-spacing:0.122400px;}
.ls8_c00015{letter-spacing:0.129600px;}
.ls1f_c00015{letter-spacing:0.161460px;}
.ls15_c00015{letter-spacing:0.165600px;}
.ls21_c00015{letter-spacing:0.192780px;}
.ls2b_c00015{letter-spacing:0.194400px;}
.ls9_c00015{letter-spacing:0.201600px;}
.ls0_c00015{letter-spacing:0.223200px;}
.ls14_c00015{letter-spacing:0.237600px;}
.lsf_c00015{letter-spacing:0.288000px;}
.ls11_c00015{letter-spacing:0.302400px;}
.ls7b_c00015{letter-spacing:0.315900px;}
.ls6_c00015{letter-spacing:0.352800px;}
.ls25_c00015{letter-spacing:0.392700px;}
.lsb_c00015{letter-spacing:0.435240px;}
.ls3_c00015{letter-spacing:0.512460px;}
.ls22_c00015{letter-spacing:0.521220px;}
.lsd_c00015{letter-spacing:0.526500px;}
.ls18_c00015{letter-spacing:0.575640px;}
.ls1b_c00015{letter-spacing:0.576000px;}
.ls17_c00015{letter-spacing:0.582660px;}
.ls20_c00015{letter-spacing:0.687960px;}
.ls2_c00015{letter-spacing:0.702000px;}
.ls23_c00015{letter-spacing:0.714000px;}
.ls1c_c00015{letter-spacing:0.716040px;}
.ls1e_c00015{letter-spacing:0.720000px;}
.ls12_c00015{letter-spacing:0.723060px;}
.ls1d_c00015{letter-spacing:0.772200px;}
.ls13_c00015{letter-spacing:0.849420px;}
.ls81_c00015{letter-spacing:0.856440px;}
.ls19_c00015{letter-spacing:1.053000px;}
.ls34_c00015{letter-spacing:1.296000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{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__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:-17.784000px;}
.ws1_c00015{word-spacing:0.000000px;}
._13_c00015{margin-left:-1.936800px;}
._a_c00015{width:1.353600px;}
._1b_c00015{width:2.546400px;}
._c_c00015{width:3.600000px;}
._b_c00015{width:5.083200px;}
._12_c00015{width:6.106800px;}
._8_c00015{width:7.524000px;}
._9_c00015{width:8.654400px;}
._3_c00015{width:10.432800px;}
._0_c00015{width:12.477600px;}
._1e_c00015{width:13.492800px;}
._2_c00015{width:14.828280px;}
._1a_c00015{width:15.914340px;}
._1_c00015{width:16.970400px;}
._e_c00015{width:18.860520px;}
._d_c00015{width:20.275200px;}
._10_c00015{width:21.625080px;}
._f_c00015{width:22.885080px;}
._11_c00015{width:23.971560px;}
._1d_c00015{width:25.059000px;}
._14_c00015{width:28.627200px;}
._15_c00015{width:29.664000px;}
._7_c00015{width:31.708800px;}
._4_c00015{width:34.329600px;}
._6_c00015{width:35.956800px;}
._5_c00015{width:40.795200px;}
._19_c00015{width:45.693600px;}
._17_c00015{width:47.736000px;}
._16_c00015{width:50.911200px;}
._18_c00015{width:52.027200px;}
._1c_c00015{width:55.088940px;}
.fc0_c00015{color:transparent;}
.fs4_c00015{font-size:61.800000px;}
.fs0_c00015{font-size:66.600000px;}
.fs2_c00015{font-size:70.200000px;}
.fs3_c00015{font-size:71.400000px;}
.fs1_c00015{font-size:72.000000px;}
.y0_c00015{bottom:0.000000px;}
.y22_c00015{bottom:64.080000px;}
.y21_c00015{bottom:188.280000px;}
.y20_c00015{bottom:218.895000px;}
.y1f_c00015{bottom:250.197000px;}
.y1e_c00015{bottom:281.175000px;}
.y1d_c00015{bottom:311.415000px;}
.y1c_c00015{bottom:372.975000px;}
.y1b_c00015{bottom:403.935000px;}
.y1a_c00015{bottom:435.240000px;}
.y19_c00015{bottom:465.858000px;}
.y18_c00015{bottom:496.800000px;}
.y17_c00015{bottom:558.378000px;}
.y16_c00015{bottom:589.317000px;}
.y15_c00015{bottom:620.295000px;}
.y13_c00015{bottom:651.237000px;}
.y14_c00015{bottom:651.240000px;}
.y12_c00015{bottom:681.855000px;}
.y11_c00015{bottom:712.800000px;}
.y10_c00015{bottom:743.400000px;}
.yf_c00015{bottom:774.375000px;}
.ye_c00015{bottom:774.378000px;}
.yc_c00015{bottom:835.917000px;}
.yd_c00015{bottom:835.920000px;}
.yb_c00015{bottom:866.895000px;}
.ya_c00015{bottom:897.855000px;}
.y9_c00015{bottom:928.815000px;}
.y8_c00015{bottom:990.375000px;}
.y7_c00015{bottom:1020.975000px;}
.y6_c00015{bottom:1020.978000px;}
.y4_c00015{bottom:1051.917000px;}
.y5_c00015{bottom:1051.920000px;}
.y3_c00015{bottom:1082.535000px;}
.y2_c00015{bottom:1113.495000px;}
.y1_c00015{bottom:1189.080000px;}
.h6_c00015{height:60.653320px;}
.h2_c00015{height:65.364258px;}
.h5_c00015{height:70.075195px;}
.h3_c00015{height:70.664062px;}
.h4_c00015{height:70.676063px;}
.h1_c00015{height:1263.000000px;}
.h0_c00015{height:1263.240000px;}
.w1_c00015{width:892.500000px;}
.w0_c00015{width:892.800000px;}
.x0_c00015{left:0.000000px;}
.x1_c00015{left:122.370000px;}
.x15_c00015{left:123.945000px;}
.x8_c00015{left:175.929000px;}
.x12_c00015{left:184.650000px;}
.x2_c00015{left:373.425000px;}
.x3_c00015{left:393.870000px;}
.x9_c00015{left:403.665000px;}
.xa_c00015{left:422.835000px;}
.x16_c00015{left:432.555000px;}
.x10_c00015{left:444.045000px;}
.x11_c00015{left:472.530000px;}
.x4_c00015{left:500.955000px;}
.x5_c00015{left:522.255000px;}
.xb_c00015{left:524.355000px;}
.xc_c00015{left:545.505000px;}
.x13_c00015{left:586.275000px;}
.xe_c00015{left:592.755000px;}
.x14_c00015{left:611.595000px;}
.xf_c00015{left:621.255000px;}
.x6_c00015{left:635.730000px;}
.x7_c00015{left:658.275000px;}
.xd_c00015{left:736.095000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls39_c00015{letter-spacing:-2.240000pt;}
.ls2e_c00015{letter-spacing:-2.176000pt;}
.ls7e_c00015{letter-spacing:-2.105600pt;}
.ls26_c00015{letter-spacing:-1.989120pt;}
.ls27_c00015{letter-spacing:-1.849600pt;}
.ls49_c00015{letter-spacing:-1.721600pt;}
.ls89_c00015{letter-spacing:-1.708800pt;}
.ls6a_c00015{letter-spacing:-1.689600pt;}
.ls97_c00015{letter-spacing:-1.675520pt;}
.ls6f_c00015{letter-spacing:-1.625600pt;}
.ls3e_c00015{letter-spacing:-1.587200pt;}
.ls8b_c00015{letter-spacing:-1.568000pt;}
.ls5f_c00015{letter-spacing:-1.555200pt;}
.ls62_c00015{letter-spacing:-1.516800pt;}
.ls3b_c00015{letter-spacing:-1.484800pt;}
.ls3c_c00015{letter-spacing:-1.465600pt;}
.ls5c_c00015{letter-spacing:-1.427200pt;}
.ls5e_c00015{letter-spacing:-1.337600pt;}
.ls98_c00015{letter-spacing:-1.320107pt;}
.ls38_c00015{letter-spacing:-1.292800pt;}
.ls66_c00015{letter-spacing:-1.280000pt;}
.ls55_c00015{letter-spacing:-1.241600pt;}
.ls83_c00015{letter-spacing:-1.228800pt;}
.ls96_c00015{letter-spacing:-1.205867pt;}
.ls7f_c00015{letter-spacing:-1.126400pt;}
.ls28_c00015{letter-spacing:-1.100800pt;}
.ls85_c00015{letter-spacing:-1.081600pt;}
.ls30_c00015{letter-spacing:-1.049600pt;}
.ls69_c00015{letter-spacing:-0.985600pt;}
.ls52_c00015{letter-spacing:-0.947200pt;}
.ls32_c00015{letter-spacing:-0.870400pt;}
.ls91_c00015{letter-spacing:-0.857600pt;}
.ls88_c00015{letter-spacing:-0.819200pt;}
.ls90_c00015{letter-spacing:-0.787200pt;}
.ls9a_c00015{letter-spacing:-0.761600pt;}
.ls4d_c00015{letter-spacing:-0.748800pt;}
.ls75_c00015{letter-spacing:-0.736000pt;}
.ls74_c00015{letter-spacing:-0.716800pt;}
.ls86_c00015{letter-spacing:-0.704000pt;}
.ls5a_c00015{letter-spacing:-0.691200pt;}
.ls77_c00015{letter-spacing:-0.684800pt;}
.ls44_c00015{letter-spacing:-0.652800pt;}
.ls94_c00015{letter-spacing:-0.647360pt;}
.ls8a_c00015{letter-spacing:-0.640000pt;}
.ls4b_c00015{letter-spacing:-0.633600pt;}
.ls51_c00015{letter-spacing:-0.620800pt;}
.ls6d_c00015{letter-spacing:-0.614400pt;}
.ls84_c00015{letter-spacing:-0.608000pt;}
.ls7c_c00015{letter-spacing:-0.595200pt;}
.ls65_c00015{letter-spacing:-0.588800pt;}
.ls54_c00015{letter-spacing:-0.569600pt;}
.ls60_c00015{letter-spacing:-0.563200pt;}
.ls56_c00015{letter-spacing:-0.537600pt;}
.ls92_c00015{letter-spacing:-0.524800pt;}
.ls50_c00015{letter-spacing:-0.512000pt;}
.ls37_c00015{letter-spacing:-0.480000pt;}
.ls70_c00015{letter-spacing:-0.454400pt;}
.ls45_c00015{letter-spacing:-0.448000pt;}
.ls47_c00015{letter-spacing:-0.441600pt;}
.ls8e_c00015{letter-spacing:-0.435200pt;}
.ls7d_c00015{letter-spacing:-0.428800pt;}
.ls43_c00015{letter-spacing:-0.422400pt;}
.ls80_c00015{letter-spacing:-0.396800pt;}
.ls2a_c00015{letter-spacing:-0.371200pt;}
.ls3f_c00015{letter-spacing:-0.364800pt;}
.ls6e_c00015{letter-spacing:-0.358400pt;}
.ls3d_c00015{letter-spacing:-0.345600pt;}
.ls59_c00015{letter-spacing:-0.339200pt;}
.ls61_c00015{letter-spacing:-0.332800pt;}
.ls64_c00015{letter-spacing:-0.326400pt;}
.ls8f_c00015{letter-spacing:-0.320000pt;}
.ls2d_c00015{letter-spacing:-0.313600pt;}
.ls42_c00015{letter-spacing:-0.307200pt;}
.ls78_c00015{letter-spacing:-0.300800pt;}
.ls4c_c00015{letter-spacing:-0.294400pt;}
.ls71_c00015{letter-spacing:-0.288000pt;}
.ls7a_c00015{letter-spacing:-0.268800pt;}
.ls29_c00015{letter-spacing:-0.262400pt;}
.ls4a_c00015{letter-spacing:-0.249600pt;}
.ls57_c00015{letter-spacing:-0.243200pt;}
.ls87_c00015{letter-spacing:-0.236800pt;}
.ls3a_c00015{letter-spacing:-0.224000pt;}
.ls5d_c00015{letter-spacing:-0.217600pt;}
.ls63_c00015{letter-spacing:-0.211200pt;}
.ls76_c00015{letter-spacing:-0.204800pt;}
.ls68_c00015{letter-spacing:-0.198400pt;}
.ls2f_c00015{letter-spacing:-0.192000pt;}
.ls53_c00015{letter-spacing:-0.185600pt;}
.ls67_c00015{letter-spacing:-0.166400pt;}
.ls4f_c00015{letter-spacing:-0.153600pt;}
.ls48_c00015{letter-spacing:-0.147200pt;}
.ls31_c00015{letter-spacing:-0.140800pt;}
.ls5b_c00015{letter-spacing:-0.128000pt;}
.ls8d_c00015{letter-spacing:-0.121600pt;}
.ls99_c00015{letter-spacing:-0.120587pt;}
.ls36_c00015{letter-spacing:-0.108800pt;}
.ls6b_c00015{letter-spacing:-0.102400pt;}
.ls4e_c00015{letter-spacing:-0.096000pt;}
.ls82_c00015{letter-spacing:-0.089600pt;}
.ls93_c00015{letter-spacing:-0.087360pt;}
.ls72_c00015{letter-spacing:-0.083200pt;}
.ls2c_c00015{letter-spacing:-0.076800pt;}
.ls35_c00015{letter-spacing:-0.070400pt;}
.ls33_c00015{letter-spacing:-0.064000pt;}
.ls40_c00015{letter-spacing:-0.057600pt;}
.ls58_c00015{letter-spacing:-0.044800pt;}
.ls73_c00015{letter-spacing:-0.038400pt;}
.ls95_c00015{letter-spacing:-0.025387pt;}
.ls46_c00015{letter-spacing:-0.019200pt;}
.ls79_c00015{letter-spacing:-0.012800pt;}
.ls41_c00015{letter-spacing:0.000000pt;}
.ls4_c00015{letter-spacing:0.006400pt;}
.ls24_c00015{letter-spacing:0.012693pt;}
.ls1a_c00015{letter-spacing:0.012800pt;}
.lsc_c00015{letter-spacing:0.019200pt;}
.ls16_c00015{letter-spacing:0.038400pt;}
.ls8c_c00015{letter-spacing:0.051200pt;}
.ls7_c00015{letter-spacing:0.057600pt;}
.ls10_c00015{letter-spacing:0.064000pt;}
.lse_c00015{letter-spacing:0.070400pt;}
.ls5_c00015{letter-spacing:0.076800pt;}
.ls1_c00015{letter-spacing:0.083200pt;}
.lsa_c00015{letter-spacing:0.089600pt;}
.ls6c_c00015{letter-spacing:0.108800pt;}
.ls8_c00015{letter-spacing:0.115200pt;}
.ls1f_c00015{letter-spacing:0.143520pt;}
.ls15_c00015{letter-spacing:0.147200pt;}
.ls21_c00015{letter-spacing:0.171360pt;}
.ls2b_c00015{letter-spacing:0.172800pt;}
.ls9_c00015{letter-spacing:0.179200pt;}
.ls0_c00015{letter-spacing:0.198400pt;}
.ls14_c00015{letter-spacing:0.211200pt;}
.lsf_c00015{letter-spacing:0.256000pt;}
.ls11_c00015{letter-spacing:0.268800pt;}
.ls7b_c00015{letter-spacing:0.280800pt;}
.ls6_c00015{letter-spacing:0.313600pt;}
.ls25_c00015{letter-spacing:0.349067pt;}
.lsb_c00015{letter-spacing:0.386880pt;}
.ls3_c00015{letter-spacing:0.455520pt;}
.ls22_c00015{letter-spacing:0.463307pt;}
.lsd_c00015{letter-spacing:0.468000pt;}
.ls18_c00015{letter-spacing:0.511680pt;}
.ls1b_c00015{letter-spacing:0.512000pt;}
.ls17_c00015{letter-spacing:0.517920pt;}
.ls20_c00015{letter-spacing:0.611520pt;}
.ls2_c00015{letter-spacing:0.624000pt;}
.ls23_c00015{letter-spacing:0.634667pt;}
.ls1c_c00015{letter-spacing:0.636480pt;}
.ls1e_c00015{letter-spacing:0.640000pt;}
.ls12_c00015{letter-spacing:0.642720pt;}
.ls1d_c00015{letter-spacing:0.686400pt;}
.ls13_c00015{letter-spacing:0.755040pt;}
.ls81_c00015{letter-spacing:0.761280pt;}
.ls19_c00015{letter-spacing:0.936000pt;}
.ls34_c00015{letter-spacing:1.152000pt;}
.ws0_c00015{word-spacing:-15.808000pt;}
.ws1_c00015{word-spacing:0.000000pt;}
._13_c00015{margin-left:-1.721600pt;}
._a_c00015{width:1.203200pt;}
._1b_c00015{width:2.263467pt;}
._c_c00015{width:3.200000pt;}
._b_c00015{width:4.518400pt;}
._12_c00015{width:5.428267pt;}
._8_c00015{width:6.688000pt;}
._9_c00015{width:7.692800pt;}
._3_c00015{width:9.273600pt;}
._0_c00015{width:11.091200pt;}
._1e_c00015{width:11.993600pt;}
._2_c00015{width:13.180693pt;}
._1a_c00015{width:14.146080pt;}
._1_c00015{width:15.084800pt;}
._e_c00015{width:16.764907pt;}
._d_c00015{width:18.022400pt;}
._10_c00015{width:19.222293pt;}
._f_c00015{width:20.342293pt;}
._11_c00015{width:21.308053pt;}
._1d_c00015{width:22.274667pt;}
._14_c00015{width:25.446400pt;}
._15_c00015{width:26.368000pt;}
._7_c00015{width:28.185600pt;}
._4_c00015{width:30.515200pt;}
._6_c00015{width:31.961600pt;}
._5_c00015{width:36.262400pt;}
._19_c00015{width:40.616533pt;}
._17_c00015{width:42.432000pt;}
._16_c00015{width:45.254400pt;}
._18_c00015{width:46.246400pt;}
._1c_c00015{width:48.967947pt;}
.fs4_c00015{font-size:54.933333pt;}
.fs0_c00015{font-size:59.200000pt;}
.fs2_c00015{font-size:62.400000pt;}
.fs3_c00015{font-size:63.466667pt;}
.fs1_c00015{font-size:64.000000pt;}
.y0_c00015{bottom:0.000000pt;}
.y22_c00015{bottom:56.960000pt;}
.y21_c00015{bottom:167.360000pt;}
.y20_c00015{bottom:194.573333pt;}
.y1f_c00015{bottom:222.397333pt;}
.y1e_c00015{bottom:249.933333pt;}
.y1d_c00015{bottom:276.813333pt;}
.y1c_c00015{bottom:331.533333pt;}
.y1b_c00015{bottom:359.053333pt;}
.y1a_c00015{bottom:386.880000pt;}
.y19_c00015{bottom:414.096000pt;}
.y18_c00015{bottom:441.600000pt;}
.y17_c00015{bottom:496.336000pt;}
.y16_c00015{bottom:523.837333pt;}
.y15_c00015{bottom:551.373333pt;}
.y13_c00015{bottom:578.877333pt;}
.y14_c00015{bottom:578.880000pt;}
.y12_c00015{bottom:606.093333pt;}
.y11_c00015{bottom:633.600000pt;}
.y10_c00015{bottom:660.800000pt;}
.yf_c00015{bottom:688.333333pt;}
.ye_c00015{bottom:688.336000pt;}
.yc_c00015{bottom:743.037333pt;}
.yd_c00015{bottom:743.040000pt;}
.yb_c00015{bottom:770.573333pt;}
.ya_c00015{bottom:798.093333pt;}
.y9_c00015{bottom:825.613333pt;}
.y8_c00015{bottom:880.333333pt;}
.y7_c00015{bottom:907.533333pt;}
.y6_c00015{bottom:907.536000pt;}
.y4_c00015{bottom:935.037333pt;}
.y5_c00015{bottom:935.040000pt;}
.y3_c00015{bottom:962.253333pt;}
.y2_c00015{bottom:989.773333pt;}
.y1_c00015{bottom:1056.960000pt;}
.h6_c00015{height:53.914062pt;}
.h2_c00015{height:58.101562pt;}
.h5_c00015{height:62.289062pt;}
.h3_c00015{height:62.812500pt;}
.h4_c00015{height:62.823167pt;}
.h1_c00015{height:1122.666667pt;}
.h0_c00015{height:1122.880000pt;}
.w1_c00015{width:793.333333pt;}
.w0_c00015{width:793.600000pt;}
.x0_c00015{left:0.000000pt;}
.x1_c00015{left:108.773333pt;}
.x15_c00015{left:110.173333pt;}
.x8_c00015{left:156.381333pt;}
.x12_c00015{left:164.133333pt;}
.x2_c00015{left:331.933333pt;}
.x3_c00015{left:350.106667pt;}
.x9_c00015{left:358.813333pt;}
.xa_c00015{left:375.853333pt;}
.x16_c00015{left:384.493333pt;}
.x10_c00015{left:394.706667pt;}
.x11_c00015{left:420.026667pt;}
.x4_c00015{left:445.293333pt;}
.x5_c00015{left:464.226667pt;}
.xb_c00015{left:466.093333pt;}
.xc_c00015{left:484.893333pt;}
.x13_c00015{left:521.133333pt;}
.xe_c00015{left:526.893333pt;}
.x14_c00015{left:543.640000pt;}
.xf_c00015{left:552.226667pt;}
.x6_c00015{left:565.093333pt;}
.x7_c00015{left:585.133333pt;}
.xd_c00015{left:654.306667pt;}
}





/* 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_c00016 {
    display:none;
  }
  .loading-indicator_c00016.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00016 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_c00016 { 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_c00016" -> "#page-container .classname_c00016")
 */
.pf_c00016 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00016 { /* 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_c00016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00016 { /* 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_c00016 { /* 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_c00016 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00016 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00016 {overflow:visible;}
  }
}
.c_c00016 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00016 { /* 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_c00016:after { /* webkit #35443 */
  content: '';
}
.t_c00016:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00016 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 */
}
.__c00016 { /* 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_c00016 { /* info for Javascript */
  display:none;
}
.l_c00016 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00016 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00016 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00016: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_c00016 {
    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_c00016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00016.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_c00016 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00016;src:url('chunks/assets/font_b7138a43ff1c8f233b9a760f.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.284668;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_c00016;src:url('chunks/assets/font_905241008410c57b0b874f37.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.284180;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;}
.mf_c00016{transform:matrix(0.224615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224615,0.000000,0.000000,0.250000,0,0);}
.m4_c00016{transform:matrix(0.224857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224857,0.000000,0.000000,0.250000,0,0);}
.me_c00016{transform:matrix(0.231154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231154,0.000000,0.000000,0.250000,0,0);}
.md_c00016{transform:matrix(0.236658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236658,0.000000,0.000000,0.250000,0,0);}
.m8_c00016{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.m2_c00016{transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);}
.m3_c00016{transform:matrix(0.241369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241369,0.000000,0.000000,0.250000,0,0);}
.m7_c00016{transform:matrix(0.242721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242721,0.000000,0.000000,0.250000,0,0);}
.m10_c00016{transform:matrix(0.244859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244859,0.000000,0.000000,0.250000,0,0);}
.mc_c00016{transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);}
.m5_c00016{transform:matrix(0.248113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248113,0.000000,0.000000,0.250000,0,0);}
.ma_c00016{transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);}
.m6_c00016{transform:matrix(0.248873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248873,0.000000,0.000000,0.250000,0,0);}
.m0_c00016{transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);}
.mb_c00016{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m1_c00016{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);}
.m9_c00016{transform:matrix(0.258600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258600,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls1d_c00016{letter-spacing:-2.562000px;}
.ls3f_c00016{letter-spacing:-2.518080px;}
.ls1b_c00016{letter-spacing:-2.352000px;}
.ls32_c00016{letter-spacing:-2.298480px;}
.ls34_c00016{letter-spacing:-2.130120px;}
.ls77_c00016{letter-spacing:-2.042280px;}
.ls4d_c00016{letter-spacing:-1.974720px;}
.ls23_c00016{letter-spacing:-1.873920px;}
.ls30_c00016{letter-spacing:-1.800720px;}
.ls31_c00016{letter-spacing:-1.771440px;}
.ls56_c00016{letter-spacing:-1.676280px;}
.ls74_c00016{letter-spacing:-1.639680px;}
.ls65_c00016{letter-spacing:-1.544520px;}
.ls97_c00016{letter-spacing:-1.464000px;}
.ls5e_c00016{letter-spacing:-1.456680px;}
.ls98_c00016{letter-spacing:-1.442040px;}
.ls6a_c00016{letter-spacing:-1.339560px;}
.ls22_c00016{letter-spacing:-1.317600px;}
.ls44_c00016{letter-spacing:-1.302960px;}
.ls5d_c00016{letter-spacing:-1.288320px;}
.ls79_c00016{letter-spacing:-1.200480px;}
.ls4b_c00016{letter-spacing:-1.185840px;}
.ls4e_c00016{letter-spacing:-1.139820px;}
.ls75_c00016{letter-spacing:-1.127280px;}
.ls1c_c00016{letter-spacing:-1.112640px;}
.ls7f_c00016{letter-spacing:-1.098000px;}
.ls6f_c00016{letter-spacing:-1.076040px;}
.ls84_c00016{letter-spacing:-1.052700px;}
.ls54_c00016{letter-spacing:-1.039440px;}
.ls1e_c00016{letter-spacing:-1.017480px;}
.ls96_c00016{letter-spacing:-0.958920px;}
.ls67_c00016{letter-spacing:-0.951600px;}
.ls73_c00016{letter-spacing:-0.936960px;}
.ls63_c00016{letter-spacing:-0.929640px;}
.ls81_c00016{letter-spacing:-0.885720px;}
.ls59_c00016{letter-spacing:-0.856440px;}
.ls5b_c00016{letter-spacing:-0.827160px;}
.ls7d_c00016{letter-spacing:-0.812520px;}
.ls88_c00016{letter-spacing:-0.805860px;}
.ls7c_c00016{letter-spacing:-0.805200px;}
.ls69_c00016{letter-spacing:-0.797880px;}
.ls41_c00016{letter-spacing:-0.790560px;}
.ls85_c00016{letter-spacing:-0.733260px;}
.ls43_c00016{letter-spacing:-0.717360px;}
.ls5a_c00016{letter-spacing:-0.710040px;}
.ls6d_c00016{letter-spacing:-0.695400px;}
.ls80_c00016{letter-spacing:-0.682440px;}
.ls83_c00016{letter-spacing:-0.675180px;}
.ls72_c00016{letter-spacing:-0.666120px;}
.ls2d_c00016{letter-spacing:-0.658800px;}
.ls76_c00016{letter-spacing:-0.644160px;}
.ls4f_c00016{letter-spacing:-0.636840px;}
.ls82_c00016{letter-spacing:-0.631620px;}
.ls37_c00016{letter-spacing:-0.622200px;}
.ls8e_c00016{letter-spacing:-0.614880px;}
.ls27_c00016{letter-spacing:-0.600240px;}
.ls2b_c00016{letter-spacing:-0.592920px;}
.ls33_c00016{letter-spacing:-0.585600px;}
.ls93_c00016{letter-spacing:-0.578280px;}
.ls20_c00016{letter-spacing:-0.570960px;}
.ls60_c00016{letter-spacing:-0.563640px;}
.ls35_c00016{letter-spacing:-0.556320px;}
.ls6c_c00016{letter-spacing:-0.549000px;}
.ls47_c00016{letter-spacing:-0.541680px;}
.ls48_c00016{letter-spacing:-0.537240px;}
.ls68_c00016{letter-spacing:-0.534360px;}
.ls87_c00016{letter-spacing:-0.529980px;}
.ls6e_c00016{letter-spacing:-0.527040px;}
.ls66_c00016{letter-spacing:-0.519720px;}
.ls89_c00016{letter-spacing:-0.515460px;}
.ls36_c00016{letter-spacing:-0.497760px;}
.ls53_c00016{letter-spacing:-0.483120px;}
.ls42_c00016{letter-spacing:-0.475800px;}
.ls25_c00016{letter-spacing:-0.468480px;}
.ls3b_c00016{letter-spacing:-0.461160px;}
.ls29_c00016{letter-spacing:-0.453840px;}
.ls4c_c00016{letter-spacing:-0.439200px;}
.ls39_c00016{letter-spacing:-0.431880px;}
.ls38_c00016{letter-spacing:-0.417240px;}
.ls3e_c00016{letter-spacing:-0.409920px;}
.ls45_c00016{letter-spacing:-0.402600px;}
.ls40_c00016{letter-spacing:-0.395280px;}
.ls7e_c00016{letter-spacing:-0.387960px;}
.ls62_c00016{letter-spacing:-0.373320px;}
.ls26_c00016{letter-spacing:-0.366000px;}
.ls2f_c00016{letter-spacing:-0.358680px;}
.ls5c_c00016{letter-spacing:-0.355740px;}
.ls57_c00016{letter-spacing:-0.351360px;}
.ls86_c00016{letter-spacing:-0.341220px;}
.ls28_c00016{letter-spacing:-0.336720px;}
.ls2c_c00016{letter-spacing:-0.329400px;}
.ls24_c00016{letter-spacing:-0.314760px;}
.ls8a_c00016{letter-spacing:-0.307440px;}
.ls46_c00016{letter-spacing:-0.300120px;}
.ls2e_c00016{letter-spacing:-0.292800px;}
.ls3c_c00016{letter-spacing:-0.270840px;}
.ls50_c00016{letter-spacing:-0.256200px;}
.ls5f_c00016{letter-spacing:-0.248880px;}
.ls3a_c00016{letter-spacing:-0.241560px;}
.ls7a_c00016{letter-spacing:-0.239580px;}
.ls61_c00016{letter-spacing:-0.234240px;}
.ls7b_c00016{letter-spacing:-0.232320px;}
.ls99_c00016{letter-spacing:-0.226920px;}
.ls3d_c00016{letter-spacing:-0.219600px;}
.ls95_c00016{letter-spacing:-0.190320px;}
.ls90_c00016{letter-spacing:-0.175680px;}
.ls49_c00016{letter-spacing:-0.152460px;}
.ls58_c00016{letter-spacing:-0.146400px;}
.ls8b_c00016{letter-spacing:-0.139080px;}
.ls8f_c00016{letter-spacing:-0.131760px;}
.ls8c_c00016{letter-spacing:-0.130680px;}
.ls91_c00016{letter-spacing:-0.124440px;}
.ls51_c00016{letter-spacing:-0.109800px;}
.ls94_c00016{letter-spacing:-0.102480px;}
.ls92_c00016{letter-spacing:-0.095160px;}
.ls4a_c00016{letter-spacing:-0.094380px;}
.ls6b_c00016{letter-spacing:-0.087840px;}
.ls64_c00016{letter-spacing:-0.080520px;}
.ls78_c00016{letter-spacing:-0.065880px;}
.ls71_c00016{letter-spacing:-0.058560px;}
.ls21_c00016{letter-spacing:-0.051240px;}
.ls1f_c00016{letter-spacing:-0.036600px;}
.ls70_c00016{letter-spacing:-0.021960px;}
.ls55_c00016{letter-spacing:-0.014640px;}
.ls2a_c00016{letter-spacing:0.000000px;}
.ls9_c00016{letter-spacing:0.007260px;}
.ls13_c00016{letter-spacing:0.007320px;}
.ls3_c00016{letter-spacing:0.021960px;}
.ls10_c00016{letter-spacing:0.029280px;}
.ls1a_c00016{letter-spacing:0.043920px;}
.ls6_c00016{letter-spacing:0.065340px;}
.ls8d_c00016{letter-spacing:0.086400px;}
.ls0_c00016{letter-spacing:0.095160px;}
.lsb_c00016{letter-spacing:0.109800px;}
.ls4_c00016{letter-spacing:0.124440px;}
.ls11_c00016{letter-spacing:0.131760px;}
.ls12_c00016{letter-spacing:0.168360px;}
.lsd_c00016{letter-spacing:0.183000px;}
.lsf_c00016{letter-spacing:0.226920px;}
.lsa_c00016{letter-spacing:0.241560px;}
.ls8_c00016{letter-spacing:0.329400px;}
.ls1_c00016{letter-spacing:0.358680px;}
.ls5_c00016{letter-spacing:0.505080px;}
.ls16_c00016{letter-spacing:0.519720px;}
.ls15_c00016{letter-spacing:0.578280px;}
.ls2_c00016{letter-spacing:0.995520px;}
.ls18_c00016{letter-spacing:1.222440px;}
.lse_c00016{letter-spacing:1.537200px;}
.ls19_c00016{letter-spacing:1.566480px;}
.ls7_c00016{letter-spacing:1.727520px;}
.ls17_c00016{letter-spacing:1.866600px;}
.lsc_c00016{letter-spacing:1.939800px;}
.ls14_c00016{letter-spacing:2.497440px;}
.ls52_c00016{letter-spacing:2.550000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{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__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00016{word-spacing:0.000000px;}
._1a_c00016{margin-left:-19.980000px;}
._1e_c00016{margin-left:-13.862160px;}
._1f_c00016{margin-left:-3.563880px;}
._18_c00016{margin-left:-1.859280px;}
._20_c00016{width:1.018440px;}
._19_c00016{width:2.283840px;}
._21_c00016{width:3.733200px;}
._8_c00016{width:4.793640px;}
._1d_c00016{width:5.827680px;}
._1_c00016{width:7.137000px;}
._16_c00016{width:8.271600px;}
._0_c00016{width:9.333000px;}
._6_c00016{width:10.409040px;}
._2_c00016{width:11.497920px;}
._22_c00016{width:12.575760px;}
._7_c00016{width:13.659120px;}
._b_c00016{width:14.691240px;}
._9_c00016{width:16.345560px;}
._d_c00016{width:18.966120px;}
._a_c00016{width:20.305680px;}
._13_c00016{width:21.440280px;}
._17_c00016{width:22.685940px;}
._14_c00016{width:24.382920px;}
._12_c00016{width:26.212920px;}
._15_c00016{width:28.532100px;}
._4_c00016{width:38.927760px;}
._3_c00016{width:40.406400px;}
._5_c00016{width:43.092840px;}
._23_c00016{width:47.417100px;}
._1b_c00016{width:48.458400px;}
._1c_c00016{width:50.412840px;}
._c_c00016{width:52.338000px;}
._f_c00016{width:54.680400px;}
._e_c00016{width:56.132160px;}
._11_c00016{width:58.896720px;}
._10_c00016{width:62.825160px;}
.fc0_c00016{color:transparent;}
.fs3_c00016{font-size:51.000000px;}
.fs6_c00016{font-size:61.200000px;}
.fs0_c00016{font-size:67.200000px;}
.fs4_c00016{font-size:67.800000px;}
.fs5_c00016{font-size:72.000000px;}
.fs2_c00016{font-size:72.600000px;}
.fs1_c00016{font-size:73.200000px;}
.y0_c00016{bottom:0.000000px;}
.y26_c00016{bottom:59.775000px;}
.y25_c00016{bottom:153.731400px;}
.y24_c00016{bottom:184.696200px;}
.y23_c00016{bottom:215.293800px;}
.y22_c00016{bottom:245.891400px;}
.y21_c00016{bottom:276.855000px;}
.y20_c00016{bottom:307.815000px;}
.y1f_c00016{bottom:307.819350px;}
.y1e_c00016{bottom:339.491100px;}
.y1d_c00016{bottom:370.451400px;}
.y1b_c00016{bottom:401.414700px;}
.y1c_c00016{bottom:401.415000px;}
.y1a_c00016{bottom:432.353100px;}
.y19_c00016{bottom:463.335000px;}
.y18_c00016{bottom:524.525400px;}
.y16_c00016{bottom:555.844200px;}
.y17_c00016{bottom:555.855000px;}
.y15_c00016{bottom:586.807800px;}
.y14_c00016{bottom:617.771400px;}
.y13_c00016{bottom:648.735000px;}
.y12_c00016{bottom:648.737400px;}
.y11_c00016{bottom:679.335000px;}
.y10_c00016{bottom:741.254700px;}
.yf_c00016{bottom:772.199100px;}
.ye_c00016{bottom:802.815000px;}
.yd_c00016{bottom:802.823700px;}
.yb_c00016{bottom:834.134700px;}
.yc_c00016{bottom:834.135000px;}
.ya_c00016{bottom:865.076400px;}
.y9_c00016{bottom:896.040000px;}
.y8_c00016{bottom:927.000000px;}
.y7_c00016{bottom:988.556400px;}
.y5_c00016{bottom:1019.513100px;}
.y6_c00016{bottom:1019.520000px;}
.y4_c00016{bottom:1050.509400px;}
.y3_c00016{bottom:1081.088700px;}
.y2_c00016{bottom:1112.400000px;}
.y1_c00016{bottom:1188.360000px;}
.h5_c00016{height:50.053711px;}
.hc_c00016{height:60.064453px;}
.h2_c00016{height:65.953125px;}
.hb_c00016{height:70.628906px;}
.h9_c00016{height:71.217480px;}
.ha_c00016{height:71.824397px;}
.h3_c00016{height:71.841797px;}
.h8_c00016{height:71.842997px;}
.h6_c00016{height:71.845397px;}
.h4_c00016{height:71.856197px;}
.h7_c00016{height:71.869397px;}
.h1_c00016{height:1263.000000px;}
.h0_c00016{height:1263.240000px;}
.w1_c00016{width:892.500000px;}
.w0_c00016{width:892.800000px;}
.x0_c00016{left:0.000000px;}
.x23_c00016{left:120.018900px;}
.x17_c00016{left:121.837800px;}
.xd_c00016{left:123.150000px;}
.x6_c00016{left:125.231100px;}
.x1_c00016{left:127.050000px;}
.x14_c00016{left:176.295000px;}
.x9_c00016{left:177.825000px;}
.x25_c00016{left:200.940000px;}
.x2_c00016{left:210.495000px;}
.x1a_c00016{left:211.515000px;}
.x1b_c00016{left:233.490000px;}
.x3_c00016{left:238.065000px;}
.x26_c00016{left:243.165000px;}
.x27_c00016{left:270.525000px;}
.x4_c00016{left:273.585000px;}
.x15_c00016{left:287.370000px;}
.x5_c00016{left:292.950000px;}
.x16_c00016{left:323.265000px;}
.xa_c00016{left:432.180000px;}
.xb_c00016{left:463.125000px;}
.x1c_c00016{left:490.170000px;}
.x1d_c00016{left:507.705000px;}
.xe_c00016{left:521.385000px;}
.x1e_c00016{left:538.320000px;}
.xf_c00016{left:557.625000px;}
.x1f_c00016{left:560.850000px;}
.x18_c00016{left:587.370000px;}
.x7_c00016{left:596.850000px;}
.x12_c00016{left:606.510000px;}
.x10_c00016{left:607.515000px;}
.x24_c00016{left:611.115000px;}
.x13_c00016{left:633.420000px;}
.x8_c00016{left:657.525000px;}
.x11_c00016{left:664.920000px;}
.x20_c00016{left:685.575000px;}
.x21_c00016{left:708.315000px;}
.x19_c00016{left:710.475000px;}
.x22_c00016{left:731.370000px;}
.xc_c00016{left:732.750000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls1d_c00016{letter-spacing:-2.277333pt;}
.ls3f_c00016{letter-spacing:-2.238293pt;}
.ls1b_c00016{letter-spacing:-2.090667pt;}
.ls32_c00016{letter-spacing:-2.043093pt;}
.ls34_c00016{letter-spacing:-1.893440pt;}
.ls77_c00016{letter-spacing:-1.815360pt;}
.ls4d_c00016{letter-spacing:-1.755307pt;}
.ls23_c00016{letter-spacing:-1.665707pt;}
.ls30_c00016{letter-spacing:-1.600640pt;}
.ls31_c00016{letter-spacing:-1.574613pt;}
.ls56_c00016{letter-spacing:-1.490027pt;}
.ls74_c00016{letter-spacing:-1.457493pt;}
.ls65_c00016{letter-spacing:-1.372907pt;}
.ls97_c00016{letter-spacing:-1.301333pt;}
.ls5e_c00016{letter-spacing:-1.294827pt;}
.ls98_c00016{letter-spacing:-1.281813pt;}
.ls6a_c00016{letter-spacing:-1.190720pt;}
.ls22_c00016{letter-spacing:-1.171200pt;}
.ls44_c00016{letter-spacing:-1.158187pt;}
.ls5d_c00016{letter-spacing:-1.145173pt;}
.ls79_c00016{letter-spacing:-1.067093pt;}
.ls4b_c00016{letter-spacing:-1.054080pt;}
.ls4e_c00016{letter-spacing:-1.013173pt;}
.ls75_c00016{letter-spacing:-1.002027pt;}
.ls1c_c00016{letter-spacing:-0.989013pt;}
.ls7f_c00016{letter-spacing:-0.976000pt;}
.ls6f_c00016{letter-spacing:-0.956480pt;}
.ls84_c00016{letter-spacing:-0.935733pt;}
.ls54_c00016{letter-spacing:-0.923947pt;}
.ls1e_c00016{letter-spacing:-0.904427pt;}
.ls96_c00016{letter-spacing:-0.852373pt;}
.ls67_c00016{letter-spacing:-0.845867pt;}
.ls73_c00016{letter-spacing:-0.832853pt;}
.ls63_c00016{letter-spacing:-0.826347pt;}
.ls81_c00016{letter-spacing:-0.787307pt;}
.ls59_c00016{letter-spacing:-0.761280pt;}
.ls5b_c00016{letter-spacing:-0.735253pt;}
.ls7d_c00016{letter-spacing:-0.722240pt;}
.ls88_c00016{letter-spacing:-0.716320pt;}
.ls7c_c00016{letter-spacing:-0.715733pt;}
.ls69_c00016{letter-spacing:-0.709227pt;}
.ls41_c00016{letter-spacing:-0.702720pt;}
.ls85_c00016{letter-spacing:-0.651787pt;}
.ls43_c00016{letter-spacing:-0.637653pt;}
.ls5a_c00016{letter-spacing:-0.631147pt;}
.ls6d_c00016{letter-spacing:-0.618133pt;}
.ls80_c00016{letter-spacing:-0.606613pt;}
.ls83_c00016{letter-spacing:-0.600160pt;}
.ls72_c00016{letter-spacing:-0.592107pt;}
.ls2d_c00016{letter-spacing:-0.585600pt;}
.ls76_c00016{letter-spacing:-0.572587pt;}
.ls4f_c00016{letter-spacing:-0.566080pt;}
.ls82_c00016{letter-spacing:-0.561440pt;}
.ls37_c00016{letter-spacing:-0.553067pt;}
.ls8e_c00016{letter-spacing:-0.546560pt;}
.ls27_c00016{letter-spacing:-0.533547pt;}
.ls2b_c00016{letter-spacing:-0.527040pt;}
.ls33_c00016{letter-spacing:-0.520533pt;}
.ls93_c00016{letter-spacing:-0.514027pt;}
.ls20_c00016{letter-spacing:-0.507520pt;}
.ls60_c00016{letter-spacing:-0.501013pt;}
.ls35_c00016{letter-spacing:-0.494507pt;}
.ls6c_c00016{letter-spacing:-0.488000pt;}
.ls47_c00016{letter-spacing:-0.481493pt;}
.ls48_c00016{letter-spacing:-0.477547pt;}
.ls68_c00016{letter-spacing:-0.474987pt;}
.ls87_c00016{letter-spacing:-0.471093pt;}
.ls6e_c00016{letter-spacing:-0.468480pt;}
.ls66_c00016{letter-spacing:-0.461973pt;}
.ls89_c00016{letter-spacing:-0.458187pt;}
.ls36_c00016{letter-spacing:-0.442453pt;}
.ls53_c00016{letter-spacing:-0.429440pt;}
.ls42_c00016{letter-spacing:-0.422933pt;}
.ls25_c00016{letter-spacing:-0.416427pt;}
.ls3b_c00016{letter-spacing:-0.409920pt;}
.ls29_c00016{letter-spacing:-0.403413pt;}
.ls4c_c00016{letter-spacing:-0.390400pt;}
.ls39_c00016{letter-spacing:-0.383893pt;}
.ls38_c00016{letter-spacing:-0.370880pt;}
.ls3e_c00016{letter-spacing:-0.364373pt;}
.ls45_c00016{letter-spacing:-0.357867pt;}
.ls40_c00016{letter-spacing:-0.351360pt;}
.ls7e_c00016{letter-spacing:-0.344853pt;}
.ls62_c00016{letter-spacing:-0.331840pt;}
.ls26_c00016{letter-spacing:-0.325333pt;}
.ls2f_c00016{letter-spacing:-0.318827pt;}
.ls5c_c00016{letter-spacing:-0.316213pt;}
.ls57_c00016{letter-spacing:-0.312320pt;}
.ls86_c00016{letter-spacing:-0.303307pt;}
.ls28_c00016{letter-spacing:-0.299307pt;}
.ls2c_c00016{letter-spacing:-0.292800pt;}
.ls24_c00016{letter-spacing:-0.279787pt;}
.ls8a_c00016{letter-spacing:-0.273280pt;}
.ls46_c00016{letter-spacing:-0.266773pt;}
.ls2e_c00016{letter-spacing:-0.260267pt;}
.ls3c_c00016{letter-spacing:-0.240747pt;}
.ls50_c00016{letter-spacing:-0.227733pt;}
.ls5f_c00016{letter-spacing:-0.221227pt;}
.ls3a_c00016{letter-spacing:-0.214720pt;}
.ls7a_c00016{letter-spacing:-0.212960pt;}
.ls61_c00016{letter-spacing:-0.208213pt;}
.ls7b_c00016{letter-spacing:-0.206507pt;}
.ls99_c00016{letter-spacing:-0.201707pt;}
.ls3d_c00016{letter-spacing:-0.195200pt;}
.ls95_c00016{letter-spacing:-0.169173pt;}
.ls90_c00016{letter-spacing:-0.156160pt;}
.ls49_c00016{letter-spacing:-0.135520pt;}
.ls58_c00016{letter-spacing:-0.130133pt;}
.ls8b_c00016{letter-spacing:-0.123627pt;}
.ls8f_c00016{letter-spacing:-0.117120pt;}
.ls8c_c00016{letter-spacing:-0.116160pt;}
.ls91_c00016{letter-spacing:-0.110613pt;}
.ls51_c00016{letter-spacing:-0.097600pt;}
.ls94_c00016{letter-spacing:-0.091093pt;}
.ls92_c00016{letter-spacing:-0.084587pt;}
.ls4a_c00016{letter-spacing:-0.083893pt;}
.ls6b_c00016{letter-spacing:-0.078080pt;}
.ls64_c00016{letter-spacing:-0.071573pt;}
.ls78_c00016{letter-spacing:-0.058560pt;}
.ls71_c00016{letter-spacing:-0.052053pt;}
.ls21_c00016{letter-spacing:-0.045547pt;}
.ls1f_c00016{letter-spacing:-0.032533pt;}
.ls70_c00016{letter-spacing:-0.019520pt;}
.ls55_c00016{letter-spacing:-0.013013pt;}
.ls2a_c00016{letter-spacing:0.000000pt;}
.ls9_c00016{letter-spacing:0.006453pt;}
.ls13_c00016{letter-spacing:0.006507pt;}
.ls3_c00016{letter-spacing:0.019520pt;}
.ls10_c00016{letter-spacing:0.026027pt;}
.ls1a_c00016{letter-spacing:0.039040pt;}
.ls6_c00016{letter-spacing:0.058080pt;}
.ls8d_c00016{letter-spacing:0.076800pt;}
.ls0_c00016{letter-spacing:0.084587pt;}
.lsb_c00016{letter-spacing:0.097600pt;}
.ls4_c00016{letter-spacing:0.110613pt;}
.ls11_c00016{letter-spacing:0.117120pt;}
.ls12_c00016{letter-spacing:0.149653pt;}
.lsd_c00016{letter-spacing:0.162667pt;}
.lsf_c00016{letter-spacing:0.201707pt;}
.lsa_c00016{letter-spacing:0.214720pt;}
.ls8_c00016{letter-spacing:0.292800pt;}
.ls1_c00016{letter-spacing:0.318827pt;}
.ls5_c00016{letter-spacing:0.448960pt;}
.ls16_c00016{letter-spacing:0.461973pt;}
.ls15_c00016{letter-spacing:0.514027pt;}
.ls2_c00016{letter-spacing:0.884907pt;}
.ls18_c00016{letter-spacing:1.086613pt;}
.lse_c00016{letter-spacing:1.366400pt;}
.ls19_c00016{letter-spacing:1.392427pt;}
.ls7_c00016{letter-spacing:1.535573pt;}
.ls17_c00016{letter-spacing:1.659200pt;}
.lsc_c00016{letter-spacing:1.724267pt;}
.ls14_c00016{letter-spacing:2.219947pt;}
.ls52_c00016{letter-spacing:2.266667pt;}
.ws0_c00016{word-spacing:0.000000pt;}
._1a_c00016{margin-left:-17.760000pt;}
._1e_c00016{margin-left:-12.321920pt;}
._1f_c00016{margin-left:-3.167893pt;}
._18_c00016{margin-left:-1.652693pt;}
._20_c00016{width:0.905280pt;}
._19_c00016{width:2.030080pt;}
._21_c00016{width:3.318400pt;}
._8_c00016{width:4.261013pt;}
._1d_c00016{width:5.180160pt;}
._1_c00016{width:6.344000pt;}
._16_c00016{width:7.352533pt;}
._0_c00016{width:8.296000pt;}
._6_c00016{width:9.252480pt;}
._2_c00016{width:10.220373pt;}
._22_c00016{width:11.178453pt;}
._7_c00016{width:12.141440pt;}
._b_c00016{width:13.058880pt;}
._9_c00016{width:14.529387pt;}
._d_c00016{width:16.858773pt;}
._a_c00016{width:18.049493pt;}
._13_c00016{width:19.058027pt;}
._17_c00016{width:20.165280pt;}
._14_c00016{width:21.673707pt;}
._12_c00016{width:23.300373pt;}
._15_c00016{width:25.361867pt;}
._4_c00016{width:34.602453pt;}
._3_c00016{width:35.916800pt;}
._5_c00016{width:38.304747pt;}
._23_c00016{width:42.148533pt;}
._1b_c00016{width:43.074133pt;}
._1c_c00016{width:44.811413pt;}
._c_c00016{width:46.522667pt;}
._f_c00016{width:48.604800pt;}
._e_c00016{width:49.895253pt;}
._11_c00016{width:52.352640pt;}
._10_c00016{width:55.844587pt;}
.fs3_c00016{font-size:45.333333pt;}
.fs6_c00016{font-size:54.400000pt;}
.fs0_c00016{font-size:59.733333pt;}
.fs4_c00016{font-size:60.266667pt;}
.fs5_c00016{font-size:64.000000pt;}
.fs2_c00016{font-size:64.533333pt;}
.fs1_c00016{font-size:65.066667pt;}
.y0_c00016{bottom:0.000000pt;}
.y26_c00016{bottom:53.133333pt;}
.y25_c00016{bottom:136.650133pt;}
.y24_c00016{bottom:164.174400pt;}
.y23_c00016{bottom:191.372267pt;}
.y22_c00016{bottom:218.570133pt;}
.y21_c00016{bottom:246.093333pt;}
.y20_c00016{bottom:273.613333pt;}
.y1f_c00016{bottom:273.617200pt;}
.y1e_c00016{bottom:301.769867pt;}
.y1d_c00016{bottom:329.290133pt;}
.y1b_c00016{bottom:356.813067pt;}
.y1c_c00016{bottom:356.813333pt;}
.y1a_c00016{bottom:384.313867pt;}
.y19_c00016{bottom:411.853333pt;}
.y18_c00016{bottom:466.244800pt;}
.y16_c00016{bottom:494.083733pt;}
.y17_c00016{bottom:494.093333pt;}
.y15_c00016{bottom:521.606933pt;}
.y14_c00016{bottom:549.130133pt;}
.y13_c00016{bottom:576.653333pt;}
.y12_c00016{bottom:576.655467pt;}
.y11_c00016{bottom:603.853333pt;}
.y10_c00016{bottom:658.893067pt;}
.yf_c00016{bottom:686.399200pt;}
.ye_c00016{bottom:713.613333pt;}
.yd_c00016{bottom:713.621067pt;}
.yb_c00016{bottom:741.453067pt;}
.yc_c00016{bottom:741.453333pt;}
.ya_c00016{bottom:768.956800pt;}
.y9_c00016{bottom:796.480000pt;}
.y8_c00016{bottom:824.000000pt;}
.y7_c00016{bottom:878.716800pt;}
.y5_c00016{bottom:906.233867pt;}
.y6_c00016{bottom:906.240000pt;}
.y4_c00016{bottom:933.786133pt;}
.y3_c00016{bottom:960.967733pt;}
.y2_c00016{bottom:988.800000pt;}
.y1_c00016{bottom:1056.320000pt;}
.h5_c00016{height:44.492188pt;}
.hc_c00016{height:53.390625pt;}
.h2_c00016{height:58.625000pt;}
.hb_c00016{height:62.781250pt;}
.h9_c00016{height:63.304427pt;}
.ha_c00016{height:63.843908pt;}
.h3_c00016{height:63.859375pt;}
.h8_c00016{height:63.860442pt;}
.h6_c00016{height:63.862575pt;}
.h4_c00016{height:63.872175pt;}
.h7_c00016{height:63.883908pt;}
.h1_c00016{height:1122.666667pt;}
.h0_c00016{height:1122.880000pt;}
.w1_c00016{width:793.333333pt;}
.w0_c00016{width:793.600000pt;}
.x0_c00016{left:0.000000pt;}
.x23_c00016{left:106.683467pt;}
.x17_c00016{left:108.300267pt;}
.xd_c00016{left:109.466667pt;}
.x6_c00016{left:111.316533pt;}
.x1_c00016{left:112.933333pt;}
.x14_c00016{left:156.706667pt;}
.x9_c00016{left:158.066667pt;}
.x25_c00016{left:178.613333pt;}
.x2_c00016{left:187.106667pt;}
.x1a_c00016{left:188.013333pt;}
.x1b_c00016{left:207.546667pt;}
.x3_c00016{left:211.613333pt;}
.x26_c00016{left:216.146667pt;}
.x27_c00016{left:240.466667pt;}
.x4_c00016{left:243.186667pt;}
.x15_c00016{left:255.440000pt;}
.x5_c00016{left:260.400000pt;}
.x16_c00016{left:287.346667pt;}
.xa_c00016{left:384.160000pt;}
.xb_c00016{left:411.666667pt;}
.x1c_c00016{left:435.706667pt;}
.x1d_c00016{left:451.293333pt;}
.xe_c00016{left:463.453333pt;}
.x1e_c00016{left:478.506667pt;}
.xf_c00016{left:495.666667pt;}
.x1f_c00016{left:498.533333pt;}
.x18_c00016{left:522.106667pt;}
.x7_c00016{left:530.533333pt;}
.x12_c00016{left:539.120000pt;}
.x10_c00016{left:540.013333pt;}
.x24_c00016{left:543.213333pt;}
.x13_c00016{left:563.040000pt;}
.x8_c00016{left:584.466667pt;}
.x11_c00016{left:591.040000pt;}
.x20_c00016{left:609.400000pt;}
.x21_c00016{left:629.613333pt;}
.x19_c00016{left:631.533333pt;}
.x22_c00016{left:650.106667pt;}
.xc_c00016{left:651.333333pt;}
}





/* 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_c00017 {
    display:none;
  }
  .loading-indicator_c00017.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00017 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_c00017 { 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_c00017" -> "#page-container .classname_c00017")
 */
.pf_c00017 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00017 { /* 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_c00017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00017 { /* 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_c00017 { /* 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_c00017 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00017 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00017 {overflow:visible;}
  }
}
.c_c00017 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00017 { /* 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_c00017:after { /* webkit #35443 */
  content: '';
}
.t_c00017:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00017 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 */
}
.__c00017 { /* 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_c00017 { /* info for Javascript */
  display:none;
}
.l_c00017 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00017 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00017 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00017: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_c00017 {
    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_c00017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00017.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_c00017 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00017;src:url('chunks/assets/font_d56f985cd7cd5d749645c72b.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.284668;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_c00017;src:url('chunks/assets/font_f20e93d3ce25cada4340f7c3.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.284180;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_c00017;src:url('chunks/assets/font_2fa586dd68fd154c0e9af42f.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:1.311035;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_c00017;src:url('chunks/assets/font_1418e5c894f580ba7efd0b4d.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;line-height:0.666000;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;}
.m6_c00017{transform:matrix(0.110039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110039,0.000000,0.000000,0.250000,0,0);}
.m7_c00017{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);}
.m5_c00017{transform:matrix(0.230417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230417,0.000000,0.000000,0.250000,0,0);}
.mb_c00017{transform:matrix(0.236223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236223,0.000000,0.000000,0.250000,0,0);}
.m8_c00017{transform:matrix(0.238006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238006,0.000000,0.000000,0.250000,0,0);}
.m2_c00017{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.m4_c00017{transform:matrix(0.241873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241873,0.000000,0.000000,0.250000,0,0);}
.mc_c00017{transform:matrix(0.243273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243273,0.000000,0.000000,0.250000,0,0);}
.m3_c00017{transform:matrix(0.244279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244279,0.000000,0.000000,0.250000,0,0);}
.md_c00017{transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);}
.ma_c00017{transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);}
.m9_c00017{transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);}
.m0_c00017{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);}
.v0_c00017{vertical-align:0.000000px;}
.ls59_c00017{letter-spacing:-2.541000px;}
.ls79_c00017{letter-spacing:-2.520000px;}
.ls3d_c00017{letter-spacing:-2.448000px;}
.ls7a_c00017{letter-spacing:-2.354400px;}
.ls41_c00017{letter-spacing:-2.080800px;}
.ls32_c00017{letter-spacing:-1.947000px;}
.ls54_c00017{letter-spacing:-1.922400px;}
.ls35_c00017{letter-spacing:-1.828800px;}
.ls7b_c00017{letter-spacing:-1.807200px;}
.ls44_c00017{letter-spacing:-1.785600px;}
.ls6d_c00017{letter-spacing:-1.670400px;}
.ls3e_c00017{letter-spacing:-1.591200px;}
.ls4c_c00017{letter-spacing:-1.454400px;}
.ls97_c00017{letter-spacing:-1.353600px;}
.ls91_c00017{letter-spacing:-1.274400px;}
.ls94_c00017{letter-spacing:-1.267200px;}
.ls52_c00017{letter-spacing:-1.216800px;}
.ls53_c00017{letter-spacing:-1.180800px;}
.ls63_c00017{letter-spacing:-1.166400px;}
.ls3f_c00017{letter-spacing:-1.130400px;}
.ls64_c00017{letter-spacing:-1.116000px;}
.ls45_c00017{letter-spacing:-1.108800px;}
.ls50_c00017{letter-spacing:-1.065600px;}
.ls96_c00017{letter-spacing:-1.044000px;}
.ls67_c00017{letter-spacing:-1.029600px;}
.ls51_c00017{letter-spacing:-1.015200px;}
.ls43_c00017{letter-spacing:-1.008000px;}
.ls66_c00017{letter-spacing:-0.993600px;}
.ls85_c00017{letter-spacing:-0.979200px;}
.ls8f_c00017{letter-spacing:-0.957600px;}
.ls5e_c00017{letter-spacing:-0.885600px;}
.ls8c_c00017{letter-spacing:-0.878400px;}
.ls7c_c00017{letter-spacing:-0.792000px;}
.ls5b_c00017{letter-spacing:-0.770400px;}
.ls78_c00017{letter-spacing:-0.698400px;}
.ls65_c00017{letter-spacing:-0.676800px;}
.ls8b_c00017{letter-spacing:-0.655200px;}
.ls84_c00017{letter-spacing:-0.652860px;}
.ls38_c00017{letter-spacing:-0.640800px;}
.ls69_c00017{letter-spacing:-0.604800px;}
.ls77_c00017{letter-spacing:-0.568800px;}
.ls6b_c00017{letter-spacing:-0.533520px;}
.ls62_c00017{letter-spacing:-0.525600px;}
.ls93_c00017{letter-spacing:-0.496800px;}
.ls37_c00017{letter-spacing:-0.460800px;}
.ls70_c00017{letter-spacing:-0.446400px;}
.ls82_c00017{letter-spacing:-0.432000px;}
.ls73_c00017{letter-spacing:-0.417600px;}
.ls8d_c00017{letter-spacing:-0.403200px;}
.ls48_c00017{letter-spacing:-0.396000px;}
.ls5d_c00017{letter-spacing:-0.388800px;}
.ls89_c00017{letter-spacing:-0.381600px;}
.ls83_c00017{letter-spacing:-0.367200px;}
.ls4e_c00017{letter-spacing:-0.360000px;}
.ls71_c00017{letter-spacing:-0.352800px;}
.ls6f_c00017{letter-spacing:-0.345600px;}
.ls76_c00017{letter-spacing:-0.338400px;}
.ls68_c00017{letter-spacing:-0.331200px;}
.ls7e_c00017{letter-spacing:-0.324000px;}
.ls80_c00017{letter-spacing:-0.316800px;}
.ls86_c00017{letter-spacing:-0.302400px;}
.ls8e_c00017{letter-spacing:-0.295200px;}
.ls92_c00017{letter-spacing:-0.288000px;}
.ls5f_c00017{letter-spacing:-0.266400px;}
.ls6e_c00017{letter-spacing:-0.252000px;}
.ls3b_c00017{letter-spacing:-0.244800px;}
.ls4b_c00017{letter-spacing:-0.230400px;}
.ls5a_c00017{letter-spacing:-0.223200px;}
.ls7f_c00017{letter-spacing:-0.216000px;}
.ls3c_c00017{letter-spacing:-0.201600px;}
.ls4d_c00017{letter-spacing:-0.194400px;}
.ls87_c00017{letter-spacing:-0.180000px;}
.ls6c_c00017{letter-spacing:-0.175500px;}
.ls90_c00017{letter-spacing:-0.172800px;}
.ls4f_c00017{letter-spacing:-0.165600px;}
.ls4a_c00017{letter-spacing:-0.158400px;}
.ls36_c00017{letter-spacing:-0.151200px;}
.ls57_c00017{letter-spacing:-0.144000px;}
.ls61_c00017{letter-spacing:-0.129600px;}
.ls7d_c00017{letter-spacing:-0.122400px;}
.ls46_c00017{letter-spacing:-0.115200px;}
.ls42_c00017{letter-spacing:-0.108000px;}
.ls74_c00017{letter-spacing:-0.100800px;}
.ls95_c00017{letter-spacing:-0.093600px;}
.ls6a_c00017{letter-spacing:-0.086400px;}
.ls8a_c00017{letter-spacing:-0.079200px;}
.ls39_c00017{letter-spacing:-0.072000px;}
.ls34_c00017{letter-spacing:-0.064800px;}
.ls49_c00017{letter-spacing:-0.057600px;}
.ls81_c00017{letter-spacing:-0.050400px;}
.ls58_c00017{letter-spacing:-0.036000px;}
.ls40_c00017{letter-spacing:-0.028800px;}
.ls5c_c00017{letter-spacing:-0.021600px;}
.ls56_c00017{letter-spacing:-0.014400px;}
.ls33_c00017{letter-spacing:0.000000px;}
.ls47_c00017{letter-spacing:0.007200px;}
.ls20_c00017{letter-spacing:0.014400px;}
.ls75_c00017{letter-spacing:0.021600px;}
.ls22_c00017{letter-spacing:0.028800px;}
.ls1f_c00017{letter-spacing:0.043200px;}
.ls21_c00017{letter-spacing:0.050400px;}
.ls6_c00017{letter-spacing:0.057600px;}
.ls8_c00017{letter-spacing:0.064800px;}
.ls17_c00017{letter-spacing:0.079200px;}
.lsa_c00017{letter-spacing:0.086400px;}
.ls4_c00017{letter-spacing:0.100800px;}
.ls3_c00017{letter-spacing:0.108000px;}
.ls9_c00017{letter-spacing:0.158400px;}
.ls5_c00017{letter-spacing:0.165600px;}
.lsc_c00017{letter-spacing:0.168480px;}
.ls27_c00017{letter-spacing:0.172800px;}
.ls2c_c00017{letter-spacing:0.208800px;}
.ls1_c00017{letter-spacing:0.216000px;}
.lsd_c00017{letter-spacing:0.231660px;}
.ls2e_c00017{letter-spacing:0.237600px;}
.ls1d_c00017{letter-spacing:0.259200px;}
.ls25_c00017{letter-spacing:0.280800px;}
.ls14_c00017{letter-spacing:0.288000px;}
.ls88_c00017{letter-spacing:0.295200px;}
.ls3a_c00017{letter-spacing:0.302400px;}
.ls98_c00017{letter-spacing:0.316800px;}
.ls28_c00017{letter-spacing:0.324000px;}
.ls10_c00017{letter-spacing:0.329940px;}
.ls2f_c00017{letter-spacing:0.374400px;}
.ls72_c00017{letter-spacing:0.410400px;}
.ls12_c00017{letter-spacing:0.414180px;}
.ls24_c00017{letter-spacing:0.439200px;}
.ls2d_c00017{letter-spacing:0.468000px;}
.ls26_c00017{letter-spacing:0.496800px;}
.ls2b_c00017{letter-spacing:0.505440px;}
.ls11_c00017{letter-spacing:0.532800px;}
.ls0_c00017{letter-spacing:0.540000px;}
.ls19_c00017{letter-spacing:0.554400px;}
.ls31_c00017{letter-spacing:0.576000px;}
.ls1e_c00017{letter-spacing:0.633600px;}
.ls18_c00017{letter-spacing:0.662400px;}
.ls1c_c00017{letter-spacing:0.702000px;}
.ls2_c00017{letter-spacing:0.720000px;}
.lse_c00017{letter-spacing:0.800280px;}
.ls55_c00017{letter-spacing:0.856440px;}
.ls16_c00017{letter-spacing:0.891540px;}
.ls13_c00017{letter-spacing:0.900000px;}
.ls29_c00017{letter-spacing:0.912600px;}
.lsf_c00017{letter-spacing:0.954720px;}
.ls1a_c00017{letter-spacing:0.982800px;}
.ls23_c00017{letter-spacing:1.296000px;}
.lsb_c00017{letter-spacing:1.340820px;}
.ls30_c00017{letter-spacing:1.425600px;}
.ls2a_c00017{letter-spacing:1.628640px;}
.ls60_c00017{letter-spacing:1.902420px;}
.ls15_c00017{letter-spacing:1.958580px;}
.ls7_c00017{letter-spacing:2.116800px;}
.ls1b_c00017{letter-spacing:3.285360px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{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__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:0.000000px;}
._1b_c00017{margin-left:-4.066800px;}
._17_c00017{margin-left:-2.260800px;}
._1e_c00017{margin-left:-1.161060px;}
._7_c00017{width:1.778400px;}
._19_c00017{width:3.398400px;}
._18_c00017{width:4.788000px;}
._1a_c00017{width:6.077400px;}
._14_c00017{width:7.246800px;}
._10_c00017{width:8.264760px;}
._1c_c00017{width:9.460800px;}
._12_c00017{width:10.792920px;}
._11_c00017{width:12.066240px;}
._b_c00017{width:14.083200px;}
._15_c00017{width:15.372000px;}
._13_c00017{width:16.632600px;}
._1d_c00017{width:19.901640px;}
._16_c00017{width:23.241360px;}
._2_c00017{width:24.948000px;}
._0_c00017{width:26.460000px;}
._6_c00017{width:27.576000px;}
._4_c00017{width:29.037600px;}
._5_c00017{width:30.873600px;}
._3_c00017{width:32.392800px;}
._8_c00017{width:33.595200px;}
._9_c00017{width:34.718400px;}
._c_c00017{width:36.583200px;}
._a_c00017{width:37.944000px;}
._d_c00017{width:39.420000px;}
._e_c00017{width:41.248800px;}
._f_c00017{width:43.243200px;}
._1_c00017{width:69.468000px;}
.fc0_c00017{color:transparent;}
.fs4_c00017{font-size:53.280000px;}
.fs5_c00017{font-size:58.800000px;}
.fs0_c00017{font-size:66.000000px;}
.fs2_c00017{font-size:70.200000px;}
.fs1_c00017{font-size:72.000000px;}
.fs3_c00017{font-size:72.600000px;}
.y0_c00017{bottom:0.000000px;}
.y1e_c00017{bottom:66.255015px;}
.y1d_c00017{bottom:160.560015px;}
.y1c_c00017{bottom:191.178015px;}
.y1b_c00017{bottom:222.120015px;}
.y1a_c00017{bottom:284.418015px;}
.y19_c00017{bottom:314.997015px;}
.y18_c00017{bottom:345.255015px;}
.y17_c00017{bottom:375.855015px;}
.y16_c00017{bottom:407.175015px;}
.y15_c00017{bottom:438.138015px;}
.y14_c00017{bottom:469.080015px;}
.y13_c00017{bottom:499.680015px;}
.y12_c00017{bottom:530.655015px;}
.y11_c00017{bottom:592.575015px;}
.y10_c00017{bottom:623.175015px;}
.yf_c00017{bottom:653.757015px;}
.ye_c00017{bottom:684.735015px;}
.yd_c00017{bottom:715.677015px;}
.yc_c00017{bottom:777.255015px;}
.yb_c00017{bottom:808.560015px;}
.ya_c00017{bottom:839.520015px;}
.y9_c00017{bottom:870.837015px;}
.y8_c00017{bottom:901.456815px;}
.y7_c00017{bottom:932.418015px;}
.y6_c00017{bottom:963.000015px;}
.y5_c00017{bottom:993.618015px;}
.y4_c00017{bottom:1024.200015px;}
.y3_c00017{bottom:1085.418015px;}
.y2_c00017{bottom:1116.720015px;}
.y1_c00017{bottom:1192.335015px;}
.h8_c00017{height:35.484480px;}
.h9_c00017{height:57.708984px;}
.h2_c00017{height:64.775391px;}
.h4_c00017{height:70.656862px;}
.h3_c00017{height:70.664062px;}
.h5_c00017{height:70.676063px;}
.h6_c00017{height:71.252930px;}
.h7_c00017{height:72.562500px;}
.h1_c00017{height:1263.000000px;}
.h0_c00017{height:1263.240015px;}
.w1_c00017{width:892.500000px;}
.w0_c00017{width:892.800015px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:124.530015px;}
.x3_c00017{left:125.553015px;}
.x2_c00017{left:178.455015px;}
.x6_c00017{left:216.135015px;}
.x4_c00017{left:254.715015px;}
.x5_c00017{left:276.330015px;}
.x7_c00017{left:288.630015px;}
.x8_c00017{left:329.775015px;}
.x9_c00017{left:376.710015px;}
.xa_c00017{left:431.550015px;}
.x14_c00017{left:432.555015px;}
.xb_c00017{left:497.325015px;}
.xc_c00017{left:519.735015px;}
.xd_c00017{left:586.245015px;}
.xe_c00017{left:608.640015px;}
.xf_c00017{left:649.350015px;}
.x12_c00017{left:658.995015px;}
.x13_c00017{left:686.370015px;}
.x10_c00017{left:691.470015px;}
.x11_c00017{left:733.485015px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls59_c00017{letter-spacing:-2.258667pt;}
.ls79_c00017{letter-spacing:-2.240000pt;}
.ls3d_c00017{letter-spacing:-2.176000pt;}
.ls7a_c00017{letter-spacing:-2.092800pt;}
.ls41_c00017{letter-spacing:-1.849600pt;}
.ls32_c00017{letter-spacing:-1.730667pt;}
.ls54_c00017{letter-spacing:-1.708800pt;}
.ls35_c00017{letter-spacing:-1.625600pt;}
.ls7b_c00017{letter-spacing:-1.606400pt;}
.ls44_c00017{letter-spacing:-1.587200pt;}
.ls6d_c00017{letter-spacing:-1.484800pt;}
.ls3e_c00017{letter-spacing:-1.414400pt;}
.ls4c_c00017{letter-spacing:-1.292800pt;}
.ls97_c00017{letter-spacing:-1.203200pt;}
.ls91_c00017{letter-spacing:-1.132800pt;}
.ls94_c00017{letter-spacing:-1.126400pt;}
.ls52_c00017{letter-spacing:-1.081600pt;}
.ls53_c00017{letter-spacing:-1.049600pt;}
.ls63_c00017{letter-spacing:-1.036800pt;}
.ls3f_c00017{letter-spacing:-1.004800pt;}
.ls64_c00017{letter-spacing:-0.992000pt;}
.ls45_c00017{letter-spacing:-0.985600pt;}
.ls50_c00017{letter-spacing:-0.947200pt;}
.ls96_c00017{letter-spacing:-0.928000pt;}
.ls67_c00017{letter-spacing:-0.915200pt;}
.ls51_c00017{letter-spacing:-0.902400pt;}
.ls43_c00017{letter-spacing:-0.896000pt;}
.ls66_c00017{letter-spacing:-0.883200pt;}
.ls85_c00017{letter-spacing:-0.870400pt;}
.ls8f_c00017{letter-spacing:-0.851200pt;}
.ls5e_c00017{letter-spacing:-0.787200pt;}
.ls8c_c00017{letter-spacing:-0.780800pt;}
.ls7c_c00017{letter-spacing:-0.704000pt;}
.ls5b_c00017{letter-spacing:-0.684800pt;}
.ls78_c00017{letter-spacing:-0.620800pt;}
.ls65_c00017{letter-spacing:-0.601600pt;}
.ls8b_c00017{letter-spacing:-0.582400pt;}
.ls84_c00017{letter-spacing:-0.580320pt;}
.ls38_c00017{letter-spacing:-0.569600pt;}
.ls69_c00017{letter-spacing:-0.537600pt;}
.ls77_c00017{letter-spacing:-0.505600pt;}
.ls6b_c00017{letter-spacing:-0.474240pt;}
.ls62_c00017{letter-spacing:-0.467200pt;}
.ls93_c00017{letter-spacing:-0.441600pt;}
.ls37_c00017{letter-spacing:-0.409600pt;}
.ls70_c00017{letter-spacing:-0.396800pt;}
.ls82_c00017{letter-spacing:-0.384000pt;}
.ls73_c00017{letter-spacing:-0.371200pt;}
.ls8d_c00017{letter-spacing:-0.358400pt;}
.ls48_c00017{letter-spacing:-0.352000pt;}
.ls5d_c00017{letter-spacing:-0.345600pt;}
.ls89_c00017{letter-spacing:-0.339200pt;}
.ls83_c00017{letter-spacing:-0.326400pt;}
.ls4e_c00017{letter-spacing:-0.320000pt;}
.ls71_c00017{letter-spacing:-0.313600pt;}
.ls6f_c00017{letter-spacing:-0.307200pt;}
.ls76_c00017{letter-spacing:-0.300800pt;}
.ls68_c00017{letter-spacing:-0.294400pt;}
.ls7e_c00017{letter-spacing:-0.288000pt;}
.ls80_c00017{letter-spacing:-0.281600pt;}
.ls86_c00017{letter-spacing:-0.268800pt;}
.ls8e_c00017{letter-spacing:-0.262400pt;}
.ls92_c00017{letter-spacing:-0.256000pt;}
.ls5f_c00017{letter-spacing:-0.236800pt;}
.ls6e_c00017{letter-spacing:-0.224000pt;}
.ls3b_c00017{letter-spacing:-0.217600pt;}
.ls4b_c00017{letter-spacing:-0.204800pt;}
.ls5a_c00017{letter-spacing:-0.198400pt;}
.ls7f_c00017{letter-spacing:-0.192000pt;}
.ls3c_c00017{letter-spacing:-0.179200pt;}
.ls4d_c00017{letter-spacing:-0.172800pt;}
.ls87_c00017{letter-spacing:-0.160000pt;}
.ls6c_c00017{letter-spacing:-0.156000pt;}
.ls90_c00017{letter-spacing:-0.153600pt;}
.ls4f_c00017{letter-spacing:-0.147200pt;}
.ls4a_c00017{letter-spacing:-0.140800pt;}
.ls36_c00017{letter-spacing:-0.134400pt;}
.ls57_c00017{letter-spacing:-0.128000pt;}
.ls61_c00017{letter-spacing:-0.115200pt;}
.ls7d_c00017{letter-spacing:-0.108800pt;}
.ls46_c00017{letter-spacing:-0.102400pt;}
.ls42_c00017{letter-spacing:-0.096000pt;}
.ls74_c00017{letter-spacing:-0.089600pt;}
.ls95_c00017{letter-spacing:-0.083200pt;}
.ls6a_c00017{letter-spacing:-0.076800pt;}
.ls8a_c00017{letter-spacing:-0.070400pt;}
.ls39_c00017{letter-spacing:-0.064000pt;}
.ls34_c00017{letter-spacing:-0.057600pt;}
.ls49_c00017{letter-spacing:-0.051200pt;}
.ls81_c00017{letter-spacing:-0.044800pt;}
.ls58_c00017{letter-spacing:-0.032000pt;}
.ls40_c00017{letter-spacing:-0.025600pt;}
.ls5c_c00017{letter-spacing:-0.019200pt;}
.ls56_c00017{letter-spacing:-0.012800pt;}
.ls33_c00017{letter-spacing:0.000000pt;}
.ls47_c00017{letter-spacing:0.006400pt;}
.ls20_c00017{letter-spacing:0.012800pt;}
.ls75_c00017{letter-spacing:0.019200pt;}
.ls22_c00017{letter-spacing:0.025600pt;}
.ls1f_c00017{letter-spacing:0.038400pt;}
.ls21_c00017{letter-spacing:0.044800pt;}
.ls6_c00017{letter-spacing:0.051200pt;}
.ls8_c00017{letter-spacing:0.057600pt;}
.ls17_c00017{letter-spacing:0.070400pt;}
.lsa_c00017{letter-spacing:0.076800pt;}
.ls4_c00017{letter-spacing:0.089600pt;}
.ls3_c00017{letter-spacing:0.096000pt;}
.ls9_c00017{letter-spacing:0.140800pt;}
.ls5_c00017{letter-spacing:0.147200pt;}
.lsc_c00017{letter-spacing:0.149760pt;}
.ls27_c00017{letter-spacing:0.153600pt;}
.ls2c_c00017{letter-spacing:0.185600pt;}
.ls1_c00017{letter-spacing:0.192000pt;}
.lsd_c00017{letter-spacing:0.205920pt;}
.ls2e_c00017{letter-spacing:0.211200pt;}
.ls1d_c00017{letter-spacing:0.230400pt;}
.ls25_c00017{letter-spacing:0.249600pt;}
.ls14_c00017{letter-spacing:0.256000pt;}
.ls88_c00017{letter-spacing:0.262400pt;}
.ls3a_c00017{letter-spacing:0.268800pt;}
.ls98_c00017{letter-spacing:0.281600pt;}
.ls28_c00017{letter-spacing:0.288000pt;}
.ls10_c00017{letter-spacing:0.293280pt;}
.ls2f_c00017{letter-spacing:0.332800pt;}
.ls72_c00017{letter-spacing:0.364800pt;}
.ls12_c00017{letter-spacing:0.368160pt;}
.ls24_c00017{letter-spacing:0.390400pt;}
.ls2d_c00017{letter-spacing:0.416000pt;}
.ls26_c00017{letter-spacing:0.441600pt;}
.ls2b_c00017{letter-spacing:0.449280pt;}
.ls11_c00017{letter-spacing:0.473600pt;}
.ls0_c00017{letter-spacing:0.480000pt;}
.ls19_c00017{letter-spacing:0.492800pt;}
.ls31_c00017{letter-spacing:0.512000pt;}
.ls1e_c00017{letter-spacing:0.563200pt;}
.ls18_c00017{letter-spacing:0.588800pt;}
.ls1c_c00017{letter-spacing:0.624000pt;}
.ls2_c00017{letter-spacing:0.640000pt;}
.lse_c00017{letter-spacing:0.711360pt;}
.ls55_c00017{letter-spacing:0.761280pt;}
.ls16_c00017{letter-spacing:0.792480pt;}
.ls13_c00017{letter-spacing:0.800000pt;}
.ls29_c00017{letter-spacing:0.811200pt;}
.lsf_c00017{letter-spacing:0.848640pt;}
.ls1a_c00017{letter-spacing:0.873600pt;}
.ls23_c00017{letter-spacing:1.152000pt;}
.lsb_c00017{letter-spacing:1.191840pt;}
.ls30_c00017{letter-spacing:1.267200pt;}
.ls2a_c00017{letter-spacing:1.447680pt;}
.ls60_c00017{letter-spacing:1.691040pt;}
.ls15_c00017{letter-spacing:1.740960pt;}
.ls7_c00017{letter-spacing:1.881600pt;}
.ls1b_c00017{letter-spacing:2.920320pt;}
.ws0_c00017{word-spacing:0.000000pt;}
._1b_c00017{margin-left:-3.614933pt;}
._17_c00017{margin-left:-2.009600pt;}
._1e_c00017{margin-left:-1.032053pt;}
._7_c00017{width:1.580800pt;}
._19_c00017{width:3.020800pt;}
._18_c00017{width:4.256000pt;}
._1a_c00017{width:5.402133pt;}
._14_c00017{width:6.441600pt;}
._10_c00017{width:7.346453pt;}
._1c_c00017{width:8.409600pt;}
._12_c00017{width:9.593707pt;}
._11_c00017{width:10.725547pt;}
._b_c00017{width:12.518400pt;}
._15_c00017{width:13.664000pt;}
._13_c00017{width:14.784533pt;}
._1d_c00017{width:17.690347pt;}
._16_c00017{width:20.658987pt;}
._2_c00017{width:22.176000pt;}
._0_c00017{width:23.520000pt;}
._6_c00017{width:24.512000pt;}
._4_c00017{width:25.811200pt;}
._5_c00017{width:27.443200pt;}
._3_c00017{width:28.793600pt;}
._8_c00017{width:29.862400pt;}
._9_c00017{width:30.860800pt;}
._c_c00017{width:32.518400pt;}
._a_c00017{width:33.728000pt;}
._d_c00017{width:35.040000pt;}
._e_c00017{width:36.665600pt;}
._f_c00017{width:38.438400pt;}
._1_c00017{width:61.749333pt;}
.fs4_c00017{font-size:47.360000pt;}
.fs5_c00017{font-size:52.266667pt;}
.fs0_c00017{font-size:58.666667pt;}
.fs2_c00017{font-size:62.400000pt;}
.fs1_c00017{font-size:64.000000pt;}
.fs3_c00017{font-size:64.533333pt;}
.y0_c00017{bottom:0.000000pt;}
.y1e_c00017{bottom:58.893347pt;}
.y1d_c00017{bottom:142.720013pt;}
.y1c_c00017{bottom:169.936013pt;}
.y1b_c00017{bottom:197.440013pt;}
.y1a_c00017{bottom:252.816013pt;}
.y19_c00017{bottom:279.997347pt;}
.y18_c00017{bottom:306.893347pt;}
.y17_c00017{bottom:334.093347pt;}
.y16_c00017{bottom:361.933347pt;}
.y15_c00017{bottom:389.456013pt;}
.y14_c00017{bottom:416.960013pt;}
.y13_c00017{bottom:444.160013pt;}
.y12_c00017{bottom:471.693347pt;}
.y11_c00017{bottom:526.733347pt;}
.y10_c00017{bottom:553.933347pt;}
.yf_c00017{bottom:581.117347pt;}
.ye_c00017{bottom:608.653347pt;}
.yd_c00017{bottom:636.157347pt;}
.yc_c00017{bottom:690.893347pt;}
.yb_c00017{bottom:718.720013pt;}
.ya_c00017{bottom:746.240013pt;}
.y9_c00017{bottom:774.077347pt;}
.y8_c00017{bottom:801.294947pt;}
.y7_c00017{bottom:828.816013pt;}
.y6_c00017{bottom:856.000013pt;}
.y5_c00017{bottom:883.216013pt;}
.y4_c00017{bottom:910.400013pt;}
.y3_c00017{bottom:964.816013pt;}
.y2_c00017{bottom:992.640013pt;}
.y1_c00017{bottom:1059.853347pt;}
.h8_c00017{height:31.541760pt;}
.h9_c00017{height:51.296875pt;}
.h2_c00017{height:57.578125pt;}
.h4_c00017{height:62.806100pt;}
.h3_c00017{height:62.812500pt;}
.h5_c00017{height:62.823167pt;}
.h6_c00017{height:63.335938pt;}
.h7_c00017{height:64.500000pt;}
.h1_c00017{height:1122.666667pt;}
.h0_c00017{height:1122.880013pt;}
.w1_c00017{width:793.333333pt;}
.w0_c00017{width:793.600013pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:110.693347pt;}
.x3_c00017{left:111.602680pt;}
.x2_c00017{left:158.626680pt;}
.x6_c00017{left:192.120013pt;}
.x4_c00017{left:226.413347pt;}
.x5_c00017{left:245.626680pt;}
.x7_c00017{left:256.560013pt;}
.x8_c00017{left:293.133347pt;}
.x9_c00017{left:334.853347pt;}
.xa_c00017{left:383.600013pt;}
.x14_c00017{left:384.493347pt;}
.xb_c00017{left:442.066680pt;}
.xc_c00017{left:461.986680pt;}
.xd_c00017{left:521.106680pt;}
.xe_c00017{left:541.013347pt;}
.xf_c00017{left:577.200013pt;}
.x12_c00017{left:585.773347pt;}
.x13_c00017{left:610.106680pt;}
.x10_c00017{left:614.640013pt;}
.x11_c00017{left:651.986680pt;}
}





/* 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_c00018 {
    display:none;
  }
  .loading-indicator_c00018.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00018 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_c00018 { 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_c00018" -> "#page-container .classname_c00018")
 */
.pf_c00018 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00018 { /* 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_c00018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00018 { /* 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_c00018 { /* 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_c00018 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00018 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00018 {overflow:visible;}
  }
}
.c_c00018 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00018 { /* 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_c00018:after { /* webkit #35443 */
  content: '';
}
.t_c00018:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00018 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 */
}
.__c00018 { /* 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_c00018 { /* info for Javascript */
  display:none;
}
.l_c00018 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00018 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00018 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00018: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_c00018 {
    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_c00018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00018.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_c00018 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00018;src:url('chunks/assets/font_b1e90d862b6c9a4e9200448f.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.284668;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_c00018;src:url('chunks/assets/font_eb278d24fd031292a56516ba.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.284180;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_c00018;src:url('chunks/assets/font_116f308d03cac4be2e177c2a.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;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:ff4_c00018;src:url('chunks/assets/font_a441b2631466112a4eefb0b1.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;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:ff5_c00018;src:url('chunks/assets/font_9a03dec5ad432739de2e4028.woff2')format("woff");}.ff5_c00018{font-family:ff5_c00018;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:ff6_c00018;src:url('chunks/assets/font_66f1dbabecd0dc2c1034211b.woff2')format("woff");}.ff6_c00018{font-family:ff6_c00018;line-height:0.666000;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_c00018;src:url('chunks/assets/font_2642d3809e39e15e1a642349.woff2')format("woff");}.ff7_c00018{font-family:ff7_c00018;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;}
.m14_c00018{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m13_c00018{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb_c00018{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m7_c00018{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.m15_c00018{transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);}
.m0_c00018{transform:matrix(0.227934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227934,0.000000,0.000000,0.250000,0,0);}
.m2_c00018{transform:matrix(0.228961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228961,0.000000,0.000000,0.250000,0,0);}
.m16_c00018{transform:matrix(0.243198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243198,0.000000,0.000000,0.250000,0,0);}
.m17_c00018{transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);}
.m1_c00018{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);}
.m12_c00018{transform:matrix(0.258025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258025,0.000000,0.000000,0.250000,0,0);}
.m8_c00018{transform:matrix(0.266069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266069,0.000000,0.000000,0.250000,0,0);}
.m3_c00018{transform:matrix(0.276789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276789,0.000000,0.000000,0.250000,0,0);}
.m11_c00018{transform:matrix(0.278234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278234,0.000000,0.000000,0.250000,0,0);}
.mc_c00018{transform:matrix(0.308006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308006,0.000000,0.000000,0.250000,0,0);}
.m10_c00018{transform:matrix(0.313013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313013,0.000000,0.000000,0.250000,0,0);}
.m5_c00018{transform:matrix(0.373444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373444,0.000000,0.000000,0.250000,0,0);}
.m4_c00018{transform:matrix(0.398075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398075,0.000000,0.000000,0.250000,0,0);}
.ma_c00018{transform:matrix(0.453769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453769,0.000000,0.000000,0.250000,0,0);}
.md_c00018{transform:matrix(0.466670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466670,0.000000,0.000000,0.250000,0,0);}
.m9_c00018{transform:matrix(0.480194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480194,0.000000,0.000000,0.250000,0,0);}
.m6_c00018{transform:matrix(0.480295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480295,0.000000,0.000000,0.250000,0,0);}
.mf_c00018{transform:matrix(0.973802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973802,0.000000,0.000000,0.250000,0,0);}
.me_c00018{transform:matrix(1.700700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.700700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.700700,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls5d_c00018{letter-spacing:-2.562000px;}
.ls89_c00018{letter-spacing:-2.520000px;}
.ls8e_c00018{letter-spacing:-2.448000px;}
.ls96_c00018{letter-spacing:-2.124000px;}
.lsa9_c00018{letter-spacing:-2.100000px;}
.lsa7_c00018{letter-spacing:-2.080800px;}
.ls99_c00018{letter-spacing:-1.958400px;}
.lsa4_c00018{letter-spacing:-1.922400px;}
.ls86_c00018{letter-spacing:-1.908000px;}
.ls6b_c00018{letter-spacing:-1.828800px;}
.ls88_c00018{letter-spacing:-1.785600px;}
.ls8a_c00018{letter-spacing:-1.706400px;}
.ls5f_c00018{letter-spacing:-1.692000px;}
.ls82_c00018{letter-spacing:-1.680000px;}
.ls87_c00018{letter-spacing:-1.533600px;}
.ls91_c00018{letter-spacing:-1.461600px;}
.ls6a_c00018{letter-spacing:-1.216800px;}
.ls9f_c00018{letter-spacing:-1.166400px;}
.ls68_c00018{letter-spacing:-1.116000px;}
.ls64_c00018{letter-spacing:-1.108800px;}
.ls97_c00018{letter-spacing:-1.051200px;}
.ls69_c00018{letter-spacing:-1.022400px;}
.ls63_c00018{letter-spacing:-1.008000px;}
.ls79_c00018{letter-spacing:-0.979200px;}
.ls60_c00018{letter-spacing:-0.972000px;}
.ls9c_c00018{letter-spacing:-0.885600px;}
.ls72_c00018{letter-spacing:-0.878400px;}
.ls8f_c00018{letter-spacing:-0.856800px;}
.ls7f_c00018{letter-spacing:-0.840000px;}
.ls7b_c00018{letter-spacing:-0.798021px;}
.ls92_c00018{letter-spacing:-0.792000px;}
.lsa2_c00018{letter-spacing:-0.698400px;}
.lsa0_c00018{letter-spacing:-0.684000px;}
.ls74_c00018{letter-spacing:-0.648000px;}
.ls9b_c00018{letter-spacing:-0.633600px;}
.ls66_c00018{letter-spacing:-0.590400px;}
.ls70_c00018{letter-spacing:-0.561600px;}
.lsa5_c00018{letter-spacing:-0.504000px;}
.ls77_c00018{letter-spacing:-0.496800px;}
.ls95_c00018{letter-spacing:-0.482400px;}
.ls76_c00018{letter-spacing:-0.460800px;}
.lsa6_c00018{letter-spacing:-0.417600px;}
.ls83_c00018{letter-spacing:-0.416172px;}
.ls6e_c00018{letter-spacing:-0.396000px;}
.ls5e_c00018{letter-spacing:-0.388800px;}
.ls71_c00018{letter-spacing:-0.381600px;}
.ls61_c00018{letter-spacing:-0.352800px;}
.ls62_c00018{letter-spacing:-0.345600px;}
.ls67_c00018{letter-spacing:-0.316800px;}
.ls7a_c00018{letter-spacing:-0.259200px;}
.ls6c_c00018{letter-spacing:-0.237600px;}
.ls8c_c00018{letter-spacing:-0.230400px;}
.ls75_c00018{letter-spacing:-0.165600px;}
.ls78_c00018{letter-spacing:-0.144000px;}
.ls6d_c00018{letter-spacing:-0.122400px;}
.ls73_c00018{letter-spacing:-0.086400px;}
.lsa3_c00018{letter-spacing:-0.072000px;}
.ls6f_c00018{letter-spacing:-0.064800px;}
.ls90_c00018{letter-spacing:-0.057600px;}
.ls9a_c00018{letter-spacing:-0.050400px;}
.lsa8_c00018{letter-spacing:-0.043200px;}
.ls9d_c00018{letter-spacing:-0.028800px;}
.lsa1_c00018{letter-spacing:-0.021600px;}
.ls9e_c00018{letter-spacing:-0.021240px;}
.ls8d_c00018{letter-spacing:-0.014400px;}
.ls65_c00018{letter-spacing:0.000000px;}
.ls94_c00018{letter-spacing:0.007080px;}
.ls1c_c00018{letter-spacing:0.007200px;}
.ls43_c00018{letter-spacing:0.021600px;}
.lsc_c00018{letter-spacing:0.028800px;}
.ls41_c00018{letter-spacing:0.036000px;}
.ls25_c00018{letter-spacing:0.043200px;}
.ls15_c00018{letter-spacing:0.050400px;}
.ls40_c00018{letter-spacing:0.079200px;}
.lsf_c00018{letter-spacing:0.086400px;}
.ls4c_c00018{letter-spacing:0.093600px;}
.ls8_c00018{letter-spacing:0.100800px;}
.ls4d_c00018{letter-spacing:0.108000px;}
.lsa_c00018{letter-spacing:0.115200px;}
.ls16_c00018{letter-spacing:0.129600px;}
.ls53_c00018{letter-spacing:0.136800px;}
.ls22_c00018{letter-spacing:0.144000px;}
.ls3a_c00018{letter-spacing:0.151200px;}
.ls5b_c00018{letter-spacing:0.158400px;}
.ls13_c00018{letter-spacing:0.165600px;}
.ls4_c00018{letter-spacing:0.172800px;}
.ls1e_c00018{letter-spacing:0.180000px;}
.ls27_c00018{letter-spacing:0.187200px;}
.ls37_c00018{letter-spacing:0.201600px;}
.ls0_c00018{letter-spacing:0.208800px;}
.ls98_c00018{letter-spacing:0.216000px;}
.ls1b_c00018{letter-spacing:0.237600px;}
.ls55_c00018{letter-spacing:0.244800px;}
.ls39_c00018{letter-spacing:0.252000px;}
.ls11_c00018{letter-spacing:0.259200px;}
.ls2a_c00018{letter-spacing:0.273600px;}
.ls10_c00018{letter-spacing:0.288000px;}
.ls46_c00018{letter-spacing:0.295200px;}
.ls2b_c00018{letter-spacing:0.302400px;}
.ls23_c00018{letter-spacing:0.309600px;}
.ls1_c00018{letter-spacing:0.316800px;}
.ls6_c00018{letter-spacing:0.324000px;}
.ls3c_c00018{letter-spacing:0.338400px;}
.ls35_c00018{letter-spacing:0.345600px;}
.ls4b_c00018{letter-spacing:0.352800px;}
.ls26_c00018{letter-spacing:0.367200px;}
.ls56_c00018{letter-spacing:0.374400px;}
.lsb_c00018{letter-spacing:0.381600px;}
.ls1f_c00018{letter-spacing:0.389400px;}
.ls3b_c00018{letter-spacing:0.410400px;}
.ls2f_c00018{letter-spacing:0.417600px;}
.ls5c_c00018{letter-spacing:0.424800px;}
.ls1a_c00018{letter-spacing:0.432000px;}
.ls51_c00018{letter-spacing:0.446400px;}
.ls52_c00018{letter-spacing:0.453600px;}
.ls48_c00018{letter-spacing:0.460200px;}
.ls28_c00018{letter-spacing:0.460800px;}
.ls34_c00018{letter-spacing:0.482400px;}
.lse_c00018{letter-spacing:0.489600px;}
.ls3e_c00018{letter-spacing:0.496800px;}
.ls32_c00018{letter-spacing:0.511200px;}
.ls19_c00018{letter-spacing:0.525600px;}
.ls93_c00018{letter-spacing:0.547200px;}
.ls2e_c00018{letter-spacing:0.554400px;}
.ls58_c00018{letter-spacing:0.576000px;}
.ls7d_c00018{letter-spacing:0.576855px;}
.ls24_c00018{letter-spacing:0.583200px;}
.ls42_c00018{letter-spacing:0.597600px;}
.ls57_c00018{letter-spacing:0.612000px;}
.ls2c_c00018{letter-spacing:0.633600px;}
.ls5_c00018{letter-spacing:0.640800px;}
.ls17_c00018{letter-spacing:0.648000px;}
.ls12_c00018{letter-spacing:0.669600px;}
.ls47_c00018{letter-spacing:0.684000px;}
.ls2d_c00018{letter-spacing:0.691200px;}
.ls31_c00018{letter-spacing:0.712800px;}
.lsd_c00018{letter-spacing:0.720000px;}
.ls38_c00018{letter-spacing:0.764640px;}
.ls4e_c00018{letter-spacing:0.777600px;}
.ls18_c00018{letter-spacing:0.799200px;}
.ls44_c00018{letter-spacing:0.820800px;}
.ls50_c00018{letter-spacing:0.828000px;}
.ls45_c00018{letter-spacing:0.835200px;}
.ls8b_c00018{letter-spacing:0.913320px;}
.ls4a_c00018{letter-spacing:0.920400px;}
.ls20_c00018{letter-spacing:0.927480px;}
.ls30_c00018{letter-spacing:0.980485px;}
.ls84_c00018{letter-spacing:1.020030px;}
.ls7_c00018{letter-spacing:1.029600px;}
.ls3f_c00018{letter-spacing:1.076160px;}
.ls1d_c00018{letter-spacing:1.094400px;}
.ls59_c00018{letter-spacing:1.123200px;}
.ls7c_c00018{letter-spacing:1.140030px;}
.ls49_c00018{letter-spacing:1.189440px;}
.ls80_c00018{letter-spacing:1.200000px;}
.ls14_c00018{letter-spacing:1.209600px;}
.ls2_c00018{letter-spacing:1.296000px;}
.ls5a_c00018{letter-spacing:1.332000px;}
.ls54_c00018{letter-spacing:1.368000px;}
.ls9_c00018{letter-spacing:1.382400px;}
.ls7e_c00018{letter-spacing:1.500000px;}
.ls21_c00018{letter-spacing:1.508040px;}
.ls4f_c00018{letter-spacing:1.555200px;}
.ls3_c00018{letter-spacing:1.562400px;}
.ls29_c00018{letter-spacing:2.016000px;}
.ls81_c00018{letter-spacing:2.400000px;}
.ls36_c00018{letter-spacing:2.736000px;}
.ls3d_c00018{letter-spacing:3.132000px;}
.ls33_c00018{letter-spacing:3.247200px;}
.ls85_c00018{letter-spacing:3.600000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{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__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:0.000000px;}
._1c_c00018{margin-left:-19.099200px;}
._1a_c00018{margin-left:-8.558400px;}
._19_c00018{margin-left:-5.972640px;}
._9_c00018{margin-left:-2.865600px;}
._1b_c00018{margin-left:-1.735200px;}
._8_c00018{width:1.800000px;}
._18_c00018{width:2.898240px;}
._7_c00018{width:3.996000px;}
._a_c00018{width:5.284800px;}
._b_c00018{width:6.530400px;}
._3_c00018{width:7.634400px;}
._2_c00018{width:10.020000px;}
._1_c00018{width:11.512800px;}
._12_c00018{width:12.595200px;}
._0_c00018{width:13.723200px;}
._c_c00018{width:15.264000px;}
._16_c00018{width:16.288800px;}
._4_c00018{width:18.540000px;}
._6_c00018{width:19.699200px;}
._5_c00018{width:20.772000px;}
._11_c00018{width:22.010400px;}
._10_c00018{width:23.126400px;}
._d_c00018{width:24.736800px;}
._e_c00018{width:26.700000px;}
._f_c00018{width:27.847200px;}
._17_c00018{width:29.095200px;}
._1d_c00018{width:36.603360px;}
._15_c00018{width:41.163000px;}
._13_c00018{width:56.014026px;}
._14_c00018{width:165.085735px;}
.fc0_c00018{color:transparent;}
.fs8_c00018{font-size:20.400600px;}
.fs5_c00018{font-size:22.800600px;}
.fs3_c00018{font-size:23.400600px;}
.fs4_c00018{font-size:24.000000px;}
.fs6_c00018{font-size:30.000000px;}
.fs9_c00018{font-size:36.000000px;}
.fsa_c00018{font-size:47.400600px;}
.fs7_c00018{font-size:48.000000px;}
.fsd_c00018{font-size:60.000000px;}
.fsc_c00018{font-size:69.000000px;}
.fs2_c00018{font-size:70.800000px;}
.fs1_c00018{font-size:72.000000px;}
.fs0_c00018{font-size:73.200000px;}
.fsb_c00018{font-size:87.000000px;}
.y0_c00018{bottom:0.000000px;}
.y20_c00018{bottom:62.655006px;}
.y1f_c00018{bottom:125.640006px;}
.y1e_c00018{bottom:156.597006px;}
.y1d_c00018{bottom:217.095006px;}
.y1c_c00018{bottom:249.135006px;}
.y1b_c00018{bottom:279.735006px;}
.y1a_c00018{bottom:311.055006px;}
.y19_c00018{bottom:342.375006px;}
.y18_c00018{bottom:373.338006px;}
.y17_c00018{bottom:404.280006px;}
.y16_c00018{bottom:434.877006px;}
.y15_c00018{bottom:466.215006px;}
.y14_c00018{bottom:527.058006px;}
.y13_c00018{bottom:558.378006px;}
.y12_c00018{bottom:589.320006px;}
.y11_c00018{bottom:620.280006px;}
.y10_c00018{bottom:651.255006px;}
.yf_c00018{bottom:682.217706px;}
.ye_c00018{bottom:713.175006px;}
.yd_c00018{bottom:744.480006px;}
.yc_c00018{bottom:753.855006px;}
.yb_c00018{bottom:775.455006px;}
.ya_c00018{bottom:837.357006px;}
.y9_c00018{bottom:868.677006px;}
.y8_c00018{bottom:899.277006px;}
.y7_c00018{bottom:929.895006px;}
.y6_c00018{bottom:960.840006px;}
.y5_c00018{bottom:991.800006px;}
.y4_c00018{bottom:1022.778006px;}
.y3_c00018{bottom:1084.320006px;}
.y2_c00018{bottom:1116.000006px;}
.y1_c00018{bottom:1192.320006px;}
.ha_c00018{height:20.022073px;}
.h5_c00018{height:22.377542px;}
.h8_c00018{height:23.554688px;}
.h6_c00018{height:23.780313px;}
.hb_c00018{height:23.976000px;}
.h4_c00018{height:24.406095px;}
.h7_c00018{height:29.443359px;}
.hc_c00018{height:46.521097px;}
.h9_c00018{height:47.109375px;}
.h11_c00018{height:58.886719px;}
.he_c00018{height:70.653262px;}
.h3_c00018{height:70.664062px;}
.hf_c00018{height:70.676063px;}
.h2_c00018{height:71.841797px;}
.h10_c00018{height:71.964844px;}
.hd_c00018{height:90.738281px;}
.h1_c00018{height:1263.000000px;}
.h0_c00018{height:1263.240006px;}
.w1_c00018{width:892.500000px;}
.w0_c00018{width:892.799998px;}
.x0_c00018{left:0.000000px;}
.x20_c00018{left:121.514999px;}
.x5_c00018{left:122.534999px;}
.x4_c00018{left:123.764999px;}
.x2_c00018{left:124.769999px;}
.x1_c00018{left:126.689998px;}
.x1d_c00018{left:148.574998px;}
.x7_c00018{left:167.339999px;}
.x21_c00018{left:174.779999px;}
.x6_c00018{left:175.865998px;}
.x3_c00018{left:178.088999px;}
.x1e_c00018{left:209.894999px;}
.x8_c00018{left:210.899999px;}
.x9_c00018{left:217.364998px;}
.xa_c00018{left:224.909999px;}
.xb_c00018{left:243.959999px;}
.x1f_c00018{left:252.149999px;}
.xc_c00018{left:280.124999px;}
.xd_c00018{left:298.409999px;}
.xe_c00018{left:309.269999px;}
.xf_c00018{left:327.614999px;}
.x10_c00018{left:336.614999px;}
.x11_c00018{left:365.984998px;}
.x12_c00018{left:389.459999px;}
.x23_c00018{left:429.329998px;}
.x13_c00018{left:438.749998px;}
.x14_c00018{left:487.994999px;}
.x15_c00018{left:501.779999px;}
.x16_c00018{left:529.829998px;}
.x17_c00018{left:549.209998px;}
.x18_c00018{left:560.684999px;}
.x19_c00018{left:617.339998px;}
.x1a_c00018{left:675.299998px;}
.x1b_c00018{left:710.864998px;}
.x22_c00018{left:730.019998px;}
.x1c_c00018{left:732.479999px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls5d_c00018{letter-spacing:-2.277333pt;}
.ls89_c00018{letter-spacing:-2.240000pt;}
.ls8e_c00018{letter-spacing:-2.176000pt;}
.ls96_c00018{letter-spacing:-1.888000pt;}
.lsa9_c00018{letter-spacing:-1.866667pt;}
.lsa7_c00018{letter-spacing:-1.849600pt;}
.ls99_c00018{letter-spacing:-1.740800pt;}
.lsa4_c00018{letter-spacing:-1.708800pt;}
.ls86_c00018{letter-spacing:-1.696000pt;}
.ls6b_c00018{letter-spacing:-1.625600pt;}
.ls88_c00018{letter-spacing:-1.587200pt;}
.ls8a_c00018{letter-spacing:-1.516800pt;}
.ls5f_c00018{letter-spacing:-1.504000pt;}
.ls82_c00018{letter-spacing:-1.493333pt;}
.ls87_c00018{letter-spacing:-1.363200pt;}
.ls91_c00018{letter-spacing:-1.299200pt;}
.ls6a_c00018{letter-spacing:-1.081600pt;}
.ls9f_c00018{letter-spacing:-1.036800pt;}
.ls68_c00018{letter-spacing:-0.992000pt;}
.ls64_c00018{letter-spacing:-0.985600pt;}
.ls97_c00018{letter-spacing:-0.934400pt;}
.ls69_c00018{letter-spacing:-0.908800pt;}
.ls63_c00018{letter-spacing:-0.896000pt;}
.ls79_c00018{letter-spacing:-0.870400pt;}
.ls60_c00018{letter-spacing:-0.864000pt;}
.ls9c_c00018{letter-spacing:-0.787200pt;}
.ls72_c00018{letter-spacing:-0.780800pt;}
.ls8f_c00018{letter-spacing:-0.761600pt;}
.ls7f_c00018{letter-spacing:-0.746667pt;}
.ls7b_c00018{letter-spacing:-0.709352pt;}
.ls92_c00018{letter-spacing:-0.704000pt;}
.lsa2_c00018{letter-spacing:-0.620800pt;}
.lsa0_c00018{letter-spacing:-0.608000pt;}
.ls74_c00018{letter-spacing:-0.576000pt;}
.ls9b_c00018{letter-spacing:-0.563200pt;}
.ls66_c00018{letter-spacing:-0.524800pt;}
.ls70_c00018{letter-spacing:-0.499200pt;}
.lsa5_c00018{letter-spacing:-0.448000pt;}
.ls77_c00018{letter-spacing:-0.441600pt;}
.ls95_c00018{letter-spacing:-0.428800pt;}
.ls76_c00018{letter-spacing:-0.409600pt;}
.lsa6_c00018{letter-spacing:-0.371200pt;}
.ls83_c00018{letter-spacing:-0.369931pt;}
.ls6e_c00018{letter-spacing:-0.352000pt;}
.ls5e_c00018{letter-spacing:-0.345600pt;}
.ls71_c00018{letter-spacing:-0.339200pt;}
.ls61_c00018{letter-spacing:-0.313600pt;}
.ls62_c00018{letter-spacing:-0.307200pt;}
.ls67_c00018{letter-spacing:-0.281600pt;}
.ls7a_c00018{letter-spacing:-0.230400pt;}
.ls6c_c00018{letter-spacing:-0.211200pt;}
.ls8c_c00018{letter-spacing:-0.204800pt;}
.ls75_c00018{letter-spacing:-0.147200pt;}
.ls78_c00018{letter-spacing:-0.128000pt;}
.ls6d_c00018{letter-spacing:-0.108800pt;}
.ls73_c00018{letter-spacing:-0.076800pt;}
.lsa3_c00018{letter-spacing:-0.064000pt;}
.ls6f_c00018{letter-spacing:-0.057600pt;}
.ls90_c00018{letter-spacing:-0.051200pt;}
.ls9a_c00018{letter-spacing:-0.044800pt;}
.lsa8_c00018{letter-spacing:-0.038400pt;}
.ls9d_c00018{letter-spacing:-0.025600pt;}
.lsa1_c00018{letter-spacing:-0.019200pt;}
.ls9e_c00018{letter-spacing:-0.018880pt;}
.ls8d_c00018{letter-spacing:-0.012800pt;}
.ls65_c00018{letter-spacing:0.000000pt;}
.ls94_c00018{letter-spacing:0.006293pt;}
.ls1c_c00018{letter-spacing:0.006400pt;}
.ls43_c00018{letter-spacing:0.019200pt;}
.lsc_c00018{letter-spacing:0.025600pt;}
.ls41_c00018{letter-spacing:0.032000pt;}
.ls25_c00018{letter-spacing:0.038400pt;}
.ls15_c00018{letter-spacing:0.044800pt;}
.ls40_c00018{letter-spacing:0.070400pt;}
.lsf_c00018{letter-spacing:0.076800pt;}
.ls4c_c00018{letter-spacing:0.083200pt;}
.ls8_c00018{letter-spacing:0.089600pt;}
.ls4d_c00018{letter-spacing:0.096000pt;}
.lsa_c00018{letter-spacing:0.102400pt;}
.ls16_c00018{letter-spacing:0.115200pt;}
.ls53_c00018{letter-spacing:0.121600pt;}
.ls22_c00018{letter-spacing:0.128000pt;}
.ls3a_c00018{letter-spacing:0.134400pt;}
.ls5b_c00018{letter-spacing:0.140800pt;}
.ls13_c00018{letter-spacing:0.147200pt;}
.ls4_c00018{letter-spacing:0.153600pt;}
.ls1e_c00018{letter-spacing:0.160000pt;}
.ls27_c00018{letter-spacing:0.166400pt;}
.ls37_c00018{letter-spacing:0.179200pt;}
.ls0_c00018{letter-spacing:0.185600pt;}
.ls98_c00018{letter-spacing:0.192000pt;}
.ls1b_c00018{letter-spacing:0.211200pt;}
.ls55_c00018{letter-spacing:0.217600pt;}
.ls39_c00018{letter-spacing:0.224000pt;}
.ls11_c00018{letter-spacing:0.230400pt;}
.ls2a_c00018{letter-spacing:0.243200pt;}
.ls10_c00018{letter-spacing:0.256000pt;}
.ls46_c00018{letter-spacing:0.262400pt;}
.ls2b_c00018{letter-spacing:0.268800pt;}
.ls23_c00018{letter-spacing:0.275200pt;}
.ls1_c00018{letter-spacing:0.281600pt;}
.ls6_c00018{letter-spacing:0.288000pt;}
.ls3c_c00018{letter-spacing:0.300800pt;}
.ls35_c00018{letter-spacing:0.307200pt;}
.ls4b_c00018{letter-spacing:0.313600pt;}
.ls26_c00018{letter-spacing:0.326400pt;}
.ls56_c00018{letter-spacing:0.332800pt;}
.lsb_c00018{letter-spacing:0.339200pt;}
.ls1f_c00018{letter-spacing:0.346133pt;}
.ls3b_c00018{letter-spacing:0.364800pt;}
.ls2f_c00018{letter-spacing:0.371200pt;}
.ls5c_c00018{letter-spacing:0.377600pt;}
.ls1a_c00018{letter-spacing:0.384000pt;}
.ls51_c00018{letter-spacing:0.396800pt;}
.ls52_c00018{letter-spacing:0.403200pt;}
.ls48_c00018{letter-spacing:0.409067pt;}
.ls28_c00018{letter-spacing:0.409600pt;}
.ls34_c00018{letter-spacing:0.428800pt;}
.lse_c00018{letter-spacing:0.435200pt;}
.ls3e_c00018{letter-spacing:0.441600pt;}
.ls32_c00018{letter-spacing:0.454400pt;}
.ls19_c00018{letter-spacing:0.467200pt;}
.ls93_c00018{letter-spacing:0.486400pt;}
.ls2e_c00018{letter-spacing:0.492800pt;}
.ls58_c00018{letter-spacing:0.512000pt;}
.ls7d_c00018{letter-spacing:0.512760pt;}
.ls24_c00018{letter-spacing:0.518400pt;}
.ls42_c00018{letter-spacing:0.531200pt;}
.ls57_c00018{letter-spacing:0.544000pt;}
.ls2c_c00018{letter-spacing:0.563200pt;}
.ls5_c00018{letter-spacing:0.569600pt;}
.ls17_c00018{letter-spacing:0.576000pt;}
.ls12_c00018{letter-spacing:0.595200pt;}
.ls47_c00018{letter-spacing:0.608000pt;}
.ls2d_c00018{letter-spacing:0.614400pt;}
.ls31_c00018{letter-spacing:0.633600pt;}
.lsd_c00018{letter-spacing:0.640000pt;}
.ls38_c00018{letter-spacing:0.679680pt;}
.ls4e_c00018{letter-spacing:0.691200pt;}
.ls18_c00018{letter-spacing:0.710400pt;}
.ls44_c00018{letter-spacing:0.729600pt;}
.ls50_c00018{letter-spacing:0.736000pt;}
.ls45_c00018{letter-spacing:0.742400pt;}
.ls8b_c00018{letter-spacing:0.811840pt;}
.ls4a_c00018{letter-spacing:0.818133pt;}
.ls20_c00018{letter-spacing:0.824427pt;}
.ls30_c00018{letter-spacing:0.871542pt;}
.ls84_c00018{letter-spacing:0.906693pt;}
.ls7_c00018{letter-spacing:0.915200pt;}
.ls3f_c00018{letter-spacing:0.956587pt;}
.ls1d_c00018{letter-spacing:0.972800pt;}
.ls59_c00018{letter-spacing:0.998400pt;}
.ls7c_c00018{letter-spacing:1.013360pt;}
.ls49_c00018{letter-spacing:1.057280pt;}
.ls80_c00018{letter-spacing:1.066667pt;}
.ls14_c00018{letter-spacing:1.075200pt;}
.ls2_c00018{letter-spacing:1.152000pt;}
.ls5a_c00018{letter-spacing:1.184000pt;}
.ls54_c00018{letter-spacing:1.216000pt;}
.ls9_c00018{letter-spacing:1.228800pt;}
.ls7e_c00018{letter-spacing:1.333333pt;}
.ls21_c00018{letter-spacing:1.340480pt;}
.ls4f_c00018{letter-spacing:1.382400pt;}
.ls3_c00018{letter-spacing:1.388800pt;}
.ls29_c00018{letter-spacing:1.792000pt;}
.ls81_c00018{letter-spacing:2.133333pt;}
.ls36_c00018{letter-spacing:2.432000pt;}
.ls3d_c00018{letter-spacing:2.784000pt;}
.ls33_c00018{letter-spacing:2.886400pt;}
.ls85_c00018{letter-spacing:3.200000pt;}
.ws0_c00018{word-spacing:0.000000pt;}
._1c_c00018{margin-left:-16.977067pt;}
._1a_c00018{margin-left:-7.607467pt;}
._19_c00018{margin-left:-5.309013pt;}
._9_c00018{margin-left:-2.547200pt;}
._1b_c00018{margin-left:-1.542400pt;}
._8_c00018{width:1.600000pt;}
._18_c00018{width:2.576213pt;}
._7_c00018{width:3.552000pt;}
._a_c00018{width:4.697600pt;}
._b_c00018{width:5.804800pt;}
._3_c00018{width:6.786133pt;}
._2_c00018{width:8.906667pt;}
._1_c00018{width:10.233600pt;}
._12_c00018{width:11.195733pt;}
._0_c00018{width:12.198400pt;}
._c_c00018{width:13.568000pt;}
._16_c00018{width:14.478933pt;}
._4_c00018{width:16.480000pt;}
._6_c00018{width:17.510400pt;}
._5_c00018{width:18.464000pt;}
._11_c00018{width:19.564800pt;}
._10_c00018{width:20.556800pt;}
._d_c00018{width:21.988267pt;}
._e_c00018{width:23.733333pt;}
._f_c00018{width:24.753067pt;}
._17_c00018{width:25.862400pt;}
._1d_c00018{width:32.536320pt;}
._15_c00018{width:36.589333pt;}
._13_c00018{width:49.790245pt;}
._14_c00018{width:146.742876pt;}
.fs8_c00018{font-size:18.133867pt;}
.fs5_c00018{font-size:20.267200pt;}
.fs3_c00018{font-size:20.800533pt;}
.fs4_c00018{font-size:21.333333pt;}
.fs6_c00018{font-size:26.666667pt;}
.fs9_c00018{font-size:32.000000pt;}
.fsa_c00018{font-size:42.133867pt;}
.fs7_c00018{font-size:42.666667pt;}
.fsd_c00018{font-size:53.333333pt;}
.fsc_c00018{font-size:61.333333pt;}
.fs2_c00018{font-size:62.933333pt;}
.fs1_c00018{font-size:64.000000pt;}
.fs0_c00018{font-size:65.066667pt;}
.fsb_c00018{font-size:77.333333pt;}
.y0_c00018{bottom:0.000000pt;}
.y20_c00018{bottom:55.693339pt;}
.y1f_c00018{bottom:111.680005pt;}
.y1e_c00018{bottom:139.197339pt;}
.y1d_c00018{bottom:192.973339pt;}
.y1c_c00018{bottom:221.453339pt;}
.y1b_c00018{bottom:248.653339pt;}
.y1a_c00018{bottom:276.493339pt;}
.y19_c00018{bottom:304.333339pt;}
.y18_c00018{bottom:331.856005pt;}
.y17_c00018{bottom:359.360005pt;}
.y16_c00018{bottom:386.557339pt;}
.y15_c00018{bottom:414.413339pt;}
.y14_c00018{bottom:468.496005pt;}
.y13_c00018{bottom:496.336005pt;}
.y12_c00018{bottom:523.840005pt;}
.y11_c00018{bottom:551.360005pt;}
.y10_c00018{bottom:578.893339pt;}
.yf_c00018{bottom:606.415739pt;}
.ye_c00018{bottom:633.933339pt;}
.yd_c00018{bottom:661.760005pt;}
.yc_c00018{bottom:670.093339pt;}
.yb_c00018{bottom:689.293339pt;}
.ya_c00018{bottom:744.317339pt;}
.y9_c00018{bottom:772.157339pt;}
.y8_c00018{bottom:799.357339pt;}
.y7_c00018{bottom:826.573339pt;}
.y6_c00018{bottom:854.080005pt;}
.y5_c00018{bottom:881.600005pt;}
.y4_c00018{bottom:909.136005pt;}
.y3_c00018{bottom:963.840005pt;}
.y2_c00018{bottom:992.000005pt;}
.y1_c00018{bottom:1059.840005pt;}
.ha_c00018{height:17.797398pt;}
.h5_c00018{height:19.891148pt;}
.h8_c00018{height:20.937500pt;}
.h6_c00018{height:21.138056pt;}
.hb_c00018{height:21.312000pt;}
.h4_c00018{height:21.694306pt;}
.h7_c00018{height:26.171875pt;}
.hc_c00018{height:41.352086pt;}
.h9_c00018{height:41.875000pt;}
.h11_c00018{height:52.343750pt;}
.he_c00018{height:62.802900pt;}
.h3_c00018{height:62.812500pt;}
.hf_c00018{height:62.823167pt;}
.h2_c00018{height:63.859375pt;}
.h10_c00018{height:63.968750pt;}
.hd_c00018{height:80.656250pt;}
.h1_c00018{height:1122.666667pt;}
.h0_c00018{height:1122.880005pt;}
.w1_c00018{width:793.333333pt;}
.w0_c00018{width:793.599999pt;}
.x0_c00018{left:0.000000pt;}
.x20_c00018{left:108.013332pt;}
.x5_c00018{left:108.919999pt;}
.x4_c00018{left:110.013332pt;}
.x2_c00018{left:110.906665pt;}
.x1_c00018{left:112.613332pt;}
.x1d_c00018{left:132.066665pt;}
.x7_c00018{left:148.746665pt;}
.x21_c00018{left:155.359999pt;}
.x6_c00018{left:156.325332pt;}
.x3_c00018{left:158.301332pt;}
.x1e_c00018{left:186.573332pt;}
.x8_c00018{left:187.466665pt;}
.x9_c00018{left:193.213332pt;}
.xa_c00018{left:199.919999pt;}
.xb_c00018{left:216.853332pt;}
.x1f_c00018{left:224.133332pt;}
.xc_c00018{left:248.999999pt;}
.xd_c00018{left:265.253332pt;}
.xe_c00018{left:274.906665pt;}
.xf_c00018{left:291.213332pt;}
.x10_c00018{left:299.213332pt;}
.x11_c00018{left:325.319999pt;}
.x12_c00018{left:346.186665pt;}
.x23_c00018{left:381.626665pt;}
.x13_c00018{left:389.999999pt;}
.x14_c00018{left:433.773332pt;}
.x15_c00018{left:446.026665pt;}
.x16_c00018{left:470.959999pt;}
.x17_c00018{left:488.186665pt;}
.x18_c00018{left:498.386665pt;}
.x19_c00018{left:548.746665pt;}
.x1a_c00018{left:600.266665pt;}
.x1b_c00018{left:631.879999pt;}
.x22_c00018{left:648.906665pt;}
.x1c_c00018{left:651.093332pt;}
}





/* 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_c00019 {
    display:none;
  }
  .loading-indicator_c00019.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00019 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_c00019 { 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_c00019" -> "#page-container .classname_c00019")
 */
.pf_c00019 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00019 { /* 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_c00019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00019 { /* 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_c00019 { /* 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_c00019 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00019 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00019 {overflow:visible;}
  }
}
.c_c00019 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00019 { /* 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_c00019:after { /* webkit #35443 */
  content: '';
}
.t_c00019:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00019 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 */
}
.__c00019 { /* 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_c00019 { /* info for Javascript */
  display:none;
}
.l_c00019 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00019 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00019 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00019: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_c00019 {
    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_c00019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00019.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_c00019 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00019;src:url('chunks/assets/font_2ee4dcdfe1d32f74c7bd1676.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.284668;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_c00019;src:url('chunks/assets/font_13c8f16089d7fec066fdeee9.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.284180;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_c00019;src:url('chunks/assets/font_695c0e96ba02d663f1621ef1.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;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;}
.m3_c00019{transform:matrix(0.193817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193817,0.000000,0.000000,0.250000,0,0);}
.m0_c00019{transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);}
.m2_c00019{transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{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);}
.v0_c00019{vertical-align:0.000000px;}
.ls32_c00019{letter-spacing:-2.499000px;}
.ls29_c00019{letter-spacing:-2.352000px;}
.ls3f_c00019{letter-spacing:-2.191980px;}
.ls67_c00019{letter-spacing:-2.037000px;}
.ls48_c00019{letter-spacing:-1.963500px;}
.ls5e_c00019{letter-spacing:-1.887600px;}
.ls2b_c00019{letter-spacing:-1.884960px;}
.ls63_c00019{letter-spacing:-1.606500px;}
.ls36_c00019{letter-spacing:-1.485120px;}
.ls49_c00019{letter-spacing:-1.442280px;}
.ls4f_c00019{letter-spacing:-1.385160px;}
.ls65_c00019{letter-spacing:-1.356600px;}
.ls3a_c00019{letter-spacing:-1.278060px;}
.ls5c_c00019{letter-spacing:-1.206660px;}
.ls4e_c00019{letter-spacing:-1.099560px;}
.ls54_c00019{letter-spacing:-1.085280px;}
.ls62_c00019{letter-spacing:-1.035300px;}
.ls57_c00019{letter-spacing:-1.021020px;}
.ls64_c00019{letter-spacing:-0.885360px;}
.ls42_c00019{letter-spacing:-0.870000px;}
.ls50_c00019{letter-spacing:-0.863940px;}
.ls38_c00019{letter-spacing:-0.849660px;}
.ls35_c00019{letter-spacing:-0.771120px;}
.ls46_c00019{letter-spacing:-0.763980px;}
.ls59_c00019{letter-spacing:-0.756840px;}
.ls60_c00019{letter-spacing:-0.749700px;}
.ls39_c00019{letter-spacing:-0.728280px;}
.ls4c_c00019{letter-spacing:-0.664020px;}
.ls5a_c00019{letter-spacing:-0.642600px;}
.ls47_c00019{letter-spacing:-0.621180px;}
.ls53_c00019{letter-spacing:-0.614040px;}
.ls3b_c00019{letter-spacing:-0.521220px;}
.ls33_c00019{letter-spacing:-0.492660px;}
.ls34_c00019{letter-spacing:-0.450120px;}
.ls31_c00019{letter-spacing:-0.449820px;}
.ls55_c00019{letter-spacing:-0.442680px;}
.ls30_c00019{letter-spacing:-0.406980px;}
.ls41_c00019{letter-spacing:-0.392700px;}
.ls3c_c00019{letter-spacing:-0.378420px;}
.ls44_c00019{letter-spacing:-0.364140px;}
.ls2d_c00019{letter-spacing:-0.357000px;}
.ls51_c00019{letter-spacing:-0.328440px;}
.ls45_c00019{letter-spacing:-0.292740px;}
.ls52_c00019{letter-spacing:-0.285600px;}
.ls40_c00019{letter-spacing:-0.157080px;}
.ls3e_c00019{letter-spacing:-0.142800px;}
.ls2a_c00019{letter-spacing:-0.135660px;}
.ls56_c00019{letter-spacing:-0.114240px;}
.ls5f_c00019{letter-spacing:-0.092820px;}
.ls5d_c00019{letter-spacing:-0.085680px;}
.ls37_c00019{letter-spacing:-0.071400px;}
.ls3d_c00019{letter-spacing:-0.057120px;}
.ls2c_c00019{letter-spacing:-0.042840px;}
.ls4b_c00019{letter-spacing:-0.035700px;}
.ls66_c00019{letter-spacing:-0.028560px;}
.ls4d_c00019{letter-spacing:-0.021420px;}
.ls2e_c00019{letter-spacing:-0.014280px;}
.ls4a_c00019{letter-spacing:-0.007140px;}
.ls2f_c00019{letter-spacing:0.000000px;}
.lsb_c00019{letter-spacing:0.007140px;}
.ls11_c00019{letter-spacing:0.021420px;}
.lsa_c00019{letter-spacing:0.064260px;}
.ls1_c00019{letter-spacing:0.078540px;}
.ls1f_c00019{letter-spacing:0.085680px;}
.ls23_c00019{letter-spacing:0.114240px;}
.ls6_c00019{letter-spacing:0.192780px;}
.ls1d_c00019{letter-spacing:0.199920px;}
.ls1e_c00019{letter-spacing:0.207060px;}
.ls0_c00019{letter-spacing:0.214200px;}
.ls1b_c00019{letter-spacing:0.221340px;}
.ls9_c00019{letter-spacing:0.242760px;}
.ls8_c00019{letter-spacing:0.264180px;}
.lsc_c00019{letter-spacing:0.271320px;}
.ls7_c00019{letter-spacing:0.285600px;}
.ls10_c00019{letter-spacing:0.321300px;}
.ls12_c00019{letter-spacing:0.328440px;}
.ls16_c00019{letter-spacing:0.349860px;}
.ls18_c00019{letter-spacing:0.371280px;}
.ls20_c00019{letter-spacing:0.378420px;}
.lsd_c00019{letter-spacing:0.392700px;}
.ls15_c00019{letter-spacing:0.435540px;}
.ls17_c00019{letter-spacing:0.442680px;}
.ls24_c00019{letter-spacing:0.464100px;}
.lsf_c00019{letter-spacing:0.471240px;}
.ls58_c00019{letter-spacing:0.528360px;}
.ls5_c00019{letter-spacing:0.544500px;}
.ls61_c00019{letter-spacing:0.549780px;}
.ls5b_c00019{letter-spacing:0.585480px;}
.ls14_c00019{letter-spacing:0.592620px;}
.ls4_c00019{letter-spacing:0.599760px;}
.ls22_c00019{letter-spacing:0.606900px;}
.ls1a_c00019{letter-spacing:0.614040px;}
.ls28_c00019{letter-spacing:0.628320px;}
.ls13_c00019{letter-spacing:0.635460px;}
.ls25_c00019{letter-spacing:0.649740px;}
.ls19_c00019{letter-spacing:0.756840px;}
.ls3_c00019{letter-spacing:0.935340px;}
.ls2_c00019{letter-spacing:1.192380px;}
.ls43_c00019{letter-spacing:1.299480px;}
.ls1c_c00019{letter-spacing:1.535100px;}
.ls27_c00019{letter-spacing:1.542240px;}
.lse_c00019{letter-spacing:1.642200px;}
.ls26_c00019{letter-spacing:1.692180px;}
.ls21_c00019{letter-spacing:1.981980px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{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__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00019{word-spacing:0.000000px;}
._b_c00019{margin-left:-9.836880px;}
._14_c00019{margin-left:-4.391100px;}
._16_c00019{margin-left:-3.127320px;}
._15_c00019{margin-left:-1.115880px;}
._3_c00019{width:1.840080px;}
._4_c00019{width:2.856000px;}
._1_c00019{width:4.712400px;}
._8_c00019{width:5.735460px;}
._6_c00019{width:7.525560px;}
._0_c00019{width:8.568000px;}
._5_c00019{width:9.996000px;}
._2_c00019{width:11.152680px;}
._c_c00019{width:12.530700px;}
._7_c00019{width:14.644740px;}
._d_c00019{width:15.785880px;}
._e_c00019{width:17.261880px;}
._9_c00019{width:19.263720px;}
._a_c00019{width:21.291480px;}
._f_c00019{width:31.651620px;}
._10_c00019{width:33.486600px;}
._11_c00019{width:34.736100px;}
._13_c00019{width:35.757120px;}
._12_c00019{width:36.913800px;}
.fc0_c00019{color:transparent;}
.fs4_c00019{font-size:58.200000px;}
.fs6_c00019{font-size:66.000000px;}
.fs0_c00019{font-size:67.200000px;}
.fs3_c00019{font-size:69.600000px;}
.fs1_c00019{font-size:71.400000px;}
.fs2_c00019{font-size:72.600000px;}
.fs5_c00019{font-size:76.800000px;}
.y0_c00019{bottom:0.000000px;}
.y10_c00019{bottom:64.800015px;}
.y12_c00019{bottom:615.255015px;}
.y11_c00019{bottom:618.840015px;}
.yf_c00019{bottom:651.598365px;}
.ye_c00019{bottom:682.211115px;}
.yd_c00019{bottom:713.520015px;}
.yc_c00019{bottom:744.525765px;}
.yb_c00019{bottom:806.786565px;}
.ya_c00019{bottom:838.113315px;}
.y9_c00019{bottom:869.065215px;}
.y8_c00019{bottom:899.285265px;}
.y7_c00019{bottom:930.259965px;}
.y6_c00019{bottom:960.479265px;}
.y5_c00019{bottom:990.738465px;}
.y4_c00019{bottom:1052.642265px;}
.y3_c00019{bottom:1083.255015px;}
.y2_c00019{bottom:1114.575015px;}
.y1_c00019{bottom:1191.255015px;}
.h6_c00019{height:60.700781px;}
.h2_c00019{height:65.953125px;}
.h8_c00019{height:68.835938px;}
.h3_c00019{height:70.075195px;}
.h4_c00019{height:71.217480px;}
.h5_c00019{height:71.220480px;}
.h7_c00019{height:80.100000px;}
.h1_c00019{height:1263.000000px;}
.h0_c00019{height:1263.240015px;}
.w1_c00019{width:892.500000px;}
.w0_c00019{width:892.800000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:128.490000px;}
.x3_c00019{left:130.065000px;}
.x4_c00019{left:182.391450px;}
.x5_c00019{left:433.080000px;}
.x2_c00019{left:699.375000px;}
.x7_c00019{left:855.495000px;}
.x6_c00019{left:856.545000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls32_c00019{letter-spacing:-2.221333pt;}
.ls29_c00019{letter-spacing:-2.090667pt;}
.ls3f_c00019{letter-spacing:-1.948427pt;}
.ls67_c00019{letter-spacing:-1.810667pt;}
.ls48_c00019{letter-spacing:-1.745333pt;}
.ls5e_c00019{letter-spacing:-1.677867pt;}
.ls2b_c00019{letter-spacing:-1.675520pt;}
.ls63_c00019{letter-spacing:-1.428000pt;}
.ls36_c00019{letter-spacing:-1.320107pt;}
.ls49_c00019{letter-spacing:-1.282027pt;}
.ls4f_c00019{letter-spacing:-1.231253pt;}
.ls65_c00019{letter-spacing:-1.205867pt;}
.ls3a_c00019{letter-spacing:-1.136053pt;}
.ls5c_c00019{letter-spacing:-1.072587pt;}
.ls4e_c00019{letter-spacing:-0.977387pt;}
.ls54_c00019{letter-spacing:-0.964693pt;}
.ls62_c00019{letter-spacing:-0.920267pt;}
.ls57_c00019{letter-spacing:-0.907573pt;}
.ls64_c00019{letter-spacing:-0.786987pt;}
.ls42_c00019{letter-spacing:-0.773333pt;}
.ls50_c00019{letter-spacing:-0.767947pt;}
.ls38_c00019{letter-spacing:-0.755253pt;}
.ls35_c00019{letter-spacing:-0.685440pt;}
.ls46_c00019{letter-spacing:-0.679093pt;}
.ls59_c00019{letter-spacing:-0.672747pt;}
.ls60_c00019{letter-spacing:-0.666400pt;}
.ls39_c00019{letter-spacing:-0.647360pt;}
.ls4c_c00019{letter-spacing:-0.590240pt;}
.ls5a_c00019{letter-spacing:-0.571200pt;}
.ls47_c00019{letter-spacing:-0.552160pt;}
.ls53_c00019{letter-spacing:-0.545813pt;}
.ls3b_c00019{letter-spacing:-0.463307pt;}
.ls33_c00019{letter-spacing:-0.437920pt;}
.ls34_c00019{letter-spacing:-0.400107pt;}
.ls31_c00019{letter-spacing:-0.399840pt;}
.ls55_c00019{letter-spacing:-0.393493pt;}
.ls30_c00019{letter-spacing:-0.361760pt;}
.ls41_c00019{letter-spacing:-0.349067pt;}
.ls3c_c00019{letter-spacing:-0.336373pt;}
.ls44_c00019{letter-spacing:-0.323680pt;}
.ls2d_c00019{letter-spacing:-0.317333pt;}
.ls51_c00019{letter-spacing:-0.291947pt;}
.ls45_c00019{letter-spacing:-0.260213pt;}
.ls52_c00019{letter-spacing:-0.253867pt;}
.ls40_c00019{letter-spacing:-0.139627pt;}
.ls3e_c00019{letter-spacing:-0.126933pt;}
.ls2a_c00019{letter-spacing:-0.120587pt;}
.ls56_c00019{letter-spacing:-0.101547pt;}
.ls5f_c00019{letter-spacing:-0.082507pt;}
.ls5d_c00019{letter-spacing:-0.076160pt;}
.ls37_c00019{letter-spacing:-0.063467pt;}
.ls3d_c00019{letter-spacing:-0.050773pt;}
.ls2c_c00019{letter-spacing:-0.038080pt;}
.ls4b_c00019{letter-spacing:-0.031733pt;}
.ls66_c00019{letter-spacing:-0.025387pt;}
.ls4d_c00019{letter-spacing:-0.019040pt;}
.ls2e_c00019{letter-spacing:-0.012693pt;}
.ls4a_c00019{letter-spacing:-0.006347pt;}
.ls2f_c00019{letter-spacing:0.000000pt;}
.lsb_c00019{letter-spacing:0.006347pt;}
.ls11_c00019{letter-spacing:0.019040pt;}
.lsa_c00019{letter-spacing:0.057120pt;}
.ls1_c00019{letter-spacing:0.069813pt;}
.ls1f_c00019{letter-spacing:0.076160pt;}
.ls23_c00019{letter-spacing:0.101547pt;}
.ls6_c00019{letter-spacing:0.171360pt;}
.ls1d_c00019{letter-spacing:0.177707pt;}
.ls1e_c00019{letter-spacing:0.184053pt;}
.ls0_c00019{letter-spacing:0.190400pt;}
.ls1b_c00019{letter-spacing:0.196747pt;}
.ls9_c00019{letter-spacing:0.215787pt;}
.ls8_c00019{letter-spacing:0.234827pt;}
.lsc_c00019{letter-spacing:0.241173pt;}
.ls7_c00019{letter-spacing:0.253867pt;}
.ls10_c00019{letter-spacing:0.285600pt;}
.ls12_c00019{letter-spacing:0.291947pt;}
.ls16_c00019{letter-spacing:0.310987pt;}
.ls18_c00019{letter-spacing:0.330027pt;}
.ls20_c00019{letter-spacing:0.336373pt;}
.lsd_c00019{letter-spacing:0.349067pt;}
.ls15_c00019{letter-spacing:0.387147pt;}
.ls17_c00019{letter-spacing:0.393493pt;}
.ls24_c00019{letter-spacing:0.412533pt;}
.lsf_c00019{letter-spacing:0.418880pt;}
.ls58_c00019{letter-spacing:0.469653pt;}
.ls5_c00019{letter-spacing:0.484000pt;}
.ls61_c00019{letter-spacing:0.488693pt;}
.ls5b_c00019{letter-spacing:0.520427pt;}
.ls14_c00019{letter-spacing:0.526773pt;}
.ls4_c00019{letter-spacing:0.533120pt;}
.ls22_c00019{letter-spacing:0.539467pt;}
.ls1a_c00019{letter-spacing:0.545813pt;}
.ls28_c00019{letter-spacing:0.558507pt;}
.ls13_c00019{letter-spacing:0.564853pt;}
.ls25_c00019{letter-spacing:0.577547pt;}
.ls19_c00019{letter-spacing:0.672747pt;}
.ls3_c00019{letter-spacing:0.831413pt;}
.ls2_c00019{letter-spacing:1.059893pt;}
.ls43_c00019{letter-spacing:1.155093pt;}
.ls1c_c00019{letter-spacing:1.364533pt;}
.ls27_c00019{letter-spacing:1.370880pt;}
.lse_c00019{letter-spacing:1.459733pt;}
.ls26_c00019{letter-spacing:1.504160pt;}
.ls21_c00019{letter-spacing:1.761760pt;}
.ws0_c00019{word-spacing:0.000000pt;}
._b_c00019{margin-left:-8.743893pt;}
._14_c00019{margin-left:-3.903200pt;}
._16_c00019{margin-left:-2.779840pt;}
._15_c00019{margin-left:-0.991893pt;}
._3_c00019{width:1.635627pt;}
._4_c00019{width:2.538667pt;}
._1_c00019{width:4.188800pt;}
._8_c00019{width:5.098187pt;}
._6_c00019{width:6.689387pt;}
._0_c00019{width:7.616000pt;}
._5_c00019{width:8.885333pt;}
._2_c00019{width:9.913493pt;}
._c_c00019{width:11.138400pt;}
._7_c00019{width:13.017547pt;}
._d_c00019{width:14.031893pt;}
._e_c00019{width:15.343893pt;}
._9_c00019{width:17.123307pt;}
._a_c00019{width:18.925760pt;}
._f_c00019{width:28.134773pt;}
._10_c00019{width:29.765867pt;}
._11_c00019{width:30.876533pt;}
._13_c00019{width:31.784107pt;}
._12_c00019{width:32.812267pt;}
.fs4_c00019{font-size:51.733333pt;}
.fs6_c00019{font-size:58.666667pt;}
.fs0_c00019{font-size:59.733333pt;}
.fs3_c00019{font-size:61.866667pt;}
.fs1_c00019{font-size:63.466667pt;}
.fs2_c00019{font-size:64.533333pt;}
.fs5_c00019{font-size:68.266667pt;}
.y0_c00019{bottom:0.000000pt;}
.y10_c00019{bottom:57.600013pt;}
.y12_c00019{bottom:546.893347pt;}
.y11_c00019{bottom:550.080013pt;}
.yf_c00019{bottom:579.198547pt;}
.ye_c00019{bottom:606.409880pt;}
.yd_c00019{bottom:634.240013pt;}
.yc_c00019{bottom:661.800680pt;}
.yb_c00019{bottom:717.143613pt;}
.ya_c00019{bottom:744.989613pt;}
.y9_c00019{bottom:772.502413pt;}
.y8_c00019{bottom:799.364680pt;}
.y7_c00019{bottom:826.897747pt;}
.y6_c00019{bottom:853.759347pt;}
.y5_c00019{bottom:880.656413pt;}
.y4_c00019{bottom:935.682013pt;}
.y3_c00019{bottom:962.893347pt;}
.y2_c00019{bottom:990.733347pt;}
.y1_c00019{bottom:1058.893347pt;}
.h6_c00019{height:53.956250pt;}
.h2_c00019{height:58.625000pt;}
.h8_c00019{height:61.187500pt;}
.h3_c00019{height:62.289062pt;}
.h4_c00019{height:63.304427pt;}
.h5_c00019{height:63.307094pt;}
.h7_c00019{height:71.200000pt;}
.h1_c00019{height:1122.666667pt;}
.h0_c00019{height:1122.880013pt;}
.w1_c00019{width:793.333333pt;}
.w0_c00019{width:793.600000pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:114.213333pt;}
.x3_c00019{left:115.613333pt;}
.x4_c00019{left:162.125733pt;}
.x5_c00019{left:384.960000pt;}
.x2_c00019{left:621.666667pt;}
.x7_c00019{left:760.440000pt;}
.x6_c00019{left:761.373333pt;}
}





/* 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_c00020 {
    display:none;
  }
  .loading-indicator_c00020.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00020 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_c00020 { 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_c00020" -> "#page-container .classname_c00020")
 */
.pf_c00020 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00020 { /* 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_c00020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00020 { /* 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_c00020 { /* 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_c00020 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00020 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00020 {overflow:visible;}
  }
}
.c_c00020 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00020 { /* 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_c00020:after { /* webkit #35443 */
  content: '';
}
.t_c00020:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00020 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 */
}
.__c00020 { /* 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_c00020 { /* info for Javascript */
  display:none;
}
.l_c00020 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00020 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00020 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00020: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_c00020 {
    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_c00020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00020.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_c00020 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00020;src:url('chunks/assets/font_0fd97fa914903b1c473ab1ae.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;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:ff2_c00020;src:url('chunks/assets/font_d9cc93ca61bd1392e295d693.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.311035;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_c00020;src:url('chunks/assets/font_1593a87c5a634922fddba7fa.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.284668;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_c00020;src:url('chunks/assets/font_2e571d202c23ac9ca10e8548.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:1.284180;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_c00020;src:url('chunks/assets/font_e6aa41b4f8ace4d7bf11e194.woff2')format("woff");}.ff5_c00020{font-family:ff5_c00020;line-height:1.284180;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_c00020;src:url('chunks/assets/font_1070ff3b608092329cffd110.woff2')format("woff");}.ff6_c00020{font-family:ff6_c00020;line-height:0.666000;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_c00020;src:url('chunks/assets/font_2ba55f10604c201cc5f9372b.woff2')format("woff");}.ff7_c00020{font-family:ff7_c00020;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;}
.m5_c00020{transform:matrix(0.092857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092857,0.000000,0.000000,0.250000,0,0);}
.mb_c00020{transform:matrix(0.096157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096157,0.000000,0.000000,0.250000,0,0);}
.m9_c00020{transform:matrix(0.210757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210757,0.000000,0.000000,0.250000,0,0);}
.m2_c00020{transform:matrix(0.237483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237483,0.000000,0.000000,0.250000,0,0);}
.m7_c00020{transform:matrix(0.241491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241491,0.000000,0.000000,0.250000,0,0);}
.ma_c00020{transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);}
.mc_c00020{transform:matrix(0.248159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248159,0.000000,0.000000,0.250000,0,0);}
.m8_c00020{transform:matrix(0.248323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248323,0.000000,0.000000,0.250000,0,0);}
.m1_c00020{transform:matrix(0.249346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249346,0.000000,0.000000,0.250000,0,0);}
.m3_c00020{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.m0_c00020{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);}
.m4_c00020{transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);}
.m6_c00020{transform:matrix(0.257614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257614,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.lsa2_c00020{letter-spacing:-2.604000px;}
.lsa8_c00020{letter-spacing:-2.436000px;}
.ls77_c00020{letter-spacing:-2.415000px;}
.ls83_c00020{letter-spacing:-2.244360px;}
.ls9a_c00020{letter-spacing:-2.208480px;}
.ls81_c00020{letter-spacing:-1.692120px;}
.ls92_c00020{letter-spacing:-1.628400px;}
.ls98_c00020{letter-spacing:-1.512000px;}
.ls7a_c00020{letter-spacing:-1.483500px;}
.ls7d_c00020{letter-spacing:-1.444320px;}
.ls90_c00020{letter-spacing:-1.373520px;}
.ls99_c00020{letter-spacing:-1.236480px;}
.ls74_c00020{letter-spacing:-1.159200px;}
.ls8a_c00020{letter-spacing:-1.083300px;}
.ls9b_c00020{letter-spacing:-1.081920px;}
.ls70_c00020{letter-spacing:-0.945300px;}
.ls84_c00020{letter-spacing:-0.877920px;}
.lsa9_c00020{letter-spacing:-0.862500px;}
.lsa3_c00020{letter-spacing:-0.821100px;}
.ls6f_c00020{letter-spacing:-0.800400px;}
.ls9d_c00020{letter-spacing:-0.793500px;}
.lsaa_c00020{letter-spacing:-0.724500px;}
.ls9c_c00020{letter-spacing:-0.712320px;}
.ls72_c00020{letter-spacing:-0.676200px;}
.ls80_c00020{letter-spacing:-0.630120px;}
.ls6d_c00020{letter-spacing:-0.600300px;}
.ls8e_c00020{letter-spacing:-0.587640px;}
.ls97_c00020{letter-spacing:-0.530880px;}
.ls82_c00020{letter-spacing:-0.509760px;}
.ls8b_c00020{letter-spacing:-0.503700px;}
.lsa4_c00020{letter-spacing:-0.489900px;}
.ls89_c00020{letter-spacing:-0.462300px;}
.ls91_c00020{letter-spacing:-0.446040px;}
.ls9e_c00020{letter-spacing:-0.434700px;}
.ls94_c00020{letter-spacing:-0.389400px;}
.ls8c_c00020{letter-spacing:-0.345000px;}
.ls93_c00020{letter-spacing:-0.325680px;}
.ls7b_c00020{letter-spacing:-0.297360px;}
.ls88_c00020{letter-spacing:-0.296700px;}
.ls7e_c00020{letter-spacing:-0.290280px;}
.ls7c_c00020{letter-spacing:-0.283200px;}
.ls73_c00020{letter-spacing:-0.276000px;}
.lsa7_c00020{letter-spacing:-0.262200px;}
.ls7f_c00020{letter-spacing:-0.247800px;}
.ls78_c00020{letter-spacing:-0.200100px;}
.ls8d_c00020{letter-spacing:-0.177000px;}
.ls8f_c00020{letter-spacing:-0.134520px;}
.ls85_c00020{letter-spacing:-0.131100px;}
.lsac_c00020{letter-spacing:-0.117300px;}
.lsab_c00020{letter-spacing:-0.103500px;}
.ls9f_c00020{letter-spacing:-0.082800px;}
.ls71_c00020{letter-spacing:-0.075900px;}
.ls79_c00020{letter-spacing:-0.069000px;}
.lsa6_c00020{letter-spacing:-0.027600px;}
.ls75_c00020{letter-spacing:-0.020700px;}
.lsa1_c00020{letter-spacing:-0.013800px;}
.ls6b_c00020{letter-spacing:0.000000px;}
.ls32_c00020{letter-spacing:0.006900px;}
.ls20_c00020{letter-spacing:0.013800px;}
.ls60_c00020{letter-spacing:0.020700px;}
.ls6a_c00020{letter-spacing:0.041400px;}
.ls11_c00020{letter-spacing:0.089700px;}
.ls26_c00020{letter-spacing:0.092040px;}
.lsa5_c00020{letter-spacing:0.103500px;}
.ls3_c00020{letter-spacing:0.110400px;}
.ls44_c00020{letter-spacing:0.117300px;}
.ls5a_c00020{letter-spacing:0.144900px;}
.ls95_c00020{letter-spacing:0.145200px;}
.ls23_c00020{letter-spacing:0.148680px;}
.ls35_c00020{letter-spacing:0.151800px;}
.ls53_c00020{letter-spacing:0.158700px;}
.ls10_c00020{letter-spacing:0.165600px;}
.ls3c_c00020{letter-spacing:0.186300px;}
.ls61_c00020{letter-spacing:0.200100px;}
.ls30_c00020{letter-spacing:0.213900px;}
.ls58_c00020{letter-spacing:0.220800px;}
.ls51_c00020{letter-spacing:0.227700px;}
.ls31_c00020{letter-spacing:0.234600px;}
.ls5c_c00020{letter-spacing:0.241500px;}
.ls65_c00020{letter-spacing:0.248400px;}
.ls52_c00020{letter-spacing:0.276000px;}
.lsc_c00020{letter-spacing:0.282900px;}
.ls9_c00020{letter-spacing:0.289800px;}
.ls7_c00020{letter-spacing:0.296700px;}
.lsa_c00020{letter-spacing:0.317400px;}
.ls1a_c00020{letter-spacing:0.331200px;}
.ls64_c00020{letter-spacing:0.338100px;}
.ls69_c00020{letter-spacing:0.345000px;}
.lse_c00020{letter-spacing:0.351900px;}
.ls46_c00020{letter-spacing:0.358800px;}
.ls13_c00020{letter-spacing:0.365700px;}
.ls4b_c00020{letter-spacing:0.372600px;}
.ls3d_c00020{letter-spacing:0.375240px;}
.ls2d_c00020{letter-spacing:0.379500px;}
.ls12_c00020{letter-spacing:0.393300px;}
.ls49_c00020{letter-spacing:0.400200px;}
.ls41_c00020{letter-spacing:0.403200px;}
.ls6_c00020{letter-spacing:0.407100px;}
.ls68_c00020{letter-spacing:0.414000px;}
.ls1d_c00020{letter-spacing:0.420900px;}
.ls21_c00020{letter-spacing:0.434700px;}
.lsb_c00020{letter-spacing:0.441600px;}
.ls4_c00020{letter-spacing:0.448500px;}
.lsd_c00020{letter-spacing:0.469200px;}
.ls4a_c00020{letter-spacing:0.489900px;}
.ls18_c00020{letter-spacing:0.496800px;}
.lsad_c00020{letter-spacing:0.503700px;}
.ls4d_c00020{letter-spacing:0.510600px;}
.ls37_c00020{letter-spacing:0.524400px;}
.ls33_c00020{letter-spacing:0.531300px;}
.ls2a_c00020{letter-spacing:0.538200px;}
.ls27_c00020{letter-spacing:0.552000px;}
.ls5e_c00020{letter-spacing:0.565800px;}
.ls39_c00020{letter-spacing:0.579600px;}
.ls43_c00020{letter-spacing:0.586500px;}
.lsa0_c00020{letter-spacing:0.593400px;}
.ls59_c00020{letter-spacing:0.600300px;}
.ls5f_c00020{letter-spacing:0.634800px;}
.ls15_c00020{letter-spacing:0.641700px;}
.ls54_c00020{letter-spacing:0.655500px;}
.ls2b_c00020{letter-spacing:0.662400px;}
.ls63_c00020{letter-spacing:0.669300px;}
.ls42_c00020{letter-spacing:0.676200px;}
.ls19_c00020{letter-spacing:0.690000px;}
.ls55_c00020{letter-spacing:0.696900px;}
.ls50_c00020{letter-spacing:0.703800px;}
.ls14_c00020{letter-spacing:0.710700px;}
.ls86_c00020{letter-spacing:0.717600px;}
.ls36_c00020{letter-spacing:0.738300px;}
.ls3b_c00020{letter-spacing:0.765900px;}
.ls67_c00020{letter-spacing:0.793500px;}
.ls28_c00020{letter-spacing:0.800400px;}
.ls5b_c00020{letter-spacing:0.814200px;}
.ls34_c00020{letter-spacing:0.821100px;}
.ls24_c00020{letter-spacing:0.842520px;}
.ls76_c00020{letter-spacing:0.876300px;}
.ls16_c00020{letter-spacing:0.883200px;}
.ls1b_c00020{letter-spacing:0.938400px;}
.ls4c_c00020{letter-spacing:0.952200px;}
.ls1e_c00020{letter-spacing:0.959100px;}
.ls40_c00020{letter-spacing:0.963600px;}
.ls2f_c00020{letter-spacing:1.021200px;}
.ls5_c00020{letter-spacing:1.097100px;}
.ls45_c00020{letter-spacing:1.131600px;}
.ls57_c00020{letter-spacing:1.166100px;}
.ls62_c00020{letter-spacing:1.311000px;}
.ls25_c00020{letter-spacing:1.338120px;}
.ls47_c00020{letter-spacing:1.359300px;}
.ls2c_c00020{letter-spacing:1.421400px;}
.ls2e_c00020{letter-spacing:1.428300px;}
.ls8_c00020{letter-spacing:1.442100px;}
.ls2_c00020{letter-spacing:1.600800px;}
.ls3f_c00020{letter-spacing:1.663800px;}
.lsf_c00020{letter-spacing:1.794000px;}
.ls3e_c00020{letter-spacing:1.819560px;}
.ls5d_c00020{letter-spacing:1.932000px;}
.ls6e_c00020{letter-spacing:1.966500px;}
.ls17_c00020{letter-spacing:2.035500px;}
.ls1f_c00020{letter-spacing:2.060280px;}
.ls66_c00020{letter-spacing:2.076900px;}
.ls48_c00020{letter-spacing:2.083800px;}
.ls1_c00020{letter-spacing:2.274300px;}
.ls22_c00020{letter-spacing:2.343480px;}
.ls3a_c00020{letter-spacing:2.401200px;}
.ls0_c00020{letter-spacing:2.401980px;}
.ls4e_c00020{letter-spacing:2.511600px;}
.ls4f_c00020{letter-spacing:2.539200px;}
.ls6c_c00020{letter-spacing:2.545620px;}
.ls29_c00020{letter-spacing:2.559900px;}
.ls1c_c00020{letter-spacing:2.725500px;}
.ls38_c00020{letter-spacing:2.835900px;}
.ls56_c00020{letter-spacing:3.070500px;}
.ls96_c00020{letter-spacing:3.300000px;}
.ls87_c00020{letter-spacing:3.450000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{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__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00020{word-spacing:0.000000px;}
._14_c00020{margin-left:-7.077780px;}
._13_c00020{margin-left:-6.008160px;}
._0_c00020{margin-left:-3.535140px;}
._1_c00020{margin-left:-2.449500px;}
._15_c00020{margin-left:-1.443720px;}
._2_c00020{width:1.356600px;}
._6_c00020{width:2.704800px;}
._3_c00020{width:3.988200px;}
._4_c00020{width:5.419200px;}
._b_c00020{width:7.265700px;}
._5_c00020{width:8.636100px;}
._7_c00020{width:10.380000px;}
._c_c00020{width:11.661000px;}
._a_c00020{width:12.765000px;}
._9_c00020{width:13.878000px;}
._8_c00020{width:15.580500px;}
._12_c00020{width:17.818620px;}
._11_c00020{width:19.454400px;}
._d_c00020{width:21.224400px;}
._f_c00020{width:23.092200px;}
._e_c00020{width:25.021800px;}
._16_c00020{width:26.344920px;}
._10_c00020{width:30.633300px;}
.fc0_c00020{color:transparent;}
.fs6_c00020{font-size:50.400000px;}
.fsb_c00020{font-size:56.160000px;}
.fs9_c00020{font-size:63.000000px;}
.fs8_c00020{font-size:64.200000px;}
.fs5_c00020{font-size:66.000000px;}
.fs7_c00020{font-size:67.200000px;}
.fs2_c00020{font-size:69.000000px;}
.fsa_c00020{font-size:69.600000px;}
.fs3_c00020{font-size:70.800000px;}
.fs4_c00020{font-size:72.000000px;}
.fs0_c00020{font-size:74.400000px;}
.fs1_c00020{font-size:79.800000px;}
.y0_c00020{bottom:0.000000px;}
.y23_c00020{bottom:166.695000px;}
.y22_c00020{bottom:166.701750px;}
.y20_c00020{bottom:198.733500px;}
.y21_c00020{bottom:198.735000px;}
.y1e_c00020{bottom:229.331250px;}
.y1f_c00020{bottom:229.335000px;}
.y1d_c00020{bottom:260.640000px;}
.y1c_c00020{bottom:260.643750px;}
.y1b_c00020{bottom:323.640750px;}
.y1a_c00020{bottom:355.691250px;}
.y19_c00020{bottom:387.000000px;}
.y18_c00020{bottom:387.006750px;}
.y16_c00020{bottom:418.685250px;}
.y17_c00020{bottom:418.695000px;}
.y15_c00020{bottom:449.994000px;}
.y14_c00020{bottom:480.975000px;}
.y13_c00020{bottom:512.280000px;}
.y12_c00020{bottom:542.892000px;}
.y11_c00020{bottom:574.587000px;}
.y10_c00020{bottom:637.204500px;}
.ye_c00020{bottom:669.246750px;}
.yf_c00020{bottom:669.255000px;}
.yc_c00020{bottom:700.929000px;}
.yd_c00020{bottom:700.935000px;}
.yb_c00020{bottom:732.255000px;}
.ya_c00020{bottom:763.932000px;}
.y9_c00020{bottom:795.609000px;}
.y8_c00020{bottom:826.935000px;}
.y6_c00020{bottom:888.486750px;}
.y7_c00020{bottom:888.495000px;}
.y5_c00020{bottom:920.521500px;}
.y4_c00020{bottom:951.502500px;}
.y3_c00020{bottom:1013.775000px;}
.y2_c00020{bottom:1078.200000px;}
.y1_c00020{bottom:1096.200000px;}
.hd_c00020{height:33.566400px;}
.h11_c00020{height:37.402560px;}
.hc_c00020{height:64.743164px;}
.h5_c00020{height:67.719727px;}
.he_c00020{height:67.725000px;}
.h9_c00020{height:67.743727px;}
.ha_c00020{height:69.403758px;}
.h7_c00020{height:69.463758px;}
.h6_c00020{height:69.475758px;}
.h4_c00020{height:69.539062px;}
.h8_c00020{height:70.628906px;}
.hb_c00020{height:70.640906px;}
.h10_c00020{height:72.590625px;}
.hf_c00020{height:73.019531px;}
.h2_c00020{height:77.596875px;}
.h3_c00020{height:80.423438px;}
.h1_c00020{height:1263.000000px;}
.h0_c00020{height:1263.240000px;}
.w1_c00020{width:892.500000px;}
.w0_c00020{width:892.800000px;}
.x0_c00020{left:0.000000px;}
.x17_c00020{left:121.498500px;}
.x6_c00020{left:122.596800px;}
.x4_c00020{left:123.688500px;}
.x2_c00020{left:124.830000px;}
.xd_c00020{left:177.046500px;}
.x3_c00020{left:178.824750px;}
.xe_c00020{left:196.560000px;}
.x1a_c00020{left:212.940000px;}
.xb_c00020{left:216.900000px;}
.x1b_c00020{left:233.835000px;}
.xc_c00020{left:239.940000px;}
.x18_c00020{left:268.380000px;}
.xf_c00020{left:276.735000px;}
.x19_c00020{left:287.175000px;}
.x10_c00020{left:298.710000px;}
.x1_c00020{left:309.510000px;}
.x13_c00020{left:314.085000px;}
.x5_c00020{left:324.840000px;}
.x14_c00020{left:363.075000px;}
.x1d_c00020{left:381.495000px;}
.x1e_c00020{left:402.810000px;}
.x9_c00020{left:545.565000px;}
.xa_c00020{left:571.290000px;}
.x7_c00020{left:584.205000px;}
.x1c_c00020{left:610.575000px;}
.x15_c00020{left:615.825000px;}
.x11_c00020{left:623.385000px;}
.x8_c00020{left:632.355000px;}
.x12_c00020{left:640.635000px;}
.x16_c00020{left:642.000000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.lsa2_c00020{letter-spacing:-2.314667pt;}
.lsa8_c00020{letter-spacing:-2.165333pt;}
.ls77_c00020{letter-spacing:-2.146667pt;}
.ls83_c00020{letter-spacing:-1.994987pt;}
.ls9a_c00020{letter-spacing:-1.963093pt;}
.ls81_c00020{letter-spacing:-1.504107pt;}
.ls92_c00020{letter-spacing:-1.447467pt;}
.ls98_c00020{letter-spacing:-1.344000pt;}
.ls7a_c00020{letter-spacing:-1.318667pt;}
.ls7d_c00020{letter-spacing:-1.283840pt;}
.ls90_c00020{letter-spacing:-1.220907pt;}
.ls99_c00020{letter-spacing:-1.099093pt;}
.ls74_c00020{letter-spacing:-1.030400pt;}
.ls8a_c00020{letter-spacing:-0.962933pt;}
.ls9b_c00020{letter-spacing:-0.961707pt;}
.ls70_c00020{letter-spacing:-0.840267pt;}
.ls84_c00020{letter-spacing:-0.780373pt;}
.lsa9_c00020{letter-spacing:-0.766667pt;}
.lsa3_c00020{letter-spacing:-0.729867pt;}
.ls6f_c00020{letter-spacing:-0.711467pt;}
.ls9d_c00020{letter-spacing:-0.705333pt;}
.lsaa_c00020{letter-spacing:-0.644000pt;}
.ls9c_c00020{letter-spacing:-0.633173pt;}
.ls72_c00020{letter-spacing:-0.601067pt;}
.ls80_c00020{letter-spacing:-0.560107pt;}
.ls6d_c00020{letter-spacing:-0.533600pt;}
.ls8e_c00020{letter-spacing:-0.522347pt;}
.ls97_c00020{letter-spacing:-0.471893pt;}
.ls82_c00020{letter-spacing:-0.453120pt;}
.ls8b_c00020{letter-spacing:-0.447733pt;}
.lsa4_c00020{letter-spacing:-0.435467pt;}
.ls89_c00020{letter-spacing:-0.410933pt;}
.ls91_c00020{letter-spacing:-0.396480pt;}
.ls9e_c00020{letter-spacing:-0.386400pt;}
.ls94_c00020{letter-spacing:-0.346133pt;}
.ls8c_c00020{letter-spacing:-0.306667pt;}
.ls93_c00020{letter-spacing:-0.289493pt;}
.ls7b_c00020{letter-spacing:-0.264320pt;}
.ls88_c00020{letter-spacing:-0.263733pt;}
.ls7e_c00020{letter-spacing:-0.258027pt;}
.ls7c_c00020{letter-spacing:-0.251733pt;}
.ls73_c00020{letter-spacing:-0.245333pt;}
.lsa7_c00020{letter-spacing:-0.233067pt;}
.ls7f_c00020{letter-spacing:-0.220267pt;}
.ls78_c00020{letter-spacing:-0.177867pt;}
.ls8d_c00020{letter-spacing:-0.157333pt;}
.ls8f_c00020{letter-spacing:-0.119573pt;}
.ls85_c00020{letter-spacing:-0.116533pt;}
.lsac_c00020{letter-spacing:-0.104267pt;}
.lsab_c00020{letter-spacing:-0.092000pt;}
.ls9f_c00020{letter-spacing:-0.073600pt;}
.ls71_c00020{letter-spacing:-0.067467pt;}
.ls79_c00020{letter-spacing:-0.061333pt;}
.lsa6_c00020{letter-spacing:-0.024533pt;}
.ls75_c00020{letter-spacing:-0.018400pt;}
.lsa1_c00020{letter-spacing:-0.012267pt;}
.ls6b_c00020{letter-spacing:0.000000pt;}
.ls32_c00020{letter-spacing:0.006133pt;}
.ls20_c00020{letter-spacing:0.012267pt;}
.ls60_c00020{letter-spacing:0.018400pt;}
.ls6a_c00020{letter-spacing:0.036800pt;}
.ls11_c00020{letter-spacing:0.079733pt;}
.ls26_c00020{letter-spacing:0.081813pt;}
.lsa5_c00020{letter-spacing:0.092000pt;}
.ls3_c00020{letter-spacing:0.098133pt;}
.ls44_c00020{letter-spacing:0.104267pt;}
.ls5a_c00020{letter-spacing:0.128800pt;}
.ls95_c00020{letter-spacing:0.129067pt;}
.ls23_c00020{letter-spacing:0.132160pt;}
.ls35_c00020{letter-spacing:0.134933pt;}
.ls53_c00020{letter-spacing:0.141067pt;}
.ls10_c00020{letter-spacing:0.147200pt;}
.ls3c_c00020{letter-spacing:0.165600pt;}
.ls61_c00020{letter-spacing:0.177867pt;}
.ls30_c00020{letter-spacing:0.190133pt;}
.ls58_c00020{letter-spacing:0.196267pt;}
.ls51_c00020{letter-spacing:0.202400pt;}
.ls31_c00020{letter-spacing:0.208533pt;}
.ls5c_c00020{letter-spacing:0.214667pt;}
.ls65_c00020{letter-spacing:0.220800pt;}
.ls52_c00020{letter-spacing:0.245333pt;}
.lsc_c00020{letter-spacing:0.251467pt;}
.ls9_c00020{letter-spacing:0.257600pt;}
.ls7_c00020{letter-spacing:0.263733pt;}
.lsa_c00020{letter-spacing:0.282133pt;}
.ls1a_c00020{letter-spacing:0.294400pt;}
.ls64_c00020{letter-spacing:0.300533pt;}
.ls69_c00020{letter-spacing:0.306667pt;}
.lse_c00020{letter-spacing:0.312800pt;}
.ls46_c00020{letter-spacing:0.318933pt;}
.ls13_c00020{letter-spacing:0.325067pt;}
.ls4b_c00020{letter-spacing:0.331200pt;}
.ls3d_c00020{letter-spacing:0.333547pt;}
.ls2d_c00020{letter-spacing:0.337333pt;}
.ls12_c00020{letter-spacing:0.349600pt;}
.ls49_c00020{letter-spacing:0.355733pt;}
.ls41_c00020{letter-spacing:0.358400pt;}
.ls6_c00020{letter-spacing:0.361867pt;}
.ls68_c00020{letter-spacing:0.368000pt;}
.ls1d_c00020{letter-spacing:0.374133pt;}
.ls21_c00020{letter-spacing:0.386400pt;}
.lsb_c00020{letter-spacing:0.392533pt;}
.ls4_c00020{letter-spacing:0.398667pt;}
.lsd_c00020{letter-spacing:0.417067pt;}
.ls4a_c00020{letter-spacing:0.435467pt;}
.ls18_c00020{letter-spacing:0.441600pt;}
.lsad_c00020{letter-spacing:0.447733pt;}
.ls4d_c00020{letter-spacing:0.453867pt;}
.ls37_c00020{letter-spacing:0.466133pt;}
.ls33_c00020{letter-spacing:0.472267pt;}
.ls2a_c00020{letter-spacing:0.478400pt;}
.ls27_c00020{letter-spacing:0.490667pt;}
.ls5e_c00020{letter-spacing:0.502933pt;}
.ls39_c00020{letter-spacing:0.515200pt;}
.ls43_c00020{letter-spacing:0.521333pt;}
.lsa0_c00020{letter-spacing:0.527467pt;}
.ls59_c00020{letter-spacing:0.533600pt;}
.ls5f_c00020{letter-spacing:0.564267pt;}
.ls15_c00020{letter-spacing:0.570400pt;}
.ls54_c00020{letter-spacing:0.582667pt;}
.ls2b_c00020{letter-spacing:0.588800pt;}
.ls63_c00020{letter-spacing:0.594933pt;}
.ls42_c00020{letter-spacing:0.601067pt;}
.ls19_c00020{letter-spacing:0.613333pt;}
.ls55_c00020{letter-spacing:0.619467pt;}
.ls50_c00020{letter-spacing:0.625600pt;}
.ls14_c00020{letter-spacing:0.631733pt;}
.ls86_c00020{letter-spacing:0.637867pt;}
.ls36_c00020{letter-spacing:0.656267pt;}
.ls3b_c00020{letter-spacing:0.680800pt;}
.ls67_c00020{letter-spacing:0.705333pt;}
.ls28_c00020{letter-spacing:0.711467pt;}
.ls5b_c00020{letter-spacing:0.723733pt;}
.ls34_c00020{letter-spacing:0.729867pt;}
.ls24_c00020{letter-spacing:0.748907pt;}
.ls76_c00020{letter-spacing:0.778933pt;}
.ls16_c00020{letter-spacing:0.785067pt;}
.ls1b_c00020{letter-spacing:0.834133pt;}
.ls4c_c00020{letter-spacing:0.846400pt;}
.ls1e_c00020{letter-spacing:0.852533pt;}
.ls40_c00020{letter-spacing:0.856533pt;}
.ls2f_c00020{letter-spacing:0.907733pt;}
.ls5_c00020{letter-spacing:0.975200pt;}
.ls45_c00020{letter-spacing:1.005867pt;}
.ls57_c00020{letter-spacing:1.036533pt;}
.ls62_c00020{letter-spacing:1.165333pt;}
.ls25_c00020{letter-spacing:1.189440pt;}
.ls47_c00020{letter-spacing:1.208267pt;}
.ls2c_c00020{letter-spacing:1.263467pt;}
.ls2e_c00020{letter-spacing:1.269600pt;}
.ls8_c00020{letter-spacing:1.281867pt;}
.ls2_c00020{letter-spacing:1.422933pt;}
.ls3f_c00020{letter-spacing:1.478933pt;}
.lsf_c00020{letter-spacing:1.594667pt;}
.ls3e_c00020{letter-spacing:1.617387pt;}
.ls5d_c00020{letter-spacing:1.717333pt;}
.ls6e_c00020{letter-spacing:1.748000pt;}
.ls17_c00020{letter-spacing:1.809333pt;}
.ls1f_c00020{letter-spacing:1.831360pt;}
.ls66_c00020{letter-spacing:1.846133pt;}
.ls48_c00020{letter-spacing:1.852267pt;}
.ls1_c00020{letter-spacing:2.021600pt;}
.ls22_c00020{letter-spacing:2.083093pt;}
.ls3a_c00020{letter-spacing:2.134400pt;}
.ls0_c00020{letter-spacing:2.135093pt;}
.ls4e_c00020{letter-spacing:2.232533pt;}
.ls4f_c00020{letter-spacing:2.257067pt;}
.ls6c_c00020{letter-spacing:2.262773pt;}
.ls29_c00020{letter-spacing:2.275467pt;}
.ls1c_c00020{letter-spacing:2.422667pt;}
.ls38_c00020{letter-spacing:2.520800pt;}
.ls56_c00020{letter-spacing:2.729333pt;}
.ls96_c00020{letter-spacing:2.933333pt;}
.ls87_c00020{letter-spacing:3.066667pt;}
.ws0_c00020{word-spacing:0.000000pt;}
._14_c00020{margin-left:-6.291360pt;}
._13_c00020{margin-left:-5.340587pt;}
._0_c00020{margin-left:-3.142347pt;}
._1_c00020{margin-left:-2.177333pt;}
._15_c00020{margin-left:-1.283307pt;}
._2_c00020{width:1.205867pt;}
._6_c00020{width:2.404267pt;}
._3_c00020{width:3.545067pt;}
._4_c00020{width:4.817067pt;}
._b_c00020{width:6.458400pt;}
._5_c00020{width:7.676533pt;}
._7_c00020{width:9.226667pt;}
._c_c00020{width:10.365333pt;}
._a_c00020{width:11.346667pt;}
._9_c00020{width:12.336000pt;}
._8_c00020{width:13.849333pt;}
._12_c00020{width:15.838773pt;}
._11_c00020{width:17.292800pt;}
._d_c00020{width:18.866133pt;}
._f_c00020{width:20.526400pt;}
._e_c00020{width:22.241600pt;}
._16_c00020{width:23.417707pt;}
._10_c00020{width:27.229600pt;}
.fs6_c00020{font-size:44.800000pt;}
.fsb_c00020{font-size:49.920000pt;}
.fs9_c00020{font-size:56.000000pt;}
.fs8_c00020{font-size:57.066667pt;}
.fs5_c00020{font-size:58.666667pt;}
.fs7_c00020{font-size:59.733333pt;}
.fs2_c00020{font-size:61.333333pt;}
.fsa_c00020{font-size:61.866667pt;}
.fs3_c00020{font-size:62.933333pt;}
.fs4_c00020{font-size:64.000000pt;}
.fs0_c00020{font-size:66.133333pt;}
.fs1_c00020{font-size:70.933333pt;}
.y0_c00020{bottom:0.000000pt;}
.y23_c00020{bottom:148.173333pt;}
.y22_c00020{bottom:148.179333pt;}
.y20_c00020{bottom:176.652000pt;}
.y21_c00020{bottom:176.653333pt;}
.y1e_c00020{bottom:203.850000pt;}
.y1f_c00020{bottom:203.853333pt;}
.y1d_c00020{bottom:231.680000pt;}
.y1c_c00020{bottom:231.683333pt;}
.y1b_c00020{bottom:287.680667pt;}
.y1a_c00020{bottom:316.170000pt;}
.y19_c00020{bottom:344.000000pt;}
.y18_c00020{bottom:344.006000pt;}
.y16_c00020{bottom:372.164667pt;}
.y17_c00020{bottom:372.173333pt;}
.y15_c00020{bottom:399.994667pt;}
.y14_c00020{bottom:427.533333pt;}
.y13_c00020{bottom:455.360000pt;}
.y12_c00020{bottom:482.570667pt;}
.y11_c00020{bottom:510.744000pt;}
.y10_c00020{bottom:566.404000pt;}
.ye_c00020{bottom:594.886000pt;}
.yf_c00020{bottom:594.893333pt;}
.yc_c00020{bottom:623.048000pt;}
.yd_c00020{bottom:623.053333pt;}
.yb_c00020{bottom:650.893333pt;}
.ya_c00020{bottom:679.050667pt;}
.y9_c00020{bottom:707.208000pt;}
.y8_c00020{bottom:735.053333pt;}
.y6_c00020{bottom:789.766000pt;}
.y7_c00020{bottom:789.773333pt;}
.y5_c00020{bottom:818.241333pt;}
.y4_c00020{bottom:845.780000pt;}
.y3_c00020{bottom:901.133333pt;}
.y2_c00020{bottom:958.400000pt;}
.y1_c00020{bottom:974.400000pt;}
.hd_c00020{height:29.836800pt;}
.h11_c00020{height:33.246720pt;}
.hc_c00020{height:57.549479pt;}
.h5_c00020{height:60.195312pt;}
.he_c00020{height:60.200000pt;}
.h9_c00020{height:60.216646pt;}
.ha_c00020{height:61.692229pt;}
.h7_c00020{height:61.745562pt;}
.h6_c00020{height:61.756229pt;}
.h4_c00020{height:61.812500pt;}
.h8_c00020{height:62.781250pt;}
.hb_c00020{height:62.791917pt;}
.h10_c00020{height:64.525000pt;}
.hf_c00020{height:64.906250pt;}
.h2_c00020{height:68.975000pt;}
.h3_c00020{height:71.487500pt;}
.h1_c00020{height:1122.666667pt;}
.h0_c00020{height:1122.880000pt;}
.w1_c00020{width:793.333333pt;}
.w0_c00020{width:793.600000pt;}
.x0_c00020{left:0.000000pt;}
.x17_c00020{left:107.998667pt;}
.x6_c00020{left:108.974933pt;}
.x4_c00020{left:109.945333pt;}
.x2_c00020{left:110.960000pt;}
.xd_c00020{left:157.374667pt;}
.x3_c00020{left:158.955333pt;}
.xe_c00020{left:174.720000pt;}
.x1a_c00020{left:189.280000pt;}
.xb_c00020{left:192.800000pt;}
.x1b_c00020{left:207.853333pt;}
.xc_c00020{left:213.280000pt;}
.x18_c00020{left:238.560000pt;}
.xf_c00020{left:245.986667pt;}
.x19_c00020{left:255.266667pt;}
.x10_c00020{left:265.520000pt;}
.x1_c00020{left:275.120000pt;}
.x13_c00020{left:279.186667pt;}
.x5_c00020{left:288.746667pt;}
.x14_c00020{left:322.733333pt;}
.x1d_c00020{left:339.106667pt;}
.x1e_c00020{left:358.053333pt;}
.x9_c00020{left:484.946667pt;}
.xa_c00020{left:507.813333pt;}
.x7_c00020{left:519.293333pt;}
.x1c_c00020{left:542.733333pt;}
.x15_c00020{left:547.400000pt;}
.x11_c00020{left:554.120000pt;}
.x8_c00020{left:562.093333pt;}
.x12_c00020{left:569.453333pt;}
.x16_c00020{left:570.666667pt;}
}





/* 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_c00021 {
    display:none;
  }
  .loading-indicator_c00021.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00021 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_c00021 { 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_c00021" -> "#page-container .classname_c00021")
 */
.pf_c00021 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00021 { /* 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_c00021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00021 { /* 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_c00021 { /* 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_c00021 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00021 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00021 {overflow:visible;}
  }
}
.c_c00021 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00021 { /* 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_c00021:after { /* webkit #35443 */
  content: '';
}
.t_c00021:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00021 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 */
}
.__c00021 { /* 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_c00021 { /* info for Javascript */
  display:none;
}
.l_c00021 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00021 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00021 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00021: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_c00021 {
    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_c00021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00021.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_c00021 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00021;src:url('chunks/assets/font_0ef116f977d0b1b8bd5ba9c9.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.311035;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_c00021;src:url('chunks/assets/font_052e479e037f1cb0f638a319.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.284668;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_c00021;src:url('chunks/assets/font_c1d9ae23fc6f4bddd008ee6c.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.284180;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_c00021;src:url('chunks/assets/font_e2a7349ce0d2bd83ce24b169.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;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;}
.m19_c00021{transform:matrix(0.232678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232678,0.000000,0.000000,0.250000,0,0);}
.ma_c00021{transform:matrix(0.235914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235914,0.000000,0.000000,0.250000,0,0);}
.m15_c00021{transform:matrix(0.238470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238470,0.000000,0.000000,0.250000,0,0);}
.m13_c00021{transform:matrix(0.246432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246432,0.000000,0.000000,0.250000,0,0);}
.m1_c00021{transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);}
.m0_c00021{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);}
.md_c00021{transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);}
.m11_c00021{transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);}
.m10_c00021{transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);}
.m5_c00021{transform:matrix(0.251673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251673,0.000000,0.000000,0.250000,0,0);}
.m16_c00021{transform:matrix(0.252002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252002,0.000000,0.000000,0.250000,0,0);}
.me_c00021{transform:matrix(0.252171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252171,0.000000,0.000000,0.250000,0,0);}
.m17_c00021{transform:matrix(0.252396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252396,0.000000,0.000000,0.250000,0,0);}
.m3_c00021{transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);}
.m12_c00021{transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);}
.mb_c00021{transform:matrix(0.253430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253430,0.000000,0.000000,0.250000,0,0);}
.m9_c00021{transform:matrix(0.254241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254241,0.000000,0.000000,0.250000,0,0);}
.m7_c00021{transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);}
.m14_c00021{transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);}
.mc_c00021{transform:matrix(0.257027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257027,0.000000,0.000000,0.250000,0,0);}
.m6_c00021{transform:matrix(0.257216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257216,0.000000,0.000000,0.250000,0,0);}
.m18_c00021{transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);}
.mf_c00021{transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);}
.m4_c00021{transform:matrix(0.258619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258619,0.000000,0.000000,0.250000,0,0);}
.m2_c00021{transform:matrix(0.277538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277538,0.000000,0.000000,0.250000,0,0);}
.m8_c00021{transform:matrix(0.282345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282345,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.lsaa_c00021{letter-spacing:-2.562000px;}
.lsad_c00021{letter-spacing:-2.436000px;}
.ls91_c00021{letter-spacing:-2.331000px;}
.lsb0_c00021{letter-spacing:-2.121000px;}
.ls99_c00021{letter-spacing:-1.578420px;}
.ls93_c00021{letter-spacing:-1.531800px;}
.lsa7_c00021{letter-spacing:-1.365300px;}
.ls9e_c00021{letter-spacing:-0.939060px;}
.ls95_c00021{letter-spacing:-0.792540px;}
.ls97_c00021{letter-spacing:-0.779220px;}
.lsa2_c00021{letter-spacing:-0.652680px;}
.lsa6_c00021{letter-spacing:-0.539460px;}
.ls98_c00021{letter-spacing:-0.333000px;}
.lsaf_c00021{letter-spacing:-0.226440px;}
.ls94_c00021{letter-spacing:-0.079920px;}
.ls8f_c00021{letter-spacing:0.000000px;}
.lsa9_c00021{letter-spacing:0.026640px;}
.ls11_c00021{letter-spacing:0.066600px;}
.ls71_c00021{letter-spacing:0.166500px;}
.ls4b_c00021{letter-spacing:0.186480px;}
.ls7e_c00021{letter-spacing:0.299700px;}
.ls8a_c00021{letter-spacing:0.306360px;}
.ls70_c00021{letter-spacing:0.346320px;}
.ls18_c00021{letter-spacing:0.359640px;}
.ls9b_c00021{letter-spacing:0.379620px;}
.ls42_c00021{letter-spacing:0.386280px;}
.ls56_c00021{letter-spacing:0.432900px;}
.ls64_c00021{letter-spacing:0.446220px;}
.ls9d_c00021{letter-spacing:0.492840px;}
.ls72_c00021{letter-spacing:0.506160px;}
.ls7a_c00021{letter-spacing:0.526140px;}
.ls31_c00021{letter-spacing:0.552780px;}
.ls3f_c00021{letter-spacing:0.559440px;}
.ls4e_c00021{letter-spacing:0.572760px;}
.ls5_c00021{letter-spacing:0.586080px;}
.ls5c_c00021{letter-spacing:0.666000px;}
.ls50_c00021{letter-spacing:0.692640px;}
.ls8b_c00021{letter-spacing:0.705960px;}
.ls27_c00021{letter-spacing:0.712620px;}
.lsa0_c00021{letter-spacing:0.759240px;}
.ls86_c00021{letter-spacing:0.765900px;}
.lsae_c00021{letter-spacing:0.785880px;}
.ls5a_c00021{letter-spacing:0.792540px;}
.ls30_c00021{letter-spacing:0.812520px;}
.ls57_c00021{letter-spacing:0.819180px;}
.ls88_c00021{letter-spacing:0.825840px;}
.ls3d_c00021{letter-spacing:0.832500px;}
.ls74_c00021{letter-spacing:0.872460px;}
.ls1c_c00021{letter-spacing:0.885780px;}
.ls2b_c00021{letter-spacing:0.892440px;}
.ls9c_c00021{letter-spacing:0.899100px;}
.ls6a_c00021{letter-spacing:0.905760px;}
.ls7b_c00021{letter-spacing:0.932400px;}
.ls22_c00021{letter-spacing:0.945720px;}
.ls2a_c00021{letter-spacing:0.979020px;}
.ls24_c00021{letter-spacing:0.992340px;}
.ls28_c00021{letter-spacing:1.005660px;}
.ls25_c00021{letter-spacing:1.018980px;}
.lsac_c00021{letter-spacing:1.025640px;}
.ls20_c00021{letter-spacing:1.052280px;}
.ls4_c00021{letter-spacing:1.058940px;}
.ls3b_c00021{letter-spacing:1.065600px;}
.ls83_c00021{letter-spacing:1.072260px;}
.ls84_c00021{letter-spacing:1.085580px;}
.ls13_c00021{letter-spacing:1.092240px;}
.ls77_c00021{letter-spacing:1.105560px;}
.lsa1_c00021{letter-spacing:1.132200px;}
.ls67_c00021{letter-spacing:1.138860px;}
.ls82_c00021{letter-spacing:1.145520px;}
.ls23_c00021{letter-spacing:1.152180px;}
.ls2_c00021{letter-spacing:1.158840px;}
.lsa4_c00021{letter-spacing:1.165500px;}
.ls89_c00021{letter-spacing:1.172160px;}
.ls76_c00021{letter-spacing:1.178820px;}
.ls36_c00021{letter-spacing:1.198800px;}
.ls6b_c00021{letter-spacing:1.205460px;}
.ls2f_c00021{letter-spacing:1.212120px;}
.ls1d_c00021{letter-spacing:1.225440px;}
.ls53_c00021{letter-spacing:1.232100px;}
.ls68_c00021{letter-spacing:1.238760px;}
.ls69_c00021{letter-spacing:1.265400px;}
.lsb_c00021{letter-spacing:1.272060px;}
.ls65_c00021{letter-spacing:1.278720px;}
.ls61_c00021{letter-spacing:1.298700px;}
.ls78_c00021{letter-spacing:1.305360px;}
.ls4c_c00021{letter-spacing:1.318680px;}
.ls26_c00021{letter-spacing:1.325340px;}
.ls7c_c00021{letter-spacing:1.332000px;}
.lsd_c00021{letter-spacing:1.338660px;}
.ls2e_c00021{letter-spacing:1.351980px;}
.ls4a_c00021{letter-spacing:1.358640px;}
.ls8c_c00021{letter-spacing:1.371960px;}
.ls96_c00021{letter-spacing:1.385280px;}
.ls6e_c00021{letter-spacing:1.391940px;}
.ls52_c00021{letter-spacing:1.405260px;}
.ls17_c00021{letter-spacing:1.411920px;}
.ls14_c00021{letter-spacing:1.425240px;}
.ls8_c00021{letter-spacing:1.431900px;}
.ls40_c00021{letter-spacing:1.438560px;}
.ls2c_c00021{letter-spacing:1.451880px;}
.ls5e_c00021{letter-spacing:1.478520px;}
.ls1e_c00021{letter-spacing:1.511820px;}
.ls1b_c00021{letter-spacing:1.518480px;}
.lsa_c00021{letter-spacing:1.525140px;}
.ls63_c00021{letter-spacing:1.531800px;}
.ls41_c00021{letter-spacing:1.545120px;}
.ls3c_c00021{letter-spacing:1.551780px;}
.ls80_c00021{letter-spacing:1.558440px;}
.ls8d_c00021{letter-spacing:1.571760px;}
.ls46_c00021{letter-spacing:1.591740px;}
.ls66_c00021{letter-spacing:1.598400px;}
.ls16_c00021{letter-spacing:1.625040px;}
.ls7d_c00021{letter-spacing:1.631700px;}
.ls1_c00021{letter-spacing:1.638360px;}
.ls58_c00021{letter-spacing:1.651680px;}
.ls3e_c00021{letter-spacing:1.665000px;}
.ls90_c00021{letter-spacing:1.693620px;}
.ls0_c00021{letter-spacing:1.711080px;}
.ls59_c00021{letter-spacing:1.711620px;}
.ls4f_c00021{letter-spacing:1.731600px;}
.ls33_c00021{letter-spacing:1.744920px;}
.ls49_c00021{letter-spacing:1.751580px;}
.ls9_c00021{letter-spacing:1.758240px;}
.ls9f_c00021{letter-spacing:1.778220px;}
.ls55_c00021{letter-spacing:1.791540px;}
.ls2d_c00021{letter-spacing:1.811520px;}
.ls8e_c00021{letter-spacing:1.844820px;}
.ls10_c00021{letter-spacing:1.871460px;}
.ls6f_c00021{letter-spacing:1.891440px;}
.ls32_c00021{letter-spacing:1.898100px;}
.ls19_c00021{letter-spacing:1.904760px;}
.ls34_c00021{letter-spacing:1.911420px;}
.lsa5_c00021{letter-spacing:1.918080px;}
.ls60_c00021{letter-spacing:1.931400px;}
.lsf_c00021{letter-spacing:1.984680px;}
.ls73_c00021{letter-spacing:1.991340px;}
.ls7_c00021{letter-spacing:1.998000px;}
.ls51_c00021{letter-spacing:2.004660px;}
.ls5d_c00021{letter-spacing:2.011320px;}
.ls12_c00021{letter-spacing:2.024640px;}
.ls43_c00021{letter-spacing:2.031300px;}
.ls79_c00021{letter-spacing:2.037960px;}
.lsab_c00021{letter-spacing:2.051280px;}
.ls1a_c00021{letter-spacing:2.057940px;}
.ls5b_c00021{letter-spacing:2.071260px;}
.ls87_c00021{letter-spacing:2.084580px;}
.ls62_c00021{letter-spacing:2.097900px;}
.ls6d_c00021{letter-spacing:2.144520px;}
.ls1f_c00021{letter-spacing:2.151180px;}
.ls85_c00021{letter-spacing:2.157840px;}
.ls45_c00021{letter-spacing:2.197800px;}
.ls6_c00021{letter-spacing:2.231100px;}
.lsc_c00021{letter-spacing:2.264400px;}
.ls9a_c00021{letter-spacing:2.277720px;}
.ls7f_c00021{letter-spacing:2.284380px;}
.ls3a_c00021{letter-spacing:2.324340px;}
.ls15_c00021{letter-spacing:2.337660px;}
.ls39_c00021{letter-spacing:2.357640px;}
.ls75_c00021{letter-spacing:2.404260px;}
.ls3_c00021{letter-spacing:2.430900px;}
.ls44_c00021{letter-spacing:2.524140px;}
.ls35_c00021{letter-spacing:2.537460px;}
.lse_c00021{letter-spacing:2.597400px;}
.lsa3_c00021{letter-spacing:2.624040px;}
.ls47_c00021{letter-spacing:2.743920px;}
.ls38_c00021{letter-spacing:2.757240px;}
.lsa8_c00021{letter-spacing:2.837160px;}
.ls5f_c00021{letter-spacing:2.850480px;}
.ls4d_c00021{letter-spacing:2.877120px;}
.ls21_c00021{letter-spacing:2.883780px;}
.ls6c_c00021{letter-spacing:2.890440px;}
.ls48_c00021{letter-spacing:2.970360px;}
.ls37_c00021{letter-spacing:3.016980px;}
.ls81_c00021{letter-spacing:3.090240px;}
.ls29_c00021{letter-spacing:3.310020px;}
.ls54_c00021{letter-spacing:3.316680px;}
.ls92_c00021{letter-spacing:3.330000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{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__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:0.000000px;}
._11_c00021{margin-left:-21.856800px;}
._d_c00021{margin-left:-13.519800px;}
._13_c00021{margin-left:-8.435760px;}
._b_c00021{margin-left:-7.006320px;}
._f_c00021{margin-left:-5.167020px;}
._e_c00021{margin-left:-4.021200px;}
._c_c00021{margin-left:-2.584080px;}
._0_c00021{margin-left:-1.389720px;}
._5_c00021{width:1.048620px;}
._1_c00021{width:2.289600px;}
._10_c00021{width:3.401040px;}
._4_c00021{width:4.463640px;}
._3_c00021{width:5.868900px;}
._8_c00021{width:7.044840px;}
._12_c00021{width:8.370000px;}
._6_c00021{width:9.452760px;}
._14_c00021{width:10.467300px;}
._9_c00021{width:11.513700px;}
._2_c00021{width:13.253400px;}
._a_c00021{width:14.260080px;}
._15_c00021{width:15.267720px;}
._7_c00021{width:18.348300px;}
.fc0_c00021{color:transparent;}
.fs0_c00021{font-size:58.200000px;}
.fs7_c00021{font-size:60.600000px;}
.fs9_c00021{font-size:66.000000px;}
.fs1_c00021{font-size:66.600000px;}
.fs3_c00021{font-size:67.800000px;}
.fs6_c00021{font-size:69.600000px;}
.fs2_c00021{font-size:70.200000px;}
.fs5_c00021{font-size:72.000000px;}
.fs4_c00021{font-size:73.200000px;}
.fs8_c00021{font-size:76.800000px;}
.y0_c00021{bottom:0.000000px;}
.y28_c00021{bottom:66.975015px;}
.y26_c00021{bottom:147.957315px;}
.y27_c00021{bottom:147.960015px;}
.y25_c00021{bottom:178.560015px;}
.y24_c00021{bottom:178.566015px;}
.y23_c00021{bottom:209.535015px;}
.y22_c00021{bottom:209.536365px;}
.y21_c00021{bottom:240.855015px;}
.y20_c00021{bottom:303.135015px;}
.y1e_c00021{bottom:334.087365px;}
.y1f_c00021{bottom:334.095015px;}
.y1d_c00021{bottom:365.039715px;}
.y1c_c00021{bottom:396.375015px;}
.y1b_c00021{bottom:428.400015px;}
.y1a_c00021{bottom:459.736365px;}
.y18_c00021{bottom:491.047665px;}
.y19_c00021{bottom:491.055015px;}
.y17_c00021{bottom:522.000015px;}
.y15_c00021{bottom:584.998665px;}
.y16_c00021{bottom:585.000015px;}
.y2a_c00021{bottom:615.600015px;}
.y14_c00021{bottom:615.967665px;}
.y29_c00021{bottom:619.215015px;}
.y13_c00021{bottom:646.915065px;}
.y12_c00021{bottom:678.600015px;}
.y11_c00021{bottom:678.601365px;}
.y10_c00021{bottom:709.920015px;}
.yf_c00021{bottom:741.255015px;}
.ye_c00021{bottom:741.257715px;}
.yc_c00021{bottom:803.885115px;}
.yd_c00021{bottom:803.895015px;}
.yb_c00021{bottom:835.570065px;}
.ya_c00021{bottom:867.255015px;}
.y9_c00021{bottom:929.527665px;}
.y8_c00021{bottom:960.487665px;}
.y7_c00021{bottom:991.440015px;}
.y5_c00021{bottom:1022.759715px;}
.y6_c00021{bottom:1022.760015px;}
.y4_c00021{bottom:1054.095015px;}
.y3_c00021{bottom:1085.400015px;}
.y2_c00021{bottom:1117.095015px;}
.y1_c00021{bottom:1192.695015px;}
.h2_c00021{height:58.654687px;}
.hd_c00021{height:59.475586px;}
.h4_c00021{height:65.331738px;}
.h3_c00021{height:65.364258px;}
.h7_c00021{height:65.384058px;}
.hf_c00021{height:68.835938px;}
.h5_c00021{height:68.863184px;}
.hb_c00021{height:69.461719px;}
.h9_c00021{height:70.628906px;}
.h6_c00021{height:70.713281px;}
.h8_c00021{height:71.800655px;}
.ha_c00021{height:71.841797px;}
.hc_c00021{height:72.590625px;}
.he_c00021{height:80.100000px;}
.h1_c00021{height:1263.000000px;}
.h0_c00021{height:1263.240015px;}
.w1_c00021{width:892.500000px;}
.w0_c00021{width:892.800000px;}
.x0_c00021{left:0.000000px;}
.x30_c00021{left:120.084000px;}
.x1_c00021{left:121.605000px;}
.x11_c00021{left:147.525000px;}
.x25_c00021{left:153.225000px;}
.x26_c00021{left:157.140000px;}
.x22_c00021{left:161.190000px;}
.x28_c00021{left:175.245000px;}
.x2_c00021{left:176.310000px;}
.x1f_c00021{left:179.535000px;}
.x12_c00021{left:181.845000px;}
.x20_c00021{left:201.945000px;}
.x29_c00021{left:203.760000px;}
.x10_c00021{left:209.115000px;}
.x1b_c00021{left:229.860000px;}
.x3_c00021{left:237.750000px;}
.x1c_c00021{left:246.555000px;}
.x4_c00021{left:258.825000px;}
.x5_c00021{left:272.685000px;}
.xd_c00021{left:277.095000px;}
.x13_c00021{left:301.800000px;}
.x6_c00021{left:313.035000px;}
.x14_c00021{left:328.140000px;}
.x15_c00021{left:348.675000px;}
.x31_c00021{left:365.235000px;}
.x1d_c00021{left:371.070000px;}
.x32_c00021{left:386.250000px;}
.x1e_c00021{left:393.765000px;}
.xb_c00021{left:397.350000px;}
.x7_c00021{left:408.075000px;}
.xc_c00021{left:420.660000px;}
.x36_c00021{left:426.465000px;}
.x8_c00021{left:430.695000px;}
.x2d_c00021{left:436.860000px;}
.xe_c00021{left:459.390000px;}
.x2a_c00021{left:464.595000px;}
.x18_c00021{left:481.515000px;}
.xf_c00021{left:489.465000px;}
.x2e_c00021{left:498.435000px;}
.x2f_c00021{left:528.675000px;}
.x23_c00021{left:548.850000px;}
.x24_c00021{left:565.095000px;}
.x33_c00021{left:578.520000px;}
.x34_c00021{left:600.315000px;}
.x21_c00021{left:607.950000px;}
.x16_c00021{left:621.885000px;}
.x9_c00021{left:624.975000px;}
.x19_c00021{left:628.590000px;}
.x17_c00021{left:647.040000px;}
.x1a_c00021{left:656.505000px;}
.x2b_c00021{left:669.420000px;}
.xa_c00021{left:676.830000px;}
.x2c_c00021{left:693.225000px;}
.x35_c00021{left:727.200000px;}
.x27_c00021{left:732.780000px;}
.x38_c00021{left:855.495000px;}
.x37_c00021{left:856.545000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.lsaa_c00021{letter-spacing:-2.277333pt;}
.lsad_c00021{letter-spacing:-2.165333pt;}
.ls91_c00021{letter-spacing:-2.072000pt;}
.lsb0_c00021{letter-spacing:-1.885333pt;}
.ls99_c00021{letter-spacing:-1.403040pt;}
.ls93_c00021{letter-spacing:-1.361600pt;}
.lsa7_c00021{letter-spacing:-1.213600pt;}
.ls9e_c00021{letter-spacing:-0.834720pt;}
.ls95_c00021{letter-spacing:-0.704480pt;}
.ls97_c00021{letter-spacing:-0.692640pt;}
.lsa2_c00021{letter-spacing:-0.580160pt;}
.lsa6_c00021{letter-spacing:-0.479520pt;}
.ls98_c00021{letter-spacing:-0.296000pt;}
.lsaf_c00021{letter-spacing:-0.201280pt;}
.ls94_c00021{letter-spacing:-0.071040pt;}
.ls8f_c00021{letter-spacing:0.000000pt;}
.lsa9_c00021{letter-spacing:0.023680pt;}
.ls11_c00021{letter-spacing:0.059200pt;}
.ls71_c00021{letter-spacing:0.148000pt;}
.ls4b_c00021{letter-spacing:0.165760pt;}
.ls7e_c00021{letter-spacing:0.266400pt;}
.ls8a_c00021{letter-spacing:0.272320pt;}
.ls70_c00021{letter-spacing:0.307840pt;}
.ls18_c00021{letter-spacing:0.319680pt;}
.ls9b_c00021{letter-spacing:0.337440pt;}
.ls42_c00021{letter-spacing:0.343360pt;}
.ls56_c00021{letter-spacing:0.384800pt;}
.ls64_c00021{letter-spacing:0.396640pt;}
.ls9d_c00021{letter-spacing:0.438080pt;}
.ls72_c00021{letter-spacing:0.449920pt;}
.ls7a_c00021{letter-spacing:0.467680pt;}
.ls31_c00021{letter-spacing:0.491360pt;}
.ls3f_c00021{letter-spacing:0.497280pt;}
.ls4e_c00021{letter-spacing:0.509120pt;}
.ls5_c00021{letter-spacing:0.520960pt;}
.ls5c_c00021{letter-spacing:0.592000pt;}
.ls50_c00021{letter-spacing:0.615680pt;}
.ls8b_c00021{letter-spacing:0.627520pt;}
.ls27_c00021{letter-spacing:0.633440pt;}
.lsa0_c00021{letter-spacing:0.674880pt;}
.ls86_c00021{letter-spacing:0.680800pt;}
.lsae_c00021{letter-spacing:0.698560pt;}
.ls5a_c00021{letter-spacing:0.704480pt;}
.ls30_c00021{letter-spacing:0.722240pt;}
.ls57_c00021{letter-spacing:0.728160pt;}
.ls88_c00021{letter-spacing:0.734080pt;}
.ls3d_c00021{letter-spacing:0.740000pt;}
.ls74_c00021{letter-spacing:0.775520pt;}
.ls1c_c00021{letter-spacing:0.787360pt;}
.ls2b_c00021{letter-spacing:0.793280pt;}
.ls9c_c00021{letter-spacing:0.799200pt;}
.ls6a_c00021{letter-spacing:0.805120pt;}
.ls7b_c00021{letter-spacing:0.828800pt;}
.ls22_c00021{letter-spacing:0.840640pt;}
.ls2a_c00021{letter-spacing:0.870240pt;}
.ls24_c00021{letter-spacing:0.882080pt;}
.ls28_c00021{letter-spacing:0.893920pt;}
.ls25_c00021{letter-spacing:0.905760pt;}
.lsac_c00021{letter-spacing:0.911680pt;}
.ls20_c00021{letter-spacing:0.935360pt;}
.ls4_c00021{letter-spacing:0.941280pt;}
.ls3b_c00021{letter-spacing:0.947200pt;}
.ls83_c00021{letter-spacing:0.953120pt;}
.ls84_c00021{letter-spacing:0.964960pt;}
.ls13_c00021{letter-spacing:0.970880pt;}
.ls77_c00021{letter-spacing:0.982720pt;}
.lsa1_c00021{letter-spacing:1.006400pt;}
.ls67_c00021{letter-spacing:1.012320pt;}
.ls82_c00021{letter-spacing:1.018240pt;}
.ls23_c00021{letter-spacing:1.024160pt;}
.ls2_c00021{letter-spacing:1.030080pt;}
.lsa4_c00021{letter-spacing:1.036000pt;}
.ls89_c00021{letter-spacing:1.041920pt;}
.ls76_c00021{letter-spacing:1.047840pt;}
.ls36_c00021{letter-spacing:1.065600pt;}
.ls6b_c00021{letter-spacing:1.071520pt;}
.ls2f_c00021{letter-spacing:1.077440pt;}
.ls1d_c00021{letter-spacing:1.089280pt;}
.ls53_c00021{letter-spacing:1.095200pt;}
.ls68_c00021{letter-spacing:1.101120pt;}
.ls69_c00021{letter-spacing:1.124800pt;}
.lsb_c00021{letter-spacing:1.130720pt;}
.ls65_c00021{letter-spacing:1.136640pt;}
.ls61_c00021{letter-spacing:1.154400pt;}
.ls78_c00021{letter-spacing:1.160320pt;}
.ls4c_c00021{letter-spacing:1.172160pt;}
.ls26_c00021{letter-spacing:1.178080pt;}
.ls7c_c00021{letter-spacing:1.184000pt;}
.lsd_c00021{letter-spacing:1.189920pt;}
.ls2e_c00021{letter-spacing:1.201760pt;}
.ls4a_c00021{letter-spacing:1.207680pt;}
.ls8c_c00021{letter-spacing:1.219520pt;}
.ls96_c00021{letter-spacing:1.231360pt;}
.ls6e_c00021{letter-spacing:1.237280pt;}
.ls52_c00021{letter-spacing:1.249120pt;}
.ls17_c00021{letter-spacing:1.255040pt;}
.ls14_c00021{letter-spacing:1.266880pt;}
.ls8_c00021{letter-spacing:1.272800pt;}
.ls40_c00021{letter-spacing:1.278720pt;}
.ls2c_c00021{letter-spacing:1.290560pt;}
.ls5e_c00021{letter-spacing:1.314240pt;}
.ls1e_c00021{letter-spacing:1.343840pt;}
.ls1b_c00021{letter-spacing:1.349760pt;}
.lsa_c00021{letter-spacing:1.355680pt;}
.ls63_c00021{letter-spacing:1.361600pt;}
.ls41_c00021{letter-spacing:1.373440pt;}
.ls3c_c00021{letter-spacing:1.379360pt;}
.ls80_c00021{letter-spacing:1.385280pt;}
.ls8d_c00021{letter-spacing:1.397120pt;}
.ls46_c00021{letter-spacing:1.414880pt;}
.ls66_c00021{letter-spacing:1.420800pt;}
.ls16_c00021{letter-spacing:1.444480pt;}
.ls7d_c00021{letter-spacing:1.450400pt;}
.ls1_c00021{letter-spacing:1.456320pt;}
.ls58_c00021{letter-spacing:1.468160pt;}
.ls3e_c00021{letter-spacing:1.480000pt;}
.ls90_c00021{letter-spacing:1.505440pt;}
.ls0_c00021{letter-spacing:1.520960pt;}
.ls59_c00021{letter-spacing:1.521440pt;}
.ls4f_c00021{letter-spacing:1.539200pt;}
.ls33_c00021{letter-spacing:1.551040pt;}
.ls49_c00021{letter-spacing:1.556960pt;}
.ls9_c00021{letter-spacing:1.562880pt;}
.ls9f_c00021{letter-spacing:1.580640pt;}
.ls55_c00021{letter-spacing:1.592480pt;}
.ls2d_c00021{letter-spacing:1.610240pt;}
.ls8e_c00021{letter-spacing:1.639840pt;}
.ls10_c00021{letter-spacing:1.663520pt;}
.ls6f_c00021{letter-spacing:1.681280pt;}
.ls32_c00021{letter-spacing:1.687200pt;}
.ls19_c00021{letter-spacing:1.693120pt;}
.ls34_c00021{letter-spacing:1.699040pt;}
.lsa5_c00021{letter-spacing:1.704960pt;}
.ls60_c00021{letter-spacing:1.716800pt;}
.lsf_c00021{letter-spacing:1.764160pt;}
.ls73_c00021{letter-spacing:1.770080pt;}
.ls7_c00021{letter-spacing:1.776000pt;}
.ls51_c00021{letter-spacing:1.781920pt;}
.ls5d_c00021{letter-spacing:1.787840pt;}
.ls12_c00021{letter-spacing:1.799680pt;}
.ls43_c00021{letter-spacing:1.805600pt;}
.ls79_c00021{letter-spacing:1.811520pt;}
.lsab_c00021{letter-spacing:1.823360pt;}
.ls1a_c00021{letter-spacing:1.829280pt;}
.ls5b_c00021{letter-spacing:1.841120pt;}
.ls87_c00021{letter-spacing:1.852960pt;}
.ls62_c00021{letter-spacing:1.864800pt;}
.ls6d_c00021{letter-spacing:1.906240pt;}
.ls1f_c00021{letter-spacing:1.912160pt;}
.ls85_c00021{letter-spacing:1.918080pt;}
.ls45_c00021{letter-spacing:1.953600pt;}
.ls6_c00021{letter-spacing:1.983200pt;}
.lsc_c00021{letter-spacing:2.012800pt;}
.ls9a_c00021{letter-spacing:2.024640pt;}
.ls7f_c00021{letter-spacing:2.030560pt;}
.ls3a_c00021{letter-spacing:2.066080pt;}
.ls15_c00021{letter-spacing:2.077920pt;}
.ls39_c00021{letter-spacing:2.095680pt;}
.ls75_c00021{letter-spacing:2.137120pt;}
.ls3_c00021{letter-spacing:2.160800pt;}
.ls44_c00021{letter-spacing:2.243680pt;}
.ls35_c00021{letter-spacing:2.255520pt;}
.lse_c00021{letter-spacing:2.308800pt;}
.lsa3_c00021{letter-spacing:2.332480pt;}
.ls47_c00021{letter-spacing:2.439040pt;}
.ls38_c00021{letter-spacing:2.450880pt;}
.lsa8_c00021{letter-spacing:2.521920pt;}
.ls5f_c00021{letter-spacing:2.533760pt;}
.ls4d_c00021{letter-spacing:2.557440pt;}
.ls21_c00021{letter-spacing:2.563360pt;}
.ls6c_c00021{letter-spacing:2.569280pt;}
.ls48_c00021{letter-spacing:2.640320pt;}
.ls37_c00021{letter-spacing:2.681760pt;}
.ls81_c00021{letter-spacing:2.746880pt;}
.ls29_c00021{letter-spacing:2.942240pt;}
.ls54_c00021{letter-spacing:2.948160pt;}
.ls92_c00021{letter-spacing:2.960000pt;}
.ws0_c00021{word-spacing:0.000000pt;}
._11_c00021{margin-left:-19.428267pt;}
._d_c00021{margin-left:-12.017600pt;}
._13_c00021{margin-left:-7.498453pt;}
._b_c00021{margin-left:-6.227840pt;}
._f_c00021{margin-left:-4.592907pt;}
._e_c00021{margin-left:-3.574400pt;}
._c_c00021{margin-left:-2.296960pt;}
._0_c00021{margin-left:-1.235307pt;}
._5_c00021{width:0.932107pt;}
._1_c00021{width:2.035200pt;}
._10_c00021{width:3.023147pt;}
._4_c00021{width:3.967680pt;}
._3_c00021{width:5.216800pt;}
._8_c00021{width:6.262080pt;}
._12_c00021{width:7.440000pt;}
._6_c00021{width:8.402453pt;}
._14_c00021{width:9.304267pt;}
._9_c00021{width:10.234400pt;}
._2_c00021{width:11.780800pt;}
._a_c00021{width:12.675627pt;}
._15_c00021{width:13.571307pt;}
._7_c00021{width:16.309600pt;}
.fs0_c00021{font-size:51.733333pt;}
.fs7_c00021{font-size:53.866667pt;}
.fs9_c00021{font-size:58.666667pt;}
.fs1_c00021{font-size:59.200000pt;}
.fs3_c00021{font-size:60.266667pt;}
.fs6_c00021{font-size:61.866667pt;}
.fs2_c00021{font-size:62.400000pt;}
.fs5_c00021{font-size:64.000000pt;}
.fs4_c00021{font-size:65.066667pt;}
.fs8_c00021{font-size:68.266667pt;}
.y0_c00021{bottom:0.000000pt;}
.y28_c00021{bottom:59.533347pt;}
.y26_c00021{bottom:131.517613pt;}
.y27_c00021{bottom:131.520013pt;}
.y25_c00021{bottom:158.720013pt;}
.y24_c00021{bottom:158.725347pt;}
.y23_c00021{bottom:186.253347pt;}
.y22_c00021{bottom:186.254547pt;}
.y21_c00021{bottom:214.093347pt;}
.y20_c00021{bottom:269.453347pt;}
.y1e_c00021{bottom:296.966547pt;}
.y1f_c00021{bottom:296.973347pt;}
.y1d_c00021{bottom:324.479747pt;}
.y1c_c00021{bottom:352.333347pt;}
.y1b_c00021{bottom:380.800013pt;}
.y1a_c00021{bottom:408.654547pt;}
.y18_c00021{bottom:436.486813pt;}
.y19_c00021{bottom:436.493347pt;}
.y17_c00021{bottom:464.000013pt;}
.y15_c00021{bottom:519.998813pt;}
.y16_c00021{bottom:520.000013pt;}
.y2a_c00021{bottom:547.200013pt;}
.y14_c00021{bottom:547.526813pt;}
.y29_c00021{bottom:550.413347pt;}
.y13_c00021{bottom:575.035613pt;}
.y12_c00021{bottom:603.200013pt;}
.y11_c00021{bottom:603.201213pt;}
.y10_c00021{bottom:631.040013pt;}
.yf_c00021{bottom:658.893347pt;}
.ye_c00021{bottom:658.895747pt;}
.yc_c00021{bottom:714.564547pt;}
.yd_c00021{bottom:714.573347pt;}
.yb_c00021{bottom:742.728947pt;}
.ya_c00021{bottom:770.893347pt;}
.y9_c00021{bottom:826.246813pt;}
.y8_c00021{bottom:853.766813pt;}
.y7_c00021{bottom:881.280013pt;}
.y5_c00021{bottom:909.119747pt;}
.y6_c00021{bottom:909.120013pt;}
.y4_c00021{bottom:936.973347pt;}
.y3_c00021{bottom:964.800013pt;}
.y2_c00021{bottom:992.973347pt;}
.y1_c00021{bottom:1060.173347pt;}
.h2_c00021{height:52.137500pt;}
.hd_c00021{height:52.867187pt;}
.h4_c00021{height:58.072656pt;}
.h3_c00021{height:58.101562pt;}
.h7_c00021{height:58.119162pt;}
.hf_c00021{height:61.187500pt;}
.h5_c00021{height:61.211719pt;}
.hb_c00021{height:61.743750pt;}
.h9_c00021{height:62.781250pt;}
.h6_c00021{height:62.856250pt;}
.h8_c00021{height:63.822804pt;}
.ha_c00021{height:63.859375pt;}
.hc_c00021{height:64.525000pt;}
.he_c00021{height:71.200000pt;}
.h1_c00021{height:1122.666667pt;}
.h0_c00021{height:1122.880013pt;}
.w1_c00021{width:793.333333pt;}
.w0_c00021{width:793.600000pt;}
.x0_c00021{left:0.000000pt;}
.x30_c00021{left:106.741333pt;}
.x1_c00021{left:108.093333pt;}
.x11_c00021{left:131.133333pt;}
.x25_c00021{left:136.200000pt;}
.x26_c00021{left:139.680000pt;}
.x22_c00021{left:143.280000pt;}
.x28_c00021{left:155.773333pt;}
.x2_c00021{left:156.720000pt;}
.x1f_c00021{left:159.586667pt;}
.x12_c00021{left:161.640000pt;}
.x20_c00021{left:179.506667pt;}
.x29_c00021{left:181.120000pt;}
.x10_c00021{left:185.880000pt;}
.x1b_c00021{left:204.320000pt;}
.x3_c00021{left:211.333333pt;}
.x1c_c00021{left:219.160000pt;}
.x4_c00021{left:230.066667pt;}
.x5_c00021{left:242.386667pt;}
.xd_c00021{left:246.306667pt;}
.x13_c00021{left:268.266667pt;}
.x6_c00021{left:278.253333pt;}
.x14_c00021{left:291.680000pt;}
.x15_c00021{left:309.933333pt;}
.x31_c00021{left:324.653333pt;}
.x1d_c00021{left:329.840000pt;}
.x32_c00021{left:343.333333pt;}
.x1e_c00021{left:350.013333pt;}
.xb_c00021{left:353.200000pt;}
.x7_c00021{left:362.733333pt;}
.xc_c00021{left:373.920000pt;}
.x36_c00021{left:379.080000pt;}
.x8_c00021{left:382.840000pt;}
.x2d_c00021{left:388.320000pt;}
.xe_c00021{left:408.346667pt;}
.x2a_c00021{left:412.973333pt;}
.x18_c00021{left:428.013333pt;}
.xf_c00021{left:435.080000pt;}
.x2e_c00021{left:443.053333pt;}
.x2f_c00021{left:469.933333pt;}
.x23_c00021{left:487.866667pt;}
.x24_c00021{left:502.306667pt;}
.x33_c00021{left:514.240000pt;}
.x34_c00021{left:533.613333pt;}
.x21_c00021{left:540.400000pt;}
.x16_c00021{left:552.786667pt;}
.x9_c00021{left:555.533333pt;}
.x19_c00021{left:558.746667pt;}
.x17_c00021{left:575.146667pt;}
.x1a_c00021{left:583.560000pt;}
.x2b_c00021{left:595.040000pt;}
.xa_c00021{left:601.626667pt;}
.x2c_c00021{left:616.200000pt;}
.x35_c00021{left:646.400000pt;}
.x27_c00021{left:651.360000pt;}
.x38_c00021{left:760.440000pt;}
.x37_c00021{left:761.373333pt;}
}





/* 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_c00022 {
    display:none;
  }
  .loading-indicator_c00022.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00022 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_c00022 { 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_c00022" -> "#page-container .classname_c00022")
 */
.pf_c00022 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00022 { /* 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_c00022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00022 { /* 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_c00022 { /* 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_c00022 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00022 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00022 {overflow:visible;}
  }
}
.c_c00022 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00022 { /* 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_c00022:after { /* webkit #35443 */
  content: '';
}
.t_c00022:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00022 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 */
}
.__c00022 { /* 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_c00022 { /* info for Javascript */
  display:none;
}
.l_c00022 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00022 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00022 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00022: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_c00022 {
    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_c00022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00022.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_c00022 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00022;src:url('chunks/assets/font_35b8120bca202caa6e0be35c.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;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:ff2_c00022;src:url('chunks/assets/font_7672f1dc51802a13935476d9.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.284668;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_c00022;src:url('chunks/assets/font_19a8fa46918ba5fdf02d9bba.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:0.666000;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_c00022;src:url('chunks/assets/font_a755230f8a05fa2ecf86173c.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:1.284180;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;}
.m7_c00022{transform:matrix(0.160205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160205,0.000000,0.000000,0.250000,0,0);}
.m4_c00022{transform:matrix(0.161226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161226,0.000000,0.000000,0.250000,0,0);}
.m5_c00022{transform:matrix(0.164289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164289,0.000000,0.000000,0.250000,0,0);}
.m10_c00022{transform:matrix(0.165307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165307,0.000000,0.000000,0.250000,0,0);}
.md_c00022{transform:matrix(0.168070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168070,0.000000,0.000000,0.250000,0,0);}
.m12_c00022{transform:matrix(0.240984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240984,0.000000,0.000000,0.250000,0,0);}
.ma_c00022{transform:matrix(0.242385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242385,0.000000,0.000000,0.250000,0,0);}
.m6_c00022{transform:matrix(0.243622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243622,0.000000,0.000000,0.250000,0,0);}
.m14_c00022{transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);}
.mf_c00022{transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);}
.m1_c00022{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);}
.m3_c00022{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.mc_c00022{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m13_c00022{transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);}
.m8_c00022{transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);}
.m9_c00022{transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);}
.mb_c00022{transform:matrix(0.255845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255845,0.000000,0.000000,0.250000,0,0);}
.m0_c00022{transform:matrix(0.265643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265643,0.000000,0.000000,0.250000,0,0);}
.m2_c00022{transform:matrix(0.274113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274113,0.000000,0.000000,0.250000,0,0);}
.m11_c00022{transform:matrix(0.280830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280830,0.000000,0.000000,0.250000,0,0);}
.me_c00022{transform:matrix(0.295117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295117,0.000000,0.000000,0.250000,0,0);}
.v2_c00022{vertical-align:-1.423800px;}
.v0_c00022{vertical-align:0.000000px;}
.v3_c00022{vertical-align:1.480800px;}
.v1_c00022{vertical-align:4.320000px;}
.v4_c00022{vertical-align:5.700000px;}
.v5_c00022{vertical-align:10.068000px;}
.ls3d_c00022{letter-spacing:-2.688000px;}
.ls31_c00022{letter-spacing:-2.373000px;}
.ls42_c00022{letter-spacing:-2.100000px;}
.ls40_c00022{letter-spacing:-1.879200px;}
.ls36_c00022{letter-spacing:-1.715340px;}
.ls2e_c00022{letter-spacing:-1.654320px;}
.ls2d_c00022{letter-spacing:-1.308540px;}
.ls2c_c00022{letter-spacing:-1.254300px;}
.ls33_c00022{letter-spacing:-1.037340px;}
.ls3a_c00022{letter-spacing:-0.894960px;}
.ls38_c00022{letter-spacing:-0.867840px;}
.ls35_c00022{letter-spacing:-0.793260px;}
.ls3e_c00022{letter-spacing:-0.339000px;}
.ls24_c00022{letter-spacing:0.000000px;}
.ls18_c00022{letter-spacing:0.094920px;}
.ls2_c00022{letter-spacing:0.108480px;}
.ls14_c00022{letter-spacing:0.183060px;}
.ls5_c00022{letter-spacing:0.359340px;}
.ls2a_c00022{letter-spacing:0.366120px;}
.ls1e_c00022{letter-spacing:0.400020px;}
.ls3c_c00022{letter-spacing:0.542400px;}
.ls3f_c00022{letter-spacing:0.562740px;}
.ls0_c00022{letter-spacing:0.569520px;}
.ls39_c00022{letter-spacing:0.576300px;}
.ls26_c00022{letter-spacing:0.583080px;}
.ls16_c00022{letter-spacing:0.745800px;}
.ls29_c00022{letter-spacing:0.779700px;}
.ls41_c00022{letter-spacing:0.786780px;}
.ls32_c00022{letter-spacing:0.915300px;}
.lse_c00022{letter-spacing:0.949200px;}
.ls2f_c00022{letter-spacing:0.962760px;}
.ls8_c00022{letter-spacing:0.976320px;}
.ls2b_c00022{letter-spacing:1.050900px;}
.lsd_c00022{letter-spacing:1.057680px;}
.lsc_c00022{letter-spacing:1.139040px;}
.ls12_c00022{letter-spacing:1.159380px;}
.ls1c_c00022{letter-spacing:1.172940px;}
.ls6_c00022{letter-spacing:1.240740px;}
.ls10_c00022{letter-spacing:1.254300px;}
.ls19_c00022{letter-spacing:1.267860px;}
.lsa_c00022{letter-spacing:1.288200px;}
.ls1f_c00022{letter-spacing:1.328040px;}
.ls37_c00022{letter-spacing:1.437360px;}
.ls1b_c00022{letter-spacing:1.457700px;}
.ls1_c00022{letter-spacing:1.478040px;}
.ls7_c00022{letter-spacing:1.484820px;}
.ls3_c00022{letter-spacing:1.552620px;}
.ls3b_c00022{letter-spacing:1.600080px;}
.ls20_c00022{letter-spacing:1.701900px;}
.ls27_c00022{letter-spacing:1.708560px;}
.lsb_c00022{letter-spacing:1.715340px;}
.ls11_c00022{letter-spacing:1.783140px;}
.ls34_c00022{letter-spacing:1.979760px;}
.ls9_c00022{letter-spacing:2.088240px;}
.lsf_c00022{letter-spacing:2.237400px;}
.ls25_c00022{letter-spacing:2.299080px;}
.ls1d_c00022{letter-spacing:2.440800px;}
.ls1a_c00022{letter-spacing:2.583180px;}
.ls22_c00022{letter-spacing:2.600280px;}
.ls30_c00022{letter-spacing:2.664540px;}
.ls21_c00022{letter-spacing:2.778840px;}
.ls13_c00022{letter-spacing:2.793360px;}
.ls4_c00022{letter-spacing:2.915400px;}
.ls23_c00022{letter-spacing:2.940000px;}
.ls17_c00022{letter-spacing:3.362880px;}
.ls28_c00022{letter-spacing:3.390000px;}
.ls15_c00022{letter-spacing:3.690240px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{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__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:0.000000px;}
._15_c00022{margin-left:-7.776600px;}
._14_c00022{margin-left:-5.592960px;}
._2_c00022{margin-left:-4.427340px;}
._0_c00022{margin-left:-2.359440px;}
._3_c00022{margin-left:-1.349220px;}
._1_c00022{width:2.047560px;}
._e_c00022{width:4.366320px;}
._10_c00022{width:6.102360px;}
._5_c00022{width:7.390200px;}
._b_c00022{width:108.168120px;}
._6_c00022{width:156.889200px;}
._f_c00022{width:162.089460px;}
._8_c00022{width:163.118640px;}
._13_c00022{width:207.535800px;}
._9_c00022{width:229.638600px;}
._11_c00022{width:242.498400px;}
._7_c00022{width:252.520560px;}
._12_c00022{width:290.590800px;}
._a_c00022{width:317.778600px;}
._c_c00022{width:358.575120px;}
._d_c00022{width:473.506320px;}
._4_c00022{width:600.852000px;}
.fc0_c00022{color:transparent;}
.fs3_c00022{font-size:21.000600px;}
.fs5_c00022{font-size:48.960000px;}
.fs2_c00022{font-size:50.400000px;}
.fs8_c00022{font-size:54.000000px;}
.fs7_c00022{font-size:55.800000px;}
.fs0_c00022{font-size:58.800000px;}
.fs9_c00022{font-size:60.000000px;}
.fs1_c00022{font-size:67.800000px;}
.fs4_c00022{font-size:74.400000px;}
.fs6_c00022{font-size:76.800000px;}
.y0_c00022{bottom:0.000000px;}
.y2b_c00022{bottom:61.215000px;}
.y2a_c00022{bottom:185.400000px;}
.y29_c00022{bottom:247.335000px;}
.y26_c00022{bottom:277.935000px;}
.y27_c00022{bottom:279.735000px;}
.y28_c00022{bottom:280.455000px;}
.y25_c00022{bottom:310.327050px;}
.y22_c00022{bottom:342.378000px;}
.y23_c00022{bottom:344.895000px;}
.y24_c00022{bottom:345.600000px;}
.y20_c00022{bottom:376.935000px;}
.y21_c00022{bottom:377.295000px;}
.y1d_c00022{bottom:407.530350px;}
.y1e_c00022{bottom:409.335000px;}
.y1f_c00022{bottom:409.695000px;}
.y1c_c00022{bottom:439.938750px;}
.y19_c00022{bottom:471.975000px;}
.y1a_c00022{bottom:473.415000px;}
.y1b_c00022{bottom:473.775000px;}
.y18_c00022{bottom:503.999700px;}
.y16_c00022{bottom:535.695000px;}
.y17_c00022{bottom:537.120000px;}
.y14_c00022{bottom:568.440000px;}
.y15_c00022{bottom:571.335000px;}
.y13_c00022{bottom:585.735000px;}
.y12_c00022{bottom:600.505200px;}
.y11_c00022{bottom:633.981450px;}
.yf_c00022{bottom:665.286750px;}
.y10_c00022{bottom:666.360000px;}
.ye_c00022{bottom:697.339200px;}
.yd_c00022{bottom:730.815450px;}
.yb_c00022{bottom:761.783550px;}
.yc_c00022{bottom:762.855000px;}
.ya_c00022{bottom:794.175000px;}
.y8_c00022{bottom:827.295000px;}
.y9_c00022{bottom:827.655000px;}
.y6_c00022{bottom:858.615000px;}
.y7_c00022{bottom:859.335000px;}
.y5_c00022{bottom:890.662350px;}
.y4_c00022{bottom:986.040000px;}
.y3_c00022{bottom:986.043900px;}
.y2_c00022{bottom:1113.135000px;}
.y1_c00022{bottom:1189.080000px;}
.h7_c00022{height:20.610940px;}
.ha_c00022{height:32.607360px;}
.h5_c00022{height:33.566400px;}
.hf_c00022{height:56.320312px;}
.h10_c00022{height:58.886719px;}
.h2_c00022{height:61.326563px;}
.h3_c00022{height:66.541992px;}
.he_c00022{height:67.965792px;}
.h4_c00022{height:70.861992px;}
.h6_c00022{height:70.881192px;}
.hb_c00022{height:72.372792px;}
.h9_c00022{height:73.733592px;}
.hd_c00022{height:75.375000px;}
.hc_c00022{height:76.609992px;}
.h8_c00022{height:77.303203px;}
.h1_c00022{height:1263.000000px;}
.h0_c00022{height:1263.240000px;}
.w1_c00022{width:892.500000px;}
.w0_c00022{width:892.800000px;}
.x0_c00022{left:0.000000px;}
.x18_c00022{left:98.190000px;}
.xf_c00022{left:99.190950px;}
.x4_c00022{left:100.649400px;}
.x19_c00022{left:122.175000px;}
.x3_c00022{left:124.515000px;}
.x1_c00022{left:125.655000px;}
.x5_c00022{left:146.355000px;}
.x12_c00022{left:153.900000px;}
.x6_c00022{left:162.195000px;}
.x2_c00022{left:213.480000px;}
.xc_c00022{left:285.990000px;}
.x14_c00022{left:298.575000px;}
.xe_c00022{left:302.167200px;}
.xd_c00022{left:306.555000px;}
.x7_c00022{left:396.900000px;}
.x8_c00022{left:417.780000px;}
.x15_c00022{left:425.895000px;}
.xb_c00022{left:426.975000px;}
.x1a_c00022{left:430.770000px;}
.x16_c00022{left:529.755000px;}
.x9_c00022{left:531.360000px;}
.xa_c00022{left:651.000000px;}
.x10_c00022{left:658.980000px;}
.x17_c00022{left:681.675000px;}
.x13_c00022{left:759.405000px;}
.x11_c00022{left:782.100000px;}
@media print{
.v2_c00022{vertical-align:-1.265600pt;}
.v0_c00022{vertical-align:0.000000pt;}
.v3_c00022{vertical-align:1.316267pt;}
.v1_c00022{vertical-align:3.840000pt;}
.v4_c00022{vertical-align:5.066667pt;}
.v5_c00022{vertical-align:8.949333pt;}
.ls3d_c00022{letter-spacing:-2.389333pt;}
.ls31_c00022{letter-spacing:-2.109333pt;}
.ls42_c00022{letter-spacing:-1.866667pt;}
.ls40_c00022{letter-spacing:-1.670400pt;}
.ls36_c00022{letter-spacing:-1.524747pt;}
.ls2e_c00022{letter-spacing:-1.470507pt;}
.ls2d_c00022{letter-spacing:-1.163147pt;}
.ls2c_c00022{letter-spacing:-1.114933pt;}
.ls33_c00022{letter-spacing:-0.922080pt;}
.ls3a_c00022{letter-spacing:-0.795520pt;}
.ls38_c00022{letter-spacing:-0.771413pt;}
.ls35_c00022{letter-spacing:-0.705120pt;}
.ls3e_c00022{letter-spacing:-0.301333pt;}
.ls24_c00022{letter-spacing:0.000000pt;}
.ls18_c00022{letter-spacing:0.084373pt;}
.ls2_c00022{letter-spacing:0.096427pt;}
.ls14_c00022{letter-spacing:0.162720pt;}
.ls5_c00022{letter-spacing:0.319413pt;}
.ls2a_c00022{letter-spacing:0.325440pt;}
.ls1e_c00022{letter-spacing:0.355573pt;}
.ls3c_c00022{letter-spacing:0.482133pt;}
.ls3f_c00022{letter-spacing:0.500213pt;}
.ls0_c00022{letter-spacing:0.506240pt;}
.ls39_c00022{letter-spacing:0.512267pt;}
.ls26_c00022{letter-spacing:0.518293pt;}
.ls16_c00022{letter-spacing:0.662933pt;}
.ls29_c00022{letter-spacing:0.693067pt;}
.ls41_c00022{letter-spacing:0.699360pt;}
.ls32_c00022{letter-spacing:0.813600pt;}
.lse_c00022{letter-spacing:0.843733pt;}
.ls2f_c00022{letter-spacing:0.855787pt;}
.ls8_c00022{letter-spacing:0.867840pt;}
.ls2b_c00022{letter-spacing:0.934133pt;}
.lsd_c00022{letter-spacing:0.940160pt;}
.lsc_c00022{letter-spacing:1.012480pt;}
.ls12_c00022{letter-spacing:1.030560pt;}
.ls1c_c00022{letter-spacing:1.042613pt;}
.ls6_c00022{letter-spacing:1.102880pt;}
.ls10_c00022{letter-spacing:1.114933pt;}
.ls19_c00022{letter-spacing:1.126987pt;}
.lsa_c00022{letter-spacing:1.145067pt;}
.ls1f_c00022{letter-spacing:1.180480pt;}
.ls37_c00022{letter-spacing:1.277653pt;}
.ls1b_c00022{letter-spacing:1.295733pt;}
.ls1_c00022{letter-spacing:1.313813pt;}
.ls7_c00022{letter-spacing:1.319840pt;}
.ls3_c00022{letter-spacing:1.380107pt;}
.ls3b_c00022{letter-spacing:1.422293pt;}
.ls20_c00022{letter-spacing:1.512800pt;}
.ls27_c00022{letter-spacing:1.518720pt;}
.lsb_c00022{letter-spacing:1.524747pt;}
.ls11_c00022{letter-spacing:1.585013pt;}
.ls34_c00022{letter-spacing:1.759787pt;}
.ls9_c00022{letter-spacing:1.856213pt;}
.lsf_c00022{letter-spacing:1.988800pt;}
.ls25_c00022{letter-spacing:2.043627pt;}
.ls1d_c00022{letter-spacing:2.169600pt;}
.ls1a_c00022{letter-spacing:2.296160pt;}
.ls22_c00022{letter-spacing:2.311360pt;}
.ls30_c00022{letter-spacing:2.368480pt;}
.ls21_c00022{letter-spacing:2.470080pt;}
.ls13_c00022{letter-spacing:2.482987pt;}
.ls4_c00022{letter-spacing:2.591467pt;}
.ls23_c00022{letter-spacing:2.613333pt;}
.ls17_c00022{letter-spacing:2.989227pt;}
.ls28_c00022{letter-spacing:3.013333pt;}
.ls15_c00022{letter-spacing:3.280213pt;}
.ws0_c00022{word-spacing:0.000000pt;}
._15_c00022{margin-left:-6.912533pt;}
._14_c00022{margin-left:-4.971520pt;}
._2_c00022{margin-left:-3.935413pt;}
._0_c00022{margin-left:-2.097280pt;}
._3_c00022{margin-left:-1.199307pt;}
._1_c00022{width:1.820053pt;}
._e_c00022{width:3.881173pt;}
._10_c00022{width:5.424320pt;}
._5_c00022{width:6.569067pt;}
._b_c00022{width:96.149440pt;}
._6_c00022{width:139.457067pt;}
._f_c00022{width:144.079520pt;}
._8_c00022{width:144.994347pt;}
._13_c00022{width:184.476267pt;}
._9_c00022{width:204.123200pt;}
._11_c00022{width:215.554133pt;}
._7_c00022{width:224.462720pt;}
._12_c00022{width:258.302933pt;}
._a_c00022{width:282.469867pt;}
._c_c00022{width:318.733440pt;}
._d_c00022{width:420.894507pt;}
._4_c00022{width:534.090667pt;}
.fs3_c00022{font-size:18.667200pt;}
.fs5_c00022{font-size:43.520000pt;}
.fs2_c00022{font-size:44.800000pt;}
.fs8_c00022{font-size:48.000000pt;}
.fs7_c00022{font-size:49.600000pt;}
.fs0_c00022{font-size:52.266667pt;}
.fs9_c00022{font-size:53.333333pt;}
.fs1_c00022{font-size:60.266667pt;}
.fs4_c00022{font-size:66.133333pt;}
.fs6_c00022{font-size:68.266667pt;}
.y0_c00022{bottom:0.000000pt;}
.y2b_c00022{bottom:54.413333pt;}
.y2a_c00022{bottom:164.800000pt;}
.y29_c00022{bottom:219.853333pt;}
.y26_c00022{bottom:247.053333pt;}
.y27_c00022{bottom:248.653333pt;}
.y28_c00022{bottom:249.293333pt;}
.y25_c00022{bottom:275.846267pt;}
.y22_c00022{bottom:304.336000pt;}
.y23_c00022{bottom:306.573333pt;}
.y24_c00022{bottom:307.200000pt;}
.y20_c00022{bottom:335.053333pt;}
.y21_c00022{bottom:335.373333pt;}
.y1d_c00022{bottom:362.249200pt;}
.y1e_c00022{bottom:363.853333pt;}
.y1f_c00022{bottom:364.173333pt;}
.y1c_c00022{bottom:391.056667pt;}
.y19_c00022{bottom:419.533333pt;}
.y1a_c00022{bottom:420.813333pt;}
.y1b_c00022{bottom:421.133333pt;}
.y18_c00022{bottom:447.999733pt;}
.y16_c00022{bottom:476.173333pt;}
.y17_c00022{bottom:477.440000pt;}
.y14_c00022{bottom:505.280000pt;}
.y15_c00022{bottom:507.853333pt;}
.y13_c00022{bottom:520.653333pt;}
.y12_c00022{bottom:533.782400pt;}
.y11_c00022{bottom:563.539067pt;}
.yf_c00022{bottom:591.366000pt;}
.y10_c00022{bottom:592.320000pt;}
.ye_c00022{bottom:619.857067pt;}
.yd_c00022{bottom:649.613733pt;}
.yb_c00022{bottom:677.140933pt;}
.yc_c00022{bottom:678.093333pt;}
.ya_c00022{bottom:705.933333pt;}
.y8_c00022{bottom:735.373333pt;}
.y9_c00022{bottom:735.693333pt;}
.y6_c00022{bottom:763.213333pt;}
.y7_c00022{bottom:763.853333pt;}
.y5_c00022{bottom:791.699867pt;}
.y4_c00022{bottom:876.480000pt;}
.y3_c00022{bottom:876.483467pt;}
.y2_c00022{bottom:989.453333pt;}
.y1_c00022{bottom:1056.960000pt;}
.h7_c00022{height:18.320836pt;}
.ha_c00022{height:28.984320pt;}
.h5_c00022{height:29.836800pt;}
.hf_c00022{height:50.062500pt;}
.h10_c00022{height:52.343750pt;}
.h2_c00022{height:54.512500pt;}
.h3_c00022{height:59.148438pt;}
.he_c00022{height:60.414038pt;}
.h4_c00022{height:62.988437pt;}
.h6_c00022{height:63.005504pt;}
.hb_c00022{height:64.331371pt;}
.h9_c00022{height:65.540971pt;}
.hd_c00022{height:67.000000pt;}
.hc_c00022{height:68.097771pt;}
.h8_c00022{height:68.713958pt;}
.h1_c00022{height:1122.666667pt;}
.h0_c00022{height:1122.880000pt;}
.w1_c00022{width:793.333333pt;}
.w0_c00022{width:793.600000pt;}
.x0_c00022{left:0.000000pt;}
.x18_c00022{left:87.280000pt;}
.xf_c00022{left:88.169733pt;}
.x4_c00022{left:89.466133pt;}
.x19_c00022{left:108.600000pt;}
.x3_c00022{left:110.680000pt;}
.x1_c00022{left:111.693333pt;}
.x5_c00022{left:130.093333pt;}
.x12_c00022{left:136.800000pt;}
.x6_c00022{left:144.173333pt;}
.x2_c00022{left:189.760000pt;}
.xc_c00022{left:254.213333pt;}
.x14_c00022{left:265.400000pt;}
.xe_c00022{left:268.593067pt;}
.xd_c00022{left:272.493333pt;}
.x7_c00022{left:352.800000pt;}
.x8_c00022{left:371.360000pt;}
.x15_c00022{left:378.573333pt;}
.xb_c00022{left:379.533333pt;}
.x1a_c00022{left:382.906667pt;}
.x16_c00022{left:470.893333pt;}
.x9_c00022{left:472.320000pt;}
.xa_c00022{left:578.666667pt;}
.x10_c00022{left:585.760000pt;}
.x17_c00022{left:605.933333pt;}
.x13_c00022{left:675.026667pt;}
.x11_c00022{left:695.200000pt;}
}





/* 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_c00023 {
    display:none;
  }
  .loading-indicator_c00023.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00023 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_c00023 { 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_c00023" -> "#page-container .classname_c00023")
 */
.pf_c00023 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00023 { /* 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_c00023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00023 { /* 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_c00023 { /* 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_c00023 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00023 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00023 {overflow:visible;}
  }
}
.c_c00023 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00023 { /* 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_c00023:after { /* webkit #35443 */
  content: '';
}
.t_c00023:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00023 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 */
}
.__c00023 { /* 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_c00023 { /* info for Javascript */
  display:none;
}
.l_c00023 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00023 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00023 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00023: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_c00023 {
    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_c00023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00023.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_c00023 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00023;src:url('chunks/assets/font_d31d647226ecdfc484ae45d8.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;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:ff2_c00023;src:url('chunks/assets/font_a5d2f604a81e08bf265c9d84.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.284668;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_c00023;src:url('chunks/assets/font_2e89ff267db09e99e5a742e9.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.284180;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;}
.mc_c00023{transform:matrix(0.155688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155688,0.000000,0.000000,0.250000,0,0);}
.m13_c00023{transform:matrix(0.164449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164449,0.000000,0.000000,0.250000,0,0);}
.m14_c00023{transform:matrix(0.168719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168719,0.000000,0.000000,0.250000,0,0);}
.m5_c00023{transform:matrix(0.189871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189871,0.000000,0.000000,0.250000,0,0);}
.m9_c00023{transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);}
.m8_c00023{transform:matrix(0.234006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234006,0.000000,0.000000,0.250000,0,0);}
.m16_c00023{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m4_c00023{transform:matrix(0.240163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240163,0.000000,0.000000,0.250000,0,0);}
.m3_c00023{transform:matrix(0.246257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246257,0.000000,0.000000,0.250000,0,0);}
.m7_c00023{transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);}
.ma_c00023{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m1_c00023{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);}
.m15_c00023{transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);}
.mf_c00023{transform:matrix(0.253546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253546,0.000000,0.000000,0.250000,0,0);}
.m11_c00023{transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);}
.m2_c00023{transform:matrix(0.256234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256234,0.000000,0.000000,0.250000,0,0);}
.md_c00023{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m6_c00023{transform:matrix(0.258088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258088,0.000000,0.000000,0.250000,0,0);}
.me_c00023{transform:matrix(0.258254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258254,0.000000,0.000000,0.250000,0,0);}
.m10_c00023{transform:matrix(0.259853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259853,0.000000,0.000000,0.250000,0,0);}
.m12_c00023{transform:matrix(0.262090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262090,0.000000,0.000000,0.250000,0,0);}
.mb_c00023{transform:matrix(0.270754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270754,0.000000,0.000000,0.250000,0,0);}
.m0_c00023{transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls94_c00023{letter-spacing:-2.688000px;}
.ls80_c00023{letter-spacing:-2.583000px;}
.ls74_c00023{letter-spacing:-2.394000px;}
.ls9a_c00023{letter-spacing:-2.231100px;}
.ls8d_c00023{letter-spacing:-2.181960px;}
.ls9c_c00023{letter-spacing:-2.147760px;}
.ls7b_c00023{letter-spacing:-2.058840px;}
.lsac_c00023{letter-spacing:-2.016000px;}
.ls88_c00023{letter-spacing:-1.963080px;}
.ls99_c00023{letter-spacing:-1.689480px;}
.ls9b_c00023{letter-spacing:-1.593720px;}
.ls77_c00023{letter-spacing:-1.443240px;}
.ls85_c00023{letter-spacing:-1.429560px;}
.ls8a_c00023{letter-spacing:-1.409040px;}
.ls97_c00023{letter-spacing:-1.224360px;}
.lsa1_c00023{letter-spacing:-1.197000px;}
.ls72_c00023{letter-spacing:-1.094400px;}
.ls82_c00023{letter-spacing:-1.019160px;}
.ls96_c00023{letter-spacing:-0.971280px;}
.ls7a_c00023{letter-spacing:-0.868680px;}
.ls75_c00023{letter-spacing:-0.684000px;}
.ls7c_c00023{letter-spacing:-0.615600px;}
.ls79_c00023{letter-spacing:-0.540360px;}
.ls7e_c00023{letter-spacing:-0.526680px;}
.ls73_c00023{letter-spacing:-0.519840px;}
.ls8f_c00023{letter-spacing:-0.485640px;}
.ls76_c00023{letter-spacing:-0.458280px;}
.ls86_c00023{letter-spacing:-0.417240px;}
.ls89_c00023{letter-spacing:-0.376200px;}
.lsaa_c00023{letter-spacing:-0.355680px;}
.ls9d_c00023{letter-spacing:-0.348840px;}
.ls78_c00023{letter-spacing:-0.342000px;}
.ls95_c00023{letter-spacing:-0.328320px;}
.lsa8_c00023{letter-spacing:-0.294120px;}
.ls8b_c00023{letter-spacing:-0.250860px;}
.ls8e_c00023{letter-spacing:-0.246240px;}
.ls91_c00023{letter-spacing:-0.232560px;}
.ls7d_c00023{letter-spacing:-0.198360px;}
.ls92_c00023{letter-spacing:-0.171000px;}
.ls90_c00023{letter-spacing:-0.164160px;}
.lsa6_c00023{letter-spacing:-0.157320px;}
.lsa7_c00023{letter-spacing:-0.150480px;}
.lsa9_c00023{letter-spacing:-0.123120px;}
.ls98_c00023{letter-spacing:-0.095760px;}
.ls8c_c00023{letter-spacing:-0.088920px;}
.ls93_c00023{letter-spacing:-0.082080px;}
.lsa5_c00023{letter-spacing:-0.041040px;}
.ls70_c00023{letter-spacing:-0.027360px;}
.ls71_c00023{letter-spacing:-0.020520px;}
.lsa3_c00023{letter-spacing:-0.013680px;}
.ls9f_c00023{letter-spacing:-0.006840px;}
.ls6f_c00023{letter-spacing:0.000000px;}
.ls25_c00023{letter-spacing:0.013680px;}
.ls65_c00023{letter-spacing:0.027360px;}
.ls1f_c00023{letter-spacing:0.041040px;}
.ls3d_c00023{letter-spacing:0.047880px;}
.ls31_c00023{letter-spacing:0.054720px;}
.ls2d_c00023{letter-spacing:0.061560px;}
.ls3c_c00023{letter-spacing:0.068400px;}
.lsa2_c00023{letter-spacing:0.075240px;}
.ls20_c00023{letter-spacing:0.082080px;}
.ls40_c00023{letter-spacing:0.088920px;}
.ls39_c00023{letter-spacing:0.095760px;}
.ls2a_c00023{letter-spacing:0.102600px;}
.ls22_c00023{letter-spacing:0.109440px;}
.ls46_c00023{letter-spacing:0.116280px;}
.ls55_c00023{letter-spacing:0.123120px;}
.ls83_c00023{letter-spacing:0.129960px;}
.ls52_c00023{letter-spacing:0.136800px;}
.lsf_c00023{letter-spacing:0.143640px;}
.ls44_c00023{letter-spacing:0.150480px;}
.ls4e_c00023{letter-spacing:0.171000px;}
.ls8_c00023{letter-spacing:0.177840px;}
.ls4d_c00023{letter-spacing:0.184680px;}
.ls15_c00023{letter-spacing:0.205200px;}
.lsab_c00023{letter-spacing:0.212040px;}
.ls4a_c00023{letter-spacing:0.225720px;}
.ls1a_c00023{letter-spacing:0.239400px;}
.ls19_c00023{letter-spacing:0.250860px;}
.ls49_c00023{letter-spacing:0.259920px;}
.ls61_c00023{letter-spacing:0.266760px;}
.ls2b_c00023{letter-spacing:0.273600px;}
.ls3e_c00023{letter-spacing:0.280440px;}
.ls6b_c00023{letter-spacing:0.287280px;}
.ls58_c00023{letter-spacing:0.300960px;}
.ls2c_c00023{letter-spacing:0.307800px;}
.ls27_c00023{letter-spacing:0.314640px;}
.ls5f_c00023{letter-spacing:0.321480px;}
.ls24_c00023{letter-spacing:0.328320px;}
.ls4c_c00023{letter-spacing:0.335160px;}
.ls3b_c00023{letter-spacing:0.342000px;}
.ls84_c00023{letter-spacing:0.355680px;}
.ls23_c00023{letter-spacing:0.362520px;}
.lsa0_c00023{letter-spacing:0.369360px;}
.lse_c00023{letter-spacing:0.383040px;}
.ls1_c00023{letter-spacing:0.389880px;}
.lsd_c00023{letter-spacing:0.396720px;}
.ls43_c00023{letter-spacing:0.410400px;}
.ls12_c00023{letter-spacing:0.417240px;}
.ls36_c00023{letter-spacing:0.430920px;}
.ls45_c00023{letter-spacing:0.444600px;}
.ls59_c00023{letter-spacing:0.451440px;}
.lsa_c00023{letter-spacing:0.465120px;}
.ls13_c00023{letter-spacing:0.478800px;}
.ls5b_c00023{letter-spacing:0.485640px;}
.ls1d_c00023{letter-spacing:0.492480px;}
.ls1c_c00023{letter-spacing:0.499320px;}
.ls50_c00023{letter-spacing:0.506160px;}
.ls3a_c00023{letter-spacing:0.513000px;}
.ls51_c00023{letter-spacing:0.519840px;}
.ls53_c00023{letter-spacing:0.533520px;}
.ls5a_c00023{letter-spacing:0.540360px;}
.ls60_c00023{letter-spacing:0.567720px;}
.lsa4_c00023{letter-spacing:0.574560px;}
.ls1e_c00023{letter-spacing:0.581400px;}
.ls67_c00023{letter-spacing:0.601920px;}
.ls57_c00023{letter-spacing:0.615600px;}
.ls48_c00023{letter-spacing:0.622440px;}
.ls41_c00023{letter-spacing:0.663480px;}
.ls30_c00023{letter-spacing:0.670320px;}
.ls34_c00023{letter-spacing:0.677160px;}
.ls7f_c00023{letter-spacing:0.684000px;}
.ls10_c00023{letter-spacing:0.690840px;}
.ls1b_c00023{letter-spacing:0.697680px;}
.ls16_c00023{letter-spacing:0.704520px;}
.ls56_c00023{letter-spacing:0.718200px;}
.lsb_c00023{letter-spacing:0.752400px;}
.ls54_c00023{letter-spacing:0.759240px;}
.ls2f_c00023{letter-spacing:0.800280px;}
.ls5c_c00023{letter-spacing:0.813960px;}
.ls5e_c00023{letter-spacing:0.827640px;}
.ls4f_c00023{letter-spacing:0.834480px;}
.ls2_c00023{letter-spacing:0.848160px;}
.ls32_c00023{letter-spacing:0.882360px;}
.ls6c_c00023{letter-spacing:0.896040px;}
.ls63_c00023{letter-spacing:0.909720px;}
.ls11_c00023{letter-spacing:0.916560px;}
.ls4_c00023{letter-spacing:0.943920px;}
.ls5_c00023{letter-spacing:0.978120px;}
.ls3f_c00023{letter-spacing:0.991800px;}
.ls38_c00023{letter-spacing:0.998640px;}
.lsc_c00023{letter-spacing:1.012320px;}
.ls17_c00023{letter-spacing:1.053360px;}
.ls3_c00023{letter-spacing:1.060200px;}
.ls7_c00023{letter-spacing:1.067040px;}
.ls6d_c00023{letter-spacing:1.114920px;}
.ls2e_c00023{letter-spacing:1.272240px;}
.ls87_c00023{letter-spacing:1.301760px;}
.ls29_c00023{letter-spacing:1.333800px;}
.ls21_c00023{letter-spacing:1.347480px;}
.ls4b_c00023{letter-spacing:1.361160px;}
.ls62_c00023{letter-spacing:1.395360px;}
.ls28_c00023{letter-spacing:1.409040px;}
.ls66_c00023{letter-spacing:1.422720px;}
.ls33_c00023{letter-spacing:1.511640px;}
.ls26_c00023{letter-spacing:1.518480px;}
.ls9_c00023{letter-spacing:1.648440px;}
.ls9e_c00023{letter-spacing:1.710000px;}
.ls14_c00023{letter-spacing:1.730520px;}
.ls64_c00023{letter-spacing:1.737360px;}
.ls47_c00023{letter-spacing:1.792080px;}
.ls35_c00023{letter-spacing:1.812600px;}
.ls6_c00023{letter-spacing:2.004120px;}
.ls37_c00023{letter-spacing:2.086200px;}
.ls0_c00023{letter-spacing:2.127240px;}
.ls6a_c00023{letter-spacing:2.195640px;}
.ls42_c00023{letter-spacing:2.455560px;}
.ls68_c00023{letter-spacing:2.510280px;}
.ls18_c00023{letter-spacing:2.773020px;}
.ls6e_c00023{letter-spacing:2.820000px;}
.ls69_c00023{letter-spacing:2.961720px;}
.ls5d_c00023{letter-spacing:3.091680px;}
.ls81_c00023{letter-spacing:3.420000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{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__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:0.000000px;}
._e_c00023{margin-left:-13.934400px;}
._b_c00023{margin-left:-9.705840px;}
._14_c00023{margin-left:-7.893120px;}
._d_c00023{margin-left:-6.784800px;}
._15_c00023{margin-left:-5.381520px;}
._c_c00023{margin-left:-4.227360px;}
._1b_c00023{margin-left:-2.932560px;}
._2_c00023{margin-left:-1.504800px;}
._0_c00023{width:1.600560px;}
._a_c00023{width:2.611320px;}
._5_c00023{width:3.939840px;}
._1_c00023{width:5.068440px;}
._3_c00023{width:6.436440px;}
._6_c00023{width:7.811280px;}
._4_c00023{width:9.507600px;}
._7_c00023{width:11.080800px;}
._8_c00023{width:12.298320px;}
._9_c00023{width:13.322040px;}
._f_c00023{width:14.582880px;}
._13_c00023{width:15.681720px;}
._12_c00023{width:16.922160px;}
._10_c00023{width:19.227240px;}
._1a_c00023{width:20.841480px;}
._11_c00023{width:22.483080px;}
._17_c00023{width:29.514600px;}
._16_c00023{width:31.149360px;}
._18_c00023{width:32.592600px;}
._19_c00023{width:35.273880px;}
.fc0_c00023{color:transparent;}
.fs0_c00023{font-size:56.400000px;}
.fs6_c00023{font-size:57.600000px;}
.fs5_c00023{font-size:66.600000px;}
.fs2_c00023{font-size:67.800000px;}
.fs1_c00023{font-size:68.400000px;}
.fs3_c00023{font-size:73.800000px;}
.fs4_c00023{font-size:76.800000px;}
.y0_c00023{bottom:0.000000px;}
.y29_c00023{bottom:67.335015px;}
.y28_c00023{bottom:146.520015px;}
.y27_c00023{bottom:177.480015px;}
.y26_c00023{bottom:208.815015px;}
.y25_c00023{bottom:240.480015px;}
.y23_c00023{bottom:271.809615px;}
.y24_c00023{bottom:271.815015px;}
.y22_c00023{bottom:303.478815px;}
.y21_c00023{bottom:334.446915px;}
.y1f_c00023{bottom:365.407815px;}
.y20_c00023{bottom:365.415015px;}
.y1e_c00023{bottom:396.735015px;}
.y1c_c00023{bottom:459.373515px;}
.y1d_c00023{bottom:459.375015px;}
.y1b_c00023{bottom:522.729015px;}
.y1a_c00023{bottom:553.671615px;}
.y19_c00023{bottom:585.366915px;}
.y17_c00023{bottom:616.330815px;}
.y18_c00023{bottom:616.335015px;}
.y16_c00023{bottom:648.000015px;}
.y14_c00023{bottom:710.647815px;}
.y15_c00023{bottom:710.655015px;}
.y13_c00023{bottom:741.975015px;}
.y12_c00023{bottom:772.928715px;}
.y11_c00023{bottom:804.607815px;}
.y10_c00023{bottom:835.928715px;}
.ye_c00023{bottom:867.607815px;}
.yf_c00023{bottom:867.615015px;}
.yc_c00023{bottom:898.927815px;}
.yd_c00023{bottom:898.935015px;}
.ya_c00023{bottom:930.249915px;}
.yb_c00023{bottom:930.255015px;}
.y8_c00023{bottom:961.552815px;}
.y9_c00023{bottom:961.560015px;}
.y7_c00023{bottom:992.880015px;}
.y6_c00023{bottom:1024.192815px;}
.y5_c00023{bottom:1055.511915px;}
.y3_c00023{bottom:1086.471615px;}
.y4_c00023{bottom:1086.480015px;}
.y2_c00023{bottom:1118.175015px;}
.y1_c00023{bottom:1193.415015px;}
.hb_c00023{height:56.531250px;}
.h2_c00023{height:58.823438px;}
.h3_c00023{height:67.130859px;}
.h8_c00023{height:67.147659px;}
.h7_c00023{height:67.156059px;}
.h5_c00023{height:67.159659px;}
.h4_c00023{height:67.163259px;}
.ha_c00023{height:69.495319px;}
.h6_c00023{height:72.394629px;}
.h9_c00023{height:75.375000px;}
.h1_c00023{height:1263.000000px;}
.h0_c00023{height:1263.240015px;}
.w1_c00023{width:892.500000px;}
.w0_c00023{width:892.800015px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:126.375015px;}
.x7_c00023{left:127.417215px;}
.x8_c00023{left:146.850015px;}
.x1d_c00023{left:153.630015px;}
.x26_c00023{left:161.835015px;}
.x4_c00023{left:181.335015px;}
.x1a_c00023{left:182.430015px;}
.x2_c00023{left:213.840015px;}
.x3_c00023{left:228.285015px;}
.x15_c00023{left:236.580015px;}
.xd_c00023{left:253.500015px;}
.x16_c00023{left:255.930015px;}
.x1e_c00023{left:258.030015px;}
.x13_c00023{left:262.665015px;}
.xe_c00023{left:272.130015px;}
.x11_c00023{left:282.300015px;}
.x14_c00023{left:285.240015px;}
.x1f_c00023{left:287.100015px;}
.x22_c00023{left:301.515015px;}
.x12_c00023{left:304.155015px;}
.x23_c00023{left:325.410015px;}
.x20_c00023{left:374.310015px;}
.x19_c00023{left:378.165015px;}
.x1b_c00023{left:380.460015px;}
.x9_c00023{left:387.225015px;}
.xa_c00023{left:405.825015px;}
.x1c_c00023{left:410.595015px;}
.x21_c00023{left:414.645015px;}
.xf_c00023{left:429.345015px;}
.x27_c00023{left:432.960015px;}
.x10_c00023{left:447.240015px;}
.xb_c00023{left:483.660015px;}
.xc_c00023{left:505.035015px;}
.x24_c00023{left:515.085015px;}
.x25_c00023{left:548.235015px;}
.x17_c00023{left:591.255015px;}
.x18_c00023{left:616.860015px;}
.x5_c00023{left:668.670015px;}
.x6_c00023{left:691.170015px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls94_c00023{letter-spacing:-2.389333pt;}
.ls80_c00023{letter-spacing:-2.296000pt;}
.ls74_c00023{letter-spacing:-2.128000pt;}
.ls9a_c00023{letter-spacing:-1.983200pt;}
.ls8d_c00023{letter-spacing:-1.939520pt;}
.ls9c_c00023{letter-spacing:-1.909120pt;}
.ls7b_c00023{letter-spacing:-1.830080pt;}
.lsac_c00023{letter-spacing:-1.792000pt;}
.ls88_c00023{letter-spacing:-1.744960pt;}
.ls99_c00023{letter-spacing:-1.501760pt;}
.ls9b_c00023{letter-spacing:-1.416640pt;}
.ls77_c00023{letter-spacing:-1.282880pt;}
.ls85_c00023{letter-spacing:-1.270720pt;}
.ls8a_c00023{letter-spacing:-1.252480pt;}
.ls97_c00023{letter-spacing:-1.088320pt;}
.lsa1_c00023{letter-spacing:-1.064000pt;}
.ls72_c00023{letter-spacing:-0.972800pt;}
.ls82_c00023{letter-spacing:-0.905920pt;}
.ls96_c00023{letter-spacing:-0.863360pt;}
.ls7a_c00023{letter-spacing:-0.772160pt;}
.ls75_c00023{letter-spacing:-0.608000pt;}
.ls7c_c00023{letter-spacing:-0.547200pt;}
.ls79_c00023{letter-spacing:-0.480320pt;}
.ls7e_c00023{letter-spacing:-0.468160pt;}
.ls73_c00023{letter-spacing:-0.462080pt;}
.ls8f_c00023{letter-spacing:-0.431680pt;}
.ls76_c00023{letter-spacing:-0.407360pt;}
.ls86_c00023{letter-spacing:-0.370880pt;}
.ls89_c00023{letter-spacing:-0.334400pt;}
.lsaa_c00023{letter-spacing:-0.316160pt;}
.ls9d_c00023{letter-spacing:-0.310080pt;}
.ls78_c00023{letter-spacing:-0.304000pt;}
.ls95_c00023{letter-spacing:-0.291840pt;}
.lsa8_c00023{letter-spacing:-0.261440pt;}
.ls8b_c00023{letter-spacing:-0.222987pt;}
.ls8e_c00023{letter-spacing:-0.218880pt;}
.ls91_c00023{letter-spacing:-0.206720pt;}
.ls7d_c00023{letter-spacing:-0.176320pt;}
.ls92_c00023{letter-spacing:-0.152000pt;}
.ls90_c00023{letter-spacing:-0.145920pt;}
.lsa6_c00023{letter-spacing:-0.139840pt;}
.lsa7_c00023{letter-spacing:-0.133760pt;}
.lsa9_c00023{letter-spacing:-0.109440pt;}
.ls98_c00023{letter-spacing:-0.085120pt;}
.ls8c_c00023{letter-spacing:-0.079040pt;}
.ls93_c00023{letter-spacing:-0.072960pt;}
.lsa5_c00023{letter-spacing:-0.036480pt;}
.ls70_c00023{letter-spacing:-0.024320pt;}
.ls71_c00023{letter-spacing:-0.018240pt;}
.lsa3_c00023{letter-spacing:-0.012160pt;}
.ls9f_c00023{letter-spacing:-0.006080pt;}
.ls6f_c00023{letter-spacing:0.000000pt;}
.ls25_c00023{letter-spacing:0.012160pt;}
.ls65_c00023{letter-spacing:0.024320pt;}
.ls1f_c00023{letter-spacing:0.036480pt;}
.ls3d_c00023{letter-spacing:0.042560pt;}
.ls31_c00023{letter-spacing:0.048640pt;}
.ls2d_c00023{letter-spacing:0.054720pt;}
.ls3c_c00023{letter-spacing:0.060800pt;}
.lsa2_c00023{letter-spacing:0.066880pt;}
.ls20_c00023{letter-spacing:0.072960pt;}
.ls40_c00023{letter-spacing:0.079040pt;}
.ls39_c00023{letter-spacing:0.085120pt;}
.ls2a_c00023{letter-spacing:0.091200pt;}
.ls22_c00023{letter-spacing:0.097280pt;}
.ls46_c00023{letter-spacing:0.103360pt;}
.ls55_c00023{letter-spacing:0.109440pt;}
.ls83_c00023{letter-spacing:0.115520pt;}
.ls52_c00023{letter-spacing:0.121600pt;}
.lsf_c00023{letter-spacing:0.127680pt;}
.ls44_c00023{letter-spacing:0.133760pt;}
.ls4e_c00023{letter-spacing:0.152000pt;}
.ls8_c00023{letter-spacing:0.158080pt;}
.ls4d_c00023{letter-spacing:0.164160pt;}
.ls15_c00023{letter-spacing:0.182400pt;}
.lsab_c00023{letter-spacing:0.188480pt;}
.ls4a_c00023{letter-spacing:0.200640pt;}
.ls1a_c00023{letter-spacing:0.212800pt;}
.ls19_c00023{letter-spacing:0.222987pt;}
.ls49_c00023{letter-spacing:0.231040pt;}
.ls61_c00023{letter-spacing:0.237120pt;}
.ls2b_c00023{letter-spacing:0.243200pt;}
.ls3e_c00023{letter-spacing:0.249280pt;}
.ls6b_c00023{letter-spacing:0.255360pt;}
.ls58_c00023{letter-spacing:0.267520pt;}
.ls2c_c00023{letter-spacing:0.273600pt;}
.ls27_c00023{letter-spacing:0.279680pt;}
.ls5f_c00023{letter-spacing:0.285760pt;}
.ls24_c00023{letter-spacing:0.291840pt;}
.ls4c_c00023{letter-spacing:0.297920pt;}
.ls3b_c00023{letter-spacing:0.304000pt;}
.ls84_c00023{letter-spacing:0.316160pt;}
.ls23_c00023{letter-spacing:0.322240pt;}
.lsa0_c00023{letter-spacing:0.328320pt;}
.lse_c00023{letter-spacing:0.340480pt;}
.ls1_c00023{letter-spacing:0.346560pt;}
.lsd_c00023{letter-spacing:0.352640pt;}
.ls43_c00023{letter-spacing:0.364800pt;}
.ls12_c00023{letter-spacing:0.370880pt;}
.ls36_c00023{letter-spacing:0.383040pt;}
.ls45_c00023{letter-spacing:0.395200pt;}
.ls59_c00023{letter-spacing:0.401280pt;}
.lsa_c00023{letter-spacing:0.413440pt;}
.ls13_c00023{letter-spacing:0.425600pt;}
.ls5b_c00023{letter-spacing:0.431680pt;}
.ls1d_c00023{letter-spacing:0.437760pt;}
.ls1c_c00023{letter-spacing:0.443840pt;}
.ls50_c00023{letter-spacing:0.449920pt;}
.ls3a_c00023{letter-spacing:0.456000pt;}
.ls51_c00023{letter-spacing:0.462080pt;}
.ls53_c00023{letter-spacing:0.474240pt;}
.ls5a_c00023{letter-spacing:0.480320pt;}
.ls60_c00023{letter-spacing:0.504640pt;}
.lsa4_c00023{letter-spacing:0.510720pt;}
.ls1e_c00023{letter-spacing:0.516800pt;}
.ls67_c00023{letter-spacing:0.535040pt;}
.ls57_c00023{letter-spacing:0.547200pt;}
.ls48_c00023{letter-spacing:0.553280pt;}
.ls41_c00023{letter-spacing:0.589760pt;}
.ls30_c00023{letter-spacing:0.595840pt;}
.ls34_c00023{letter-spacing:0.601920pt;}
.ls7f_c00023{letter-spacing:0.608000pt;}
.ls10_c00023{letter-spacing:0.614080pt;}
.ls1b_c00023{letter-spacing:0.620160pt;}
.ls16_c00023{letter-spacing:0.626240pt;}
.ls56_c00023{letter-spacing:0.638400pt;}
.lsb_c00023{letter-spacing:0.668800pt;}
.ls54_c00023{letter-spacing:0.674880pt;}
.ls2f_c00023{letter-spacing:0.711360pt;}
.ls5c_c00023{letter-spacing:0.723520pt;}
.ls5e_c00023{letter-spacing:0.735680pt;}
.ls4f_c00023{letter-spacing:0.741760pt;}
.ls2_c00023{letter-spacing:0.753920pt;}
.ls32_c00023{letter-spacing:0.784320pt;}
.ls6c_c00023{letter-spacing:0.796480pt;}
.ls63_c00023{letter-spacing:0.808640pt;}
.ls11_c00023{letter-spacing:0.814720pt;}
.ls4_c00023{letter-spacing:0.839040pt;}
.ls5_c00023{letter-spacing:0.869440pt;}
.ls3f_c00023{letter-spacing:0.881600pt;}
.ls38_c00023{letter-spacing:0.887680pt;}
.lsc_c00023{letter-spacing:0.899840pt;}
.ls17_c00023{letter-spacing:0.936320pt;}
.ls3_c00023{letter-spacing:0.942400pt;}
.ls7_c00023{letter-spacing:0.948480pt;}
.ls6d_c00023{letter-spacing:0.991040pt;}
.ls2e_c00023{letter-spacing:1.130880pt;}
.ls87_c00023{letter-spacing:1.157120pt;}
.ls29_c00023{letter-spacing:1.185600pt;}
.ls21_c00023{letter-spacing:1.197760pt;}
.ls4b_c00023{letter-spacing:1.209920pt;}
.ls62_c00023{letter-spacing:1.240320pt;}
.ls28_c00023{letter-spacing:1.252480pt;}
.ls66_c00023{letter-spacing:1.264640pt;}
.ls33_c00023{letter-spacing:1.343680pt;}
.ls26_c00023{letter-spacing:1.349760pt;}
.ls9_c00023{letter-spacing:1.465280pt;}
.ls9e_c00023{letter-spacing:1.520000pt;}
.ls14_c00023{letter-spacing:1.538240pt;}
.ls64_c00023{letter-spacing:1.544320pt;}
.ls47_c00023{letter-spacing:1.592960pt;}
.ls35_c00023{letter-spacing:1.611200pt;}
.ls6_c00023{letter-spacing:1.781440pt;}
.ls37_c00023{letter-spacing:1.854400pt;}
.ls0_c00023{letter-spacing:1.890880pt;}
.ls6a_c00023{letter-spacing:1.951680pt;}
.ls42_c00023{letter-spacing:2.182720pt;}
.ls68_c00023{letter-spacing:2.231360pt;}
.ls18_c00023{letter-spacing:2.464907pt;}
.ls6e_c00023{letter-spacing:2.506667pt;}
.ls69_c00023{letter-spacing:2.632640pt;}
.ls5d_c00023{letter-spacing:2.748160pt;}
.ls81_c00023{letter-spacing:3.040000pt;}
.ws0_c00023{word-spacing:0.000000pt;}
._e_c00023{margin-left:-12.386133pt;}
._b_c00023{margin-left:-8.627413pt;}
._14_c00023{margin-left:-7.016107pt;}
._d_c00023{margin-left:-6.030933pt;}
._15_c00023{margin-left:-4.783573pt;}
._c_c00023{margin-left:-3.757653pt;}
._1b_c00023{margin-left:-2.606720pt;}
._2_c00023{margin-left:-1.337600pt;}
._0_c00023{width:1.422720pt;}
._a_c00023{width:2.321173pt;}
._5_c00023{width:3.502080pt;}
._1_c00023{width:4.505280pt;}
._3_c00023{width:5.721280pt;}
._6_c00023{width:6.943360pt;}
._4_c00023{width:8.451200pt;}
._7_c00023{width:9.849600pt;}
._8_c00023{width:10.931840pt;}
._9_c00023{width:11.841813pt;}
._f_c00023{width:12.962560pt;}
._13_c00023{width:13.939307pt;}
._12_c00023{width:15.041920pt;}
._10_c00023{width:17.090880pt;}
._1a_c00023{width:18.525760pt;}
._11_c00023{width:19.984960pt;}
._17_c00023{width:26.235200pt;}
._16_c00023{width:27.688320pt;}
._18_c00023{width:28.971200pt;}
._19_c00023{width:31.354560pt;}
.fs0_c00023{font-size:50.133333pt;}
.fs6_c00023{font-size:51.200000pt;}
.fs5_c00023{font-size:59.200000pt;}
.fs2_c00023{font-size:60.266667pt;}
.fs1_c00023{font-size:60.800000pt;}
.fs3_c00023{font-size:65.600000pt;}
.fs4_c00023{font-size:68.266667pt;}
.y0_c00023{bottom:0.000000pt;}
.y29_c00023{bottom:59.853347pt;}
.y28_c00023{bottom:130.240013pt;}
.y27_c00023{bottom:157.760013pt;}
.y26_c00023{bottom:185.613347pt;}
.y25_c00023{bottom:213.760013pt;}
.y23_c00023{bottom:241.608547pt;}
.y24_c00023{bottom:241.613347pt;}
.y22_c00023{bottom:269.758947pt;}
.y21_c00023{bottom:297.286147pt;}
.y1f_c00023{bottom:324.806947pt;}
.y20_c00023{bottom:324.813347pt;}
.y1e_c00023{bottom:352.653347pt;}
.y1c_c00023{bottom:408.332013pt;}
.y1d_c00023{bottom:408.333347pt;}
.y1b_c00023{bottom:464.648013pt;}
.y1a_c00023{bottom:492.152547pt;}
.y19_c00023{bottom:520.326147pt;}
.y17_c00023{bottom:547.849613pt;}
.y18_c00023{bottom:547.853347pt;}
.y16_c00023{bottom:576.000013pt;}
.y14_c00023{bottom:631.686947pt;}
.y15_c00023{bottom:631.693347pt;}
.y13_c00023{bottom:659.533347pt;}
.y12_c00023{bottom:687.047747pt;}
.y11_c00023{bottom:715.206947pt;}
.y10_c00023{bottom:743.047747pt;}
.ye_c00023{bottom:771.206947pt;}
.yf_c00023{bottom:771.213347pt;}
.yc_c00023{bottom:799.046947pt;}
.yd_c00023{bottom:799.053347pt;}
.ya_c00023{bottom:826.888813pt;}
.yb_c00023{bottom:826.893347pt;}
.y8_c00023{bottom:854.713613pt;}
.y9_c00023{bottom:854.720013pt;}
.y7_c00023{bottom:882.560013pt;}
.y6_c00023{bottom:910.393613pt;}
.y5_c00023{bottom:938.232813pt;}
.y3_c00023{bottom:965.752547pt;}
.y4_c00023{bottom:965.760013pt;}
.y2_c00023{bottom:993.933347pt;}
.y1_c00023{bottom:1060.813347pt;}
.hb_c00023{height:50.250000pt;}
.h2_c00023{height:52.287500pt;}
.h3_c00023{height:59.671875pt;}
.h8_c00023{height:59.686808pt;}
.h7_c00023{height:59.694275pt;}
.h5_c00023{height:59.697475pt;}
.h4_c00023{height:59.700675pt;}
.ha_c00023{height:61.773617pt;}
.h6_c00023{height:64.350781pt;}
.h9_c00023{height:67.000000pt;}
.h1_c00023{height:1122.666667pt;}
.h0_c00023{height:1122.880013pt;}
.w1_c00023{width:793.333333pt;}
.w0_c00023{width:793.600013pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:112.333347pt;}
.x7_c00023{left:113.259747pt;}
.x8_c00023{left:130.533347pt;}
.x1d_c00023{left:136.560013pt;}
.x26_c00023{left:143.853347pt;}
.x4_c00023{left:161.186680pt;}
.x1a_c00023{left:162.160013pt;}
.x2_c00023{left:190.080013pt;}
.x3_c00023{left:202.920013pt;}
.x15_c00023{left:210.293347pt;}
.xd_c00023{left:225.333347pt;}
.x16_c00023{left:227.493347pt;}
.x1e_c00023{left:229.360013pt;}
.x13_c00023{left:233.480013pt;}
.xe_c00023{left:241.893347pt;}
.x11_c00023{left:250.933347pt;}
.x14_c00023{left:253.546680pt;}
.x1f_c00023{left:255.200013pt;}
.x22_c00023{left:268.013347pt;}
.x12_c00023{left:270.360013pt;}
.x23_c00023{left:289.253347pt;}
.x20_c00023{left:332.720013pt;}
.x19_c00023{left:336.146680pt;}
.x1b_c00023{left:338.186680pt;}
.x9_c00023{left:344.200013pt;}
.xa_c00023{left:360.733347pt;}
.x1c_c00023{left:364.973347pt;}
.x21_c00023{left:368.573347pt;}
.xf_c00023{left:381.640013pt;}
.x27_c00023{left:384.853347pt;}
.x10_c00023{left:397.546680pt;}
.xb_c00023{left:429.920013pt;}
.xc_c00023{left:448.920013pt;}
.x24_c00023{left:457.853347pt;}
.x25_c00023{left:487.320013pt;}
.x17_c00023{left:525.560013pt;}
.x18_c00023{left:548.320013pt;}
.x5_c00023{left:594.373347pt;}
.x6_c00023{left:614.373347pt;}
}





/* 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_c00024 {
    display:none;
  }
  .loading-indicator_c00024.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00024 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_c00024 { 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_c00024" -> "#page-container .classname_c00024")
 */
.pf_c00024 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00024 { /* 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_c00024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00024 { /* 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_c00024 { /* 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_c00024 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00024 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00024 {overflow:visible;}
  }
}
.c_c00024 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00024 { /* 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_c00024:after { /* webkit #35443 */
  content: '';
}
.t_c00024:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00024 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 */
}
.__c00024 { /* 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_c00024 { /* info for Javascript */
  display:none;
}
.l_c00024 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00024 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00024 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00024: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_c00024 {
    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_c00024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00024.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_c00024 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00024;src:url('chunks/assets/font_f1a113d6a732c1287fc1a227.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.284668;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_c00024;src:url('chunks/assets/font_3fe6e1da0e3d7ff7973ec685.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;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_c00024;src:url('chunks/assets/font_9602243a1207f8e7f839dbfa.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.284180;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_c00024;src:url('chunks/assets/font_f6e7fa1e02d10e75f06930e1.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;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;}
.m9_c00024{transform:matrix(0.169934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169934,0.000000,0.000000,0.250000,0,0);}
.m7_c00024{transform:matrix(0.172085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172085,0.000000,0.000000,0.250000,0,0);}
.m4_c00024{transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);}
.m8_c00024{transform:matrix(0.214064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214064,0.000000,0.000000,0.250000,0,0);}
.me_c00024{transform:matrix(0.236707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236707,0.000000,0.000000,0.250000,0,0);}
.md_c00024{transform:matrix(0.242097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242097,0.000000,0.000000,0.250000,0,0);}
.mc_c00024{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.mf_c00024{transform:matrix(0.244647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244647,0.000000,0.000000,0.250000,0,0);}
.m10_c00024{transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);}
.m11_c00024{transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);}
.m2_c00024{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.mb_c00024{transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);}
.ma_c00024{transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);}
.m12_c00024{transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);}
.m13_c00024{transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);}
.m5_c00024{transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);}
.m0_c00024{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_c00024{transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);}
.m3_c00024{transform:matrix(0.267274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267274,0.000000,0.000000,0.250000,0,0);}
.m6_c00024{transform:matrix(0.275062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275062,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.ls87_c00024{letter-spacing:-2.646000px;}
.ls72_c00024{letter-spacing:-2.520000px;}
.ls7e_c00024{letter-spacing:-2.478000px;}
.ls74_c00024{letter-spacing:-2.436000px;}
.lsa6_c00024{letter-spacing:-2.429040px;}
.ls61_c00024{letter-spacing:-2.415000px;}
.ls78_c00024{letter-spacing:-2.324640px;}
.lsa8_c00024{letter-spacing:-2.100000px;}
.ls6e_c00024{letter-spacing:-1.886160px;}
.lsa7_c00024{letter-spacing:-1.823520px;}
.ls6d_c00024{letter-spacing:-1.649520px;}
.ls89_c00024{letter-spacing:-1.617840px;}
.ls88_c00024{letter-spacing:-1.572480px;}
.ls71_c00024{letter-spacing:-1.531200px;}
.ls9f_c00024{letter-spacing:-1.426800px;}
.ls84_c00024{letter-spacing:-1.398960px;}
.ls94_c00024{letter-spacing:-1.385040px;}
.ls68_c00024{letter-spacing:-1.343280px;}
.lsa3_c00024{letter-spacing:-1.218000px;}
.ls95_c00024{letter-spacing:-1.176240px;}
.ls7c_c00024{letter-spacing:-1.169280px;}
.ls93_c00024{letter-spacing:-1.085760px;}
.ls8a_c00024{letter-spacing:-1.037040px;}
.ls9c_c00024{letter-spacing:-0.995280px;}
.ls8e_c00024{letter-spacing:-0.945300px;}
.ls6a_c00024{letter-spacing:-0.883920px;}
.ls5d_c00024{letter-spacing:-0.835200px;}
.ls81_c00024{letter-spacing:-0.800400px;}
.ls6f_c00024{letter-spacing:-0.779520px;}
.lsa2_c00024{letter-spacing:-0.758640px;}
.ls91_c00024{letter-spacing:-0.723840px;}
.lsa0_c00024{letter-spacing:-0.633360px;}
.ls77_c00024{letter-spacing:-0.619440px;}
.ls65_c00024{letter-spacing:-0.612480px;}
.ls80_c00024{letter-spacing:-0.605520px;}
.ls8d_c00024{letter-spacing:-0.556800px;}
.ls7d_c00024{letter-spacing:-0.549840px;}
.ls8b_c00024{letter-spacing:-0.535920px;}
.ls9a_c00024{letter-spacing:-0.508080px;}
.ls9e_c00024{letter-spacing:-0.494160px;}
.ls97_c00024{letter-spacing:-0.480240px;}
.ls66_c00024{letter-spacing:-0.473280px;}
.ls67_c00024{letter-spacing:-0.445440px;}
.ls5f_c00024{letter-spacing:-0.438480px;}
.ls5c_c00024{letter-spacing:-0.396720px;}
.ls62_c00024{letter-spacing:-0.382800px;}
.ls99_c00024{letter-spacing:-0.375840px;}
.ls76_c00024{letter-spacing:-0.348000px;}
.ls98_c00024{letter-spacing:-0.327120px;}
.ls92_c00024{letter-spacing:-0.222720px;}
.ls64_c00024{letter-spacing:-0.208800px;}
.ls5b_c00024{letter-spacing:-0.201840px;}
.ls73_c00024{letter-spacing:-0.180960px;}
.ls90_c00024{letter-spacing:-0.167040px;}
.lsa4_c00024{letter-spacing:-0.160080px;}
.ls9b_c00024{letter-spacing:-0.153120px;}
.lsa1_c00024{letter-spacing:-0.146160px;}
.ls7a_c00024{letter-spacing:-0.139200px;}
.ls82_c00024{letter-spacing:-0.132240px;}
.ls60_c00024{letter-spacing:-0.125280px;}
.ls63_c00024{letter-spacing:-0.118320px;}
.ls86_c00024{letter-spacing:-0.111360px;}
.ls75_c00024{letter-spacing:-0.104400px;}
.ls5e_c00024{letter-spacing:-0.097440px;}
.ls6c_c00024{letter-spacing:-0.090480px;}
.ls70_c00024{letter-spacing:-0.083520px;}
.ls9d_c00024{letter-spacing:-0.076560px;}
.ls83_c00024{letter-spacing:-0.062640px;}
.lsa5_c00024{letter-spacing:-0.048720px;}
.ls8c_c00024{letter-spacing:-0.034800px;}
.ls79_c00024{letter-spacing:-0.027840px;}
.ls96_c00024{letter-spacing:-0.020880px;}
.ls6b_c00024{letter-spacing:-0.013920px;}
.ls59_c00024{letter-spacing:0.000000px;}
.ls4c_c00024{letter-spacing:0.006960px;}
.ls12_c00024{letter-spacing:0.013920px;}
.ls44_c00024{letter-spacing:0.020880px;}
.ls8_c00024{letter-spacing:0.027840px;}
.ls4f_c00024{letter-spacing:0.034800px;}
.ls2e_c00024{letter-spacing:0.041760px;}
.ls2c_c00024{letter-spacing:0.048720px;}
.ls50_c00024{letter-spacing:0.069600px;}
.ls24_c00024{letter-spacing:0.083520px;}
.ls1d_c00024{letter-spacing:0.104400px;}
.ls39_c00024{letter-spacing:0.111360px;}
.ls1b_c00024{letter-spacing:0.118320px;}
.ls57_c00024{letter-spacing:0.132240px;}
.ls19_c00024{letter-spacing:0.139200px;}
.ls27_c00024{letter-spacing:0.146160px;}
.ls51_c00024{letter-spacing:0.167040px;}
.ls40_c00024{letter-spacing:0.187920px;}
.ls9_c00024{letter-spacing:0.194880px;}
.ls45_c00024{letter-spacing:0.201840px;}
.ls14_c00024{letter-spacing:0.215760px;}
.ls38_c00024{letter-spacing:0.222720px;}
.lsa_c00024{letter-spacing:0.243600px;}
.ls7f_c00024{letter-spacing:0.250560px;}
.ls1e_c00024{letter-spacing:0.257520px;}
.ls6_c00024{letter-spacing:0.264480px;}
.ls48_c00024{letter-spacing:0.271440px;}
.ls31_c00024{letter-spacing:0.278400px;}
.ls3b_c00024{letter-spacing:0.285360px;}
.ls18_c00024{letter-spacing:0.292320px;}
.ls20_c00024{letter-spacing:0.299280px;}
.ls1a_c00024{letter-spacing:0.306240px;}
.ls17_c00024{letter-spacing:0.313200px;}
.ls21_c00024{letter-spacing:0.320160px;}
.ls33_c00024{letter-spacing:0.327120px;}
.ls4_c00024{letter-spacing:0.354960px;}
.ls25_c00024{letter-spacing:0.361920px;}
.ls3f_c00024{letter-spacing:0.368880px;}
.lsc_c00024{letter-spacing:0.375840px;}
.ls22_c00024{letter-spacing:0.403680px;}
.ls3_c00024{letter-spacing:0.417600px;}
.ls23_c00024{letter-spacing:0.445440px;}
.ls2d_c00024{letter-spacing:0.459360px;}
.ls10_c00024{letter-spacing:0.480240px;}
.ls2b_c00024{letter-spacing:0.494160px;}
.ls1_c00024{letter-spacing:0.501120px;}
.ls11_c00024{letter-spacing:0.508080px;}
.ls4a_c00024{letter-spacing:0.528960px;}
.ls16_c00024{letter-spacing:0.535920px;}
.ls3a_c00024{letter-spacing:0.542880px;}
.ls47_c00024{letter-spacing:0.556800px;}
.lsb_c00024{letter-spacing:0.563760px;}
.lsf_c00024{letter-spacing:0.591600px;}
.ls1f_c00024{letter-spacing:0.640320px;}
.ls49_c00024{letter-spacing:0.647280px;}
.ls2f_c00024{letter-spacing:0.654240px;}
.ls52_c00024{letter-spacing:0.661200px;}
.ls2a_c00024{letter-spacing:0.675120px;}
.ls53_c00024{letter-spacing:0.696000px;}
.ls54_c00024{letter-spacing:0.751680px;}
.ls8f_c00024{letter-spacing:0.759000px;}
.ls43_c00024{letter-spacing:0.765600px;}
.ls4e_c00024{letter-spacing:0.779520px;}
.ls3d_c00024{letter-spacing:0.834900px;}
.ls4b_c00024{letter-spacing:0.835200px;}
.ls2_c00024{letter-spacing:0.842160px;}
.ls26_c00024{letter-spacing:0.883920px;}
.ls56_c00024{letter-spacing:0.918720px;}
.ls42_c00024{letter-spacing:1.002240px;}
.ls29_c00024{letter-spacing:1.037040px;}
.ls30_c00024{letter-spacing:1.057920px;}
.ls15_c00024{letter-spacing:1.064880px;}
.ls85_c00024{letter-spacing:1.078800px;}
.lsd_c00024{letter-spacing:1.127520px;}
.ls32_c00024{letter-spacing:1.231920px;}
.ls55_c00024{letter-spacing:1.280640px;}
.ls3c_c00024{letter-spacing:1.400700px;}
.ls35_c00024{letter-spacing:1.405920px;}
.ls37_c00024{letter-spacing:1.412880px;}
.ls28_c00024{letter-spacing:1.447680px;}
.ls13_c00024{letter-spacing:1.600800px;}
.lse_c00024{letter-spacing:1.663440px;}
.ls58_c00024{letter-spacing:1.670400px;}
.ls46_c00024{letter-spacing:1.879200px;}
.ls41_c00024{letter-spacing:1.983600px;}
.ls36_c00024{letter-spacing:2.046240px;}
.ls1c_c00024{letter-spacing:2.088000px;}
.ls3e_c00024{letter-spacing:2.164560px;}
.ls4d_c00024{letter-spacing:2.317680px;}
.ls34_c00024{letter-spacing:2.324640px;}
.ls5_c00024{letter-spacing:2.442960px;}
.ls7_c00024{letter-spacing:2.888400px;}
.ls0_c00024{letter-spacing:2.952000px;}
.ls5a_c00024{letter-spacing:3.000000px;}
.ls69_c00024{letter-spacing:3.480000px;}
.ls7b_c00024{letter-spacing:5.160030px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{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__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00024{word-spacing:0.000000px;}
._12_c00024{margin-left:-14.760000px;}
._11_c00024{margin-left:-9.397440px;}
._9_c00024{margin-left:-6.883440px;}
._14_c00024{margin-left:-4.558800px;}
._0_c00024{margin-left:-2.928000px;}
._8_c00024{margin-left:-1.823520px;}
._3_c00024{width:1.753920px;}
._15_c00024{width:2.951760px;}
._a_c00024{width:3.966480px;}
._6_c00024{width:5.394480px;}
._4_c00024{width:6.681600px;}
._2_c00024{width:8.700000px;}
._1_c00024{width:10.565280px;}
._7_c00024{width:12.470880px;}
._5_c00024{width:14.481120px;}
._c_c00024{width:16.648320px;}
._13_c00024{width:18.182160px;}
._b_c00024{width:20.114400px;}
._16_c00024{width:21.157920px;}
._17_c00024{width:23.511840px;}
._f_c00024{width:25.885920px;}
._d_c00024{width:29.183280px;}
._e_c00024{width:30.658800px;}
._10_c00024{width:33.769920px;}
.fc0_c00024{color:transparent;}
.fs0_c00024{font-size:60.000000px;}
.fs7_c00024{font-size:63.000000px;}
.fs2_c00024{font-size:69.000000px;}
.fs1_c00024{font-size:69.600000px;}
.fs5_c00024{font-size:70.800000px;}
.fs3_c00024{font-size:72.000000px;}
.fs6_c00024{font-size:75.600000px;}
.fs4_c00024{font-size:103.200600px;}
.y0_c00024{bottom:0.000000px;}
.y21_c00024{bottom:58.335000px;}
.y20_c00024{bottom:137.520000px;}
.y1f_c00024{bottom:168.840000px;}
.y1e_c00024{bottom:168.843000px;}
.y1d_c00024{bottom:199.815000px;}
.y1c_c00024{bottom:261.376200px;}
.y1b_c00024{bottom:293.409600px;}
.y1a_c00024{bottom:325.095000px;}
.y19_c00024{bottom:356.775000px;}
.y18_c00024{bottom:388.095000px;}
.y17_c00024{bottom:419.780400px;}
.y16_c00024{bottom:450.737400px;}
.y15_c00024{bottom:482.040000px;}
.y14_c00024{bottom:513.360000px;}
.y13_c00024{bottom:544.335000px;}
.y12_c00024{bottom:606.975000px;}
.y11_c00024{bottom:669.249600px;}
.y10_c00024{bottom:700.935000px;}
.yf_c00024{bottom:732.977400px;}
.yd_c00024{bottom:764.278800px;}
.ye_c00024{bottom:764.280000px;}
.yc_c00024{bottom:827.649600px;}
.yb_c00024{bottom:859.335000px;}
.y9_c00024{bottom:890.649600px;}
.ya_c00024{bottom:890.655000px;}
.y8_c00024{bottom:922.335000px;}
.y6_c00024{bottom:953.649600px;}
.y7_c00024{bottom:953.655000px;}
.y5_c00024{bottom:984.969600px;}
.y4_c00024{bottom:1016.289600px;}
.y3_c00024{bottom:1078.929600px;}
.y2_c00024{bottom:1110.615000px;}
.y1_c00024{bottom:1186.560000px;}
.h2_c00024{height:58.886719px;}
.hc_c00024{height:65.707031px;}
.hb_c00024{height:68.274609px;}
.h3_c00024{height:68.308594px;}
.h6_c00024{height:68.313394px;}
.h8_c00024{height:69.486328px;}
.h5_c00024{height:70.664062px;}
.h4_c00024{height:71.964844px;}
.h9_c00024{height:73.842188px;}
.ha_c00024{height:74.160352px;}
.h7_c00024{height:101.285745px;}
.h1_c00024{height:1263.000000px;}
.h0_c00024{height:1263.240000px;}
.w1_c00024{width:892.500000px;}
.w0_c00024{width:892.800000px;}
.x0_c00024{left:0.000000px;}
.x20_c00024{left:117.975000px;}
.x17_c00024{left:120.387600px;}
.x7_c00024{left:121.519800px;}
.x5_c00024{left:123.503400px;}
.x1_c00024{left:124.860000px;}
.x23_c00024{left:136.050000px;}
.x11_c00024{left:144.660000px;}
.x24_c00024{left:161.820000px;}
.x21_c00024{left:164.490000px;}
.x22_c00024{left:174.495000px;}
.xe_c00024{left:175.660800px;}
.x6_c00024{left:177.391200px;}
.x12_c00024{left:179.250000px;}
.x1b_c00024{left:202.695000px;}
.x8_c00024{left:216.195000px;}
.x1c_c00024{left:220.335000px;}
.x2_c00024{left:226.740000px;}
.x9_c00024{left:234.315000px;}
.x1d_c00024{left:271.335000px;}
.x1e_c00024{left:287.820000px;}
.x1f_c00024{left:306.030000px;}
.x27_c00024{left:386.490000px;}
.x13_c00024{left:399.090000px;}
.x28_c00024{left:402.660000px;}
.x14_c00024{left:421.455000px;}
.x29_c00024{left:429.330000px;}
.x15_c00024{left:445.260000px;}
.xf_c00024{left:472.905000px;}
.x16_c00024{left:479.715000px;}
.x18_c00024{left:487.575000px;}
.xa_c00024{left:502.485000px;}
.x10_c00024{left:511.530000px;}
.x25_c00024{left:530.970000px;}
.xb_c00024{left:545.970000px;}
.x26_c00024{left:556.755000px;}
.xc_c00024{left:621.900000px;}
.xd_c00024{left:642.960000px;}
.x3_c00024{left:658.620000px;}
.x19_c00024{left:665.475000px;}
.x4_c00024{left:676.980000px;}
.x1a_c00024{left:735.750000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls87_c00024{letter-spacing:-2.352000pt;}
.ls72_c00024{letter-spacing:-2.240000pt;}
.ls7e_c00024{letter-spacing:-2.202667pt;}
.ls74_c00024{letter-spacing:-2.165333pt;}
.lsa6_c00024{letter-spacing:-2.159147pt;}
.ls61_c00024{letter-spacing:-2.146667pt;}
.ls78_c00024{letter-spacing:-2.066347pt;}
.lsa8_c00024{letter-spacing:-1.866667pt;}
.ls6e_c00024{letter-spacing:-1.676587pt;}
.lsa7_c00024{letter-spacing:-1.620907pt;}
.ls6d_c00024{letter-spacing:-1.466240pt;}
.ls89_c00024{letter-spacing:-1.438080pt;}
.ls88_c00024{letter-spacing:-1.397760pt;}
.ls71_c00024{letter-spacing:-1.361067pt;}
.ls9f_c00024{letter-spacing:-1.268267pt;}
.ls84_c00024{letter-spacing:-1.243520pt;}
.ls94_c00024{letter-spacing:-1.231147pt;}
.ls68_c00024{letter-spacing:-1.194027pt;}
.lsa3_c00024{letter-spacing:-1.082667pt;}
.ls95_c00024{letter-spacing:-1.045547pt;}
.ls7c_c00024{letter-spacing:-1.039360pt;}
.ls93_c00024{letter-spacing:-0.965120pt;}
.ls8a_c00024{letter-spacing:-0.921813pt;}
.ls9c_c00024{letter-spacing:-0.884693pt;}
.ls8e_c00024{letter-spacing:-0.840267pt;}
.ls6a_c00024{letter-spacing:-0.785707pt;}
.ls5d_c00024{letter-spacing:-0.742400pt;}
.ls81_c00024{letter-spacing:-0.711467pt;}
.ls6f_c00024{letter-spacing:-0.692907pt;}
.lsa2_c00024{letter-spacing:-0.674347pt;}
.ls91_c00024{letter-spacing:-0.643413pt;}
.lsa0_c00024{letter-spacing:-0.562987pt;}
.ls77_c00024{letter-spacing:-0.550613pt;}
.ls65_c00024{letter-spacing:-0.544427pt;}
.ls80_c00024{letter-spacing:-0.538240pt;}
.ls8d_c00024{letter-spacing:-0.494933pt;}
.ls7d_c00024{letter-spacing:-0.488747pt;}
.ls8b_c00024{letter-spacing:-0.476373pt;}
.ls9a_c00024{letter-spacing:-0.451627pt;}
.ls9e_c00024{letter-spacing:-0.439253pt;}
.ls97_c00024{letter-spacing:-0.426880pt;}
.ls66_c00024{letter-spacing:-0.420693pt;}
.ls67_c00024{letter-spacing:-0.395947pt;}
.ls5f_c00024{letter-spacing:-0.389760pt;}
.ls5c_c00024{letter-spacing:-0.352640pt;}
.ls62_c00024{letter-spacing:-0.340267pt;}
.ls99_c00024{letter-spacing:-0.334080pt;}
.ls76_c00024{letter-spacing:-0.309333pt;}
.ls98_c00024{letter-spacing:-0.290773pt;}
.ls92_c00024{letter-spacing:-0.197973pt;}
.ls64_c00024{letter-spacing:-0.185600pt;}
.ls5b_c00024{letter-spacing:-0.179413pt;}
.ls73_c00024{letter-spacing:-0.160853pt;}
.ls90_c00024{letter-spacing:-0.148480pt;}
.lsa4_c00024{letter-spacing:-0.142293pt;}
.ls9b_c00024{letter-spacing:-0.136107pt;}
.lsa1_c00024{letter-spacing:-0.129920pt;}
.ls7a_c00024{letter-spacing:-0.123733pt;}
.ls82_c00024{letter-spacing:-0.117547pt;}
.ls60_c00024{letter-spacing:-0.111360pt;}
.ls63_c00024{letter-spacing:-0.105173pt;}
.ls86_c00024{letter-spacing:-0.098987pt;}
.ls75_c00024{letter-spacing:-0.092800pt;}
.ls5e_c00024{letter-spacing:-0.086613pt;}
.ls6c_c00024{letter-spacing:-0.080427pt;}
.ls70_c00024{letter-spacing:-0.074240pt;}
.ls9d_c00024{letter-spacing:-0.068053pt;}
.ls83_c00024{letter-spacing:-0.055680pt;}
.lsa5_c00024{letter-spacing:-0.043307pt;}
.ls8c_c00024{letter-spacing:-0.030933pt;}
.ls79_c00024{letter-spacing:-0.024747pt;}
.ls96_c00024{letter-spacing:-0.018560pt;}
.ls6b_c00024{letter-spacing:-0.012373pt;}
.ls59_c00024{letter-spacing:0.000000pt;}
.ls4c_c00024{letter-spacing:0.006187pt;}
.ls12_c00024{letter-spacing:0.012373pt;}
.ls44_c00024{letter-spacing:0.018560pt;}
.ls8_c00024{letter-spacing:0.024747pt;}
.ls4f_c00024{letter-spacing:0.030933pt;}
.ls2e_c00024{letter-spacing:0.037120pt;}
.ls2c_c00024{letter-spacing:0.043307pt;}
.ls50_c00024{letter-spacing:0.061867pt;}
.ls24_c00024{letter-spacing:0.074240pt;}
.ls1d_c00024{letter-spacing:0.092800pt;}
.ls39_c00024{letter-spacing:0.098987pt;}
.ls1b_c00024{letter-spacing:0.105173pt;}
.ls57_c00024{letter-spacing:0.117547pt;}
.ls19_c00024{letter-spacing:0.123733pt;}
.ls27_c00024{letter-spacing:0.129920pt;}
.ls51_c00024{letter-spacing:0.148480pt;}
.ls40_c00024{letter-spacing:0.167040pt;}
.ls9_c00024{letter-spacing:0.173227pt;}
.ls45_c00024{letter-spacing:0.179413pt;}
.ls14_c00024{letter-spacing:0.191787pt;}
.ls38_c00024{letter-spacing:0.197973pt;}
.lsa_c00024{letter-spacing:0.216533pt;}
.ls7f_c00024{letter-spacing:0.222720pt;}
.ls1e_c00024{letter-spacing:0.228907pt;}
.ls6_c00024{letter-spacing:0.235093pt;}
.ls48_c00024{letter-spacing:0.241280pt;}
.ls31_c00024{letter-spacing:0.247467pt;}
.ls3b_c00024{letter-spacing:0.253653pt;}
.ls18_c00024{letter-spacing:0.259840pt;}
.ls20_c00024{letter-spacing:0.266027pt;}
.ls1a_c00024{letter-spacing:0.272213pt;}
.ls17_c00024{letter-spacing:0.278400pt;}
.ls21_c00024{letter-spacing:0.284587pt;}
.ls33_c00024{letter-spacing:0.290773pt;}
.ls4_c00024{letter-spacing:0.315520pt;}
.ls25_c00024{letter-spacing:0.321707pt;}
.ls3f_c00024{letter-spacing:0.327893pt;}
.lsc_c00024{letter-spacing:0.334080pt;}
.ls22_c00024{letter-spacing:0.358827pt;}
.ls3_c00024{letter-spacing:0.371200pt;}
.ls23_c00024{letter-spacing:0.395947pt;}
.ls2d_c00024{letter-spacing:0.408320pt;}
.ls10_c00024{letter-spacing:0.426880pt;}
.ls2b_c00024{letter-spacing:0.439253pt;}
.ls1_c00024{letter-spacing:0.445440pt;}
.ls11_c00024{letter-spacing:0.451627pt;}
.ls4a_c00024{letter-spacing:0.470187pt;}
.ls16_c00024{letter-spacing:0.476373pt;}
.ls3a_c00024{letter-spacing:0.482560pt;}
.ls47_c00024{letter-spacing:0.494933pt;}
.lsb_c00024{letter-spacing:0.501120pt;}
.lsf_c00024{letter-spacing:0.525867pt;}
.ls1f_c00024{letter-spacing:0.569173pt;}
.ls49_c00024{letter-spacing:0.575360pt;}
.ls2f_c00024{letter-spacing:0.581547pt;}
.ls52_c00024{letter-spacing:0.587733pt;}
.ls2a_c00024{letter-spacing:0.600107pt;}
.ls53_c00024{letter-spacing:0.618667pt;}
.ls54_c00024{letter-spacing:0.668160pt;}
.ls8f_c00024{letter-spacing:0.674667pt;}
.ls43_c00024{letter-spacing:0.680533pt;}
.ls4e_c00024{letter-spacing:0.692907pt;}
.ls3d_c00024{letter-spacing:0.742133pt;}
.ls4b_c00024{letter-spacing:0.742400pt;}
.ls2_c00024{letter-spacing:0.748587pt;}
.ls26_c00024{letter-spacing:0.785707pt;}
.ls56_c00024{letter-spacing:0.816640pt;}
.ls42_c00024{letter-spacing:0.890880pt;}
.ls29_c00024{letter-spacing:0.921813pt;}
.ls30_c00024{letter-spacing:0.940373pt;}
.ls15_c00024{letter-spacing:0.946560pt;}
.ls85_c00024{letter-spacing:0.958933pt;}
.lsd_c00024{letter-spacing:1.002240pt;}
.ls32_c00024{letter-spacing:1.095040pt;}
.ls55_c00024{letter-spacing:1.138347pt;}
.ls3c_c00024{letter-spacing:1.245067pt;}
.ls35_c00024{letter-spacing:1.249707pt;}
.ls37_c00024{letter-spacing:1.255893pt;}
.ls28_c00024{letter-spacing:1.286827pt;}
.ls13_c00024{letter-spacing:1.422933pt;}
.lse_c00024{letter-spacing:1.478613pt;}
.ls58_c00024{letter-spacing:1.484800pt;}
.ls46_c00024{letter-spacing:1.670400pt;}
.ls41_c00024{letter-spacing:1.763200pt;}
.ls36_c00024{letter-spacing:1.818880pt;}
.ls1c_c00024{letter-spacing:1.856000pt;}
.ls3e_c00024{letter-spacing:1.924053pt;}
.ls4d_c00024{letter-spacing:2.060160pt;}
.ls34_c00024{letter-spacing:2.066347pt;}
.ls5_c00024{letter-spacing:2.171520pt;}
.ls7_c00024{letter-spacing:2.567467pt;}
.ls0_c00024{letter-spacing:2.624000pt;}
.ls5a_c00024{letter-spacing:2.666667pt;}
.ls69_c00024{letter-spacing:3.093333pt;}
.ls7b_c00024{letter-spacing:4.586693pt;}
.ws0_c00024{word-spacing:0.000000pt;}
._12_c00024{margin-left:-13.120000pt;}
._11_c00024{margin-left:-8.353280pt;}
._9_c00024{margin-left:-6.118613pt;}
._14_c00024{margin-left:-4.052267pt;}
._0_c00024{margin-left:-2.602667pt;}
._8_c00024{margin-left:-1.620907pt;}
._3_c00024{width:1.559040pt;}
._15_c00024{width:2.623787pt;}
._a_c00024{width:3.525760pt;}
._6_c00024{width:4.795093pt;}
._4_c00024{width:5.939200pt;}
._2_c00024{width:7.733333pt;}
._1_c00024{width:9.391360pt;}
._7_c00024{width:11.085227pt;}
._5_c00024{width:12.872107pt;}
._c_c00024{width:14.798507pt;}
._13_c00024{width:16.161920pt;}
._b_c00024{width:17.879467pt;}
._16_c00024{width:18.807040pt;}
._17_c00024{width:20.899413pt;}
._f_c00024{width:23.009707pt;}
._d_c00024{width:25.940693pt;}
._e_c00024{width:27.252267pt;}
._10_c00024{width:30.017707pt;}
.fs0_c00024{font-size:53.333333pt;}
.fs7_c00024{font-size:56.000000pt;}
.fs2_c00024{font-size:61.333333pt;}
.fs1_c00024{font-size:61.866667pt;}
.fs5_c00024{font-size:62.933333pt;}
.fs3_c00024{font-size:64.000000pt;}
.fs6_c00024{font-size:67.200000pt;}
.fs4_c00024{font-size:91.733867pt;}
.y0_c00024{bottom:0.000000pt;}
.y21_c00024{bottom:51.853333pt;}
.y20_c00024{bottom:122.240000pt;}
.y1f_c00024{bottom:150.080000pt;}
.y1e_c00024{bottom:150.082667pt;}
.y1d_c00024{bottom:177.613333pt;}
.y1c_c00024{bottom:232.334400pt;}
.y1b_c00024{bottom:260.808533pt;}
.y1a_c00024{bottom:288.973333pt;}
.y19_c00024{bottom:317.133333pt;}
.y18_c00024{bottom:344.973333pt;}
.y17_c00024{bottom:373.138133pt;}
.y16_c00024{bottom:400.655467pt;}
.y15_c00024{bottom:428.480000pt;}
.y14_c00024{bottom:456.320000pt;}
.y13_c00024{bottom:483.853333pt;}
.y12_c00024{bottom:539.533333pt;}
.y11_c00024{bottom:594.888533pt;}
.y10_c00024{bottom:623.053333pt;}
.yf_c00024{bottom:651.535467pt;}
.yd_c00024{bottom:679.358933pt;}
.ye_c00024{bottom:679.360000pt;}
.yc_c00024{bottom:735.688533pt;}
.yb_c00024{bottom:763.853333pt;}
.y9_c00024{bottom:791.688533pt;}
.ya_c00024{bottom:791.693333pt;}
.y8_c00024{bottom:819.853333pt;}
.y6_c00024{bottom:847.688533pt;}
.y7_c00024{bottom:847.693333pt;}
.y5_c00024{bottom:875.528533pt;}
.y4_c00024{bottom:903.368533pt;}
.y3_c00024{bottom:959.048533pt;}
.y2_c00024{bottom:987.213333pt;}
.y1_c00024{bottom:1054.720000pt;}
.h2_c00024{height:52.343750pt;}
.hc_c00024{height:58.406250pt;}
.hb_c00024{height:60.688542pt;}
.h3_c00024{height:60.718750pt;}
.h6_c00024{height:60.723017pt;}
.h8_c00024{height:61.765625pt;}
.h5_c00024{height:62.812500pt;}
.h4_c00024{height:63.968750pt;}
.h9_c00024{height:65.637500pt;}
.ha_c00024{height:65.920312pt;}
.h7_c00024{height:90.031773pt;}
.h1_c00024{height:1122.666667pt;}
.h0_c00024{height:1122.880000pt;}
.w1_c00024{width:793.333333pt;}
.w0_c00024{width:793.600000pt;}
.x0_c00024{left:0.000000pt;}
.x20_c00024{left:104.866667pt;}
.x17_c00024{left:107.011200pt;}
.x7_c00024{left:108.017600pt;}
.x5_c00024{left:109.780800pt;}
.x1_c00024{left:110.986667pt;}
.x23_c00024{left:120.933333pt;}
.x11_c00024{left:128.586667pt;}
.x24_c00024{left:143.840000pt;}
.x21_c00024{left:146.213333pt;}
.x22_c00024{left:155.106667pt;}
.xe_c00024{left:156.142933pt;}
.x6_c00024{left:157.681067pt;}
.x12_c00024{left:159.333333pt;}
.x1b_c00024{left:180.173333pt;}
.x8_c00024{left:192.173333pt;}
.x1c_c00024{left:195.853333pt;}
.x2_c00024{left:201.546667pt;}
.x9_c00024{left:208.280000pt;}
.x1d_c00024{left:241.186667pt;}
.x1e_c00024{left:255.840000pt;}
.x1f_c00024{left:272.026667pt;}
.x27_c00024{left:343.546667pt;}
.x13_c00024{left:354.746667pt;}
.x28_c00024{left:357.920000pt;}
.x14_c00024{left:374.626667pt;}
.x29_c00024{left:381.626667pt;}
.x15_c00024{left:395.786667pt;}
.xf_c00024{left:420.360000pt;}
.x16_c00024{left:426.413333pt;}
.x18_c00024{left:433.400000pt;}
.xa_c00024{left:446.653333pt;}
.x10_c00024{left:454.693333pt;}
.x25_c00024{left:471.973333pt;}
.xb_c00024{left:485.306667pt;}
.x26_c00024{left:494.893333pt;}
.xc_c00024{left:552.800000pt;}
.xd_c00024{left:571.520000pt;}
.x3_c00024{left:585.440000pt;}
.x19_c00024{left:591.533333pt;}
.x4_c00024{left:601.760000pt;}
.x1a_c00024{left:654.000000pt;}
}





/* 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_c00025 {
    display:none;
  }
  .loading-indicator_c00025.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00025 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_c00025 { 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_c00025" -> "#page-container .classname_c00025")
 */
.pf_c00025 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00025 { /* 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_c00025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00025 { /* 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_c00025 { /* 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_c00025 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00025 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00025 {overflow:visible;}
  }
}
.c_c00025 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00025 { /* 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_c00025:after { /* webkit #35443 */
  content: '';
}
.t_c00025:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00025 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 */
}
.__c00025 { /* 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_c00025 { /* info for Javascript */
  display:none;
}
.l_c00025 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00025 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00025 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00025: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_c00025 {
    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_c00025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00025.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_c00025 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00025;src:url('chunks/assets/font_77b40753a0f5f40628160f39.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.284668;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_c00025;src:url('chunks/assets/font_6ba94f283d5107add851d4d2.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;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;}
.m3_c00025{transform:matrix(0.183574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183574,0.000000,0.000000,0.250000,0,0);}
.md_c00025{transform:matrix(0.221703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221703,0.000000,0.000000,0.250000,0,0);}
.m9_c00025{transform:matrix(0.222768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222768,0.000000,0.000000,0.250000,0,0);}
.mb_c00025{transform:matrix(0.234096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234096,0.000000,0.000000,0.250000,0,0);}
.m5_c00025{transform:matrix(0.236866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236866,0.000000,0.000000,0.250000,0,0);}
.m4_c00025{transform:matrix(0.239211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239211,0.000000,0.000000,0.250000,0,0);}
.mc_c00025{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.ma_c00025{transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);}
.m0_c00025{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);}
.m8_c00025{transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);}
.m7_c00025{transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);}
.m6_c00025{transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);}
.m2_c00025{transform:matrix(0.255787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255787,0.000000,0.000000,0.250000,0,0);}
.m1_c00025{transform:matrix(0.257581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257581,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls83_c00025{letter-spacing:-2.751000px;}
.lsae_c00025{letter-spacing:-2.415000px;}
.ls84_c00025{letter-spacing:-2.394000px;}
.ls9b_c00025{letter-spacing:-2.310000px;}
.lsb2_c00025{letter-spacing:-2.226000px;}
.ls78_c00025{letter-spacing:-2.181960px;}
.ls91_c00025{letter-spacing:-2.127240px;}
.ls79_c00025{letter-spacing:-1.963080px;}
.lsaa_c00025{letter-spacing:-1.703160px;}
.ls99_c00025{letter-spacing:-1.641600px;}
.ls86_c00025{letter-spacing:-1.634760px;}
.ls88_c00025{letter-spacing:-1.409040px;}
.lsab_c00025{letter-spacing:-1.354320px;}
.ls9f_c00025{letter-spacing:-1.224360px;}
.lsa9_c00025{letter-spacing:-1.197000px;}
.ls8b_c00025{letter-spacing:-1.114920px;}
.ls82_c00025{letter-spacing:-1.005480px;}
.lsa7_c00025{letter-spacing:-0.875520px;}
.ls94_c00025{letter-spacing:-0.868680px;}
.ls8f_c00025{letter-spacing:-0.800280px;}
.ls7b_c00025{letter-spacing:-0.684000px;}
.lsa2_c00025{letter-spacing:-0.670320px;}
.lsa5_c00025{letter-spacing:-0.636120px;}
.ls9e_c00025{letter-spacing:-0.622440px;}
.ls77_c00025{letter-spacing:-0.615600px;}
.ls7a_c00025{letter-spacing:-0.526680px;}
.ls98_c00025{letter-spacing:-0.513000px;}
.ls8a_c00025{letter-spacing:-0.478800px;}
.ls8e_c00025{letter-spacing:-0.458280px;}
.lsa1_c00025{letter-spacing:-0.444600px;}
.ls93_c00025{letter-spacing:-0.389880px;}
.ls8d_c00025{letter-spacing:-0.376200px;}
.ls92_c00025{letter-spacing:-0.348840px;}
.ls7c_c00025{letter-spacing:-0.287280px;}
.ls90_c00025{letter-spacing:-0.232560px;}
.ls87_c00025{letter-spacing:-0.225720px;}
.ls80_c00025{letter-spacing:-0.218880px;}
.lsa0_c00025{letter-spacing:-0.212040px;}
.lsa6_c00025{letter-spacing:-0.109440px;}
.lsb0_c00025{letter-spacing:-0.102600px;}
.lsac_c00025{letter-spacing:-0.082080px;}
.lsa8_c00025{letter-spacing:-0.068400px;}
.ls9d_c00025{letter-spacing:-0.061560px;}
.ls95_c00025{letter-spacing:-0.034200px;}
.ls7f_c00025{letter-spacing:-0.020520px;}
.ls9c_c00025{letter-spacing:-0.013680px;}
.ls81_c00025{letter-spacing:-0.006840px;}
.ls75_c00025{letter-spacing:0.000000px;}
.ls35_c00025{letter-spacing:0.013680px;}
.ls69_c00025{letter-spacing:0.068400px;}
.ls4f_c00025{letter-spacing:0.082080px;}
.ls67_c00025{letter-spacing:0.088920px;}
.ls18_c00025{letter-spacing:0.095760px;}
.ls14_c00025{letter-spacing:0.102600px;}
.ls7d_c00025{letter-spacing:0.109440px;}
.ls66_c00025{letter-spacing:0.136800px;}
.ls4a_c00025{letter-spacing:0.143640px;}
.ls71_c00025{letter-spacing:0.150480px;}
.ls68_c00025{letter-spacing:0.157320px;}
.ls52_c00025{letter-spacing:0.164160px;}
.ls4e_c00025{letter-spacing:0.177840px;}
.ls58_c00025{letter-spacing:0.184680px;}
.ls3e_c00025{letter-spacing:0.198360px;}
.ls89_c00025{letter-spacing:0.205200px;}
.ls2e_c00025{letter-spacing:0.218880px;}
.ls5c_c00025{letter-spacing:0.225720px;}
.ls8_c00025{letter-spacing:0.232560px;}
.ls6f_c00025{letter-spacing:0.239400px;}
.ls4_c00025{letter-spacing:0.253080px;}
.ls4d_c00025{letter-spacing:0.266760px;}
.ls38_c00025{letter-spacing:0.273600px;}
.ls57_c00025{letter-spacing:0.280440px;}
.ls49_c00025{letter-spacing:0.287280px;}
.ls54_c00025{letter-spacing:0.300960px;}
.lsd_c00025{letter-spacing:0.307800px;}
.ls51_c00025{letter-spacing:0.314640px;}
.ls12_c00025{letter-spacing:0.321480px;}
.ls53_c00025{letter-spacing:0.342000px;}
.ls1d_c00025{letter-spacing:0.348840px;}
.ls29_c00025{letter-spacing:0.355680px;}
.ls3a_c00025{letter-spacing:0.362520px;}
.ls11_c00025{letter-spacing:0.383040px;}
.ls6c_c00025{letter-spacing:0.389880px;}
.ls5_c00025{letter-spacing:0.396720px;}
.ls5e_c00025{letter-spacing:0.403560px;}
.ls10_c00025{letter-spacing:0.410400px;}
.ls4c_c00025{letter-spacing:0.417240px;}
.ls96_c00025{letter-spacing:0.424080px;}
.ls26_c00025{letter-spacing:0.437760px;}
.ls61_c00025{letter-spacing:0.451440px;}
.lsa3_c00025{letter-spacing:0.458280px;}
.ls31_c00025{letter-spacing:0.465120px;}
.lsa4_c00025{letter-spacing:0.471960px;}
.ls3_c00025{letter-spacing:0.485640px;}
.ls2b_c00025{letter-spacing:0.492480px;}
.ls46_c00025{letter-spacing:0.506160px;}
.ls1a_c00025{letter-spacing:0.513000px;}
.ls64_c00025{letter-spacing:0.519840px;}
.ls17_c00025{letter-spacing:0.526680px;}
.ls21_c00025{letter-spacing:0.533520px;}
.ls23_c00025{letter-spacing:0.540360px;}
.ls34_c00025{letter-spacing:0.547200px;}
.ls36_c00025{letter-spacing:0.560880px;}
.ls6e_c00025{letter-spacing:0.567720px;}
.ls5b_c00025{letter-spacing:0.574560px;}
.lsc_c00025{letter-spacing:0.588240px;}
.ls6d_c00025{letter-spacing:0.595080px;}
.ls30_c00025{letter-spacing:0.601920px;}
.ls2a_c00025{letter-spacing:0.608760px;}
.lse_c00025{letter-spacing:0.615600px;}
.ls42_c00025{letter-spacing:0.622440px;}
.ls48_c00025{letter-spacing:0.629280px;}
.ls97_c00025{letter-spacing:0.642960px;}
.ls13_c00025{letter-spacing:0.656640px;}
.ls6a_c00025{letter-spacing:0.663480px;}
.ls32_c00025{letter-spacing:0.677160px;}
.ls72_c00025{letter-spacing:0.690840px;}
.ls4b_c00025{letter-spacing:0.704520px;}
.ls3b_c00025{letter-spacing:0.725040px;}
.ls27_c00025{letter-spacing:0.745560px;}
.lsb_c00025{letter-spacing:0.752400px;}
.ls5d_c00025{letter-spacing:0.759240px;}
.ls9a_c00025{letter-spacing:0.779760px;}
.lsaf_c00025{letter-spacing:0.800280px;}
.ls50_c00025{letter-spacing:0.807120px;}
.ls63_c00025{letter-spacing:0.813960px;}
.lsad_c00025{letter-spacing:0.820800px;}
.ls60_c00025{letter-spacing:0.827640px;}
.ls1e_c00025{letter-spacing:0.834480px;}
.ls47_c00025{letter-spacing:0.875520px;}
.ls20_c00025{letter-spacing:0.882360px;}
.ls70_c00025{letter-spacing:0.889200px;}
.ls1_c00025{letter-spacing:0.909720px;}
.ls2_c00025{letter-spacing:0.916560px;}
.ls3f_c00025{letter-spacing:0.923400px;}
.ls22_c00025{letter-spacing:0.943920px;}
.ls1f_c00025{letter-spacing:0.964440px;}
.ls16_c00025{letter-spacing:0.978120px;}
.ls5a_c00025{letter-spacing:0.991800px;}
.ls7_c00025{letter-spacing:0.998640px;}
.ls39_c00025{letter-spacing:1.012320px;}
.ls59_c00025{letter-spacing:1.019160px;}
.ls74_c00025{letter-spacing:1.026000px;}
.ls45_c00025{letter-spacing:1.053360px;}
.ls2c_c00025{letter-spacing:1.060200px;}
.ls28_c00025{letter-spacing:1.067040px;}
.ls56_c00025{letter-spacing:1.080720px;}
.ls1b_c00025{letter-spacing:1.135440px;}
.ls33_c00025{letter-spacing:1.183320px;}
.lsa_c00025{letter-spacing:1.258560px;}
.ls5f_c00025{letter-spacing:1.265400px;}
.ls62_c00025{letter-spacing:1.285920px;}
.ls3c_c00025{letter-spacing:1.299600px;}
.ls24_c00025{letter-spacing:1.333800px;}
.ls3d_c00025{letter-spacing:1.395360px;}
.lsf_c00025{letter-spacing:1.402200px;}
.ls25_c00025{letter-spacing:1.450080px;}
.ls37_c00025{letter-spacing:1.648440px;}
.ls9_c00025{letter-spacing:1.737360px;}
.ls2d_c00025{letter-spacing:1.744200px;}
.ls6b_c00025{letter-spacing:1.785240px;}
.ls85_c00025{letter-spacing:1.792080px;}
.ls65_c00025{letter-spacing:1.812600px;}
.ls1c_c00025{letter-spacing:2.010960px;}
.ls15_c00025{letter-spacing:2.098980px;}
.ls40_c00025{letter-spacing:2.127240px;}
.ls76_c00025{letter-spacing:2.193720px;}
.lsb1_c00025{letter-spacing:2.195640px;}
.ls2f_c00025{letter-spacing:2.202480px;}
.ls6_c00025{letter-spacing:2.236680px;}
.ls8c_c00025{letter-spacing:2.270880px;}
.ls41_c00025{letter-spacing:2.455560px;}
.ls44_c00025{letter-spacing:2.510280px;}
.ls0_c00025{letter-spacing:2.714880px;}
.ls19_c00025{letter-spacing:2.790720px;}
.ls73_c00025{letter-spacing:2.961720px;}
.ls43_c00025{letter-spacing:3.091680px;}
.ls55_c00025{letter-spacing:3.406320px;}
.ls7e_c00025{letter-spacing:3.420000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{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__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:0.000000px;}
._9_c00025{margin-left:-19.986480px;}
._a_c00025{margin-left:-12.326160px;}
._1b_c00025{margin-left:-8.556840px;}
._2_c00025{margin-left:-7.435080px;}
._6_c00025{margin-left:-6.197040px;}
._15_c00025{margin-left:-5.020560px;}
._0_c00025{margin-left:-3.983520px;}
._1_c00025{margin-left:-2.106720px;}
._12_c00025{margin-left:-1.057560px;}
._5_c00025{width:1.463760px;}
._b_c00025{width:2.531520px;}
._3_c00025{width:4.357080px;}
._4_c00025{width:5.410440px;}
._7_c00025{width:7.346160px;}
._d_c00025{width:8.912520px;}
._8_c00025{width:10.303920px;}
._f_c00025{width:12.312000px;}
._c_c00025{width:13.324320px;}
._e_c00025{width:14.329800px;}
._11_c00025{width:15.991920px;}
._10_c00025{width:18.550080px;}
._14_c00025{width:20.540520px;}
._13_c00025{width:22.168440px;}
._16_c00025{width:24.952320px;}
._18_c00025{width:27.018000px;}
._17_c00025{width:28.338120px;}
._19_c00025{width:30.219120px;}
._1a_c00025{width:31.313520px;}
.fc0_c00025{color:transparent;}
.fs0_c00025{font-size:60.600000px;}
.fs7_c00025{font-size:63.600000px;}
.fs5_c00025{font-size:66.000000px;}
.fs1_c00025{font-size:68.400000px;}
.fs6_c00025{font-size:69.000000px;}
.fs2_c00025{font-size:70.200000px;}
.fs8_c00025{font-size:76.800000px;}
.fs3_c00025{font-size:78.600000px;}
.fs4_c00025{font-size:105.600000px;}
.y0_c00025{bottom:0.000000px;}
.y21_c00025{bottom:67.695015px;}
.y20_c00025{bottom:147.955515px;}
.y1f_c00025{bottom:210.250815px;}
.y1e_c00025{bottom:241.920015px;}
.y1d_c00025{bottom:241.927815px;}
.y1c_c00025{bottom:273.255015px;}
.y1b_c00025{bottom:304.206915px;}
.y19_c00025{bottom:335.167815px;}
.y1a_c00025{bottom:335.175015px;}
.y18_c00025{bottom:366.487815px;}
.y17_c00025{bottom:397.815015px;}
.y16_c00025{bottom:460.789215px;}
.y15_c00025{bottom:492.116415px;}
.y14_c00025{bottom:523.802715px;}
.y13_c00025{bottom:555.129915px;}
.y12_c00025{bottom:586.432815px;}
.y23_c00025{bottom:615.255015px;}
.y11_c00025{bottom:617.760015px;}
.y22_c00025{bottom:618.840015px;}
.y10_c00025{bottom:648.721815px;}
.yf_c00025{bottom:679.672815px;}
.ye_c00025{bottom:710.974815px;}
.yd_c00025{bottom:772.893915px;}
.yc_c00025{bottom:804.580215px;}
.yb_c00025{bottom:835.907415px;}
.ya_c00025{bottom:867.952815px;}
.y9_c00025{bottom:899.280015px;}
.y8_c00025{bottom:930.600615px;}
.y7_c00025{bottom:961.927815px;}
.y5_c00025{bottom:993.250815px;}
.y6_c00025{bottom:993.255015px;}
.y4_c00025{bottom:1024.920015px;}
.y3_c00025{bottom:1087.207815px;}
.y2_c00025{bottom:1118.535015px;}
.y1_c00025{bottom:1194.120015px;}
.h2_c00025{height:59.475586px;}
.hd_c00025{height:62.419922px;}
.h3_c00025{height:67.130859px;}
.h5_c00025{height:67.147659px;}
.ha_c00025{height:67.159659px;}
.hb_c00025{height:67.163259px;}
.h8_c00025{height:67.183659px;}
.h9_c00025{height:68.835938px;}
.hc_c00025{height:71.964844px;}
.h4_c00025{height:73.216406px;}
.h6_c00025{height:77.141602px;}
.he_c00025{height:80.100000px;}
.h7_c00025{height:103.741425px;}
.h1_c00025{height:1263.000000px;}
.h0_c00025{height:1263.240015px;}
.w1_c00025{width:892.500000px;}
.w0_c00025{width:892.800000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:127.005000px;}
.x12_c00025{left:128.385000px;}
.xa_c00025{left:165.210000px;}
.x13_c00025{left:172.200000px;}
.x2_c00025{left:181.065000px;}
.xb_c00025{left:207.690000px;}
.x3_c00025{left:210.000000px;}
.x6_c00025{left:331.485000px;}
.x7_c00025{left:359.115000px;}
.xc_c00025{left:375.840000px;}
.xd_c00025{left:401.730000px;}
.x8_c00025{left:430.095000px;}
.x16_c00025{left:432.585000px;}
.x9_c00025{left:451.770000px;}
.x4_c00025{left:527.040000px;}
.x5_c00025{left:552.045000px;}
.x10_c00025{left:556.395000px;}
.x11_c00025{left:593.685000px;}
.x14_c00025{left:609.300000px;}
.xe_c00025{left:618.405000px;}
.x15_c00025{left:627.285000px;}
.xf_c00025{left:655.380000px;}
.x18_c00025{left:855.135000px;}
.x17_c00025{left:856.185000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls83_c00025{letter-spacing:-2.445333pt;}
.lsae_c00025{letter-spacing:-2.146667pt;}
.ls84_c00025{letter-spacing:-2.128000pt;}
.ls9b_c00025{letter-spacing:-2.053333pt;}
.lsb2_c00025{letter-spacing:-1.978667pt;}
.ls78_c00025{letter-spacing:-1.939520pt;}
.ls91_c00025{letter-spacing:-1.890880pt;}
.ls79_c00025{letter-spacing:-1.744960pt;}
.lsaa_c00025{letter-spacing:-1.513920pt;}
.ls99_c00025{letter-spacing:-1.459200pt;}
.ls86_c00025{letter-spacing:-1.453120pt;}
.ls88_c00025{letter-spacing:-1.252480pt;}
.lsab_c00025{letter-spacing:-1.203840pt;}
.ls9f_c00025{letter-spacing:-1.088320pt;}
.lsa9_c00025{letter-spacing:-1.064000pt;}
.ls8b_c00025{letter-spacing:-0.991040pt;}
.ls82_c00025{letter-spacing:-0.893760pt;}
.lsa7_c00025{letter-spacing:-0.778240pt;}
.ls94_c00025{letter-spacing:-0.772160pt;}
.ls8f_c00025{letter-spacing:-0.711360pt;}
.ls7b_c00025{letter-spacing:-0.608000pt;}
.lsa2_c00025{letter-spacing:-0.595840pt;}
.lsa5_c00025{letter-spacing:-0.565440pt;}
.ls9e_c00025{letter-spacing:-0.553280pt;}
.ls77_c00025{letter-spacing:-0.547200pt;}
.ls7a_c00025{letter-spacing:-0.468160pt;}
.ls98_c00025{letter-spacing:-0.456000pt;}
.ls8a_c00025{letter-spacing:-0.425600pt;}
.ls8e_c00025{letter-spacing:-0.407360pt;}
.lsa1_c00025{letter-spacing:-0.395200pt;}
.ls93_c00025{letter-spacing:-0.346560pt;}
.ls8d_c00025{letter-spacing:-0.334400pt;}
.ls92_c00025{letter-spacing:-0.310080pt;}
.ls7c_c00025{letter-spacing:-0.255360pt;}
.ls90_c00025{letter-spacing:-0.206720pt;}
.ls87_c00025{letter-spacing:-0.200640pt;}
.ls80_c00025{letter-spacing:-0.194560pt;}
.lsa0_c00025{letter-spacing:-0.188480pt;}
.lsa6_c00025{letter-spacing:-0.097280pt;}
.lsb0_c00025{letter-spacing:-0.091200pt;}
.lsac_c00025{letter-spacing:-0.072960pt;}
.lsa8_c00025{letter-spacing:-0.060800pt;}
.ls9d_c00025{letter-spacing:-0.054720pt;}
.ls95_c00025{letter-spacing:-0.030400pt;}
.ls7f_c00025{letter-spacing:-0.018240pt;}
.ls9c_c00025{letter-spacing:-0.012160pt;}
.ls81_c00025{letter-spacing:-0.006080pt;}
.ls75_c00025{letter-spacing:0.000000pt;}
.ls35_c00025{letter-spacing:0.012160pt;}
.ls69_c00025{letter-spacing:0.060800pt;}
.ls4f_c00025{letter-spacing:0.072960pt;}
.ls67_c00025{letter-spacing:0.079040pt;}
.ls18_c00025{letter-spacing:0.085120pt;}
.ls14_c00025{letter-spacing:0.091200pt;}
.ls7d_c00025{letter-spacing:0.097280pt;}
.ls66_c00025{letter-spacing:0.121600pt;}
.ls4a_c00025{letter-spacing:0.127680pt;}
.ls71_c00025{letter-spacing:0.133760pt;}
.ls68_c00025{letter-spacing:0.139840pt;}
.ls52_c00025{letter-spacing:0.145920pt;}
.ls4e_c00025{letter-spacing:0.158080pt;}
.ls58_c00025{letter-spacing:0.164160pt;}
.ls3e_c00025{letter-spacing:0.176320pt;}
.ls89_c00025{letter-spacing:0.182400pt;}
.ls2e_c00025{letter-spacing:0.194560pt;}
.ls5c_c00025{letter-spacing:0.200640pt;}
.ls8_c00025{letter-spacing:0.206720pt;}
.ls6f_c00025{letter-spacing:0.212800pt;}
.ls4_c00025{letter-spacing:0.224960pt;}
.ls4d_c00025{letter-spacing:0.237120pt;}
.ls38_c00025{letter-spacing:0.243200pt;}
.ls57_c00025{letter-spacing:0.249280pt;}
.ls49_c00025{letter-spacing:0.255360pt;}
.ls54_c00025{letter-spacing:0.267520pt;}
.lsd_c00025{letter-spacing:0.273600pt;}
.ls51_c00025{letter-spacing:0.279680pt;}
.ls12_c00025{letter-spacing:0.285760pt;}
.ls53_c00025{letter-spacing:0.304000pt;}
.ls1d_c00025{letter-spacing:0.310080pt;}
.ls29_c00025{letter-spacing:0.316160pt;}
.ls3a_c00025{letter-spacing:0.322240pt;}
.ls11_c00025{letter-spacing:0.340480pt;}
.ls6c_c00025{letter-spacing:0.346560pt;}
.ls5_c00025{letter-spacing:0.352640pt;}
.ls5e_c00025{letter-spacing:0.358720pt;}
.ls10_c00025{letter-spacing:0.364800pt;}
.ls4c_c00025{letter-spacing:0.370880pt;}
.ls96_c00025{letter-spacing:0.376960pt;}
.ls26_c00025{letter-spacing:0.389120pt;}
.ls61_c00025{letter-spacing:0.401280pt;}
.lsa3_c00025{letter-spacing:0.407360pt;}
.ls31_c00025{letter-spacing:0.413440pt;}
.lsa4_c00025{letter-spacing:0.419520pt;}
.ls3_c00025{letter-spacing:0.431680pt;}
.ls2b_c00025{letter-spacing:0.437760pt;}
.ls46_c00025{letter-spacing:0.449920pt;}
.ls1a_c00025{letter-spacing:0.456000pt;}
.ls64_c00025{letter-spacing:0.462080pt;}
.ls17_c00025{letter-spacing:0.468160pt;}
.ls21_c00025{letter-spacing:0.474240pt;}
.ls23_c00025{letter-spacing:0.480320pt;}
.ls34_c00025{letter-spacing:0.486400pt;}
.ls36_c00025{letter-spacing:0.498560pt;}
.ls6e_c00025{letter-spacing:0.504640pt;}
.ls5b_c00025{letter-spacing:0.510720pt;}
.lsc_c00025{letter-spacing:0.522880pt;}
.ls6d_c00025{letter-spacing:0.528960pt;}
.ls30_c00025{letter-spacing:0.535040pt;}
.ls2a_c00025{letter-spacing:0.541120pt;}
.lse_c00025{letter-spacing:0.547200pt;}
.ls42_c00025{letter-spacing:0.553280pt;}
.ls48_c00025{letter-spacing:0.559360pt;}
.ls97_c00025{letter-spacing:0.571520pt;}
.ls13_c00025{letter-spacing:0.583680pt;}
.ls6a_c00025{letter-spacing:0.589760pt;}
.ls32_c00025{letter-spacing:0.601920pt;}
.ls72_c00025{letter-spacing:0.614080pt;}
.ls4b_c00025{letter-spacing:0.626240pt;}
.ls3b_c00025{letter-spacing:0.644480pt;}
.ls27_c00025{letter-spacing:0.662720pt;}
.lsb_c00025{letter-spacing:0.668800pt;}
.ls5d_c00025{letter-spacing:0.674880pt;}
.ls9a_c00025{letter-spacing:0.693120pt;}
.lsaf_c00025{letter-spacing:0.711360pt;}
.ls50_c00025{letter-spacing:0.717440pt;}
.ls63_c00025{letter-spacing:0.723520pt;}
.lsad_c00025{letter-spacing:0.729600pt;}
.ls60_c00025{letter-spacing:0.735680pt;}
.ls1e_c00025{letter-spacing:0.741760pt;}
.ls47_c00025{letter-spacing:0.778240pt;}
.ls20_c00025{letter-spacing:0.784320pt;}
.ls70_c00025{letter-spacing:0.790400pt;}
.ls1_c00025{letter-spacing:0.808640pt;}
.ls2_c00025{letter-spacing:0.814720pt;}
.ls3f_c00025{letter-spacing:0.820800pt;}
.ls22_c00025{letter-spacing:0.839040pt;}
.ls1f_c00025{letter-spacing:0.857280pt;}
.ls16_c00025{letter-spacing:0.869440pt;}
.ls5a_c00025{letter-spacing:0.881600pt;}
.ls7_c00025{letter-spacing:0.887680pt;}
.ls39_c00025{letter-spacing:0.899840pt;}
.ls59_c00025{letter-spacing:0.905920pt;}
.ls74_c00025{letter-spacing:0.912000pt;}
.ls45_c00025{letter-spacing:0.936320pt;}
.ls2c_c00025{letter-spacing:0.942400pt;}
.ls28_c00025{letter-spacing:0.948480pt;}
.ls56_c00025{letter-spacing:0.960640pt;}
.ls1b_c00025{letter-spacing:1.009280pt;}
.ls33_c00025{letter-spacing:1.051840pt;}
.lsa_c00025{letter-spacing:1.118720pt;}
.ls5f_c00025{letter-spacing:1.124800pt;}
.ls62_c00025{letter-spacing:1.143040pt;}
.ls3c_c00025{letter-spacing:1.155200pt;}
.ls24_c00025{letter-spacing:1.185600pt;}
.ls3d_c00025{letter-spacing:1.240320pt;}
.lsf_c00025{letter-spacing:1.246400pt;}
.ls25_c00025{letter-spacing:1.288960pt;}
.ls37_c00025{letter-spacing:1.465280pt;}
.ls9_c00025{letter-spacing:1.544320pt;}
.ls2d_c00025{letter-spacing:1.550400pt;}
.ls6b_c00025{letter-spacing:1.586880pt;}
.ls85_c00025{letter-spacing:1.592960pt;}
.ls65_c00025{letter-spacing:1.611200pt;}
.ls1c_c00025{letter-spacing:1.787520pt;}
.ls15_c00025{letter-spacing:1.865760pt;}
.ls40_c00025{letter-spacing:1.890880pt;}
.ls76_c00025{letter-spacing:1.949973pt;}
.lsb1_c00025{letter-spacing:1.951680pt;}
.ls2f_c00025{letter-spacing:1.957760pt;}
.ls6_c00025{letter-spacing:1.988160pt;}
.ls8c_c00025{letter-spacing:2.018560pt;}
.ls41_c00025{letter-spacing:2.182720pt;}
.ls44_c00025{letter-spacing:2.231360pt;}
.ls0_c00025{letter-spacing:2.413227pt;}
.ls19_c00025{letter-spacing:2.480640pt;}
.ls73_c00025{letter-spacing:2.632640pt;}
.ls43_c00025{letter-spacing:2.748160pt;}
.ls55_c00025{letter-spacing:3.027840pt;}
.ls7e_c00025{letter-spacing:3.040000pt;}
.ws0_c00025{word-spacing:0.000000pt;}
._9_c00025{margin-left:-17.765760pt;}
._a_c00025{margin-left:-10.956587pt;}
._1b_c00025{margin-left:-7.606080pt;}
._2_c00025{margin-left:-6.608960pt;}
._6_c00025{margin-left:-5.508480pt;}
._15_c00025{margin-left:-4.462720pt;}
._0_c00025{margin-left:-3.540907pt;}
._1_c00025{margin-left:-1.872640pt;}
._12_c00025{margin-left:-0.940053pt;}
._5_c00025{width:1.301120pt;}
._b_c00025{width:2.250240pt;}
._3_c00025{width:3.872960pt;}
._4_c00025{width:4.809280pt;}
._7_c00025{width:6.529920pt;}
._d_c00025{width:7.922240pt;}
._8_c00025{width:9.159040pt;}
._f_c00025{width:10.944000pt;}
._c_c00025{width:11.843840pt;}
._e_c00025{width:12.737600pt;}
._11_c00025{width:14.215040pt;}
._10_c00025{width:16.488960pt;}
._14_c00025{width:18.258240pt;}
._13_c00025{width:19.705280pt;}
._16_c00025{width:22.179840pt;}
._18_c00025{width:24.016000pt;}
._17_c00025{width:25.189440pt;}
._19_c00025{width:26.861440pt;}
._1a_c00025{width:27.834240pt;}
.fs0_c00025{font-size:53.866667pt;}
.fs7_c00025{font-size:56.533333pt;}
.fs5_c00025{font-size:58.666667pt;}
.fs1_c00025{font-size:60.800000pt;}
.fs6_c00025{font-size:61.333333pt;}
.fs2_c00025{font-size:62.400000pt;}
.fs8_c00025{font-size:68.266667pt;}
.fs3_c00025{font-size:69.866667pt;}
.fs4_c00025{font-size:93.866667pt;}
.y0_c00025{bottom:0.000000pt;}
.y21_c00025{bottom:60.173347pt;}
.y20_c00025{bottom:131.516013pt;}
.y1f_c00025{bottom:186.889613pt;}
.y1e_c00025{bottom:215.040013pt;}
.y1d_c00025{bottom:215.046947pt;}
.y1c_c00025{bottom:242.893347pt;}
.y1b_c00025{bottom:270.406147pt;}
.y19_c00025{bottom:297.926947pt;}
.y1a_c00025{bottom:297.933347pt;}
.y18_c00025{bottom:325.766947pt;}
.y17_c00025{bottom:353.613347pt;}
.y16_c00025{bottom:409.590413pt;}
.y15_c00025{bottom:437.436813pt;}
.y14_c00025{bottom:465.602413pt;}
.y13_c00025{bottom:493.448813pt;}
.y12_c00025{bottom:521.273613pt;}
.y23_c00025{bottom:546.893347pt;}
.y11_c00025{bottom:549.120013pt;}
.y22_c00025{bottom:550.080013pt;}
.y10_c00025{bottom:576.641613pt;}
.yf_c00025{bottom:604.153613pt;}
.ye_c00025{bottom:631.977613pt;}
.yd_c00025{bottom:687.016813pt;}
.yc_c00025{bottom:715.182413pt;}
.yb_c00025{bottom:743.028813pt;}
.ya_c00025{bottom:771.513613pt;}
.y9_c00025{bottom:799.360013pt;}
.y8_c00025{bottom:827.200547pt;}
.y7_c00025{bottom:855.046947pt;}
.y5_c00025{bottom:882.889613pt;}
.y6_c00025{bottom:882.893347pt;}
.y4_c00025{bottom:911.040013pt;}
.y3_c00025{bottom:966.406947pt;}
.y2_c00025{bottom:994.253347pt;}
.y1_c00025{bottom:1061.440013pt;}
.h2_c00025{height:52.867187pt;}
.hd_c00025{height:55.484375pt;}
.h3_c00025{height:59.671875pt;}
.h5_c00025{height:59.686808pt;}
.ha_c00025{height:59.697475pt;}
.hb_c00025{height:59.700675pt;}
.h8_c00025{height:59.718808pt;}
.h9_c00025{height:61.187500pt;}
.hc_c00025{height:63.968750pt;}
.h4_c00025{height:65.081250pt;}
.h6_c00025{height:68.570312pt;}
.he_c00025{height:71.200000pt;}
.h7_c00025{height:92.214600pt;}
.h1_c00025{height:1122.666667pt;}
.h0_c00025{height:1122.880013pt;}
.w1_c00025{width:793.333333pt;}
.w0_c00025{width:793.600000pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:112.893333pt;}
.x12_c00025{left:114.120000pt;}
.xa_c00025{left:146.853333pt;}
.x13_c00025{left:153.066667pt;}
.x2_c00025{left:160.946667pt;}
.xb_c00025{left:184.613333pt;}
.x3_c00025{left:186.666667pt;}
.x6_c00025{left:294.653333pt;}
.x7_c00025{left:319.213333pt;}
.xc_c00025{left:334.080000pt;}
.xd_c00025{left:357.093333pt;}
.x8_c00025{left:382.306667pt;}
.x16_c00025{left:384.520000pt;}
.x9_c00025{left:401.573333pt;}
.x4_c00025{left:468.480000pt;}
.x5_c00025{left:490.706667pt;}
.x10_c00025{left:494.573333pt;}
.x11_c00025{left:527.720000pt;}
.x14_c00025{left:541.600000pt;}
.xe_c00025{left:549.693333pt;}
.x15_c00025{left:557.586667pt;}
.xf_c00025{left:582.560000pt;}
.x18_c00025{left:760.120000pt;}
.x17_c00025{left:761.053333pt;}
}





/* 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_c00026 {
    display:none;
  }
  .loading-indicator_c00026.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00026 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_c00026 { 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_c00026" -> "#page-container .classname_c00026")
 */
.pf_c00026 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00026 { /* 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_c00026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00026 { /* 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_c00026 { /* 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_c00026 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00026 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00026 {overflow:visible;}
  }
}
.c_c00026 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00026 { /* 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_c00026:after { /* webkit #35443 */
  content: '';
}
.t_c00026:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00026 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 */
}
.__c00026 { /* 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_c00026 { /* info for Javascript */
  display:none;
}
.l_c00026 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00026 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00026 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00026: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_c00026 {
    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_c00026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00026.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_c00026 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00026;src:url('chunks/assets/font_0ef116f977d0b1b8bd5ba9c9.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.311035;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_c00026;src:url('chunks/assets/font_2c109ff491c5c44b16a6236d.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.284668;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_c00026;src:url('chunks/assets/font_e98a1c97700e396e5d33d48d.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.284180;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_c00026;src:url('chunks/assets/font_5325ed85670abf920dfe9db9.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;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:ff5_c00026;src:url('chunks/assets/font_cdfb2f693ca09ee11d465cdf.woff2')format("woff");}.ff5_c00026{font-family:ff5_c00026;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:ff6_c00026;src:url('chunks/assets/font_3ca26bb1545f7a9f78e2b22d.woff2')format("woff");}.ff6_c00026{font-family:ff6_c00026;line-height:0.666000;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;}
.m1b_c00026{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00026{transform:matrix(0.136848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136848,0.000000,0.000000,0.250000,0,0);}
.m8_c00026{transform:matrix(0.199927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199927,0.000000,0.000000,0.250000,0,0);}
.m6_c00026{transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);}
.m19_c00026{transform:matrix(0.241720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241720,0.000000,0.000000,0.250000,0,0);}
.mb_c00026{transform:matrix(0.242143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242143,0.000000,0.000000,0.250000,0,0);}
.m2_c00026{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m0_c00026{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);}
.m11_c00026{transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);}
.md_c00026{transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);}
.m18_c00026{transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);}
.ma_c00026{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.m4_c00026{transform:matrix(0.251148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251148,0.000000,0.000000,0.250000,0,0);}
.m15_c00026{transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);}
.m5_c00026{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m16_c00026{transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);}
.m10_c00026{transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);}
.m14_c00026{transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);}
.m13_c00026{transform:matrix(0.254623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254623,0.000000,0.000000,0.250000,0,0);}
.m9_c00026{transform:matrix(0.255074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255074,0.000000,0.000000,0.250000,0,0);}
.m7_c00026{transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);}
.me_c00026{transform:matrix(0.256148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256148,0.000000,0.000000,0.250000,0,0);}
.m12_c00026{transform:matrix(0.256641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256641,0.000000,0.000000,0.250000,0,0);}
.mc_c00026{transform:matrix(0.257807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257807,0.000000,0.000000,0.250000,0,0);}
.mf_c00026{transform:matrix(0.259657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259657,0.000000,0.000000,0.250000,0,0);}
.m17_c00026{transform:matrix(0.264302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264302,0.000000,0.000000,0.250000,0,0);}
.m3_c00026{transform:matrix(0.275048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275048,0.000000,0.000000,0.250000,0,0);}
.m1c_c00026{transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);}
.m1_c00026{transform:matrix(0.294974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294974,0.000000,0.000000,0.250000,0,0);}
.v1_c00026{vertical-align:-8.640000px;}
.v0_c00026{vertical-align:0.000000px;}
.v2_c00026{vertical-align:8.665200px;}
.ls57_c00026{letter-spacing:-2.499000px;}
.ls5f_c00026{letter-spacing:-2.457000px;}
.ls6c_c00026{letter-spacing:-2.310000px;}
.ls80_c00026{letter-spacing:-2.100000px;}
.ls68_c00026{letter-spacing:-1.762020px;}
.ls7c_c00026{letter-spacing:-1.742400px;}
.ls67_c00026{letter-spacing:-1.490400px;}
.ls77_c00026{letter-spacing:-1.313400px;}
.ls81_c00026{letter-spacing:-0.966000px;}
.ls64_c00026{letter-spacing:-0.963600px;}
.ls6b_c00026{letter-spacing:-0.524400px;}
.ls54_c00026{letter-spacing:-0.371280px;}
.ls5a_c00026{letter-spacing:-0.330000px;}
.ls69_c00026{letter-spacing:-0.322920px;}
.ls52_c00026{letter-spacing:0.000000px;}
.ls76_c00026{letter-spacing:0.033000px;}
.ls1f_c00026{letter-spacing:0.034500px;}
.ls5e_c00026{letter-spacing:0.046200px;}
.ls2e_c00026{letter-spacing:0.213900px;}
.ls27_c00026{letter-spacing:0.358800px;}
.lsd_c00026{letter-spacing:0.422400px;}
.ls1e_c00026{letter-spacing:0.600300px;}
.ls9_c00026{letter-spacing:0.627000px;}
.ls34_c00026{letter-spacing:0.706200px;}
.ls58_c00026{letter-spacing:0.814200px;}
.ls7f_c00026{letter-spacing:0.844800px;}
.ls63_c00026{letter-spacing:0.876300px;}
.ls11_c00026{letter-spacing:0.897600px;}
.ls33_c00026{letter-spacing:0.904200px;}
.ls2c_c00026{letter-spacing:1.007400px;}
.ls66_c00026{letter-spacing:1.009800px;}
.ls60_c00026{letter-spacing:1.023000px;}
.ls82_c00026{letter-spacing:1.050030px;}
.ls4d_c00026{letter-spacing:1.108800px;}
.ls6a_c00026{letter-spacing:1.168200px;}
.ls44_c00026{letter-spacing:1.221000px;}
.ls61_c00026{letter-spacing:1.290300px;}
.ls49_c00026{letter-spacing:1.306800px;}
.ls2f_c00026{letter-spacing:1.326600px;}
.ls3_c00026{letter-spacing:1.366200px;}
.ls5_c00026{letter-spacing:1.405800px;}
.ls2b_c00026{letter-spacing:1.425600px;}
.ls48_c00026{letter-spacing:1.445400px;}
.ls1a_c00026{letter-spacing:1.452000px;}
.ls78_c00026{letter-spacing:1.458600px;}
.ls2d_c00026{letter-spacing:1.476600px;}
.ls38_c00026{letter-spacing:1.478400px;}
.ls3c_c00026{letter-spacing:1.485000px;}
.ls20_c00026{letter-spacing:1.491600px;}
.ls8_c00026{letter-spacing:1.498200px;}
.ls3d_c00026{letter-spacing:1.518000px;}
.lse_c00026{letter-spacing:1.537800px;}
.ls3e_c00026{letter-spacing:1.551000px;}
.ls2a_c00026{letter-spacing:1.564200px;}
.ls19_c00026{letter-spacing:1.584000px;}
.ls47_c00026{letter-spacing:1.590600px;}
.ls1_c00026{letter-spacing:1.597200px;}
.ls4b_c00026{letter-spacing:1.617000px;}
.ls62_c00026{letter-spacing:1.630200px;}
.ls15_c00026{letter-spacing:1.650000px;}
.ls30_c00026{letter-spacing:1.656600px;}
.lsb_c00026{letter-spacing:1.669800px;}
.ls37_c00026{letter-spacing:1.689600px;}
.ls53_c00026{letter-spacing:1.693620px;}
.ls4_c00026{letter-spacing:1.716000px;}
.ls59_c00026{letter-spacing:1.722600px;}
.ls4e_c00026{letter-spacing:1.729200px;}
.ls39_c00026{letter-spacing:1.749000px;}
.ls65_c00026{letter-spacing:1.755600px;}
.ls75_c00026{letter-spacing:1.775400px;}
.ls4c_c00026{letter-spacing:1.788600px;}
.ls5b_c00026{letter-spacing:1.795200px;}
.ls6e_c00026{letter-spacing:1.808400px;}
.ls25_c00026{letter-spacing:1.815000px;}
.ls6d_c00026{letter-spacing:1.821600px;}
.ls4a_c00026{letter-spacing:1.828200px;}
.ls24_c00026{letter-spacing:1.834800px;}
.ls23_c00026{letter-spacing:1.841400px;}
.ls7d_c00026{letter-spacing:1.867800px;}
.ls72_c00026{letter-spacing:1.874400px;}
.ls3b_c00026{letter-spacing:1.900800px;}
.ls0_c00026{letter-spacing:1.920600px;}
.ls1c_c00026{letter-spacing:1.927200px;}
.ls22_c00026{letter-spacing:1.933800px;}
.ls74_c00026{letter-spacing:1.940400px;}
.ls45_c00026{letter-spacing:1.966800px;}
.ls42_c00026{letter-spacing:2.006400px;}
.ls5d_c00026{letter-spacing:2.014800px;}
.ls13_c00026{letter-spacing:2.035800px;}
.ls16_c00026{letter-spacing:2.046000px;}
.ls71_c00026{letter-spacing:2.052600px;}
.ls7e_c00026{letter-spacing:2.085600px;}
.ls79_c00026{letter-spacing:2.125200px;}
.ls70_c00026{letter-spacing:2.138400px;}
.ls3a_c00026{letter-spacing:2.171400px;}
.ls32_c00026{letter-spacing:2.204400px;}
.ls7b_c00026{letter-spacing:2.211000px;}
.ls10_c00026{letter-spacing:2.224200px;}
.ls56_c00026{letter-spacing:2.244000px;}
.ls46_c00026{letter-spacing:2.257200px;}
.ls7a_c00026{letter-spacing:2.263800px;}
.ls21_c00026{letter-spacing:2.277000px;}
.ls31_c00026{letter-spacing:2.290200px;}
.ls41_c00026{letter-spacing:2.296800px;}
.ls12_c00026{letter-spacing:2.329800px;}
.ls4f_c00026{letter-spacing:2.343000px;}
.ls2_c00026{letter-spacing:2.369400px;}
.ls36_c00026{letter-spacing:2.382600px;}
.ls3f_c00026{letter-spacing:2.395800px;}
.ls43_c00026{letter-spacing:2.415600px;}
.ls17_c00026{letter-spacing:2.442000px;}
.ls1d_c00026{letter-spacing:2.448600px;}
.ls40_c00026{letter-spacing:2.547600px;}
.lsa_c00026{letter-spacing:2.560800px;}
.lsf_c00026{letter-spacing:2.633400px;}
.ls14_c00026{letter-spacing:2.653200px;}
.ls73_c00026{letter-spacing:2.666400px;}
.ls50_c00026{letter-spacing:2.699400px;}
.ls51_c00026{letter-spacing:2.706000px;}
.ls18_c00026{letter-spacing:2.778600px;}
.ls7_c00026{letter-spacing:2.798400px;}
.ls26_c00026{letter-spacing:2.910600px;}
.ls1b_c00026{letter-spacing:2.917200px;}
.ls29_c00026{letter-spacing:2.930400px;}
.ls35_c00026{letter-spacing:2.937000px;}
.ls28_c00026{letter-spacing:3.153300px;}
.ls6_c00026{letter-spacing:3.154800px;}
.lsc_c00026{letter-spacing:3.181200px;}
.ls6f_c00026{letter-spacing:3.234000px;}
.ls5c_c00026{letter-spacing:3.300000px;}
.ls55_c00026{letter-spacing:3.450000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{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__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00026{word-spacing:-19.348800px;}
.ws1_c00026{word-spacing:0.000000px;}
._15_c00026{margin-left:-13.435800px;}
._7_c00026{margin-left:-7.735200px;}
._5_c00026{margin-left:-5.649600px;}
._4_c00026{margin-left:-4.012800px;}
._0_c00026{margin-left:-2.706000px;}
._3_c00026{margin-left:-1.617000px;}
._6_c00026{width:1.122000px;}
._1_c00026{width:2.804040px;}
._2_c00026{width:4.818000px;}
._d_c00026{width:5.954400px;}
._c_c00026{width:7.665600px;}
._a_c00026{width:9.279600px;}
._b_c00026{width:10.533600px;}
._8_c00026{width:12.054300px;}
._16_c00026{width:13.553400px;}
._9_c00026{width:14.757600px;}
._f_c00026{width:16.001460px;}
._10_c00026{width:20.083800px;}
._e_c00026{width:22.068000px;}
._12_c00026{width:23.760000px;}
._13_c00026{width:25.528800px;}
._14_c00026{width:26.875200px;}
._11_c00026{width:28.182000px;}
.fc0_c00026{color:transparent;}
.fsf_c00026{font-size:19.800600px;}
.fse_c00026{font-size:21.000600px;}
.fsc_c00026{font-size:27.600000px;}
.fsd_c00026{font-size:37.440000px;}
.fs7_c00026{font-size:52.200000px;}
.fs3_c00026{font-size:55.800000px;}
.fs0_c00026{font-size:58.200000px;}
.fsa_c00026{font-size:60.000000px;}
.fs1_c00026{font-size:66.000000px;}
.fs8_c00026{font-size:67.800000px;}
.fs4_c00026{font-size:69.000000px;}
.fs6_c00026{font-size:69.600000px;}
.fs5_c00026{font-size:70.200000px;}
.fs2_c00026{font-size:71.400000px;}
.fs9_c00026{font-size:72.000000px;}
.fsb_c00026{font-size:76.800000px;}
.y0_c00026{bottom:0.000000px;}
.y20_c00026{bottom:53.280015px;}
.y1e_c00026{bottom:163.435515px;}
.y1f_c00026{bottom:163.440015px;}
.y1d_c00026{bottom:195.501015px;}
.y1c_c00026{bottom:226.455015px;}
.y1b_c00026{bottom:226.458015px;}
.y1a_c00026{bottom:257.775015px;}
.y19_c00026{bottom:289.455015px;}
.y18_c00026{bottom:289.458015px;}
.y17_c00026{bottom:320.775015px;}
.y16_c00026{bottom:352.455015px;}
.y15_c00026{bottom:384.135015px;}
.y14_c00026{bottom:446.760015px;}
.y13_c00026{bottom:446.766015px;}
.y12_c00026{bottom:509.400015px;}
.y26_c00026{bottom:527.400015px;}
.y25_c00026{bottom:533.175015px;}
.y24_c00026{bottom:539.655015px;}
.y23_c00026{bottom:550.815015px;}
.y11_c00026{bottom:571.683015px;}
.y10_c00026{bottom:603.000015px;}
.y22_c00026{bottom:615.600015px;}
.y21_c00026{bottom:619.215015px;}
.yf_c00026{bottom:665.655015px;}
.ye_c00026{bottom:665.658015px;}
.yd_c00026{bottom:696.975015px;}
.yc_c00026{bottom:759.600015px;}
.yb_c00026{bottom:822.960015px;}
.ya_c00026{bottom:855.015015px;}
.y9_c00026{bottom:886.335015px;}
.y8_c00026{bottom:918.015015px;}
.y7_c00026{bottom:948.960015px;}
.y6_c00026{bottom:948.963015px;}
.y5_c00026{bottom:980.280015px;}
.y3_c00026{bottom:1041.480015px;}
.y4_c00026{bottom:1050.120015px;}
.y2_c00026{bottom:1105.215015px;}
.y1_c00026{bottom:1181.175015px;}
.h10_c00026{height:19.433206px;}
.hf_c00026{height:21.902970px;}
.he_c00026{height:24.935040px;}
.hd_c00026{height:28.785937px;}
.h2_c00026{height:58.654687px;}
.ha_c00026{height:58.886719px;}
.h3_c00026{height:64.775391px;}
.h5_c00026{height:67.686035px;}
.hc_c00026{height:68.835938px;}
.h4_c00026{height:70.040332px;}
.h9_c00026{height:70.640062px;}
.h8_c00026{height:70.713281px;}
.h7_c00026{height:72.590625px;}
.h6_c00026{height:73.216406px;}
.hb_c00026{height:80.100000px;}
.h1_c00026{height:1263.000000px;}
.h0_c00026{height:1263.240015px;}
.w1_c00026{width:892.500000px;}
.w0_c00026{width:892.800000px;}
.x0_c00026{left:0.000000px;}
.x1d_c00026{left:117.330000px;}
.x16_c00026{left:118.410000px;}
.xf_c00026{left:120.165000px;}
.xc_c00026{left:121.170000px;}
.x1_c00026{left:123.045000px;}
.x12_c00026{left:139.650000px;}
.x10_c00026{left:151.125000px;}
.x13_c00026{left:154.365000px;}
.x24_c00026{left:157.245000px;}
.x33_c00026{left:170.835000px;}
.x26_c00026{left:171.990000px;}
.x15_c00026{left:174.525000px;}
.x11_c00026{left:192.075000px;}
.x14_c00026{left:195.315000px;}
.x27_c00026{left:203.370000px;}
.x34_c00026{left:216.690000px;}
.x35_c00026{left:229.515000px;}
.x19_c00026{left:238.155000px;}
.x2b_c00026{left:242.670000px;}
.x36_c00026{left:259.170000px;}
.x25_c00026{left:266.100000px;}
.x1a_c00026{left:267.675000px;}
.x2c_c00026{left:272.700000px;}
.x31_c00026{left:281.190000px;}
.x32_c00026{left:309.225000px;}
.x17_c00026{left:313.080000px;}
.x2_c00026{left:317.745000px;}
.x18_c00026{left:334.335000px;}
.x1e_c00026{left:385.110000px;}
.x3_c00026{left:387.675000px;}
.x1f_c00026{left:406.290000px;}
.x4_c00026{left:415.335000px;}
.x37_c00026{left:425.385000px;}
.x28_c00026{left:437.595000px;}
.x5_c00026{left:445.590000px;}
.x2f_c00026{left:454.860000px;}
.x29_c00026{left:467.820000px;}
.x6_c00026{left:471.165000px;}
.x7_c00026{left:476.100000px;}
.xd_c00026{left:478.620000px;}
.xe_c00026{left:499.545000px;}
.x8_c00026{left:509.040000px;}
.x30_c00026{left:515.085000px;}
.x9_c00026{left:543.825000px;}
.x20_c00026{left:548.460000px;}
.x21_c00026{left:570.390000px;}
.xa_c00026{left:578.790000px;}
.xb_c00026{left:604.365000px;}
.x22_c00026{left:643.515000px;}
.x2d_c00026{left:677.520000px;}
.x2a_c00026{left:678.720000px;}
.x23_c00026{left:681.330000px;}
.x1b_c00026{left:685.275000px;}
.x2e_c00026{left:709.530000px;}
.x1c_c00026{left:718.755000px;}
.x39_c00026{left:850.095000px;}
.x38_c00026{left:851.145000px;}
@media print{
.v1_c00026{vertical-align:-7.680000pt;}
.v0_c00026{vertical-align:0.000000pt;}
.v2_c00026{vertical-align:7.702400pt;}
.ls57_c00026{letter-spacing:-2.221333pt;}
.ls5f_c00026{letter-spacing:-2.184000pt;}
.ls6c_c00026{letter-spacing:-2.053333pt;}
.ls80_c00026{letter-spacing:-1.866667pt;}
.ls68_c00026{letter-spacing:-1.566240pt;}
.ls7c_c00026{letter-spacing:-1.548800pt;}
.ls67_c00026{letter-spacing:-1.324800pt;}
.ls77_c00026{letter-spacing:-1.167467pt;}
.ls81_c00026{letter-spacing:-0.858667pt;}
.ls64_c00026{letter-spacing:-0.856533pt;}
.ls6b_c00026{letter-spacing:-0.466133pt;}
.ls54_c00026{letter-spacing:-0.330027pt;}
.ls5a_c00026{letter-spacing:-0.293333pt;}
.ls69_c00026{letter-spacing:-0.287040pt;}
.ls52_c00026{letter-spacing:0.000000pt;}
.ls76_c00026{letter-spacing:0.029333pt;}
.ls1f_c00026{letter-spacing:0.030667pt;}
.ls5e_c00026{letter-spacing:0.041067pt;}
.ls2e_c00026{letter-spacing:0.190133pt;}
.ls27_c00026{letter-spacing:0.318933pt;}
.lsd_c00026{letter-spacing:0.375467pt;}
.ls1e_c00026{letter-spacing:0.533600pt;}
.ls9_c00026{letter-spacing:0.557333pt;}
.ls34_c00026{letter-spacing:0.627733pt;}
.ls58_c00026{letter-spacing:0.723733pt;}
.ls7f_c00026{letter-spacing:0.750933pt;}
.ls63_c00026{letter-spacing:0.778933pt;}
.ls11_c00026{letter-spacing:0.797867pt;}
.ls33_c00026{letter-spacing:0.803733pt;}
.ls2c_c00026{letter-spacing:0.895467pt;}
.ls66_c00026{letter-spacing:0.897600pt;}
.ls60_c00026{letter-spacing:0.909333pt;}
.ls82_c00026{letter-spacing:0.933360pt;}
.ls4d_c00026{letter-spacing:0.985600pt;}
.ls6a_c00026{letter-spacing:1.038400pt;}
.ls44_c00026{letter-spacing:1.085333pt;}
.ls61_c00026{letter-spacing:1.146933pt;}
.ls49_c00026{letter-spacing:1.161600pt;}
.ls2f_c00026{letter-spacing:1.179200pt;}
.ls3_c00026{letter-spacing:1.214400pt;}
.ls5_c00026{letter-spacing:1.249600pt;}
.ls2b_c00026{letter-spacing:1.267200pt;}
.ls48_c00026{letter-spacing:1.284800pt;}
.ls1a_c00026{letter-spacing:1.290667pt;}
.ls78_c00026{letter-spacing:1.296533pt;}
.ls2d_c00026{letter-spacing:1.312533pt;}
.ls38_c00026{letter-spacing:1.314133pt;}
.ls3c_c00026{letter-spacing:1.320000pt;}
.ls20_c00026{letter-spacing:1.325867pt;}
.ls8_c00026{letter-spacing:1.331733pt;}
.ls3d_c00026{letter-spacing:1.349333pt;}
.lse_c00026{letter-spacing:1.366933pt;}
.ls3e_c00026{letter-spacing:1.378667pt;}
.ls2a_c00026{letter-spacing:1.390400pt;}
.ls19_c00026{letter-spacing:1.408000pt;}
.ls47_c00026{letter-spacing:1.413867pt;}
.ls1_c00026{letter-spacing:1.419733pt;}
.ls4b_c00026{letter-spacing:1.437333pt;}
.ls62_c00026{letter-spacing:1.449067pt;}
.ls15_c00026{letter-spacing:1.466667pt;}
.ls30_c00026{letter-spacing:1.472533pt;}
.lsb_c00026{letter-spacing:1.484267pt;}
.ls37_c00026{letter-spacing:1.501867pt;}
.ls53_c00026{letter-spacing:1.505440pt;}
.ls4_c00026{letter-spacing:1.525333pt;}
.ls59_c00026{letter-spacing:1.531200pt;}
.ls4e_c00026{letter-spacing:1.537067pt;}
.ls39_c00026{letter-spacing:1.554667pt;}
.ls65_c00026{letter-spacing:1.560533pt;}
.ls75_c00026{letter-spacing:1.578133pt;}
.ls4c_c00026{letter-spacing:1.589867pt;}
.ls5b_c00026{letter-spacing:1.595733pt;}
.ls6e_c00026{letter-spacing:1.607467pt;}
.ls25_c00026{letter-spacing:1.613333pt;}
.ls6d_c00026{letter-spacing:1.619200pt;}
.ls4a_c00026{letter-spacing:1.625067pt;}
.ls24_c00026{letter-spacing:1.630933pt;}
.ls23_c00026{letter-spacing:1.636800pt;}
.ls7d_c00026{letter-spacing:1.660267pt;}
.ls72_c00026{letter-spacing:1.666133pt;}
.ls3b_c00026{letter-spacing:1.689600pt;}
.ls0_c00026{letter-spacing:1.707200pt;}
.ls1c_c00026{letter-spacing:1.713067pt;}
.ls22_c00026{letter-spacing:1.718933pt;}
.ls74_c00026{letter-spacing:1.724800pt;}
.ls45_c00026{letter-spacing:1.748267pt;}
.ls42_c00026{letter-spacing:1.783467pt;}
.ls5d_c00026{letter-spacing:1.790933pt;}
.ls13_c00026{letter-spacing:1.809600pt;}
.ls16_c00026{letter-spacing:1.818667pt;}
.ls71_c00026{letter-spacing:1.824533pt;}
.ls7e_c00026{letter-spacing:1.853867pt;}
.ls79_c00026{letter-spacing:1.889067pt;}
.ls70_c00026{letter-spacing:1.900800pt;}
.ls3a_c00026{letter-spacing:1.930133pt;}
.ls32_c00026{letter-spacing:1.959467pt;}
.ls7b_c00026{letter-spacing:1.965333pt;}
.ls10_c00026{letter-spacing:1.977067pt;}
.ls56_c00026{letter-spacing:1.994667pt;}
.ls46_c00026{letter-spacing:2.006400pt;}
.ls7a_c00026{letter-spacing:2.012267pt;}
.ls21_c00026{letter-spacing:2.024000pt;}
.ls31_c00026{letter-spacing:2.035733pt;}
.ls41_c00026{letter-spacing:2.041600pt;}
.ls12_c00026{letter-spacing:2.070933pt;}
.ls4f_c00026{letter-spacing:2.082667pt;}
.ls2_c00026{letter-spacing:2.106133pt;}
.ls36_c00026{letter-spacing:2.117867pt;}
.ls3f_c00026{letter-spacing:2.129600pt;}
.ls43_c00026{letter-spacing:2.147200pt;}
.ls17_c00026{letter-spacing:2.170667pt;}
.ls1d_c00026{letter-spacing:2.176533pt;}
.ls40_c00026{letter-spacing:2.264533pt;}
.lsa_c00026{letter-spacing:2.276267pt;}
.lsf_c00026{letter-spacing:2.340800pt;}
.ls14_c00026{letter-spacing:2.358400pt;}
.ls73_c00026{letter-spacing:2.370133pt;}
.ls50_c00026{letter-spacing:2.399467pt;}
.ls51_c00026{letter-spacing:2.405333pt;}
.ls18_c00026{letter-spacing:2.469867pt;}
.ls7_c00026{letter-spacing:2.487467pt;}
.ls26_c00026{letter-spacing:2.587200pt;}
.ls1b_c00026{letter-spacing:2.593067pt;}
.ls29_c00026{letter-spacing:2.604800pt;}
.ls35_c00026{letter-spacing:2.610667pt;}
.ls28_c00026{letter-spacing:2.802933pt;}
.ls6_c00026{letter-spacing:2.804267pt;}
.lsc_c00026{letter-spacing:2.827733pt;}
.ls6f_c00026{letter-spacing:2.874667pt;}
.ls5c_c00026{letter-spacing:2.933333pt;}
.ls55_c00026{letter-spacing:3.066667pt;}
.ws0_c00026{word-spacing:-17.198933pt;}
.ws1_c00026{word-spacing:0.000000pt;}
._15_c00026{margin-left:-11.942933pt;}
._7_c00026{margin-left:-6.875733pt;}
._5_c00026{margin-left:-5.021867pt;}
._4_c00026{margin-left:-3.566933pt;}
._0_c00026{margin-left:-2.405333pt;}
._3_c00026{margin-left:-1.437333pt;}
._6_c00026{width:0.997333pt;}
._1_c00026{width:2.492480pt;}
._2_c00026{width:4.282667pt;}
._d_c00026{width:5.292800pt;}
._c_c00026{width:6.813867pt;}
._a_c00026{width:8.248533pt;}
._b_c00026{width:9.363200pt;}
._8_c00026{width:10.714933pt;}
._16_c00026{width:12.047467pt;}
._9_c00026{width:13.117867pt;}
._f_c00026{width:14.223520pt;}
._10_c00026{width:17.852267pt;}
._e_c00026{width:19.616000pt;}
._12_c00026{width:21.120000pt;}
._13_c00026{width:22.692267pt;}
._14_c00026{width:23.889067pt;}
._11_c00026{width:25.050667pt;}
.fsf_c00026{font-size:17.600533pt;}
.fse_c00026{font-size:18.667200pt;}
.fsc_c00026{font-size:24.533333pt;}
.fsd_c00026{font-size:33.280000pt;}
.fs7_c00026{font-size:46.400000pt;}
.fs3_c00026{font-size:49.600000pt;}
.fs0_c00026{font-size:51.733333pt;}
.fsa_c00026{font-size:53.333333pt;}
.fs1_c00026{font-size:58.666667pt;}
.fs8_c00026{font-size:60.266667pt;}
.fs4_c00026{font-size:61.333333pt;}
.fs6_c00026{font-size:61.866667pt;}
.fs5_c00026{font-size:62.400000pt;}
.fs2_c00026{font-size:63.466667pt;}
.fs9_c00026{font-size:64.000000pt;}
.fsb_c00026{font-size:68.266667pt;}
.y0_c00026{bottom:0.000000pt;}
.y20_c00026{bottom:47.360013pt;}
.y1e_c00026{bottom:145.276013pt;}
.y1f_c00026{bottom:145.280013pt;}
.y1d_c00026{bottom:173.778680pt;}
.y1c_c00026{bottom:201.293347pt;}
.y1b_c00026{bottom:201.296013pt;}
.y1a_c00026{bottom:229.133347pt;}
.y19_c00026{bottom:257.293347pt;}
.y18_c00026{bottom:257.296013pt;}
.y17_c00026{bottom:285.133347pt;}
.y16_c00026{bottom:313.293347pt;}
.y15_c00026{bottom:341.453347pt;}
.y14_c00026{bottom:397.120013pt;}
.y13_c00026{bottom:397.125347pt;}
.y12_c00026{bottom:452.800013pt;}
.y26_c00026{bottom:468.800013pt;}
.y25_c00026{bottom:473.933347pt;}
.y24_c00026{bottom:479.693347pt;}
.y23_c00026{bottom:489.613347pt;}
.y11_c00026{bottom:508.162680pt;}
.y10_c00026{bottom:536.000013pt;}
.y22_c00026{bottom:547.200013pt;}
.y21_c00026{bottom:550.413347pt;}
.yf_c00026{bottom:591.693347pt;}
.ye_c00026{bottom:591.696013pt;}
.yd_c00026{bottom:619.533347pt;}
.yc_c00026{bottom:675.200013pt;}
.yb_c00026{bottom:731.520013pt;}
.ya_c00026{bottom:760.013347pt;}
.y9_c00026{bottom:787.853347pt;}
.y8_c00026{bottom:816.013347pt;}
.y7_c00026{bottom:843.520013pt;}
.y6_c00026{bottom:843.522680pt;}
.y5_c00026{bottom:871.360013pt;}
.y3_c00026{bottom:925.760013pt;}
.y4_c00026{bottom:933.440013pt;}
.y2_c00026{bottom:982.413347pt;}
.y1_c00026{bottom:1049.933347pt;}
.h10_c00026{height:17.273961pt;}
.hf_c00026{height:19.469306pt;}
.he_c00026{height:22.164480pt;}
.hd_c00026{height:25.587500pt;}
.h2_c00026{height:52.137500pt;}
.ha_c00026{height:52.343750pt;}
.h3_c00026{height:57.578125pt;}
.h5_c00026{height:60.165365pt;}
.hc_c00026{height:61.187500pt;}
.h4_c00026{height:62.258073pt;}
.h9_c00026{height:62.791167pt;}
.h8_c00026{height:62.856250pt;}
.h7_c00026{height:64.525000pt;}
.h6_c00026{height:65.081250pt;}
.hb_c00026{height:71.200000pt;}
.h1_c00026{height:1122.666667pt;}
.h0_c00026{height:1122.880013pt;}
.w1_c00026{width:793.333333pt;}
.w0_c00026{width:793.600000pt;}
.x0_c00026{left:0.000000pt;}
.x1d_c00026{left:104.293333pt;}
.x16_c00026{left:105.253333pt;}
.xf_c00026{left:106.813333pt;}
.xc_c00026{left:107.706667pt;}
.x1_c00026{left:109.373333pt;}
.x12_c00026{left:124.133333pt;}
.x10_c00026{left:134.333333pt;}
.x13_c00026{left:137.213333pt;}
.x24_c00026{left:139.773333pt;}
.x33_c00026{left:151.853333pt;}
.x26_c00026{left:152.880000pt;}
.x15_c00026{left:155.133333pt;}
.x11_c00026{left:170.733333pt;}
.x14_c00026{left:173.613333pt;}
.x27_c00026{left:180.773333pt;}
.x34_c00026{left:192.613333pt;}
.x35_c00026{left:204.013333pt;}
.x19_c00026{left:211.693333pt;}
.x2b_c00026{left:215.706667pt;}
.x36_c00026{left:230.373333pt;}
.x25_c00026{left:236.533333pt;}
.x1a_c00026{left:237.933333pt;}
.x2c_c00026{left:242.400000pt;}
.x31_c00026{left:249.946667pt;}
.x32_c00026{left:274.866667pt;}
.x17_c00026{left:278.293333pt;}
.x2_c00026{left:282.440000pt;}
.x18_c00026{left:297.186667pt;}
.x1e_c00026{left:342.320000pt;}
.x3_c00026{left:344.600000pt;}
.x1f_c00026{left:361.146667pt;}
.x4_c00026{left:369.186667pt;}
.x37_c00026{left:378.120000pt;}
.x28_c00026{left:388.973333pt;}
.x5_c00026{left:396.080000pt;}
.x2f_c00026{left:404.320000pt;}
.x29_c00026{left:415.840000pt;}
.x6_c00026{left:418.813333pt;}
.x7_c00026{left:423.200000pt;}
.xd_c00026{left:425.440000pt;}
.xe_c00026{left:444.040000pt;}
.x8_c00026{left:452.480000pt;}
.x30_c00026{left:457.853333pt;}
.x9_c00026{left:483.400000pt;}
.x20_c00026{left:487.520000pt;}
.x21_c00026{left:507.013333pt;}
.xa_c00026{left:514.480000pt;}
.xb_c00026{left:537.213333pt;}
.x22_c00026{left:572.013333pt;}
.x2d_c00026{left:602.240000pt;}
.x2a_c00026{left:603.306667pt;}
.x23_c00026{left:605.626667pt;}
.x1b_c00026{left:609.133333pt;}
.x2e_c00026{left:630.693333pt;}
.x1c_c00026{left:638.893333pt;}
.x39_c00026{left:755.640000pt;}
.x38_c00026{left:756.573333pt;}
}





/* 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_c00027 {
    display:none;
  }
  .loading-indicator_c00027.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00027 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_c00027 { 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_c00027" -> "#page-container .classname_c00027")
 */
.pf_c00027 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00027 { /* 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_c00027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00027 { /* 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_c00027 { /* 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_c00027 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00027 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00027 {overflow:visible;}
  }
}
.c_c00027 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00027 { /* 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_c00027:after { /* webkit #35443 */
  content: '';
}
.t_c00027:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00027 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 */
}
.__c00027 { /* 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_c00027 { /* info for Javascript */
  display:none;
}
.l_c00027 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00027 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00027 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00027: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_c00027 {
    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_c00027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00027.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_c00027 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00027;src:url('chunks/assets/font_9c96967e1fc225bfd2879efa.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;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:ff2_c00027;src:url('chunks/assets/font_697ca58bd8f5e60bb6c33cb9.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.284668;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;}
.m9_c00027{transform:matrix(0.209199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209199,0.000000,0.000000,0.250000,0,0);}
.m5_c00027{transform:matrix(0.233791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233791,0.000000,0.000000,0.250000,0,0);}
.m3_c00027{transform:matrix(0.245816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245816,0.000000,0.000000,0.250000,0,0);}
.ma_c00027{transform:matrix(0.246653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246653,0.000000,0.000000,0.250000,0,0);}
.m1_c00027{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);}
.m8_c00027{transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);}
.m7_c00027{transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);}
.m6_c00027{transform:matrix(0.255504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255504,0.000000,0.000000,0.250000,0,0);}
.m4_c00027{transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);}
.m2_c00027{transform:matrix(0.256234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256234,0.000000,0.000000,0.250000,0,0);}
.m0_c00027{transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls99_c00027{letter-spacing:-2.478000px;}
.ls7f_c00027{letter-spacing:-2.394000px;}
.ls8d_c00027{letter-spacing:-2.331000px;}
.ls87_c00027{letter-spacing:-2.181960px;}
.ls83_c00027{letter-spacing:-2.127240px;}
.lsab_c00027{letter-spacing:-2.058000px;}
.ls8e_c00027{letter-spacing:-1.963080px;}
.lsa5_c00027{letter-spacing:-1.703160px;}
.ls97_c00027{letter-spacing:-1.285920px;}
.ls9f_c00027{letter-spacing:-1.218000px;}
.lsa3_c00027{letter-spacing:-1.169640px;}
.ls95_c00027{letter-spacing:-0.984960px;}
.lsa0_c00027{letter-spacing:-0.971280px;}
.ls84_c00027{letter-spacing:-0.766080px;}
.ls81_c00027{letter-spacing:-0.759240px;}
.ls80_c00027{letter-spacing:-0.684000px;}
.ls9a_c00027{letter-spacing:-0.622440px;}
.ls9c_c00027{letter-spacing:-0.615600px;}
.ls7d_c00027{letter-spacing:-0.526680px;}
.ls89_c00027{letter-spacing:-0.478800px;}
.ls82_c00027{letter-spacing:-0.458280px;}
.lsa7_c00027{letter-spacing:-0.444600px;}
.ls98_c00027{letter-spacing:-0.424080px;}
.ls93_c00027{letter-spacing:-0.376200px;}
.lsa2_c00027{letter-spacing:-0.348840px;}
.ls88_c00027{letter-spacing:-0.328320px;}
.ls9e_c00027{letter-spacing:-0.314640px;}
.lsa1_c00027{letter-spacing:-0.259920px;}
.lsa8_c00027{letter-spacing:-0.232560px;}
.ls9b_c00027{letter-spacing:-0.218880px;}
.ls94_c00027{letter-spacing:-0.198360px;}
.ls8f_c00027{letter-spacing:-0.177840px;}
.lsa9_c00027{letter-spacing:-0.150480px;}
.lsa4_c00027{letter-spacing:-0.129960px;}
.ls8a_c00027{letter-spacing:-0.116280px;}
.ls8b_c00027{letter-spacing:-0.109440px;}
.ls91_c00027{letter-spacing:-0.088920px;}
.ls92_c00027{letter-spacing:-0.041040px;}
.ls7c_c00027{letter-spacing:0.000000px;}
.ls6d_c00027{letter-spacing:0.006840px;}
.ls4a_c00027{letter-spacing:0.027360px;}
.ls66_c00027{letter-spacing:0.034200px;}
.ls15_c00027{letter-spacing:0.041040px;}
.ls37_c00027{letter-spacing:0.047880px;}
.ls4_c00027{letter-spacing:0.054720px;}
.ls6e_c00027{letter-spacing:0.068400px;}
.ls32_c00027{letter-spacing:0.075240px;}
.ls6a_c00027{letter-spacing:0.082080px;}
.ls14_c00027{letter-spacing:0.102600px;}
.ls68_c00027{letter-spacing:0.109440px;}
.ls7_c00027{letter-spacing:0.129960px;}
.ls30_c00027{letter-spacing:0.136800px;}
.ls71_c00027{letter-spacing:0.143640px;}
.ls51_c00027{letter-spacing:0.150480px;}
.ls5f_c00027{letter-spacing:0.157320px;}
.ls1b_c00027{letter-spacing:0.171000px;}
.ls72_c00027{letter-spacing:0.191520px;}
.ls79_c00027{letter-spacing:0.198360px;}
.ls5c_c00027{letter-spacing:0.205200px;}
.ls65_c00027{letter-spacing:0.212040px;}
.ls96_c00027{letter-spacing:0.222720px;}
.ls38_c00027{letter-spacing:0.232560px;}
.ls5_c00027{letter-spacing:0.246240px;}
.ls1c_c00027{letter-spacing:0.259920px;}
.ls77_c00027{letter-spacing:0.266760px;}
.ls62_c00027{letter-spacing:0.273600px;}
.ls4e_c00027{letter-spacing:0.280440px;}
.ls50_c00027{letter-spacing:0.294120px;}
.ls6c_c00027{letter-spacing:0.300960px;}
.ls16_c00027{letter-spacing:0.307800px;}
.ls42_c00027{letter-spacing:0.314640px;}
.ls8c_c00027{letter-spacing:0.321480px;}
.lsa6_c00027{letter-spacing:0.328320px;}
.ls6_c00027{letter-spacing:0.335160px;}
.ls48_c00027{letter-spacing:0.342000px;}
.ls75_c00027{letter-spacing:0.355680px;}
.ls26_c00027{letter-spacing:0.369360px;}
.ls2f_c00027{letter-spacing:0.383040px;}
.lse_c00027{letter-spacing:0.389880px;}
.ls27_c00027{letter-spacing:0.396720px;}
.ls2c_c00027{letter-spacing:0.417240px;}
.lsf_c00027{letter-spacing:0.430920px;}
.ls1a_c00027{letter-spacing:0.437760px;}
.ls2b_c00027{letter-spacing:0.444600px;}
.ls7a_c00027{letter-spacing:0.451440px;}
.ls58_c00027{letter-spacing:0.458280px;}
.ls3e_c00027{letter-spacing:0.465120px;}
.ls25_c00027{letter-spacing:0.478800px;}
.ls46_c00027{letter-spacing:0.485640px;}
.ls3a_c00027{letter-spacing:0.492480px;}
.ls67_c00027{letter-spacing:0.506160px;}
.ls35_c00027{letter-spacing:0.513000px;}
.ls1_c00027{letter-spacing:0.519840px;}
.ls6b_c00027{letter-spacing:0.540360px;}
.ls11_c00027{letter-spacing:0.547200px;}
.ls3f_c00027{letter-spacing:0.554040px;}
.ls36_c00027{letter-spacing:0.560880px;}
.lsa_c00027{letter-spacing:0.588240px;}
.ls31_c00027{letter-spacing:0.601920px;}
.ls23_c00027{letter-spacing:0.608760px;}
.ls28_c00027{letter-spacing:0.615600px;}
.ls64_c00027{letter-spacing:0.629280px;}
.ls4b_c00027{letter-spacing:0.642960px;}
.ls1d_c00027{letter-spacing:0.649800px;}
.ls47_c00027{letter-spacing:0.656640px;}
.ls4c_c00027{letter-spacing:0.670320px;}
.ls4f_c00027{letter-spacing:0.677160px;}
.ls12_c00027{letter-spacing:0.690840px;}
.ls90_c00027{letter-spacing:0.704520px;}
.ls24_c00027{letter-spacing:0.718200px;}
.ls69_c00027{letter-spacing:0.725040px;}
.ls3b_c00027{letter-spacing:0.752400px;}
.ls34_c00027{letter-spacing:0.759240px;}
.ls22_c00027{letter-spacing:0.779760px;}
.lsaa_c00027{letter-spacing:0.786600px;}
.ls41_c00027{letter-spacing:0.793440px;}
.ls78_c00027{letter-spacing:0.800280px;}
.ls9_c00027{letter-spacing:0.813960px;}
.lsc_c00027{letter-spacing:0.820800px;}
.ls63_c00027{letter-spacing:0.834480px;}
.ls2a_c00027{letter-spacing:0.848160px;}
.ls33_c00027{letter-spacing:0.855000px;}
.ls21_c00027{letter-spacing:0.875520px;}
.ls2e_c00027{letter-spacing:0.882360px;}
.ls54_c00027{letter-spacing:0.902880px;}
.ls3c_c00027{letter-spacing:0.909720px;}
.lsd_c00027{letter-spacing:0.916560px;}
.ls3d_c00027{letter-spacing:0.937080px;}
.ls10_c00027{letter-spacing:0.964440px;}
.ls8_c00027{letter-spacing:0.978120px;}
.ls19_c00027{letter-spacing:0.984960px;}
.ls60_c00027{letter-spacing:0.998640px;}
.ls4d_c00027{letter-spacing:1.012320px;}
.ls74_c00027{letter-spacing:1.053360px;}
.ls3_c00027{letter-spacing:1.060200px;}
.ls18_c00027{letter-spacing:1.067040px;}
.ls5a_c00027{letter-spacing:1.094400px;}
.ls85_c00027{letter-spacing:1.149120px;}
.ls5e_c00027{letter-spacing:1.162800px;}
.ls7e_c00027{letter-spacing:1.183320px;}
.ls39_c00027{letter-spacing:1.224360px;}
.ls20_c00027{letter-spacing:1.333800px;}
.ls43_c00027{letter-spacing:1.395360px;}
.ls29_c00027{letter-spacing:1.402200px;}
.ls49_c00027{letter-spacing:1.429560px;}
.ls70_c00027{letter-spacing:1.497960px;}
.lsb_c00027{letter-spacing:1.648440px;}
.ls6f_c00027{letter-spacing:1.710000px;}
.ls57_c00027{letter-spacing:1.737360px;}
.ls5b_c00027{letter-spacing:1.792080px;}
.ls2_c00027{letter-spacing:1.812600px;}
.ls5d_c00027{letter-spacing:1.901760px;}
.ls73_c00027{letter-spacing:2.004120px;}
.ls61_c00027{letter-spacing:2.010960px;}
.ls1f_c00027{letter-spacing:2.038320px;}
.ls59_c00027{letter-spacing:2.195640px;}
.ls1e_c00027{letter-spacing:2.202480px;}
.ls0_c00027{letter-spacing:2.223000px;}
.ls2d_c00027{letter-spacing:2.250360px;}
.ls40_c00027{letter-spacing:2.352960px;}
.ls44_c00027{letter-spacing:2.421360px;}
.ls76_c00027{letter-spacing:2.455560px;}
.ls53_c00027{letter-spacing:2.469240px;}
.ls55_c00027{letter-spacing:2.503440px;}
.ls52_c00027{letter-spacing:2.510280px;}
.ls45_c00027{letter-spacing:2.674440px;}
.ls7b_c00027{letter-spacing:2.820000px;}
.ls9d_c00027{letter-spacing:2.886480px;}
.ls13_c00027{letter-spacing:2.961720px;}
.ls17_c00027{letter-spacing:3.091680px;}
.ls56_c00027{letter-spacing:3.166920px;}
.ls86_c00027{letter-spacing:3.420000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{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__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00027{word-spacing:0.000000px;}
._19_c00027{margin-left:-19.288800px;}
._1b_c00027{margin-left:-4.945320px;}
._9_c00027{margin-left:-3.805200px;}
._5_c00027{margin-left:-2.660760px;}
._a_c00027{margin-left:-1.641600px;}
._6_c00027{width:1.173720px;}
._0_c00027{width:2.188800px;}
._8_c00027{width:3.214800px;}
._7_c00027{width:4.514400px;}
._1_c00027{width:5.991840px;}
._2_c00027{width:7.606080px;}
._3_c00027{width:9.240840px;}
._4_c00027{width:10.465200px;}
._18_c00027{width:11.539080px;}
._11_c00027{width:13.324320px;}
._10_c00027{width:14.432400px;}
._12_c00027{width:15.800400px;}
._1a_c00027{width:16.956360px;}
._13_c00027{width:18.878400px;}
._14_c00027{width:21.771720px;}
._15_c00027{width:24.056280px;}
._17_c00027{width:25.851960px;}
._16_c00027{width:27.619920px;}
._c_c00027{width:28.967400px;}
._d_c00027{width:30.178080px;}
._b_c00027{width:31.860720px;}
._e_c00027{width:33.105600px;}
._f_c00027{width:36.552960px;}
.fc0_c00027{color:transparent;}
.fs0_c00027{font-size:56.400000px;}
.fs6_c00027{font-size:58.800000px;}
.fs8_c00027{font-size:66.000000px;}
.fs2_c00027{font-size:66.600000px;}
.fs5_c00027{font-size:67.200000px;}
.fs1_c00027{font-size:68.400000px;}
.fs3_c00027{font-size:69.600000px;}
.fs4_c00027{font-size:70.800000px;}
.fs7_c00027{font-size:76.800000px;}
.y0_c00027{bottom:0.000000px;}
.y25_c00027{bottom:65.175015px;}
.y24_c00027{bottom:145.808115px;}
.y23_c00027{bottom:176.400015px;}
.y21_c00027{bottom:207.711615px;}
.y22_c00027{bottom:207.735015px;}
.y20_c00027{bottom:239.380815px;}
.y1f_c00027{bottom:301.317015px;}
.y1e_c00027{bottom:332.644215px;}
.y1d_c00027{bottom:363.954315px;}
.y1c_c00027{bottom:395.281515px;}
.y1b_c00027{bottom:426.967815px;}
.y1a_c00027{bottom:458.289915px;}
.y19_c00027{bottom:489.593415px;}
.y18_c00027{bottom:551.888715px;}
.y17_c00027{bottom:583.569015px;}
.y15_c00027{bottom:614.519715px;}
.y16_c00027{bottom:614.520015px;}
.y27_c00027{bottom:615.255015px;}
.y26_c00027{bottom:618.840015px;}
.y14_c00027{bottom:645.846915px;}
.y13_c00027{bottom:676.807815px;}
.y12_c00027{bottom:708.135015px;}
.y11_c00027{bottom:739.430115px;}
.y10_c00027{bottom:770.757315px;}
.yf_c00027{bottom:802.084515px;}
.ye_c00027{bottom:833.394615px;}
.yc_c00027{bottom:865.439715px;}
.yd_c00027{bottom:865.440015px;}
.ya_c00027{bottom:927.713415px;}
.yb_c00027{bottom:927.735015px;}
.y9_c00027{bottom:959.040615px;}
.y8_c00027{bottom:990.367815px;}
.y7_c00027{bottom:1021.689015px;}
.y5_c00027{bottom:1052.632815px;}
.y6_c00027{bottom:1052.640015px;}
.y3_c00027{bottom:1083.953715px;}
.y4_c00027{bottom:1083.960015px;}
.y2_c00027{bottom:1115.640015px;}
.y1_c00027{bottom:1190.895015px;}
.hf_c00027{height:57.708984px;}
.h2_c00027{height:58.823438px;}
.h3_c00027{height:67.130859px;}
.h8_c00027{height:67.132059px;}
.h5_c00027{height:67.154859px;}
.h4_c00027{height:67.156059px;}
.hc_c00027{height:67.157259px;}
.ha_c00027{height:67.159659px;}
.h6_c00027{height:67.217259px;}
.he_c00027{height:67.224459px;}
.hd_c00027{height:68.328994px;}
.h9_c00027{height:68.348194px;}
.h11_c00027{height:68.835938px;}
.h7_c00027{height:69.461719px;}
.hb_c00027{height:73.842188px;}
.h10_c00027{height:80.100000px;}
.h1_c00027{height:1263.000000px;}
.h0_c00027{height:1263.240015px;}
.w1_c00027{width:892.500000px;}
.w0_c00027{width:892.800000px;}
.x0_c00027{left:0.000000px;}
.x1_c00027{left:124.215000px;}
.x5_c00027{left:125.649900px;}
.x12_c00027{left:126.833100px;}
.x4_c00027{left:179.190000px;}
.xc_c00027{left:180.264300px;}
.x2_c00027{left:211.680000px;}
.x3_c00027{left:226.125000px;}
.x8_c00027{left:257.910000px;}
.x9_c00027{left:295.230000px;}
.x13_c00027{left:310.890000px;}
.x14_c00027{left:336.810000px;}
.x6_c00027{left:365.730000px;}
.x7_c00027{left:388.620000px;}
.xa_c00027{left:394.260000px;}
.xb_c00027{left:426.795000px;}
.x16_c00027{left:431.505000px;}
.xd_c00027{left:543.450000px;}
.xe_c00027{left:576.195000px;}
.xf_c00027{left:592.740000px;}
.x10_c00027{left:615.810000px;}
.x11_c00027{left:634.515000px;}
.x15_c00027{left:723.300000px;}
.x18_c00027{left:855.495000px;}
.x17_c00027{left:856.545000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls99_c00027{letter-spacing:-2.202667pt;}
.ls7f_c00027{letter-spacing:-2.128000pt;}
.ls8d_c00027{letter-spacing:-2.072000pt;}
.ls87_c00027{letter-spacing:-1.939520pt;}
.ls83_c00027{letter-spacing:-1.890880pt;}
.lsab_c00027{letter-spacing:-1.829333pt;}
.ls8e_c00027{letter-spacing:-1.744960pt;}
.lsa5_c00027{letter-spacing:-1.513920pt;}
.ls97_c00027{letter-spacing:-1.143040pt;}
.ls9f_c00027{letter-spacing:-1.082667pt;}
.lsa3_c00027{letter-spacing:-1.039680pt;}
.ls95_c00027{letter-spacing:-0.875520pt;}
.lsa0_c00027{letter-spacing:-0.863360pt;}
.ls84_c00027{letter-spacing:-0.680960pt;}
.ls81_c00027{letter-spacing:-0.674880pt;}
.ls80_c00027{letter-spacing:-0.608000pt;}
.ls9a_c00027{letter-spacing:-0.553280pt;}
.ls9c_c00027{letter-spacing:-0.547200pt;}
.ls7d_c00027{letter-spacing:-0.468160pt;}
.ls89_c00027{letter-spacing:-0.425600pt;}
.ls82_c00027{letter-spacing:-0.407360pt;}
.lsa7_c00027{letter-spacing:-0.395200pt;}
.ls98_c00027{letter-spacing:-0.376960pt;}
.ls93_c00027{letter-spacing:-0.334400pt;}
.lsa2_c00027{letter-spacing:-0.310080pt;}
.ls88_c00027{letter-spacing:-0.291840pt;}
.ls9e_c00027{letter-spacing:-0.279680pt;}
.lsa1_c00027{letter-spacing:-0.231040pt;}
.lsa8_c00027{letter-spacing:-0.206720pt;}
.ls9b_c00027{letter-spacing:-0.194560pt;}
.ls94_c00027{letter-spacing:-0.176320pt;}
.ls8f_c00027{letter-spacing:-0.158080pt;}
.lsa9_c00027{letter-spacing:-0.133760pt;}
.lsa4_c00027{letter-spacing:-0.115520pt;}
.ls8a_c00027{letter-spacing:-0.103360pt;}
.ls8b_c00027{letter-spacing:-0.097280pt;}
.ls91_c00027{letter-spacing:-0.079040pt;}
.ls92_c00027{letter-spacing:-0.036480pt;}
.ls7c_c00027{letter-spacing:0.000000pt;}
.ls6d_c00027{letter-spacing:0.006080pt;}
.ls4a_c00027{letter-spacing:0.024320pt;}
.ls66_c00027{letter-spacing:0.030400pt;}
.ls15_c00027{letter-spacing:0.036480pt;}
.ls37_c00027{letter-spacing:0.042560pt;}
.ls4_c00027{letter-spacing:0.048640pt;}
.ls6e_c00027{letter-spacing:0.060800pt;}
.ls32_c00027{letter-spacing:0.066880pt;}
.ls6a_c00027{letter-spacing:0.072960pt;}
.ls14_c00027{letter-spacing:0.091200pt;}
.ls68_c00027{letter-spacing:0.097280pt;}
.ls7_c00027{letter-spacing:0.115520pt;}
.ls30_c00027{letter-spacing:0.121600pt;}
.ls71_c00027{letter-spacing:0.127680pt;}
.ls51_c00027{letter-spacing:0.133760pt;}
.ls5f_c00027{letter-spacing:0.139840pt;}
.ls1b_c00027{letter-spacing:0.152000pt;}
.ls72_c00027{letter-spacing:0.170240pt;}
.ls79_c00027{letter-spacing:0.176320pt;}
.ls5c_c00027{letter-spacing:0.182400pt;}
.ls65_c00027{letter-spacing:0.188480pt;}
.ls96_c00027{letter-spacing:0.197973pt;}
.ls38_c00027{letter-spacing:0.206720pt;}
.ls5_c00027{letter-spacing:0.218880pt;}
.ls1c_c00027{letter-spacing:0.231040pt;}
.ls77_c00027{letter-spacing:0.237120pt;}
.ls62_c00027{letter-spacing:0.243200pt;}
.ls4e_c00027{letter-spacing:0.249280pt;}
.ls50_c00027{letter-spacing:0.261440pt;}
.ls6c_c00027{letter-spacing:0.267520pt;}
.ls16_c00027{letter-spacing:0.273600pt;}
.ls42_c00027{letter-spacing:0.279680pt;}
.ls8c_c00027{letter-spacing:0.285760pt;}
.lsa6_c00027{letter-spacing:0.291840pt;}
.ls6_c00027{letter-spacing:0.297920pt;}
.ls48_c00027{letter-spacing:0.304000pt;}
.ls75_c00027{letter-spacing:0.316160pt;}
.ls26_c00027{letter-spacing:0.328320pt;}
.ls2f_c00027{letter-spacing:0.340480pt;}
.lse_c00027{letter-spacing:0.346560pt;}
.ls27_c00027{letter-spacing:0.352640pt;}
.ls2c_c00027{letter-spacing:0.370880pt;}
.lsf_c00027{letter-spacing:0.383040pt;}
.ls1a_c00027{letter-spacing:0.389120pt;}
.ls2b_c00027{letter-spacing:0.395200pt;}
.ls7a_c00027{letter-spacing:0.401280pt;}
.ls58_c00027{letter-spacing:0.407360pt;}
.ls3e_c00027{letter-spacing:0.413440pt;}
.ls25_c00027{letter-spacing:0.425600pt;}
.ls46_c00027{letter-spacing:0.431680pt;}
.ls3a_c00027{letter-spacing:0.437760pt;}
.ls67_c00027{letter-spacing:0.449920pt;}
.ls35_c00027{letter-spacing:0.456000pt;}
.ls1_c00027{letter-spacing:0.462080pt;}
.ls6b_c00027{letter-spacing:0.480320pt;}
.ls11_c00027{letter-spacing:0.486400pt;}
.ls3f_c00027{letter-spacing:0.492480pt;}
.ls36_c00027{letter-spacing:0.498560pt;}
.lsa_c00027{letter-spacing:0.522880pt;}
.ls31_c00027{letter-spacing:0.535040pt;}
.ls23_c00027{letter-spacing:0.541120pt;}
.ls28_c00027{letter-spacing:0.547200pt;}
.ls64_c00027{letter-spacing:0.559360pt;}
.ls4b_c00027{letter-spacing:0.571520pt;}
.ls1d_c00027{letter-spacing:0.577600pt;}
.ls47_c00027{letter-spacing:0.583680pt;}
.ls4c_c00027{letter-spacing:0.595840pt;}
.ls4f_c00027{letter-spacing:0.601920pt;}
.ls12_c00027{letter-spacing:0.614080pt;}
.ls90_c00027{letter-spacing:0.626240pt;}
.ls24_c00027{letter-spacing:0.638400pt;}
.ls69_c00027{letter-spacing:0.644480pt;}
.ls3b_c00027{letter-spacing:0.668800pt;}
.ls34_c00027{letter-spacing:0.674880pt;}
.ls22_c00027{letter-spacing:0.693120pt;}
.lsaa_c00027{letter-spacing:0.699200pt;}
.ls41_c00027{letter-spacing:0.705280pt;}
.ls78_c00027{letter-spacing:0.711360pt;}
.ls9_c00027{letter-spacing:0.723520pt;}
.lsc_c00027{letter-spacing:0.729600pt;}
.ls63_c00027{letter-spacing:0.741760pt;}
.ls2a_c00027{letter-spacing:0.753920pt;}
.ls33_c00027{letter-spacing:0.760000pt;}
.ls21_c00027{letter-spacing:0.778240pt;}
.ls2e_c00027{letter-spacing:0.784320pt;}
.ls54_c00027{letter-spacing:0.802560pt;}
.ls3c_c00027{letter-spacing:0.808640pt;}
.lsd_c00027{letter-spacing:0.814720pt;}
.ls3d_c00027{letter-spacing:0.832960pt;}
.ls10_c00027{letter-spacing:0.857280pt;}
.ls8_c00027{letter-spacing:0.869440pt;}
.ls19_c00027{letter-spacing:0.875520pt;}
.ls60_c00027{letter-spacing:0.887680pt;}
.ls4d_c00027{letter-spacing:0.899840pt;}
.ls74_c00027{letter-spacing:0.936320pt;}
.ls3_c00027{letter-spacing:0.942400pt;}
.ls18_c00027{letter-spacing:0.948480pt;}
.ls5a_c00027{letter-spacing:0.972800pt;}
.ls85_c00027{letter-spacing:1.021440pt;}
.ls5e_c00027{letter-spacing:1.033600pt;}
.ls7e_c00027{letter-spacing:1.051840pt;}
.ls39_c00027{letter-spacing:1.088320pt;}
.ls20_c00027{letter-spacing:1.185600pt;}
.ls43_c00027{letter-spacing:1.240320pt;}
.ls29_c00027{letter-spacing:1.246400pt;}
.ls49_c00027{letter-spacing:1.270720pt;}
.ls70_c00027{letter-spacing:1.331520pt;}
.lsb_c00027{letter-spacing:1.465280pt;}
.ls6f_c00027{letter-spacing:1.520000pt;}
.ls57_c00027{letter-spacing:1.544320pt;}
.ls5b_c00027{letter-spacing:1.592960pt;}
.ls2_c00027{letter-spacing:1.611200pt;}
.ls5d_c00027{letter-spacing:1.690453pt;}
.ls73_c00027{letter-spacing:1.781440pt;}
.ls61_c00027{letter-spacing:1.787520pt;}
.ls1f_c00027{letter-spacing:1.811840pt;}
.ls59_c00027{letter-spacing:1.951680pt;}
.ls1e_c00027{letter-spacing:1.957760pt;}
.ls0_c00027{letter-spacing:1.976000pt;}
.ls2d_c00027{letter-spacing:2.000320pt;}
.ls40_c00027{letter-spacing:2.091520pt;}
.ls44_c00027{letter-spacing:2.152320pt;}
.ls76_c00027{letter-spacing:2.182720pt;}
.ls53_c00027{letter-spacing:2.194880pt;}
.ls55_c00027{letter-spacing:2.225280pt;}
.ls52_c00027{letter-spacing:2.231360pt;}
.ls45_c00027{letter-spacing:2.377280pt;}
.ls7b_c00027{letter-spacing:2.506667pt;}
.ls9d_c00027{letter-spacing:2.565760pt;}
.ls13_c00027{letter-spacing:2.632640pt;}
.ls17_c00027{letter-spacing:2.748160pt;}
.ls56_c00027{letter-spacing:2.815040pt;}
.ls86_c00027{letter-spacing:3.040000pt;}
.ws0_c00027{word-spacing:0.000000pt;}
._19_c00027{margin-left:-17.145600pt;}
._1b_c00027{margin-left:-4.395840pt;}
._9_c00027{margin-left:-3.382400pt;}
._5_c00027{margin-left:-2.365120pt;}
._a_c00027{margin-left:-1.459200pt;}
._6_c00027{width:1.043307pt;}
._0_c00027{width:1.945600pt;}
._8_c00027{width:2.857600pt;}
._7_c00027{width:4.012800pt;}
._1_c00027{width:5.326080pt;}
._2_c00027{width:6.760960pt;}
._3_c00027{width:8.214080pt;}
._4_c00027{width:9.302400pt;}
._18_c00027{width:10.256960pt;}
._11_c00027{width:11.843840pt;}
._10_c00027{width:12.828800pt;}
._12_c00027{width:14.044800pt;}
._1a_c00027{width:15.072320pt;}
._13_c00027{width:16.780800pt;}
._14_c00027{width:19.352640pt;}
._15_c00027{width:21.383360pt;}
._17_c00027{width:22.979520pt;}
._16_c00027{width:24.551040pt;}
._c_c00027{width:25.748800pt;}
._d_c00027{width:26.824960pt;}
._b_c00027{width:28.320640pt;}
._e_c00027{width:29.427200pt;}
._f_c00027{width:32.491520pt;}
.fs0_c00027{font-size:50.133333pt;}
.fs6_c00027{font-size:52.266667pt;}
.fs8_c00027{font-size:58.666667pt;}
.fs2_c00027{font-size:59.200000pt;}
.fs5_c00027{font-size:59.733333pt;}
.fs1_c00027{font-size:60.800000pt;}
.fs3_c00027{font-size:61.866667pt;}
.fs4_c00027{font-size:62.933333pt;}
.fs7_c00027{font-size:68.266667pt;}
.y0_c00027{bottom:0.000000pt;}
.y25_c00027{bottom:57.933347pt;}
.y24_c00027{bottom:129.607213pt;}
.y23_c00027{bottom:156.800013pt;}
.y21_c00027{bottom:184.632547pt;}
.y22_c00027{bottom:184.653347pt;}
.y20_c00027{bottom:212.782947pt;}
.y1f_c00027{bottom:267.837347pt;}
.y1e_c00027{bottom:295.683747pt;}
.y1d_c00027{bottom:323.514947pt;}
.y1c_c00027{bottom:351.361347pt;}
.y1b_c00027{bottom:379.526947pt;}
.y1a_c00027{bottom:407.368813pt;}
.y19_c00027{bottom:435.194147pt;}
.y18_c00027{bottom:490.567747pt;}
.y17_c00027{bottom:518.728013pt;}
.y15_c00027{bottom:546.239747pt;}
.y16_c00027{bottom:546.240013pt;}
.y27_c00027{bottom:546.893347pt;}
.y26_c00027{bottom:550.080013pt;}
.y14_c00027{bottom:574.086147pt;}
.y13_c00027{bottom:601.606947pt;}
.y12_c00027{bottom:629.453347pt;}
.y11_c00027{bottom:657.271213pt;}
.y10_c00027{bottom:685.117613pt;}
.yf_c00027{bottom:712.964013pt;}
.ye_c00027{bottom:740.795213pt;}
.yc_c00027{bottom:769.279747pt;}
.yd_c00027{bottom:769.280013pt;}
.ya_c00027{bottom:824.634147pt;}
.yb_c00027{bottom:824.653347pt;}
.y9_c00027{bottom:852.480547pt;}
.y8_c00027{bottom:880.326947pt;}
.y7_c00027{bottom:908.168013pt;}
.y5_c00027{bottom:935.673613pt;}
.y6_c00027{bottom:935.680013pt;}
.y3_c00027{bottom:963.514413pt;}
.y4_c00027{bottom:963.520013pt;}
.y2_c00027{bottom:991.680013pt;}
.y1_c00027{bottom:1058.573347pt;}
.hf_c00027{height:51.296875pt;}
.h2_c00027{height:52.287500pt;}
.h3_c00027{height:59.671875pt;}
.h8_c00027{height:59.672942pt;}
.h5_c00027{height:59.693208pt;}
.h4_c00027{height:59.694275pt;}
.hc_c00027{height:59.695342pt;}
.ha_c00027{height:59.697475pt;}
.h6_c00027{height:59.748675pt;}
.he_c00027{height:59.755075pt;}
.hd_c00027{height:60.736883pt;}
.h9_c00027{height:60.753950pt;}
.h11_c00027{height:61.187500pt;}
.h7_c00027{height:61.743750pt;}
.hb_c00027{height:65.637500pt;}
.h10_c00027{height:71.200000pt;}
.h1_c00027{height:1122.666667pt;}
.h0_c00027{height:1122.880013pt;}
.w1_c00027{width:793.333333pt;}
.w0_c00027{width:793.600000pt;}
.x0_c00027{left:0.000000pt;}
.x1_c00027{left:110.413333pt;}
.x5_c00027{left:111.688800pt;}
.x12_c00027{left:112.740533pt;}
.x4_c00027{left:159.280000pt;}
.xc_c00027{left:160.234933pt;}
.x2_c00027{left:188.160000pt;}
.x3_c00027{left:201.000000pt;}
.x8_c00027{left:229.253333pt;}
.x9_c00027{left:262.426667pt;}
.x13_c00027{left:276.346667pt;}
.x14_c00027{left:299.386667pt;}
.x6_c00027{left:325.093333pt;}
.x7_c00027{left:345.440000pt;}
.xa_c00027{left:350.453333pt;}
.xb_c00027{left:379.373333pt;}
.x16_c00027{left:383.560000pt;}
.xd_c00027{left:483.066667pt;}
.xe_c00027{left:512.173333pt;}
.xf_c00027{left:526.880000pt;}
.x10_c00027{left:547.386667pt;}
.x11_c00027{left:564.013333pt;}
.x15_c00027{left:642.933333pt;}
.x18_c00027{left:760.440000pt;}
.x17_c00027{left:761.373333pt;}
}





/* 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_c00028 {
    display:none;
  }
  .loading-indicator_c00028.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00028 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_c00028 { 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_c00028" -> "#page-container .classname_c00028")
 */
.pf_c00028 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00028 { /* 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_c00028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00028 { /* 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_c00028 { /* 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_c00028 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00028 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00028 {overflow:visible;}
  }
}
.c_c00028 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00028 { /* 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_c00028:after { /* webkit #35443 */
  content: '';
}
.t_c00028:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00028 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 */
}
.__c00028 { /* 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_c00028 { /* info for Javascript */
  display:none;
}
.l_c00028 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00028 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00028 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00028: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_c00028 {
    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_c00028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00028.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_c00028 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00028;src:url('chunks/assets/font_56536f0c1d929cb6dc75534c.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.284668;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_c00028;src:url('chunks/assets/font_5353c5329a49a00d25e1fa3d.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;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_c00028;src:url('chunks/assets/font_17b88740570b16009aa02b92.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:0.666000;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_c00028;src:url('chunks/assets/font_0e7063b400f3290fdc6bb076.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.284180;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_c00028;src:url('chunks/assets/font_3bad310c9de52f5cf7624c88.woff2')format("woff");}.ff5_c00028{font-family:ff5_c00028;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;}
.m1_c00028{transform:matrix(0.118424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118424,0.000000,0.000000,0.250000,0,0);}
.m9_c00028{transform:matrix(0.198838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198838,0.000000,0.000000,0.250000,0,0);}
.m8_c00028{transform:matrix(0.216672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216672,0.000000,0.000000,0.250000,0,0);}
.ma_c00028{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m4_c00028{transform:matrix(0.233919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233919,0.000000,0.000000,0.250000,0,0);}
.m7_c00028{transform:matrix(0.240083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240083,0.000000,0.000000,0.250000,0,0);}
.m5_c00028{transform:matrix(0.242233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242233,0.000000,0.000000,0.250000,0,0);}
.m2_c00028{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m6_c00028{transform:matrix(0.244572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244572,0.000000,0.000000,0.250000,0,0);}
.m3_c00028{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.mb_c00028{transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);}
.m0_c00028{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);}
.v2_c00028{vertical-align:-34.500000px;}
.v0_c00028{vertical-align:0.000000px;}
.v1_c00028{vertical-align:34.500000px;}
.ls7a_c00028{letter-spacing:-2.562000px;}
.ls7d_c00028{letter-spacing:-2.520000px;}
.ls77_c00028{letter-spacing:-2.499000px;}
.ls54_c00028{letter-spacing:-2.478000px;}
.lsa6_c00028{letter-spacing:-2.403120px;}
.ls4e_c00028{letter-spacing:-2.400120px;}
.ls42_c00028{letter-spacing:-2.378880px;}
.ls6b_c00028{letter-spacing:-2.357640px;}
.ls73_c00028{letter-spacing:-2.352000px;}
.ls66_c00028{letter-spacing:-2.322240px;}
.ls45_c00028{letter-spacing:-1.996560px;}
.ls8c_c00028{letter-spacing:-1.947000px;}
.ls6e_c00028{letter-spacing:-1.945800px;}
.ls76_c00028{letter-spacing:-1.854960px;}
.ls37_c00028{letter-spacing:-1.847880px;}
.ls89_c00028{letter-spacing:-1.791240px;}
.ls4a_c00028{letter-spacing:-1.762020px;}
.lsa8_c00028{letter-spacing:-1.749600px;}
.ls72_c00028{letter-spacing:-1.663620px;}
.ls49_c00028{letter-spacing:-1.614240px;}
.ls69_c00028{letter-spacing:-1.493880px;}
.lsa7_c00028{letter-spacing:-1.444320px;}
.ls70_c00028{letter-spacing:-1.442280px;}
.ls60_c00028{letter-spacing:-1.423080px;}
.ls6a_c00028{letter-spacing:-1.408920px;}
.ls2c_c00028{letter-spacing:-1.323960px;}
.ls52_c00028{letter-spacing:-1.316880px;}
.ls2d_c00028{letter-spacing:-1.281480px;}
.ls6c_c00028{letter-spacing:-1.274400px;}
.ls9d_c00028{letter-spacing:-1.239000px;}
.lsaa_c00028{letter-spacing:-1.231920px;}
.ls81_c00028{letter-spacing:-1.139880px;}
.ls47_c00028{letter-spacing:-1.132800px;}
.ls78_c00028{letter-spacing:-1.111560px;}
.ls51_c00028{letter-spacing:-1.083240px;}
.ls71_c00028{letter-spacing:-1.063860px;}
.ls79_c00028{letter-spacing:-1.062000px;}
.ls83_c00028{letter-spacing:-1.040760px;}
.ls39_c00028{letter-spacing:-1.033680px;}
.lsac_c00028{letter-spacing:-1.005360px;}
.lsa2_c00028{letter-spacing:-0.977040px;}
.ls88_c00028{letter-spacing:-0.962880px;}
.ls2f_c00028{letter-spacing:-0.955800px;}
.ls4b_c00028{letter-spacing:-0.934560px;}
.ls8d_c00028{letter-spacing:-0.927480px;}
.ls9c_c00028{letter-spacing:-0.920400px;}
.ls40_c00028{letter-spacing:-0.885000px;}
.ls93_c00028{letter-spacing:-0.863760px;}
.lsa0_c00028{letter-spacing:-0.842520px;}
.ls5b_c00028{letter-spacing:-0.828360px;}
.ls33_c00028{letter-spacing:-0.821280px;}
.ls3f_c00028{letter-spacing:-0.814200px;}
.ls98_c00028{letter-spacing:-0.807120px;}
.lsa9_c00028{letter-spacing:-0.800040px;}
.ls90_c00028{letter-spacing:-0.792960px;}
.ls99_c00028{letter-spacing:-0.778800px;}
.lsa5_c00028{letter-spacing:-0.764640px;}
.ls38_c00028{letter-spacing:-0.750480px;}
.ls9e_c00028{letter-spacing:-0.743400px;}
.ls4d_c00028{letter-spacing:-0.729240px;}
.ls94_c00028{letter-spacing:-0.708000px;}
.ls8f_c00028{letter-spacing:-0.700920px;}
.ls2e_c00028{letter-spacing:-0.693840px;}
.ls61_c00028{letter-spacing:-0.686760px;}
.ls31_c00028{letter-spacing:-0.679680px;}
.ls95_c00028{letter-spacing:-0.658440px;}
.ls55_c00028{letter-spacing:-0.644280px;}
.ls3b_c00028{letter-spacing:-0.637200px;}
.ls5c_c00028{letter-spacing:-0.623040px;}
.ls29_c00028{letter-spacing:-0.615960px;}
.ls85_c00028{letter-spacing:-0.601800px;}
.ls74_c00028{letter-spacing:-0.594720px;}
.ls75_c00028{letter-spacing:-0.587640px;}
.ls43_c00028{letter-spacing:-0.566400px;}
.ls2a_c00028{letter-spacing:-0.559320px;}
.ls46_c00028{letter-spacing:-0.552240px;}
.lsab_c00028{letter-spacing:-0.545160px;}
.ls68_c00028{letter-spacing:-0.523920px;}
.ls4f_c00028{letter-spacing:-0.516840px;}
.ls56_c00028{letter-spacing:-0.509760px;}
.ls34_c00028{letter-spacing:-0.502680px;}
.ls57_c00028{letter-spacing:-0.495600px;}
.ls48_c00028{letter-spacing:-0.488520px;}
.ls8e_c00028{letter-spacing:-0.481440px;}
.ls6d_c00028{letter-spacing:-0.474360px;}
.ls82_c00028{letter-spacing:-0.467280px;}
.ls86_c00028{letter-spacing:-0.453120px;}
.ls2b_c00028{letter-spacing:-0.446040px;}
.ls5a_c00028{letter-spacing:-0.438960px;}
.ls64_c00028{letter-spacing:-0.431880px;}
.ls3c_c00028{letter-spacing:-0.424800px;}
.ls5e_c00028{letter-spacing:-0.417720px;}
.ls50_c00028{letter-spacing:-0.410640px;}
.ls36_c00028{letter-spacing:-0.403560px;}
.ls5f_c00028{letter-spacing:-0.389400px;}
.ls3e_c00028{letter-spacing:-0.382320px;}
.ls87_c00028{letter-spacing:-0.375240px;}
.ls9a_c00028{letter-spacing:-0.368160px;}
.ls7b_c00028{letter-spacing:-0.361080px;}
.ls7e_c00028{letter-spacing:-0.346920px;}
.ls6f_c00028{letter-spacing:-0.339840px;}
.ls53_c00028{letter-spacing:-0.332760px;}
.ls96_c00028{letter-spacing:-0.325680px;}
.ls44_c00028{letter-spacing:-0.318600px;}
.ls8a_c00028{letter-spacing:-0.304440px;}
.ls97_c00028{letter-spacing:-0.297360px;}
.ls80_c00028{letter-spacing:-0.290280px;}
.ls59_c00028{letter-spacing:-0.269040px;}
.ls9b_c00028{letter-spacing:-0.261960px;}
.ls30_c00028{letter-spacing:-0.247800px;}
.ls3a_c00028{letter-spacing:-0.233640px;}
.ls58_c00028{letter-spacing:-0.226560px;}
.ls41_c00028{letter-spacing:-0.219480px;}
.ls8b_c00028{letter-spacing:-0.212400px;}
.ls7f_c00028{letter-spacing:-0.205320px;}
.ls32_c00028{letter-spacing:-0.198240px;}
.ls84_c00028{letter-spacing:-0.191160px;}
.ls67_c00028{letter-spacing:-0.177000px;}
.ls65_c00028{letter-spacing:-0.169920px;}
.ls63_c00028{letter-spacing:-0.148680px;}
.ls35_c00028{letter-spacing:-0.127440px;}
.ls62_c00028{letter-spacing:-0.113280px;}
.ls9f_c00028{letter-spacing:-0.106200px;}
.ls92_c00028{letter-spacing:-0.084960px;}
.lsa1_c00028{letter-spacing:-0.077880px;}
.ls5d_c00028{letter-spacing:-0.063720px;}
.ls4c_c00028{letter-spacing:-0.056640px;}
.lsa3_c00028{letter-spacing:-0.035400px;}
.ls3d_c00028{letter-spacing:-0.014160px;}
.ls27_c00028{letter-spacing:0.000000px;}
.ls8_c00028{letter-spacing:0.007080px;}
.ls15_c00028{letter-spacing:0.021240px;}
.ls3_c00028{letter-spacing:0.028320px;}
.ls13_c00028{letter-spacing:0.056640px;}
.ls21_c00028{letter-spacing:0.070800px;}
.lsa_c00028{letter-spacing:0.084960px;}
.lsc_c00028{letter-spacing:0.092040px;}
.ls14_c00028{letter-spacing:0.106200px;}
.ls5_c00028{letter-spacing:0.113280px;}
.ls9_c00028{letter-spacing:0.127440px;}
.ls1a_c00028{letter-spacing:0.162840px;}
.ls11_c00028{letter-spacing:0.184080px;}
.ls1_c00028{letter-spacing:0.233640px;}
.ls22_c00028{letter-spacing:0.247800px;}
.ls23_c00028{letter-spacing:0.297360px;}
.ls16_c00028{letter-spacing:0.339840px;}
.ls18_c00028{letter-spacing:0.382320px;}
.ls12_c00028{letter-spacing:0.389400px;}
.ls1c_c00028{letter-spacing:0.417720px;}
.lsad_c00028{letter-spacing:0.434520px;}
.ls25_c00028{letter-spacing:0.481440px;}
.ls19_c00028{letter-spacing:0.502680px;}
.ls17_c00028{letter-spacing:0.509760px;}
.ls24_c00028{letter-spacing:0.545160px;}
.ls1e_c00028{letter-spacing:0.559320px;}
.lsf_c00028{letter-spacing:0.722160px;}
.ls7_c00028{letter-spacing:0.750480px;}
.ls91_c00028{letter-spacing:0.807120px;}
.ls4_c00028{letter-spacing:0.870840px;}
.ls1d_c00028{letter-spacing:0.927480px;}
.ls20_c00028{letter-spacing:1.040760px;}
.lsd_c00028{letter-spacing:1.132800px;}
.ls26_c00028{letter-spacing:1.146960px;}
.ls7c_c00028{letter-spacing:1.175280px;}
.ls6_c00028{letter-spacing:1.189440px;}
.lse_c00028{letter-spacing:1.239000px;}
.ls1f_c00028{letter-spacing:1.302720px;}
.ls2_c00028{letter-spacing:1.309800px;}
.lsb_c00028{letter-spacing:1.373520px;}
.ls28_c00028{letter-spacing:1.952280px;}
.ls10_c00028{letter-spacing:2.088600px;}
.ls0_c00028{letter-spacing:2.276640px;}
.ls1b_c00028{letter-spacing:2.315160px;}
.lsa4_c00028{letter-spacing:2.747040px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{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__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:-16.786140px;}
.ws1_c00028{word-spacing:-12.150000px;}
.ws2_c00028{word-spacing:0.000000px;}
._13_c00028{margin-left:-8.102400px;}
._1d_c00028{margin-left:-6.696600px;}
._12_c00028{margin-left:-5.155320px;}
._10_c00028{margin-left:-3.630960px;}
._0_c00028{margin-left:-1.848960px;}
._11_c00028{width:1.189440px;}
._14_c00028{width:2.521560px;}
._d_c00028{width:4.276320px;}
._e_c00028{width:5.996760px;}
._f_c00028{width:7.122480px;}
._1_c00028{width:8.920200px;}
._2_c00028{width:10.839480px;}
._1b_c00028{width:11.936880px;}
._3_c00028{width:13.020120px;}
._4_c00028{width:14.521080px;}
._c_c00028{width:15.604320px;}
._5_c00028{width:18.417840px;}
._8_c00028{width:20.248800px;}
._6_c00028{width:21.324960px;}
._7_c00028{width:23.087880px;}
._9_c00028{width:24.433080px;}
._b_c00028{width:25.650840px;}
._a_c00028{width:26.734080px;}
._1c_c00028{width:28.248840px;}
._15_c00028{width:30.580200px;}
._18_c00028{width:34.224720px;}
._16_c00028{width:36.127560px;}
._19_c00028{width:37.155840px;}
._17_c00028{width:39.017880px;}
._1a_c00028{width:40.846200px;}
.fc0_c00028{color:transparent;}
.fs6_c00028{font-size:48.600000px;}
.fs3_c00028{font-size:54.720000px;}
.fs0_c00028{font-size:61.200000px;}
.fsb_c00028{font-size:64.800000px;}
.fs7_c00028{font-size:67.200000px;}
.fs4_c00028{font-size:69.000000px;}
.fs2_c00028{font-size:70.200000px;}
.fs1_c00028{font-size:70.800000px;}
.fs5_c00028{font-size:71.400000px;}
.fs9_c00028{font-size:72.000000px;}
.fs8_c00028{font-size:73.200000px;}
.fsa_c00028{font-size:74.400000px;}
.y0_c00028{bottom:0.000000px;}
.y23_c00028{bottom:55.815006px;}
.y22_c00028{bottom:135.368706px;}
.y21_c00028{bottom:166.686006px;}
.y20_c00028{bottom:198.017706px;}
.y1f_c00028{bottom:228.975006px;}
.y1d_c00028{bottom:260.274306px;}
.y1e_c00028{bottom:260.280006px;}
.y1c_c00028{bottom:291.975006px;}
.y1b_c00028{bottom:323.280306px;}
.y1a_c00028{bottom:355.334406px;}
.y19_c00028{bottom:386.645706px;}
.y18_c00028{bottom:417.974706px;}
.y17_c00028{bottom:449.286006px;}
.y16_c00028{bottom:480.615006px;}
.y15_c00028{bottom:542.880006px;}
.y14_c00028{bottom:574.215006px;}
.y13_c00028{bottom:605.535006px;}
.y12_c00028{bottom:636.855006px;}
.y11_c00028{bottom:667.800006px;}
.y10_c00028{bottom:731.175006px;}
.yf_c00028{bottom:794.168706px;}
.ye_c00028{bottom:825.480006px;}
.yd_c00028{bottom:825.483006px;}
.yc_c00028{bottom:857.520006px;}
.yb_c00028{bottom:857.537406px;}
.ya_c00028{bottom:888.848706px;}
.y9_c00028{bottom:920.168706px;}
.y8_c00028{bottom:951.480006px;}
.y7_c00028{bottom:982.455006px;}
.y6_c00028{bottom:982.463706px;}
.y5_c00028{bottom:1013.792406px;}
.y4_c00028{bottom:1045.103706px;}
.y3_c00028{bottom:1076.415006px;}
.y2_c00028{bottom:1108.095006px;}
.y1_c00028{bottom:1184.775006px;}
.h5_c00028{height:36.443520px;}
.h2_c00028{height:60.064453px;}
.h3_c00028{height:69.486328px;}
.hc_c00028{height:69.488728px;}
.h9_c00028{height:70.040332px;}
.hd_c00028{height:70.076700px;}
.h8_c00028{height:70.087500px;}
.ha_c00028{height:71.806055px;}
.h6_c00028{height:71.930044px;}
.he_c00028{height:72.995531px;}
.h4_c00028{height:73.146806px;}
.hb_c00028{height:75.093750px;}
.h7_c00028{height:82.174512px;}
.h1_c00028{height:1263.000000px;}
.h0_c00028{height:1263.240006px;}
.w1_c00028{width:892.500000px;}
.w0_c00028{width:892.799998px;}
.x0_c00028{left:0.000000px;}
.x15_c00028{left:121.315199px;}
.x11_c00028{left:122.594999px;}
.xd_c00028{left:123.693599px;}
.x3_c00028{left:124.896598px;}
.x2_c00028{left:125.924998px;}
.x1_c00028{left:127.004999px;}
.x13_c00028{left:136.649998px;}
.x12_c00028{left:140.729998px;}
.x14_c00028{left:177.044998px;}
.x6_c00028{left:265.169999px;}
.x7_c00028{left:301.574998px;}
.x10_c00028{left:338.984998px;}
.xe_c00028{left:351.569998px;}
.xf_c00028{left:382.154999px;}
.x18_c00028{left:391.484998px;}
.x19_c00028{left:417.929999px;}
.x1c_c00028{left:429.029999px;}
.x8_c00028{left:545.954998px;}
.x1a_c00028{left:554.954998px;}
.x9_c00028{left:569.189999px;}
.x1b_c00028{left:576.824998px;}
.xa_c00028{left:580.829998px;}
.x4_c00028{left:593.654998px;}
.x16_c00028{left:605.354998px;}
.xb_c00028{left:609.449998px;}
.x17_c00028{left:632.369999px;}
.xc_c00028{left:636.674999px;}
.x5_c00028{left:644.939999px;}
@media print{
.v2_c00028{vertical-align:-30.666667pt;}
.v0_c00028{vertical-align:0.000000pt;}
.v1_c00028{vertical-align:30.666667pt;}
.ls7a_c00028{letter-spacing:-2.277333pt;}
.ls7d_c00028{letter-spacing:-2.240000pt;}
.ls77_c00028{letter-spacing:-2.221333pt;}
.ls54_c00028{letter-spacing:-2.202667pt;}
.lsa6_c00028{letter-spacing:-2.136107pt;}
.ls4e_c00028{letter-spacing:-2.133440pt;}
.ls42_c00028{letter-spacing:-2.114560pt;}
.ls6b_c00028{letter-spacing:-2.095680pt;}
.ls73_c00028{letter-spacing:-2.090667pt;}
.ls66_c00028{letter-spacing:-2.064213pt;}
.ls45_c00028{letter-spacing:-1.774720pt;}
.ls8c_c00028{letter-spacing:-1.730667pt;}
.ls6e_c00028{letter-spacing:-1.729600pt;}
.ls76_c00028{letter-spacing:-1.648853pt;}
.ls37_c00028{letter-spacing:-1.642560pt;}
.ls89_c00028{letter-spacing:-1.592213pt;}
.ls4a_c00028{letter-spacing:-1.566240pt;}
.lsa8_c00028{letter-spacing:-1.555200pt;}
.ls72_c00028{letter-spacing:-1.478773pt;}
.ls49_c00028{letter-spacing:-1.434880pt;}
.ls69_c00028{letter-spacing:-1.327893pt;}
.lsa7_c00028{letter-spacing:-1.283840pt;}
.ls70_c00028{letter-spacing:-1.282027pt;}
.ls60_c00028{letter-spacing:-1.264960pt;}
.ls6a_c00028{letter-spacing:-1.252373pt;}
.ls2c_c00028{letter-spacing:-1.176853pt;}
.ls52_c00028{letter-spacing:-1.170560pt;}
.ls2d_c00028{letter-spacing:-1.139093pt;}
.ls6c_c00028{letter-spacing:-1.132800pt;}
.ls9d_c00028{letter-spacing:-1.101333pt;}
.lsaa_c00028{letter-spacing:-1.095040pt;}
.ls81_c00028{letter-spacing:-1.013227pt;}
.ls47_c00028{letter-spacing:-1.006933pt;}
.ls78_c00028{letter-spacing:-0.988053pt;}
.ls51_c00028{letter-spacing:-0.962880pt;}
.ls71_c00028{letter-spacing:-0.945653pt;}
.ls79_c00028{letter-spacing:-0.944000pt;}
.ls83_c00028{letter-spacing:-0.925120pt;}
.ls39_c00028{letter-spacing:-0.918827pt;}
.lsac_c00028{letter-spacing:-0.893653pt;}
.lsa2_c00028{letter-spacing:-0.868480pt;}
.ls88_c00028{letter-spacing:-0.855893pt;}
.ls2f_c00028{letter-spacing:-0.849600pt;}
.ls4b_c00028{letter-spacing:-0.830720pt;}
.ls8d_c00028{letter-spacing:-0.824427pt;}
.ls9c_c00028{letter-spacing:-0.818133pt;}
.ls40_c00028{letter-spacing:-0.786667pt;}
.ls93_c00028{letter-spacing:-0.767787pt;}
.lsa0_c00028{letter-spacing:-0.748907pt;}
.ls5b_c00028{letter-spacing:-0.736320pt;}
.ls33_c00028{letter-spacing:-0.730027pt;}
.ls3f_c00028{letter-spacing:-0.723733pt;}
.ls98_c00028{letter-spacing:-0.717440pt;}
.lsa9_c00028{letter-spacing:-0.711147pt;}
.ls90_c00028{letter-spacing:-0.704853pt;}
.ls99_c00028{letter-spacing:-0.692267pt;}
.lsa5_c00028{letter-spacing:-0.679680pt;}
.ls38_c00028{letter-spacing:-0.667093pt;}
.ls9e_c00028{letter-spacing:-0.660800pt;}
.ls4d_c00028{letter-spacing:-0.648213pt;}
.ls94_c00028{letter-spacing:-0.629333pt;}
.ls8f_c00028{letter-spacing:-0.623040pt;}
.ls2e_c00028{letter-spacing:-0.616747pt;}
.ls61_c00028{letter-spacing:-0.610453pt;}
.ls31_c00028{letter-spacing:-0.604160pt;}
.ls95_c00028{letter-spacing:-0.585280pt;}
.ls55_c00028{letter-spacing:-0.572693pt;}
.ls3b_c00028{letter-spacing:-0.566400pt;}
.ls5c_c00028{letter-spacing:-0.553813pt;}
.ls29_c00028{letter-spacing:-0.547520pt;}
.ls85_c00028{letter-spacing:-0.534933pt;}
.ls74_c00028{letter-spacing:-0.528640pt;}
.ls75_c00028{letter-spacing:-0.522347pt;}
.ls43_c00028{letter-spacing:-0.503467pt;}
.ls2a_c00028{letter-spacing:-0.497173pt;}
.ls46_c00028{letter-spacing:-0.490880pt;}
.lsab_c00028{letter-spacing:-0.484587pt;}
.ls68_c00028{letter-spacing:-0.465707pt;}
.ls4f_c00028{letter-spacing:-0.459413pt;}
.ls56_c00028{letter-spacing:-0.453120pt;}
.ls34_c00028{letter-spacing:-0.446827pt;}
.ls57_c00028{letter-spacing:-0.440533pt;}
.ls48_c00028{letter-spacing:-0.434240pt;}
.ls8e_c00028{letter-spacing:-0.427947pt;}
.ls6d_c00028{letter-spacing:-0.421653pt;}
.ls82_c00028{letter-spacing:-0.415360pt;}
.ls86_c00028{letter-spacing:-0.402773pt;}
.ls2b_c00028{letter-spacing:-0.396480pt;}
.ls5a_c00028{letter-spacing:-0.390187pt;}
.ls64_c00028{letter-spacing:-0.383893pt;}
.ls3c_c00028{letter-spacing:-0.377600pt;}
.ls5e_c00028{letter-spacing:-0.371307pt;}
.ls50_c00028{letter-spacing:-0.365013pt;}
.ls36_c00028{letter-spacing:-0.358720pt;}
.ls5f_c00028{letter-spacing:-0.346133pt;}
.ls3e_c00028{letter-spacing:-0.339840pt;}
.ls87_c00028{letter-spacing:-0.333547pt;}
.ls9a_c00028{letter-spacing:-0.327253pt;}
.ls7b_c00028{letter-spacing:-0.320960pt;}
.ls7e_c00028{letter-spacing:-0.308373pt;}
.ls6f_c00028{letter-spacing:-0.302080pt;}
.ls53_c00028{letter-spacing:-0.295787pt;}
.ls96_c00028{letter-spacing:-0.289493pt;}
.ls44_c00028{letter-spacing:-0.283200pt;}
.ls8a_c00028{letter-spacing:-0.270613pt;}
.ls97_c00028{letter-spacing:-0.264320pt;}
.ls80_c00028{letter-spacing:-0.258027pt;}
.ls59_c00028{letter-spacing:-0.239147pt;}
.ls9b_c00028{letter-spacing:-0.232853pt;}
.ls30_c00028{letter-spacing:-0.220267pt;}
.ls3a_c00028{letter-spacing:-0.207680pt;}
.ls58_c00028{letter-spacing:-0.201387pt;}
.ls41_c00028{letter-spacing:-0.195093pt;}
.ls8b_c00028{letter-spacing:-0.188800pt;}
.ls7f_c00028{letter-spacing:-0.182507pt;}
.ls32_c00028{letter-spacing:-0.176213pt;}
.ls84_c00028{letter-spacing:-0.169920pt;}
.ls67_c00028{letter-spacing:-0.157333pt;}
.ls65_c00028{letter-spacing:-0.151040pt;}
.ls63_c00028{letter-spacing:-0.132160pt;}
.ls35_c00028{letter-spacing:-0.113280pt;}
.ls62_c00028{letter-spacing:-0.100693pt;}
.ls9f_c00028{letter-spacing:-0.094400pt;}
.ls92_c00028{letter-spacing:-0.075520pt;}
.lsa1_c00028{letter-spacing:-0.069227pt;}
.ls5d_c00028{letter-spacing:-0.056640pt;}
.ls4c_c00028{letter-spacing:-0.050347pt;}
.lsa3_c00028{letter-spacing:-0.031467pt;}
.ls3d_c00028{letter-spacing:-0.012587pt;}
.ls27_c00028{letter-spacing:0.000000pt;}
.ls8_c00028{letter-spacing:0.006293pt;}
.ls15_c00028{letter-spacing:0.018880pt;}
.ls3_c00028{letter-spacing:0.025173pt;}
.ls13_c00028{letter-spacing:0.050347pt;}
.ls21_c00028{letter-spacing:0.062933pt;}
.lsa_c00028{letter-spacing:0.075520pt;}
.lsc_c00028{letter-spacing:0.081813pt;}
.ls14_c00028{letter-spacing:0.094400pt;}
.ls5_c00028{letter-spacing:0.100693pt;}
.ls9_c00028{letter-spacing:0.113280pt;}
.ls1a_c00028{letter-spacing:0.144747pt;}
.ls11_c00028{letter-spacing:0.163627pt;}
.ls1_c00028{letter-spacing:0.207680pt;}
.ls22_c00028{letter-spacing:0.220267pt;}
.ls23_c00028{letter-spacing:0.264320pt;}
.ls16_c00028{letter-spacing:0.302080pt;}
.ls18_c00028{letter-spacing:0.339840pt;}
.ls12_c00028{letter-spacing:0.346133pt;}
.ls1c_c00028{letter-spacing:0.371307pt;}
.lsad_c00028{letter-spacing:0.386240pt;}
.ls25_c00028{letter-spacing:0.427947pt;}
.ls19_c00028{letter-spacing:0.446827pt;}
.ls17_c00028{letter-spacing:0.453120pt;}
.ls24_c00028{letter-spacing:0.484587pt;}
.ls1e_c00028{letter-spacing:0.497173pt;}
.lsf_c00028{letter-spacing:0.641920pt;}
.ls7_c00028{letter-spacing:0.667093pt;}
.ls91_c00028{letter-spacing:0.717440pt;}
.ls4_c00028{letter-spacing:0.774080pt;}
.ls1d_c00028{letter-spacing:0.824427pt;}
.ls20_c00028{letter-spacing:0.925120pt;}
.lsd_c00028{letter-spacing:1.006933pt;}
.ls26_c00028{letter-spacing:1.019520pt;}
.ls7c_c00028{letter-spacing:1.044693pt;}
.ls6_c00028{letter-spacing:1.057280pt;}
.lse_c00028{letter-spacing:1.101333pt;}
.ls1f_c00028{letter-spacing:1.157973pt;}
.ls2_c00028{letter-spacing:1.164267pt;}
.lsb_c00028{letter-spacing:1.220907pt;}
.ls28_c00028{letter-spacing:1.735360pt;}
.ls10_c00028{letter-spacing:1.856533pt;}
.ls0_c00028{letter-spacing:2.023680pt;}
.ls1b_c00028{letter-spacing:2.057920pt;}
.lsa4_c00028{letter-spacing:2.441813pt;}
.ws0_c00028{word-spacing:-14.921013pt;}
.ws1_c00028{word-spacing:-10.800000pt;}
.ws2_c00028{word-spacing:0.000000pt;}
._13_c00028{margin-left:-7.202133pt;}
._1d_c00028{margin-left:-5.952533pt;}
._12_c00028{margin-left:-4.582507pt;}
._10_c00028{margin-left:-3.227520pt;}
._0_c00028{margin-left:-1.643520pt;}
._11_c00028{width:1.057280pt;}
._14_c00028{width:2.241387pt;}
._d_c00028{width:3.801173pt;}
._e_c00028{width:5.330453pt;}
._f_c00028{width:6.331093pt;}
._1_c00028{width:7.929067pt;}
._2_c00028{width:9.635093pt;}
._1b_c00028{width:10.610560pt;}
._3_c00028{width:11.573440pt;}
._4_c00028{width:12.907627pt;}
._c_c00028{width:13.870507pt;}
._5_c00028{width:16.371413pt;}
._8_c00028{width:17.998933pt;}
._6_c00028{width:18.955520pt;}
._7_c00028{width:20.522560pt;}
._9_c00028{width:21.718293pt;}
._b_c00028{width:22.800747pt;}
._a_c00028{width:23.763627pt;}
._1c_c00028{width:25.110080pt;}
._15_c00028{width:27.182400pt;}
._18_c00028{width:30.421973pt;}
._16_c00028{width:32.113387pt;}
._19_c00028{width:33.027413pt;}
._17_c00028{width:34.682560pt;}
._1a_c00028{width:36.307733pt;}
.fs6_c00028{font-size:43.200000pt;}
.fs3_c00028{font-size:48.640000pt;}
.fs0_c00028{font-size:54.400000pt;}
.fsb_c00028{font-size:57.600000pt;}
.fs7_c00028{font-size:59.733333pt;}
.fs4_c00028{font-size:61.333333pt;}
.fs2_c00028{font-size:62.400000pt;}
.fs1_c00028{font-size:62.933333pt;}
.fs5_c00028{font-size:63.466667pt;}
.fs9_c00028{font-size:64.000000pt;}
.fs8_c00028{font-size:65.066667pt;}
.fsa_c00028{font-size:66.133333pt;}
.y0_c00028{bottom:0.000000pt;}
.y23_c00028{bottom:49.613339pt;}
.y22_c00028{bottom:120.327739pt;}
.y21_c00028{bottom:148.165339pt;}
.y20_c00028{bottom:176.015739pt;}
.y1f_c00028{bottom:203.533339pt;}
.y1d_c00028{bottom:231.354939pt;}
.y1e_c00028{bottom:231.360005pt;}
.y1c_c00028{bottom:259.533339pt;}
.y1b_c00028{bottom:287.360272pt;}
.y1a_c00028{bottom:315.852805pt;}
.y19_c00028{bottom:343.685072pt;}
.y18_c00028{bottom:371.533072pt;}
.y17_c00028{bottom:399.365339pt;}
.y16_c00028{bottom:427.213339pt;}
.y15_c00028{bottom:482.560005pt;}
.y14_c00028{bottom:510.413339pt;}
.y13_c00028{bottom:538.253339pt;}
.y12_c00028{bottom:566.093339pt;}
.y11_c00028{bottom:593.600005pt;}
.y10_c00028{bottom:649.933339pt;}
.yf_c00028{bottom:705.927739pt;}
.ye_c00028{bottom:733.760005pt;}
.yd_c00028{bottom:733.762672pt;}
.yc_c00028{bottom:762.240005pt;}
.yb_c00028{bottom:762.255472pt;}
.ya_c00028{bottom:790.087739pt;}
.y9_c00028{bottom:817.927739pt;}
.y8_c00028{bottom:845.760005pt;}
.y7_c00028{bottom:873.293339pt;}
.y6_c00028{bottom:873.301072pt;}
.y5_c00028{bottom:901.148805pt;}
.y4_c00028{bottom:928.981072pt;}
.y3_c00028{bottom:956.813339pt;}
.y2_c00028{bottom:984.973339pt;}
.y1_c00028{bottom:1053.133339pt;}
.h5_c00028{height:32.394240pt;}
.h2_c00028{height:53.390625pt;}
.h3_c00028{height:61.765625pt;}
.hc_c00028{height:61.767758pt;}
.h9_c00028{height:62.258073pt;}
.hd_c00028{height:62.290400pt;}
.h8_c00028{height:62.300000pt;}
.ha_c00028{height:63.827604pt;}
.h6_c00028{height:63.937817pt;}
.he_c00028{height:64.884917pt;}
.h4_c00028{height:65.019383pt;}
.hb_c00028{height:66.750000pt;}
.h7_c00028{height:73.044010pt;}
.h1_c00028{height:1122.666667pt;}
.h0_c00028{height:1122.880005pt;}
.w1_c00028{width:793.333333pt;}
.w0_c00028{width:793.599999pt;}
.x0_c00028{left:0.000000pt;}
.x15_c00028{left:107.835732pt;}
.x11_c00028{left:108.973332pt;}
.xd_c00028{left:109.949865pt;}
.x3_c00028{left:111.019199pt;}
.x2_c00028{left:111.933332pt;}
.x1_c00028{left:112.893332pt;}
.x13_c00028{left:121.466665pt;}
.x12_c00028{left:125.093332pt;}
.x14_c00028{left:157.373332pt;}
.x6_c00028{left:235.706665pt;}
.x7_c00028{left:268.066665pt;}
.x10_c00028{left:301.319999pt;}
.xe_c00028{left:312.506665pt;}
.xf_c00028{left:339.693332pt;}
.x18_c00028{left:347.986665pt;}
.x19_c00028{left:371.493332pt;}
.x1c_c00028{left:381.359999pt;}
.x8_c00028{left:485.293332pt;}
.x1a_c00028{left:493.293332pt;}
.x9_c00028{left:505.946665pt;}
.x1b_c00028{left:512.733332pt;}
.xa_c00028{left:516.293332pt;}
.x4_c00028{left:527.693332pt;}
.x16_c00028{left:538.093332pt;}
.xb_c00028{left:541.733332pt;}
.x17_c00028{left:562.106665pt;}
.xc_c00028{left:565.933332pt;}
.x5_c00028{left:573.279999pt;}
}





/* 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_c00029 {
    display:none;
  }
  .loading-indicator_c00029.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00029 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_c00029 { 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_c00029" -> "#page-container .classname_c00029")
 */
.pf_c00029 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00029 { /* 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_c00029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00029 { /* 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_c00029 { /* 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_c00029 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00029 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00029 {overflow:visible;}
  }
}
.c_c00029 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00029 { /* 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_c00029:after { /* webkit #35443 */
  content: '';
}
.t_c00029:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00029 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 */
}
.__c00029 { /* 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_c00029 { /* info for Javascript */
  display:none;
}
.l_c00029 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00029 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00029 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00029: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_c00029 {
    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_c00029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00029.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_c00029 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00029;src:url('chunks/assets/font_0ef116f977d0b1b8bd5ba9c9.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.311035;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_c00029;src:url('chunks/assets/font_ba03480de99ba10774f54305.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.284668;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_c00029;src:url('chunks/assets/font_3505aa400932382dbb3ab36a.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:0.666000;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_c00029;src:url('chunks/assets/font_2478aab745d141e5b4fa7bfd.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;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;}
.m18_c00029{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.me_c00029{transform:matrix(0.085526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085526,0.000000,0.000000,0.250000,0,0);}
.m3_c00029{transform:matrix(0.101878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101878,0.000000,0.000000,0.250000,0,0);}
.m13_c00029{transform:matrix(0.107785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107785,0.000000,0.000000,0.250000,0,0);}
.m14_c00029{transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);}
.mf_c00029{transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);}
.m5_c00029{transform:matrix(0.140374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140374,0.000000,0.000000,0.250000,0,0);}
.m10_c00029{transform:matrix(0.169379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169379,0.000000,0.000000,0.250000,0,0);}
.m12_c00029{transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);}
.mb_c00029{transform:matrix(0.198883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198883,0.000000,0.000000,0.250000,0,0);}
.m11_c00029{transform:matrix(0.208407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208407,0.000000,0.000000,0.250000,0,0);}
.m17_c00029{transform:matrix(0.219238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219238,0.000000,0.000000,0.250000,0,0);}
.m4_c00029{transform:matrix(0.229106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229106,0.000000,0.000000,0.250000,0,0);}
.ma_c00029{transform:matrix(0.230845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230845,0.000000,0.000000,0.250000,0,0);}
.mc_c00029{transform:matrix(0.247317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247317,0.000000,0.000000,0.250000,0,0);}
.m0_c00029{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);}
.m2_c00029{transform:matrix(0.250181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250181,0.000000,0.000000,0.250000,0,0);}
.m8_c00029{transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);}
.md_c00029{transform:matrix(0.253652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253652,0.000000,0.000000,0.250000,0,0);}
.m9_c00029{transform:matrix(0.258189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258189,0.000000,0.000000,0.250000,0,0);}
.m6_c00029{transform:matrix(0.259713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259713,0.000000,0.000000,0.250000,0,0);}
.m19_c00029{transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);}
.m1_c00029{transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);}
.m7_c00029{transform:matrix(0.350491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350491,0.000000,0.000000,0.250000,0,0);}
.m16_c00029{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.m15_c00029{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls19_c00029{letter-spacing:-9.219021px;}
.ls18_c00029{letter-spacing:-2.268000px;}
.ls1f_c00029{letter-spacing:-2.205000px;}
.ls29_c00029{letter-spacing:-2.034900px;}
.ls27_c00029{letter-spacing:-2.003400px;}
.ls2e_c00029{letter-spacing:-1.932000px;}
.ls21_c00029{letter-spacing:-1.688400px;}
.ls24_c00029{letter-spacing:-1.474200px;}
.ls23_c00029{letter-spacing:-1.241100px;}
.ls2c_c00029{letter-spacing:-1.239021px;}
.ls20_c00029{letter-spacing:-1.197000px;}
.ls2b_c00029{letter-spacing:-1.176000px;}
.ls2d_c00029{letter-spacing:-0.966000px;}
.ls2f_c00029{letter-spacing:-0.882000px;}
.ls1c_c00029{letter-spacing:-0.544680px;}
.ls25_c00029{letter-spacing:-0.365400px;}
.ls22_c00029{letter-spacing:-0.132300px;}
.ls26_c00029{letter-spacing:-0.107100px;}
.ls17_c00029{letter-spacing:-0.084840px;}
.ls28_c00029{letter-spacing:-0.006300px;}
.ls13_c00029{letter-spacing:0.000000px;}
.lsa_c00029{letter-spacing:0.006300px;}
.ls12_c00029{letter-spacing:0.012600px;}
.ls10_c00029{letter-spacing:0.018900px;}
.ls8_c00029{letter-spacing:0.119700px;}
.ls11_c00029{letter-spacing:0.132300px;}
.ls6_c00029{letter-spacing:0.195300px;}
.ls4_c00029{letter-spacing:0.220500px;}
.lsc_c00029{letter-spacing:0.226800px;}
.lsb_c00029{letter-spacing:0.239400px;}
.lsd_c00029{letter-spacing:0.327600px;}
.ls5_c00029{letter-spacing:0.567000px;}
.lse_c00029{letter-spacing:0.655200px;}
.ls1e_c00029{letter-spacing:0.749700px;}
.ls7_c00029{letter-spacing:0.856800px;}
.ls9_c00029{letter-spacing:0.875700px;}
.ls1a_c00029{letter-spacing:0.907200px;}
.ls2_c00029{letter-spacing:0.924120px;}
.ls1d_c00029{letter-spacing:0.973080px;}
.ls30_c00029{letter-spacing:1.050030px;}
.ls3_c00029{letter-spacing:1.071000px;}
.ls15_c00029{letter-spacing:1.236240px;}
.lsf_c00029{letter-spacing:1.493100px;}
.ls0_c00029{letter-spacing:1.507380px;}
.ls14_c00029{letter-spacing:1.693620px;}
.ls1_c00029{letter-spacing:2.184840px;}
.ls16_c00029{letter-spacing:3.060000px;}
.ls1b_c00029{letter-spacing:3.240000px;}
.ls2a_c00029{letter-spacing:3.510000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{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__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00029{word-spacing:0.000000px;}
._3_c00029{margin-left:-2.876400px;}
._0_c00029{width:1.293180px;}
._7_c00029{width:5.430600px;}
._a_c00029{width:6.835500px;}
._8_c00029{width:8.070300px;}
._1_c00029{width:10.006200px;}
._9_c00029{width:11.541600px;}
._2_c00029{width:13.751640px;}
._5_c00029{width:17.703000px;}
._4_c00029{width:19.146960px;}
._6_c00029{width:21.438900px;}
.fc0_c00029{color:transparent;}
.fs18_c00029{font-size:11.520000px;}
.fs19_c00029{font-size:12.960000px;}
.fs1c_c00029{font-size:21.000600px;}
.fs16_c00029{font-size:23.400600px;}
.fs1a_c00029{font-size:25.200000px;}
.fs1d_c00029{font-size:26.400600px;}
.fs12_c00029{font-size:27.600000px;}
.fs14_c00029{font-size:28.800600px;}
.fs10_c00029{font-size:33.600000px;}
.fs17_c00029{font-size:34.560000px;}
.fs11_c00029{font-size:35.400600px;}
.fs1b_c00029{font-size:37.440000px;}
.fsf_c00029{font-size:41.400600px;}
.fse_c00029{font-size:44.640600px;}
.fs2_c00029{font-size:46.080000px;}
.fsd_c00029{font-size:54.720000px;}
.fs13_c00029{font-size:55.200000px;}
.fs4_c00029{font-size:57.600000px;}
.fs0_c00029{font-size:58.200000px;}
.fs5_c00029{font-size:60.600000px;}
.fs1_c00029{font-size:61.200000px;}
.fsb_c00029{font-size:63.000000px;}
.fs6_c00029{font-size:64.800000px;}
.fs15_c00029{font-size:66.000000px;}
.fsc_c00029{font-size:70.200000px;}
.fs7_c00029{font-size:76.800000px;}
.fs9_c00029{font-size:78.600000px;}
.fsa_c00029{font-size:85.200000px;}
.fs3_c00029{font-size:148.800000px;}
.fs8_c00029{font-size:263.400600px;}
.y0_c00029{bottom:0.000000px;}
.y10_c00029{bottom:68.775015px;}
.yf_c00029{bottom:133.566015px;}
.ye_c00029{bottom:152.655015px;}
.yd_c00029{bottom:152.662515px;}
.yc_c00029{bottom:171.720015px;}
.y6_c00029{bottom:298.455015px;}
.yb_c00029{bottom:372.255015px;}
.y22_c00029{bottom:526.335015px;}
.y21_c00029{bottom:533.175015px;}
.y20_c00029{bottom:539.655015px;}
.y1f_c00029{bottom:551.520015px;}
.y1e_c00029{bottom:563.760015px;}
.y1d_c00029{bottom:578.520015px;}
.y1c_c00029{bottom:590.760015px;}
.y1b_c00029{bottom:600.135015px;}
.y1a_c00029{bottom:615.600015px;}
.y19_c00029{bottom:619.215015px;}
.y18_c00029{bottom:639.375015px;}
.ya_c00029{bottom:642.255015px;}
.y17_c00029{bottom:644.400015px;}
.y5_c00029{bottom:648.375015px;}
.y16_c00029{bottom:665.655015px;}
.y4_c00029{bottom:668.175015px;}
.y15_c00029{bottom:671.400015px;}
.y14_c00029{bottom:676.440015px;}
.y3_c00029{bottom:680.055015px;}
.y13_c00029{bottom:695.520015px;}
.y12_c00029{bottom:701.655015px;}
.y9_c00029{bottom:704.895015px;}
.y11_c00029{bottom:717.135015px;}
.y2_c00029{bottom:883.440015px;}
.y8_c00029{bottom:1018.440015px;}
.y7_c00029{bottom:1128.600015px;}
.y1_c00029{bottom:1191.255015px;}
.h1b_c00029{height:7.672320px;}
.h1c_c00029{height:8.631360px;}
.h1f_c00029{height:21.902970px;}
.h1a_c00029{height:23.016960px;}
.h19_c00029{height:24.406095px;}
.h1e_c00029{height:24.935040px;}
.h20_c00029{height:25.910745px;}
.h1d_c00029{height:26.282813px;}
.h14_c00029{height:28.785937px;}
.h10_c00029{height:29.730640px;}
.h16_c00029{height:30.038126px;}
.h4_c00029{height:30.689280px;}
.h12_c00029{height:32.976562px;}
.h13_c00029{height:34.743753px;}
.hf_c00029{height:36.443520px;}
.h6_c00029{height:38.361600px;}
.h11_c00029{height:40.632425px;}
.h15_c00029{height:57.571875px;}
.h2_c00029{height:58.654687px;}
.h7_c00029{height:59.475586px;}
.h3_c00029{height:60.064453px;}
.hd_c00029{height:61.831055px;}
.h8_c00029{height:63.597656px;}
.h18_c00029{height:68.835938px;}
.he_c00029{height:68.897461px;}
.h9_c00029{height:75.375000px;}
.hb_c00029{height:77.141602px;}
.h17_c00029{height:80.100000px;}
.hc_c00029{height:83.619141px;}
.h5_c00029{height:146.039062px;}
.ha_c00029{height:274.718595px;}
.h1_c00029{height:1263.000000px;}
.h0_c00029{height:1263.240015px;}
.w1_c00029{width:892.500000px;}
.w0_c00029{width:892.800000px;}
.x0_c00029{left:0.000000px;}
.x16_c00029{left:125.102250px;}
.x1_c00029{left:126.285000px;}
.x14_c00029{left:176.610000px;}
.x15_c00029{left:195.300000px;}
.x2_c00029{left:271.005000px;}
.x5_c00029{left:296.295000px;}
.x6_c00029{left:302.235000px;}
.x3_c00029{left:308.175000px;}
.x7_c00029{left:329.250000px;}
.x4_c00029{left:344.715000px;}
.x8_c00029{left:400.335000px;}
.x1b_c00029{left:428.295000px;}
.x11_c00029{left:437.910000px;}
.x17_c00029{left:461.745000px;}
.x18_c00029{left:485.565000px;}
.x9_c00029{left:496.680000px;}
.xa_c00029{left:563.235000px;}
.x13_c00029{left:582.615000px;}
.xd_c00029{left:587.715000px;}
.xb_c00029{left:619.395000px;}
.xe_c00029{left:628.410000px;}
.xc_c00029{left:646.680000px;}
.xf_c00029{left:651.465000px;}
.x19_c00029{left:652.875000px;}
.x1a_c00029{left:669.810000px;}
.x12_c00029{left:685.635000px;}
.x10_c00029{left:748.650000px;}
.x1d_c00029{left:854.655000px;}
.x1c_c00029{left:855.720000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls19_c00029{letter-spacing:-8.194685pt;}
.ls18_c00029{letter-spacing:-2.016000pt;}
.ls1f_c00029{letter-spacing:-1.960000pt;}
.ls29_c00029{letter-spacing:-1.808800pt;}
.ls27_c00029{letter-spacing:-1.780800pt;}
.ls2e_c00029{letter-spacing:-1.717333pt;}
.ls21_c00029{letter-spacing:-1.500800pt;}
.ls24_c00029{letter-spacing:-1.310400pt;}
.ls23_c00029{letter-spacing:-1.103200pt;}
.ls2c_c00029{letter-spacing:-1.101352pt;}
.ls20_c00029{letter-spacing:-1.064000pt;}
.ls2b_c00029{letter-spacing:-1.045333pt;}
.ls2d_c00029{letter-spacing:-0.858667pt;}
.ls2f_c00029{letter-spacing:-0.784000pt;}
.ls1c_c00029{letter-spacing:-0.484160pt;}
.ls25_c00029{letter-spacing:-0.324800pt;}
.ls22_c00029{letter-spacing:-0.117600pt;}
.ls26_c00029{letter-spacing:-0.095200pt;}
.ls17_c00029{letter-spacing:-0.075413pt;}
.ls28_c00029{letter-spacing:-0.005600pt;}
.ls13_c00029{letter-spacing:0.000000pt;}
.lsa_c00029{letter-spacing:0.005600pt;}
.ls12_c00029{letter-spacing:0.011200pt;}
.ls10_c00029{letter-spacing:0.016800pt;}
.ls8_c00029{letter-spacing:0.106400pt;}
.ls11_c00029{letter-spacing:0.117600pt;}
.ls6_c00029{letter-spacing:0.173600pt;}
.ls4_c00029{letter-spacing:0.196000pt;}
.lsc_c00029{letter-spacing:0.201600pt;}
.lsb_c00029{letter-spacing:0.212800pt;}
.lsd_c00029{letter-spacing:0.291200pt;}
.ls5_c00029{letter-spacing:0.504000pt;}
.lse_c00029{letter-spacing:0.582400pt;}
.ls1e_c00029{letter-spacing:0.666400pt;}
.ls7_c00029{letter-spacing:0.761600pt;}
.ls9_c00029{letter-spacing:0.778400pt;}
.ls1a_c00029{letter-spacing:0.806400pt;}
.ls2_c00029{letter-spacing:0.821440pt;}
.ls1d_c00029{letter-spacing:0.864960pt;}
.ls30_c00029{letter-spacing:0.933360pt;}
.ls3_c00029{letter-spacing:0.952000pt;}
.ls15_c00029{letter-spacing:1.098880pt;}
.lsf_c00029{letter-spacing:1.327200pt;}
.ls0_c00029{letter-spacing:1.339893pt;}
.ls14_c00029{letter-spacing:1.505440pt;}
.ls1_c00029{letter-spacing:1.942080pt;}
.ls16_c00029{letter-spacing:2.720000pt;}
.ls1b_c00029{letter-spacing:2.880000pt;}
.ls2a_c00029{letter-spacing:3.120000pt;}
.ws0_c00029{word-spacing:0.000000pt;}
._3_c00029{margin-left:-2.556800pt;}
._0_c00029{width:1.149493pt;}
._7_c00029{width:4.827200pt;}
._a_c00029{width:6.076000pt;}
._8_c00029{width:7.173600pt;}
._1_c00029{width:8.894400pt;}
._9_c00029{width:10.259200pt;}
._2_c00029{width:12.223680pt;}
._5_c00029{width:15.736000pt;}
._4_c00029{width:17.019520pt;}
._6_c00029{width:19.056800pt;}
.fs18_c00029{font-size:10.240000pt;}
.fs19_c00029{font-size:11.520000pt;}
.fs1c_c00029{font-size:18.667200pt;}
.fs16_c00029{font-size:20.800533pt;}
.fs1a_c00029{font-size:22.400000pt;}
.fs1d_c00029{font-size:23.467200pt;}
.fs12_c00029{font-size:24.533333pt;}
.fs14_c00029{font-size:25.600533pt;}
.fs10_c00029{font-size:29.866667pt;}
.fs17_c00029{font-size:30.720000pt;}
.fs11_c00029{font-size:31.467200pt;}
.fs1b_c00029{font-size:33.280000pt;}
.fsf_c00029{font-size:36.800533pt;}
.fse_c00029{font-size:39.680533pt;}
.fs2_c00029{font-size:40.960000pt;}
.fsd_c00029{font-size:48.640000pt;}
.fs13_c00029{font-size:49.066667pt;}
.fs4_c00029{font-size:51.200000pt;}
.fs0_c00029{font-size:51.733333pt;}
.fs5_c00029{font-size:53.866667pt;}
.fs1_c00029{font-size:54.400000pt;}
.fsb_c00029{font-size:56.000000pt;}
.fs6_c00029{font-size:57.600000pt;}
.fs15_c00029{font-size:58.666667pt;}
.fsc_c00029{font-size:62.400000pt;}
.fs7_c00029{font-size:68.266667pt;}
.fs9_c00029{font-size:69.866667pt;}
.fsa_c00029{font-size:75.733333pt;}
.fs3_c00029{font-size:132.266667pt;}
.fs8_c00029{font-size:234.133867pt;}
.y0_c00029{bottom:0.000000pt;}
.y10_c00029{bottom:61.133347pt;}
.yf_c00029{bottom:118.725347pt;}
.ye_c00029{bottom:135.693347pt;}
.yd_c00029{bottom:135.700013pt;}
.yc_c00029{bottom:152.640013pt;}
.y6_c00029{bottom:265.293347pt;}
.yb_c00029{bottom:330.893347pt;}
.y22_c00029{bottom:467.853347pt;}
.y21_c00029{bottom:473.933347pt;}
.y20_c00029{bottom:479.693347pt;}
.y1f_c00029{bottom:490.240013pt;}
.y1e_c00029{bottom:501.120013pt;}
.y1d_c00029{bottom:514.240013pt;}
.y1c_c00029{bottom:525.120013pt;}
.y1b_c00029{bottom:533.453347pt;}
.y1a_c00029{bottom:547.200013pt;}
.y19_c00029{bottom:550.413347pt;}
.y18_c00029{bottom:568.333347pt;}
.ya_c00029{bottom:570.893347pt;}
.y17_c00029{bottom:572.800013pt;}
.y5_c00029{bottom:576.333347pt;}
.y16_c00029{bottom:591.693347pt;}
.y4_c00029{bottom:593.933347pt;}
.y15_c00029{bottom:596.800013pt;}
.y14_c00029{bottom:601.280013pt;}
.y3_c00029{bottom:604.493347pt;}
.y13_c00029{bottom:618.240013pt;}
.y12_c00029{bottom:623.693347pt;}
.y9_c00029{bottom:626.573347pt;}
.y11_c00029{bottom:637.453347pt;}
.y2_c00029{bottom:785.280013pt;}
.y8_c00029{bottom:905.280013pt;}
.y7_c00029{bottom:1003.200013pt;}
.y1_c00029{bottom:1058.893347pt;}
.h1b_c00029{height:6.819840pt;}
.h1c_c00029{height:7.672320pt;}
.h1f_c00029{height:19.469306pt;}
.h1a_c00029{height:20.459520pt;}
.h19_c00029{height:21.694306pt;}
.h1e_c00029{height:22.164480pt;}
.h20_c00029{height:23.031773pt;}
.h1d_c00029{height:23.362500pt;}
.h14_c00029{height:25.587500pt;}
.h10_c00029{height:26.427235pt;}
.h16_c00029{height:26.700556pt;}
.h4_c00029{height:27.279360pt;}
.h12_c00029{height:29.312500pt;}
.h13_c00029{height:30.883336pt;}
.hf_c00029{height:32.394240pt;}
.h6_c00029{height:34.099200pt;}
.h11_c00029{height:36.117711pt;}
.h15_c00029{height:51.175000pt;}
.h2_c00029{height:52.137500pt;}
.h7_c00029{height:52.867187pt;}
.h3_c00029{height:53.390625pt;}
.hd_c00029{height:54.960938pt;}
.h8_c00029{height:56.531250pt;}
.h18_c00029{height:61.187500pt;}
.he_c00029{height:61.242187pt;}
.h9_c00029{height:67.000000pt;}
.hb_c00029{height:68.570312pt;}
.h17_c00029{height:71.200000pt;}
.hc_c00029{height:74.328125pt;}
.h5_c00029{height:129.812500pt;}
.ha_c00029{height:244.194306pt;}
.h1_c00029{height:1122.666667pt;}
.h0_c00029{height:1122.880013pt;}
.w1_c00029{width:793.333333pt;}
.w0_c00029{width:793.600000pt;}
.x0_c00029{left:0.000000pt;}
.x16_c00029{left:111.202000pt;}
.x1_c00029{left:112.253333pt;}
.x14_c00029{left:156.986667pt;}
.x15_c00029{left:173.600000pt;}
.x2_c00029{left:240.893333pt;}
.x5_c00029{left:263.373333pt;}
.x6_c00029{left:268.653333pt;}
.x3_c00029{left:273.933333pt;}
.x7_c00029{left:292.666667pt;}
.x4_c00029{left:306.413333pt;}
.x8_c00029{left:355.853333pt;}
.x1b_c00029{left:380.706667pt;}
.x11_c00029{left:389.253333pt;}
.x17_c00029{left:410.440000pt;}
.x18_c00029{left:431.613333pt;}
.x9_c00029{left:441.493333pt;}
.xa_c00029{left:500.653333pt;}
.x13_c00029{left:517.880000pt;}
.xd_c00029{left:522.413333pt;}
.xb_c00029{left:550.573333pt;}
.xe_c00029{left:558.586667pt;}
.xc_c00029{left:574.826667pt;}
.xf_c00029{left:579.080000pt;}
.x19_c00029{left:580.333333pt;}
.x1a_c00029{left:595.386667pt;}
.x12_c00029{left:609.453333pt;}
.x10_c00029{left:665.466667pt;}
.x1d_c00029{left:759.693333pt;}
.x1c_c00029{left:760.640000pt;}
}





/* 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_c00030 {
    display:none;
  }
  .loading-indicator_c00030.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00030 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_c00030 { 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_c00030" -> "#page-container .classname_c00030")
 */
.pf_c00030 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00030 { /* 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_c00030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00030 { /* 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_c00030 { /* 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_c00030 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00030 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00030 {overflow:visible;}
  }
}
.c_c00030 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00030 { /* 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_c00030:after { /* webkit #35443 */
  content: '';
}
.t_c00030:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00030 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 */
}
.__c00030 { /* 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_c00030 { /* info for Javascript */
  display:none;
}
.l_c00030 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00030 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00030 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00030: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_c00030 {
    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_c00030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00030.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_c00030 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00030;src:url('chunks/assets/font_e17cb3b18ff1f4e49a7898cc.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.284668;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_c00030;src:url('chunks/assets/font_7021b66e61be536e5d581c22.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.284180;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_c00030;src:url('chunks/assets/font_14f932d0c877c476c7df3f31.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;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:ff4_c00030;src:url('chunks/assets/font_c0e5a8493a27632976f8feae.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;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;}
.m3_c00030{transform:matrix(0.097126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097126,0.000000,0.000000,0.250000,0,0);}
.m5_c00030{transform:matrix(0.146934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146934,0.000000,0.000000,0.250000,0,0);}
.m6_c00030{transform:matrix(0.228536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228536,0.000000,0.000000,0.250000,0,0);}
.m4_c00030{transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);}
.m0_c00030{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_c00030{transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);}
.m2_c00030{transform:matrix(0.253609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253609,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.v1_c00030{vertical-align:28.791000px;}
.ls49_c00030{letter-spacing:-2.688000px;}
.ls3c_c00030{letter-spacing:-2.457000px;}
.ls47_c00030{letter-spacing:-2.436000px;}
.ls5e_c00030{letter-spacing:-2.393820px;}
.ls67_c00030{letter-spacing:-2.331000px;}
.ls5f_c00030{letter-spacing:-2.204280px;}
.ls48_c00030{letter-spacing:-2.077920px;}
.ls3d_c00030{letter-spacing:-1.951560px;}
.ls3f_c00030{letter-spacing:-1.916460px;}
.ls44_c00030{letter-spacing:-1.670760px;}
.ls24_c00030{letter-spacing:-1.509300px;}
.ls2a_c00030{letter-spacing:-1.467180px;}
.ls46_c00030{letter-spacing:-1.263600px;}
.ls58_c00030{letter-spacing:-1.235520px;}
.ls41_c00030{letter-spacing:-1.017900px;}
.ls30_c00030{letter-spacing:-0.947700px;}
.ls51_c00030{letter-spacing:-0.849420px;}
.ls55_c00030{letter-spacing:-0.807300px;}
.ls4b_c00030{letter-spacing:-0.793260px;}
.ls52_c00030{letter-spacing:-0.786240px;}
.ls2b_c00030{letter-spacing:-0.772200px;}
.ls23_c00030{letter-spacing:-0.765180px;}
.ls38_c00030{letter-spacing:-0.744120px;}
.ls64_c00030{letter-spacing:-0.716040px;}
.ls43_c00030{letter-spacing:-0.673920px;}
.ls2d_c00030{letter-spacing:-0.666900px;}
.ls56_c00030{letter-spacing:-0.638820px;}
.ls29_c00030{letter-spacing:-0.624780px;}
.ls3a_c00030{letter-spacing:-0.610740px;}
.ls37_c00030{letter-spacing:-0.596700px;}
.ls50_c00030{letter-spacing:-0.582660px;}
.ls28_c00030{letter-spacing:-0.512460px;}
.ls2f_c00030{letter-spacing:-0.484380px;}
.ls4c_c00030{letter-spacing:-0.470340px;}
.ls66_c00030{letter-spacing:-0.463320px;}
.ls34_c00030{letter-spacing:-0.449280px;}
.ls25_c00030{letter-spacing:-0.442260px;}
.ls63_c00030{letter-spacing:-0.428220px;}
.ls39_c00030{letter-spacing:-0.414180px;}
.ls4a_c00030{letter-spacing:-0.400140px;}
.ls45_c00030{letter-spacing:-0.393120px;}
.ls5a_c00030{letter-spacing:-0.386100px;}
.ls32_c00030{letter-spacing:-0.358020px;}
.ls4e_c00030{letter-spacing:-0.336960px;}
.ls31_c00030{letter-spacing:-0.329940px;}
.ls27_c00030{letter-spacing:-0.322920px;}
.ls59_c00030{letter-spacing:-0.259740px;}
.ls42_c00030{letter-spacing:-0.252720px;}
.ls5d_c00030{letter-spacing:-0.217620px;}
.ls5c_c00030{letter-spacing:-0.203580px;}
.ls57_c00030{letter-spacing:-0.196560px;}
.ls33_c00030{letter-spacing:-0.182520px;}
.ls3e_c00030{letter-spacing:-0.168480px;}
.ls26_c00030{letter-spacing:-0.161460px;}
.ls2e_c00030{letter-spacing:-0.154440px;}
.ls2c_c00030{letter-spacing:-0.133380px;}
.ls53_c00030{letter-spacing:-0.126360px;}
.ls61_c00030{letter-spacing:-0.105300px;}
.ls20_c00030{letter-spacing:-0.098280px;}
.ls65_c00030{letter-spacing:-0.091260px;}
.ls60_c00030{letter-spacing:-0.084240px;}
.ls40_c00030{letter-spacing:-0.077220px;}
.ls4f_c00030{letter-spacing:-0.070200px;}
.ls62_c00030{letter-spacing:-0.028080px;}
.ls54_c00030{letter-spacing:-0.021060px;}
.ls5b_c00030{letter-spacing:-0.014040px;}
.ls36_c00030{letter-spacing:-0.007020px;}
.ls1e_c00030{letter-spacing:0.000000px;}
.ls35_c00030{letter-spacing:0.007020px;}
.lsb_c00030{letter-spacing:0.014040px;}
.ls4d_c00030{letter-spacing:0.035100px;}
.ls4_c00030{letter-spacing:0.042120px;}
.ls17_c00030{letter-spacing:0.056160px;}
.ls5_c00030{letter-spacing:0.063180px;}
.ls15_c00030{letter-spacing:0.070200px;}
.ls3_c00030{letter-spacing:0.077220px;}
.ls9_c00030{letter-spacing:0.091260px;}
.lsf_c00030{letter-spacing:0.112320px;}
.ls7_c00030{letter-spacing:0.161460px;}
.ls18_c00030{letter-spacing:0.245700px;}
.ls3b_c00030{letter-spacing:0.273780px;}
.lsd_c00030{letter-spacing:0.393120px;}
.ls1c_c00030{letter-spacing:0.400140px;}
.ls12_c00030{letter-spacing:0.428220px;}
.ls1d_c00030{letter-spacing:0.449280px;}
.ls11_c00030{letter-spacing:0.491400px;}
.ls14_c00030{letter-spacing:0.526500px;}
.ls6_c00030{letter-spacing:0.582660px;}
.ls13_c00030{letter-spacing:0.589680px;}
.ls1a_c00030{letter-spacing:0.610740px;}
.ls8_c00030{letter-spacing:0.673920px;}
.lsc_c00030{letter-spacing:0.926640px;}
.ls19_c00030{letter-spacing:0.933660px;}
.ls1_c00030{letter-spacing:0.940680px;}
.ls10_c00030{letter-spacing:1.141440px;}
.ls16_c00030{letter-spacing:1.172340px;}
.ls2_c00030{letter-spacing:1.263600px;}
.ls1b_c00030{letter-spacing:1.425060px;}
.lse_c00030{letter-spacing:1.755000px;}
.lsa_c00030{letter-spacing:1.818180px;}
.ls1f_c00030{letter-spacing:1.952280px;}
.ls0_c00030{letter-spacing:2.068560px;}
.ls21_c00030{letter-spacing:3.460860px;}
.ls22_c00030{letter-spacing:3.510000px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{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__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00030{word-spacing:-16.967340px;}
.ws1_c00030{word-spacing:0.000000px;}
._d_c00030{margin-left:-4.683240px;}
._0_c00030{margin-left:-2.856240px;}
._c_c00030{margin-left:-1.326780px;}
._8_c00030{width:1.144260px;}
._6_c00030{width:2.758860px;}
._7_c00030{width:4.717440px;}
._9_c00030{width:6.163560px;}
._a_c00030{width:7.700940px;}
._5_c00030{width:9.245340px;}
._b_c00030{width:10.845900px;}
._4_c00030{width:11.908680px;}
._1_c00030{width:14.162880px;}
._3_c00030{width:15.879240px;}
._2_c00030{width:19.354140px;}
._11_c00030{width:21.832200px;}
._10_c00030{width:22.885200px;}
._e_c00030{width:24.015420px;}
._f_c00030{width:26.282880px;}
.fc0_c00030{color:transparent;}
.fs5_c00030{font-size:32.400600px;}
.fs0_c00030{font-size:61.200000px;}
.fs6_c00030{font-size:66.600000px;}
.fs3_c00030{font-size:69.600000px;}
.fs1_c00030{font-size:70.200000px;}
.fs2_c00030{font-size:73.800000px;}
.fs4_c00030{font-size:76.800000px;}
.y0_c00030{bottom:0.000000px;}
.y11_c00030{bottom:60.495000px;}
.y10_c00030{bottom:641.523750px;}
.yf_c00030{bottom:672.850500px;}
.ye_c00030{bottom:704.177250px;}
.yd_c00030{bottom:735.850050px;}
.yc_c00030{bottom:798.137250px;}
.yb_c00030{bottom:829.815000px;}
.ya_c00030{bottom:829.817250px;}
.y9_c00030{bottom:861.497250px;}
.y8_c00030{bottom:893.175000px;}
.y6_c00030{bottom:955.805850px;}
.y7_c00030{bottom:955.815000px;}
.y5_c00030{bottom:986.746500px;}
.y4_c00030{bottom:1018.073250px;}
.y3_c00030{bottom:1049.400000px;}
.y2_c00030{bottom:1112.400000px;}
.y1_c00030{bottom:1188.720000px;}
.h2_c00030{height:60.064453px;}
.h9_c00030{height:65.364258px;}
.h3_c00030{height:68.897461px;}
.h7_c00030{height:68.917261px;}
.h8_c00030{height:68.942461px;}
.h4_c00030{height:72.394629px;}
.h5_c00030{height:72.590625px;}
.h6_c00030{height:75.375000px;}
.h1_c00030{height:1263.000000px;}
.h0_c00030{height:1263.240000px;}
.w1_c00030{width:892.500000px;}
.w0_c00030{width:892.800000px;}
.x0_c00030{left:0.000000px;}
.xd_c00030{left:122.951400px;}
.x6_c00030{left:124.109250px;}
.x2_c00030{left:125.430000px;}
.x1_c00030{left:126.645000px;}
.x5_c00030{left:179.265000px;}
.xc_c00030{left:185.649450px;}
.x8_c00030{left:258.705000px;}
.x9_c00030{left:303.315000px;}
.x3_c00030{left:312.390000px;}
.x4_c00030{left:341.460000px;}
.xa_c00030{left:356.700000px;}
.xb_c00030{left:386.475000px;}
.xe_c00030{left:429.750000px;}
.x7_c00030{left:619.065000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.v1_c00030{vertical-align:25.592000pt;}
.ls49_c00030{letter-spacing:-2.389333pt;}
.ls3c_c00030{letter-spacing:-2.184000pt;}
.ls47_c00030{letter-spacing:-2.165333pt;}
.ls5e_c00030{letter-spacing:-2.127840pt;}
.ls67_c00030{letter-spacing:-2.072000pt;}
.ls5f_c00030{letter-spacing:-1.959360pt;}
.ls48_c00030{letter-spacing:-1.847040pt;}
.ls3d_c00030{letter-spacing:-1.734720pt;}
.ls3f_c00030{letter-spacing:-1.703520pt;}
.ls44_c00030{letter-spacing:-1.485120pt;}
.ls24_c00030{letter-spacing:-1.341600pt;}
.ls2a_c00030{letter-spacing:-1.304160pt;}
.ls46_c00030{letter-spacing:-1.123200pt;}
.ls58_c00030{letter-spacing:-1.098240pt;}
.ls41_c00030{letter-spacing:-0.904800pt;}
.ls30_c00030{letter-spacing:-0.842400pt;}
.ls51_c00030{letter-spacing:-0.755040pt;}
.ls55_c00030{letter-spacing:-0.717600pt;}
.ls4b_c00030{letter-spacing:-0.705120pt;}
.ls52_c00030{letter-spacing:-0.698880pt;}
.ls2b_c00030{letter-spacing:-0.686400pt;}
.ls23_c00030{letter-spacing:-0.680160pt;}
.ls38_c00030{letter-spacing:-0.661440pt;}
.ls64_c00030{letter-spacing:-0.636480pt;}
.ls43_c00030{letter-spacing:-0.599040pt;}
.ls2d_c00030{letter-spacing:-0.592800pt;}
.ls56_c00030{letter-spacing:-0.567840pt;}
.ls29_c00030{letter-spacing:-0.555360pt;}
.ls3a_c00030{letter-spacing:-0.542880pt;}
.ls37_c00030{letter-spacing:-0.530400pt;}
.ls50_c00030{letter-spacing:-0.517920pt;}
.ls28_c00030{letter-spacing:-0.455520pt;}
.ls2f_c00030{letter-spacing:-0.430560pt;}
.ls4c_c00030{letter-spacing:-0.418080pt;}
.ls66_c00030{letter-spacing:-0.411840pt;}
.ls34_c00030{letter-spacing:-0.399360pt;}
.ls25_c00030{letter-spacing:-0.393120pt;}
.ls63_c00030{letter-spacing:-0.380640pt;}
.ls39_c00030{letter-spacing:-0.368160pt;}
.ls4a_c00030{letter-spacing:-0.355680pt;}
.ls45_c00030{letter-spacing:-0.349440pt;}
.ls5a_c00030{letter-spacing:-0.343200pt;}
.ls32_c00030{letter-spacing:-0.318240pt;}
.ls4e_c00030{letter-spacing:-0.299520pt;}
.ls31_c00030{letter-spacing:-0.293280pt;}
.ls27_c00030{letter-spacing:-0.287040pt;}
.ls59_c00030{letter-spacing:-0.230880pt;}
.ls42_c00030{letter-spacing:-0.224640pt;}
.ls5d_c00030{letter-spacing:-0.193440pt;}
.ls5c_c00030{letter-spacing:-0.180960pt;}
.ls57_c00030{letter-spacing:-0.174720pt;}
.ls33_c00030{letter-spacing:-0.162240pt;}
.ls3e_c00030{letter-spacing:-0.149760pt;}
.ls26_c00030{letter-spacing:-0.143520pt;}
.ls2e_c00030{letter-spacing:-0.137280pt;}
.ls2c_c00030{letter-spacing:-0.118560pt;}
.ls53_c00030{letter-spacing:-0.112320pt;}
.ls61_c00030{letter-spacing:-0.093600pt;}
.ls20_c00030{letter-spacing:-0.087360pt;}
.ls65_c00030{letter-spacing:-0.081120pt;}
.ls60_c00030{letter-spacing:-0.074880pt;}
.ls40_c00030{letter-spacing:-0.068640pt;}
.ls4f_c00030{letter-spacing:-0.062400pt;}
.ls62_c00030{letter-spacing:-0.024960pt;}
.ls54_c00030{letter-spacing:-0.018720pt;}
.ls5b_c00030{letter-spacing:-0.012480pt;}
.ls36_c00030{letter-spacing:-0.006240pt;}
.ls1e_c00030{letter-spacing:0.000000pt;}
.ls35_c00030{letter-spacing:0.006240pt;}
.lsb_c00030{letter-spacing:0.012480pt;}
.ls4d_c00030{letter-spacing:0.031200pt;}
.ls4_c00030{letter-spacing:0.037440pt;}
.ls17_c00030{letter-spacing:0.049920pt;}
.ls5_c00030{letter-spacing:0.056160pt;}
.ls15_c00030{letter-spacing:0.062400pt;}
.ls3_c00030{letter-spacing:0.068640pt;}
.ls9_c00030{letter-spacing:0.081120pt;}
.lsf_c00030{letter-spacing:0.099840pt;}
.ls7_c00030{letter-spacing:0.143520pt;}
.ls18_c00030{letter-spacing:0.218400pt;}
.ls3b_c00030{letter-spacing:0.243360pt;}
.lsd_c00030{letter-spacing:0.349440pt;}
.ls1c_c00030{letter-spacing:0.355680pt;}
.ls12_c00030{letter-spacing:0.380640pt;}
.ls1d_c00030{letter-spacing:0.399360pt;}
.ls11_c00030{letter-spacing:0.436800pt;}
.ls14_c00030{letter-spacing:0.468000pt;}
.ls6_c00030{letter-spacing:0.517920pt;}
.ls13_c00030{letter-spacing:0.524160pt;}
.ls1a_c00030{letter-spacing:0.542880pt;}
.ls8_c00030{letter-spacing:0.599040pt;}
.lsc_c00030{letter-spacing:0.823680pt;}
.ls19_c00030{letter-spacing:0.829920pt;}
.ls1_c00030{letter-spacing:0.836160pt;}
.ls10_c00030{letter-spacing:1.014613pt;}
.ls16_c00030{letter-spacing:1.042080pt;}
.ls2_c00030{letter-spacing:1.123200pt;}
.ls1b_c00030{letter-spacing:1.266720pt;}
.lse_c00030{letter-spacing:1.560000pt;}
.lsa_c00030{letter-spacing:1.616160pt;}
.ls1f_c00030{letter-spacing:1.735360pt;}
.ls0_c00030{letter-spacing:1.838720pt;}
.ls21_c00030{letter-spacing:3.076320pt;}
.ls22_c00030{letter-spacing:3.120000pt;}
.ws0_c00030{word-spacing:-15.082080pt;}
.ws1_c00030{word-spacing:0.000000pt;}
._d_c00030{margin-left:-4.162880pt;}
._0_c00030{margin-left:-2.538880pt;}
._c_c00030{margin-left:-1.179360pt;}
._8_c00030{width:1.017120pt;}
._6_c00030{width:2.452320pt;}
._7_c00030{width:4.193280pt;}
._9_c00030{width:5.478720pt;}
._a_c00030{width:6.845280pt;}
._5_c00030{width:8.218080pt;}
._b_c00030{width:9.640800pt;}
._4_c00030{width:10.585493pt;}
._1_c00030{width:12.589227pt;}
._3_c00030{width:14.114880pt;}
._2_c00030{width:17.203680pt;}
._11_c00030{width:19.406400pt;}
._10_c00030{width:20.342400pt;}
._e_c00030{width:21.347040pt;}
._f_c00030{width:23.362560pt;}
.fs5_c00030{font-size:28.800533pt;}
.fs0_c00030{font-size:54.400000pt;}
.fs6_c00030{font-size:59.200000pt;}
.fs3_c00030{font-size:61.866667pt;}
.fs1_c00030{font-size:62.400000pt;}
.fs2_c00030{font-size:65.600000pt;}
.fs4_c00030{font-size:68.266667pt;}
.y0_c00030{bottom:0.000000pt;}
.y11_c00030{bottom:53.773333pt;}
.y10_c00030{bottom:570.243333pt;}
.yf_c00030{bottom:598.089333pt;}
.ye_c00030{bottom:625.935333pt;}
.yd_c00030{bottom:654.088933pt;}
.yc_c00030{bottom:709.455333pt;}
.yb_c00030{bottom:737.613333pt;}
.ya_c00030{bottom:737.615333pt;}
.y9_c00030{bottom:765.775333pt;}
.y8_c00030{bottom:793.933333pt;}
.y6_c00030{bottom:849.605200pt;}
.y7_c00030{bottom:849.613333pt;}
.y5_c00030{bottom:877.108000pt;}
.y4_c00030{bottom:904.954000pt;}
.y3_c00030{bottom:932.800000pt;}
.y2_c00030{bottom:988.800000pt;}
.y1_c00030{bottom:1056.640000pt;}
.h2_c00030{height:53.390625pt;}
.h9_c00030{height:58.101562pt;}
.h3_c00030{height:61.242187pt;}
.h7_c00030{height:61.259787pt;}
.h8_c00030{height:61.282188pt;}
.h4_c00030{height:64.350781pt;}
.h5_c00030{height:64.525000pt;}
.h6_c00030{height:67.000000pt;}
.h1_c00030{height:1122.666667pt;}
.h0_c00030{height:1122.880000pt;}
.w1_c00030{width:793.333333pt;}
.w0_c00030{width:793.600000pt;}
.x0_c00030{left:0.000000pt;}
.xd_c00030{left:109.290133pt;}
.x6_c00030{left:110.319333pt;}
.x2_c00030{left:111.493333pt;}
.x1_c00030{left:112.573333pt;}
.x5_c00030{left:159.346667pt;}
.xc_c00030{left:165.021733pt;}
.x8_c00030{left:229.960000pt;}
.x9_c00030{left:269.613333pt;}
.x3_c00030{left:277.680000pt;}
.x4_c00030{left:303.520000pt;}
.xa_c00030{left:317.066667pt;}
.xb_c00030{left:343.533333pt;}
.xe_c00030{left:382.000000pt;}
.x7_c00030{left:550.280000pt;}
}





/* 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_c00031 {
    display:none;
  }
  .loading-indicator_c00031.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00031 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_c00031 { 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_c00031" -> "#page-container .classname_c00031")
 */
.pf_c00031 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00031 { /* 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_c00031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00031 { /* 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_c00031 { /* 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_c00031 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00031 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00031 {overflow:visible;}
  }
}
.c_c00031 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00031 { /* 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_c00031:after { /* webkit #35443 */
  content: '';
}
.t_c00031:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00031 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 */
}
.__c00031 { /* 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_c00031 { /* info for Javascript */
  display:none;
}
.l_c00031 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00031 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00031 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00031: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_c00031 {
    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_c00031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00031.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_c00031 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00031;src:url('chunks/assets/font_573feb3388c11ef0b248d60b.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.311035;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_c00031;src:url('chunks/assets/font_35910e49788588c53d81c2e0.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.284668;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_c00031;src:url('chunks/assets/font_e2285099860dc2e81b0908b5.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:1.284180;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_c00031;src:url('chunks/assets/font_f24cd3dae933f365647fdafe.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;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;}
.m4_c00031{transform:matrix(0.242008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242008,0.000000,0.000000,0.250000,0,0);}
.m5_c00031{transform:matrix(0.242804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242804,0.000000,0.000000,0.250000,0,0);}
.m1_c00031{transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);}
.m8_c00031{transform:matrix(0.247394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247394,0.000000,0.000000,0.250000,0,0);}
.m2_c00031{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m6_c00031{transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);}
.m7_c00031{transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);}
.m3_c00031{transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);}
.m0_c00031{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);}
.v0_c00031{vertical-align:0.000000px;}
.ls3f_c00031{letter-spacing:-2.541000px;}
.ls69_c00031{letter-spacing:-2.511960px;}
.ls6c_c00031{letter-spacing:-2.410320px;}
.ls50_c00031{letter-spacing:-2.265120px;}
.ls3c_c00031{letter-spacing:-2.228820px;}
.ls9f_c00031{letter-spacing:-2.207040px;}
.ls95_c00031{letter-spacing:-2.199780px;}
.ls3d_c00031{letter-spacing:-2.170740px;}
.ls47_c00031{letter-spacing:-1.996500px;}
.ls84_c00031{letter-spacing:-1.945680px;}
.ls70_c00031{letter-spacing:-1.894860px;}
.ls76_c00031{letter-spacing:-1.880340px;}
.ls7f_c00031{letter-spacing:-1.706100px;}
.ls9d_c00031{letter-spacing:-1.680000px;}
.ls91_c00031{letter-spacing:-1.618980px;}
.ls3b_c00031{letter-spacing:-1.611720px;}
.ls34_c00031{letter-spacing:-1.568160px;}
.ls4c_c00031{letter-spacing:-1.553640px;}
.ls18_c00031{letter-spacing:-1.547100px;}
.ls1d_c00031{letter-spacing:-1.546380px;}
.ls39_c00031{letter-spacing:-1.531860px;}
.ls90_c00031{letter-spacing:-1.510080px;}
.ls43_c00031{letter-spacing:-1.481040px;}
.ls6e_c00031{letter-spacing:-1.452000px;}
.ls6a_c00031{letter-spacing:-1.437480px;}
.ls2e_c00031{letter-spacing:-1.408440px;}
.ls32_c00031{letter-spacing:-1.401180px;}
.ls82_c00031{letter-spacing:-1.263240px;}
.ls88_c00031{letter-spacing:-1.255980px;}
.ls99_c00031{letter-spacing:-1.183380px;}
.ls3a_c00031{letter-spacing:-1.176120px;}
.ls35_c00031{letter-spacing:-1.132560px;}
.ls9e_c00031{letter-spacing:-1.103520px;}
.ls89_c00031{letter-spacing:-1.096260px;}
.ls1b_c00031{letter-spacing:-1.050960px;}
.ls54_c00031{letter-spacing:-1.038180px;}
.ls21_c00031{letter-spacing:-0.987360px;}
.ls49_c00031{letter-spacing:-0.980100px;}
.ls2c_c00031{letter-spacing:-0.958320px;}
.ls98_c00031{letter-spacing:-0.951060px;}
.ls7d_c00031{letter-spacing:-0.922020px;}
.ls36_c00031{letter-spacing:-0.900240px;}
.ls25_c00031{letter-spacing:-0.892980px;}
.ls44_c00031{letter-spacing:-0.885720px;}
.ls5d_c00031{letter-spacing:-0.878460px;}
.ls94_c00031{letter-spacing:-0.863940px;}
.ls8d_c00031{letter-spacing:-0.856680px;}
.ls53_c00031{letter-spacing:-0.849420px;}
.ls81_c00031{letter-spacing:-0.820380px;}
.ls65_c00031{letter-spacing:-0.798600px;}
.ls38_c00031{letter-spacing:-0.791340px;}
.ls56_c00031{letter-spacing:-0.784080px;}
.ls22_c00031{letter-spacing:-0.776820px;}
.ls8b_c00031{letter-spacing:-0.769560px;}
.ls27_c00031{letter-spacing:-0.762300px;}
.ls77_c00031{letter-spacing:-0.733260px;}
.ls58_c00031{letter-spacing:-0.726000px;}
.ls7b_c00031{letter-spacing:-0.704220px;}
.ls62_c00031{letter-spacing:-0.696960px;}
.ls33_c00031{letter-spacing:-0.675180px;}
.ls71_c00031{letter-spacing:-0.660660px;}
.ls8a_c00031{letter-spacing:-0.653400px;}
.ls96_c00031{letter-spacing:-0.646140px;}
.ls9b_c00031{letter-spacing:-0.638880px;}
.ls63_c00031{letter-spacing:-0.631620px;}
.ls97_c00031{letter-spacing:-0.624360px;}
.ls5e_c00031{letter-spacing:-0.617100px;}
.ls74_c00031{letter-spacing:-0.609840px;}
.ls48_c00031{letter-spacing:-0.602580px;}
.ls68_c00031{letter-spacing:-0.588060px;}
.ls5a_c00031{letter-spacing:-0.580800px;}
.ls6b_c00031{letter-spacing:-0.573540px;}
.ls29_c00031{letter-spacing:-0.566400px;}
.ls28_c00031{letter-spacing:-0.566280px;}
.ls59_c00031{letter-spacing:-0.559020px;}
.ls30_c00031{letter-spacing:-0.544500px;}
.ls78_c00031{letter-spacing:-0.537240px;}
.ls4e_c00031{letter-spacing:-0.529980px;}
.ls5b_c00031{letter-spacing:-0.522720px;}
.ls2d_c00031{letter-spacing:-0.515460px;}
.ls4b_c00031{letter-spacing:-0.508200px;}
.ls57_c00031{letter-spacing:-0.493680px;}
.ls61_c00031{letter-spacing:-0.486420px;}
.ls41_c00031{letter-spacing:-0.471900px;}
.ls85_c00031{letter-spacing:-0.467280px;}
.ls52_c00031{letter-spacing:-0.457380px;}
.ls9a_c00031{letter-spacing:-0.450120px;}
.ls75_c00031{letter-spacing:-0.442860px;}
.ls45_c00031{letter-spacing:-0.435600px;}
.ls42_c00031{letter-spacing:-0.428340px;}
.ls2a_c00031{letter-spacing:-0.421080px;}
.ls64_c00031{letter-spacing:-0.413820px;}
.ls31_c00031{letter-spacing:-0.406560px;}
.ls66_c00031{letter-spacing:-0.399300px;}
.ls83_c00031{letter-spacing:-0.392040px;}
.ls80_c00031{letter-spacing:-0.384780px;}
.ls20_c00031{letter-spacing:-0.377520px;}
.ls79_c00031{letter-spacing:-0.370260px;}
.ls1e_c00031{letter-spacing:-0.363000px;}
.ls60_c00031{letter-spacing:-0.355740px;}
.ls23_c00031{letter-spacing:-0.348480px;}
.ls7c_c00031{letter-spacing:-0.341220px;}
.ls37_c00031{letter-spacing:-0.333960px;}
.ls67_c00031{letter-spacing:-0.326700px;}
.ls4a_c00031{letter-spacing:-0.319440px;}
.ls4d_c00031{letter-spacing:-0.304920px;}
.ls1f_c00031{letter-spacing:-0.297660px;}
.ls55_c00031{letter-spacing:-0.290400px;}
.ls3e_c00031{letter-spacing:-0.275880px;}
.ls72_c00031{letter-spacing:-0.268620px;}
.ls7a_c00031{letter-spacing:-0.261360px;}
.ls24_c00031{letter-spacing:-0.254100px;}
.ls6d_c00031{letter-spacing:-0.246840px;}
.ls2f_c00031{letter-spacing:-0.232320px;}
.ls8c_c00031{letter-spacing:-0.210540px;}
.ls8e_c00031{letter-spacing:-0.203280px;}
.ls4f_c00031{letter-spacing:-0.188760px;}
.ls8f_c00031{letter-spacing:-0.169920px;}
.ls26_c00031{letter-spacing:-0.166980px;}
.ls73_c00031{letter-spacing:-0.159720px;}
.ls51_c00031{letter-spacing:-0.152460px;}
.ls40_c00031{letter-spacing:-0.145200px;}
.ls6f_c00031{letter-spacing:-0.130680px;}
.ls5f_c00031{letter-spacing:-0.087120px;}
.ls9c_c00031{letter-spacing:-0.079860px;}
.ls93_c00031{letter-spacing:-0.072600px;}
.ls87_c00031{letter-spacing:-0.058080px;}
.ls92_c00031{letter-spacing:-0.050820px;}
.ls86_c00031{letter-spacing:-0.042480px;}
.ls5c_c00031{letter-spacing:-0.014520px;}
.ls46_c00031{letter-spacing:-0.007260px;}
.ls2b_c00031{letter-spacing:0.000000px;}
.ls8_c00031{letter-spacing:0.043560px;}
.ls7_c00031{letter-spacing:0.058080px;}
.ls17_c00031{letter-spacing:0.079860px;}
.lsc_c00031{letter-spacing:0.123420px;}
.ls6_c00031{letter-spacing:0.148680px;}
.ls9_c00031{letter-spacing:0.174240px;}
.ls3_c00031{letter-spacing:0.188760px;}
.lsd_c00031{letter-spacing:0.196020px;}
.lse_c00031{letter-spacing:0.240720px;}
.ls7e_c00031{letter-spacing:0.246840px;}
.ls12_c00031{letter-spacing:0.339840px;}
.ls15_c00031{letter-spacing:0.384780px;}
.ls16_c00031{letter-spacing:0.544500px;}
.ls11_c00031{letter-spacing:0.594720px;}
.lsf_c00031{letter-spacing:0.637200px;}
.lsa_c00031{letter-spacing:0.653400px;}
.ls14_c00031{letter-spacing:0.658440px;}
.lsb_c00031{letter-spacing:0.762300px;}
.ls5_c00031{letter-spacing:1.019520px;}
.ls4_c00031{letter-spacing:1.430160px;}
.ls19_c00031{letter-spacing:1.790100px;}
.ls1_c00031{letter-spacing:1.830600px;}
.ls1c_c00031{letter-spacing:1.893120px;}
.ls1a_c00031{letter-spacing:2.203200px;}
.ls0_c00031{letter-spacing:2.365200px;}
.ls2_c00031{letter-spacing:2.673000px;}
.ls13_c00031{letter-spacing:2.694960px;}
.ls10_c00031{letter-spacing:3.256800px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{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__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00031{word-spacing:0.000000px;}
._19_c00031{margin-left:-7.435080px;}
._1_c00031{margin-left:-3.013200px;}
._2_c00031{margin-left:-1.863000px;}
._14_c00031{width:1.466520px;}
._d_c00031{width:2.666460px;}
._17_c00031{width:3.697560px;}
._c_c00031{width:4.823640px;}
._a_c00031{width:6.372780px;}
._0_c00031{width:8.205300px;}
._8_c00031{width:10.224840px;}
._9_c00031{width:11.906520px;}
._15_c00031{width:14.157000px;}
._16_c00031{width:15.483960px;}
._12_c00031{width:19.239000px;}
._13_c00031{width:21.264540px;}
._10_c00031{width:22.672980px;}
._11_c00031{width:24.066900px;}
._f_c00031{width:25.163160px;}
._e_c00031{width:26.528040px;}
._5_c00031{width:27.762240px;}
._7_c00031{width:29.446560px;}
._18_c00031{width:30.942120px;}
._4_c00031{width:31.944000px;}
._3_c00031{width:33.098340px;}
._6_c00031{width:34.347060px;}
._1e_c00031{width:35.791800px;}
._b_c00031{width:37.389000px;}
._20_c00031{width:38.440140px;}
._1f_c00031{width:39.508920px;}
._1b_c00031{width:41.367480px;}
._1d_c00031{width:42.543600px;}
._1a_c00031{width:43.589040px;}
._1c_c00031{width:46.485780px;}
.fc0_c00031{color:transparent;}
.fs6_c00031{font-size:48.000000px;}
.fs5_c00031{font-size:67.800000px;}
.fs4_c00031{font-size:68.400000px;}
.fs1_c00031{font-size:69.600000px;}
.fs3_c00031{font-size:70.800000px;}
.fs2_c00031{font-size:72.600000px;}
.fs0_c00031{font-size:81.000000px;}
.y0_c00031{bottom:0.000000px;}
.y22_c00031{bottom:164.512950px;}
.y23_c00031{bottom:164.520000px;}
.y20_c00031{bottom:195.494100px;}
.y21_c00031{bottom:195.495000px;}
.y1f_c00031{bottom:226.095000px;}
.y1e_c00031{bottom:257.413200px;}
.y1d_c00031{bottom:318.615000px;}
.y1c_c00031{bottom:349.575000px;}
.y1a_c00031{bottom:380.171100px;}
.y1b_c00031{bottom:380.175000px;}
.y19_c00031{bottom:411.135000px;}
.y18_c00031{bottom:442.091100px;}
.y16_c00031{bottom:473.051100px;}
.y17_c00031{bottom:473.055000px;}
.y14_c00031{bottom:504.007200px;}
.y15_c00031{bottom:504.015000px;}
.y13_c00031{bottom:534.971100px;}
.y12_c00031{bottom:565.935000px;}
.y10_c00031{bottom:628.191150px;}
.y11_c00031{bottom:628.200000px;}
.yf_c00031{bottom:659.173200px;}
.ye_c00031{bottom:689.774100px;}
.yd_c00031{bottom:720.375000px;}
.yb_c00031{bottom:751.308150px;}
.yc_c00031{bottom:751.320000px;}
.ya_c00031{bottom:812.891100px;}
.y9_c00031{bottom:843.855000px;}
.y8_c00031{bottom:874.815000px;}
.y7_c00031{bottom:874.817250px;}
.y6_c00031{bottom:905.395950px;}
.y5_c00031{bottom:936.008100px;}
.y4_c00031{bottom:967.335000px;}
.y3_c00031{bottom:1022.760000px;}
.y2_c00031{bottom:1081.071000px;}
.y1_c00031{bottom:1117.440000px;}
.hb_c00031{height:47.085938px;}
.h3_c00031{height:70.143750px;}
.h4_c00031{height:71.252930px;}
.h8_c00031{height:71.268530px;}
.h6_c00031{height:71.269130px;}
.h5_c00031{height:71.280530px;}
.ha_c00031{height:71.281130px;}
.h7_c00031{height:71.288330px;}
.h9_c00031{height:71.339063px;}
.h2_c00031{height:81.632812px;}
.h1_c00031{height:1263.000000px;}
.h0_c00031{height:1263.240000px;}
.w1_c00031{width:892.500000px;}
.w0_c00031{width:892.800000px;}
.x0_c00031{left:0.000000px;}
.x12_c00031{left:125.070000px;}
.x1_c00031{left:126.570000px;}
.x2_c00031{left:148.253250px;}
.x13_c00031{left:178.834950px;}
.x3_c00031{left:179.895000px;}
.xc_c00031{left:284.235000px;}
.xd_c00031{left:310.320000px;}
.x5_c00031{left:363.435000px;}
.x19_c00031{left:385.320000px;}
.x6_c00031{left:388.620000px;}
.x1a_c00031{left:406.410000px;}
.xa_c00031{left:511.035000px;}
.xb_c00031{left:535.995000px;}
.xf_c00031{left:568.245000px;}
.x8_c00031{left:578.715000px;}
.x10_c00031{left:588.450000px;}
.x9_c00031{left:600.660000px;}
.x17_c00031{left:603.915000px;}
.x14_c00031{left:618.690000px;}
.x18_c00031{left:627.660000px;}
.x15_c00031{left:651.765000px;}
.x7_c00031{left:662.715000px;}
.xe_c00031{left:703.185000px;}
.x16_c00031{left:725.505000px;}
.x11_c00031{left:734.235000px;}
.x4_c00031{left:737.745000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls3f_c00031{letter-spacing:-2.258667pt;}
.ls69_c00031{letter-spacing:-2.232853pt;}
.ls6c_c00031{letter-spacing:-2.142507pt;}
.ls50_c00031{letter-spacing:-2.013440pt;}
.ls3c_c00031{letter-spacing:-1.981173pt;}
.ls9f_c00031{letter-spacing:-1.961813pt;}
.ls95_c00031{letter-spacing:-1.955360pt;}
.ls3d_c00031{letter-spacing:-1.929547pt;}
.ls47_c00031{letter-spacing:-1.774667pt;}
.ls84_c00031{letter-spacing:-1.729493pt;}
.ls70_c00031{letter-spacing:-1.684320pt;}
.ls76_c00031{letter-spacing:-1.671413pt;}
.ls7f_c00031{letter-spacing:-1.516533pt;}
.ls9d_c00031{letter-spacing:-1.493333pt;}
.ls91_c00031{letter-spacing:-1.439093pt;}
.ls3b_c00031{letter-spacing:-1.432640pt;}
.ls34_c00031{letter-spacing:-1.393920pt;}
.ls4c_c00031{letter-spacing:-1.381013pt;}
.ls18_c00031{letter-spacing:-1.375200pt;}
.ls1d_c00031{letter-spacing:-1.374560pt;}
.ls39_c00031{letter-spacing:-1.361653pt;}
.ls90_c00031{letter-spacing:-1.342293pt;}
.ls43_c00031{letter-spacing:-1.316480pt;}
.ls6e_c00031{letter-spacing:-1.290667pt;}
.ls6a_c00031{letter-spacing:-1.277760pt;}
.ls2e_c00031{letter-spacing:-1.251947pt;}
.ls32_c00031{letter-spacing:-1.245493pt;}
.ls82_c00031{letter-spacing:-1.122880pt;}
.ls88_c00031{letter-spacing:-1.116427pt;}
.ls99_c00031{letter-spacing:-1.051893pt;}
.ls3a_c00031{letter-spacing:-1.045440pt;}
.ls35_c00031{letter-spacing:-1.006720pt;}
.ls9e_c00031{letter-spacing:-0.980907pt;}
.ls89_c00031{letter-spacing:-0.974453pt;}
.ls1b_c00031{letter-spacing:-0.934187pt;}
.ls54_c00031{letter-spacing:-0.922827pt;}
.ls21_c00031{letter-spacing:-0.877653pt;}
.ls49_c00031{letter-spacing:-0.871200pt;}
.ls2c_c00031{letter-spacing:-0.851840pt;}
.ls98_c00031{letter-spacing:-0.845387pt;}
.ls7d_c00031{letter-spacing:-0.819573pt;}
.ls36_c00031{letter-spacing:-0.800213pt;}
.ls25_c00031{letter-spacing:-0.793760pt;}
.ls44_c00031{letter-spacing:-0.787307pt;}
.ls5d_c00031{letter-spacing:-0.780853pt;}
.ls94_c00031{letter-spacing:-0.767947pt;}
.ls8d_c00031{letter-spacing:-0.761493pt;}
.ls53_c00031{letter-spacing:-0.755040pt;}
.ls81_c00031{letter-spacing:-0.729227pt;}
.ls65_c00031{letter-spacing:-0.709867pt;}
.ls38_c00031{letter-spacing:-0.703413pt;}
.ls56_c00031{letter-spacing:-0.696960pt;}
.ls22_c00031{letter-spacing:-0.690507pt;}
.ls8b_c00031{letter-spacing:-0.684053pt;}
.ls27_c00031{letter-spacing:-0.677600pt;}
.ls77_c00031{letter-spacing:-0.651787pt;}
.ls58_c00031{letter-spacing:-0.645333pt;}
.ls7b_c00031{letter-spacing:-0.625973pt;}
.ls62_c00031{letter-spacing:-0.619520pt;}
.ls33_c00031{letter-spacing:-0.600160pt;}
.ls71_c00031{letter-spacing:-0.587253pt;}
.ls8a_c00031{letter-spacing:-0.580800pt;}
.ls96_c00031{letter-spacing:-0.574347pt;}
.ls9b_c00031{letter-spacing:-0.567893pt;}
.ls63_c00031{letter-spacing:-0.561440pt;}
.ls97_c00031{letter-spacing:-0.554987pt;}
.ls5e_c00031{letter-spacing:-0.548533pt;}
.ls74_c00031{letter-spacing:-0.542080pt;}
.ls48_c00031{letter-spacing:-0.535627pt;}
.ls68_c00031{letter-spacing:-0.522720pt;}
.ls5a_c00031{letter-spacing:-0.516267pt;}
.ls6b_c00031{letter-spacing:-0.509813pt;}
.ls29_c00031{letter-spacing:-0.503467pt;}
.ls28_c00031{letter-spacing:-0.503360pt;}
.ls59_c00031{letter-spacing:-0.496907pt;}
.ls30_c00031{letter-spacing:-0.484000pt;}
.ls78_c00031{letter-spacing:-0.477547pt;}
.ls4e_c00031{letter-spacing:-0.471093pt;}
.ls5b_c00031{letter-spacing:-0.464640pt;}
.ls2d_c00031{letter-spacing:-0.458187pt;}
.ls4b_c00031{letter-spacing:-0.451733pt;}
.ls57_c00031{letter-spacing:-0.438827pt;}
.ls61_c00031{letter-spacing:-0.432373pt;}
.ls41_c00031{letter-spacing:-0.419467pt;}
.ls85_c00031{letter-spacing:-0.415360pt;}
.ls52_c00031{letter-spacing:-0.406560pt;}
.ls9a_c00031{letter-spacing:-0.400107pt;}
.ls75_c00031{letter-spacing:-0.393653pt;}
.ls45_c00031{letter-spacing:-0.387200pt;}
.ls42_c00031{letter-spacing:-0.380747pt;}
.ls2a_c00031{letter-spacing:-0.374293pt;}
.ls64_c00031{letter-spacing:-0.367840pt;}
.ls31_c00031{letter-spacing:-0.361387pt;}
.ls66_c00031{letter-spacing:-0.354933pt;}
.ls83_c00031{letter-spacing:-0.348480pt;}
.ls80_c00031{letter-spacing:-0.342027pt;}
.ls20_c00031{letter-spacing:-0.335573pt;}
.ls79_c00031{letter-spacing:-0.329120pt;}
.ls1e_c00031{letter-spacing:-0.322667pt;}
.ls60_c00031{letter-spacing:-0.316213pt;}
.ls23_c00031{letter-spacing:-0.309760pt;}
.ls7c_c00031{letter-spacing:-0.303307pt;}
.ls37_c00031{letter-spacing:-0.296853pt;}
.ls67_c00031{letter-spacing:-0.290400pt;}
.ls4a_c00031{letter-spacing:-0.283947pt;}
.ls4d_c00031{letter-spacing:-0.271040pt;}
.ls1f_c00031{letter-spacing:-0.264587pt;}
.ls55_c00031{letter-spacing:-0.258133pt;}
.ls3e_c00031{letter-spacing:-0.245227pt;}
.ls72_c00031{letter-spacing:-0.238773pt;}
.ls7a_c00031{letter-spacing:-0.232320pt;}
.ls24_c00031{letter-spacing:-0.225867pt;}
.ls6d_c00031{letter-spacing:-0.219413pt;}
.ls2f_c00031{letter-spacing:-0.206507pt;}
.ls8c_c00031{letter-spacing:-0.187147pt;}
.ls8e_c00031{letter-spacing:-0.180693pt;}
.ls4f_c00031{letter-spacing:-0.167787pt;}
.ls8f_c00031{letter-spacing:-0.151040pt;}
.ls26_c00031{letter-spacing:-0.148427pt;}
.ls73_c00031{letter-spacing:-0.141973pt;}
.ls51_c00031{letter-spacing:-0.135520pt;}
.ls40_c00031{letter-spacing:-0.129067pt;}
.ls6f_c00031{letter-spacing:-0.116160pt;}
.ls5f_c00031{letter-spacing:-0.077440pt;}
.ls9c_c00031{letter-spacing:-0.070987pt;}
.ls93_c00031{letter-spacing:-0.064533pt;}
.ls87_c00031{letter-spacing:-0.051627pt;}
.ls92_c00031{letter-spacing:-0.045173pt;}
.ls86_c00031{letter-spacing:-0.037760pt;}
.ls5c_c00031{letter-spacing:-0.012907pt;}
.ls46_c00031{letter-spacing:-0.006453pt;}
.ls2b_c00031{letter-spacing:0.000000pt;}
.ls8_c00031{letter-spacing:0.038720pt;}
.ls7_c00031{letter-spacing:0.051627pt;}
.ls17_c00031{letter-spacing:0.070987pt;}
.lsc_c00031{letter-spacing:0.109707pt;}
.ls6_c00031{letter-spacing:0.132160pt;}
.ls9_c00031{letter-spacing:0.154880pt;}
.ls3_c00031{letter-spacing:0.167787pt;}
.lsd_c00031{letter-spacing:0.174240pt;}
.lse_c00031{letter-spacing:0.213973pt;}
.ls7e_c00031{letter-spacing:0.219413pt;}
.ls12_c00031{letter-spacing:0.302080pt;}
.ls15_c00031{letter-spacing:0.342027pt;}
.ls16_c00031{letter-spacing:0.484000pt;}
.ls11_c00031{letter-spacing:0.528640pt;}
.lsf_c00031{letter-spacing:0.566400pt;}
.lsa_c00031{letter-spacing:0.580800pt;}
.ls14_c00031{letter-spacing:0.585280pt;}
.lsb_c00031{letter-spacing:0.677600pt;}
.ls5_c00031{letter-spacing:0.906240pt;}
.ls4_c00031{letter-spacing:1.271253pt;}
.ls19_c00031{letter-spacing:1.591200pt;}
.ls1_c00031{letter-spacing:1.627200pt;}
.ls1c_c00031{letter-spacing:1.682773pt;}
.ls1a_c00031{letter-spacing:1.958400pt;}
.ls0_c00031{letter-spacing:2.102400pt;}
.ls2_c00031{letter-spacing:2.376000pt;}
.ls13_c00031{letter-spacing:2.395520pt;}
.ls10_c00031{letter-spacing:2.894933pt;}
.ws0_c00031{word-spacing:0.000000pt;}
._19_c00031{margin-left:-6.608960pt;}
._1_c00031{margin-left:-2.678400pt;}
._2_c00031{margin-left:-1.656000pt;}
._14_c00031{width:1.303573pt;}
._d_c00031{width:2.370187pt;}
._17_c00031{width:3.286720pt;}
._c_c00031{width:4.287680pt;}
._a_c00031{width:5.664693pt;}
._0_c00031{width:7.293600pt;}
._8_c00031{width:9.088747pt;}
._9_c00031{width:10.583573pt;}
._15_c00031{width:12.584000pt;}
._16_c00031{width:13.763520pt;}
._12_c00031{width:17.101333pt;}
._13_c00031{width:18.901813pt;}
._10_c00031{width:20.153760pt;}
._11_c00031{width:21.392800pt;}
._f_c00031{width:22.367253pt;}
._e_c00031{width:23.580480pt;}
._5_c00031{width:24.677547pt;}
._7_c00031{width:26.174720pt;}
._18_c00031{width:27.504107pt;}
._4_c00031{width:28.394667pt;}
._3_c00031{width:29.420747pt;}
._6_c00031{width:30.530720pt;}
._1e_c00031{width:31.814933pt;}
._b_c00031{width:33.234667pt;}
._20_c00031{width:34.169013pt;}
._1f_c00031{width:35.119040pt;}
._1b_c00031{width:36.771093pt;}
._1d_c00031{width:37.816533pt;}
._1a_c00031{width:38.745813pt;}
._1c_c00031{width:41.320693pt;}
.fs6_c00031{font-size:42.666667pt;}
.fs5_c00031{font-size:60.266667pt;}
.fs4_c00031{font-size:60.800000pt;}
.fs1_c00031{font-size:61.866667pt;}
.fs3_c00031{font-size:62.933333pt;}
.fs2_c00031{font-size:64.533333pt;}
.fs0_c00031{font-size:72.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y22_c00031{bottom:146.233733pt;}
.y23_c00031{bottom:146.240000pt;}
.y20_c00031{bottom:173.772533pt;}
.y21_c00031{bottom:173.773333pt;}
.y1f_c00031{bottom:200.973333pt;}
.y1e_c00031{bottom:228.811733pt;}
.y1d_c00031{bottom:283.213333pt;}
.y1c_c00031{bottom:310.733333pt;}
.y1a_c00031{bottom:337.929867pt;}
.y1b_c00031{bottom:337.933333pt;}
.y19_c00031{bottom:365.453333pt;}
.y18_c00031{bottom:392.969867pt;}
.y16_c00031{bottom:420.489867pt;}
.y17_c00031{bottom:420.493333pt;}
.y14_c00031{bottom:448.006400pt;}
.y15_c00031{bottom:448.013333pt;}
.y13_c00031{bottom:475.529867pt;}
.y12_c00031{bottom:503.053333pt;}
.y10_c00031{bottom:558.392133pt;}
.y11_c00031{bottom:558.400000pt;}
.yf_c00031{bottom:585.931733pt;}
.ye_c00031{bottom:613.132533pt;}
.yd_c00031{bottom:640.333333pt;}
.yb_c00031{bottom:667.829467pt;}
.yc_c00031{bottom:667.840000pt;}
.ya_c00031{bottom:722.569867pt;}
.y9_c00031{bottom:750.093333pt;}
.y8_c00031{bottom:777.613333pt;}
.y7_c00031{bottom:777.615333pt;}
.y6_c00031{bottom:804.796400pt;}
.y5_c00031{bottom:832.007200pt;}
.y4_c00031{bottom:859.853333pt;}
.y3_c00031{bottom:909.120000pt;}
.y2_c00031{bottom:960.952000pt;}
.y1_c00031{bottom:993.280000pt;}
.hb_c00031{height:41.854167pt;}
.h3_c00031{height:62.350000pt;}
.h4_c00031{height:63.335938pt;}
.h8_c00031{height:63.349804pt;}
.h6_c00031{height:63.350337pt;}
.h5_c00031{height:63.360471pt;}
.ha_c00031{height:63.361004pt;}
.h7_c00031{height:63.367404pt;}
.h9_c00031{height:63.412500pt;}
.h2_c00031{height:72.562500pt;}
.h1_c00031{height:1122.666667pt;}
.h0_c00031{height:1122.880000pt;}
.w1_c00031{width:793.333333pt;}
.w0_c00031{width:793.600000pt;}
.x0_c00031{left:0.000000pt;}
.x12_c00031{left:111.173333pt;}
.x1_c00031{left:112.506667pt;}
.x2_c00031{left:131.780667pt;}
.x13_c00031{left:158.964400pt;}
.x3_c00031{left:159.906667pt;}
.xc_c00031{left:252.653333pt;}
.xd_c00031{left:275.840000pt;}
.x5_c00031{left:323.053333pt;}
.x19_c00031{left:342.506667pt;}
.x6_c00031{left:345.440000pt;}
.x1a_c00031{left:361.253333pt;}
.xa_c00031{left:454.253333pt;}
.xb_c00031{left:476.440000pt;}
.xf_c00031{left:505.106667pt;}
.x8_c00031{left:514.413333pt;}
.x10_c00031{left:523.066667pt;}
.x9_c00031{left:533.920000pt;}
.x17_c00031{left:536.813333pt;}
.x14_c00031{left:549.946667pt;}
.x18_c00031{left:557.920000pt;}
.x15_c00031{left:579.346667pt;}
.x7_c00031{left:589.080000pt;}
.xe_c00031{left:625.053333pt;}
.x16_c00031{left:644.893333pt;}
.x11_c00031{left:652.653333pt;}
.x4_c00031{left:655.773333pt;}
}





/* 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_c00032 {
    display:none;
  }
  .loading-indicator_c00032.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00032 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_c00032 { 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_c00032" -> "#page-container .classname_c00032")
 */
.pf_c00032 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00032 { /* 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_c00032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00032 { /* 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_c00032 { /* 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_c00032 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00032 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00032 {overflow:visible;}
  }
}
.c_c00032 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00032 { /* 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_c00032:after { /* webkit #35443 */
  content: '';
}
.t_c00032:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00032 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 */
}
.__c00032 { /* 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_c00032 { /* info for Javascript */
  display:none;
}
.l_c00032 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00032 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00032 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00032: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_c00032 {
    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_c00032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00032.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_c00032 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00032;src:url('chunks/assets/font_b0c189fd3f56fb911ace1da1.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.284668;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_c00032;src:url('chunks/assets/font_abc78a14e9218b3c2cbc37c7.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;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;}
.ma_c00032{transform:matrix(0.214357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214357,0.000000,0.000000,0.250000,0,0);}
.mb_c00032{transform:matrix(0.222522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222522,0.000000,0.000000,0.250000,0,0);}
.m1_c00032{transform:matrix(0.241852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241852,0.000000,0.000000,0.250000,0,0);}
.m4_c00032{transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);}
.m8_c00032{transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);}
.m3_c00032{transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);}
.m9_c00032{transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);}
.m6_c00032{transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);}
.m2_c00032{transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);}
.m5_c00032{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m7_c00032{transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);}
.m0_c00032{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);}
.v0_c00032{vertical-align:0.000000px;}
.ls22_c00032{letter-spacing:-2.562000px;}
.ls79_c00032{letter-spacing:-2.518080px;}
.ls98_c00032{letter-spacing:-2.394000px;}
.ls2d_c00032{letter-spacing:-2.298480px;}
.ls4c_c00032{letter-spacing:-2.130120px;}
.ls5e_c00032{letter-spacing:-1.873920px;}
.ls6a_c00032{letter-spacing:-1.859280px;}
.ls86_c00032{letter-spacing:-1.851960px;}
.ls55_c00032{letter-spacing:-1.844640px;}
.ls3e_c00032{letter-spacing:-1.800720px;}
.ls8f_c00032{letter-spacing:-1.595760px;}
.ls46_c00032{letter-spacing:-1.537200px;}
.ls69_c00032{letter-spacing:-1.525140px;}
.ls72_c00032{letter-spacing:-1.515240px;}
.ls4d_c00032{letter-spacing:-1.456680px;}
.ls3d_c00032{letter-spacing:-1.449360px;}
.ls41_c00032{letter-spacing:-1.346880px;}
.ls45_c00032{letter-spacing:-1.339560px;}
.ls85_c00032{letter-spacing:-1.317600px;}
.ls33_c00032{letter-spacing:-1.302960px;}
.ls82_c00032{letter-spacing:-1.281000px;}
.ls61_c00032{letter-spacing:-1.259040px;}
.ls1e_c00032{letter-spacing:-1.207800px;}
.ls56_c00032{letter-spacing:-1.193160px;}
.ls59_c00032{letter-spacing:-1.185840px;}
.ls8e_c00032{letter-spacing:-1.156560px;}
.ls52_c00032{letter-spacing:-1.149240px;}
.ls23_c00032{letter-spacing:-1.134600px;}
.ls80_c00032{letter-spacing:-1.127280px;}
.ls2f_c00032{letter-spacing:-1.119960px;}
.ls57_c00032{letter-spacing:-1.112640px;}
.ls28_c00032{letter-spacing:-1.090680px;}
.ls4b_c00032{letter-spacing:-1.076040px;}
.ls3a_c00032{letter-spacing:-1.032120px;}
.ls93_c00032{letter-spacing:-1.024800px;}
.ls1b_c00032{letter-spacing:-0.973560px;}
.ls60_c00032{letter-spacing:-0.958920px;}
.ls24_c00032{letter-spacing:-0.951600px;}
.ls89_c00032{letter-spacing:-0.944280px;}
.ls6d_c00032{letter-spacing:-0.929640px;}
.ls58_c00032{letter-spacing:-0.907680px;}
.ls6b_c00032{letter-spacing:-0.885720px;}
.ls3c_c00032{letter-spacing:-0.878400px;}
.ls8d_c00032{letter-spacing:-0.863760px;}
.ls43_c00032{letter-spacing:-0.856440px;}
.ls66_c00032{letter-spacing:-0.841800px;}
.ls36_c00032{letter-spacing:-0.834480px;}
.ls73_c00032{letter-spacing:-0.812520px;}
.ls67_c00032{letter-spacing:-0.797880px;}
.ls7a_c00032{letter-spacing:-0.790560px;}
.ls21_c00032{letter-spacing:-0.783240px;}
.ls65_c00032{letter-spacing:-0.724680px;}
.ls87_c00032{letter-spacing:-0.717360px;}
.ls26_c00032{letter-spacing:-0.710040px;}
.ls83_c00032{letter-spacing:-0.702720px;}
.ls5a_c00032{letter-spacing:-0.688080px;}
.ls70_c00032{letter-spacing:-0.680760px;}
.ls37_c00032{letter-spacing:-0.673440px;}
.ls40_c00032{letter-spacing:-0.666120px;}
.ls1a_c00032{letter-spacing:-0.658800px;}
.ls35_c00032{letter-spacing:-0.644160px;}
.ls84_c00032{letter-spacing:-0.636840px;}
.ls20_c00032{letter-spacing:-0.629520px;}
.ls30_c00032{letter-spacing:-0.614880px;}
.ls8a_c00032{letter-spacing:-0.607560px;}
.ls25_c00032{letter-spacing:-0.600240px;}
.ls44_c00032{letter-spacing:-0.585600px;}
.ls6e_c00032{letter-spacing:-0.578280px;}
.ls51_c00032{letter-spacing:-0.570960px;}
.ls62_c00032{letter-spacing:-0.563640px;}
.ls7d_c00032{letter-spacing:-0.556320px;}
.ls74_c00032{letter-spacing:-0.534360px;}
.ls18_c00032{letter-spacing:-0.527040px;}
.ls4f_c00032{letter-spacing:-0.519720px;}
.ls4a_c00032{letter-spacing:-0.512400px;}
.ls19_c00032{letter-spacing:-0.505080px;}
.ls1d_c00032{letter-spacing:-0.497760px;}
.ls94_c00032{letter-spacing:-0.490440px;}
.ls81_c00032{letter-spacing:-0.475800px;}
.ls54_c00032{letter-spacing:-0.468480px;}
.ls29_c00032{letter-spacing:-0.461160px;}
.ls68_c00032{letter-spacing:-0.453840px;}
.ls47_c00032{letter-spacing:-0.446520px;}
.ls1f_c00032{letter-spacing:-0.439200px;}
.ls2b_c00032{letter-spacing:-0.431880px;}
.ls48_c00032{letter-spacing:-0.424560px;}
.ls34_c00032{letter-spacing:-0.417240px;}
.ls5f_c00032{letter-spacing:-0.409920px;}
.ls5b_c00032{letter-spacing:-0.395280px;}
.ls50_c00032{letter-spacing:-0.380640px;}
.ls27_c00032{letter-spacing:-0.366000px;}
.ls32_c00032{letter-spacing:-0.358680px;}
.ls38_c00032{letter-spacing:-0.351360px;}
.ls2e_c00032{letter-spacing:-0.344040px;}
.ls39_c00032{letter-spacing:-0.329400px;}
.ls77_c00032{letter-spacing:-0.322080px;}
.ls42_c00032{letter-spacing:-0.314760px;}
.ls64_c00032{letter-spacing:-0.307440px;}
.ls31_c00032{letter-spacing:-0.300120px;}
.ls63_c00032{letter-spacing:-0.292800px;}
.ls97_c00032{letter-spacing:-0.285480px;}
.ls16_c00032{letter-spacing:-0.278160px;}
.ls5d_c00032{letter-spacing:-0.270840px;}
.ls53_c00032{letter-spacing:-0.248880px;}
.ls4e_c00032{letter-spacing:-0.241560px;}
.ls2a_c00032{letter-spacing:-0.234240px;}
.ls6c_c00032{letter-spacing:-0.226920px;}
.ls90_c00032{letter-spacing:-0.219600px;}
.ls6f_c00032{letter-spacing:-0.212280px;}
.ls78_c00032{letter-spacing:-0.204960px;}
.ls8b_c00032{letter-spacing:-0.197640px;}
.ls76_c00032{letter-spacing:-0.190320px;}
.ls7c_c00032{letter-spacing:-0.175680px;}
.ls17_c00032{letter-spacing:-0.168360px;}
.ls3b_c00032{letter-spacing:-0.161040px;}
.ls5c_c00032{letter-spacing:-0.153720px;}
.ls71_c00032{letter-spacing:-0.131760px;}
.ls3f_c00032{letter-spacing:-0.124440px;}
.ls88_c00032{letter-spacing:-0.117120px;}
.ls2c_c00032{letter-spacing:-0.109800px;}
.ls1c_c00032{letter-spacing:-0.102480px;}
.ls49_c00032{letter-spacing:-0.095160px;}
.ls92_c00032{letter-spacing:-0.080520px;}
.ls75_c00032{letter-spacing:-0.073200px;}
.ls7b_c00032{letter-spacing:-0.043920px;}
.ls7f_c00032{letter-spacing:-0.029280px;}
.ls96_c00032{letter-spacing:-0.021960px;}
.ls95_c00032{letter-spacing:-0.014640px;}
.ls15_c00032{letter-spacing:0.000000px;}
.ls6_c00032{letter-spacing:0.007320px;}
.lsb_c00032{letter-spacing:0.014640px;}
.ls8c_c00032{letter-spacing:0.036600px;}
.ls13_c00032{letter-spacing:0.043920px;}
.ls12_c00032{letter-spacing:0.058560px;}
.ls4_c00032{letter-spacing:0.095160px;}
.ls9_c00032{letter-spacing:0.131760px;}
.lsf_c00032{letter-spacing:0.139080px;}
.ls10_c00032{letter-spacing:0.146400px;}
.lse_c00032{letter-spacing:0.153720px;}
.ls11_c00032{letter-spacing:0.161040px;}
.ls2_c00032{letter-spacing:0.183000px;}
.ls5_c00032{letter-spacing:0.219600px;}
.ls7e_c00032{letter-spacing:0.248880px;}
.ls1_c00032{letter-spacing:0.256200px;}
.ls3_c00032{letter-spacing:0.314760px;}
.lsd_c00032{letter-spacing:0.329400px;}
.lsa_c00032{letter-spacing:0.483120px;}
.ls91_c00032{letter-spacing:0.578280px;}
.ls8_c00032{letter-spacing:0.768600px;}
.ls14_c00032{letter-spacing:0.917280px;}
.lsc_c00032{letter-spacing:1.222440px;}
.ls0_c00032{letter-spacing:1.485120px;}
.ls7_c00032{letter-spacing:1.771440px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{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__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00032{word-spacing:0.000000px;}
._0_c00032{margin-left:-4.542720px;}
._18_c00032{margin-left:-1.566480px;}
._13_c00032{width:1.215120px;}
._8_c00032{width:2.854800px;}
._7_c00032{width:4.450560px;}
._a_c00032{width:6.185400px;}
._9_c00032{width:7.393200px;}
._1_c00032{width:8.674200px;}
._2_c00032{width:9.808800px;}
._3_c00032{width:11.829120px;}
._5_c00032{width:13.219920px;}
._4_c00032{width:15.086520px;}
._6_c00032{width:16.470000px;}
._15_c00032{width:19.105200px;}
._14_c00032{width:20.444760px;}
._b_c00032{width:22.516320px;}
._c_c00032{width:23.797320px;}
._10_c00032{width:24.961200px;}
._e_c00032{width:26.154360px;}
._d_c00032{width:27.376800px;}
._12_c00032{width:28.591920px;}
._f_c00032{width:30.714720px;}
._16_c00032{width:31.988400px;}
._11_c00032{width:33.042480px;}
._17_c00032{width:37.968840px;}
.fc0_c00032{color:transparent;}
.fs0_c00032{font-size:62.400000px;}
.fs2_c00032{font-size:66.600000px;}
.fs3_c00032{font-size:67.800000px;}
.fs4_c00032{font-size:68.400000px;}
.fs1_c00032{font-size:73.200000px;}
.y0_c00032{bottom:0.000000px;}
.y2d_c00032{bottom:61.920000px;}
.y2c_c00032{bottom:124.920000px;}
.y2a_c00032{bottom:155.515500px;}
.y2b_c00032{bottom:155.520000px;}
.y29_c00032{bottom:186.479100px;}
.y27_c00032{bottom:217.080600px;}
.y28_c00032{bottom:217.095000px;}
.y26_c00032{bottom:248.044200px;}
.y25_c00032{bottom:309.971400px;}
.y24_c00032{bottom:340.935000px;}
.y23_c00032{bottom:340.943700px;}
.y22_c00032{bottom:372.254700px;}
.y20_c00032{bottom:403.192800px;}
.y21_c00032{bottom:403.200000px;}
.y1f_c00032{bottom:434.174700px;}
.y1e_c00032{bottom:465.113100px;}
.y1d_c00032{bottom:496.095000px;}
.y1c_c00032{bottom:496.097400px;}
.y1a_c00032{bottom:526.693800px;}
.y1b_c00032{bottom:526.695000px;}
.y19_c00032{bottom:558.352800px;}
.y18_c00032{bottom:589.334700px;}
.y16_c00032{bottom:620.273100px;}
.y17_c00032{bottom:620.280000px;}
.y15_c00032{bottom:651.255000px;}
.y14_c00032{bottom:651.257400px;}
.y13_c00032{bottom:681.855000px;}
.y12_c00032{bottom:681.855300px;}
.y11_c00032{bottom:712.818900px;}
.y10_c00032{bottom:774.361800px;}
.yf_c00032{bottom:805.343700px;}
.ye_c00032{bottom:836.655000px;}
.yd_c00032{bottom:836.660700px;}
.yc_c00032{bottom:867.240000px;}
.yb_c00032{bottom:867.244200px;}
.ya_c00032{bottom:898.555500px;}
.y9_c00032{bottom:929.171400px;}
.y7_c00032{bottom:960.133800px;}
.y8_c00032{bottom:960.135000px;}
.y6_c00032{bottom:990.713100px;}
.y5_c00032{bottom:1021.695000px;}
.y3_c00032{bottom:1083.239400px;}
.y4_c00032{bottom:1083.240000px;}
.y2_c00032{bottom:1114.935000px;}
.y1_c00032{bottom:1191.975000px;}
.h2_c00032{height:61.242188px;}
.h6_c00032{height:67.130859px;}
.h3_c00032{height:71.841797px;}
.h5_c00032{height:71.842997px;}
.h4_c00032{height:71.869397px;}
.h1_c00032{height:1263.000000px;}
.h0_c00032{height:1263.240000px;}
.w1_c00032{width:892.500000px;}
.w0_c00032{width:892.800000px;}
.x0_c00032{left:0.000000px;}
.x1e_c00032{left:117.895200px;}
.x15_c00032{left:119.373600px;}
.x8_c00032{left:120.399000px;}
.x5_c00032{left:121.521900px;}
.x2_c00032{left:122.790000px;}
.x1_c00032{left:124.035000px;}
.x20_c00032{left:171.258300px;}
.xe_c00032{left:173.395800px;}
.x4_c00032{left:193.935000px;}
.x9_c00032{left:291.795000px;}
.xa_c00032{left:315.465000px;}
.x16_c00032{left:336.450000px;}
.xb_c00032{left:337.650000px;}
.x17_c00032{left:355.170000px;}
.xf_c00032{left:413.490000px;}
.xc_c00032{left:419.955000px;}
.x24_c00032{left:425.790000px;}
.x10_c00032{left:430.740000px;}
.xd_c00032{left:441.930000px;}
.x1c_c00032{left:481.890000px;}
.x1d_c00032{left:500.580000px;}
.x11_c00032{left:508.785000px;}
.x12_c00032{left:528.645000px;}
.x18_c00032{left:578.700000px;}
.x21_c00032{left:617.580000px;}
.x1a_c00032{left:635.235000px;}
.x1f_c00032{left:637.305000px;}
.x6_c00032{left:638.790000px;}
.x22_c00032{left:645.750000px;}
.x19_c00032{left:656.745000px;}
.x1b_c00032{left:658.290000px;}
.x7_c00032{left:669.765000px;}
.x3_c00032{left:679.860000px;}
.x13_c00032{left:701.370000px;}
.x14_c00032{left:733.485000px;}
.x23_c00032{left:734.970000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls22_c00032{letter-spacing:-2.277333pt;}
.ls79_c00032{letter-spacing:-2.238293pt;}
.ls98_c00032{letter-spacing:-2.128000pt;}
.ls2d_c00032{letter-spacing:-2.043093pt;}
.ls4c_c00032{letter-spacing:-1.893440pt;}
.ls5e_c00032{letter-spacing:-1.665707pt;}
.ls6a_c00032{letter-spacing:-1.652693pt;}
.ls86_c00032{letter-spacing:-1.646187pt;}
.ls55_c00032{letter-spacing:-1.639680pt;}
.ls3e_c00032{letter-spacing:-1.600640pt;}
.ls8f_c00032{letter-spacing:-1.418453pt;}
.ls46_c00032{letter-spacing:-1.366400pt;}
.ls69_c00032{letter-spacing:-1.355680pt;}
.ls72_c00032{letter-spacing:-1.346880pt;}
.ls4d_c00032{letter-spacing:-1.294827pt;}
.ls3d_c00032{letter-spacing:-1.288320pt;}
.ls41_c00032{letter-spacing:-1.197227pt;}
.ls45_c00032{letter-spacing:-1.190720pt;}
.ls85_c00032{letter-spacing:-1.171200pt;}
.ls33_c00032{letter-spacing:-1.158187pt;}
.ls82_c00032{letter-spacing:-1.138667pt;}
.ls61_c00032{letter-spacing:-1.119147pt;}
.ls1e_c00032{letter-spacing:-1.073600pt;}
.ls56_c00032{letter-spacing:-1.060587pt;}
.ls59_c00032{letter-spacing:-1.054080pt;}
.ls8e_c00032{letter-spacing:-1.028053pt;}
.ls52_c00032{letter-spacing:-1.021547pt;}
.ls23_c00032{letter-spacing:-1.008533pt;}
.ls80_c00032{letter-spacing:-1.002027pt;}
.ls2f_c00032{letter-spacing:-0.995520pt;}
.ls57_c00032{letter-spacing:-0.989013pt;}
.ls28_c00032{letter-spacing:-0.969493pt;}
.ls4b_c00032{letter-spacing:-0.956480pt;}
.ls3a_c00032{letter-spacing:-0.917440pt;}
.ls93_c00032{letter-spacing:-0.910933pt;}
.ls1b_c00032{letter-spacing:-0.865387pt;}
.ls60_c00032{letter-spacing:-0.852373pt;}
.ls24_c00032{letter-spacing:-0.845867pt;}
.ls89_c00032{letter-spacing:-0.839360pt;}
.ls6d_c00032{letter-spacing:-0.826347pt;}
.ls58_c00032{letter-spacing:-0.806827pt;}
.ls6b_c00032{letter-spacing:-0.787307pt;}
.ls3c_c00032{letter-spacing:-0.780800pt;}
.ls8d_c00032{letter-spacing:-0.767787pt;}
.ls43_c00032{letter-spacing:-0.761280pt;}
.ls66_c00032{letter-spacing:-0.748267pt;}
.ls36_c00032{letter-spacing:-0.741760pt;}
.ls73_c00032{letter-spacing:-0.722240pt;}
.ls67_c00032{letter-spacing:-0.709227pt;}
.ls7a_c00032{letter-spacing:-0.702720pt;}
.ls21_c00032{letter-spacing:-0.696213pt;}
.ls65_c00032{letter-spacing:-0.644160pt;}
.ls87_c00032{letter-spacing:-0.637653pt;}
.ls26_c00032{letter-spacing:-0.631147pt;}
.ls83_c00032{letter-spacing:-0.624640pt;}
.ls5a_c00032{letter-spacing:-0.611627pt;}
.ls70_c00032{letter-spacing:-0.605120pt;}
.ls37_c00032{letter-spacing:-0.598613pt;}
.ls40_c00032{letter-spacing:-0.592107pt;}
.ls1a_c00032{letter-spacing:-0.585600pt;}
.ls35_c00032{letter-spacing:-0.572587pt;}
.ls84_c00032{letter-spacing:-0.566080pt;}
.ls20_c00032{letter-spacing:-0.559573pt;}
.ls30_c00032{letter-spacing:-0.546560pt;}
.ls8a_c00032{letter-spacing:-0.540053pt;}
.ls25_c00032{letter-spacing:-0.533547pt;}
.ls44_c00032{letter-spacing:-0.520533pt;}
.ls6e_c00032{letter-spacing:-0.514027pt;}
.ls51_c00032{letter-spacing:-0.507520pt;}
.ls62_c00032{letter-spacing:-0.501013pt;}
.ls7d_c00032{letter-spacing:-0.494507pt;}
.ls74_c00032{letter-spacing:-0.474987pt;}
.ls18_c00032{letter-spacing:-0.468480pt;}
.ls4f_c00032{letter-spacing:-0.461973pt;}
.ls4a_c00032{letter-spacing:-0.455467pt;}
.ls19_c00032{letter-spacing:-0.448960pt;}
.ls1d_c00032{letter-spacing:-0.442453pt;}
.ls94_c00032{letter-spacing:-0.435947pt;}
.ls81_c00032{letter-spacing:-0.422933pt;}
.ls54_c00032{letter-spacing:-0.416427pt;}
.ls29_c00032{letter-spacing:-0.409920pt;}
.ls68_c00032{letter-spacing:-0.403413pt;}
.ls47_c00032{letter-spacing:-0.396907pt;}
.ls1f_c00032{letter-spacing:-0.390400pt;}
.ls2b_c00032{letter-spacing:-0.383893pt;}
.ls48_c00032{letter-spacing:-0.377387pt;}
.ls34_c00032{letter-spacing:-0.370880pt;}
.ls5f_c00032{letter-spacing:-0.364373pt;}
.ls5b_c00032{letter-spacing:-0.351360pt;}
.ls50_c00032{letter-spacing:-0.338347pt;}
.ls27_c00032{letter-spacing:-0.325333pt;}
.ls32_c00032{letter-spacing:-0.318827pt;}
.ls38_c00032{letter-spacing:-0.312320pt;}
.ls2e_c00032{letter-spacing:-0.305813pt;}
.ls39_c00032{letter-spacing:-0.292800pt;}
.ls77_c00032{letter-spacing:-0.286293pt;}
.ls42_c00032{letter-spacing:-0.279787pt;}
.ls64_c00032{letter-spacing:-0.273280pt;}
.ls31_c00032{letter-spacing:-0.266773pt;}
.ls63_c00032{letter-spacing:-0.260267pt;}
.ls97_c00032{letter-spacing:-0.253760pt;}
.ls16_c00032{letter-spacing:-0.247253pt;}
.ls5d_c00032{letter-spacing:-0.240747pt;}
.ls53_c00032{letter-spacing:-0.221227pt;}
.ls4e_c00032{letter-spacing:-0.214720pt;}
.ls2a_c00032{letter-spacing:-0.208213pt;}
.ls6c_c00032{letter-spacing:-0.201707pt;}
.ls90_c00032{letter-spacing:-0.195200pt;}
.ls6f_c00032{letter-spacing:-0.188693pt;}
.ls78_c00032{letter-spacing:-0.182187pt;}
.ls8b_c00032{letter-spacing:-0.175680pt;}
.ls76_c00032{letter-spacing:-0.169173pt;}
.ls7c_c00032{letter-spacing:-0.156160pt;}
.ls17_c00032{letter-spacing:-0.149653pt;}
.ls3b_c00032{letter-spacing:-0.143147pt;}
.ls5c_c00032{letter-spacing:-0.136640pt;}
.ls71_c00032{letter-spacing:-0.117120pt;}
.ls3f_c00032{letter-spacing:-0.110613pt;}
.ls88_c00032{letter-spacing:-0.104107pt;}
.ls2c_c00032{letter-spacing:-0.097600pt;}
.ls1c_c00032{letter-spacing:-0.091093pt;}
.ls49_c00032{letter-spacing:-0.084587pt;}
.ls92_c00032{letter-spacing:-0.071573pt;}
.ls75_c00032{letter-spacing:-0.065067pt;}
.ls7b_c00032{letter-spacing:-0.039040pt;}
.ls7f_c00032{letter-spacing:-0.026027pt;}
.ls96_c00032{letter-spacing:-0.019520pt;}
.ls95_c00032{letter-spacing:-0.013013pt;}
.ls15_c00032{letter-spacing:0.000000pt;}
.ls6_c00032{letter-spacing:0.006507pt;}
.lsb_c00032{letter-spacing:0.013013pt;}
.ls8c_c00032{letter-spacing:0.032533pt;}
.ls13_c00032{letter-spacing:0.039040pt;}
.ls12_c00032{letter-spacing:0.052053pt;}
.ls4_c00032{letter-spacing:0.084587pt;}
.ls9_c00032{letter-spacing:0.117120pt;}
.lsf_c00032{letter-spacing:0.123627pt;}
.ls10_c00032{letter-spacing:0.130133pt;}
.lse_c00032{letter-spacing:0.136640pt;}
.ls11_c00032{letter-spacing:0.143147pt;}
.ls2_c00032{letter-spacing:0.162667pt;}
.ls5_c00032{letter-spacing:0.195200pt;}
.ls7e_c00032{letter-spacing:0.221227pt;}
.ls1_c00032{letter-spacing:0.227733pt;}
.ls3_c00032{letter-spacing:0.279787pt;}
.lsd_c00032{letter-spacing:0.292800pt;}
.lsa_c00032{letter-spacing:0.429440pt;}
.ls91_c00032{letter-spacing:0.514027pt;}
.ls8_c00032{letter-spacing:0.683200pt;}
.ls14_c00032{letter-spacing:0.815360pt;}
.lsc_c00032{letter-spacing:1.086613pt;}
.ls0_c00032{letter-spacing:1.320107pt;}
.ls7_c00032{letter-spacing:1.574613pt;}
.ws0_c00032{word-spacing:0.000000pt;}
._0_c00032{margin-left:-4.037973pt;}
._18_c00032{margin-left:-1.392427pt;}
._13_c00032{width:1.080107pt;}
._8_c00032{width:2.537600pt;}
._7_c00032{width:3.956053pt;}
._a_c00032{width:5.498133pt;}
._9_c00032{width:6.571733pt;}
._1_c00032{width:7.710400pt;}
._2_c00032{width:8.718933pt;}
._3_c00032{width:10.514773pt;}
._5_c00032{width:11.751040pt;}
._4_c00032{width:13.410240pt;}
._6_c00032{width:14.640000pt;}
._15_c00032{width:16.982400pt;}
._14_c00032{width:18.173120pt;}
._b_c00032{width:20.014507pt;}
._c_c00032{width:21.153173pt;}
._10_c00032{width:22.187733pt;}
._e_c00032{width:23.248320pt;}
._d_c00032{width:24.334933pt;}
._12_c00032{width:25.415040pt;}
._f_c00032{width:27.301973pt;}
._16_c00032{width:28.434133pt;}
._11_c00032{width:29.371093pt;}
._17_c00032{width:33.750080pt;}
.fs0_c00032{font-size:55.466667pt;}
.fs2_c00032{font-size:59.200000pt;}
.fs3_c00032{font-size:60.266667pt;}
.fs4_c00032{font-size:60.800000pt;}
.fs1_c00032{font-size:65.066667pt;}
.y0_c00032{bottom:0.000000pt;}
.y2d_c00032{bottom:55.040000pt;}
.y2c_c00032{bottom:111.040000pt;}
.y2a_c00032{bottom:138.236000pt;}
.y2b_c00032{bottom:138.240000pt;}
.y29_c00032{bottom:165.759200pt;}
.y27_c00032{bottom:192.960533pt;}
.y28_c00032{bottom:192.973333pt;}
.y26_c00032{bottom:220.483733pt;}
.y25_c00032{bottom:275.530133pt;}
.y24_c00032{bottom:303.053333pt;}
.y23_c00032{bottom:303.061067pt;}
.y22_c00032{bottom:330.893067pt;}
.y20_c00032{bottom:358.393600pt;}
.y21_c00032{bottom:358.400000pt;}
.y1f_c00032{bottom:385.933067pt;}
.y1e_c00032{bottom:413.433867pt;}
.y1d_c00032{bottom:440.973333pt;}
.y1c_c00032{bottom:440.975467pt;}
.y1a_c00032{bottom:468.172267pt;}
.y1b_c00032{bottom:468.173333pt;}
.y19_c00032{bottom:496.313600pt;}
.y18_c00032{bottom:523.853067pt;}
.y16_c00032{bottom:551.353867pt;}
.y17_c00032{bottom:551.360000pt;}
.y15_c00032{bottom:578.893333pt;}
.y14_c00032{bottom:578.895467pt;}
.y13_c00032{bottom:606.093333pt;}
.y12_c00032{bottom:606.093600pt;}
.y11_c00032{bottom:633.616800pt;}
.y10_c00032{bottom:688.321600pt;}
.yf_c00032{bottom:715.861067pt;}
.ye_c00032{bottom:743.693333pt;}
.yd_c00032{bottom:743.698400pt;}
.yc_c00032{bottom:770.880000pt;}
.yb_c00032{bottom:770.883733pt;}
.ya_c00032{bottom:798.716000pt;}
.y9_c00032{bottom:825.930133pt;}
.y7_c00032{bottom:853.452267pt;}
.y8_c00032{bottom:853.453333pt;}
.y6_c00032{bottom:880.633867pt;}
.y5_c00032{bottom:908.173333pt;}
.y3_c00032{bottom:962.879467pt;}
.y4_c00032{bottom:962.880000pt;}
.y2_c00032{bottom:991.053333pt;}
.y1_c00032{bottom:1059.533333pt;}
.h2_c00032{height:54.437500pt;}
.h6_c00032{height:59.671875pt;}
.h3_c00032{height:63.859375pt;}
.h5_c00032{height:63.860442pt;}
.h4_c00032{height:63.883908pt;}
.h1_c00032{height:1122.666667pt;}
.h0_c00032{height:1122.880000pt;}
.w1_c00032{width:793.333333pt;}
.w0_c00032{width:793.600000pt;}
.x0_c00032{left:0.000000pt;}
.x1e_c00032{left:104.795733pt;}
.x15_c00032{left:106.109867pt;}
.x8_c00032{left:107.021333pt;}
.x5_c00032{left:108.019467pt;}
.x2_c00032{left:109.146667pt;}
.x1_c00032{left:110.253333pt;}
.x20_c00032{left:152.229600pt;}
.xe_c00032{left:154.129600pt;}
.x4_c00032{left:172.386667pt;}
.x9_c00032{left:259.373333pt;}
.xa_c00032{left:280.413333pt;}
.x16_c00032{left:299.066667pt;}
.xb_c00032{left:300.133333pt;}
.x17_c00032{left:315.706667pt;}
.xf_c00032{left:367.546667pt;}
.xc_c00032{left:373.293333pt;}
.x24_c00032{left:378.480000pt;}
.x10_c00032{left:382.880000pt;}
.xd_c00032{left:392.826667pt;}
.x1c_c00032{left:428.346667pt;}
.x1d_c00032{left:444.960000pt;}
.x11_c00032{left:452.253333pt;}
.x12_c00032{left:469.906667pt;}
.x18_c00032{left:514.400000pt;}
.x21_c00032{left:548.960000pt;}
.x1a_c00032{left:564.653333pt;}
.x1f_c00032{left:566.493333pt;}
.x6_c00032{left:567.813333pt;}
.x22_c00032{left:574.000000pt;}
.x19_c00032{left:583.773333pt;}
.x1b_c00032{left:585.146667pt;}
.x7_c00032{left:595.346667pt;}
.x3_c00032{left:604.320000pt;}
.x13_c00032{left:623.440000pt;}
.x14_c00032{left:651.986667pt;}
.x23_c00032{left:653.306667pt;}
}





/* 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_c00033 {
    display:none;
  }
  .loading-indicator_c00033.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00033 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_c00033 { 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_c00033" -> "#page-container .classname_c00033")
 */
.pf_c00033 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00033 { /* 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_c00033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00033 { /* 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_c00033 { /* 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_c00033 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00033 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00033 {overflow:visible;}
  }
}
.c_c00033 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00033 { /* 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_c00033:after { /* webkit #35443 */
  content: '';
}
.t_c00033:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00033 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 */
}
.__c00033 { /* 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_c00033 { /* info for Javascript */
  display:none;
}
.l_c00033 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00033 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00033 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00033: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_c00033 {
    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_c00033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00033.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_c00033 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00033;src:url('chunks/assets/font_a2cbe3db64ba14b232eb1778.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.284668;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_c00033;src:url('chunks/assets/font_c983d54b89182898dd90cc15.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.284180;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_c00033;src:url('chunks/assets/font_d7e21df3044ba966dffa62c0.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.311035;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_c00033{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_c00033{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.m0_c00033{transform:matrix(0.252849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252849,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls99_c00033{letter-spacing:-1.528800px;}
.ls8a_c00033{letter-spacing:-1.239000px;}
.ls8d_c00033{letter-spacing:-1.083300px;}
.ls95_c00033{letter-spacing:-0.759000px;}
.ls86_c00033{letter-spacing:-0.717600px;}
.ls96_c00033{letter-spacing:-0.296700px;}
.ls92_c00033{letter-spacing:-0.103500px;}
.ls85_c00033{letter-spacing:0.000000px;}
.ls7f_c00033{letter-spacing:0.007080px;}
.ls36_c00033{letter-spacing:0.020700px;}
.ls93_c00033{letter-spacing:0.117300px;}
.ls26_c00033{letter-spacing:0.247800px;}
.ls68_c00033{letter-spacing:0.269100px;}
.ls1a_c00033{letter-spacing:0.331200px;}
.ls2e_c00033{letter-spacing:0.351900px;}
.ls7e_c00033{letter-spacing:0.400200px;}
.ls4f_c00033{letter-spacing:0.427800px;}
.ls51_c00033{letter-spacing:0.496800px;}
.ls6b_c00033{letter-spacing:0.566400px;}
.ls44_c00033{letter-spacing:0.607200px;}
.ls9_c00033{letter-spacing:0.621000px;}
.ls54_c00033{letter-spacing:0.634800px;}
.ls7b_c00033{letter-spacing:0.641700px;}
.ls94_c00033{letter-spacing:0.676200px;}
.ls49_c00033{letter-spacing:0.703800px;}
.ls78_c00033{letter-spacing:0.731400px;}
.ls27_c00033{letter-spacing:0.743400px;}
.ls70_c00033{letter-spacing:0.745200px;}
.ls41_c00033{letter-spacing:0.750480px;}
.ls5f_c00033{letter-spacing:0.759000px;}
.ls42_c00033{letter-spacing:0.800040px;}
.ls73_c00033{letter-spacing:0.800400px;}
.ls97_c00033{letter-spacing:0.807300px;}
.ls4b_c00033{letter-spacing:0.848700px;}
.ls89_c00033{letter-spacing:0.883200px;}
.ls14_c00033{letter-spacing:0.903900px;}
.ls7a_c00033{letter-spacing:0.910800px;}
.ls31_c00033{letter-spacing:0.917700px;}
.ls56_c00033{letter-spacing:0.924600px;}
.ls8e_c00033{letter-spacing:0.931500px;}
.ls83_c00033{letter-spacing:0.938400px;}
.ls7_c00033{letter-spacing:0.945300px;}
.ls2b_c00033{letter-spacing:0.966000px;}
.ls6f_c00033{letter-spacing:0.993600px;}
.ls88_c00033{letter-spacing:1.007400px;}
.ls90_c00033{letter-spacing:1.014300px;}
.ls5_c00033{letter-spacing:1.035000px;}
.ls5e_c00033{letter-spacing:1.048800px;}
.ls7c_c00033{letter-spacing:1.055700px;}
.ls1b_c00033{letter-spacing:1.062600px;}
.ls4a_c00033{letter-spacing:1.076400px;}
.ls81_c00033{letter-spacing:1.090200px;}
.ls55_c00033{letter-spacing:1.097100px;}
.ls79_c00033{letter-spacing:1.110900px;}
.ls6e_c00033{letter-spacing:1.117800px;}
.ls6a_c00033{letter-spacing:1.131600px;}
.ls58_c00033{letter-spacing:1.138500px;}
.ls10_c00033{letter-spacing:1.152300px;}
.ls74_c00033{letter-spacing:1.159200px;}
.ls33_c00033{letter-spacing:1.166100px;}
.ls64_c00033{letter-spacing:1.173000px;}
.ls1f_c00033{letter-spacing:1.179900px;}
.ls2c_c00033{letter-spacing:1.186800px;}
.ls91_c00033{letter-spacing:1.200600px;}
.lsb_c00033{letter-spacing:1.207500px;}
.ls4c_c00033{letter-spacing:1.214400px;}
.ls5a_c00033{letter-spacing:1.221300px;}
.ls19_c00033{letter-spacing:1.235100px;}
.ls66_c00033{letter-spacing:1.248900px;}
.ls69_c00033{letter-spacing:1.255800px;}
.ls1c_c00033{letter-spacing:1.269600px;}
.ls47_c00033{letter-spacing:1.276500px;}
.ls1d_c00033{letter-spacing:1.283400px;}
.ls45_c00033{letter-spacing:1.290300px;}
.ls4d_c00033{letter-spacing:1.297200px;}
.ls2_c00033{letter-spacing:1.304100px;}
.ls4e_c00033{letter-spacing:1.311000px;}
.ls32_c00033{letter-spacing:1.317900px;}
.ls2f_c00033{letter-spacing:1.324800px;}
.ls4_c00033{letter-spacing:1.345500px;}
.ls5d_c00033{letter-spacing:1.359300px;}
.lse_c00033{letter-spacing:1.380000px;}
.ls24_c00033{letter-spacing:1.386900px;}
.ls40_c00033{letter-spacing:1.393800px;}
.ls6c_c00033{letter-spacing:1.400700px;}
.ls57_c00033{letter-spacing:1.407600px;}
.ls75_c00033{letter-spacing:1.414500px;}
.ls21_c00033{letter-spacing:1.428300px;}
.ls43_c00033{letter-spacing:1.435200px;}
.ls67_c00033{letter-spacing:1.442100px;}
.lsc_c00033{letter-spacing:1.469700px;}
.ls65_c00033{letter-spacing:1.497300px;}
.lsa_c00033{letter-spacing:1.504200px;}
.ls13_c00033{letter-spacing:1.511100px;}
.ls5b_c00033{letter-spacing:1.518000px;}
.ls18_c00033{letter-spacing:1.545600px;}
.ls3e_c00033{letter-spacing:1.552500px;}
.ls39_c00033{letter-spacing:1.559400px;}
.ls0_c00033{letter-spacing:1.566300px;}
.ls53_c00033{letter-spacing:1.573200px;}
.ls3_c00033{letter-spacing:1.580100px;}
.ls71_c00033{letter-spacing:1.587000px;}
.ls38_c00033{letter-spacing:1.600800px;}
.ls8c_c00033{letter-spacing:1.614600px;}
.ls82_c00033{letter-spacing:1.628400px;}
.ls17_c00033{letter-spacing:1.635300px;}
.ls3a_c00033{letter-spacing:1.642200px;}
.ls3c_c00033{letter-spacing:1.656000px;}
.ls23_c00033{letter-spacing:1.662900px;}
.ls72_c00033{letter-spacing:1.676700px;}
.ls6_c00033{letter-spacing:1.683600px;}
.ls11_c00033{letter-spacing:1.690500px;}
.ls12_c00033{letter-spacing:1.704300px;}
.ls25_c00033{letter-spacing:1.718100px;}
.ls8_c00033{letter-spacing:1.738800px;}
.ls8f_c00033{letter-spacing:1.752600px;}
.ls16_c00033{letter-spacing:1.766400px;}
.ls30_c00033{letter-spacing:1.773300px;}
.ls50_c00033{letter-spacing:1.787100px;}
.ls1_c00033{letter-spacing:1.794000px;}
.ls2a_c00033{letter-spacing:1.835400px;}
.ls37_c00033{letter-spacing:1.842300px;}
.ls61_c00033{letter-spacing:1.849200px;}
.ls28_c00033{letter-spacing:1.863000px;}
.ls7d_c00033{letter-spacing:1.876800px;}
.ls77_c00033{letter-spacing:1.890600px;}
.ls20_c00033{letter-spacing:1.897500px;}
.ls46_c00033{letter-spacing:1.932000px;}
.ls3d_c00033{letter-spacing:1.952700px;}
.ls35_c00033{letter-spacing:1.987200px;}
.lsf_c00033{letter-spacing:2.028600px;}
.ls98_c00033{letter-spacing:2.049300px;}
.ls80_c00033{letter-spacing:2.056200px;}
.ls29_c00033{letter-spacing:2.076900px;}
.ls3f_c00033{letter-spacing:2.083800px;}
.ls8b_c00033{letter-spacing:2.125200px;}
.lsd_c00033{letter-spacing:2.139000px;}
.ls62_c00033{letter-spacing:2.166600px;}
.ls1e_c00033{letter-spacing:2.194200px;}
.ls48_c00033{letter-spacing:2.201100px;}
.ls22_c00033{letter-spacing:2.208000px;}
.ls52_c00033{letter-spacing:2.242500px;}
.ls15_c00033{letter-spacing:2.318400px;}
.ls6d_c00033{letter-spacing:2.435700px;}
.ls60_c00033{letter-spacing:2.470200px;}
.ls2d_c00033{letter-spacing:2.539200px;}
.ls63_c00033{letter-spacing:2.691000px;}
.ls59_c00033{letter-spacing:2.746200px;}
.ls3b_c00033{letter-spacing:2.911800px;}
.ls87_c00033{letter-spacing:2.925600px;}
.ls84_c00033{letter-spacing:2.940000px;}
.ls5c_c00033{letter-spacing:3.003840px;}
.ls76_c00033{letter-spacing:3.070500px;}
.ls34_c00033{letter-spacing:3.284400px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{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__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:0.000000px;}
._11_c00033{margin-left:-5.871900px;}
._9_c00033{margin-left:-4.022700px;}
._f_c00033{margin-left:-2.339100px;}
._10_c00033{margin-left:-1.311000px;}
._17_c00033{width:1.124700px;}
._c_c00033{width:2.932500px;}
._0_c00033{width:4.071000px;}
._4_c00033{width:5.271600px;}
._1_c00033{width:7.155300px;}
._2_c00033{width:8.204100px;}
._1b_c00033{width:9.356400px;}
._5_c00033{width:10.557000px;}
._3_c00033{width:12.054300px;}
._7_c00033{width:13.662000px;}
._8_c00033{width:15.766500px;}
._d_c00033{width:17.084400px;}
._6_c00033{width:18.222900px;}
._b_c00033{width:19.355400px;}
._e_c00033{width:21.879900px;}
._1c_c00033{width:23.611800px;}
._a_c00033{width:25.724100px;}
._1a_c00033{width:29.263800px;}
._18_c00033{width:30.483300px;}
._19_c00033{width:32.292000px;}
._12_c00033{width:39.971700px;}
._16_c00033{width:42.295920px;}
._14_c00033{width:43.987500px;}
._13_c00033{width:46.602600px;}
._15_c00033{width:47.755500px;}
.fc0_c00033{color:transparent;}
.fs0_c00033{font-size:58.800000px;}
.fs3_c00033{font-size:67.200000px;}
.fs1_c00033{font-size:69.000000px;}
.fs2_c00033{font-size:70.800000px;}
.y0_c00033{bottom:0.000000px;}
.y1c_c00033{bottom:63.375000px;}
.y1b_c00033{bottom:158.040000px;}
.y1a_c00033{bottom:188.636250px;}
.y19_c00033{bottom:219.587250px;}
.y18_c00033{bottom:280.807500px;}
.y17_c00033{bottom:311.771250px;}
.y16_c00033{bottom:342.733500px;}
.y15_c00033{bottom:373.335000px;}
.y14_c00033{bottom:435.254250px;}
.y13_c00033{bottom:496.424250px;}
.y12_c00033{bottom:558.351750px;}
.y11_c00033{bottom:589.673250px;}
.y10_c00033{bottom:620.257500px;}
.yf_c00033{bottom:650.876250px;}
.ye_c00033{bottom:681.840000px;}
.yd_c00033{bottom:712.803750px;}
.yc_c00033{bottom:774.714000px;}
.yb_c00033{bottom:805.682250px;}
.ya_c00033{bottom:836.646000px;}
.y9_c00033{bottom:867.972000px;}
.y8_c00033{bottom:898.556250px;}
.y7_c00033{bottom:929.504250px;}
.y6_c00033{bottom:959.760750px;}
.y5_c00033{bottom:1021.326000px;}
.y4_c00033{bottom:1051.548000px;}
.y3_c00033{bottom:1082.511750px;}
.y2_c00033{bottom:1113.855000px;}
.y1_c00033{bottom:1190.520000px;}
.h2_c00033{height:57.708984px;}
.h3_c00033{height:67.719727px;}
.h8_c00033{height:67.722727px;}
.hb_c00033{height:67.734727px;}
.ha_c00033{height:67.770727px;}
.h6_c00033{height:67.806727px;}
.hc_c00033{height:69.451758px;}
.h9_c00033{height:69.457758px;}
.h5_c00033{height:69.502758px;}
.h4_c00033{height:69.514758px;}
.h7_c00033{height:69.602063px;}
.h1_c00033{height:1263.000000px;}
.h0_c00033{height:1263.240000px;}
.w1_c00033{width:892.500000px;}
.w0_c00033{width:892.800000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:124.770000px;}
.x3_c00033{left:178.454250px;}
.x2_c00033{left:274.530000px;}
.x4_c00033{left:429.030000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls99_c00033{letter-spacing:-1.358933pt;}
.ls8a_c00033{letter-spacing:-1.101333pt;}
.ls8d_c00033{letter-spacing:-0.962933pt;}
.ls95_c00033{letter-spacing:-0.674667pt;}
.ls86_c00033{letter-spacing:-0.637867pt;}
.ls96_c00033{letter-spacing:-0.263733pt;}
.ls92_c00033{letter-spacing:-0.092000pt;}
.ls85_c00033{letter-spacing:0.000000pt;}
.ls7f_c00033{letter-spacing:0.006293pt;}
.ls36_c00033{letter-spacing:0.018400pt;}
.ls93_c00033{letter-spacing:0.104267pt;}
.ls26_c00033{letter-spacing:0.220267pt;}
.ls68_c00033{letter-spacing:0.239200pt;}
.ls1a_c00033{letter-spacing:0.294400pt;}
.ls2e_c00033{letter-spacing:0.312800pt;}
.ls7e_c00033{letter-spacing:0.355733pt;}
.ls4f_c00033{letter-spacing:0.380267pt;}
.ls51_c00033{letter-spacing:0.441600pt;}
.ls6b_c00033{letter-spacing:0.503467pt;}
.ls44_c00033{letter-spacing:0.539733pt;}
.ls9_c00033{letter-spacing:0.552000pt;}
.ls54_c00033{letter-spacing:0.564267pt;}
.ls7b_c00033{letter-spacing:0.570400pt;}
.ls94_c00033{letter-spacing:0.601067pt;}
.ls49_c00033{letter-spacing:0.625600pt;}
.ls78_c00033{letter-spacing:0.650133pt;}
.ls27_c00033{letter-spacing:0.660800pt;}
.ls70_c00033{letter-spacing:0.662400pt;}
.ls41_c00033{letter-spacing:0.667093pt;}
.ls5f_c00033{letter-spacing:0.674667pt;}
.ls42_c00033{letter-spacing:0.711147pt;}
.ls73_c00033{letter-spacing:0.711467pt;}
.ls97_c00033{letter-spacing:0.717600pt;}
.ls4b_c00033{letter-spacing:0.754400pt;}
.ls89_c00033{letter-spacing:0.785067pt;}
.ls14_c00033{letter-spacing:0.803467pt;}
.ls7a_c00033{letter-spacing:0.809600pt;}
.ls31_c00033{letter-spacing:0.815733pt;}
.ls56_c00033{letter-spacing:0.821867pt;}
.ls8e_c00033{letter-spacing:0.828000pt;}
.ls83_c00033{letter-spacing:0.834133pt;}
.ls7_c00033{letter-spacing:0.840267pt;}
.ls2b_c00033{letter-spacing:0.858667pt;}
.ls6f_c00033{letter-spacing:0.883200pt;}
.ls88_c00033{letter-spacing:0.895467pt;}
.ls90_c00033{letter-spacing:0.901600pt;}
.ls5_c00033{letter-spacing:0.920000pt;}
.ls5e_c00033{letter-spacing:0.932267pt;}
.ls7c_c00033{letter-spacing:0.938400pt;}
.ls1b_c00033{letter-spacing:0.944533pt;}
.ls4a_c00033{letter-spacing:0.956800pt;}
.ls81_c00033{letter-spacing:0.969067pt;}
.ls55_c00033{letter-spacing:0.975200pt;}
.ls79_c00033{letter-spacing:0.987467pt;}
.ls6e_c00033{letter-spacing:0.993600pt;}
.ls6a_c00033{letter-spacing:1.005867pt;}
.ls58_c00033{letter-spacing:1.012000pt;}
.ls10_c00033{letter-spacing:1.024267pt;}
.ls74_c00033{letter-spacing:1.030400pt;}
.ls33_c00033{letter-spacing:1.036533pt;}
.ls64_c00033{letter-spacing:1.042667pt;}
.ls1f_c00033{letter-spacing:1.048800pt;}
.ls2c_c00033{letter-spacing:1.054933pt;}
.ls91_c00033{letter-spacing:1.067200pt;}
.lsb_c00033{letter-spacing:1.073333pt;}
.ls4c_c00033{letter-spacing:1.079467pt;}
.ls5a_c00033{letter-spacing:1.085600pt;}
.ls19_c00033{letter-spacing:1.097867pt;}
.ls66_c00033{letter-spacing:1.110133pt;}
.ls69_c00033{letter-spacing:1.116267pt;}
.ls1c_c00033{letter-spacing:1.128533pt;}
.ls47_c00033{letter-spacing:1.134667pt;}
.ls1d_c00033{letter-spacing:1.140800pt;}
.ls45_c00033{letter-spacing:1.146933pt;}
.ls4d_c00033{letter-spacing:1.153067pt;}
.ls2_c00033{letter-spacing:1.159200pt;}
.ls4e_c00033{letter-spacing:1.165333pt;}
.ls32_c00033{letter-spacing:1.171467pt;}
.ls2f_c00033{letter-spacing:1.177600pt;}
.ls4_c00033{letter-spacing:1.196000pt;}
.ls5d_c00033{letter-spacing:1.208267pt;}
.lse_c00033{letter-spacing:1.226667pt;}
.ls24_c00033{letter-spacing:1.232800pt;}
.ls40_c00033{letter-spacing:1.238933pt;}
.ls6c_c00033{letter-spacing:1.245067pt;}
.ls57_c00033{letter-spacing:1.251200pt;}
.ls75_c00033{letter-spacing:1.257333pt;}
.ls21_c00033{letter-spacing:1.269600pt;}
.ls43_c00033{letter-spacing:1.275733pt;}
.ls67_c00033{letter-spacing:1.281867pt;}
.lsc_c00033{letter-spacing:1.306400pt;}
.ls65_c00033{letter-spacing:1.330933pt;}
.lsa_c00033{letter-spacing:1.337067pt;}
.ls13_c00033{letter-spacing:1.343200pt;}
.ls5b_c00033{letter-spacing:1.349333pt;}
.ls18_c00033{letter-spacing:1.373867pt;}
.ls3e_c00033{letter-spacing:1.380000pt;}
.ls39_c00033{letter-spacing:1.386133pt;}
.ls0_c00033{letter-spacing:1.392267pt;}
.ls53_c00033{letter-spacing:1.398400pt;}
.ls3_c00033{letter-spacing:1.404533pt;}
.ls71_c00033{letter-spacing:1.410667pt;}
.ls38_c00033{letter-spacing:1.422933pt;}
.ls8c_c00033{letter-spacing:1.435200pt;}
.ls82_c00033{letter-spacing:1.447467pt;}
.ls17_c00033{letter-spacing:1.453600pt;}
.ls3a_c00033{letter-spacing:1.459733pt;}
.ls3c_c00033{letter-spacing:1.472000pt;}
.ls23_c00033{letter-spacing:1.478133pt;}
.ls72_c00033{letter-spacing:1.490400pt;}
.ls6_c00033{letter-spacing:1.496533pt;}
.ls11_c00033{letter-spacing:1.502667pt;}
.ls12_c00033{letter-spacing:1.514933pt;}
.ls25_c00033{letter-spacing:1.527200pt;}
.ls8_c00033{letter-spacing:1.545600pt;}
.ls8f_c00033{letter-spacing:1.557867pt;}
.ls16_c00033{letter-spacing:1.570133pt;}
.ls30_c00033{letter-spacing:1.576267pt;}
.ls50_c00033{letter-spacing:1.588533pt;}
.ls1_c00033{letter-spacing:1.594667pt;}
.ls2a_c00033{letter-spacing:1.631467pt;}
.ls37_c00033{letter-spacing:1.637600pt;}
.ls61_c00033{letter-spacing:1.643733pt;}
.ls28_c00033{letter-spacing:1.656000pt;}
.ls7d_c00033{letter-spacing:1.668267pt;}
.ls77_c00033{letter-spacing:1.680533pt;}
.ls20_c00033{letter-spacing:1.686667pt;}
.ls46_c00033{letter-spacing:1.717333pt;}
.ls3d_c00033{letter-spacing:1.735733pt;}
.ls35_c00033{letter-spacing:1.766400pt;}
.lsf_c00033{letter-spacing:1.803200pt;}
.ls98_c00033{letter-spacing:1.821600pt;}
.ls80_c00033{letter-spacing:1.827733pt;}
.ls29_c00033{letter-spacing:1.846133pt;}
.ls3f_c00033{letter-spacing:1.852267pt;}
.ls8b_c00033{letter-spacing:1.889067pt;}
.lsd_c00033{letter-spacing:1.901333pt;}
.ls62_c00033{letter-spacing:1.925867pt;}
.ls1e_c00033{letter-spacing:1.950400pt;}
.ls48_c00033{letter-spacing:1.956533pt;}
.ls22_c00033{letter-spacing:1.962667pt;}
.ls52_c00033{letter-spacing:1.993333pt;}
.ls15_c00033{letter-spacing:2.060800pt;}
.ls6d_c00033{letter-spacing:2.165067pt;}
.ls60_c00033{letter-spacing:2.195733pt;}
.ls2d_c00033{letter-spacing:2.257067pt;}
.ls63_c00033{letter-spacing:2.392000pt;}
.ls59_c00033{letter-spacing:2.441067pt;}
.ls3b_c00033{letter-spacing:2.588267pt;}
.ls87_c00033{letter-spacing:2.600533pt;}
.ls84_c00033{letter-spacing:2.613333pt;}
.ls5c_c00033{letter-spacing:2.670080pt;}
.ls76_c00033{letter-spacing:2.729333pt;}
.ls34_c00033{letter-spacing:2.919467pt;}
.ws0_c00033{word-spacing:0.000000pt;}
._11_c00033{margin-left:-5.219467pt;}
._9_c00033{margin-left:-3.575733pt;}
._f_c00033{margin-left:-2.079200pt;}
._10_c00033{margin-left:-1.165333pt;}
._17_c00033{width:0.999733pt;}
._c_c00033{width:2.606667pt;}
._0_c00033{width:3.618667pt;}
._4_c00033{width:4.685867pt;}
._1_c00033{width:6.360267pt;}
._2_c00033{width:7.292533pt;}
._1b_c00033{width:8.316800pt;}
._5_c00033{width:9.384000pt;}
._3_c00033{width:10.714933pt;}
._7_c00033{width:12.144000pt;}
._8_c00033{width:14.014667pt;}
._d_c00033{width:15.186133pt;}
._6_c00033{width:16.198133pt;}
._b_c00033{width:17.204800pt;}
._e_c00033{width:19.448800pt;}
._1c_c00033{width:20.988267pt;}
._a_c00033{width:22.865867pt;}
._1a_c00033{width:26.012267pt;}
._18_c00033{width:27.096267pt;}
._19_c00033{width:28.704000pt;}
._12_c00033{width:35.530400pt;}
._16_c00033{width:37.596373pt;}
._14_c00033{width:39.100000pt;}
._13_c00033{width:41.424533pt;}
._15_c00033{width:42.449333pt;}
.fs0_c00033{font-size:52.266667pt;}
.fs3_c00033{font-size:59.733333pt;}
.fs1_c00033{font-size:61.333333pt;}
.fs2_c00033{font-size:62.933333pt;}
.y0_c00033{bottom:0.000000pt;}
.y1c_c00033{bottom:56.333333pt;}
.y1b_c00033{bottom:140.480000pt;}
.y1a_c00033{bottom:167.676667pt;}
.y19_c00033{bottom:195.188667pt;}
.y18_c00033{bottom:249.606667pt;}
.y17_c00033{bottom:277.130000pt;}
.y16_c00033{bottom:304.652000pt;}
.y15_c00033{bottom:331.853333pt;}
.y14_c00033{bottom:386.892667pt;}
.y13_c00033{bottom:441.266000pt;}
.y12_c00033{bottom:496.312667pt;}
.y11_c00033{bottom:524.154000pt;}
.y10_c00033{bottom:551.340000pt;}
.yf_c00033{bottom:578.556667pt;}
.ye_c00033{bottom:606.080000pt;}
.yd_c00033{bottom:633.603333pt;}
.yc_c00033{bottom:688.634667pt;}
.yb_c00033{bottom:716.162000pt;}
.ya_c00033{bottom:743.685333pt;}
.y9_c00033{bottom:771.530667pt;}
.y8_c00033{bottom:798.716667pt;}
.y7_c00033{bottom:826.226000pt;}
.y6_c00033{bottom:853.120667pt;}
.y5_c00033{bottom:907.845333pt;}
.y4_c00033{bottom:934.709333pt;}
.y3_c00033{bottom:962.232667pt;}
.y2_c00033{bottom:990.093333pt;}
.y1_c00033{bottom:1058.240000pt;}
.h2_c00033{height:51.296875pt;}
.h3_c00033{height:60.195312pt;}
.h8_c00033{height:60.197979pt;}
.hb_c00033{height:60.208646pt;}
.ha_c00033{height:60.240646pt;}
.h6_c00033{height:60.272646pt;}
.hc_c00033{height:61.734896pt;}
.h9_c00033{height:61.740229pt;}
.h5_c00033{height:61.780229pt;}
.h4_c00033{height:61.790896pt;}
.h7_c00033{height:61.868500pt;}
.h1_c00033{height:1122.666667pt;}
.h0_c00033{height:1122.880000pt;}
.w1_c00033{width:793.333333pt;}
.w0_c00033{width:793.600000pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:110.906667pt;}
.x3_c00033{left:158.626000pt;}
.x2_c00033{left:244.026667pt;}
.x4_c00033{left:381.360000pt;}
}





/* 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_c00034 {
    display:none;
  }
  .loading-indicator_c00034.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00034 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_c00034 { 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_c00034" -> "#page-container .classname_c00034")
 */
.pf_c00034 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00034 { /* 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_c00034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00034 { /* 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_c00034 { /* 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_c00034 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00034 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00034 {overflow:visible;}
  }
}
.c_c00034 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00034 { /* 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_c00034:after { /* webkit #35443 */
  content: '';
}
.t_c00034:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00034 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 */
}
.__c00034 { /* 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_c00034 { /* info for Javascript */
  display:none;
}
.l_c00034 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00034 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00034 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00034: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_c00034 {
    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_c00034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00034.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_c00034 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00034;src:url('chunks/assets/font_d3fe6b5d9da96c82b694a64d.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.284668;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_c00034;src:url('chunks/assets/font_c01e2b925bb729e7941447bf.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.284180;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_c00034;src:url('chunks/assets/font_e28b6034ce60f03f2e0327d4.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;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;}
.m6_c00034{transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);}
.m7_c00034{transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);}
.m3_c00034{transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);}
.m2_c00034{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);}
.m0_c00034{transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);}
.m1_c00034{transform:matrix(0.254242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254242,0.000000,0.000000,0.250000,0,0);}
.m4_c00034{transform:matrix(0.266014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266014,0.000000,0.000000,0.250000,0,0);}
.m5_c00034{transform:matrix(0.277495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277495,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls23_c00034{letter-spacing:-2.247000px;}
.ls2f_c00034{letter-spacing:-2.009460px;}
.ls30_c00034{letter-spacing:-1.682040px;}
.ls2c_c00034{letter-spacing:-1.258320px;}
.ls2b_c00034{letter-spacing:-1.206960px;}
.ls2a_c00034{letter-spacing:-1.104240px;}
.ls2e_c00034{letter-spacing:-0.417300px;}
.ls24_c00034{letter-spacing:-0.218280px;}
.ls32_c00034{letter-spacing:-0.088200px;}
.ls31_c00034{letter-spacing:0.000000px;}
.ls14_c00034{letter-spacing:0.097200px;}
.ls5_c00034{letter-spacing:0.147660px;}
.ls17_c00034{letter-spacing:0.157320px;}
.ls20_c00034{letter-spacing:0.186180px;}
.lsb_c00034{letter-spacing:0.272160px;}
.ls19_c00034{letter-spacing:0.455820px;}
.lsd_c00034{letter-spacing:0.498960px;}
.ls2_c00034{letter-spacing:0.520020px;}
.ls1f_c00034{letter-spacing:0.622740px;}
.ls2d_c00034{letter-spacing:0.654840px;}
.lsc_c00034{letter-spacing:0.725460px;}
.ls1d_c00034{letter-spacing:0.751140px;}
.ls25_c00034{letter-spacing:0.810000px;}
.ls12_c00034{letter-spacing:0.815340px;}
.ls13_c00034{letter-spacing:0.828180px;}
.ls1a_c00034{letter-spacing:0.885960px;}
.ls15_c00034{letter-spacing:0.898800px;}
.ls27_c00034{letter-spacing:0.918060px;}
.ls1b_c00034{letter-spacing:0.924480px;}
.ls7_c00034{letter-spacing:0.937320px;}
.ls3_c00034{letter-spacing:0.982260px;}
.ls6_c00034{letter-spacing:1.007940px;}
.ls0_c00034{letter-spacing:1.059300px;}
.ls8_c00034{letter-spacing:1.072140px;}
.lsa_c00034{letter-spacing:1.123500px;}
.ls16_c00034{letter-spacing:1.129920px;}
.ls1c_c00034{letter-spacing:1.200540px;}
.ls1_c00034{letter-spacing:1.251900px;}
.ls9_c00034{letter-spacing:1.335360px;}
.ls18_c00034{letter-spacing:1.348200px;}
.ls26_c00034{letter-spacing:1.444500px;}
.lse_c00034{letter-spacing:1.483020px;}
.ls1e_c00034{letter-spacing:1.515120px;}
.ls29_c00034{letter-spacing:1.566480px;}
.lsf_c00034{letter-spacing:1.598580px;}
.ls10_c00034{letter-spacing:1.784760px;}
.ls22_c00034{letter-spacing:1.855380px;}
.ls4_c00034{letter-spacing:1.958100px;}
.ls11_c00034{letter-spacing:2.080080px;}
.ls28_c00034{letter-spacing:2.730000px;}
.ls21_c00034{letter-spacing:2.940000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{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__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00034{word-spacing:0.000000px;}
._4_c00034{margin-left:-2.788320px;}
._1_c00034{margin-left:-1.059300px;}
._8_c00034{width:1.515120px;}
._0_c00034{width:2.741340px;}
._b_c00034{width:3.959220px;}
._3_c00034{width:5.161680px;}
._2_c00034{width:6.670380px;}
._9_c00034{width:8.878860px;}
._a_c00034{width:11.248080px;}
._5_c00034{width:14.817360px;}
._6_c00034{width:20.600160px;}
._7_c00034{width:22.807020px;}
._c_c00034{width:317.279880px;}
.fc0_c00034{color:transparent;}
.fs3_c00034{font-size:54.600000px;}
.fs0_c00034{font-size:58.800000px;}
.fs1_c00034{font-size:64.200000px;}
.fs2_c00034{font-size:64.800000px;}
.fs4_c00034{font-size:68.400000px;}
.y0_c00034{bottom:0.000000px;}
.yb_c00034{bottom:51.495000px;}
.ya_c00034{bottom:174.600000px;}
.y8_c00034{bottom:194.053800px;}
.y9_c00034{bottom:194.055000px;}
.y7_c00034{bottom:212.415000px;}
.y6_c00034{bottom:306.015000px;}
.y5_c00034{bottom:541.455000px;}
.y4_c00034{bottom:663.480000px;}
.y3_c00034{bottom:682.935000px;}
.y2_c00034{bottom:701.640000px;}
.y1_c00034{bottom:1179.720000px;}
.h5_c00034{height:56.946094px;}
.h2_c00034{height:57.708984px;}
.h3_c00034{height:63.008789px;}
.h4_c00034{height:63.566016px;}
.h6_c00034{height:67.135659px;}
.h1_c00034{height:1263.000000px;}
.h0_c00034{height:1263.240000px;}
.w1_c00034{width:892.500000px;}
.w0_c00034{width:892.800000px;}
.x0_c00034{left:0.000000px;}
.x3_c00034{left:117.285000px;}
.x1_c00034{left:121.170000px;}
.x4_c00034{left:165.510000px;}
.x5_c00034{left:182.445000px;}
.x8_c00034{left:183.885000px;}
.x2_c00034{left:271.290000px;}
.xb_c00034{left:424.350000px;}
.x7_c00034{left:438.135000px;}
.x6_c00034{left:442.095000px;}
.x9_c00034{left:474.345000px;}
.xa_c00034{left:493.230000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls23_c00034{letter-spacing:-1.997333pt;}
.ls2f_c00034{letter-spacing:-1.786187pt;}
.ls30_c00034{letter-spacing:-1.495147pt;}
.ls2c_c00034{letter-spacing:-1.118507pt;}
.ls2b_c00034{letter-spacing:-1.072853pt;}
.ls2a_c00034{letter-spacing:-0.981547pt;}
.ls2e_c00034{letter-spacing:-0.370933pt;}
.ls24_c00034{letter-spacing:-0.194027pt;}
.ls32_c00034{letter-spacing:-0.078400pt;}
.ls31_c00034{letter-spacing:0.000000pt;}
.ls14_c00034{letter-spacing:0.086400pt;}
.ls5_c00034{letter-spacing:0.131253pt;}
.ls17_c00034{letter-spacing:0.139840pt;}
.ls20_c00034{letter-spacing:0.165493pt;}
.lsb_c00034{letter-spacing:0.241920pt;}
.ls19_c00034{letter-spacing:0.405173pt;}
.lsd_c00034{letter-spacing:0.443520pt;}
.ls2_c00034{letter-spacing:0.462240pt;}
.ls1f_c00034{letter-spacing:0.553547pt;}
.ls2d_c00034{letter-spacing:0.582080pt;}
.lsc_c00034{letter-spacing:0.644853pt;}
.ls1d_c00034{letter-spacing:0.667680pt;}
.ls25_c00034{letter-spacing:0.720000pt;}
.ls12_c00034{letter-spacing:0.724747pt;}
.ls13_c00034{letter-spacing:0.736160pt;}
.ls1a_c00034{letter-spacing:0.787520pt;}
.ls15_c00034{letter-spacing:0.798933pt;}
.ls27_c00034{letter-spacing:0.816053pt;}
.ls1b_c00034{letter-spacing:0.821760pt;}
.ls7_c00034{letter-spacing:0.833173pt;}
.ls3_c00034{letter-spacing:0.873120pt;}
.ls6_c00034{letter-spacing:0.895947pt;}
.ls0_c00034{letter-spacing:0.941600pt;}
.ls8_c00034{letter-spacing:0.953013pt;}
.lsa_c00034{letter-spacing:0.998667pt;}
.ls16_c00034{letter-spacing:1.004373pt;}
.ls1c_c00034{letter-spacing:1.067147pt;}
.ls1_c00034{letter-spacing:1.112800pt;}
.ls9_c00034{letter-spacing:1.186987pt;}
.ls18_c00034{letter-spacing:1.198400pt;}
.ls26_c00034{letter-spacing:1.284000pt;}
.lse_c00034{letter-spacing:1.318240pt;}
.ls1e_c00034{letter-spacing:1.346773pt;}
.ls29_c00034{letter-spacing:1.392427pt;}
.lsf_c00034{letter-spacing:1.420960pt;}
.ls10_c00034{letter-spacing:1.586453pt;}
.ls22_c00034{letter-spacing:1.649227pt;}
.ls4_c00034{letter-spacing:1.740533pt;}
.ls11_c00034{letter-spacing:1.848960pt;}
.ls28_c00034{letter-spacing:2.426667pt;}
.ls21_c00034{letter-spacing:2.613333pt;}
.ws0_c00034{word-spacing:0.000000pt;}
._4_c00034{margin-left:-2.478507pt;}
._1_c00034{margin-left:-0.941600pt;}
._8_c00034{width:1.346773pt;}
._0_c00034{width:2.436747pt;}
._b_c00034{width:3.519307pt;}
._3_c00034{width:4.588160pt;}
._2_c00034{width:5.929227pt;}
._9_c00034{width:7.892320pt;}
._a_c00034{width:9.998293pt;}
._5_c00034{width:13.170987pt;}
._6_c00034{width:18.311253pt;}
._7_c00034{width:20.272907pt;}
._c_c00034{width:282.026560pt;}
.fs3_c00034{font-size:48.533333pt;}
.fs0_c00034{font-size:52.266667pt;}
.fs1_c00034{font-size:57.066667pt;}
.fs2_c00034{font-size:57.600000pt;}
.fs4_c00034{font-size:60.800000pt;}
.y0_c00034{bottom:0.000000pt;}
.yb_c00034{bottom:45.773333pt;}
.ya_c00034{bottom:155.200000pt;}
.y8_c00034{bottom:172.492267pt;}
.y9_c00034{bottom:172.493333pt;}
.y7_c00034{bottom:188.813333pt;}
.y6_c00034{bottom:272.013333pt;}
.y5_c00034{bottom:481.293333pt;}
.y4_c00034{bottom:589.760000pt;}
.y3_c00034{bottom:607.053333pt;}
.y2_c00034{bottom:623.680000pt;}
.y1_c00034{bottom:1048.640000pt;}
.h5_c00034{height:50.618750pt;}
.h2_c00034{height:51.296875pt;}
.h3_c00034{height:56.007812pt;}
.h4_c00034{height:56.503125pt;}
.h6_c00034{height:59.676142pt;}
.h1_c00034{height:1122.666667pt;}
.h0_c00034{height:1122.880000pt;}
.w1_c00034{width:793.333333pt;}
.w0_c00034{width:793.600000pt;}
.x0_c00034{left:0.000000pt;}
.x3_c00034{left:104.253333pt;}
.x1_c00034{left:107.706667pt;}
.x4_c00034{left:147.120000pt;}
.x5_c00034{left:162.173333pt;}
.x8_c00034{left:163.453333pt;}
.x2_c00034{left:241.146667pt;}
.xb_c00034{left:377.200000pt;}
.x7_c00034{left:389.453333pt;}
.x6_c00034{left:392.973333pt;}
.x9_c00034{left:421.640000pt;}
.xa_c00034{left:438.426667pt;}
}





/* 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_c00035 {
    display:none;
  }
  .loading-indicator_c00035.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00035 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_c00035 { 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_c00035" -> "#page-container .classname_c00035")
 */
.pf_c00035 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00035 { /* 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_c00035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00035 { /* 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_c00035 { /* 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_c00035 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00035 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00035 {overflow:visible;}
  }
}
.c_c00035 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00035 { /* 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_c00035:after { /* webkit #35443 */
  content: '';
}
.t_c00035:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00035 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 */
}
.__c00035 { /* 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_c00035 { /* info for Javascript */
  display:none;
}
.l_c00035 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00035 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00035 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00035: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_c00035 {
    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_c00035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00035.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_c00035 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00035;src:url('chunks/assets/font_e6797e7672c5d8b5281c37e2.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.284668;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_c00035;src:url('chunks/assets/font_f5c1b20acdfa3287ff104168.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.284180;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_c00035;src:url('chunks/assets/font_0da1dd2f39313b99d2de06fa.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:1.311035;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_c00035;src:url('chunks/assets/font_38c78304534652b337fcd92c.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:1.284180;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_c00035;src:url('chunks/assets/font_33ba8d42206fa4273f5280d4.woff2')format("woff");}.ff5_c00035{font-family:ff5_c00035;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;}
.m2_c00035{transform:matrix(0.092142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092142,0.000000,0.000000,0.250000,0,0);}
.m3_c00035{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m1_c00035{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);}
.m0_c00035{transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls54_c00035{letter-spacing:-2.448000px;}
.ls83_c00035{letter-spacing:-2.184000px;}
.ls84_c00035{letter-spacing:-2.121000px;}
.ls4a_c00035{letter-spacing:-1.936800px;}
.ls59_c00035{letter-spacing:-1.922400px;}
.ls7e_c00035{letter-spacing:-1.828800px;}
.ls55_c00035{letter-spacing:-1.785600px;}
.ls7b_c00035{letter-spacing:-1.764000px;}
.ls49_c00035{letter-spacing:-1.584000px;}
.ls58_c00035{letter-spacing:-1.454400px;}
.ls61_c00035{letter-spacing:-1.332000px;}
.ls71_c00035{letter-spacing:-1.202400px;}
.ls42_c00035{letter-spacing:-1.180800px;}
.ls45_c00035{letter-spacing:-1.108800px;}
.ls52_c00035{letter-spacing:-1.022400px;}
.ls6f_c00035{letter-spacing:-1.008000px;}
.ls64_c00035{letter-spacing:-0.936000px;}
.ls76_c00035{letter-spacing:-0.813120px;}
.ls70_c00035{letter-spacing:-0.748800px;}
.ls66_c00035{letter-spacing:-0.741600px;}
.ls73_c00035{letter-spacing:-0.740520px;}
.ls5e_c00035{letter-spacing:-0.720000px;}
.ls44_c00035{letter-spacing:-0.698400px;}
.ls86_c00035{letter-spacing:-0.677160px;}
.ls5a_c00035{letter-spacing:-0.640800px;}
.ls69_c00035{letter-spacing:-0.633600px;}
.ls4c_c00035{letter-spacing:-0.626400px;}
.ls7a_c00035{letter-spacing:-0.604800px;}
.ls74_c00035{letter-spacing:-0.573540px;}
.ls7c_c00035{letter-spacing:-0.525600px;}
.ls4d_c00035{letter-spacing:-0.482400px;}
.ls75_c00035{letter-spacing:-0.479160px;}
.ls51_c00035{letter-spacing:-0.475200px;}
.ls4e_c00035{letter-spacing:-0.417600px;}
.ls5d_c00035{letter-spacing:-0.403200px;}
.ls47_c00035{letter-spacing:-0.396000px;}
.ls60_c00035{letter-spacing:-0.381600px;}
.ls6b_c00035{letter-spacing:-0.360000px;}
.ls4f_c00035{letter-spacing:-0.345600px;}
.ls68_c00035{letter-spacing:-0.338400px;}
.ls56_c00035{letter-spacing:-0.331200px;}
.ls62_c00035{letter-spacing:-0.324000px;}
.ls7f_c00035{letter-spacing:-0.281520px;}
.ls6e_c00035{letter-spacing:-0.280800px;}
.ls65_c00035{letter-spacing:-0.259200px;}
.ls57_c00035{letter-spacing:-0.244800px;}
.ls4b_c00035{letter-spacing:-0.237600px;}
.ls43_c00035{letter-spacing:-0.230400px;}
.ls40_c00035{letter-spacing:-0.223200px;}
.ls5b_c00035{letter-spacing:-0.216000px;}
.ls79_c00035{letter-spacing:-0.201600px;}
.ls6a_c00035{letter-spacing:-0.187200px;}
.ls48_c00035{letter-spacing:-0.158400px;}
.ls72_c00035{letter-spacing:-0.136800px;}
.ls50_c00035{letter-spacing:-0.100800px;}
.ls5c_c00035{letter-spacing:-0.093600px;}
.ls5f_c00035{letter-spacing:-0.086400px;}
.ls6d_c00035{letter-spacing:-0.072000px;}
.ls6c_c00035{letter-spacing:-0.057600px;}
.ls80_c00035{letter-spacing:-0.048960px;}
.ls67_c00035{letter-spacing:-0.028800px;}
.ls53_c00035{letter-spacing:-0.014400px;}
.ls41_c00035{letter-spacing:-0.007200px;}
.ls46_c00035{letter-spacing:0.000000px;}
.ls6_c00035{letter-spacing:0.007200px;}
.ls31_c00035{letter-spacing:0.021600px;}
.ls30_c00035{letter-spacing:0.028800px;}
.ls5_c00035{letter-spacing:0.035400px;}
.ls34_c00035{letter-spacing:0.043200px;}
.ls20_c00035{letter-spacing:0.050400px;}
.ls7_c00035{letter-spacing:0.057600px;}
.ls2c_c00035{letter-spacing:0.064800px;}
.ls38_c00035{letter-spacing:0.070800px;}
.ls3_c00035{letter-spacing:0.079200px;}
.ls1_c00035{letter-spacing:0.086400px;}
.ls11_c00035{letter-spacing:0.092040px;}
.ls35_c00035{letter-spacing:0.108000px;}
.ls1b_c00035{letter-spacing:0.120360px;}
.ls16_c00035{letter-spacing:0.158400px;}
.lsb_c00035{letter-spacing:0.165600px;}
.ls22_c00035{letter-spacing:0.177000px;}
.ls23_c00035{letter-spacing:0.180000px;}
.ls10_c00035{letter-spacing:0.187200px;}
.ls78_c00035{letter-spacing:0.194400px;}
.ls1a_c00035{letter-spacing:0.201600px;}
.ls15_c00035{letter-spacing:0.216000px;}
.ls27_c00035{letter-spacing:0.244800px;}
.ls7d_c00035{letter-spacing:0.266400px;}
.ls0_c00035{letter-spacing:0.269040px;}
.ls26_c00035{letter-spacing:0.297360px;}
.ls28_c00035{letter-spacing:0.309600px;}
.ls32_c00035{letter-spacing:0.316800px;}
.ls3c_c00035{letter-spacing:0.324480px;}
.ls2a_c00035{letter-spacing:0.331200px;}
.lsc_c00035{letter-spacing:0.345600px;}
.ls14_c00035{letter-spacing:0.361080px;}
.ls77_c00035{letter-spacing:0.374400px;}
.ls81_c00035{letter-spacing:0.385560px;}
.ls29_c00035{letter-spacing:0.388800px;}
.ls1f_c00035{letter-spacing:0.410400px;}
.ls9_c00035{letter-spacing:0.446400px;}
.ls1d_c00035{letter-spacing:0.460800px;}
.lsf_c00035{letter-spacing:0.467280px;}
.ls4_c00035{letter-spacing:0.474360px;}
.ls3b_c00035{letter-spacing:0.477360px;}
.ls2_c00035{letter-spacing:0.482400px;}
.ls36_c00035{letter-spacing:0.509760px;}
.ls24_c00035{letter-spacing:0.511200px;}
.ls1e_c00035{letter-spacing:0.532800px;}
.ls63_c00035{letter-spacing:0.552240px;}
.ls39_c00035{letter-spacing:0.561600px;}
.ls37_c00035{letter-spacing:0.580560px;}
.ls2f_c00035{letter-spacing:0.612000px;}
.ls18_c00035{letter-spacing:0.655200px;}
.ls19_c00035{letter-spacing:0.658440px;}
.ls2e_c00035{letter-spacing:0.727200px;}
.ls8_c00035{letter-spacing:0.736320px;}
.ls13_c00035{letter-spacing:0.757560px;}
.ls33_c00035{letter-spacing:0.906240px;}
.ls1c_c00035{letter-spacing:0.920400px;}
.ls21_c00035{letter-spacing:0.934560px;}
.ls2b_c00035{letter-spacing:0.941640px;}
.ls12_c00035{letter-spacing:1.097400px;}
.ls25_c00035{letter-spacing:1.168200px;}
.lsd_c00035{letter-spacing:1.209600px;}
.lse_c00035{letter-spacing:1.246080px;}
.ls2d_c00035{letter-spacing:1.382400px;}
.ls3d_c00035{letter-spacing:1.456560px;}
.ls3a_c00035{letter-spacing:1.634040px;}
.lsa_c00035{letter-spacing:1.641600px;}
.ls17_c00035{letter-spacing:1.670400px;}
.ls85_c00035{letter-spacing:1.854360px;}
.ls82_c00035{letter-spacing:2.015520px;}
.ls3f_c00035{letter-spacing:2.916540px;}
.ls3e_c00035{letter-spacing:2.970000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{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__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00035{word-spacing:0.000000px;}
._19_c00035{margin-left:-15.804780px;}
._11_c00035{margin-left:-5.209680px;}
._18_c00035{margin-left:-3.590400px;}
._3_c00035{margin-left:-1.340400px;}
._e_c00035{width:2.059200px;}
._d_c00035{width:3.158640px;}
._4_c00035{width:4.939200px;}
._2_c00035{width:6.544800px;}
._5_c00035{width:7.879680px;}
._0_c00035{width:9.072000px;}
._1_c00035{width:11.569680px;}
._10_c00035{width:13.255920px;}
._f_c00035{width:14.371200px;}
._7_c00035{width:15.907200px;}
._17_c00035{width:18.424080px;}
._9_c00035{width:21.051840px;}
._16_c00035{width:23.119200px;}
._b_c00035{width:24.163200px;}
._a_c00035{width:25.488960px;}
._6_c00035{width:27.532800px;}
._8_c00035{width:28.829760px;}
._c_c00035{width:30.463200px;}
._12_c00035{width:32.918400px;}
._15_c00035{width:34.075200px;}
._14_c00035{width:35.776800px;}
._13_c00035{width:38.016000px;}
.fc0_c00035{color:transparent;}
.fs0_c00035{font-size:59.400000px;}
.fs8_c00035{font-size:60.600000px;}
.fs6_c00035{font-size:61.200000px;}
.fs7_c00035{font-size:62.400000px;}
.fs5_c00035{font-size:67.800000px;}
.fs2_c00035{font-size:70.800000px;}
.fs1_c00035{font-size:72.000000px;}
.fs4_c00035{font-size:72.600000px;}
.fs3_c00035{font-size:90.000000px;}
.y0_c00035{bottom:0.000000px;}
.y16_c00035{bottom:71.655000px;}
.y15_c00035{bottom:137.160000px;}
.y14_c00035{bottom:411.477000px;}
.y13_c00035{bottom:442.458000px;}
.y12_c00035{bottom:473.400000px;}
.y11_c00035{bottom:535.320000px;}
.y10_c00035{bottom:596.895000px;}
.yf_c00035{bottom:627.138000px;}
.ye_c00035{bottom:657.717000px;}
.yd_c00035{bottom:688.695000px;}
.yc_c00035{bottom:750.615000px;}
.yb_c00035{bottom:781.917000px;}
.ya_c00035{bottom:812.895000px;}
.y9_c00035{bottom:844.197000px;}
.y8_c00035{bottom:905.055000px;}
.y7_c00035{bottom:935.655000px;}
.y6_c00035{bottom:966.240000px;}
.y5_c00035{bottom:996.855000px;}
.y4_c00035{bottom:1027.437000px;}
.y3_c00035{bottom:1089.015000px;}
.y2_c00035{bottom:1120.335000px;}
.y1_c00035{bottom:1196.280000px;}
.h2_c00035{height:58.297852px;}
.h9_c00035{height:61.211719px;}
.h8_c00035{height:61.678125px;}
.ha_c00035{height:63.203906px;}
.h3_c00035{height:70.664062px;}
.h5_c00035{height:70.676063px;}
.h6_c00035{height:71.240930px;}
.h7_c00035{height:71.252930px;}
.h4_c00035{height:88.330078px;}
.h1_c00035{height:1263.000000px;}
.h0_c00035{height:1263.240000px;}
.w1_c00035{width:892.500000px;}
.w0_c00035{width:892.800000px;}
.x0_c00035{left:0.000000px;}
.x5_c00035{left:125.130000px;}
.x1_c00035{left:126.570000px;}
.x3_c00035{left:127.620000px;}
.x4_c00035{left:180.618000px;}
.x2_c00035{left:276.690000px;}
.x9_c00035{left:431.190000px;}
.x6_c00035{left:513.750000px;}
.x7_c00035{left:521.865000px;}
.x8_c00035{left:567.270000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls54_c00035{letter-spacing:-2.176000pt;}
.ls83_c00035{letter-spacing:-1.941333pt;}
.ls84_c00035{letter-spacing:-1.885333pt;}
.ls4a_c00035{letter-spacing:-1.721600pt;}
.ls59_c00035{letter-spacing:-1.708800pt;}
.ls7e_c00035{letter-spacing:-1.625600pt;}
.ls55_c00035{letter-spacing:-1.587200pt;}
.ls7b_c00035{letter-spacing:-1.568000pt;}
.ls49_c00035{letter-spacing:-1.408000pt;}
.ls58_c00035{letter-spacing:-1.292800pt;}
.ls61_c00035{letter-spacing:-1.184000pt;}
.ls71_c00035{letter-spacing:-1.068800pt;}
.ls42_c00035{letter-spacing:-1.049600pt;}
.ls45_c00035{letter-spacing:-0.985600pt;}
.ls52_c00035{letter-spacing:-0.908800pt;}
.ls6f_c00035{letter-spacing:-0.896000pt;}
.ls64_c00035{letter-spacing:-0.832000pt;}
.ls76_c00035{letter-spacing:-0.722773pt;}
.ls70_c00035{letter-spacing:-0.665600pt;}
.ls66_c00035{letter-spacing:-0.659200pt;}
.ls73_c00035{letter-spacing:-0.658240pt;}
.ls5e_c00035{letter-spacing:-0.640000pt;}
.ls44_c00035{letter-spacing:-0.620800pt;}
.ls86_c00035{letter-spacing:-0.601920pt;}
.ls5a_c00035{letter-spacing:-0.569600pt;}
.ls69_c00035{letter-spacing:-0.563200pt;}
.ls4c_c00035{letter-spacing:-0.556800pt;}
.ls7a_c00035{letter-spacing:-0.537600pt;}
.ls74_c00035{letter-spacing:-0.509813pt;}
.ls7c_c00035{letter-spacing:-0.467200pt;}
.ls4d_c00035{letter-spacing:-0.428800pt;}
.ls75_c00035{letter-spacing:-0.425920pt;}
.ls51_c00035{letter-spacing:-0.422400pt;}
.ls4e_c00035{letter-spacing:-0.371200pt;}
.ls5d_c00035{letter-spacing:-0.358400pt;}
.ls47_c00035{letter-spacing:-0.352000pt;}
.ls60_c00035{letter-spacing:-0.339200pt;}
.ls6b_c00035{letter-spacing:-0.320000pt;}
.ls4f_c00035{letter-spacing:-0.307200pt;}
.ls68_c00035{letter-spacing:-0.300800pt;}
.ls56_c00035{letter-spacing:-0.294400pt;}
.ls62_c00035{letter-spacing:-0.288000pt;}
.ls7f_c00035{letter-spacing:-0.250240pt;}
.ls6e_c00035{letter-spacing:-0.249600pt;}
.ls65_c00035{letter-spacing:-0.230400pt;}
.ls57_c00035{letter-spacing:-0.217600pt;}
.ls4b_c00035{letter-spacing:-0.211200pt;}
.ls43_c00035{letter-spacing:-0.204800pt;}
.ls40_c00035{letter-spacing:-0.198400pt;}
.ls5b_c00035{letter-spacing:-0.192000pt;}
.ls79_c00035{letter-spacing:-0.179200pt;}
.ls6a_c00035{letter-spacing:-0.166400pt;}
.ls48_c00035{letter-spacing:-0.140800pt;}
.ls72_c00035{letter-spacing:-0.121600pt;}
.ls50_c00035{letter-spacing:-0.089600pt;}
.ls5c_c00035{letter-spacing:-0.083200pt;}
.ls5f_c00035{letter-spacing:-0.076800pt;}
.ls6d_c00035{letter-spacing:-0.064000pt;}
.ls6c_c00035{letter-spacing:-0.051200pt;}
.ls80_c00035{letter-spacing:-0.043520pt;}
.ls67_c00035{letter-spacing:-0.025600pt;}
.ls53_c00035{letter-spacing:-0.012800pt;}
.ls41_c00035{letter-spacing:-0.006400pt;}
.ls46_c00035{letter-spacing:0.000000pt;}
.ls6_c00035{letter-spacing:0.006400pt;}
.ls31_c00035{letter-spacing:0.019200pt;}
.ls30_c00035{letter-spacing:0.025600pt;}
.ls5_c00035{letter-spacing:0.031467pt;}
.ls34_c00035{letter-spacing:0.038400pt;}
.ls20_c00035{letter-spacing:0.044800pt;}
.ls7_c00035{letter-spacing:0.051200pt;}
.ls2c_c00035{letter-spacing:0.057600pt;}
.ls38_c00035{letter-spacing:0.062933pt;}
.ls3_c00035{letter-spacing:0.070400pt;}
.ls1_c00035{letter-spacing:0.076800pt;}
.ls11_c00035{letter-spacing:0.081813pt;}
.ls35_c00035{letter-spacing:0.096000pt;}
.ls1b_c00035{letter-spacing:0.106987pt;}
.ls16_c00035{letter-spacing:0.140800pt;}
.lsb_c00035{letter-spacing:0.147200pt;}
.ls22_c00035{letter-spacing:0.157333pt;}
.ls23_c00035{letter-spacing:0.160000pt;}
.ls10_c00035{letter-spacing:0.166400pt;}
.ls78_c00035{letter-spacing:0.172800pt;}
.ls1a_c00035{letter-spacing:0.179200pt;}
.ls15_c00035{letter-spacing:0.192000pt;}
.ls27_c00035{letter-spacing:0.217600pt;}
.ls7d_c00035{letter-spacing:0.236800pt;}
.ls0_c00035{letter-spacing:0.239147pt;}
.ls26_c00035{letter-spacing:0.264320pt;}
.ls28_c00035{letter-spacing:0.275200pt;}
.ls32_c00035{letter-spacing:0.281600pt;}
.ls3c_c00035{letter-spacing:0.288427pt;}
.ls2a_c00035{letter-spacing:0.294400pt;}
.lsc_c00035{letter-spacing:0.307200pt;}
.ls14_c00035{letter-spacing:0.320960pt;}
.ls77_c00035{letter-spacing:0.332800pt;}
.ls81_c00035{letter-spacing:0.342720pt;}
.ls29_c00035{letter-spacing:0.345600pt;}
.ls1f_c00035{letter-spacing:0.364800pt;}
.ls9_c00035{letter-spacing:0.396800pt;}
.ls1d_c00035{letter-spacing:0.409600pt;}
.lsf_c00035{letter-spacing:0.415360pt;}
.ls4_c00035{letter-spacing:0.421653pt;}
.ls3b_c00035{letter-spacing:0.424320pt;}
.ls2_c00035{letter-spacing:0.428800pt;}
.ls36_c00035{letter-spacing:0.453120pt;}
.ls24_c00035{letter-spacing:0.454400pt;}
.ls1e_c00035{letter-spacing:0.473600pt;}
.ls63_c00035{letter-spacing:0.490880pt;}
.ls39_c00035{letter-spacing:0.499200pt;}
.ls37_c00035{letter-spacing:0.516053pt;}
.ls2f_c00035{letter-spacing:0.544000pt;}
.ls18_c00035{letter-spacing:0.582400pt;}
.ls19_c00035{letter-spacing:0.585280pt;}
.ls2e_c00035{letter-spacing:0.646400pt;}
.ls8_c00035{letter-spacing:0.654507pt;}
.ls13_c00035{letter-spacing:0.673387pt;}
.ls33_c00035{letter-spacing:0.805547pt;}
.ls1c_c00035{letter-spacing:0.818133pt;}
.ls21_c00035{letter-spacing:0.830720pt;}
.ls2b_c00035{letter-spacing:0.837013pt;}
.ls12_c00035{letter-spacing:0.975467pt;}
.ls25_c00035{letter-spacing:1.038400pt;}
.lsd_c00035{letter-spacing:1.075200pt;}
.lse_c00035{letter-spacing:1.107627pt;}
.ls2d_c00035{letter-spacing:1.228800pt;}
.ls3d_c00035{letter-spacing:1.294720pt;}
.ls3a_c00035{letter-spacing:1.452480pt;}
.lsa_c00035{letter-spacing:1.459200pt;}
.ls17_c00035{letter-spacing:1.484800pt;}
.ls85_c00035{letter-spacing:1.648320pt;}
.ls82_c00035{letter-spacing:1.791573pt;}
.ls3f_c00035{letter-spacing:2.592480pt;}
.ls3e_c00035{letter-spacing:2.640000pt;}
.ws0_c00035{word-spacing:0.000000pt;}
._19_c00035{margin-left:-14.048693pt;}
._11_c00035{margin-left:-4.630827pt;}
._18_c00035{margin-left:-3.191467pt;}
._3_c00035{margin-left:-1.191467pt;}
._e_c00035{width:1.830400pt;}
._d_c00035{width:2.807680pt;}
._4_c00035{width:4.390400pt;}
._2_c00035{width:5.817600pt;}
._5_c00035{width:7.004160pt;}
._0_c00035{width:8.064000pt;}
._1_c00035{width:10.284160pt;}
._10_c00035{width:11.783040pt;}
._f_c00035{width:12.774400pt;}
._7_c00035{width:14.139733pt;}
._17_c00035{width:16.376960pt;}
._9_c00035{width:18.712747pt;}
._16_c00035{width:20.550400pt;}
._b_c00035{width:21.478400pt;}
._a_c00035{width:22.656853pt;}
._6_c00035{width:24.473600pt;}
._8_c00035{width:25.626453pt;}
._c_c00035{width:27.078400pt;}
._12_c00035{width:29.260800pt;}
._15_c00035{width:30.289067pt;}
._14_c00035{width:31.801600pt;}
._13_c00035{width:33.792000pt;}
.fs0_c00035{font-size:52.800000pt;}
.fs8_c00035{font-size:53.866667pt;}
.fs6_c00035{font-size:54.400000pt;}
.fs7_c00035{font-size:55.466667pt;}
.fs5_c00035{font-size:60.266667pt;}
.fs2_c00035{font-size:62.933333pt;}
.fs1_c00035{font-size:64.000000pt;}
.fs4_c00035{font-size:64.533333pt;}
.fs3_c00035{font-size:80.000000pt;}
.y0_c00035{bottom:0.000000pt;}
.y16_c00035{bottom:63.693333pt;}
.y15_c00035{bottom:121.920000pt;}
.y14_c00035{bottom:365.757333pt;}
.y13_c00035{bottom:393.296000pt;}
.y12_c00035{bottom:420.800000pt;}
.y11_c00035{bottom:475.840000pt;}
.y10_c00035{bottom:530.573333pt;}
.yf_c00035{bottom:557.456000pt;}
.ye_c00035{bottom:584.637333pt;}
.yd_c00035{bottom:612.173333pt;}
.yc_c00035{bottom:667.213333pt;}
.yb_c00035{bottom:695.037333pt;}
.ya_c00035{bottom:722.573333pt;}
.y9_c00035{bottom:750.397333pt;}
.y8_c00035{bottom:804.493333pt;}
.y7_c00035{bottom:831.693333pt;}
.y6_c00035{bottom:858.880000pt;}
.y5_c00035{bottom:886.093333pt;}
.y4_c00035{bottom:913.277333pt;}
.y3_c00035{bottom:968.013333pt;}
.y2_c00035{bottom:995.853333pt;}
.y1_c00035{bottom:1063.360000pt;}
.h2_c00035{height:51.820312pt;}
.h9_c00035{height:54.410417pt;}
.h8_c00035{height:54.825000pt;}
.ha_c00035{height:56.181250pt;}
.h3_c00035{height:62.812500pt;}
.h5_c00035{height:62.823167pt;}
.h6_c00035{height:63.325271pt;}
.h7_c00035{height:63.335938pt;}
.h4_c00035{height:78.515625pt;}
.h1_c00035{height:1122.666667pt;}
.h0_c00035{height:1122.880000pt;}
.w1_c00035{width:793.333333pt;}
.w0_c00035{width:793.600000pt;}
.x0_c00035{left:0.000000pt;}
.x5_c00035{left:111.226667pt;}
.x1_c00035{left:112.506667pt;}
.x3_c00035{left:113.440000pt;}
.x4_c00035{left:160.549333pt;}
.x2_c00035{left:245.946667pt;}
.x9_c00035{left:383.280000pt;}
.x6_c00035{left:456.666667pt;}
.x7_c00035{left:463.880000pt;}
.x8_c00035{left:504.240000pt;}
}





/* 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_c00036 {
    display:none;
  }
  .loading-indicator_c00036.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00036 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_c00036 { 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_c00036" -> "#page-container .classname_c00036")
 */
.pf_c00036 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00036 { /* 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_c00036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00036 { /* 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_c00036 { /* 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_c00036 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00036 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00036 {overflow:visible;}
  }
}
.c_c00036 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00036 { /* 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_c00036:after { /* webkit #35443 */
  content: '';
}
.t_c00036:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00036 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 */
}
.__c00036 { /* 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_c00036 { /* info for Javascript */
  display:none;
}
.l_c00036 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00036 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00036 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00036: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_c00036 {
    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_c00036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00036.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_c00036 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00036;src:url('chunks/assets/font_c5e0057d0fa99bf658561e3c.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.284668;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_c00036;src:url('chunks/assets/font_9982774df6011b86fe5b02c1.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.284180;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_c00036;src:url('chunks/assets/font_1f1835666caa02a6493e5855.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:0.666000;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_c00036;src:url('chunks/assets/font_5b8ef697d791bd3563a84801.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;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;}
.m2_c00036{transform:matrix(0.112782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112782,0.000000,0.000000,0.250000,0,0);}
.m5_c00036{transform:matrix(0.230614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230614,0.000000,0.000000,0.250000,0,0);}
.m3_c00036{transform:matrix(0.230760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230760,0.000000,0.000000,0.250000,0,0);}
.m1_c00036{transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);}
.m4_c00036{transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);}
.m0_c00036{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);}
.v1_c00036{vertical-align:-28.728000px;}
.v0_c00036{vertical-align:0.000000px;}
.ls62_c00036{letter-spacing:-2.520000px;}
.ls7f_c00036{letter-spacing:-2.448000px;}
.lsa1_c00036{letter-spacing:-2.310000px;}
.ls5d_c00036{letter-spacing:-1.922400px;}
.ls9d_c00036{letter-spacing:-1.828800px;}
.ls69_c00036{letter-spacing:-1.785600px;}
.ls7a_c00036{letter-spacing:-1.756800px;}
.ls60_c00036{letter-spacing:-1.720800px;}
.ls6e_c00036{letter-spacing:-1.642200px;}
.ls8b_c00036{letter-spacing:-1.569600px;}
.ls6f_c00036{letter-spacing:-1.454400px;}
.ls9b_c00036{letter-spacing:-1.396800px;}
.ls93_c00036{letter-spacing:-1.202400px;}
.ls5a_c00036{letter-spacing:-1.180800px;}
.ls66_c00036{letter-spacing:-1.116000px;}
.ls73_c00036{letter-spacing:-1.108800px;}
.ls70_c00036{letter-spacing:-1.022400px;}
.ls80_c00036{letter-spacing:-1.015200px;}
.ls5b_c00036{letter-spacing:-1.008000px;}
.ls6d_c00036{letter-spacing:-0.986400px;}
.ls79_c00036{letter-spacing:-0.878400px;}
.ls61_c00036{letter-spacing:-0.806400px;}
.lsa0_c00036{letter-spacing:-0.748800px;}
.ls9a_c00036{letter-spacing:-0.741600px;}
.ls7d_c00036{letter-spacing:-0.720000px;}
.ls9f_c00036{letter-spacing:-0.698400px;}
.ls7e_c00036{letter-spacing:-0.626400px;}
.ls71_c00036{letter-spacing:-0.597600px;}
.ls77_c00036{letter-spacing:-0.576000px;}
.ls5e_c00036{letter-spacing:-0.547200px;}
.ls72_c00036{letter-spacing:-0.482400px;}
.ls63_c00036{letter-spacing:-0.460800px;}
.ls97_c00036{letter-spacing:-0.453600px;}
.ls8c_c00036{letter-spacing:-0.432000px;}
.ls74_c00036{letter-spacing:-0.424800px;}
.ls87_c00036{letter-spacing:-0.417600px;}
.ls89_c00036{letter-spacing:-0.396000px;}
.ls95_c00036{letter-spacing:-0.388800px;}
.ls8d_c00036{letter-spacing:-0.367200px;}
.ls65_c00036{letter-spacing:-0.345600px;}
.ls96_c00036{letter-spacing:-0.295200px;}
.ls9e_c00036{letter-spacing:-0.280800px;}
.ls83_c00036{letter-spacing:-0.266400px;}
.ls8a_c00036{letter-spacing:-0.259200px;}
.ls7c_c00036{letter-spacing:-0.244800px;}
.ls98_c00036{letter-spacing:-0.237600px;}
.ls82_c00036{letter-spacing:-0.230400px;}
.ls6c_c00036{letter-spacing:-0.216000px;}
.ls86_c00036{letter-spacing:-0.165600px;}
.ls75_c00036{letter-spacing:-0.158400px;}
.ls78_c00036{letter-spacing:-0.157080px;}
.ls81_c00036{letter-spacing:-0.136800px;}
.ls99_c00036{letter-spacing:-0.129600px;}
.ls92_c00036{letter-spacing:-0.122400px;}
.ls91_c00036{letter-spacing:-0.093600px;}
.ls6a_c00036{letter-spacing:-0.072000px;}
.ls68_c00036{letter-spacing:-0.064260px;}
.ls90_c00036{letter-spacing:-0.043200px;}
.ls85_c00036{letter-spacing:-0.036000px;}
.ls94_c00036{letter-spacing:-0.021600px;}
.ls67_c00036{letter-spacing:-0.014400px;}
.ls84_c00036{letter-spacing:-0.007200px;}
.ls64_c00036{letter-spacing:0.000000px;}
.ls15_c00036{letter-spacing:0.007200px;}
.ls33_c00036{letter-spacing:0.021420px;}
.ls4_c00036{letter-spacing:0.021600px;}
.ls2a_c00036{letter-spacing:0.042840px;}
.ls16_c00036{letter-spacing:0.043200px;}
.ls56_c00036{letter-spacing:0.050400px;}
.ls24_c00036{letter-spacing:0.057600px;}
.ls51_c00036{letter-spacing:0.071400px;}
.ls21_c00036{letter-spacing:0.079200px;}
.ls3c_c00036{letter-spacing:0.086400px;}
.ls5_c00036{letter-spacing:0.093600px;}
.ls2b_c00036{letter-spacing:0.108000px;}
.ls1c_c00036{letter-spacing:0.115200px;}
.ls35_c00036{letter-spacing:0.121380px;}
.ls50_c00036{letter-spacing:0.129600px;}
.ls57_c00036{letter-spacing:0.136800px;}
.ls12_c00036{letter-spacing:0.144000px;}
.ls3b_c00036{letter-spacing:0.151200px;}
.lsc_c00036{letter-spacing:0.165600px;}
.ls44_c00036{letter-spacing:0.172800px;}
.ls4f_c00036{letter-spacing:0.180000px;}
.ls2_c00036{letter-spacing:0.187200px;}
.ls8_c00036{letter-spacing:0.194400px;}
.ls52_c00036{letter-spacing:0.201600px;}
.lsd_c00036{letter-spacing:0.216000px;}
.ls42_c00036{letter-spacing:0.230400px;}
.ls20_c00036{letter-spacing:0.237600px;}
.lsf_c00036{letter-spacing:0.242760px;}
.ls9c_c00036{letter-spacing:0.244800px;}
.ls54_c00036{letter-spacing:0.252000px;}
.ls55_c00036{letter-spacing:0.257040px;}
.ls22_c00036{letter-spacing:0.259200px;}
.ls4b_c00036{letter-spacing:0.266400px;}
.ls3a_c00036{letter-spacing:0.273600px;}
.ls3_c00036{letter-spacing:0.280800px;}
.ls46_c00036{letter-spacing:0.288000px;}
.ls58_c00036{letter-spacing:0.295200px;}
.ls7b_c00036{letter-spacing:0.302400px;}
.ls1e_c00036{letter-spacing:0.316800px;}
.ls1d_c00036{letter-spacing:0.324000px;}
.ls23_c00036{letter-spacing:0.352800px;}
.ls18_c00036{letter-spacing:0.360000px;}
.ls2c_c00036{letter-spacing:0.367200px;}
.ls25_c00036{letter-spacing:0.374400px;}
.ls3f_c00036{letter-spacing:0.381600px;}
.ls4e_c00036{letter-spacing:0.388800px;}
.ls2e_c00036{letter-spacing:0.399840px;}
.lsb_c00036{letter-spacing:0.403200px;}
.ls45_c00036{letter-spacing:0.410400px;}
.lsa_c00036{letter-spacing:0.417600px;}
.ls19_c00036{letter-spacing:0.446400px;}
.ls17_c00036{letter-spacing:0.460800px;}
.ls48_c00036{letter-spacing:0.482400px;}
.ls4c_c00036{letter-spacing:0.489600px;}
.ls4a_c00036{letter-spacing:0.496800px;}
.ls2d_c00036{letter-spacing:0.504000px;}
.ls1_c00036{letter-spacing:0.511200px;}
.ls1a_c00036{letter-spacing:0.521220px;}
.ls40_c00036{letter-spacing:0.532800px;}
.ls43_c00036{letter-spacing:0.540000px;}
.ls31_c00036{letter-spacing:0.561600px;}
.ls6b_c00036{letter-spacing:0.576000px;}
.ls28_c00036{letter-spacing:0.592620px;}
.ls5c_c00036{letter-spacing:0.612000px;}
.ls30_c00036{letter-spacing:0.619200px;}
.ls3e_c00036{letter-spacing:0.628320px;}
.ls14_c00036{letter-spacing:0.633600px;}
.ls8e_c00036{letter-spacing:0.649740px;}
.ls11_c00036{letter-spacing:0.669600px;}
.lse_c00036{letter-spacing:0.698400px;}
.ls26_c00036{letter-spacing:0.727200px;}
.ls2f_c00036{letter-spacing:0.735420px;}
.ls27_c00036{letter-spacing:0.756840px;}
.ls37_c00036{letter-spacing:0.770400px;}
.ls49_c00036{letter-spacing:0.806400px;}
.ls6_c00036{letter-spacing:0.871200px;}
.ls9_c00036{letter-spacing:0.885600px;}
.ls4d_c00036{letter-spacing:0.907200px;}
.ls29_c00036{letter-spacing:0.956760px;}
.ls5f_c00036{letter-spacing:0.986400px;}
.ls76_c00036{letter-spacing:1.094400px;}
.ls47_c00036{letter-spacing:1.192380px;}
.ls41_c00036{letter-spacing:1.209600px;}
.ls13_c00036{letter-spacing:1.296000px;}
.ls34_c00036{letter-spacing:1.332000px;}
.ls39_c00036{letter-spacing:1.335180px;}
.ls7_c00036{letter-spacing:1.353600px;}
.ls32_c00036{letter-spacing:1.356600px;}
.ls1b_c00036{letter-spacing:1.406580px;}
.ls38_c00036{letter-spacing:1.425600px;}
.ls8f_c00036{letter-spacing:1.526400px;}
.ls10_c00036{letter-spacing:1.535100px;}
.ls53_c00036{letter-spacing:1.656000px;}
.ls1f_c00036{letter-spacing:1.677600px;}
.ls88_c00036{letter-spacing:1.857600px;}
.ls59_c00036{letter-spacing:2.224020px;}
.ls36_c00036{letter-spacing:2.296800px;}
.ls0_c00036{letter-spacing:2.448240px;}
.ls3d_c00036{letter-spacing:2.670360px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{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__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00036{word-spacing:-17.539200px;}
.ws1_c00036{word-spacing:0.000000px;}
._0_c00036{margin-left:-4.569240px;}
._b_c00036{margin-left:-1.924740px;}
._1_c00036{width:1.440000px;}
._5_c00036{width:3.254400px;}
._2_c00036{width:4.881600px;}
._4_c00036{width:5.990400px;}
._7_c00036{width:7.384440px;}
._6_c00036{width:9.151200px;}
._3_c00036{width:10.490400px;}
._8_c00036{width:12.329820px;}
._a_c00036{width:13.608420px;}
._9_c00036{width:14.945460px;}
._14_c00036{width:16.300380px;}
._15_c00036{width:17.475900px;}
._16_c00036{width:19.117740px;}
._c_c00036{width:21.695940px;}
._12_c00036{width:23.316120px;}
._11_c00036{width:25.149600px;}
._13_c00036{width:27.182160px;}
._d_c00036{width:28.843200px;}
._10_c00036{width:30.499200px;}
._e_c00036{width:33.048000px;}
._f_c00036{width:35.589600px;}
.fc0_c00036{color:transparent;}
.fs5_c00036{font-size:30.600000px;}
.fs3_c00036{font-size:54.720000px;}
.fs0_c00036{font-size:60.600000px;}
.fs6_c00036{font-size:66.000000px;}
.fs4_c00036{font-size:69.000000px;}
.fs2_c00036{font-size:71.400000px;}
.fs1_c00036{font-size:72.000000px;}
.y0_c00036{bottom:0.000000px;}
.y1f_c00036{bottom:70.575006px;}
.y1e_c00036{bottom:163.437006px;}
.y1d_c00036{bottom:194.415006px;}
.y1c_c00036{bottom:225.018006px;}
.y1b_c00036{bottom:255.978006px;}
.y1a_c00036{bottom:316.458006px;}
.y19_c00036{bottom:348.840006px;}
.y18_c00036{bottom:379.797006px;}
.y17_c00036{bottom:411.135006px;}
.y16_c00036{bottom:442.095006px;}
.y15_c00036{bottom:473.055006px;}
.y14_c00036{bottom:473.058006px;}
.y13_c00036{bottom:503.637006px;}
.y12_c00036{bottom:533.877006px;}
.y11_c00036{bottom:565.215006px;}
.y10_c00036{bottom:596.175006px;}
.yf_c00036{bottom:657.717006px;}
.ye_c00036{bottom:720.378006px;}
.yd_c00036{bottom:751.320006px;}
.yb_c00036{bottom:782.277006px;}
.yc_c00036{bottom:782.280006px;}
.ya_c00036{bottom:813.255006px;}
.y9_c00036{bottom:844.218006px;}
.y8_c00036{bottom:874.800006px;}
.y7_c00036{bottom:905.775006px;}
.y6_c00036{bottom:966.978006px;}
.y5_c00036{bottom:1028.898006px;}
.y4_c00036{bottom:1059.480006px;}
.y3_c00036{bottom:1090.095006px;}
.y2_c00036{bottom:1121.775006px;}
.y1_c00036{bottom:1199.160006px;}
.h4_c00036{height:36.443520px;}
.h2_c00036{height:59.475586px;}
.h8_c00036{height:64.775391px;}
.h3_c00036{height:70.664062px;}
.h6_c00036{height:70.676063px;}
.h5_c00036{height:71.952844px;}
.h7_c00036{height:75.093750px;}
.h1_c00036{height:1263.000000px;}
.h0_c00036{height:1263.240006px;}
.w1_c00036{width:892.500000px;}
.w0_c00036{width:892.799998px;}
.x0_c00036{left:0.000000px;}
.xc_c00036{left:118.103999px;}
.x9_c00036{left:119.489998px;}
.x3_c00036{left:121.334999px;}
.x1_c00036{left:122.609999px;}
.xd_c00036{left:172.334998px;}
.x4_c00036{left:174.134998px;}
.x2_c00036{left:175.604998px;}
.x5_c00036{left:199.649999px;}
.x6_c00036{left:217.994999px;}
.x10_c00036{left:425.069999px;}
.xe_c00036{left:604.409999px;}
.xa_c00036{left:618.704998px;}
.x7_c00036{left:619.919999px;}
.xf_c00036{left:629.024999px;}
.xb_c00036{left:655.019998px;}
.x8_c00036{left:669.389998px;}
@media print{
.v1_c00036{vertical-align:-25.536000pt;}
.v0_c00036{vertical-align:0.000000pt;}
.ls62_c00036{letter-spacing:-2.240000pt;}
.ls7f_c00036{letter-spacing:-2.176000pt;}
.lsa1_c00036{letter-spacing:-2.053333pt;}
.ls5d_c00036{letter-spacing:-1.708800pt;}
.ls9d_c00036{letter-spacing:-1.625600pt;}
.ls69_c00036{letter-spacing:-1.587200pt;}
.ls7a_c00036{letter-spacing:-1.561600pt;}
.ls60_c00036{letter-spacing:-1.529600pt;}
.ls6e_c00036{letter-spacing:-1.459733pt;}
.ls8b_c00036{letter-spacing:-1.395200pt;}
.ls6f_c00036{letter-spacing:-1.292800pt;}
.ls9b_c00036{letter-spacing:-1.241600pt;}
.ls93_c00036{letter-spacing:-1.068800pt;}
.ls5a_c00036{letter-spacing:-1.049600pt;}
.ls66_c00036{letter-spacing:-0.992000pt;}
.ls73_c00036{letter-spacing:-0.985600pt;}
.ls70_c00036{letter-spacing:-0.908800pt;}
.ls80_c00036{letter-spacing:-0.902400pt;}
.ls5b_c00036{letter-spacing:-0.896000pt;}
.ls6d_c00036{letter-spacing:-0.876800pt;}
.ls79_c00036{letter-spacing:-0.780800pt;}
.ls61_c00036{letter-spacing:-0.716800pt;}
.lsa0_c00036{letter-spacing:-0.665600pt;}
.ls9a_c00036{letter-spacing:-0.659200pt;}
.ls7d_c00036{letter-spacing:-0.640000pt;}
.ls9f_c00036{letter-spacing:-0.620800pt;}
.ls7e_c00036{letter-spacing:-0.556800pt;}
.ls71_c00036{letter-spacing:-0.531200pt;}
.ls77_c00036{letter-spacing:-0.512000pt;}
.ls5e_c00036{letter-spacing:-0.486400pt;}
.ls72_c00036{letter-spacing:-0.428800pt;}
.ls63_c00036{letter-spacing:-0.409600pt;}
.ls97_c00036{letter-spacing:-0.403200pt;}
.ls8c_c00036{letter-spacing:-0.384000pt;}
.ls74_c00036{letter-spacing:-0.377600pt;}
.ls87_c00036{letter-spacing:-0.371200pt;}
.ls89_c00036{letter-spacing:-0.352000pt;}
.ls95_c00036{letter-spacing:-0.345600pt;}
.ls8d_c00036{letter-spacing:-0.326400pt;}
.ls65_c00036{letter-spacing:-0.307200pt;}
.ls96_c00036{letter-spacing:-0.262400pt;}
.ls9e_c00036{letter-spacing:-0.249600pt;}
.ls83_c00036{letter-spacing:-0.236800pt;}
.ls8a_c00036{letter-spacing:-0.230400pt;}
.ls7c_c00036{letter-spacing:-0.217600pt;}
.ls98_c00036{letter-spacing:-0.211200pt;}
.ls82_c00036{letter-spacing:-0.204800pt;}
.ls6c_c00036{letter-spacing:-0.192000pt;}
.ls86_c00036{letter-spacing:-0.147200pt;}
.ls75_c00036{letter-spacing:-0.140800pt;}
.ls78_c00036{letter-spacing:-0.139627pt;}
.ls81_c00036{letter-spacing:-0.121600pt;}
.ls99_c00036{letter-spacing:-0.115200pt;}
.ls92_c00036{letter-spacing:-0.108800pt;}
.ls91_c00036{letter-spacing:-0.083200pt;}
.ls6a_c00036{letter-spacing:-0.064000pt;}
.ls68_c00036{letter-spacing:-0.057120pt;}
.ls90_c00036{letter-spacing:-0.038400pt;}
.ls85_c00036{letter-spacing:-0.032000pt;}
.ls94_c00036{letter-spacing:-0.019200pt;}
.ls67_c00036{letter-spacing:-0.012800pt;}
.ls84_c00036{letter-spacing:-0.006400pt;}
.ls64_c00036{letter-spacing:0.000000pt;}
.ls15_c00036{letter-spacing:0.006400pt;}
.ls33_c00036{letter-spacing:0.019040pt;}
.ls4_c00036{letter-spacing:0.019200pt;}
.ls2a_c00036{letter-spacing:0.038080pt;}
.ls16_c00036{letter-spacing:0.038400pt;}
.ls56_c00036{letter-spacing:0.044800pt;}
.ls24_c00036{letter-spacing:0.051200pt;}
.ls51_c00036{letter-spacing:0.063467pt;}
.ls21_c00036{letter-spacing:0.070400pt;}
.ls3c_c00036{letter-spacing:0.076800pt;}
.ls5_c00036{letter-spacing:0.083200pt;}
.ls2b_c00036{letter-spacing:0.096000pt;}
.ls1c_c00036{letter-spacing:0.102400pt;}
.ls35_c00036{letter-spacing:0.107893pt;}
.ls50_c00036{letter-spacing:0.115200pt;}
.ls57_c00036{letter-spacing:0.121600pt;}
.ls12_c00036{letter-spacing:0.128000pt;}
.ls3b_c00036{letter-spacing:0.134400pt;}
.lsc_c00036{letter-spacing:0.147200pt;}
.ls44_c00036{letter-spacing:0.153600pt;}
.ls4f_c00036{letter-spacing:0.160000pt;}
.ls2_c00036{letter-spacing:0.166400pt;}
.ls8_c00036{letter-spacing:0.172800pt;}
.ls52_c00036{letter-spacing:0.179200pt;}
.lsd_c00036{letter-spacing:0.192000pt;}
.ls42_c00036{letter-spacing:0.204800pt;}
.ls20_c00036{letter-spacing:0.211200pt;}
.lsf_c00036{letter-spacing:0.215787pt;}
.ls9c_c00036{letter-spacing:0.217600pt;}
.ls54_c00036{letter-spacing:0.224000pt;}
.ls55_c00036{letter-spacing:0.228480pt;}
.ls22_c00036{letter-spacing:0.230400pt;}
.ls4b_c00036{letter-spacing:0.236800pt;}
.ls3a_c00036{letter-spacing:0.243200pt;}
.ls3_c00036{letter-spacing:0.249600pt;}
.ls46_c00036{letter-spacing:0.256000pt;}
.ls58_c00036{letter-spacing:0.262400pt;}
.ls7b_c00036{letter-spacing:0.268800pt;}
.ls1e_c00036{letter-spacing:0.281600pt;}
.ls1d_c00036{letter-spacing:0.288000pt;}
.ls23_c00036{letter-spacing:0.313600pt;}
.ls18_c00036{letter-spacing:0.320000pt;}
.ls2c_c00036{letter-spacing:0.326400pt;}
.ls25_c00036{letter-spacing:0.332800pt;}
.ls3f_c00036{letter-spacing:0.339200pt;}
.ls4e_c00036{letter-spacing:0.345600pt;}
.ls2e_c00036{letter-spacing:0.355413pt;}
.lsb_c00036{letter-spacing:0.358400pt;}
.ls45_c00036{letter-spacing:0.364800pt;}
.lsa_c00036{letter-spacing:0.371200pt;}
.ls19_c00036{letter-spacing:0.396800pt;}
.ls17_c00036{letter-spacing:0.409600pt;}
.ls48_c00036{letter-spacing:0.428800pt;}
.ls4c_c00036{letter-spacing:0.435200pt;}
.ls4a_c00036{letter-spacing:0.441600pt;}
.ls2d_c00036{letter-spacing:0.448000pt;}
.ls1_c00036{letter-spacing:0.454400pt;}
.ls1a_c00036{letter-spacing:0.463307pt;}
.ls40_c00036{letter-spacing:0.473600pt;}
.ls43_c00036{letter-spacing:0.480000pt;}
.ls31_c00036{letter-spacing:0.499200pt;}
.ls6b_c00036{letter-spacing:0.512000pt;}
.ls28_c00036{letter-spacing:0.526773pt;}
.ls5c_c00036{letter-spacing:0.544000pt;}
.ls30_c00036{letter-spacing:0.550400pt;}
.ls3e_c00036{letter-spacing:0.558507pt;}
.ls14_c00036{letter-spacing:0.563200pt;}
.ls8e_c00036{letter-spacing:0.577547pt;}
.ls11_c00036{letter-spacing:0.595200pt;}
.lse_c00036{letter-spacing:0.620800pt;}
.ls26_c00036{letter-spacing:0.646400pt;}
.ls2f_c00036{letter-spacing:0.653707pt;}
.ls27_c00036{letter-spacing:0.672747pt;}
.ls37_c00036{letter-spacing:0.684800pt;}
.ls49_c00036{letter-spacing:0.716800pt;}
.ls6_c00036{letter-spacing:0.774400pt;}
.ls9_c00036{letter-spacing:0.787200pt;}
.ls4d_c00036{letter-spacing:0.806400pt;}
.ls29_c00036{letter-spacing:0.850453pt;}
.ls5f_c00036{letter-spacing:0.876800pt;}
.ls76_c00036{letter-spacing:0.972800pt;}
.ls47_c00036{letter-spacing:1.059893pt;}
.ls41_c00036{letter-spacing:1.075200pt;}
.ls13_c00036{letter-spacing:1.152000pt;}
.ls34_c00036{letter-spacing:1.184000pt;}
.ls39_c00036{letter-spacing:1.186827pt;}
.ls7_c00036{letter-spacing:1.203200pt;}
.ls32_c00036{letter-spacing:1.205867pt;}
.ls1b_c00036{letter-spacing:1.250293pt;}
.ls38_c00036{letter-spacing:1.267200pt;}
.ls8f_c00036{letter-spacing:1.356800pt;}
.ls10_c00036{letter-spacing:1.364533pt;}
.ls53_c00036{letter-spacing:1.472000pt;}
.ls1f_c00036{letter-spacing:1.491200pt;}
.ls88_c00036{letter-spacing:1.651200pt;}
.ls59_c00036{letter-spacing:1.976907pt;}
.ls36_c00036{letter-spacing:2.041600pt;}
.ls0_c00036{letter-spacing:2.176213pt;}
.ls3d_c00036{letter-spacing:2.373653pt;}
.ws0_c00036{word-spacing:-15.590400pt;}
.ws1_c00036{word-spacing:0.000000pt;}
._0_c00036{margin-left:-4.061547pt;}
._b_c00036{margin-left:-1.710880pt;}
._1_c00036{width:1.280000pt;}
._5_c00036{width:2.892800pt;}
._2_c00036{width:4.339200pt;}
._4_c00036{width:5.324800pt;}
._7_c00036{width:6.563947pt;}
._6_c00036{width:8.134400pt;}
._3_c00036{width:9.324800pt;}
._8_c00036{width:10.959840pt;}
._a_c00036{width:12.096373pt;}
._9_c00036{width:13.284853pt;}
._14_c00036{width:14.489227pt;}
._15_c00036{width:15.534133pt;}
._16_c00036{width:16.993547pt;}
._c_c00036{width:19.285280pt;}
._12_c00036{width:20.725440pt;}
._11_c00036{width:22.355200pt;}
._13_c00036{width:24.161920pt;}
._d_c00036{width:25.638400pt;}
._10_c00036{width:27.110400pt;}
._e_c00036{width:29.376000pt;}
._f_c00036{width:31.635200pt;}
.fs5_c00036{font-size:27.200000pt;}
.fs3_c00036{font-size:48.640000pt;}
.fs0_c00036{font-size:53.866667pt;}
.fs6_c00036{font-size:58.666667pt;}
.fs4_c00036{font-size:61.333333pt;}
.fs2_c00036{font-size:63.466667pt;}
.fs1_c00036{font-size:64.000000pt;}
.y0_c00036{bottom:0.000000pt;}
.y1f_c00036{bottom:62.733339pt;}
.y1e_c00036{bottom:145.277339pt;}
.y1d_c00036{bottom:172.813339pt;}
.y1c_c00036{bottom:200.016005pt;}
.y1b_c00036{bottom:227.536005pt;}
.y1a_c00036{bottom:281.296005pt;}
.y19_c00036{bottom:310.080005pt;}
.y18_c00036{bottom:337.597339pt;}
.y17_c00036{bottom:365.453339pt;}
.y16_c00036{bottom:392.973339pt;}
.y15_c00036{bottom:420.493339pt;}
.y14_c00036{bottom:420.496005pt;}
.y13_c00036{bottom:447.677339pt;}
.y12_c00036{bottom:474.557339pt;}
.y11_c00036{bottom:502.413339pt;}
.y10_c00036{bottom:529.933339pt;}
.yf_c00036{bottom:584.637339pt;}
.ye_c00036{bottom:640.336005pt;}
.yd_c00036{bottom:667.840005pt;}
.yb_c00036{bottom:695.357339pt;}
.yc_c00036{bottom:695.360005pt;}
.ya_c00036{bottom:722.893339pt;}
.y9_c00036{bottom:750.416005pt;}
.y8_c00036{bottom:777.600005pt;}
.y7_c00036{bottom:805.133339pt;}
.y6_c00036{bottom:859.536005pt;}
.y5_c00036{bottom:914.576005pt;}
.y4_c00036{bottom:941.760005pt;}
.y3_c00036{bottom:968.973339pt;}
.y2_c00036{bottom:997.133339pt;}
.y1_c00036{bottom:1065.920005pt;}
.h4_c00036{height:32.394240pt;}
.h2_c00036{height:52.867187pt;}
.h8_c00036{height:57.578125pt;}
.h3_c00036{height:62.812500pt;}
.h6_c00036{height:62.823167pt;}
.h5_c00036{height:63.958083pt;}
.h7_c00036{height:66.750000pt;}
.h1_c00036{height:1122.666667pt;}
.h0_c00036{height:1122.880005pt;}
.w1_c00036{width:793.333333pt;}
.w0_c00036{width:793.599999pt;}
.x0_c00036{left:0.000000pt;}
.xc_c00036{left:104.981332pt;}
.x9_c00036{left:106.213332pt;}
.x3_c00036{left:107.853332pt;}
.x1_c00036{left:108.986665pt;}
.xd_c00036{left:153.186665pt;}
.x4_c00036{left:154.786665pt;}
.x2_c00036{left:156.093332pt;}
.x5_c00036{left:177.466665pt;}
.x6_c00036{left:193.773332pt;}
.x10_c00036{left:377.839999pt;}
.xe_c00036{left:537.253332pt;}
.xa_c00036{left:549.959999pt;}
.x7_c00036{left:551.039999pt;}
.xf_c00036{left:559.133332pt;}
.xb_c00036{left:582.239999pt;}
.x8_c00036{left:595.013332pt;}
}





/* 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_c00037 {
    display:none;
  }
  .loading-indicator_c00037.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00037 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_c00037 { 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_c00037" -> "#page-container .classname_c00037")
 */
.pf_c00037 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00037 { /* 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_c00037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00037 { /* 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_c00037 { /* 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_c00037 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00037 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00037 {overflow:visible;}
  }
}
.c_c00037 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00037 { /* 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_c00037:after { /* webkit #35443 */
  content: '';
}
.t_c00037:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00037 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 */
}
.__c00037 { /* 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_c00037 { /* info for Javascript */
  display:none;
}
.l_c00037 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00037 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00037 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00037: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_c00037 {
    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_c00037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00037.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_c00037 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00037;src:url('chunks/assets/font_38bb61a7605fd78dfc3f8452.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.311035;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_c00037;src:url('chunks/assets/font_a3489931ce72081e0b6fa13b.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.284668;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_c00037;src:url('chunks/assets/font_27ec530f32868b7f48bd38bb.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;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:ff4_c00037;src:url('chunks/assets/font_b99ee315e9bb87575b0fd668.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:1.284180;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;}
.md_c00037{transform:matrix(0.201588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201588,0.000000,0.000000,0.250000,0,0);}
.m3_c00037{transform:matrix(0.207639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207639,0.000000,0.000000,0.250000,0,0);}
.mb_c00037{transform:matrix(0.215801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215801,0.000000,0.000000,0.250000,0,0);}
.m9_c00037{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.ma_c00037{transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);}
.mc_c00037{transform:matrix(0.249454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249454,0.000000,0.000000,0.250000,0,0);}
.m0_c00037{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);}
.m5_c00037{transform:matrix(0.252308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252308,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(0.256690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256690,0.000000,0.000000,0.250000,0,0);}
.m7_c00037{transform:matrix(0.263327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263327,0.000000,0.000000,0.250000,0,0);}
.m6_c00037{transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);}
.m2_c00037{transform:matrix(0.279608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279608,0.000000,0.000000,0.250000,0,0);}
.m8_c00037{transform:matrix(0.286381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286381,0.000000,0.000000,0.250000,0,0);}
.m4_c00037{transform:matrix(0.719932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719932,0.000000,0.000000,0.250000,0,0);}
.v1_c00037{vertical-align:-30.240000px;}
.v2_c00037{vertical-align:-25.980000px;}
.v3_c00037{vertical-align:-2.880000px;}
.v0_c00037{vertical-align:0.000000px;}
.ls1a_c00037{letter-spacing:-2.268000px;}
.ls15_c00037{letter-spacing:-1.701000px;}
.ls1c_c00037{letter-spacing:-1.283040px;}
.ls25_c00037{letter-spacing:-0.913680px;}
.ls1d_c00037{letter-spacing:-0.758160px;}
.ls22_c00037{letter-spacing:-0.356400px;}
.ls29_c00037{letter-spacing:-0.351360px;}
.ls1e_c00037{letter-spacing:-0.343440px;}
.ls27_c00037{letter-spacing:-0.220320px;}
.ls20_c00037{letter-spacing:-0.090720px;}
.ls23_c00037{letter-spacing:-0.071280px;}
.ls1b_c00037{letter-spacing:-0.045360px;}
.ls24_c00037{letter-spacing:-0.025920px;}
.ls26_c00037{letter-spacing:-0.019440px;}
.ls13_c00037{letter-spacing:0.000000px;}
.ls3_c00037{letter-spacing:0.032400px;}
.ls8_c00037{letter-spacing:0.038880px;}
.ls7_c00037{letter-spacing:0.110160px;}
.ls1f_c00037{letter-spacing:0.136080px;}
.lsd_c00037{letter-spacing:0.168480px;}
.lse_c00037{letter-spacing:0.207360px;}
.ls2_c00037{letter-spacing:0.252720px;}
.ls6_c00037{letter-spacing:0.272160px;}
.lsc_c00037{letter-spacing:0.400680px;}
.ls10_c00037{letter-spacing:0.413400px;}
.lsa_c00037{letter-spacing:0.466560px;}
.lsf_c00037{letter-spacing:0.511920px;}
.ls28_c00037{letter-spacing:0.515160px;}
.ls1_c00037{letter-spacing:0.550800px;}
.ls11_c00037{letter-spacing:0.680400px;}
.ls4_c00037{letter-spacing:0.680520px;}
.lsb_c00037{letter-spacing:0.751680px;}
.ls16_c00037{letter-spacing:0.797040px;}
.ls19_c00037{letter-spacing:0.972000px;}
.ls5_c00037{letter-spacing:1.010880px;}
.ls21_c00037{letter-spacing:1.257120px;}
.ls9_c00037{letter-spacing:1.490400px;}
.ls12_c00037{letter-spacing:1.814400px;}
.ls0_c00037{letter-spacing:1.912320px;}
.ls17_c00037{letter-spacing:2.430000px;}
.ls14_c00037{letter-spacing:2.640000px;}
.ls18_c00037{letter-spacing:3.120000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{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__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00037{word-spacing:0.000000px;}
._0_c00037{margin-left:-2.776320px;}
._7_c00037{width:2.041200px;}
._3_c00037{width:3.952800px;}
._6_c00037{width:5.343600px;}
._a_c00037{width:6.558600px;}
._4_c00037{width:7.782480px;}
._5_c00037{width:9.732960px;}
._c_c00037{width:23.744640px;}
._b_c00037{width:25.570080px;}
._d_c00037{width:26.961600px;}
._e_c00037{width:28.665120px;}
._9_c00037{width:462.148800px;}
._1_c00037{width:513.062400px;}
._8_c00037{width:542.592000px;}
._2_c00037{width:623.040000px;}
.fc0_c00037{color:transparent;}
.fs3_c00037{font-size:48.600000px;}
.fs2_c00037{font-size:52.800000px;}
.fs0_c00037{font-size:57.600000px;}
.fsc_c00037{font-size:61.200000px;}
.fs4_c00037{font-size:62.400000px;}
.fs9_c00037{font-size:63.600000px;}
.fs8_c00037{font-size:64.800000px;}
.fsd_c00037{font-size:66.000000px;}
.fsa_c00037{font-size:72.000000px;}
.fs7_c00037{font-size:76.800000px;}
.fs5_c00037{font-size:80.400000px;}
.fsb_c00037{font-size:82.200000px;}
.fs6_c00037{font-size:150.000000px;}
.fs1_c00037{font-size:201.600000px;}
.y0_c00037{bottom:0.000000px;}
.ye_c00037{bottom:69.855015px;}
.yd_c00037{bottom:182.160015px;}
.yc_c00037{bottom:200.887815px;}
.yb_c00037{bottom:219.615015px;}
.ya_c00037{bottom:312.855015px;}
.y10_c00037{bottom:615.255015px;}
.yf_c00037{bottom:618.840015px;}
.y8_c00037{bottom:669.251415px;}
.y9_c00037{bottom:669.255015px;}
.y7_c00037{bottom:688.335015px;}
.y6_c00037{bottom:749.895015px;}
.y5_c00037{bottom:781.920015px;}
.y4_c00037{bottom:806.760015px;}
.y3_c00037{bottom:1086.855015px;}
.y2_c00037{bottom:1098.375015px;}
.y1_c00037{bottom:1194.120015px;}
.h5_c00037{height:47.698242px;}
.h4_c00037{height:55.068750px;}
.hd_c00037{height:56.531250px;}
.h2_c00037{height:58.050000px;}
.h6_c00037{height:61.242188px;}
.hc_c00037{height:62.388867px;}
.h8_c00037{height:63.597656px;}
.hb_c00037{height:63.626456px;}
.ha_c00037{height:63.829687px;}
.hf_c00037{height:68.835938px;}
.h9_c00037{height:77.794805px;}
.he_c00037{height:80.100000px;}
.h7_c00037{height:126.205312px;}
.h3_c00037{height:197.859375px;}
.h1_c00037{height:1263.000000px;}
.h0_c00037{height:1263.240015px;}
.w1_c00037{width:892.500000px;}
.w0_c00037{width:892.800000px;}
.x0_c00037{left:0.000000px;}
.x1_c00037{left:125.475000px;}
.x13_c00037{left:173.325000px;}
.xd_c00037{left:175.110000px;}
.x14_c00037{left:190.725000px;}
.xe_c00037{left:192.075000px;}
.xf_c00037{left:196.065000px;}
.x12_c00037{left:255.045000px;}
.x10_c00037{left:288.600000px;}
.x5_c00037{left:295.350000px;}
.x11_c00037{left:303.345000px;}
.x6_c00037{left:312.705000px;}
.xc_c00037{left:314.070000px;}
.x7_c00037{left:331.650000px;}
.xa_c00037{left:383.025000px;}
.x8_c00037{left:394.470000px;}
.x3_c00037{left:398.145000px;}
.x15_c00037{left:422.115000px;}
.x16_c00037{left:429.750000px;}
.xb_c00037{left:437.055000px;}
.x2_c00037{left:452.745000px;}
.x4_c00037{left:455.415000px;}
.x9_c00037{left:463.350000px;}
.x18_c00037{left:855.495000px;}
.x17_c00037{left:856.545000px;}
@media print{
.v1_c00037{vertical-align:-26.880000pt;}
.v2_c00037{vertical-align:-23.093333pt;}
.v3_c00037{vertical-align:-2.560000pt;}
.v0_c00037{vertical-align:0.000000pt;}
.ls1a_c00037{letter-spacing:-2.016000pt;}
.ls15_c00037{letter-spacing:-1.512000pt;}
.ls1c_c00037{letter-spacing:-1.140480pt;}
.ls25_c00037{letter-spacing:-0.812160pt;}
.ls1d_c00037{letter-spacing:-0.673920pt;}
.ls22_c00037{letter-spacing:-0.316800pt;}
.ls29_c00037{letter-spacing:-0.312320pt;}
.ls1e_c00037{letter-spacing:-0.305280pt;}
.ls27_c00037{letter-spacing:-0.195840pt;}
.ls20_c00037{letter-spacing:-0.080640pt;}
.ls23_c00037{letter-spacing:-0.063360pt;}
.ls1b_c00037{letter-spacing:-0.040320pt;}
.ls24_c00037{letter-spacing:-0.023040pt;}
.ls26_c00037{letter-spacing:-0.017280pt;}
.ls13_c00037{letter-spacing:0.000000pt;}
.ls3_c00037{letter-spacing:0.028800pt;}
.ls8_c00037{letter-spacing:0.034560pt;}
.ls7_c00037{letter-spacing:0.097920pt;}
.ls1f_c00037{letter-spacing:0.120960pt;}
.lsd_c00037{letter-spacing:0.149760pt;}
.lse_c00037{letter-spacing:0.184320pt;}
.ls2_c00037{letter-spacing:0.224640pt;}
.ls6_c00037{letter-spacing:0.241920pt;}
.lsc_c00037{letter-spacing:0.356160pt;}
.ls10_c00037{letter-spacing:0.367467pt;}
.lsa_c00037{letter-spacing:0.414720pt;}
.lsf_c00037{letter-spacing:0.455040pt;}
.ls28_c00037{letter-spacing:0.457920pt;}
.ls1_c00037{letter-spacing:0.489600pt;}
.ls11_c00037{letter-spacing:0.604800pt;}
.ls4_c00037{letter-spacing:0.604907pt;}
.lsb_c00037{letter-spacing:0.668160pt;}
.ls16_c00037{letter-spacing:0.708480pt;}
.ls19_c00037{letter-spacing:0.864000pt;}
.ls5_c00037{letter-spacing:0.898560pt;}
.ls21_c00037{letter-spacing:1.117440pt;}
.ls9_c00037{letter-spacing:1.324800pt;}
.ls12_c00037{letter-spacing:1.612800pt;}
.ls0_c00037{letter-spacing:1.699840pt;}
.ls17_c00037{letter-spacing:2.160000pt;}
.ls14_c00037{letter-spacing:2.346667pt;}
.ls18_c00037{letter-spacing:2.773333pt;}
.ws0_c00037{word-spacing:0.000000pt;}
._0_c00037{margin-left:-2.467840pt;}
._7_c00037{width:1.814400pt;}
._3_c00037{width:3.513600pt;}
._6_c00037{width:4.749867pt;}
._a_c00037{width:5.829867pt;}
._4_c00037{width:6.917760pt;}
._5_c00037{width:8.651520pt;}
._c_c00037{width:21.106347pt;}
._b_c00037{width:22.728960pt;}
._d_c00037{width:23.965867pt;}
._e_c00037{width:25.480107pt;}
._9_c00037{width:410.798933pt;}
._1_c00037{width:456.055467pt;}
._8_c00037{width:482.304000pt;}
._2_c00037{width:553.813333pt;}
.fs3_c00037{font-size:43.200000pt;}
.fs2_c00037{font-size:46.933333pt;}
.fs0_c00037{font-size:51.200000pt;}
.fsc_c00037{font-size:54.400000pt;}
.fs4_c00037{font-size:55.466667pt;}
.fs9_c00037{font-size:56.533333pt;}
.fs8_c00037{font-size:57.600000pt;}
.fsd_c00037{font-size:58.666667pt;}
.fsa_c00037{font-size:64.000000pt;}
.fs7_c00037{font-size:68.266667pt;}
.fs5_c00037{font-size:71.466667pt;}
.fsb_c00037{font-size:73.066667pt;}
.fs6_c00037{font-size:133.333333pt;}
.fs1_c00037{font-size:179.200000pt;}
.y0_c00037{bottom:0.000000pt;}
.ye_c00037{bottom:62.093347pt;}
.yd_c00037{bottom:161.920013pt;}
.yc_c00037{bottom:178.566947pt;}
.yb_c00037{bottom:195.213347pt;}
.ya_c00037{bottom:278.093347pt;}
.y10_c00037{bottom:546.893347pt;}
.yf_c00037{bottom:550.080013pt;}
.y8_c00037{bottom:594.890147pt;}
.y9_c00037{bottom:594.893347pt;}
.y7_c00037{bottom:611.853347pt;}
.y6_c00037{bottom:666.573347pt;}
.y5_c00037{bottom:695.040013pt;}
.y4_c00037{bottom:717.120013pt;}
.y3_c00037{bottom:966.093347pt;}
.y2_c00037{bottom:976.333347pt;}
.y1_c00037{bottom:1061.440013pt;}
.h5_c00037{height:42.398437pt;}
.h4_c00037{height:48.950000pt;}
.hd_c00037{height:50.250000pt;}
.h2_c00037{height:51.600000pt;}
.h6_c00037{height:54.437500pt;}
.hc_c00037{height:55.456771pt;}
.h8_c00037{height:56.531250pt;}
.hb_c00037{height:56.556850pt;}
.ha_c00037{height:56.737500pt;}
.hf_c00037{height:61.187500pt;}
.h9_c00037{height:69.150938pt;}
.he_c00037{height:71.200000pt;}
.h7_c00037{height:112.182500pt;}
.h3_c00037{height:175.875000pt;}
.h1_c00037{height:1122.666667pt;}
.h0_c00037{height:1122.880013pt;}
.w1_c00037{width:793.333333pt;}
.w0_c00037{width:793.600000pt;}
.x0_c00037{left:0.000000pt;}
.x1_c00037{left:111.533333pt;}
.x13_c00037{left:154.066667pt;}
.xd_c00037{left:155.653333pt;}
.x14_c00037{left:169.533333pt;}
.xe_c00037{left:170.733333pt;}
.xf_c00037{left:174.280000pt;}
.x12_c00037{left:226.706667pt;}
.x10_c00037{left:256.533333pt;}
.x5_c00037{left:262.533333pt;}
.x11_c00037{left:269.640000pt;}
.x6_c00037{left:277.960000pt;}
.xc_c00037{left:279.173333pt;}
.x7_c00037{left:294.800000pt;}
.xa_c00037{left:340.466667pt;}
.x8_c00037{left:350.640000pt;}
.x3_c00037{left:353.906667pt;}
.x15_c00037{left:375.213333pt;}
.x16_c00037{left:382.000000pt;}
.xb_c00037{left:388.493333pt;}
.x2_c00037{left:402.440000pt;}
.x4_c00037{left:404.813333pt;}
.x9_c00037{left:411.866667pt;}
.x18_c00037{left:760.440000pt;}
.x17_c00037{left:761.373333pt;}
}





/* 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_c00038 {
    display:none;
  }
  .loading-indicator_c00038.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00038 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_c00038 { 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_c00038" -> "#page-container .classname_c00038")
 */
.pf_c00038 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00038 { /* 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_c00038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00038 { /* 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_c00038 { /* 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_c00038 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00038 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00038 {overflow:visible;}
  }
}
.c_c00038 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00038 { /* 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_c00038:after { /* webkit #35443 */
  content: '';
}
.t_c00038:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00038 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 */
}
.__c00038 { /* 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_c00038 { /* info for Javascript */
  display:none;
}
.l_c00038 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00038 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00038 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00038: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_c00038 {
    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_c00038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00038.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_c00038 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00038;src:url('chunks/assets/font_f60bfbbc5e0888b3baafb141.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.284668;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_c00038;src:url('chunks/assets/font_245b2d82c32d711eef221837.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.284180;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_c00038;src:url('chunks/assets/font_711ddc779d94d20efe901096.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;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:ff4_c00038;src:url('chunks/assets/font_17ebd61b39e24f17336835f8.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;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;}
.md_c00038{transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);}
.ma_c00038{transform:matrix(0.237881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237881,0.000000,0.000000,0.250000,0,0);}
.m8_c00038{transform:matrix(0.239441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239441,0.000000,0.000000,0.250000,0,0);}
.m7_c00038{transform:matrix(0.242311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242311,0.000000,0.000000,0.250000,0,0);}
.m9_c00038{transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);}
.m6_c00038{transform:matrix(0.244617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244617,0.000000,0.000000,0.250000,0,0);}
.m5_c00038{transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);}
.mf_c00038{transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);}
.m3_c00038{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.me_c00038{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.mb_c00038{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);}
.m2_c00038{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);}
.m0_c00038{transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);}
.m1_c00038{transform:matrix(0.251674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251674,0.000000,0.000000,0.250000,0,0);}
.mc_c00038{transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);}
.m4_c00038{transform:matrix(0.264360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264360,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls2e_c00038{letter-spacing:-2.562000px;}
.ls58_c00038{letter-spacing:-2.394000px;}
.ls63_c00038{letter-spacing:-2.373000px;}
.ls2a_c00038{letter-spacing:-2.364360px;}
.ls80_c00038{letter-spacing:-2.352000px;}
.ls54_c00038{letter-spacing:-2.298480px;}
.ls47_c00038{letter-spacing:-2.130120px;}
.ls91_c00038{letter-spacing:-2.042280px;}
.ls1c_c00038{letter-spacing:-1.873920px;}
.ls3a_c00038{letter-spacing:-1.859280px;}
.ls56_c00038{letter-spacing:-1.844640px;}
.ls42_c00038{letter-spacing:-1.800720px;}
.ls76_c00038{letter-spacing:-1.595760px;}
.ls84_c00038{letter-spacing:-1.566480px;}
.ls73_c00038{letter-spacing:-1.544520px;}
.ls2b_c00038{letter-spacing:-1.493280px;}
.ls21_c00038{letter-spacing:-1.427400px;}
.ls82_c00038{letter-spacing:-1.398120px;}
.ls44_c00038{letter-spacing:-1.339560px;}
.ls46_c00038{letter-spacing:-1.317600px;}
.ls37_c00038{letter-spacing:-1.302960px;}
.ls88_c00038{letter-spacing:-1.273680px;}
.ls61_c00038{letter-spacing:-1.266360px;}
.ls27_c00038{letter-spacing:-1.185840px;}
.ls38_c00038{letter-spacing:-1.178520px;}
.ls5f_c00038{letter-spacing:-1.149240px;}
.ls51_c00038{letter-spacing:-1.127280px;}
.ls66_c00038{letter-spacing:-1.119960px;}
.ls1b_c00038{letter-spacing:-1.112640px;}
.ls6b_c00038{letter-spacing:-1.076040px;}
.ls8d_c00038{letter-spacing:-1.024800px;}
.ls67_c00038{letter-spacing:-0.988200px;}
.ls72_c00038{letter-spacing:-0.973560px;}
.ls64_c00038{letter-spacing:-0.966240px;}
.ls71_c00038{letter-spacing:-0.958920px;}
.ls6d_c00038{letter-spacing:-0.951600px;}
.ls4d_c00038{letter-spacing:-0.944280px;}
.ls2f_c00038{letter-spacing:-0.922320px;}
.ls6e_c00038{letter-spacing:-0.900360px;}
.ls1f_c00038{letter-spacing:-0.878400px;}
.ls31_c00038{letter-spacing:-0.863760px;}
.ls20_c00038{letter-spacing:-0.856440px;}
.ls40_c00038{letter-spacing:-0.834480px;}
.ls36_c00038{letter-spacing:-0.827160px;}
.ls78_c00038{letter-spacing:-0.812520px;}
.ls53_c00038{letter-spacing:-0.790560px;}
.ls43_c00038{letter-spacing:-0.761280px;}
.ls3f_c00038{letter-spacing:-0.739320px;}
.ls59_c00038{letter-spacing:-0.724680px;}
.ls57_c00038{letter-spacing:-0.717360px;}
.ls70_c00038{letter-spacing:-0.702720px;}
.ls94_c00038{letter-spacing:-0.688080px;}
.ls4c_c00038{letter-spacing:-0.680760px;}
.ls35_c00038{letter-spacing:-0.673440px;}
.ls1e_c00038{letter-spacing:-0.666120px;}
.ls26_c00038{letter-spacing:-0.636840px;}
.ls7f_c00038{letter-spacing:-0.622200px;}
.ls8c_c00038{letter-spacing:-0.600240px;}
.ls7a_c00038{letter-spacing:-0.592920px;}
.ls5c_c00038{letter-spacing:-0.578280px;}
.ls68_c00038{letter-spacing:-0.570960px;}
.ls29_c00038{letter-spacing:-0.563640px;}
.ls86_c00038{letter-spacing:-0.549000px;}
.ls49_c00038{letter-spacing:-0.541680px;}
.ls89_c00038{letter-spacing:-0.534360px;}
.ls74_c00038{letter-spacing:-0.519720px;}
.ls6f_c00038{letter-spacing:-0.512400px;}
.ls7d_c00038{letter-spacing:-0.505080px;}
.ls5a_c00038{letter-spacing:-0.497760px;}
.ls1d_c00038{letter-spacing:-0.468480px;}
.ls28_c00038{letter-spacing:-0.461160px;}
.ls92_c00038{letter-spacing:-0.453840px;}
.ls50_c00038{letter-spacing:-0.446520px;}
.ls60_c00038{letter-spacing:-0.439200px;}
.ls8f_c00038{letter-spacing:-0.431880px;}
.ls23_c00038{letter-spacing:-0.424560px;}
.ls75_c00038{letter-spacing:-0.417240px;}
.ls22_c00038{letter-spacing:-0.409920px;}
.ls4f_c00038{letter-spacing:-0.402600px;}
.ls3b_c00038{letter-spacing:-0.395280px;}
.ls33_c00038{letter-spacing:-0.373320px;}
.ls45_c00038{letter-spacing:-0.351360px;}
.ls55_c00038{letter-spacing:-0.344040px;}
.ls77_c00038{letter-spacing:-0.336720px;}
.ls2d_c00038{letter-spacing:-0.329400px;}
.ls25_c00038{letter-spacing:-0.322080px;}
.ls7e_c00038{letter-spacing:-0.307440px;}
.ls93_c00038{letter-spacing:-0.300120px;}
.ls3d_c00038{letter-spacing:-0.285480px;}
.ls24_c00038{letter-spacing:-0.278160px;}
.ls7c_c00038{letter-spacing:-0.270840px;}
.ls6c_c00038{letter-spacing:-0.263520px;}
.ls4a_c00038{letter-spacing:-0.248880px;}
.ls41_c00038{letter-spacing:-0.241560px;}
.ls5d_c00038{letter-spacing:-0.234240px;}
.ls3c_c00038{letter-spacing:-0.226920px;}
.ls90_c00038{letter-spacing:-0.219600px;}
.ls69_c00038{letter-spacing:-0.212280px;}
.ls5b_c00038{letter-spacing:-0.197640px;}
.ls6a_c00038{letter-spacing:-0.190320px;}
.ls48_c00038{letter-spacing:-0.175680px;}
.ls52_c00038{letter-spacing:-0.168360px;}
.ls2c_c00038{letter-spacing:-0.161040px;}
.ls8b_c00038{letter-spacing:-0.139080px;}
.ls4e_c00038{letter-spacing:-0.117120px;}
.ls7b_c00038{letter-spacing:-0.102480px;}
.ls30_c00038{letter-spacing:-0.087840px;}
.ls83_c00038{letter-spacing:-0.080520px;}
.ls34_c00038{letter-spacing:-0.073200px;}
.ls4b_c00038{letter-spacing:-0.065880px;}
.ls8a_c00038{letter-spacing:-0.058560px;}
.ls65_c00038{letter-spacing:-0.051240px;}
.ls79_c00038{letter-spacing:-0.043920px;}
.ls39_c00038{letter-spacing:-0.036600px;}
.ls87_c00038{letter-spacing:-0.021960px;}
.ls32_c00038{letter-spacing:0.000000px;}
.ls6_c00038{letter-spacing:0.021960px;}
.ls8_c00038{letter-spacing:0.043920px;}
.lsa_c00038{letter-spacing:0.051240px;}
.lse_c00038{letter-spacing:0.058560px;}
.ls5_c00038{letter-spacing:0.073200px;}
.ls7_c00038{letter-spacing:0.087840px;}
.ls2_c00038{letter-spacing:0.095160px;}
.ls1_c00038{letter-spacing:0.117120px;}
.ls3_c00038{letter-spacing:0.131760px;}
.ls15_c00038{letter-spacing:0.168360px;}
.lsb_c00038{letter-spacing:0.203400px;}
.ls8e_c00038{letter-spacing:0.329400px;}
.ls16_c00038{letter-spacing:0.336720px;}
.ls96_c00038{letter-spacing:0.392040px;}
.ls4_c00038{letter-spacing:0.458280px;}
.ls5e_c00038{letter-spacing:0.519720px;}
.lsf_c00038{letter-spacing:0.578280px;}
.lsd_c00038{letter-spacing:0.710040px;}
.ls10_c00038{letter-spacing:0.725040px;}
.ls17_c00038{letter-spacing:1.203840px;}
.ls18_c00038{letter-spacing:1.450080px;}
.ls95_c00038{letter-spacing:1.491120px;}
.lsc_c00038{letter-spacing:1.559160px;}
.ls11_c00038{letter-spacing:1.580040px;}
.ls9_c00038{letter-spacing:1.792080px;}
.ls14_c00038{letter-spacing:1.846800px;}
.ls85_c00038{letter-spacing:1.867320px;}
.ls12_c00038{letter-spacing:1.874160px;}
.ls0_c00038{letter-spacing:2.120400px;}
.ls81_c00038{letter-spacing:2.311920px;}
.ls19_c00038{letter-spacing:2.352960px;}
.ls62_c00038{letter-spacing:2.400120px;}
.ls1a_c00038{letter-spacing:2.970000px;}
.ls13_c00038{letter-spacing:3.071160px;}
.ls3e_c00038{letter-spacing:3.420000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{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__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00038{word-spacing:0.000000px;}
._10_c00038{margin-left:-4.560360px;}
._1b_c00038{margin-left:-2.655840px;}
._1a_c00038{margin-left:-1.184880px;}
._14_c00038{width:1.024800px;}
._11_c00038{width:2.908200px;}
._c_c00038{width:4.172400px;}
._13_c00038{width:5.270400px;}
._a_c00038{width:6.324480px;}
._9_c00038{width:7.393200px;}
._b_c00038{width:8.974320px;}
._d_c00038{width:10.189440px;}
._12_c00038{width:11.192280px;}
._e_c00038{width:12.275640px;}
._f_c00038{width:13.344360px;}
._16_c00038{width:15.021480px;}
._17_c00038{width:16.058400px;}
._15_c00038{width:19.222800px;}
._3_c00038{width:20.598000px;}
._2_c00038{width:23.145840px;}
._0_c00038{width:24.492720px;}
._1_c00038{width:25.795680px;}
._18_c00038{width:27.516480px;}
._4_c00038{width:28.986600px;}
._19_c00038{width:30.392040px;}
._6_c00038{width:42.309600px;}
._5_c00038{width:43.495440px;}
._7_c00038{width:44.813040px;}
._8_c00038{width:47.243280px;}
.fc0_c00038{color:transparent;}
.fs0_c00038{font-size:59.400000px;}
.fs4_c00038{font-size:67.200000px;}
.fs3_c00038{font-size:67.800000px;}
.fs2_c00038{font-size:68.400000px;}
.fs6_c00038{font-size:69.000000px;}
.fs5_c00038{font-size:72.000000px;}
.fs1_c00038{font-size:73.200000px;}
.y0_c00038{bottom:0.000000px;}
.y28_c00038{bottom:71.655000px;}
.y27_c00038{bottom:164.894700px;}
.y26_c00038{bottom:195.840000px;}
.y25_c00038{bottom:226.805100px;}
.y24_c00038{bottom:257.055000px;}
.y23_c00038{bottom:288.015000px;}
.y22_c00038{bottom:288.032400px;}
.y21_c00038{bottom:319.343700px;}
.y20_c00038{bottom:350.655000px;}
.y1f_c00038{bottom:412.200000px;}
.y1e_c00038{bottom:473.775000px;}
.y1d_c00038{bottom:534.615000px;}
.y1c_c00038{bottom:566.640000px;}
.y1b_c00038{bottom:566.641800px;}
.y1a_c00038{bottom:597.623700px;}
.y19_c00038{bottom:628.931400px;}
.y18_c00038{bottom:659.895000px;}
.y17_c00038{bottom:659.900700px;}
.y15_c00038{bottom:690.473100px;}
.y16_c00038{bottom:690.480000px;}
.y14_c00038{bottom:721.463700px;}
.y13_c00038{bottom:752.775000px;}
.y12_c00038{bottom:814.343700px;}
.y11_c00038{bottom:845.655000px;}
.yf_c00038{bottom:876.236400px;}
.y10_c00038{bottom:876.240000px;}
.yd_c00038{bottom:907.199100px;}
.ye_c00038{bottom:907.200000px;}
.yb_c00038{bottom:937.814700px;}
.yc_c00038{bottom:937.815000px;}
.ya_c00038{bottom:968.759100px;}
.y8_c00038{bottom:999.371400px;}
.y9_c00038{bottom:999.375000px;}
.y6_c00038{bottom:1030.334700px;}
.y7_c00038{bottom:1030.335000px;}
.y5_c00038{bottom:1061.280000px;}
.y4_c00038{bottom:1061.285100px;}
.y3_c00038{bottom:1092.248700px;}
.y2_c00038{bottom:1123.560000px;}
.y1_c00038{bottom:1199.895000px;}
.h2_c00038{height:58.297852px;}
.h6_c00038{height:66.541992px;}
.h4_c00038{height:67.097461px;}
.h8_c00038{height:70.087500px;}
.h9_c00038{height:70.628906px;}
.h3_c00038{height:71.841797px;}
.hb_c00038{height:71.842997px;}
.h5_c00038{height:71.845397px;}
.h7_c00038{height:71.856197px;}
.ha_c00038{height:71.895244px;}
.h1_c00038{height:1263.000000px;}
.h0_c00038{height:1263.240000px;}
.w1_c00038{width:892.500000px;}
.w0_c00038{width:892.800000px;}
.x0_c00038{left:0.000000px;}
.x1f_c00038{left:121.005900px;}
.x18_c00038{left:122.217300px;}
.x6_c00038{left:123.865500px;}
.x1_c00038{left:125.490000px;}
.x1e_c00038{left:174.570000px;}
.x15_c00038{left:176.670000px;}
.x3_c00038{left:178.815000px;}
.x7_c00038{left:198.570000px;}
.x8_c00038{left:217.980000px;}
.x21_c00038{left:230.250000px;}
.x22_c00038{left:247.485000px;}
.x2_c00038{left:275.970000px;}
.x4_c00038{left:293.610000px;}
.x5_c00038{left:311.715000px;}
.x9_c00038{left:368.115000px;}
.x1b_c00038{left:374.595000px;}
.xa_c00038{left:388.320000px;}
.x19_c00038{left:391.995000px;}
.x1c_c00038{left:393.000000px;}
.x1a_c00038{left:428.205000px;}
.x16_c00038{left:439.050000px;}
.x17_c00038{left:473.925000px;}
.x23_c00038{left:570.705000px;}
.xf_c00038{left:589.860000px;}
.xb_c00038{left:612.915000px;}
.x14_c00038{left:634.890000px;}
.xc_c00038{left:637.410000px;}
.x11_c00038{left:643.140000px;}
.x12_c00038{left:648.840000px;}
.x10_c00038{left:653.940000px;}
.x13_c00038{left:669.885000px;}
.xd_c00038{left:711.195000px;}
.x20_c00038{left:733.530000px;}
.xe_c00038{left:735.690000px;}
.x1d_c00038{left:738.165000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls2e_c00038{letter-spacing:-2.277333pt;}
.ls58_c00038{letter-spacing:-2.128000pt;}
.ls63_c00038{letter-spacing:-2.109333pt;}
.ls2a_c00038{letter-spacing:-2.101653pt;}
.ls80_c00038{letter-spacing:-2.090667pt;}
.ls54_c00038{letter-spacing:-2.043093pt;}
.ls47_c00038{letter-spacing:-1.893440pt;}
.ls91_c00038{letter-spacing:-1.815360pt;}
.ls1c_c00038{letter-spacing:-1.665707pt;}
.ls3a_c00038{letter-spacing:-1.652693pt;}
.ls56_c00038{letter-spacing:-1.639680pt;}
.ls42_c00038{letter-spacing:-1.600640pt;}
.ls76_c00038{letter-spacing:-1.418453pt;}
.ls84_c00038{letter-spacing:-1.392427pt;}
.ls73_c00038{letter-spacing:-1.372907pt;}
.ls2b_c00038{letter-spacing:-1.327360pt;}
.ls21_c00038{letter-spacing:-1.268800pt;}
.ls82_c00038{letter-spacing:-1.242773pt;}
.ls44_c00038{letter-spacing:-1.190720pt;}
.ls46_c00038{letter-spacing:-1.171200pt;}
.ls37_c00038{letter-spacing:-1.158187pt;}
.ls88_c00038{letter-spacing:-1.132160pt;}
.ls61_c00038{letter-spacing:-1.125653pt;}
.ls27_c00038{letter-spacing:-1.054080pt;}
.ls38_c00038{letter-spacing:-1.047573pt;}
.ls5f_c00038{letter-spacing:-1.021547pt;}
.ls51_c00038{letter-spacing:-1.002027pt;}
.ls66_c00038{letter-spacing:-0.995520pt;}
.ls1b_c00038{letter-spacing:-0.989013pt;}
.ls6b_c00038{letter-spacing:-0.956480pt;}
.ls8d_c00038{letter-spacing:-0.910933pt;}
.ls67_c00038{letter-spacing:-0.878400pt;}
.ls72_c00038{letter-spacing:-0.865387pt;}
.ls64_c00038{letter-spacing:-0.858880pt;}
.ls71_c00038{letter-spacing:-0.852373pt;}
.ls6d_c00038{letter-spacing:-0.845867pt;}
.ls4d_c00038{letter-spacing:-0.839360pt;}
.ls2f_c00038{letter-spacing:-0.819840pt;}
.ls6e_c00038{letter-spacing:-0.800320pt;}
.ls1f_c00038{letter-spacing:-0.780800pt;}
.ls31_c00038{letter-spacing:-0.767787pt;}
.ls20_c00038{letter-spacing:-0.761280pt;}
.ls40_c00038{letter-spacing:-0.741760pt;}
.ls36_c00038{letter-spacing:-0.735253pt;}
.ls78_c00038{letter-spacing:-0.722240pt;}
.ls53_c00038{letter-spacing:-0.702720pt;}
.ls43_c00038{letter-spacing:-0.676693pt;}
.ls3f_c00038{letter-spacing:-0.657173pt;}
.ls59_c00038{letter-spacing:-0.644160pt;}
.ls57_c00038{letter-spacing:-0.637653pt;}
.ls70_c00038{letter-spacing:-0.624640pt;}
.ls94_c00038{letter-spacing:-0.611627pt;}
.ls4c_c00038{letter-spacing:-0.605120pt;}
.ls35_c00038{letter-spacing:-0.598613pt;}
.ls1e_c00038{letter-spacing:-0.592107pt;}
.ls26_c00038{letter-spacing:-0.566080pt;}
.ls7f_c00038{letter-spacing:-0.553067pt;}
.ls8c_c00038{letter-spacing:-0.533547pt;}
.ls7a_c00038{letter-spacing:-0.527040pt;}
.ls5c_c00038{letter-spacing:-0.514027pt;}
.ls68_c00038{letter-spacing:-0.507520pt;}
.ls29_c00038{letter-spacing:-0.501013pt;}
.ls86_c00038{letter-spacing:-0.488000pt;}
.ls49_c00038{letter-spacing:-0.481493pt;}
.ls89_c00038{letter-spacing:-0.474987pt;}
.ls74_c00038{letter-spacing:-0.461973pt;}
.ls6f_c00038{letter-spacing:-0.455467pt;}
.ls7d_c00038{letter-spacing:-0.448960pt;}
.ls5a_c00038{letter-spacing:-0.442453pt;}
.ls1d_c00038{letter-spacing:-0.416427pt;}
.ls28_c00038{letter-spacing:-0.409920pt;}
.ls92_c00038{letter-spacing:-0.403413pt;}
.ls50_c00038{letter-spacing:-0.396907pt;}
.ls60_c00038{letter-spacing:-0.390400pt;}
.ls8f_c00038{letter-spacing:-0.383893pt;}
.ls23_c00038{letter-spacing:-0.377387pt;}
.ls75_c00038{letter-spacing:-0.370880pt;}
.ls22_c00038{letter-spacing:-0.364373pt;}
.ls4f_c00038{letter-spacing:-0.357867pt;}
.ls3b_c00038{letter-spacing:-0.351360pt;}
.ls33_c00038{letter-spacing:-0.331840pt;}
.ls45_c00038{letter-spacing:-0.312320pt;}
.ls55_c00038{letter-spacing:-0.305813pt;}
.ls77_c00038{letter-spacing:-0.299307pt;}
.ls2d_c00038{letter-spacing:-0.292800pt;}
.ls25_c00038{letter-spacing:-0.286293pt;}
.ls7e_c00038{letter-spacing:-0.273280pt;}
.ls93_c00038{letter-spacing:-0.266773pt;}
.ls3d_c00038{letter-spacing:-0.253760pt;}
.ls24_c00038{letter-spacing:-0.247253pt;}
.ls7c_c00038{letter-spacing:-0.240747pt;}
.ls6c_c00038{letter-spacing:-0.234240pt;}
.ls4a_c00038{letter-spacing:-0.221227pt;}
.ls41_c00038{letter-spacing:-0.214720pt;}
.ls5d_c00038{letter-spacing:-0.208213pt;}
.ls3c_c00038{letter-spacing:-0.201707pt;}
.ls90_c00038{letter-spacing:-0.195200pt;}
.ls69_c00038{letter-spacing:-0.188693pt;}
.ls5b_c00038{letter-spacing:-0.175680pt;}
.ls6a_c00038{letter-spacing:-0.169173pt;}
.ls48_c00038{letter-spacing:-0.156160pt;}
.ls52_c00038{letter-spacing:-0.149653pt;}
.ls2c_c00038{letter-spacing:-0.143147pt;}
.ls8b_c00038{letter-spacing:-0.123627pt;}
.ls4e_c00038{letter-spacing:-0.104107pt;}
.ls7b_c00038{letter-spacing:-0.091093pt;}
.ls30_c00038{letter-spacing:-0.078080pt;}
.ls83_c00038{letter-spacing:-0.071573pt;}
.ls34_c00038{letter-spacing:-0.065067pt;}
.ls4b_c00038{letter-spacing:-0.058560pt;}
.ls8a_c00038{letter-spacing:-0.052053pt;}
.ls65_c00038{letter-spacing:-0.045547pt;}
.ls79_c00038{letter-spacing:-0.039040pt;}
.ls39_c00038{letter-spacing:-0.032533pt;}
.ls87_c00038{letter-spacing:-0.019520pt;}
.ls32_c00038{letter-spacing:0.000000pt;}
.ls6_c00038{letter-spacing:0.019520pt;}
.ls8_c00038{letter-spacing:0.039040pt;}
.lsa_c00038{letter-spacing:0.045547pt;}
.lse_c00038{letter-spacing:0.052053pt;}
.ls5_c00038{letter-spacing:0.065067pt;}
.ls7_c00038{letter-spacing:0.078080pt;}
.ls2_c00038{letter-spacing:0.084587pt;}
.ls1_c00038{letter-spacing:0.104107pt;}
.ls3_c00038{letter-spacing:0.117120pt;}
.ls15_c00038{letter-spacing:0.149653pt;}
.lsb_c00038{letter-spacing:0.180800pt;}
.ls8e_c00038{letter-spacing:0.292800pt;}
.ls16_c00038{letter-spacing:0.299307pt;}
.ls96_c00038{letter-spacing:0.348480pt;}
.ls4_c00038{letter-spacing:0.407360pt;}
.ls5e_c00038{letter-spacing:0.461973pt;}
.lsf_c00038{letter-spacing:0.514027pt;}
.lsd_c00038{letter-spacing:0.631147pt;}
.ls10_c00038{letter-spacing:0.644480pt;}
.ls17_c00038{letter-spacing:1.070080pt;}
.ls18_c00038{letter-spacing:1.288960pt;}
.ls95_c00038{letter-spacing:1.325440pt;}
.lsc_c00038{letter-spacing:1.385920pt;}
.ls11_c00038{letter-spacing:1.404480pt;}
.ls9_c00038{letter-spacing:1.592960pt;}
.ls14_c00038{letter-spacing:1.641600pt;}
.ls85_c00038{letter-spacing:1.659840pt;}
.ls12_c00038{letter-spacing:1.665920pt;}
.ls0_c00038{letter-spacing:1.884800pt;}
.ls81_c00038{letter-spacing:2.055040pt;}
.ls19_c00038{letter-spacing:2.091520pt;}
.ls62_c00038{letter-spacing:2.133440pt;}
.ls1a_c00038{letter-spacing:2.640000pt;}
.ls13_c00038{letter-spacing:2.729920pt;}
.ls3e_c00038{letter-spacing:3.040000pt;}
.ws0_c00038{word-spacing:0.000000pt;}
._10_c00038{margin-left:-4.053653pt;}
._1b_c00038{margin-left:-2.360747pt;}
._1a_c00038{margin-left:-1.053227pt;}
._14_c00038{width:0.910933pt;}
._11_c00038{width:2.585067pt;}
._c_c00038{width:3.708800pt;}
._13_c00038{width:4.684800pt;}
._a_c00038{width:5.621760pt;}
._9_c00038{width:6.571733pt;}
._b_c00038{width:7.977173pt;}
._d_c00038{width:9.057280pt;}
._12_c00038{width:9.948693pt;}
._e_c00038{width:10.911680pt;}
._f_c00038{width:11.861653pt;}
._16_c00038{width:13.352427pt;}
._17_c00038{width:14.274133pt;}
._15_c00038{width:17.086933pt;}
._3_c00038{width:18.309333pt;}
._2_c00038{width:20.574080pt;}
._0_c00038{width:21.771307pt;}
._1_c00038{width:22.929493pt;}
._18_c00038{width:24.459093pt;}
._4_c00038{width:25.765867pt;}
._19_c00038{width:27.015147pt;}
._6_c00038{width:37.608533pt;}
._5_c00038{width:38.662613pt;}
._7_c00038{width:39.833813pt;}
._8_c00038{width:41.994027pt;}
.fs0_c00038{font-size:52.800000pt;}
.fs4_c00038{font-size:59.733333pt;}
.fs3_c00038{font-size:60.266667pt;}
.fs2_c00038{font-size:60.800000pt;}
.fs6_c00038{font-size:61.333333pt;}
.fs5_c00038{font-size:64.000000pt;}
.fs1_c00038{font-size:65.066667pt;}
.y0_c00038{bottom:0.000000pt;}
.y28_c00038{bottom:63.693333pt;}
.y27_c00038{bottom:146.573067pt;}
.y26_c00038{bottom:174.080000pt;}
.y25_c00038{bottom:201.604533pt;}
.y24_c00038{bottom:228.493333pt;}
.y23_c00038{bottom:256.013333pt;}
.y22_c00038{bottom:256.028800pt;}
.y21_c00038{bottom:283.861067pt;}
.y20_c00038{bottom:311.693333pt;}
.y1f_c00038{bottom:366.400000pt;}
.y1e_c00038{bottom:421.133333pt;}
.y1d_c00038{bottom:475.213333pt;}
.y1c_c00038{bottom:503.680000pt;}
.y1b_c00038{bottom:503.681600pt;}
.y1a_c00038{bottom:531.221067pt;}
.y19_c00038{bottom:559.050133pt;}
.y18_c00038{bottom:586.573333pt;}
.y17_c00038{bottom:586.578400pt;}
.y15_c00038{bottom:613.753867pt;}
.y16_c00038{bottom:613.760000pt;}
.y14_c00038{bottom:641.301067pt;}
.y13_c00038{bottom:669.133333pt;}
.y12_c00038{bottom:723.861067pt;}
.y11_c00038{bottom:751.693333pt;}
.yf_c00038{bottom:778.876800pt;}
.y10_c00038{bottom:778.880000pt;}
.yd_c00038{bottom:806.399200pt;}
.ye_c00038{bottom:806.400000pt;}
.yb_c00038{bottom:833.613067pt;}
.yc_c00038{bottom:833.613333pt;}
.ya_c00038{bottom:861.119200pt;}
.y8_c00038{bottom:888.330133pt;}
.y9_c00038{bottom:888.333333pt;}
.y6_c00038{bottom:915.853067pt;}
.y7_c00038{bottom:915.853333pt;}
.y5_c00038{bottom:943.360000pt;}
.y4_c00038{bottom:943.364533pt;}
.y3_c00038{bottom:970.887733pt;}
.y2_c00038{bottom:998.720000pt;}
.y1_c00038{bottom:1066.573333pt;}
.h2_c00038{height:51.820312pt;}
.h6_c00038{height:59.148438pt;}
.h4_c00038{height:59.642187pt;}
.h8_c00038{height:62.300000pt;}
.h9_c00038{height:62.781250pt;}
.h3_c00038{height:63.859375pt;}
.hb_c00038{height:63.860442pt;}
.h5_c00038{height:63.862575pt;}
.h7_c00038{height:63.872175pt;}
.ha_c00038{height:63.906883pt;}
.h1_c00038{height:1122.666667pt;}
.h0_c00038{height:1122.880000pt;}
.w1_c00038{width:793.333333pt;}
.w0_c00038{width:793.600000pt;}
.x0_c00038{left:0.000000pt;}
.x1f_c00038{left:107.560800pt;}
.x18_c00038{left:108.637600pt;}
.x6_c00038{left:110.102667pt;}
.x1_c00038{left:111.546667pt;}
.x1e_c00038{left:155.173333pt;}
.x15_c00038{left:157.040000pt;}
.x3_c00038{left:158.946667pt;}
.x7_c00038{left:176.506667pt;}
.x8_c00038{left:193.760000pt;}
.x21_c00038{left:204.666667pt;}
.x22_c00038{left:219.986667pt;}
.x2_c00038{left:245.306667pt;}
.x4_c00038{left:260.986667pt;}
.x5_c00038{left:277.080000pt;}
.x9_c00038{left:327.213333pt;}
.x1b_c00038{left:332.973333pt;}
.xa_c00038{left:345.173333pt;}
.x19_c00038{left:348.440000pt;}
.x1c_c00038{left:349.333333pt;}
.x1a_c00038{left:380.626667pt;}
.x16_c00038{left:390.266667pt;}
.x17_c00038{left:421.266667pt;}
.x23_c00038{left:507.293333pt;}
.xf_c00038{left:524.320000pt;}
.xb_c00038{left:544.813333pt;}
.x14_c00038{left:564.346667pt;}
.xc_c00038{left:566.586667pt;}
.x11_c00038{left:571.680000pt;}
.x12_c00038{left:576.746667pt;}
.x10_c00038{left:581.280000pt;}
.x13_c00038{left:595.453333pt;}
.xd_c00038{left:632.173333pt;}
.x20_c00038{left:652.026667pt;}
.xe_c00038{left:653.946667pt;}
.x1d_c00038{left:656.146667pt;}
}





/* 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_c00039 {
    display:none;
  }
  .loading-indicator_c00039.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00039 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_c00039 { 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_c00039" -> "#page-container .classname_c00039")
 */
.pf_c00039 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00039 { /* 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_c00039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00039 { /* 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_c00039 { /* 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_c00039 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00039 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00039 {overflow:visible;}
  }
}
.c_c00039 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00039 { /* 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_c00039:after { /* webkit #35443 */
  content: '';
}
.t_c00039:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00039 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 */
}
.__c00039 { /* 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_c00039 { /* info for Javascript */
  display:none;
}
.l_c00039 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00039 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00039 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00039: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_c00039 {
    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_c00039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00039.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_c00039 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00039;src:url('chunks/assets/font_8391a09fb4eca47f117c0370.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.284668;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_c00039;src:url('chunks/assets/font_b61501cfea532890d06a1313.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.284180;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_c00039;src:url('chunks/assets/font_0946f90642319d5f28b4da9d.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;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;}
.m5_c00039{transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);}
.m4_c00039{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.m6_c00039{transform:matrix(0.235698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235698,0.000000,0.000000,0.250000,0,0);}
.m3_c00039{transform:matrix(0.238524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238524,0.000000,0.000000,0.250000,0,0);}
.m0_c00039{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_c00039{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m2_c00039{transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls95_c00039{letter-spacing:-2.457000px;}
.ls97_c00039{letter-spacing:-2.436000px;}
.ls9e_c00039{letter-spacing:-2.016000px;}
.ls9b_c00039{letter-spacing:-1.083300px;}
.ls90_c00039{letter-spacing:-0.945300px;}
.ls9d_c00039{letter-spacing:-0.800400px;}
.ls87_c00039{letter-spacing:-0.558900px;}
.ls8b_c00039{letter-spacing:-0.103500px;}
.ls88_c00039{letter-spacing:0.000000px;}
.ls81_c00039{letter-spacing:0.140400px;}
.ls1d_c00039{letter-spacing:0.151800px;}
.ls7a_c00039{letter-spacing:0.168480px;}
.ls91_c00039{letter-spacing:0.207000px;}
.ls38_c00039{letter-spacing:0.331200px;}
.ls8_c00039{letter-spacing:0.351900px;}
.ls20_c00039{letter-spacing:0.358800px;}
.ls2b_c00039{letter-spacing:0.414180px;}
.ls26_c00039{letter-spacing:0.427800px;}
.ls92_c00039{letter-spacing:0.435240px;}
.ls99_c00039{letter-spacing:0.463320px;}
.ls27_c00039{letter-spacing:0.496800px;}
.ls94_c00039{letter-spacing:0.519480px;}
.ls7b_c00039{letter-spacing:0.603720px;}
.ls68_c00039{letter-spacing:0.621000px;}
.ls64_c00039{letter-spacing:0.624780px;}
.ls22_c00039{letter-spacing:0.641700px;}
.ls25_c00039{letter-spacing:0.659880px;}
.ls32_c00039{letter-spacing:0.683100px;}
.ls8c_c00039{letter-spacing:0.696900px;}
.ls98_c00039{letter-spacing:0.730080px;}
.ls56_c00039{letter-spacing:0.752100px;}
.ls31_c00039{letter-spacing:0.758160px;}
.ls48_c00039{letter-spacing:0.759000px;}
.ls71_c00039{letter-spacing:0.772200px;}
.ls4a_c00039{letter-spacing:0.779220px;}
.ls74_c00039{letter-spacing:0.786600px;}
.ls60_c00039{letter-spacing:0.800400px;}
.ls1e_c00039{letter-spacing:0.807300px;}
.ls2a_c00039{letter-spacing:0.869400px;}
.ls5c_c00039{letter-spacing:0.917700px;}
.ls47_c00039{letter-spacing:0.959100px;}
.ls9a_c00039{letter-spacing:0.961740px;}
.ls77_c00039{letter-spacing:0.966000px;}
.ls3b_c00039{letter-spacing:0.975780px;}
.lsc_c00039{letter-spacing:0.979800px;}
.ls83_c00039{letter-spacing:0.986700px;}
.ls69_c00039{letter-spacing:0.993600px;}
.ls6a_c00039{letter-spacing:1.014300px;}
.ls6b_c00039{letter-spacing:1.028100px;}
.ls93_c00039{letter-spacing:1.038960px;}
.ls5d_c00039{letter-spacing:1.041900px;}
.ls3a_c00039{letter-spacing:1.048800px;}
.ls30_c00039{letter-spacing:1.055700px;}
.ls5a_c00039{letter-spacing:1.062600px;}
.ls82_c00039{letter-spacing:1.090200px;}
.ls5f_c00039{letter-spacing:1.104000px;}
.ls2c_c00039{letter-spacing:1.109160px;}
.ls6_c00039{letter-spacing:1.110900px;}
.ls7c_c00039{letter-spacing:1.116180px;}
.ls80_c00039{letter-spacing:1.124700px;}
.ls1f_c00039{letter-spacing:1.131600px;}
.ls72_c00039{letter-spacing:1.137240px;}
.ls3_c00039{letter-spacing:1.138500px;}
.ls42_c00039{letter-spacing:1.145400px;}
.ls51_c00039{letter-spacing:1.152300px;}
.ls2e_c00039{letter-spacing:1.166100px;}
.ls63_c00039{letter-spacing:1.173000px;}
.ls70_c00039{letter-spacing:1.179360px;}
.ls40_c00039{letter-spacing:1.179900px;}
.ls3f_c00039{letter-spacing:1.186800px;}
.ls85_c00039{letter-spacing:1.193400px;}
.ls3d_c00039{letter-spacing:1.193700px;}
.ls6e_c00039{letter-spacing:1.214400px;}
.ls3e_c00039{letter-spacing:1.221300px;}
.ls8f_c00039{letter-spacing:1.228200px;}
.ls2f_c00039{letter-spacing:1.235100px;}
.ls46_c00039{letter-spacing:1.242000px;}
.ls43_c00039{letter-spacing:1.248900px;}
.lsb_c00039{letter-spacing:1.262700px;}
.ls7f_c00039{letter-spacing:1.276500px;}
.ls2d_c00039{letter-spacing:1.283400px;}
.ls7e_c00039{letter-spacing:1.304100px;}
.ls73_c00039{letter-spacing:1.311000px;}
.ls9c_c00039{letter-spacing:1.317900px;}
.ls54_c00039{letter-spacing:1.324800px;}
.ls6d_c00039{letter-spacing:1.331700px;}
.lsf_c00039{letter-spacing:1.338600px;}
.ls75_c00039{letter-spacing:1.345500px;}
.ls52_c00039{letter-spacing:1.352400px;}
.ls5b_c00039{letter-spacing:1.373100px;}
.ls55_c00039{letter-spacing:1.380000px;}
.ls1a_c00039{letter-spacing:1.386900px;}
.ls49_c00039{letter-spacing:1.393800px;}
.ls11_c00039{letter-spacing:1.400700px;}
.ls67_c00039{letter-spacing:1.407600px;}
.ls62_c00039{letter-spacing:1.414500px;}
.ls39_c00039{letter-spacing:1.421400px;}
.lsa_c00039{letter-spacing:1.428300px;}
.ls7_c00039{letter-spacing:1.435200px;}
.ls2_c00039{letter-spacing:1.462800px;}
.lse_c00039{letter-spacing:1.476600px;}
.ls79_c00039{letter-spacing:1.483500px;}
.ls50_c00039{letter-spacing:1.524900px;}
.ls13_c00039{letter-spacing:1.538700px;}
.ls24_c00039{letter-spacing:1.552500px;}
.ls14_c00039{letter-spacing:1.559400px;}
.ls41_c00039{letter-spacing:1.587000px;}
.ls44_c00039{letter-spacing:1.593900px;}
.ls4c_c00039{letter-spacing:1.600800px;}
.ls53_c00039{letter-spacing:1.607700px;}
.ls86_c00039{letter-spacing:1.609560px;}
.ls34_c00039{letter-spacing:1.628400px;}
.ls35_c00039{letter-spacing:1.635300px;}
.ls12_c00039{letter-spacing:1.649100px;}
.ls29_c00039{letter-spacing:1.662900px;}
.ls4d_c00039{letter-spacing:1.669800px;}
.ls6c_c00039{letter-spacing:1.676700px;}
.lsd_c00039{letter-spacing:1.683600px;}
.ls15_c00039{letter-spacing:1.704300px;}
.ls4f_c00039{letter-spacing:1.718100px;}
.ls4_c00039{letter-spacing:1.725000px;}
.ls5e_c00039{letter-spacing:1.740960px;}
.ls78_c00039{letter-spacing:1.759500px;}
.ls9_c00039{letter-spacing:1.773300px;}
.ls17_c00039{letter-spacing:1.794000px;}
.ls19_c00039{letter-spacing:1.828500px;}
.ls4e_c00039{letter-spacing:1.835400px;}
.ls45_c00039{letter-spacing:1.842300px;}
.ls0_c00039{letter-spacing:1.848240px;}
.ls10_c00039{letter-spacing:1.856100px;}
.ls7d_c00039{letter-spacing:1.863000px;}
.ls16_c00039{letter-spacing:1.869900px;}
.ls23_c00039{letter-spacing:1.876800px;}
.ls37_c00039{letter-spacing:1.890600px;}
.ls4b_c00039{letter-spacing:1.904400px;}
.ls36_c00039{letter-spacing:1.911300px;}
.ls3c_c00039{letter-spacing:1.925100px;}
.ls8a_c00039{letter-spacing:1.938900px;}
.ls61_c00039{letter-spacing:1.959600px;}
.ls66_c00039{letter-spacing:1.980300px;}
.ls58_c00039{letter-spacing:2.021700px;}
.ls65_c00039{letter-spacing:2.056200px;}
.ls8d_c00039{letter-spacing:2.076900px;}
.ls1c_c00039{letter-spacing:2.083800px;}
.ls5_c00039{letter-spacing:2.139000px;}
.ls57_c00039{letter-spacing:2.194200px;}
.ls96_c00039{letter-spacing:2.201100px;}
.ls33_c00039{letter-spacing:2.242500px;}
.ls6f_c00039{letter-spacing:2.346000px;}
.ls21_c00039{letter-spacing:2.408100px;}
.ls89_c00039{letter-spacing:2.428800px;}
.ls76_c00039{letter-spacing:2.435700px;}
.ls1b_c00039{letter-spacing:2.539200px;}
.ls59_c00039{letter-spacing:2.746200px;}
.ls18_c00039{letter-spacing:2.794500px;}
.ls84_c00039{letter-spacing:2.884200px;}
.ls28_c00039{letter-spacing:3.008400px;}
.ls1_c00039{letter-spacing:3.042900px;}
.ls8e_c00039{letter-spacing:3.450000px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{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__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00039{word-spacing:0.000000px;}
._17_c00039{margin-left:-7.147500px;}
._19_c00039{margin-left:-5.526900px;}
._18_c00039{margin-left:-3.603000px;}
._0_c00039{margin-left:-1.970640px;}
._f_c00039{width:1.511100px;}
._a_c00039{width:2.546100px;}
._d_c00039{width:3.891600px;}
._e_c00039{width:5.526900px;}
._b_c00039{width:6.527400px;}
._16_c00039{width:7.583100px;}
._c_c00039{width:8.742300px;}
._7_c00039{width:10.936500px;}
._9_c00039{width:12.157800px;}
._11_c00039{width:13.751700px;}
._8_c00039{width:14.938500px;}
._10_c00039{width:17.015400px;}
._14_c00039{width:20.189400px;}
._13_c00039{width:21.493500px;}
._12_c00039{width:23.460000px;}
._15_c00039{width:24.639900px;}
._1_c00039{width:25.785300px;}
._1e_c00039{width:27.296400px;}
._6_c00039{width:28.352100px;}
._3_c00039{width:30.636000px;}
._2_c00039{width:32.637000px;}
._4_c00039{width:34.072200px;}
._5_c00039{width:35.238300px;}
._1c_c00039{width:41.151600px;}
._1a_c00039{width:44.091000px;}
._1d_c00039{width:46.644000px;}
._1b_c00039{width:49.714500px;}
.fc0_c00039{color:transparent;}
.fs6_c00039{font-size:57.600000px;}
.fs0_c00039{font-size:61.200000px;}
.fs4_c00039{font-size:64.200000px;}
.fs1_c00039{font-size:69.000000px;}
.fs3_c00039{font-size:69.600000px;}
.fs2_c00039{font-size:70.200000px;}
.fs5_c00039{font-size:73.800000px;}
.y0_c00039{bottom:0.000000px;}
.y21_c00039{bottom:70.215015px;}
.y20_c00039{bottom:134.280015px;}
.y1f_c00039{bottom:165.236265px;}
.y1e_c00039{bottom:195.855015px;}
.y1d_c00039{bottom:257.415015px;}
.y1c_c00039{bottom:318.613515px;}
.y1b_c00039{bottom:349.207515px;}
.y1a_c00039{bottom:379.809015px;}
.y19_c00039{bottom:411.480015px;}
.y18_c00039{bottom:473.055015px;}
.y16_c00039{bottom:504.366015px;}
.y17_c00039{bottom:504.375015px;}
.y15_c00039{bottom:534.967515px;}
.y14_c00039{bottom:565.914015px;}
.y13_c00039{bottom:596.895015px;}
.y12_c00039{bottom:658.072065px;}
.y11_c00039{bottom:719.655015px;}
.y10_c00039{bottom:719.659515px;}
.yf_c00039{bottom:750.606015px;}
.ye_c00039{bottom:781.207515px;}
.yd_c00039{bottom:843.471765px;}
.yb_c00039{bottom:874.812015px;}
.yc_c00039{bottom:874.815015px;}
.ya_c00039{bottom:905.413515px;}
.y8_c00039{bottom:936.354015px;}
.y9_c00039{bottom:936.360015px;}
.y7_c00039{bottom:967.333515px;}
.y6_c00039{bottom:997.935765px;}
.y5_c00039{bottom:1028.511015px;}
.y4_c00039{bottom:1059.129765px;}
.y3_c00039{bottom:1089.714015px;}
.y2_c00039{bottom:1121.040015px;}
.y1_c00039{bottom:1197.000015px;}
.he_c00039{height:56.531250px;}
.h2_c00039{height:60.064453px;}
.h3_c00039{height:67.719727px;}
.h5_c00039{height:68.860184px;}
.h9_c00039{height:68.863184px;}
.h6_c00039{height:68.869184px;}
.hc_c00039{height:68.878184px;}
.h7_c00039{height:68.887184px;}
.hb_c00039{height:68.893184px;}
.h8_c00039{height:68.896184px;}
.h4_c00039{height:68.899184px;}
.hd_c00039{height:72.430664px;}
.ha_c00039{height:72.590625px;}
.h1_c00039{height:1263.000000px;}
.h0_c00039{height:1263.240015px;}
.w1_c00039{width:892.500000px;}
.w0_c00039{width:892.800015px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:125.115015px;}
.x3_c00039{left:126.191265px;}
.x9_c00039{left:163.980015px;}
.x2_c00039{left:178.815015px;}
.x8_c00039{left:183.857265px;}
.xa_c00039{left:185.955015px;}
.x12_c00039{left:210.060015px;}
.x10_c00039{left:213.630015px;}
.x11_c00039{left:234.225015px;}
.x6_c00039{left:286.380015px;}
.x7_c00039{left:313.035015px;}
.xb_c00039{left:330.150015px;}
.xc_c00039{left:358.410015px;}
.x13_c00039{left:429.675015px;}
.xd_c00039{left:613.590015px;}
.xe_c00039{left:635.625015px;}
.x4_c00039{left:667.335015px;}
.x5_c00039{left:697.140015px;}
.xf_c00039{left:736.350015px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls95_c00039{letter-spacing:-2.184000pt;}
.ls97_c00039{letter-spacing:-2.165333pt;}
.ls9e_c00039{letter-spacing:-1.792000pt;}
.ls9b_c00039{letter-spacing:-0.962933pt;}
.ls90_c00039{letter-spacing:-0.840267pt;}
.ls9d_c00039{letter-spacing:-0.711467pt;}
.ls87_c00039{letter-spacing:-0.496800pt;}
.ls8b_c00039{letter-spacing:-0.092000pt;}
.ls88_c00039{letter-spacing:0.000000pt;}
.ls81_c00039{letter-spacing:0.124800pt;}
.ls1d_c00039{letter-spacing:0.134933pt;}
.ls7a_c00039{letter-spacing:0.149760pt;}
.ls91_c00039{letter-spacing:0.184000pt;}
.ls38_c00039{letter-spacing:0.294400pt;}
.ls8_c00039{letter-spacing:0.312800pt;}
.ls20_c00039{letter-spacing:0.318933pt;}
.ls2b_c00039{letter-spacing:0.368160pt;}
.ls26_c00039{letter-spacing:0.380267pt;}
.ls92_c00039{letter-spacing:0.386880pt;}
.ls99_c00039{letter-spacing:0.411840pt;}
.ls27_c00039{letter-spacing:0.441600pt;}
.ls94_c00039{letter-spacing:0.461760pt;}
.ls7b_c00039{letter-spacing:0.536640pt;}
.ls68_c00039{letter-spacing:0.552000pt;}
.ls64_c00039{letter-spacing:0.555360pt;}
.ls22_c00039{letter-spacing:0.570400pt;}
.ls25_c00039{letter-spacing:0.586560pt;}
.ls32_c00039{letter-spacing:0.607200pt;}
.ls8c_c00039{letter-spacing:0.619467pt;}
.ls98_c00039{letter-spacing:0.648960pt;}
.ls56_c00039{letter-spacing:0.668533pt;}
.ls31_c00039{letter-spacing:0.673920pt;}
.ls48_c00039{letter-spacing:0.674667pt;}
.ls71_c00039{letter-spacing:0.686400pt;}
.ls4a_c00039{letter-spacing:0.692640pt;}
.ls74_c00039{letter-spacing:0.699200pt;}
.ls60_c00039{letter-spacing:0.711467pt;}
.ls1e_c00039{letter-spacing:0.717600pt;}
.ls2a_c00039{letter-spacing:0.772800pt;}
.ls5c_c00039{letter-spacing:0.815733pt;}
.ls47_c00039{letter-spacing:0.852533pt;}
.ls9a_c00039{letter-spacing:0.854880pt;}
.ls77_c00039{letter-spacing:0.858667pt;}
.ls3b_c00039{letter-spacing:0.867360pt;}
.lsc_c00039{letter-spacing:0.870933pt;}
.ls83_c00039{letter-spacing:0.877067pt;}
.ls69_c00039{letter-spacing:0.883200pt;}
.ls6a_c00039{letter-spacing:0.901600pt;}
.ls6b_c00039{letter-spacing:0.913867pt;}
.ls93_c00039{letter-spacing:0.923520pt;}
.ls5d_c00039{letter-spacing:0.926133pt;}
.ls3a_c00039{letter-spacing:0.932267pt;}
.ls30_c00039{letter-spacing:0.938400pt;}
.ls5a_c00039{letter-spacing:0.944533pt;}
.ls82_c00039{letter-spacing:0.969067pt;}
.ls5f_c00039{letter-spacing:0.981333pt;}
.ls2c_c00039{letter-spacing:0.985920pt;}
.ls6_c00039{letter-spacing:0.987467pt;}
.ls7c_c00039{letter-spacing:0.992160pt;}
.ls80_c00039{letter-spacing:0.999733pt;}
.ls1f_c00039{letter-spacing:1.005867pt;}
.ls72_c00039{letter-spacing:1.010880pt;}
.ls3_c00039{letter-spacing:1.012000pt;}
.ls42_c00039{letter-spacing:1.018133pt;}
.ls51_c00039{letter-spacing:1.024267pt;}
.ls2e_c00039{letter-spacing:1.036533pt;}
.ls63_c00039{letter-spacing:1.042667pt;}
.ls70_c00039{letter-spacing:1.048320pt;}
.ls40_c00039{letter-spacing:1.048800pt;}
.ls3f_c00039{letter-spacing:1.054933pt;}
.ls85_c00039{letter-spacing:1.060800pt;}
.ls3d_c00039{letter-spacing:1.061067pt;}
.ls6e_c00039{letter-spacing:1.079467pt;}
.ls3e_c00039{letter-spacing:1.085600pt;}
.ls8f_c00039{letter-spacing:1.091733pt;}
.ls2f_c00039{letter-spacing:1.097867pt;}
.ls46_c00039{letter-spacing:1.104000pt;}
.ls43_c00039{letter-spacing:1.110133pt;}
.lsb_c00039{letter-spacing:1.122400pt;}
.ls7f_c00039{letter-spacing:1.134667pt;}
.ls2d_c00039{letter-spacing:1.140800pt;}
.ls7e_c00039{letter-spacing:1.159200pt;}
.ls73_c00039{letter-spacing:1.165333pt;}
.ls9c_c00039{letter-spacing:1.171467pt;}
.ls54_c00039{letter-spacing:1.177600pt;}
.ls6d_c00039{letter-spacing:1.183733pt;}
.lsf_c00039{letter-spacing:1.189867pt;}
.ls75_c00039{letter-spacing:1.196000pt;}
.ls52_c00039{letter-spacing:1.202133pt;}
.ls5b_c00039{letter-spacing:1.220533pt;}
.ls55_c00039{letter-spacing:1.226667pt;}
.ls1a_c00039{letter-spacing:1.232800pt;}
.ls49_c00039{letter-spacing:1.238933pt;}
.ls11_c00039{letter-spacing:1.245067pt;}
.ls67_c00039{letter-spacing:1.251200pt;}
.ls62_c00039{letter-spacing:1.257333pt;}
.ls39_c00039{letter-spacing:1.263467pt;}
.lsa_c00039{letter-spacing:1.269600pt;}
.ls7_c00039{letter-spacing:1.275733pt;}
.ls2_c00039{letter-spacing:1.300267pt;}
.lse_c00039{letter-spacing:1.312533pt;}
.ls79_c00039{letter-spacing:1.318667pt;}
.ls50_c00039{letter-spacing:1.355467pt;}
.ls13_c00039{letter-spacing:1.367733pt;}
.ls24_c00039{letter-spacing:1.380000pt;}
.ls14_c00039{letter-spacing:1.386133pt;}
.ls41_c00039{letter-spacing:1.410667pt;}
.ls44_c00039{letter-spacing:1.416800pt;}
.ls4c_c00039{letter-spacing:1.422933pt;}
.ls53_c00039{letter-spacing:1.429067pt;}
.ls86_c00039{letter-spacing:1.430720pt;}
.ls34_c00039{letter-spacing:1.447467pt;}
.ls35_c00039{letter-spacing:1.453600pt;}
.ls12_c00039{letter-spacing:1.465867pt;}
.ls29_c00039{letter-spacing:1.478133pt;}
.ls4d_c00039{letter-spacing:1.484267pt;}
.ls6c_c00039{letter-spacing:1.490400pt;}
.lsd_c00039{letter-spacing:1.496533pt;}
.ls15_c00039{letter-spacing:1.514933pt;}
.ls4f_c00039{letter-spacing:1.527200pt;}
.ls4_c00039{letter-spacing:1.533333pt;}
.ls5e_c00039{letter-spacing:1.547520pt;}
.ls78_c00039{letter-spacing:1.564000pt;}
.ls9_c00039{letter-spacing:1.576267pt;}
.ls17_c00039{letter-spacing:1.594667pt;}
.ls19_c00039{letter-spacing:1.625333pt;}
.ls4e_c00039{letter-spacing:1.631467pt;}
.ls45_c00039{letter-spacing:1.637600pt;}
.ls0_c00039{letter-spacing:1.642880pt;}
.ls10_c00039{letter-spacing:1.649867pt;}
.ls7d_c00039{letter-spacing:1.656000pt;}
.ls16_c00039{letter-spacing:1.662133pt;}
.ls23_c00039{letter-spacing:1.668267pt;}
.ls37_c00039{letter-spacing:1.680533pt;}
.ls4b_c00039{letter-spacing:1.692800pt;}
.ls36_c00039{letter-spacing:1.698933pt;}
.ls3c_c00039{letter-spacing:1.711200pt;}
.ls8a_c00039{letter-spacing:1.723467pt;}
.ls61_c00039{letter-spacing:1.741867pt;}
.ls66_c00039{letter-spacing:1.760267pt;}
.ls58_c00039{letter-spacing:1.797067pt;}
.ls65_c00039{letter-spacing:1.827733pt;}
.ls8d_c00039{letter-spacing:1.846133pt;}
.ls1c_c00039{letter-spacing:1.852267pt;}
.ls5_c00039{letter-spacing:1.901333pt;}
.ls57_c00039{letter-spacing:1.950400pt;}
.ls96_c00039{letter-spacing:1.956533pt;}
.ls33_c00039{letter-spacing:1.993333pt;}
.ls6f_c00039{letter-spacing:2.085333pt;}
.ls21_c00039{letter-spacing:2.140533pt;}
.ls89_c00039{letter-spacing:2.158933pt;}
.ls76_c00039{letter-spacing:2.165067pt;}
.ls1b_c00039{letter-spacing:2.257067pt;}
.ls59_c00039{letter-spacing:2.441067pt;}
.ls18_c00039{letter-spacing:2.484000pt;}
.ls84_c00039{letter-spacing:2.563733pt;}
.ls28_c00039{letter-spacing:2.674133pt;}
.ls1_c00039{letter-spacing:2.704800pt;}
.ls8e_c00039{letter-spacing:3.066667pt;}
.ws0_c00039{word-spacing:0.000000pt;}
._17_c00039{margin-left:-6.353333pt;}
._19_c00039{margin-left:-4.912800pt;}
._18_c00039{margin-left:-3.202667pt;}
._0_c00039{margin-left:-1.751680pt;}
._f_c00039{width:1.343200pt;}
._a_c00039{width:2.263200pt;}
._d_c00039{width:3.459200pt;}
._e_c00039{width:4.912800pt;}
._b_c00039{width:5.802133pt;}
._16_c00039{width:6.740533pt;}
._c_c00039{width:7.770933pt;}
._7_c00039{width:9.721333pt;}
._9_c00039{width:10.806933pt;}
._11_c00039{width:12.223733pt;}
._8_c00039{width:13.278667pt;}
._10_c00039{width:15.124800pt;}
._14_c00039{width:17.946133pt;}
._13_c00039{width:19.105333pt;}
._12_c00039{width:20.853333pt;}
._15_c00039{width:21.902133pt;}
._1_c00039{width:22.920267pt;}
._1e_c00039{width:24.263467pt;}
._6_c00039{width:25.201867pt;}
._3_c00039{width:27.232000pt;}
._2_c00039{width:29.010667pt;}
._4_c00039{width:30.286400pt;}
._5_c00039{width:31.322933pt;}
._1c_c00039{width:36.579200pt;}
._1a_c00039{width:39.192000pt;}
._1d_c00039{width:41.461333pt;}
._1b_c00039{width:44.190667pt;}
.fs6_c00039{font-size:51.200000pt;}
.fs0_c00039{font-size:54.400000pt;}
.fs4_c00039{font-size:57.066667pt;}
.fs1_c00039{font-size:61.333333pt;}
.fs3_c00039{font-size:61.866667pt;}
.fs2_c00039{font-size:62.400000pt;}
.fs5_c00039{font-size:65.600000pt;}
.y0_c00039{bottom:0.000000pt;}
.y21_c00039{bottom:62.413347pt;}
.y20_c00039{bottom:119.360013pt;}
.y1f_c00039{bottom:146.876680pt;}
.y1e_c00039{bottom:174.093347pt;}
.y1d_c00039{bottom:228.813347pt;}
.y1c_c00039{bottom:283.212013pt;}
.y1b_c00039{bottom:310.406680pt;}
.y1a_c00039{bottom:337.608013pt;}
.y19_c00039{bottom:365.760013pt;}
.y18_c00039{bottom:420.493347pt;}
.y16_c00039{bottom:448.325347pt;}
.y17_c00039{bottom:448.333347pt;}
.y15_c00039{bottom:475.526680pt;}
.y14_c00039{bottom:503.034680pt;}
.y13_c00039{bottom:530.573347pt;}
.y12_c00039{bottom:584.952947pt;}
.y11_c00039{bottom:639.693347pt;}
.y10_c00039{bottom:639.697347pt;}
.yf_c00039{bottom:667.205347pt;}
.ye_c00039{bottom:694.406680pt;}
.yd_c00039{bottom:749.752680pt;}
.yb_c00039{bottom:777.610680pt;}
.yc_c00039{bottom:777.613347pt;}
.ya_c00039{bottom:804.812013pt;}
.y8_c00039{bottom:832.314680pt;}
.y9_c00039{bottom:832.320013pt;}
.y7_c00039{bottom:859.852013pt;}
.y6_c00039{bottom:887.054013pt;}
.y5_c00039{bottom:914.232013pt;}
.y4_c00039{bottom:941.448680pt;}
.y3_c00039{bottom:968.634680pt;}
.y2_c00039{bottom:996.480013pt;}
.y1_c00039{bottom:1064.000013pt;}
.he_c00039{height:50.250000pt;}
.h2_c00039{height:53.390625pt;}
.h3_c00039{height:60.195312pt;}
.h5_c00039{height:61.209052pt;}
.h9_c00039{height:61.211719pt;}
.h6_c00039{height:61.217052pt;}
.hc_c00039{height:61.225052pt;}
.h7_c00039{height:61.233052pt;}
.hb_c00039{height:61.238385pt;}
.h8_c00039{height:61.241052pt;}
.h4_c00039{height:61.243719pt;}
.hd_c00039{height:64.382813pt;}
.ha_c00039{height:64.525000pt;}
.h1_c00039{height:1122.666667pt;}
.h0_c00039{height:1122.880013pt;}
.w1_c00039{width:793.333333pt;}
.w0_c00039{width:793.600013pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:111.213347pt;}
.x3_c00039{left:112.170013pt;}
.x9_c00039{left:145.760013pt;}
.x2_c00039{left:158.946680pt;}
.x8_c00039{left:163.428680pt;}
.xa_c00039{left:165.293347pt;}
.x12_c00039{left:186.720013pt;}
.x10_c00039{left:189.893347pt;}
.x11_c00039{left:208.200013pt;}
.x6_c00039{left:254.560013pt;}
.x7_c00039{left:278.253347pt;}
.xb_c00039{left:293.466680pt;}
.xc_c00039{left:318.586680pt;}
.x13_c00039{left:381.933347pt;}
.xd_c00039{left:545.413347pt;}
.xe_c00039{left:565.000013pt;}
.x4_c00039{left:593.186680pt;}
.x5_c00039{left:619.680013pt;}
.xf_c00039{left:654.533347pt;}
}





/* 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_c00040 {
    display:none;
  }
  .loading-indicator_c00040.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00040 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_c00040 { 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_c00040" -> "#page-container .classname_c00040")
 */
.pf_c00040 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00040 { /* 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_c00040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00040 { /* 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_c00040 { /* 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_c00040 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00040 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00040 {overflow:visible;}
  }
}
.c_c00040 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00040 { /* 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_c00040:after { /* webkit #35443 */
  content: '';
}
.t_c00040:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00040 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 */
}
.__c00040 { /* 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_c00040 { /* info for Javascript */
  display:none;
}
.l_c00040 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00040 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00040 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00040: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_c00040 {
    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_c00040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00040.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_c00040 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00040;src:url('chunks/assets/font_0252fe2cfe6bd67314eca0ac.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.284668;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_c00040;src:url('chunks/assets/font_b0b9b90604d312ba8896db29.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.284180;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_c00040;src:url('chunks/assets/font_46a8fa9bc2ba9fd36e489ffa.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:0.666000;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_c00040;src:url('chunks/assets/font_96579bb08fa0229493cfdd3a.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;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;}
.m1_c00040{transform:matrix(0.114287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114287,0.000000,0.000000,0.250000,0,0);}
.m5_c00040{transform:matrix(0.195949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195949,0.000000,0.000000,0.250000,0,0);}
.m9_c00040{transform:matrix(0.202401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202401,0.000000,0.000000,0.250000,0,0);}
.m2_c00040{transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);}
.m3_c00040{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.m4_c00040{transform:matrix(0.244019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244019,0.000000,0.000000,0.250000,0,0);}
.m7_c00040{transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);}
.m0_c00040{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);}
.m8_c00040{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m6_c00040{transform:matrix(0.295624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295624,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls95_c00040{letter-spacing:-2.478000px;}
.ls8e_c00040{letter-spacing:-2.436000px;}
.ls7e_c00040{letter-spacing:-1.323960px;}
.ls86_c00040{letter-spacing:-0.955800px;}
.ls7a_c00040{letter-spacing:-0.934560px;}
.ls97_c00040{letter-spacing:-0.764640px;}
.ls9b_c00040{letter-spacing:-0.756000px;}
.ls83_c00040{letter-spacing:-0.750480px;}
.ls8c_c00040{letter-spacing:-0.736320px;}
.ls9c_c00040{letter-spacing:-0.735021px;}
.ls93_c00040{letter-spacing:-0.651360px;}
.ls78_c00040{letter-spacing:-0.615960px;}
.ls80_c00040{letter-spacing:-0.566400px;}
.ls92_c00040{letter-spacing:-0.559320px;}
.ls9a_c00040{letter-spacing:-0.551057px;}
.ls91_c00040{letter-spacing:-0.495600px;}
.ls81_c00040{letter-spacing:-0.438960px;}
.ls8f_c00040{letter-spacing:-0.417720px;}
.ls84_c00040{letter-spacing:-0.283200px;}
.ls7c_c00040{letter-spacing:-0.198240px;}
.ls89_c00040{letter-spacing:-0.169920px;}
.ls90_c00040{letter-spacing:-0.141600px;}
.ls7b_c00040{letter-spacing:-0.106200px;}
.ls94_c00040{letter-spacing:-0.070800px;}
.ls79_c00040{letter-spacing:0.000000px;}
.ls59_c00040{letter-spacing:0.070800px;}
.ls2e_c00040{letter-spacing:0.092040px;}
.ls9d_c00040{letter-spacing:0.104760px;}
.ls50_c00040{letter-spacing:0.106200px;}
.lsd_c00040{letter-spacing:0.113280px;}
.ls30_c00040{letter-spacing:0.162840px;}
.ls2c_c00040{letter-spacing:0.184080px;}
.ls8a_c00040{letter-spacing:0.198240px;}
.lsb_c00040{letter-spacing:0.205320px;}
.ls61_c00040{letter-spacing:0.212400px;}
.ls88_c00040{letter-spacing:0.219480px;}
.ls70_c00040{letter-spacing:0.269040px;}
.ls7d_c00040{letter-spacing:0.297360px;}
.ls6d_c00040{letter-spacing:0.332760px;}
.ls64_c00040{letter-spacing:0.361080px;}
.ls36_c00040{letter-spacing:0.368160px;}
.ls18_c00040{letter-spacing:0.382320px;}
.ls2_c00040{letter-spacing:0.396480px;}
.ls44_c00040{letter-spacing:0.424800px;}
.ls6a_c00040{letter-spacing:0.453120px;}
.ls4d_c00040{letter-spacing:0.467280px;}
.ls72_c00040{letter-spacing:0.481440px;}
.ls43_c00040{letter-spacing:0.495600px;}
.ls41_c00040{letter-spacing:0.502680px;}
.ls60_c00040{letter-spacing:0.509760px;}
.ls62_c00040{letter-spacing:0.531000px;}
.ls11_c00040{letter-spacing:0.538080px;}
.ls85_c00040{letter-spacing:0.545160px;}
.ls32_c00040{letter-spacing:0.552240px;}
.ls63_c00040{letter-spacing:0.566400px;}
.ls2a_c00040{letter-spacing:0.573480px;}
.ls6c_c00040{letter-spacing:0.580560px;}
.ls1c_c00040{letter-spacing:0.594720px;}
.ls4_c00040{letter-spacing:0.608880px;}
.ls27_c00040{letter-spacing:0.615960px;}
.ls21_c00040{letter-spacing:0.630120px;}
.ls49_c00040{letter-spacing:0.644280px;}
.ls19_c00040{letter-spacing:0.651360px;}
.ls9_c00040{letter-spacing:0.665520px;}
.ls5a_c00040{letter-spacing:0.679680px;}
.ls28_c00040{letter-spacing:0.686760px;}
.ls3a_c00040{letter-spacing:0.693840px;}
.ls1a_c00040{letter-spacing:0.700920px;}
.ls76_c00040{letter-spacing:0.708000px;}
.ls5_c00040{letter-spacing:0.715080px;}
.ls26_c00040{letter-spacing:0.722160px;}
.ls37_c00040{letter-spacing:0.743400px;}
.ls66_c00040{letter-spacing:0.750480px;}
.ls69_c00040{letter-spacing:0.771720px;}
.ls10_c00040{letter-spacing:0.778800px;}
.ls40_c00040{letter-spacing:0.785880px;}
.ls51_c00040{letter-spacing:0.792960px;}
.ls5b_c00040{letter-spacing:0.800040px;}
.ls5d_c00040{letter-spacing:0.807120px;}
.ls4c_c00040{letter-spacing:0.821280px;}
.ls35_c00040{letter-spacing:0.828360px;}
.ls2b_c00040{letter-spacing:0.835440px;}
.ls2f_c00040{letter-spacing:0.842520px;}
.ls1_c00040{letter-spacing:0.849600px;}
.ls75_c00040{letter-spacing:0.856680px;}
.ls4e_c00040{letter-spacing:0.870840px;}
.ls45_c00040{letter-spacing:0.899160px;}
.ls82_c00040{letter-spacing:0.906240px;}
.ls24_c00040{letter-spacing:0.913320px;}
.ls68_c00040{letter-spacing:0.920400px;}
.ls4f_c00040{letter-spacing:0.927480px;}
.ls7f_c00040{letter-spacing:0.934560px;}
.ls3_c00040{letter-spacing:0.948720px;}
.ls53_c00040{letter-spacing:0.955800px;}
.ls99_c00040{letter-spacing:0.960030px;}
.ls39_c00040{letter-spacing:0.969960px;}
.ls47_c00040{letter-spacing:0.977040px;}
.lsa_c00040{letter-spacing:0.984120px;}
.ls67_c00040{letter-spacing:0.998280px;}
.ls54_c00040{letter-spacing:1.005360px;}
.ls71_c00040{letter-spacing:1.012440px;}
.ls5e_c00040{letter-spacing:1.026600px;}
.ls23_c00040{letter-spacing:1.033680px;}
.lsc_c00040{letter-spacing:1.040760px;}
.ls73_c00040{letter-spacing:1.047840px;}
.ls7_c00040{letter-spacing:1.054920px;}
.ls6f_c00040{letter-spacing:1.062000px;}
.ls16_c00040{letter-spacing:1.069080px;}
.ls87_c00040{letter-spacing:1.076160px;}
.ls46_c00040{letter-spacing:1.083240px;}
.ls29_c00040{letter-spacing:1.090320px;}
.lse_c00040{letter-spacing:1.097400px;}
.ls55_c00040{letter-spacing:1.111560px;}
.ls6e_c00040{letter-spacing:1.118640px;}
.ls1f_c00040{letter-spacing:1.125720px;}
.ls6_c00040{letter-spacing:1.146960px;}
.ls13_c00040{letter-spacing:1.154040px;}
.ls8b_c00040{letter-spacing:1.161120px;}
.ls1e_c00040{letter-spacing:1.168200px;}
.ls31_c00040{letter-spacing:1.189440px;}
.ls65_c00040{letter-spacing:1.196520px;}
.ls8d_c00040{letter-spacing:1.210680px;}
.ls6b_c00040{letter-spacing:1.224840px;}
.ls8_c00040{letter-spacing:1.239000px;}
.ls34_c00040{letter-spacing:1.267320px;}
.ls96_c00040{letter-spacing:1.288560px;}
.ls3c_c00040{letter-spacing:1.309800px;}
.ls1b_c00040{letter-spacing:1.316880px;}
.ls20_c00040{letter-spacing:1.331040px;}
.ls77_c00040{letter-spacing:1.353420px;}
.ls12_c00040{letter-spacing:1.359360px;}
.ls4a_c00040{letter-spacing:1.366440px;}
.ls5c_c00040{letter-spacing:1.380600px;}
.ls17_c00040{letter-spacing:1.394760px;}
.ls1d_c00040{letter-spacing:1.401840px;}
.ls56_c00040{letter-spacing:1.408920px;}
.ls25_c00040{letter-spacing:1.444320px;}
.ls15_c00040{letter-spacing:1.465560px;}
.ls48_c00040{letter-spacing:1.472640px;}
.ls3d_c00040{letter-spacing:1.486800px;}
.lsf_c00040{letter-spacing:1.500960px;}
.ls42_c00040{letter-spacing:1.515120px;}
.ls33_c00040{letter-spacing:1.522200px;}
.ls74_c00040{letter-spacing:1.529280px;}
.ls4b_c00040{letter-spacing:1.536360px;}
.ls3f_c00040{letter-spacing:1.550520px;}
.ls14_c00040{letter-spacing:1.564680px;}
.ls52_c00040{letter-spacing:1.578840px;}
.ls2d_c00040{letter-spacing:1.628400px;}
.ls0_c00040{letter-spacing:1.668600px;}
.ls58_c00040{letter-spacing:1.762920px;}
.ls5f_c00040{letter-spacing:2.124000px;}
.ls3b_c00040{letter-spacing:2.265600px;}
.ls3e_c00040{letter-spacing:2.315160px;}
.ls98_c00040{letter-spacing:2.449680px;}
.ls22_c00040{letter-spacing:2.633760px;}
.ls38_c00040{letter-spacing:2.959440px;}
.ls57_c00040{letter-spacing:3.532920px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{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__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00040{word-spacing:0.000000px;}
._12_c00040{margin-left:-8.071200px;}
._f_c00040{margin-left:-6.654960px;}
._11_c00040{margin-left:-4.630560px;}
._0_c00040{margin-left:-3.275400px;}
._7_c00040{margin-left:-1.522200px;}
._5_c00040{width:2.017800px;}
._4_c00040{width:3.341760px;}
._1_c00040{width:5.310000px;}
._2_c00040{width:6.485280px;}
._3_c00040{width:7.936680px;}
._10_c00040{width:9.251760px;}
._6_c00040{width:10.251840px;}
._b_c00040{width:12.007680px;}
._13_c00040{width:13.776840px;}
._d_c00040{width:15.082200px;}
._9_c00040{width:16.091040px;}
._e_c00040{width:17.700000px;}
._a_c00040{width:20.319600px;}
._8_c00040{width:22.584240px;}
._c_c00040{width:23.832240px;}
.fc0_c00040{color:transparent;}
.fs8_c00040{font-size:15.840000px;}
.fs6_c00040{font-size:19.200600px;}
.fs9_c00040{font-size:21.000600px;}
.fs7_c00040{font-size:21.600000px;}
.fs5_c00040{font-size:53.280000px;}
.fsa_c00040{font-size:58.200000px;}
.fs0_c00040{font-size:61.800000px;}
.fs2_c00040{font-size:64.800000px;}
.fs4_c00040{font-size:69.600000px;}
.fs1_c00040{font-size:70.800000px;}
.fs3_c00040{font-size:72.000000px;}
.y0_c00040{bottom:0.000000px;}
.y22_c00040{bottom:63.735000px;}
.y21_c00040{bottom:123.480000px;}
.y1f_c00040{bottom:127.076700px;}
.y20_c00040{bottom:127.080000px;}
.y1e_c00040{bottom:157.676700px;}
.y1d_c00040{bottom:188.280000px;}
.y1c_c00040{bottom:188.290800px;}
.y1b_c00040{bottom:219.619800px;}
.y1a_c00040{bottom:311.412000px;}
.y19_c00040{bottom:343.095000px;}
.y18_c00040{bottom:343.103700px;}
.y17_c00040{bottom:374.417700px;}
.y16_c00040{bottom:405.376500px;}
.y15_c00040{bottom:466.565400px;}
.y14_c00040{bottom:498.248400px;}
.y13_c00040{bottom:528.480000px;}
.y12_c00040{bottom:528.489900px;}
.y11_c00040{bottom:559.464900px;}
.y10_c00040{bottom:590.404500px;}
.yf_c00040{bottom:621.379500px;}
.ye_c00040{bottom:683.294100px;}
.yd_c00040{bottom:713.897400px;}
.yc_c00040{bottom:744.854700px;}
.yb_c00040{bottom:807.494100px;}
.ya_c00040{bottom:869.762700px;}
.y8_c00040{bottom:900.714000px;}
.y9_c00040{bottom:900.720000px;}
.y7_c00040{bottom:931.340400px;}
.y6_c00040{bottom:962.287500px;}
.y5_c00040{bottom:1024.202100px;}
.y4_c00040{bottom:1054.823100px;}
.y3_c00040{bottom:1085.408700px;}
.y2_c00040{bottom:1116.720000px;}
.y1_c00040{bottom:1193.400000px;}
.hb_c00040{height:10.549440px;}
.h9_c00040{height:18.844339px;}
.hc_c00040{height:21.902970px;}
.ha_c00040{height:22.528125px;}
.h8_c00040{height:35.484480px;}
.h4_c00040{height:43.156800px;}
.hd_c00040{height:57.120117px;}
.h2_c00040{height:60.653320px;}
.h3_c00040{height:69.486328px;}
.h7_c00040{height:69.499528px;}
.h5_c00040{height:70.632506px;}
.h6_c00040{height:72.590625px;}
.h1_c00040{height:1263.000000px;}
.h0_c00040{height:1263.240000px;}
.w1_c00040{width:892.500000px;}
.w0_c00040{width:892.800000px;}
.x0_c00040{left:0.000000px;}
.xa_c00040{left:118.457100px;}
.x8_c00040{left:120.085500px;}
.x4_c00040{left:121.275900px;}
.x2_c00040{left:122.939100px;}
.x1_c00040{left:124.035000px;}
.xf_c00040{left:171.948300px;}
.x9_c00040{left:173.061600px;}
.x7_c00040{left:174.141300px;}
.x3_c00040{left:175.897500px;}
.xb_c00040{left:326.310000px;}
.xd_c00040{left:329.190000px;}
.xc_c00040{left:347.265000px;}
.xe_c00040{left:351.975000px;}
.x18_c00040{left:425.715000px;}
.x14_c00040{left:510.030000px;}
.x5_c00040{left:574.575000px;}
.x12_c00040{left:583.935000px;}
.x10_c00040{left:592.755000px;}
.x15_c00040{left:598.665000px;}
.x13_c00040{left:630.930000px;}
.x6_c00040{left:636.090000px;}
.x11_c00040{left:638.835000px;}
.x16_c00040{left:647.655000px;}
.x17_c00040{left:724.215000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls95_c00040{letter-spacing:-2.202667pt;}
.ls8e_c00040{letter-spacing:-2.165333pt;}
.ls7e_c00040{letter-spacing:-1.176853pt;}
.ls86_c00040{letter-spacing:-0.849600pt;}
.ls7a_c00040{letter-spacing:-0.830720pt;}
.ls97_c00040{letter-spacing:-0.679680pt;}
.ls9b_c00040{letter-spacing:-0.672000pt;}
.ls83_c00040{letter-spacing:-0.667093pt;}
.ls8c_c00040{letter-spacing:-0.654507pt;}
.ls9c_c00040{letter-spacing:-0.653352pt;}
.ls93_c00040{letter-spacing:-0.578987pt;}
.ls78_c00040{letter-spacing:-0.547520pt;}
.ls80_c00040{letter-spacing:-0.503467pt;}
.ls92_c00040{letter-spacing:-0.497173pt;}
.ls9a_c00040{letter-spacing:-0.489829pt;}
.ls91_c00040{letter-spacing:-0.440533pt;}
.ls81_c00040{letter-spacing:-0.390187pt;}
.ls8f_c00040{letter-spacing:-0.371307pt;}
.ls84_c00040{letter-spacing:-0.251733pt;}
.ls7c_c00040{letter-spacing:-0.176213pt;}
.ls89_c00040{letter-spacing:-0.151040pt;}
.ls90_c00040{letter-spacing:-0.125867pt;}
.ls7b_c00040{letter-spacing:-0.094400pt;}
.ls94_c00040{letter-spacing:-0.062933pt;}
.ls79_c00040{letter-spacing:0.000000pt;}
.ls59_c00040{letter-spacing:0.062933pt;}
.ls2e_c00040{letter-spacing:0.081813pt;}
.ls9d_c00040{letter-spacing:0.093120pt;}
.ls50_c00040{letter-spacing:0.094400pt;}
.lsd_c00040{letter-spacing:0.100693pt;}
.ls30_c00040{letter-spacing:0.144747pt;}
.ls2c_c00040{letter-spacing:0.163627pt;}
.ls8a_c00040{letter-spacing:0.176213pt;}
.lsb_c00040{letter-spacing:0.182507pt;}
.ls61_c00040{letter-spacing:0.188800pt;}
.ls88_c00040{letter-spacing:0.195093pt;}
.ls70_c00040{letter-spacing:0.239147pt;}
.ls7d_c00040{letter-spacing:0.264320pt;}
.ls6d_c00040{letter-spacing:0.295787pt;}
.ls64_c00040{letter-spacing:0.320960pt;}
.ls36_c00040{letter-spacing:0.327253pt;}
.ls18_c00040{letter-spacing:0.339840pt;}
.ls2_c00040{letter-spacing:0.352427pt;}
.ls44_c00040{letter-spacing:0.377600pt;}
.ls6a_c00040{letter-spacing:0.402773pt;}
.ls4d_c00040{letter-spacing:0.415360pt;}
.ls72_c00040{letter-spacing:0.427947pt;}
.ls43_c00040{letter-spacing:0.440533pt;}
.ls41_c00040{letter-spacing:0.446827pt;}
.ls60_c00040{letter-spacing:0.453120pt;}
.ls62_c00040{letter-spacing:0.472000pt;}
.ls11_c00040{letter-spacing:0.478293pt;}
.ls85_c00040{letter-spacing:0.484587pt;}
.ls32_c00040{letter-spacing:0.490880pt;}
.ls63_c00040{letter-spacing:0.503467pt;}
.ls2a_c00040{letter-spacing:0.509760pt;}
.ls6c_c00040{letter-spacing:0.516053pt;}
.ls1c_c00040{letter-spacing:0.528640pt;}
.ls4_c00040{letter-spacing:0.541227pt;}
.ls27_c00040{letter-spacing:0.547520pt;}
.ls21_c00040{letter-spacing:0.560107pt;}
.ls49_c00040{letter-spacing:0.572693pt;}
.ls19_c00040{letter-spacing:0.578987pt;}
.ls9_c00040{letter-spacing:0.591573pt;}
.ls5a_c00040{letter-spacing:0.604160pt;}
.ls28_c00040{letter-spacing:0.610453pt;}
.ls3a_c00040{letter-spacing:0.616747pt;}
.ls1a_c00040{letter-spacing:0.623040pt;}
.ls76_c00040{letter-spacing:0.629333pt;}
.ls5_c00040{letter-spacing:0.635627pt;}
.ls26_c00040{letter-spacing:0.641920pt;}
.ls37_c00040{letter-spacing:0.660800pt;}
.ls66_c00040{letter-spacing:0.667093pt;}
.ls69_c00040{letter-spacing:0.685973pt;}
.ls10_c00040{letter-spacing:0.692267pt;}
.ls40_c00040{letter-spacing:0.698560pt;}
.ls51_c00040{letter-spacing:0.704853pt;}
.ls5b_c00040{letter-spacing:0.711147pt;}
.ls5d_c00040{letter-spacing:0.717440pt;}
.ls4c_c00040{letter-spacing:0.730027pt;}
.ls35_c00040{letter-spacing:0.736320pt;}
.ls2b_c00040{letter-spacing:0.742613pt;}
.ls2f_c00040{letter-spacing:0.748907pt;}
.ls1_c00040{letter-spacing:0.755200pt;}
.ls75_c00040{letter-spacing:0.761493pt;}
.ls4e_c00040{letter-spacing:0.774080pt;}
.ls45_c00040{letter-spacing:0.799253pt;}
.ls82_c00040{letter-spacing:0.805547pt;}
.ls24_c00040{letter-spacing:0.811840pt;}
.ls68_c00040{letter-spacing:0.818133pt;}
.ls4f_c00040{letter-spacing:0.824427pt;}
.ls7f_c00040{letter-spacing:0.830720pt;}
.ls3_c00040{letter-spacing:0.843307pt;}
.ls53_c00040{letter-spacing:0.849600pt;}
.ls99_c00040{letter-spacing:0.853360pt;}
.ls39_c00040{letter-spacing:0.862187pt;}
.ls47_c00040{letter-spacing:0.868480pt;}
.lsa_c00040{letter-spacing:0.874773pt;}
.ls67_c00040{letter-spacing:0.887360pt;}
.ls54_c00040{letter-spacing:0.893653pt;}
.ls71_c00040{letter-spacing:0.899947pt;}
.ls5e_c00040{letter-spacing:0.912533pt;}
.ls23_c00040{letter-spacing:0.918827pt;}
.lsc_c00040{letter-spacing:0.925120pt;}
.ls73_c00040{letter-spacing:0.931413pt;}
.ls7_c00040{letter-spacing:0.937707pt;}
.ls6f_c00040{letter-spacing:0.944000pt;}
.ls16_c00040{letter-spacing:0.950293pt;}
.ls87_c00040{letter-spacing:0.956587pt;}
.ls46_c00040{letter-spacing:0.962880pt;}
.ls29_c00040{letter-spacing:0.969173pt;}
.lse_c00040{letter-spacing:0.975467pt;}
.ls55_c00040{letter-spacing:0.988053pt;}
.ls6e_c00040{letter-spacing:0.994347pt;}
.ls1f_c00040{letter-spacing:1.000640pt;}
.ls6_c00040{letter-spacing:1.019520pt;}
.ls13_c00040{letter-spacing:1.025813pt;}
.ls8b_c00040{letter-spacing:1.032107pt;}
.ls1e_c00040{letter-spacing:1.038400pt;}
.ls31_c00040{letter-spacing:1.057280pt;}
.ls65_c00040{letter-spacing:1.063573pt;}
.ls8d_c00040{letter-spacing:1.076160pt;}
.ls6b_c00040{letter-spacing:1.088747pt;}
.ls8_c00040{letter-spacing:1.101333pt;}
.ls34_c00040{letter-spacing:1.126507pt;}
.ls96_c00040{letter-spacing:1.145387pt;}
.ls3c_c00040{letter-spacing:1.164267pt;}
.ls1b_c00040{letter-spacing:1.170560pt;}
.ls20_c00040{letter-spacing:1.183147pt;}
.ls77_c00040{letter-spacing:1.203040pt;}
.ls12_c00040{letter-spacing:1.208320pt;}
.ls4a_c00040{letter-spacing:1.214613pt;}
.ls5c_c00040{letter-spacing:1.227200pt;}
.ls17_c00040{letter-spacing:1.239787pt;}
.ls1d_c00040{letter-spacing:1.246080pt;}
.ls56_c00040{letter-spacing:1.252373pt;}
.ls25_c00040{letter-spacing:1.283840pt;}
.ls15_c00040{letter-spacing:1.302720pt;}
.ls48_c00040{letter-spacing:1.309013pt;}
.ls3d_c00040{letter-spacing:1.321600pt;}
.lsf_c00040{letter-spacing:1.334187pt;}
.ls42_c00040{letter-spacing:1.346773pt;}
.ls33_c00040{letter-spacing:1.353067pt;}
.ls74_c00040{letter-spacing:1.359360pt;}
.ls4b_c00040{letter-spacing:1.365653pt;}
.ls3f_c00040{letter-spacing:1.378240pt;}
.ls14_c00040{letter-spacing:1.390827pt;}
.ls52_c00040{letter-spacing:1.403413pt;}
.ls2d_c00040{letter-spacing:1.447467pt;}
.ls0_c00040{letter-spacing:1.483200pt;}
.ls58_c00040{letter-spacing:1.567040pt;}
.ls5f_c00040{letter-spacing:1.888000pt;}
.ls3b_c00040{letter-spacing:2.013867pt;}
.ls3e_c00040{letter-spacing:2.057920pt;}
.ls98_c00040{letter-spacing:2.177493pt;}
.ls22_c00040{letter-spacing:2.341120pt;}
.ls38_c00040{letter-spacing:2.630613pt;}
.ls57_c00040{letter-spacing:3.140373pt;}
.ws0_c00040{word-spacing:0.000000pt;}
._12_c00040{margin-left:-7.174400pt;}
._f_c00040{margin-left:-5.915520pt;}
._11_c00040{margin-left:-4.116053pt;}
._0_c00040{margin-left:-2.911467pt;}
._7_c00040{margin-left:-1.353067pt;}
._5_c00040{width:1.793600pt;}
._4_c00040{width:2.970453pt;}
._1_c00040{width:4.720000pt;}
._2_c00040{width:5.764693pt;}
._3_c00040{width:7.054827pt;}
._10_c00040{width:8.223787pt;}
._6_c00040{width:9.112747pt;}
._b_c00040{width:10.673493pt;}
._13_c00040{width:12.246080pt;}
._d_c00040{width:13.406400pt;}
._9_c00040{width:14.303147pt;}
._e_c00040{width:15.733333pt;}
._a_c00040{width:18.061867pt;}
._8_c00040{width:20.074880pt;}
._c_c00040{width:21.184213pt;}
.fs8_c00040{font-size:14.080000pt;}
.fs6_c00040{font-size:17.067200pt;}
.fs9_c00040{font-size:18.667200pt;}
.fs7_c00040{font-size:19.200000pt;}
.fs5_c00040{font-size:47.360000pt;}
.fsa_c00040{font-size:51.733333pt;}
.fs0_c00040{font-size:54.933333pt;}
.fs2_c00040{font-size:57.600000pt;}
.fs4_c00040{font-size:61.866667pt;}
.fs1_c00040{font-size:62.933333pt;}
.fs3_c00040{font-size:64.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.y22_c00040{bottom:56.653333pt;}
.y21_c00040{bottom:109.760000pt;}
.y1f_c00040{bottom:112.957067pt;}
.y20_c00040{bottom:112.960000pt;}
.y1e_c00040{bottom:140.157067pt;}
.y1d_c00040{bottom:167.360000pt;}
.y1c_c00040{bottom:167.369600pt;}
.y1b_c00040{bottom:195.217600pt;}
.y1a_c00040{bottom:276.810667pt;}
.y19_c00040{bottom:304.973333pt;}
.y18_c00040{bottom:304.981067pt;}
.y17_c00040{bottom:332.815733pt;}
.y16_c00040{bottom:360.334667pt;}
.y15_c00040{bottom:414.724800pt;}
.y14_c00040{bottom:442.887467pt;}
.y13_c00040{bottom:469.760000pt;}
.y12_c00040{bottom:469.768800pt;}
.y11_c00040{bottom:497.302133pt;}
.y10_c00040{bottom:524.804000pt;}
.yf_c00040{bottom:552.337333pt;}
.ye_c00040{bottom:607.372533pt;}
.yd_c00040{bottom:634.575467pt;}
.yc_c00040{bottom:662.093067pt;}
.yb_c00040{bottom:717.772533pt;}
.ya_c00040{bottom:773.122400pt;}
.y8_c00040{bottom:800.634667pt;}
.y9_c00040{bottom:800.640000pt;}
.y7_c00040{bottom:827.858133pt;}
.y6_c00040{bottom:855.366667pt;}
.y5_c00040{bottom:910.401867pt;}
.y4_c00040{bottom:937.620533pt;}
.y3_c00040{bottom:964.807733pt;}
.y2_c00040{bottom:992.640000pt;}
.y1_c00040{bottom:1060.800000pt;}
.hb_c00040{height:9.377280pt;}
.h9_c00040{height:16.750523pt;}
.hc_c00040{height:19.469306pt;}
.ha_c00040{height:20.025000pt;}
.h8_c00040{height:31.541760pt;}
.h4_c00040{height:38.361600pt;}
.hd_c00040{height:50.773437pt;}
.h2_c00040{height:53.914062pt;}
.h3_c00040{height:61.765625pt;}
.h7_c00040{height:61.777358pt;}
.h5_c00040{height:62.784450pt;}
.h6_c00040{height:64.525000pt;}
.h1_c00040{height:1122.666667pt;}
.h0_c00040{height:1122.880000pt;}
.w1_c00040{width:793.333333pt;}
.w0_c00040{width:793.600000pt;}
.x0_c00040{left:0.000000pt;}
.xa_c00040{left:105.295200pt;}
.x8_c00040{left:106.742667pt;}
.x4_c00040{left:107.800800pt;}
.x2_c00040{left:109.279200pt;}
.x1_c00040{left:110.253333pt;}
.xf_c00040{left:152.842933pt;}
.x9_c00040{left:153.832533pt;}
.x7_c00040{left:154.792267pt;}
.x3_c00040{left:156.353333pt;}
.xb_c00040{left:290.053333pt;}
.xd_c00040{left:292.613333pt;}
.xc_c00040{left:308.680000pt;}
.xe_c00040{left:312.866667pt;}
.x18_c00040{left:378.413333pt;}
.x14_c00040{left:453.360000pt;}
.x5_c00040{left:510.733333pt;}
.x12_c00040{left:519.053333pt;}
.x10_c00040{left:526.893333pt;}
.x15_c00040{left:532.146667pt;}
.x13_c00040{left:560.826667pt;}
.x6_c00040{left:565.413333pt;}
.x11_c00040{left:567.853333pt;}
.x16_c00040{left:575.693333pt;}
.x17_c00040{left:643.746667pt;}
}





/* 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_c00041 {
    display:none;
  }
  .loading-indicator_c00041.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00041 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_c00041 { 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_c00041" -> "#page-container .classname_c00041")
 */
.pf_c00041 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00041 { /* 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_c00041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00041 { /* 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_c00041 { /* 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_c00041 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00041 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00041 {overflow:visible;}
  }
}
.c_c00041 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00041 { /* 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_c00041:after { /* webkit #35443 */
  content: '';
}
.t_c00041:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00041 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 */
}
.__c00041 { /* 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_c00041 { /* info for Javascript */
  display:none;
}
.l_c00041 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00041 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00041 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00041: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_c00041 {
    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_c00041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00041.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_c00041 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00041;src:url('chunks/assets/font_38bb61a7605fd78dfc3f8452.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.311035;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_c00041;src:url('chunks/assets/font_f3701a5fbcb99525af4d664a.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.284668;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_c00041;src:url('chunks/assets/font_6e75ea64f3df574caef3066a.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.284180;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_c00041;src:url('chunks/assets/font_f73835859cd1ce689e41e570.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:0.666000;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_c00041{transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);}
.m3_c00041{transform:matrix(0.236965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236965,0.000000,0.000000,0.250000,0,0);}
.m5_c00041{transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);}
.m4_c00041{transform:matrix(0.247965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247965,0.000000,0.000000,0.250000,0,0);}
.m1_c00041{transform:matrix(0.249456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249456,0.000000,0.000000,0.250000,0,0);}
.m0_c00041{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);}
.v0_c00041{vertical-align:0.000000px;}
.ls10_c00041{letter-spacing:-2.268000px;}
.ls1b_c00041{letter-spacing:-2.037000px;}
.ls17_c00041{letter-spacing:-0.706320px;}
.ls15_c00041{letter-spacing:-0.567600px;}
.ls16_c00041{letter-spacing:-0.453600px;}
.ls19_c00041{letter-spacing:-0.233280px;}
.ls14_c00041{letter-spacing:-0.198000px;}
.ls18_c00041{letter-spacing:-0.194400px;}
.ls12_c00041{letter-spacing:0.000000px;}
.ls6_c00041{letter-spacing:0.032400px;}
.ls9_c00041{letter-spacing:0.045360px;}
.ls13_c00041{letter-spacing:0.123120px;}
.ls1a_c00041{letter-spacing:0.168480px;}
.ls5_c00041{letter-spacing:0.200880px;}
.lsd_c00041{letter-spacing:0.272160px;}
.ls7_c00041{letter-spacing:0.330480px;}
.ls4_c00041{letter-spacing:0.362880px;}
.ls1_c00041{letter-spacing:0.382320px;}
.ls3_c00041{letter-spacing:0.414720px;}
.lsc_c00041{letter-spacing:0.486000px;}
.lsb_c00041{letter-spacing:0.498960px;}
.ls8_c00041{letter-spacing:0.635040px;}
.lsa_c00041{letter-spacing:0.952560px;}
.lsf_c00041{letter-spacing:0.972000px;}
.ls11_c00041{letter-spacing:1.425600px;}
.ls0_c00041{letter-spacing:1.495740px;}
.lse_c00041{letter-spacing:1.536480px;}
.ls2_c00041{letter-spacing:2.093040px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{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__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:0.000000px;}
._0_c00041{margin-left:-2.048640px;}
._9_c00041{width:1.024800px;}
._2_c00041{width:2.242080px;}
._a_c00041{width:3.531600px;}
._7_c00041{width:4.824000px;}
._1_c00041{width:7.161360px;}
._8_c00041{width:10.155600px;}
._6_c00041{width:13.167360px;}
._3_c00041{width:18.280800px;}
._4_c00041{width:19.488000px;}
._5_c00041{width:21.189600px;}
.fc0_c00041{color:transparent;}
.fs2_c00041{font-size:48.960000px;}
.fs0_c00041{font-size:58.200000px;}
.fs1_c00041{font-size:64.800000px;}
.fs3_c00041{font-size:66.000000px;}
.y0_c00041{bottom:0.000000px;}
.y6_c00041{bottom:68.775006px;}
.y5_c00041{bottom:158.045406px;}
.y4_c00041{bottom:176.400006px;}
.y3_c00041{bottom:383.055006px;}
.y2_c00041{bottom:596.175006px;}
.y1_c00041{bottom:1194.480006px;}
.h4_c00041{height:32.607360px;}
.h6_c00041{height:57.120117px;}
.h2_c00041{height:58.654687px;}
.h3_c00041{height:63.597656px;}
.h5_c00041{height:64.743164px;}
.h1_c00041{height:1263.000000px;}
.h0_c00041{height:1263.240006px;}
.w1_c00041{width:892.500000px;}
.w0_c00041{width:892.799998px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:127.994998px;}
.x2_c00041{left:175.874998px;}
.x5_c00041{left:179.729998px;}
.x3_c00041{left:192.569998px;}
.x6_c00041{left:199.709999px;}
.x7_c00041{left:361.994999px;}
.x8_c00041{left:411.659999px;}
.x9_c00041{left:432.914999px;}
.x4_c00041{left:543.254999px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls10_c00041{letter-spacing:-2.016000pt;}
.ls1b_c00041{letter-spacing:-1.810667pt;}
.ls17_c00041{letter-spacing:-0.627840pt;}
.ls15_c00041{letter-spacing:-0.504533pt;}
.ls16_c00041{letter-spacing:-0.403200pt;}
.ls19_c00041{letter-spacing:-0.207360pt;}
.ls14_c00041{letter-spacing:-0.176000pt;}
.ls18_c00041{letter-spacing:-0.172800pt;}
.ls12_c00041{letter-spacing:0.000000pt;}
.ls6_c00041{letter-spacing:0.028800pt;}
.ls9_c00041{letter-spacing:0.040320pt;}
.ls13_c00041{letter-spacing:0.109440pt;}
.ls1a_c00041{letter-spacing:0.149760pt;}
.ls5_c00041{letter-spacing:0.178560pt;}
.lsd_c00041{letter-spacing:0.241920pt;}
.ls7_c00041{letter-spacing:0.293760pt;}
.ls4_c00041{letter-spacing:0.322560pt;}
.ls1_c00041{letter-spacing:0.339840pt;}
.ls3_c00041{letter-spacing:0.368640pt;}
.lsc_c00041{letter-spacing:0.432000pt;}
.lsb_c00041{letter-spacing:0.443520pt;}
.ls8_c00041{letter-spacing:0.564480pt;}
.lsa_c00041{letter-spacing:0.846720pt;}
.lsf_c00041{letter-spacing:0.864000pt;}
.ls11_c00041{letter-spacing:1.267200pt;}
.ls0_c00041{letter-spacing:1.329547pt;}
.lse_c00041{letter-spacing:1.365760pt;}
.ls2_c00041{letter-spacing:1.860480pt;}
.ws0_c00041{word-spacing:0.000000pt;}
._0_c00041{margin-left:-1.821013pt;}
._9_c00041{width:0.910933pt;}
._2_c00041{width:1.992960pt;}
._a_c00041{width:3.139200pt;}
._7_c00041{width:4.288000pt;}
._1_c00041{width:6.365653pt;}
._8_c00041{width:9.027200pt;}
._6_c00041{width:11.704320pt;}
._3_c00041{width:16.249600pt;}
._4_c00041{width:17.322667pt;}
._5_c00041{width:18.835200pt;}
.fs2_c00041{font-size:43.520000pt;}
.fs0_c00041{font-size:51.733333pt;}
.fs1_c00041{font-size:57.600000pt;}
.fs3_c00041{font-size:58.666667pt;}
.y0_c00041{bottom:0.000000pt;}
.y6_c00041{bottom:61.133339pt;}
.y5_c00041{bottom:140.484805pt;}
.y4_c00041{bottom:156.800005pt;}
.y3_c00041{bottom:340.493339pt;}
.y2_c00041{bottom:529.933339pt;}
.y1_c00041{bottom:1061.760005pt;}
.h4_c00041{height:28.984320pt;}
.h6_c00041{height:50.773437pt;}
.h2_c00041{height:52.137500pt;}
.h3_c00041{height:56.531250pt;}
.h5_c00041{height:57.549479pt;}
.h1_c00041{height:1122.666667pt;}
.h0_c00041{height:1122.880005pt;}
.w1_c00041{width:793.333333pt;}
.w0_c00041{width:793.599999pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:113.773332pt;}
.x2_c00041{left:156.333332pt;}
.x5_c00041{left:159.759999pt;}
.x3_c00041{left:171.173332pt;}
.x6_c00041{left:177.519999pt;}
.x7_c00041{left:321.773332pt;}
.x8_c00041{left:365.919999pt;}
.x9_c00041{left:384.813332pt;}
.x4_c00041{left:482.893332pt;}
}





/* 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_c00042 {
    display:none;
  }
  .loading-indicator_c00042.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00042 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_c00042 { 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_c00042" -> "#page-container .classname_c00042")
 */
.pf_c00042 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00042 { /* 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_c00042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00042 { /* 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_c00042 { /* 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_c00042 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00042 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00042 {overflow:visible;}
  }
}
.c_c00042 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00042 { /* 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_c00042:after { /* webkit #35443 */
  content: '';
}
.t_c00042:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00042 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 */
}
.__c00042 { /* 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_c00042 { /* info for Javascript */
  display:none;
}
.l_c00042 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00042 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00042 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00042: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_c00042 {
    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_c00042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00042.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_c00042 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00042;src:url('chunks/assets/font_38bb61a7605fd78dfc3f8452.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.311035;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_c00042;src:url('chunks/assets/font_01f864ecfc530607ef120bd1.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;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_c00042;src:url('chunks/assets/font_38b96c2465f858544877126d.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.284668;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_c00042;src:url('chunks/assets/font_7de85c8f3f33257614e532e1.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:0.666000;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_c00042;src:url('chunks/assets/font_d61de6a0b81f78460052b35a.woff2')format("woff");}.ff5_c00042{font-family:ff5_c00042;line-height:1.284180;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_c00042{transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{transform:matrix(0.117332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117332,0.000000,0.000000,0.250000,0,0);}
.m9_c00042{transform:matrix(0.137342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137342,0.000000,0.000000,0.250000,0,0);}
.m5_c00042{transform:matrix(0.169979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169979,0.000000,0.000000,0.250000,0,0);}
.m6_c00042{transform:matrix(0.230194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230194,0.000000,0.000000,0.250000,0,0);}
.mb_c00042{transform:matrix(0.244892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244892,0.000000,0.000000,0.250000,0,0);}
.m8_c00042{transform:matrix(0.247273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247273,0.000000,0.000000,0.250000,0,0);}
.ma_c00042{transform:matrix(0.247711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247711,0.000000,0.000000,0.250000,0,0);}
.m0_c00042{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);}
.m2_c00042{transform:matrix(0.250874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250874,0.000000,0.000000,0.250000,0,0);}
.m3_c00042{transform:matrix(0.273419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273419,0.000000,0.000000,0.250000,0,0);}
.m7_c00042{transform:matrix(0.274478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274478,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.v1_c00042{vertical-align:214.704000px;}
.ls15_c00042{letter-spacing:-5.292021px;}
.ls1d_c00042{letter-spacing:-2.289000px;}
.ls28_c00042{letter-spacing:-2.269380px;}
.ls29_c00042{letter-spacing:-2.249760px;}
.ls2a_c00042{letter-spacing:-2.112420px;}
.ls21_c00042{letter-spacing:-2.007780px;}
.ls18_c00042{letter-spacing:-1.512000px;}
.ls2d_c00042{letter-spacing:-1.268760px;}
.ls1a_c00042{letter-spacing:-1.218021px;}
.ls24_c00042{letter-spacing:-1.209900px;}
.ls2e_c00042{letter-spacing:-1.052940px;}
.ls25_c00042{letter-spacing:-0.667080px;}
.ls1e_c00042{letter-spacing:-0.601680px;}
.ls1b_c00042{letter-spacing:-0.308880px;}
.ls22_c00042{letter-spacing:-0.202740px;}
.ls2b_c00042{letter-spacing:-0.196200px;}
.ls26_c00042{letter-spacing:-0.124260px;}
.ls1f_c00042{letter-spacing:-0.058860px;}
.ls27_c00042{letter-spacing:-0.032700px;}
.ls20_c00042{letter-spacing:-0.006540px;}
.ls14_c00042{letter-spacing:0.000000px;}
.ls9_c00042{letter-spacing:0.045780px;}
.ls2f_c00042{letter-spacing:0.085020px;}
.lsf_c00042{letter-spacing:0.098100px;}
.ls4_c00042{letter-spacing:0.124260px;}
.lsd_c00042{letter-spacing:0.150420px;}
.ls6_c00042{letter-spacing:0.163500px;}
.lse_c00042{letter-spacing:0.170040px;}
.ls23_c00042{letter-spacing:0.248520px;}
.ls2_c00042{letter-spacing:0.287760px;}
.ls8_c00042{letter-spacing:0.333540px;}
.lsb_c00042{letter-spacing:0.353160px;}
.ls30_c00042{letter-spacing:0.392040px;}
.ls2c_c00042{letter-spacing:0.392400px;}
.ls11_c00042{letter-spacing:0.405480px;}
.ls7_c00042{letter-spacing:0.412020px;}
.lsc_c00042{letter-spacing:0.490500px;}
.lsa_c00042{letter-spacing:0.516660px;}
.ls12_c00042{letter-spacing:0.542820px;}
.ls5_c00042{letter-spacing:0.699780px;}
.ls1_c00042{letter-spacing:0.758640px;}
.ls10_c00042{letter-spacing:0.778260px;}
.ls17_c00042{letter-spacing:0.840030px;}
.ls3_c00042{letter-spacing:0.935220px;}
.ls19_c00042{letter-spacing:0.937440px;}
.ls1c_c00042{letter-spacing:0.948300px;}
.ls0_c00042{letter-spacing:1.495740px;}
.ls13_c00042{letter-spacing:1.536480px;}
.ls16_c00042{letter-spacing:2.790000px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{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__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00042{word-spacing:-120.096000px;}
.ws1_c00042{word-spacing:0.000000px;}
._0_c00042{margin-left:-74.736000px;}
._5_c00042{margin-left:-3.774360px;}
._2_c00042{margin-left:-1.739640px;}
._3_c00042{width:1.948920px;}
._7_c00042{width:3.106500px;}
._4_c00042{width:5.091840px;}
._6_c00042{width:10.146360px;}
._8_c00042{width:11.965380px;}
._a_c00042{width:13.260300px;}
._9_c00042{width:14.730900px;}
._c_c00042{width:17.723400px;}
._b_c00042{width:18.942660px;}
._d_c00042{width:21.255000px;}
._e_c00042{width:23.671080px;}
._f_c00042{width:24.930480px;}
._1_c00042{width:87.835200px;}
.fc0_c00042{color:transparent;}
.fs6_c00042{font-size:16.800600px;}
.fs8_c00042{font-size:18.600000px;}
.fs7_c00042{font-size:21.600000px;}
.fsa_c00042{font-size:34.800600px;}
.fs9_c00042{font-size:43.200000px;}
.fs3_c00042{font-size:55.800000px;}
.fs5_c00042{font-size:57.600000px;}
.fs0_c00042{font-size:58.200000px;}
.fsc_c00042{font-size:59.400000px;}
.fs4_c00042{font-size:60.600000px;}
.fsb_c00042{font-size:65.400000px;}
.fs2_c00042{font-size:151.200600px;}
.fs1_c00042{font-size:432.000000px;}
.y0_c00042{bottom:0.000000px;}
.y11_c00042{bottom:66.615000px;}
.y10_c00042{bottom:382.334850px;}
.yf_c00042{bottom:401.775000px;}
.ye_c00042{bottom:420.495000px;}
.yd_c00042{bottom:420.495600px;}
.yc_c00042{bottom:439.200000px;}
.yb_c00042{bottom:733.335000px;}
.y2_c00042{bottom:762.120000px;}
.y3_c00042{bottom:769.335000px;}
.y4_c00042{bottom:821.520000px;}
.ya_c00042{bottom:850.695000px;}
.y9_c00042{bottom:982.080000px;}
.y8_c00042{bottom:990.000000px;}
.y7_c00042{bottom:1033.935000px;}
.y6_c00042{bottom:1041.495000px;}
.y5_c00042{bottom:1058.040000px;}
.y1_c00042{bottom:1193.775000px;}
.h9_c00042{height:14.385600px;}
.h8_c00042{height:16.488870px;}
.ha_c00042{height:18.254883px;}
.hd_c00042{height:21.199219px;}
.hc_c00042{height:34.154886px;}
.hb_c00042{height:45.056250px;}
.h7_c00042{height:56.531250px;}
.h5_c00042{height:58.197656px;}
.hf_c00042{height:58.297852px;}
.h2_c00042{height:58.654687px;}
.h6_c00042{height:63.203906px;}
.he_c00042{height:64.186523px;}
.h4_c00042{height:157.697501px;}
.h3_c00042{height:665.266500px;}
.h1_c00042{height:1263.000000px;}
.h0_c00042{height:1263.240000px;}
.w1_c00042{width:892.500000px;}
.w0_c00042{width:892.800000px;}
.x0_c00042{left:0.000000px;}
.xc_c00042{left:119.805000px;}
.x1_c00042{left:125.115000px;}
.xd_c00042{left:167.940000px;}
.xe_c00042{left:184.605000px;}
.x2_c00042{left:295.290000px;}
.x3_c00042{left:298.875000px;}
.x4_c00042{left:348.690000px;}
.x5_c00042{left:376.215000px;}
.x14_c00042{left:426.780000px;}
.x6_c00042{left:447.450000px;}
.x7_c00042{left:449.580000px;}
.x8_c00042{left:455.970000px;}
.x9_c00042{left:457.935000px;}
.xa_c00042{left:462.105000px;}
.x12_c00042{left:566.820000px;}
.x13_c00042{left:588.780000px;}
.xf_c00042{left:614.565000px;}
.x10_c00042{left:629.145000px;}
.xb_c00042{left:675.195000px;}
.x11_c00042{left:739.410000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.v1_c00042{vertical-align:190.848000pt;}
.ls15_c00042{letter-spacing:-4.704019pt;}
.ls1d_c00042{letter-spacing:-2.034667pt;}
.ls28_c00042{letter-spacing:-2.017227pt;}
.ls29_c00042{letter-spacing:-1.999787pt;}
.ls2a_c00042{letter-spacing:-1.877707pt;}
.ls21_c00042{letter-spacing:-1.784693pt;}
.ls18_c00042{letter-spacing:-1.344000pt;}
.ls2d_c00042{letter-spacing:-1.127787pt;}
.ls1a_c00042{letter-spacing:-1.082685pt;}
.ls24_c00042{letter-spacing:-1.075467pt;}
.ls2e_c00042{letter-spacing:-0.935947pt;}
.ls25_c00042{letter-spacing:-0.592960pt;}
.ls1e_c00042{letter-spacing:-0.534827pt;}
.ls1b_c00042{letter-spacing:-0.274560pt;}
.ls22_c00042{letter-spacing:-0.180213pt;}
.ls2b_c00042{letter-spacing:-0.174400pt;}
.ls26_c00042{letter-spacing:-0.110453pt;}
.ls1f_c00042{letter-spacing:-0.052320pt;}
.ls27_c00042{letter-spacing:-0.029067pt;}
.ls20_c00042{letter-spacing:-0.005813pt;}
.ls14_c00042{letter-spacing:0.000000pt;}
.ls9_c00042{letter-spacing:0.040693pt;}
.ls2f_c00042{letter-spacing:0.075573pt;}
.lsf_c00042{letter-spacing:0.087200pt;}
.ls4_c00042{letter-spacing:0.110453pt;}
.lsd_c00042{letter-spacing:0.133707pt;}
.ls6_c00042{letter-spacing:0.145333pt;}
.lse_c00042{letter-spacing:0.151147pt;}
.ls23_c00042{letter-spacing:0.220907pt;}
.ls2_c00042{letter-spacing:0.255787pt;}
.ls8_c00042{letter-spacing:0.296480pt;}
.lsb_c00042{letter-spacing:0.313920pt;}
.ls30_c00042{letter-spacing:0.348480pt;}
.ls2c_c00042{letter-spacing:0.348800pt;}
.ls11_c00042{letter-spacing:0.360427pt;}
.ls7_c00042{letter-spacing:0.366240pt;}
.lsc_c00042{letter-spacing:0.436000pt;}
.lsa_c00042{letter-spacing:0.459253pt;}
.ls12_c00042{letter-spacing:0.482507pt;}
.ls5_c00042{letter-spacing:0.622027pt;}
.ls1_c00042{letter-spacing:0.674347pt;}
.ls10_c00042{letter-spacing:0.691787pt;}
.ls17_c00042{letter-spacing:0.746693pt;}
.ls3_c00042{letter-spacing:0.831307pt;}
.ls19_c00042{letter-spacing:0.833280pt;}
.ls1c_c00042{letter-spacing:0.842933pt;}
.ls0_c00042{letter-spacing:1.329547pt;}
.ls13_c00042{letter-spacing:1.365760pt;}
.ls16_c00042{letter-spacing:2.480000pt;}
.ws0_c00042{word-spacing:-106.752000pt;}
.ws1_c00042{word-spacing:0.000000pt;}
._0_c00042{margin-left:-66.432000pt;}
._5_c00042{margin-left:-3.354987pt;}
._2_c00042{margin-left:-1.546347pt;}
._3_c00042{width:1.732373pt;}
._7_c00042{width:2.761333pt;}
._4_c00042{width:4.526080pt;}
._6_c00042{width:9.018987pt;}
._8_c00042{width:10.635893pt;}
._a_c00042{width:11.786933pt;}
._9_c00042{width:13.094133pt;}
._c_c00042{width:15.754133pt;}
._b_c00042{width:16.837920pt;}
._d_c00042{width:18.893333pt;}
._e_c00042{width:21.040960pt;}
._f_c00042{width:22.160427pt;}
._1_c00042{width:78.075733pt;}
.fs6_c00042{font-size:14.933867pt;}
.fs8_c00042{font-size:16.533333pt;}
.fs7_c00042{font-size:19.200000pt;}
.fsa_c00042{font-size:30.933867pt;}
.fs9_c00042{font-size:38.400000pt;}
.fs3_c00042{font-size:49.600000pt;}
.fs5_c00042{font-size:51.200000pt;}
.fs0_c00042{font-size:51.733333pt;}
.fsc_c00042{font-size:52.800000pt;}
.fs4_c00042{font-size:53.866667pt;}
.fsb_c00042{font-size:58.133333pt;}
.fs2_c00042{font-size:134.400533pt;}
.fs1_c00042{font-size:384.000000pt;}
.y0_c00042{bottom:0.000000pt;}
.y11_c00042{bottom:59.213333pt;}
.y10_c00042{bottom:339.853200pt;}
.yf_c00042{bottom:357.133333pt;}
.ye_c00042{bottom:373.773333pt;}
.yd_c00042{bottom:373.773867pt;}
.yc_c00042{bottom:390.400000pt;}
.yb_c00042{bottom:651.853333pt;}
.y2_c00042{bottom:677.440000pt;}
.y3_c00042{bottom:683.853333pt;}
.y4_c00042{bottom:730.240000pt;}
.ya_c00042{bottom:756.173333pt;}
.y9_c00042{bottom:872.960000pt;}
.y8_c00042{bottom:880.000000pt;}
.y7_c00042{bottom:919.053333pt;}
.y6_c00042{bottom:925.773333pt;}
.y5_c00042{bottom:940.480000pt;}
.y1_c00042{bottom:1061.133333pt;}
.h9_c00042{height:12.787200pt;}
.h8_c00042{height:14.656773pt;}
.ha_c00042{height:16.226562pt;}
.hd_c00042{height:18.843750pt;}
.hc_c00042{height:30.359898pt;}
.hb_c00042{height:40.050000pt;}
.h7_c00042{height:50.250000pt;}
.h5_c00042{height:51.731250pt;}
.hf_c00042{height:51.820312pt;}
.h2_c00042{height:52.137500pt;}
.h6_c00042{height:56.181250pt;}
.he_c00042{height:57.054688pt;}
.h4_c00042{height:140.175556pt;}
.h3_c00042{height:591.348000pt;}
.h1_c00042{height:1122.666667pt;}
.h0_c00042{height:1122.880000pt;}
.w1_c00042{width:793.333333pt;}
.w0_c00042{width:793.600000pt;}
.x0_c00042{left:0.000000pt;}
.xc_c00042{left:106.493333pt;}
.x1_c00042{left:111.213333pt;}
.xd_c00042{left:149.280000pt;}
.xe_c00042{left:164.093333pt;}
.x2_c00042{left:262.480000pt;}
.x3_c00042{left:265.666667pt;}
.x4_c00042{left:309.946667pt;}
.x5_c00042{left:334.413333pt;}
.x14_c00042{left:379.360000pt;}
.x6_c00042{left:397.733333pt;}
.x7_c00042{left:399.626667pt;}
.x8_c00042{left:405.306667pt;}
.x9_c00042{left:407.053333pt;}
.xa_c00042{left:410.760000pt;}
.x12_c00042{left:503.840000pt;}
.x13_c00042{left:523.360000pt;}
.xf_c00042{left:546.280000pt;}
.x10_c00042{left:559.240000pt;}
.xb_c00042{left:600.173333pt;}
.x11_c00042{left:657.253333pt;}
}





/* 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_c00043 {
    display:none;
  }
  .loading-indicator_c00043.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00043 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_c00043 { 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_c00043" -> "#page-container .classname_c00043")
 */
.pf_c00043 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00043 { /* 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_c00043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00043 { /* 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_c00043 { /* 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_c00043 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00043 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00043 {overflow:visible;}
  }
}
.c_c00043 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00043 { /* 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_c00043:after { /* webkit #35443 */
  content: '';
}
.t_c00043:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00043 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 */
}
.__c00043 { /* 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_c00043 { /* info for Javascript */
  display:none;
}
.l_c00043 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00043 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00043 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00043: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_c00043 {
    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_c00043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00043.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_c00043 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00043;src:url('chunks/assets/font_d67c252976adcd7f61920ec3.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.284668;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_c00043;src:url('chunks/assets/font_3971e33466036965b811dd14.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.284180;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_c00043{transform:matrix(0.202893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202893,0.000000,0.000000,0.250000,0,0);}
.m3_c00043{transform:matrix(0.222153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222153,0.000000,0.000000,0.250000,0,0);}
.m5_c00043{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m2_c00043{transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);}
.m1_c00043{transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);}
.m0_c00043{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);}
.v0_c00043{vertical-align:0.000000px;}
.lsa9_c00043{letter-spacing:-2.541000px;}
.ls51_c00043{letter-spacing:-2.520000px;}
.ls58_c00043{letter-spacing:-2.448000px;}
.ls7f_c00043{letter-spacing:-2.440800px;}
.ls96_c00043{letter-spacing:-2.318400px;}
.ls5c_c00043{letter-spacing:-2.080800px;}
.ls54_c00043{letter-spacing:-1.936800px;}
.ls42_c00043{letter-spacing:-1.922400px;}
.ls9a_c00043{letter-spacing:-1.900800px;}
.ls86_c00043{letter-spacing:-1.886400px;}
.ls4e_c00043{letter-spacing:-1.828800px;}
.ls89_c00043{letter-spacing:-1.785600px;}
.ls99_c00043{letter-spacing:-1.764000px;}
.ls7b_c00043{letter-spacing:-1.670400px;}
.lsab_c00043{letter-spacing:-1.626000px;}
.ls5b_c00043{letter-spacing:-1.605600px;}
.ls6e_c00043{letter-spacing:-1.454400px;}
.ls67_c00043{letter-spacing:-1.396800px;}
.ls6d_c00043{letter-spacing:-1.238400px;}
.ls40_c00043{letter-spacing:-1.216800px;}
.ls83_c00043{letter-spacing:-1.202400px;}
.ls74_c00043{letter-spacing:-1.180800px;}
.ls9c_c00043{letter-spacing:-1.116000px;}
.ls91_c00043{letter-spacing:-1.108800px;}
.ls63_c00043{letter-spacing:-1.008000px;}
.ls79_c00043{letter-spacing:-0.885600px;}
.ls84_c00043{letter-spacing:-0.878400px;}
.ls80_c00043{letter-spacing:-0.864000px;}
.ls75_c00043{letter-spacing:-0.842400px;}
.ls97_c00043{letter-spacing:-0.835200px;}
.ls7d_c00043{letter-spacing:-0.813600px;}
.ls57_c00043{letter-spacing:-0.806400px;}
.ls5d_c00043{letter-spacing:-0.799200px;}
.ls9b_c00043{letter-spacing:-0.792000px;}
.ls6c_c00043{letter-spacing:-0.741600px;}
.ls71_c00043{letter-spacing:-0.720000px;}
.ls9f_c00043{letter-spacing:-0.712800px;}
.lsa6_c00043{letter-spacing:-0.687960px;}
.ls3e_c00043{letter-spacing:-0.669600px;}
.lsa4_c00043{letter-spacing:-0.640800px;}
.ls7c_c00043{letter-spacing:-0.612000px;}
.ls52_c00043{letter-spacing:-0.590400px;}
.ls62_c00043{letter-spacing:-0.540000px;}
.ls8d_c00043{letter-spacing:-0.532800px;}
.ls9d_c00043{letter-spacing:-0.515460px;}
.ls85_c00043{letter-spacing:-0.504000px;}
.ls82_c00043{letter-spacing:-0.496800px;}
.ls66_c00043{letter-spacing:-0.482400px;}
.ls95_c00043{letter-spacing:-0.475200px;}
.lsaa_c00043{letter-spacing:-0.464640px;}
.ls77_c00043{letter-spacing:-0.460800px;}
.ls48_c00043{letter-spacing:-0.453600px;}
.ls94_c00043{letter-spacing:-0.446400px;}
.ls47_c00043{letter-spacing:-0.439200px;}
.ls4f_c00043{letter-spacing:-0.396000px;}
.ls9e_c00043{letter-spacing:-0.388800px;}
.ls87_c00043{letter-spacing:-0.381600px;}
.ls90_c00043{letter-spacing:-0.374400px;}
.ls4c_c00043{letter-spacing:-0.352800px;}
.ls4a_c00043{letter-spacing:-0.345600px;}
.ls93_c00043{letter-spacing:-0.338400px;}
.lsa2_c00043{letter-spacing:-0.331200px;}
.ls76_c00043{letter-spacing:-0.324000px;}
.ls43_c00043{letter-spacing:-0.316800px;}
.ls59_c00043{letter-spacing:-0.309600px;}
.ls8c_c00043{letter-spacing:-0.302400px;}
.ls70_c00043{letter-spacing:-0.295200px;}
.ls6b_c00043{letter-spacing:-0.280800px;}
.lsa1_c00043{letter-spacing:-0.273600px;}
.ls8b_c00043{letter-spacing:-0.266400px;}
.ls8a_c00043{letter-spacing:-0.259200px;}
.ls65_c00043{letter-spacing:-0.252000px;}
.ls50_c00043{letter-spacing:-0.244800px;}
.lsa3_c00043{letter-spacing:-0.237600px;}
.ls4d_c00043{letter-spacing:-0.230400px;}
.ls72_c00043{letter-spacing:-0.223200px;}
.ls5f_c00043{letter-spacing:-0.201600px;}
.ls64_c00043{letter-spacing:-0.194400px;}
.ls5e_c00043{letter-spacing:-0.187200px;}
.ls98_c00043{letter-spacing:-0.180000px;}
.ls6a_c00043{letter-spacing:-0.172800px;}
.ls55_c00043{letter-spacing:-0.165600px;}
.ls41_c00043{letter-spacing:-0.158400px;}
.ls5a_c00043{letter-spacing:-0.151200px;}
.ls46_c00043{letter-spacing:-0.144000px;}
.ls69_c00043{letter-spacing:-0.136800px;}
.ls8e_c00043{letter-spacing:-0.129600px;}
.ls88_c00043{letter-spacing:-0.122400px;}
.ls45_c00043{letter-spacing:-0.115200px;}
.ls49_c00043{letter-spacing:-0.108000px;}
.ls60_c00043{letter-spacing:-0.100800px;}
.lsa5_c00043{letter-spacing:-0.098280px;}
.ls81_c00043{letter-spacing:-0.093600px;}
.ls73_c00043{letter-spacing:-0.086400px;}
.ls56_c00043{letter-spacing:-0.079200px;}
.ls4b_c00043{letter-spacing:-0.072000px;}
.ls7a_c00043{letter-spacing:-0.064800px;}
.ls92_c00043{letter-spacing:-0.057600px;}
.ls8f_c00043{letter-spacing:-0.050400px;}
.ls53_c00043{letter-spacing:-0.036000px;}
.ls68_c00043{letter-spacing:-0.028800px;}
.ls61_c00043{letter-spacing:-0.014400px;}
.ls3f_c00043{letter-spacing:0.000000px;}
.lsa_c00043{letter-spacing:0.007200px;}
.ls2f_c00043{letter-spacing:0.021600px;}
.ls26_c00043{letter-spacing:0.036000px;}
.ls23_c00043{letter-spacing:0.043200px;}
.ls2a_c00043{letter-spacing:0.049140px;}
.ls14_c00043{letter-spacing:0.050400px;}
.ls2b_c00043{letter-spacing:0.057600px;}
.ls27_c00043{letter-spacing:0.064800px;}
.ls1_c00043{letter-spacing:0.115200px;}
.ls1f_c00043{letter-spacing:0.122400px;}
.lsf_c00043{letter-spacing:0.136800px;}
.ls29_c00043{letter-spacing:0.144000px;}
.ls34_c00043{letter-spacing:0.151200px;}
.ls16_c00043{letter-spacing:0.158400px;}
.ls9_c00043{letter-spacing:0.180000px;}
.ls7_c00043{letter-spacing:0.187200px;}
.ls12_c00043{letter-spacing:0.201600px;}
.lsa8_c00043{letter-spacing:0.203280px;}
.ls37_c00043{letter-spacing:0.208800px;}
.ls1a_c00043{letter-spacing:0.216000px;}
.ls17_c00043{letter-spacing:0.223200px;}
.ls8_c00043{letter-spacing:0.230400px;}
.ls28_c00043{letter-spacing:0.237600px;}
.lsc_c00043{letter-spacing:0.238680px;}
.ls25_c00043{letter-spacing:0.244800px;}
.ls10_c00043{letter-spacing:0.252000px;}
.ls15_c00043{letter-spacing:0.259200px;}
.lse_c00043{letter-spacing:0.266400px;}
.ls1d_c00043{letter-spacing:0.288000px;}
.ls1b_c00043{letter-spacing:0.295200px;}
.ls3c_c00043{letter-spacing:0.304920px;}
.ls35_c00043{letter-spacing:0.309600px;}
.ls33_c00043{letter-spacing:0.324000px;}
.lsd_c00043{letter-spacing:0.331200px;}
.ls11_c00043{letter-spacing:0.345600px;}
.ls20_c00043{letter-spacing:0.367200px;}
.ls1e_c00043{letter-spacing:0.393120px;}
.ls3b_c00043{letter-spacing:0.442860px;}
.lsa0_c00043{letter-spacing:0.475200px;}
.ls3a_c00043{letter-spacing:0.477360px;}
.ls6f_c00043{letter-spacing:0.526500px;}
.ls19_c00043{letter-spacing:0.547200px;}
.ls31_c00043{letter-spacing:0.561600px;}
.ls32_c00043{letter-spacing:0.576000px;}
.ls2e_c00043{letter-spacing:0.612000px;}
.ls30_c00043{letter-spacing:0.633600px;}
.ls6_c00043{letter-spacing:0.680940px;}
.ls13_c00043{letter-spacing:0.702000px;}
.ls39_c00043{letter-spacing:0.709020px;}
.ls22_c00043{letter-spacing:0.712800px;}
.ls36_c00043{letter-spacing:0.720000px;}
.ls4_c00043{letter-spacing:0.793260px;}
.lsb_c00043{letter-spacing:0.905580px;}
.ls78_c00043{letter-spacing:0.926640px;}
.ls24_c00043{letter-spacing:0.950400px;}
.ls2d_c00043{letter-spacing:0.957600px;}
.ls18_c00043{letter-spacing:1.353600px;}
.ls1c_c00043{letter-spacing:1.375920px;}
.ls21_c00043{letter-spacing:1.382400px;}
.ls44_c00043{letter-spacing:1.418040px;}
.ls2c_c00043{letter-spacing:1.461600px;}
.ls2_c00043{letter-spacing:1.467180px;}
.ls38_c00043{letter-spacing:1.586520px;}
.ls3_c00043{letter-spacing:1.705860px;}
.ls5_c00043{letter-spacing:1.825200px;}
.lsa7_c00043{letter-spacing:1.923480px;}
.ls0_c00043{letter-spacing:2.526000px;}
.ls3d_c00043{letter-spacing:2.664000px;}
.ls7e_c00043{letter-spacing:2.764800px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{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__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00043{word-spacing:0.000000px;}
._1a_c00043{margin-left:-6.548400px;}
._0_c00043{margin-left:-4.536000px;}
._6_c00043{margin-left:-3.282300px;}
._5_c00043{margin-left:-1.843680px;}
._2_c00043{width:1.512000px;}
._3_c00043{width:3.139200px;}
._15_c00043{width:4.329600px;}
._1_c00043{width:5.356800px;}
._16_c00043{width:6.478560px;}
._4_c00043{width:7.538400px;}
._b_c00043{width:9.124200px;}
._c_c00043{width:10.197000px;}
._7_c00043{width:12.180600px;}
._a_c00043{width:13.422600px;}
._9_c00043{width:15.192000px;}
._8_c00043{width:16.718400px;}
._d_c00043{width:19.378200px;}
._f_c00043{width:20.577600px;}
._e_c00043{width:22.579200px;}
._13_c00043{width:23.839200px;}
._14_c00043{width:27.100800px;}
._10_c00043{width:28.699200px;}
._11_c00043{width:30.643200px;}
._12_c00043{width:32.119200px;}
._19_c00043{width:33.148800px;}
._17_c00043{width:34.459200px;}
._18_c00043{width:36.640800px;}
._1e_c00043{width:38.980800px;}
._1b_c00043{width:40.046400px;}
._1c_c00043{width:41.515200px;}
._1d_c00043{width:43.430400px;}
.fc0_c00043{color:transparent;}
.fs0_c00043{font-size:60.000000px;}
.fs2_c00043{font-size:70.200000px;}
.fs1_c00043{font-size:72.000000px;}
.fs3_c00043{font-size:72.600000px;}
.y0_c00043{bottom:0.000000px;}
.y1f_c00043{bottom:70.575006px;}
.y1e_c00043{bottom:134.280006px;}
.y1d_c00043{bottom:164.880006px;}
.y1c_c00043{bottom:226.455006px;}
.y1b_c00043{bottom:287.655006px;}
.y1a_c00043{bottom:318.615006px;}
.y19_c00043{bottom:349.575006px;}
.y18_c00043{bottom:380.175006px;}
.y17_c00043{bottom:442.455006px;}
.y16_c00043{bottom:473.055006px;}
.y15_c00043{bottom:504.015006px;}
.y14_c00043{bottom:534.618006px;}
.y13_c00043{bottom:565.560006px;}
.y12_c00043{bottom:596.538006px;}
.y11_c00043{bottom:627.138006px;}
.y10_c00043{bottom:657.720006px;}
.yf_c00043{bottom:688.698006px;}
.ye_c00043{bottom:719.640006px;}
.yd_c00043{bottom:780.840006px;}
.yc_c00043{bottom:812.520006px;}
.yb_c00043{bottom:843.477006px;}
.ya_c00043{bottom:874.455006px;}
.y9_c00043{bottom:905.055006px;}
.y8_c00043{bottom:935.997006px;}
.y7_c00043{bottom:966.618006px;}
.y6_c00043{bottom:997.578006px;}
.y5_c00043{bottom:1028.520006px;}
.y4_c00043{bottom:1059.135006px;}
.y3_c00043{bottom:1089.739356px;}
.y2_c00043{bottom:1120.680006px;}
.y1_c00043{bottom:1196.280006px;}
.h2_c00043{height:58.886719px;}
.h6_c00043{height:68.863184px;}
.h4_c00043{height:70.646662px;}
.h3_c00043{height:70.664062px;}
.h5_c00043{height:71.252930px;}
.h1_c00043{height:1263.000000px;}
.h0_c00043{height:1263.240006px;}
.w1_c00043{width:892.500000px;}
.w0_c00043{width:892.799998px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:122.249999px;}
.x2_c00043{left:123.611099px;}
.x5_c00043{left:174.569998px;}
.x4_c00043{left:175.937998px;}
.xa_c00043{left:426.059999px;}
.x6_c00043{left:435.269998px;}
.x7_c00043{left:501.149999px;}
.x8_c00043{left:656.129999px;}
.x9_c00043{left:687.989998px;}
.x3_c00043{left:730.289999px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.lsa9_c00043{letter-spacing:-2.258667pt;}
.ls51_c00043{letter-spacing:-2.240000pt;}
.ls58_c00043{letter-spacing:-2.176000pt;}
.ls7f_c00043{letter-spacing:-2.169600pt;}
.ls96_c00043{letter-spacing:-2.060800pt;}
.ls5c_c00043{letter-spacing:-1.849600pt;}
.ls54_c00043{letter-spacing:-1.721600pt;}
.ls42_c00043{letter-spacing:-1.708800pt;}
.ls9a_c00043{letter-spacing:-1.689600pt;}
.ls86_c00043{letter-spacing:-1.676800pt;}
.ls4e_c00043{letter-spacing:-1.625600pt;}
.ls89_c00043{letter-spacing:-1.587200pt;}
.ls99_c00043{letter-spacing:-1.568000pt;}
.ls7b_c00043{letter-spacing:-1.484800pt;}
.lsab_c00043{letter-spacing:-1.445333pt;}
.ls5b_c00043{letter-spacing:-1.427200pt;}
.ls6e_c00043{letter-spacing:-1.292800pt;}
.ls67_c00043{letter-spacing:-1.241600pt;}
.ls6d_c00043{letter-spacing:-1.100800pt;}
.ls40_c00043{letter-spacing:-1.081600pt;}
.ls83_c00043{letter-spacing:-1.068800pt;}
.ls74_c00043{letter-spacing:-1.049600pt;}
.ls9c_c00043{letter-spacing:-0.992000pt;}
.ls91_c00043{letter-spacing:-0.985600pt;}
.ls63_c00043{letter-spacing:-0.896000pt;}
.ls79_c00043{letter-spacing:-0.787200pt;}
.ls84_c00043{letter-spacing:-0.780800pt;}
.ls80_c00043{letter-spacing:-0.768000pt;}
.ls75_c00043{letter-spacing:-0.748800pt;}
.ls97_c00043{letter-spacing:-0.742400pt;}
.ls7d_c00043{letter-spacing:-0.723200pt;}
.ls57_c00043{letter-spacing:-0.716800pt;}
.ls5d_c00043{letter-spacing:-0.710400pt;}
.ls9b_c00043{letter-spacing:-0.704000pt;}
.ls6c_c00043{letter-spacing:-0.659200pt;}
.ls71_c00043{letter-spacing:-0.640000pt;}
.ls9f_c00043{letter-spacing:-0.633600pt;}
.lsa6_c00043{letter-spacing:-0.611520pt;}
.ls3e_c00043{letter-spacing:-0.595200pt;}
.lsa4_c00043{letter-spacing:-0.569600pt;}
.ls7c_c00043{letter-spacing:-0.544000pt;}
.ls52_c00043{letter-spacing:-0.524800pt;}
.ls62_c00043{letter-spacing:-0.480000pt;}
.ls8d_c00043{letter-spacing:-0.473600pt;}
.ls9d_c00043{letter-spacing:-0.458187pt;}
.ls85_c00043{letter-spacing:-0.448000pt;}
.ls82_c00043{letter-spacing:-0.441600pt;}
.ls66_c00043{letter-spacing:-0.428800pt;}
.ls95_c00043{letter-spacing:-0.422400pt;}
.lsaa_c00043{letter-spacing:-0.413013pt;}
.ls77_c00043{letter-spacing:-0.409600pt;}
.ls48_c00043{letter-spacing:-0.403200pt;}
.ls94_c00043{letter-spacing:-0.396800pt;}
.ls47_c00043{letter-spacing:-0.390400pt;}
.ls4f_c00043{letter-spacing:-0.352000pt;}
.ls9e_c00043{letter-spacing:-0.345600pt;}
.ls87_c00043{letter-spacing:-0.339200pt;}
.ls90_c00043{letter-spacing:-0.332800pt;}
.ls4c_c00043{letter-spacing:-0.313600pt;}
.ls4a_c00043{letter-spacing:-0.307200pt;}
.ls93_c00043{letter-spacing:-0.300800pt;}
.lsa2_c00043{letter-spacing:-0.294400pt;}
.ls76_c00043{letter-spacing:-0.288000pt;}
.ls43_c00043{letter-spacing:-0.281600pt;}
.ls59_c00043{letter-spacing:-0.275200pt;}
.ls8c_c00043{letter-spacing:-0.268800pt;}
.ls70_c00043{letter-spacing:-0.262400pt;}
.ls6b_c00043{letter-spacing:-0.249600pt;}
.lsa1_c00043{letter-spacing:-0.243200pt;}
.ls8b_c00043{letter-spacing:-0.236800pt;}
.ls8a_c00043{letter-spacing:-0.230400pt;}
.ls65_c00043{letter-spacing:-0.224000pt;}
.ls50_c00043{letter-spacing:-0.217600pt;}
.lsa3_c00043{letter-spacing:-0.211200pt;}
.ls4d_c00043{letter-spacing:-0.204800pt;}
.ls72_c00043{letter-spacing:-0.198400pt;}
.ls5f_c00043{letter-spacing:-0.179200pt;}
.ls64_c00043{letter-spacing:-0.172800pt;}
.ls5e_c00043{letter-spacing:-0.166400pt;}
.ls98_c00043{letter-spacing:-0.160000pt;}
.ls6a_c00043{letter-spacing:-0.153600pt;}
.ls55_c00043{letter-spacing:-0.147200pt;}
.ls41_c00043{letter-spacing:-0.140800pt;}
.ls5a_c00043{letter-spacing:-0.134400pt;}
.ls46_c00043{letter-spacing:-0.128000pt;}
.ls69_c00043{letter-spacing:-0.121600pt;}
.ls8e_c00043{letter-spacing:-0.115200pt;}
.ls88_c00043{letter-spacing:-0.108800pt;}
.ls45_c00043{letter-spacing:-0.102400pt;}
.ls49_c00043{letter-spacing:-0.096000pt;}
.ls60_c00043{letter-spacing:-0.089600pt;}
.lsa5_c00043{letter-spacing:-0.087360pt;}
.ls81_c00043{letter-spacing:-0.083200pt;}
.ls73_c00043{letter-spacing:-0.076800pt;}
.ls56_c00043{letter-spacing:-0.070400pt;}
.ls4b_c00043{letter-spacing:-0.064000pt;}
.ls7a_c00043{letter-spacing:-0.057600pt;}
.ls92_c00043{letter-spacing:-0.051200pt;}
.ls8f_c00043{letter-spacing:-0.044800pt;}
.ls53_c00043{letter-spacing:-0.032000pt;}
.ls68_c00043{letter-spacing:-0.025600pt;}
.ls61_c00043{letter-spacing:-0.012800pt;}
.ls3f_c00043{letter-spacing:0.000000pt;}
.lsa_c00043{letter-spacing:0.006400pt;}
.ls2f_c00043{letter-spacing:0.019200pt;}
.ls26_c00043{letter-spacing:0.032000pt;}
.ls23_c00043{letter-spacing:0.038400pt;}
.ls2a_c00043{letter-spacing:0.043680pt;}
.ls14_c00043{letter-spacing:0.044800pt;}
.ls2b_c00043{letter-spacing:0.051200pt;}
.ls27_c00043{letter-spacing:0.057600pt;}
.ls1_c00043{letter-spacing:0.102400pt;}
.ls1f_c00043{letter-spacing:0.108800pt;}
.lsf_c00043{letter-spacing:0.121600pt;}
.ls29_c00043{letter-spacing:0.128000pt;}
.ls34_c00043{letter-spacing:0.134400pt;}
.ls16_c00043{letter-spacing:0.140800pt;}
.ls9_c00043{letter-spacing:0.160000pt;}
.ls7_c00043{letter-spacing:0.166400pt;}
.ls12_c00043{letter-spacing:0.179200pt;}
.lsa8_c00043{letter-spacing:0.180693pt;}
.ls37_c00043{letter-spacing:0.185600pt;}
.ls1a_c00043{letter-spacing:0.192000pt;}
.ls17_c00043{letter-spacing:0.198400pt;}
.ls8_c00043{letter-spacing:0.204800pt;}
.ls28_c00043{letter-spacing:0.211200pt;}
.lsc_c00043{letter-spacing:0.212160pt;}
.ls25_c00043{letter-spacing:0.217600pt;}
.ls10_c00043{letter-spacing:0.224000pt;}
.ls15_c00043{letter-spacing:0.230400pt;}
.lse_c00043{letter-spacing:0.236800pt;}
.ls1d_c00043{letter-spacing:0.256000pt;}
.ls1b_c00043{letter-spacing:0.262400pt;}
.ls3c_c00043{letter-spacing:0.271040pt;}
.ls35_c00043{letter-spacing:0.275200pt;}
.ls33_c00043{letter-spacing:0.288000pt;}
.lsd_c00043{letter-spacing:0.294400pt;}
.ls11_c00043{letter-spacing:0.307200pt;}
.ls20_c00043{letter-spacing:0.326400pt;}
.ls1e_c00043{letter-spacing:0.349440pt;}
.ls3b_c00043{letter-spacing:0.393653pt;}
.lsa0_c00043{letter-spacing:0.422400pt;}
.ls3a_c00043{letter-spacing:0.424320pt;}
.ls6f_c00043{letter-spacing:0.468000pt;}
.ls19_c00043{letter-spacing:0.486400pt;}
.ls31_c00043{letter-spacing:0.499200pt;}
.ls32_c00043{letter-spacing:0.512000pt;}
.ls2e_c00043{letter-spacing:0.544000pt;}
.ls30_c00043{letter-spacing:0.563200pt;}
.ls6_c00043{letter-spacing:0.605280pt;}
.ls13_c00043{letter-spacing:0.624000pt;}
.ls39_c00043{letter-spacing:0.630240pt;}
.ls22_c00043{letter-spacing:0.633600pt;}
.ls36_c00043{letter-spacing:0.640000pt;}
.ls4_c00043{letter-spacing:0.705120pt;}
.lsb_c00043{letter-spacing:0.804960pt;}
.ls78_c00043{letter-spacing:0.823680pt;}
.ls24_c00043{letter-spacing:0.844800pt;}
.ls2d_c00043{letter-spacing:0.851200pt;}
.ls18_c00043{letter-spacing:1.203200pt;}
.ls1c_c00043{letter-spacing:1.223040pt;}
.ls21_c00043{letter-spacing:1.228800pt;}
.ls44_c00043{letter-spacing:1.260480pt;}
.ls2c_c00043{letter-spacing:1.299200pt;}
.ls2_c00043{letter-spacing:1.304160pt;}
.ls38_c00043{letter-spacing:1.410240pt;}
.ls3_c00043{letter-spacing:1.516320pt;}
.ls5_c00043{letter-spacing:1.622400pt;}
.lsa7_c00043{letter-spacing:1.709760pt;}
.ls0_c00043{letter-spacing:2.245333pt;}
.ls3d_c00043{letter-spacing:2.368000pt;}
.ls7e_c00043{letter-spacing:2.457600pt;}
.ws0_c00043{word-spacing:0.000000pt;}
._1a_c00043{margin-left:-5.820800pt;}
._0_c00043{margin-left:-4.032000pt;}
._6_c00043{margin-left:-2.917600pt;}
._5_c00043{margin-left:-1.638827pt;}
._2_c00043{width:1.344000pt;}
._3_c00043{width:2.790400pt;}
._15_c00043{width:3.848533pt;}
._1_c00043{width:4.761600pt;}
._16_c00043{width:5.758720pt;}
._4_c00043{width:6.700800pt;}
._b_c00043{width:8.110400pt;}
._c_c00043{width:9.064000pt;}
._7_c00043{width:10.827200pt;}
._a_c00043{width:11.931200pt;}
._9_c00043{width:13.504000pt;}
._8_c00043{width:14.860800pt;}
._d_c00043{width:17.225067pt;}
._f_c00043{width:18.291200pt;}
._e_c00043{width:20.070400pt;}
._13_c00043{width:21.190400pt;}
._14_c00043{width:24.089600pt;}
._10_c00043{width:25.510400pt;}
._11_c00043{width:27.238400pt;}
._12_c00043{width:28.550400pt;}
._19_c00043{width:29.465600pt;}
._17_c00043{width:30.630400pt;}
._18_c00043{width:32.569600pt;}
._1e_c00043{width:34.649600pt;}
._1b_c00043{width:35.596800pt;}
._1c_c00043{width:36.902400pt;}
._1d_c00043{width:38.604800pt;}
.fs0_c00043{font-size:53.333333pt;}
.fs2_c00043{font-size:62.400000pt;}
.fs1_c00043{font-size:64.000000pt;}
.fs3_c00043{font-size:64.533333pt;}
.y0_c00043{bottom:0.000000pt;}
.y1f_c00043{bottom:62.733339pt;}
.y1e_c00043{bottom:119.360005pt;}
.y1d_c00043{bottom:146.560005pt;}
.y1c_c00043{bottom:201.293339pt;}
.y1b_c00043{bottom:255.693339pt;}
.y1a_c00043{bottom:283.213339pt;}
.y19_c00043{bottom:310.733339pt;}
.y18_c00043{bottom:337.933339pt;}
.y17_c00043{bottom:393.293339pt;}
.y16_c00043{bottom:420.493339pt;}
.y15_c00043{bottom:448.013339pt;}
.y14_c00043{bottom:475.216005pt;}
.y13_c00043{bottom:502.720005pt;}
.y12_c00043{bottom:530.256005pt;}
.y11_c00043{bottom:557.456005pt;}
.y10_c00043{bottom:584.640005pt;}
.yf_c00043{bottom:612.176005pt;}
.ye_c00043{bottom:639.680005pt;}
.yd_c00043{bottom:694.080005pt;}
.yc_c00043{bottom:722.240005pt;}
.yb_c00043{bottom:749.757339pt;}
.ya_c00043{bottom:777.293339pt;}
.y9_c00043{bottom:804.493339pt;}
.y8_c00043{bottom:831.997339pt;}
.y7_c00043{bottom:859.216005pt;}
.y6_c00043{bottom:886.736005pt;}
.y5_c00043{bottom:914.240005pt;}
.y4_c00043{bottom:941.453339pt;}
.y3_c00043{bottom:968.657205pt;}
.y2_c00043{bottom:996.160005pt;}
.y1_c00043{bottom:1063.360005pt;}
.h2_c00043{height:52.343750pt;}
.h6_c00043{height:61.211719pt;}
.h4_c00043{height:62.797033pt;}
.h3_c00043{height:62.812500pt;}
.h5_c00043{height:63.335938pt;}
.h1_c00043{height:1122.666667pt;}
.h0_c00043{height:1122.880005pt;}
.w1_c00043{width:793.333333pt;}
.w0_c00043{width:793.599999pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:108.666665pt;}
.x2_c00043{left:109.876532pt;}
.x5_c00043{left:155.173332pt;}
.x4_c00043{left:156.389332pt;}
.xa_c00043{left:378.719999pt;}
.x6_c00043{left:386.906665pt;}
.x7_c00043{left:445.466665pt;}
.x8_c00043{left:583.226665pt;}
.x9_c00043{left:611.546665pt;}
.x3_c00043{left:649.146665pt;}
}





/* 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_c00044 {
    display:none;
  }
  .loading-indicator_c00044.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00044 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_c00044 { 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_c00044" -> "#page-container .classname_c00044")
 */
.pf_c00044 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00044 { /* 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_c00044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00044 { /* 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_c00044 { /* 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_c00044 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00044 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00044 {overflow:visible;}
  }
}
.c_c00044 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00044 { /* 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_c00044:after { /* webkit #35443 */
  content: '';
}
.t_c00044:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00044 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 */
}
.__c00044 { /* 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_c00044 { /* info for Javascript */
  display:none;
}
.l_c00044 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00044 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00044 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00044: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_c00044 {
    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_c00044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00044.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_c00044 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00044;src:url('chunks/assets/font_c51c07fca2fae40ad6de756c.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.284668;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_c00044;src:url('chunks/assets/font_558eed82e89fd171df622982.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.284180;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_c00044;src:url('chunks/assets/font_2f34ae48808d7a7371344c34.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;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:ff4_c00044;src:url('chunks/assets/font_2ae865f09c4f86c08a78ed39.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:0.666000;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;}
.ma_c00044{transform:matrix(0.228581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228581,0.000000,0.000000,0.250000,0,0);}
.m7_c00044{transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);}
.m2_c00044{transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);}
.mc_c00044{transform:matrix(0.235416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235416,0.000000,0.000000,0.250000,0,0);}
.m4_c00044{transform:matrix(0.241032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241032,0.000000,0.000000,0.250000,0,0);}
.m0_c00044{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);}
.m6_c00044{transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);}
.m5_c00044{transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);}
.m1_c00044{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m3_c00044{transform:matrix(0.253858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253858,0.000000,0.000000,0.250000,0,0);}
.mb_c00044{transform:matrix(0.273156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273156,0.000000,0.000000,0.250000,0,0);}
.m8_c00044{transform:matrix(0.645859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645859,0.000000,0.000000,0.250000,0,0);}
.m9_c00044{transform:matrix(0.812984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812984,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.lsb1_c00044{letter-spacing:-2.499000px;}
.ls96_c00044{letter-spacing:-2.457000px;}
.ls94_c00044{letter-spacing:-1.635660px;}
.ls95_c00044{letter-spacing:-1.621620px;}
.ls9e_c00044{letter-spacing:-1.432080px;}
.lsb2_c00044{letter-spacing:-0.793260px;}
.ls9f_c00044{letter-spacing:-0.765180px;}
.lsa5_c00044{letter-spacing:-0.642600px;}
.ls9a_c00044{letter-spacing:-0.599760px;}
.ls9d_c00044{letter-spacing:-0.512460px;}
.lsa9_c00044{letter-spacing:-0.414120px;}
.lsa7_c00044{letter-spacing:-0.371280px;}
.ls98_c00044{letter-spacing:-0.278460px;}
.ls8e_c00044{letter-spacing:-0.231660px;}
.lsa3_c00044{letter-spacing:-0.223740px;}
.ls91_c00044{letter-spacing:-0.196560px;}
.lsb4_c00044{letter-spacing:-0.186000px;}
.lsae_c00044{letter-spacing:-0.135660px;}
.ls9c_c00044{letter-spacing:-0.126360px;}
.lsaf_c00044{letter-spacing:-0.085680px;}
.lsac_c00044{letter-spacing:-0.078540px;}
.ls8f_c00044{letter-spacing:-0.070200px;}
.ls99_c00044{letter-spacing:-0.064260px;}
.ls90_c00044{letter-spacing:-0.049140px;}
.lsad_c00044{letter-spacing:-0.014280px;}
.ls8d_c00044{letter-spacing:0.000000px;}
.ls7c_c00044{letter-spacing:0.092820px;}
.ls48_c00044{letter-spacing:0.168480px;}
.ls27_c00044{letter-spacing:0.171360px;}
.ls7e_c00044{letter-spacing:0.228480px;}
.ls7d_c00044{letter-spacing:0.235620px;}
.ls88_c00044{letter-spacing:0.259740px;}
.ls34_c00044{letter-spacing:0.271320px;}
.ls79_c00044{letter-spacing:0.285600px;}
.ls7b_c00044{letter-spacing:0.314160px;}
.ls3e_c00044{letter-spacing:0.335580px;}
.ls82_c00044{letter-spacing:0.392700px;}
.ls29_c00044{letter-spacing:0.393120px;}
.ls2d_c00044{letter-spacing:0.414180px;}
.ls16_c00044{letter-spacing:0.421200px;}
.ls18_c00044{letter-spacing:0.477360px;}
.ls78_c00044{letter-spacing:0.478380px;}
.lsab_c00044{letter-spacing:0.480000px;}
.ls10_c00044{letter-spacing:0.484380px;}
.ls3a_c00044{letter-spacing:0.491400px;}
.ls4b_c00044{letter-spacing:0.512460px;}
.ls4f_c00044{letter-spacing:0.519480px;}
.lsaa_c00044{letter-spacing:0.521220px;}
.ls45_c00044{letter-spacing:0.533520px;}
.ls8b_c00044{letter-spacing:0.540540px;}
.lsa6_c00044{letter-spacing:0.549780px;}
.ls14_c00044{letter-spacing:0.556920px;}
.ls36_c00044{letter-spacing:0.561600px;}
.ls77_c00044{letter-spacing:0.571200px;}
.ls81_c00044{letter-spacing:0.575640px;}
.ls55_c00044{letter-spacing:0.582660px;}
.ls2b_c00044{letter-spacing:0.589680px;}
.ls72_c00044{letter-spacing:0.614040px;}
.ls3d_c00044{letter-spacing:0.628320px;}
.ls25_c00044{letter-spacing:0.631800px;}
.ls92_c00044{letter-spacing:0.635460px;}
.ls71_c00044{letter-spacing:0.642600px;}
.ls5c_c00044{letter-spacing:0.649740px;}
.ls41_c00044{letter-spacing:0.656880px;}
.ls8_c00044{letter-spacing:0.673920px;}
.ls5e_c00044{letter-spacing:0.692580px;}
.ls3_c00044{letter-spacing:0.694980px;}
.ls4_c00044{letter-spacing:0.709020px;}
.lsa8_c00044{letter-spacing:0.728280px;}
.ls5d_c00044{letter-spacing:0.735420px;}
.lsa2_c00044{letter-spacing:0.751140px;}
.ls74_c00044{letter-spacing:0.758160px;}
.ls8a_c00044{letter-spacing:0.807300px;}
.ls6_c00044{letter-spacing:0.821340px;}
.lse_c00044{letter-spacing:0.828360px;}
.ls1f_c00044{letter-spacing:0.835380px;}
.ls42_c00044{letter-spacing:0.842400px;}
.ls23_c00044{letter-spacing:0.863460px;}
.ls35_c00044{letter-spacing:0.870480px;}
.ls11_c00044{letter-spacing:0.877500px;}
.ls17_c00044{letter-spacing:0.891540px;}
.ls64_c00044{letter-spacing:0.898560px;}
.ls97_c00044{letter-spacing:0.919620px;}
.ls1_c00044{letter-spacing:0.926640px;}
.ls4a_c00044{letter-spacing:0.933660px;}
.ls49_c00044{letter-spacing:0.940680px;}
.ls7_c00044{letter-spacing:0.954720px;}
.ls28_c00044{letter-spacing:0.963900px;}
.ls5_c00044{letter-spacing:0.968760px;}
.ls22_c00044{letter-spacing:0.982800px;}
.ls7a_c00044{letter-spacing:0.989820px;}
.ls20_c00044{letter-spacing:1.003860px;}
.lsb3_c00044{letter-spacing:1.010880px;}
.ls47_c00044{letter-spacing:1.017900px;}
.ls38_c00044{letter-spacing:1.024920px;}
.ls75_c00044{letter-spacing:1.031940px;}
.ls43_c00044{letter-spacing:1.038960px;}
.ls1a_c00044{letter-spacing:1.053000px;}
.ls7f_c00044{letter-spacing:1.071000px;}
.ls61_c00044{letter-spacing:1.074060px;}
.ls33_c00044{letter-spacing:1.095120px;}
.ls60_c00044{letter-spacing:1.102140px;}
.ls85_c00044{letter-spacing:1.109160px;}
.ls5a_c00044{letter-spacing:1.130220px;}
.ls1c_c00044{letter-spacing:1.137240px;}
.ls24_c00044{letter-spacing:1.144260px;}
.ls76_c00044{letter-spacing:1.158300px;}
.ls6e_c00044{letter-spacing:1.165320px;}
.lsb_c00044{letter-spacing:1.172340px;}
.ls31_c00044{letter-spacing:1.186380px;}
.ls15_c00044{letter-spacing:1.200420px;}
.ls46_c00044{letter-spacing:1.207440px;}
.ls4c_c00044{letter-spacing:1.228500px;}
.ls66_c00044{letter-spacing:1.235520px;}
.ls9_c00044{letter-spacing:1.242540px;}
.lsc_c00044{letter-spacing:1.249560px;}
.ls54_c00044{letter-spacing:1.256640px;}
.lsa_c00044{letter-spacing:1.270620px;}
.ls30_c00044{letter-spacing:1.277640px;}
.ls6f_c00044{letter-spacing:1.284660px;}
.ls6b_c00044{letter-spacing:1.298700px;}
.ls3c_c00044{letter-spacing:1.305720px;}
.ls2_c00044{letter-spacing:1.312740px;}
.ls32_c00044{letter-spacing:1.319760px;}
.lsd_c00044{letter-spacing:1.320900px;}
.ls62_c00044{letter-spacing:1.326780px;}
.ls52_c00044{letter-spacing:1.333800px;}
.ls2a_c00044{letter-spacing:1.340820px;}
.ls59_c00044{letter-spacing:1.347840px;}
.ls8c_c00044{letter-spacing:1.353420px;}
.ls65_c00044{letter-spacing:1.354860px;}
.ls12_c00044{letter-spacing:1.389960px;}
.ls1d_c00044{letter-spacing:1.396980px;}
.ls3b_c00044{letter-spacing:1.411020px;}
.ls13_c00044{letter-spacing:1.425060px;}
.ls40_c00044{letter-spacing:1.453140px;}
.ls2e_c00044{letter-spacing:1.460160px;}
.ls2f_c00044{letter-spacing:1.467180px;}
.ls37_c00044{letter-spacing:1.488240px;}
.ls6c_c00044{letter-spacing:1.495260px;}
.ls39_c00044{letter-spacing:1.551420px;}
.ls57_c00044{letter-spacing:1.558440px;}
.ls89_c00044{letter-spacing:1.572480px;}
.ls56_c00044{letter-spacing:1.579500px;}
.ls67_c00044{letter-spacing:1.586520px;}
.lsa4_c00044{letter-spacing:1.614600px;}
.ls69_c00044{letter-spacing:1.621620px;}
.ls68_c00044{letter-spacing:1.628640px;}
.ls73_c00044{letter-spacing:1.656720px;}
.ls0_c00044{letter-spacing:1.668600px;}
.ls5b_c00044{letter-spacing:1.670760px;}
.ls51_c00044{letter-spacing:1.684800px;}
.ls1e_c00044{letter-spacing:1.698840px;}
.ls1b_c00044{letter-spacing:1.733940px;}
.ls83_c00044{letter-spacing:1.755000px;}
.ls26_c00044{letter-spacing:1.804140px;}
.ls4e_c00044{letter-spacing:1.811160px;}
.ls58_c00044{letter-spacing:1.853280px;}
.lsa1_c00044{letter-spacing:1.881360px;}
.ls2c_c00044{letter-spacing:1.895400px;}
.ls44_c00044{letter-spacing:1.930500px;}
.ls80_c00044{letter-spacing:1.944540px;}
.ls53_c00044{letter-spacing:1.993680px;}
.ls86_c00044{letter-spacing:2.000700px;}
.ls5f_c00044{letter-spacing:2.021760px;}
.ls19_c00044{letter-spacing:2.028780px;}
.ls4d_c00044{letter-spacing:2.063880px;}
.ls84_c00044{letter-spacing:2.113020px;}
.lsb0_c00044{letter-spacing:2.183220px;}
.ls50_c00044{letter-spacing:2.267460px;}
.ls3f_c00044{letter-spacing:2.281500px;}
.ls87_c00044{letter-spacing:2.295540px;}
.ls6a_c00044{letter-spacing:2.365740px;}
.ls9b_c00044{letter-spacing:2.393820px;}
.ls6d_c00044{letter-spacing:2.485080px;}
.ls63_c00044{letter-spacing:2.653560px;}
.ls70_c00044{letter-spacing:2.695680px;}
.ls21_c00044{letter-spacing:2.871180px;}
.lsf_c00044{letter-spacing:3.194100px;}
.lsa0_c00044{letter-spacing:3.330000px;}
.ls93_c00044{letter-spacing:3.510000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{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__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00044{word-spacing:0.000000px;}
.ws0_c00044{word-spacing:13.540800px;}
._14_c00044{margin-left:-12.896580px;}
._11_c00044{margin-left:-4.483920px;}
._0_c00044{margin-left:-3.289200px;}
._12_c00044{margin-left:-2.110860px;}
._f_c00044{width:1.763520px;}
._6_c00044{width:2.835840px;}
._10_c00044{width:4.199640px;}
._7_c00044{width:5.256480px;}
._22_c00044{width:6.275340px;}
._8_c00044{width:7.286760px;}
._1_c00044{width:8.662680px;}
._2_c00044{width:10.817820px;}
._18_c00044{width:11.877840px;}
._3_c00044{width:13.015080px;}
._4_c00044{width:14.966640px;}
._e_c00044{width:16.679520px;}
._13_c00044{width:18.560640px;}
._d_c00044{width:20.147400px;}
._5_c00044{width:21.860280px;}
._19_c00044{width:23.122440px;}
._17_c00044{width:24.570000px;}
._16_c00044{width:26.212680px;}
._b_c00044{width:28.663980px;}
._c_c00044{width:30.284520px;}
._9_c00044{width:31.842720px;}
._15_c00044{width:34.156680px;}
._a_c00044{width:36.033000px;}
._1a_c00044{width:50.731200px;}
._1b_c00044{width:62.301600px;}
._1f_c00044{width:63.910080px;}
._20_c00044{width:65.461500px;}
._21_c00044{width:66.786540px;}
._1e_c00044{width:71.794740px;}
._1c_c00044{width:227.481600px;}
._1d_c00044{width:916.123200px;}
.fc0_c00044{color:transparent;}
.fsa_c00044{font-size:5.760000px;}
.fsb_c00044{font-size:9.600000px;}
.fs9_c00044{font-size:33.600000px;}
.fsc_c00044{font-size:60.000000px;}
.fs8_c00044{font-size:61.200000px;}
.fs0_c00044{font-size:61.800000px;}
.fs3_c00044{font-size:66.000000px;}
.fs5_c00044{font-size:66.600000px;}
.fs7_c00044{font-size:67.800000px;}
.fs4_c00044{font-size:69.600000px;}
.fs1_c00044{font-size:70.200000px;}
.fs2_c00044{font-size:71.400000px;}
.fs6_c00044{font-size:73.800000px;}
.y0_c00044{bottom:0.000000px;}
.y24_c00044{bottom:68.775000px;}
.y23_c00044{bottom:131.759250px;}
.y22_c00044{bottom:162.735000px;}
.y21_c00044{bottom:193.695000px;}
.y1f_c00044{bottom:224.999250px;}
.y20_c00044{bottom:225.000000px;}
.y1e_c00044{bottom:255.255000px;}
.y1d_c00044{bottom:283.335000px;}
.y1c_c00044{bottom:286.215000px;}
.y1b_c00044{bottom:317.168250px;}
.y1a_c00044{bottom:348.495000px;}
.y19_c00044{bottom:409.695000px;}
.y18_c00044{bottom:471.600000px;}
.y17_c00044{bottom:532.440150px;}
.y15_c00044{bottom:564.850350px;}
.y16_c00044{bottom:564.855000px;}
.y13_c00044{bottom:595.439250px;}
.y14_c00044{bottom:595.440000px;}
.y12_c00044{bottom:626.415000px;}
.y11_c00044{bottom:626.419350px;}
.y10_c00044{bottom:657.360000px;}
.yf_c00044{bottom:687.970800px;}
.ye_c00044{bottom:719.282850px;}
.yd_c00044{bottom:781.199250px;}
.yc_c00044{bottom:812.168250px;}
.yb_c00044{bottom:843.495000px;}
.ya_c00044{bottom:874.810350px;}
.y9_c00044{bottom:905.400000px;}
.y8_c00044{bottom:966.975000px;}
.y7_c00044{bottom:966.976800px;}
.y6_c00044{bottom:997.929600px;}
.y5_c00044{bottom:1028.519250px;}
.y4_c00044{bottom:1059.495000px;}
.y3_c00044{bottom:1090.073250px;}
.y2_c00044{bottom:1121.400000px;}
.y1_c00044{bottom:1198.080000px;}
.he_c00044{height:3.836160px;}
.hf_c00044{height:9.421875px;}
.hd_c00044{height:32.976562px;}
.h11_c00044{height:58.886719px;}
.h2_c00044{height:60.653320px;}
.h3_c00044{height:68.897461px;}
.h8_c00044{height:68.924461px;}
.hb_c00044{height:69.461719px;}
.h9_c00044{height:70.028932px;}
.h6_c00044{height:70.040332px;}
.h10_c00044{height:70.043332px;}
.h7_c00044{height:70.058932px;}
.h5_c00044{height:70.061932px;}
.h4_c00044{height:70.067332px;}
.hc_c00044{height:72.430664px;}
.ha_c00044{height:72.607425px;}
.h1_c00044{height:1263.000000px;}
.h0_c00044{height:1263.240000px;}
.w1_c00044{width:892.500000px;}
.w0_c00044{width:892.800000px;}
.x0_c00044{left:0.000000px;}
.x8_c00044{left:114.975000px;}
.x6_c00044{left:116.070000px;}
.x2_c00044{left:117.390000px;}
.x1_c00044{left:119.355000px;}
.x12_c00044{left:125.280000px;}
.x13_c00044{left:139.230000px;}
.x11_c00044{left:153.225000px;}
.x3_c00044{left:154.695000px;}
.x19_c00044{left:161.175000px;}
.x7_c00044{left:169.440000px;}
.x5_c00044{left:170.895000px;}
.x1a_c00044{left:190.215000px;}
.x1b_c00044{left:215.505000px;}
.x9_c00044{left:341.340000px;}
.xd_c00044{left:346.935000px;}
.xa_c00044{left:362.340000px;}
.xe_c00044{left:373.845000px;}
.x1c_c00044{left:422.460000px;}
.xb_c00044{left:498.015000px;}
.x14_c00044{left:500.955000px;}
.xc_c00044{left:520.530000px;}
.x17_c00044{left:583.530000px;}
.xf_c00044{left:624.420000px;}
.x18_c00044{left:635.235000px;}
.x15_c00044{left:639.345000px;}
.x10_c00044{left:654.510000px;}
.x4_c00044{left:708.675000px;}
.x16_c00044{left:725.655000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.lsb1_c00044{letter-spacing:-2.221333pt;}
.ls96_c00044{letter-spacing:-2.184000pt;}
.ls94_c00044{letter-spacing:-1.453920pt;}
.ls95_c00044{letter-spacing:-1.441440pt;}
.ls9e_c00044{letter-spacing:-1.272960pt;}
.lsb2_c00044{letter-spacing:-0.705120pt;}
.ls9f_c00044{letter-spacing:-0.680160pt;}
.lsa5_c00044{letter-spacing:-0.571200pt;}
.ls9a_c00044{letter-spacing:-0.533120pt;}
.ls9d_c00044{letter-spacing:-0.455520pt;}
.lsa9_c00044{letter-spacing:-0.368107pt;}
.lsa7_c00044{letter-spacing:-0.330027pt;}
.ls98_c00044{letter-spacing:-0.247520pt;}
.ls8e_c00044{letter-spacing:-0.205920pt;}
.lsa3_c00044{letter-spacing:-0.198880pt;}
.ls91_c00044{letter-spacing:-0.174720pt;}
.lsb4_c00044{letter-spacing:-0.165333pt;}
.lsae_c00044{letter-spacing:-0.120587pt;}
.ls9c_c00044{letter-spacing:-0.112320pt;}
.lsaf_c00044{letter-spacing:-0.076160pt;}
.lsac_c00044{letter-spacing:-0.069813pt;}
.ls8f_c00044{letter-spacing:-0.062400pt;}
.ls99_c00044{letter-spacing:-0.057120pt;}
.ls90_c00044{letter-spacing:-0.043680pt;}
.lsad_c00044{letter-spacing:-0.012693pt;}
.ls8d_c00044{letter-spacing:0.000000pt;}
.ls7c_c00044{letter-spacing:0.082507pt;}
.ls48_c00044{letter-spacing:0.149760pt;}
.ls27_c00044{letter-spacing:0.152320pt;}
.ls7e_c00044{letter-spacing:0.203093pt;}
.ls7d_c00044{letter-spacing:0.209440pt;}
.ls88_c00044{letter-spacing:0.230880pt;}
.ls34_c00044{letter-spacing:0.241173pt;}
.ls79_c00044{letter-spacing:0.253867pt;}
.ls7b_c00044{letter-spacing:0.279253pt;}
.ls3e_c00044{letter-spacing:0.298293pt;}
.ls82_c00044{letter-spacing:0.349067pt;}
.ls29_c00044{letter-spacing:0.349440pt;}
.ls2d_c00044{letter-spacing:0.368160pt;}
.ls16_c00044{letter-spacing:0.374400pt;}
.ls18_c00044{letter-spacing:0.424320pt;}
.ls78_c00044{letter-spacing:0.425227pt;}
.lsab_c00044{letter-spacing:0.426667pt;}
.ls10_c00044{letter-spacing:0.430560pt;}
.ls3a_c00044{letter-spacing:0.436800pt;}
.ls4b_c00044{letter-spacing:0.455520pt;}
.ls4f_c00044{letter-spacing:0.461760pt;}
.lsaa_c00044{letter-spacing:0.463307pt;}
.ls45_c00044{letter-spacing:0.474240pt;}
.ls8b_c00044{letter-spacing:0.480480pt;}
.lsa6_c00044{letter-spacing:0.488693pt;}
.ls14_c00044{letter-spacing:0.495040pt;}
.ls36_c00044{letter-spacing:0.499200pt;}
.ls77_c00044{letter-spacing:0.507733pt;}
.ls81_c00044{letter-spacing:0.511680pt;}
.ls55_c00044{letter-spacing:0.517920pt;}
.ls2b_c00044{letter-spacing:0.524160pt;}
.ls72_c00044{letter-spacing:0.545813pt;}
.ls3d_c00044{letter-spacing:0.558507pt;}
.ls25_c00044{letter-spacing:0.561600pt;}
.ls92_c00044{letter-spacing:0.564853pt;}
.ls71_c00044{letter-spacing:0.571200pt;}
.ls5c_c00044{letter-spacing:0.577547pt;}
.ls41_c00044{letter-spacing:0.583893pt;}
.ls8_c00044{letter-spacing:0.599040pt;}
.ls5e_c00044{letter-spacing:0.615627pt;}
.ls3_c00044{letter-spacing:0.617760pt;}
.ls4_c00044{letter-spacing:0.630240pt;}
.lsa8_c00044{letter-spacing:0.647360pt;}
.ls5d_c00044{letter-spacing:0.653707pt;}
.lsa2_c00044{letter-spacing:0.667680pt;}
.ls74_c00044{letter-spacing:0.673920pt;}
.ls8a_c00044{letter-spacing:0.717600pt;}
.ls6_c00044{letter-spacing:0.730080pt;}
.lse_c00044{letter-spacing:0.736320pt;}
.ls1f_c00044{letter-spacing:0.742560pt;}
.ls42_c00044{letter-spacing:0.748800pt;}
.ls23_c00044{letter-spacing:0.767520pt;}
.ls35_c00044{letter-spacing:0.773760pt;}
.ls11_c00044{letter-spacing:0.780000pt;}
.ls17_c00044{letter-spacing:0.792480pt;}
.ls64_c00044{letter-spacing:0.798720pt;}
.ls97_c00044{letter-spacing:0.817440pt;}
.ls1_c00044{letter-spacing:0.823680pt;}
.ls4a_c00044{letter-spacing:0.829920pt;}
.ls49_c00044{letter-spacing:0.836160pt;}
.ls7_c00044{letter-spacing:0.848640pt;}
.ls28_c00044{letter-spacing:0.856800pt;}
.ls5_c00044{letter-spacing:0.861120pt;}
.ls22_c00044{letter-spacing:0.873600pt;}
.ls7a_c00044{letter-spacing:0.879840pt;}
.ls20_c00044{letter-spacing:0.892320pt;}
.lsb3_c00044{letter-spacing:0.898560pt;}
.ls47_c00044{letter-spacing:0.904800pt;}
.ls38_c00044{letter-spacing:0.911040pt;}
.ls75_c00044{letter-spacing:0.917280pt;}
.ls43_c00044{letter-spacing:0.923520pt;}
.ls1a_c00044{letter-spacing:0.936000pt;}
.ls7f_c00044{letter-spacing:0.952000pt;}
.ls61_c00044{letter-spacing:0.954720pt;}
.ls33_c00044{letter-spacing:0.973440pt;}
.ls60_c00044{letter-spacing:0.979680pt;}
.ls85_c00044{letter-spacing:0.985920pt;}
.ls5a_c00044{letter-spacing:1.004640pt;}
.ls1c_c00044{letter-spacing:1.010880pt;}
.ls24_c00044{letter-spacing:1.017120pt;}
.ls76_c00044{letter-spacing:1.029600pt;}
.ls6e_c00044{letter-spacing:1.035840pt;}
.lsb_c00044{letter-spacing:1.042080pt;}
.ls31_c00044{letter-spacing:1.054560pt;}
.ls15_c00044{letter-spacing:1.067040pt;}
.ls46_c00044{letter-spacing:1.073280pt;}
.ls4c_c00044{letter-spacing:1.092000pt;}
.ls66_c00044{letter-spacing:1.098240pt;}
.ls9_c00044{letter-spacing:1.104480pt;}
.lsc_c00044{letter-spacing:1.110720pt;}
.ls54_c00044{letter-spacing:1.117013pt;}
.lsa_c00044{letter-spacing:1.129440pt;}
.ls30_c00044{letter-spacing:1.135680pt;}
.ls6f_c00044{letter-spacing:1.141920pt;}
.ls6b_c00044{letter-spacing:1.154400pt;}
.ls3c_c00044{letter-spacing:1.160640pt;}
.ls2_c00044{letter-spacing:1.166880pt;}
.ls32_c00044{letter-spacing:1.173120pt;}
.lsd_c00044{letter-spacing:1.174133pt;}
.ls62_c00044{letter-spacing:1.179360pt;}
.ls52_c00044{letter-spacing:1.185600pt;}
.ls2a_c00044{letter-spacing:1.191840pt;}
.ls59_c00044{letter-spacing:1.198080pt;}
.ls8c_c00044{letter-spacing:1.203040pt;}
.ls65_c00044{letter-spacing:1.204320pt;}
.ls12_c00044{letter-spacing:1.235520pt;}
.ls1d_c00044{letter-spacing:1.241760pt;}
.ls3b_c00044{letter-spacing:1.254240pt;}
.ls13_c00044{letter-spacing:1.266720pt;}
.ls40_c00044{letter-spacing:1.291680pt;}
.ls2e_c00044{letter-spacing:1.297920pt;}
.ls2f_c00044{letter-spacing:1.304160pt;}
.ls37_c00044{letter-spacing:1.322880pt;}
.ls6c_c00044{letter-spacing:1.329120pt;}
.ls39_c00044{letter-spacing:1.379040pt;}
.ls57_c00044{letter-spacing:1.385280pt;}
.ls89_c00044{letter-spacing:1.397760pt;}
.ls56_c00044{letter-spacing:1.404000pt;}
.ls67_c00044{letter-spacing:1.410240pt;}
.lsa4_c00044{letter-spacing:1.435200pt;}
.ls69_c00044{letter-spacing:1.441440pt;}
.ls68_c00044{letter-spacing:1.447680pt;}
.ls73_c00044{letter-spacing:1.472640pt;}
.ls0_c00044{letter-spacing:1.483200pt;}
.ls5b_c00044{letter-spacing:1.485120pt;}
.ls51_c00044{letter-spacing:1.497600pt;}
.ls1e_c00044{letter-spacing:1.510080pt;}
.ls1b_c00044{letter-spacing:1.541280pt;}
.ls83_c00044{letter-spacing:1.560000pt;}
.ls26_c00044{letter-spacing:1.603680pt;}
.ls4e_c00044{letter-spacing:1.609920pt;}
.ls58_c00044{letter-spacing:1.647360pt;}
.lsa1_c00044{letter-spacing:1.672320pt;}
.ls2c_c00044{letter-spacing:1.684800pt;}
.ls44_c00044{letter-spacing:1.716000pt;}
.ls80_c00044{letter-spacing:1.728480pt;}
.ls53_c00044{letter-spacing:1.772160pt;}
.ls86_c00044{letter-spacing:1.778400pt;}
.ls5f_c00044{letter-spacing:1.797120pt;}
.ls19_c00044{letter-spacing:1.803360pt;}
.ls4d_c00044{letter-spacing:1.834560pt;}
.ls84_c00044{letter-spacing:1.878240pt;}
.lsb0_c00044{letter-spacing:1.940640pt;}
.ls50_c00044{letter-spacing:2.015520pt;}
.ls3f_c00044{letter-spacing:2.028000pt;}
.ls87_c00044{letter-spacing:2.040480pt;}
.ls6a_c00044{letter-spacing:2.102880pt;}
.ls9b_c00044{letter-spacing:2.127840pt;}
.ls6d_c00044{letter-spacing:2.208960pt;}
.ls63_c00044{letter-spacing:2.358720pt;}
.ls70_c00044{letter-spacing:2.396160pt;}
.ls21_c00044{letter-spacing:2.552160pt;}
.lsf_c00044{letter-spacing:2.839200pt;}
.lsa0_c00044{letter-spacing:2.960000pt;}
.ls93_c00044{letter-spacing:3.120000pt;}
.ws1_c00044{word-spacing:0.000000pt;}
.ws0_c00044{word-spacing:12.036267pt;}
._14_c00044{margin-left:-11.463627pt;}
._11_c00044{margin-left:-3.985707pt;}
._0_c00044{margin-left:-2.923733pt;}
._12_c00044{margin-left:-1.876320pt;}
._f_c00044{width:1.567573pt;}
._6_c00044{width:2.520747pt;}
._10_c00044{width:3.733013pt;}
._7_c00044{width:4.672427pt;}
._22_c00044{width:5.578080pt;}
._8_c00044{width:6.477120pt;}
._1_c00044{width:7.700160pt;}
._2_c00044{width:9.615840pt;}
._18_c00044{width:10.558080pt;}
._3_c00044{width:11.568960pt;}
._4_c00044{width:13.303680pt;}
._e_c00044{width:14.826240pt;}
._13_c00044{width:16.498347pt;}
._d_c00044{width:17.908800pt;}
._5_c00044{width:19.431360pt;}
._19_c00044{width:20.553280pt;}
._17_c00044{width:21.840000pt;}
._16_c00044{width:23.300160pt;}
._b_c00044{width:25.479093pt;}
._c_c00044{width:26.919573pt;}
._9_c00044{width:28.304640pt;}
._15_c00044{width:30.361493pt;}
._a_c00044{width:32.029333pt;}
._1a_c00044{width:45.094400pt;}
._1b_c00044{width:55.379200pt;}
._1f_c00044{width:56.808960pt;}
._20_c00044{width:58.188000pt;}
._21_c00044{width:59.365813pt;}
._1e_c00044{width:63.817547pt;}
._1c_c00044{width:202.205867pt;}
._1d_c00044{width:814.331733pt;}
.fsa_c00044{font-size:5.120000pt;}
.fsb_c00044{font-size:8.533333pt;}
.fs9_c00044{font-size:29.866667pt;}
.fsc_c00044{font-size:53.333333pt;}
.fs8_c00044{font-size:54.400000pt;}
.fs0_c00044{font-size:54.933333pt;}
.fs3_c00044{font-size:58.666667pt;}
.fs5_c00044{font-size:59.200000pt;}
.fs7_c00044{font-size:60.266667pt;}
.fs4_c00044{font-size:61.866667pt;}
.fs1_c00044{font-size:62.400000pt;}
.fs2_c00044{font-size:63.466667pt;}
.fs6_c00044{font-size:65.600000pt;}
.y0_c00044{bottom:0.000000pt;}
.y24_c00044{bottom:61.133333pt;}
.y23_c00044{bottom:117.119333pt;}
.y22_c00044{bottom:144.653333pt;}
.y21_c00044{bottom:172.173333pt;}
.y1f_c00044{bottom:199.999333pt;}
.y20_c00044{bottom:200.000000pt;}
.y1e_c00044{bottom:226.893333pt;}
.y1d_c00044{bottom:251.853333pt;}
.y1c_c00044{bottom:254.413333pt;}
.y1b_c00044{bottom:281.927333pt;}
.y1a_c00044{bottom:309.773333pt;}
.y19_c00044{bottom:364.173333pt;}
.y18_c00044{bottom:419.200000pt;}
.y17_c00044{bottom:473.280133pt;}
.y15_c00044{bottom:502.089200pt;}
.y16_c00044{bottom:502.093333pt;}
.y13_c00044{bottom:529.279333pt;}
.y14_c00044{bottom:529.280000pt;}
.y12_c00044{bottom:556.813333pt;}
.y11_c00044{bottom:556.817200pt;}
.y10_c00044{bottom:584.320000pt;}
.yf_c00044{bottom:611.529600pt;}
.ye_c00044{bottom:639.362533pt;}
.yd_c00044{bottom:694.399333pt;}
.yc_c00044{bottom:721.927333pt;}
.yb_c00044{bottom:749.773333pt;}
.ya_c00044{bottom:777.609200pt;}
.y9_c00044{bottom:804.800000pt;}
.y8_c00044{bottom:859.533333pt;}
.y7_c00044{bottom:859.534933pt;}
.y6_c00044{bottom:887.048533pt;}
.y5_c00044{bottom:914.239333pt;}
.y4_c00044{bottom:941.773333pt;}
.y3_c00044{bottom:968.954000pt;}
.y2_c00044{bottom:996.800000pt;}
.y1_c00044{bottom:1064.960000pt;}
.he_c00044{height:3.409920pt;}
.hf_c00044{height:8.375000pt;}
.hd_c00044{height:29.312500pt;}
.h11_c00044{height:52.343750pt;}
.h2_c00044{height:53.914062pt;}
.h3_c00044{height:61.242187pt;}
.h8_c00044{height:61.266188pt;}
.hb_c00044{height:61.743750pt;}
.h9_c00044{height:62.247940pt;}
.h6_c00044{height:62.258073pt;}
.h10_c00044{height:62.260740pt;}
.h7_c00044{height:62.274606pt;}
.h5_c00044{height:62.277273pt;}
.h4_c00044{height:62.282073pt;}
.hc_c00044{height:64.382813pt;}
.ha_c00044{height:64.539933pt;}
.h1_c00044{height:1122.666667pt;}
.h0_c00044{height:1122.880000pt;}
.w1_c00044{width:793.333333pt;}
.w0_c00044{width:793.600000pt;}
.x0_c00044{left:0.000000pt;}
.x8_c00044{left:102.200000pt;}
.x6_c00044{left:103.173333pt;}
.x2_c00044{left:104.346667pt;}
.x1_c00044{left:106.093333pt;}
.x12_c00044{left:111.360000pt;}
.x13_c00044{left:123.760000pt;}
.x11_c00044{left:136.200000pt;}
.x3_c00044{left:137.506667pt;}
.x19_c00044{left:143.266667pt;}
.x7_c00044{left:150.613333pt;}
.x5_c00044{left:151.906667pt;}
.x1a_c00044{left:169.080000pt;}
.x1b_c00044{left:191.560000pt;}
.x9_c00044{left:303.413333pt;}
.xd_c00044{left:308.386667pt;}
.xa_c00044{left:322.080000pt;}
.xe_c00044{left:332.306667pt;}
.x1c_c00044{left:375.520000pt;}
.xb_c00044{left:442.680000pt;}
.x14_c00044{left:445.293333pt;}
.xc_c00044{left:462.693333pt;}
.x17_c00044{left:518.693333pt;}
.xf_c00044{left:555.040000pt;}
.x18_c00044{left:564.653333pt;}
.x15_c00044{left:568.306667pt;}
.x10_c00044{left:581.786667pt;}
.x4_c00044{left:629.933333pt;}
.x16_c00044{left:645.026667pt;}
}





/* 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_c00045 {
    display:none;
  }
  .loading-indicator_c00045.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00045 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_c00045 { 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_c00045" -> "#page-container .classname_c00045")
 */
.pf_c00045 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00045 { /* 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_c00045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00045 { /* 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_c00045 { /* 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_c00045 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00045 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00045 {overflow:visible;}
  }
}
.c_c00045 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00045 { /* 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_c00045:after { /* webkit #35443 */
  content: '';
}
.t_c00045:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00045 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 */
}
.__c00045 { /* 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_c00045 { /* info for Javascript */
  display:none;
}
.l_c00045 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00045 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00045 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00045: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_c00045 {
    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_c00045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00045.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_c00045 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00045;src:url('chunks/assets/font_9023224e2a77bb52ac370ff0.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.284668;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_c00045;src:url('chunks/assets/font_c7cb103db66bf72140ff113d.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;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_c00045;src:url('chunks/assets/font_81609491dfc8db125f70b13b.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:0.666000;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_c00045;src:url('chunks/assets/font_483f7e771076c37b5b5f10cb.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.284180;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_c00045;src:url('chunks/assets/font_eef34204f77f75c22c711837.woff2')format("woff");}.ff5_c00045{font-family:ff5_c00045;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;}
.m8_c00045{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.m7_c00045{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m1_c00045{transform:matrix(0.067235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067235,0.000000,0.000000,0.250000,0,0);}
.mc_c00045{transform:matrix(0.128337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128337,0.000000,0.000000,0.250000,0,0);}
.m17_c00045{transform:matrix(0.139127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139127,0.000000,0.000000,0.250000,0,0);}
.m14_c00045{transform:matrix(0.140067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140067,0.000000,0.000000,0.250000,0,0);}
.mb_c00045{transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);}
.m13_c00045{transform:matrix(0.185969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185969,0.000000,0.000000,0.250000,0,0);}
.m9_c00045{transform:matrix(0.187297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187297,0.000000,0.000000,0.250000,0,0);}
.m1c_c00045{transform:matrix(0.218427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218427,0.000000,0.000000,0.250000,0,0);}
.m15_c00045{transform:matrix(0.222838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222838,0.000000,0.000000,0.250000,0,0);}
.m12_c00045{transform:matrix(0.228073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228073,0.000000,0.000000,0.250000,0,0);}
.m4_c00045{transform:matrix(0.233360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233360,0.000000,0.000000,0.250000,0,0);}
.m20_c00045{transform:matrix(0.233454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233454,0.000000,0.000000,0.250000,0,0);}
.m0_c00045{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);}
.me_c00045{transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);}
.m11_c00045{transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);}
.mf_c00045{transform:matrix(0.257339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257339,0.000000,0.000000,0.250000,0,0);}
.ma_c00045{transform:matrix(0.264633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264633,0.000000,0.000000,0.250000,0,0);}
.m2_c00045{transform:matrix(0.267572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267572,0.000000,0.000000,0.250000,0,0);}
.m10_c00045{transform:matrix(0.269013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269013,0.000000,0.000000,0.250000,0,0);}
.m3_c00045{transform:matrix(0.269036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269036,0.000000,0.000000,0.250000,0,0);}
.m1f_c00045{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m6_c00045{transform:matrix(0.271328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271328,0.000000,0.000000,0.250000,0,0);}
.m19_c00045{transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);}
.m1a_c00045{transform:matrix(0.332628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332628,0.000000,0.000000,0.250000,0,0);}
.md_c00045{transform:matrix(0.338239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338239,0.000000,0.000000,0.250000,0,0);}
.m5_c00045{transform:matrix(0.366721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366721,0.000000,0.000000,0.250000,0,0);}
.m1e_c00045{transform:matrix(0.373183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373183,0.000000,0.000000,0.250000,0,0);}
.m1b_c00045{transform:matrix(0.445904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445904,0.000000,0.000000,0.250000,0,0);}
.m18_c00045{transform:matrix(0.554016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554016,0.000000,0.000000,0.250000,0,0);}
.m16_c00045{transform:matrix(0.711732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711732,0.000000,0.000000,0.250000,0,0);}
.m1d_c00045{transform:matrix(1.019416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.019416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.019416,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls2b_c00045{letter-spacing:-2.268000px;}
.ls26_c00045{letter-spacing:-2.226000px;}
.ls19_c00045{letter-spacing:-2.016000px;}
.ls16_c00045{letter-spacing:-1.764000px;}
.ls1b_c00045{letter-spacing:-1.743000px;}
.ls1d_c00045{letter-spacing:-1.481880px;}
.ls28_c00045{letter-spacing:-1.431000px;}
.ls29_c00045{letter-spacing:-1.134021px;}
.ls1f_c00045{letter-spacing:-0.591480px;}
.ls1e_c00045{letter-spacing:-0.362520px;}
.ls27_c00045{letter-spacing:-0.114480px;}
.ls13_c00045{letter-spacing:0.000000px;}
.ls25_c00045{letter-spacing:0.166920px;}
.ls1_c00045{letter-spacing:0.234840px;}
.lsc_c00045{letter-spacing:0.248040px;}
.lsa_c00045{letter-spacing:0.410880px;}
.ls8_c00045{letter-spacing:0.616920px;}
.ls7_c00045{letter-spacing:0.674160px;}
.ls5_c00045{letter-spacing:0.820440px;}
.ls22_c00045{letter-spacing:0.943740px;}
.lse_c00045{letter-spacing:0.969420px;}
.ls20_c00045{letter-spacing:0.979440px;}
.ls3_c00045{letter-spacing:0.985800px;}
.ls4_c00045{letter-spacing:1.004880px;}
.ls11_c00045{letter-spacing:1.043040px;}
.ls9_c00045{letter-spacing:1.132080px;}
.ls17_c00045{letter-spacing:1.170030px;}
.lsd_c00045{letter-spacing:1.335600px;}
.ls10_c00045{letter-spacing:1.481880px;}
.ls2_c00045{letter-spacing:1.590000px;}
.ls12_c00045{letter-spacing:1.609560px;}
.ls2a_c00045{letter-spacing:1.620030px;}
.lsf_c00045{letter-spacing:1.637100px;}
.ls6_c00045{letter-spacing:1.761720px;}
.lsb_c00045{letter-spacing:1.774440px;}
.ls0_c00045{letter-spacing:1.848240px;}
.ls1a_c00045{letter-spacing:1.920030px;}
.ls23_c00045{letter-spacing:2.100000px;}
.ls1c_c00045{letter-spacing:2.190030px;}
.ls24_c00045{letter-spacing:2.790000px;}
.ls15_c00045{letter-spacing:2.940000px;}
.ls21_c00045{letter-spacing:3.180000px;}
.ls14_c00045{letter-spacing:3.330000px;}
.ls18_c00045{letter-spacing:3.840000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{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__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00045{word-spacing:0.000000px;}
.ws0_c00045{word-spacing:43.546406px;}
._8_c00045{margin-left:-4.404120px;}
._0_c00045{margin-left:-1.986240px;}
._4_c00045{width:1.176600px;}
._2_c00045{width:2.289600px;}
._3_c00045{width:5.991120px;}
._5_c00045{width:8.708280px;}
._1_c00045{width:11.189760px;}
._6_c00045{width:12.493320px;}
._7_c00045{width:14.044080px;}
.fc0_c00045{color:transparent;}
.fs17_c00045{font-size:12.960000px;}
.fsc_c00045{font-size:17.280000px;}
.fsb_c00045{font-size:21.000600px;}
.fs7_c00045{font-size:23.400600px;}
.fs16_c00045{font-size:32.400600px;}
.fs5_c00045{font-size:33.000600px;}
.fs11_c00045{font-size:35.400600px;}
.fsa_c00045{font-size:38.400600px;}
.fs14_c00045{font-size:42.000000px;}
.fsf_c00045{font-size:43.800600px;}
.fsd_c00045{font-size:49.800000px;}
.fs6_c00045{font-size:50.400000px;}
.fs15_c00045{font-size:55.800000px;}
.fs9_c00045{font-size:57.600000px;}
.fs4_c00045{font-size:58.800000px;}
.fs0_c00045{font-size:61.200000px;}
.fs10_c00045{font-size:61.800000px;}
.fs2_c00045{font-size:63.360000px;}
.fs12_c00045{font-size:63.600000px;}
.fs13_c00045{font-size:64.200000px;}
.fs18_c00045{font-size:64.800000px;}
.fse_c00045{font-size:66.000000px;}
.fs3_c00045{font-size:66.600000px;}
.fs1_c00045{font-size:75.600000px;}
.fs8_c00045{font-size:76.800000px;}
.y0_c00045{bottom:0.000000px;}
.y15_c00045{bottom:64.815000px;}
.y14_c00045{bottom:123.120000px;}
.y13_c00045{bottom:139.680000px;}
.y12_c00045{bottom:142.560000px;}
.y11_c00045{bottom:160.200000px;}
.ye_c00045{bottom:249.840000px;}
.yd_c00045{bottom:256.335000px;}
.yc_c00045{bottom:270.720000px;}
.yb_c00045{bottom:283.695000px;}
.ya_c00045{bottom:300.255000px;}
.y9_c00045{bottom:308.535000px;}
.y8_c00045{bottom:311.055000px;}
.y7_c00045{bottom:333.375000px;}
.y6_c00045{bottom:351.720000px;}
.y5_c00045{bottom:357.135000px;}
.y4_c00045{bottom:377.295000px;}
.y3_c00045{bottom:387.015000px;}
.y2_c00045{bottom:695.175000px;}
.y10_c00045{bottom:746.640000px;}
.yf_c00045{bottom:1039.695000px;}
.y1_c00045{bottom:1188.375000px;}
.h19_c00045{height:8.631360px;}
.hf_c00045{height:11.508480px;}
.he_c00045{height:20.610940px;}
.h9_c00045{height:22.966409px;}
.h18_c00045{height:33.792813px;}
.h7_c00045{height:34.418595px;}
.hd_c00045{height:37.688089px;}
.hb_c00045{height:38.361600px;}
.h4_c00045{height:42.197760px;}
.h12_c00045{height:42.987894px;}
.h16_c00045{height:43.804688px;}
.h10_c00045{height:48.875977px;}
.h8_c00045{height:52.565625px;}
.h17_c00045{height:54.764648px;}
.hc_c00045{height:56.531250px;}
.h2_c00045{height:60.064453px;}
.h6_c00045{height:61.326563px;}
.h14_c00045{height:62.419922px;}
.h15_c00045{height:62.977441px;}
.h1a_c00045{height:63.597656px;}
.h13_c00045{height:64.455469px;}
.h11_c00045{height:64.775391px;}
.h5_c00045{height:65.364258px;}
.h3_c00045{height:78.848437px;}
.ha_c00045{height:80.100000px;}
.h1_c00045{height:1263.000000px;}
.h0_c00045{height:1263.240000px;}
.w1_c00045{width:892.500000px;}
.w0_c00045{width:892.800000px;}
.x0_c00045{left:0.000000px;}
.x13_c00045{left:124.830000px;}
.x1_c00045{left:126.915000px;}
.x14_c00045{left:132.285000px;}
.x15_c00045{left:139.605000px;}
.x16_c00045{left:144.150000px;}
.x17_c00045{left:148.560000px;}
.x18_c00045{left:170.325000px;}
.x19_c00045{left:186.765000px;}
.x1a_c00045{left:194.775000px;}
.xe_c00045{left:204.660000px;}
.xf_c00045{left:230.700000px;}
.x10_c00045{left:258.105000px;}
.x2_c00045{left:313.365000px;}
.x1b_c00045{left:336.525000px;}
.x1c_c00045{left:360.630000px;}
.x3_c00045{left:393.495000px;}
.x4_c00045{left:422.610000px;}
.x23_c00045{left:431.100000px;}
.x7_c00045{left:447.645000px;}
.x6_c00045{left:449.175000px;}
.x9_c00045{left:452.535000px;}
.x8_c00045{left:453.840000px;}
.x5_c00045{left:454.905000px;}
.x1d_c00045{left:485.865000px;}
.x11_c00045{left:507.030000px;}
.x1e_c00045{left:508.965000px;}
.x1f_c00045{left:520.830000px;}
.x12_c00045{left:552.150000px;}
.xa_c00045{left:576.345000px;}
.x20_c00045{left:584.565000px;}
.x21_c00045{left:639.570000px;}
.xc_c00045{left:666.195000px;}
.x22_c00045{left:677.880000px;}
.xd_c00045{left:685.575000px;}
.xb_c00045{left:693.345000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls2b_c00045{letter-spacing:-2.016000pt;}
.ls26_c00045{letter-spacing:-1.978667pt;}
.ls19_c00045{letter-spacing:-1.792000pt;}
.ls16_c00045{letter-spacing:-1.568000pt;}
.ls1b_c00045{letter-spacing:-1.549333pt;}
.ls1d_c00045{letter-spacing:-1.317227pt;}
.ls28_c00045{letter-spacing:-1.272000pt;}
.ls29_c00045{letter-spacing:-1.008019pt;}
.ls1f_c00045{letter-spacing:-0.525760pt;}
.ls1e_c00045{letter-spacing:-0.322240pt;}
.ls27_c00045{letter-spacing:-0.101760pt;}
.ls13_c00045{letter-spacing:0.000000pt;}
.ls25_c00045{letter-spacing:0.148373pt;}
.ls1_c00045{letter-spacing:0.208747pt;}
.lsc_c00045{letter-spacing:0.220480pt;}
.lsa_c00045{letter-spacing:0.365227pt;}
.ls8_c00045{letter-spacing:0.548373pt;}
.ls7_c00045{letter-spacing:0.599253pt;}
.ls5_c00045{letter-spacing:0.729280pt;}
.ls22_c00045{letter-spacing:0.838880pt;}
.lse_c00045{letter-spacing:0.861707pt;}
.ls20_c00045{letter-spacing:0.870613pt;}
.ls3_c00045{letter-spacing:0.876267pt;}
.ls4_c00045{letter-spacing:0.893227pt;}
.ls11_c00045{letter-spacing:0.927147pt;}
.ls9_c00045{letter-spacing:1.006293pt;}
.ls17_c00045{letter-spacing:1.040027pt;}
.lsd_c00045{letter-spacing:1.187200pt;}
.ls10_c00045{letter-spacing:1.317227pt;}
.ls2_c00045{letter-spacing:1.413333pt;}
.ls12_c00045{letter-spacing:1.430720pt;}
.ls2a_c00045{letter-spacing:1.440027pt;}
.lsf_c00045{letter-spacing:1.455200pt;}
.ls6_c00045{letter-spacing:1.565973pt;}
.lsb_c00045{letter-spacing:1.577280pt;}
.ls0_c00045{letter-spacing:1.642880pt;}
.ls1a_c00045{letter-spacing:1.706693pt;}
.ls23_c00045{letter-spacing:1.866667pt;}
.ls1c_c00045{letter-spacing:1.946693pt;}
.ls24_c00045{letter-spacing:2.480000pt;}
.ls15_c00045{letter-spacing:2.613333pt;}
.ls21_c00045{letter-spacing:2.826667pt;}
.ls14_c00045{letter-spacing:2.960000pt;}
.ls18_c00045{letter-spacing:3.413333pt;}
.ws1_c00045{word-spacing:0.000000pt;}
.ws0_c00045{word-spacing:38.707917pt;}
._8_c00045{margin-left:-3.914773pt;}
._0_c00045{margin-left:-1.765547pt;}
._4_c00045{width:1.045867pt;}
._2_c00045{width:2.035200pt;}
._3_c00045{width:5.325440pt;}
._5_c00045{width:7.740693pt;}
._1_c00045{width:9.946453pt;}
._6_c00045{width:11.105173pt;}
._7_c00045{width:12.483627pt;}
.fs17_c00045{font-size:11.520000pt;}
.fsc_c00045{font-size:15.360000pt;}
.fsb_c00045{font-size:18.667200pt;}
.fs7_c00045{font-size:20.800533pt;}
.fs16_c00045{font-size:28.800533pt;}
.fs5_c00045{font-size:29.333867pt;}
.fs11_c00045{font-size:31.467200pt;}
.fsa_c00045{font-size:34.133867pt;}
.fs14_c00045{font-size:37.333333pt;}
.fsf_c00045{font-size:38.933867pt;}
.fsd_c00045{font-size:44.266667pt;}
.fs6_c00045{font-size:44.800000pt;}
.fs15_c00045{font-size:49.600000pt;}
.fs9_c00045{font-size:51.200000pt;}
.fs4_c00045{font-size:52.266667pt;}
.fs0_c00045{font-size:54.400000pt;}
.fs10_c00045{font-size:54.933333pt;}
.fs2_c00045{font-size:56.320000pt;}
.fs12_c00045{font-size:56.533333pt;}
.fs13_c00045{font-size:57.066667pt;}
.fs18_c00045{font-size:57.600000pt;}
.fse_c00045{font-size:58.666667pt;}
.fs3_c00045{font-size:59.200000pt;}
.fs1_c00045{font-size:67.200000pt;}
.fs8_c00045{font-size:68.266667pt;}
.y0_c00045{bottom:0.000000pt;}
.y15_c00045{bottom:57.613333pt;}
.y14_c00045{bottom:109.440000pt;}
.y13_c00045{bottom:124.160000pt;}
.y12_c00045{bottom:126.720000pt;}
.y11_c00045{bottom:142.400000pt;}
.ye_c00045{bottom:222.080000pt;}
.yd_c00045{bottom:227.853333pt;}
.yc_c00045{bottom:240.640000pt;}
.yb_c00045{bottom:252.173333pt;}
.ya_c00045{bottom:266.893333pt;}
.y9_c00045{bottom:274.253333pt;}
.y8_c00045{bottom:276.493333pt;}
.y7_c00045{bottom:296.333333pt;}
.y6_c00045{bottom:312.640000pt;}
.y5_c00045{bottom:317.453333pt;}
.y4_c00045{bottom:335.373333pt;}
.y3_c00045{bottom:344.013333pt;}
.y2_c00045{bottom:617.933333pt;}
.y10_c00045{bottom:663.680000pt;}
.yf_c00045{bottom:924.173333pt;}
.y1_c00045{bottom:1056.333333pt;}
.h19_c00045{height:7.672320pt;}
.hf_c00045{height:10.229760pt;}
.he_c00045{height:18.320836pt;}
.h9_c00045{height:20.414586pt;}
.h18_c00045{height:30.038056pt;}
.h7_c00045{height:30.594306pt;}
.hd_c00045{height:33.500523pt;}
.hb_c00045{height:34.099200pt;}
.h4_c00045{height:37.509120pt;}
.h12_c00045{height:38.211461pt;}
.h16_c00045{height:38.937500pt;}
.h10_c00045{height:43.445313pt;}
.h8_c00045{height:46.725000pt;}
.h17_c00045{height:48.679688pt;}
.hc_c00045{height:50.250000pt;}
.h2_c00045{height:53.390625pt;}
.h6_c00045{height:54.512500pt;}
.h14_c00045{height:55.484375pt;}
.h15_c00045{height:55.979948pt;}
.h1a_c00045{height:56.531250pt;}
.h13_c00045{height:57.293750pt;}
.h11_c00045{height:57.578125pt;}
.h5_c00045{height:58.101562pt;}
.h3_c00045{height:70.087500pt;}
.ha_c00045{height:71.200000pt;}
.h1_c00045{height:1122.666667pt;}
.h0_c00045{height:1122.880000pt;}
.w1_c00045{width:793.333333pt;}
.w0_c00045{width:793.600000pt;}
.x0_c00045{left:0.000000pt;}
.x13_c00045{left:110.960000pt;}
.x1_c00045{left:112.813333pt;}
.x14_c00045{left:117.586667pt;}
.x15_c00045{left:124.093333pt;}
.x16_c00045{left:128.133333pt;}
.x17_c00045{left:132.053333pt;}
.x18_c00045{left:151.400000pt;}
.x19_c00045{left:166.013333pt;}
.x1a_c00045{left:173.133333pt;}
.xe_c00045{left:181.920000pt;}
.xf_c00045{left:205.066667pt;}
.x10_c00045{left:229.426667pt;}
.x2_c00045{left:278.546667pt;}
.x1b_c00045{left:299.133333pt;}
.x1c_c00045{left:320.560000pt;}
.x3_c00045{left:349.773333pt;}
.x4_c00045{left:375.653333pt;}
.x23_c00045{left:383.200000pt;}
.x7_c00045{left:397.906667pt;}
.x6_c00045{left:399.266667pt;}
.x9_c00045{left:402.253333pt;}
.x8_c00045{left:403.413333pt;}
.x5_c00045{left:404.360000pt;}
.x1d_c00045{left:431.880000pt;}
.x11_c00045{left:450.693333pt;}
.x1e_c00045{left:452.413333pt;}
.x1f_c00045{left:462.960000pt;}
.x12_c00045{left:490.800000pt;}
.xa_c00045{left:512.306667pt;}
.x20_c00045{left:519.613333pt;}
.x21_c00045{left:568.506667pt;}
.xc_c00045{left:592.173333pt;}
.x22_c00045{left:602.560000pt;}
.xd_c00045{left:609.400000pt;}
.xb_c00045{left:616.306667pt;}
}





/* 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_c00046 {
    display:none;
  }
  .loading-indicator_c00046.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00046 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_c00046 { 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_c00046" -> "#page-container .classname_c00046")
 */
.pf_c00046 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00046 { /* 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_c00046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00046 { /* 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_c00046 { /* 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_c00046 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00046 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00046 {overflow:visible;}
  }
}
.c_c00046 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00046 { /* 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_c00046:after { /* webkit #35443 */
  content: '';
}
.t_c00046:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00046 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 */
}
.__c00046 { /* 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_c00046 { /* info for Javascript */
  display:none;
}
.l_c00046 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00046 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00046 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00046: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_c00046 {
    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_c00046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00046.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_c00046 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00046;src:url('chunks/assets/font_02576f87f9fd5dc09eba11a5.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.284668;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_c00046;src:url('chunks/assets/font_1934afe2c07342d418dc983b.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.284180;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_c00046;src:url('chunks/assets/font_cb5e11628a70677997fd481a.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;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;}
.m6_c00046{transform:matrix(0.214643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214643,0.000000,0.000000,0.250000,0,0);}
.m8_c00046{transform:matrix(0.243258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243258,0.000000,0.000000,0.250000,0,0);}
.m4_c00046{transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);}
.m1_c00046{transform:matrix(0.245799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245799,0.000000,0.000000,0.250000,0,0);}
.m2_c00046{transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);}
.m5_c00046{transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);}
.m3_c00046{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m7_c00046{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);}
.m0_c00046{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);}
.v0_c00046{vertical-align:0.000000px;}
.ls24_c00046{letter-spacing:-2.562000px;}
.ls63_c00046{letter-spacing:-2.518080px;}
.ls93_c00046{letter-spacing:-2.478000px;}
.ls8b_c00046{letter-spacing:-2.474160px;}
.ls6d_c00046{letter-spacing:-2.400960px;}
.ls27_c00046{letter-spacing:-2.130120px;}
.ls83_c00046{letter-spacing:-2.042280px;}
.ls35_c00046{letter-spacing:-1.873920px;}
.ls40_c00046{letter-spacing:-1.844640px;}
.ls50_c00046{letter-spacing:-1.800720px;}
.ls3f_c00046{letter-spacing:-1.544520px;}
.ls4d_c00046{letter-spacing:-1.515240px;}
.ls81_c00046{letter-spacing:-1.493280px;}
.ls3a_c00046{letter-spacing:-1.456680px;}
.ls71_c00046{letter-spacing:-1.449360px;}
.ls95_c00046{letter-spacing:-1.346880px;}
.ls5d_c00046{letter-spacing:-1.339560px;}
.ls84_c00046{letter-spacing:-1.332240px;}
.ls44_c00046{letter-spacing:-1.317600px;}
.ls28_c00046{letter-spacing:-1.302960px;}
.ls66_c00046{letter-spacing:-1.295640px;}
.ls8d_c00046{letter-spacing:-1.207800px;}
.ls30_c00046{letter-spacing:-1.185840px;}
.ls45_c00046{letter-spacing:-1.156560px;}
.ls49_c00046{letter-spacing:-1.149240px;}
.ls5b_c00046{letter-spacing:-1.127280px;}
.ls55_c00046{letter-spacing:-1.119960px;}
.ls38_c00046{letter-spacing:-1.112640px;}
.ls53_c00046{letter-spacing:-1.105320px;}
.ls4a_c00046{letter-spacing:-1.076040px;}
.ls34_c00046{letter-spacing:-1.061400px;}
.ls79_c00046{letter-spacing:-1.002840px;}
.ls75_c00046{letter-spacing:-0.988200px;}
.ls76_c00046{letter-spacing:-0.966240px;}
.ls2c_c00046{letter-spacing:-0.958920px;}
.ls65_c00046{letter-spacing:-0.951600px;}
.ls48_c00046{letter-spacing:-0.922320px;}
.ls8f_c00046{letter-spacing:-0.915000px;}
.ls8e_c00046{letter-spacing:-0.907680px;}
.ls70_c00046{letter-spacing:-0.900360px;}
.ls2e_c00046{letter-spacing:-0.885720px;}
.ls37_c00046{letter-spacing:-0.878400px;}
.ls7c_c00046{letter-spacing:-0.871080px;}
.ls5e_c00046{letter-spacing:-0.863760px;}
.ls2d_c00046{letter-spacing:-0.856440px;}
.ls80_c00046{letter-spacing:-0.841800px;}
.ls91_c00046{letter-spacing:-0.827160px;}
.ls43_c00046{letter-spacing:-0.805200px;}
.ls2a_c00046{letter-spacing:-0.797880px;}
.ls58_c00046{letter-spacing:-0.753960px;}
.ls54_c00046{letter-spacing:-0.732000px;}
.ls8a_c00046{letter-spacing:-0.724680px;}
.ls88_c00046{letter-spacing:-0.717360px;}
.ls2f_c00046{letter-spacing:-0.702720px;}
.ls41_c00046{letter-spacing:-0.695400px;}
.ls60_c00046{letter-spacing:-0.688080px;}
.ls5a_c00046{letter-spacing:-0.673440px;}
.ls3b_c00046{letter-spacing:-0.666120px;}
.ls26_c00046{letter-spacing:-0.636840px;}
.ls68_c00046{letter-spacing:-0.629520px;}
.ls6b_c00046{letter-spacing:-0.622200px;}
.ls6e_c00046{letter-spacing:-0.614880px;}
.ls32_c00046{letter-spacing:-0.600240px;}
.ls82_c00046{letter-spacing:-0.592920px;}
.ls5c_c00046{letter-spacing:-0.570960px;}
.ls36_c00046{letter-spacing:-0.563640px;}
.ls7d_c00046{letter-spacing:-0.541680px;}
.ls3e_c00046{letter-spacing:-0.534360px;}
.ls90_c00046{letter-spacing:-0.527040px;}
.ls6f_c00046{letter-spacing:-0.505080px;}
.ls78_c00046{letter-spacing:-0.497760px;}
.ls4b_c00046{letter-spacing:-0.483120px;}
.ls64_c00046{letter-spacing:-0.475800px;}
.ls96_c00046{letter-spacing:-0.470400px;}
.ls7a_c00046{letter-spacing:-0.468480px;}
.ls42_c00046{letter-spacing:-0.461160px;}
.ls25_c00046{letter-spacing:-0.453840px;}
.ls22_c00046{letter-spacing:-0.446520px;}
.ls61_c00046{letter-spacing:-0.439200px;}
.ls51_c00046{letter-spacing:-0.431880px;}
.ls2b_c00046{letter-spacing:-0.417240px;}
.ls39_c00046{letter-spacing:-0.409920px;}
.ls29_c00046{letter-spacing:-0.402600px;}
.ls89_c00046{letter-spacing:-0.395280px;}
.ls94_c00046{letter-spacing:-0.387960px;}
.ls59_c00046{letter-spacing:-0.380640px;}
.ls47_c00046{letter-spacing:-0.373320px;}
.ls72_c00046{letter-spacing:-0.358680px;}
.ls74_c00046{letter-spacing:-0.344040px;}
.ls4c_c00046{letter-spacing:-0.329400px;}
.ls3c_c00046{letter-spacing:-0.322080px;}
.ls4e_c00046{letter-spacing:-0.285480px;}
.ls33_c00046{letter-spacing:-0.278160px;}
.ls7f_c00046{letter-spacing:-0.270840px;}
.ls77_c00046{letter-spacing:-0.241560px;}
.ls7e_c00046{letter-spacing:-0.234240px;}
.ls7b_c00046{letter-spacing:-0.226920px;}
.ls6c_c00046{letter-spacing:-0.219600px;}
.ls69_c00046{letter-spacing:-0.204960px;}
.ls52_c00046{letter-spacing:-0.197640px;}
.ls6a_c00046{letter-spacing:-0.183000px;}
.ls86_c00046{letter-spacing:-0.175680px;}
.ls56_c00046{letter-spacing:-0.168360px;}
.ls8c_c00046{letter-spacing:-0.146400px;}
.ls46_c00046{letter-spacing:-0.139080px;}
.ls85_c00046{letter-spacing:-0.131760px;}
.ls57_c00046{letter-spacing:-0.117120px;}
.ls3d_c00046{letter-spacing:-0.102480px;}
.ls23_c00046{letter-spacing:-0.073200px;}
.ls87_c00046{letter-spacing:-0.065880px;}
.ls4f_c00046{letter-spacing:-0.058560px;}
.ls5f_c00046{letter-spacing:-0.036600px;}
.ls92_c00046{letter-spacing:-0.021960px;}
.ls31_c00046{letter-spacing:0.000000px;}
.ls73_c00046{letter-spacing:0.043920px;}
.ls6_c00046{letter-spacing:0.051240px;}
.ls14_c00046{letter-spacing:0.073200px;}
.ls1_c00046{letter-spacing:0.095160px;}
.ls7_c00046{letter-spacing:0.109800px;}
.ls20_c00046{letter-spacing:0.124440px;}
.lsd_c00046{letter-spacing:0.139080px;}
.ls62_c00046{letter-spacing:0.184080px;}
.ls1b_c00046{letter-spacing:0.248880px;}
.lsc_c00046{letter-spacing:0.285480px;}
.lsb_c00046{letter-spacing:0.290280px;}
.lse_c00046{letter-spacing:0.292800px;}
.ls3_c00046{letter-spacing:0.297360px;}
.lsf_c00046{letter-spacing:0.336720px;}
.ls5_c00046{letter-spacing:0.344040px;}
.ls2_c00046{letter-spacing:0.361080px;}
.ls4_c00046{letter-spacing:0.382320px;}
.ls13_c00046{letter-spacing:0.431880px;}
.ls19_c00046{letter-spacing:0.446520px;}
.ls1a_c00046{letter-spacing:0.483120px;}
.ls15_c00046{letter-spacing:0.505080px;}
.ls1d_c00046{letter-spacing:0.531000px;}
.ls18_c00046{letter-spacing:0.545160px;}
.ls16_c00046{letter-spacing:0.578280px;}
.ls67_c00046{letter-spacing:0.580560px;}
.ls10_c00046{letter-spacing:0.587640px;}
.ls1c_c00046{letter-spacing:0.630120px;}
.ls8_c00046{letter-spacing:0.757560px;}
.ls17_c00046{letter-spacing:0.785880px;}
.ls12_c00046{letter-spacing:0.995520px;}
.ls9_c00046{letter-spacing:1.040760px;}
.ls11_c00046{letter-spacing:1.111560px;}
.ls1f_c00046{letter-spacing:1.437240px;}
.ls21_c00046{letter-spacing:1.532640px;}
.ls0_c00046{letter-spacing:1.563540px;}
.ls1e_c00046{letter-spacing:1.670880px;}
.lsa_c00046{letter-spacing:1.771440px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{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__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:0.000000px;}
._1a_c00046{margin-left:-7.677840px;}
._0_c00046{margin-left:-3.077640px;}
._14_c00046{margin-left:-1.969080px;}
._7_c00046{width:2.013000px;}
._a_c00046{width:3.660000px;}
._5_c00046{width:5.343600px;}
._8_c00046{width:6.441600px;}
._12_c00046{width:7.878480px;}
._6_c00046{width:9.684360px;}
._9_c00046{width:11.004840px;}
._2_c00046{width:12.414720px;}
._1_c00046{width:14.494440px;}
._4_c00046{width:15.922920px;}
._10_c00046{width:17.109720px;}
._3_c00046{width:19.630440px;}
._13_c00046{width:20.893080px;}
._11_c00046{width:23.802840px;}
._15_c00046{width:25.290600px;}
._18_c00046{width:27.523200px;}
._17_c00046{width:28.606560px;}
._16_c00046{width:29.997360px;}
._e_c00046{width:32.925360px;}
._d_c00046{width:34.960320px;}
._c_c00046{width:37.727280px;}
._b_c00046{width:38.913120px;}
._f_c00046{width:53.841360px;}
._19_c00046{width:71.413920px;}
.fc0_c00046{color:transparent;}
.fs3_c00046{font-size:28.800600px;}
.fs4_c00046{font-size:58.800000px;}
.fs0_c00046{font-size:61.800000px;}
.fs2_c00046{font-size:70.800000px;}
.fs1_c00046{font-size:73.200000px;}
.y0_c00046{bottom:0.000000px;}
.y22_c00046{bottom:69.480015px;}
.y21_c00046{bottom:193.331415px;}
.y20_c00046{bottom:224.295015px;}
.y1f_c00046{bottom:224.297415px;}
.y1e_c00046{bottom:254.891415px;}
.y1d_c00046{bottom:285.863715px;}
.y1c_c00046{bottom:317.175015px;}
.y1a_c00046{bottom:379.072815px;}
.y1b_c00046{bottom:379.080015px;}
.y19_c00046{bottom:410.054715px;}
.y18_c00046{bottom:440.995515px;}
.y17_c00046{bottom:471.593115px;}
.y16_c00046{bottom:502.589415px;}
.y15_c00046{bottom:532.821015px;}
.y14_c00046{bottom:564.480015px;}
.y13_c00046{bottom:626.415015px;}
.y12_c00046{bottom:688.331415px;}
.y11_c00046{bottom:719.295015px;}
.yf_c00046{bottom:750.250215px;}
.y10_c00046{bottom:750.255015px;}
.ye_c00046{bottom:781.195515px;}
.yd_c00046{bottom:811.811415px;}
.yc_c00046{bottom:842.764215px;}
.yb_c00046{bottom:904.673115px;}
.ya_c00046{bottom:935.651415px;}
.y8_c00046{bottom:966.614715px;}
.y9_c00046{bottom:966.615015px;}
.y6_c00046{bottom:997.555515px;}
.y7_c00046{bottom:997.560015px;}
.y5_c00046{bottom:1059.135015px;}
.y4_c00046{bottom:1079.295015px;}
.y3_c00046{bottom:1089.719415px;}
.y2_c00046{bottom:1121.415015px;}
.y1_c00046{bottom:1198.455015px;}
.h5_c00046{height:30.038126px;}
.hb_c00046{height:57.708984px;}
.h2_c00046{height:60.653320px;}
.h9_c00046{height:69.451758px;}
.h3_c00046{height:71.841797px;}
.h6_c00046{height:71.842997px;}
.h4_c00046{height:71.844197px;}
.h7_c00046{height:71.856197px;}
.ha_c00046{height:71.859797px;}
.h8_c00046{height:71.884997px;}
.h1_c00046{height:1263.000000px;}
.h0_c00046{height:1263.240015px;}
.w1_c00046{width:892.500000px;}
.w0_c00046{width:892.800015px;}
.x0_c00046{left:0.000000px;}
.x23_c00046{left:116.093715px;}
.x19_c00046{left:117.188115px;}
.x15_c00046{left:118.275015px;}
.xe_c00046{left:119.329815px;}
.xb_c00046{left:120.780615px;}
.x2_c00046{left:121.815015px;}
.x1_c00046{left:123.315015px;}
.x1c_c00046{left:170.805015px;}
.x16_c00046{left:171.975015px;}
.x8_c00046{left:174.482115px;}
.x13_c00046{left:208.635015px;}
.x14_c00046{left:231.660015px;}
.x3_c00046{left:251.805015px;}
.x4_c00046{left:277.380015px;}
.x17_c00046{left:317.625015px;}
.x1d_c00046{left:322.725015px;}
.x18_c00046{left:338.040015px;}
.x1e_c00046{left:343.680015px;}
.x1a_c00046{left:403.740015px;}
.x1b_c00046{left:420.855015px;}
.x6_c00046{left:422.115015px;}
.x24_c00046{left:424.275015px;}
.x7_c00046{left:443.730015px;}
.x1f_c00046{left:459.525015px;}
.xf_c00046{left:461.370015px;}
.x10_c00046{left:479.475015px;}
.x20_c00046{left:480.480015px;}
.x9_c00046{left:624.450015px;}
.xc_c00046{left:639.930015px;}
.xa_c00046{left:649.980015px;}
.x21_c00046{left:652.155015px;}
.x11_c00046{left:658.995015px;}
.xd_c00046{left:661.500015px;}
.x22_c00046{left:673.530015px;}
.x12_c00046{left:681.855015px;}
.x5_c00046{left:702.885015px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls24_c00046{letter-spacing:-2.277333pt;}
.ls63_c00046{letter-spacing:-2.238293pt;}
.ls93_c00046{letter-spacing:-2.202667pt;}
.ls8b_c00046{letter-spacing:-2.199253pt;}
.ls6d_c00046{letter-spacing:-2.134187pt;}
.ls27_c00046{letter-spacing:-1.893440pt;}
.ls83_c00046{letter-spacing:-1.815360pt;}
.ls35_c00046{letter-spacing:-1.665707pt;}
.ls40_c00046{letter-spacing:-1.639680pt;}
.ls50_c00046{letter-spacing:-1.600640pt;}
.ls3f_c00046{letter-spacing:-1.372907pt;}
.ls4d_c00046{letter-spacing:-1.346880pt;}
.ls81_c00046{letter-spacing:-1.327360pt;}
.ls3a_c00046{letter-spacing:-1.294827pt;}
.ls71_c00046{letter-spacing:-1.288320pt;}
.ls95_c00046{letter-spacing:-1.197227pt;}
.ls5d_c00046{letter-spacing:-1.190720pt;}
.ls84_c00046{letter-spacing:-1.184213pt;}
.ls44_c00046{letter-spacing:-1.171200pt;}
.ls28_c00046{letter-spacing:-1.158187pt;}
.ls66_c00046{letter-spacing:-1.151680pt;}
.ls8d_c00046{letter-spacing:-1.073600pt;}
.ls30_c00046{letter-spacing:-1.054080pt;}
.ls45_c00046{letter-spacing:-1.028053pt;}
.ls49_c00046{letter-spacing:-1.021547pt;}
.ls5b_c00046{letter-spacing:-1.002027pt;}
.ls55_c00046{letter-spacing:-0.995520pt;}
.ls38_c00046{letter-spacing:-0.989013pt;}
.ls53_c00046{letter-spacing:-0.982507pt;}
.ls4a_c00046{letter-spacing:-0.956480pt;}
.ls34_c00046{letter-spacing:-0.943467pt;}
.ls79_c00046{letter-spacing:-0.891413pt;}
.ls75_c00046{letter-spacing:-0.878400pt;}
.ls76_c00046{letter-spacing:-0.858880pt;}
.ls2c_c00046{letter-spacing:-0.852373pt;}
.ls65_c00046{letter-spacing:-0.845867pt;}
.ls48_c00046{letter-spacing:-0.819840pt;}
.ls8f_c00046{letter-spacing:-0.813333pt;}
.ls8e_c00046{letter-spacing:-0.806827pt;}
.ls70_c00046{letter-spacing:-0.800320pt;}
.ls2e_c00046{letter-spacing:-0.787307pt;}
.ls37_c00046{letter-spacing:-0.780800pt;}
.ls7c_c00046{letter-spacing:-0.774293pt;}
.ls5e_c00046{letter-spacing:-0.767787pt;}
.ls2d_c00046{letter-spacing:-0.761280pt;}
.ls80_c00046{letter-spacing:-0.748267pt;}
.ls91_c00046{letter-spacing:-0.735253pt;}
.ls43_c00046{letter-spacing:-0.715733pt;}
.ls2a_c00046{letter-spacing:-0.709227pt;}
.ls58_c00046{letter-spacing:-0.670187pt;}
.ls54_c00046{letter-spacing:-0.650667pt;}
.ls8a_c00046{letter-spacing:-0.644160pt;}
.ls88_c00046{letter-spacing:-0.637653pt;}
.ls2f_c00046{letter-spacing:-0.624640pt;}
.ls41_c00046{letter-spacing:-0.618133pt;}
.ls60_c00046{letter-spacing:-0.611627pt;}
.ls5a_c00046{letter-spacing:-0.598613pt;}
.ls3b_c00046{letter-spacing:-0.592107pt;}
.ls26_c00046{letter-spacing:-0.566080pt;}
.ls68_c00046{letter-spacing:-0.559573pt;}
.ls6b_c00046{letter-spacing:-0.553067pt;}
.ls6e_c00046{letter-spacing:-0.546560pt;}
.ls32_c00046{letter-spacing:-0.533547pt;}
.ls82_c00046{letter-spacing:-0.527040pt;}
.ls5c_c00046{letter-spacing:-0.507520pt;}
.ls36_c00046{letter-spacing:-0.501013pt;}
.ls7d_c00046{letter-spacing:-0.481493pt;}
.ls3e_c00046{letter-spacing:-0.474987pt;}
.ls90_c00046{letter-spacing:-0.468480pt;}
.ls6f_c00046{letter-spacing:-0.448960pt;}
.ls78_c00046{letter-spacing:-0.442453pt;}
.ls4b_c00046{letter-spacing:-0.429440pt;}
.ls64_c00046{letter-spacing:-0.422933pt;}
.ls96_c00046{letter-spacing:-0.418133pt;}
.ls7a_c00046{letter-spacing:-0.416427pt;}
.ls42_c00046{letter-spacing:-0.409920pt;}
.ls25_c00046{letter-spacing:-0.403413pt;}
.ls22_c00046{letter-spacing:-0.396907pt;}
.ls61_c00046{letter-spacing:-0.390400pt;}
.ls51_c00046{letter-spacing:-0.383893pt;}
.ls2b_c00046{letter-spacing:-0.370880pt;}
.ls39_c00046{letter-spacing:-0.364373pt;}
.ls29_c00046{letter-spacing:-0.357867pt;}
.ls89_c00046{letter-spacing:-0.351360pt;}
.ls94_c00046{letter-spacing:-0.344853pt;}
.ls59_c00046{letter-spacing:-0.338347pt;}
.ls47_c00046{letter-spacing:-0.331840pt;}
.ls72_c00046{letter-spacing:-0.318827pt;}
.ls74_c00046{letter-spacing:-0.305813pt;}
.ls4c_c00046{letter-spacing:-0.292800pt;}
.ls3c_c00046{letter-spacing:-0.286293pt;}
.ls4e_c00046{letter-spacing:-0.253760pt;}
.ls33_c00046{letter-spacing:-0.247253pt;}
.ls7f_c00046{letter-spacing:-0.240747pt;}
.ls77_c00046{letter-spacing:-0.214720pt;}
.ls7e_c00046{letter-spacing:-0.208213pt;}
.ls7b_c00046{letter-spacing:-0.201707pt;}
.ls6c_c00046{letter-spacing:-0.195200pt;}
.ls69_c00046{letter-spacing:-0.182187pt;}
.ls52_c00046{letter-spacing:-0.175680pt;}
.ls6a_c00046{letter-spacing:-0.162667pt;}
.ls86_c00046{letter-spacing:-0.156160pt;}
.ls56_c00046{letter-spacing:-0.149653pt;}
.ls8c_c00046{letter-spacing:-0.130133pt;}
.ls46_c00046{letter-spacing:-0.123627pt;}
.ls85_c00046{letter-spacing:-0.117120pt;}
.ls57_c00046{letter-spacing:-0.104107pt;}
.ls3d_c00046{letter-spacing:-0.091093pt;}
.ls23_c00046{letter-spacing:-0.065067pt;}
.ls87_c00046{letter-spacing:-0.058560pt;}
.ls4f_c00046{letter-spacing:-0.052053pt;}
.ls5f_c00046{letter-spacing:-0.032533pt;}
.ls92_c00046{letter-spacing:-0.019520pt;}
.ls31_c00046{letter-spacing:0.000000pt;}
.ls73_c00046{letter-spacing:0.039040pt;}
.ls6_c00046{letter-spacing:0.045547pt;}
.ls14_c00046{letter-spacing:0.065067pt;}
.ls1_c00046{letter-spacing:0.084587pt;}
.ls7_c00046{letter-spacing:0.097600pt;}
.ls20_c00046{letter-spacing:0.110613pt;}
.lsd_c00046{letter-spacing:0.123627pt;}
.ls62_c00046{letter-spacing:0.163627pt;}
.ls1b_c00046{letter-spacing:0.221227pt;}
.lsc_c00046{letter-spacing:0.253760pt;}
.lsb_c00046{letter-spacing:0.258027pt;}
.lse_c00046{letter-spacing:0.260267pt;}
.ls3_c00046{letter-spacing:0.264320pt;}
.lsf_c00046{letter-spacing:0.299307pt;}
.ls5_c00046{letter-spacing:0.305813pt;}
.ls2_c00046{letter-spacing:0.320960pt;}
.ls4_c00046{letter-spacing:0.339840pt;}
.ls13_c00046{letter-spacing:0.383893pt;}
.ls19_c00046{letter-spacing:0.396907pt;}
.ls1a_c00046{letter-spacing:0.429440pt;}
.ls15_c00046{letter-spacing:0.448960pt;}
.ls1d_c00046{letter-spacing:0.472000pt;}
.ls18_c00046{letter-spacing:0.484587pt;}
.ls16_c00046{letter-spacing:0.514027pt;}
.ls67_c00046{letter-spacing:0.516053pt;}
.ls10_c00046{letter-spacing:0.522347pt;}
.ls1c_c00046{letter-spacing:0.560107pt;}
.ls8_c00046{letter-spacing:0.673387pt;}
.ls17_c00046{letter-spacing:0.698560pt;}
.ls12_c00046{letter-spacing:0.884907pt;}
.ls9_c00046{letter-spacing:0.925120pt;}
.ls11_c00046{letter-spacing:0.988053pt;}
.ls1f_c00046{letter-spacing:1.277547pt;}
.ls21_c00046{letter-spacing:1.362347pt;}
.ls0_c00046{letter-spacing:1.389813pt;}
.ls1e_c00046{letter-spacing:1.485227pt;}
.lsa_c00046{letter-spacing:1.574613pt;}
.ws0_c00046{word-spacing:0.000000pt;}
._1a_c00046{margin-left:-6.824747pt;}
._0_c00046{margin-left:-2.735680pt;}
._14_c00046{margin-left:-1.750293pt;}
._7_c00046{width:1.789333pt;}
._a_c00046{width:3.253333pt;}
._5_c00046{width:4.749867pt;}
._8_c00046{width:5.725867pt;}
._12_c00046{width:7.003093pt;}
._6_c00046{width:8.608320pt;}
._9_c00046{width:9.782080pt;}
._2_c00046{width:11.035307pt;}
._1_c00046{width:12.883947pt;}
._4_c00046{width:14.153707pt;}
._10_c00046{width:15.208640pt;}
._3_c00046{width:17.449280pt;}
._13_c00046{width:18.571627pt;}
._11_c00046{width:21.158080pt;}
._15_c00046{width:22.480533pt;}
._18_c00046{width:24.465067pt;}
._17_c00046{width:25.428053pt;}
._16_c00046{width:26.664320pt;}
._e_c00046{width:29.266987pt;}
._d_c00046{width:31.075840pt;}
._c_c00046{width:33.535360pt;}
._b_c00046{width:34.589440pt;}
._f_c00046{width:47.858987pt;}
._19_c00046{width:63.479040pt;}
.fs3_c00046{font-size:25.600533pt;}
.fs4_c00046{font-size:52.266667pt;}
.fs0_c00046{font-size:54.933333pt;}
.fs2_c00046{font-size:62.933333pt;}
.fs1_c00046{font-size:65.066667pt;}
.y0_c00046{bottom:0.000000pt;}
.y22_c00046{bottom:61.760013pt;}
.y21_c00046{bottom:171.850147pt;}
.y20_c00046{bottom:199.373347pt;}
.y1f_c00046{bottom:199.375480pt;}
.y1e_c00046{bottom:226.570147pt;}
.y1d_c00046{bottom:254.101080pt;}
.y1c_c00046{bottom:281.933347pt;}
.y1a_c00046{bottom:336.953613pt;}
.y1b_c00046{bottom:336.960013pt;}
.y19_c00046{bottom:364.493080pt;}
.y18_c00046{bottom:391.996013pt;}
.y17_c00046{bottom:419.193880pt;}
.y16_c00046{bottom:446.746147pt;}
.y15_c00046{bottom:473.618680pt;}
.y14_c00046{bottom:501.760013pt;}
.y13_c00046{bottom:556.813347pt;}
.y12_c00046{bottom:611.850147pt;}
.y11_c00046{bottom:639.373347pt;}
.yf_c00046{bottom:666.889080pt;}
.y10_c00046{bottom:666.893347pt;}
.ye_c00046{bottom:694.396013pt;}
.yd_c00046{bottom:721.610147pt;}
.yc_c00046{bottom:749.123747pt;}
.yb_c00046{bottom:804.153880pt;}
.ya_c00046{bottom:831.690147pt;}
.y8_c00046{bottom:859.213080pt;}
.y9_c00046{bottom:859.213347pt;}
.y6_c00046{bottom:886.716013pt;}
.y7_c00046{bottom:886.720013pt;}
.y5_c00046{bottom:941.453347pt;}
.y4_c00046{bottom:959.373347pt;}
.y3_c00046{bottom:968.639480pt;}
.y2_c00046{bottom:996.813347pt;}
.y1_c00046{bottom:1065.293347pt;}
.h5_c00046{height:26.700556pt;}
.hb_c00046{height:51.296875pt;}
.h2_c00046{height:53.914062pt;}
.h9_c00046{height:61.734896pt;}
.h3_c00046{height:63.859375pt;}
.h6_c00046{height:63.860442pt;}
.h4_c00046{height:63.861508pt;}
.h7_c00046{height:63.872175pt;}
.ha_c00046{height:63.875375pt;}
.h8_c00046{height:63.897775pt;}
.h1_c00046{height:1122.666667pt;}
.h0_c00046{height:1122.880013pt;}
.w1_c00046{width:793.333333pt;}
.w0_c00046{width:793.600013pt;}
.x0_c00046{left:0.000000pt;}
.x23_c00046{left:103.194413pt;}
.x19_c00046{left:104.167213pt;}
.x15_c00046{left:105.133347pt;}
.xe_c00046{left:106.070947pt;}
.xb_c00046{left:107.360547pt;}
.x2_c00046{left:108.280013pt;}
.x1_c00046{left:109.613347pt;}
.x1c_c00046{left:151.826680pt;}
.x16_c00046{left:152.866680pt;}
.x8_c00046{left:155.095213pt;}
.x13_c00046{left:185.453347pt;}
.x14_c00046{left:205.920013pt;}
.x3_c00046{left:223.826680pt;}
.x4_c00046{left:246.560013pt;}
.x17_c00046{left:282.333347pt;}
.x1d_c00046{left:286.866680pt;}
.x18_c00046{left:300.480013pt;}
.x1e_c00046{left:305.493347pt;}
.x1a_c00046{left:358.880013pt;}
.x1b_c00046{left:374.093347pt;}
.x6_c00046{left:375.213347pt;}
.x24_c00046{left:377.133347pt;}
.x7_c00046{left:394.426680pt;}
.x1f_c00046{left:408.466680pt;}
.xf_c00046{left:410.106680pt;}
.x10_c00046{left:426.200013pt;}
.x20_c00046{left:427.093347pt;}
.x9_c00046{left:555.066680pt;}
.xc_c00046{left:568.826680pt;}
.xa_c00046{left:577.760013pt;}
.x21_c00046{left:579.693347pt;}
.x11_c00046{left:585.773347pt;}
.xd_c00046{left:588.000013pt;}
.x22_c00046{left:598.693347pt;}
.x12_c00046{left:606.093347pt;}
.x5_c00046{left:624.786680pt;}
}





/* 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_c00047 {
    display:none;
  }
  .loading-indicator_c00047.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00047 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_c00047 { 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_c00047" -> "#page-container .classname_c00047")
 */
.pf_c00047 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00047 { /* 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_c00047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00047 { /* 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_c00047 { /* 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_c00047 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00047 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00047 {overflow:visible;}
  }
}
.c_c00047 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00047 { /* 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_c00047:after { /* webkit #35443 */
  content: '';
}
.t_c00047:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00047 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 */
}
.__c00047 { /* 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_c00047 { /* info for Javascript */
  display:none;
}
.l_c00047 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00047 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00047 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00047: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_c00047 {
    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_c00047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00047.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_c00047 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00047;src:url('chunks/assets/font_38bb61a7605fd78dfc3f8452.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.311035;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_c00047;src:url('chunks/assets/font_09b9859754eb3832f23a0292.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;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_c00047;src:url('chunks/assets/font_7508bfe4bd1c676635b99a1a.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.284668;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_c00047;src:url('chunks/assets/font_9b90b82100e6c47400e8f5c8.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:1.284180;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;}
.m1_c00047{transform:matrix(0.238919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238919,0.000000,0.000000,0.250000,0,0);}
.m2_c00047{transform:matrix(0.246520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246520,0.000000,0.000000,0.250000,0,0);}
.m3_c00047{transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);}
.m4_c00047{transform:matrix(0.247851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247851,0.000000,0.000000,0.250000,0,0);}
.m0_c00047{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);}
.v0_c00047{vertical-align:0.000000px;}
.lsf_c00047{letter-spacing:-2.331000px;}
.ls12_c00047{letter-spacing:-1.738260px;}
.ls14_c00047{letter-spacing:-1.724940px;}
.ls36_c00047{letter-spacing:-1.478520px;}
.ls31_c00047{letter-spacing:-1.198800px;}
.ls1d_c00047{letter-spacing:-1.172160px;}
.ls23_c00047{letter-spacing:-1.018980px;}
.ls19_c00047{letter-spacing:-0.959040px;}
.ls28_c00047{letter-spacing:-0.912420px;}
.ls35_c00047{letter-spacing:-0.879120px;}
.ls1b_c00047{letter-spacing:-0.825840px;}
.ls1c_c00047{letter-spacing:-0.772560px;}
.ls29_c00047{letter-spacing:-0.765900px;}
.ls1a_c00047{letter-spacing:-0.759240px;}
.ls11_c00047{letter-spacing:-0.732600px;}
.ls2a_c00047{letter-spacing:-0.719280px;}
.ls13_c00047{letter-spacing:-0.619380px;}
.ls18_c00047{letter-spacing:-0.606060px;}
.ls15_c00047{letter-spacing:-0.579420px;}
.ls33_c00047{letter-spacing:-0.546120px;}
.ls21_c00047{letter-spacing:-0.539460px;}
.ls10_c00047{letter-spacing:-0.519480px;}
.ls37_c00047{letter-spacing:-0.499500px;}
.ls1f_c00047{letter-spacing:-0.479520px;}
.ls2d_c00047{letter-spacing:-0.446220px;}
.ls22_c00047{letter-spacing:-0.439560px;}
.ls30_c00047{letter-spacing:-0.406260px;}
.ls1e_c00047{letter-spacing:-0.326340px;}
.ls27_c00047{letter-spacing:-0.319680px;}
.ls39_c00047{letter-spacing:-0.306360px;}
.ls2b_c00047{letter-spacing:-0.299700px;}
.ls2c_c00047{letter-spacing:-0.259740px;}
.ls2f_c00047{letter-spacing:-0.246420px;}
.ls16_c00047{letter-spacing:-0.206460px;}
.ls32_c00047{letter-spacing:-0.173160px;}
.ls24_c00047{letter-spacing:-0.156960px;}
.ls25_c00047{letter-spacing:-0.113220px;}
.ls17_c00047{letter-spacing:-0.098100px;}
.ls34_c00047{letter-spacing:-0.091560px;}
.ls26_c00047{letter-spacing:-0.039960px;}
.ls2e_c00047{letter-spacing:-0.039240px;}
.ls20_c00047{letter-spacing:-0.019980px;}
.lsd_c00047{letter-spacing:0.000000px;}
.ls1_c00047{letter-spacing:0.006540px;}
.lse_c00047{letter-spacing:0.033300px;}
.ls5_c00047{letter-spacing:0.113220px;}
.ls2_c00047{letter-spacing:0.173160px;}
.ls38_c00047{letter-spacing:0.340080px;}
.ls8_c00047{letter-spacing:0.372780px;}
.ls7_c00047{letter-spacing:0.432900px;}
.ls3_c00047{letter-spacing:0.483960px;}
.ls6_c00047{letter-spacing:0.510120px;}
.lsa_c00047{letter-spacing:0.555900px;}
.ls4_c00047{letter-spacing:0.778260px;}
.ls3a_c00047{letter-spacing:0.970200px;}
.lsb_c00047{letter-spacing:1.046400px;}
.lsc_c00047{letter-spacing:1.175640px;}
.ls9_c00047{letter-spacing:1.233840px;}
.ls0_c00047{letter-spacing:1.600500px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{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__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00047{word-spacing:0.000000px;}
._0_c00047{margin-left:-2.269800px;}
._3_c00047{width:1.598400px;}
._d_c00047{width:2.697300px;}
._4_c00047{width:4.568760px;}
._2_c00047{width:6.153840px;}
._1_c00047{width:7.259400px;}
._e_c00047{width:8.704620px;}
._f_c00047{width:9.990000px;}
._11_c00047{width:11.136000px;}
._12_c00047{width:12.793380px;}
._b_c00047{width:13.832820px;}
._c_c00047{width:14.945400px;}
._a_c00047{width:18.848280px;}
._10_c00047{width:20.594460px;}
._5_c00047{width:21.831480px;}
._9_c00047{width:24.183480px;}
._7_c00047{width:25.880760px;}
._8_c00047{width:27.186120px;}
._6_c00047{width:28.651320px;}
.fc0_c00047{color:transparent;}
.fs0_c00047{font-size:58.200000px;}
.fs7_c00047{font-size:58.800000px;}
.fs6_c00047{font-size:63.600000px;}
.fs5_c00047{font-size:65.400000px;}
.fs4_c00047{font-size:66.600000px;}
.fs1_c00047{font-size:76.800000px;}
.fs2_c00047{font-size:82.200000px;}
.fs3_c00047{font-size:85.800000px;}
.y0_c00047{bottom:0.000000px;}
.ye_c00047{bottom:65.895000px;}
.yd_c00047{bottom:263.175000px;}
.yc_c00047{bottom:282.615000px;}
.yb_c00047{bottom:301.335000px;}
.ya_c00047{bottom:320.415000px;}
.y9_c00047{bottom:339.135000px;}
.y8_c00047{bottom:339.142050px;}
.y7_c00047{bottom:357.843750px;}
.y6_c00047{bottom:376.575000px;}
.y5_c00047{bottom:757.455000px;}
.y4_c00047{bottom:769.335000px;}
.y3_c00047{bottom:916.560000px;}
.y2_c00047{bottom:948.975000px;}
.y1_c00047{bottom:1191.240000px;}
.h8_c00047{height:57.708984px;}
.h2_c00047{height:58.654687px;}
.h7_c00047{height:64.154590px;}
.h6_c00047{height:65.364258px;}
.h3_c00047{height:80.100000px;}
.h4_c00047{height:80.674805px;}
.h5_c00047{height:84.208008px;}
.h1_c00047{height:1263.000000px;}
.h0_c00047{height:1263.240000px;}
.w1_c00047{width:892.500000px;}
.w0_c00047{width:892.800000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:120.435000px;}
.x6_c00047{left:170.445000px;}
.x7_c00047{left:194.310000px;}
.xc_c00047{left:211.440000px;}
.xa_c00047{left:213.330000px;}
.xd_c00047{left:230.940000px;}
.xb_c00047{left:234.645000px;}
.x5_c00047{left:246.735000px;}
.x8_c00047{left:250.410000px;}
.x9_c00047{left:270.195000px;}
.xe_c00047{left:425.355000px;}
.x2_c00047{left:435.945000px;}
.x4_c00047{left:439.365000px;}
.x3_c00047{left:646.335000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.lsf_c00047{letter-spacing:-2.072000pt;}
.ls12_c00047{letter-spacing:-1.545120pt;}
.ls14_c00047{letter-spacing:-1.533280pt;}
.ls36_c00047{letter-spacing:-1.314240pt;}
.ls31_c00047{letter-spacing:-1.065600pt;}
.ls1d_c00047{letter-spacing:-1.041920pt;}
.ls23_c00047{letter-spacing:-0.905760pt;}
.ls19_c00047{letter-spacing:-0.852480pt;}
.ls28_c00047{letter-spacing:-0.811040pt;}
.ls35_c00047{letter-spacing:-0.781440pt;}
.ls1b_c00047{letter-spacing:-0.734080pt;}
.ls1c_c00047{letter-spacing:-0.686720pt;}
.ls29_c00047{letter-spacing:-0.680800pt;}
.ls1a_c00047{letter-spacing:-0.674880pt;}
.ls11_c00047{letter-spacing:-0.651200pt;}
.ls2a_c00047{letter-spacing:-0.639360pt;}
.ls13_c00047{letter-spacing:-0.550560pt;}
.ls18_c00047{letter-spacing:-0.538720pt;}
.ls15_c00047{letter-spacing:-0.515040pt;}
.ls33_c00047{letter-spacing:-0.485440pt;}
.ls21_c00047{letter-spacing:-0.479520pt;}
.ls10_c00047{letter-spacing:-0.461760pt;}
.ls37_c00047{letter-spacing:-0.444000pt;}
.ls1f_c00047{letter-spacing:-0.426240pt;}
.ls2d_c00047{letter-spacing:-0.396640pt;}
.ls22_c00047{letter-spacing:-0.390720pt;}
.ls30_c00047{letter-spacing:-0.361120pt;}
.ls1e_c00047{letter-spacing:-0.290080pt;}
.ls27_c00047{letter-spacing:-0.284160pt;}
.ls39_c00047{letter-spacing:-0.272320pt;}
.ls2b_c00047{letter-spacing:-0.266400pt;}
.ls2c_c00047{letter-spacing:-0.230880pt;}
.ls2f_c00047{letter-spacing:-0.219040pt;}
.ls16_c00047{letter-spacing:-0.183520pt;}
.ls32_c00047{letter-spacing:-0.153920pt;}
.ls24_c00047{letter-spacing:-0.139520pt;}
.ls25_c00047{letter-spacing:-0.100640pt;}
.ls17_c00047{letter-spacing:-0.087200pt;}
.ls34_c00047{letter-spacing:-0.081387pt;}
.ls26_c00047{letter-spacing:-0.035520pt;}
.ls2e_c00047{letter-spacing:-0.034880pt;}
.ls20_c00047{letter-spacing:-0.017760pt;}
.lsd_c00047{letter-spacing:0.000000pt;}
.ls1_c00047{letter-spacing:0.005813pt;}
.lse_c00047{letter-spacing:0.029600pt;}
.ls5_c00047{letter-spacing:0.100640pt;}
.ls2_c00047{letter-spacing:0.153920pt;}
.ls38_c00047{letter-spacing:0.302293pt;}
.ls8_c00047{letter-spacing:0.331360pt;}
.ls7_c00047{letter-spacing:0.384800pt;}
.ls3_c00047{letter-spacing:0.430187pt;}
.ls6_c00047{letter-spacing:0.453440pt;}
.lsa_c00047{letter-spacing:0.494133pt;}
.ls4_c00047{letter-spacing:0.691787pt;}
.ls3a_c00047{letter-spacing:0.862400pt;}
.lsb_c00047{letter-spacing:0.930133pt;}
.lsc_c00047{letter-spacing:1.045013pt;}
.ls9_c00047{letter-spacing:1.096747pt;}
.ls0_c00047{letter-spacing:1.422667pt;}
.ws0_c00047{word-spacing:0.000000pt;}
._0_c00047{margin-left:-2.017600pt;}
._3_c00047{width:1.420800pt;}
._d_c00047{width:2.397600pt;}
._4_c00047{width:4.061120pt;}
._2_c00047{width:5.470080pt;}
._1_c00047{width:6.452800pt;}
._e_c00047{width:7.737440pt;}
._f_c00047{width:8.880000pt;}
._11_c00047{width:9.898667pt;}
._12_c00047{width:11.371893pt;}
._b_c00047{width:12.295840pt;}
._c_c00047{width:13.284800pt;}
._a_c00047{width:16.754027pt;}
._10_c00047{width:18.306187pt;}
._5_c00047{width:19.405760pt;}
._9_c00047{width:21.496427pt;}
._7_c00047{width:23.005120pt;}
._8_c00047{width:24.165440pt;}
._6_c00047{width:25.467840pt;}
.fs0_c00047{font-size:51.733333pt;}
.fs7_c00047{font-size:52.266667pt;}
.fs6_c00047{font-size:56.533333pt;}
.fs5_c00047{font-size:58.133333pt;}
.fs4_c00047{font-size:59.200000pt;}
.fs1_c00047{font-size:68.266667pt;}
.fs2_c00047{font-size:73.066667pt;}
.fs3_c00047{font-size:76.266667pt;}
.y0_c00047{bottom:0.000000pt;}
.ye_c00047{bottom:58.573333pt;}
.yd_c00047{bottom:233.933333pt;}
.yc_c00047{bottom:251.213333pt;}
.yb_c00047{bottom:267.853333pt;}
.ya_c00047{bottom:284.813333pt;}
.y9_c00047{bottom:301.453333pt;}
.y8_c00047{bottom:301.459600pt;}
.y7_c00047{bottom:318.083333pt;}
.y6_c00047{bottom:334.733333pt;}
.y5_c00047{bottom:673.293333pt;}
.y4_c00047{bottom:683.853333pt;}
.y3_c00047{bottom:814.720000pt;}
.y2_c00047{bottom:843.533333pt;}
.y1_c00047{bottom:1058.880000pt;}
.h8_c00047{height:51.296875pt;}
.h2_c00047{height:52.137500pt;}
.h7_c00047{height:57.026302pt;}
.h6_c00047{height:58.101562pt;}
.h3_c00047{height:71.200000pt;}
.h4_c00047{height:71.710937pt;}
.h5_c00047{height:74.851563pt;}
.h1_c00047{height:1122.666667pt;}
.h0_c00047{height:1122.880000pt;}
.w1_c00047{width:793.333333pt;}
.w0_c00047{width:793.600000pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:107.053333pt;}
.x6_c00047{left:151.506667pt;}
.x7_c00047{left:172.720000pt;}
.xc_c00047{left:187.946667pt;}
.xa_c00047{left:189.626667pt;}
.xd_c00047{left:205.280000pt;}
.xb_c00047{left:208.573333pt;}
.x5_c00047{left:219.320000pt;}
.x8_c00047{left:222.586667pt;}
.x9_c00047{left:240.173333pt;}
.xe_c00047{left:378.093333pt;}
.x2_c00047{left:387.506667pt;}
.x4_c00047{left:390.546667pt;}
.x3_c00047{left:574.520000pt;}
}





/* 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_c00048 {
    display:none;
  }
  .loading-indicator_c00048.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00048 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_c00048 { 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_c00048" -> "#page-container .classname_c00048")
 */
.pf_c00048 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00048 { /* 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_c00048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00048 { /* 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_c00048 { /* 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_c00048 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00048 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00048 {overflow:visible;}
  }
}
.c_c00048 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00048 { /* 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_c00048:after { /* webkit #35443 */
  content: '';
}
.t_c00048:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00048 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 */
}
.__c00048 { /* 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_c00048 { /* info for Javascript */
  display:none;
}
.l_c00048 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00048 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00048 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00048: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_c00048 {
    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_c00048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00048.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_c00048 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00048;src:url('chunks/assets/font_f63f58e92d5291f47e228592.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.284668;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_c00048;src:url('chunks/assets/font_9517404493e82ae6581172ed.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.284180;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;}
.m3_c00048{transform:matrix(0.223816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223816,0.000000,0.000000,0.250000,0,0);}
.m2_c00048{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.m9_c00048{transform:matrix(0.237642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237642,0.000000,0.000000,0.250000,0,0);}
.m1_c00048{transform:matrix(0.243258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243258,0.000000,0.000000,0.250000,0,0);}
.m5_c00048{transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);}
.m0_c00048{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);}
.m4_c00048{transform:matrix(0.266835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266835,0.000000,0.000000,0.250000,0,0);}
.m6_c00048{transform:matrix(0.273156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273156,0.000000,0.000000,0.250000,0,0);}
.m7_c00048{transform:matrix(0.275818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275818,0.000000,0.000000,0.250000,0,0);}
.m8_c00048{transform:matrix(0.275870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275870,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls6b_c00048{letter-spacing:-2.478000px;}
.ls6c_c00048{letter-spacing:-2.457000px;}
.ls79_c00048{letter-spacing:-2.289000px;}
.ls69_c00048{letter-spacing:-2.204280px;}
.ls77_c00048{letter-spacing:-1.635660px;}
.ls66_c00048{letter-spacing:-0.765180px;}
.ls68_c00048{letter-spacing:-0.512460px;}
.ls6f_c00048{letter-spacing:-0.470340px;}
.ls6a_c00048{letter-spacing:-0.231660px;}
.ls74_c00048{letter-spacing:-0.070200px;}
.ls67_c00048{letter-spacing:0.000000px;}
.ls1_c00048{letter-spacing:0.106200px;}
.ls13_c00048{letter-spacing:0.133380px;}
.ls3e_c00048{letter-spacing:0.266760px;}
.ls61_c00048{letter-spacing:0.308880px;}
.ls12_c00048{letter-spacing:0.343980px;}
.ls1a_c00048{letter-spacing:0.346920px;}
.ls6_c00048{letter-spacing:0.372060px;}
.ls31_c00048{letter-spacing:0.379080px;}
.ls10_c00048{letter-spacing:0.400140px;}
.ls43_c00048{letter-spacing:0.484380px;}
.ls19_c00048{letter-spacing:0.488520px;}
.ls2d_c00048{letter-spacing:0.540540px;}
.ls3d_c00048{letter-spacing:0.554580px;}
.ls26_c00048{letter-spacing:0.566400px;}
.ls27_c00048{letter-spacing:0.568620px;}
.ls4f_c00048{letter-spacing:0.575640px;}
.ls76_c00048{letter-spacing:0.580560px;}
.ls56_c00048{letter-spacing:0.582660px;}
.ls3f_c00048{letter-spacing:0.587640px;}
.ls70_c00048{letter-spacing:0.603720px;}
.ls5d_c00048{letter-spacing:0.608880px;}
.ls4a_c00048{letter-spacing:0.617760px;}
.ls5c_c00048{letter-spacing:0.624780px;}
.ls7_c00048{letter-spacing:0.631800px;}
.ls38_c00048{letter-spacing:0.652860px;}
.lsc_c00048{letter-spacing:0.673920px;}
.ls4d_c00048{letter-spacing:0.694980px;}
.ls50_c00048{letter-spacing:0.757560px;}
.ls1f_c00048{letter-spacing:0.765180px;}
.ls5a_c00048{letter-spacing:0.772200px;}
.ls48_c00048{letter-spacing:0.779220px;}
.ls2e_c00048{letter-spacing:0.786240px;}
.ls53_c00048{letter-spacing:0.793260px;}
.ls55_c00048{letter-spacing:0.814320px;}
.ls3c_c00048{letter-spacing:0.821280px;}
.ls11_c00048{letter-spacing:0.828360px;}
.ls37_c00048{letter-spacing:0.842400px;}
.ls42_c00048{letter-spacing:0.849420px;}
.ls58_c00048{letter-spacing:0.863460px;}
.ls2a_c00048{letter-spacing:0.870480px;}
.ls1e_c00048{letter-spacing:0.898560px;}
.ls4_c00048{letter-spacing:0.919620px;}
.ls35_c00048{letter-spacing:0.926640px;}
.ls3_c00048{letter-spacing:0.933660px;}
.ls34_c00048{letter-spacing:0.954720px;}
.ls6e_c00048{letter-spacing:0.955800px;}
.ls1b_c00048{letter-spacing:0.962880px;}
.ls29_c00048{letter-spacing:0.975780px;}
.ls22_c00048{letter-spacing:0.982800px;}
.ls59_c00048{letter-spacing:0.989820px;}
.ls14_c00048{letter-spacing:1.010880px;}
.ls39_c00048{letter-spacing:1.031940px;}
.ls28_c00048{letter-spacing:1.060020px;}
.ls3b_c00048{letter-spacing:1.069080px;}
.ls15_c00048{letter-spacing:1.074060px;}
.ls72_c00048{letter-spacing:1.081080px;}
.ls40_c00048{letter-spacing:1.090320px;}
.lse_c00048{letter-spacing:1.095120px;}
.ls2_c00048{letter-spacing:1.111560px;}
.ls2f_c00048{letter-spacing:1.116180px;}
.ls21_c00048{letter-spacing:1.123200px;}
.lsb_c00048{letter-spacing:1.130220px;}
.ls4c_c00048{letter-spacing:1.144260px;}
.lsd_c00048{letter-spacing:1.151280px;}
.ls24_c00048{letter-spacing:1.158300px;}
.ls65_c00048{letter-spacing:1.165320px;}
.ls49_c00048{letter-spacing:1.172340px;}
.ls73_c00048{letter-spacing:1.210680px;}
.ls25_c00048{letter-spacing:1.217760px;}
.ls2c_c00048{letter-spacing:1.228500px;}
.ls32_c00048{letter-spacing:1.235520px;}
.ls47_c00048{letter-spacing:1.242540px;}
.ls4e_c00048{letter-spacing:1.249560px;}
.ls45_c00048{letter-spacing:1.263600px;}
.ls5f_c00048{letter-spacing:1.270620px;}
.ls1c_c00048{letter-spacing:1.312740px;}
.ls5_c00048{letter-spacing:1.319760px;}
.ls18_c00048{letter-spacing:1.326780px;}
.ls44_c00048{letter-spacing:1.354860px;}
.ls41_c00048{letter-spacing:1.368900px;}
.ls30_c00048{letter-spacing:1.382940px;}
.ls62_c00048{letter-spacing:1.389960px;}
.ls2b_c00048{letter-spacing:1.401840px;}
.ls75_c00048{letter-spacing:1.411020px;}
.lsf_c00048{letter-spacing:1.425060px;}
.ls16_c00048{letter-spacing:1.432080px;}
.ls20_c00048{letter-spacing:1.439100px;}
.ls54_c00048{letter-spacing:1.460160px;}
.ls8_c00048{letter-spacing:1.474200px;}
.ls1d_c00048{letter-spacing:1.488240px;}
.ls64_c00048{letter-spacing:1.493880px;}
.ls3a_c00048{letter-spacing:1.523340px;}
.ls33_c00048{letter-spacing:1.551420px;}
.ls23_c00048{letter-spacing:1.565460px;}
.ls17_c00048{letter-spacing:1.586520px;}
.ls52_c00048{letter-spacing:1.712880px;}
.ls71_c00048{letter-spacing:1.755000px;}
.ls4b_c00048{letter-spacing:1.811160px;}
.lsa_c00048{letter-spacing:1.839240px;}
.ls5e_c00048{letter-spacing:1.853280px;}
.ls36_c00048{letter-spacing:1.895400px;}
.ls78_c00048{letter-spacing:1.937520px;}
.ls63_c00048{letter-spacing:2.048280px;}
.ls0_c00048{letter-spacing:2.345220px;}
.ls57_c00048{letter-spacing:2.386800px;}
.ls51_c00048{letter-spacing:2.464020px;}
.ls9_c00048{letter-spacing:2.485080px;}
.ls5b_c00048{letter-spacing:2.681640px;}
.ls46_c00048{letter-spacing:2.871180px;}
.ls60_c00048{letter-spacing:3.046680px;}
.ls6d_c00048{letter-spacing:3.510000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{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__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:0.000000px;}
._12_c00048{margin-left:-10.972260px;}
._10_c00048{margin-left:-8.874060px;}
._2_c00048{margin-left:-4.807320px;}
._0_c00048{margin-left:-2.920920px;}
._e_c00048{margin-left:-1.510680px;}
._d_c00048{width:1.163940px;}
._7_c00048{width:3.116880px;}
._13_c00048{width:4.195800px;}
._1_c00048{width:5.380800px;}
._8_c00048{width:6.907680px;}
._4_c00048{width:8.438040px;}
._5_c00048{width:9.898200px;}
._3_c00048{width:11.007360px;}
._6_c00048{width:12.355200px;}
._f_c00048{width:13.534560px;}
._18_c00048{width:15.254460px;}
._16_c00048{width:16.272360px;}
._19_c00048{width:17.739540px;}
._17_c00048{width:19.389240px;}
._11_c00048{width:20.793240px;}
._9_c00048{width:22.983480px;}
._a_c00048{width:24.570000px;}
._c_c00048{width:26.676000px;}
._b_c00048{width:28.269540px;}
._14_c00048{width:29.638440px;}
._15_c00048{width:33.099300px;}
.fc0_c00048{color:transparent;}
.fs0_c00048{font-size:60.600000px;}
.fs3_c00048{font-size:65.400000px;}
.fs2_c00048{font-size:70.200000px;}
.fs1_c00048{font-size:70.800000px;}
.y0_c00048{bottom:0.000000px;}
.y1b_c00048{bottom:66.975006px;}
.y1a_c00048{bottom:221.055006px;}
.y19_c00048{bottom:252.730056px;}
.y18_c00048{bottom:315.008256px;}
.y17_c00048{bottom:346.335006px;}
.y16_c00048{bottom:407.175006px;}
.y15_c00048{bottom:469.095006px;}
.y14_c00048{bottom:469.100706px;}
.y13_c00048{bottom:500.058906px;}
.y12_c00048{bottom:530.280006px;}
.y11_c00048{bottom:592.560006px;}
.yf_c00048{bottom:654.478656px;}
.y10_c00048{bottom:654.480006px;}
.ye_c00048{bottom:685.454406px;}
.yd_c00048{bottom:716.781156px;}
.yc_c00048{bottom:747.721806px;}
.yb_c00048{bottom:778.680006px;}
.ya_c00048{bottom:840.615006px;}
.y9_c00048{bottom:902.520006px;}
.y7_c00048{bottom:933.479256px;}
.y8_c00048{bottom:933.480006px;}
.y6_c00048{bottom:964.455006px;}
.y5_c00048{bottom:995.058606px;}
.y4_c00048{bottom:1025.999256px;}
.y3_c00048{bottom:1056.975006px;}
.y2_c00048{bottom:1119.255006px;}
.y1_c00048{bottom:1195.935006px;}
.h2_c00048{height:59.475586px;}
.h9_c00048{height:64.186523px;}
.h4_c00048{height:68.897461px;}
.h7_c00048{height:69.428958px;}
.h5_c00048{height:69.437358px;}
.h3_c00048{height:69.451758px;}
.h6_c00048{height:69.457158px;}
.h8_c00048{height:69.478758px;}
.h1_c00048{height:1263.000000px;}
.h0_c00048{height:1263.240006px;}
.w1_c00048{width:892.500000px;}
.w0_c00048{width:892.799998px;}
.x0_c00048{left:0.000000px;}
.x12_c00048{left:117.380848px;}
.x10_c00048{left:118.649998px;}
.xd_c00048{left:119.700748px;}
.x4_c00048{left:121.117349px;}
.x2_c00048{left:122.234999px;}
.x1_c00048{left:123.689998px;}
.xb_c00048{left:138.854998px;}
.xf_c00048{left:173.054998px;}
.x3_c00048{left:175.574998px;}
.xc_c00048{left:183.494998px;}
.x5_c00048{left:190.604998px;}
.x6_c00048{left:213.269999px;}
.x7_c00048{left:309.974999px;}
.x8_c00048{left:337.229999px;}
.x13_c00048{left:425.819999px;}
.x11_c00048{left:594.554999px;}
.xe_c00048{left:619.394999px;}
.x9_c00048{left:727.739998px;}
.xa_c00048{left:744.674999px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls6b_c00048{letter-spacing:-2.202667pt;}
.ls6c_c00048{letter-spacing:-2.184000pt;}
.ls79_c00048{letter-spacing:-2.034667pt;}
.ls69_c00048{letter-spacing:-1.959360pt;}
.ls77_c00048{letter-spacing:-1.453920pt;}
.ls66_c00048{letter-spacing:-0.680160pt;}
.ls68_c00048{letter-spacing:-0.455520pt;}
.ls6f_c00048{letter-spacing:-0.418080pt;}
.ls6a_c00048{letter-spacing:-0.205920pt;}
.ls74_c00048{letter-spacing:-0.062400pt;}
.ls67_c00048{letter-spacing:0.000000pt;}
.ls1_c00048{letter-spacing:0.094400pt;}
.ls13_c00048{letter-spacing:0.118560pt;}
.ls3e_c00048{letter-spacing:0.237120pt;}
.ls61_c00048{letter-spacing:0.274560pt;}
.ls12_c00048{letter-spacing:0.305760pt;}
.ls1a_c00048{letter-spacing:0.308373pt;}
.ls6_c00048{letter-spacing:0.330720pt;}
.ls31_c00048{letter-spacing:0.336960pt;}
.ls10_c00048{letter-spacing:0.355680pt;}
.ls43_c00048{letter-spacing:0.430560pt;}
.ls19_c00048{letter-spacing:0.434240pt;}
.ls2d_c00048{letter-spacing:0.480480pt;}
.ls3d_c00048{letter-spacing:0.492960pt;}
.ls26_c00048{letter-spacing:0.503467pt;}
.ls27_c00048{letter-spacing:0.505440pt;}
.ls4f_c00048{letter-spacing:0.511680pt;}
.ls76_c00048{letter-spacing:0.516053pt;}
.ls56_c00048{letter-spacing:0.517920pt;}
.ls3f_c00048{letter-spacing:0.522347pt;}
.ls70_c00048{letter-spacing:0.536640pt;}
.ls5d_c00048{letter-spacing:0.541227pt;}
.ls4a_c00048{letter-spacing:0.549120pt;}
.ls5c_c00048{letter-spacing:0.555360pt;}
.ls7_c00048{letter-spacing:0.561600pt;}
.ls38_c00048{letter-spacing:0.580320pt;}
.lsc_c00048{letter-spacing:0.599040pt;}
.ls4d_c00048{letter-spacing:0.617760pt;}
.ls50_c00048{letter-spacing:0.673387pt;}
.ls1f_c00048{letter-spacing:0.680160pt;}
.ls5a_c00048{letter-spacing:0.686400pt;}
.ls48_c00048{letter-spacing:0.692640pt;}
.ls2e_c00048{letter-spacing:0.698880pt;}
.ls53_c00048{letter-spacing:0.705120pt;}
.ls55_c00048{letter-spacing:0.723840pt;}
.ls3c_c00048{letter-spacing:0.730027pt;}
.ls11_c00048{letter-spacing:0.736320pt;}
.ls37_c00048{letter-spacing:0.748800pt;}
.ls42_c00048{letter-spacing:0.755040pt;}
.ls58_c00048{letter-spacing:0.767520pt;}
.ls2a_c00048{letter-spacing:0.773760pt;}
.ls1e_c00048{letter-spacing:0.798720pt;}
.ls4_c00048{letter-spacing:0.817440pt;}
.ls35_c00048{letter-spacing:0.823680pt;}
.ls3_c00048{letter-spacing:0.829920pt;}
.ls34_c00048{letter-spacing:0.848640pt;}
.ls6e_c00048{letter-spacing:0.849600pt;}
.ls1b_c00048{letter-spacing:0.855893pt;}
.ls29_c00048{letter-spacing:0.867360pt;}
.ls22_c00048{letter-spacing:0.873600pt;}
.ls59_c00048{letter-spacing:0.879840pt;}
.ls14_c00048{letter-spacing:0.898560pt;}
.ls39_c00048{letter-spacing:0.917280pt;}
.ls28_c00048{letter-spacing:0.942240pt;}
.ls3b_c00048{letter-spacing:0.950293pt;}
.ls15_c00048{letter-spacing:0.954720pt;}
.ls72_c00048{letter-spacing:0.960960pt;}
.ls40_c00048{letter-spacing:0.969173pt;}
.lse_c00048{letter-spacing:0.973440pt;}
.ls2_c00048{letter-spacing:0.988053pt;}
.ls2f_c00048{letter-spacing:0.992160pt;}
.ls21_c00048{letter-spacing:0.998400pt;}
.lsb_c00048{letter-spacing:1.004640pt;}
.ls4c_c00048{letter-spacing:1.017120pt;}
.lsd_c00048{letter-spacing:1.023360pt;}
.ls24_c00048{letter-spacing:1.029600pt;}
.ls65_c00048{letter-spacing:1.035840pt;}
.ls49_c00048{letter-spacing:1.042080pt;}
.ls73_c00048{letter-spacing:1.076160pt;}
.ls25_c00048{letter-spacing:1.082453pt;}
.ls2c_c00048{letter-spacing:1.092000pt;}
.ls32_c00048{letter-spacing:1.098240pt;}
.ls47_c00048{letter-spacing:1.104480pt;}
.ls4e_c00048{letter-spacing:1.110720pt;}
.ls45_c00048{letter-spacing:1.123200pt;}
.ls5f_c00048{letter-spacing:1.129440pt;}
.ls1c_c00048{letter-spacing:1.166880pt;}
.ls5_c00048{letter-spacing:1.173120pt;}
.ls18_c00048{letter-spacing:1.179360pt;}
.ls44_c00048{letter-spacing:1.204320pt;}
.ls41_c00048{letter-spacing:1.216800pt;}
.ls30_c00048{letter-spacing:1.229280pt;}
.ls62_c00048{letter-spacing:1.235520pt;}
.ls2b_c00048{letter-spacing:1.246080pt;}
.ls75_c00048{letter-spacing:1.254240pt;}
.lsf_c00048{letter-spacing:1.266720pt;}
.ls16_c00048{letter-spacing:1.272960pt;}
.ls20_c00048{letter-spacing:1.279200pt;}
.ls54_c00048{letter-spacing:1.297920pt;}
.ls8_c00048{letter-spacing:1.310400pt;}
.ls1d_c00048{letter-spacing:1.322880pt;}
.ls64_c00048{letter-spacing:1.327893pt;}
.ls3a_c00048{letter-spacing:1.354080pt;}
.ls33_c00048{letter-spacing:1.379040pt;}
.ls23_c00048{letter-spacing:1.391520pt;}
.ls17_c00048{letter-spacing:1.410240pt;}
.ls52_c00048{letter-spacing:1.522560pt;}
.ls71_c00048{letter-spacing:1.560000pt;}
.ls4b_c00048{letter-spacing:1.609920pt;}
.lsa_c00048{letter-spacing:1.634880pt;}
.ls5e_c00048{letter-spacing:1.647360pt;}
.ls36_c00048{letter-spacing:1.684800pt;}
.ls78_c00048{letter-spacing:1.722240pt;}
.ls63_c00048{letter-spacing:1.820693pt;}
.ls0_c00048{letter-spacing:2.084640pt;}
.ls57_c00048{letter-spacing:2.121600pt;}
.ls51_c00048{letter-spacing:2.190240pt;}
.ls9_c00048{letter-spacing:2.208960pt;}
.ls5b_c00048{letter-spacing:2.383680pt;}
.ls46_c00048{letter-spacing:2.552160pt;}
.ls60_c00048{letter-spacing:2.708160pt;}
.ls6d_c00048{letter-spacing:3.120000pt;}
.ws0_c00048{word-spacing:0.000000pt;}
._12_c00048{margin-left:-9.753120pt;}
._10_c00048{margin-left:-7.888053pt;}
._2_c00048{margin-left:-4.273173pt;}
._0_c00048{margin-left:-2.596373pt;}
._e_c00048{margin-left:-1.342827pt;}
._d_c00048{width:1.034613pt;}
._7_c00048{width:2.770560pt;}
._13_c00048{width:3.729600pt;}
._1_c00048{width:4.782933pt;}
._8_c00048{width:6.140160pt;}
._4_c00048{width:7.500480pt;}
._5_c00048{width:8.798400pt;}
._3_c00048{width:9.784320pt;}
._6_c00048{width:10.982400pt;}
._f_c00048{width:12.030720pt;}
._18_c00048{width:13.559520pt;}
._16_c00048{width:14.464320pt;}
._19_c00048{width:15.768480pt;}
._17_c00048{width:17.234880pt;}
._11_c00048{width:18.482880pt;}
._9_c00048{width:20.429760pt;}
._a_c00048{width:21.840000pt;}
._c_c00048{width:23.712000pt;}
._b_c00048{width:25.128480pt;}
._14_c00048{width:26.345280pt;}
._15_c00048{width:29.421600pt;}
.fs0_c00048{font-size:53.866667pt;}
.fs3_c00048{font-size:58.133333pt;}
.fs2_c00048{font-size:62.400000pt;}
.fs1_c00048{font-size:62.933333pt;}
.y0_c00048{bottom:0.000000pt;}
.y1b_c00048{bottom:59.533339pt;}
.y1a_c00048{bottom:196.493339pt;}
.y19_c00048{bottom:224.648939pt;}
.y18_c00048{bottom:280.007339pt;}
.y17_c00048{bottom:307.853339pt;}
.y16_c00048{bottom:361.933339pt;}
.y15_c00048{bottom:416.973339pt;}
.y14_c00048{bottom:416.978405pt;}
.y13_c00048{bottom:444.496805pt;}
.y12_c00048{bottom:471.360005pt;}
.y11_c00048{bottom:526.720005pt;}
.yf_c00048{bottom:581.758805pt;}
.y10_c00048{bottom:581.760005pt;}
.ye_c00048{bottom:609.292805pt;}
.yd_c00048{bottom:637.138805pt;}
.yc_c00048{bottom:664.641605pt;}
.yb_c00048{bottom:692.160005pt;}
.ya_c00048{bottom:747.213339pt;}
.y9_c00048{bottom:802.240005pt;}
.y7_c00048{bottom:829.759339pt;}
.y8_c00048{bottom:829.760005pt;}
.y6_c00048{bottom:857.293339pt;}
.y5_c00048{bottom:884.496539pt;}
.y4_c00048{bottom:911.999339pt;}
.y3_c00048{bottom:939.533339pt;}
.y2_c00048{bottom:994.893339pt;}
.y1_c00048{bottom:1063.053339pt;}
.h2_c00048{height:52.867187pt;}
.h9_c00048{height:57.054688pt;}
.h4_c00048{height:61.242187pt;}
.h7_c00048{height:61.714629pt;}
.h5_c00048{height:61.722096pt;}
.h3_c00048{height:61.734896pt;}
.h6_c00048{height:61.739696pt;}
.h8_c00048{height:61.758896pt;}
.h1_c00048{height:1122.666667pt;}
.h0_c00048{height:1122.880005pt;}
.w1_c00048{width:793.333333pt;}
.w0_c00048{width:793.599999pt;}
.x0_c00048{left:0.000000pt;}
.x12_c00048{left:104.338532pt;}
.x10_c00048{left:105.466665pt;}
.xd_c00048{left:106.400665pt;}
.x4_c00048{left:107.659865pt;}
.x2_c00048{left:108.653332pt;}
.x1_c00048{left:109.946665pt;}
.xb_c00048{left:123.426665pt;}
.xf_c00048{left:153.826665pt;}
.x3_c00048{left:156.066665pt;}
.xc_c00048{left:163.106665pt;}
.x5_c00048{left:169.426665pt;}
.x6_c00048{left:189.573332pt;}
.x7_c00048{left:275.533332pt;}
.x8_c00048{left:299.759999pt;}
.x13_c00048{left:378.506665pt;}
.x11_c00048{left:528.493332pt;}
.xe_c00048{left:550.573332pt;}
.x9_c00048{left:646.879999pt;}
.xa_c00048{left:661.933332pt;}
}





/* 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_c00049 {
    display:none;
  }
  .loading-indicator_c00049.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00049 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_c00049 { 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_c00049" -> "#page-container .classname_c00049")
 */
.pf_c00049 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00049 { /* 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_c00049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00049 { /* 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_c00049 { /* 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_c00049 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00049 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00049 {overflow:visible;}
  }
}
.c_c00049 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00049 { /* 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_c00049:after { /* webkit #35443 */
  content: '';
}
.t_c00049:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00049 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 */
}
.__c00049 { /* 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_c00049 { /* info for Javascript */
  display:none;
}
.l_c00049 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00049 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00049 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00049: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_c00049 {
    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_c00049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00049.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_c00049 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00049;src:url('chunks/assets/font_7a62d6b53a18b03f3ffddb14.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.284668;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_c00049;src:url('chunks/assets/font_0ec0d60ed9d21ab7c4c0c89b.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.284180;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_c00049;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;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;}
.m4_c00049{transform:matrix(0.236121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236121,0.000000,0.000000,0.250000,0,0);}
.m1_c00049{transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);}
.m3_c00049{transform:matrix(0.244879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244879,0.000000,0.000000,0.250000,0,0);}
.m2_c00049{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.m0_c00049{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);}
.v0_c00049{vertical-align:0.000000px;}
.ls7c_c00049{letter-spacing:-2.478000px;}
.ls94_c00049{letter-spacing:-2.400120px;}
.ls93_c00049{letter-spacing:-2.378880px;}
.ls9a_c00049{letter-spacing:-2.166480px;}
.ls8b_c00049{letter-spacing:-2.081520px;}
.lsa9_c00049{letter-spacing:-2.079000px;}
.lsa1_c00049{letter-spacing:-1.854960px;}
.ls99_c00049{letter-spacing:-1.833720px;}
.ls92_c00049{letter-spacing:-1.762920px;}
.ls82_c00049{letter-spacing:-1.444320px;}
.lsa6_c00049{letter-spacing:-1.401840px;}
.ls8d_c00049{letter-spacing:-1.345200px;}
.ls77_c00049{letter-spacing:-1.323960px;}
.ls87_c00049{letter-spacing:-1.281480px;}
.lsa0_c00049{letter-spacing:-1.231920px;}
.ls7d_c00049{letter-spacing:-1.210680px;}
.ls75_c00049{letter-spacing:-1.139880px;}
.ls7e_c00049{letter-spacing:-1.111560px;}
.ls88_c00049{letter-spacing:-1.040760px;}
.ls91_c00049{letter-spacing:-1.012440px;}
.ls80_c00049{letter-spacing:-1.005360px;}
.ls86_c00049{letter-spacing:-0.955800px;}
.ls78_c00049{letter-spacing:-0.934560px;}
.ls73_c00049{letter-spacing:-0.885000px;}
.ls8a_c00049{letter-spacing:-0.800040px;}
.ls95_c00049{letter-spacing:-0.786480px;}
.lsa2_c00049{letter-spacing:-0.757560px;}
.ls9c_c00049{letter-spacing:-0.715080px;}
.ls7a_c00049{letter-spacing:-0.615960px;}
.ls9e_c00049{letter-spacing:-0.570720px;}
.ls81_c00049{letter-spacing:-0.566400px;}
.ls83_c00049{letter-spacing:-0.559320px;}
.lsa3_c00049{letter-spacing:-0.446040px;}
.ls7f_c00049{letter-spacing:-0.417720px;}
.ls89_c00049{letter-spacing:-0.389400px;}
.ls7b_c00049{letter-spacing:-0.346920px;}
.ls8c_c00049{letter-spacing:-0.318600px;}
.ls97_c00049{letter-spacing:-0.290280px;}
.lsa4_c00049{letter-spacing:-0.233640px;}
.ls90_c00049{letter-spacing:-0.198240px;}
.ls8e_c00049{letter-spacing:-0.191160px;}
.ls79_c00049{letter-spacing:-0.184080px;}
.ls9b_c00049{letter-spacing:-0.113280px;}
.lsa7_c00049{letter-spacing:-0.106200px;}
.ls74_c00049{letter-spacing:-0.077880px;}
.ls84_c00049{letter-spacing:-0.070800px;}
.ls9d_c00049{letter-spacing:-0.062640px;}
.ls9f_c00049{letter-spacing:-0.049560px;}
.ls8f_c00049{letter-spacing:-0.035400px;}
.ls98_c00049{letter-spacing:-0.014160px;}
.ls96_c00049{letter-spacing:-0.007080px;}
.ls76_c00049{letter-spacing:0.000000px;}
.ls1c_c00049{letter-spacing:0.014160px;}
.lsa5_c00049{letter-spacing:0.021240px;}
.ls5c_c00049{letter-spacing:0.028320px;}
.ls28_c00049{letter-spacing:0.049560px;}
.ls10_c00049{letter-spacing:0.056640px;}
.ls16_c00049{letter-spacing:0.063720px;}
.ls23_c00049{letter-spacing:0.070800px;}
.ls1a_c00049{letter-spacing:0.084960px;}
.ls8_c00049{letter-spacing:0.113280px;}
.ls71_c00049{letter-spacing:0.127440px;}
.ls5e_c00049{letter-spacing:0.134520px;}
.ls2a_c00049{letter-spacing:0.141600px;}
.ls2c_c00049{letter-spacing:0.148680px;}
.ls4f_c00049{letter-spacing:0.155760px;}
.ls52_c00049{letter-spacing:0.169920px;}
.ls63_c00049{letter-spacing:0.184080px;}
.ls21_c00049{letter-spacing:0.191160px;}
.ls85_c00049{letter-spacing:0.198240px;}
.ls29_c00049{letter-spacing:0.219480px;}
.lse_c00049{letter-spacing:0.226560px;}
.ls27_c00049{letter-spacing:0.240720px;}
.ls62_c00049{letter-spacing:0.247800px;}
.ls6b_c00049{letter-spacing:0.254880px;}
.ls51_c00049{letter-spacing:0.261960px;}
.ls43_c00049{letter-spacing:0.276120px;}
.ls32_c00049{letter-spacing:0.290280px;}
.ls34_c00049{letter-spacing:0.297360px;}
.ls9_c00049{letter-spacing:0.304440px;}
.ls53_c00049{letter-spacing:0.318600px;}
.ls39_c00049{letter-spacing:0.325680px;}
.ls2f_c00049{letter-spacing:0.332760px;}
.ls1e_c00049{letter-spacing:0.339840px;}
.ls4c_c00049{letter-spacing:0.346920px;}
.ls4b_c00049{letter-spacing:0.354000px;}
.ls22_c00049{letter-spacing:0.361080px;}
.ls11_c00049{letter-spacing:0.375240px;}
.ls2d_c00049{letter-spacing:0.382320px;}
.ls1b_c00049{letter-spacing:0.389400px;}
.ls15_c00049{letter-spacing:0.396480px;}
.ls48_c00049{letter-spacing:0.403560px;}
.ls35_c00049{letter-spacing:0.410640px;}
.ls6a_c00049{letter-spacing:0.417720px;}
.ls57_c00049{letter-spacing:0.424800px;}
.ls20_c00049{letter-spacing:0.460200px;}
.ls4_c00049{letter-spacing:0.467280px;}
.ls36_c00049{letter-spacing:0.474360px;}
.ls59_c00049{letter-spacing:0.481440px;}
.ls46_c00049{letter-spacing:0.488520px;}
.ls6f_c00049{letter-spacing:0.502680px;}
.ls1_c00049{letter-spacing:0.509760px;}
.ls50_c00049{letter-spacing:0.516840px;}
.ls24_c00049{letter-spacing:0.538080px;}
.ls18_c00049{letter-spacing:0.545160px;}
.ls5f_c00049{letter-spacing:0.552240px;}
.ls2e_c00049{letter-spacing:0.559320px;}
.ls42_c00049{letter-spacing:0.573480px;}
.ls49_c00049{letter-spacing:0.580560px;}
.ls25_c00049{letter-spacing:0.587640px;}
.ls3e_c00049{letter-spacing:0.594720px;}
.ls3d_c00049{letter-spacing:0.601800px;}
.ls5b_c00049{letter-spacing:0.608880px;}
.ls66_c00049{letter-spacing:0.615960px;}
.ls6d_c00049{letter-spacing:0.637200px;}
.ls37_c00049{letter-spacing:0.644280px;}
.ls4d_c00049{letter-spacing:0.651360px;}
.ls56_c00049{letter-spacing:0.672600px;}
.ls14_c00049{letter-spacing:0.693840px;}
.ls26_c00049{letter-spacing:0.708000px;}
.lsb_c00049{letter-spacing:0.715080px;}
.ls30_c00049{letter-spacing:0.722160px;}
.ls2b_c00049{letter-spacing:0.729240px;}
.ls6c_c00049{letter-spacing:0.750480px;}
.ls60_c00049{letter-spacing:0.757560px;}
.ls13_c00049{letter-spacing:0.764640px;}
.lsc_c00049{letter-spacing:0.778800px;}
.ls6_c00049{letter-spacing:0.792960px;}
.ls19_c00049{letter-spacing:0.800040px;}
.ls17_c00049{letter-spacing:0.807120px;}
.ls3f_c00049{letter-spacing:0.821280px;}
.ls7_c00049{letter-spacing:0.835440px;}
.ls45_c00049{letter-spacing:0.842520px;}
.ls12_c00049{letter-spacing:0.870840px;}
.ls5a_c00049{letter-spacing:0.883920px;}
.ls61_c00049{letter-spacing:0.892080px;}
.ls2_c00049{letter-spacing:0.920400px;}
.ls58_c00049{letter-spacing:0.927480px;}
.ls65_c00049{letter-spacing:0.934560px;}
.ls64_c00049{letter-spacing:0.974400px;}
.lsf_c00049{letter-spacing:0.991200px;}
.lsd_c00049{letter-spacing:1.012440px;}
.ls4e_c00049{letter-spacing:1.019520px;}
.ls6e_c00049{letter-spacing:1.064880px;}
.ls68_c00049{letter-spacing:1.090320px;}
.ls5d_c00049{letter-spacing:1.189440px;}
.ls41_c00049{letter-spacing:1.190160px;}
.ls5_c00049{letter-spacing:1.196520px;}
.ls4a_c00049{letter-spacing:1.239000px;}
.ls55_c00049{letter-spacing:1.281480px;}
.ls31_c00049{letter-spacing:1.295640px;}
.ls3a_c00049{letter-spacing:1.309800px;}
.lsa_c00049{letter-spacing:1.366440px;}
.ls38_c00049{letter-spacing:1.373520px;}
.ls1f_c00049{letter-spacing:1.401840px;}
.ls69_c00049{letter-spacing:1.416000px;}
.ls54_c00049{letter-spacing:1.430160px;}
.ls40_c00049{letter-spacing:1.433760px;}
.ls1d_c00049{letter-spacing:1.447680px;}
.ls3c_c00049{letter-spacing:1.500960px;}
.ls47_c00049{letter-spacing:1.550520px;}
.lsa8_c00049{letter-spacing:1.557600px;}
.ls3_c00049{letter-spacing:1.585920px;}
.ls72_c00049{letter-spacing:1.609560px;}
.ls0_c00049{letter-spacing:1.848240px;}
.ls67_c00049{letter-spacing:2.088600px;}
.ls3b_c00049{letter-spacing:2.265600px;}
.ls70_c00049{letter-spacing:2.315160px;}
.ls33_c00049{letter-spacing:2.633760px;}
.ls44_c00049{letter-spacing:2.810760px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{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__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:0.000000px;}
._1c_c00049{margin-left:-12.282240px;}
._3_c00049{margin-left:-5.111760px;}
._0_c00049{margin-left:-3.439440px;}
._11_c00049{margin-left:-2.308080px;}
._2_c00049{margin-left:-1.274400px;}
._1_c00049{width:1.401840px;}
._13_c00049{width:2.721840px;}
._5_c00049{width:4.195560px;}
._12_c00049{width:5.332680px;}
._e_c00049{width:6.655200px;}
._4_c00049{width:7.936560px;}
._f_c00049{width:9.473040px;}
._10_c00049{width:10.485600px;}
._d_c00049{width:11.752800px;}
._c_c00049{width:13.589400px;}
._14_c00049{width:15.108720px;}
._15_c00049{width:16.337760px;}
._18_c00049{width:17.530080px;}
._17_c00049{width:19.413360px;}
._1b_c00049{width:20.666400px;}
._16_c00049{width:22.238280px;}
._19_c00049{width:23.583480px;}
._1a_c00049{width:25.275600px;}
._a_c00049{width:26.988960px;}
._6_c00049{width:28.978440px;}
._9_c00049{width:30.996240px;}
._b_c00049{width:33.714960px;}
._8_c00049{width:35.215920px;}
._7_c00049{width:36.915120px;}
.fc0_c00049{color:transparent;}
.fs4_c00049{font-size:59.400000px;}
.fs0_c00049{font-size:61.200000px;}
.fs3_c00049{font-size:67.200000px;}
.fs2_c00049{font-size:69.600000px;}
.fs1_c00049{font-size:70.800000px;}
.y0_c00049{bottom:0.000000px;}
.y1f_c00049{bottom:63.360000px;}
.y1e_c00049{bottom:156.959400px;}
.y1d_c00049{bottom:187.562700px;}
.y1c_c00049{bottom:249.500400px;}
.y1b_c00049{bottom:280.457700px;}
.y1a_c00049{bottom:311.415000px;}
.y19_c00049{bottom:311.423400px;}
.y18_c00049{bottom:341.645400px;}
.y17_c00049{bottom:372.248700px;}
.y16_c00049{bottom:403.560000px;}
.y15_c00049{bottom:464.400000px;}
.y14_c00049{bottom:526.320000px;}
.y13_c00049{bottom:557.642100px;}
.y12_c00049{bottom:588.617100px;}
.y11_c00049{bottom:619.556700px;}
.y10_c00049{bottom:650.177700px;}
.yf_c00049{bottom:681.140400px;}
.ye_c00049{bottom:712.097700px;}
.yd_c00049{bottom:743.055000px;}
.yc_c00049{bottom:774.019200px;}
.yb_c00049{bottom:804.976500px;}
.ya_c00049{bottom:835.562100px;}
.y9_c00049{bottom:866.537100px;}
.y8_c00049{bottom:897.494400px;}
.y7_c00049{bottom:959.055000px;}
.y6_c00049{bottom:989.655000px;}
.y5_c00049{bottom:989.665800px;}
.y4_c00049{bottom:1020.605400px;}
.y3_c00049{bottom:1051.562700px;}
.y2_c00049{bottom:1113.495000px;}
.y1_c00049{bottom:1189.815000px;}
.h7_c00049{height:58.297852px;}
.h2_c00049{height:60.064453px;}
.h5_c00049{height:68.274609px;}
.h3_c00049{height:69.486328px;}
.h6_c00049{height:69.524728px;}
.h4_c00049{height:70.087500px;}
.h1_c00049{height:1263.000000px;}
.h0_c00049{height:1263.240000px;}
.w1_c00049{width:892.500000px;}
.w0_c00049{width:892.800000px;}
.x0_c00049{left:0.000000px;}
.x7_c00049{left:122.625000px;}
.x1_c00049{left:124.035000px;}
.x2_c00049{left:177.728700px;}
.x5_c00049{left:222.765000px;}
.x6_c00049{left:242.310000px;}
.xa_c00049{left:428.700000px;}
.x8_c00049{left:435.090000px;}
.x9_c00049{left:454.155000px;}
.x3_c00049{left:530.850000px;}
.x4_c00049{left:550.245000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls7c_c00049{letter-spacing:-2.202667pt;}
.ls94_c00049{letter-spacing:-2.133440pt;}
.ls93_c00049{letter-spacing:-2.114560pt;}
.ls9a_c00049{letter-spacing:-1.925760pt;}
.ls8b_c00049{letter-spacing:-1.850240pt;}
.lsa9_c00049{letter-spacing:-1.848000pt;}
.lsa1_c00049{letter-spacing:-1.648853pt;}
.ls99_c00049{letter-spacing:-1.629973pt;}
.ls92_c00049{letter-spacing:-1.567040pt;}
.ls82_c00049{letter-spacing:-1.283840pt;}
.lsa6_c00049{letter-spacing:-1.246080pt;}
.ls8d_c00049{letter-spacing:-1.195733pt;}
.ls77_c00049{letter-spacing:-1.176853pt;}
.ls87_c00049{letter-spacing:-1.139093pt;}
.lsa0_c00049{letter-spacing:-1.095040pt;}
.ls7d_c00049{letter-spacing:-1.076160pt;}
.ls75_c00049{letter-spacing:-1.013227pt;}
.ls7e_c00049{letter-spacing:-0.988053pt;}
.ls88_c00049{letter-spacing:-0.925120pt;}
.ls91_c00049{letter-spacing:-0.899947pt;}
.ls80_c00049{letter-spacing:-0.893653pt;}
.ls86_c00049{letter-spacing:-0.849600pt;}
.ls78_c00049{letter-spacing:-0.830720pt;}
.ls73_c00049{letter-spacing:-0.786667pt;}
.ls8a_c00049{letter-spacing:-0.711147pt;}
.ls95_c00049{letter-spacing:-0.699093pt;}
.lsa2_c00049{letter-spacing:-0.673387pt;}
.ls9c_c00049{letter-spacing:-0.635627pt;}
.ls7a_c00049{letter-spacing:-0.547520pt;}
.ls9e_c00049{letter-spacing:-0.507307pt;}
.ls81_c00049{letter-spacing:-0.503467pt;}
.ls83_c00049{letter-spacing:-0.497173pt;}
.lsa3_c00049{letter-spacing:-0.396480pt;}
.ls7f_c00049{letter-spacing:-0.371307pt;}
.ls89_c00049{letter-spacing:-0.346133pt;}
.ls7b_c00049{letter-spacing:-0.308373pt;}
.ls8c_c00049{letter-spacing:-0.283200pt;}
.ls97_c00049{letter-spacing:-0.258027pt;}
.lsa4_c00049{letter-spacing:-0.207680pt;}
.ls90_c00049{letter-spacing:-0.176213pt;}
.ls8e_c00049{letter-spacing:-0.169920pt;}
.ls79_c00049{letter-spacing:-0.163627pt;}
.ls9b_c00049{letter-spacing:-0.100693pt;}
.lsa7_c00049{letter-spacing:-0.094400pt;}
.ls74_c00049{letter-spacing:-0.069227pt;}
.ls84_c00049{letter-spacing:-0.062933pt;}
.ls9d_c00049{letter-spacing:-0.055680pt;}
.ls9f_c00049{letter-spacing:-0.044053pt;}
.ls8f_c00049{letter-spacing:-0.031467pt;}
.ls98_c00049{letter-spacing:-0.012587pt;}
.ls96_c00049{letter-spacing:-0.006293pt;}
.ls76_c00049{letter-spacing:0.000000pt;}
.ls1c_c00049{letter-spacing:0.012587pt;}
.lsa5_c00049{letter-spacing:0.018880pt;}
.ls5c_c00049{letter-spacing:0.025173pt;}
.ls28_c00049{letter-spacing:0.044053pt;}
.ls10_c00049{letter-spacing:0.050347pt;}
.ls16_c00049{letter-spacing:0.056640pt;}
.ls23_c00049{letter-spacing:0.062933pt;}
.ls1a_c00049{letter-spacing:0.075520pt;}
.ls8_c00049{letter-spacing:0.100693pt;}
.ls71_c00049{letter-spacing:0.113280pt;}
.ls5e_c00049{letter-spacing:0.119573pt;}
.ls2a_c00049{letter-spacing:0.125867pt;}
.ls2c_c00049{letter-spacing:0.132160pt;}
.ls4f_c00049{letter-spacing:0.138453pt;}
.ls52_c00049{letter-spacing:0.151040pt;}
.ls63_c00049{letter-spacing:0.163627pt;}
.ls21_c00049{letter-spacing:0.169920pt;}
.ls85_c00049{letter-spacing:0.176213pt;}
.ls29_c00049{letter-spacing:0.195093pt;}
.lse_c00049{letter-spacing:0.201387pt;}
.ls27_c00049{letter-spacing:0.213973pt;}
.ls62_c00049{letter-spacing:0.220267pt;}
.ls6b_c00049{letter-spacing:0.226560pt;}
.ls51_c00049{letter-spacing:0.232853pt;}
.ls43_c00049{letter-spacing:0.245440pt;}
.ls32_c00049{letter-spacing:0.258027pt;}
.ls34_c00049{letter-spacing:0.264320pt;}
.ls9_c00049{letter-spacing:0.270613pt;}
.ls53_c00049{letter-spacing:0.283200pt;}
.ls39_c00049{letter-spacing:0.289493pt;}
.ls2f_c00049{letter-spacing:0.295787pt;}
.ls1e_c00049{letter-spacing:0.302080pt;}
.ls4c_c00049{letter-spacing:0.308373pt;}
.ls4b_c00049{letter-spacing:0.314667pt;}
.ls22_c00049{letter-spacing:0.320960pt;}
.ls11_c00049{letter-spacing:0.333547pt;}
.ls2d_c00049{letter-spacing:0.339840pt;}
.ls1b_c00049{letter-spacing:0.346133pt;}
.ls15_c00049{letter-spacing:0.352427pt;}
.ls48_c00049{letter-spacing:0.358720pt;}
.ls35_c00049{letter-spacing:0.365013pt;}
.ls6a_c00049{letter-spacing:0.371307pt;}
.ls57_c00049{letter-spacing:0.377600pt;}
.ls20_c00049{letter-spacing:0.409067pt;}
.ls4_c00049{letter-spacing:0.415360pt;}
.ls36_c00049{letter-spacing:0.421653pt;}
.ls59_c00049{letter-spacing:0.427947pt;}
.ls46_c00049{letter-spacing:0.434240pt;}
.ls6f_c00049{letter-spacing:0.446827pt;}
.ls1_c00049{letter-spacing:0.453120pt;}
.ls50_c00049{letter-spacing:0.459413pt;}
.ls24_c00049{letter-spacing:0.478293pt;}
.ls18_c00049{letter-spacing:0.484587pt;}
.ls5f_c00049{letter-spacing:0.490880pt;}
.ls2e_c00049{letter-spacing:0.497173pt;}
.ls42_c00049{letter-spacing:0.509760pt;}
.ls49_c00049{letter-spacing:0.516053pt;}
.ls25_c00049{letter-spacing:0.522347pt;}
.ls3e_c00049{letter-spacing:0.528640pt;}
.ls3d_c00049{letter-spacing:0.534933pt;}
.ls5b_c00049{letter-spacing:0.541227pt;}
.ls66_c00049{letter-spacing:0.547520pt;}
.ls6d_c00049{letter-spacing:0.566400pt;}
.ls37_c00049{letter-spacing:0.572693pt;}
.ls4d_c00049{letter-spacing:0.578987pt;}
.ls56_c00049{letter-spacing:0.597867pt;}
.ls14_c00049{letter-spacing:0.616747pt;}
.ls26_c00049{letter-spacing:0.629333pt;}
.lsb_c00049{letter-spacing:0.635627pt;}
.ls30_c00049{letter-spacing:0.641920pt;}
.ls2b_c00049{letter-spacing:0.648213pt;}
.ls6c_c00049{letter-spacing:0.667093pt;}
.ls60_c00049{letter-spacing:0.673387pt;}
.ls13_c00049{letter-spacing:0.679680pt;}
.lsc_c00049{letter-spacing:0.692267pt;}
.ls6_c00049{letter-spacing:0.704853pt;}
.ls19_c00049{letter-spacing:0.711147pt;}
.ls17_c00049{letter-spacing:0.717440pt;}
.ls3f_c00049{letter-spacing:0.730027pt;}
.ls7_c00049{letter-spacing:0.742613pt;}
.ls45_c00049{letter-spacing:0.748907pt;}
.ls12_c00049{letter-spacing:0.774080pt;}
.ls5a_c00049{letter-spacing:0.785707pt;}
.ls61_c00049{letter-spacing:0.792960pt;}
.ls2_c00049{letter-spacing:0.818133pt;}
.ls58_c00049{letter-spacing:0.824427pt;}
.ls65_c00049{letter-spacing:0.830720pt;}
.ls64_c00049{letter-spacing:0.866133pt;}
.lsf_c00049{letter-spacing:0.881067pt;}
.lsd_c00049{letter-spacing:0.899947pt;}
.ls4e_c00049{letter-spacing:0.906240pt;}
.ls6e_c00049{letter-spacing:0.946560pt;}
.ls68_c00049{letter-spacing:0.969173pt;}
.ls5d_c00049{letter-spacing:1.057280pt;}
.ls41_c00049{letter-spacing:1.057920pt;}
.ls5_c00049{letter-spacing:1.063573pt;}
.ls4a_c00049{letter-spacing:1.101333pt;}
.ls55_c00049{letter-spacing:1.139093pt;}
.ls31_c00049{letter-spacing:1.151680pt;}
.ls3a_c00049{letter-spacing:1.164267pt;}
.lsa_c00049{letter-spacing:1.214613pt;}
.ls38_c00049{letter-spacing:1.220907pt;}
.ls1f_c00049{letter-spacing:1.246080pt;}
.ls69_c00049{letter-spacing:1.258667pt;}
.ls54_c00049{letter-spacing:1.271253pt;}
.ls40_c00049{letter-spacing:1.274453pt;}
.ls1d_c00049{letter-spacing:1.286827pt;}
.ls3c_c00049{letter-spacing:1.334187pt;}
.ls47_c00049{letter-spacing:1.378240pt;}
.lsa8_c00049{letter-spacing:1.384533pt;}
.ls3_c00049{letter-spacing:1.409707pt;}
.ls72_c00049{letter-spacing:1.430720pt;}
.ls0_c00049{letter-spacing:1.642880pt;}
.ls67_c00049{letter-spacing:1.856533pt;}
.ls3b_c00049{letter-spacing:2.013867pt;}
.ls70_c00049{letter-spacing:2.057920pt;}
.ls33_c00049{letter-spacing:2.341120pt;}
.ls44_c00049{letter-spacing:2.498453pt;}
.ws0_c00049{word-spacing:0.000000pt;}
._1c_c00049{margin-left:-10.917547pt;}
._3_c00049{margin-left:-4.543787pt;}
._0_c00049{margin-left:-3.057280pt;}
._11_c00049{margin-left:-2.051627pt;}
._2_c00049{margin-left:-1.132800pt;}
._1_c00049{width:1.246080pt;}
._13_c00049{width:2.419413pt;}
._5_c00049{width:3.729387pt;}
._12_c00049{width:4.740160pt;}
._e_c00049{width:5.915733pt;}
._4_c00049{width:7.054720pt;}
._f_c00049{width:8.420480pt;}
._10_c00049{width:9.320533pt;}
._d_c00049{width:10.446933pt;}
._c_c00049{width:12.079467pt;}
._14_c00049{width:13.429973pt;}
._15_c00049{width:14.522453pt;}
._18_c00049{width:15.582293pt;}
._17_c00049{width:17.256320pt;}
._1b_c00049{width:18.370133pt;}
._16_c00049{width:19.767360pt;}
._19_c00049{width:20.963093pt;}
._1a_c00049{width:22.467200pt;}
._a_c00049{width:23.990187pt;}
._6_c00049{width:25.758613pt;}
._9_c00049{width:27.552213pt;}
._b_c00049{width:29.968853pt;}
._8_c00049{width:31.303040pt;}
._7_c00049{width:32.813440pt;}
.fs4_c00049{font-size:52.800000pt;}
.fs0_c00049{font-size:54.400000pt;}
.fs3_c00049{font-size:59.733333pt;}
.fs2_c00049{font-size:61.866667pt;}
.fs1_c00049{font-size:62.933333pt;}
.y0_c00049{bottom:0.000000pt;}
.y1f_c00049{bottom:56.320000pt;}
.y1e_c00049{bottom:139.519467pt;}
.y1d_c00049{bottom:166.722400pt;}
.y1c_c00049{bottom:221.778133pt;}
.y1b_c00049{bottom:249.295733pt;}
.y1a_c00049{bottom:276.813333pt;}
.y19_c00049{bottom:276.820800pt;}
.y18_c00049{bottom:303.684800pt;}
.y17_c00049{bottom:330.887733pt;}
.y16_c00049{bottom:358.720000pt;}
.y15_c00049{bottom:412.800000pt;}
.y14_c00049{bottom:467.840000pt;}
.y13_c00049{bottom:495.681867pt;}
.y12_c00049{bottom:523.215200pt;}
.y11_c00049{bottom:550.717067pt;}
.y10_c00049{bottom:577.935733pt;}
.yf_c00049{bottom:605.458133pt;}
.ye_c00049{bottom:632.975733pt;}
.yd_c00049{bottom:660.493333pt;}
.yc_c00049{bottom:688.017067pt;}
.yb_c00049{bottom:715.534667pt;}
.ya_c00049{bottom:742.721867pt;}
.y9_c00049{bottom:770.255200pt;}
.y8_c00049{bottom:797.772800pt;}
.y7_c00049{bottom:852.493333pt;}
.y6_c00049{bottom:879.693333pt;}
.y5_c00049{bottom:879.702933pt;}
.y4_c00049{bottom:907.204800pt;}
.y3_c00049{bottom:934.722400pt;}
.y2_c00049{bottom:989.773333pt;}
.y1_c00049{bottom:1057.613333pt;}
.h7_c00049{height:51.820312pt;}
.h2_c00049{height:53.390625pt;}
.h5_c00049{height:60.688542pt;}
.h3_c00049{height:61.765625pt;}
.h6_c00049{height:61.799758pt;}
.h4_c00049{height:62.300000pt;}
.h1_c00049{height:1122.666667pt;}
.h0_c00049{height:1122.880000pt;}
.w1_c00049{width:793.333333pt;}
.w0_c00049{width:793.600000pt;}
.x0_c00049{left:0.000000pt;}
.x7_c00049{left:109.000000pt;}
.x1_c00049{left:110.253333pt;}
.x2_c00049{left:157.981067pt;}
.x5_c00049{left:198.013333pt;}
.x6_c00049{left:215.386667pt;}
.xa_c00049{left:381.066667pt;}
.x8_c00049{left:386.746667pt;}
.x9_c00049{left:403.693333pt;}
.x3_c00049{left:471.866667pt;}
.x4_c00049{left:489.106667pt;}
}





/* 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_c00050 {
    display:none;
  }
  .loading-indicator_c00050.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00050 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_c00050 { 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_c00050" -> "#page-container .classname_c00050")
 */
.pf_c00050 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00050 { /* 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_c00050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00050 { /* 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_c00050 { /* 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_c00050 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00050 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00050 {overflow:visible;}
  }
}
.c_c00050 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00050 { /* 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_c00050:after { /* webkit #35443 */
  content: '';
}
.t_c00050:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00050 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 */
}
.__c00050 { /* 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_c00050 { /* info for Javascript */
  display:none;
}
.l_c00050 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00050 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00050 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00050: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_c00050 {
    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_c00050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00050.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_c00050 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00050;src:url('chunks/assets/font_097a565d1150e4158ec0ffb2.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.284668;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_c00050;src:url('chunks/assets/font_05cc418c7cb0ccef6de38ca7.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.284180;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_c00050;src:url('chunks/assets/font_6b77b39fb59739c014b8d7b4.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:0.666000;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_c00050;src:url('chunks/assets/font_84ca3306aa18a7cae4f110d6.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;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;}
.m2_c00050{transform:matrix(0.140792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140792,0.000000,0.000000,0.250000,0,0);}
.m4_c00050{transform:matrix(0.235416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235416,0.000000,0.000000,0.250000,0,0);}
.m1_c00050{transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);}
.m3_c00050{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m0_c00050{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);}
.v0_c00050{vertical-align:0.000000px;}
.ls43_c00050{letter-spacing:-2.541000px;}
.ls87_c00050{letter-spacing:-2.499000px;}
.ls47_c00050{letter-spacing:-2.410320px;}
.ls67_c00050{letter-spacing:-2.207040px;}
.ls95_c00050{letter-spacing:-2.170740px;}
.ls73_c00050{letter-spacing:-2.025540px;}
.ls42_c00050{letter-spacing:-1.996500px;}
.ls83_c00050{letter-spacing:-1.974720px;}
.ls7b_c00050{letter-spacing:-1.880340px;}
.ls94_c00050{letter-spacing:-1.800480px;}
.ls4f_c00050{letter-spacing:-1.589940px;}
.ls5b_c00050{letter-spacing:-1.568160px;}
.ls50_c00050{letter-spacing:-1.546380px;}
.ls92_c00050{letter-spacing:-1.510080px;}
.ls6f_c00050{letter-spacing:-1.379400px;}
.ls51_c00050{letter-spacing:-1.372140px;}
.ls52_c00050{letter-spacing:-1.364880px;}
.ls6c_c00050{letter-spacing:-1.277760px;}
.ls75_c00050{letter-spacing:-1.067220px;}
.ls93_c00050{letter-spacing:-1.030920px;}
.ls91_c00050{letter-spacing:-0.980100px;}
.ls4d_c00050{letter-spacing:-0.972840px;}
.ls46_c00050{letter-spacing:-0.892980px;}
.ls61_c00050{letter-spacing:-0.834900px;}
.ls66_c00050{letter-spacing:-0.820380px;}
.ls5d_c00050{letter-spacing:-0.791340px;}
.ls49_c00050{letter-spacing:-0.762300px;}
.ls8c_c00050{letter-spacing:-0.689700px;}
.ls68_c00050{letter-spacing:-0.646140px;}
.ls5c_c00050{letter-spacing:-0.638880px;}
.ls81_c00050{letter-spacing:-0.595320px;}
.ls65_c00050{letter-spacing:-0.588060px;}
.ls55_c00050{letter-spacing:-0.559020px;}
.ls64_c00050{letter-spacing:-0.537240px;}
.ls85_c00050{letter-spacing:-0.529980px;}
.ls8d_c00050{letter-spacing:-0.522720px;}
.ls62_c00050{letter-spacing:-0.508200px;}
.ls80_c00050{letter-spacing:-0.486420px;}
.ls59_c00050{letter-spacing:-0.450120px;}
.ls5a_c00050{letter-spacing:-0.435600px;}
.ls60_c00050{letter-spacing:-0.428340px;}
.ls7e_c00050{letter-spacing:-0.421080px;}
.ls79_c00050{letter-spacing:-0.392040px;}
.ls4e_c00050{letter-spacing:-0.363000px;}
.ls72_c00050{letter-spacing:-0.348480px;}
.ls8f_c00050{letter-spacing:-0.328440px;}
.ls6e_c00050{letter-spacing:-0.326700px;}
.ls58_c00050{letter-spacing:-0.319440px;}
.ls8e_c00050{letter-spacing:-0.304920px;}
.ls8a_c00050{letter-spacing:-0.283140px;}
.ls4c_c00050{letter-spacing:-0.275880px;}
.ls78_c00050{letter-spacing:-0.261360px;}
.ls7f_c00050{letter-spacing:-0.254100px;}
.ls96_c00050{letter-spacing:-0.239580px;}
.ls48_c00050{letter-spacing:-0.232320px;}
.ls5e_c00050{letter-spacing:-0.225060px;}
.ls6b_c00050{letter-spacing:-0.217800px;}
.ls45_c00050{letter-spacing:-0.203280px;}
.ls88_c00050{letter-spacing:-0.199920px;}
.ls8b_c00050{letter-spacing:-0.196020px;}
.ls5f_c00050{letter-spacing:-0.188760px;}
.ls86_c00050{letter-spacing:-0.181500px;}
.ls54_c00050{letter-spacing:-0.174240px;}
.ls90_c00050{letter-spacing:-0.166980px;}
.ls63_c00050{letter-spacing:-0.159720px;}
.ls7a_c00050{letter-spacing:-0.152460px;}
.ls70_c00050{letter-spacing:-0.137940px;}
.ls82_c00050{letter-spacing:-0.130680px;}
.ls56_c00050{letter-spacing:-0.123420px;}
.ls53_c00050{letter-spacing:-0.116160px;}
.ls6a_c00050{letter-spacing:-0.101640px;}
.ls77_c00050{letter-spacing:-0.094380px;}
.ls4b_c00050{letter-spacing:-0.087120px;}
.ls69_c00050{letter-spacing:-0.079860px;}
.ls7c_c00050{letter-spacing:-0.072600px;}
.ls89_c00050{letter-spacing:-0.065340px;}
.ls6d_c00050{letter-spacing:-0.058080px;}
.ls7d_c00050{letter-spacing:-0.050820px;}
.ls84_c00050{letter-spacing:-0.043560px;}
.ls57_c00050{letter-spacing:-0.036300px;}
.ls44_c00050{letter-spacing:-0.029040px;}
.ls76_c00050{letter-spacing:-0.014520px;}
.ls74_c00050{letter-spacing:-0.007260px;}
.ls4a_c00050{letter-spacing:0.000000px;}
.lsc_c00050{letter-spacing:0.021780px;}
.ls23_c00050{letter-spacing:0.029040px;}
.ls14_c00050{letter-spacing:0.036300px;}
.ls11_c00050{letter-spacing:0.043560px;}
.lse_c00050{letter-spacing:0.050820px;}
.lsb_c00050{letter-spacing:0.058080px;}
.ls22_c00050{letter-spacing:0.065340px;}
.ls10_c00050{letter-spacing:0.072600px;}
.ls17_c00050{letter-spacing:0.079860px;}
.ls37_c00050{letter-spacing:0.094380px;}
.ls4_c00050{letter-spacing:0.137940px;}
.ls2d_c00050{letter-spacing:0.145200px;}
.ls9_c00050{letter-spacing:0.152460px;}
.ls3b_c00050{letter-spacing:0.159720px;}
.ls26_c00050{letter-spacing:0.166980px;}
.ls1f_c00050{letter-spacing:0.174240px;}
.ls25_c00050{letter-spacing:0.181500px;}
.lsa_c00050{letter-spacing:0.188760px;}
.ls28_c00050{letter-spacing:0.196020px;}
.ls3c_c00050{letter-spacing:0.203280px;}
.ls2c_c00050{letter-spacing:0.207060px;}
.ls19_c00050{letter-spacing:0.210540px;}
.ls2_c00050{letter-spacing:0.232320px;}
.ls18_c00050{letter-spacing:0.239580px;}
.lsf_c00050{letter-spacing:0.246840px;}
.ls33_c00050{letter-spacing:0.275880px;}
.ls38_c00050{letter-spacing:0.290400px;}
.ls97_c00050{letter-spacing:0.291000px;}
.ls3f_c00050{letter-spacing:0.292740px;}
.ls29_c00050{letter-spacing:0.297660px;}
.ls24_c00050{letter-spacing:0.319440px;}
.ls35_c00050{letter-spacing:0.321300px;}
.ls32_c00050{letter-spacing:0.363000px;}
.ls71_c00050{letter-spacing:0.370260px;}
.ls1b_c00050{letter-spacing:0.378420px;}
.ls1d_c00050{letter-spacing:0.384780px;}
.ls2e_c00050{letter-spacing:0.392040px;}
.ls21_c00050{letter-spacing:0.413820px;}
.ls30_c00050{letter-spacing:0.421080px;}
.ls1e_c00050{letter-spacing:0.442860px;}
.ls7_c00050{letter-spacing:0.457380px;}
.ls39_c00050{letter-spacing:0.464100px;}
.ls34_c00050{letter-spacing:0.478380px;}
.ls16_c00050{letter-spacing:0.506940px;}
.ls31_c00050{letter-spacing:0.521220px;}
.ls3e_c00050{letter-spacing:0.522720px;}
.ls1_c00050{letter-spacing:0.544500px;}
.ls13_c00050{letter-spacing:0.551760px;}
.ls1c_c00050{letter-spacing:0.559020px;}
.ls15_c00050{letter-spacing:0.653400px;}
.ls8_c00050{letter-spacing:0.735420px;}
.ls3a_c00050{letter-spacing:0.740520px;}
.ls5_c00050{letter-spacing:0.762300px;}
.ls6_c00050{letter-spacing:0.820380px;}
.ls1a_c00050{letter-spacing:0.856680px;}
.ls36_c00050{letter-spacing:0.885720px;}
.lsd_c00050{letter-spacing:0.900240px;}
.ls27_c00050{letter-spacing:0.922020px;}
.ls40_c00050{letter-spacing:1.059960px;}
.ls3d_c00050{letter-spacing:1.063860px;}
.ls3_c00050{letter-spacing:1.488300px;}
.ls2a_c00050{letter-spacing:1.618980px;}
.ls12_c00050{letter-spacing:1.640760px;}
.ls2b_c00050{letter-spacing:1.727880px;}
.ls2f_c00050{letter-spacing:2.199780px;}
.ls41_c00050{letter-spacing:2.224020px;}
.ls0_c00050{letter-spacing:2.242200px;}
.ls20_c00050{letter-spacing:2.337720px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{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__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00050{word-spacing:0.000000px;}
._0_c00050{margin-left:-4.181400px;}
._9_c00050{margin-left:-2.599440px;}
._7_c00050{margin-left:-1.560900px;}
._8_c00050{width:1.655280px;}
._6_c00050{width:3.296040px;}
._4_c00050{width:4.544760px;}
._f_c00050{width:5.582940px;}
._2_c00050{width:6.897000px;}
._5_c00050{width:8.813640px;}
._1_c00050{width:10.272900px;}
._3_c00050{width:12.196800px;}
._a_c00050{width:13.205940px;}
._14_c00050{width:15.137100px;}
._b_c00050{width:17.177160px;}
._16_c00050{width:20.153760px;}
._c_c00050{width:21.417000px;}
._15_c00050{width:22.920660px;}
._d_c00050{width:24.517020px;}
._e_c00050{width:26.215860px;}
._17_c00050{width:27.779820px;}
._10_c00050{width:28.981920px;}
._13_c00050{width:30.317760px;}
._11_c00050{width:31.813320px;}
._12_c00050{width:35.515920px;}
.fc0_c00050{color:transparent;}
.fs3_c00050{font-size:54.720000px;}
.fs5_c00050{font-size:58.200000px;}
.fs0_c00050{font-size:60.600000px;}
.fs7_c00050{font-size:66.000000px;}
.fs4_c00050{font-size:67.200000px;}
.fs2_c00050{font-size:71.400000px;}
.fs1_c00050{font-size:72.600000px;}
.fs6_c00050{font-size:76.800000px;}
.y0_c00050{bottom:0.000000px;}
.y21_c00050{bottom:64.455000px;}
.y20_c00050{bottom:157.685100px;}
.y1f_c00050{bottom:188.286300px;}
.y1e_c00050{bottom:219.613200px;}
.y1d_c00050{bottom:280.808100px;}
.y1c_c00050{bottom:312.128100px;}
.y1b_c00050{bottom:343.455000px;}
.y1a_c00050{bottom:374.415000px;}
.y18_c00050{bottom:405.014100px;}
.y19_c00050{bottom:405.015000px;}
.y17_c00050{bottom:435.615000px;}
.y16_c00050{bottom:466.575000px;}
.y15_c00050{bottom:497.535000px;}
.y14_c00050{bottom:497.537250px;}
.y13_c00050{bottom:528.116400px;}
.y12_c00050{bottom:590.407200px;}
.y23_c00050{bottom:614.535000px;}
.y22_c00050{bottom:618.120000px;}
.y11_c00050{bottom:621.371100px;}
.y10_c00050{bottom:652.310850px;}
.yf_c00050{bottom:683.256600px;}
.ye_c00050{bottom:714.238650px;}
.yd_c00050{bottom:745.184400px;}
.yc_c00050{bottom:776.166450px;}
.yb_c00050{bottom:837.713100px;}
.ya_c00050{bottom:869.032950px;}
.y9_c00050{bottom:900.015000px;}
.y7_c00050{bottom:930.607200px;}
.y8_c00050{bottom:930.615000px;}
.y6_c00050{bottom:961.552950px;}
.y5_c00050{bottom:992.523450px;}
.y4_c00050{bottom:1023.850350px;}
.y3_c00050{bottom:1085.765100px;}
.y2_c00050{bottom:1117.455000px;}
.y1_c00050{bottom:1193.760000px;}
.h5_c00050{height:36.443520px;}
.hc_c00050{height:57.120117px;}
.h2_c00050{height:59.475586px;}
.he_c00050{height:68.835938px;}
.h9_c00050{height:70.040332px;}
.hb_c00050{height:71.232530px;}
.h3_c00050{height:71.252930px;}
.h8_c00050{height:71.267330px;}
.ha_c00050{height:71.280530px;}
.h6_c00050{height:71.281130px;}
.h4_c00050{height:71.299130px;}
.h7_c00050{height:71.349530px;}
.hd_c00050{height:80.100000px;}
.h1_c00050{height:1263.000000px;}
.h0_c00050{height:1263.240000px;}
.w1_c00050{width:892.500000px;}
.w0_c00050{width:892.800000px;}
.x0_c00050{left:0.000000px;}
.x10_c00050{left:119.655000px;}
.xc_c00050{left:120.891300px;}
.x6_c00050{left:122.727600px;}
.x4_c00050{left:123.875400px;}
.x1_c00050{left:125.850000px;}
.x11_c00050{left:145.710000px;}
.x18_c00050{left:172.678500px;}
.xd_c00050{left:173.780850px;}
.xb_c00050{left:175.196100px;}
.x5_c00050{left:177.014250px;}
.x14_c00050{left:197.475000px;}
.x15_c00050{left:221.250000px;}
.x2_c00050{left:226.245000px;}
.x3_c00050{left:261.525000px;}
.x16_c00050{left:405.555000px;}
.xe_c00050{left:425.715000px;}
.x19_c00050{left:426.900000px;}
.x17_c00050{left:428.715000px;}
.x7_c00050{left:431.295000px;}
.xf_c00050{left:447.975000px;}
.x8_c00050{left:476.235000px;}
.x9_c00050{left:622.635000px;}
.xa_c00050{left:646.050000px;}
.x12_c00050{left:711.555000px;}
.x13_c00050{left:738.930000px;}
.x1b_c00050{left:849.735000px;}
.x1a_c00050{left:850.785000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls43_c00050{letter-spacing:-2.258667pt;}
.ls87_c00050{letter-spacing:-2.221333pt;}
.ls47_c00050{letter-spacing:-2.142507pt;}
.ls67_c00050{letter-spacing:-1.961813pt;}
.ls95_c00050{letter-spacing:-1.929547pt;}
.ls73_c00050{letter-spacing:-1.800480pt;}
.ls42_c00050{letter-spacing:-1.774667pt;}
.ls83_c00050{letter-spacing:-1.755307pt;}
.ls7b_c00050{letter-spacing:-1.671413pt;}
.ls94_c00050{letter-spacing:-1.600427pt;}
.ls4f_c00050{letter-spacing:-1.413280pt;}
.ls5b_c00050{letter-spacing:-1.393920pt;}
.ls50_c00050{letter-spacing:-1.374560pt;}
.ls92_c00050{letter-spacing:-1.342293pt;}
.ls6f_c00050{letter-spacing:-1.226133pt;}
.ls51_c00050{letter-spacing:-1.219680pt;}
.ls52_c00050{letter-spacing:-1.213227pt;}
.ls6c_c00050{letter-spacing:-1.135787pt;}
.ls75_c00050{letter-spacing:-0.948640pt;}
.ls93_c00050{letter-spacing:-0.916373pt;}
.ls91_c00050{letter-spacing:-0.871200pt;}
.ls4d_c00050{letter-spacing:-0.864747pt;}
.ls46_c00050{letter-spacing:-0.793760pt;}
.ls61_c00050{letter-spacing:-0.742133pt;}
.ls66_c00050{letter-spacing:-0.729227pt;}
.ls5d_c00050{letter-spacing:-0.703413pt;}
.ls49_c00050{letter-spacing:-0.677600pt;}
.ls8c_c00050{letter-spacing:-0.613067pt;}
.ls68_c00050{letter-spacing:-0.574347pt;}
.ls5c_c00050{letter-spacing:-0.567893pt;}
.ls81_c00050{letter-spacing:-0.529173pt;}
.ls65_c00050{letter-spacing:-0.522720pt;}
.ls55_c00050{letter-spacing:-0.496907pt;}
.ls64_c00050{letter-spacing:-0.477547pt;}
.ls85_c00050{letter-spacing:-0.471093pt;}
.ls8d_c00050{letter-spacing:-0.464640pt;}
.ls62_c00050{letter-spacing:-0.451733pt;}
.ls80_c00050{letter-spacing:-0.432373pt;}
.ls59_c00050{letter-spacing:-0.400107pt;}
.ls5a_c00050{letter-spacing:-0.387200pt;}
.ls60_c00050{letter-spacing:-0.380747pt;}
.ls7e_c00050{letter-spacing:-0.374293pt;}
.ls79_c00050{letter-spacing:-0.348480pt;}
.ls4e_c00050{letter-spacing:-0.322667pt;}
.ls72_c00050{letter-spacing:-0.309760pt;}
.ls8f_c00050{letter-spacing:-0.291947pt;}
.ls6e_c00050{letter-spacing:-0.290400pt;}
.ls58_c00050{letter-spacing:-0.283947pt;}
.ls8e_c00050{letter-spacing:-0.271040pt;}
.ls8a_c00050{letter-spacing:-0.251680pt;}
.ls4c_c00050{letter-spacing:-0.245227pt;}
.ls78_c00050{letter-spacing:-0.232320pt;}
.ls7f_c00050{letter-spacing:-0.225867pt;}
.ls96_c00050{letter-spacing:-0.212960pt;}
.ls48_c00050{letter-spacing:-0.206507pt;}
.ls5e_c00050{letter-spacing:-0.200053pt;}
.ls6b_c00050{letter-spacing:-0.193600pt;}
.ls45_c00050{letter-spacing:-0.180693pt;}
.ls88_c00050{letter-spacing:-0.177707pt;}
.ls8b_c00050{letter-spacing:-0.174240pt;}
.ls5f_c00050{letter-spacing:-0.167787pt;}
.ls86_c00050{letter-spacing:-0.161333pt;}
.ls54_c00050{letter-spacing:-0.154880pt;}
.ls90_c00050{letter-spacing:-0.148427pt;}
.ls63_c00050{letter-spacing:-0.141973pt;}
.ls7a_c00050{letter-spacing:-0.135520pt;}
.ls70_c00050{letter-spacing:-0.122613pt;}
.ls82_c00050{letter-spacing:-0.116160pt;}
.ls56_c00050{letter-spacing:-0.109707pt;}
.ls53_c00050{letter-spacing:-0.103253pt;}
.ls6a_c00050{letter-spacing:-0.090347pt;}
.ls77_c00050{letter-spacing:-0.083893pt;}
.ls4b_c00050{letter-spacing:-0.077440pt;}
.ls69_c00050{letter-spacing:-0.070987pt;}
.ls7c_c00050{letter-spacing:-0.064533pt;}
.ls89_c00050{letter-spacing:-0.058080pt;}
.ls6d_c00050{letter-spacing:-0.051627pt;}
.ls7d_c00050{letter-spacing:-0.045173pt;}
.ls84_c00050{letter-spacing:-0.038720pt;}
.ls57_c00050{letter-spacing:-0.032267pt;}
.ls44_c00050{letter-spacing:-0.025813pt;}
.ls76_c00050{letter-spacing:-0.012907pt;}
.ls74_c00050{letter-spacing:-0.006453pt;}
.ls4a_c00050{letter-spacing:0.000000pt;}
.lsc_c00050{letter-spacing:0.019360pt;}
.ls23_c00050{letter-spacing:0.025813pt;}
.ls14_c00050{letter-spacing:0.032267pt;}
.ls11_c00050{letter-spacing:0.038720pt;}
.lse_c00050{letter-spacing:0.045173pt;}
.lsb_c00050{letter-spacing:0.051627pt;}
.ls22_c00050{letter-spacing:0.058080pt;}
.ls10_c00050{letter-spacing:0.064533pt;}
.ls17_c00050{letter-spacing:0.070987pt;}
.ls37_c00050{letter-spacing:0.083893pt;}
.ls4_c00050{letter-spacing:0.122613pt;}
.ls2d_c00050{letter-spacing:0.129067pt;}
.ls9_c00050{letter-spacing:0.135520pt;}
.ls3b_c00050{letter-spacing:0.141973pt;}
.ls26_c00050{letter-spacing:0.148427pt;}
.ls1f_c00050{letter-spacing:0.154880pt;}
.ls25_c00050{letter-spacing:0.161333pt;}
.lsa_c00050{letter-spacing:0.167787pt;}
.ls28_c00050{letter-spacing:0.174240pt;}
.ls3c_c00050{letter-spacing:0.180693pt;}
.ls2c_c00050{letter-spacing:0.184053pt;}
.ls19_c00050{letter-spacing:0.187147pt;}
.ls2_c00050{letter-spacing:0.206507pt;}
.ls18_c00050{letter-spacing:0.212960pt;}
.lsf_c00050{letter-spacing:0.219413pt;}
.ls33_c00050{letter-spacing:0.245227pt;}
.ls38_c00050{letter-spacing:0.258133pt;}
.ls97_c00050{letter-spacing:0.258667pt;}
.ls3f_c00050{letter-spacing:0.260213pt;}
.ls29_c00050{letter-spacing:0.264587pt;}
.ls24_c00050{letter-spacing:0.283947pt;}
.ls35_c00050{letter-spacing:0.285600pt;}
.ls32_c00050{letter-spacing:0.322667pt;}
.ls71_c00050{letter-spacing:0.329120pt;}
.ls1b_c00050{letter-spacing:0.336373pt;}
.ls1d_c00050{letter-spacing:0.342027pt;}
.ls2e_c00050{letter-spacing:0.348480pt;}
.ls21_c00050{letter-spacing:0.367840pt;}
.ls30_c00050{letter-spacing:0.374293pt;}
.ls1e_c00050{letter-spacing:0.393653pt;}
.ls7_c00050{letter-spacing:0.406560pt;}
.ls39_c00050{letter-spacing:0.412533pt;}
.ls34_c00050{letter-spacing:0.425227pt;}
.ls16_c00050{letter-spacing:0.450613pt;}
.ls31_c00050{letter-spacing:0.463307pt;}
.ls3e_c00050{letter-spacing:0.464640pt;}
.ls1_c00050{letter-spacing:0.484000pt;}
.ls13_c00050{letter-spacing:0.490453pt;}
.ls1c_c00050{letter-spacing:0.496907pt;}
.ls15_c00050{letter-spacing:0.580800pt;}
.ls8_c00050{letter-spacing:0.653707pt;}
.ls3a_c00050{letter-spacing:0.658240pt;}
.ls5_c00050{letter-spacing:0.677600pt;}
.ls6_c00050{letter-spacing:0.729227pt;}
.ls1a_c00050{letter-spacing:0.761493pt;}
.ls36_c00050{letter-spacing:0.787307pt;}
.lsd_c00050{letter-spacing:0.800213pt;}
.ls27_c00050{letter-spacing:0.819573pt;}
.ls40_c00050{letter-spacing:0.942187pt;}
.ls3d_c00050{letter-spacing:0.945653pt;}
.ls3_c00050{letter-spacing:1.322933pt;}
.ls2a_c00050{letter-spacing:1.439093pt;}
.ls12_c00050{letter-spacing:1.458453pt;}
.ls2b_c00050{letter-spacing:1.535893pt;}
.ls2f_c00050{letter-spacing:1.955360pt;}
.ls41_c00050{letter-spacing:1.976907pt;}
.ls0_c00050{letter-spacing:1.993067pt;}
.ls20_c00050{letter-spacing:2.077973pt;}
.ws0_c00050{word-spacing:0.000000pt;}
._0_c00050{margin-left:-3.716800pt;}
._9_c00050{margin-left:-2.310613pt;}
._7_c00050{margin-left:-1.387467pt;}
._8_c00050{width:1.471360pt;}
._6_c00050{width:2.929813pt;}
._4_c00050{width:4.039787pt;}
._f_c00050{width:4.962613pt;}
._2_c00050{width:6.130667pt;}
._5_c00050{width:7.834347pt;}
._1_c00050{width:9.131467pt;}
._3_c00050{width:10.841600pt;}
._a_c00050{width:11.738613pt;}
._14_c00050{width:13.455200pt;}
._b_c00050{width:15.268587pt;}
._16_c00050{width:17.914453pt;}
._c_c00050{width:19.037333pt;}
._15_c00050{width:20.373920pt;}
._d_c00050{width:21.792907pt;}
._e_c00050{width:23.302987pt;}
._17_c00050{width:24.693173pt;}
._10_c00050{width:25.761707pt;}
._13_c00050{width:26.949120pt;}
._11_c00050{width:28.278507pt;}
._12_c00050{width:31.569707pt;}
.fs3_c00050{font-size:48.640000pt;}
.fs5_c00050{font-size:51.733333pt;}
.fs0_c00050{font-size:53.866667pt;}
.fs7_c00050{font-size:58.666667pt;}
.fs4_c00050{font-size:59.733333pt;}
.fs2_c00050{font-size:63.466667pt;}
.fs1_c00050{font-size:64.533333pt;}
.fs6_c00050{font-size:68.266667pt;}
.y0_c00050{bottom:0.000000pt;}
.y21_c00050{bottom:57.293333pt;}
.y20_c00050{bottom:140.164533pt;}
.y1f_c00050{bottom:167.365600pt;}
.y1e_c00050{bottom:195.211733pt;}
.y1d_c00050{bottom:249.607200pt;}
.y1c_c00050{bottom:277.447200pt;}
.y1b_c00050{bottom:305.293333pt;}
.y1a_c00050{bottom:332.813333pt;}
.y18_c00050{bottom:360.012533pt;}
.y19_c00050{bottom:360.013333pt;}
.y17_c00050{bottom:387.213333pt;}
.y16_c00050{bottom:414.733333pt;}
.y15_c00050{bottom:442.253333pt;}
.y14_c00050{bottom:442.255333pt;}
.y13_c00050{bottom:469.436800pt;}
.y12_c00050{bottom:524.806400pt;}
.y23_c00050{bottom:546.253333pt;}
.y22_c00050{bottom:549.440000pt;}
.y11_c00050{bottom:552.329867pt;}
.y10_c00050{bottom:579.831867pt;}
.yf_c00050{bottom:607.339200pt;}
.ye_c00050{bottom:634.878800pt;}
.yd_c00050{bottom:662.386133pt;}
.yc_c00050{bottom:689.925733pt;}
.yb_c00050{bottom:744.633867pt;}
.ya_c00050{bottom:772.473733pt;}
.y9_c00050{bottom:800.013333pt;}
.y7_c00050{bottom:827.206400pt;}
.y8_c00050{bottom:827.213333pt;}
.y6_c00050{bottom:854.713733pt;}
.y5_c00050{bottom:882.243067pt;}
.y4_c00050{bottom:910.089200pt;}
.y3_c00050{bottom:965.124533pt;}
.y2_c00050{bottom:993.293333pt;}
.y1_c00050{bottom:1061.120000pt;}
.h5_c00050{height:32.394240pt;}
.hc_c00050{height:50.773437pt;}
.h2_c00050{height:52.867187pt;}
.he_c00050{height:61.187500pt;}
.h9_c00050{height:62.258073pt;}
.hb_c00050{height:63.317804pt;}
.h3_c00050{height:63.335938pt;}
.h8_c00050{height:63.348737pt;}
.ha_c00050{height:63.360471pt;}
.h6_c00050{height:63.361004pt;}
.h4_c00050{height:63.377004pt;}
.h7_c00050{height:63.421804pt;}
.hd_c00050{height:71.200000pt;}
.h1_c00050{height:1122.666667pt;}
.h0_c00050{height:1122.880000pt;}
.w1_c00050{width:793.333333pt;}
.w0_c00050{width:793.600000pt;}
.x0_c00050{left:0.000000pt;}
.x10_c00050{left:106.360000pt;}
.xc_c00050{left:107.458933pt;}
.x6_c00050{left:109.091200pt;}
.x4_c00050{left:110.111467pt;}
.x1_c00050{left:111.866667pt;}
.x11_c00050{left:129.520000pt;}
.x18_c00050{left:153.492000pt;}
.xd_c00050{left:154.471867pt;}
.xb_c00050{left:155.729867pt;}
.x5_c00050{left:157.346000pt;}
.x14_c00050{left:175.533333pt;}
.x15_c00050{left:196.666667pt;}
.x2_c00050{left:201.106667pt;}
.x3_c00050{left:232.466667pt;}
.x16_c00050{left:360.493333pt;}
.xe_c00050{left:378.413333pt;}
.x19_c00050{left:379.466667pt;}
.x17_c00050{left:381.080000pt;}
.x7_c00050{left:383.373333pt;}
.xf_c00050{left:398.200000pt;}
.x8_c00050{left:423.320000pt;}
.x9_c00050{left:553.453333pt;}
.xa_c00050{left:574.266667pt;}
.x12_c00050{left:632.493333pt;}
.x13_c00050{left:656.826667pt;}
.x1b_c00050{left:755.320000pt;}
.x1a_c00050{left:756.253333pt;}
}





/* 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_c00051 {
    display:none;
  }
  .loading-indicator_c00051.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00051 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_c00051 { 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_c00051" -> "#page-container .classname_c00051")
 */
.pf_c00051 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00051 { /* 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_c00051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00051 { /* 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_c00051 { /* 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_c00051 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00051 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00051 {overflow:visible;}
  }
}
.c_c00051 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00051 { /* 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_c00051:after { /* webkit #35443 */
  content: '';
}
.t_c00051:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00051 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 */
}
.__c00051 { /* 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_c00051 { /* info for Javascript */
  display:none;
}
.l_c00051 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00051 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00051 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00051: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_c00051 {
    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_c00051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00051.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_c00051 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00051;src:url('chunks/assets/font_38bb61a7605fd78dfc3f8452.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.311035;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_c00051;src:url('chunks/assets/font_c3d399b5ef2eaa478a62b789.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:0.666000;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_c00051;src:url('chunks/assets/font_307461d6414df2e8009b10b2.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.284668;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_c00051;src:url('chunks/assets/font_213c16102a0822803c3db3e3.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.284180;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_c00051{transform:matrix(0.179853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179853,0.000000,0.000000,0.250000,0,0);}
.m1_c00051{transform:matrix(0.200721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200721,0.000000,0.000000,0.250000,0,0);}
.m3_c00051{transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);}
.m5_c00051{transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);}
.m4_c00051{transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);}
.m0_c00051{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);}
.v1_c00051{vertical-align:-11.460000px;}
.v0_c00051{vertical-align:0.000000px;}
.v2_c00051{vertical-align:11.445600px;}
.ls19_c00051{letter-spacing:-2.268000px;}
.ls14_c00051{letter-spacing:-2.183760px;}
.ls20_c00051{letter-spacing:-2.079000px;}
.ls13_c00051{letter-spacing:-1.176000px;}
.ls17_c00051{letter-spacing:-0.490500px;}
.ls15_c00051{letter-spacing:-0.327000px;}
.ls1c_c00051{letter-spacing:-0.213840px;}
.ls1b_c00051{letter-spacing:-0.051840px;}
.ls1d_c00051{letter-spacing:-0.019440px;}
.ls12_c00051{letter-spacing:0.000000px;}
.ls3_c00051{letter-spacing:0.006480px;}
.ls5_c00051{letter-spacing:0.143880px;}
.ls1f_c00051{letter-spacing:0.149040px;}
.lse_c00051{letter-spacing:0.200880px;}
.lsd_c00051{letter-spacing:0.239760px;}
.ls4_c00051{letter-spacing:0.272160px;}
.lsc_c00051{letter-spacing:0.291600px;}
.ls8_c00051{letter-spacing:0.307380px;}
.ls18_c00051{letter-spacing:0.313920px;}
.lsa_c00051{letter-spacing:0.330480px;}
.ls6_c00051{letter-spacing:0.382320px;}
.ls1a_c00051{letter-spacing:0.401760px;}
.ls7_c00051{letter-spacing:0.511920px;}
.ls2_c00051{letter-spacing:0.550800px;}
.ls16_c00051{letter-spacing:0.667440px;}
.ls10_c00051{letter-spacing:0.758160px;}
.ls1e_c00051{letter-spacing:0.835920px;}
.ls1_c00051{letter-spacing:0.972000px;}
.lsf_c00051{letter-spacing:1.101600px;}
.ls9_c00051{letter-spacing:1.399680px;}
.ls0_c00051{letter-spacing:1.808640px;}
.ls11_c00051{letter-spacing:1.998720px;}
.lsb_c00051{letter-spacing:2.138400px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{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__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00051{word-spacing:-11.400000px;}
.ws1_c00051{word-spacing:0.000000px;}
._b_c00051{margin-left:-16.588800px;}
._0_c00051{margin-left:-2.557440px;}
._a_c00051{margin-left:-1.276800px;}
._9_c00051{width:1.980000px;}
._c_c00051{width:5.475600px;}
._d_c00051{width:6.700320px;}
._8_c00051{width:10.212480px;}
._6_c00051{width:12.630960px;}
._7_c00051{width:18.150240px;}
._3_c00051{width:24.040800px;}
._1_c00051{width:26.179200px;}
._5_c00051{width:27.339240px;}
._4_c00051{width:28.777680px;}
._2_c00051{width:31.544640px;}
.fc0_c00051{color:transparent;}
.fs2_c00051{font-size:33.600000px;}
.fs1_c00051{font-size:37.440000px;}
.fs5_c00051{font-size:45.600000px;}
.fs0_c00051{font-size:57.600000px;}
.fs6_c00051{font-size:59.400000px;}
.fs3_c00051{font-size:64.800000px;}
.fs4_c00051{font-size:65.400000px;}
.y0_c00051{bottom:0.000000px;}
.y8_c00051{bottom:69.855000px;}
.y7_c00051{bottom:231.495000px;}
.y6_c00051{bottom:250.935000px;}
.y5_c00051{bottom:269.640000px;}
.y4_c00051{bottom:269.647800px;}
.y3_c00051{bottom:288.375000px;}
.y2_c00051{bottom:499.695000px;}
.y1_c00051{bottom:1194.855000px;}
.h3_c00051{height:24.935040px;}
.h4_c00051{height:32.976562px;}
.h2_c00051{height:58.050000px;}
.h8_c00051{height:58.297852px;}
.h7_c00051{height:63.597656px;}
.h6_c00051{height:64.123390px;}
.h5_c00051{height:64.154590px;}
.h1_c00051{height:1263.000000px;}
.h0_c00051{height:1263.240000px;}
.w1_c00051{width:892.500000px;}
.w0_c00051{width:892.800000px;}
.x0_c00051{left:0.000000px;}
.x1_c00051{left:122.955000px;}
.x7_c00051{left:368.775000px;}
.x8_c00051{left:383.895000px;}
.x2_c00051{left:393.120000px;}
.x9_c00051{left:426.900000px;}
.x3_c00051{left:456.630000px;}
.x4_c00051{left:468.300000px;}
.x5_c00051{left:686.325000px;}
.x6_c00051{left:712.785000px;}
@media print{
.v1_c00051{vertical-align:-10.186667pt;}
.v0_c00051{vertical-align:0.000000pt;}
.v2_c00051{vertical-align:10.173867pt;}
.ls19_c00051{letter-spacing:-2.016000pt;}
.ls14_c00051{letter-spacing:-1.941120pt;}
.ls20_c00051{letter-spacing:-1.848000pt;}
.ls13_c00051{letter-spacing:-1.045333pt;}
.ls17_c00051{letter-spacing:-0.436000pt;}
.ls15_c00051{letter-spacing:-0.290667pt;}
.ls1c_c00051{letter-spacing:-0.190080pt;}
.ls1b_c00051{letter-spacing:-0.046080pt;}
.ls1d_c00051{letter-spacing:-0.017280pt;}
.ls12_c00051{letter-spacing:0.000000pt;}
.ls3_c00051{letter-spacing:0.005760pt;}
.ls5_c00051{letter-spacing:0.127893pt;}
.ls1f_c00051{letter-spacing:0.132480pt;}
.lse_c00051{letter-spacing:0.178560pt;}
.lsd_c00051{letter-spacing:0.213120pt;}
.ls4_c00051{letter-spacing:0.241920pt;}
.lsc_c00051{letter-spacing:0.259200pt;}
.ls8_c00051{letter-spacing:0.273227pt;}
.ls18_c00051{letter-spacing:0.279040pt;}
.lsa_c00051{letter-spacing:0.293760pt;}
.ls6_c00051{letter-spacing:0.339840pt;}
.ls1a_c00051{letter-spacing:0.357120pt;}
.ls7_c00051{letter-spacing:0.455040pt;}
.ls2_c00051{letter-spacing:0.489600pt;}
.ls16_c00051{letter-spacing:0.593280pt;}
.ls10_c00051{letter-spacing:0.673920pt;}
.ls1e_c00051{letter-spacing:0.743040pt;}
.ls1_c00051{letter-spacing:0.864000pt;}
.lsf_c00051{letter-spacing:0.979200pt;}
.ls9_c00051{letter-spacing:1.244160pt;}
.ls0_c00051{letter-spacing:1.607680pt;}
.ls11_c00051{letter-spacing:1.776640pt;}
.lsb_c00051{letter-spacing:1.900800pt;}
.ws0_c00051{word-spacing:-10.133333pt;}
.ws1_c00051{word-spacing:0.000000pt;}
._b_c00051{margin-left:-14.745600pt;}
._0_c00051{margin-left:-2.273280pt;}
._a_c00051{margin-left:-1.134933pt;}
._9_c00051{width:1.760000pt;}
._c_c00051{width:4.867200pt;}
._d_c00051{width:5.955840pt;}
._8_c00051{width:9.077760pt;}
._6_c00051{width:11.227520pt;}
._7_c00051{width:16.133547pt;}
._3_c00051{width:21.369600pt;}
._1_c00051{width:23.270400pt;}
._5_c00051{width:24.301547pt;}
._4_c00051{width:25.580160pt;}
._2_c00051{width:28.039680pt;}
.fs2_c00051{font-size:29.866667pt;}
.fs1_c00051{font-size:33.280000pt;}
.fs5_c00051{font-size:40.533333pt;}
.fs0_c00051{font-size:51.200000pt;}
.fs6_c00051{font-size:52.800000pt;}
.fs3_c00051{font-size:57.600000pt;}
.fs4_c00051{font-size:58.133333pt;}
.y0_c00051{bottom:0.000000pt;}
.y8_c00051{bottom:62.093333pt;}
.y7_c00051{bottom:205.773333pt;}
.y6_c00051{bottom:223.053333pt;}
.y5_c00051{bottom:239.680000pt;}
.y4_c00051{bottom:239.686933pt;}
.y3_c00051{bottom:256.333333pt;}
.y2_c00051{bottom:444.173333pt;}
.y1_c00051{bottom:1062.093333pt;}
.h3_c00051{height:22.164480pt;}
.h4_c00051{height:29.312500pt;}
.h2_c00051{height:51.600000pt;}
.h8_c00051{height:51.820312pt;}
.h7_c00051{height:56.531250pt;}
.h6_c00051{height:56.998569pt;}
.h5_c00051{height:57.026302pt;}
.h1_c00051{height:1122.666667pt;}
.h0_c00051{height:1122.880000pt;}
.w1_c00051{width:793.333333pt;}
.w0_c00051{width:793.600000pt;}
.x0_c00051{left:0.000000pt;}
.x1_c00051{left:109.293333pt;}
.x7_c00051{left:327.800000pt;}
.x8_c00051{left:341.240000pt;}
.x2_c00051{left:349.440000pt;}
.x9_c00051{left:379.466667pt;}
.x3_c00051{left:405.893333pt;}
.x4_c00051{left:416.266667pt;}
.x5_c00051{left:610.066667pt;}
.x6_c00051{left:633.586667pt;}
}





/* 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_c00052 {
    display:none;
  }
  .loading-indicator_c00052.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00052 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_c00052 { 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_c00052" -> "#page-container .classname_c00052")
 */
.pf_c00052 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00052 { /* 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_c00052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00052 { /* 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_c00052 { /* 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_c00052 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00052 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00052 {overflow:visible;}
  }
}
.c_c00052 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00052 { /* 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_c00052:after { /* webkit #35443 */
  content: '';
}
.t_c00052:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00052 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 */
}
.__c00052 { /* 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_c00052 { /* info for Javascript */
  display:none;
}
.l_c00052 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00052 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00052 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00052: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_c00052 {
    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_c00052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00052.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_c00052 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00052;src:url('chunks/assets/font_1d82927b97ad360abe00ad77.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.284668;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_c00052;src:url('chunks/assets/font_05223757c1aacd6c9b83b9e4.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.284180;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_c00052;src:url('chunks/assets/font_fc204b61c6f5274eb8c416b9.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;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:ff4_c00052;src:url('chunks/assets/font_8d1682cbd5a8cfbae231ee0f.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:1.311035;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_c00052;src:url('chunks/assets/font_2ba55f10604c201cc5f9372b.woff2')format("woff");}.ff5_c00052{font-family:ff5_c00052;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:ff6_c00052;src:url('chunks/assets/font_d5b4a1ef8ab07d86943fda18.woff2')format("woff");}.ff6_c00052{font-family:ff6_c00052;line-height:0.666000;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;}
.ma_c00052{transform:matrix(0.139744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139744,0.000000,0.000000,0.250000,0,0);}
.me_c00052{transform:matrix(0.221678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221678,0.000000,0.000000,0.250000,0,0);}
.mb_c00052{transform:matrix(0.238631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238631,0.000000,0.000000,0.250000,0,0);}
.md_c00052{transform:matrix(0.241744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241744,0.000000,0.000000,0.250000,0,0);}
.m9_c00052{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m8_c00052{transform:matrix(0.243712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243712,0.000000,0.000000,0.250000,0,0);}
.m3_c00052{transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);}
.m4_c00052{transform:matrix(0.246987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246987,0.000000,0.000000,0.250000,0,0);}
.m6_c00052{transform:matrix(0.247071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247071,0.000000,0.000000,0.250000,0,0);}
.m7_c00052{transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);}
.mc_c00052{transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);}
.m0_c00052{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_c00052{transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);}
.m2_c00052{transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);}
.m5_c00052{transform:matrix(0.321556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321556,0.000000,0.000000,0.250000,0,0);}
.v1_c00052{vertical-align:-10.020000px;}
.v3_c00052{vertical-align:-8.640000px;}
.v0_c00052{vertical-align:0.000000px;}
.v2_c00052{vertical-align:10.030337px;}
.ls88_c00052{letter-spacing:-2.520000px;}
.ls80_c00052{letter-spacing:-2.457000px;}
.ls8d_c00052{letter-spacing:-2.394000px;}
.ls8b_c00052{letter-spacing:-2.253600px;}
.ls8a_c00052{letter-spacing:-2.109600px;}
.ls83_c00052{letter-spacing:-1.607580px;}
.ls77_c00052{letter-spacing:-0.765180px;}
.ls89_c00052{letter-spacing:-0.727200px;}
.ls7e_c00052{letter-spacing:-0.512460px;}
.ls73_c00052{letter-spacing:-0.470340px;}
.ls78_c00052{letter-spacing:-0.463320px;}
.ls85_c00052{letter-spacing:-0.301860px;}
.ls74_c00052{letter-spacing:-0.231660px;}
.ls7b_c00052{letter-spacing:-0.196560px;}
.ls72_c00052{letter-spacing:-0.070200px;}
.ls71_c00052{letter-spacing:0.000000px;}
.ls5c_c00052{letter-spacing:0.449280px;}
.ls4b_c00052{letter-spacing:0.491400px;}
.ls7d_c00052{letter-spacing:0.554580px;}
.ls2f_c00052{letter-spacing:0.561600px;}
.ls75_c00052{letter-spacing:0.575640px;}
.ls76_c00052{letter-spacing:0.582660px;}
.ls5a_c00052{letter-spacing:0.589680px;}
.ls33_c00052{letter-spacing:0.608880px;}
.ls14_c00052{letter-spacing:0.631800px;}
.ls82_c00052{letter-spacing:0.638820px;}
.ls5_c00052{letter-spacing:0.652860px;}
.ls39_c00052{letter-spacing:0.659880px;}
.ls8_c00052{letter-spacing:0.673920px;}
.ls6b_c00052{letter-spacing:0.687960px;}
.ls44_c00052{letter-spacing:0.694980px;}
.ls3a_c00052{letter-spacing:0.702000px;}
.ls16_c00052{letter-spacing:0.716040px;}
.ls26_c00052{letter-spacing:0.758160px;}
.ls17_c00052{letter-spacing:0.765180px;}
.ls19_c00052{letter-spacing:0.779220px;}
.ls53_c00052{letter-spacing:0.785880px;}
.ls1b_c00052{letter-spacing:0.786240px;}
.ls1e_c00052{letter-spacing:0.793260px;}
.ls54_c00052{letter-spacing:0.828360px;}
.ls2a_c00052{letter-spacing:0.835380px;}
.ls28_c00052{letter-spacing:0.849420px;}
.ls59_c00052{letter-spacing:0.863460px;}
.ls21_c00052{letter-spacing:0.863760px;}
.ls30_c00052{letter-spacing:0.877500px;}
.ls8c_c00052{letter-spacing:0.891540px;}
.ls4d_c00052{letter-spacing:0.892080px;}
.ls15_c00052{letter-spacing:0.898560px;}
.ls38_c00052{letter-spacing:0.912600px;}
.lse_c00052{letter-spacing:0.919620px;}
.ls11_c00052{letter-spacing:0.926640px;}
.ls32_c00052{letter-spacing:0.940680px;}
.ls31_c00052{letter-spacing:0.954720px;}
.ls43_c00052{letter-spacing:0.968760px;}
.ls4c_c00052{letter-spacing:0.969960px;}
.ls3e_c00052{letter-spacing:0.982800px;}
.ls55_c00052{letter-spacing:1.003860px;}
.ls2b_c00052{letter-spacing:1.017900px;}
.ls60_c00052{letter-spacing:1.024920px;}
.ls7f_c00052{letter-spacing:1.031940px;}
.ls5d_c00052{letter-spacing:1.038960px;}
.ls3c_c00052{letter-spacing:1.040760px;}
.ls45_c00052{letter-spacing:1.045980px;}
.ls65_c00052{letter-spacing:1.060020px;}
.ls7_c00052{letter-spacing:1.067040px;}
.ls9_c00052{letter-spacing:1.074060px;}
.ls24_c00052{letter-spacing:1.088100px;}
.ls37_c00052{letter-spacing:1.095120px;}
.ls13_c00052{letter-spacing:1.102140px;}
.ls68_c00052{letter-spacing:1.116180px;}
.ls20_c00052{letter-spacing:1.118640px;}
.ls3_c00052{letter-spacing:1.123200px;}
.ls27_c00052{letter-spacing:1.130220px;}
.ls84_c00052{letter-spacing:1.137240px;}
.ls4e_c00052{letter-spacing:1.144260px;}
.ls5f_c00052{letter-spacing:1.151280px;}
.ls64_c00052{letter-spacing:1.165320px;}
.ls1d_c00052{letter-spacing:1.186380px;}
.ls4a_c00052{letter-spacing:1.207440px;}
.ls6c_c00052{letter-spacing:1.228500px;}
.ls56_c00052{letter-spacing:1.235520px;}
.ls40_c00052{letter-spacing:1.242540px;}
.ls3d_c00052{letter-spacing:1.256580px;}
.ls2_c00052{letter-spacing:1.270620px;}
.ls1_c00052{letter-spacing:1.277640px;}
.ls48_c00052{letter-spacing:1.291680px;}
.ls58_c00052{letter-spacing:1.305720px;}
.ls47_c00052{letter-spacing:1.312740px;}
.ls22_c00052{letter-spacing:1.319760px;}
.ls6f_c00052{letter-spacing:1.326780px;}
.ls46_c00052{letter-spacing:1.340820px;}
.ls12_c00052{letter-spacing:1.354860px;}
.ls5e_c00052{letter-spacing:1.361880px;}
.ls5b_c00052{letter-spacing:1.368900px;}
.ls10_c00052{letter-spacing:1.375920px;}
.ls4_c00052{letter-spacing:1.382940px;}
.ls3b_c00052{letter-spacing:1.389960px;}
.ls50_c00052{letter-spacing:1.411020px;}
.ls6_c00052{letter-spacing:1.425060px;}
.ls62_c00052{letter-spacing:1.439100px;}
.ls57_c00052{letter-spacing:1.453140px;}
.ls2c_c00052{letter-spacing:1.460160px;}
.ls25_c00052{letter-spacing:1.481220px;}
.ls41_c00052{letter-spacing:1.495260px;}
.ls7c_c00052{letter-spacing:1.509300px;}
.ls1f_c00052{letter-spacing:1.516320px;}
.ls66_c00052{letter-spacing:1.544400px;}
.lsa_c00052{letter-spacing:1.551420px;}
.ls52_c00052{letter-spacing:1.579500px;}
.ls23_c00052{letter-spacing:1.586520px;}
.ls63_c00052{letter-spacing:1.635660px;}
.ls67_c00052{letter-spacing:1.642680px;}
.ls2e_c00052{letter-spacing:1.663740px;}
.ls18_c00052{letter-spacing:1.670760px;}
.ls1a_c00052{letter-spacing:1.719900px;}
.ls2d_c00052{letter-spacing:1.755000px;}
.ls87_c00052{letter-spacing:1.790100px;}
.ls29_c00052{letter-spacing:1.811160px;}
.ls36_c00052{letter-spacing:1.818180px;}
.ls49_c00052{letter-spacing:1.825200px;}
.lsb_c00052{letter-spacing:1.832220px;}
.ls3f_c00052{letter-spacing:1.839240px;}
.ls6a_c00052{letter-spacing:1.860300px;}
.ls35_c00052{letter-spacing:1.930500px;}
.ls42_c00052{letter-spacing:1.986660px;}
.lsd_c00052{letter-spacing:1.993680px;}
.ls69_c00052{letter-spacing:2.000700px;}
.ls1c_c00052{letter-spacing:2.021760px;}
.ls4f_c00052{letter-spacing:2.028780px;}
.ls6d_c00052{letter-spacing:2.049840px;}
.ls86_c00052{letter-spacing:2.056860px;}
.lsf_c00052{letter-spacing:2.113020px;}
.ls79_c00052{letter-spacing:2.183220px;}
.ls70_c00052{letter-spacing:2.224020px;}
.ls61_c00052{letter-spacing:2.365740px;}
.ls81_c00052{letter-spacing:2.370030px;}
.ls0_c00052{letter-spacing:2.448240px;}
.lsc_c00052{letter-spacing:2.667600px;}
.ls51_c00052{letter-spacing:2.864160px;}
.ls6e_c00052{letter-spacing:2.871180px;}
.ls34_c00052{letter-spacing:3.208140px;}
.ls7a_c00052{letter-spacing:3.510000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{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__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00052{word-spacing:-17.086680px;}
.ws1_c00052{word-spacing:-12.176567px;}
.ws2_c00052{word-spacing:0.000000px;}
._0_c00052{margin-left:-4.569240px;}
._7_c00052{margin-left:-2.920320px;}
._d_c00052{margin-left:-1.681860px;}
._6_c00052{width:1.719120px;}
._8_c00052{width:2.772900px;}
._2_c00052{width:4.773600px;}
._1_c00052{width:6.121440px;}
._4_c00052{width:8.073000px;}
._5_c00052{width:9.806940px;}
._3_c00052{width:11.653200px;}
._b_c00052{width:13.162500px;}
._9_c00052{width:15.085980px;}
._c_c00052{width:16.714620px;}
._10_c00052{width:18.823680px;}
._a_c00052{width:20.203560px;}
._11_c00052{width:22.267440px;}
._f_c00052{width:23.294340px;}
._14_c00052{width:24.577020px;}
._12_c00052{width:26.507520px;}
._13_c00052{width:28.374840px;}
._e_c00052{width:31.141340px;}
.fc0_c00052{color:transparent;}
.fs3_c00052{font-size:43.800600px;}
.fs4_c00052{font-size:47.400600px;}
.fs7_c00052{font-size:56.160000px;}
.fs0_c00052{font-size:60.600000px;}
.fs6_c00052{font-size:61.800000px;}
.fs8_c00052{font-size:68.400000px;}
.fs1_c00052{font-size:70.200000px;}
.fs2_c00052{font-size:70.800000px;}
.fs5_c00052{font-size:72.000000px;}
.y0_c00052{bottom:0.000000px;}
.y20_c00052{bottom:64.095000px;}
.y1f_c00052{bottom:188.275050px;}
.y1e_c00052{bottom:219.601800px;}
.y1d_c00052{bottom:250.560000px;}
.y1c_c00052{bottom:281.520000px;}
.y1b_c00052{bottom:312.493950px;}
.y1a_c00052{bottom:343.820700px;}
.y19_c00052{bottom:405.016200px;}
.y18_c00052{bottom:466.213050px;}
.y17_c00052{bottom:498.259350px;}
.y16_c00052{bottom:529.200000px;}
.y15_c00052{bottom:559.816800px;}
.y14_c00052{bottom:590.775000px;}
.y13_c00052{bottom:652.689600px;}
.y12_c00052{bottom:683.279250px;}
.y11_c00052{bottom:714.255000px;}
.yf_c00052{bottom:776.519250px;}
.y10_c00052{bottom:776.520000px;}
.yd_c00052{bottom:807.488250px;}
.ye_c00052{bottom:807.495000px;}
.yb_c00052{bottom:838.808250px;}
.yc_c00052{bottom:838.815000px;}
.ya_c00052{bottom:870.135000px;}
.y9_c00052{bottom:901.080000px;}
.y8_c00052{bottom:901.083600px;}
.y7_c00052{bottom:932.041800px;}
.y6_c00052{bottom:962.997450px;}
.y5_c00052{bottom:993.604650px;}
.y4_c00052{bottom:1024.545300px;}
.y3_c00052{bottom:1086.128250px;}
.y2_c00052{bottom:1117.455000px;}
.y1_c00052{bottom:1194.495000px;}
.ha_c00052{height:37.402560px;}
.h8_c00052{height:46.521097px;}
.h2_c00052{height:59.475586px;}
.hb_c00052{height:67.130859px;}
.h3_c00052{height:68.897461px;}
.h5_c00052{height:69.437358px;}
.h6_c00052{height:69.451758px;}
.h7_c00052{height:69.454758px;}
.h4_c00052{height:69.461958px;}
.h9_c00052{height:72.562500px;}
.h1_c00052{height:1263.000000px;}
.h0_c00052{height:1263.240000px;}
.w1_c00052{width:892.500000px;}
.w0_c00052{width:892.800000px;}
.x0_c00052{left:0.000000px;}
.x11_c00052{left:119.824500px;}
.x6_c00052{left:120.932400px;}
.x4_c00052{left:122.300700px;}
.x2_c00052{left:123.704700px;}
.x1_c00052{left:124.770000px;}
.x12_c00052{left:173.419050px;}
.xf_c00052{left:174.420000px;}
.x3_c00052{left:176.688150px;}
.x13_c00052{left:186.450000px;}
.x10_c00052{left:203.970000px;}
.x14_c00052{left:300.045000px;}
.x15_c00052{left:328.935000px;}
.xb_c00052{left:354.360000px;}
.x16_c00052{left:359.190000px;}
.xc_c00052{left:375.675000px;}
.xd_c00052{left:395.610000px;}
.x17_c00052{left:415.605000px;}
.xe_c00052{left:423.990000px;}
.x1d_c00052{left:427.260000px;}
.x18_c00052{left:452.895000px;}
.x7_c00052{left:524.055000px;}
.x19_c00052{left:542.775000px;}
.x8_c00052{left:553.875000px;}
.x1a_c00052{left:566.190000px;}
.x1b_c00052{left:611.190000px;}
.x9_c00052{left:628.365000px;}
.x1c_c00052{left:648.525000px;}
.xa_c00052{left:656.835000px;}
.x5_c00052{left:734.655000px;}
@media print{
.v1_c00052{vertical-align:-8.906667pt;}
.v3_c00052{vertical-align:-7.680000pt;}
.v0_c00052{vertical-align:0.000000pt;}
.v2_c00052{vertical-align:8.915855pt;}
.ls88_c00052{letter-spacing:-2.240000pt;}
.ls80_c00052{letter-spacing:-2.184000pt;}
.ls8d_c00052{letter-spacing:-2.128000pt;}
.ls8b_c00052{letter-spacing:-2.003200pt;}
.ls8a_c00052{letter-spacing:-1.875200pt;}
.ls83_c00052{letter-spacing:-1.428960pt;}
.ls77_c00052{letter-spacing:-0.680160pt;}
.ls89_c00052{letter-spacing:-0.646400pt;}
.ls7e_c00052{letter-spacing:-0.455520pt;}
.ls73_c00052{letter-spacing:-0.418080pt;}
.ls78_c00052{letter-spacing:-0.411840pt;}
.ls85_c00052{letter-spacing:-0.268320pt;}
.ls74_c00052{letter-spacing:-0.205920pt;}
.ls7b_c00052{letter-spacing:-0.174720pt;}
.ls72_c00052{letter-spacing:-0.062400pt;}
.ls71_c00052{letter-spacing:0.000000pt;}
.ls5c_c00052{letter-spacing:0.399360pt;}
.ls4b_c00052{letter-spacing:0.436800pt;}
.ls7d_c00052{letter-spacing:0.492960pt;}
.ls2f_c00052{letter-spacing:0.499200pt;}
.ls75_c00052{letter-spacing:0.511680pt;}
.ls76_c00052{letter-spacing:0.517920pt;}
.ls5a_c00052{letter-spacing:0.524160pt;}
.ls33_c00052{letter-spacing:0.541227pt;}
.ls14_c00052{letter-spacing:0.561600pt;}
.ls82_c00052{letter-spacing:0.567840pt;}
.ls5_c00052{letter-spacing:0.580320pt;}
.ls39_c00052{letter-spacing:0.586560pt;}
.ls8_c00052{letter-spacing:0.599040pt;}
.ls6b_c00052{letter-spacing:0.611520pt;}
.ls44_c00052{letter-spacing:0.617760pt;}
.ls3a_c00052{letter-spacing:0.624000pt;}
.ls16_c00052{letter-spacing:0.636480pt;}
.ls26_c00052{letter-spacing:0.673920pt;}
.ls17_c00052{letter-spacing:0.680160pt;}
.ls19_c00052{letter-spacing:0.692640pt;}
.ls53_c00052{letter-spacing:0.698560pt;}
.ls1b_c00052{letter-spacing:0.698880pt;}
.ls1e_c00052{letter-spacing:0.705120pt;}
.ls54_c00052{letter-spacing:0.736320pt;}
.ls2a_c00052{letter-spacing:0.742560pt;}
.ls28_c00052{letter-spacing:0.755040pt;}
.ls59_c00052{letter-spacing:0.767520pt;}
.ls21_c00052{letter-spacing:0.767787pt;}
.ls30_c00052{letter-spacing:0.780000pt;}
.ls8c_c00052{letter-spacing:0.792480pt;}
.ls4d_c00052{letter-spacing:0.792960pt;}
.ls15_c00052{letter-spacing:0.798720pt;}
.ls38_c00052{letter-spacing:0.811200pt;}
.lse_c00052{letter-spacing:0.817440pt;}
.ls11_c00052{letter-spacing:0.823680pt;}
.ls32_c00052{letter-spacing:0.836160pt;}
.ls31_c00052{letter-spacing:0.848640pt;}
.ls43_c00052{letter-spacing:0.861120pt;}
.ls4c_c00052{letter-spacing:0.862187pt;}
.ls3e_c00052{letter-spacing:0.873600pt;}
.ls55_c00052{letter-spacing:0.892320pt;}
.ls2b_c00052{letter-spacing:0.904800pt;}
.ls60_c00052{letter-spacing:0.911040pt;}
.ls7f_c00052{letter-spacing:0.917280pt;}
.ls5d_c00052{letter-spacing:0.923520pt;}
.ls3c_c00052{letter-spacing:0.925120pt;}
.ls45_c00052{letter-spacing:0.929760pt;}
.ls65_c00052{letter-spacing:0.942240pt;}
.ls7_c00052{letter-spacing:0.948480pt;}
.ls9_c00052{letter-spacing:0.954720pt;}
.ls24_c00052{letter-spacing:0.967200pt;}
.ls37_c00052{letter-spacing:0.973440pt;}
.ls13_c00052{letter-spacing:0.979680pt;}
.ls68_c00052{letter-spacing:0.992160pt;}
.ls20_c00052{letter-spacing:0.994347pt;}
.ls3_c00052{letter-spacing:0.998400pt;}
.ls27_c00052{letter-spacing:1.004640pt;}
.ls84_c00052{letter-spacing:1.010880pt;}
.ls4e_c00052{letter-spacing:1.017120pt;}
.ls5f_c00052{letter-spacing:1.023360pt;}
.ls64_c00052{letter-spacing:1.035840pt;}
.ls1d_c00052{letter-spacing:1.054560pt;}
.ls4a_c00052{letter-spacing:1.073280pt;}
.ls6c_c00052{letter-spacing:1.092000pt;}
.ls56_c00052{letter-spacing:1.098240pt;}
.ls40_c00052{letter-spacing:1.104480pt;}
.ls3d_c00052{letter-spacing:1.116960pt;}
.ls2_c00052{letter-spacing:1.129440pt;}
.ls1_c00052{letter-spacing:1.135680pt;}
.ls48_c00052{letter-spacing:1.148160pt;}
.ls58_c00052{letter-spacing:1.160640pt;}
.ls47_c00052{letter-spacing:1.166880pt;}
.ls22_c00052{letter-spacing:1.173120pt;}
.ls6f_c00052{letter-spacing:1.179360pt;}
.ls46_c00052{letter-spacing:1.191840pt;}
.ls12_c00052{letter-spacing:1.204320pt;}
.ls5e_c00052{letter-spacing:1.210560pt;}
.ls5b_c00052{letter-spacing:1.216800pt;}
.ls10_c00052{letter-spacing:1.223040pt;}
.ls4_c00052{letter-spacing:1.229280pt;}
.ls3b_c00052{letter-spacing:1.235520pt;}
.ls50_c00052{letter-spacing:1.254240pt;}
.ls6_c00052{letter-spacing:1.266720pt;}
.ls62_c00052{letter-spacing:1.279200pt;}
.ls57_c00052{letter-spacing:1.291680pt;}
.ls2c_c00052{letter-spacing:1.297920pt;}
.ls25_c00052{letter-spacing:1.316640pt;}
.ls41_c00052{letter-spacing:1.329120pt;}
.ls7c_c00052{letter-spacing:1.341600pt;}
.ls1f_c00052{letter-spacing:1.347840pt;}
.ls66_c00052{letter-spacing:1.372800pt;}
.lsa_c00052{letter-spacing:1.379040pt;}
.ls52_c00052{letter-spacing:1.404000pt;}
.ls23_c00052{letter-spacing:1.410240pt;}
.ls63_c00052{letter-spacing:1.453920pt;}
.ls67_c00052{letter-spacing:1.460160pt;}
.ls2e_c00052{letter-spacing:1.478880pt;}
.ls18_c00052{letter-spacing:1.485120pt;}
.ls1a_c00052{letter-spacing:1.528800pt;}
.ls2d_c00052{letter-spacing:1.560000pt;}
.ls87_c00052{letter-spacing:1.591200pt;}
.ls29_c00052{letter-spacing:1.609920pt;}
.ls36_c00052{letter-spacing:1.616160pt;}
.ls49_c00052{letter-spacing:1.622400pt;}
.lsb_c00052{letter-spacing:1.628640pt;}
.ls3f_c00052{letter-spacing:1.634880pt;}
.ls6a_c00052{letter-spacing:1.653600pt;}
.ls35_c00052{letter-spacing:1.716000pt;}
.ls42_c00052{letter-spacing:1.765920pt;}
.lsd_c00052{letter-spacing:1.772160pt;}
.ls69_c00052{letter-spacing:1.778400pt;}
.ls1c_c00052{letter-spacing:1.797120pt;}
.ls4f_c00052{letter-spacing:1.803360pt;}
.ls6d_c00052{letter-spacing:1.822080pt;}
.ls86_c00052{letter-spacing:1.828320pt;}
.lsf_c00052{letter-spacing:1.878240pt;}
.ls79_c00052{letter-spacing:1.940640pt;}
.ls70_c00052{letter-spacing:1.976907pt;}
.ls61_c00052{letter-spacing:2.102880pt;}
.ls81_c00052{letter-spacing:2.106693pt;}
.ls0_c00052{letter-spacing:2.176213pt;}
.lsc_c00052{letter-spacing:2.371200pt;}
.ls51_c00052{letter-spacing:2.545920pt;}
.ls6e_c00052{letter-spacing:2.552160pt;}
.ls34_c00052{letter-spacing:2.851680pt;}
.ls7a_c00052{letter-spacing:3.120000pt;}
.ws0_c00052{word-spacing:-15.188160pt;}
.ws1_c00052{word-spacing:-10.823615pt;}
.ws2_c00052{word-spacing:0.000000pt;}
._0_c00052{margin-left:-4.061547pt;}
._7_c00052{margin-left:-2.595840pt;}
._d_c00052{margin-left:-1.494987pt;}
._6_c00052{width:1.528107pt;}
._8_c00052{width:2.464800pt;}
._2_c00052{width:4.243200pt;}
._1_c00052{width:5.441280pt;}
._4_c00052{width:7.176000pt;}
._5_c00052{width:8.717280pt;}
._3_c00052{width:10.358400pt;}
._b_c00052{width:11.700000pt;}
._9_c00052{width:13.409760pt;}
._c_c00052{width:14.857440pt;}
._10_c00052{width:16.732160pt;}
._a_c00052{width:17.958720pt;}
._11_c00052{width:19.793280pt;}
._f_c00052{width:20.706080pt;}
._14_c00052{width:21.846240pt;}
._12_c00052{width:23.562240pt;}
._13_c00052{width:25.222080pt;}
._e_c00052{width:27.681191pt;}
.fs3_c00052{font-size:38.933867pt;}
.fs4_c00052{font-size:42.133867pt;}
.fs7_c00052{font-size:49.920000pt;}
.fs0_c00052{font-size:53.866667pt;}
.fs6_c00052{font-size:54.933333pt;}
.fs8_c00052{font-size:60.800000pt;}
.fs1_c00052{font-size:62.400000pt;}
.fs2_c00052{font-size:62.933333pt;}
.fs5_c00052{font-size:64.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y20_c00052{bottom:56.973333pt;}
.y1f_c00052{bottom:167.355600pt;}
.y1e_c00052{bottom:195.201600pt;}
.y1d_c00052{bottom:222.720000pt;}
.y1c_c00052{bottom:250.240000pt;}
.y1b_c00052{bottom:277.772400pt;}
.y1a_c00052{bottom:305.618400pt;}
.y19_c00052{bottom:360.014400pt;}
.y18_c00052{bottom:414.411600pt;}
.y17_c00052{bottom:442.897200pt;}
.y16_c00052{bottom:470.400000pt;}
.y15_c00052{bottom:497.614933pt;}
.y14_c00052{bottom:525.133333pt;}
.y13_c00052{bottom:580.168533pt;}
.y12_c00052{bottom:607.359333pt;}
.y11_c00052{bottom:634.893333pt;}
.yf_c00052{bottom:690.239333pt;}
.y10_c00052{bottom:690.240000pt;}
.yd_c00052{bottom:717.767333pt;}
.ye_c00052{bottom:717.773333pt;}
.yb_c00052{bottom:745.607333pt;}
.yc_c00052{bottom:745.613333pt;}
.ya_c00052{bottom:773.453333pt;}
.y9_c00052{bottom:800.960000pt;}
.y8_c00052{bottom:800.963200pt;}
.y7_c00052{bottom:828.481600pt;}
.y6_c00052{bottom:855.997733pt;}
.y5_c00052{bottom:883.204133pt;}
.y4_c00052{bottom:910.706933pt;}
.y3_c00052{bottom:965.447333pt;}
.y2_c00052{bottom:993.293333pt;}
.y1_c00052{bottom:1061.773333pt;}
.ha_c00052{height:33.246720pt;}
.h8_c00052{height:41.352086pt;}
.h2_c00052{height:52.867187pt;}
.hb_c00052{height:59.671875pt;}
.h3_c00052{height:61.242187pt;}
.h5_c00052{height:61.722096pt;}
.h6_c00052{height:61.734896pt;}
.h7_c00052{height:61.737563pt;}
.h4_c00052{height:61.743963pt;}
.h9_c00052{height:64.500000pt;}
.h1_c00052{height:1122.666667pt;}
.h0_c00052{height:1122.880000pt;}
.w1_c00052{width:793.333333pt;}
.w0_c00052{width:793.600000pt;}
.x0_c00052{left:0.000000pt;}
.x11_c00052{left:106.510667pt;}
.x6_c00052{left:107.495467pt;}
.x4_c00052{left:108.711733pt;}
.x2_c00052{left:109.959733pt;}
.x1_c00052{left:110.906667pt;}
.x12_c00052{left:154.150267pt;}
.xf_c00052{left:155.040000pt;}
.x3_c00052{left:157.056133pt;}
.x13_c00052{left:165.733333pt;}
.x10_c00052{left:181.306667pt;}
.x14_c00052{left:266.706667pt;}
.x15_c00052{left:292.386667pt;}
.xb_c00052{left:314.986667pt;}
.x16_c00052{left:319.280000pt;}
.xc_c00052{left:333.933333pt;}
.xd_c00052{left:351.653333pt;}
.x17_c00052{left:369.426667pt;}
.xe_c00052{left:376.880000pt;}
.x1d_c00052{left:379.786667pt;}
.x18_c00052{left:402.573333pt;}
.x7_c00052{left:465.826667pt;}
.x19_c00052{left:482.466667pt;}
.x8_c00052{left:492.333333pt;}
.x1a_c00052{left:503.280000pt;}
.x1b_c00052{left:543.280000pt;}
.x9_c00052{left:558.546667pt;}
.x1c_c00052{left:576.466667pt;}
.xa_c00052{left:583.853333pt;}
.x5_c00052{left:653.026667pt;}
}





/* 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_c00053 {
    display:none;
  }
  .loading-indicator_c00053.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00053 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_c00053 { 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_c00053" -> "#page-container .classname_c00053")
 */
.pf_c00053 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00053 { /* 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_c00053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00053 { /* 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_c00053 { /* 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_c00053 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00053 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00053 {overflow:visible;}
  }
}
.c_c00053 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00053 { /* 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_c00053:after { /* webkit #35443 */
  content: '';
}
.t_c00053:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00053 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 */
}
.__c00053 { /* 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_c00053 { /* info for Javascript */
  display:none;
}
.l_c00053 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00053 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00053 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00053: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_c00053 {
    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_c00053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00053.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_c00053 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00053;src:url('chunks/assets/font_38bb61a7605fd78dfc3f8452.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.311035;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_c00053;src:url('chunks/assets/font_8240d58efafe1f5fedaaefae.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.284668;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_c00053;src:url('chunks/assets/font_9ac19e8cf5ec667f12dff9ff.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.284180;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_c00053;src:url('chunks/assets/font_35b5e174d6908f269592a6b3.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;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;}
.m2_c00053{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{transform:matrix(0.243303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243303,0.000000,0.000000,0.250000,0,0);}
.m0_c00053{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);}
.m4_c00053{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m3_c00053{transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls22_c00053{letter-spacing:-2.289000px;}
.ls23_c00053{letter-spacing:-2.040480px;}
.ls3a_c00053{letter-spacing:-1.998720px;}
.ls27_c00053{letter-spacing:-1.340700px;}
.ls39_c00053{letter-spacing:-0.824040px;}
.ls33_c00053{letter-spacing:-0.791340px;}
.ls24_c00053{letter-spacing:-0.601680px;}
.ls36_c00053{letter-spacing:-0.562440px;}
.ls37_c00053{letter-spacing:-0.392400px;}
.ls28_c00053{letter-spacing:-0.379320px;}
.ls2d_c00053{letter-spacing:-0.366240px;}
.ls34_c00053{letter-spacing:-0.287760px;}
.ls2f_c00053{letter-spacing:-0.255060px;}
.ls25_c00053{letter-spacing:-0.209280px;}
.ls2c_c00053{letter-spacing:-0.170040px;}
.ls2e_c00053{letter-spacing:-0.130800px;}
.ls2b_c00053{letter-spacing:-0.124260px;}
.ls2a_c00053{letter-spacing:-0.071940px;}
.ls31_c00053{letter-spacing:-0.058860px;}
.ls29_c00053{letter-spacing:-0.045780px;}
.ls30_c00053{letter-spacing:-0.006540px;}
.ls38_c00053{letter-spacing:0.000000px;}
.ls3_c00053{letter-spacing:0.039240px;}
.ls1a_c00053{letter-spacing:0.104640px;}
.ls14_c00053{letter-spacing:0.111180px;}
.ls12_c00053{letter-spacing:0.176580px;}
.lsb_c00053{letter-spacing:0.183120px;}
.ls13_c00053{letter-spacing:0.196200px;}
.ls16_c00053{letter-spacing:0.209280px;}
.ls18_c00053{letter-spacing:0.235440px;}
.ls9_c00053{letter-spacing:0.255060px;}
.ls11_c00053{letter-spacing:0.268140px;}
.ls2_c00053{letter-spacing:0.307380px;}
.ls1_c00053{letter-spacing:0.333540px;}
.lsa_c00053{letter-spacing:0.353160px;}
.lsc_c00053{letter-spacing:0.359700px;}
.ls15_c00053{letter-spacing:0.385860px;}
.ls10_c00053{letter-spacing:0.398940px;}
.ls1f_c00053{letter-spacing:0.425100px;}
.ls35_c00053{letter-spacing:0.431640px;}
.ls8_c00053{letter-spacing:0.444720px;}
.lsf_c00053{letter-spacing:0.536280px;}
.ls1b_c00053{letter-spacing:0.542820px;}
.ls5_c00053{letter-spacing:0.562440px;}
.lse_c00053{letter-spacing:0.608220px;}
.ls21_c00053{letter-spacing:0.660540px;}
.ls7_c00053{letter-spacing:0.808920px;}
.ls19_c00053{letter-spacing:0.876360px;}
.ls17_c00053{letter-spacing:0.902520px;}
.lsd_c00053{letter-spacing:0.987540px;}
.ls6_c00053{letter-spacing:0.994080px;}
.ls20_c00053{letter-spacing:1.076040px;}
.ls0_c00053{letter-spacing:1.087800px;}
.ls1c_c00053{letter-spacing:1.347240px;}
.ls4_c00053{letter-spacing:1.432260px;}
.ls1e_c00053{letter-spacing:1.536900px;}
.ls1d_c00053{letter-spacing:2.720640px;}
.ls32_c00053{letter-spacing:3.120000px;}
.ls26_c00053{letter-spacing:3.270000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{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__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00053{word-spacing:0.000000px;}
._a_c00053{margin-left:-4.538760px;}
._9_c00053{margin-left:-2.674860px;}
._0_c00053{margin-left:-1.470000px;}
._7_c00053{width:1.386960px;}
._c_c00053{width:2.602920px;}
._b_c00053{width:4.171020px;}
._8_c00053{width:5.407080px;}
._12_c00053{width:6.809640px;}
._d_c00053{width:7.887240px;}
._e_c00053{width:8.918520px;}
._13_c00053{width:10.065900px;}
._11_c00053{width:11.172360px;}
._f_c00053{width:12.406380px;}
._10_c00053{width:14.139480px;}
._5_c00053{width:33.569820px;}
._6_c00053{width:36.375480px;}
._1_c00053{width:38.664480px;}
._2_c00053{width:39.946320px;}
._4_c00053{width:42.640800px;}
._3_c00053{width:46.080840px;}
.fc0_c00053{color:transparent;}
.fs5_c00053{font-size:57.600000px;}
.fs0_c00053{font-size:58.800000px;}
.fs4_c00053{font-size:61.200000px;}
.fs3_c00053{font-size:62.400000px;}
.fs2_c00053{font-size:64.200000px;}
.fs1_c00053{font-size:65.400000px;}
.y0_c00053{bottom:0.000000px;}
.ya_c00053{bottom:67.695015px;}
.y9_c00053{bottom:204.477915px;}
.y8_c00053{bottom:223.214115px;}
.y7_c00053{bottom:242.654265px;}
.y5_c00053{bottom:261.373815px;}
.y6_c00053{bottom:261.375015px;}
.y4_c00053{bottom:280.078215px;}
.y3_c00053{bottom:299.175015px;}
.y2_c00053{bottom:317.895015px;}
.y1_c00053{bottom:1193.040015px;}
.h6_c00053{height:56.531250px;}
.h2_c00053{height:59.259375px;}
.h3_c00053{height:64.186523px;}
.h4_c00053{height:65.081250px;}
.h5_c00053{height:65.084850px;}
.h1_c00053{height:1263.000000px;}
.h0_c00053{height:1263.240015px;}
.w1_c00053{width:892.500000px;}
.w0_c00053{width:892.800015px;}
.x0_c00053{left:0.000000px;}
.x1_c00053{left:122.595015px;}
.x2_c00053{left:180.885015px;}
.x3_c00053{left:213.810015px;}
.x9_c00053{left:425.820015px;}
.x7_c00053{left:657.090015px;}
.x8_c00053{left:680.325015px;}
.x4_c00053{left:693.195015px;}
.x5_c00053{left:708.285015px;}
.x6_c00053{left:732.060015px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls22_c00053{letter-spacing:-2.034667pt;}
.ls23_c00053{letter-spacing:-1.813760pt;}
.ls3a_c00053{letter-spacing:-1.776640pt;}
.ls27_c00053{letter-spacing:-1.191733pt;}
.ls39_c00053{letter-spacing:-0.732480pt;}
.ls33_c00053{letter-spacing:-0.703413pt;}
.ls24_c00053{letter-spacing:-0.534827pt;}
.ls36_c00053{letter-spacing:-0.499947pt;}
.ls37_c00053{letter-spacing:-0.348800pt;}
.ls28_c00053{letter-spacing:-0.337173pt;}
.ls2d_c00053{letter-spacing:-0.325547pt;}
.ls34_c00053{letter-spacing:-0.255787pt;}
.ls2f_c00053{letter-spacing:-0.226720pt;}
.ls25_c00053{letter-spacing:-0.186027pt;}
.ls2c_c00053{letter-spacing:-0.151147pt;}
.ls2e_c00053{letter-spacing:-0.116267pt;}
.ls2b_c00053{letter-spacing:-0.110453pt;}
.ls2a_c00053{letter-spacing:-0.063947pt;}
.ls31_c00053{letter-spacing:-0.052320pt;}
.ls29_c00053{letter-spacing:-0.040693pt;}
.ls30_c00053{letter-spacing:-0.005813pt;}
.ls38_c00053{letter-spacing:0.000000pt;}
.ls3_c00053{letter-spacing:0.034880pt;}
.ls1a_c00053{letter-spacing:0.093013pt;}
.ls14_c00053{letter-spacing:0.098827pt;}
.ls12_c00053{letter-spacing:0.156960pt;}
.lsb_c00053{letter-spacing:0.162773pt;}
.ls13_c00053{letter-spacing:0.174400pt;}
.ls16_c00053{letter-spacing:0.186027pt;}
.ls18_c00053{letter-spacing:0.209280pt;}
.ls9_c00053{letter-spacing:0.226720pt;}
.ls11_c00053{letter-spacing:0.238347pt;}
.ls2_c00053{letter-spacing:0.273227pt;}
.ls1_c00053{letter-spacing:0.296480pt;}
.lsa_c00053{letter-spacing:0.313920pt;}
.lsc_c00053{letter-spacing:0.319733pt;}
.ls15_c00053{letter-spacing:0.342987pt;}
.ls10_c00053{letter-spacing:0.354613pt;}
.ls1f_c00053{letter-spacing:0.377867pt;}
.ls35_c00053{letter-spacing:0.383680pt;}
.ls8_c00053{letter-spacing:0.395307pt;}
.lsf_c00053{letter-spacing:0.476693pt;}
.ls1b_c00053{letter-spacing:0.482507pt;}
.ls5_c00053{letter-spacing:0.499947pt;}
.lse_c00053{letter-spacing:0.540640pt;}
.ls21_c00053{letter-spacing:0.587147pt;}
.ls7_c00053{letter-spacing:0.719040pt;}
.ls19_c00053{letter-spacing:0.778987pt;}
.ls17_c00053{letter-spacing:0.802240pt;}
.lsd_c00053{letter-spacing:0.877813pt;}
.ls6_c00053{letter-spacing:0.883627pt;}
.ls20_c00053{letter-spacing:0.956480pt;}
.ls0_c00053{letter-spacing:0.966933pt;}
.ls1c_c00053{letter-spacing:1.197547pt;}
.ls4_c00053{letter-spacing:1.273120pt;}
.ls1e_c00053{letter-spacing:1.366133pt;}
.ls1d_c00053{letter-spacing:2.418347pt;}
.ls32_c00053{letter-spacing:2.773333pt;}
.ls26_c00053{letter-spacing:2.906667pt;}
.ws0_c00053{word-spacing:0.000000pt;}
._a_c00053{margin-left:-4.034453pt;}
._9_c00053{margin-left:-2.377653pt;}
._0_c00053{margin-left:-1.306667pt;}
._7_c00053{width:1.232853pt;}
._c_c00053{width:2.313707pt;}
._b_c00053{width:3.707573pt;}
._8_c00053{width:4.806293pt;}
._12_c00053{width:6.053013pt;}
._d_c00053{width:7.010880pt;}
._e_c00053{width:7.927573pt;}
._13_c00053{width:8.947467pt;}
._11_c00053{width:9.930987pt;}
._f_c00053{width:11.027893pt;}
._10_c00053{width:12.568427pt;}
._5_c00053{width:29.839840pt;}
._6_c00053{width:32.333760pt;}
._1_c00053{width:34.368427pt;}
._2_c00053{width:35.507840pt;}
._4_c00053{width:37.902933pt;}
._3_c00053{width:40.960747pt;}
.fs5_c00053{font-size:51.200000pt;}
.fs0_c00053{font-size:52.266667pt;}
.fs4_c00053{font-size:54.400000pt;}
.fs3_c00053{font-size:55.466667pt;}
.fs2_c00053{font-size:57.066667pt;}
.fs1_c00053{font-size:58.133333pt;}
.y0_c00053{bottom:0.000000pt;}
.ya_c00053{bottom:60.173347pt;}
.y9_c00053{bottom:181.758147pt;}
.y8_c00053{bottom:198.412547pt;}
.y7_c00053{bottom:215.692680pt;}
.y5_c00053{bottom:232.332280pt;}
.y6_c00053{bottom:232.333347pt;}
.y4_c00053{bottom:248.958413pt;}
.y3_c00053{bottom:265.933347pt;}
.y2_c00053{bottom:282.573347pt;}
.y1_c00053{bottom:1060.480013pt;}
.h6_c00053{height:50.250000pt;}
.h2_c00053{height:52.675000pt;}
.h3_c00053{height:57.054688pt;}
.h4_c00053{height:57.850000pt;}
.h5_c00053{height:57.853200pt;}
.h1_c00053{height:1122.666667pt;}
.h0_c00053{height:1122.880013pt;}
.w1_c00053{width:793.333333pt;}
.w0_c00053{width:793.600013pt;}
.x0_c00053{left:0.000000pt;}
.x1_c00053{left:108.973347pt;}
.x2_c00053{left:160.786680pt;}
.x3_c00053{left:190.053347pt;}
.x9_c00053{left:378.506680pt;}
.x7_c00053{left:584.080013pt;}
.x8_c00053{left:604.733347pt;}
.x4_c00053{left:616.173347pt;}
.x5_c00053{left:629.586680pt;}
.x6_c00053{left:650.720013pt;}
}





/* 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_c00054 {
    display:none;
  }
  .loading-indicator_c00054.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00054 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_c00054 { 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_c00054" -> "#page-container .classname_c00054")
 */
.pf_c00054 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00054 { /* 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_c00054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00054 { /* 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_c00054 { /* 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_c00054 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00054 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00054 {overflow:visible;}
  }
}
.c_c00054 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00054 { /* 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_c00054:after { /* webkit #35443 */
  content: '';
}
.t_c00054:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00054 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 */
}
.__c00054 { /* 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_c00054 { /* info for Javascript */
  display:none;
}
.l_c00054 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00054 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00054 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00054: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_c00054 {
    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_c00054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00054.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_c00054 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00054;src:url('chunks/assets/font_d7cd5168c02f9edcbd7c98c8.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.284668;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_c00054;src:url('chunks/assets/font_1839f11c8a364b037af0ef0d.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.284180;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_c00054;src:url('chunks/assets/font_309b5e1831bfd972cea3e4e0.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;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:ff4_c00054;src:url('chunks/assets/font_9110656dce8d9e0dd8f92d24.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;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;}
.m4_c00054{transform:matrix(0.137978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137978,0.000000,0.000000,0.250000,0,0);}
.ma_c00054{transform:matrix(0.206252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206252,0.000000,0.000000,0.250000,0,0);}
.m5_c00054{transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);}
.mc_c00054{transform:matrix(0.234821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234821,0.000000,0.000000,0.250000,0,0);}
.m9_c00054{transform:matrix(0.242283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242283,0.000000,0.000000,0.250000,0,0);}
.m7_c00054{transform:matrix(0.246520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246520,0.000000,0.000000,0.250000,0,0);}
.m6_c00054{transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);}
.mb_c00054{transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);}
.m8_c00054{transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);}
.m0_c00054{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);}
.m3_c00054{transform:matrix(0.258822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258822,0.000000,0.000000,0.250000,0,0);}
.m1_c00054{transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);}
.m2_c00054{transform:matrix(0.455059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455059,0.000000,0.000000,0.250000,0,0);}
.v2_c00054{vertical-align:-36.000000px;}
.v0_c00054{vertical-align:0.000000px;}
.v1_c00054{vertical-align:33.060000px;}
.ls6c_c00054{letter-spacing:-2.373000px;}
.ls7b_c00054{letter-spacing:-2.095020px;}
.ls60_c00054{letter-spacing:-1.922400px;}
.ls5a_c00054{letter-spacing:-1.807200px;}
.ls64_c00054{letter-spacing:-1.785600px;}
.ls65_c00054{letter-spacing:-1.720800px;}
.ls78_c00054{letter-spacing:-1.600080px;}
.ls62_c00054{letter-spacing:-1.490400px;}
.ls6a_c00054{letter-spacing:-1.344021px;}
.ls70_c00054{letter-spacing:-1.335660px;}
.ls63_c00054{letter-spacing:-1.216800px;}
.ls5b_c00054{letter-spacing:-1.180800px;}
.ls72_c00054{letter-spacing:-1.152600px;}
.ls44_c00054{letter-spacing:-1.108800px;}
.ls7a_c00054{letter-spacing:-1.050900px;}
.ls40_c00054{letter-spacing:-1.008000px;}
.ls75_c00054{letter-spacing:-0.996660px;}
.ls74_c00054{letter-spacing:-0.989880px;}
.ls7c_c00054{letter-spacing:-0.935640px;}
.ls53_c00054{letter-spacing:-0.885600px;}
.ls5d_c00054{letter-spacing:-0.878400px;}
.ls6f_c00054{letter-spacing:-0.793260px;}
.ls77_c00054{letter-spacing:-0.732240px;}
.ls61_c00054{letter-spacing:-0.712800px;}
.ls71_c00054{letter-spacing:-0.705120px;}
.ls6e_c00054{letter-spacing:-0.644100px;}
.ls76_c00054{letter-spacing:-0.515280px;}
.ls41_c00054{letter-spacing:-0.496800px;}
.ls48_c00054{letter-spacing:-0.482400px;}
.ls45_c00054{letter-spacing:-0.439200px;}
.ls6d_c00054{letter-spacing:-0.433920px;}
.ls59_c00054{letter-spacing:-0.374400px;}
.ls47_c00054{letter-spacing:-0.345600px;}
.ls6b_c00054{letter-spacing:-0.298320px;}
.ls46_c00054{letter-spacing:-0.295200px;}
.ls5c_c00054{letter-spacing:-0.280800px;}
.ls55_c00054{letter-spacing:-0.273600px;}
.ls5e_c00054{letter-spacing:-0.252000px;}
.ls79_c00054{letter-spacing:-0.244080px;}
.ls43_c00054{letter-spacing:-0.230400px;}
.ls73_c00054{letter-spacing:-0.210180px;}
.ls4c_c00054{letter-spacing:-0.165600px;}
.ls51_c00054{letter-spacing:-0.134520px;}
.ls4a_c00054{letter-spacing:-0.108000px;}
.ls4e_c00054{letter-spacing:-0.100800px;}
.ls4b_c00054{letter-spacing:-0.086400px;}
.ls54_c00054{letter-spacing:-0.079200px;}
.ls3f_c00054{letter-spacing:-0.064800px;}
.ls4f_c00054{letter-spacing:-0.050400px;}
.ls58_c00054{letter-spacing:-0.043200px;}
.ls49_c00054{letter-spacing:-0.036000px;}
.ls57_c00054{letter-spacing:-0.014400px;}
.ls3e_c00054{letter-spacing:0.000000px;}
.ls2f_c00054{letter-spacing:0.021600px;}
.ls42_c00054{letter-spacing:0.028800px;}
.ls2_c00054{letter-spacing:0.043200px;}
.ls20_c00054{letter-spacing:0.057600px;}
.ls50_c00054{letter-spacing:0.064800px;}
.ls12_c00054{letter-spacing:0.079200px;}
.ls2d_c00054{letter-spacing:0.108000px;}
.ls7d_c00054{letter-spacing:0.110160px;}
.ls5f_c00054{letter-spacing:0.122400px;}
.ls25_c00054{letter-spacing:0.144000px;}
.ls8_c00054{letter-spacing:0.151200px;}
.ls3c_c00054{letter-spacing:0.155520px;}
.ls2a_c00054{letter-spacing:0.158400px;}
.ls4_c00054{letter-spacing:0.180000px;}
.ls17_c00054{letter-spacing:0.187200px;}
.ls30_c00054{letter-spacing:0.194400px;}
.ls14_c00054{letter-spacing:0.201600px;}
.ls33_c00054{letter-spacing:0.223200px;}
.ls15_c00054{letter-spacing:0.230400px;}
.lsb_c00054{letter-spacing:0.237600px;}
.ls1f_c00054{letter-spacing:0.266400px;}
.ls1a_c00054{letter-spacing:0.280800px;}
.ls27_c00054{letter-spacing:0.324000px;}
.ls7_c00054{letter-spacing:0.331200px;}
.ls36_c00054{letter-spacing:0.338400px;}
.ls11_c00054{letter-spacing:0.345600px;}
.ls22_c00054{letter-spacing:0.360000px;}
.ls10_c00054{letter-spacing:0.367200px;}
.ls28_c00054{letter-spacing:0.381600px;}
.ls19_c00054{letter-spacing:0.388800px;}
.lse_c00054{letter-spacing:0.396000px;}
.ls21_c00054{letter-spacing:0.417600px;}
.lsf_c00054{letter-spacing:0.424800px;}
.ls16_c00054{letter-spacing:0.432000px;}
.ls3_c00054{letter-spacing:0.439200px;}
.ls39_c00054{letter-spacing:0.446400px;}
.ls1d_c00054{letter-spacing:0.475200px;}
.ls5_c00054{letter-spacing:0.489600px;}
.ls34_c00054{letter-spacing:0.532800px;}
.ls4d_c00054{letter-spacing:0.597600px;}
.ls1e_c00054{letter-spacing:0.633600px;}
.ls24_c00054{letter-spacing:0.669600px;}
.lsd_c00054{letter-spacing:0.684000px;}
.ls9_c00054{letter-spacing:0.712800px;}
.ls31_c00054{letter-spacing:0.727200px;}
.ls29_c00054{letter-spacing:0.748800px;}
.ls23_c00054{letter-spacing:0.763200px;}
.ls32_c00054{letter-spacing:0.777600px;}
.ls35_c00054{letter-spacing:0.784800px;}
.ls1b_c00054{letter-spacing:0.813600px;}
.ls2c_c00054{letter-spacing:0.849600px;}
.ls56_c00054{letter-spacing:0.871200px;}
.ls6_c00054{letter-spacing:0.900000px;}
.ls2e_c00054{letter-spacing:0.972000px;}
.ls37_c00054{letter-spacing:1.008000px;}
.ls38_c00054{letter-spacing:1.108800px;}
.ls52_c00054{letter-spacing:1.118640px;}
.lsa_c00054{letter-spacing:1.137600px;}
.ls3a_c00054{letter-spacing:1.193280px;}
.lsc_c00054{letter-spacing:1.209600px;}
.ls3b_c00054{letter-spacing:1.231200px;}
.ls3d_c00054{letter-spacing:1.353420px;}
.ls1_c00054{letter-spacing:1.382400px;}
.ls69_c00054{letter-spacing:1.387680px;}
.ls13_c00054{letter-spacing:1.425600px;}
.ls0_c00054{letter-spacing:1.464660px;}
.ls18_c00054{letter-spacing:1.677600px;}
.ls2b_c00054{letter-spacing:1.908000px;}
.ls67_c00054{letter-spacing:1.920030px;}
.ls1c_c00054{letter-spacing:2.016000px;}
.ls66_c00054{letter-spacing:2.220030px;}
.ls26_c00054{letter-spacing:2.736000px;}
.ls68_c00054{letter-spacing:6.030000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{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__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00054{word-spacing:0.000000px;}
._12_c00054{margin-left:-4.020960px;}
._a_c00054{margin-left:-2.988000px;}
._0_c00054{margin-left:-1.466160px;}
._8_c00054{width:2.040240px;}
._7_c00054{width:3.798960px;}
._9_c00054{width:4.888800px;}
._11_c00054{width:5.982000px;}
._c_c00054{width:7.306560px;}
._e_c00054{width:9.388800px;}
._f_c00054{width:10.512000px;}
._10_c00054{width:11.764800px;}
._14_c00054{width:13.084800px;}
._b_c00054{width:14.184000px;}
._15_c00054{width:15.200760px;}
._1_c00054{width:16.876800px;}
._16_c00054{width:18.579360px;}
._3_c00054{width:19.605600px;}
._6_c00054{width:20.815200px;}
._5_c00054{width:22.003200px;}
._2_c00054{width:23.270400px;}
._d_c00054{width:24.595200px;}
._4_c00054{width:26.020800px;}
._13_c00054{width:378.300000px;}
.fc0_c00054{color:transparent;}
.fsf_c00054{font-size:34.800600px;}
.fs4_c00054{font-size:38.400600px;}
.fs3_c00054{font-size:44.400600px;}
.fsc_c00054{font-size:56.400000px;}
.fs7_c00054{font-size:58.800000px;}
.fsb_c00054{font-size:60.600000px;}
.fs0_c00054{font-size:61.800000px;}
.fs8_c00054{font-size:62.400000px;}
.fs12_c00054{font-size:64.800000px;}
.fs11_c00054{font-size:67.800000px;}
.fsa_c00054{font-size:69.000000px;}
.fs2_c00054{font-size:70.800000px;}
.fs1_c00054{font-size:72.000000px;}
.fs9_c00054{font-size:74.400000px;}
.fsd_c00054{font-size:80.400000px;}
.fse_c00054{font-size:86.400000px;}
.fs10_c00054{font-size:108.600000px;}
.fs5_c00054{font-size:110.400000px;}
.fs6_c00054{font-size:120.600000px;}
.y0_c00054{bottom:0.000000px;}
.y20_c00054{bottom:67.695015px;}
.y1f_c00054{bottom:123.840015px;}
.y1d_c00054{bottom:143.638365px;}
.y1e_c00054{bottom:143.640015px;}
.y1c_c00054{bottom:163.080015px;}
.y1b_c00054{bottom:302.415015px;}
.y19_c00054{bottom:327.975015px;}
.y16_c00054{bottom:347.415015px;}
.y18_c00054{bottom:349.575015px;}
.y1a_c00054{bottom:366.120015px;}
.y17_c00054{bottom:366.855015px;}
.y13_c00054{bottom:388.080015px;}
.y15_c00054{bottom:388.455015px;}
.y14_c00054{bottom:394.575015px;}
.y12_c00054{bottom:478.815015px;}
.y11_c00054{bottom:516.600015px;}
.y10_c00054{bottom:523.080015px;}
.yf_c00054{bottom:625.335015px;}
.ye_c00054{bottom:655.917015px;}
.yd_c00054{bottom:686.895015px;}
.yc_c00054{bottom:718.215015px;}
.yb_c00054{bottom:748.815015px;}
.ya_c00054{bottom:780.135015px;}
.y9_c00054{bottom:811.095015px;}
.y8_c00054{bottom:873.360015px;}
.y7_c00054{bottom:935.295015px;}
.y6_c00054{bottom:965.877015px;}
.y5_c00054{bottom:996.837015px;}
.y4_c00054{bottom:1058.775015px;}
.y3_c00054{bottom:1089.357015px;}
.y2_c00054{bottom:1120.335015px;}
.y1_c00054{bottom:1197.360015px;}
.he_c00054{height:37.688089px;}
.h6_c00054{height:40.050626px;}
.h5_c00054{height:43.576761px;}
.hf_c00054{height:58.823438px;}
.h2_c00054{height:60.653320px;}
.ha_c00054{height:61.211719px;}
.h9_c00054{height:61.326563px;}
.h13_c00054{height:63.597656px;}
.h12_c00054{height:66.541992px;}
.h4_c00054{height:69.451758px;}
.h3_c00054{height:70.664062px;}
.hc_c00054{height:71.964844px;}
.hb_c00054{height:77.596875px;}
.h10_c00054{height:83.854688px;}
.hd_c00054{height:105.024844px;}
.h7_c00054{height:108.351562px;}
.h11_c00054{height:113.266406px;}
.h8_c00054{height:118.362305px;}
.h1_c00054{height:1263.000000px;}
.h0_c00054{height:1263.240015px;}
.w1_c00054{width:892.500000px;}
.w0_c00054{width:892.800015px;}
.x0_c00054{left:0.000000px;}
.x12_c00054{left:117.645015px;}
.x6_c00054{left:119.355015px;}
.x5_c00054{left:120.405015px;}
.x3_c00054{left:122.241015px;}
.x1_c00054{left:123.675015px;}
.x13_c00054{left:171.165015px;}
.x7_c00054{left:173.055015px;}
.x4_c00054{left:174.459015px;}
.x2_c00054{left:175.935015px;}
.x1d_c00054{left:182.040015px;}
.x14_c00054{left:198.915015px;}
.x1e_c00054{left:200.130015px;}
.x8_c00054{left:294.825015px;}
.x1f_c00054{left:319.365015px;}
.x20_c00054{left:346.800015px;}
.x15_c00054{left:354.435015px;}
.xe_c00054{left:356.415015px;}
.x16_c00054{left:378.285015px;}
.xf_c00054{left:389.055015px;}
.xc_c00054{left:390.405015px;}
.x10_c00054{left:400.845015px;}
.x21_c00054{left:425.460015px;}
.x9_c00054{left:456.870015px;}
.xa_c00054{left:467.625015px;}
.x11_c00054{left:476.145015px;}
.x17_c00054{left:486.285015px;}
.xd_c00054{left:498.900015px;}
.x18_c00054{left:508.485015px;}
.x19_c00054{left:567.645015px;}
.x1a_c00054{left:600.315015px;}
.xb_c00054{left:639.030015px;}
.x1b_c00054{left:688.965015px;}
.x1c_c00054{left:713.490015px;}
@media print{
.v2_c00054{vertical-align:-32.000000pt;}
.v0_c00054{vertical-align:0.000000pt;}
.v1_c00054{vertical-align:29.386667pt;}
.ls6c_c00054{letter-spacing:-2.109333pt;}
.ls7b_c00054{letter-spacing:-1.862240pt;}
.ls60_c00054{letter-spacing:-1.708800pt;}
.ls5a_c00054{letter-spacing:-1.606400pt;}
.ls64_c00054{letter-spacing:-1.587200pt;}
.ls65_c00054{letter-spacing:-1.529600pt;}
.ls78_c00054{letter-spacing:-1.422293pt;}
.ls62_c00054{letter-spacing:-1.324800pt;}
.ls6a_c00054{letter-spacing:-1.194685pt;}
.ls70_c00054{letter-spacing:-1.187253pt;}
.ls63_c00054{letter-spacing:-1.081600pt;}
.ls5b_c00054{letter-spacing:-1.049600pt;}
.ls72_c00054{letter-spacing:-1.024533pt;}
.ls44_c00054{letter-spacing:-0.985600pt;}
.ls7a_c00054{letter-spacing:-0.934133pt;}
.ls40_c00054{letter-spacing:-0.896000pt;}
.ls75_c00054{letter-spacing:-0.885920pt;}
.ls74_c00054{letter-spacing:-0.879893pt;}
.ls7c_c00054{letter-spacing:-0.831680pt;}
.ls53_c00054{letter-spacing:-0.787200pt;}
.ls5d_c00054{letter-spacing:-0.780800pt;}
.ls6f_c00054{letter-spacing:-0.705120pt;}
.ls77_c00054{letter-spacing:-0.650880pt;}
.ls61_c00054{letter-spacing:-0.633600pt;}
.ls71_c00054{letter-spacing:-0.626773pt;}
.ls6e_c00054{letter-spacing:-0.572533pt;}
.ls76_c00054{letter-spacing:-0.458027pt;}
.ls41_c00054{letter-spacing:-0.441600pt;}
.ls48_c00054{letter-spacing:-0.428800pt;}
.ls45_c00054{letter-spacing:-0.390400pt;}
.ls6d_c00054{letter-spacing:-0.385707pt;}
.ls59_c00054{letter-spacing:-0.332800pt;}
.ls47_c00054{letter-spacing:-0.307200pt;}
.ls6b_c00054{letter-spacing:-0.265173pt;}
.ls46_c00054{letter-spacing:-0.262400pt;}
.ls5c_c00054{letter-spacing:-0.249600pt;}
.ls55_c00054{letter-spacing:-0.243200pt;}
.ls5e_c00054{letter-spacing:-0.224000pt;}
.ls79_c00054{letter-spacing:-0.216960pt;}
.ls43_c00054{letter-spacing:-0.204800pt;}
.ls73_c00054{letter-spacing:-0.186827pt;}
.ls4c_c00054{letter-spacing:-0.147200pt;}
.ls51_c00054{letter-spacing:-0.119573pt;}
.ls4a_c00054{letter-spacing:-0.096000pt;}
.ls4e_c00054{letter-spacing:-0.089600pt;}
.ls4b_c00054{letter-spacing:-0.076800pt;}
.ls54_c00054{letter-spacing:-0.070400pt;}
.ls3f_c00054{letter-spacing:-0.057600pt;}
.ls4f_c00054{letter-spacing:-0.044800pt;}
.ls58_c00054{letter-spacing:-0.038400pt;}
.ls49_c00054{letter-spacing:-0.032000pt;}
.ls57_c00054{letter-spacing:-0.012800pt;}
.ls3e_c00054{letter-spacing:0.000000pt;}
.ls2f_c00054{letter-spacing:0.019200pt;}
.ls42_c00054{letter-spacing:0.025600pt;}
.ls2_c00054{letter-spacing:0.038400pt;}
.ls20_c00054{letter-spacing:0.051200pt;}
.ls50_c00054{letter-spacing:0.057600pt;}
.ls12_c00054{letter-spacing:0.070400pt;}
.ls2d_c00054{letter-spacing:0.096000pt;}
.ls7d_c00054{letter-spacing:0.097920pt;}
.ls5f_c00054{letter-spacing:0.108800pt;}
.ls25_c00054{letter-spacing:0.128000pt;}
.ls8_c00054{letter-spacing:0.134400pt;}
.ls3c_c00054{letter-spacing:0.138240pt;}
.ls2a_c00054{letter-spacing:0.140800pt;}
.ls4_c00054{letter-spacing:0.160000pt;}
.ls17_c00054{letter-spacing:0.166400pt;}
.ls30_c00054{letter-spacing:0.172800pt;}
.ls14_c00054{letter-spacing:0.179200pt;}
.ls33_c00054{letter-spacing:0.198400pt;}
.ls15_c00054{letter-spacing:0.204800pt;}
.lsb_c00054{letter-spacing:0.211200pt;}
.ls1f_c00054{letter-spacing:0.236800pt;}
.ls1a_c00054{letter-spacing:0.249600pt;}
.ls27_c00054{letter-spacing:0.288000pt;}
.ls7_c00054{letter-spacing:0.294400pt;}
.ls36_c00054{letter-spacing:0.300800pt;}
.ls11_c00054{letter-spacing:0.307200pt;}
.ls22_c00054{letter-spacing:0.320000pt;}
.ls10_c00054{letter-spacing:0.326400pt;}
.ls28_c00054{letter-spacing:0.339200pt;}
.ls19_c00054{letter-spacing:0.345600pt;}
.lse_c00054{letter-spacing:0.352000pt;}
.ls21_c00054{letter-spacing:0.371200pt;}
.lsf_c00054{letter-spacing:0.377600pt;}
.ls16_c00054{letter-spacing:0.384000pt;}
.ls3_c00054{letter-spacing:0.390400pt;}
.ls39_c00054{letter-spacing:0.396800pt;}
.ls1d_c00054{letter-spacing:0.422400pt;}
.ls5_c00054{letter-spacing:0.435200pt;}
.ls34_c00054{letter-spacing:0.473600pt;}
.ls4d_c00054{letter-spacing:0.531200pt;}
.ls1e_c00054{letter-spacing:0.563200pt;}
.ls24_c00054{letter-spacing:0.595200pt;}
.lsd_c00054{letter-spacing:0.608000pt;}
.ls9_c00054{letter-spacing:0.633600pt;}
.ls31_c00054{letter-spacing:0.646400pt;}
.ls29_c00054{letter-spacing:0.665600pt;}
.ls23_c00054{letter-spacing:0.678400pt;}
.ls32_c00054{letter-spacing:0.691200pt;}
.ls35_c00054{letter-spacing:0.697600pt;}
.ls1b_c00054{letter-spacing:0.723200pt;}
.ls2c_c00054{letter-spacing:0.755200pt;}
.ls56_c00054{letter-spacing:0.774400pt;}
.ls6_c00054{letter-spacing:0.800000pt;}
.ls2e_c00054{letter-spacing:0.864000pt;}
.ls37_c00054{letter-spacing:0.896000pt;}
.ls38_c00054{letter-spacing:0.985600pt;}
.ls52_c00054{letter-spacing:0.994347pt;}
.lsa_c00054{letter-spacing:1.011200pt;}
.ls3a_c00054{letter-spacing:1.060693pt;}
.lsc_c00054{letter-spacing:1.075200pt;}
.ls3b_c00054{letter-spacing:1.094400pt;}
.ls3d_c00054{letter-spacing:1.203040pt;}
.ls1_c00054{letter-spacing:1.228800pt;}
.ls69_c00054{letter-spacing:1.233493pt;}
.ls13_c00054{letter-spacing:1.267200pt;}
.ls0_c00054{letter-spacing:1.301920pt;}
.ls18_c00054{letter-spacing:1.491200pt;}
.ls2b_c00054{letter-spacing:1.696000pt;}
.ls67_c00054{letter-spacing:1.706693pt;}
.ls1c_c00054{letter-spacing:1.792000pt;}
.ls66_c00054{letter-spacing:1.973360pt;}
.ls26_c00054{letter-spacing:2.432000pt;}
.ls68_c00054{letter-spacing:5.360000pt;}
.ws0_c00054{word-spacing:0.000000pt;}
._12_c00054{margin-left:-3.574187pt;}
._a_c00054{margin-left:-2.656000pt;}
._0_c00054{margin-left:-1.303253pt;}
._8_c00054{width:1.813547pt;}
._7_c00054{width:3.376853pt;}
._9_c00054{width:4.345600pt;}
._11_c00054{width:5.317333pt;}
._c_c00054{width:6.494720pt;}
._e_c00054{width:8.345600pt;}
._f_c00054{width:9.344000pt;}
._10_c00054{width:10.457600pt;}
._14_c00054{width:11.630933pt;}
._b_c00054{width:12.608000pt;}
._15_c00054{width:13.511787pt;}
._1_c00054{width:15.001600pt;}
._16_c00054{width:16.514987pt;}
._3_c00054{width:17.427200pt;}
._6_c00054{width:18.502400pt;}
._5_c00054{width:19.558400pt;}
._2_c00054{width:20.684800pt;}
._d_c00054{width:21.862400pt;}
._4_c00054{width:23.129600pt;}
._13_c00054{width:336.266667pt;}
.fsf_c00054{font-size:30.933867pt;}
.fs4_c00054{font-size:34.133867pt;}
.fs3_c00054{font-size:39.467200pt;}
.fsc_c00054{font-size:50.133333pt;}
.fs7_c00054{font-size:52.266667pt;}
.fsb_c00054{font-size:53.866667pt;}
.fs0_c00054{font-size:54.933333pt;}
.fs8_c00054{font-size:55.466667pt;}
.fs12_c00054{font-size:57.600000pt;}
.fs11_c00054{font-size:60.266667pt;}
.fsa_c00054{font-size:61.333333pt;}
.fs2_c00054{font-size:62.933333pt;}
.fs1_c00054{font-size:64.000000pt;}
.fs9_c00054{font-size:66.133333pt;}
.fsd_c00054{font-size:71.466667pt;}
.fse_c00054{font-size:76.800000pt;}
.fs10_c00054{font-size:96.533333pt;}
.fs5_c00054{font-size:98.133333pt;}
.fs6_c00054{font-size:107.200000pt;}
.y0_c00054{bottom:0.000000pt;}
.y20_c00054{bottom:60.173347pt;}
.y1f_c00054{bottom:110.080013pt;}
.y1d_c00054{bottom:127.678547pt;}
.y1e_c00054{bottom:127.680013pt;}
.y1c_c00054{bottom:144.960013pt;}
.y1b_c00054{bottom:268.813347pt;}
.y19_c00054{bottom:291.533347pt;}
.y16_c00054{bottom:308.813347pt;}
.y18_c00054{bottom:310.733347pt;}
.y1a_c00054{bottom:325.440013pt;}
.y17_c00054{bottom:326.093347pt;}
.y13_c00054{bottom:344.960013pt;}
.y15_c00054{bottom:345.293347pt;}
.y14_c00054{bottom:350.733347pt;}
.y12_c00054{bottom:425.613347pt;}
.y11_c00054{bottom:459.200013pt;}
.y10_c00054{bottom:464.960013pt;}
.yf_c00054{bottom:555.853347pt;}
.ye_c00054{bottom:583.037347pt;}
.yd_c00054{bottom:610.573347pt;}
.yc_c00054{bottom:638.413347pt;}
.yb_c00054{bottom:665.613347pt;}
.ya_c00054{bottom:693.453347pt;}
.y9_c00054{bottom:720.973347pt;}
.y8_c00054{bottom:776.320013pt;}
.y7_c00054{bottom:831.373347pt;}
.y6_c00054{bottom:858.557347pt;}
.y5_c00054{bottom:886.077347pt;}
.y4_c00054{bottom:941.133347pt;}
.y3_c00054{bottom:968.317347pt;}
.y2_c00054{bottom:995.853347pt;}
.y1_c00054{bottom:1064.320013pt;}
.he_c00054{height:33.500523pt;}
.h6_c00054{height:35.600556pt;}
.h5_c00054{height:38.734898pt;}
.hf_c00054{height:52.287500pt;}
.h2_c00054{height:53.914062pt;}
.ha_c00054{height:54.410417pt;}
.h9_c00054{height:54.512500pt;}
.h13_c00054{height:56.531250pt;}
.h12_c00054{height:59.148438pt;}
.h4_c00054{height:61.734896pt;}
.h3_c00054{height:62.812500pt;}
.hc_c00054{height:63.968750pt;}
.hb_c00054{height:68.975000pt;}
.h10_c00054{height:74.537500pt;}
.hd_c00054{height:93.355417pt;}
.h7_c00054{height:96.312500pt;}
.h11_c00054{height:100.681250pt;}
.h8_c00054{height:105.210938pt;}
.h1_c00054{height:1122.666667pt;}
.h0_c00054{height:1122.880013pt;}
.w1_c00054{width:793.333333pt;}
.w0_c00054{width:793.600013pt;}
.x0_c00054{left:0.000000pt;}
.x12_c00054{left:104.573347pt;}
.x6_c00054{left:106.093347pt;}
.x5_c00054{left:107.026680pt;}
.x3_c00054{left:108.658680pt;}
.x1_c00054{left:109.933347pt;}
.x13_c00054{left:152.146680pt;}
.x7_c00054{left:153.826680pt;}
.x4_c00054{left:155.074680pt;}
.x2_c00054{left:156.386680pt;}
.x1d_c00054{left:161.813347pt;}
.x14_c00054{left:176.813347pt;}
.x1e_c00054{left:177.893347pt;}
.x8_c00054{left:262.066680pt;}
.x1f_c00054{left:283.880013pt;}
.x20_c00054{left:308.266680pt;}
.x15_c00054{left:315.053347pt;}
.xe_c00054{left:316.813347pt;}
.x16_c00054{left:336.253347pt;}
.xf_c00054{left:345.826680pt;}
.xc_c00054{left:347.026680pt;}
.x10_c00054{left:356.306680pt;}
.x21_c00054{left:378.186680pt;}
.x9_c00054{left:406.106680pt;}
.xa_c00054{left:415.666680pt;}
.x11_c00054{left:423.240013pt;}
.x17_c00054{left:432.253347pt;}
.xd_c00054{left:443.466680pt;}
.x18_c00054{left:451.986680pt;}
.x19_c00054{left:504.573347pt;}
.x1a_c00054{left:533.613347pt;}
.xb_c00054{left:568.026680pt;}
.x1b_c00054{left:612.413347pt;}
.x1c_c00054{left:634.213347pt;}
}





/* 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_c00055 {
    display:none;
  }
  .loading-indicator_c00055.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00055 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_c00055 { 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_c00055" -> "#page-container .classname_c00055")
 */
.pf_c00055 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00055 { /* 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_c00055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00055 { /* 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_c00055 { /* 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_c00055 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00055 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00055 {overflow:visible;}
  }
}
.c_c00055 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00055 { /* 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_c00055:after { /* webkit #35443 */
  content: '';
}
.t_c00055:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00055 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 */
}
.__c00055 { /* 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_c00055 { /* info for Javascript */
  display:none;
}
.l_c00055 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00055 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00055 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00055: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_c00055 {
    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_c00055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00055.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_c00055 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00055;src:url('chunks/assets/font_d76092dfddda2989949ce413.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.284668;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_c00055;src:url('chunks/assets/font_8590c8db8848fcc1f3570779.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.284180;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_c00055;src:url('chunks/assets/font_da53acb9a6b1ecbe27405693.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;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;}
.m4_c00055{transform:matrix(0.225636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225636,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);}
.m3_c00055{transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);}
.m2_c00055{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.m0_c00055{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);}
.v0_c00055{vertical-align:0.000000px;}
.ls7f_c00055{letter-spacing:-2.499000px;}
.ls9a_c00055{letter-spacing:-2.352000px;}
.ls98_c00055{letter-spacing:-2.341920px;}
.ls5e_c00055{letter-spacing:-2.327640px;}
.ls8d_c00055{letter-spacing:-1.920660px;}
.ls68_c00055{letter-spacing:-1.884960px;}
.ls97_c00055{letter-spacing:-1.834980px;}
.ls69_c00055{letter-spacing:-1.606500px;}
.ls71_c00055{letter-spacing:-1.520820px;}
.ls74_c00055{letter-spacing:-1.470840px;}
.ls61_c00055{letter-spacing:-1.442280px;}
.ls6c_c00055{letter-spacing:-1.356600px;}
.ls80_c00055{letter-spacing:-1.192380px;}
.ls7a_c00055{letter-spacing:-1.120980px;}
.ls8a_c00055{letter-spacing:-1.035300px;}
.ls76_c00055{letter-spacing:-0.885360px;}
.ls6a_c00055{letter-spacing:-0.799680px;}
.ls62_c00055{letter-spacing:-0.749700px;}
.ls77_c00055{letter-spacing:-0.685440px;}
.ls72_c00055{letter-spacing:-0.642600px;}
.ls8b_c00055{letter-spacing:-0.492660px;}
.ls86_c00055{letter-spacing:-0.485520px;}
.ls89_c00055{letter-spacing:-0.478380px;}
.ls8f_c00055{letter-spacing:-0.464100px;}
.ls87_c00055{letter-spacing:-0.449820px;}
.ls7c_c00055{letter-spacing:-0.421260px;}
.ls93_c00055{letter-spacing:-0.414120px;}
.ls99_c00055{letter-spacing:-0.399840px;}
.ls81_c00055{letter-spacing:-0.392700px;}
.ls66_c00055{letter-spacing:-0.378420px;}
.ls92_c00055{letter-spacing:-0.321300px;}
.ls5f_c00055{letter-spacing:-0.307020px;}
.ls75_c00055{letter-spacing:-0.299880px;}
.ls6b_c00055{letter-spacing:-0.285600px;}
.ls7b_c00055{letter-spacing:-0.271320px;}
.ls94_c00055{letter-spacing:-0.257040px;}
.ls91_c00055{letter-spacing:-0.249900px;}
.ls7d_c00055{letter-spacing:-0.235620px;}
.ls6e_c00055{letter-spacing:-0.228480px;}
.ls8e_c00055{letter-spacing:-0.221340px;}
.ls73_c00055{letter-spacing:-0.199920px;}
.ls63_c00055{letter-spacing:-0.185640px;}
.ls78_c00055{letter-spacing:-0.178500px;}
.ls5d_c00055{letter-spacing:-0.171360px;}
.ls70_c00055{letter-spacing:-0.157080px;}
.ls67_c00055{letter-spacing:-0.142800px;}
.ls95_c00055{letter-spacing:-0.135660px;}
.ls6d_c00055{letter-spacing:-0.121380px;}
.ls79_c00055{letter-spacing:-0.099960px;}
.ls82_c00055{letter-spacing:-0.092820px;}
.ls88_c00055{letter-spacing:-0.078540px;}
.ls85_c00055{letter-spacing:-0.057120px;}
.ls65_c00055{letter-spacing:-0.035700px;}
.ls5b_c00055{letter-spacing:-0.028560px;}
.ls60_c00055{letter-spacing:-0.021420px;}
.ls64_c00055{letter-spacing:-0.007140px;}
.ls5c_c00055{letter-spacing:0.000000px;}
.lse_c00055{letter-spacing:0.007140px;}
.ls22_c00055{letter-spacing:0.014280px;}
.ls23_c00055{letter-spacing:0.035700px;}
.ls3e_c00055{letter-spacing:0.049980px;}
.ls4d_c00055{letter-spacing:0.057120px;}
.ls54_c00055{letter-spacing:0.064260px;}
.ls3a_c00055{letter-spacing:0.071400px;}
.ls2_c00055{letter-spacing:0.078540px;}
.ls48_c00055{letter-spacing:0.092820px;}
.ls2f_c00055{letter-spacing:0.107100px;}
.ls49_c00055{letter-spacing:0.114240px;}
.ls1a_c00055{letter-spacing:0.121380px;}
.ls24_c00055{letter-spacing:0.128520px;}
.ls5_c00055{letter-spacing:0.135660px;}
.ls1e_c00055{letter-spacing:0.142800px;}
.ls29_c00055{letter-spacing:0.149940px;}
.ls52_c00055{letter-spacing:0.157080px;}
.lsc_c00055{letter-spacing:0.164220px;}
.ls4a_c00055{letter-spacing:0.171360px;}
.ls50_c00055{letter-spacing:0.185640px;}
.ls1d_c00055{letter-spacing:0.192780px;}
.ls1c_c00055{letter-spacing:0.199920px;}
.ls2b_c00055{letter-spacing:0.207060px;}
.ls17_c00055{letter-spacing:0.214200px;}
.ls3c_c00055{letter-spacing:0.221340px;}
.ls41_c00055{letter-spacing:0.228480px;}
.ls90_c00055{letter-spacing:0.242760px;}
.ls83_c00055{letter-spacing:0.249900px;}
.ls46_c00055{letter-spacing:0.257040px;}
.ls2e_c00055{letter-spacing:0.264180px;}
.ls32_c00055{letter-spacing:0.285600px;}
.ls3d_c00055{letter-spacing:0.292740px;}
.ls13_c00055{letter-spacing:0.314160px;}
.ls10_c00055{letter-spacing:0.321300px;}
.ls4f_c00055{letter-spacing:0.328440px;}
.ls11_c00055{letter-spacing:0.349860px;}
.ls36_c00055{letter-spacing:0.364140px;}
.ls57_c00055{letter-spacing:0.371280px;}
.ls59_c00055{letter-spacing:0.385560px;}
.ls9_c00055{letter-spacing:0.392700px;}
.ls40_c00055{letter-spacing:0.399840px;}
.ls42_c00055{letter-spacing:0.406980px;}
.lsf_c00055{letter-spacing:0.414120px;}
.ls35_c00055{letter-spacing:0.421260px;}
.ls21_c00055{letter-spacing:0.428400px;}
.ls4e_c00055{letter-spacing:0.435540px;}
.ls4b_c00055{letter-spacing:0.442680px;}
.ls38_c00055{letter-spacing:0.456960px;}
.lsa_c00055{letter-spacing:0.464100px;}
.ls18_c00055{letter-spacing:0.471240px;}
.ls30_c00055{letter-spacing:0.478380px;}
.ls7_c00055{letter-spacing:0.485520px;}
.ls44_c00055{letter-spacing:0.492660px;}
.ls2a_c00055{letter-spacing:0.499800px;}
.ls58_c00055{letter-spacing:0.506940px;}
.ls12_c00055{letter-spacing:0.528360px;}
.ls6_c00055{letter-spacing:0.535500px;}
.ls26_c00055{letter-spacing:0.542640px;}
.ls84_c00055{letter-spacing:0.549780px;}
.ls28_c00055{letter-spacing:0.563760px;}
.ls45_c00055{letter-spacing:0.571200px;}
.ls3f_c00055{letter-spacing:0.585480px;}
.ls55_c00055{letter-spacing:0.592620px;}
.ls47_c00055{letter-spacing:0.614040px;}
.ls8_c00055{letter-spacing:0.628320px;}
.lsb_c00055{letter-spacing:0.642600px;}
.ls3b_c00055{letter-spacing:0.656880px;}
.ls51_c00055{letter-spacing:0.664020px;}
.ls14_c00055{letter-spacing:0.671160px;}
.ls16_c00055{letter-spacing:0.699720px;}
.ls4_c00055{letter-spacing:0.714000px;}
.ls1b_c00055{letter-spacing:0.735420px;}
.ls8c_c00055{letter-spacing:0.778260px;}
.ls31_c00055{letter-spacing:0.785400px;}
.ls4c_c00055{letter-spacing:0.792540px;}
.ls20_c00055{letter-spacing:0.806820px;}
.ls2d_c00055{letter-spacing:0.821100px;}
.lsd_c00055{letter-spacing:0.828240px;}
.ls34_c00055{letter-spacing:0.863940px;}
.ls39_c00055{letter-spacing:0.897840px;}
.ls53_c00055{letter-spacing:0.963900px;}
.ls3_c00055{letter-spacing:0.971040px;}
.ls19_c00055{letter-spacing:0.999600px;}
.ls27_c00055{letter-spacing:1.042440px;}
.ls33_c00055{letter-spacing:1.049580px;}
.ls6f_c00055{letter-spacing:1.050960px;}
.ls25_c00055{letter-spacing:1.063860px;}
.ls7e_c00055{letter-spacing:1.294560px;}
.ls37_c00055{letter-spacing:1.406580px;}
.ls43_c00055{letter-spacing:1.517280px;}
.ls2c_c00055{letter-spacing:1.692180px;}
.ls15_c00055{letter-spacing:1.763580px;}
.ls56_c00055{letter-spacing:1.792140px;}
.ls1f_c00055{letter-spacing:2.013480px;}
.ls5a_c00055{letter-spacing:2.224020px;}
.ls0_c00055{letter-spacing:2.242200px;}
.ls1_c00055{letter-spacing:2.306220px;}
.ls96_c00055{letter-spacing:2.413320px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{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__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00055{word-spacing:0.000000px;}
._0_c00055{margin-left:-4.181400px;}
._f_c00055{margin-left:-2.670360px;}
._d_c00055{margin-left:-1.663620px;}
._c_c00055{width:1.627920px;}
._9_c00055{width:3.698520px;}
._7_c00055{width:5.497800px;}
._5_c00055{width:6.568800px;}
._e_c00055{width:7.925400px;}
._8_c00055{width:9.282000px;}
._6_c00055{width:10.931340px;}
._1_c00055{width:12.359340px;}
._2_c00055{width:14.044380px;}
._a_c00055{width:15.051120px;}
._3_c00055{width:16.129260px;}
._b_c00055{width:19.306560px;}
._14_c00055{width:20.313300px;}
._11_c00055{width:21.605640px;}
._13_c00055{width:23.254980px;}
._4_c00055{width:24.997140px;}
._10_c00055{width:26.032440px;}
._12_c00055{width:27.567540px;}
.fc0_c00055{color:transparent;}
.fs0_c00055{font-size:60.600000px;}
.fs5_c00055{font-size:66.000000px;}
.fs3_c00055{font-size:67.200000px;}
.fs2_c00055{font-size:69.600000px;}
.fs1_c00055{font-size:71.400000px;}
.fs4_c00055{font-size:76.800000px;}
.y0_c00055{bottom:0.000000px;}
.y20_c00055{bottom:69.495015px;}
.y1f_c00055{bottom:194.056815px;}
.y1e_c00055{bottom:225.008715px;}
.y1d_c00055{bottom:256.335465px;}
.y1c_c00055{bottom:317.900115px;}
.y1b_c00055{bottom:348.495015px;}
.y1a_c00055{bottom:348.502215px;}
.y19_c00055{bottom:379.097115px;}
.y18_c00055{bottom:409.335015px;}
.y17_c00055{bottom:409.351215px;}
.y16_c00055{bottom:440.303115px;}
.y15_c00055{bottom:471.255015px;}
.y14_c00055{bottom:471.266565px;}
.y13_c00055{bottom:502.218465px;}
.y12_c00055{bottom:532.813365px;}
.y11_c00055{bottom:594.735015px;}
.y22_c00055{bottom:615.600015px;}
.y21_c00055{bottom:619.215015px;}
.y10_c00055{bottom:625.680015px;}
.yf_c00055{bottom:625.685265px;}
.ye_c00055{bottom:656.655015px;}
.yd_c00055{bottom:718.215015px;}
.yc_c00055{bottom:780.122265px;}
.yb_c00055{bottom:810.728715px;}
.ya_c00055{bottom:842.055465px;}
.y9_c00055{bottom:873.007365px;}
.y8_c00055{bottom:934.215015px;}
.y7_c00055{bottom:964.477665px;}
.y6_c00055{bottom:995.429565px;}
.y5_c00055{bottom:1026.399315px;}
.y4_c00055{bottom:1056.976365px;}
.y3_c00055{bottom:1087.928265px;}
.y2_c00055{bottom:1119.255015px;}
.y1_c00055{bottom:1194.855015px;}
.h2_c00055{height:59.475586px;}
.h6_c00055{height:65.953125px;}
.h5_c00055{height:68.274609px;}
.h8_c00055{height:68.835938px;}
.h3_c00055{height:70.075195px;}
.h4_c00055{height:70.100395px;}
.h7_c00055{height:80.100000px;}
.h1_c00055{height:1263.000000px;}
.h0_c00055{height:1263.240015px;}
.w1_c00055{width:892.500000px;}
.w0_c00055{width:892.800000px;}
.x0_c00055{left:0.000000px;}
.xb_c00055{left:126.351750px;}
.x1_c00055{left:127.650000px;}
.x3_c00055{left:128.728050px;}
.x12_c00055{left:179.543400px;}
.x2_c00055{left:180.975000px;}
.xe_c00055{left:366.225000px;}
.x7_c00055{left:378.195000px;}
.xf_c00055{left:389.985000px;}
.x8_c00055{left:399.810000px;}
.x4_c00055{left:428.235000px;}
.x13_c00055{left:430.860000px;}
.xc_c00055{left:447.225000px;}
.x5_c00055{left:450.885000px;}
.xd_c00055{left:467.835000px;}
.x9_c00055{left:478.290000px;}
.xa_c00055{left:496.650000px;}
.x10_c00055{left:627.330000px;}
.x11_c00055{left:650.355000px;}
.x6_c00055{left:737.115000px;}
.x15_c00055{left:854.775000px;}
.x14_c00055{left:855.825000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls7f_c00055{letter-spacing:-2.221333pt;}
.ls9a_c00055{letter-spacing:-2.090667pt;}
.ls98_c00055{letter-spacing:-2.081707pt;}
.ls5e_c00055{letter-spacing:-2.069013pt;}
.ls8d_c00055{letter-spacing:-1.707253pt;}
.ls68_c00055{letter-spacing:-1.675520pt;}
.ls97_c00055{letter-spacing:-1.631093pt;}
.ls69_c00055{letter-spacing:-1.428000pt;}
.ls71_c00055{letter-spacing:-1.351840pt;}
.ls74_c00055{letter-spacing:-1.307413pt;}
.ls61_c00055{letter-spacing:-1.282027pt;}
.ls6c_c00055{letter-spacing:-1.205867pt;}
.ls80_c00055{letter-spacing:-1.059893pt;}
.ls7a_c00055{letter-spacing:-0.996427pt;}
.ls8a_c00055{letter-spacing:-0.920267pt;}
.ls76_c00055{letter-spacing:-0.786987pt;}
.ls6a_c00055{letter-spacing:-0.710827pt;}
.ls62_c00055{letter-spacing:-0.666400pt;}
.ls77_c00055{letter-spacing:-0.609280pt;}
.ls72_c00055{letter-spacing:-0.571200pt;}
.ls8b_c00055{letter-spacing:-0.437920pt;}
.ls86_c00055{letter-spacing:-0.431573pt;}
.ls89_c00055{letter-spacing:-0.425227pt;}
.ls8f_c00055{letter-spacing:-0.412533pt;}
.ls87_c00055{letter-spacing:-0.399840pt;}
.ls7c_c00055{letter-spacing:-0.374453pt;}
.ls93_c00055{letter-spacing:-0.368107pt;}
.ls99_c00055{letter-spacing:-0.355413pt;}
.ls81_c00055{letter-spacing:-0.349067pt;}
.ls66_c00055{letter-spacing:-0.336373pt;}
.ls92_c00055{letter-spacing:-0.285600pt;}
.ls5f_c00055{letter-spacing:-0.272907pt;}
.ls75_c00055{letter-spacing:-0.266560pt;}
.ls6b_c00055{letter-spacing:-0.253867pt;}
.ls7b_c00055{letter-spacing:-0.241173pt;}
.ls94_c00055{letter-spacing:-0.228480pt;}
.ls91_c00055{letter-spacing:-0.222133pt;}
.ls7d_c00055{letter-spacing:-0.209440pt;}
.ls6e_c00055{letter-spacing:-0.203093pt;}
.ls8e_c00055{letter-spacing:-0.196747pt;}
.ls73_c00055{letter-spacing:-0.177707pt;}
.ls63_c00055{letter-spacing:-0.165013pt;}
.ls78_c00055{letter-spacing:-0.158667pt;}
.ls5d_c00055{letter-spacing:-0.152320pt;}
.ls70_c00055{letter-spacing:-0.139627pt;}
.ls67_c00055{letter-spacing:-0.126933pt;}
.ls95_c00055{letter-spacing:-0.120587pt;}
.ls6d_c00055{letter-spacing:-0.107893pt;}
.ls79_c00055{letter-spacing:-0.088853pt;}
.ls82_c00055{letter-spacing:-0.082507pt;}
.ls88_c00055{letter-spacing:-0.069813pt;}
.ls85_c00055{letter-spacing:-0.050773pt;}
.ls65_c00055{letter-spacing:-0.031733pt;}
.ls5b_c00055{letter-spacing:-0.025387pt;}
.ls60_c00055{letter-spacing:-0.019040pt;}
.ls64_c00055{letter-spacing:-0.006347pt;}
.ls5c_c00055{letter-spacing:0.000000pt;}
.lse_c00055{letter-spacing:0.006347pt;}
.ls22_c00055{letter-spacing:0.012693pt;}
.ls23_c00055{letter-spacing:0.031733pt;}
.ls3e_c00055{letter-spacing:0.044427pt;}
.ls4d_c00055{letter-spacing:0.050773pt;}
.ls54_c00055{letter-spacing:0.057120pt;}
.ls3a_c00055{letter-spacing:0.063467pt;}
.ls2_c00055{letter-spacing:0.069813pt;}
.ls48_c00055{letter-spacing:0.082507pt;}
.ls2f_c00055{letter-spacing:0.095200pt;}
.ls49_c00055{letter-spacing:0.101547pt;}
.ls1a_c00055{letter-spacing:0.107893pt;}
.ls24_c00055{letter-spacing:0.114240pt;}
.ls5_c00055{letter-spacing:0.120587pt;}
.ls1e_c00055{letter-spacing:0.126933pt;}
.ls29_c00055{letter-spacing:0.133280pt;}
.ls52_c00055{letter-spacing:0.139627pt;}
.lsc_c00055{letter-spacing:0.145973pt;}
.ls4a_c00055{letter-spacing:0.152320pt;}
.ls50_c00055{letter-spacing:0.165013pt;}
.ls1d_c00055{letter-spacing:0.171360pt;}
.ls1c_c00055{letter-spacing:0.177707pt;}
.ls2b_c00055{letter-spacing:0.184053pt;}
.ls17_c00055{letter-spacing:0.190400pt;}
.ls3c_c00055{letter-spacing:0.196747pt;}
.ls41_c00055{letter-spacing:0.203093pt;}
.ls90_c00055{letter-spacing:0.215787pt;}
.ls83_c00055{letter-spacing:0.222133pt;}
.ls46_c00055{letter-spacing:0.228480pt;}
.ls2e_c00055{letter-spacing:0.234827pt;}
.ls32_c00055{letter-spacing:0.253867pt;}
.ls3d_c00055{letter-spacing:0.260213pt;}
.ls13_c00055{letter-spacing:0.279253pt;}
.ls10_c00055{letter-spacing:0.285600pt;}
.ls4f_c00055{letter-spacing:0.291947pt;}
.ls11_c00055{letter-spacing:0.310987pt;}
.ls36_c00055{letter-spacing:0.323680pt;}
.ls57_c00055{letter-spacing:0.330027pt;}
.ls59_c00055{letter-spacing:0.342720pt;}
.ls9_c00055{letter-spacing:0.349067pt;}
.ls40_c00055{letter-spacing:0.355413pt;}
.ls42_c00055{letter-spacing:0.361760pt;}
.lsf_c00055{letter-spacing:0.368107pt;}
.ls35_c00055{letter-spacing:0.374453pt;}
.ls21_c00055{letter-spacing:0.380800pt;}
.ls4e_c00055{letter-spacing:0.387147pt;}
.ls4b_c00055{letter-spacing:0.393493pt;}
.ls38_c00055{letter-spacing:0.406187pt;}
.lsa_c00055{letter-spacing:0.412533pt;}
.ls18_c00055{letter-spacing:0.418880pt;}
.ls30_c00055{letter-spacing:0.425227pt;}
.ls7_c00055{letter-spacing:0.431573pt;}
.ls44_c00055{letter-spacing:0.437920pt;}
.ls2a_c00055{letter-spacing:0.444267pt;}
.ls58_c00055{letter-spacing:0.450613pt;}
.ls12_c00055{letter-spacing:0.469653pt;}
.ls6_c00055{letter-spacing:0.476000pt;}
.ls26_c00055{letter-spacing:0.482347pt;}
.ls84_c00055{letter-spacing:0.488693pt;}
.ls28_c00055{letter-spacing:0.501120pt;}
.ls45_c00055{letter-spacing:0.507733pt;}
.ls3f_c00055{letter-spacing:0.520427pt;}
.ls55_c00055{letter-spacing:0.526773pt;}
.ls47_c00055{letter-spacing:0.545813pt;}
.ls8_c00055{letter-spacing:0.558507pt;}
.lsb_c00055{letter-spacing:0.571200pt;}
.ls3b_c00055{letter-spacing:0.583893pt;}
.ls51_c00055{letter-spacing:0.590240pt;}
.ls14_c00055{letter-spacing:0.596587pt;}
.ls16_c00055{letter-spacing:0.621973pt;}
.ls4_c00055{letter-spacing:0.634667pt;}
.ls1b_c00055{letter-spacing:0.653707pt;}
.ls8c_c00055{letter-spacing:0.691787pt;}
.ls31_c00055{letter-spacing:0.698133pt;}
.ls4c_c00055{letter-spacing:0.704480pt;}
.ls20_c00055{letter-spacing:0.717173pt;}
.ls2d_c00055{letter-spacing:0.729867pt;}
.lsd_c00055{letter-spacing:0.736213pt;}
.ls34_c00055{letter-spacing:0.767947pt;}
.ls39_c00055{letter-spacing:0.798080pt;}
.ls53_c00055{letter-spacing:0.856800pt;}
.ls3_c00055{letter-spacing:0.863147pt;}
.ls19_c00055{letter-spacing:0.888533pt;}
.ls27_c00055{letter-spacing:0.926613pt;}
.ls33_c00055{letter-spacing:0.932960pt;}
.ls6f_c00055{letter-spacing:0.934187pt;}
.ls25_c00055{letter-spacing:0.945653pt;}
.ls7e_c00055{letter-spacing:1.150720pt;}
.ls37_c00055{letter-spacing:1.250293pt;}
.ls43_c00055{letter-spacing:1.348693pt;}
.ls2c_c00055{letter-spacing:1.504160pt;}
.ls15_c00055{letter-spacing:1.567627pt;}
.ls56_c00055{letter-spacing:1.593013pt;}
.ls1f_c00055{letter-spacing:1.789760pt;}
.ls5a_c00055{letter-spacing:1.976907pt;}
.ls0_c00055{letter-spacing:1.993067pt;}
.ls1_c00055{letter-spacing:2.049973pt;}
.ls96_c00055{letter-spacing:2.145173pt;}
.ws0_c00055{word-spacing:0.000000pt;}
._0_c00055{margin-left:-3.716800pt;}
._f_c00055{margin-left:-2.373653pt;}
._d_c00055{margin-left:-1.478773pt;}
._c_c00055{width:1.447040pt;}
._9_c00055{width:3.287573pt;}
._7_c00055{width:4.886933pt;}
._5_c00055{width:5.838933pt;}
._e_c00055{width:7.044800pt;}
._8_c00055{width:8.250667pt;}
._6_c00055{width:9.716747pt;}
._1_c00055{width:10.986080pt;}
._2_c00055{width:12.483893pt;}
._a_c00055{width:13.378773pt;}
._3_c00055{width:14.337120pt;}
._b_c00055{width:17.161387pt;}
._14_c00055{width:18.056267pt;}
._11_c00055{width:19.205013pt;}
._13_c00055{width:20.671093pt;}
._4_c00055{width:22.219680pt;}
._10_c00055{width:23.139947pt;}
._12_c00055{width:24.504480pt;}
.fs0_c00055{font-size:53.866667pt;}
.fs5_c00055{font-size:58.666667pt;}
.fs3_c00055{font-size:59.733333pt;}
.fs2_c00055{font-size:61.866667pt;}
.fs1_c00055{font-size:63.466667pt;}
.fs4_c00055{font-size:68.266667pt;}
.y0_c00055{bottom:0.000000pt;}
.y20_c00055{bottom:61.773347pt;}
.y1f_c00055{bottom:172.494947pt;}
.y1e_c00055{bottom:200.007747pt;}
.y1d_c00055{bottom:227.853747pt;}
.y1c_c00055{bottom:282.577880pt;}
.y1b_c00055{bottom:309.773347pt;}
.y1a_c00055{bottom:309.779747pt;}
.y19_c00055{bottom:336.975213pt;}
.y18_c00055{bottom:363.853347pt;}
.y17_c00055{bottom:363.867747pt;}
.y16_c00055{bottom:391.380547pt;}
.y15_c00055{bottom:418.893347pt;}
.y14_c00055{bottom:418.903613pt;}
.y13_c00055{bottom:446.416413pt;}
.y12_c00055{bottom:473.611880pt;}
.y11_c00055{bottom:528.653347pt;}
.y22_c00055{bottom:547.200013pt;}
.y21_c00055{bottom:550.413347pt;}
.y10_c00055{bottom:556.160013pt;}
.yf_c00055{bottom:556.164680pt;}
.ye_c00055{bottom:583.693347pt;}
.yd_c00055{bottom:638.413347pt;}
.yc_c00055{bottom:693.442013pt;}
.yb_c00055{bottom:720.647747pt;}
.ya_c00055{bottom:748.493747pt;}
.y9_c00055{bottom:776.006547pt;}
.y8_c00055{bottom:830.413347pt;}
.y7_c00055{bottom:857.313480pt;}
.y6_c00055{bottom:884.826280pt;}
.y5_c00055{bottom:912.354947pt;}
.y4_c00055{bottom:939.534547pt;}
.y3_c00055{bottom:967.047347pt;}
.y2_c00055{bottom:994.893347pt;}
.y1_c00055{bottom:1062.093347pt;}
.h2_c00055{height:52.867187pt;}
.h6_c00055{height:58.625000pt;}
.h5_c00055{height:60.688542pt;}
.h8_c00055{height:61.187500pt;}
.h3_c00055{height:62.289062pt;}
.h4_c00055{height:62.311463pt;}
.h7_c00055{height:71.200000pt;}
.h1_c00055{height:1122.666667pt;}
.h0_c00055{height:1122.880013pt;}
.w1_c00055{width:793.333333pt;}
.w0_c00055{width:793.600000pt;}
.x0_c00055{left:0.000000pt;}
.xb_c00055{left:112.312667pt;}
.x1_c00055{left:113.466667pt;}
.x3_c00055{left:114.424933pt;}
.x12_c00055{left:159.594133pt;}
.x2_c00055{left:160.866667pt;}
.xe_c00055{left:325.533333pt;}
.x7_c00055{left:336.173333pt;}
.xf_c00055{left:346.653333pt;}
.x8_c00055{left:355.386667pt;}
.x4_c00055{left:380.653333pt;}
.x13_c00055{left:382.986667pt;}
.xc_c00055{left:397.533333pt;}
.x5_c00055{left:400.786667pt;}
.xd_c00055{left:415.853333pt;}
.x9_c00055{left:425.146667pt;}
.xa_c00055{left:441.466667pt;}
.x10_c00055{left:557.626667pt;}
.x11_c00055{left:578.093333pt;}
.x6_c00055{left:655.213333pt;}
.x15_c00055{left:759.800000pt;}
.x14_c00055{left:760.733333pt;}
}





/* 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_c00056 {
    display:none;
  }
  .loading-indicator_c00056.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00056 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_c00056 { 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_c00056" -> "#page-container .classname_c00056")
 */
.pf_c00056 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00056 { /* 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_c00056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00056 { /* 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_c00056 { /* 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_c00056 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00056 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00056 {overflow:visible;}
  }
}
.c_c00056 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00056 { /* 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_c00056:after { /* webkit #35443 */
  content: '';
}
.t_c00056:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00056 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 */
}
.__c00056 { /* 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_c00056 { /* info for Javascript */
  display:none;
}
.l_c00056 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00056 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00056 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00056: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_c00056 {
    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_c00056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00056.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_c00056 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00056;src:url('chunks/assets/font_e369e97a1555f51c60346192.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.284668;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_c00056;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;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;}
.m8_c00056{transform:matrix(0.207449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207449,0.000000,0.000000,0.250000,0,0);}
.m2_c00056{transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);}
.m7_c00056{transform:matrix(0.217819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217819,0.000000,0.000000,0.250000,0,0);}
.m4_c00056{transform:matrix(0.219421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219421,0.000000,0.000000,0.250000,0,0);}
.m6_c00056{transform:matrix(0.225079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225079,0.000000,0.000000,0.250000,0,0);}
.m3_c00056{transform:matrix(0.242103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242103,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m0_c00056{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);}
.m5_c00056{transform:matrix(0.295387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295387,0.000000,0.000000,0.250000,0,0);}
.v2_c00056{vertical-align:-8.640000px;}
.v1_c00056{vertical-align:-5.829000px;}
.v0_c00056{vertical-align:0.000000px;}
.ls65_c00056{letter-spacing:-2.583000px;}
.ls47_c00056{letter-spacing:-2.541000px;}
.ls59_c00056{letter-spacing:-2.410320px;}
.ls66_c00056{letter-spacing:-2.207040px;}
.ls5f_c00056{letter-spacing:-1.996500px;}
.ls79_c00056{letter-spacing:-1.880340px;}
.ls6c_c00056{letter-spacing:-1.633500px;}
.ls58_c00056{letter-spacing:-1.611720px;}
.ls53_c00056{letter-spacing:-1.568160px;}
.ls62_c00056{letter-spacing:-1.546380px;}
.ls69_c00056{letter-spacing:-1.502820px;}
.ls63_c00056{letter-spacing:-1.372140px;}
.lsa4_c00056{letter-spacing:-1.365300px;}
.ls74_c00056{letter-spacing:-1.241460px;}
.ls8f_c00056{letter-spacing:-1.132560px;}
.ls75_c00056{letter-spacing:-0.980100px;}
.ls81_c00056{letter-spacing:-0.972840px;}
.ls9b_c00056{letter-spacing:-0.922020px;}
.ls77_c00056{letter-spacing:-0.900240px;}
.ls85_c00056{letter-spacing:-0.892980px;}
.lsa9_c00056{letter-spacing:-0.891000px;}
.ls8a_c00056{letter-spacing:-0.885720px;}
.ls90_c00056{letter-spacing:-0.863940px;}
.ls48_c00056{letter-spacing:-0.820380px;}
.ls7e_c00056{letter-spacing:-0.791340px;}
.ls6d_c00056{letter-spacing:-0.776820px;}
.ls5d_c00056{letter-spacing:-0.762300px;}
.ls72_c00056{letter-spacing:-0.711480px;}
.lsa2_c00056{letter-spacing:-0.653400px;}
.ls8c_c00056{letter-spacing:-0.646140px;}
.ls9d_c00056{letter-spacing:-0.624360px;}
.ls61_c00056{letter-spacing:-0.617100px;}
.lsa3_c00056{letter-spacing:-0.602580px;}
.ls73_c00056{letter-spacing:-0.595320px;}
.lsa8_c00056{letter-spacing:-0.573540px;}
.ls52_c00056{letter-spacing:-0.559020px;}
.ls51_c00056{letter-spacing:-0.551760px;}
.ls89_c00056{letter-spacing:-0.544500px;}
.ls8e_c00056{letter-spacing:-0.537240px;}
.lsa1_c00056{letter-spacing:-0.529980px;}
.ls46_c00056{letter-spacing:-0.522720px;}
.ls9f_c00056{letter-spacing:-0.515460px;}
.lsa7_c00056{letter-spacing:-0.486420px;}
.ls8b_c00056{letter-spacing:-0.457380px;}
.lsa5_c00056{letter-spacing:-0.450120px;}
.ls94_c00056{letter-spacing:-0.442860px;}
.ls4e_c00056{letter-spacing:-0.435600px;}
.ls56_c00056{letter-spacing:-0.428340px;}
.ls95_c00056{letter-spacing:-0.413820px;}
.ls70_c00056{letter-spacing:-0.399300px;}
.lsa6_c00056{letter-spacing:-0.392040px;}
.ls6e_c00056{letter-spacing:-0.384780px;}
.ls9e_c00056{letter-spacing:-0.370260px;}
.ls99_c00056{letter-spacing:-0.363000px;}
.ls71_c00056{letter-spacing:-0.348480px;}
.ls4a_c00056{letter-spacing:-0.341220px;}
.ls82_c00056{letter-spacing:-0.333960px;}
.ls76_c00056{letter-spacing:-0.319440px;}
.ls87_c00056{letter-spacing:-0.290400px;}
.ls49_c00056{letter-spacing:-0.283140px;}
.ls9a_c00056{letter-spacing:-0.275880px;}
.ls84_c00056{letter-spacing:-0.261360px;}
.ls4f_c00056{letter-spacing:-0.254100px;}
.lsa0_c00056{letter-spacing:-0.246840px;}
.ls50_c00056{letter-spacing:-0.239580px;}
.ls78_c00056{letter-spacing:-0.232320px;}
.ls5b_c00056{letter-spacing:-0.225060px;}
.ls60_c00056{letter-spacing:-0.217800px;}
.ls9c_c00056{letter-spacing:-0.210540px;}
.ls93_c00056{letter-spacing:-0.203280px;}
.ls83_c00056{letter-spacing:-0.196020px;}
.ls68_c00056{letter-spacing:-0.188760px;}
.ls4d_c00056{letter-spacing:-0.181500px;}
.ls5c_c00056{letter-spacing:-0.174240px;}
.ls4b_c00056{letter-spacing:-0.166980px;}
.ls86_c00056{letter-spacing:-0.159720px;}
.ls7f_c00056{letter-spacing:-0.152460px;}
.ls96_c00056{letter-spacing:-0.145200px;}
.ls92_c00056{letter-spacing:-0.130680px;}
.ls54_c00056{letter-spacing:-0.123420px;}
.ls5e_c00056{letter-spacing:-0.116160px;}
.ls7d_c00056{letter-spacing:-0.108900px;}
.ls55_c00056{letter-spacing:-0.101640px;}
.ls6b_c00056{letter-spacing:-0.094380px;}
.ls88_c00056{letter-spacing:-0.087120px;}
.ls6a_c00056{letter-spacing:-0.079860px;}
.ls5a_c00056{letter-spacing:-0.072600px;}
.ls6f_c00056{letter-spacing:-0.065340px;}
.ls67_c00056{letter-spacing:-0.058080px;}
.ls7a_c00056{letter-spacing:-0.050820px;}
.ls8d_c00056{letter-spacing:-0.043560px;}
.ls7b_c00056{letter-spacing:-0.036300px;}
.ls98_c00056{letter-spacing:-0.029040px;}
.ls64_c00056{letter-spacing:-0.021780px;}
.ls57_c00056{letter-spacing:-0.014520px;}
.ls80_c00056{letter-spacing:-0.007260px;}
.ls4c_c00056{letter-spacing:0.000000px;}
.ls25_c00056{letter-spacing:0.007260px;}
.ls3a_c00056{letter-spacing:0.014520px;}
.ls2_c00056{letter-spacing:0.021780px;}
.ls21_c00056{letter-spacing:0.029040px;}
.ls31_c00056{letter-spacing:0.036300px;}
.ls18_c00056{letter-spacing:0.043560px;}
.ls1e_c00056{letter-spacing:0.072600px;}
.ls35_c00056{letter-spacing:0.079860px;}
.lsa_c00056{letter-spacing:0.087120px;}
.ls20_c00056{letter-spacing:0.094380px;}
.lsb_c00056{letter-spacing:0.101640px;}
.ls9_c00056{letter-spacing:0.108900px;}
.lse_c00056{letter-spacing:0.116160px;}
.ls37_c00056{letter-spacing:0.130680px;}
.ls33_c00056{letter-spacing:0.137940px;}
.ls2e_c00056{letter-spacing:0.152460px;}
.ls34_c00056{letter-spacing:0.159720px;}
.ls2f_c00056{letter-spacing:0.174240px;}
.ls3e_c00056{letter-spacing:0.181500px;}
.ls6_c00056{letter-spacing:0.188760px;}
.ls11_c00056{letter-spacing:0.196020px;}
.ls7_c00056{letter-spacing:0.203280px;}
.ls12_c00056{letter-spacing:0.210540px;}
.ls1f_c00056{letter-spacing:0.225060px;}
.ls2d_c00056{letter-spacing:0.239580px;}
.ls2c_c00056{letter-spacing:0.246840px;}
.ls17_c00056{letter-spacing:0.261360px;}
.ls39_c00056{letter-spacing:0.290400px;}
.ls3d_c00056{letter-spacing:0.297660px;}
.ls1_c00056{letter-spacing:0.304920px;}
.ls2b_c00056{letter-spacing:0.319440px;}
.ls29_c00056{letter-spacing:0.348480px;}
.ls16_c00056{letter-spacing:0.355740px;}
.ls38_c00056{letter-spacing:0.363000px;}
.ls15_c00056{letter-spacing:0.370260px;}
.ls28_c00056{letter-spacing:0.377520px;}
.ls7c_c00056{letter-spacing:0.384780px;}
.ls10_c00056{letter-spacing:0.392040px;}
.ls13_c00056{letter-spacing:0.406560px;}
.ls3c_c00056{letter-spacing:0.428340px;}
.ls3f_c00056{letter-spacing:0.435600px;}
.ls30_c00056{letter-spacing:0.442860px;}
.lsd_c00056{letter-spacing:0.457380px;}
.ls42_c00056{letter-spacing:0.471900px;}
.ls3b_c00056{letter-spacing:0.479160px;}
.ls1d_c00056{letter-spacing:0.522720px;}
.lsc_c00056{letter-spacing:0.551760px;}
.ls43_c00056{letter-spacing:0.595320px;}
.ls44_c00056{letter-spacing:0.609840px;}
.ls3_c00056{letter-spacing:0.617100px;}
.ls40_c00056{letter-spacing:0.624360px;}
.ls1b_c00056{letter-spacing:0.653400px;}
.ls23_c00056{letter-spacing:0.660660px;}
.ls1a_c00056{letter-spacing:0.675180px;}
.ls8_c00056{letter-spacing:0.689700px;}
.ls19_c00056{letter-spacing:0.704220px;}
.ls24_c00056{letter-spacing:0.791340px;}
.ls22_c00056{letter-spacing:0.813120px;}
.ls41_c00056{letter-spacing:0.885720px;}
.ls32_c00056{letter-spacing:0.900240px;}
.ls45_c00056{letter-spacing:0.917280px;}
.ls14_c00056{letter-spacing:0.922020px;}
.ls1c_c00056{letter-spacing:0.980100px;}
.ls2a_c00056{letter-spacing:1.001880px;}
.ls0_c00056{letter-spacing:1.173120px;}
.ls27_c00056{letter-spacing:1.234200px;}
.ls4_c00056{letter-spacing:1.618980px;}
.ls97_c00056{letter-spacing:2.090880px;}
.ls36_c00056{letter-spacing:2.199780px;}
.ls5_c00056{letter-spacing:2.250600px;}
.ls91_c00056{letter-spacing:2.580000px;}
.ls26_c00056{letter-spacing:3.535620px;}
.lsf_c00056{letter-spacing:20.639700px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{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__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:0.000000px;}
._14_c00056{margin-left:-6.541260px;}
._16_c00056{margin-left:-3.702600px;}
._0_c00056{margin-left:-2.421120px;}
._11_c00056{margin-left:-1.074480px;}
._13_c00056{width:1.013820px;}
._b_c00056{width:2.221560px;}
._4_c00056{width:4.167240px;}
._12_c00056{width:5.218380px;}
._c_c00056{width:6.221820px;}
._1_c00056{width:7.623000px;}
._8_c00056{width:8.929800px;}
._2_c00056{width:10.033320px;}
._3_c00056{width:12.095160px;}
._5_c00056{width:13.576200px;}
._7_c00056{width:14.745060px;}
._17_c00056{width:15.863100px;}
._a_c00056{width:16.930320px;}
._6_c00056{width:18.984900px;}
._9_c00056{width:20.240880px;}
._10_c00056{width:22.571340px;}
._1d_c00056{width:23.616780px;}
._d_c00056{width:24.669480px;}
._f_c00056{width:26.223120px;}
._e_c00056{width:28.706040px;}
._15_c00056{width:46.173600px;}
._1a_c00056{width:48.504960px;}
._19_c00056{width:49.911600px;}
._18_c00056{width:53.019540px;}
._1c_c00056{width:54.277140px;}
._1b_c00056{width:57.136200px;}
.fc0_c00056{color:transparent;}
.fs3_c00056{font-size:47.400600px;}
.fs5_c00056{font-size:51.600000px;}
.fs7_c00056{font-size:59.400000px;}
.fs0_c00056{font-size:62.400000px;}
.fs4_c00056{font-size:67.800000px;}
.fs6_c00056{font-size:70.800000px;}
.fs1_c00056{font-size:72.600000px;}
.fs2_c00056{font-size:73.800000px;}
.y0_c00056{bottom:0.000000px;}
.y29_c00056{bottom:66.255000px;}
.y27_c00056{bottom:159.116100px;}
.y28_c00056{bottom:159.120000px;}
.y26_c00056{bottom:190.080000px;}
.y25_c00056{bottom:220.687200px;}
.y24_c00056{bottom:251.288100px;}
.y23_c00056{bottom:282.617250px;}
.y21_c00056{bottom:313.199100px;}
.y22_c00056{bottom:313.200000px;}
.y20_c00056{bottom:343.795500px;}
.y1f_c00056{bottom:374.759400px;}
.y1e_c00056{bottom:406.086300px;}
.y1d_c00056{bottom:467.632950px;}
.y1c_c00056{bottom:498.615000px;}
.y1a_c00056{bottom:560.171250px;}
.y1b_c00056{bottom:560.175000px;}
.y18_c00056{bottom:591.465150px;}
.y19_c00056{bottom:591.480000px;}
.y17_c00056{bottom:622.447200px;}
.y16_c00056{bottom:653.392950px;}
.y14_c00056{bottom:684.362400px;}
.y15_c00056{bottom:684.375000px;}
.y13_c00056{bottom:714.963300px;}
.y12_c00056{bottom:745.927200px;}
.y11_c00056{bottom:776.891100px;}
.yf_c00056{bottom:807.848100px;}
.y10_c00056{bottom:807.855000px;}
.ye_c00056{bottom:839.177250px;}
.yd_c00056{bottom:869.760000px;}
.yc_c00056{bottom:869.763300px;}
.yb_c00056{bottom:900.727200px;}
.ya_c00056{bottom:962.657250px;}
.y8_c00056{bottom:993.236100px;}
.y9_c00056{bottom:993.240000px;}
.y6_c00056{bottom:1024.192950px;}
.y7_c00056{bottom:1024.200000px;}
.y4_c00056{bottom:1055.173350px;}
.y5_c00056{bottom:1055.175000px;}
.y3_c00056{bottom:1085.393100px;}
.y2_c00056{bottom:1116.720000px;}
.y1_c00056{bottom:1193.760000px;}
.h6_c00056{height:50.642578px;}
.h8_c00056{height:58.297852px;}
.h2_c00056{height:61.242188px;}
.h3_c00056{height:71.252930px;}
.h5_c00056{height:71.267930px;}
.h4_c00056{height:72.430664px;}
.h7_c00056{height:73.860188px;}
.h1_c00056{height:1263.000000px;}
.h0_c00056{height:1263.240000px;}
.w1_c00056{width:892.500000px;}
.w0_c00056{width:892.800000px;}
.x0_c00056{left:0.000000px;}
.x1b_c00056{left:121.288650px;}
.x14_c00056{left:122.463150px;}
.xf_c00056{left:123.643350px;}
.x5_c00056{left:124.871550px;}
.x1_c00056{left:126.915000px;}
.x19_c00056{left:159.390000px;}
.x2_c00056{left:179.805000px;}
.xe_c00056{left:182.794200px;}
.x8_c00056{left:238.155000px;}
.x3_c00056{left:256.515000px;}
.x9_c00056{left:260.280000px;}
.x12_c00056{left:268.395000px;}
.x15_c00056{left:277.755000px;}
.x4_c00056{left:280.290000px;}
.x13_c00056{left:291.240000px;}
.x16_c00056{left:299.910000px;}
.x23_c00056{left:340.485000px;}
.x10_c00056{left:342.555000px;}
.x24_c00056{left:363.210000px;}
.x11_c00056{left:369.180000px;}
.x1a_c00056{left:418.950000px;}
.x1c_c00056{left:422.115000px;}
.x25_c00056{left:427.980000px;}
.x1d_c00056{left:448.050000px;}
.x1e_c00056{left:474.045000px;}
.x1f_c00056{left:502.485000px;}
.x20_c00056{left:530.535000px;}
.xc_c00056{left:542.805000px;}
.xa_c00056{left:557.115000px;}
.xd_c00056{left:570.405000px;}
.xb_c00056{left:579.810000px;}
.x17_c00056{left:596.055000px;}
.x18_c00056{left:618.330000px;}
.x21_c00056{left:685.005000px;}
.x22_c00056{left:706.830000px;}
.x6_c00056{left:719.835000px;}
.x7_c00056{left:744.690000px;}
@media print{
.v2_c00056{vertical-align:-7.680000pt;}
.v1_c00056{vertical-align:-5.181333pt;}
.v0_c00056{vertical-align:0.000000pt;}
.ls65_c00056{letter-spacing:-2.296000pt;}
.ls47_c00056{letter-spacing:-2.258667pt;}
.ls59_c00056{letter-spacing:-2.142507pt;}
.ls66_c00056{letter-spacing:-1.961813pt;}
.ls5f_c00056{letter-spacing:-1.774667pt;}
.ls79_c00056{letter-spacing:-1.671413pt;}
.ls6c_c00056{letter-spacing:-1.452000pt;}
.ls58_c00056{letter-spacing:-1.432640pt;}
.ls53_c00056{letter-spacing:-1.393920pt;}
.ls62_c00056{letter-spacing:-1.374560pt;}
.ls69_c00056{letter-spacing:-1.335840pt;}
.ls63_c00056{letter-spacing:-1.219680pt;}
.lsa4_c00056{letter-spacing:-1.213600pt;}
.ls74_c00056{letter-spacing:-1.103520pt;}
.ls8f_c00056{letter-spacing:-1.006720pt;}
.ls75_c00056{letter-spacing:-0.871200pt;}
.ls81_c00056{letter-spacing:-0.864747pt;}
.ls9b_c00056{letter-spacing:-0.819573pt;}
.ls77_c00056{letter-spacing:-0.800213pt;}
.ls85_c00056{letter-spacing:-0.793760pt;}
.lsa9_c00056{letter-spacing:-0.792000pt;}
.ls8a_c00056{letter-spacing:-0.787307pt;}
.ls90_c00056{letter-spacing:-0.767947pt;}
.ls48_c00056{letter-spacing:-0.729227pt;}
.ls7e_c00056{letter-spacing:-0.703413pt;}
.ls6d_c00056{letter-spacing:-0.690507pt;}
.ls5d_c00056{letter-spacing:-0.677600pt;}
.ls72_c00056{letter-spacing:-0.632427pt;}
.lsa2_c00056{letter-spacing:-0.580800pt;}
.ls8c_c00056{letter-spacing:-0.574347pt;}
.ls9d_c00056{letter-spacing:-0.554987pt;}
.ls61_c00056{letter-spacing:-0.548533pt;}
.lsa3_c00056{letter-spacing:-0.535627pt;}
.ls73_c00056{letter-spacing:-0.529173pt;}
.lsa8_c00056{letter-spacing:-0.509813pt;}
.ls52_c00056{letter-spacing:-0.496907pt;}
.ls51_c00056{letter-spacing:-0.490453pt;}
.ls89_c00056{letter-spacing:-0.484000pt;}
.ls8e_c00056{letter-spacing:-0.477547pt;}
.lsa1_c00056{letter-spacing:-0.471093pt;}
.ls46_c00056{letter-spacing:-0.464640pt;}
.ls9f_c00056{letter-spacing:-0.458187pt;}
.lsa7_c00056{letter-spacing:-0.432373pt;}
.ls8b_c00056{letter-spacing:-0.406560pt;}
.lsa5_c00056{letter-spacing:-0.400107pt;}
.ls94_c00056{letter-spacing:-0.393653pt;}
.ls4e_c00056{letter-spacing:-0.387200pt;}
.ls56_c00056{letter-spacing:-0.380747pt;}
.ls95_c00056{letter-spacing:-0.367840pt;}
.ls70_c00056{letter-spacing:-0.354933pt;}
.lsa6_c00056{letter-spacing:-0.348480pt;}
.ls6e_c00056{letter-spacing:-0.342027pt;}
.ls9e_c00056{letter-spacing:-0.329120pt;}
.ls99_c00056{letter-spacing:-0.322667pt;}
.ls71_c00056{letter-spacing:-0.309760pt;}
.ls4a_c00056{letter-spacing:-0.303307pt;}
.ls82_c00056{letter-spacing:-0.296853pt;}
.ls76_c00056{letter-spacing:-0.283947pt;}
.ls87_c00056{letter-spacing:-0.258133pt;}
.ls49_c00056{letter-spacing:-0.251680pt;}
.ls9a_c00056{letter-spacing:-0.245227pt;}
.ls84_c00056{letter-spacing:-0.232320pt;}
.ls4f_c00056{letter-spacing:-0.225867pt;}
.lsa0_c00056{letter-spacing:-0.219413pt;}
.ls50_c00056{letter-spacing:-0.212960pt;}
.ls78_c00056{letter-spacing:-0.206507pt;}
.ls5b_c00056{letter-spacing:-0.200053pt;}
.ls60_c00056{letter-spacing:-0.193600pt;}
.ls9c_c00056{letter-spacing:-0.187147pt;}
.ls93_c00056{letter-spacing:-0.180693pt;}
.ls83_c00056{letter-spacing:-0.174240pt;}
.ls68_c00056{letter-spacing:-0.167787pt;}
.ls4d_c00056{letter-spacing:-0.161333pt;}
.ls5c_c00056{letter-spacing:-0.154880pt;}
.ls4b_c00056{letter-spacing:-0.148427pt;}
.ls86_c00056{letter-spacing:-0.141973pt;}
.ls7f_c00056{letter-spacing:-0.135520pt;}
.ls96_c00056{letter-spacing:-0.129067pt;}
.ls92_c00056{letter-spacing:-0.116160pt;}
.ls54_c00056{letter-spacing:-0.109707pt;}
.ls5e_c00056{letter-spacing:-0.103253pt;}
.ls7d_c00056{letter-spacing:-0.096800pt;}
.ls55_c00056{letter-spacing:-0.090347pt;}
.ls6b_c00056{letter-spacing:-0.083893pt;}
.ls88_c00056{letter-spacing:-0.077440pt;}
.ls6a_c00056{letter-spacing:-0.070987pt;}
.ls5a_c00056{letter-spacing:-0.064533pt;}
.ls6f_c00056{letter-spacing:-0.058080pt;}
.ls67_c00056{letter-spacing:-0.051627pt;}
.ls7a_c00056{letter-spacing:-0.045173pt;}
.ls8d_c00056{letter-spacing:-0.038720pt;}
.ls7b_c00056{letter-spacing:-0.032267pt;}
.ls98_c00056{letter-spacing:-0.025813pt;}
.ls64_c00056{letter-spacing:-0.019360pt;}
.ls57_c00056{letter-spacing:-0.012907pt;}
.ls80_c00056{letter-spacing:-0.006453pt;}
.ls4c_c00056{letter-spacing:0.000000pt;}
.ls25_c00056{letter-spacing:0.006453pt;}
.ls3a_c00056{letter-spacing:0.012907pt;}
.ls2_c00056{letter-spacing:0.019360pt;}
.ls21_c00056{letter-spacing:0.025813pt;}
.ls31_c00056{letter-spacing:0.032267pt;}
.ls18_c00056{letter-spacing:0.038720pt;}
.ls1e_c00056{letter-spacing:0.064533pt;}
.ls35_c00056{letter-spacing:0.070987pt;}
.lsa_c00056{letter-spacing:0.077440pt;}
.ls20_c00056{letter-spacing:0.083893pt;}
.lsb_c00056{letter-spacing:0.090347pt;}
.ls9_c00056{letter-spacing:0.096800pt;}
.lse_c00056{letter-spacing:0.103253pt;}
.ls37_c00056{letter-spacing:0.116160pt;}
.ls33_c00056{letter-spacing:0.122613pt;}
.ls2e_c00056{letter-spacing:0.135520pt;}
.ls34_c00056{letter-spacing:0.141973pt;}
.ls2f_c00056{letter-spacing:0.154880pt;}
.ls3e_c00056{letter-spacing:0.161333pt;}
.ls6_c00056{letter-spacing:0.167787pt;}
.ls11_c00056{letter-spacing:0.174240pt;}
.ls7_c00056{letter-spacing:0.180693pt;}
.ls12_c00056{letter-spacing:0.187147pt;}
.ls1f_c00056{letter-spacing:0.200053pt;}
.ls2d_c00056{letter-spacing:0.212960pt;}
.ls2c_c00056{letter-spacing:0.219413pt;}
.ls17_c00056{letter-spacing:0.232320pt;}
.ls39_c00056{letter-spacing:0.258133pt;}
.ls3d_c00056{letter-spacing:0.264587pt;}
.ls1_c00056{letter-spacing:0.271040pt;}
.ls2b_c00056{letter-spacing:0.283947pt;}
.ls29_c00056{letter-spacing:0.309760pt;}
.ls16_c00056{letter-spacing:0.316213pt;}
.ls38_c00056{letter-spacing:0.322667pt;}
.ls15_c00056{letter-spacing:0.329120pt;}
.ls28_c00056{letter-spacing:0.335573pt;}
.ls7c_c00056{letter-spacing:0.342027pt;}
.ls10_c00056{letter-spacing:0.348480pt;}
.ls13_c00056{letter-spacing:0.361387pt;}
.ls3c_c00056{letter-spacing:0.380747pt;}
.ls3f_c00056{letter-spacing:0.387200pt;}
.ls30_c00056{letter-spacing:0.393653pt;}
.lsd_c00056{letter-spacing:0.406560pt;}
.ls42_c00056{letter-spacing:0.419467pt;}
.ls3b_c00056{letter-spacing:0.425920pt;}
.ls1d_c00056{letter-spacing:0.464640pt;}
.lsc_c00056{letter-spacing:0.490453pt;}
.ls43_c00056{letter-spacing:0.529173pt;}
.ls44_c00056{letter-spacing:0.542080pt;}
.ls3_c00056{letter-spacing:0.548533pt;}
.ls40_c00056{letter-spacing:0.554987pt;}
.ls1b_c00056{letter-spacing:0.580800pt;}
.ls23_c00056{letter-spacing:0.587253pt;}
.ls1a_c00056{letter-spacing:0.600160pt;}
.ls8_c00056{letter-spacing:0.613067pt;}
.ls19_c00056{letter-spacing:0.625973pt;}
.ls24_c00056{letter-spacing:0.703413pt;}
.ls22_c00056{letter-spacing:0.722773pt;}
.ls41_c00056{letter-spacing:0.787307pt;}
.ls32_c00056{letter-spacing:0.800213pt;}
.ls45_c00056{letter-spacing:0.815360pt;}
.ls14_c00056{letter-spacing:0.819573pt;}
.ls1c_c00056{letter-spacing:0.871200pt;}
.ls2a_c00056{letter-spacing:0.890560pt;}
.ls0_c00056{letter-spacing:1.042773pt;}
.ls27_c00056{letter-spacing:1.097067pt;}
.ls4_c00056{letter-spacing:1.439093pt;}
.ls97_c00056{letter-spacing:1.858560pt;}
.ls36_c00056{letter-spacing:1.955360pt;}
.ls5_c00056{letter-spacing:2.000533pt;}
.ls91_c00056{letter-spacing:2.293333pt;}
.ls26_c00056{letter-spacing:3.142773pt;}
.lsf_c00056{letter-spacing:18.346400pt;}
.ws0_c00056{word-spacing:0.000000pt;}
._14_c00056{margin-left:-5.814453pt;}
._16_c00056{margin-left:-3.291200pt;}
._0_c00056{margin-left:-2.152107pt;}
._11_c00056{margin-left:-0.955093pt;}
._13_c00056{width:0.901173pt;}
._b_c00056{width:1.974720pt;}
._4_c00056{width:3.704213pt;}
._12_c00056{width:4.638560pt;}
._c_c00056{width:5.530507pt;}
._1_c00056{width:6.776000pt;}
._8_c00056{width:7.937600pt;}
._2_c00056{width:8.918507pt;}
._3_c00056{width:10.751253pt;}
._5_c00056{width:12.067733pt;}
._7_c00056{width:13.106720pt;}
._17_c00056{width:14.100533pt;}
._a_c00056{width:15.049173pt;}
._6_c00056{width:16.875467pt;}
._9_c00056{width:17.991893pt;}
._10_c00056{width:20.063413pt;}
._1d_c00056{width:20.992693pt;}
._d_c00056{width:21.928427pt;}
._f_c00056{width:23.309440pt;}
._e_c00056{width:25.516480pt;}
._15_c00056{width:41.043200pt;}
._1a_c00056{width:43.115520pt;}
._19_c00056{width:44.365867pt;}
._18_c00056{width:47.128480pt;}
._1c_c00056{width:48.246347pt;}
._1b_c00056{width:50.787733pt;}
.fs3_c00056{font-size:42.133867pt;}
.fs5_c00056{font-size:45.866667pt;}
.fs7_c00056{font-size:52.800000pt;}
.fs0_c00056{font-size:55.466667pt;}
.fs4_c00056{font-size:60.266667pt;}
.fs6_c00056{font-size:62.933333pt;}
.fs1_c00056{font-size:64.533333pt;}
.fs2_c00056{font-size:65.600000pt;}
.y0_c00056{bottom:0.000000pt;}
.y29_c00056{bottom:58.893333pt;}
.y27_c00056{bottom:141.436533pt;}
.y28_c00056{bottom:141.440000pt;}
.y26_c00056{bottom:168.960000pt;}
.y25_c00056{bottom:196.166400pt;}
.y24_c00056{bottom:223.367200pt;}
.y23_c00056{bottom:251.215333pt;}
.y21_c00056{bottom:278.399200pt;}
.y22_c00056{bottom:278.400000pt;}
.y20_c00056{bottom:305.596000pt;}
.y1f_c00056{bottom:333.119467pt;}
.y1e_c00056{bottom:360.965600pt;}
.y1d_c00056{bottom:415.673733pt;}
.y1c_c00056{bottom:443.213333pt;}
.y1a_c00056{bottom:497.930000pt;}
.y1b_c00056{bottom:497.933333pt;}
.y18_c00056{bottom:525.746800pt;}
.y19_c00056{bottom:525.760000pt;}
.y17_c00056{bottom:553.286400pt;}
.y16_c00056{bottom:580.793733pt;}
.y14_c00056{bottom:608.322133pt;}
.y15_c00056{bottom:608.333333pt;}
.y13_c00056{bottom:635.522933pt;}
.y12_c00056{bottom:663.046400pt;}
.y11_c00056{bottom:690.569867pt;}
.yf_c00056{bottom:718.087200pt;}
.y10_c00056{bottom:718.093333pt;}
.ye_c00056{bottom:745.935333pt;}
.yd_c00056{bottom:773.120000pt;}
.yc_c00056{bottom:773.122933pt;}
.yb_c00056{bottom:800.646400pt;}
.ya_c00056{bottom:855.695333pt;}
.y8_c00056{bottom:882.876533pt;}
.y9_c00056{bottom:882.880000pt;}
.y6_c00056{bottom:910.393733pt;}
.y7_c00056{bottom:910.400000pt;}
.y4_c00056{bottom:937.931867pt;}
.y5_c00056{bottom:937.933333pt;}
.y3_c00056{bottom:964.793867pt;}
.y2_c00056{bottom:992.640000pt;}
.y1_c00056{bottom:1061.120000pt;}
.h6_c00056{height:45.015625pt;}
.h8_c00056{height:51.820312pt;}
.h2_c00056{height:54.437500pt;}
.h3_c00056{height:63.335938pt;}
.h5_c00056{height:63.349271pt;}
.h4_c00056{height:64.382813pt;}
.h7_c00056{height:65.653500pt;}
.h1_c00056{height:1122.666667pt;}
.h0_c00056{height:1122.880000pt;}
.w1_c00056{width:793.333333pt;}
.w0_c00056{width:793.600000pt;}
.x0_c00056{left:0.000000pt;}
.x1b_c00056{left:107.812133pt;}
.x14_c00056{left:108.856133pt;}
.xf_c00056{left:109.905200pt;}
.x5_c00056{left:110.996933pt;}
.x1_c00056{left:112.813333pt;}
.x19_c00056{left:141.680000pt;}
.x2_c00056{left:159.826667pt;}
.xe_c00056{left:162.483733pt;}
.x8_c00056{left:211.693333pt;}
.x3_c00056{left:228.013333pt;}
.x9_c00056{left:231.360000pt;}
.x12_c00056{left:238.573333pt;}
.x15_c00056{left:246.893333pt;}
.x4_c00056{left:249.146667pt;}
.x13_c00056{left:258.880000pt;}
.x16_c00056{left:266.586667pt;}
.x23_c00056{left:302.653333pt;}
.x10_c00056{left:304.493333pt;}
.x24_c00056{left:322.853333pt;}
.x11_c00056{left:328.160000pt;}
.x1a_c00056{left:372.400000pt;}
.x1c_c00056{left:375.213333pt;}
.x25_c00056{left:380.426667pt;}
.x1d_c00056{left:398.266667pt;}
.x1e_c00056{left:421.373333pt;}
.x1f_c00056{left:446.653333pt;}
.x20_c00056{left:471.586667pt;}
.xc_c00056{left:482.493333pt;}
.xa_c00056{left:495.213333pt;}
.xd_c00056{left:507.026667pt;}
.xb_c00056{left:515.386667pt;}
.x17_c00056{left:529.826667pt;}
.x18_c00056{left:549.626667pt;}
.x21_c00056{left:608.893333pt;}
.x22_c00056{left:628.293333pt;}
.x6_c00056{left:639.853333pt;}
.x7_c00056{left:661.946667pt;}
}





/* 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_c00057 {
    display:none;
  }
  .loading-indicator_c00057.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00057 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_c00057 { 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_c00057" -> "#page-container .classname_c00057")
 */
.pf_c00057 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00057 { /* 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_c00057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00057 { /* 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_c00057 { /* 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_c00057 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00057 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00057 {overflow:visible;}
  }
}
.c_c00057 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00057 { /* 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_c00057:after { /* webkit #35443 */
  content: '';
}
.t_c00057:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00057 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 */
}
.__c00057 { /* 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_c00057 { /* info for Javascript */
  display:none;
}
.l_c00057 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00057 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00057 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00057: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_c00057 {
    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_c00057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00057.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_c00057 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00057;src:url('chunks/assets/font_38bb61a7605fd78dfc3f8452.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.311035;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_c00057;src:url('chunks/assets/font_55dafd703e979367de7360ce.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.284668;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_c00057;src:url('chunks/assets/font_25fc098ae7feaaef4c98e5a8.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.284180;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_c00057;src:url('chunks/assets/font_4010b3f2aef067952165365b.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;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:ff5_c00057;src:url('chunks/assets/font_e0b4f344ad54a18ab8aed106.woff2')format("woff");}.ff5_c00057{font-family:ff5_c00057;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:ff6_c00057;src:url('chunks/assets/font_41b2dd084ab08a837e34d85c.woff2')format("woff");}.ff6_c00057{font-family:ff6_c00057;line-height:0.666000;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_c00057{transform:matrix(0.134421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134421,0.000000,0.000000,0.250000,0,0);}
.m8_c00057{transform:matrix(0.135809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135809,0.000000,0.000000,0.250000,0,0);}
.ma_c00057{transform:matrix(0.143861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143861,0.000000,0.000000,0.250000,0,0);}
.m7_c00057{transform:matrix(0.143957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143957,0.000000,0.000000,0.250000,0,0);}
.m3_c00057{transform:matrix(0.164567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164567,0.000000,0.000000,0.250000,0,0);}
.m6_c00057{transform:matrix(0.203301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203301,0.000000,0.000000,0.250000,0,0);}
.mf_c00057{transform:matrix(0.214289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214289,0.000000,0.000000,0.250000,0,0);}
.m14_c00057{transform:matrix(0.219996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219996,0.000000,0.000000,0.250000,0,0);}
.m9_c00057{transform:matrix(0.220129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220129,0.000000,0.000000,0.250000,0,0);}
.m5_c00057{transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);}
.m13_c00057{transform:matrix(0.227476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227476,0.000000,0.000000,0.250000,0,0);}
.md_c00057{transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);}
.mc_c00057{transform:matrix(0.246613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246613,0.000000,0.000000,0.250000,0,0);}
.m1_c00057{transform:matrix(0.246692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246692,0.000000,0.000000,0.250000,0,0);}
.me_c00057{transform:matrix(0.246873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246873,0.000000,0.000000,0.250000,0,0);}
.m0_c00057{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);}
.m12_c00057{transform:matrix(0.251651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251651,0.000000,0.000000,0.250000,0,0);}
.m11_c00057{transform:matrix(0.255903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255903,0.000000,0.000000,0.250000,0,0);}
.m2_c00057{transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);}
.mb_c00057{transform:matrix(0.304204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304204,0.000000,0.000000,0.250000,0,0);}
.m10_c00057{transform:matrix(0.319384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319384,0.000000,0.000000,0.250000,0,0);}
.v1_c00057{vertical-align:-23.100000px;}
.v4_c00057{vertical-align:-10.062000px;}
.v3_c00057{vertical-align:-8.700000px;}
.v2_c00057{vertical-align:-7.222800px;}
.v0_c00057{vertical-align:0.000000px;}
.ls2f_c00057{letter-spacing:-4.515000px;}
.ls45_c00057{letter-spacing:-2.352000px;}
.ls3a_c00057{letter-spacing:-2.226000px;}
.ls34_c00057{letter-spacing:-2.058000px;}
.ls33_c00057{letter-spacing:-1.932000px;}
.ls35_c00057{letter-spacing:-1.722000px;}
.ls36_c00057{letter-spacing:-1.554021px;}
.ls39_c00057{letter-spacing:-1.481880px;}
.ls37_c00057{letter-spacing:-1.470000px;}
.ls31_c00057{letter-spacing:-1.428021px;}
.ls44_c00057{letter-spacing:-0.763200px;}
.ls3d_c00057{letter-spacing:-0.222600px;}
.ls42_c00057{letter-spacing:-0.184440px;}
.ls2e_c00057{letter-spacing:0.000000px;}
.ls21_c00057{letter-spacing:0.089040px;}
.ls2a_c00057{letter-spacing:0.127200px;}
.lsc_c00057{letter-spacing:0.190800px;}
.ls25_c00057{letter-spacing:0.222600px;}
.ls40_c00057{letter-spacing:0.241680px;}
.ls12_c00057{letter-spacing:0.337080px;}
.ls1d_c00057{letter-spacing:0.375240px;}
.ls3e_c00057{letter-spacing:0.445200px;}
.ls14_c00057{letter-spacing:0.483360px;}
.lsb_c00057{letter-spacing:0.585120px;}
.ls6_c00057{letter-spacing:0.616920px;}
.ls24_c00057{letter-spacing:0.623280px;}
.ls43_c00057{letter-spacing:0.648720px;}
.ls13_c00057{letter-spacing:0.655080px;}
.ls22_c00057{letter-spacing:0.686880px;}
.ls2c_c00057{letter-spacing:0.712800px;}
.ls5_c00057{letter-spacing:0.769560px;}
.ls1a_c00057{letter-spacing:0.858600px;}
.ls1b_c00057{letter-spacing:0.864960px;}
.ls2b_c00057{letter-spacing:0.909480px;}
.ls32_c00057{letter-spacing:0.912612px;}
.ls20_c00057{letter-spacing:0.915840px;}
.ls15_c00057{letter-spacing:0.960360px;}
.ls3b_c00057{letter-spacing:0.985800px;}
.ls27_c00057{letter-spacing:1.004880px;}
.ls1e_c00057{letter-spacing:1.017600px;}
.ls17_c00057{letter-spacing:1.074840px;}
.ls11_c00057{letter-spacing:1.085400px;}
.ls41_c00057{letter-spacing:1.093920px;}
.lsd_c00057{letter-spacing:1.125600px;}
.ls3_c00057{letter-spacing:1.163880px;}
.ls23_c00057{letter-spacing:1.195680px;}
.ls10_c00057{letter-spacing:1.208400px;}
.ls2_c00057{letter-spacing:1.221120px;}
.ls9_c00057{letter-spacing:1.227480px;}
.ls28_c00057{letter-spacing:1.240200px;}
.ls16_c00057{letter-spacing:1.303800px;}
.ls3f_c00057{letter-spacing:1.316520px;}
.ls8_c00057{letter-spacing:1.386480px;}
.ls1c_c00057{letter-spacing:1.418280px;}
.ls1f_c00057{letter-spacing:1.437360px;}
.lse_c00057{letter-spacing:1.500960px;}
.ls26_c00057{letter-spacing:1.558200px;}
.ls1_c00057{letter-spacing:1.590000px;}
.lsa_c00057{letter-spacing:1.857120px;}
.ls7_c00057{letter-spacing:1.869840px;}
.ls0_c00057{letter-spacing:1.912320px;}
.ls2d_c00057{letter-spacing:1.998720px;}
.ls18_c00057{letter-spacing:2.054280px;}
.ls38_c00057{letter-spacing:2.100000px;}
.ls19_c00057{letter-spacing:2.136960px;}
.ls30_c00057{letter-spacing:2.430000px;}
.ls4_c00057{letter-spacing:2.518560px;}
.lsf_c00057{letter-spacing:2.532600px;}
.ls29_c00057{letter-spacing:2.537640px;}
.ls3c_c00057{letter-spacing:3.180000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{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__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:0.000000px;}
._11_c00057{margin-left:-5.660400px;}
._0_c00057{margin-left:-4.216320px;}
._b_c00057{margin-left:-1.284720px;}
._7_c00057{width:1.004880px;}
._8_c00057{width:2.199840px;}
._4_c00057{width:3.873240px;}
._3_c00057{width:5.781240px;}
._2_c00057{width:8.013600px;}
._5_c00057{width:11.040960px;}
._6_c00057{width:12.694560px;}
._9_c00057{width:13.754400px;}
._a_c00057{width:16.621920px;}
._e_c00057{width:19.054560px;}
._10_c00057{width:22.101000px;}
._c_c00057{width:23.532000px;}
._d_c00057{width:25.249200px;}
._f_c00057{width:26.883720px;}
._1_c00057{width:543.360000px;}
.fc0_c00057{color:transparent;}
.fs10_c00057{font-size:40.200000px;}
.fs6_c00057{font-size:40.800600px;}
.fse_c00057{font-size:42.000000px;}
.fsd_c00057{font-size:44.400600px;}
.fs7_c00057{font-size:46.800600px;}
.fs5_c00057{font-size:48.600000px;}
.fsb_c00057{font-size:49.200000px;}
.fs11_c00057{font-size:50.400000px;}
.fs8_c00057{font-size:55.200000px;}
.fs0_c00057{font-size:57.600000px;}
.fs9_c00057{font-size:58.800000px;}
.fsf_c00057{font-size:63.600000px;}
.fsa_c00057{font-size:64.200000px;}
.fs13_c00057{font-size:66.000000px;}
.fs12_c00057{font-size:67.200000px;}
.fsc_c00057{font-size:69.000000px;}
.fs1_c00057{font-size:74.400000px;}
.fs3_c00057{font-size:76.800000px;}
.fs2_c00057{font-size:89.400000px;}
.fs4_c00057{font-size:129.000000px;}
.y0_c00057{bottom:0.000000px;}
.y16_c00057{bottom:69.495000px;}
.y14_c00057{bottom:255.250500px;}
.y15_c00057{bottom:255.255000px;}
.y13_c00057{bottom:273.599100px;}
.y11_c00057{bottom:292.690500px;}
.y12_c00057{bottom:292.695000px;}
.y10_c00057{bottom:311.055000px;}
.yf_c00057{bottom:329.775000px;}
.ye_c00057{bottom:329.780700px;}
.yd_c00057{bottom:348.495000px;}
.y4_c00057{bottom:440.280000px;}
.y18_c00057{bottom:610.575000px;}
.y17_c00057{bottom:614.175000px;}
.y3_c00057{bottom:661.335000px;}
.yc_c00057{bottom:758.520000px;}
.y2_c00057{bottom:759.615000px;}
.yb_c00057{bottom:776.175000px;}
.ya_c00057{bottom:796.335000px;}
.y9_c00057{bottom:808.200000px;}
.y8_c00057{bottom:823.335000px;}
.y7_c00057{bottom:831.975000px;}
.y5_c00057{bottom:894.975000px;}
.y6_c00057{bottom:904.695000px;}
.y1_c00057{bottom:1192.695000px;}
.h12_c00057{height:33.566400px;}
.h8_c00057{height:42.553751px;}
.h10_c00057{height:43.804688px;}
.hf_c00057{height:46.308438px;}
.h7_c00057{height:47.698242px;}
.hd_c00057{height:48.287109px;}
.h9_c00057{height:48.811563px;}
.ha_c00057{height:54.175781px;}
.hb_c00057{height:57.708984px;}
.h2_c00057{height:58.050000px;}
.he_c00057{height:60.075000px;}
.h11_c00057{height:62.419922px;}
.h13_c00057{height:62.437922px;}
.h14_c00057{height:65.953125px;}
.hc_c00057{height:66.958594px;}
.h16_c00057{height:68.835938px;}
.h3_c00057{height:73.019531px;}
.h5_c00057{height:75.375000px;}
.h15_c00057{height:80.100000px;}
.h4_c00057{height:87.697559px;}
.h6_c00057{height:126.606445px;}
.h1_c00057{height:1263.000000px;}
.h0_c00057{height:1263.240000px;}
.w1_c00057{width:892.500000px;}
.w0_c00057{width:892.800000px;}
.x0_c00057{left:0.000000px;}
.x12_c00057{left:130.641300px;}
.x1_c00057{left:131.955000px;}
.x16_c00057{left:152.640000px;}
.x17_c00057{left:190.110000px;}
.x1a_c00057{left:232.380000px;}
.x1b_c00057{left:251.970000px;}
.x2_c00057{left:291.765000px;}
.x3_c00057{left:309.765000px;}
.x18_c00057{left:319.590000px;}
.x4_c00057{left:335.670000px;}
.x19_c00057{left:362.745000px;}
.x13_c00057{left:399.150000px;}
.x1e_c00057{left:412.860000px;}
.x1c_c00057{left:417.150000px;}
.x14_c00057{left:419.595000px;}
.x1f_c00057{left:434.820000px;}
.x1d_c00057{left:439.530000px;}
.x9_c00057{left:503.580000px;}
.x7_c00057{left:516.465000px;}
.x8_c00057{left:535.530000px;}
.xa_c00057{left:545.160000px;}
.xb_c00057{left:571.455000px;}
.x15_c00057{left:577.995000px;}
.xc_c00057{left:580.170000px;}
.xd_c00057{left:589.695000px;}
.x5_c00057{left:599.025000px;}
.xe_c00057{left:607.560000px;}
.x10_c00057{left:641.010000px;}
.x11_c00057{left:650.715000px;}
.x6_c00057{left:655.695000px;}
.xf_c00057{left:689.295000px;}
.x21_c00057{left:855.135000px;}
.x20_c00057{left:856.185000px;}
@media print{
.v1_c00057{vertical-align:-20.533333pt;}
.v4_c00057{vertical-align:-8.944000pt;}
.v3_c00057{vertical-align:-7.733333pt;}
.v2_c00057{vertical-align:-6.420267pt;}
.v0_c00057{vertical-align:0.000000pt;}
.ls2f_c00057{letter-spacing:-4.013333pt;}
.ls45_c00057{letter-spacing:-2.090667pt;}
.ls3a_c00057{letter-spacing:-1.978667pt;}
.ls34_c00057{letter-spacing:-1.829333pt;}
.ls33_c00057{letter-spacing:-1.717333pt;}
.ls35_c00057{letter-spacing:-1.530667pt;}
.ls36_c00057{letter-spacing:-1.381352pt;}
.ls39_c00057{letter-spacing:-1.317227pt;}
.ls37_c00057{letter-spacing:-1.306667pt;}
.ls31_c00057{letter-spacing:-1.269352pt;}
.ls44_c00057{letter-spacing:-0.678400pt;}
.ls3d_c00057{letter-spacing:-0.197867pt;}
.ls42_c00057{letter-spacing:-0.163947pt;}
.ls2e_c00057{letter-spacing:0.000000pt;}
.ls21_c00057{letter-spacing:0.079147pt;}
.ls2a_c00057{letter-spacing:0.113067pt;}
.lsc_c00057{letter-spacing:0.169600pt;}
.ls25_c00057{letter-spacing:0.197867pt;}
.ls40_c00057{letter-spacing:0.214827pt;}
.ls12_c00057{letter-spacing:0.299627pt;}
.ls1d_c00057{letter-spacing:0.333547pt;}
.ls3e_c00057{letter-spacing:0.395733pt;}
.ls14_c00057{letter-spacing:0.429653pt;}
.lsb_c00057{letter-spacing:0.520107pt;}
.ls6_c00057{letter-spacing:0.548373pt;}
.ls24_c00057{letter-spacing:0.554027pt;}
.ls43_c00057{letter-spacing:0.576640pt;}
.ls13_c00057{letter-spacing:0.582293pt;}
.ls22_c00057{letter-spacing:0.610560pt;}
.ls2c_c00057{letter-spacing:0.633600pt;}
.ls5_c00057{letter-spacing:0.684053pt;}
.ls1a_c00057{letter-spacing:0.763200pt;}
.ls1b_c00057{letter-spacing:0.768853pt;}
.ls2b_c00057{letter-spacing:0.808427pt;}
.ls32_c00057{letter-spacing:0.811210pt;}
.ls20_c00057{letter-spacing:0.814080pt;}
.ls15_c00057{letter-spacing:0.853653pt;}
.ls3b_c00057{letter-spacing:0.876267pt;}
.ls27_c00057{letter-spacing:0.893227pt;}
.ls1e_c00057{letter-spacing:0.904533pt;}
.ls17_c00057{letter-spacing:0.955413pt;}
.ls11_c00057{letter-spacing:0.964800pt;}
.ls41_c00057{letter-spacing:0.972373pt;}
.lsd_c00057{letter-spacing:1.000533pt;}
.ls3_c00057{letter-spacing:1.034560pt;}
.ls23_c00057{letter-spacing:1.062827pt;}
.ls10_c00057{letter-spacing:1.074133pt;}
.ls2_c00057{letter-spacing:1.085440pt;}
.ls9_c00057{letter-spacing:1.091093pt;}
.ls28_c00057{letter-spacing:1.102400pt;}
.ls16_c00057{letter-spacing:1.158933pt;}
.ls3f_c00057{letter-spacing:1.170240pt;}
.ls8_c00057{letter-spacing:1.232427pt;}
.ls1c_c00057{letter-spacing:1.260693pt;}
.ls1f_c00057{letter-spacing:1.277653pt;}
.lse_c00057{letter-spacing:1.334187pt;}
.ls26_c00057{letter-spacing:1.385067pt;}
.ls1_c00057{letter-spacing:1.413333pt;}
.lsa_c00057{letter-spacing:1.650773pt;}
.ls7_c00057{letter-spacing:1.662080pt;}
.ls0_c00057{letter-spacing:1.699840pt;}
.ls2d_c00057{letter-spacing:1.776640pt;}
.ls18_c00057{letter-spacing:1.826027pt;}
.ls38_c00057{letter-spacing:1.866667pt;}
.ls19_c00057{letter-spacing:1.899520pt;}
.ls30_c00057{letter-spacing:2.160000pt;}
.ls4_c00057{letter-spacing:2.238720pt;}
.lsf_c00057{letter-spacing:2.251200pt;}
.ls29_c00057{letter-spacing:2.255680pt;}
.ls3c_c00057{letter-spacing:2.826667pt;}
.ws0_c00057{word-spacing:0.000000pt;}
._11_c00057{margin-left:-5.031467pt;}
._0_c00057{margin-left:-3.747840pt;}
._b_c00057{margin-left:-1.141973pt;}
._7_c00057{width:0.893227pt;}
._8_c00057{width:1.955413pt;}
._4_c00057{width:3.442880pt;}
._3_c00057{width:5.138880pt;}
._2_c00057{width:7.123200pt;}
._5_c00057{width:9.814187pt;}
._6_c00057{width:11.284053pt;}
._9_c00057{width:12.226133pt;}
._a_c00057{width:14.775040pt;}
._e_c00057{width:16.937387pt;}
._10_c00057{width:19.645333pt;}
._c_c00057{width:20.917333pt;}
._d_c00057{width:22.443733pt;}
._f_c00057{width:23.896640pt;}
._1_c00057{width:482.986667pt;}
.fs10_c00057{font-size:35.733333pt;}
.fs6_c00057{font-size:36.267200pt;}
.fse_c00057{font-size:37.333333pt;}
.fsd_c00057{font-size:39.467200pt;}
.fs7_c00057{font-size:41.600533pt;}
.fs5_c00057{font-size:43.200000pt;}
.fsb_c00057{font-size:43.733333pt;}
.fs11_c00057{font-size:44.800000pt;}
.fs8_c00057{font-size:49.066667pt;}
.fs0_c00057{font-size:51.200000pt;}
.fs9_c00057{font-size:52.266667pt;}
.fsf_c00057{font-size:56.533333pt;}
.fsa_c00057{font-size:57.066667pt;}
.fs13_c00057{font-size:58.666667pt;}
.fs12_c00057{font-size:59.733333pt;}
.fsc_c00057{font-size:61.333333pt;}
.fs1_c00057{font-size:66.133333pt;}
.fs3_c00057{font-size:68.266667pt;}
.fs2_c00057{font-size:79.466667pt;}
.fs4_c00057{font-size:114.666667pt;}
.y0_c00057{bottom:0.000000pt;}
.y16_c00057{bottom:61.773333pt;}
.y14_c00057{bottom:226.889333pt;}
.y15_c00057{bottom:226.893333pt;}
.y13_c00057{bottom:243.199200pt;}
.y11_c00057{bottom:260.169333pt;}
.y12_c00057{bottom:260.173333pt;}
.y10_c00057{bottom:276.493333pt;}
.yf_c00057{bottom:293.133333pt;}
.ye_c00057{bottom:293.138400pt;}
.yd_c00057{bottom:309.773333pt;}
.y4_c00057{bottom:391.360000pt;}
.y18_c00057{bottom:542.733333pt;}
.y17_c00057{bottom:545.933333pt;}
.y3_c00057{bottom:587.853333pt;}
.yc_c00057{bottom:674.240000pt;}
.y2_c00057{bottom:675.213333pt;}
.yb_c00057{bottom:689.933333pt;}
.ya_c00057{bottom:707.853333pt;}
.y9_c00057{bottom:718.400000pt;}
.y8_c00057{bottom:731.853333pt;}
.y7_c00057{bottom:739.533333pt;}
.y5_c00057{bottom:795.533333pt;}
.y6_c00057{bottom:804.173333pt;}
.y1_c00057{bottom:1060.173333pt;}
.h12_c00057{height:29.836800pt;}
.h8_c00057{height:37.825556pt;}
.h10_c00057{height:38.937500pt;}
.hf_c00057{height:41.163056pt;}
.h7_c00057{height:42.398437pt;}
.hd_c00057{height:42.921875pt;}
.h9_c00057{height:43.388056pt;}
.ha_c00057{height:48.156250pt;}
.hb_c00057{height:51.296875pt;}
.h2_c00057{height:51.600000pt;}
.he_c00057{height:53.400000pt;}
.h11_c00057{height:55.484375pt;}
.h13_c00057{height:55.500375pt;}
.h14_c00057{height:58.625000pt;}
.hc_c00057{height:59.518750pt;}
.h16_c00057{height:61.187500pt;}
.h3_c00057{height:64.906250pt;}
.h5_c00057{height:67.000000pt;}
.h15_c00057{height:71.200000pt;}
.h4_c00057{height:77.953385pt;}
.h6_c00057{height:112.539062pt;}
.h1_c00057{height:1122.666667pt;}
.h0_c00057{height:1122.880000pt;}
.w1_c00057{width:793.333333pt;}
.w0_c00057{width:793.600000pt;}
.x0_c00057{left:0.000000pt;}
.x12_c00057{left:116.125600pt;}
.x1_c00057{left:117.293333pt;}
.x16_c00057{left:135.680000pt;}
.x17_c00057{left:168.986667pt;}
.x1a_c00057{left:206.560000pt;}
.x1b_c00057{left:223.973333pt;}
.x2_c00057{left:259.346667pt;}
.x3_c00057{left:275.346667pt;}
.x18_c00057{left:284.080000pt;}
.x4_c00057{left:298.373333pt;}
.x19_c00057{left:322.440000pt;}
.x13_c00057{left:354.800000pt;}
.x1e_c00057{left:366.986667pt;}
.x1c_c00057{left:370.800000pt;}
.x14_c00057{left:372.973333pt;}
.x1f_c00057{left:386.506667pt;}
.x1d_c00057{left:390.693333pt;}
.x9_c00057{left:447.626667pt;}
.x7_c00057{left:459.080000pt;}
.x8_c00057{left:476.026667pt;}
.xa_c00057{left:484.586667pt;}
.xb_c00057{left:507.960000pt;}
.x15_c00057{left:513.773333pt;}
.xc_c00057{left:515.706667pt;}
.xd_c00057{left:524.173333pt;}
.x5_c00057{left:532.466667pt;}
.xe_c00057{left:540.053333pt;}
.x10_c00057{left:569.786667pt;}
.x11_c00057{left:578.413333pt;}
.x6_c00057{left:582.840000pt;}
.xf_c00057{left:612.706667pt;}
.x21_c00057{left:760.120000pt;}
.x20_c00057{left:761.053333pt;}
}





/* 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_c00058 {
    display:none;
  }
  .loading-indicator_c00058.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00058 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_c00058 { 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_c00058" -> "#page-container .classname_c00058")
 */
.pf_c00058 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00058 { /* 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_c00058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00058 { /* 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_c00058 { /* 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_c00058 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00058 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00058 {overflow:visible;}
  }
}
.c_c00058 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00058 { /* 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_c00058:after { /* webkit #35443 */
  content: '';
}
.t_c00058:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00058 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 */
}
.__c00058 { /* 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_c00058 { /* info for Javascript */
  display:none;
}
.l_c00058 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00058 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00058 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00058: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_c00058 {
    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_c00058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00058.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_c00058 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00058;src:url('chunks/assets/font_41cdab9571f9cbb2790ff656.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.284668;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_c00058;src:url('chunks/assets/font_210b2dd25890f0cd03185839.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.284180;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_c00058;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;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;}
.m4_c00058{transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);}
.m2_c00058{transform:matrix(0.220957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220957,0.000000,0.000000,0.250000,0,0);}
.m5_c00058{transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m3_c00058{transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);}
.m0_c00058{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);}
.v0_c00058{vertical-align:0.000000px;}
.ls45_c00058{letter-spacing:-2.583000px;}
.ls44_c00058{letter-spacing:-2.541000px;}
.ls86_c00058{letter-spacing:-2.511960px;}
.ls67_c00058{letter-spacing:-2.410320px;}
.ls4c_c00058{letter-spacing:-2.265120px;}
.ls8d_c00058{letter-spacing:-2.243340px;}
.ls66_c00058{letter-spacing:-2.207040px;}
.ls97_c00058{letter-spacing:-1.996500px;}
.ls88_c00058{letter-spacing:-1.880340px;}
.ls6d_c00058{letter-spacing:-1.836780px;}
.ls95_c00058{letter-spacing:-1.800480px;}
.ls6e_c00058{letter-spacing:-1.764180px;}
.ls9b_c00058{letter-spacing:-1.698840px;}
.ls83_c00058{letter-spacing:-1.611720px;}
.ls4a_c00058{letter-spacing:-1.568160px;}
.ls68_c00058{letter-spacing:-1.546380px;}
.ls6c_c00058{letter-spacing:-1.495560px;}
.ls84_c00058{letter-spacing:-1.481040px;}
.ls5e_c00058{letter-spacing:-1.452000px;}
.ls9a_c00058{letter-spacing:-1.364880px;}
.ls6a_c00058{letter-spacing:-1.306800px;}
.ls6b_c00058{letter-spacing:-1.299540px;}
.ls4f_c00058{letter-spacing:-1.132560px;}
.ls58_c00058{letter-spacing:-0.980100px;}
.ls71_c00058{letter-spacing:-0.972840px;}
.ls42_c00058{letter-spacing:-0.892980px;}
.ls8c_c00058{letter-spacing:-0.827640px;}
.ls9f_c00058{letter-spacing:-0.820380px;}
.ls72_c00058{letter-spacing:-0.791340px;}
.ls89_c00058{letter-spacing:-0.776820px;}
.ls51_c00058{letter-spacing:-0.762300px;}
.ls59_c00058{letter-spacing:-0.646140px;}
.ls93_c00058{letter-spacing:-0.638880px;}
.ls7d_c00058{letter-spacing:-0.631620px;}
.ls80_c00058{letter-spacing:-0.624360px;}
.ls7b_c00058{letter-spacing:-0.609840px;}
.ls61_c00058{letter-spacing:-0.588060px;}
.ls7e_c00058{letter-spacing:-0.573540px;}
.ls8f_c00058{letter-spacing:-0.559020px;}
.lsa0_c00058{letter-spacing:-0.544500px;}
.ls53_c00058{letter-spacing:-0.522720px;}
.ls57_c00058{letter-spacing:-0.500940px;}
.ls9e_c00058{letter-spacing:-0.486420px;}
.ls60_c00058{letter-spacing:-0.471900px;}
.ls9d_c00058{letter-spacing:-0.457380px;}
.ls81_c00058{letter-spacing:-0.435600px;}
.ls74_c00058{letter-spacing:-0.428340px;}
.ls76_c00058{letter-spacing:-0.421080px;}
.ls43_c00058{letter-spacing:-0.399300px;}
.ls63_c00058{letter-spacing:-0.392040px;}
.ls5a_c00058{letter-spacing:-0.384780px;}
.ls90_c00058{letter-spacing:-0.370260px;}
.ls48_c00058{letter-spacing:-0.363000px;}
.ls46_c00058{letter-spacing:-0.333960px;}
.ls5f_c00058{letter-spacing:-0.319440px;}
.ls73_c00058{letter-spacing:-0.312180px;}
.ls77_c00058{letter-spacing:-0.304920px;}
.ls52_c00058{letter-spacing:-0.297660px;}
.ls70_c00058{letter-spacing:-0.283140px;}
.ls92_c00058{letter-spacing:-0.275880px;}
.ls55_c00058{letter-spacing:-0.268620px;}
.ls5b_c00058{letter-spacing:-0.261360px;}
.ls85_c00058{letter-spacing:-0.254100px;}
.ls7a_c00058{letter-spacing:-0.239580px;}
.ls50_c00058{letter-spacing:-0.232320px;}
.ls69_c00058{letter-spacing:-0.225060px;}
.ls5d_c00058{letter-spacing:-0.203280px;}
.ls75_c00058{letter-spacing:-0.196020px;}
.ls4e_c00058{letter-spacing:-0.188760px;}
.ls7f_c00058{letter-spacing:-0.181500px;}
.ls98_c00058{letter-spacing:-0.174240px;}
.ls49_c00058{letter-spacing:-0.152460px;}
.ls54_c00058{letter-spacing:-0.145200px;}
.ls65_c00058{letter-spacing:-0.137940px;}
.ls3f_c00058{letter-spacing:-0.130680px;}
.ls96_c00058{letter-spacing:-0.123420px;}
.ls78_c00058{letter-spacing:-0.116160px;}
.ls64_c00058{letter-spacing:-0.108900px;}
.ls4d_c00058{letter-spacing:-0.101640px;}
.ls4b_c00058{letter-spacing:-0.087120px;}
.ls91_c00058{letter-spacing:-0.079860px;}
.ls40_c00058{letter-spacing:-0.072600px;}
.ls8a_c00058{letter-spacing:-0.065340px;}
.ls99_c00058{letter-spacing:-0.058080px;}
.ls79_c00058{letter-spacing:-0.050820px;}
.ls7c_c00058{letter-spacing:-0.043560px;}
.ls5c_c00058{letter-spacing:-0.036300px;}
.ls62_c00058{letter-spacing:-0.029040px;}
.ls9c_c00058{letter-spacing:-0.021780px;}
.ls47_c00058{letter-spacing:-0.014520px;}
.ls87_c00058{letter-spacing:-0.007260px;}
.ls41_c00058{letter-spacing:0.000000px;}
.ls2e_c00058{letter-spacing:0.007260px;}
.ls32_c00058{letter-spacing:0.014520px;}
.ls19_c00058{letter-spacing:0.021780px;}
.ls1b_c00058{letter-spacing:0.029040px;}
.ls2a_c00058{letter-spacing:0.036300px;}
.ls23_c00058{letter-spacing:0.043560px;}
.lse_c00058{letter-spacing:0.050820px;}
.ls15_c00058{letter-spacing:0.058080px;}
.ls1_c00058{letter-spacing:0.072600px;}
.ls21_c00058{letter-spacing:0.079860px;}
.ls12_c00058{letter-spacing:0.087120px;}
.ls17_c00058{letter-spacing:0.101640px;}
.ls1e_c00058{letter-spacing:0.106200px;}
.ls33_c00058{letter-spacing:0.108900px;}
.ls1d_c00058{letter-spacing:0.123420px;}
.ls1a_c00058{letter-spacing:0.137940px;}
.ls1c_c00058{letter-spacing:0.145200px;}
.ls8b_c00058{letter-spacing:0.152460px;}
.lsc_c00058{letter-spacing:0.188760px;}
.ls22_c00058{letter-spacing:0.196020px;}
.ls8_c00058{letter-spacing:0.203280px;}
.ls1f_c00058{letter-spacing:0.210540px;}
.ls16_c00058{letter-spacing:0.217800px;}
.ls4_c00058{letter-spacing:0.225060px;}
.ls38_c00058{letter-spacing:0.232320px;}
.lsf_c00058{letter-spacing:0.254100px;}
.ls2d_c00058{letter-spacing:0.261360px;}
.ls2b_c00058{letter-spacing:0.268620px;}
.ls2_c00058{letter-spacing:0.297660px;}
.ls39_c00058{letter-spacing:0.312180px;}
.ls13_c00058{letter-spacing:0.319440px;}
.ls3b_c00058{letter-spacing:0.326700px;}
.ls11_c00058{letter-spacing:0.348480px;}
.ls36_c00058{letter-spacing:0.355740px;}
.ls5_c00058{letter-spacing:0.363000px;}
.ls27_c00058{letter-spacing:0.370260px;}
.ls24_c00058{letter-spacing:0.384780px;}
.lsb_c00058{letter-spacing:0.421080px;}
.lsa_c00058{letter-spacing:0.428340px;}
.ls6_c00058{letter-spacing:0.450120px;}
.ls14_c00058{letter-spacing:0.457380px;}
.ls94_c00058{letter-spacing:0.537240px;}
.ls31_c00058{letter-spacing:0.544500px;}
.ls34_c00058{letter-spacing:0.559020px;}
.ls2f_c00058{letter-spacing:0.587640px;}
.ls29_c00058{letter-spacing:0.624360px;}
.lsd_c00058{letter-spacing:0.653400px;}
.ls18_c00058{letter-spacing:0.704220px;}
.ls3_c00058{letter-spacing:0.762300px;}
.ls35_c00058{letter-spacing:0.769560px;}
.ls2c_c00058{letter-spacing:0.776820px;}
.ls6f_c00058{letter-spacing:0.785880px;}
.ls9_c00058{letter-spacing:0.820380px;}
.ls56_c00058{letter-spacing:0.827640px;}
.ls3d_c00058{letter-spacing:0.856680px;}
.ls3e_c00058{letter-spacing:0.917280px;}
.ls26_c00058{letter-spacing:0.922020px;}
.ls82_c00058{letter-spacing:0.958320px;}
.ls8e_c00058{letter-spacing:0.977040px;}
.ls3c_c00058{letter-spacing:0.987360px;}
.ls37_c00058{letter-spacing:1.139820px;}
.ls0_c00058{letter-spacing:1.279200px;}
.ls25_c00058{letter-spacing:1.314060px;}
.ls10_c00058{letter-spacing:1.539120px;}
.ls28_c00058{letter-spacing:1.582680px;}
.ls7_c00058{letter-spacing:1.618980px;}
.ls30_c00058{letter-spacing:1.844040px;}
.ls3a_c00058{letter-spacing:2.090880px;}
.ls20_c00058{letter-spacing:2.199780px;}
.lsa1_c00058{letter-spacing:2.252040px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{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__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00058{word-spacing:0.000000px;}
._0_c00058{margin-left:-2.683200px;}
._3_c00058{margin-left:-1.597200px;}
._1_c00058{width:1.481040px;}
._2_c00058{width:2.555520px;}
._5_c00058{width:3.993000px;}
._18_c00058{width:5.194860px;}
._4_c00058{width:6.258120px;}
._6_c00058{width:7.789980px;}
._8_c00058{width:8.987880px;}
._7_c00058{width:10.512480px;}
._9_c00058{width:12.037080px;}
._a_c00058{width:13.249500px;}
._c_c00058{width:14.425620px;}
._b_c00058{width:15.543660px;}
._d_c00058{width:19.013940px;}
._10_c00058{width:20.461620px;}
._11_c00058{width:21.530100px;}
._f_c00058{width:22.742100px;}
._12_c00058{width:23.747460px;}
._e_c00058{width:25.362600px;}
._17_c00058{width:28.662480px;}
._14_c00058{width:31.813320px;}
._16_c00058{width:34.020360px;}
._13_c00058{width:35.399760px;}
._15_c00058{width:36.815460px;}
.fc0_c00058{color:transparent;}
.fs5_c00058{font-size:58.800000px;}
.fs0_c00058{font-size:62.400000px;}
.fs4_c00058{font-size:67.200000px;}
.fs3_c00058{font-size:70.800000px;}
.fs1_c00058{font-size:72.600000px;}
.fs2_c00058{font-size:73.800000px;}
.y0_c00058{bottom:0.000000px;}
.y21_c00058{bottom:73.455015px;}
.y20_c00058{bottom:134.992215px;}
.y1f_c00058{bottom:165.956115px;}
.y1e_c00058{bottom:196.920015px;}
.y1d_c00058{bottom:227.894115px;}
.y1c_c00058{bottom:258.495015px;}
.y1b_c00058{bottom:289.815015px;}
.y1a_c00058{bottom:350.655015px;}
.y19_c00058{bottom:412.575465px;}
.y18_c00058{bottom:444.247215px;}
.y17_c00058{bottom:475.211115px;}
.y16_c00058{bottom:506.175015px;}
.y15_c00058{bottom:506.180715px;}
.y14_c00058{bottom:536.763465px;}
.y13_c00058{bottom:568.090365px;}
.y12_c00058{bottom:599.054265px;}
.y11_c00058{bottom:630.000015px;}
.y10_c00058{bottom:691.575015px;}
.yf_c00058{bottom:784.091115px;}
.yd_c00058{bottom:815.050365px;}
.ye_c00058{bottom:815.055015px;}
.yc_c00058{bottom:846.014265px;}
.ya_c00058{bottom:876.938715px;}
.yb_c00058{bottom:876.960015px;}
.y9_c00058{bottom:907.902615px;}
.y8_c00058{bottom:938.521665px;}
.y7_c00058{bottom:969.104415px;}
.y6_c00058{bottom:1000.086465px;}
.y5_c00058{bottom:1030.687365px;}
.y3_c00058{bottom:1092.955965px;}
.y4_c00058{bottom:1092.960015px;}
.y2_c00058{bottom:1123.575015px;}
.y1_c00058{bottom:1200.600015px;}
.h7_c00058{height:57.708984px;}
.h2_c00058{height:61.242188px;}
.h6_c00058{height:69.451758px;}
.h3_c00058{height:71.252930px;}
.h5_c00058{height:71.268530px;}
.h4_c00058{height:72.430664px;}
.h1_c00058{height:1263.000000px;}
.h0_c00058{height:1263.240015px;}
.w1_c00058{width:892.500000px;}
.w0_c00058{width:892.800000px;}
.x0_c00058{left:0.000000px;}
.x17_c00058{left:119.355000px;}
.x14_c00058{left:120.419850px;}
.x10_c00058{left:121.533900px;}
.xd_c00058{left:123.272400px;}
.x2_c00058{left:124.410000px;}
.x1_c00058{left:125.475000px;}
.xe_c00058{left:155.685000px;}
.x18_c00058{left:172.695000px;}
.x13_c00058{left:174.630000px;}
.xc_c00058{left:176.651550px;}
.xf_c00058{left:177.690000px;}
.x8_c00058{left:241.485000px;}
.x9_c00058{left:265.470000px;}
.xa_c00058{left:324.450000px;}
.xb_c00058{left:353.850000px;}
.x19_c00058{left:426.390000px;}
.x3_c00058{left:449.475000px;}
.x4_c00058{left:471.165000px;}
.x5_c00058{left:499.575000px;}
.x15_c00058{left:575.115000px;}
.x16_c00058{left:597.420000px;}
.x11_c00058{left:656.475000px;}
.x6_c00058{left:671.925000px;}
.x12_c00058{left:681.330000px;}
.x7_c00058{left:692.130000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls45_c00058{letter-spacing:-2.296000pt;}
.ls44_c00058{letter-spacing:-2.258667pt;}
.ls86_c00058{letter-spacing:-2.232853pt;}
.ls67_c00058{letter-spacing:-2.142507pt;}
.ls4c_c00058{letter-spacing:-2.013440pt;}
.ls8d_c00058{letter-spacing:-1.994080pt;}
.ls66_c00058{letter-spacing:-1.961813pt;}
.ls97_c00058{letter-spacing:-1.774667pt;}
.ls88_c00058{letter-spacing:-1.671413pt;}
.ls6d_c00058{letter-spacing:-1.632693pt;}
.ls95_c00058{letter-spacing:-1.600427pt;}
.ls6e_c00058{letter-spacing:-1.568160pt;}
.ls9b_c00058{letter-spacing:-1.510080pt;}
.ls83_c00058{letter-spacing:-1.432640pt;}
.ls4a_c00058{letter-spacing:-1.393920pt;}
.ls68_c00058{letter-spacing:-1.374560pt;}
.ls6c_c00058{letter-spacing:-1.329387pt;}
.ls84_c00058{letter-spacing:-1.316480pt;}
.ls5e_c00058{letter-spacing:-1.290667pt;}
.ls9a_c00058{letter-spacing:-1.213227pt;}
.ls6a_c00058{letter-spacing:-1.161600pt;}
.ls6b_c00058{letter-spacing:-1.155147pt;}
.ls4f_c00058{letter-spacing:-1.006720pt;}
.ls58_c00058{letter-spacing:-0.871200pt;}
.ls71_c00058{letter-spacing:-0.864747pt;}
.ls42_c00058{letter-spacing:-0.793760pt;}
.ls8c_c00058{letter-spacing:-0.735680pt;}
.ls9f_c00058{letter-spacing:-0.729227pt;}
.ls72_c00058{letter-spacing:-0.703413pt;}
.ls89_c00058{letter-spacing:-0.690507pt;}
.ls51_c00058{letter-spacing:-0.677600pt;}
.ls59_c00058{letter-spacing:-0.574347pt;}
.ls93_c00058{letter-spacing:-0.567893pt;}
.ls7d_c00058{letter-spacing:-0.561440pt;}
.ls80_c00058{letter-spacing:-0.554987pt;}
.ls7b_c00058{letter-spacing:-0.542080pt;}
.ls61_c00058{letter-spacing:-0.522720pt;}
.ls7e_c00058{letter-spacing:-0.509813pt;}
.ls8f_c00058{letter-spacing:-0.496907pt;}
.lsa0_c00058{letter-spacing:-0.484000pt;}
.ls53_c00058{letter-spacing:-0.464640pt;}
.ls57_c00058{letter-spacing:-0.445280pt;}
.ls9e_c00058{letter-spacing:-0.432373pt;}
.ls60_c00058{letter-spacing:-0.419467pt;}
.ls9d_c00058{letter-spacing:-0.406560pt;}
.ls81_c00058{letter-spacing:-0.387200pt;}
.ls74_c00058{letter-spacing:-0.380747pt;}
.ls76_c00058{letter-spacing:-0.374293pt;}
.ls43_c00058{letter-spacing:-0.354933pt;}
.ls63_c00058{letter-spacing:-0.348480pt;}
.ls5a_c00058{letter-spacing:-0.342027pt;}
.ls90_c00058{letter-spacing:-0.329120pt;}
.ls48_c00058{letter-spacing:-0.322667pt;}
.ls46_c00058{letter-spacing:-0.296853pt;}
.ls5f_c00058{letter-spacing:-0.283947pt;}
.ls73_c00058{letter-spacing:-0.277493pt;}
.ls77_c00058{letter-spacing:-0.271040pt;}
.ls52_c00058{letter-spacing:-0.264587pt;}
.ls70_c00058{letter-spacing:-0.251680pt;}
.ls92_c00058{letter-spacing:-0.245227pt;}
.ls55_c00058{letter-spacing:-0.238773pt;}
.ls5b_c00058{letter-spacing:-0.232320pt;}
.ls85_c00058{letter-spacing:-0.225867pt;}
.ls7a_c00058{letter-spacing:-0.212960pt;}
.ls50_c00058{letter-spacing:-0.206507pt;}
.ls69_c00058{letter-spacing:-0.200053pt;}
.ls5d_c00058{letter-spacing:-0.180693pt;}
.ls75_c00058{letter-spacing:-0.174240pt;}
.ls4e_c00058{letter-spacing:-0.167787pt;}
.ls7f_c00058{letter-spacing:-0.161333pt;}
.ls98_c00058{letter-spacing:-0.154880pt;}
.ls49_c00058{letter-spacing:-0.135520pt;}
.ls54_c00058{letter-spacing:-0.129067pt;}
.ls65_c00058{letter-spacing:-0.122613pt;}
.ls3f_c00058{letter-spacing:-0.116160pt;}
.ls96_c00058{letter-spacing:-0.109707pt;}
.ls78_c00058{letter-spacing:-0.103253pt;}
.ls64_c00058{letter-spacing:-0.096800pt;}
.ls4d_c00058{letter-spacing:-0.090347pt;}
.ls4b_c00058{letter-spacing:-0.077440pt;}
.ls91_c00058{letter-spacing:-0.070987pt;}
.ls40_c00058{letter-spacing:-0.064533pt;}
.ls8a_c00058{letter-spacing:-0.058080pt;}
.ls99_c00058{letter-spacing:-0.051627pt;}
.ls79_c00058{letter-spacing:-0.045173pt;}
.ls7c_c00058{letter-spacing:-0.038720pt;}
.ls5c_c00058{letter-spacing:-0.032267pt;}
.ls62_c00058{letter-spacing:-0.025813pt;}
.ls9c_c00058{letter-spacing:-0.019360pt;}
.ls47_c00058{letter-spacing:-0.012907pt;}
.ls87_c00058{letter-spacing:-0.006453pt;}
.ls41_c00058{letter-spacing:0.000000pt;}
.ls2e_c00058{letter-spacing:0.006453pt;}
.ls32_c00058{letter-spacing:0.012907pt;}
.ls19_c00058{letter-spacing:0.019360pt;}
.ls1b_c00058{letter-spacing:0.025813pt;}
.ls2a_c00058{letter-spacing:0.032267pt;}
.ls23_c00058{letter-spacing:0.038720pt;}
.lse_c00058{letter-spacing:0.045173pt;}
.ls15_c00058{letter-spacing:0.051627pt;}
.ls1_c00058{letter-spacing:0.064533pt;}
.ls21_c00058{letter-spacing:0.070987pt;}
.ls12_c00058{letter-spacing:0.077440pt;}
.ls17_c00058{letter-spacing:0.090347pt;}
.ls1e_c00058{letter-spacing:0.094400pt;}
.ls33_c00058{letter-spacing:0.096800pt;}
.ls1d_c00058{letter-spacing:0.109707pt;}
.ls1a_c00058{letter-spacing:0.122613pt;}
.ls1c_c00058{letter-spacing:0.129067pt;}
.ls8b_c00058{letter-spacing:0.135520pt;}
.lsc_c00058{letter-spacing:0.167787pt;}
.ls22_c00058{letter-spacing:0.174240pt;}
.ls8_c00058{letter-spacing:0.180693pt;}
.ls1f_c00058{letter-spacing:0.187147pt;}
.ls16_c00058{letter-spacing:0.193600pt;}
.ls4_c00058{letter-spacing:0.200053pt;}
.ls38_c00058{letter-spacing:0.206507pt;}
.lsf_c00058{letter-spacing:0.225867pt;}
.ls2d_c00058{letter-spacing:0.232320pt;}
.ls2b_c00058{letter-spacing:0.238773pt;}
.ls2_c00058{letter-spacing:0.264587pt;}
.ls39_c00058{letter-spacing:0.277493pt;}
.ls13_c00058{letter-spacing:0.283947pt;}
.ls3b_c00058{letter-spacing:0.290400pt;}
.ls11_c00058{letter-spacing:0.309760pt;}
.ls36_c00058{letter-spacing:0.316213pt;}
.ls5_c00058{letter-spacing:0.322667pt;}
.ls27_c00058{letter-spacing:0.329120pt;}
.ls24_c00058{letter-spacing:0.342027pt;}
.lsb_c00058{letter-spacing:0.374293pt;}
.lsa_c00058{letter-spacing:0.380747pt;}
.ls6_c00058{letter-spacing:0.400107pt;}
.ls14_c00058{letter-spacing:0.406560pt;}
.ls94_c00058{letter-spacing:0.477547pt;}
.ls31_c00058{letter-spacing:0.484000pt;}
.ls34_c00058{letter-spacing:0.496907pt;}
.ls2f_c00058{letter-spacing:0.522347pt;}
.ls29_c00058{letter-spacing:0.554987pt;}
.lsd_c00058{letter-spacing:0.580800pt;}
.ls18_c00058{letter-spacing:0.625973pt;}
.ls3_c00058{letter-spacing:0.677600pt;}
.ls35_c00058{letter-spacing:0.684053pt;}
.ls2c_c00058{letter-spacing:0.690507pt;}
.ls6f_c00058{letter-spacing:0.698560pt;}
.ls9_c00058{letter-spacing:0.729227pt;}
.ls56_c00058{letter-spacing:0.735680pt;}
.ls3d_c00058{letter-spacing:0.761493pt;}
.ls3e_c00058{letter-spacing:0.815360pt;}
.ls26_c00058{letter-spacing:0.819573pt;}
.ls82_c00058{letter-spacing:0.851840pt;}
.ls8e_c00058{letter-spacing:0.868480pt;}
.ls3c_c00058{letter-spacing:0.877653pt;}
.ls37_c00058{letter-spacing:1.013173pt;}
.ls0_c00058{letter-spacing:1.137067pt;}
.ls25_c00058{letter-spacing:1.168053pt;}
.ls10_c00058{letter-spacing:1.368107pt;}
.ls28_c00058{letter-spacing:1.406827pt;}
.ls7_c00058{letter-spacing:1.439093pt;}
.ls30_c00058{letter-spacing:1.639147pt;}
.ls3a_c00058{letter-spacing:1.858560pt;}
.ls20_c00058{letter-spacing:1.955360pt;}
.lsa1_c00058{letter-spacing:2.001813pt;}
.ws0_c00058{word-spacing:0.000000pt;}
._0_c00058{margin-left:-2.385067pt;}
._3_c00058{margin-left:-1.419733pt;}
._1_c00058{width:1.316480pt;}
._2_c00058{width:2.271573pt;}
._5_c00058{width:3.549333pt;}
._18_c00058{width:4.617653pt;}
._4_c00058{width:5.562773pt;}
._6_c00058{width:6.924427pt;}
._8_c00058{width:7.989227pt;}
._7_c00058{width:9.344427pt;}
._9_c00058{width:10.699627pt;}
._a_c00058{width:11.777333pt;}
._c_c00058{width:12.822773pt;}
._b_c00058{width:13.816587pt;}
._d_c00058{width:16.901280pt;}
._10_c00058{width:18.188107pt;}
._11_c00058{width:19.137867pt;}
._f_c00058{width:20.215200pt;}
._12_c00058{width:21.108853pt;}
._e_c00058{width:22.544533pt;}
._17_c00058{width:25.477760pt;}
._14_c00058{width:28.278507pt;}
._16_c00058{width:30.240320pt;}
._13_c00058{width:31.466453pt;}
._15_c00058{width:32.724853pt;}
.fs5_c00058{font-size:52.266667pt;}
.fs0_c00058{font-size:55.466667pt;}
.fs4_c00058{font-size:59.733333pt;}
.fs3_c00058{font-size:62.933333pt;}
.fs1_c00058{font-size:64.533333pt;}
.fs2_c00058{font-size:65.600000pt;}
.y0_c00058{bottom:0.000000pt;}
.y21_c00058{bottom:65.293347pt;}
.y20_c00058{bottom:119.993080pt;}
.y1f_c00058{bottom:147.516547pt;}
.y1e_c00058{bottom:175.040013pt;}
.y1d_c00058{bottom:202.572547pt;}
.y1c_c00058{bottom:229.773347pt;}
.y1b_c00058{bottom:257.613347pt;}
.y1a_c00058{bottom:311.693347pt;}
.y19_c00058{bottom:366.733747pt;}
.y18_c00058{bottom:394.886413pt;}
.y17_c00058{bottom:422.409880pt;}
.y16_c00058{bottom:449.933347pt;}
.y15_c00058{bottom:449.938413pt;}
.y14_c00058{bottom:477.123080pt;}
.y13_c00058{bottom:504.969213pt;}
.y12_c00058{bottom:532.492680pt;}
.y11_c00058{bottom:560.000013pt;}
.y10_c00058{bottom:614.733347pt;}
.yf_c00058{bottom:696.969880pt;}
.yd_c00058{bottom:724.489213pt;}
.ye_c00058{bottom:724.493347pt;}
.yc_c00058{bottom:752.012680pt;}
.ya_c00058{bottom:779.501080pt;}
.yb_c00058{bottom:779.520013pt;}
.y9_c00058{bottom:807.024547pt;}
.y8_c00058{bottom:834.241480pt;}
.y7_c00058{bottom:861.426147pt;}
.y6_c00058{bottom:888.965747pt;}
.y5_c00058{bottom:916.166547pt;}
.y3_c00058{bottom:971.516413pt;}
.y4_c00058{bottom:971.520013pt;}
.y2_c00058{bottom:998.733347pt;}
.y1_c00058{bottom:1067.200013pt;}
.h7_c00058{height:51.296875pt;}
.h2_c00058{height:54.437500pt;}
.h6_c00058{height:61.734896pt;}
.h3_c00058{height:63.335938pt;}
.h5_c00058{height:63.349804pt;}
.h4_c00058{height:64.382813pt;}
.h1_c00058{height:1122.666667pt;}
.h0_c00058{height:1122.880013pt;}
.w1_c00058{width:793.333333pt;}
.w0_c00058{width:793.600000pt;}
.x0_c00058{left:0.000000pt;}
.x17_c00058{left:106.093333pt;}
.x14_c00058{left:107.039867pt;}
.x10_c00058{left:108.030133pt;}
.xd_c00058{left:109.575467pt;}
.x2_c00058{left:110.586667pt;}
.x1_c00058{left:111.533333pt;}
.xe_c00058{left:138.386667pt;}
.x18_c00058{left:153.506667pt;}
.x13_c00058{left:155.226667pt;}
.xc_c00058{left:157.023600pt;}
.xf_c00058{left:157.946667pt;}
.x8_c00058{left:214.653333pt;}
.x9_c00058{left:235.973333pt;}
.xa_c00058{left:288.400000pt;}
.xb_c00058{left:314.533333pt;}
.x19_c00058{left:379.013333pt;}
.x3_c00058{left:399.533333pt;}
.x4_c00058{left:418.813333pt;}
.x5_c00058{left:444.066667pt;}
.x15_c00058{left:511.213333pt;}
.x16_c00058{left:531.040000pt;}
.x11_c00058{left:583.533333pt;}
.x6_c00058{left:597.266667pt;}
.x12_c00058{left:605.626667pt;}
.x7_c00058{left:615.226667pt;}
}





/* 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_c00059 {
    display:none;
  }
  .loading-indicator_c00059.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00059 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_c00059 { 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_c00059" -> "#page-container .classname_c00059")
 */
.pf_c00059 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00059 { /* 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_c00059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00059 { /* 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_c00059 { /* 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_c00059 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00059 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00059 {overflow:visible;}
  }
}
.c_c00059 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00059 { /* 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_c00059:after { /* webkit #35443 */
  content: '';
}
.t_c00059:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00059 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 */
}
.__c00059 { /* 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_c00059 { /* info for Javascript */
  display:none;
}
.l_c00059 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00059 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00059 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00059: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_c00059 {
    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_c00059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00059.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_c00059 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00059;src:url('chunks/assets/font_4d0ff5ab645371c6f42160f5.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.311035;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_c00059;src:url('chunks/assets/font_02eddcd825f1e781ff567ec9.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:0.666000;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_c00059;src:url('chunks/assets/font_2190651b9cedbebfe320dd69.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.284668;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;}
.m5_c00059{transform:matrix(0.212784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212784,0.000000,0.000000,0.250000,0,0);}
.m4_c00059{transform:matrix(0.227386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227386,0.000000,0.000000,0.250000,0,0);}
.m3_c00059{transform:matrix(0.246119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246119,0.000000,0.000000,0.250000,0,0);}
.m0_c00059{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);}
.m2_c00059{transform:matrix(0.490708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490708,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls1d_c00059{letter-spacing:-2.247000px;}
.ls26_c00059{letter-spacing:-2.163000px;}
.ls1a_c00059{letter-spacing:-2.022300px;}
.ls22_c00059{letter-spacing:-1.964520px;}
.ls21_c00059{letter-spacing:-1.855380px;}
.ls18_c00059{letter-spacing:-1.836120px;}
.ls24_c00059{letter-spacing:-1.816860px;}
.ls23_c00059{letter-spacing:-1.463760px;}
.ls19_c00059{letter-spacing:-0.982260px;}
.ls1b_c00059{letter-spacing:-0.539280px;}
.ls20_c00059{letter-spacing:-0.051360px;}
.ls1f_c00059{letter-spacing:-0.032100px;}
.ls16_c00059{letter-spacing:0.000000px;}
.ls1e_c00059{letter-spacing:0.231120px;}
.lsb_c00059{letter-spacing:0.282480px;}
.ls6_c00059{letter-spacing:0.288900px;}
.ls8_c00059{letter-spacing:0.301740px;}
.ls1c_c00059{letter-spacing:0.340260px;}
.ls5_c00059{letter-spacing:0.372360px;}
.lsd_c00059{letter-spacing:0.378780px;}
.ls12_c00059{letter-spacing:0.391620px;}
.lse_c00059{letter-spacing:0.417300px;}
.ls25_c00059{letter-spacing:0.442980px;}
.lsf_c00059{letter-spacing:0.494340px;}
.ls4_c00059{letter-spacing:0.520020px;}
.ls10_c00059{letter-spacing:0.577800px;}
.ls9_c00059{letter-spacing:0.616320px;}
.ls3_c00059{letter-spacing:0.629160px;}
.ls11_c00059{letter-spacing:0.725460px;}
.lsc_c00059{letter-spacing:0.751140px;}
.ls13_c00059{letter-spacing:0.763980px;}
.ls7_c00059{letter-spacing:0.834600px;}
.ls2_c00059{letter-spacing:0.930900px;}
.ls14_c00059{letter-spacing:1.052880px;}
.lsa_c00059{letter-spacing:1.194120px;}
.ls15_c00059{letter-spacing:1.356060px;}
.ls1_c00059{letter-spacing:1.566480px;}
.ls0_c00059{letter-spacing:2.170860px;}
.ls17_c00059{letter-spacing:3.720000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{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__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00059{word-spacing:0.000000px;}
._0_c00059{margin-left:-3.522960px;}
._9_c00059{margin-left:-1.694880px;}
._7_c00059{width:1.688460px;}
._8_c00059{width:5.501940px;}
._5_c00059{width:8.166240px;}
._3_c00059{width:10.625100px;}
._1_c00059{width:12.210840px;}
._4_c00059{width:14.502780px;}
._6_c00059{width:15.806040px;}
._2_c00059{width:17.744880px;}
.fc0_c00059{color:transparent;}
.fs1_c00059{font-size:24.480000px;}
.fs0_c00059{font-size:58.200000px;}
.fs5_c00059{font-size:61.800000px;}
.fs4_c00059{font-size:64.200000px;}
.fs3_c00059{font-size:67.800000px;}
.fs2_c00059{font-size:74.400000px;}
.y0_c00059{bottom:0.000000px;}
.y7_c00059{bottom:72.015015px;}
.y6_c00059{bottom:375.860715px;}
.y4_c00059{bottom:394.571565px;}
.y5_c00059{bottom:394.575015px;}
.y3_c00059{bottom:413.655015px;}
.y2_c00059{bottom:941.040015px;}
.y1_c00059{bottom:1197.360015px;}
.h3_c00059{height:16.303680px;}
.h2_c00059{height:58.654687px;}
.h7_c00059{height:60.653320px;}
.h6_c00059{height:63.008789px;}
.h5_c00059{height:66.541992px;}
.h4_c00059{height:73.019531px;}
.h1_c00059{height:1263.000000px;}
.h0_c00059{height:1263.240015px;}
.w1_c00059{width:892.500000px;}
.w0_c00059{width:892.800015px;}
.x0_c00059{left:0.000000px;}
.x1_c00059{left:129.435015px;}
.x5_c00059{left:362.370015px;}
.x6_c00059{left:379.290015px;}
.x9_c00059{left:433.620015px;}
.x7_c00059{left:451.635015px;}
.x8_c00059{left:467.100015px;}
.x2_c00059{left:474.135015px;}
.x3_c00059{left:512.025015px;}
.x4_c00059{left:550.635015px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls1d_c00059{letter-spacing:-1.997333pt;}
.ls26_c00059{letter-spacing:-1.922667pt;}
.ls1a_c00059{letter-spacing:-1.797600pt;}
.ls22_c00059{letter-spacing:-1.746240pt;}
.ls21_c00059{letter-spacing:-1.649227pt;}
.ls18_c00059{letter-spacing:-1.632107pt;}
.ls24_c00059{letter-spacing:-1.614987pt;}
.ls23_c00059{letter-spacing:-1.301120pt;}
.ls19_c00059{letter-spacing:-0.873120pt;}
.ls1b_c00059{letter-spacing:-0.479360pt;}
.ls20_c00059{letter-spacing:-0.045653pt;}
.ls1f_c00059{letter-spacing:-0.028533pt;}
.ls16_c00059{letter-spacing:0.000000pt;}
.ls1e_c00059{letter-spacing:0.205440pt;}
.lsb_c00059{letter-spacing:0.251093pt;}
.ls6_c00059{letter-spacing:0.256800pt;}
.ls8_c00059{letter-spacing:0.268213pt;}
.ls1c_c00059{letter-spacing:0.302453pt;}
.ls5_c00059{letter-spacing:0.330987pt;}
.lsd_c00059{letter-spacing:0.336693pt;}
.ls12_c00059{letter-spacing:0.348107pt;}
.lse_c00059{letter-spacing:0.370933pt;}
.ls25_c00059{letter-spacing:0.393760pt;}
.lsf_c00059{letter-spacing:0.439413pt;}
.ls4_c00059{letter-spacing:0.462240pt;}
.ls10_c00059{letter-spacing:0.513600pt;}
.ls9_c00059{letter-spacing:0.547840pt;}
.ls3_c00059{letter-spacing:0.559253pt;}
.ls11_c00059{letter-spacing:0.644853pt;}
.lsc_c00059{letter-spacing:0.667680pt;}
.ls13_c00059{letter-spacing:0.679093pt;}
.ls7_c00059{letter-spacing:0.741867pt;}
.ls2_c00059{letter-spacing:0.827467pt;}
.ls14_c00059{letter-spacing:0.935893pt;}
.lsa_c00059{letter-spacing:1.061440pt;}
.ls15_c00059{letter-spacing:1.205387pt;}
.ls1_c00059{letter-spacing:1.392427pt;}
.ls0_c00059{letter-spacing:1.929653pt;}
.ls17_c00059{letter-spacing:3.306667pt;}
.ws0_c00059{word-spacing:0.000000pt;}
._0_c00059{margin-left:-3.131520pt;}
._9_c00059{margin-left:-1.506560pt;}
._7_c00059{width:1.500853pt;}
._8_c00059{width:4.890613pt;}
._5_c00059{width:7.258880pt;}
._3_c00059{width:9.444533pt;}
._1_c00059{width:10.854080pt;}
._4_c00059{width:12.891360pt;}
._6_c00059{width:14.049813pt;}
._2_c00059{width:15.773227pt;}
.fs1_c00059{font-size:21.760000pt;}
.fs0_c00059{font-size:51.733333pt;}
.fs5_c00059{font-size:54.933333pt;}
.fs4_c00059{font-size:57.066667pt;}
.fs3_c00059{font-size:60.266667pt;}
.fs2_c00059{font-size:66.133333pt;}
.y0_c00059{bottom:0.000000pt;}
.y7_c00059{bottom:64.013347pt;}
.y6_c00059{bottom:334.098413pt;}
.y4_c00059{bottom:350.730280pt;}
.y5_c00059{bottom:350.733347pt;}
.y3_c00059{bottom:367.693347pt;}
.y2_c00059{bottom:836.480013pt;}
.y1_c00059{bottom:1064.320013pt;}
.h3_c00059{height:14.492160pt;}
.h2_c00059{height:52.137500pt;}
.h7_c00059{height:53.914062pt;}
.h6_c00059{height:56.007812pt;}
.h5_c00059{height:59.148438pt;}
.h4_c00059{height:64.906250pt;}
.h1_c00059{height:1122.666667pt;}
.h0_c00059{height:1122.880013pt;}
.w1_c00059{width:793.333333pt;}
.w0_c00059{width:793.600013pt;}
.x0_c00059{left:0.000000pt;}
.x1_c00059{left:115.053347pt;}
.x5_c00059{left:322.106680pt;}
.x6_c00059{left:337.146680pt;}
.x9_c00059{left:385.440013pt;}
.x7_c00059{left:401.453347pt;}
.x8_c00059{left:415.200013pt;}
.x2_c00059{left:421.453347pt;}
.x3_c00059{left:455.133347pt;}
.x4_c00059{left:489.453347pt;}
}





/* 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_c00060 {
    display:none;
  }
  .loading-indicator_c00060.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00060 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_c00060 { 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_c00060" -> "#page-container .classname_c00060")
 */
.pf_c00060 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00060 { /* 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_c00060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00060 { /* 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_c00060 { /* 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_c00060 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00060 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00060 {overflow:visible;}
  }
}
.c_c00060 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00060 { /* 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_c00060:after { /* webkit #35443 */
  content: '';
}
.t_c00060:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00060 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 */
}
.__c00060 { /* 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_c00060 { /* info for Javascript */
  display:none;
}
.l_c00060 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00060 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00060 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00060: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_c00060 {
    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_c00060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00060.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_c00060 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00060;src:url('chunks/assets/font_6759231c53fd048cb423bdca.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.284668;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_c00060;src:url('chunks/assets/font_c1277e2d4647d3d2aa3263fa.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.284180;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_c00060;src:url('chunks/assets/font_3ddd7c9b2b17f374fb2fd00f.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;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:ff4_c00060;src:url('chunks/assets/font_79c9873af480a2b169ae99ee.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:0.666000;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;}
.ma_c00060{transform:matrix(0.122533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122533,0.000000,0.000000,0.250000,0,0);}
.m7_c00060{transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);}
.mc_c00060{transform:matrix(0.236658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236658,0.000000,0.000000,0.250000,0,0);}
.m8_c00060{transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);}
.mb_c00060{transform:matrix(0.246186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246186,0.000000,0.000000,0.250000,0,0);}
.m9_c00060{transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);}
.m3_c00060{transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);}
.m5_c00060{transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);}
.m2_c00060{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m4_c00060{transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{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);}
.m6_c00060{transform:matrix(0.256316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256316,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls85_c00060{letter-spacing:-2.982000px;}
.ls3b_c00060{letter-spacing:-2.562000px;}
.ls31_c00060{letter-spacing:-2.518080px;}
.ls5d_c00060{letter-spacing:-2.400960px;}
.ls6e_c00060{letter-spacing:-2.298480px;}
.lsaa_c00060{letter-spacing:-2.269200px;}
.ls43_c00060{letter-spacing:-2.130120px;}
.ls38_c00060{letter-spacing:-2.042280px;}
.ls8e_c00060{letter-spacing:-1.932480px;}
.ls71_c00060{letter-spacing:-1.881240px;}
.ls75_c00060{letter-spacing:-1.873920px;}
.lsa3_c00060{letter-spacing:-1.859280px;}
.lsa9_c00060{letter-spacing:-1.800720px;}
.ls5e_c00060{letter-spacing:-1.661640px;}
.lsa2_c00060{letter-spacing:-1.632360px;}
.lsa1_c00060{letter-spacing:-1.544520px;}
.lsaf_c00060{letter-spacing:-1.493280px;}
.ls46_c00060{letter-spacing:-1.456680px;}
.ls90_c00060{letter-spacing:-1.449360px;}
.ls6a_c00060{letter-spacing:-1.405440px;}
.ls41_c00060{letter-spacing:-1.339560px;}
.ls68_c00060{letter-spacing:-1.317600px;}
.ls7d_c00060{letter-spacing:-1.302960px;}
.ls80_c00060{letter-spacing:-1.295640px;}
.ls96_c00060{letter-spacing:-1.288320px;}
.ls4c_c00060{letter-spacing:-1.251720px;}
.ls7a_c00060{letter-spacing:-1.222440px;}
.lsb3_c00060{letter-spacing:-1.205820px;}
.ls39_c00060{letter-spacing:-1.185840px;}
.ls7b_c00060{letter-spacing:-1.178520px;}
.ls34_c00060{letter-spacing:-1.156560px;}
.lsa8_c00060{letter-spacing:-1.127280px;}
.lsa0_c00060{letter-spacing:-1.119960px;}
.ls73_c00060{letter-spacing:-1.112640px;}
.ls3d_c00060{letter-spacing:-1.090680px;}
.ls44_c00060{letter-spacing:-1.076040px;}
.ls9f_c00060{letter-spacing:-0.988200px;}
.ls8b_c00060{letter-spacing:-0.958920px;}
.ls56_c00060{letter-spacing:-0.951600px;}
.ls72_c00060{letter-spacing:-0.915000px;}
.ls3c_c00060{letter-spacing:-0.907680px;}
.lsac_c00060{letter-spacing:-0.900360px;}
.ls53_c00060{letter-spacing:-0.885720px;}
.ls5a_c00060{letter-spacing:-0.856440px;}
.ls57_c00060{letter-spacing:-0.849120px;}
.ls77_c00060{letter-spacing:-0.834480px;}
.lsab_c00060{letter-spacing:-0.827160px;}
.ls8f_c00060{letter-spacing:-0.797880px;}
.ls69_c00060{letter-spacing:-0.790560px;}
.ls48_c00060{letter-spacing:-0.761280px;}
.ls74_c00060{letter-spacing:-0.753960px;}
.ls32_c00060{letter-spacing:-0.739320px;}
.ls97_c00060{letter-spacing:-0.732000px;}
.lsb2_c00060{letter-spacing:-0.710040px;}
.ls4f_c00060{letter-spacing:-0.695400px;}
.lsa4_c00060{letter-spacing:-0.688080px;}
.lsad_c00060{letter-spacing:-0.666120px;}
.ls9a_c00060{letter-spacing:-0.658800px;}
.ls9e_c00060{letter-spacing:-0.644160px;}
.ls91_c00060{letter-spacing:-0.636840px;}
.ls55_c00060{letter-spacing:-0.629520px;}
.ls9d_c00060{letter-spacing:-0.622200px;}
.ls36_c00060{letter-spacing:-0.607560px;}
.ls2d_c00060{letter-spacing:-0.600240px;}
.ls86_c00060{letter-spacing:-0.592920px;}
.ls2f_c00060{letter-spacing:-0.585600px;}
.ls83_c00060{letter-spacing:-0.578280px;}
.ls54_c00060{letter-spacing:-0.570960px;}
.ls66_c00060{letter-spacing:-0.563640px;}
.ls5c_c00060{letter-spacing:-0.556320px;}
.ls37_c00060{letter-spacing:-0.549000px;}
.ls5b_c00060{letter-spacing:-0.534360px;}
.ls79_c00060{letter-spacing:-0.527040px;}
.ls47_c00060{letter-spacing:-0.475800px;}
.ls6b_c00060{letter-spacing:-0.453840px;}
.ls99_c00060{letter-spacing:-0.446520px;}
.ls8c_c00060{letter-spacing:-0.439200px;}
.ls58_c00060{letter-spacing:-0.431880px;}
.ls4d_c00060{letter-spacing:-0.424560px;}
.ls2e_c00060{letter-spacing:-0.417240px;}
.ls4e_c00060{letter-spacing:-0.409920px;}
.ls89_c00060{letter-spacing:-0.402600px;}
.ls67_c00060{letter-spacing:-0.395280px;}
.ls62_c00060{letter-spacing:-0.380640px;}
.ls6f_c00060{letter-spacing:-0.373320px;}
.ls5f_c00060{letter-spacing:-0.366000px;}
.ls42_c00060{letter-spacing:-0.358680px;}
.ls95_c00060{letter-spacing:-0.351360px;}
.ls82_c00060{letter-spacing:-0.344040px;}
.ls64_c00060{letter-spacing:-0.336720px;}
.ls30_c00060{letter-spacing:-0.329400px;}
.ls40_c00060{letter-spacing:-0.322080px;}
.ls3e_c00060{letter-spacing:-0.314760px;}
.ls88_c00060{letter-spacing:-0.300120px;}
.ls3f_c00060{letter-spacing:-0.292800px;}
.ls70_c00060{letter-spacing:-0.285480px;}
.ls6d_c00060{letter-spacing:-0.278160px;}
.ls35_c00060{letter-spacing:-0.263520px;}
.ls9b_c00060{letter-spacing:-0.256200px;}
.lsa5_c00060{letter-spacing:-0.247800px;}
.ls7f_c00060{letter-spacing:-0.241560px;}
.ls60_c00060{letter-spacing:-0.234240px;}
.ls94_c00060{letter-spacing:-0.219600px;}
.lsae_c00060{letter-spacing:-0.212280px;}
.ls9c_c00060{letter-spacing:-0.207000px;}
.ls49_c00060{letter-spacing:-0.204960px;}
.ls59_c00060{letter-spacing:-0.197640px;}
.ls78_c00060{letter-spacing:-0.190320px;}
.ls51_c00060{letter-spacing:-0.183000px;}
.ls4a_c00060{letter-spacing:-0.175680px;}
.ls92_c00060{letter-spacing:-0.168360px;}
.ls98_c00060{letter-spacing:-0.161040px;}
.ls50_c00060{letter-spacing:-0.153720px;}
.ls93_c00060{letter-spacing:-0.146400px;}
.ls4b_c00060{letter-spacing:-0.139080px;}
.ls63_c00060{letter-spacing:-0.131760px;}
.ls87_c00060{letter-spacing:-0.124440px;}
.ls8a_c00060{letter-spacing:-0.117120px;}
.ls6c_c00060{letter-spacing:-0.109800px;}
.ls52_c00060{letter-spacing:-0.102480px;}
.ls65_c00060{letter-spacing:-0.095160px;}
.ls7c_c00060{letter-spacing:-0.087840px;}
.lsb1_c00060{letter-spacing:-0.073200px;}
.ls7e_c00060{letter-spacing:-0.065880px;}
.ls45_c00060{letter-spacing:-0.058560px;}
.ls3a_c00060{letter-spacing:-0.043920px;}
.ls76_c00060{letter-spacing:-0.021960px;}
.ls8d_c00060{letter-spacing:-0.007320px;}
.lsa6_c00060{letter-spacing:-0.007080px;}
.ls33_c00060{letter-spacing:0.000000px;}
.ls19_c00060{letter-spacing:0.021960px;}
.ls29_c00060{letter-spacing:0.029280px;}
.lsf_c00060{letter-spacing:0.036600px;}
.ls1_c00060{letter-spacing:0.043920px;}
.ls26_c00060{letter-spacing:0.051240px;}
.ls18_c00060{letter-spacing:0.087840px;}
.ls3_c00060{letter-spacing:0.095160px;}
.ls21_c00060{letter-spacing:0.102480px;}
.lsd_c00060{letter-spacing:0.117120px;}
.lse_c00060{letter-spacing:0.124440px;}
.ls5_c00060{letter-spacing:0.139080px;}
.ls22_c00060{letter-spacing:0.146400px;}
.ls2_c00060{letter-spacing:0.161040px;}
.ls1c_c00060{letter-spacing:0.168360px;}
.ls1f_c00060{letter-spacing:0.175680px;}
.ls27_c00060{letter-spacing:0.183000px;}
.ls61_c00060{letter-spacing:0.190320px;}
.ls7_c00060{letter-spacing:0.197640px;}
.ls2b_c00060{letter-spacing:0.234240px;}
.ls1a_c00060{letter-spacing:0.248880px;}
.ls17_c00060{letter-spacing:0.256200px;}
.ls11_c00060{letter-spacing:0.263520px;}
.ls15_c00060{letter-spacing:0.329400px;}
.ls1e_c00060{letter-spacing:0.373320px;}
.ls1b_c00060{letter-spacing:0.395280px;}
.lsb_c00060{letter-spacing:0.483120px;}
.ls2a_c00060{letter-spacing:0.490440px;}
.ls6_c00060{letter-spacing:0.505080px;}
.ls24_c00060{letter-spacing:0.516840px;}
.ls28_c00060{letter-spacing:0.519720px;}
.ls14_c00060{letter-spacing:0.545160px;}
.ls4_c00060{letter-spacing:0.585600px;}
.ls23_c00060{letter-spacing:0.821280px;}
.ls1d_c00060{letter-spacing:0.863760px;}
.ls20_c00060{letter-spacing:0.969960px;}
.ls16_c00060{letter-spacing:1.026600px;}
.ls10_c00060{letter-spacing:1.111560px;}
.ls81_c00060{letter-spacing:1.200480px;}
.ls12_c00060{letter-spacing:1.222440px;}
.ls25_c00060{letter-spacing:1.345200px;}
.lsb0_c00060{letter-spacing:1.359360px;}
.ls9_c00060{letter-spacing:1.585920px;}
.ls8_c00060{letter-spacing:1.663800px;}
.ls2c_c00060{letter-spacing:1.866480px;}
.lsa7_c00060{letter-spacing:1.932480px;}
.ls13_c00060{letter-spacing:1.939800px;}
.lsc_c00060{letter-spacing:2.020320px;}
.ls0_c00060{letter-spacing:2.345220px;}
.lsa_c00060{letter-spacing:2.824920px;}
.ls84_c00060{letter-spacing:3.660000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{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__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:0.000000px;}
._15_c00060{margin-left:-4.167960px;}
._0_c00060{margin-left:-2.920920px;}
._11_c00060{margin-left:-1.168320px;}
._8_c00060{width:1.551840px;}
._c_c00060{width:2.840160px;}
._d_c00060{width:4.531080px;}
._b_c00060{width:5.592480px;}
._12_c00060{width:6.609960px;}
._10_c00060{width:7.649400px;}
._9_c00060{width:8.915760px;}
._7_c00060{width:10.687200px;}
._a_c00060{width:12.670920px;}
._e_c00060{width:14.581440px;}
._14_c00060{width:15.716040px;}
._13_c00060{width:17.272200px;}
._f_c00060{width:19.251600px;}
._3_c00060{width:20.496000px;}
._2_c00060{width:22.289400px;}
._1_c00060{width:23.848560px;}
._5_c00060{width:25.488240px;}
._4_c00060{width:27.310920px;}
._6_c00060{width:28.657800px;}
.fc0_c00060{color:transparent;}
.fs5_c00060{font-size:54.720000px;}
.fs6_c00060{font-size:59.400000px;}
.fs0_c00060{font-size:60.600000px;}
.fs4_c00060{font-size:69.000000px;}
.fs2_c00060{font-size:70.800000px;}
.fs1_c00060{font-size:73.200000px;}
.fs3_c00060{font-size:85.200000px;}
.y0_c00060{bottom:0.000000px;}
.y30_c00060{bottom:69.135000px;}
.y2e_c00060{bottom:132.116400px;}
.y2f_c00060{bottom:132.120000px;}
.y2d_c00060{bottom:163.080000px;}
.y2c_c00060{bottom:163.081500px;}
.y2b_c00060{bottom:224.295000px;}
.y2a_c00060{bottom:224.303400px;}
.y29_c00060{bottom:255.980700px;}
.y27_c00060{bottom:286.555500px;}
.y28_c00060{bottom:286.560000px;}
.y26_c00060{bottom:348.143700px;}
.y24_c00060{bottom:379.451100px;}
.y25_c00060{bottom:379.455000px;}
.y23_c00060{bottom:410.414700px;}
.y22_c00060{bottom:441.360000px;}
.y20_c00060{bottom:471.971400px;}
.y21_c00060{bottom:471.975000px;}
.y1f_c00060{bottom:502.935000px;}
.y1e_c00060{bottom:502.943400px;}
.y1c_c00060{bottom:533.174100px;}
.y1d_c00060{bottom:533.175000px;}
.y1b_c00060{bottom:564.851400px;}
.y19_c00060{bottom:595.811400px;}
.y1a_c00060{bottom:595.815000px;}
.y17_c00060{bottom:626.771400px;}
.y18_c00060{bottom:626.775000px;}
.y15_c00060{bottom:657.731400px;}
.y16_c00060{bottom:657.735000px;}
.y14_c00060{bottom:688.695000px;}
.y13_c00060{bottom:750.600000px;}
.y12_c00060{bottom:750.602400px;}
.y11_c00060{bottom:781.200000px;}
.y10_c00060{bottom:812.520000px;}
.yf_c00060{bottom:812.521800px;}
.ye_c00060{bottom:843.851400px;}
.yc_c00060{bottom:874.811400px;}
.yd_c00060{bottom:874.815000px;}
.ya_c00060{bottom:905.773800px;}
.yb_c00060{bottom:905.775000px;}
.y9_c00060{bottom:936.719100px;}
.y8_c00060{bottom:967.335000px;}
.y7_c00060{bottom:998.295000px;}
.y6_c00060{bottom:998.296200px;}
.y5_c00060{bottom:1059.857400px;}
.y4_c00060{bottom:1090.455000px;}
.y3_c00060{bottom:1090.463700px;}
.y2_c00060{bottom:1121.775000px;}
.y1_c00060{bottom:1198.815000px;}
.h6_c00060{height:36.443520px;}
.h7_c00060{height:58.297852px;}
.h2_c00060{height:59.475586px;}
.h3_c00060{height:71.841797px;}
.h5_c00060{height:71.964844px;}
.h4_c00060{height:88.860937px;}
.h1_c00060{height:1263.000000px;}
.h0_c00060{height:1263.240000px;}
.w1_c00060{width:892.500000px;}
.w0_c00060{width:892.800000px;}
.x0_c00060{left:0.000000px;}
.x2d_c00060{left:117.029100px;}
.x1e_c00060{left:118.279200px;}
.xb_c00060{left:119.910000px;}
.x2_c00060{left:122.220000px;}
.x1_c00060{left:123.690000px;}
.x2e_c00060{left:171.257400px;}
.x19_c00060{left:173.055000px;}
.x5_c00060{left:175.158300px;}
.x3_c00060{left:205.755000px;}
.xc_c00060{left:216.720000px;}
.x4_c00060{left:229.125000px;}
.xd_c00060{left:241.740000px;}
.x32_c00060{left:242.745000px;}
.x12_c00060{left:251.085000px;}
.x1f_c00060{left:255.705000px;}
.x1a_c00060{left:258.690000px;}
.x33_c00060{left:261.885000px;}
.x26_c00060{left:264.780000px;}
.x1b_c00060{left:278.460000px;}
.x22_c00060{left:291.435000px;}
.x23_c00060{left:318.405000px;}
.x20_c00060{left:337.515000px;}
.x10_c00060{left:346.785000px;}
.x6_c00060{left:353.010000px;}
.x21_c00060{left:359.490000px;}
.x27_c00060{left:361.080000px;}
.xe_c00060{left:364.485000px;}
.x11_c00060{left:368.130000px;}
.x7_c00060{left:373.125000px;}
.xf_c00060{left:388.080000px;}
.x2c_c00060{left:397.215000px;}
.x14_c00060{left:401.505000px;}
.x15_c00060{left:421.740000px;}
.x2f_c00060{left:425.490000px;}
.x8_c00060{left:432.105000px;}
.x9_c00060{left:454.890000px;}
.x36_c00060{left:462.750000px;}
.x16_c00060{left:465.315000px;}
.x37_c00060{left:482.205000px;}
.x17_c00060{left:494.610000px;}
.x38_c00060{left:495.840000px;}
.x34_c00060{left:506.175000px;}
.x18_c00060{left:508.035000px;}
.x39_c00060{left:517.350000px;}
.x2a_c00060{left:531.690000px;}
.x28_c00060{left:547.305000px;}
.x2b_c00060{left:557.595000px;}
.x29_c00060{left:567.180000px;}
.x35_c00060{left:618.840000px;}
.x1c_c00060{left:622.800000px;}
.x1d_c00060{left:648.540000px;}
.x24_c00060{left:678.705000px;}
.x30_c00060{left:684.915000px;}
.x25_c00060{left:703.245000px;}
.x31_c00060{left:708.075000px;}
.x13_c00060{left:737.385000px;}
.xa_c00060{left:738.465000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls85_c00060{letter-spacing:-2.650667pt;}
.ls3b_c00060{letter-spacing:-2.277333pt;}
.ls31_c00060{letter-spacing:-2.238293pt;}
.ls5d_c00060{letter-spacing:-2.134187pt;}
.ls6e_c00060{letter-spacing:-2.043093pt;}
.lsaa_c00060{letter-spacing:-2.017067pt;}
.ls43_c00060{letter-spacing:-1.893440pt;}
.ls38_c00060{letter-spacing:-1.815360pt;}
.ls8e_c00060{letter-spacing:-1.717760pt;}
.ls71_c00060{letter-spacing:-1.672213pt;}
.ls75_c00060{letter-spacing:-1.665707pt;}
.lsa3_c00060{letter-spacing:-1.652693pt;}
.lsa9_c00060{letter-spacing:-1.600640pt;}
.ls5e_c00060{letter-spacing:-1.477013pt;}
.lsa2_c00060{letter-spacing:-1.450987pt;}
.lsa1_c00060{letter-spacing:-1.372907pt;}
.lsaf_c00060{letter-spacing:-1.327360pt;}
.ls46_c00060{letter-spacing:-1.294827pt;}
.ls90_c00060{letter-spacing:-1.288320pt;}
.ls6a_c00060{letter-spacing:-1.249280pt;}
.ls41_c00060{letter-spacing:-1.190720pt;}
.ls68_c00060{letter-spacing:-1.171200pt;}
.ls7d_c00060{letter-spacing:-1.158187pt;}
.ls80_c00060{letter-spacing:-1.151680pt;}
.ls96_c00060{letter-spacing:-1.145173pt;}
.ls4c_c00060{letter-spacing:-1.112640pt;}
.ls7a_c00060{letter-spacing:-1.086613pt;}
.lsb3_c00060{letter-spacing:-1.071840pt;}
.ls39_c00060{letter-spacing:-1.054080pt;}
.ls7b_c00060{letter-spacing:-1.047573pt;}
.ls34_c00060{letter-spacing:-1.028053pt;}
.lsa8_c00060{letter-spacing:-1.002027pt;}
.lsa0_c00060{letter-spacing:-0.995520pt;}
.ls73_c00060{letter-spacing:-0.989013pt;}
.ls3d_c00060{letter-spacing:-0.969493pt;}
.ls44_c00060{letter-spacing:-0.956480pt;}
.ls9f_c00060{letter-spacing:-0.878400pt;}
.ls8b_c00060{letter-spacing:-0.852373pt;}
.ls56_c00060{letter-spacing:-0.845867pt;}
.ls72_c00060{letter-spacing:-0.813333pt;}
.ls3c_c00060{letter-spacing:-0.806827pt;}
.lsac_c00060{letter-spacing:-0.800320pt;}
.ls53_c00060{letter-spacing:-0.787307pt;}
.ls5a_c00060{letter-spacing:-0.761280pt;}
.ls57_c00060{letter-spacing:-0.754773pt;}
.ls77_c00060{letter-spacing:-0.741760pt;}
.lsab_c00060{letter-spacing:-0.735253pt;}
.ls8f_c00060{letter-spacing:-0.709227pt;}
.ls69_c00060{letter-spacing:-0.702720pt;}
.ls48_c00060{letter-spacing:-0.676693pt;}
.ls74_c00060{letter-spacing:-0.670187pt;}
.ls32_c00060{letter-spacing:-0.657173pt;}
.ls97_c00060{letter-spacing:-0.650667pt;}
.lsb2_c00060{letter-spacing:-0.631147pt;}
.ls4f_c00060{letter-spacing:-0.618133pt;}
.lsa4_c00060{letter-spacing:-0.611627pt;}
.lsad_c00060{letter-spacing:-0.592107pt;}
.ls9a_c00060{letter-spacing:-0.585600pt;}
.ls9e_c00060{letter-spacing:-0.572587pt;}
.ls91_c00060{letter-spacing:-0.566080pt;}
.ls55_c00060{letter-spacing:-0.559573pt;}
.ls9d_c00060{letter-spacing:-0.553067pt;}
.ls36_c00060{letter-spacing:-0.540053pt;}
.ls2d_c00060{letter-spacing:-0.533547pt;}
.ls86_c00060{letter-spacing:-0.527040pt;}
.ls2f_c00060{letter-spacing:-0.520533pt;}
.ls83_c00060{letter-spacing:-0.514027pt;}
.ls54_c00060{letter-spacing:-0.507520pt;}
.ls66_c00060{letter-spacing:-0.501013pt;}
.ls5c_c00060{letter-spacing:-0.494507pt;}
.ls37_c00060{letter-spacing:-0.488000pt;}
.ls5b_c00060{letter-spacing:-0.474987pt;}
.ls79_c00060{letter-spacing:-0.468480pt;}
.ls47_c00060{letter-spacing:-0.422933pt;}
.ls6b_c00060{letter-spacing:-0.403413pt;}
.ls99_c00060{letter-spacing:-0.396907pt;}
.ls8c_c00060{letter-spacing:-0.390400pt;}
.ls58_c00060{letter-spacing:-0.383893pt;}
.ls4d_c00060{letter-spacing:-0.377387pt;}
.ls2e_c00060{letter-spacing:-0.370880pt;}
.ls4e_c00060{letter-spacing:-0.364373pt;}
.ls89_c00060{letter-spacing:-0.357867pt;}
.ls67_c00060{letter-spacing:-0.351360pt;}
.ls62_c00060{letter-spacing:-0.338347pt;}
.ls6f_c00060{letter-spacing:-0.331840pt;}
.ls5f_c00060{letter-spacing:-0.325333pt;}
.ls42_c00060{letter-spacing:-0.318827pt;}
.ls95_c00060{letter-spacing:-0.312320pt;}
.ls82_c00060{letter-spacing:-0.305813pt;}
.ls64_c00060{letter-spacing:-0.299307pt;}
.ls30_c00060{letter-spacing:-0.292800pt;}
.ls40_c00060{letter-spacing:-0.286293pt;}
.ls3e_c00060{letter-spacing:-0.279787pt;}
.ls88_c00060{letter-spacing:-0.266773pt;}
.ls3f_c00060{letter-spacing:-0.260267pt;}
.ls70_c00060{letter-spacing:-0.253760pt;}
.ls6d_c00060{letter-spacing:-0.247253pt;}
.ls35_c00060{letter-spacing:-0.234240pt;}
.ls9b_c00060{letter-spacing:-0.227733pt;}
.lsa5_c00060{letter-spacing:-0.220267pt;}
.ls7f_c00060{letter-spacing:-0.214720pt;}
.ls60_c00060{letter-spacing:-0.208213pt;}
.ls94_c00060{letter-spacing:-0.195200pt;}
.lsae_c00060{letter-spacing:-0.188693pt;}
.ls9c_c00060{letter-spacing:-0.184000pt;}
.ls49_c00060{letter-spacing:-0.182187pt;}
.ls59_c00060{letter-spacing:-0.175680pt;}
.ls78_c00060{letter-spacing:-0.169173pt;}
.ls51_c00060{letter-spacing:-0.162667pt;}
.ls4a_c00060{letter-spacing:-0.156160pt;}
.ls92_c00060{letter-spacing:-0.149653pt;}
.ls98_c00060{letter-spacing:-0.143147pt;}
.ls50_c00060{letter-spacing:-0.136640pt;}
.ls93_c00060{letter-spacing:-0.130133pt;}
.ls4b_c00060{letter-spacing:-0.123627pt;}
.ls63_c00060{letter-spacing:-0.117120pt;}
.ls87_c00060{letter-spacing:-0.110613pt;}
.ls8a_c00060{letter-spacing:-0.104107pt;}
.ls6c_c00060{letter-spacing:-0.097600pt;}
.ls52_c00060{letter-spacing:-0.091093pt;}
.ls65_c00060{letter-spacing:-0.084587pt;}
.ls7c_c00060{letter-spacing:-0.078080pt;}
.lsb1_c00060{letter-spacing:-0.065067pt;}
.ls7e_c00060{letter-spacing:-0.058560pt;}
.ls45_c00060{letter-spacing:-0.052053pt;}
.ls3a_c00060{letter-spacing:-0.039040pt;}
.ls76_c00060{letter-spacing:-0.019520pt;}
.ls8d_c00060{letter-spacing:-0.006507pt;}
.lsa6_c00060{letter-spacing:-0.006293pt;}
.ls33_c00060{letter-spacing:0.000000pt;}
.ls19_c00060{letter-spacing:0.019520pt;}
.ls29_c00060{letter-spacing:0.026027pt;}
.lsf_c00060{letter-spacing:0.032533pt;}
.ls1_c00060{letter-spacing:0.039040pt;}
.ls26_c00060{letter-spacing:0.045547pt;}
.ls18_c00060{letter-spacing:0.078080pt;}
.ls3_c00060{letter-spacing:0.084587pt;}
.ls21_c00060{letter-spacing:0.091093pt;}
.lsd_c00060{letter-spacing:0.104107pt;}
.lse_c00060{letter-spacing:0.110613pt;}
.ls5_c00060{letter-spacing:0.123627pt;}
.ls22_c00060{letter-spacing:0.130133pt;}
.ls2_c00060{letter-spacing:0.143147pt;}
.ls1c_c00060{letter-spacing:0.149653pt;}
.ls1f_c00060{letter-spacing:0.156160pt;}
.ls27_c00060{letter-spacing:0.162667pt;}
.ls61_c00060{letter-spacing:0.169173pt;}
.ls7_c00060{letter-spacing:0.175680pt;}
.ls2b_c00060{letter-spacing:0.208213pt;}
.ls1a_c00060{letter-spacing:0.221227pt;}
.ls17_c00060{letter-spacing:0.227733pt;}
.ls11_c00060{letter-spacing:0.234240pt;}
.ls15_c00060{letter-spacing:0.292800pt;}
.ls1e_c00060{letter-spacing:0.331840pt;}
.ls1b_c00060{letter-spacing:0.351360pt;}
.lsb_c00060{letter-spacing:0.429440pt;}
.ls2a_c00060{letter-spacing:0.435947pt;}
.ls6_c00060{letter-spacing:0.448960pt;}
.ls24_c00060{letter-spacing:0.459413pt;}
.ls28_c00060{letter-spacing:0.461973pt;}
.ls14_c00060{letter-spacing:0.484587pt;}
.ls4_c00060{letter-spacing:0.520533pt;}
.ls23_c00060{letter-spacing:0.730027pt;}
.ls1d_c00060{letter-spacing:0.767787pt;}
.ls20_c00060{letter-spacing:0.862187pt;}
.ls16_c00060{letter-spacing:0.912533pt;}
.ls10_c00060{letter-spacing:0.988053pt;}
.ls81_c00060{letter-spacing:1.067093pt;}
.ls12_c00060{letter-spacing:1.086613pt;}
.ls25_c00060{letter-spacing:1.195733pt;}
.lsb0_c00060{letter-spacing:1.208320pt;}
.ls9_c00060{letter-spacing:1.409707pt;}
.ls8_c00060{letter-spacing:1.478933pt;}
.ls2c_c00060{letter-spacing:1.659093pt;}
.lsa7_c00060{letter-spacing:1.717760pt;}
.ls13_c00060{letter-spacing:1.724267pt;}
.lsc_c00060{letter-spacing:1.795840pt;}
.ls0_c00060{letter-spacing:2.084640pt;}
.lsa_c00060{letter-spacing:2.511040pt;}
.ls84_c00060{letter-spacing:3.253333pt;}
.ws0_c00060{word-spacing:0.000000pt;}
._15_c00060{margin-left:-3.704853pt;}
._0_c00060{margin-left:-2.596373pt;}
._11_c00060{margin-left:-1.038507pt;}
._8_c00060{width:1.379413pt;}
._c_c00060{width:2.524587pt;}
._d_c00060{width:4.027627pt;}
._b_c00060{width:4.971093pt;}
._12_c00060{width:5.875520pt;}
._10_c00060{width:6.799467pt;}
._9_c00060{width:7.925120pt;}
._7_c00060{width:9.499733pt;}
._a_c00060{width:11.263040pt;}
._e_c00060{width:12.961280pt;}
._14_c00060{width:13.969813pt;}
._13_c00060{width:15.353067pt;}
._f_c00060{width:17.112533pt;}
._3_c00060{width:18.218667pt;}
._2_c00060{width:19.812800pt;}
._1_c00060{width:21.198720pt;}
._5_c00060{width:22.656213pt;}
._4_c00060{width:24.276373pt;}
._6_c00060{width:25.473600pt;}
.fs5_c00060{font-size:48.640000pt;}
.fs6_c00060{font-size:52.800000pt;}
.fs0_c00060{font-size:53.866667pt;}
.fs4_c00060{font-size:61.333333pt;}
.fs2_c00060{font-size:62.933333pt;}
.fs1_c00060{font-size:65.066667pt;}
.fs3_c00060{font-size:75.733333pt;}
.y0_c00060{bottom:0.000000pt;}
.y30_c00060{bottom:61.453333pt;}
.y2e_c00060{bottom:117.436800pt;}
.y2f_c00060{bottom:117.440000pt;}
.y2d_c00060{bottom:144.960000pt;}
.y2c_c00060{bottom:144.961333pt;}
.y2b_c00060{bottom:199.373333pt;}
.y2a_c00060{bottom:199.380800pt;}
.y29_c00060{bottom:227.538400pt;}
.y27_c00060{bottom:254.716000pt;}
.y28_c00060{bottom:254.720000pt;}
.y26_c00060{bottom:309.461067pt;}
.y24_c00060{bottom:337.289867pt;}
.y25_c00060{bottom:337.293333pt;}
.y23_c00060{bottom:364.813067pt;}
.y22_c00060{bottom:392.320000pt;}
.y20_c00060{bottom:419.530133pt;}
.y21_c00060{bottom:419.533333pt;}
.y1f_c00060{bottom:447.053333pt;}
.y1e_c00060{bottom:447.060800pt;}
.y1c_c00060{bottom:473.932533pt;}
.y1d_c00060{bottom:473.933333pt;}
.y1b_c00060{bottom:502.090133pt;}
.y19_c00060{bottom:529.610133pt;}
.y1a_c00060{bottom:529.613333pt;}
.y17_c00060{bottom:557.130133pt;}
.y18_c00060{bottom:557.133333pt;}
.y15_c00060{bottom:584.650133pt;}
.y16_c00060{bottom:584.653333pt;}
.y14_c00060{bottom:612.173333pt;}
.y13_c00060{bottom:667.200000pt;}
.y12_c00060{bottom:667.202133pt;}
.y11_c00060{bottom:694.400000pt;}
.y10_c00060{bottom:722.240000pt;}
.yf_c00060{bottom:722.241600pt;}
.ye_c00060{bottom:750.090133pt;}
.yc_c00060{bottom:777.610133pt;}
.yd_c00060{bottom:777.613333pt;}
.ya_c00060{bottom:805.132267pt;}
.yb_c00060{bottom:805.133333pt;}
.y9_c00060{bottom:832.639200pt;}
.y8_c00060{bottom:859.853333pt;}
.y7_c00060{bottom:887.373333pt;}
.y6_c00060{bottom:887.374400pt;}
.y5_c00060{bottom:942.095467pt;}
.y4_c00060{bottom:969.293333pt;}
.y3_c00060{bottom:969.301067pt;}
.y2_c00060{bottom:997.133333pt;}
.y1_c00060{bottom:1065.613333pt;}
.h6_c00060{height:32.394240pt;}
.h7_c00060{height:51.820312pt;}
.h2_c00060{height:52.867187pt;}
.h3_c00060{height:63.859375pt;}
.h5_c00060{height:63.968750pt;}
.h4_c00060{height:78.987500pt;}
.h1_c00060{height:1122.666667pt;}
.h0_c00060{height:1122.880000pt;}
.w1_c00060{width:793.333333pt;}
.w0_c00060{width:793.600000pt;}
.x0_c00060{left:0.000000pt;}
.x2d_c00060{left:104.025867pt;}
.x1e_c00060{left:105.137067pt;}
.xb_c00060{left:106.586667pt;}
.x2_c00060{left:108.640000pt;}
.x1_c00060{left:109.946667pt;}
.x2e_c00060{left:152.228800pt;}
.x19_c00060{left:153.826667pt;}
.x5_c00060{left:155.696267pt;}
.x3_c00060{left:182.893333pt;}
.xc_c00060{left:192.640000pt;}
.x4_c00060{left:203.666667pt;}
.xd_c00060{left:214.880000pt;}
.x32_c00060{left:215.773333pt;}
.x12_c00060{left:223.186667pt;}
.x1f_c00060{left:227.293333pt;}
.x1a_c00060{left:229.946667pt;}
.x33_c00060{left:232.786667pt;}
.x26_c00060{left:235.360000pt;}
.x1b_c00060{left:247.520000pt;}
.x22_c00060{left:259.053333pt;}
.x23_c00060{left:283.026667pt;}
.x20_c00060{left:300.013333pt;}
.x10_c00060{left:308.253333pt;}
.x6_c00060{left:313.786667pt;}
.x21_c00060{left:319.546667pt;}
.x27_c00060{left:320.960000pt;}
.xe_c00060{left:323.986667pt;}
.x11_c00060{left:327.226667pt;}
.x7_c00060{left:331.666667pt;}
.xf_c00060{left:344.960000pt;}
.x2c_c00060{left:353.080000pt;}
.x14_c00060{left:356.893333pt;}
.x15_c00060{left:374.880000pt;}
.x2f_c00060{left:378.213333pt;}
.x8_c00060{left:384.093333pt;}
.x9_c00060{left:404.346667pt;}
.x36_c00060{left:411.333333pt;}
.x16_c00060{left:413.613333pt;}
.x37_c00060{left:428.626667pt;}
.x17_c00060{left:439.653333pt;}
.x38_c00060{left:440.746667pt;}
.x34_c00060{left:449.933333pt;}
.x18_c00060{left:451.586667pt;}
.x39_c00060{left:459.866667pt;}
.x2a_c00060{left:472.613333pt;}
.x28_c00060{left:486.493333pt;}
.x2b_c00060{left:495.640000pt;}
.x29_c00060{left:504.160000pt;}
.x35_c00060{left:550.080000pt;}
.x1c_c00060{left:553.600000pt;}
.x1d_c00060{left:576.480000pt;}
.x24_c00060{left:603.293333pt;}
.x30_c00060{left:608.813333pt;}
.x25_c00060{left:625.106667pt;}
.x31_c00060{left:629.400000pt;}
.x13_c00060{left:655.453333pt;}
.xa_c00060{left:656.413333pt;}
}





/* 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_c00061 {
    display:none;
  }
  .loading-indicator_c00061.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00061 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_c00061 { 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_c00061" -> "#page-container .classname_c00061")
 */
.pf_c00061 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00061 { /* 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_c00061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00061 { /* 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_c00061 { /* 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_c00061 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00061 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00061 {overflow:visible;}
  }
}
.c_c00061 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00061 { /* 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_c00061:after { /* webkit #35443 */
  content: '';
}
.t_c00061:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00061 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 */
}
.__c00061 { /* 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_c00061 { /* info for Javascript */
  display:none;
}
.l_c00061 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00061 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00061 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00061: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_c00061 {
    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_c00061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00061.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_c00061 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00061;src:url('chunks/assets/font_38bb61a7605fd78dfc3f8452.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.311035;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_c00061;src:url('chunks/assets/font_40f4238ba11db12c41fe9826.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.284668;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_c00061;src:url('chunks/assets/font_55c2333046a7253ffbc51a4c.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;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:ff4_c00061;src:url('chunks/assets/font_ffeab9975c6b18db5fe68c68.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:0.666000;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_c00061;src:url('chunks/assets/font_c383255297a967cc5d74b71e.woff2')format("woff");}.ff5_c00061{font-family:ff5_c00061;line-height:1.284180;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;}
.m8_c00061{transform:matrix(0.221189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221189,0.000000,0.000000,0.250000,0,0);}
.m6_c00061{transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);}
.m3_c00061{transform:matrix(0.236867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236867,0.000000,0.000000,0.250000,0,0);}
.m7_c00061{transform:matrix(0.248268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248268,0.000000,0.000000,0.250000,0,0);}
.m0_c00061{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);}
.m4_c00061{transform:matrix(0.256718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256718,0.000000,0.000000,0.250000,0,0);}
.m2_c00061{transform:matrix(0.259926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259926,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(0.264166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264166,0.000000,0.000000,0.250000,0,0);}
.m5_c00061{transform:matrix(0.266244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266244,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.v1_c00061{vertical-align:4.380000px;}
.ls20_c00061{letter-spacing:-2.289000px;}
.ls36_c00061{letter-spacing:-2.142000px;}
.ls23_c00061{letter-spacing:-2.040480px;}
.ls1b_c00061{letter-spacing:-1.659021px;}
.ls2c_c00061{letter-spacing:-1.451880px;}
.ls2d_c00061{letter-spacing:-1.340700px;}
.ls32_c00061{letter-spacing:-1.085640px;}
.ls29_c00061{letter-spacing:-0.686700px;}
.ls2b_c00061{letter-spacing:-0.621300px;}
.ls34_c00061{letter-spacing:-0.601680px;}
.ls2f_c00061{letter-spacing:-0.497040px;}
.ls33_c00061{letter-spacing:-0.379320px;}
.ls22_c00061{letter-spacing:-0.366240px;}
.ls31_c00061{letter-spacing:-0.274680px;}
.ls30_c00061{letter-spacing:-0.235440px;}
.ls27_c00061{letter-spacing:-0.215820px;}
.ls26_c00061{letter-spacing:-0.202740px;}
.ls2a_c00061{letter-spacing:-0.104640px;}
.ls21_c00061{letter-spacing:-0.098100px;}
.ls28_c00061{letter-spacing:-0.071940px;}
.ls24_c00061{letter-spacing:-0.013080px;}
.ls1a_c00061{letter-spacing:0.000000px;}
.ls14_c00061{letter-spacing:0.019620px;}
.ls13_c00061{letter-spacing:0.026160px;}
.ls2_c00061{letter-spacing:0.045780px;}
.ls7_c00061{letter-spacing:0.085020px;}
.ls10_c00061{letter-spacing:0.091560px;}
.ls6_c00061{letter-spacing:0.098100px;}
.ls35_c00061{letter-spacing:0.104640px;}
.lsc_c00061{letter-spacing:0.183120px;}
.lsb_c00061{letter-spacing:0.202740px;}
.lsf_c00061{letter-spacing:0.215820px;}
.ls12_c00061{letter-spacing:0.307380px;}
.ls17_c00061{letter-spacing:0.327000px;}
.ls1e_c00061{letter-spacing:0.328564px;}
.ls1_c00061{letter-spacing:0.346620px;}
.ls8_c00061{letter-spacing:0.353160px;}
.lse_c00061{letter-spacing:0.359520px;}
.ls4_c00061{letter-spacing:0.503580px;}
.ls25_c00061{letter-spacing:0.520020px;}
.ls5_c00061{letter-spacing:0.562440px;}
.lsa_c00061{letter-spacing:0.575520px;}
.ls15_c00061{letter-spacing:0.712620px;}
.ls9_c00061{letter-spacing:0.738300px;}
.ls3_c00061{letter-spacing:0.837120px;}
.ls2e_c00061{letter-spacing:0.898800px;}
.ls1f_c00061{letter-spacing:0.948300px;}
.lsd_c00061{letter-spacing:1.039860px;}
.ls0_c00061{letter-spacing:1.808640px;}
.ls18_c00061{letter-spacing:1.814400px;}
.ls16_c00061{letter-spacing:1.883520px;}
.ls11_c00061{letter-spacing:2.295960px;}
.ls19_c00061{letter-spacing:2.340030px;}
.ls1c_c00061{letter-spacing:2.370030px;}
.ls1d_c00061{letter-spacing:2.640000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{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__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:0.000000px;}
._f_c00061{margin-left:-7.919700px;}
._2_c00061{margin-left:-5.271600px;}
._0_c00061{margin-left:-2.557440px;}
._d_c00061{margin-left:-1.182240px;}
._e_c00061{width:1.111800px;}
._6_c00061{width:2.403540px;}
._3_c00061{width:3.825900px;}
._4_c00061{width:5.336640px;}
._c_c00061{width:6.415440px;}
._9_c00061{width:7.435980px;}
._8_c00061{width:8.914020px;}
._5_c00061{width:9.993120px;}
._b_c00061{width:11.178060px;}
._7_c00061{width:13.760160px;}
._a_c00061{width:15.931440px;}
._1_c00061{width:1099.357200px;}
.fc0_c00061{color:transparent;}
.fsa_c00061{font-size:44.400600px;}
.fsb_c00061{font-size:46.080000px;}
.fs1_c00061{font-size:46.800600px;}
.fs6_c00061{font-size:47.400600px;}
.fs7_c00061{font-size:48.600000px;}
.fs8_c00061{font-size:51.600000px;}
.fs9_c00061{font-size:52.800000px;}
.fs0_c00061{font-size:57.600000px;}
.fs3_c00061{font-size:61.200000px;}
.fsd_c00061{font-size:63.600000px;}
.fs2_c00061{font-size:64.200000px;}
.fsc_c00061{font-size:65.400000px;}
.fsf_c00061{font-size:66.000000px;}
.fs4_c00061{font-size:67.200000px;}
.fs5_c00061{font-size:73.200000px;}
.fse_c00061{font-size:76.800000px;}
.y0_c00061{bottom:0.000000px;}
.y10_c00061{bottom:65.895015px;}
.yf_c00061{bottom:251.998215px;}
.ye_c00061{bottom:271.095015px;}
.yd_c00061{bottom:289.820715px;}
.yc_c00061{bottom:308.535015px;}
.yb_c00061{bottom:327.255015px;}
.ya_c00061{bottom:538.920015px;}
.y9_c00061{bottom:565.215015px;}
.y8_c00061{bottom:569.520015px;}
.y7_c00061{bottom:596.520015px;}
.y12_c00061{bottom:615.255015px;}
.y11_c00061{bottom:618.840015px;}
.y6_c00061{bottom:697.335015px;}
.y5_c00061{bottom:752.400015px;}
.y4_c00061{bottom:794.895015px;}
.y3_c00061{bottom:872.640015px;}
.y2_c00061{bottom:888.855015px;}
.y1_c00061{bottom:1190.535015px;}
.hc_c00061{height:30.689280px;}
.h3_c00061{height:45.932229px;}
.hb_c00061{height:46.308438px;}
.h7_c00061{height:46.521097px;}
.h8_c00061{height:50.642578px;}
.h9_c00061{height:51.820313px;}
.h2_c00061{height:58.050000px;}
.h10_c00061{height:60.064453px;}
.he_c00061{height:64.163723px;}
.hd_c00061{height:64.186523px;}
.hf_c00061{height:64.193723px;}
.h5_c00061{height:65.953125px;}
.h4_c00061{height:68.209688px;}
.h12_c00061{height:68.835938px;}
.ha_c00061{height:70.087500px;}
.h6_c00061{height:71.841797px;}
.h11_c00061{height:80.100000px;}
.h1_c00061{height:1263.000000px;}
.h0_c00061{height:1263.240015px;}
.w1_c00061{width:892.500000px;}
.w0_c00061{width:892.800000px;}
.x0_c00061{left:0.000000px;}
.x1_c00061{left:126.195000px;}
.xe_c00061{left:175.830000px;}
.xf_c00061{left:199.995000px;}
.x6_c00061{left:225.885000px;}
.x4_c00061{left:326.715000px;}
.x10_c00061{left:432.180000px;}
.x2_c00061{left:445.560000px;}
.x3_c00061{left:481.560000px;}
.x8_c00061{left:558.555000px;}
.xc_c00061{left:563.985000px;}
.x9_c00061{left:572.535000px;}
.xd_c00061{left:579.975000px;}
.xa_c00061{left:592.035000px;}
.x5_c00061{left:601.755000px;}
.x7_c00061{left:722.490000px;}
.xb_c00061{left:745.155000px;}
.x12_c00061{left:855.135000px;}
.x11_c00061{left:856.185000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.v1_c00061{vertical-align:3.893333pt;}
.ls20_c00061{letter-spacing:-2.034667pt;}
.ls36_c00061{letter-spacing:-1.904000pt;}
.ls23_c00061{letter-spacing:-1.813760pt;}
.ls1b_c00061{letter-spacing:-1.474685pt;}
.ls2c_c00061{letter-spacing:-1.290560pt;}
.ls2d_c00061{letter-spacing:-1.191733pt;}
.ls32_c00061{letter-spacing:-0.965013pt;}
.ls29_c00061{letter-spacing:-0.610400pt;}
.ls2b_c00061{letter-spacing:-0.552267pt;}
.ls34_c00061{letter-spacing:-0.534827pt;}
.ls2f_c00061{letter-spacing:-0.441813pt;}
.ls33_c00061{letter-spacing:-0.337173pt;}
.ls22_c00061{letter-spacing:-0.325547pt;}
.ls31_c00061{letter-spacing:-0.244160pt;}
.ls30_c00061{letter-spacing:-0.209280pt;}
.ls27_c00061{letter-spacing:-0.191840pt;}
.ls26_c00061{letter-spacing:-0.180213pt;}
.ls2a_c00061{letter-spacing:-0.093013pt;}
.ls21_c00061{letter-spacing:-0.087200pt;}
.ls28_c00061{letter-spacing:-0.063947pt;}
.ls24_c00061{letter-spacing:-0.011627pt;}
.ls1a_c00061{letter-spacing:0.000000pt;}
.ls14_c00061{letter-spacing:0.017440pt;}
.ls13_c00061{letter-spacing:0.023253pt;}
.ls2_c00061{letter-spacing:0.040693pt;}
.ls7_c00061{letter-spacing:0.075573pt;}
.ls10_c00061{letter-spacing:0.081387pt;}
.ls6_c00061{letter-spacing:0.087200pt;}
.ls35_c00061{letter-spacing:0.093013pt;}
.lsc_c00061{letter-spacing:0.162773pt;}
.lsb_c00061{letter-spacing:0.180213pt;}
.lsf_c00061{letter-spacing:0.191840pt;}
.ls12_c00061{letter-spacing:0.273227pt;}
.ls17_c00061{letter-spacing:0.290667pt;}
.ls1e_c00061{letter-spacing:0.292057pt;}
.ls1_c00061{letter-spacing:0.308107pt;}
.ls8_c00061{letter-spacing:0.313920pt;}
.lse_c00061{letter-spacing:0.319573pt;}
.ls4_c00061{letter-spacing:0.447627pt;}
.ls25_c00061{letter-spacing:0.462240pt;}
.ls5_c00061{letter-spacing:0.499947pt;}
.lsa_c00061{letter-spacing:0.511573pt;}
.ls15_c00061{letter-spacing:0.633440pt;}
.ls9_c00061{letter-spacing:0.656267pt;}
.ls3_c00061{letter-spacing:0.744107pt;}
.ls2e_c00061{letter-spacing:0.798933pt;}
.ls1f_c00061{letter-spacing:0.842933pt;}
.lsd_c00061{letter-spacing:0.924320pt;}
.ls0_c00061{letter-spacing:1.607680pt;}
.ls18_c00061{letter-spacing:1.612800pt;}
.ls16_c00061{letter-spacing:1.674240pt;}
.ls11_c00061{letter-spacing:2.040853pt;}
.ls19_c00061{letter-spacing:2.080027pt;}
.ls1c_c00061{letter-spacing:2.106693pt;}
.ls1d_c00061{letter-spacing:2.346667pt;}
.ws0_c00061{word-spacing:0.000000pt;}
._f_c00061{margin-left:-7.039733pt;}
._2_c00061{margin-left:-4.685867pt;}
._0_c00061{margin-left:-2.273280pt;}
._d_c00061{margin-left:-1.050880pt;}
._e_c00061{width:0.988267pt;}
._6_c00061{width:2.136480pt;}
._3_c00061{width:3.400800pt;}
._4_c00061{width:4.743680pt;}
._c_c00061{width:5.702613pt;}
._9_c00061{width:6.609760pt;}
._8_c00061{width:7.923573pt;}
._5_c00061{width:8.882773pt;}
._b_c00061{width:9.936053pt;}
._7_c00061{width:12.231253pt;}
._a_c00061{width:14.161280pt;}
._1_c00061{width:977.206400pt;}
.fsa_c00061{font-size:39.467200pt;}
.fsb_c00061{font-size:40.960000pt;}
.fs1_c00061{font-size:41.600533pt;}
.fs6_c00061{font-size:42.133867pt;}
.fs7_c00061{font-size:43.200000pt;}
.fs8_c00061{font-size:45.866667pt;}
.fs9_c00061{font-size:46.933333pt;}
.fs0_c00061{font-size:51.200000pt;}
.fs3_c00061{font-size:54.400000pt;}
.fsd_c00061{font-size:56.533333pt;}
.fs2_c00061{font-size:57.066667pt;}
.fsc_c00061{font-size:58.133333pt;}
.fsf_c00061{font-size:58.666667pt;}
.fs4_c00061{font-size:59.733333pt;}
.fs5_c00061{font-size:65.066667pt;}
.fse_c00061{font-size:68.266667pt;}
.y0_c00061{bottom:0.000000pt;}
.y10_c00061{bottom:58.573347pt;}
.yf_c00061{bottom:223.998413pt;}
.ye_c00061{bottom:240.973347pt;}
.yd_c00061{bottom:257.618413pt;}
.yc_c00061{bottom:274.253347pt;}
.yb_c00061{bottom:290.893347pt;}
.ya_c00061{bottom:479.040013pt;}
.y9_c00061{bottom:502.413347pt;}
.y8_c00061{bottom:506.240013pt;}
.y7_c00061{bottom:530.240013pt;}
.y12_c00061{bottom:546.893347pt;}
.y11_c00061{bottom:550.080013pt;}
.y6_c00061{bottom:619.853347pt;}
.y5_c00061{bottom:668.800013pt;}
.y4_c00061{bottom:706.573347pt;}
.y3_c00061{bottom:775.680013pt;}
.y2_c00061{bottom:790.093347pt;}
.y1_c00061{bottom:1058.253347pt;}
.hc_c00061{height:27.279360pt;}
.h3_c00061{height:40.828648pt;}
.hb_c00061{height:41.163056pt;}
.h7_c00061{height:41.352086pt;}
.h8_c00061{height:45.015625pt;}
.h9_c00061{height:46.062500pt;}
.h2_c00061{height:51.600000pt;}
.h10_c00061{height:53.390625pt;}
.he_c00061{height:57.034421pt;}
.hd_c00061{height:57.054688pt;}
.hf_c00061{height:57.061088pt;}
.h5_c00061{height:58.625000pt;}
.h4_c00061{height:60.630833pt;}
.h12_c00061{height:61.187500pt;}
.ha_c00061{height:62.300000pt;}
.h6_c00061{height:63.859375pt;}
.h11_c00061{height:71.200000pt;}
.h1_c00061{height:1122.666667pt;}
.h0_c00061{height:1122.880013pt;}
.w1_c00061{width:793.333333pt;}
.w0_c00061{width:793.600000pt;}
.x0_c00061{left:0.000000pt;}
.x1_c00061{left:112.173333pt;}
.xe_c00061{left:156.293333pt;}
.xf_c00061{left:177.773333pt;}
.x6_c00061{left:200.786667pt;}
.x4_c00061{left:290.413333pt;}
.x10_c00061{left:384.160000pt;}
.x2_c00061{left:396.053333pt;}
.x3_c00061{left:428.053333pt;}
.x8_c00061{left:496.493333pt;}
.xc_c00061{left:501.320000pt;}
.x9_c00061{left:508.920000pt;}
.xd_c00061{left:515.533333pt;}
.xa_c00061{left:526.253333pt;}
.x5_c00061{left:534.893333pt;}
.x7_c00061{left:642.213333pt;}
.xb_c00061{left:662.360000pt;}
.x12_c00061{left:760.120000pt;}
.x11_c00061{left:761.053333pt;}
}





/* 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_c00062 {
    display:none;
  }
  .loading-indicator_c00062.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00062 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_c00062 { 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_c00062" -> "#page-container .classname_c00062")
 */
.pf_c00062 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00062 { /* 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_c00062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00062 { /* 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_c00062 { /* 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_c00062 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00062 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00062 {overflow:visible;}
  }
}
.c_c00062 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00062 { /* 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_c00062:after { /* webkit #35443 */
  content: '';
}
.t_c00062:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00062 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 */
}
.__c00062 { /* 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_c00062 { /* info for Javascript */
  display:none;
}
.l_c00062 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00062 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00062 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00062: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_c00062 {
    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_c00062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00062.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_c00062 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00062;src:url('chunks/assets/font_b5ff6254cff10781a83c9277.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.284668;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_c00062;src:url('chunks/assets/font_5dea57df762955a0a975abb2.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.284180;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_c00062;src:url('chunks/assets/font_36120260ee95c50554491b3e.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;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:ff4_c00062;src:url('chunks/assets/font_6e114999b84be4391056810d.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;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;}
.m7_c00062{transform:matrix(0.241902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241902,0.000000,0.000000,0.250000,0,0);}
.me_c00062{transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);}
.m9_c00062{transform:matrix(0.247317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247317,0.000000,0.000000,0.250000,0,0);}
.m8_c00062{transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);}
.m0_c00062{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);}
.mb_c00062{transform:matrix(0.251571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251571,0.000000,0.000000,0.250000,0,0);}
.m5_c00062{transform:matrix(0.256596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256596,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{transform:matrix(0.258873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258873,0.000000,0.000000,0.250000,0,0);}
.ma_c00062{transform:matrix(0.261162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261162,0.000000,0.000000,0.250000,0,0);}
.m2_c00062{transform:matrix(0.277033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277033,0.000000,0.000000,0.250000,0,0);}
.mc_c00062{transform:matrix(0.288502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288502,0.000000,0.000000,0.250000,0,0);}
.m3_c00062{transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);}
.md_c00062{transform:matrix(0.297567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297567,0.000000,0.000000,0.250000,0,0);}
.m4_c00062{transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);}
.m6_c00062{transform:matrix(0.440255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440255,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls87_c00062{letter-spacing:-2.520000px;}
.ls73_c00062{letter-spacing:-2.448000px;}
.ls65_c00062{letter-spacing:-2.080800px;}
.lsa2_c00062{letter-spacing:-1.944000px;}
.ls5b_c00062{letter-spacing:-1.922400px;}
.ls96_c00062{letter-spacing:-1.893600px;}
.ls6e_c00062{letter-spacing:-1.828800px;}
.ls7d_c00062{letter-spacing:-1.807200px;}
.ls9b_c00062{letter-spacing:-1.800000px;}
.ls74_c00062{letter-spacing:-1.785600px;}
.ls7b_c00062{letter-spacing:-1.720800px;}
.ls60_c00062{letter-spacing:-1.699200px;}
.ls98_c00062{letter-spacing:-1.692000px;}
.ls8c_c00062{letter-spacing:-1.627200px;}
.ls7c_c00062{letter-spacing:-1.584000px;}
.ls85_c00062{letter-spacing:-1.512000px;}
.ls99_c00062{letter-spacing:-1.382400px;}
.ls7a_c00062{letter-spacing:-1.216800px;}
.ls62_c00062{letter-spacing:-1.202400px;}
.ls51_c00062{letter-spacing:-1.180800px;}
.ls54_c00062{letter-spacing:-1.022400px;}
.ls55_c00062{letter-spacing:-1.008000px;}
.ls63_c00062{letter-spacing:-0.986400px;}
.ls9d_c00062{letter-spacing:-0.936000px;}
.ls9f_c00062{letter-spacing:-0.878400px;}
.ls6b_c00062{letter-spacing:-0.871200px;}
.ls9e_c00062{letter-spacing:-0.813600px;}
.ls78_c00062{letter-spacing:-0.720000px;}
.ls58_c00062{letter-spacing:-0.662400px;}
.ls97_c00062{letter-spacing:-0.655200px;}
.ls64_c00062{letter-spacing:-0.640800px;}
.lsa7_c00062{letter-spacing:-0.629160px;}
.ls8a_c00062{letter-spacing:-0.612000px;}
.lsa1_c00062{letter-spacing:-0.525600px;}
.ls4e_c00062{letter-spacing:-0.511200px;}
.lsa3_c00062{letter-spacing:-0.504000px;}
.ls93_c00062{letter-spacing:-0.496800px;}
.ls50_c00062{letter-spacing:-0.489600px;}
.ls52_c00062{letter-spacing:-0.482400px;}
.ls80_c00062{letter-spacing:-0.475200px;}
.ls5d_c00062{letter-spacing:-0.468000px;}
.ls61_c00062{letter-spacing:-0.460800px;}
.ls57_c00062{letter-spacing:-0.453600px;}
.ls9c_c00062{letter-spacing:-0.424800px;}
.ls4d_c00062{letter-spacing:-0.396000px;}
.ls95_c00062{letter-spacing:-0.381600px;}
.ls5f_c00062{letter-spacing:-0.360000px;}
.ls76_c00062{letter-spacing:-0.352800px;}
.ls4c_c00062{letter-spacing:-0.345600px;}
.ls88_c00062{letter-spacing:-0.338400px;}
.ls92_c00062{letter-spacing:-0.324000px;}
.ls67_c00062{letter-spacing:-0.316800px;}
.ls8f_c00062{letter-spacing:-0.302400px;}
.ls6a_c00062{letter-spacing:-0.295200px;}
.ls9a_c00062{letter-spacing:-0.266400px;}
.ls90_c00062{letter-spacing:-0.244800px;}
.ls68_c00062{letter-spacing:-0.230400px;}
.lsa4_c00062{letter-spacing:-0.223200px;}
.ls83_c00062{letter-spacing:-0.201600px;}
.ls94_c00062{letter-spacing:-0.194400px;}
.ls69_c00062{letter-spacing:-0.180000px;}
.ls5a_c00062{letter-spacing:-0.165600px;}
.ls8e_c00062{letter-spacing:-0.158400px;}
.ls84_c00062{letter-spacing:-0.144000px;}
.ls6d_c00062{letter-spacing:-0.136800px;}
.ls77_c00062{letter-spacing:-0.115200px;}
.ls72_c00062{letter-spacing:-0.108000px;}
.ls82_c00062{letter-spacing:-0.100800px;}
.ls5e_c00062{letter-spacing:-0.093600px;}
.ls7f_c00062{letter-spacing:-0.086400px;}
.ls75_c00062{letter-spacing:-0.079200px;}
.ls8d_c00062{letter-spacing:-0.072000px;}
.ls81_c00062{letter-spacing:-0.057600px;}
.ls6f_c00062{letter-spacing:-0.050400px;}
.ls66_c00062{letter-spacing:-0.036000px;}
.ls56_c00062{letter-spacing:-0.028800px;}
.ls6c_c00062{letter-spacing:-0.021600px;}
.ls59_c00062{letter-spacing:-0.014400px;}
.ls4f_c00062{letter-spacing:0.000000px;}
.ls70_c00062{letter-spacing:0.007200px;}
.ls91_c00062{letter-spacing:0.021600px;}
.ls41_c00062{letter-spacing:0.028800px;}
.ls79_c00062{letter-spacing:0.036000px;}
.ls1e_c00062{letter-spacing:0.043200px;}
.ls1c_c00062{letter-spacing:0.050400px;}
.ls9_c00062{letter-spacing:0.057600px;}
.ls8b_c00062{letter-spacing:0.063180px;}
.ls19_c00062{letter-spacing:0.079200px;}
.ls23_c00062{letter-spacing:0.108000px;}
.ls1b_c00062{letter-spacing:0.115200px;}
.ls36_c00062{letter-spacing:0.122400px;}
.ls1a_c00062{letter-spacing:0.129600px;}
.ls31_c00062{letter-spacing:0.136800px;}
.ls1_c00062{letter-spacing:0.144000px;}
.ls6_c00062{letter-spacing:0.151200px;}
.ls86_c00062{letter-spacing:0.158400px;}
.lsc_c00062{letter-spacing:0.168480px;}
.ls17_c00062{letter-spacing:0.172800px;}
.ls7_c00062{letter-spacing:0.180000px;}
.ls20_c00062{letter-spacing:0.187200px;}
.ls29_c00062{letter-spacing:0.194400px;}
.lsb_c00062{letter-spacing:0.201600px;}
.ls44_c00062{letter-spacing:0.208800px;}
.ls35_c00062{letter-spacing:0.216000px;}
.ls3a_c00062{letter-spacing:0.223200px;}
.ls2f_c00062{letter-spacing:0.230400px;}
.ls3_c00062{letter-spacing:0.237600px;}
.ls45_c00062{letter-spacing:0.244800px;}
.ls27_c00062{letter-spacing:0.259200px;}
.ls33_c00062{letter-spacing:0.288000px;}
.lsa5_c00062{letter-spacing:0.295200px;}
.ls1f_c00062{letter-spacing:0.302400px;}
.ls49_c00062{letter-spacing:0.309600px;}
.ls8_c00062{letter-spacing:0.324000px;}
.ls53_c00062{letter-spacing:0.331200px;}
.lsf_c00062{letter-spacing:0.345600px;}
.ls34_c00062{letter-spacing:0.360000px;}
.ls4a_c00062{letter-spacing:0.365040px;}
.ls2d_c00062{letter-spacing:0.396000px;}
.ls2e_c00062{letter-spacing:0.403200px;}
.ls2c_c00062{letter-spacing:0.417600px;}
.ls3c_c00062{letter-spacing:0.424800px;}
.ls26_c00062{letter-spacing:0.432000px;}
.ls2_c00062{letter-spacing:0.439200px;}
.lsa_c00062{letter-spacing:0.446400px;}
.ls11_c00062{letter-spacing:0.453600px;}
.lse_c00062{letter-spacing:0.460800px;}
.ls10_c00062{letter-spacing:0.475200px;}
.ls2b_c00062{letter-spacing:0.482400px;}
.ls16_c00062{letter-spacing:0.489600px;}
.ls4_c00062{letter-spacing:0.511200px;}
.ls5_c00062{letter-spacing:0.519480px;}
.ls24_c00062{letter-spacing:0.525600px;}
.ls89_c00062{letter-spacing:0.526500px;}
.lsa0_c00062{letter-spacing:0.532800px;}
.ls21_c00062{letter-spacing:0.554400px;}
.ls32_c00062{letter-spacing:0.597600px;}
.ls37_c00062{letter-spacing:0.604800px;}
.ls25_c00062{letter-spacing:0.612000px;}
.ls30_c00062{letter-spacing:0.633600px;}
.ls28_c00062{letter-spacing:0.648000px;}
.ls38_c00062{letter-spacing:0.676800px;}
.ls5c_c00062{letter-spacing:0.684000px;}
.ls22_c00062{letter-spacing:0.698400px;}
.ls43_c00062{letter-spacing:0.712800px;}
.ls12_c00062{letter-spacing:0.723060px;}
.lsa6_c00062{letter-spacing:0.730080px;}
.ls39_c00062{letter-spacing:0.748800px;}
.lsd_c00062{letter-spacing:0.765180px;}
.ls40_c00062{letter-spacing:0.777600px;}
.ls42_c00062{letter-spacing:0.813600px;}
.ls3e_c00062{letter-spacing:0.835200px;}
.ls14_c00062{letter-spacing:0.849420px;}
.ls15_c00062{letter-spacing:0.898560px;}
.ls3b_c00062{letter-spacing:1.109160px;}
.ls18_c00062{letter-spacing:1.209600px;}
.ls46_c00062{letter-spacing:1.274400px;}
.ls48_c00062{letter-spacing:1.296000px;}
.ls2a_c00062{letter-spacing:1.353600px;}
.ls3f_c00062{letter-spacing:1.382400px;}
.ls13_c00062{letter-spacing:1.382940px;}
.ls47_c00062{letter-spacing:1.389600px;}
.ls4b_c00062{letter-spacing:1.532640px;}
.ls0_c00062{letter-spacing:1.872540px;}
.ls1d_c00062{letter-spacing:2.016000px;}
.ls3d_c00062{letter-spacing:2.736000px;}
.ls71_c00062{letter-spacing:3.600000px;}
.ls7e_c00062{letter-spacing:4.560000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{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__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00062{word-spacing:0.000000px;}
._17_c00062{margin-left:-6.973200px;}
._0_c00062{margin-left:-5.112240px;}
._16_c00062{margin-left:-2.232000px;}
._a_c00062{margin-left:-1.080000px;}
._d_c00062{width:1.497600px;}
._c_c00062{width:2.649600px;}
._e_c00062{width:3.844800px;}
._b_c00062{width:4.882920px;}
._8_c00062{width:6.788280px;}
._6_c00062{width:8.353320px;}
._18_c00062{width:9.360480px;}
._7_c00062{width:10.388280px;}
._9_c00062{width:12.024000px;}
._3_c00062{width:13.104000px;}
._2_c00062{width:14.205600px;}
._f_c00062{width:15.513960px;}
._1_c00062{width:16.776000px;}
._4_c00062{width:18.813600px;}
._5_c00062{width:20.008800px;}
._10_c00062{width:21.254400px;}
._11_c00062{width:23.099640px;}
._12_c00062{width:26.229600px;}
._15_c00062{width:27.547200px;}
._14_c00062{width:29.224800px;}
._13_c00062{width:30.470400px;}
.fc0_c00062{color:transparent;}
.fs7_c00062{font-size:58.800000px;}
.fs0_c00062{font-size:61.800000px;}
.fs2_c00062{font-size:70.200000px;}
.fs3_c00062{font-size:70.800000px;}
.fs5_c00062{font-size:71.400000px;}
.fs1_c00062{font-size:72.000000px;}
.fs6_c00062{font-size:78.600000px;}
.fs4_c00062{font-size:91.200000px;}
.y0_c00062{bottom:0.000000px;}
.y1d_c00062{bottom:65.880000px;}
.y1c_c00062{bottom:286.938000px;}
.y1b_c00062{bottom:318.597000px;}
.y1a_c00062{bottom:349.935000px;}
.y19_c00062{bottom:380.895000px;}
.y18_c00062{bottom:411.855000px;}
.y17_c00062{bottom:443.175000px;}
.y16_c00062{bottom:473.775000px;}
.y15_c00062{bottom:504.735000px;}
.y14_c00062{bottom:566.277000px;}
.y13_c00062{bottom:597.255000px;}
.y12_c00062{bottom:627.855000px;}
.y11_c00062{bottom:658.815000px;}
.y10_c00062{bottom:689.775000px;}
.yf_c00062{bottom:720.735000px;}
.ye_c00062{bottom:752.040000px;}
.yc_c00062{bottom:782.997000px;}
.yd_c00062{bottom:783.000000px;}
.yb_c00062{bottom:813.975000px;}
.ya_c00062{bottom:844.935000px;}
.y9_c00062{bottom:844.938000px;}
.y8_c00062{bottom:875.880000px;}
.y7_c00062{bottom:937.458000px;}
.y6_c00062{bottom:968.037000px;}
.y5_c00062{bottom:998.655000px;}
.y4_c00062{bottom:1055.175000px;}
.y3_c00062{bottom:1085.775000px;}
.y2_c00062{bottom:1117.455000px;}
.y1_c00062{bottom:1194.495000px;}
.h7_c00062{height:57.708984px;}
.h2_c00062{height:60.653320px;}
.h3_c00062{height:70.664062px;}
.h4_c00062{height:70.676062px;}
.h6_c00062{height:81.977344px;}
.h5_c00062{height:95.118750px;}
.h1_c00062{height:1263.000000px;}
.h0_c00062{height:1263.240000px;}
.w1_c00062{width:892.500000px;}
.w0_c00062{width:892.800000px;}
.x0_c00062{left:0.000000px;}
.x15_c00062{left:119.646000px;}
.x6_c00062{left:121.230000px;}
.x3_c00062{left:122.241000px;}
.x1_c00062{left:123.675000px;}
.x13_c00062{left:141.300000px;}
.x14_c00062{left:173.736000px;}
.x2_c00062{left:177.051000px;}
.xb_c00062{left:321.225000px;}
.x16_c00062{left:330.765000px;}
.xc_c00062{left:340.935000px;}
.x10_c00062{left:351.825000px;}
.x17_c00062{left:356.925000px;}
.xd_c00062{left:368.895000px;}
.xe_c00062{left:378.375000px;}
.x4_c00062{left:385.695000px;}
.x18_c00062{left:403.095000px;}
.x5_c00062{left:408.060000px;}
.xf_c00062{left:417.930000px;}
.x1d_c00062{left:426.030000px;}
.x19_c00062{left:441.435000px;}
.x7_c00062{left:478.560000px;}
.x8_c00062{left:508.530000px;}
.x1a_c00062{left:522.870000px;}
.x11_c00062{left:584.835000px;}
.x1b_c00062{left:588.375000px;}
.x12_c00062{left:603.555000px;}
.x1c_c00062{left:613.590000px;}
.x9_c00062{left:707.865000px;}
.xa_c00062{left:743.370000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls87_c00062{letter-spacing:-2.240000pt;}
.ls73_c00062{letter-spacing:-2.176000pt;}
.ls65_c00062{letter-spacing:-1.849600pt;}
.lsa2_c00062{letter-spacing:-1.728000pt;}
.ls5b_c00062{letter-spacing:-1.708800pt;}
.ls96_c00062{letter-spacing:-1.683200pt;}
.ls6e_c00062{letter-spacing:-1.625600pt;}
.ls7d_c00062{letter-spacing:-1.606400pt;}
.ls9b_c00062{letter-spacing:-1.600000pt;}
.ls74_c00062{letter-spacing:-1.587200pt;}
.ls7b_c00062{letter-spacing:-1.529600pt;}
.ls60_c00062{letter-spacing:-1.510400pt;}
.ls98_c00062{letter-spacing:-1.504000pt;}
.ls8c_c00062{letter-spacing:-1.446400pt;}
.ls7c_c00062{letter-spacing:-1.408000pt;}
.ls85_c00062{letter-spacing:-1.344000pt;}
.ls99_c00062{letter-spacing:-1.228800pt;}
.ls7a_c00062{letter-spacing:-1.081600pt;}
.ls62_c00062{letter-spacing:-1.068800pt;}
.ls51_c00062{letter-spacing:-1.049600pt;}
.ls54_c00062{letter-spacing:-0.908800pt;}
.ls55_c00062{letter-spacing:-0.896000pt;}
.ls63_c00062{letter-spacing:-0.876800pt;}
.ls9d_c00062{letter-spacing:-0.832000pt;}
.ls9f_c00062{letter-spacing:-0.780800pt;}
.ls6b_c00062{letter-spacing:-0.774400pt;}
.ls9e_c00062{letter-spacing:-0.723200pt;}
.ls78_c00062{letter-spacing:-0.640000pt;}
.ls58_c00062{letter-spacing:-0.588800pt;}
.ls97_c00062{letter-spacing:-0.582400pt;}
.ls64_c00062{letter-spacing:-0.569600pt;}
.lsa7_c00062{letter-spacing:-0.559253pt;}
.ls8a_c00062{letter-spacing:-0.544000pt;}
.lsa1_c00062{letter-spacing:-0.467200pt;}
.ls4e_c00062{letter-spacing:-0.454400pt;}
.lsa3_c00062{letter-spacing:-0.448000pt;}
.ls93_c00062{letter-spacing:-0.441600pt;}
.ls50_c00062{letter-spacing:-0.435200pt;}
.ls52_c00062{letter-spacing:-0.428800pt;}
.ls80_c00062{letter-spacing:-0.422400pt;}
.ls5d_c00062{letter-spacing:-0.416000pt;}
.ls61_c00062{letter-spacing:-0.409600pt;}
.ls57_c00062{letter-spacing:-0.403200pt;}
.ls9c_c00062{letter-spacing:-0.377600pt;}
.ls4d_c00062{letter-spacing:-0.352000pt;}
.ls95_c00062{letter-spacing:-0.339200pt;}
.ls5f_c00062{letter-spacing:-0.320000pt;}
.ls76_c00062{letter-spacing:-0.313600pt;}
.ls4c_c00062{letter-spacing:-0.307200pt;}
.ls88_c00062{letter-spacing:-0.300800pt;}
.ls92_c00062{letter-spacing:-0.288000pt;}
.ls67_c00062{letter-spacing:-0.281600pt;}
.ls8f_c00062{letter-spacing:-0.268800pt;}
.ls6a_c00062{letter-spacing:-0.262400pt;}
.ls9a_c00062{letter-spacing:-0.236800pt;}
.ls90_c00062{letter-spacing:-0.217600pt;}
.ls68_c00062{letter-spacing:-0.204800pt;}
.lsa4_c00062{letter-spacing:-0.198400pt;}
.ls83_c00062{letter-spacing:-0.179200pt;}
.ls94_c00062{letter-spacing:-0.172800pt;}
.ls69_c00062{letter-spacing:-0.160000pt;}
.ls5a_c00062{letter-spacing:-0.147200pt;}
.ls8e_c00062{letter-spacing:-0.140800pt;}
.ls84_c00062{letter-spacing:-0.128000pt;}
.ls6d_c00062{letter-spacing:-0.121600pt;}
.ls77_c00062{letter-spacing:-0.102400pt;}
.ls72_c00062{letter-spacing:-0.096000pt;}
.ls82_c00062{letter-spacing:-0.089600pt;}
.ls5e_c00062{letter-spacing:-0.083200pt;}
.ls7f_c00062{letter-spacing:-0.076800pt;}
.ls75_c00062{letter-spacing:-0.070400pt;}
.ls8d_c00062{letter-spacing:-0.064000pt;}
.ls81_c00062{letter-spacing:-0.051200pt;}
.ls6f_c00062{letter-spacing:-0.044800pt;}
.ls66_c00062{letter-spacing:-0.032000pt;}
.ls56_c00062{letter-spacing:-0.025600pt;}
.ls6c_c00062{letter-spacing:-0.019200pt;}
.ls59_c00062{letter-spacing:-0.012800pt;}
.ls4f_c00062{letter-spacing:0.000000pt;}
.ls70_c00062{letter-spacing:0.006400pt;}
.ls91_c00062{letter-spacing:0.019200pt;}
.ls41_c00062{letter-spacing:0.025600pt;}
.ls79_c00062{letter-spacing:0.032000pt;}
.ls1e_c00062{letter-spacing:0.038400pt;}
.ls1c_c00062{letter-spacing:0.044800pt;}
.ls9_c00062{letter-spacing:0.051200pt;}
.ls8b_c00062{letter-spacing:0.056160pt;}
.ls19_c00062{letter-spacing:0.070400pt;}
.ls23_c00062{letter-spacing:0.096000pt;}
.ls1b_c00062{letter-spacing:0.102400pt;}
.ls36_c00062{letter-spacing:0.108800pt;}
.ls1a_c00062{letter-spacing:0.115200pt;}
.ls31_c00062{letter-spacing:0.121600pt;}
.ls1_c00062{letter-spacing:0.128000pt;}
.ls6_c00062{letter-spacing:0.134400pt;}
.ls86_c00062{letter-spacing:0.140800pt;}
.lsc_c00062{letter-spacing:0.149760pt;}
.ls17_c00062{letter-spacing:0.153600pt;}
.ls7_c00062{letter-spacing:0.160000pt;}
.ls20_c00062{letter-spacing:0.166400pt;}
.ls29_c00062{letter-spacing:0.172800pt;}
.lsb_c00062{letter-spacing:0.179200pt;}
.ls44_c00062{letter-spacing:0.185600pt;}
.ls35_c00062{letter-spacing:0.192000pt;}
.ls3a_c00062{letter-spacing:0.198400pt;}
.ls2f_c00062{letter-spacing:0.204800pt;}
.ls3_c00062{letter-spacing:0.211200pt;}
.ls45_c00062{letter-spacing:0.217600pt;}
.ls27_c00062{letter-spacing:0.230400pt;}
.ls33_c00062{letter-spacing:0.256000pt;}
.lsa5_c00062{letter-spacing:0.262400pt;}
.ls1f_c00062{letter-spacing:0.268800pt;}
.ls49_c00062{letter-spacing:0.275200pt;}
.ls8_c00062{letter-spacing:0.288000pt;}
.ls53_c00062{letter-spacing:0.294400pt;}
.lsf_c00062{letter-spacing:0.307200pt;}
.ls34_c00062{letter-spacing:0.320000pt;}
.ls4a_c00062{letter-spacing:0.324480pt;}
.ls2d_c00062{letter-spacing:0.352000pt;}
.ls2e_c00062{letter-spacing:0.358400pt;}
.ls2c_c00062{letter-spacing:0.371200pt;}
.ls3c_c00062{letter-spacing:0.377600pt;}
.ls26_c00062{letter-spacing:0.384000pt;}
.ls2_c00062{letter-spacing:0.390400pt;}
.lsa_c00062{letter-spacing:0.396800pt;}
.ls11_c00062{letter-spacing:0.403200pt;}
.lse_c00062{letter-spacing:0.409600pt;}
.ls10_c00062{letter-spacing:0.422400pt;}
.ls2b_c00062{letter-spacing:0.428800pt;}
.ls16_c00062{letter-spacing:0.435200pt;}
.ls4_c00062{letter-spacing:0.454400pt;}
.ls5_c00062{letter-spacing:0.461760pt;}
.ls24_c00062{letter-spacing:0.467200pt;}
.ls89_c00062{letter-spacing:0.468000pt;}
.lsa0_c00062{letter-spacing:0.473600pt;}
.ls21_c00062{letter-spacing:0.492800pt;}
.ls32_c00062{letter-spacing:0.531200pt;}
.ls37_c00062{letter-spacing:0.537600pt;}
.ls25_c00062{letter-spacing:0.544000pt;}
.ls30_c00062{letter-spacing:0.563200pt;}
.ls28_c00062{letter-spacing:0.576000pt;}
.ls38_c00062{letter-spacing:0.601600pt;}
.ls5c_c00062{letter-spacing:0.608000pt;}
.ls22_c00062{letter-spacing:0.620800pt;}
.ls43_c00062{letter-spacing:0.633600pt;}
.ls12_c00062{letter-spacing:0.642720pt;}
.lsa6_c00062{letter-spacing:0.648960pt;}
.ls39_c00062{letter-spacing:0.665600pt;}
.lsd_c00062{letter-spacing:0.680160pt;}
.ls40_c00062{letter-spacing:0.691200pt;}
.ls42_c00062{letter-spacing:0.723200pt;}
.ls3e_c00062{letter-spacing:0.742400pt;}
.ls14_c00062{letter-spacing:0.755040pt;}
.ls15_c00062{letter-spacing:0.798720pt;}
.ls3b_c00062{letter-spacing:0.985920pt;}
.ls18_c00062{letter-spacing:1.075200pt;}
.ls46_c00062{letter-spacing:1.132800pt;}
.ls48_c00062{letter-spacing:1.152000pt;}
.ls2a_c00062{letter-spacing:1.203200pt;}
.ls3f_c00062{letter-spacing:1.228800pt;}
.ls13_c00062{letter-spacing:1.229280pt;}
.ls47_c00062{letter-spacing:1.235200pt;}
.ls4b_c00062{letter-spacing:1.362347pt;}
.ls0_c00062{letter-spacing:1.664480pt;}
.ls1d_c00062{letter-spacing:1.792000pt;}
.ls3d_c00062{letter-spacing:2.432000pt;}
.ls71_c00062{letter-spacing:3.200000pt;}
.ls7e_c00062{letter-spacing:4.053333pt;}
.ws0_c00062{word-spacing:0.000000pt;}
._17_c00062{margin-left:-6.198400pt;}
._0_c00062{margin-left:-4.544213pt;}
._16_c00062{margin-left:-1.984000pt;}
._a_c00062{margin-left:-0.960000pt;}
._d_c00062{width:1.331200pt;}
._c_c00062{width:2.355200pt;}
._e_c00062{width:3.417600pt;}
._b_c00062{width:4.340373pt;}
._8_c00062{width:6.034027pt;}
._6_c00062{width:7.425173pt;}
._18_c00062{width:8.320427pt;}
._7_c00062{width:9.234027pt;}
._9_c00062{width:10.688000pt;}
._3_c00062{width:11.648000pt;}
._2_c00062{width:12.627200pt;}
._f_c00062{width:13.790187pt;}
._1_c00062{width:14.912000pt;}
._4_c00062{width:16.723200pt;}
._5_c00062{width:17.785600pt;}
._10_c00062{width:18.892800pt;}
._11_c00062{width:20.533013pt;}
._12_c00062{width:23.315200pt;}
._15_c00062{width:24.486400pt;}
._14_c00062{width:25.977600pt;}
._13_c00062{width:27.084800pt;}
.fs7_c00062{font-size:52.266667pt;}
.fs0_c00062{font-size:54.933333pt;}
.fs2_c00062{font-size:62.400000pt;}
.fs3_c00062{font-size:62.933333pt;}
.fs5_c00062{font-size:63.466667pt;}
.fs1_c00062{font-size:64.000000pt;}
.fs6_c00062{font-size:69.866667pt;}
.fs4_c00062{font-size:81.066667pt;}
.y0_c00062{bottom:0.000000pt;}
.y1d_c00062{bottom:58.560000pt;}
.y1c_c00062{bottom:255.056000pt;}
.y1b_c00062{bottom:283.197333pt;}
.y1a_c00062{bottom:311.053333pt;}
.y19_c00062{bottom:338.573333pt;}
.y18_c00062{bottom:366.093333pt;}
.y17_c00062{bottom:393.933333pt;}
.y16_c00062{bottom:421.133333pt;}
.y15_c00062{bottom:448.653333pt;}
.y14_c00062{bottom:503.357333pt;}
.y13_c00062{bottom:530.893333pt;}
.y12_c00062{bottom:558.093333pt;}
.y11_c00062{bottom:585.613333pt;}
.y10_c00062{bottom:613.133333pt;}
.yf_c00062{bottom:640.653333pt;}
.ye_c00062{bottom:668.480000pt;}
.yc_c00062{bottom:695.997333pt;}
.yd_c00062{bottom:696.000000pt;}
.yb_c00062{bottom:723.533333pt;}
.ya_c00062{bottom:751.053333pt;}
.y9_c00062{bottom:751.056000pt;}
.y8_c00062{bottom:778.560000pt;}
.y7_c00062{bottom:833.296000pt;}
.y6_c00062{bottom:860.477333pt;}
.y5_c00062{bottom:887.693333pt;}
.y4_c00062{bottom:937.933333pt;}
.y3_c00062{bottom:965.133333pt;}
.y2_c00062{bottom:993.293333pt;}
.y1_c00062{bottom:1061.773333pt;}
.h7_c00062{height:51.296875pt;}
.h2_c00062{height:53.914062pt;}
.h3_c00062{height:62.812500pt;}
.h4_c00062{height:62.823167pt;}
.h6_c00062{height:72.868750pt;}
.h5_c00062{height:84.550000pt;}
.h1_c00062{height:1122.666667pt;}
.h0_c00062{height:1122.880000pt;}
.w1_c00062{width:793.333333pt;}
.w0_c00062{width:793.600000pt;}
.x0_c00062{left:0.000000pt;}
.x15_c00062{left:106.352000pt;}
.x6_c00062{left:107.760000pt;}
.x3_c00062{left:108.658667pt;}
.x1_c00062{left:109.933333pt;}
.x13_c00062{left:125.600000pt;}
.x14_c00062{left:154.432000pt;}
.x2_c00062{left:157.378667pt;}
.xb_c00062{left:285.533333pt;}
.x16_c00062{left:294.013333pt;}
.xc_c00062{left:303.053333pt;}
.x10_c00062{left:312.733333pt;}
.x17_c00062{left:317.266667pt;}
.xd_c00062{left:327.906667pt;}
.xe_c00062{left:336.333333pt;}
.x4_c00062{left:342.840000pt;}
.x18_c00062{left:358.306667pt;}
.x5_c00062{left:362.720000pt;}
.xf_c00062{left:371.493333pt;}
.x1d_c00062{left:378.693333pt;}
.x19_c00062{left:392.386667pt;}
.x7_c00062{left:425.386667pt;}
.x8_c00062{left:452.026667pt;}
.x1a_c00062{left:464.773333pt;}
.x11_c00062{left:519.853333pt;}
.x1b_c00062{left:523.000000pt;}
.x12_c00062{left:536.493333pt;}
.x1c_c00062{left:545.413333pt;}
.x9_c00062{left:629.213333pt;}
.xa_c00062{left:660.773333pt;}
}





/* 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_c00063 {
    display:none;
  }
  .loading-indicator_c00063.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00063 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_c00063 { 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_c00063" -> "#page-container .classname_c00063")
 */
.pf_c00063 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00063 { /* 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_c00063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00063 { /* 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_c00063 { /* 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_c00063 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00063 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00063 {overflow:visible;}
  }
}
.c_c00063 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00063 { /* 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_c00063:after { /* webkit #35443 */
  content: '';
}
.t_c00063:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00063 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 */
}
.__c00063 { /* 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_c00063 { /* info for Javascript */
  display:none;
}
.l_c00063 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00063 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00063 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00063: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_c00063 {
    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_c00063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00063.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_c00063 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00063;src:url('chunks/assets/font_c33e891d7306f121f4bbd9d7.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.284668;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_c00063;src:url('chunks/assets/font_73e232cc23fe9503447da65c.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.311035;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_c00063;src:url('chunks/assets/font_5566381921ae5be32d2d1616.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.284180;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_c00063;src:url('chunks/assets/font_49ab2f54b2d1c9e600f58670.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;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;}
.m5_c00063{transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);}
.m8_c00063{transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);}
.m6_c00063{transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);}
.mb_c00063{transform:matrix(0.245881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245881,0.000000,0.000000,0.250000,0,0);}
.m9_c00063{transform:matrix(0.247027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247027,0.000000,0.000000,0.250000,0,0);}
.m4_c00063{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m3_c00063{transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);}
.m7_c00063{transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);}
.ma_c00063{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.m2_c00063{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_c00063{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.m0_c00063{transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls19_c00063{letter-spacing:-2.541000px;}
.ls42_c00063{letter-spacing:-2.511960px;}
.ls63_c00063{letter-spacing:-2.497440px;}
.ls26_c00063{letter-spacing:-2.410320px;}
.ls32_c00063{letter-spacing:-2.265120px;}
.ls75_c00063{letter-spacing:-2.243340px;}
.ls4e_c00063{letter-spacing:-2.228820px;}
.ls65_c00063{letter-spacing:-2.226000px;}
.ls20_c00063{letter-spacing:-2.207040px;}
.ls76_c00063{letter-spacing:-2.185260px;}
.ls17_c00063{letter-spacing:-2.170740px;}
.ls81_c00063{letter-spacing:-2.037000px;}
.ls34_c00063{letter-spacing:-1.894860px;}
.ls2c_c00063{letter-spacing:-1.880340px;}
.ls2e_c00063{letter-spacing:-1.611720px;}
.ls16_c00063{letter-spacing:-1.568160px;}
.ls14_c00063{letter-spacing:-1.546380px;}
.ls48_c00063{letter-spacing:-1.531860px;}
.ls36_c00063{letter-spacing:-1.481040px;}
.ls60_c00063{letter-spacing:-1.466520px;}
.ls28_c00063{letter-spacing:-1.452000px;}
.ls7f_c00063{letter-spacing:-1.422960px;}
.ls47_c00063{letter-spacing:-1.408440px;}
.ls1c_c00063{letter-spacing:-1.364880px;}
.ls6e_c00063{letter-spacing:-1.263240px;}
.ls3c_c00063{letter-spacing:-1.241460px;}
.ls61_c00063{letter-spacing:-1.183380px;}
.ls3f_c00063{letter-spacing:-1.176120px;}
.ls7b_c00063{letter-spacing:-1.118040px;}
.ls3a_c00063{letter-spacing:-1.081740px;}
.ls7a_c00063{letter-spacing:-1.067220px;}
.ls25_c00063{letter-spacing:-0.980100px;}
.ls56_c00063{letter-spacing:-0.951060px;}
.ls6d_c00063{letter-spacing:-0.922020px;}
.ls80_c00063{letter-spacing:-0.900240px;}
.ls24_c00063{letter-spacing:-0.892980px;}
.ls6b_c00063{letter-spacing:-0.863940px;}
.ls58_c00063{letter-spacing:-0.849420px;}
.ls1d_c00063{letter-spacing:-0.834900px;}
.ls77_c00063{letter-spacing:-0.820380px;}
.ls52_c00063{letter-spacing:-0.813120px;}
.ls64_c00063{letter-spacing:-0.805860px;}
.ls6f_c00063{letter-spacing:-0.798600px;}
.ls1f_c00063{letter-spacing:-0.791340px;}
.ls54_c00063{letter-spacing:-0.769560px;}
.ls22_c00063{letter-spacing:-0.762300px;}
.ls59_c00063{letter-spacing:-0.740520px;}
.ls4d_c00063{letter-spacing:-0.726000px;}
.ls4f_c00063{letter-spacing:-0.718740px;}
.ls5c_c00063{letter-spacing:-0.689700px;}
.ls5b_c00063{letter-spacing:-0.682440px;}
.ls49_c00063{letter-spacing:-0.675180px;}
.ls41_c00063{letter-spacing:-0.667920px;}
.ls23_c00063{letter-spacing:-0.653400px;}
.ls67_c00063{letter-spacing:-0.617100px;}
.ls7d_c00063{letter-spacing:-0.602580px;}
.ls78_c00063{letter-spacing:-0.595320px;}
.ls2d_c00063{letter-spacing:-0.588060px;}
.ls29_c00063{letter-spacing:-0.580800px;}
.ls18_c00063{letter-spacing:-0.566280px;}
.ls3d_c00063{letter-spacing:-0.559020px;}
.ls2f_c00063{letter-spacing:-0.544500px;}
.ls74_c00063{letter-spacing:-0.537240px;}
.ls68_c00063{letter-spacing:-0.529980px;}
.ls44_c00063{letter-spacing:-0.522720px;}
.ls62_c00063{letter-spacing:-0.515460px;}
.ls73_c00063{letter-spacing:-0.500940px;}
.ls3b_c00063{letter-spacing:-0.493680px;}
.ls45_c00063{letter-spacing:-0.486420px;}
.ls37_c00063{letter-spacing:-0.479160px;}
.ls27_c00063{letter-spacing:-0.471900px;}
.ls2a_c00063{letter-spacing:-0.457380px;}
.ls57_c00063{letter-spacing:-0.450120px;}
.ls33_c00063{letter-spacing:-0.442860px;}
.ls6a_c00063{letter-spacing:-0.435600px;}
.ls69_c00063{letter-spacing:-0.428340px;}
.ls7e_c00063{letter-spacing:-0.421080px;}
.ls12_c00063{letter-spacing:-0.410640px;}
.ls1a_c00063{letter-spacing:-0.399300px;}
.ls72_c00063{letter-spacing:-0.384780px;}
.ls30_c00063{letter-spacing:-0.370260px;}
.ls35_c00063{letter-spacing:-0.363000px;}
.ls3e_c00063{letter-spacing:-0.355740px;}
.ls5a_c00063{letter-spacing:-0.348480px;}
.ls50_c00063{letter-spacing:-0.333960px;}
.ls71_c00063{letter-spacing:-0.312180px;}
.ls4b_c00063{letter-spacing:-0.297660px;}
.ls4a_c00063{letter-spacing:-0.290400px;}
.ls46_c00063{letter-spacing:-0.283140px;}
.ls40_c00063{letter-spacing:-0.275880px;}
.ls53_c00063{letter-spacing:-0.268620px;}
.ls31_c00063{letter-spacing:-0.239580px;}
.ls51_c00063{letter-spacing:-0.232320px;}
.ls1e_c00063{letter-spacing:-0.225060px;}
.ls4c_c00063{letter-spacing:-0.217800px;}
.ls5f_c00063{letter-spacing:-0.210540px;}
.ls6c_c00063{letter-spacing:-0.188760px;}
.ls55_c00063{letter-spacing:-0.181500px;}
.ls79_c00063{letter-spacing:-0.174240px;}
.ls5d_c00063{letter-spacing:-0.166980px;}
.ls5e_c00063{letter-spacing:-0.152460px;}
.ls43_c00063{letter-spacing:-0.123420px;}
.ls66_c00063{letter-spacing:-0.101640px;}
.ls39_c00063{letter-spacing:-0.094380px;}
.ls2b_c00063{letter-spacing:-0.087120px;}
.ls15_c00063{letter-spacing:-0.014520px;}
.ls1b_c00063{letter-spacing:0.000000px;}
.lsd_c00063{letter-spacing:0.036300px;}
.ls21_c00063{letter-spacing:0.050820px;}
.ls5_c00063{letter-spacing:0.130680px;}
.lsb_c00063{letter-spacing:0.159720px;}
.lsc_c00063{letter-spacing:0.174240px;}
.ls7_c00063{letter-spacing:0.358020px;}
.ls0_c00063{letter-spacing:0.389760px;}
.lse_c00063{letter-spacing:0.428220px;}
.ls10_c00063{letter-spacing:0.526500px;}
.ls6_c00063{letter-spacing:0.568620px;}
.lsf_c00063{letter-spacing:0.575640px;}
.ls70_c00063{letter-spacing:0.631800px;}
.ls9_c00063{letter-spacing:0.758160px;}
.ls3_c00063{letter-spacing:0.849120px;}
.ls7c_c00063{letter-spacing:0.885720px;}
.ls38_c00063{letter-spacing:0.900240px;}
.lsa_c00063{letter-spacing:1.144260px;}
.ls8_c00063{letter-spacing:1.165320px;}
.ls4_c00063{letter-spacing:1.172340px;}
.ls2_c00063{letter-spacing:1.419840px;}
.ls13_c00063{letter-spacing:1.872240px;}
.ls1_c00063{letter-spacing:2.129760px;}
.ls11_c00063{letter-spacing:2.940000px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{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__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00063{word-spacing:0.000000px;}
._15_c00063{margin-left:-4.415580px;}
._1_c00063{margin-left:-3.070560px;}
._1b_c00063{margin-left:-1.364880px;}
._0_c00063{width:2.040960px;}
._16_c00063{width:3.084480px;}
._2_c00063{width:4.306800px;}
._8_c00063{width:6.060780px;}
._17_c00063{width:7.464300px;}
._4_c00063{width:8.726520px;}
._9_c00063{width:10.207560px;}
._6_c00063{width:11.325600px;}
._a_c00063{width:12.538500px;}
._3_c00063{width:13.786740px;}
._7_c00063{width:15.696120px;}
._5_c00063{width:17.496600px;}
._e_c00063{width:18.817920px;}
._b_c00063{width:20.473200px;}
._c_c00063{width:22.121220px;}
._d_c00063{width:24.103200px;}
._14_c00063{width:25.286580px;}
._1d_c00063{width:26.920080px;}
._1c_c00063{width:28.284960px;}
._1f_c00063{width:30.971160px;}
._20_c00063{width:32.394120px;}
._1e_c00063{width:33.679140px;}
._1a_c00063{width:37.098600px;}
._19_c00063{width:39.334680px;}
._18_c00063{width:40.641480px;}
._10_c00063{width:42.129780px;}
._12_c00063{width:43.632600px;}
._f_c00063{width:44.692560px;}
._11_c00063{width:47.611080px;}
._13_c00063{width:49.055820px;}
.fc0_c00063{color:transparent;}
.fs5_c00063{font-size:58.200000px;}
.fs0_c00063{font-size:58.800000px;}
.fs4_c00063{font-size:63.600000px;}
.fs1_c00063{font-size:69.600000px;}
.fs3_c00063{font-size:70.200000px;}
.fs2_c00063{font-size:72.600000px;}
.y0_c00063{bottom:0.000000px;}
.y29_c00063{bottom:69.480015px;}
.y28_c00063{bottom:132.842115px;}
.y26_c00063{bottom:163.075965px;}
.y27_c00063{bottom:163.080015px;}
.y25_c00063{bottom:193.695015px;}
.y23_c00063{bottom:254.890215px;}
.y24_c00063{bottom:254.895015px;}
.y21_c00063{bottom:316.451115px;}
.y22_c00063{bottom:316.455015px;}
.y20_c00063{bottom:347.415015px;}
.y1f_c00063{bottom:378.008115px;}
.y1d_c00063{bottom:409.329465px;}
.y1e_c00063{bottom:409.335015px;}
.y1c_c00063{bottom:471.257265px;}
.y1a_c00063{bottom:501.832965px;}
.y1b_c00063{bottom:501.840015px;}
.y19_c00063{bottom:532.815015px;}
.y18_c00063{bottom:563.403315px;}
.y17_c00063{bottom:625.331115px;}
.y15_c00063{bottom:656.291115px;}
.y16_c00063{bottom:656.295015px;}
.y13_c00063{bottom:687.251115px;}
.y14_c00063{bottom:687.255015px;}
.y11_c00063{bottom:718.209465px;}
.y12_c00063{bottom:718.215015px;}
.y10_c00063{bottom:749.173365px;}
.yf_c00063{bottom:780.137265px;}
.yd_c00063{bottom:810.708165px;}
.ye_c00063{bottom:810.720015px;}
.yc_c00063{bottom:871.928115px;}
.yb_c00063{bottom:903.255015px;}
.ya_c00063{bottom:903.257265px;}
.y8_c00063{bottom:933.832965px;}
.y9_c00063{bottom:933.840015px;}
.y7_c00063{bottom:964.814115px;}
.y6_c00063{bottom:995.414265px;}
.y4_c00063{bottom:1026.352965px;}
.y5_c00063{bottom:1026.360015px;}
.y3_c00063{bottom:1057.335015px;}
.y2_c00063{bottom:1118.520015px;}
.y1_c00063{bottom:1194.840015px;}
.h9_c00063{height:57.120117px;}
.h2_c00063{height:57.708984px;}
.h8_c00063{height:66.332812px;}
.h3_c00063{height:70.143750px;}
.h4_c00063{height:71.252930px;}
.h5_c00063{height:71.255930px;}
.h6_c00063{height:71.256530px;}
.h7_c00063{height:71.268530px;}
.h1_c00063{height:1263.000000px;}
.h0_c00063{height:1263.240015px;}
.w1_c00063{width:892.500000px;}
.w0_c00063{width:892.800015px;}
.x0_c00063{left:0.000000px;}
.x1_c00063{left:127.290015px;}
.xa_c00063{left:128.748165px;}
.x22_c00063{left:168.375015px;}
.x24_c00063{left:180.615015px;}
.x3_c00063{left:181.695015px;}
.x20_c00063{left:186.675015px;}
.x23_c00063{left:194.115015px;}
.x6_c00063{left:203.595015px;}
.x11_c00063{left:205.005015px;}
.x21_c00063{left:208.650015px;}
.x18_c00063{left:211.500015px;}
.x7_c00063{left:227.730015px;}
.x12_c00063{left:229.140015px;}
.x25_c00063{left:259.395015px;}
.x2_c00063{left:277.410015px;}
.x26_c00063{left:283.890015px;}
.x15_c00063{left:299.475015px;}
.x1b_c00063{left:328.425015px;}
.x8_c00063{left:334.605015px;}
.x19_c00063{left:346.875015px;}
.x1c_c00063{left:350.445015px;}
.x9_c00063{left:356.220015px;}
.x1a_c00063{left:370.830015px;}
.x27_c00063{left:425.325015px;}
.x29_c00063{left:432.165015px;}
.x13_c00063{left:440.085015px;}
.x28_c00063{left:446.715015px;}
.x4_c00063{left:455.205015px;}
.xb_c00063{left:459.525015px;}
.x14_c00063{left:465.330015px;}
.x1f_c00063{left:469.260015px;}
.x5_c00063{left:477.180015px;}
.xc_c00063{left:483.270015px;}
.xf_c00063{left:491.595015px;}
.x10_c00063{left:523.650015px;}
.x1d_c00063{left:547.035015px;}
.x1e_c00063{left:571.530015px;}
.xd_c00063{left:708.315015px;}
.x16_c00063{left:710.475015px;}
.x17_c00063{left:732.810015px;}
.xe_c00063{left:734.250015px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls19_c00063{letter-spacing:-2.258667pt;}
.ls42_c00063{letter-spacing:-2.232853pt;}
.ls63_c00063{letter-spacing:-2.219947pt;}
.ls26_c00063{letter-spacing:-2.142507pt;}
.ls32_c00063{letter-spacing:-2.013440pt;}
.ls75_c00063{letter-spacing:-1.994080pt;}
.ls4e_c00063{letter-spacing:-1.981173pt;}
.ls65_c00063{letter-spacing:-1.978667pt;}
.ls20_c00063{letter-spacing:-1.961813pt;}
.ls76_c00063{letter-spacing:-1.942453pt;}
.ls17_c00063{letter-spacing:-1.929547pt;}
.ls81_c00063{letter-spacing:-1.810667pt;}
.ls34_c00063{letter-spacing:-1.684320pt;}
.ls2c_c00063{letter-spacing:-1.671413pt;}
.ls2e_c00063{letter-spacing:-1.432640pt;}
.ls16_c00063{letter-spacing:-1.393920pt;}
.ls14_c00063{letter-spacing:-1.374560pt;}
.ls48_c00063{letter-spacing:-1.361653pt;}
.ls36_c00063{letter-spacing:-1.316480pt;}
.ls60_c00063{letter-spacing:-1.303573pt;}
.ls28_c00063{letter-spacing:-1.290667pt;}
.ls7f_c00063{letter-spacing:-1.264853pt;}
.ls47_c00063{letter-spacing:-1.251947pt;}
.ls1c_c00063{letter-spacing:-1.213227pt;}
.ls6e_c00063{letter-spacing:-1.122880pt;}
.ls3c_c00063{letter-spacing:-1.103520pt;}
.ls61_c00063{letter-spacing:-1.051893pt;}
.ls3f_c00063{letter-spacing:-1.045440pt;}
.ls7b_c00063{letter-spacing:-0.993813pt;}
.ls3a_c00063{letter-spacing:-0.961547pt;}
.ls7a_c00063{letter-spacing:-0.948640pt;}
.ls25_c00063{letter-spacing:-0.871200pt;}
.ls56_c00063{letter-spacing:-0.845387pt;}
.ls6d_c00063{letter-spacing:-0.819573pt;}
.ls80_c00063{letter-spacing:-0.800213pt;}
.ls24_c00063{letter-spacing:-0.793760pt;}
.ls6b_c00063{letter-spacing:-0.767947pt;}
.ls58_c00063{letter-spacing:-0.755040pt;}
.ls1d_c00063{letter-spacing:-0.742133pt;}
.ls77_c00063{letter-spacing:-0.729227pt;}
.ls52_c00063{letter-spacing:-0.722773pt;}
.ls64_c00063{letter-spacing:-0.716320pt;}
.ls6f_c00063{letter-spacing:-0.709867pt;}
.ls1f_c00063{letter-spacing:-0.703413pt;}
.ls54_c00063{letter-spacing:-0.684053pt;}
.ls22_c00063{letter-spacing:-0.677600pt;}
.ls59_c00063{letter-spacing:-0.658240pt;}
.ls4d_c00063{letter-spacing:-0.645333pt;}
.ls4f_c00063{letter-spacing:-0.638880pt;}
.ls5c_c00063{letter-spacing:-0.613067pt;}
.ls5b_c00063{letter-spacing:-0.606613pt;}
.ls49_c00063{letter-spacing:-0.600160pt;}
.ls41_c00063{letter-spacing:-0.593707pt;}
.ls23_c00063{letter-spacing:-0.580800pt;}
.ls67_c00063{letter-spacing:-0.548533pt;}
.ls7d_c00063{letter-spacing:-0.535627pt;}
.ls78_c00063{letter-spacing:-0.529173pt;}
.ls2d_c00063{letter-spacing:-0.522720pt;}
.ls29_c00063{letter-spacing:-0.516267pt;}
.ls18_c00063{letter-spacing:-0.503360pt;}
.ls3d_c00063{letter-spacing:-0.496907pt;}
.ls2f_c00063{letter-spacing:-0.484000pt;}
.ls74_c00063{letter-spacing:-0.477547pt;}
.ls68_c00063{letter-spacing:-0.471093pt;}
.ls44_c00063{letter-spacing:-0.464640pt;}
.ls62_c00063{letter-spacing:-0.458187pt;}
.ls73_c00063{letter-spacing:-0.445280pt;}
.ls3b_c00063{letter-spacing:-0.438827pt;}
.ls45_c00063{letter-spacing:-0.432373pt;}
.ls37_c00063{letter-spacing:-0.425920pt;}
.ls27_c00063{letter-spacing:-0.419467pt;}
.ls2a_c00063{letter-spacing:-0.406560pt;}
.ls57_c00063{letter-spacing:-0.400107pt;}
.ls33_c00063{letter-spacing:-0.393653pt;}
.ls6a_c00063{letter-spacing:-0.387200pt;}
.ls69_c00063{letter-spacing:-0.380747pt;}
.ls7e_c00063{letter-spacing:-0.374293pt;}
.ls12_c00063{letter-spacing:-0.365013pt;}
.ls1a_c00063{letter-spacing:-0.354933pt;}
.ls72_c00063{letter-spacing:-0.342027pt;}
.ls30_c00063{letter-spacing:-0.329120pt;}
.ls35_c00063{letter-spacing:-0.322667pt;}
.ls3e_c00063{letter-spacing:-0.316213pt;}
.ls5a_c00063{letter-spacing:-0.309760pt;}
.ls50_c00063{letter-spacing:-0.296853pt;}
.ls71_c00063{letter-spacing:-0.277493pt;}
.ls4b_c00063{letter-spacing:-0.264587pt;}
.ls4a_c00063{letter-spacing:-0.258133pt;}
.ls46_c00063{letter-spacing:-0.251680pt;}
.ls40_c00063{letter-spacing:-0.245227pt;}
.ls53_c00063{letter-spacing:-0.238773pt;}
.ls31_c00063{letter-spacing:-0.212960pt;}
.ls51_c00063{letter-spacing:-0.206507pt;}
.ls1e_c00063{letter-spacing:-0.200053pt;}
.ls4c_c00063{letter-spacing:-0.193600pt;}
.ls5f_c00063{letter-spacing:-0.187147pt;}
.ls6c_c00063{letter-spacing:-0.167787pt;}
.ls55_c00063{letter-spacing:-0.161333pt;}
.ls79_c00063{letter-spacing:-0.154880pt;}
.ls5d_c00063{letter-spacing:-0.148427pt;}
.ls5e_c00063{letter-spacing:-0.135520pt;}
.ls43_c00063{letter-spacing:-0.109707pt;}
.ls66_c00063{letter-spacing:-0.090347pt;}
.ls39_c00063{letter-spacing:-0.083893pt;}
.ls2b_c00063{letter-spacing:-0.077440pt;}
.ls15_c00063{letter-spacing:-0.012907pt;}
.ls1b_c00063{letter-spacing:0.000000pt;}
.lsd_c00063{letter-spacing:0.032267pt;}
.ls21_c00063{letter-spacing:0.045173pt;}
.ls5_c00063{letter-spacing:0.116160pt;}
.lsb_c00063{letter-spacing:0.141973pt;}
.lsc_c00063{letter-spacing:0.154880pt;}
.ls7_c00063{letter-spacing:0.318240pt;}
.ls0_c00063{letter-spacing:0.346453pt;}
.lse_c00063{letter-spacing:0.380640pt;}
.ls10_c00063{letter-spacing:0.468000pt;}
.ls6_c00063{letter-spacing:0.505440pt;}
.lsf_c00063{letter-spacing:0.511680pt;}
.ls70_c00063{letter-spacing:0.561600pt;}
.ls9_c00063{letter-spacing:0.673920pt;}
.ls3_c00063{letter-spacing:0.754773pt;}
.ls7c_c00063{letter-spacing:0.787307pt;}
.ls38_c00063{letter-spacing:0.800213pt;}
.lsa_c00063{letter-spacing:1.017120pt;}
.ls8_c00063{letter-spacing:1.035840pt;}
.ls4_c00063{letter-spacing:1.042080pt;}
.ls2_c00063{letter-spacing:1.262080pt;}
.ls13_c00063{letter-spacing:1.664213pt;}
.ls1_c00063{letter-spacing:1.893120pt;}
.ls11_c00063{letter-spacing:2.613333pt;}
.ws0_c00063{word-spacing:0.000000pt;}
._15_c00063{margin-left:-3.924960pt;}
._1_c00063{margin-left:-2.729387pt;}
._1b_c00063{margin-left:-1.213227pt;}
._0_c00063{width:1.814187pt;}
._16_c00063{width:2.741760pt;}
._2_c00063{width:3.828267pt;}
._8_c00063{width:5.387360pt;}
._17_c00063{width:6.634933pt;}
._4_c00063{width:7.756907pt;}
._9_c00063{width:9.073387pt;}
._6_c00063{width:10.067200pt;}
._a_c00063{width:11.145333pt;}
._3_c00063{width:12.254880pt;}
._7_c00063{width:13.952107pt;}
._5_c00063{width:15.552533pt;}
._e_c00063{width:16.727040pt;}
._b_c00063{width:18.198400pt;}
._c_c00063{width:19.663307pt;}
._d_c00063{width:21.425067pt;}
._14_c00063{width:22.476960pt;}
._1d_c00063{width:23.928960pt;}
._1c_c00063{width:25.142187pt;}
._1f_c00063{width:27.529920pt;}
._20_c00063{width:28.794773pt;}
._1e_c00063{width:29.937013pt;}
._1a_c00063{width:32.976533pt;}
._19_c00063{width:34.964160pt;}
._18_c00063{width:36.125760pt;}
._10_c00063{width:37.448693pt;}
._12_c00063{width:38.784533pt;}
._f_c00063{width:39.726720pt;}
._11_c00063{width:42.320960pt;}
._13_c00063{width:43.605173pt;}
.fs5_c00063{font-size:51.733333pt;}
.fs0_c00063{font-size:52.266667pt;}
.fs4_c00063{font-size:56.533333pt;}
.fs1_c00063{font-size:61.866667pt;}
.fs3_c00063{font-size:62.400000pt;}
.fs2_c00063{font-size:64.533333pt;}
.y0_c00063{bottom:0.000000pt;}
.y29_c00063{bottom:61.760013pt;}
.y28_c00063{bottom:118.081880pt;}
.y26_c00063{bottom:144.956413pt;}
.y27_c00063{bottom:144.960013pt;}
.y25_c00063{bottom:172.173347pt;}
.y23_c00063{bottom:226.569080pt;}
.y24_c00063{bottom:226.573347pt;}
.y21_c00063{bottom:281.289880pt;}
.y22_c00063{bottom:281.293347pt;}
.y20_c00063{bottom:308.813347pt;}
.y1f_c00063{bottom:336.007213pt;}
.y1d_c00063{bottom:363.848413pt;}
.y1e_c00063{bottom:363.853347pt;}
.y1c_c00063{bottom:418.895347pt;}
.y1a_c00063{bottom:446.073747pt;}
.y1b_c00063{bottom:446.080013pt;}
.y19_c00063{bottom:473.613347pt;}
.y18_c00063{bottom:500.802947pt;}
.y17_c00063{bottom:555.849880pt;}
.y15_c00063{bottom:583.369880pt;}
.y16_c00063{bottom:583.373347pt;}
.y13_c00063{bottom:610.889880pt;}
.y14_c00063{bottom:610.893347pt;}
.y11_c00063{bottom:638.408413pt;}
.y12_c00063{bottom:638.413347pt;}
.y10_c00063{bottom:665.931880pt;}
.yf_c00063{bottom:693.455347pt;}
.yd_c00063{bottom:720.629480pt;}
.ye_c00063{bottom:720.640013pt;}
.yc_c00063{bottom:775.047213pt;}
.yb_c00063{bottom:802.893347pt;}
.ya_c00063{bottom:802.895347pt;}
.y8_c00063{bottom:830.073747pt;}
.y9_c00063{bottom:830.080013pt;}
.y7_c00063{bottom:857.612547pt;}
.y6_c00063{bottom:884.812680pt;}
.y4_c00063{bottom:912.313747pt;}
.y5_c00063{bottom:912.320013pt;}
.y3_c00063{bottom:939.853347pt;}
.y2_c00063{bottom:994.240013pt;}
.y1_c00063{bottom:1062.080013pt;}
.h9_c00063{height:50.773437pt;}
.h2_c00063{height:51.296875pt;}
.h8_c00063{height:58.962500pt;}
.h3_c00063{height:62.350000pt;}
.h4_c00063{height:63.335938pt;}
.h5_c00063{height:63.338604pt;}
.h6_c00063{height:63.339137pt;}
.h7_c00063{height:63.349804pt;}
.h1_c00063{height:1122.666667pt;}
.h0_c00063{height:1122.880013pt;}
.w1_c00063{width:793.333333pt;}
.w0_c00063{width:793.600013pt;}
.x0_c00063{left:0.000000pt;}
.x1_c00063{left:113.146680pt;}
.xa_c00063{left:114.442813pt;}
.x22_c00063{left:149.666680pt;}
.x24_c00063{left:160.546680pt;}
.x3_c00063{left:161.506680pt;}
.x20_c00063{left:165.933347pt;}
.x23_c00063{left:172.546680pt;}
.x6_c00063{left:180.973347pt;}
.x11_c00063{left:182.226680pt;}
.x21_c00063{left:185.466680pt;}
.x18_c00063{left:188.000013pt;}
.x7_c00063{left:202.426680pt;}
.x12_c00063{left:203.680013pt;}
.x25_c00063{left:230.573347pt;}
.x2_c00063{left:246.586680pt;}
.x26_c00063{left:252.346680pt;}
.x15_c00063{left:266.200013pt;}
.x1b_c00063{left:291.933347pt;}
.x8_c00063{left:297.426680pt;}
.x19_c00063{left:308.333347pt;}
.x1c_c00063{left:311.506680pt;}
.x9_c00063{left:316.640013pt;}
.x1a_c00063{left:329.626680pt;}
.x27_c00063{left:378.066680pt;}
.x29_c00063{left:384.146680pt;}
.x13_c00063{left:391.186680pt;}
.x28_c00063{left:397.080013pt;}
.x4_c00063{left:404.626680pt;}
.xb_c00063{left:408.466680pt;}
.x14_c00063{left:413.626680pt;}
.x1f_c00063{left:417.120013pt;}
.x5_c00063{left:424.160013pt;}
.xc_c00063{left:429.573347pt;}
.xf_c00063{left:436.973347pt;}
.x10_c00063{left:465.466680pt;}
.x1d_c00063{left:486.253347pt;}
.x1e_c00063{left:508.026680pt;}
.xd_c00063{left:629.613347pt;}
.x16_c00063{left:631.533347pt;}
.x17_c00063{left:651.386680pt;}
.xe_c00063{left:652.666680pt;}
}





/* 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_c00064 {
    display:none;
  }
  .loading-indicator_c00064.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00064 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_c00064 { 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_c00064" -> "#page-container .classname_c00064")
 */
.pf_c00064 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00064 { /* 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_c00064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00064 { /* 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_c00064 { /* 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_c00064 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00064 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00064 {overflow:visible;}
  }
}
.c_c00064 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00064 { /* 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_c00064:after { /* webkit #35443 */
  content: '';
}
.t_c00064:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00064 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 */
}
.__c00064 { /* 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_c00064 { /* info for Javascript */
  display:none;
}
.l_c00064 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00064 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00064 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00064: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_c00064 {
    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_c00064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00064.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_c00064 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00064;src:url('chunks/assets/font_ea3897e45517b10cb5cbcd93.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.284668;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_c00064;src:url('chunks/assets/font_0ea0b673334d9e5e1532a6dc.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.284180;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_c00064{transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);}
.m3_c00064{transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);}
.m4_c00064{transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);}
.m0_c00064{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_c00064{transform:matrix(0.254141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254141,0.000000,0.000000,0.250000,0,0);}
.m5_c00064{transform:matrix(0.255398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255398,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls37_c00064{letter-spacing:-2.562000px;}
.lsa0_c00064{letter-spacing:-2.488800px;}
.ls8c_c00064{letter-spacing:-2.298480px;}
.ls4b_c00064{letter-spacing:-2.130120px;}
.ls83_c00064{letter-spacing:-2.042280px;}
.ls6a_c00064{letter-spacing:-1.873920px;}
.ls92_c00064{letter-spacing:-1.851960px;}
.ls39_c00064{letter-spacing:-1.844640px;}
.ls36_c00064{letter-spacing:-1.800720px;}
.ls9d_c00064{letter-spacing:-1.764120px;}
.ls54_c00064{letter-spacing:-1.690920px;}
.ls3f_c00064{letter-spacing:-1.515240px;}
.ls99_c00064{letter-spacing:-1.486800px;}
.ls41_c00064{letter-spacing:-1.456680px;}
.ls6d_c00064{letter-spacing:-1.434720px;}
.ls8d_c00064{letter-spacing:-1.390800px;}
.ls88_c00064{letter-spacing:-1.346880px;}
.ls44_c00064{letter-spacing:-1.339560px;}
.ls75_c00064{letter-spacing:-1.317600px;}
.ls45_c00064{letter-spacing:-1.185840px;}
.ls2c_c00064{letter-spacing:-1.178520px;}
.ls85_c00064{letter-spacing:-1.156560px;}
.ls73_c00064{letter-spacing:-1.149240px;}
.ls7c_c00064{letter-spacing:-1.127280px;}
.ls3e_c00064{letter-spacing:-1.112640px;}
.ls8e_c00064{letter-spacing:-1.083360px;}
.ls33_c00064{letter-spacing:-1.076040px;}
.ls3d_c00064{letter-spacing:-1.054080px;}
.ls82_c00064{letter-spacing:-1.039440px;}
.ls93_c00064{letter-spacing:-1.024800px;}
.ls55_c00064{letter-spacing:-1.010160px;}
.ls9a_c00064{letter-spacing:-0.973560px;}
.ls2b_c00064{letter-spacing:-0.958920px;}
.ls9e_c00064{letter-spacing:-0.951600px;}
.ls69_c00064{letter-spacing:-0.944280px;}
.ls47_c00064{letter-spacing:-0.936960px;}
.ls79_c00064{letter-spacing:-0.893040px;}
.ls48_c00064{letter-spacing:-0.878400px;}
.ls31_c00064{letter-spacing:-0.856440px;}
.ls2d_c00064{letter-spacing:-0.841800px;}
.ls42_c00064{letter-spacing:-0.834480px;}
.ls91_c00064{letter-spacing:-0.827160px;}
.ls89_c00064{letter-spacing:-0.783240px;}
.ls8a_c00064{letter-spacing:-0.761280px;}
.ls8f_c00064{letter-spacing:-0.746640px;}
.ls60_c00064{letter-spacing:-0.739320px;}
.ls6f_c00064{letter-spacing:-0.695400px;}
.ls5a_c00064{letter-spacing:-0.688080px;}
.ls52_c00064{letter-spacing:-0.680760px;}
.ls6c_c00064{letter-spacing:-0.658800px;}
.ls7d_c00064{letter-spacing:-0.651480px;}
.ls2a_c00064{letter-spacing:-0.644160px;}
.ls78_c00064{letter-spacing:-0.607560px;}
.ls30_c00064{letter-spacing:-0.600240px;}
.ls87_c00064{letter-spacing:-0.592920px;}
.ls5d_c00064{letter-spacing:-0.585600px;}
.ls63_c00064{letter-spacing:-0.570960px;}
.ls6b_c00064{letter-spacing:-0.519720px;}
.ls38_c00064{letter-spacing:-0.512400px;}
.ls58_c00064{letter-spacing:-0.505080px;}
.ls98_c00064{letter-spacing:-0.497760px;}
.ls49_c00064{letter-spacing:-0.483120px;}
.ls71_c00064{letter-spacing:-0.461160px;}
.ls94_c00064{letter-spacing:-0.453840px;}
.ls3a_c00064{letter-spacing:-0.446520px;}
.ls50_c00064{letter-spacing:-0.439200px;}
.ls4f_c00064{letter-spacing:-0.431880px;}
.ls56_c00064{letter-spacing:-0.417240px;}
.ls81_c00064{letter-spacing:-0.409920px;}
.ls46_c00064{letter-spacing:-0.402600px;}
.ls3b_c00064{letter-spacing:-0.395280px;}
.ls40_c00064{letter-spacing:-0.387960px;}
.ls4e_c00064{letter-spacing:-0.380640px;}
.ls74_c00064{letter-spacing:-0.366000px;}
.ls35_c00064{letter-spacing:-0.351360px;}
.lsa1_c00064{letter-spacing:-0.348000px;}
.ls6e_c00064{letter-spacing:-0.329400px;}
.ls32_c00064{letter-spacing:-0.322080px;}
.ls9f_c00064{letter-spacing:-0.314760px;}
.ls5e_c00064{letter-spacing:-0.307440px;}
.ls7e_c00064{letter-spacing:-0.300120px;}
.ls5b_c00064{letter-spacing:-0.292800px;}
.ls97_c00064{letter-spacing:-0.285480px;}
.ls57_c00064{letter-spacing:-0.278160px;}
.ls5f_c00064{letter-spacing:-0.270840px;}
.ls34_c00064{letter-spacing:-0.263520px;}
.ls80_c00064{letter-spacing:-0.256200px;}
.ls3c_c00064{letter-spacing:-0.248880px;}
.ls8b_c00064{letter-spacing:-0.241560px;}
.ls86_c00064{letter-spacing:-0.234240px;}
.ls28_c00064{letter-spacing:-0.226920px;}
.ls7f_c00064{letter-spacing:-0.219600px;}
.ls53_c00064{letter-spacing:-0.212280px;}
.ls4d_c00064{letter-spacing:-0.204960px;}
.ls59_c00064{letter-spacing:-0.197640px;}
.ls95_c00064{letter-spacing:-0.190320px;}
.ls84_c00064{letter-spacing:-0.183000px;}
.ls5c_c00064{letter-spacing:-0.175680px;}
.ls62_c00064{letter-spacing:-0.168360px;}
.ls2f_c00064{letter-spacing:-0.161040px;}
.ls43_c00064{letter-spacing:-0.146400px;}
.ls70_c00064{letter-spacing:-0.139080px;}
.ls61_c00064{letter-spacing:-0.109800px;}
.ls64_c00064{letter-spacing:-0.095160px;}
.ls65_c00064{letter-spacing:-0.087840px;}
.ls66_c00064{letter-spacing:-0.080520px;}
.ls76_c00064{letter-spacing:-0.065880px;}
.ls68_c00064{letter-spacing:-0.051240px;}
.ls51_c00064{letter-spacing:-0.043920px;}
.ls7b_c00064{letter-spacing:-0.042480px;}
.ls77_c00064{letter-spacing:-0.036600px;}
.ls4c_c00064{letter-spacing:-0.029280px;}
.ls67_c00064{letter-spacing:-0.021960px;}
.ls4a_c00064{letter-spacing:-0.014640px;}
.ls9b_c00064{letter-spacing:-0.007320px;}
.ls29_c00064{letter-spacing:0.000000px;}
.lse_c00064{letter-spacing:0.007320px;}
.ls12_c00064{letter-spacing:0.021960px;}
.ls5_c00064{letter-spacing:0.036600px;}
.ls3_c00064{letter-spacing:0.043920px;}
.ls19_c00064{letter-spacing:0.051240px;}
.ls16_c00064{letter-spacing:0.073200px;}
.ls13_c00064{letter-spacing:0.080520px;}
.ls10_c00064{letter-spacing:0.087840px;}
.ls6_c00064{letter-spacing:0.095160px;}
.ls72_c00064{letter-spacing:0.109800px;}
.ls1e_c00064{letter-spacing:0.113280px;}
.ls4_c00064{letter-spacing:0.117120px;}
.lsf_c00064{letter-spacing:0.124440px;}
.ls96_c00064{letter-spacing:0.139080px;}
.ls2_c00064{letter-spacing:0.146400px;}
.lsb_c00064{letter-spacing:0.175680px;}
.ls15_c00064{letter-spacing:0.183000px;}
.ls14_c00064{letter-spacing:0.285480px;}
.ls1c_c00064{letter-spacing:0.304440px;}
.lsa_c00064{letter-spacing:0.366000px;}
.ls20_c00064{letter-spacing:0.389400px;}
.ls22_c00064{letter-spacing:0.396480px;}
.ls25_c00064{letter-spacing:0.446040px;}
.ls1b_c00064{letter-spacing:0.538080px;}
.ls8_c00064{letter-spacing:0.549000px;}
.ls18_c00064{letter-spacing:0.566400px;}
.ls7_c00064{letter-spacing:0.637200px;}
.ls17_c00064{letter-spacing:0.672600px;}
.lsd_c00064{letter-spacing:0.729240px;}
.ls21_c00064{letter-spacing:0.743400px;}
.ls24_c00064{letter-spacing:0.767340px;}
.ls1_c00064{letter-spacing:0.841800px;}
.ls1f_c00064{letter-spacing:0.877920px;}
.ls90_c00064{letter-spacing:1.098000px;}
.ls26_c00064{letter-spacing:1.104480px;}
.ls1a_c00064{letter-spacing:1.217760px;}
.ls11_c00064{letter-spacing:1.222440px;}
.ls1d_c00064{letter-spacing:1.224840px;}
.ls23_c00064{letter-spacing:1.465560px;}
.ls9_c00064{letter-spacing:1.485960px;}
.ls9c_c00064{letter-spacing:1.550520px;}
.ls0_c00064{letter-spacing:2.345220px;}
.ls27_c00064{letter-spacing:2.405820px;}
.lsc_c00064{letter-spacing:3.256800px;}
.ls7a_c00064{letter-spacing:3.540000px;}
.ls2e_c00064{letter-spacing:3.660000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{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__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00064{word-spacing:0.000000px;}
._0_c00064{margin-left:-4.375320px;}
._6_c00064{margin-left:-1.362000px;}
._7_c00064{width:1.039440px;}
._1_c00064{width:2.649840px;}
._2_c00064{width:4.099200px;}
._15_c00064{width:5.187120px;}
._4_c00064{width:6.470880px;}
._3_c00064{width:7.686000px;}
._5_c00064{width:8.712960px;}
._8_c00064{width:10.379760px;}
._a_c00064{width:12.078000px;}
._9_c00064{width:13.146720px;}
._c_c00064{width:14.566800px;}
._13_c00064{width:16.096680px;}
._b_c00064{width:18.402480px;}
._f_c00064{width:20.400840px;}
._11_c00064{width:22.033200px;}
._10_c00064{width:23.365440px;}
._d_c00064{width:24.434160px;}
._14_c00064{width:25.671240px;}
._12_c00064{width:26.718000px;}
._19_c00064{width:27.947760px;}
._e_c00064{width:29.228760px;}
._16_c00064{width:30.707400px;}
._17_c00064{width:32.405640px;}
._18_c00064{width:34.404000px;}
.fc0_c00064{color:transparent;}
.fs3_c00064{font-size:52.200000px;}
.fs4_c00064{font-size:60.000000px;}
.fs0_c00064{font-size:60.600000px;}
.fs2_c00064{font-size:70.800000px;}
.fs1_c00064{font-size:73.200000px;}
.y0_c00064{bottom:0.000000px;}
.y27_c00064{bottom:66.975015px;}
.y25_c00064{bottom:221.039115px;}
.y26_c00064{bottom:221.040015px;}
.y24_c00064{bottom:251.655015px;}
.y23_c00064{bottom:282.615015px;}
.y22_c00064{bottom:313.935015px;}
.y21_c00064{bottom:313.943715px;}
.y20_c00064{bottom:345.255015px;}
.y1f_c00064{bottom:376.575915px;}
.y1e_c00064{bottom:407.521215px;}
.y1d_c00064{bottom:438.137115px;}
.y1c_c00064{bottom:469.082415px;}
.y1a_c00064{bottom:499.673115px;}
.y1b_c00064{bottom:499.680015px;}
.y19_c00064{bottom:530.655015px;}
.y18_c00064{bottom:530.663415px;}
.y17_c00064{bottom:561.608715px;}
.y16_c00064{bottom:592.912815px;}
.y15_c00064{bottom:623.894715px;}
.y13_c00064{bottom:654.830715px;}
.y14_c00064{bottom:654.840015px;}
.y12_c00064{bottom:685.812615px;}
.y11_c00064{bottom:716.757915px;}
.y10_c00064{bottom:747.373815px;}
.yf_c00064{bottom:778.337415px;}
.ye_c00064{bottom:808.943715px;}
.yc_c00064{bottom:840.254715px;}
.yd_c00064{bottom:840.255015px;}
.yb_c00064{bottom:871.200015px;}
.y9_c00064{bottom:933.130215px;}
.ya_c00064{bottom:933.135015px;}
.y8_c00064{bottom:994.673115px;}
.y7_c00064{bottom:1025.651415px;}
.y6_c00064{bottom:1056.615015px;}
.y5_c00064{bottom:1056.620715px;}
.y4_c00064{bottom:1087.200015px;}
.y3_c00064{bottom:1087.202715px;}
.y2_c00064{bottom:1118.880015px;}
.y1_c00064{bottom:1195.935015px;}
.h9_c00064{height:58.886719px;}
.h2_c00064{height:59.475586px;}
.h6_c00064{height:69.451758px;}
.h8_c00064{height:69.486328px;}
.h3_c00064{height:71.841797px;}
.h4_c00064{height:71.856197px;}
.h5_c00064{height:71.860997px;}
.h7_c00064{height:71.870597px;}
.h1_c00064{height:1263.000000px;}
.h0_c00064{height:1263.240015px;}
.w1_c00064{width:892.500000px;}
.w0_c00064{width:892.800015px;}
.x0_c00064{left:0.000000px;}
.x1c_c00064{left:120.150015px;}
.x15_c00064{left:121.639215px;}
.xc_c00064{left:123.146115px;}
.x8_c00064{left:124.904415px;}
.x2_c00064{left:126.180015px;}
.x1_c00064{left:127.650015px;}
.xb_c00064{left:177.735015px;}
.x6_c00064{left:232.755015px;}
.x7_c00064{left:257.250015px;}
.x9_c00064{left:290.070015px;}
.x23_c00064{left:315.255015px;}
.xa_c00064{left:318.855015px;}
.x24_c00064{left:342.330015px;}
.x16_c00064{left:358.755015px;}
.xd_c00064{left:375.315015px;}
.x17_c00064{left:381.765015px;}
.xe_c00064{left:398.490015px;}
.x5_c00064{left:425.715015px;}
.x25_c00064{left:428.550015px;}
.x1a_c00064{left:432.915015px;}
.xf_c00064{left:444.435015px;}
.x3_c00064{left:448.740015px;}
.x1b_c00064{left:459.495015px;}
.x10_c00064{left:467.445015px;}
.x21_c00064{left:472.875015px;}
.x22_c00064{left:494.430015px;}
.x4_c00064{left:498.630015px;}
.x1f_c00064{left:506.715015px;}
.x20_c00064{left:526.920015px;}
.x18_c00064{left:552.795015px;}
.x13_c00064{left:561.795015px;}
.x19_c00064{left:575.910015px;}
.x14_c00064{left:582.360015px;}
.x11_c00064{left:603.975015px;}
.x12_c00064{left:632.850015px;}
.x1d_c00064{left:690.315015px;}
.x1e_c00064{left:713.130015px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls37_c00064{letter-spacing:-2.277333pt;}
.lsa0_c00064{letter-spacing:-2.212267pt;}
.ls8c_c00064{letter-spacing:-2.043093pt;}
.ls4b_c00064{letter-spacing:-1.893440pt;}
.ls83_c00064{letter-spacing:-1.815360pt;}
.ls6a_c00064{letter-spacing:-1.665707pt;}
.ls92_c00064{letter-spacing:-1.646187pt;}
.ls39_c00064{letter-spacing:-1.639680pt;}
.ls36_c00064{letter-spacing:-1.600640pt;}
.ls9d_c00064{letter-spacing:-1.568107pt;}
.ls54_c00064{letter-spacing:-1.503040pt;}
.ls3f_c00064{letter-spacing:-1.346880pt;}
.ls99_c00064{letter-spacing:-1.321600pt;}
.ls41_c00064{letter-spacing:-1.294827pt;}
.ls6d_c00064{letter-spacing:-1.275307pt;}
.ls8d_c00064{letter-spacing:-1.236267pt;}
.ls88_c00064{letter-spacing:-1.197227pt;}
.ls44_c00064{letter-spacing:-1.190720pt;}
.ls75_c00064{letter-spacing:-1.171200pt;}
.ls45_c00064{letter-spacing:-1.054080pt;}
.ls2c_c00064{letter-spacing:-1.047573pt;}
.ls85_c00064{letter-spacing:-1.028053pt;}
.ls73_c00064{letter-spacing:-1.021547pt;}
.ls7c_c00064{letter-spacing:-1.002027pt;}
.ls3e_c00064{letter-spacing:-0.989013pt;}
.ls8e_c00064{letter-spacing:-0.962987pt;}
.ls33_c00064{letter-spacing:-0.956480pt;}
.ls3d_c00064{letter-spacing:-0.936960pt;}
.ls82_c00064{letter-spacing:-0.923947pt;}
.ls93_c00064{letter-spacing:-0.910933pt;}
.ls55_c00064{letter-spacing:-0.897920pt;}
.ls9a_c00064{letter-spacing:-0.865387pt;}
.ls2b_c00064{letter-spacing:-0.852373pt;}
.ls9e_c00064{letter-spacing:-0.845867pt;}
.ls69_c00064{letter-spacing:-0.839360pt;}
.ls47_c00064{letter-spacing:-0.832853pt;}
.ls79_c00064{letter-spacing:-0.793813pt;}
.ls48_c00064{letter-spacing:-0.780800pt;}
.ls31_c00064{letter-spacing:-0.761280pt;}
.ls2d_c00064{letter-spacing:-0.748267pt;}
.ls42_c00064{letter-spacing:-0.741760pt;}
.ls91_c00064{letter-spacing:-0.735253pt;}
.ls89_c00064{letter-spacing:-0.696213pt;}
.ls8a_c00064{letter-spacing:-0.676693pt;}
.ls8f_c00064{letter-spacing:-0.663680pt;}
.ls60_c00064{letter-spacing:-0.657173pt;}
.ls6f_c00064{letter-spacing:-0.618133pt;}
.ls5a_c00064{letter-spacing:-0.611627pt;}
.ls52_c00064{letter-spacing:-0.605120pt;}
.ls6c_c00064{letter-spacing:-0.585600pt;}
.ls7d_c00064{letter-spacing:-0.579093pt;}
.ls2a_c00064{letter-spacing:-0.572587pt;}
.ls78_c00064{letter-spacing:-0.540053pt;}
.ls30_c00064{letter-spacing:-0.533547pt;}
.ls87_c00064{letter-spacing:-0.527040pt;}
.ls5d_c00064{letter-spacing:-0.520533pt;}
.ls63_c00064{letter-spacing:-0.507520pt;}
.ls6b_c00064{letter-spacing:-0.461973pt;}
.ls38_c00064{letter-spacing:-0.455467pt;}
.ls58_c00064{letter-spacing:-0.448960pt;}
.ls98_c00064{letter-spacing:-0.442453pt;}
.ls49_c00064{letter-spacing:-0.429440pt;}
.ls71_c00064{letter-spacing:-0.409920pt;}
.ls94_c00064{letter-spacing:-0.403413pt;}
.ls3a_c00064{letter-spacing:-0.396907pt;}
.ls50_c00064{letter-spacing:-0.390400pt;}
.ls4f_c00064{letter-spacing:-0.383893pt;}
.ls56_c00064{letter-spacing:-0.370880pt;}
.ls81_c00064{letter-spacing:-0.364373pt;}
.ls46_c00064{letter-spacing:-0.357867pt;}
.ls3b_c00064{letter-spacing:-0.351360pt;}
.ls40_c00064{letter-spacing:-0.344853pt;}
.ls4e_c00064{letter-spacing:-0.338347pt;}
.ls74_c00064{letter-spacing:-0.325333pt;}
.ls35_c00064{letter-spacing:-0.312320pt;}
.lsa1_c00064{letter-spacing:-0.309333pt;}
.ls6e_c00064{letter-spacing:-0.292800pt;}
.ls32_c00064{letter-spacing:-0.286293pt;}
.ls9f_c00064{letter-spacing:-0.279787pt;}
.ls5e_c00064{letter-spacing:-0.273280pt;}
.ls7e_c00064{letter-spacing:-0.266773pt;}
.ls5b_c00064{letter-spacing:-0.260267pt;}
.ls97_c00064{letter-spacing:-0.253760pt;}
.ls57_c00064{letter-spacing:-0.247253pt;}
.ls5f_c00064{letter-spacing:-0.240747pt;}
.ls34_c00064{letter-spacing:-0.234240pt;}
.ls80_c00064{letter-spacing:-0.227733pt;}
.ls3c_c00064{letter-spacing:-0.221227pt;}
.ls8b_c00064{letter-spacing:-0.214720pt;}
.ls86_c00064{letter-spacing:-0.208213pt;}
.ls28_c00064{letter-spacing:-0.201707pt;}
.ls7f_c00064{letter-spacing:-0.195200pt;}
.ls53_c00064{letter-spacing:-0.188693pt;}
.ls4d_c00064{letter-spacing:-0.182187pt;}
.ls59_c00064{letter-spacing:-0.175680pt;}
.ls95_c00064{letter-spacing:-0.169173pt;}
.ls84_c00064{letter-spacing:-0.162667pt;}
.ls5c_c00064{letter-spacing:-0.156160pt;}
.ls62_c00064{letter-spacing:-0.149653pt;}
.ls2f_c00064{letter-spacing:-0.143147pt;}
.ls43_c00064{letter-spacing:-0.130133pt;}
.ls70_c00064{letter-spacing:-0.123627pt;}
.ls61_c00064{letter-spacing:-0.097600pt;}
.ls64_c00064{letter-spacing:-0.084587pt;}
.ls65_c00064{letter-spacing:-0.078080pt;}
.ls66_c00064{letter-spacing:-0.071573pt;}
.ls76_c00064{letter-spacing:-0.058560pt;}
.ls68_c00064{letter-spacing:-0.045547pt;}
.ls51_c00064{letter-spacing:-0.039040pt;}
.ls7b_c00064{letter-spacing:-0.037760pt;}
.ls77_c00064{letter-spacing:-0.032533pt;}
.ls4c_c00064{letter-spacing:-0.026027pt;}
.ls67_c00064{letter-spacing:-0.019520pt;}
.ls4a_c00064{letter-spacing:-0.013013pt;}
.ls9b_c00064{letter-spacing:-0.006507pt;}
.ls29_c00064{letter-spacing:0.000000pt;}
.lse_c00064{letter-spacing:0.006507pt;}
.ls12_c00064{letter-spacing:0.019520pt;}
.ls5_c00064{letter-spacing:0.032533pt;}
.ls3_c00064{letter-spacing:0.039040pt;}
.ls19_c00064{letter-spacing:0.045547pt;}
.ls16_c00064{letter-spacing:0.065067pt;}
.ls13_c00064{letter-spacing:0.071573pt;}
.ls10_c00064{letter-spacing:0.078080pt;}
.ls6_c00064{letter-spacing:0.084587pt;}
.ls72_c00064{letter-spacing:0.097600pt;}
.ls1e_c00064{letter-spacing:0.100693pt;}
.ls4_c00064{letter-spacing:0.104107pt;}
.lsf_c00064{letter-spacing:0.110613pt;}
.ls96_c00064{letter-spacing:0.123627pt;}
.ls2_c00064{letter-spacing:0.130133pt;}
.lsb_c00064{letter-spacing:0.156160pt;}
.ls15_c00064{letter-spacing:0.162667pt;}
.ls14_c00064{letter-spacing:0.253760pt;}
.ls1c_c00064{letter-spacing:0.270613pt;}
.lsa_c00064{letter-spacing:0.325333pt;}
.ls20_c00064{letter-spacing:0.346133pt;}
.ls22_c00064{letter-spacing:0.352427pt;}
.ls25_c00064{letter-spacing:0.396480pt;}
.ls1b_c00064{letter-spacing:0.478293pt;}
.ls8_c00064{letter-spacing:0.488000pt;}
.ls18_c00064{letter-spacing:0.503467pt;}
.ls7_c00064{letter-spacing:0.566400pt;}
.ls17_c00064{letter-spacing:0.597867pt;}
.lsd_c00064{letter-spacing:0.648213pt;}
.ls21_c00064{letter-spacing:0.660800pt;}
.ls24_c00064{letter-spacing:0.682080pt;}
.ls1_c00064{letter-spacing:0.748267pt;}
.ls1f_c00064{letter-spacing:0.780373pt;}
.ls90_c00064{letter-spacing:0.976000pt;}
.ls26_c00064{letter-spacing:0.981760pt;}
.ls1a_c00064{letter-spacing:1.082453pt;}
.ls11_c00064{letter-spacing:1.086613pt;}
.ls1d_c00064{letter-spacing:1.088747pt;}
.ls23_c00064{letter-spacing:1.302720pt;}
.ls9_c00064{letter-spacing:1.320853pt;}
.ls9c_c00064{letter-spacing:1.378240pt;}
.ls0_c00064{letter-spacing:2.084640pt;}
.ls27_c00064{letter-spacing:2.138507pt;}
.lsc_c00064{letter-spacing:2.894933pt;}
.ls7a_c00064{letter-spacing:3.146667pt;}
.ls2e_c00064{letter-spacing:3.253333pt;}
.ws0_c00064{word-spacing:0.000000pt;}
._0_c00064{margin-left:-3.889173pt;}
._6_c00064{margin-left:-1.210667pt;}
._7_c00064{width:0.923947pt;}
._1_c00064{width:2.355413pt;}
._2_c00064{width:3.643733pt;}
._15_c00064{width:4.610773pt;}
._4_c00064{width:5.751893pt;}
._3_c00064{width:6.832000pt;}
._5_c00064{width:7.744853pt;}
._8_c00064{width:9.226453pt;}
._a_c00064{width:10.736000pt;}
._9_c00064{width:11.685973pt;}
._c_c00064{width:12.948267pt;}
._13_c00064{width:14.308160pt;}
._b_c00064{width:16.357760pt;}
._f_c00064{width:18.134080pt;}
._11_c00064{width:19.585067pt;}
._10_c00064{width:20.769280pt;}
._d_c00064{width:21.719253pt;}
._14_c00064{width:22.818880pt;}
._12_c00064{width:23.749333pt;}
._19_c00064{width:24.842453pt;}
._e_c00064{width:25.981120pt;}
._16_c00064{width:27.295467pt;}
._17_c00064{width:28.805013pt;}
._18_c00064{width:30.581333pt;}
.fs3_c00064{font-size:46.400000pt;}
.fs4_c00064{font-size:53.333333pt;}
.fs0_c00064{font-size:53.866667pt;}
.fs2_c00064{font-size:62.933333pt;}
.fs1_c00064{font-size:65.066667pt;}
.y0_c00064{bottom:0.000000pt;}
.y27_c00064{bottom:59.533347pt;}
.y25_c00064{bottom:196.479213pt;}
.y26_c00064{bottom:196.480013pt;}
.y24_c00064{bottom:223.693347pt;}
.y23_c00064{bottom:251.213347pt;}
.y22_c00064{bottom:279.053347pt;}
.y21_c00064{bottom:279.061080pt;}
.y20_c00064{bottom:306.893347pt;}
.y1f_c00064{bottom:334.734147pt;}
.y1e_c00064{bottom:362.241080pt;}
.y1d_c00064{bottom:389.455213pt;}
.y1c_c00064{bottom:416.962147pt;}
.y1a_c00064{bottom:444.153880pt;}
.y1b_c00064{bottom:444.160013pt;}
.y19_c00064{bottom:471.693347pt;}
.y18_c00064{bottom:471.700813pt;}
.y17_c00064{bottom:499.207747pt;}
.y16_c00064{bottom:527.033613pt;}
.y15_c00064{bottom:554.573080pt;}
.y13_c00064{bottom:582.071747pt;}
.y14_c00064{bottom:582.080013pt;}
.y12_c00064{bottom:609.611213pt;}
.y11_c00064{bottom:637.118147pt;}
.y10_c00064{bottom:664.332280pt;}
.yf_c00064{bottom:691.855480pt;}
.ye_c00064{bottom:719.061080pt;}
.yc_c00064{bottom:746.893080pt;}
.yd_c00064{bottom:746.893347pt;}
.yb_c00064{bottom:774.400013pt;}
.y9_c00064{bottom:829.449080pt;}
.ya_c00064{bottom:829.453347pt;}
.y8_c00064{bottom:884.153880pt;}
.y7_c00064{bottom:911.690147pt;}
.y6_c00064{bottom:939.213347pt;}
.y5_c00064{bottom:939.218413pt;}
.y4_c00064{bottom:966.400013pt;}
.y3_c00064{bottom:966.402413pt;}
.y2_c00064{bottom:994.560013pt;}
.y1_c00064{bottom:1063.053347pt;}
.h9_c00064{height:52.343750pt;}
.h2_c00064{height:52.867187pt;}
.h6_c00064{height:61.734896pt;}
.h8_c00064{height:61.765625pt;}
.h3_c00064{height:63.859375pt;}
.h4_c00064{height:63.872175pt;}
.h5_c00064{height:63.876442pt;}
.h7_c00064{height:63.884975pt;}
.h1_c00064{height:1122.666667pt;}
.h0_c00064{height:1122.880013pt;}
.w1_c00064{width:793.333333pt;}
.w0_c00064{width:793.600013pt;}
.x0_c00064{left:0.000000pt;}
.x1c_c00064{left:106.800013pt;}
.x15_c00064{left:108.123747pt;}
.xc_c00064{left:109.463213pt;}
.x8_c00064{left:111.026147pt;}
.x2_c00064{left:112.160013pt;}
.x1_c00064{left:113.466680pt;}
.xb_c00064{left:157.986680pt;}
.x6_c00064{left:206.893347pt;}
.x7_c00064{left:228.666680pt;}
.x9_c00064{left:257.840013pt;}
.x23_c00064{left:280.226680pt;}
.xa_c00064{left:283.426680pt;}
.x24_c00064{left:304.293347pt;}
.x16_c00064{left:318.893347pt;}
.xd_c00064{left:333.613347pt;}
.x17_c00064{left:339.346680pt;}
.xe_c00064{left:354.213347pt;}
.x5_c00064{left:378.413347pt;}
.x25_c00064{left:380.933347pt;}
.x1a_c00064{left:384.813347pt;}
.xf_c00064{left:395.053347pt;}
.x3_c00064{left:398.880013pt;}
.x1b_c00064{left:408.440013pt;}
.x10_c00064{left:415.506680pt;}
.x21_c00064{left:420.333347pt;}
.x22_c00064{left:439.493347pt;}
.x4_c00064{left:443.226680pt;}
.x1f_c00064{left:450.413347pt;}
.x20_c00064{left:468.373347pt;}
.x18_c00064{left:491.373347pt;}
.x13_c00064{left:499.373347pt;}
.x19_c00064{left:511.920013pt;}
.x14_c00064{left:517.653347pt;}
.x11_c00064{left:536.866680pt;}
.x12_c00064{left:562.533347pt;}
.x1d_c00064{left:613.613347pt;}
.x1e_c00064{left:633.893347pt;}
}





/* 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_c00065 {
    display:none;
  }
  .loading-indicator_c00065.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00065 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_c00065 { 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_c00065" -> "#page-container .classname_c00065")
 */
.pf_c00065 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00065 { /* 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_c00065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00065 { /* 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_c00065 { /* 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_c00065 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00065 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00065 {overflow:visible;}
  }
}
.c_c00065 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00065 { /* 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_c00065:after { /* webkit #35443 */
  content: '';
}
.t_c00065:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00065 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 */
}
.__c00065 { /* 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_c00065 { /* info for Javascript */
  display:none;
}
.l_c00065 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00065 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00065 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00065: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_c00065 {
    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_c00065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00065.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_c00065 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00065;src:url('chunks/assets/font_19e29cef69be82f4aca676c8.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;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:ff2_c00065;src:url('chunks/assets/font_0aa1e619dd917bf24acdd614.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.284668;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_c00065;src:url('chunks/assets/font_844818ce9e9f6f83a022cdf5.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:0.666000;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;}
.mf_c00065{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m5_c00065{transform:matrix(0.085526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085526,0.000000,0.000000,0.250000,0,0);}
.ma_c00065{transform:matrix(0.116935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116935,0.000000,0.000000,0.250000,0,0);}
.mb_c00065{transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);}
.m6_c00065{transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);}
.m7_c00065{transform:matrix(0.169379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169379,0.000000,0.000000,0.250000,0,0);}
.m9_c00065{transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);}
.m8_c00065{transform:matrix(0.208407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208407,0.000000,0.000000,0.250000,0,0);}
.me_c00065{transform:matrix(0.219238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219238,0.000000,0.000000,0.250000,0,0);}
.m4_c00065{transform:matrix(0.230057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230057,0.000000,0.000000,0.250000,0,0);}
.m3_c00065{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);}
.m2_c00065{transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{transform:matrix(0.260794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260794,0.000000,0.000000,0.250000,0,0);}
.m0_c00065{transform:matrix(0.264316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264316,0.000000,0.000000,0.250000,0,0);}
.m10_c00065{transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);}
.md_c00065{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.mc_c00065{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls4a_c00065{letter-spacing:-2.730000px;}
.ls3b_c00065{letter-spacing:-2.205000px;}
.ls38_c00065{letter-spacing:-1.397760px;}
.ls45_c00065{letter-spacing:-1.251360px;}
.ls48_c00065{letter-spacing:-1.239021px;}
.ls47_c00065{letter-spacing:-1.176000px;}
.ls39_c00065{letter-spacing:-1.127700px;}
.ls49_c00065{letter-spacing:-0.966000px;}
.ls4b_c00065{letter-spacing:-0.882000px;}
.ls42_c00065{letter-spacing:-0.837900px;}
.ls3d_c00065{letter-spacing:-0.781200px;}
.ls3f_c00065{letter-spacing:-0.422100px;}
.ls3e_c00065{letter-spacing:-0.113400px;}
.ls46_c00065{letter-spacing:0.000000px;}
.ls26_c00065{letter-spacing:0.057240px;}
.ls28_c00065{letter-spacing:0.189000px;}
.lsd_c00065{letter-spacing:0.195300px;}
.ls31_c00065{letter-spacing:0.207900px;}
.ls27_c00065{letter-spacing:0.214200px;}
.lse_c00065{letter-spacing:0.239400px;}
.ls19_c00065{letter-spacing:0.264600px;}
.ls33_c00065{letter-spacing:0.277200px;}
.ls17_c00065{letter-spacing:0.365400px;}
.ls15_c00065{letter-spacing:0.384300px;}
.ls2d_c00065{letter-spacing:0.441000px;}
.ls20_c00065{letter-spacing:0.592200px;}
.ls1e_c00065{letter-spacing:0.611100px;}
.ls1c_c00065{letter-spacing:0.636300px;}
.ls2b_c00065{letter-spacing:0.642600px;}
.ls1a_c00065{letter-spacing:0.680400px;}
.ls2c_c00065{letter-spacing:0.730800px;}
.ls41_c00065{letter-spacing:0.743400px;}
.ls35_c00065{letter-spacing:0.787500px;}
.ls13_c00065{letter-spacing:0.800100px;}
.ls21_c00065{letter-spacing:0.844200px;}
.ls2a_c00065{letter-spacing:0.856800px;}
.ls3_c00065{letter-spacing:0.913500px;}
.ls14_c00065{letter-spacing:0.919800px;}
.ls9_c00065{letter-spacing:0.926100px;}
.lsb_c00065{letter-spacing:0.982800px;}
.ls16_c00065{letter-spacing:0.989100px;}
.ls11_c00065{letter-spacing:0.995400px;}
.ls34_c00065{letter-spacing:1.014300px;}
.ls4c_c00065{letter-spacing:1.050030px;}
.ls3c_c00065{letter-spacing:1.096200px;}
.ls8_c00065{letter-spacing:1.121400px;}
.ls4_c00065{letter-spacing:1.140300px;}
.ls18_c00065{letter-spacing:1.165500px;}
.ls29_c00065{letter-spacing:1.178100px;}
.ls40_c00065{letter-spacing:1.184400px;}
.ls2_c00065{letter-spacing:1.215900px;}
.ls32_c00065{letter-spacing:1.241100px;}
.ls1b_c00065{letter-spacing:1.266300px;}
.ls7_c00065{letter-spacing:1.329300px;}
.lsc_c00065{letter-spacing:1.354500px;}
.ls6_c00065{letter-spacing:1.367100px;}
.ls1_c00065{letter-spacing:1.379700px;}
.ls10_c00065{letter-spacing:1.398600px;}
.ls2f_c00065{letter-spacing:1.417500px;}
.lsf_c00065{letter-spacing:1.461600px;}
.ls43_c00065{letter-spacing:1.499400px;}
.ls22_c00065{letter-spacing:1.537200px;}
.ls30_c00065{letter-spacing:1.593900px;}
.ls5_c00065{letter-spacing:1.638000px;}
.ls12_c00065{letter-spacing:1.663200px;}
.ls24_c00065{letter-spacing:1.682100px;}
.ls25_c00065{letter-spacing:1.801800px;}
.ls3a_c00065{letter-spacing:1.827000px;}
.ls1d_c00065{letter-spacing:1.845900px;}
.ls2e_c00065{letter-spacing:1.984500px;}
.ls0_c00065{letter-spacing:2.192400px;}
.ls1f_c00065{letter-spacing:2.223900px;}
.lsa_c00065{letter-spacing:2.255400px;}
.ls36_c00065{letter-spacing:2.730000px;}
.ls44_c00065{letter-spacing:2.799360px;}
.ls37_c00065{letter-spacing:2.850000px;}
.ls23_c00065{letter-spacing:3.080700px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{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__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00065{word-spacing:0.000000px;}
._5_c00065{margin-left:-6.463800px;}
._9_c00065{margin-left:-2.633400px;}
._8_c00065{margin-left:-1.033200px;}
._6_c00065{width:1.537200px;}
._4_c00065{width:2.961000px;}
._7_c00065{width:4.485600px;}
._c_c00065{width:6.721200px;}
._d_c00065{width:7.945200px;}
._e_c00065{width:9.689400px;}
._f_c00065{width:11.062800px;}
._10_c00065{width:12.340800px;}
._a_c00065{width:13.406400px;}
._b_c00065{width:16.682400px;}
._3_c00065{width:18.969300px;}
._2_c00065{width:21.627900px;}
._0_c00065{width:22.894200px;}
._1_c00065{width:26.686800px;}
.fc0_c00065{color:transparent;}
.fs12_c00065{font-size:11.520000px;}
.fs13_c00065{font-size:12.960000px;}
.fs16_c00065{font-size:21.000600px;}
.fs10_c00065{font-size:23.400600px;}
.fs14_c00065{font-size:25.200000px;}
.fs17_c00065{font-size:26.400600px;}
.fsb_c00065{font-size:27.600000px;}
.fsd_c00065{font-size:28.800600px;}
.fs9_c00065{font-size:33.600000px;}
.fs11_c00065{font-size:34.560000px;}
.fsa_c00065{font-size:35.400600px;}
.fs15_c00065{font-size:37.440000px;}
.fs8_c00065{font-size:41.400600px;}
.fs7_c00065{font-size:44.640600px;}
.fs5_c00065{font-size:52.800000px;}
.fs0_c00065{font-size:54.600000px;}
.fs6_c00065{font-size:54.720000px;}
.fs1_c00065{font-size:57.000000px;}
.fs2_c00065{font-size:63.000000px;}
.fs3_c00065{font-size:63.600000px;}
.fs4_c00065{font-size:64.800000px;}
.fsf_c00065{font-size:66.000000px;}
.fse_c00065{font-size:76.800000px;}
.fsc_c00065{font-size:78.000000px;}
.y0_c00065{bottom:0.000000px;}
.yb_c00065{bottom:47.519985px;}
.ya_c00065{bottom:214.934985px;}
.y9_c00065{bottom:234.021735px;}
.y8_c00065{bottom:253.102485px;}
.y7_c00065{bottom:272.159985px;}
.y6_c00065{bottom:290.901735px;}
.y5_c00065{bottom:309.981735px;}
.y4_c00065{bottom:329.054985px;}
.y1d_c00065{bottom:524.534985px;}
.y1c_c00065{bottom:531.374985px;}
.y1b_c00065{bottom:537.854985px;}
.y1a_c00065{bottom:549.719985px;}
.y19_c00065{bottom:561.959985px;}
.y18_c00065{bottom:576.719985px;}
.y17_c00065{bottom:588.959985px;}
.y16_c00065{bottom:598.334985px;}
.y15_c00065{bottom:613.799985px;}
.y14_c00065{bottom:617.414985px;}
.y13_c00065{bottom:637.574985px;}
.y12_c00065{bottom:646.199985px;}
.y11_c00065{bottom:663.854985px;}
.y10_c00065{bottom:669.599985px;}
.yf_c00065{bottom:674.639985px;}
.ye_c00065{bottom:693.719985px;}
.yd_c00065{bottom:699.854985px;}
.y3_c00065{bottom:701.639985px;}
.yc_c00065{bottom:715.334985px;}
.y2_c00065{bottom:925.214985px;}
.y1_c00065{bottom:1170.734985px;}
.h14_c00065{height:7.672320px;}
.h15_c00065{height:8.631360px;}
.h18_c00065{height:21.902970px;}
.h13_c00065{height:23.016960px;}
.h12_c00065{height:24.406095px;}
.h17_c00065{height:24.935040px;}
.h19_c00065{height:25.910745px;}
.h16_c00065{height:26.282813px;}
.hd_c00065{height:28.785937px;}
.h9_c00065{height:29.730640px;}
.hf_c00065{height:30.038126px;}
.hb_c00065{height:32.976562px;}
.hc_c00065{height:34.743753px;}
.h8_c00065{height:36.443520px;}
.ha_c00065{height:40.632425px;}
.h7_c00065{height:55.068750px;}
.h2_c00065{height:56.946094px;}
.h3_c00065{height:59.449219px;}
.h4_c00065{height:61.831055px;}
.h5_c00065{height:62.419922px;}
.h6_c00065{height:63.597656px;}
.h11_c00065{height:68.835938px;}
.h10_c00065{height:80.100000px;}
.he_c00065{height:81.351562px;}
.h1_c00065{height:1263.000000px;}
.h0_c00065{height:1263.239985px;}
.w1_c00065{width:892.500000px;}
.w0_c00065{width:892.800000px;}
.x0_c00065{left:0.000000px;}
.x1_c00065{left:138.750000px;}
.x2_c00065{left:288.495000px;}
.x7_c00065{left:443.730000px;}
.x5_c00065{left:487.230000px;}
.x3_c00065{left:508.350000px;}
.x6_c00065{left:547.425000px;}
.x4_c00065{left:601.605000px;}
.xa_c00065{left:855.930000px;}
.x9_c00065{left:857.025000px;}
.x8_c00065{left:858.255000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls4a_c00065{letter-spacing:-2.426667pt;}
.ls3b_c00065{letter-spacing:-1.960000pt;}
.ls38_c00065{letter-spacing:-1.242453pt;}
.ls45_c00065{letter-spacing:-1.112320pt;}
.ls48_c00065{letter-spacing:-1.101352pt;}
.ls47_c00065{letter-spacing:-1.045333pt;}
.ls39_c00065{letter-spacing:-1.002400pt;}
.ls49_c00065{letter-spacing:-0.858667pt;}
.ls4b_c00065{letter-spacing:-0.784000pt;}
.ls42_c00065{letter-spacing:-0.744800pt;}
.ls3d_c00065{letter-spacing:-0.694400pt;}
.ls3f_c00065{letter-spacing:-0.375200pt;}
.ls3e_c00065{letter-spacing:-0.100800pt;}
.ls46_c00065{letter-spacing:0.000000pt;}
.ls26_c00065{letter-spacing:0.050880pt;}
.ls28_c00065{letter-spacing:0.168000pt;}
.lsd_c00065{letter-spacing:0.173600pt;}
.ls31_c00065{letter-spacing:0.184800pt;}
.ls27_c00065{letter-spacing:0.190400pt;}
.lse_c00065{letter-spacing:0.212800pt;}
.ls19_c00065{letter-spacing:0.235200pt;}
.ls33_c00065{letter-spacing:0.246400pt;}
.ls17_c00065{letter-spacing:0.324800pt;}
.ls15_c00065{letter-spacing:0.341600pt;}
.ls2d_c00065{letter-spacing:0.392000pt;}
.ls20_c00065{letter-spacing:0.526400pt;}
.ls1e_c00065{letter-spacing:0.543200pt;}
.ls1c_c00065{letter-spacing:0.565600pt;}
.ls2b_c00065{letter-spacing:0.571200pt;}
.ls1a_c00065{letter-spacing:0.604800pt;}
.ls2c_c00065{letter-spacing:0.649600pt;}
.ls41_c00065{letter-spacing:0.660800pt;}
.ls35_c00065{letter-spacing:0.700000pt;}
.ls13_c00065{letter-spacing:0.711200pt;}
.ls21_c00065{letter-spacing:0.750400pt;}
.ls2a_c00065{letter-spacing:0.761600pt;}
.ls3_c00065{letter-spacing:0.812000pt;}
.ls14_c00065{letter-spacing:0.817600pt;}
.ls9_c00065{letter-spacing:0.823200pt;}
.lsb_c00065{letter-spacing:0.873600pt;}
.ls16_c00065{letter-spacing:0.879200pt;}
.ls11_c00065{letter-spacing:0.884800pt;}
.ls34_c00065{letter-spacing:0.901600pt;}
.ls4c_c00065{letter-spacing:0.933360pt;}
.ls3c_c00065{letter-spacing:0.974400pt;}
.ls8_c00065{letter-spacing:0.996800pt;}
.ls4_c00065{letter-spacing:1.013600pt;}
.ls18_c00065{letter-spacing:1.036000pt;}
.ls29_c00065{letter-spacing:1.047200pt;}
.ls40_c00065{letter-spacing:1.052800pt;}
.ls2_c00065{letter-spacing:1.080800pt;}
.ls32_c00065{letter-spacing:1.103200pt;}
.ls1b_c00065{letter-spacing:1.125600pt;}
.ls7_c00065{letter-spacing:1.181600pt;}
.lsc_c00065{letter-spacing:1.204000pt;}
.ls6_c00065{letter-spacing:1.215200pt;}
.ls1_c00065{letter-spacing:1.226400pt;}
.ls10_c00065{letter-spacing:1.243200pt;}
.ls2f_c00065{letter-spacing:1.260000pt;}
.lsf_c00065{letter-spacing:1.299200pt;}
.ls43_c00065{letter-spacing:1.332800pt;}
.ls22_c00065{letter-spacing:1.366400pt;}
.ls30_c00065{letter-spacing:1.416800pt;}
.ls5_c00065{letter-spacing:1.456000pt;}
.ls12_c00065{letter-spacing:1.478400pt;}
.ls24_c00065{letter-spacing:1.495200pt;}
.ls25_c00065{letter-spacing:1.601600pt;}
.ls3a_c00065{letter-spacing:1.624000pt;}
.ls1d_c00065{letter-spacing:1.640800pt;}
.ls2e_c00065{letter-spacing:1.764000pt;}
.ls0_c00065{letter-spacing:1.948800pt;}
.ls1f_c00065{letter-spacing:1.976800pt;}
.lsa_c00065{letter-spacing:2.004800pt;}
.ls36_c00065{letter-spacing:2.426667pt;}
.ls44_c00065{letter-spacing:2.488320pt;}
.ls37_c00065{letter-spacing:2.533333pt;}
.ls23_c00065{letter-spacing:2.738400pt;}
.ws0_c00065{word-spacing:0.000000pt;}
._5_c00065{margin-left:-5.745600pt;}
._9_c00065{margin-left:-2.340800pt;}
._8_c00065{margin-left:-0.918400pt;}
._6_c00065{width:1.366400pt;}
._4_c00065{width:2.632000pt;}
._7_c00065{width:3.987200pt;}
._c_c00065{width:5.974400pt;}
._d_c00065{width:7.062400pt;}
._e_c00065{width:8.612800pt;}
._f_c00065{width:9.833600pt;}
._10_c00065{width:10.969600pt;}
._a_c00065{width:11.916800pt;}
._b_c00065{width:14.828800pt;}
._3_c00065{width:16.861600pt;}
._2_c00065{width:19.224800pt;}
._0_c00065{width:20.350400pt;}
._1_c00065{width:23.721600pt;}
.fs12_c00065{font-size:10.240000pt;}
.fs13_c00065{font-size:11.520000pt;}
.fs16_c00065{font-size:18.667200pt;}
.fs10_c00065{font-size:20.800533pt;}
.fs14_c00065{font-size:22.400000pt;}
.fs17_c00065{font-size:23.467200pt;}
.fsb_c00065{font-size:24.533333pt;}
.fsd_c00065{font-size:25.600533pt;}
.fs9_c00065{font-size:29.866667pt;}
.fs11_c00065{font-size:30.720000pt;}
.fsa_c00065{font-size:31.467200pt;}
.fs15_c00065{font-size:33.280000pt;}
.fs8_c00065{font-size:36.800533pt;}
.fs7_c00065{font-size:39.680533pt;}
.fs5_c00065{font-size:46.933333pt;}
.fs0_c00065{font-size:48.533333pt;}
.fs6_c00065{font-size:48.640000pt;}
.fs1_c00065{font-size:50.666667pt;}
.fs2_c00065{font-size:56.000000pt;}
.fs3_c00065{font-size:56.533333pt;}
.fs4_c00065{font-size:57.600000pt;}
.fsf_c00065{font-size:58.666667pt;}
.fse_c00065{font-size:68.266667pt;}
.fsc_c00065{font-size:69.333333pt;}
.y0_c00065{bottom:0.000000pt;}
.yb_c00065{bottom:42.239987pt;}
.ya_c00065{bottom:191.053320pt;}
.y9_c00065{bottom:208.019320pt;}
.y8_c00065{bottom:224.979987pt;}
.y7_c00065{bottom:241.919987pt;}
.y6_c00065{bottom:258.579320pt;}
.y5_c00065{bottom:275.539320pt;}
.y4_c00065{bottom:292.493320pt;}
.y1d_c00065{bottom:466.253320pt;}
.y1c_c00065{bottom:472.333320pt;}
.y1b_c00065{bottom:478.093320pt;}
.y1a_c00065{bottom:488.639987pt;}
.y19_c00065{bottom:499.519987pt;}
.y18_c00065{bottom:512.639987pt;}
.y17_c00065{bottom:523.519987pt;}
.y16_c00065{bottom:531.853320pt;}
.y15_c00065{bottom:545.599987pt;}
.y14_c00065{bottom:548.813320pt;}
.y13_c00065{bottom:566.733320pt;}
.y12_c00065{bottom:574.399987pt;}
.y11_c00065{bottom:590.093320pt;}
.y10_c00065{bottom:595.199987pt;}
.yf_c00065{bottom:599.679987pt;}
.ye_c00065{bottom:616.639987pt;}
.yd_c00065{bottom:622.093320pt;}
.y3_c00065{bottom:623.679987pt;}
.yc_c00065{bottom:635.853320pt;}
.y2_c00065{bottom:822.413320pt;}
.y1_c00065{bottom:1040.653320pt;}
.h14_c00065{height:6.819840pt;}
.h15_c00065{height:7.672320pt;}
.h18_c00065{height:19.469306pt;}
.h13_c00065{height:20.459520pt;}
.h12_c00065{height:21.694306pt;}
.h17_c00065{height:22.164480pt;}
.h19_c00065{height:23.031773pt;}
.h16_c00065{height:23.362500pt;}
.hd_c00065{height:25.587500pt;}
.h9_c00065{height:26.427235pt;}
.hf_c00065{height:26.700556pt;}
.hb_c00065{height:29.312500pt;}
.hc_c00065{height:30.883336pt;}
.h8_c00065{height:32.394240pt;}
.ha_c00065{height:36.117711pt;}
.h7_c00065{height:48.950000pt;}
.h2_c00065{height:50.618750pt;}
.h3_c00065{height:52.843750pt;}
.h4_c00065{height:54.960938pt;}
.h5_c00065{height:55.484375pt;}
.h6_c00065{height:56.531250pt;}
.h11_c00065{height:61.187500pt;}
.h10_c00065{height:71.200000pt;}
.he_c00065{height:72.312500pt;}
.h1_c00065{height:1122.666667pt;}
.h0_c00065{height:1122.879987pt;}
.w1_c00065{width:793.333333pt;}
.w0_c00065{width:793.600000pt;}
.x0_c00065{left:0.000000pt;}
.x1_c00065{left:123.333333pt;}
.x2_c00065{left:256.440000pt;}
.x7_c00065{left:394.426667pt;}
.x5_c00065{left:433.093333pt;}
.x3_c00065{left:451.866667pt;}
.x6_c00065{left:486.600000pt;}
.x4_c00065{left:534.760000pt;}
.xa_c00065{left:760.826667pt;}
.x9_c00065{left:761.800000pt;}
.x8_c00065{left:762.893333pt;}
}





/* 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_c00066 {
    display:none;
  }
  .loading-indicator_c00066.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00066 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_c00066 { 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_c00066" -> "#page-container .classname_c00066")
 */
.pf_c00066 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00066 { /* 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_c00066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00066 { /* 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_c00066 { /* 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_c00066 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00066 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00066 {overflow:visible;}
  }
}
.c_c00066 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00066 { /* 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_c00066:after { /* webkit #35443 */
  content: '';
}
.t_c00066:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00066 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 */
}
.__c00066 { /* 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_c00066 { /* info for Javascript */
  display:none;
}
.l_c00066 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00066 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00066 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00066: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_c00066 {
    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_c00066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00066.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_c00066 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00066;src:url('chunks/assets/font_3d4568eb94915bc1b2012efd.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.284668;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_c00066;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;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_c00066;src:url('chunks/assets/font_a75e6c452a8c2e7458166147.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.284180;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_c00066;src:url('chunks/assets/font_66dbfec7614db9e736aad436.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:0.666000;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_c00066{transform:matrix(0.158784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158784,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{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);}
.v0_c00066{vertical-align:0.000000px;}
.ls5c_c00066{letter-spacing:-2.541000px;}
.ls77_c00066{letter-spacing:-2.511960px;}
.ls93_c00066{letter-spacing:-2.410320px;}
.ls74_c00066{letter-spacing:-2.337720px;}
.ls82_c00066{letter-spacing:-2.018280px;}
.ls71_c00066{letter-spacing:-1.880340px;}
.ls4b_c00066{letter-spacing:-1.800480px;}
.ls99_c00066{letter-spacing:-1.788000px;}
.ls88_c00066{letter-spacing:-1.655280px;}
.ls56_c00066{letter-spacing:-1.611720px;}
.ls70_c00066{letter-spacing:-1.589940px;}
.ls50_c00066{letter-spacing:-1.568160px;}
.ls55_c00066{letter-spacing:-1.546380px;}
.ls51_c00066{letter-spacing:-1.502820px;}
.ls87_c00066{letter-spacing:-1.481040px;}
.ls48_c00066{letter-spacing:-1.452000px;}
.ls52_c00066{letter-spacing:-1.444740px;}
.ls8e_c00066{letter-spacing:-1.372140px;}
.ls91_c00066{letter-spacing:-1.335840px;}
.ls7b_c00066{letter-spacing:-1.190640px;}
.ls81_c00066{letter-spacing:-1.147080px;}
.ls3e_c00066{letter-spacing:-1.103520px;}
.ls5f_c00066{letter-spacing:-1.045440px;}
.ls57_c00066{letter-spacing:-0.972840px;}
.ls95_c00066{letter-spacing:-0.951060px;}
.ls63_c00066{letter-spacing:-0.922020px;}
.ls85_c00066{letter-spacing:-0.892980px;}
.ls64_c00066{letter-spacing:-0.820380px;}
.ls67_c00066{letter-spacing:-0.813120px;}
.ls49_c00066{letter-spacing:-0.791340px;}
.ls4e_c00066{letter-spacing:-0.762300px;}
.ls4d_c00066{letter-spacing:-0.733260px;}
.ls8b_c00066{letter-spacing:-0.711480px;}
.ls97_c00066{letter-spacing:-0.696960px;}
.ls42_c00066{letter-spacing:-0.689700px;}
.ls90_c00066{letter-spacing:-0.675180px;}
.ls80_c00066{letter-spacing:-0.646140px;}
.ls98_c00066{letter-spacing:-0.580800px;}
.ls65_c00066{letter-spacing:-0.559020px;}
.ls43_c00066{letter-spacing:-0.544500px;}
.ls6b_c00066{letter-spacing:-0.493680px;}
.ls8d_c00066{letter-spacing:-0.471900px;}
.ls68_c00066{letter-spacing:-0.457380px;}
.ls6c_c00066{letter-spacing:-0.450120px;}
.ls5e_c00066{letter-spacing:-0.435600px;}
.ls5b_c00066{letter-spacing:-0.428340px;}
.ls7c_c00066{letter-spacing:-0.413820px;}
.ls75_c00066{letter-spacing:-0.399300px;}
.ls96_c00066{letter-spacing:-0.384780px;}
.ls4a_c00066{letter-spacing:-0.370260px;}
.ls73_c00066{letter-spacing:-0.355740px;}
.ls69_c00066{letter-spacing:-0.348480px;}
.ls94_c00066{letter-spacing:-0.341220px;}
.ls60_c00066{letter-spacing:-0.333960px;}
.ls92_c00066{letter-spacing:-0.326700px;}
.ls6e_c00066{letter-spacing:-0.319440px;}
.ls6d_c00066{letter-spacing:-0.312180px;}
.ls7a_c00066{letter-spacing:-0.304920px;}
.ls83_c00066{letter-spacing:-0.290400px;}
.ls89_c00066{letter-spacing:-0.283140px;}
.ls54_c00066{letter-spacing:-0.268620px;}
.ls3f_c00066{letter-spacing:-0.254100px;}
.ls8c_c00066{letter-spacing:-0.232320px;}
.ls53_c00066{letter-spacing:-0.225060px;}
.ls76_c00066{letter-spacing:-0.196020px;}
.ls6a_c00066{letter-spacing:-0.188760px;}
.ls61_c00066{letter-spacing:-0.181500px;}
.ls7e_c00066{letter-spacing:-0.174240px;}
.ls5a_c00066{letter-spacing:-0.159720px;}
.ls4f_c00066{letter-spacing:-0.152460px;}
.ls46_c00066{letter-spacing:-0.145200px;}
.ls7f_c00066{letter-spacing:-0.137940px;}
.ls44_c00066{letter-spacing:-0.130680px;}
.ls6f_c00066{letter-spacing:-0.123420px;}
.ls78_c00066{letter-spacing:-0.116160px;}
.ls72_c00066{letter-spacing:-0.108900px;}
.ls86_c00066{letter-spacing:-0.094380px;}
.ls4c_c00066{letter-spacing:-0.087120px;}
.ls5d_c00066{letter-spacing:-0.079860px;}
.ls62_c00066{letter-spacing:-0.072600px;}
.ls84_c00066{letter-spacing:-0.058080px;}
.ls8a_c00066{letter-spacing:-0.050820px;}
.ls47_c00066{letter-spacing:-0.043560px;}
.ls58_c00066{letter-spacing:-0.036300px;}
.ls7d_c00066{letter-spacing:-0.029040px;}
.ls45_c00066{letter-spacing:-0.021780px;}
.ls79_c00066{letter-spacing:-0.014520px;}
.ls66_c00066{letter-spacing:-0.007260px;}
.ls40_c00066{letter-spacing:0.000000px;}
.ls1b_c00066{letter-spacing:0.014520px;}
.ls33_c00066{letter-spacing:0.021780px;}
.ls2f_c00066{letter-spacing:0.036300px;}
.ls7_c00066{letter-spacing:0.043560px;}
.ls17_c00066{letter-spacing:0.050820px;}
.ls1f_c00066{letter-spacing:0.058080px;}
.lsc_c00066{letter-spacing:0.065340px;}
.lsd_c00066{letter-spacing:0.072600px;}
.ls1e_c00066{letter-spacing:0.087120px;}
.ls30_c00066{letter-spacing:0.094380px;}
.ls8_c00066{letter-spacing:0.101640px;}
.ls41_c00066{letter-spacing:0.108900px;}
.ls21_c00066{letter-spacing:0.116160px;}
.ls26_c00066{letter-spacing:0.123420px;}
.ls25_c00066{letter-spacing:0.130680px;}
.ls39_c00066{letter-spacing:0.137940px;}
.ls2d_c00066{letter-spacing:0.152460px;}
.ls1c_c00066{letter-spacing:0.159720px;}
.ls35_c00066{letter-spacing:0.174240px;}
.ls2_c00066{letter-spacing:0.188760px;}
.ls6_c00066{letter-spacing:0.191160px;}
.ls31_c00066{letter-spacing:0.196020px;}
.ls14_c00066{letter-spacing:0.203280px;}
.lsa_c00066{letter-spacing:0.225060px;}
.ls2a_c00066{letter-spacing:0.232320px;}
.ls19_c00066{letter-spacing:0.246840px;}
.ls3a_c00066{letter-spacing:0.261360px;}
.ls2e_c00066{letter-spacing:0.275880px;}
.ls3_c00066{letter-spacing:0.283140px;}
.ls13_c00066{letter-spacing:0.290400px;}
.ls27_c00066{letter-spacing:0.304920px;}
.ls12_c00066{letter-spacing:0.348480px;}
.ls34_c00066{letter-spacing:0.363000px;}
.ls37_c00066{letter-spacing:0.370260px;}
.ls59_c00066{letter-spacing:0.377520px;}
.ls11_c00066{letter-spacing:0.384780px;}
.ls10_c00066{letter-spacing:0.392040px;}
.ls3c_c00066{letter-spacing:0.421080px;}
.ls9_c00066{letter-spacing:0.442860px;}
.ls5_c00066{letter-spacing:0.457380px;}
.ls23_c00066{letter-spacing:0.471900px;}
.ls22_c00066{letter-spacing:0.479160px;}
.lsb_c00066{letter-spacing:0.493680px;}
.ls20_c00066{letter-spacing:0.515460px;}
.lsf_c00066{letter-spacing:0.551760px;}
.lse_c00066{letter-spacing:0.573480px;}
.ls16_c00066{letter-spacing:0.653400px;}
.ls29_c00066{letter-spacing:0.675180px;}
.ls38_c00066{letter-spacing:0.740520px;}
.ls4_c00066{letter-spacing:0.764640px;}
.ls8f_c00066{letter-spacing:0.778800px;}
.ls1a_c00066{letter-spacing:0.800040px;}
.ls24_c00066{letter-spacing:0.835440px;}
.ls28_c00066{letter-spacing:0.856680px;}
.ls36_c00066{letter-spacing:0.987360px;}
.ls18_c00066{letter-spacing:1.001880px;}
.ls15_c00066{letter-spacing:1.019520px;}
.ls1_c00066{letter-spacing:1.231920px;}
.ls3b_c00066{letter-spacing:1.335840px;}
.ls32_c00066{letter-spacing:1.600080px;}
.ls2b_c00066{letter-spacing:1.618980px;}
.ls1d_c00066{letter-spacing:2.250600px;}
.ls2c_c00066{letter-spacing:2.337720px;}
.ls0_c00066{letter-spacing:2.628000px;}
.ls3d_c00066{letter-spacing:2.664000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{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__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00066{word-spacing:0.000000px;}
._17_c00066{margin-left:-10.313640px;}
._1c_c00066{margin-left:-6.167940px;}
._18_c00066{margin-left:-4.809180px;}
._0_c00066{margin-left:-3.288000px;}
._3_c00066{margin-left:-1.951200px;}
._19_c00066{width:1.278180px;}
._4_c00066{width:2.396880px;}
._2_c00066{width:4.167900px;}
._5_c00066{width:6.021900px;}
._1_c00066{width:7.371120px;}
._d_c00066{width:8.457900px;}
._13_c00066{width:9.551940px;}
._c_c00066{width:10.556040px;}
._15_c00066{width:11.633640px;}
._14_c00066{width:12.734760px;}
._b_c00066{width:13.876200px;}
._16_c00066{width:15.111180px;}
._1a_c00066{width:16.494720px;}
._1d_c00066{width:18.463980px;}
._10_c00066{width:19.863360px;}
._1b_c00066{width:21.039480px;}
._f_c00066{width:22.549560px;}
._11_c00066{width:24.393600px;}
._12_c00066{width:25.961760px;}
._e_c00066{width:27.914700px;}
._a_c00066{width:39.269340px;}
._8_c00066{width:40.293000px;}
._7_c00066{width:41.562960px;}
._6_c00066{width:43.690680px;}
._9_c00066{width:47.146440px;}
.fc0_c00066{color:transparent;}
.fs4_c00066{font-size:53.280000px;}
.fs0_c00066{font-size:60.000000px;}
.fs2_c00066{font-size:67.200000px;}
.fs3_c00066{font-size:70.800000px;}
.fs1_c00066{font-size:72.600000px;}
.y0_c00066{bottom:0.000000px;}
.y20_c00066{bottom:71.280015px;}
.y1e_c00066{bottom:164.512965px;}
.y1f_c00066{bottom:164.520015px;}
.y1d_c00066{bottom:195.495015px;}
.y1c_c00066{bottom:256.338615px;}
.y1b_c00066{bottom:318.611265px;}
.y1a_c00066{bottom:349.926015px;}
.y19_c00066{bottom:381.252765px;}
.y18_c00066{bottom:412.216665px;}
.y17_c00066{bottom:443.180565px;}
.y16_c00066{bottom:474.144465px;}
.y15_c00066{bottom:534.983265px;}
.y13_c00066{bottom:566.654265px;}
.y14_c00066{bottom:566.655015px;}
.y11_c00066{bottom:597.592215px;}
.y12_c00066{bottom:597.600015px;}
.y10_c00066{bottom:628.574265px;}
.yf_c00066{bottom:659.508165px;}
.ye_c00066{bottom:690.127215px;}
.yd_c00066{bottom:752.051115px;}
.yc_c00066{bottom:783.015015px;}
.yb_c00066{bottom:813.593115px;}
.y9_c00066{bottom:844.912965px;}
.ya_c00066{bottom:844.920015px;}
.y8_c00066{bottom:875.885415px;}
.y7_c00066{bottom:937.432065px;}
.y6_c00066{bottom:968.395965px;}
.y5_c00066{bottom:999.015015px;}
.y4_c00066{bottom:1029.955965px;}
.y3_c00066{bottom:1060.575015px;}
.y2_c00066{bottom:1122.855015px;}
.y1_c00066{bottom:1198.800015px;}
.h8_c00066{height:35.484480px;}
.h2_c00066{height:58.886719px;}
.ha_c00066{height:71.228930px;}
.h3_c00066{height:71.252930px;}
.h9_c00066{height:71.261930px;}
.h6_c00066{height:71.268530px;}
.h4_c00066{height:71.269130px;}
.h5_c00066{height:71.291330px;}
.h7_c00066{height:71.300330px;}
.h1_c00066{height:1263.000000px;}
.h0_c00066{height:1263.240015px;}
.w1_c00066{width:892.500000px;}
.w0_c00066{width:892.800000px;}
.x0_c00066{left:0.000000px;}
.xf_c00066{left:117.215100px;}
.xd_c00066{left:119.855700px;}
.x6_c00066{left:120.965700px;}
.x4_c00066{left:122.232300px;}
.x2_c00066{left:123.405000px;}
.x1_c00066{left:124.770000px;}
.xe_c00066{left:173.797500px;}
.x5_c00066{left:175.212150px;}
.x3_c00066{left:177.015000px;}
.x9_c00066{left:358.035000px;}
.x7_c00066{left:370.275000px;}
.xa_c00066{left:383.205000px;}
.x10_c00066{left:388.995000px;}
.x8_c00066{left:394.005000px;}
.x11_c00066{left:412.380000px;}
.x12_c00066{left:427.470000px;}
.xb_c00066{left:638.295000px;}
.xc_c00066{left:662.940000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls5c_c00066{letter-spacing:-2.258667pt;}
.ls77_c00066{letter-spacing:-2.232853pt;}
.ls93_c00066{letter-spacing:-2.142507pt;}
.ls74_c00066{letter-spacing:-2.077973pt;}
.ls82_c00066{letter-spacing:-1.794027pt;}
.ls71_c00066{letter-spacing:-1.671413pt;}
.ls4b_c00066{letter-spacing:-1.600427pt;}
.ls99_c00066{letter-spacing:-1.589333pt;}
.ls88_c00066{letter-spacing:-1.471360pt;}
.ls56_c00066{letter-spacing:-1.432640pt;}
.ls70_c00066{letter-spacing:-1.413280pt;}
.ls50_c00066{letter-spacing:-1.393920pt;}
.ls55_c00066{letter-spacing:-1.374560pt;}
.ls51_c00066{letter-spacing:-1.335840pt;}
.ls87_c00066{letter-spacing:-1.316480pt;}
.ls48_c00066{letter-spacing:-1.290667pt;}
.ls52_c00066{letter-spacing:-1.284213pt;}
.ls8e_c00066{letter-spacing:-1.219680pt;}
.ls91_c00066{letter-spacing:-1.187413pt;}
.ls7b_c00066{letter-spacing:-1.058347pt;}
.ls81_c00066{letter-spacing:-1.019627pt;}
.ls3e_c00066{letter-spacing:-0.980907pt;}
.ls5f_c00066{letter-spacing:-0.929280pt;}
.ls57_c00066{letter-spacing:-0.864747pt;}
.ls95_c00066{letter-spacing:-0.845387pt;}
.ls63_c00066{letter-spacing:-0.819573pt;}
.ls85_c00066{letter-spacing:-0.793760pt;}
.ls64_c00066{letter-spacing:-0.729227pt;}
.ls67_c00066{letter-spacing:-0.722773pt;}
.ls49_c00066{letter-spacing:-0.703413pt;}
.ls4e_c00066{letter-spacing:-0.677600pt;}
.ls4d_c00066{letter-spacing:-0.651787pt;}
.ls8b_c00066{letter-spacing:-0.632427pt;}
.ls97_c00066{letter-spacing:-0.619520pt;}
.ls42_c00066{letter-spacing:-0.613067pt;}
.ls90_c00066{letter-spacing:-0.600160pt;}
.ls80_c00066{letter-spacing:-0.574347pt;}
.ls98_c00066{letter-spacing:-0.516267pt;}
.ls65_c00066{letter-spacing:-0.496907pt;}
.ls43_c00066{letter-spacing:-0.484000pt;}
.ls6b_c00066{letter-spacing:-0.438827pt;}
.ls8d_c00066{letter-spacing:-0.419467pt;}
.ls68_c00066{letter-spacing:-0.406560pt;}
.ls6c_c00066{letter-spacing:-0.400107pt;}
.ls5e_c00066{letter-spacing:-0.387200pt;}
.ls5b_c00066{letter-spacing:-0.380747pt;}
.ls7c_c00066{letter-spacing:-0.367840pt;}
.ls75_c00066{letter-spacing:-0.354933pt;}
.ls96_c00066{letter-spacing:-0.342027pt;}
.ls4a_c00066{letter-spacing:-0.329120pt;}
.ls73_c00066{letter-spacing:-0.316213pt;}
.ls69_c00066{letter-spacing:-0.309760pt;}
.ls94_c00066{letter-spacing:-0.303307pt;}
.ls60_c00066{letter-spacing:-0.296853pt;}
.ls92_c00066{letter-spacing:-0.290400pt;}
.ls6e_c00066{letter-spacing:-0.283947pt;}
.ls6d_c00066{letter-spacing:-0.277493pt;}
.ls7a_c00066{letter-spacing:-0.271040pt;}
.ls83_c00066{letter-spacing:-0.258133pt;}
.ls89_c00066{letter-spacing:-0.251680pt;}
.ls54_c00066{letter-spacing:-0.238773pt;}
.ls3f_c00066{letter-spacing:-0.225867pt;}
.ls8c_c00066{letter-spacing:-0.206507pt;}
.ls53_c00066{letter-spacing:-0.200053pt;}
.ls76_c00066{letter-spacing:-0.174240pt;}
.ls6a_c00066{letter-spacing:-0.167787pt;}
.ls61_c00066{letter-spacing:-0.161333pt;}
.ls7e_c00066{letter-spacing:-0.154880pt;}
.ls5a_c00066{letter-spacing:-0.141973pt;}
.ls4f_c00066{letter-spacing:-0.135520pt;}
.ls46_c00066{letter-spacing:-0.129067pt;}
.ls7f_c00066{letter-spacing:-0.122613pt;}
.ls44_c00066{letter-spacing:-0.116160pt;}
.ls6f_c00066{letter-spacing:-0.109707pt;}
.ls78_c00066{letter-spacing:-0.103253pt;}
.ls72_c00066{letter-spacing:-0.096800pt;}
.ls86_c00066{letter-spacing:-0.083893pt;}
.ls4c_c00066{letter-spacing:-0.077440pt;}
.ls5d_c00066{letter-spacing:-0.070987pt;}
.ls62_c00066{letter-spacing:-0.064533pt;}
.ls84_c00066{letter-spacing:-0.051627pt;}
.ls8a_c00066{letter-spacing:-0.045173pt;}
.ls47_c00066{letter-spacing:-0.038720pt;}
.ls58_c00066{letter-spacing:-0.032267pt;}
.ls7d_c00066{letter-spacing:-0.025813pt;}
.ls45_c00066{letter-spacing:-0.019360pt;}
.ls79_c00066{letter-spacing:-0.012907pt;}
.ls66_c00066{letter-spacing:-0.006453pt;}
.ls40_c00066{letter-spacing:0.000000pt;}
.ls1b_c00066{letter-spacing:0.012907pt;}
.ls33_c00066{letter-spacing:0.019360pt;}
.ls2f_c00066{letter-spacing:0.032267pt;}
.ls7_c00066{letter-spacing:0.038720pt;}
.ls17_c00066{letter-spacing:0.045173pt;}
.ls1f_c00066{letter-spacing:0.051627pt;}
.lsc_c00066{letter-spacing:0.058080pt;}
.lsd_c00066{letter-spacing:0.064533pt;}
.ls1e_c00066{letter-spacing:0.077440pt;}
.ls30_c00066{letter-spacing:0.083893pt;}
.ls8_c00066{letter-spacing:0.090347pt;}
.ls41_c00066{letter-spacing:0.096800pt;}
.ls21_c00066{letter-spacing:0.103253pt;}
.ls26_c00066{letter-spacing:0.109707pt;}
.ls25_c00066{letter-spacing:0.116160pt;}
.ls39_c00066{letter-spacing:0.122613pt;}
.ls2d_c00066{letter-spacing:0.135520pt;}
.ls1c_c00066{letter-spacing:0.141973pt;}
.ls35_c00066{letter-spacing:0.154880pt;}
.ls2_c00066{letter-spacing:0.167787pt;}
.ls6_c00066{letter-spacing:0.169920pt;}
.ls31_c00066{letter-spacing:0.174240pt;}
.ls14_c00066{letter-spacing:0.180693pt;}
.lsa_c00066{letter-spacing:0.200053pt;}
.ls2a_c00066{letter-spacing:0.206507pt;}
.ls19_c00066{letter-spacing:0.219413pt;}
.ls3a_c00066{letter-spacing:0.232320pt;}
.ls2e_c00066{letter-spacing:0.245227pt;}
.ls3_c00066{letter-spacing:0.251680pt;}
.ls13_c00066{letter-spacing:0.258133pt;}
.ls27_c00066{letter-spacing:0.271040pt;}
.ls12_c00066{letter-spacing:0.309760pt;}
.ls34_c00066{letter-spacing:0.322667pt;}
.ls37_c00066{letter-spacing:0.329120pt;}
.ls59_c00066{letter-spacing:0.335573pt;}
.ls11_c00066{letter-spacing:0.342027pt;}
.ls10_c00066{letter-spacing:0.348480pt;}
.ls3c_c00066{letter-spacing:0.374293pt;}
.ls9_c00066{letter-spacing:0.393653pt;}
.ls5_c00066{letter-spacing:0.406560pt;}
.ls23_c00066{letter-spacing:0.419467pt;}
.ls22_c00066{letter-spacing:0.425920pt;}
.lsb_c00066{letter-spacing:0.438827pt;}
.ls20_c00066{letter-spacing:0.458187pt;}
.lsf_c00066{letter-spacing:0.490453pt;}
.lse_c00066{letter-spacing:0.509760pt;}
.ls16_c00066{letter-spacing:0.580800pt;}
.ls29_c00066{letter-spacing:0.600160pt;}
.ls38_c00066{letter-spacing:0.658240pt;}
.ls4_c00066{letter-spacing:0.679680pt;}
.ls8f_c00066{letter-spacing:0.692267pt;}
.ls1a_c00066{letter-spacing:0.711147pt;}
.ls24_c00066{letter-spacing:0.742613pt;}
.ls28_c00066{letter-spacing:0.761493pt;}
.ls36_c00066{letter-spacing:0.877653pt;}
.ls18_c00066{letter-spacing:0.890560pt;}
.ls15_c00066{letter-spacing:0.906240pt;}
.ls1_c00066{letter-spacing:1.095040pt;}
.ls3b_c00066{letter-spacing:1.187413pt;}
.ls32_c00066{letter-spacing:1.422293pt;}
.ls2b_c00066{letter-spacing:1.439093pt;}
.ls1d_c00066{letter-spacing:2.000533pt;}
.ls2c_c00066{letter-spacing:2.077973pt;}
.ls0_c00066{letter-spacing:2.336000pt;}
.ls3d_c00066{letter-spacing:2.368000pt;}
.ws0_c00066{word-spacing:0.000000pt;}
._17_c00066{margin-left:-9.167680pt;}
._1c_c00066{margin-left:-5.482613pt;}
._18_c00066{margin-left:-4.274827pt;}
._0_c00066{margin-left:-2.922667pt;}
._3_c00066{margin-left:-1.734400pt;}
._19_c00066{width:1.136160pt;}
._4_c00066{width:2.130560pt;}
._2_c00066{width:3.704800pt;}
._5_c00066{width:5.352800pt;}
._1_c00066{width:6.552107pt;}
._d_c00066{width:7.518133pt;}
._13_c00066{width:8.490613pt;}
._c_c00066{width:9.383147pt;}
._15_c00066{width:10.341013pt;}
._14_c00066{width:11.319787pt;}
._b_c00066{width:12.334400pt;}
._16_c00066{width:13.432160pt;}
._1a_c00066{width:14.661973pt;}
._1d_c00066{width:16.412427pt;}
._10_c00066{width:17.656320pt;}
._1b_c00066{width:18.701760pt;}
._f_c00066{width:20.044053pt;}
._11_c00066{width:21.683200pt;}
._12_c00066{width:23.077120pt;}
._e_c00066{width:24.813067pt;}
._a_c00066{width:34.906080pt;}
._8_c00066{width:35.816000pt;}
._7_c00066{width:36.944853pt;}
._6_c00066{width:38.836160pt;}
._9_c00066{width:41.907947pt;}
.fs4_c00066{font-size:47.360000pt;}
.fs0_c00066{font-size:53.333333pt;}
.fs2_c00066{font-size:59.733333pt;}
.fs3_c00066{font-size:62.933333pt;}
.fs1_c00066{font-size:64.533333pt;}
.y0_c00066{bottom:0.000000pt;}
.y20_c00066{bottom:63.360013pt;}
.y1e_c00066{bottom:146.233747pt;}
.y1f_c00066{bottom:146.240013pt;}
.y1d_c00066{bottom:173.773347pt;}
.y1c_c00066{bottom:227.856547pt;}
.y1b_c00066{bottom:283.210013pt;}
.y1a_c00066{bottom:311.045347pt;}
.y19_c00066{bottom:338.891347pt;}
.y18_c00066{bottom:366.414813pt;}
.y17_c00066{bottom:393.938280pt;}
.y16_c00066{bottom:421.461747pt;}
.y15_c00066{bottom:475.540680pt;}
.y13_c00066{bottom:503.692680pt;}
.y14_c00066{bottom:503.693347pt;}
.y11_c00066{bottom:531.193080pt;}
.y12_c00066{bottom:531.200013pt;}
.y10_c00066{bottom:558.732680pt;}
.yf_c00066{bottom:586.229480pt;}
.ye_c00066{bottom:613.446413pt;}
.yd_c00066{bottom:668.489880pt;}
.yc_c00066{bottom:696.013347pt;}
.yb_c00066{bottom:723.193880pt;}
.y9_c00066{bottom:751.033747pt;}
.ya_c00066{bottom:751.040013pt;}
.y8_c00066{bottom:778.564813pt;}
.y7_c00066{bottom:833.272947pt;}
.y6_c00066{bottom:860.796413pt;}
.y5_c00066{bottom:888.013347pt;}
.y4_c00066{bottom:915.516413pt;}
.y3_c00066{bottom:942.733347pt;}
.y2_c00066{bottom:998.093347pt;}
.y1_c00066{bottom:1065.600013pt;}
.h8_c00066{height:31.541760pt;}
.h2_c00066{height:52.343750pt;}
.ha_c00066{height:63.314604pt;}
.h3_c00066{height:63.335938pt;}
.h9_c00066{height:63.343938pt;}
.h6_c00066{height:63.349804pt;}
.h4_c00066{height:63.350338pt;}
.h5_c00066{height:63.370071pt;}
.h7_c00066{height:63.378071pt;}
.h1_c00066{height:1122.666667pt;}
.h0_c00066{height:1122.880013pt;}
.w1_c00066{width:793.333333pt;}
.w0_c00066{width:793.600000pt;}
.x0_c00066{left:0.000000pt;}
.xf_c00066{left:104.191200pt;}
.xd_c00066{left:106.538400pt;}
.x6_c00066{left:107.525067pt;}
.x4_c00066{left:108.650933pt;}
.x2_c00066{left:109.693333pt;}
.x1_c00066{left:110.906667pt;}
.xe_c00066{left:154.486667pt;}
.x5_c00066{left:155.744133pt;}
.x3_c00066{left:157.346667pt;}
.x9_c00066{left:318.253333pt;}
.x7_c00066{left:329.133333pt;}
.xa_c00066{left:340.626667pt;}
.x10_c00066{left:345.773333pt;}
.x8_c00066{left:350.226667pt;}
.x11_c00066{left:366.560000pt;}
.x12_c00066{left:379.973333pt;}
.xb_c00066{left:567.373333pt;}
.xc_c00066{left:589.280000pt;}
}





/* 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_c00067 {
    display:none;
  }
  .loading-indicator_c00067.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00067 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_c00067 { 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_c00067" -> "#page-container .classname_c00067")
 */
.pf_c00067 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00067 { /* 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_c00067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00067 { /* 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_c00067 { /* 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_c00067 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00067 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00067 {overflow:visible;}
  }
}
.c_c00067 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00067 { /* 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_c00067:after { /* webkit #35443 */
  content: '';
}
.t_c00067:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00067 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 */
}
.__c00067 { /* 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_c00067 { /* info for Javascript */
  display:none;
}
.l_c00067 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00067 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00067 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00067: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_c00067 {
    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_c00067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00067.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_c00067 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00067;src:url('chunks/assets/font_6400f8317875ca77bd5c9597.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.284668;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_c00067;src:url('chunks/assets/font_cb3baddb23e8552f166830e7.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.284180;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_c00067;src:url('chunks/assets/font_81b91c80676f179b171339e3.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;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:ff4_c00067;src:url('chunks/assets/font_20bfbc17d8849e5b3a3af301.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;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:ff5_c00067;src:url('chunks/assets/font_97c5555e2611fb68fe5c9edc.woff2')format("woff");}.ff5_c00067{font-family:ff5_c00067;line-height:1.311035;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_c00067;src:url('chunks/assets/font_5071868111e07940a8d1b10a.woff2')format("woff");}.ff6_c00067{font-family:ff6_c00067;line-height:0.666000;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_c00067;src:url('chunks/assets/font_7ab9e95b979297adc3d1b49b.woff2')format("woff");}.ff7_c00067{font-family:ff7_c00067;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_c00067;src:url('chunks/assets/font_46a4f4eb74fca94f60aeb1eb.woff2')format("woff");}.ff8_c00067{font-family:ff8_c00067;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;}
.m11_c00067{transform:matrix(0.168004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168004,0.000000,0.000000,0.250000,0,0);}
.m13_c00067{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9_c00067{transform:matrix(0.231324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231324,0.000000,0.000000,0.250000,0,0);}
.m5_c00067{transform:matrix(0.236921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236921,0.000000,0.000000,0.250000,0,0);}
.m2_c00067{transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);}
.ma_c00067{transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);}
.m6_c00067{transform:matrix(0.244324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244324,0.000000,0.000000,0.250000,0,0);}
.mb_c00067{transform:matrix(0.247027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247027,0.000000,0.000000,0.250000,0,0);}
.m8_c00067{transform:matrix(0.247762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247762,0.000000,0.000000,0.250000,0,0);}
.m4_c00067{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m7_c00067{transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248812,0.000000,0.000000,0.250000,0,0);}
.m3_c00067{transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);}
.m0_c00067{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);}
.m12_c00067{transform:matrix(0.261881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261881,0.000000,0.000000,0.250000,0,0);}
.mf_c00067{transform:matrix(0.267718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267718,0.000000,0.000000,0.250000,0,0);}
.md_c00067{transform:matrix(0.318941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318941,0.000000,0.000000,0.250000,0,0);}
.m15_c00067{transform:matrix(0.371881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371881,0.000000,0.000000,0.250000,0,0);}
.m10_c00067{transform:matrix(0.378070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378070,0.000000,0.000000,0.250000,0,0);}
.m14_c00067{transform:matrix(0.385136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385136,0.000000,0.000000,0.250000,0,0);}
.me_c00067{transform:matrix(0.470833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470833,0.000000,0.000000,0.250000,0,0);}
.mc_c00067{transform:matrix(0.831919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.831919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.831919,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls18_c00067{letter-spacing:-2.541000px;}
.ls6e_c00067{letter-spacing:-2.478000px;}
.ls62_c00067{letter-spacing:-2.410320px;}
.ls88_c00067{letter-spacing:-2.337720px;}
.ls83_c00067{letter-spacing:-2.265120px;}
.ls7b_c00067{letter-spacing:-2.243340px;}
.ls8c_c00067{letter-spacing:-2.228820px;}
.ls65_c00067{letter-spacing:-2.207040px;}
.ls22_c00067{letter-spacing:-2.170740px;}
.ls58_c00067{letter-spacing:-2.083620px;}
.ls60_c00067{letter-spacing:-1.996500px;}
.ls6d_c00067{letter-spacing:-1.894860px;}
.ls75_c00067{letter-spacing:-1.880340px;}
.ls92_c00067{letter-spacing:-1.807740px;}
.ls43_c00067{letter-spacing:-1.655280px;}
.ls3c_c00067{letter-spacing:-1.618980px;}
.ls37_c00067{letter-spacing:-1.611720px;}
.ls21_c00067{letter-spacing:-1.568160px;}
.ls47_c00067{letter-spacing:-1.546380px;}
.ls82_c00067{letter-spacing:-1.517340px;}
.ls87_c00067{letter-spacing:-1.502820px;}
.ls9b_c00067{letter-spacing:-1.493280px;}
.ls7c_c00067{letter-spacing:-1.459260px;}
.ls49_c00067{letter-spacing:-1.452000px;}
.ls1e_c00067{letter-spacing:-1.364880px;}
.ls7e_c00067{letter-spacing:-1.263240px;}
.ls84_c00067{letter-spacing:-1.226940px;}
.ls76_c00067{letter-spacing:-1.190640px;}
.ls86_c00067{letter-spacing:-1.132560px;}
.ls8f_c00067{letter-spacing:-1.118040px;}
.ls3e_c00067{letter-spacing:-1.103520px;}
.ls5a_c00067{letter-spacing:-1.081740px;}
.ls61_c00067{letter-spacing:-1.067220px;}
.ls57_c00067{letter-spacing:-1.030920px;}
.ls4d_c00067{letter-spacing:-0.965580px;}
.ls71_c00067{letter-spacing:-0.943800px;}
.ls79_c00067{letter-spacing:-0.929280px;}
.ls93_c00067{letter-spacing:-0.922020px;}
.ls91_c00067{letter-spacing:-0.914760px;}
.ls9d_c00067{letter-spacing:-0.910080px;}
.ls6a_c00067{letter-spacing:-0.900240px;}
.ls17_c00067{letter-spacing:-0.892980px;}
.ls36_c00067{letter-spacing:-0.885720px;}
.ls8e_c00067{letter-spacing:-0.863940px;}
.ls4c_c00067{letter-spacing:-0.856680px;}
.ls8d_c00067{letter-spacing:-0.834900px;}
.ls85_c00067{letter-spacing:-0.820380px;}
.ls63_c00067{letter-spacing:-0.813120px;}
.ls50_c00067{letter-spacing:-0.791340px;}
.ls73_c00067{letter-spacing:-0.784080px;}
.ls7d_c00067{letter-spacing:-0.776820px;}
.ls8b_c00067{letter-spacing:-0.769560px;}
.ls20_c00067{letter-spacing:-0.762300px;}
.ls55_c00067{letter-spacing:-0.740520px;}
.ls64_c00067{letter-spacing:-0.726000px;}
.ls66_c00067{letter-spacing:-0.711480px;}
.ls70_c00067{letter-spacing:-0.704220px;}
.ls5b_c00067{letter-spacing:-0.696960px;}
.ls26_c00067{letter-spacing:-0.689700px;}
.ls3b_c00067{letter-spacing:-0.675180px;}
.ls6b_c00067{letter-spacing:-0.667920px;}
.ls4a_c00067{letter-spacing:-0.660660px;}
.ls2c_c00067{letter-spacing:-0.653400px;}
.ls40_c00067{letter-spacing:-0.638880px;}
.ls2e_c00067{letter-spacing:-0.624360px;}
.ls5e_c00067{letter-spacing:-0.617100px;}
.ls31_c00067{letter-spacing:-0.602580px;}
.ls48_c00067{letter-spacing:-0.595320px;}
.ls46_c00067{letter-spacing:-0.588060px;}
.ls72_c00067{letter-spacing:-0.580800px;}
.ls1f_c00067{letter-spacing:-0.573540px;}
.ls41_c00067{letter-spacing:-0.566280px;}
.ls51_c00067{letter-spacing:-0.559020px;}
.ls81_c00067{letter-spacing:-0.551760px;}
.ls2b_c00067{letter-spacing:-0.544500px;}
.ls5f_c00067{letter-spacing:-0.537240px;}
.ls1a_c00067{letter-spacing:-0.529980px;}
.ls3a_c00067{letter-spacing:-0.522720px;}
.ls59_c00067{letter-spacing:-0.508200px;}
.ls24_c00067{letter-spacing:-0.500940px;}
.ls52_c00067{letter-spacing:-0.493680px;}
.ls16_c00067{letter-spacing:-0.486420px;}
.ls25_c00067{letter-spacing:-0.479160px;}
.ls69_c00067{letter-spacing:-0.464640px;}
.ls4e_c00067{letter-spacing:-0.457380px;}
.ls74_c00067{letter-spacing:-0.450120px;}
.ls2d_c00067{letter-spacing:-0.435600px;}
.ls3f_c00067{letter-spacing:-0.413820px;}
.ls42_c00067{letter-spacing:-0.406560px;}
.ls30_c00067{letter-spacing:-0.399300px;}
.ls80_c00067{letter-spacing:-0.392040px;}
.ls90_c00067{letter-spacing:-0.377520px;}
.ls5c_c00067{letter-spacing:-0.370260px;}
.ls8a_c00067{letter-spacing:-0.355740px;}
.ls5d_c00067{letter-spacing:-0.348480px;}
.ls1c_c00067{letter-spacing:-0.341220px;}
.ls7a_c00067{letter-spacing:-0.326700px;}
.ls68_c00067{letter-spacing:-0.319440px;}
.ls77_c00067{letter-spacing:-0.312180px;}
.ls38_c00067{letter-spacing:-0.304920px;}
.ls32_c00067{letter-spacing:-0.297660px;}
.ls34_c00067{letter-spacing:-0.290400px;}
.ls33_c00067{letter-spacing:-0.275880px;}
.ls23_c00067{letter-spacing:-0.268620px;}
.ls6f_c00067{letter-spacing:-0.254100px;}
.ls78_c00067{letter-spacing:-0.239580px;}
.ls7f_c00067{letter-spacing:-0.232320px;}
.ls67_c00067{letter-spacing:-0.210540px;}
.ls2f_c00067{letter-spacing:-0.207000px;}
.ls45_c00067{letter-spacing:-0.203280px;}
.ls19_c00067{letter-spacing:-0.196020px;}
.ls89_c00067{letter-spacing:-0.188760px;}
.ls4b_c00067{letter-spacing:-0.181500px;}
.ls4f_c00067{letter-spacing:-0.174240px;}
.ls99_c00067{letter-spacing:-0.169920px;}
.ls28_c00067{letter-spacing:-0.166980px;}
.ls29_c00067{letter-spacing:-0.152460px;}
.ls6c_c00067{letter-spacing:-0.137940px;}
.ls56_c00067{letter-spacing:-0.130680px;}
.ls27_c00067{letter-spacing:-0.123420px;}
.ls53_c00067{letter-spacing:-0.116160px;}
.ls3d_c00067{letter-spacing:-0.101640px;}
.ls1d_c00067{letter-spacing:-0.087120px;}
.ls44_c00067{letter-spacing:-0.065340px;}
.ls54_c00067{letter-spacing:-0.036300px;}
.ls39_c00067{letter-spacing:-0.014520px;}
.ls35_c00067{letter-spacing:0.000000px;}
.ls11_c00067{letter-spacing:0.029040px;}
.ls2_c00067{letter-spacing:0.056640px;}
.ls5_c00067{letter-spacing:0.116160px;}
.ls4_c00067{letter-spacing:0.181500px;}
.ls8_c00067{letter-spacing:0.203280px;}
.ls9_c00067{letter-spacing:0.240720px;}
.lsa_c00067{letter-spacing:0.377520px;}
.lsf_c00067{letter-spacing:0.382320px;}
.ls6_c00067{letter-spacing:0.435600px;}
.ls3_c00067{letter-spacing:0.442860px;}
.ls1b_c00067{letter-spacing:0.486420px;}
.lsd_c00067{letter-spacing:0.509760px;}
.lsb_c00067{letter-spacing:0.559320px;}
.lse_c00067{letter-spacing:0.653400px;}
.ls7_c00067{letter-spacing:0.820380px;}
.ls2a_c00067{letter-spacing:0.900240px;}
.ls12_c00067{letter-spacing:0.934560px;}
.ls1_c00067{letter-spacing:1.001880px;}
.lsc_c00067{letter-spacing:1.012440px;}
.ls94_c00067{letter-spacing:1.050030px;}
.ls13_c00067{letter-spacing:1.054920px;}
.ls14_c00067{letter-spacing:1.137000px;}
.ls10_c00067{letter-spacing:1.338120px;}
.ls95_c00067{letter-spacing:1.410000px;}
.ls96_c00067{letter-spacing:1.500000px;}
.ls9a_c00067{letter-spacing:1.950030px;}
.ls9c_c00067{letter-spacing:2.010000px;}
.ls15_c00067{letter-spacing:2.224020px;}
.ls0_c00067{letter-spacing:2.242200px;}
.ls97_c00067{letter-spacing:2.456760px;}
.ls98_c00067{letter-spacing:2.700000px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{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__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00067{word-spacing:0.000000px;}
._0_c00067{margin-left:-4.181400px;}
._8_c00067{margin-left:-1.310520px;}
._7_c00067{width:1.132560px;}
._5_c00067{width:2.780580px;}
._4_c00067{width:4.457640px;}
._19_c00067{width:5.468640px;}
._6_c00067{width:6.759060px;}
._16_c00067{width:8.356260px;}
._10_c00067{width:10.454400px;}
._3_c00067{width:11.913660px;}
._1_c00067{width:13.692360px;}
._17_c00067{width:15.100800px;}
._1a_c00067{width:16.802340px;}
._2_c00067{width:18.880080px;}
._a_c00067{width:20.515860px;}
._9_c00067{width:21.525900px;}
._11_c00067{width:22.941600px;}
._b_c00067{width:24.807420px;}
._1b_c00067{width:26.731320px;}
._c_c00067{width:28.401120px;}
._f_c00067{width:29.635320px;}
._e_c00067{width:30.934860px;}
._18_c00067{width:32.633700px;}
._15_c00067{width:34.238160px;}
._12_c00067{width:37.033260px;}
._d_c00067{width:38.499780px;}
._14_c00067{width:39.966300px;}
._13_c00067{width:41.032320px;}
._1c_c00067{width:147.951000px;}
.fc0_c00067{color:transparent;}
.fs5_c00067{font-size:21.000600px;}
.fs7_c00067{font-size:21.600000px;}
.fs6_c00067{font-size:22.800600px;}
.fs8_c00067{font-size:28.200000px;}
.fs9_c00067{font-size:30.000000px;}
.fsa_c00067{font-size:36.000000px;}
.fsc_c00067{font-size:39.000600px;}
.fse_c00067{font-size:40.200000px;}
.fsb_c00067{font-size:54.000000px;}
.fsf_c00067{font-size:57.600000px;}
.fs0_c00067{font-size:60.600000px;}
.fsd_c00067{font-size:61.200000px;}
.fs11_c00067{font-size:66.000000px;}
.fs4_c00067{font-size:67.800000px;}
.fs3_c00067{font-size:69.000000px;}
.fs2_c00067{font-size:70.800000px;}
.fs1_c00067{font-size:72.600000px;}
.fs10_c00067{font-size:76.800000px;}
.y0_c00067{bottom:0.000000px;}
.y2e_c00067{bottom:70.935015px;}
.y2d_c00067{bottom:134.280015px;}
.y2c_c00067{bottom:142.200015px;}
.y2b_c00067{bottom:164.878965px;}
.y2a_c00067{bottom:195.130365px;}
.y29_c00067{bottom:226.094265px;}
.y28_c00067{bottom:257.040015px;}
.y26_c00067{bottom:287.995965px;}
.y27_c00067{bottom:288.000015px;}
.y24_c00067{bottom:318.611115px;}
.y25_c00067{bottom:318.615015px;}
.y22_c00067{bottom:349.574265px;}
.y23_c00067{bottom:349.575015px;}
.y21_c00067{bottom:380.520015px;}
.y20_c00067{bottom:380.522115px;}
.y1f_c00067{bottom:410.760015px;}
.y1e_c00067{bottom:472.672065px;}
.y1d_c00067{bottom:534.255015px;}
.y1c_c00067{bottom:564.840015px;}
.y1b_c00067{bottom:564.848115px;}
.y1a_c00067{bottom:596.175015px;}
.y30_c00067{bottom:615.255015px;}
.y2f_c00067{bottom:618.840015px;}
.y18_c00067{bottom:626.752965px;}
.y19_c00067{bottom:626.760015px;}
.y17_c00067{bottom:657.735015px;}
.y16_c00067{bottom:688.675965px;}
.y14_c00067{bottom:719.291115px;}
.y15_c00067{bottom:719.295015px;}
.y12_c00067{bottom:750.248115px;}
.y13_c00067{bottom:750.255015px;}
.y10_c00067{bottom:781.573365px;}
.y11_c00067{bottom:781.575015px;}
.yf_c00067{bottom:843.120015px;}
.yd_c00067{bottom:874.438965px;}
.ye_c00067{bottom:874.440015px;}
.yc_c00067{bottom:904.695015px;}
.yb_c00067{bottom:904.697265px;}
.y9_c00067{bottom:935.272065px;}
.ya_c00067{bottom:935.280015px;}
.y8_c00067{bottom:965.891115px;}
.y6_c00067{bottom:996.854265px;}
.y7_c00067{bottom:996.855015px;}
.y4_c00067{bottom:1027.794315px;}
.y5_c00067{bottom:1027.800015px;}
.y3_c00067{bottom:1089.014265px;}
.y2_c00067{bottom:1119.960015px;}
.y1_c00067{bottom:1195.575015px;}
.hd_c00067{height:14.385600px;}
.hb_c00067{height:21.902970px;}
.hc_c00067{height:22.978730px;}
.h10_c00067{height:23.976000px;}
.he_c00067{height:29.411719px;}
.hf_c00067{height:31.289062px;}
.h14_c00067{height:39.454102px;}
.h12_c00067{height:40.676407px;}
.h11_c00067{height:56.320312px;}
.h15_c00067{height:56.531250px;}
.h2_c00067{height:59.475586px;}
.h13_c00067{height:63.829687px;}
.h17_c00067{height:68.835938px;}
.h5_c00067{height:69.451758px;}
.h3_c00067{height:71.252930px;}
.ha_c00067{height:71.257130px;}
.h7_c00067{height:71.268530px;}
.h8_c00067{height:71.269130px;}
.h9_c00067{height:71.271530px;}
.h6_c00067{height:71.284730px;}
.h4_c00067{height:71.964844px;}
.h16_c00067{height:80.100000px;}
.h1_c00067{height:1263.000000px;}
.h0_c00067{height:1263.240015px;}
.w1_c00067{width:892.500000px;}
.w0_c00067{width:892.800000px;}
.x0_c00067{left:0.000000px;}
.x1_c00067{left:128.370000px;}
.x6_c00067{left:129.403350px;}
.x1e_c00067{left:153.570000px;}
.x2d_c00067{left:156.585000px;}
.x7_c00067{left:182.419500px;}
.x26_c00067{left:198.195000px;}
.x2e_c00067{left:205.935000px;}
.xa_c00067{left:219.795000px;}
.x2_c00067{left:221.145000px;}
.x27_c00067{left:224.310000px;}
.x1c_c00067{left:226.275000px;}
.x2f_c00067{left:238.575000px;}
.x28_c00067{left:241.395000px;}
.x3_c00067{left:243.900000px;}
.xb_c00067{left:246.450000px;}
.x1d_c00067{left:250.050000px;}
.x29_c00067{left:264.420000px;}
.x33_c00067{left:270.510000px;}
.x30_c00067{left:280.455000px;}
.x12_c00067{left:283.515000px;}
.x34_c00067{left:287.880000px;}
.x18_c00067{left:291.795000px;}
.x13_c00067{left:306.930000px;}
.x21_c00067{left:311.160000px;}
.x35_c00067{left:317.535000px;}
.x19_c00067{left:322.470000px;}
.x31_c00067{left:324.555000px;}
.x22_c00067{left:334.395000px;}
.x36_c00067{left:336.345000px;}
.x37_c00067{left:362.235000px;}
.x1f_c00067{left:363.795000px;}
.xc_c00067{left:378.210000px;}
.x20_c00067{left:392.610000px;}
.xd_c00067{left:395.460000px;}
.x38_c00067{left:421.395000px;}
.x32_c00067{left:429.345000px;}
.x4_c00067{left:431.115000px;}
.x39_c00067{left:433.965000px;}
.x8_c00067{left:436.140000px;}
.xe_c00067{left:438.690000px;}
.x5_c00067{left:455.550000px;}
.x9_c00067{left:465.090000px;}
.x23_c00067{left:494.580000px;}
.x17_c00067{left:501.675000px;}
.x14_c00067{left:504.195000px;}
.x15_c00067{left:527.655000px;}
.xf_c00067{left:530.835000px;}
.x25_c00067{left:550.650000px;}
.x10_c00067{left:552.450000px;}
.x11_c00067{left:569.475000px;}
.x1a_c00067{left:575.130000px;}
.x1b_c00067{left:608.940000px;}
.x2a_c00067{left:706.155000px;}
.x2b_c00067{left:728.460000px;}
.x2c_c00067{left:734.250000px;}
.x24_c00067{left:737.475000px;}
.x16_c00067{left:739.965000px;}
.x3b_c00067{left:854.775000px;}
.x3a_c00067{left:855.825000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls18_c00067{letter-spacing:-2.258667pt;}
.ls6e_c00067{letter-spacing:-2.202667pt;}
.ls62_c00067{letter-spacing:-2.142507pt;}
.ls88_c00067{letter-spacing:-2.077973pt;}
.ls83_c00067{letter-spacing:-2.013440pt;}
.ls7b_c00067{letter-spacing:-1.994080pt;}
.ls8c_c00067{letter-spacing:-1.981173pt;}
.ls65_c00067{letter-spacing:-1.961813pt;}
.ls22_c00067{letter-spacing:-1.929547pt;}
.ls58_c00067{letter-spacing:-1.852107pt;}
.ls60_c00067{letter-spacing:-1.774667pt;}
.ls6d_c00067{letter-spacing:-1.684320pt;}
.ls75_c00067{letter-spacing:-1.671413pt;}
.ls92_c00067{letter-spacing:-1.606880pt;}
.ls43_c00067{letter-spacing:-1.471360pt;}
.ls3c_c00067{letter-spacing:-1.439093pt;}
.ls37_c00067{letter-spacing:-1.432640pt;}
.ls21_c00067{letter-spacing:-1.393920pt;}
.ls47_c00067{letter-spacing:-1.374560pt;}
.ls82_c00067{letter-spacing:-1.348747pt;}
.ls87_c00067{letter-spacing:-1.335840pt;}
.ls9b_c00067{letter-spacing:-1.327360pt;}
.ls7c_c00067{letter-spacing:-1.297120pt;}
.ls49_c00067{letter-spacing:-1.290667pt;}
.ls1e_c00067{letter-spacing:-1.213227pt;}
.ls7e_c00067{letter-spacing:-1.122880pt;}
.ls84_c00067{letter-spacing:-1.090613pt;}
.ls76_c00067{letter-spacing:-1.058347pt;}
.ls86_c00067{letter-spacing:-1.006720pt;}
.ls8f_c00067{letter-spacing:-0.993813pt;}
.ls3e_c00067{letter-spacing:-0.980907pt;}
.ls5a_c00067{letter-spacing:-0.961547pt;}
.ls61_c00067{letter-spacing:-0.948640pt;}
.ls57_c00067{letter-spacing:-0.916373pt;}
.ls4d_c00067{letter-spacing:-0.858293pt;}
.ls71_c00067{letter-spacing:-0.838933pt;}
.ls79_c00067{letter-spacing:-0.826027pt;}
.ls93_c00067{letter-spacing:-0.819573pt;}
.ls91_c00067{letter-spacing:-0.813120pt;}
.ls9d_c00067{letter-spacing:-0.808960pt;}
.ls6a_c00067{letter-spacing:-0.800213pt;}
.ls17_c00067{letter-spacing:-0.793760pt;}
.ls36_c00067{letter-spacing:-0.787307pt;}
.ls8e_c00067{letter-spacing:-0.767947pt;}
.ls4c_c00067{letter-spacing:-0.761493pt;}
.ls8d_c00067{letter-spacing:-0.742133pt;}
.ls85_c00067{letter-spacing:-0.729227pt;}
.ls63_c00067{letter-spacing:-0.722773pt;}
.ls50_c00067{letter-spacing:-0.703413pt;}
.ls73_c00067{letter-spacing:-0.696960pt;}
.ls7d_c00067{letter-spacing:-0.690507pt;}
.ls8b_c00067{letter-spacing:-0.684053pt;}
.ls20_c00067{letter-spacing:-0.677600pt;}
.ls55_c00067{letter-spacing:-0.658240pt;}
.ls64_c00067{letter-spacing:-0.645333pt;}
.ls66_c00067{letter-spacing:-0.632427pt;}
.ls70_c00067{letter-spacing:-0.625973pt;}
.ls5b_c00067{letter-spacing:-0.619520pt;}
.ls26_c00067{letter-spacing:-0.613067pt;}
.ls3b_c00067{letter-spacing:-0.600160pt;}
.ls6b_c00067{letter-spacing:-0.593707pt;}
.ls4a_c00067{letter-spacing:-0.587253pt;}
.ls2c_c00067{letter-spacing:-0.580800pt;}
.ls40_c00067{letter-spacing:-0.567893pt;}
.ls2e_c00067{letter-spacing:-0.554987pt;}
.ls5e_c00067{letter-spacing:-0.548533pt;}
.ls31_c00067{letter-spacing:-0.535627pt;}
.ls48_c00067{letter-spacing:-0.529173pt;}
.ls46_c00067{letter-spacing:-0.522720pt;}
.ls72_c00067{letter-spacing:-0.516267pt;}
.ls1f_c00067{letter-spacing:-0.509813pt;}
.ls41_c00067{letter-spacing:-0.503360pt;}
.ls51_c00067{letter-spacing:-0.496907pt;}
.ls81_c00067{letter-spacing:-0.490453pt;}
.ls2b_c00067{letter-spacing:-0.484000pt;}
.ls5f_c00067{letter-spacing:-0.477547pt;}
.ls1a_c00067{letter-spacing:-0.471093pt;}
.ls3a_c00067{letter-spacing:-0.464640pt;}
.ls59_c00067{letter-spacing:-0.451733pt;}
.ls24_c00067{letter-spacing:-0.445280pt;}
.ls52_c00067{letter-spacing:-0.438827pt;}
.ls16_c00067{letter-spacing:-0.432373pt;}
.ls25_c00067{letter-spacing:-0.425920pt;}
.ls69_c00067{letter-spacing:-0.413013pt;}
.ls4e_c00067{letter-spacing:-0.406560pt;}
.ls74_c00067{letter-spacing:-0.400107pt;}
.ls2d_c00067{letter-spacing:-0.387200pt;}
.ls3f_c00067{letter-spacing:-0.367840pt;}
.ls42_c00067{letter-spacing:-0.361387pt;}
.ls30_c00067{letter-spacing:-0.354933pt;}
.ls80_c00067{letter-spacing:-0.348480pt;}
.ls90_c00067{letter-spacing:-0.335573pt;}
.ls5c_c00067{letter-spacing:-0.329120pt;}
.ls8a_c00067{letter-spacing:-0.316213pt;}
.ls5d_c00067{letter-spacing:-0.309760pt;}
.ls1c_c00067{letter-spacing:-0.303307pt;}
.ls7a_c00067{letter-spacing:-0.290400pt;}
.ls68_c00067{letter-spacing:-0.283947pt;}
.ls77_c00067{letter-spacing:-0.277493pt;}
.ls38_c00067{letter-spacing:-0.271040pt;}
.ls32_c00067{letter-spacing:-0.264587pt;}
.ls34_c00067{letter-spacing:-0.258133pt;}
.ls33_c00067{letter-spacing:-0.245227pt;}
.ls23_c00067{letter-spacing:-0.238773pt;}
.ls6f_c00067{letter-spacing:-0.225867pt;}
.ls78_c00067{letter-spacing:-0.212960pt;}
.ls7f_c00067{letter-spacing:-0.206507pt;}
.ls67_c00067{letter-spacing:-0.187147pt;}
.ls2f_c00067{letter-spacing:-0.184000pt;}
.ls45_c00067{letter-spacing:-0.180693pt;}
.ls19_c00067{letter-spacing:-0.174240pt;}
.ls89_c00067{letter-spacing:-0.167787pt;}
.ls4b_c00067{letter-spacing:-0.161333pt;}
.ls4f_c00067{letter-spacing:-0.154880pt;}
.ls99_c00067{letter-spacing:-0.151040pt;}
.ls28_c00067{letter-spacing:-0.148427pt;}
.ls29_c00067{letter-spacing:-0.135520pt;}
.ls6c_c00067{letter-spacing:-0.122613pt;}
.ls56_c00067{letter-spacing:-0.116160pt;}
.ls27_c00067{letter-spacing:-0.109707pt;}
.ls53_c00067{letter-spacing:-0.103253pt;}
.ls3d_c00067{letter-spacing:-0.090347pt;}
.ls1d_c00067{letter-spacing:-0.077440pt;}
.ls44_c00067{letter-spacing:-0.058080pt;}
.ls54_c00067{letter-spacing:-0.032267pt;}
.ls39_c00067{letter-spacing:-0.012907pt;}
.ls35_c00067{letter-spacing:0.000000pt;}
.ls11_c00067{letter-spacing:0.025813pt;}
.ls2_c00067{letter-spacing:0.050347pt;}
.ls5_c00067{letter-spacing:0.103253pt;}
.ls4_c00067{letter-spacing:0.161333pt;}
.ls8_c00067{letter-spacing:0.180693pt;}
.ls9_c00067{letter-spacing:0.213973pt;}
.lsa_c00067{letter-spacing:0.335573pt;}
.lsf_c00067{letter-spacing:0.339840pt;}
.ls6_c00067{letter-spacing:0.387200pt;}
.ls3_c00067{letter-spacing:0.393653pt;}
.ls1b_c00067{letter-spacing:0.432373pt;}
.lsd_c00067{letter-spacing:0.453120pt;}
.lsb_c00067{letter-spacing:0.497173pt;}
.lse_c00067{letter-spacing:0.580800pt;}
.ls7_c00067{letter-spacing:0.729227pt;}
.ls2a_c00067{letter-spacing:0.800213pt;}
.ls12_c00067{letter-spacing:0.830720pt;}
.ls1_c00067{letter-spacing:0.890560pt;}
.lsc_c00067{letter-spacing:0.899947pt;}
.ls94_c00067{letter-spacing:0.933360pt;}
.ls13_c00067{letter-spacing:0.937707pt;}
.ls14_c00067{letter-spacing:1.010667pt;}
.ls10_c00067{letter-spacing:1.189440pt;}
.ls95_c00067{letter-spacing:1.253333pt;}
.ls96_c00067{letter-spacing:1.333333pt;}
.ls9a_c00067{letter-spacing:1.733360pt;}
.ls9c_c00067{letter-spacing:1.786667pt;}
.ls15_c00067{letter-spacing:1.976907pt;}
.ls0_c00067{letter-spacing:1.993067pt;}
.ls97_c00067{letter-spacing:2.183787pt;}
.ls98_c00067{letter-spacing:2.400000pt;}
.ws0_c00067{word-spacing:0.000000pt;}
._0_c00067{margin-left:-3.716800pt;}
._8_c00067{margin-left:-1.164907pt;}
._7_c00067{width:1.006720pt;}
._5_c00067{width:2.471627pt;}
._4_c00067{width:3.962347pt;}
._19_c00067{width:4.861013pt;}
._6_c00067{width:6.008053pt;}
._16_c00067{width:7.427787pt;}
._10_c00067{width:9.292800pt;}
._3_c00067{width:10.589920pt;}
._1_c00067{width:12.170987pt;}
._17_c00067{width:13.422933pt;}
._1a_c00067{width:14.935413pt;}
._2_c00067{width:16.782293pt;}
._a_c00067{width:18.236320pt;}
._9_c00067{width:19.134133pt;}
._11_c00067{width:20.392533pt;}
._b_c00067{width:22.051040pt;}
._1b_c00067{width:23.761173pt;}
._c_c00067{width:25.245440pt;}
._f_c00067{width:26.342507pt;}
._e_c00067{width:27.497653pt;}
._18_c00067{width:29.007733pt;}
._15_c00067{width:30.433920pt;}
._12_c00067{width:32.918453pt;}
._d_c00067{width:34.222027pt;}
._14_c00067{width:35.525600pt;}
._13_c00067{width:36.473173pt;}
._1c_c00067{width:131.512000pt;}
.fs5_c00067{font-size:18.667200pt;}
.fs7_c00067{font-size:19.200000pt;}
.fs6_c00067{font-size:20.267200pt;}
.fs8_c00067{font-size:25.066667pt;}
.fs9_c00067{font-size:26.666667pt;}
.fsa_c00067{font-size:32.000000pt;}
.fsc_c00067{font-size:34.667200pt;}
.fse_c00067{font-size:35.733333pt;}
.fsb_c00067{font-size:48.000000pt;}
.fsf_c00067{font-size:51.200000pt;}
.fs0_c00067{font-size:53.866667pt;}
.fsd_c00067{font-size:54.400000pt;}
.fs11_c00067{font-size:58.666667pt;}
.fs4_c00067{font-size:60.266667pt;}
.fs3_c00067{font-size:61.333333pt;}
.fs2_c00067{font-size:62.933333pt;}
.fs1_c00067{font-size:64.533333pt;}
.fs10_c00067{font-size:68.266667pt;}
.y0_c00067{bottom:0.000000pt;}
.y2e_c00067{bottom:63.053347pt;}
.y2d_c00067{bottom:119.360013pt;}
.y2c_c00067{bottom:126.400013pt;}
.y2b_c00067{bottom:146.559080pt;}
.y2a_c00067{bottom:173.449213pt;}
.y29_c00067{bottom:200.972680pt;}
.y28_c00067{bottom:228.480013pt;}
.y26_c00067{bottom:255.996413pt;}
.y27_c00067{bottom:256.000013pt;}
.y24_c00067{bottom:283.209880pt;}
.y25_c00067{bottom:283.213347pt;}
.y22_c00067{bottom:310.732680pt;}
.y23_c00067{bottom:310.733347pt;}
.y21_c00067{bottom:338.240013pt;}
.y20_c00067{bottom:338.241880pt;}
.y1f_c00067{bottom:365.120013pt;}
.y1e_c00067{bottom:420.152947pt;}
.y1d_c00067{bottom:474.893347pt;}
.y1c_c00067{bottom:502.080013pt;}
.y1b_c00067{bottom:502.087213pt;}
.y1a_c00067{bottom:529.933347pt;}
.y30_c00067{bottom:546.893347pt;}
.y2f_c00067{bottom:550.080013pt;}
.y18_c00067{bottom:557.113747pt;}
.y19_c00067{bottom:557.120013pt;}
.y17_c00067{bottom:584.653347pt;}
.y16_c00067{bottom:612.156413pt;}
.y14_c00067{bottom:639.369880pt;}
.y15_c00067{bottom:639.373347pt;}
.y12_c00067{bottom:666.887213pt;}
.y13_c00067{bottom:666.893347pt;}
.y10_c00067{bottom:694.731880pt;}
.y11_c00067{bottom:694.733347pt;}
.yf_c00067{bottom:749.440013pt;}
.yd_c00067{bottom:777.279080pt;}
.ye_c00067{bottom:777.280013pt;}
.yc_c00067{bottom:804.173347pt;}
.yb_c00067{bottom:804.175347pt;}
.y9_c00067{bottom:831.352947pt;}
.ya_c00067{bottom:831.360013pt;}
.y8_c00067{bottom:858.569880pt;}
.y6_c00067{bottom:886.092680pt;}
.y7_c00067{bottom:886.093347pt;}
.y4_c00067{bottom:913.594947pt;}
.y5_c00067{bottom:913.600013pt;}
.y3_c00067{bottom:968.012680pt;}
.y2_c00067{bottom:995.520013pt;}
.y1_c00067{bottom:1062.733347pt;}
.hd_c00067{height:12.787200pt;}
.hb_c00067{height:19.469306pt;}
.hc_c00067{height:20.425537pt;}
.h10_c00067{height:21.312000pt;}
.he_c00067{height:26.143750pt;}
.hf_c00067{height:27.812500pt;}
.h14_c00067{height:35.070312pt;}
.h12_c00067{height:36.156806pt;}
.h11_c00067{height:50.062500pt;}
.h15_c00067{height:50.250000pt;}
.h2_c00067{height:52.867187pt;}
.h13_c00067{height:56.737500pt;}
.h17_c00067{height:61.187500pt;}
.h5_c00067{height:61.734896pt;}
.h3_c00067{height:63.335938pt;}
.ha_c00067{height:63.339671pt;}
.h7_c00067{height:63.349804pt;}
.h8_c00067{height:63.350338pt;}
.h9_c00067{height:63.352471pt;}
.h6_c00067{height:63.364204pt;}
.h4_c00067{height:63.968750pt;}
.h16_c00067{height:71.200000pt;}
.h1_c00067{height:1122.666667pt;}
.h0_c00067{height:1122.880013pt;}
.w1_c00067{width:793.333333pt;}
.w0_c00067{width:793.600000pt;}
.x0_c00067{left:0.000000pt;}
.x1_c00067{left:114.106667pt;}
.x6_c00067{left:115.025200pt;}
.x1e_c00067{left:136.506667pt;}
.x2d_c00067{left:139.186667pt;}
.x7_c00067{left:162.150667pt;}
.x26_c00067{left:176.173333pt;}
.x2e_c00067{left:183.053333pt;}
.xa_c00067{left:195.373333pt;}
.x2_c00067{left:196.573333pt;}
.x27_c00067{left:199.386667pt;}
.x1c_c00067{left:201.133333pt;}
.x2f_c00067{left:212.066667pt;}
.x28_c00067{left:214.573333pt;}
.x3_c00067{left:216.800000pt;}
.xb_c00067{left:219.066667pt;}
.x1d_c00067{left:222.266667pt;}
.x29_c00067{left:235.040000pt;}
.x33_c00067{left:240.453333pt;}
.x30_c00067{left:249.293333pt;}
.x12_c00067{left:252.013333pt;}
.x34_c00067{left:255.893333pt;}
.x18_c00067{left:259.373333pt;}
.x13_c00067{left:272.826667pt;}
.x21_c00067{left:276.586667pt;}
.x35_c00067{left:282.253333pt;}
.x19_c00067{left:286.640000pt;}
.x31_c00067{left:288.493333pt;}
.x22_c00067{left:297.240000pt;}
.x36_c00067{left:298.973333pt;}
.x37_c00067{left:321.986667pt;}
.x1f_c00067{left:323.373333pt;}
.xc_c00067{left:336.186667pt;}
.x20_c00067{left:348.986667pt;}
.xd_c00067{left:351.520000pt;}
.x38_c00067{left:374.573333pt;}
.x32_c00067{left:381.640000pt;}
.x4_c00067{left:383.213333pt;}
.x39_c00067{left:385.746667pt;}
.x8_c00067{left:387.680000pt;}
.xe_c00067{left:389.946667pt;}
.x5_c00067{left:404.933333pt;}
.x9_c00067{left:413.413333pt;}
.x23_c00067{left:439.626667pt;}
.x17_c00067{left:445.933333pt;}
.x14_c00067{left:448.173333pt;}
.x15_c00067{left:469.026667pt;}
.xf_c00067{left:471.853333pt;}
.x25_c00067{left:489.466667pt;}
.x10_c00067{left:491.066667pt;}
.x11_c00067{left:506.200000pt;}
.x1a_c00067{left:511.226667pt;}
.x1b_c00067{left:541.280000pt;}
.x2a_c00067{left:627.693333pt;}
.x2b_c00067{left:647.520000pt;}
.x2c_c00067{left:652.666667pt;}
.x24_c00067{left:655.533333pt;}
.x16_c00067{left:657.746667pt;}
.x3b_c00067{left:759.800000pt;}
.x3a_c00067{left:760.733333pt;}
}





/* 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_c00068 {
    display:none;
  }
  .loading-indicator_c00068.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00068 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_c00068 { 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_c00068" -> "#page-container .classname_c00068")
 */
.pf_c00068 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00068 { /* 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_c00068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00068 { /* 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_c00068 { /* 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_c00068 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00068 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00068 {overflow:visible;}
  }
}
.c_c00068 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00068 { /* 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_c00068:after { /* webkit #35443 */
  content: '';
}
.t_c00068:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00068 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 */
}
.__c00068 { /* 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_c00068 { /* info for Javascript */
  display:none;
}
.l_c00068 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00068 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00068 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00068: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_c00068 {
    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_c00068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00068.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_c00068 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00068;src:url('chunks/assets/font_fefba094d0b70204b7907f55.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.284668;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_c00068;src:url('chunks/assets/font_132b0d32858358875d6e1604.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.284180;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;}
.m3_c00068{transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);}
.m4_c00068{transform:matrix(0.239993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239993,0.000000,0.000000,0.250000,0,0);}
.m1_c00068{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m2_c00068{transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);}
.m0_c00068{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);}
.v0_c00068{vertical-align:0.000000px;}
.ls4a_c00068{letter-spacing:-2.541000px;}
.ls52_c00068{letter-spacing:-2.497440px;}
.ls7d_c00068{letter-spacing:-2.289000px;}
.ls64_c00068{letter-spacing:-1.568160px;}
.ls72_c00068{letter-spacing:-1.539120px;}
.ls55_c00068{letter-spacing:-1.452000px;}
.ls5b_c00068{letter-spacing:-1.335840px;}
.ls65_c00068{letter-spacing:-0.980100px;}
.ls70_c00068{letter-spacing:-0.972840px;}
.ls7b_c00068{letter-spacing:-0.892980px;}
.ls5c_c00068{letter-spacing:-0.820380px;}
.ls48_c00068{letter-spacing:-0.791340px;}
.ls44_c00068{letter-spacing:-0.776820px;}
.ls71_c00068{letter-spacing:-0.762300px;}
.ls50_c00068{letter-spacing:-0.733260px;}
.ls68_c00068{letter-spacing:-0.646140px;}
.ls57_c00068{letter-spacing:-0.638880px;}
.ls6d_c00068{letter-spacing:-0.602580px;}
.ls79_c00068{letter-spacing:-0.566280px;}
.ls59_c00068{letter-spacing:-0.559020px;}
.ls45_c00068{letter-spacing:-0.544500px;}
.ls58_c00068{letter-spacing:-0.529980px;}
.ls4c_c00068{letter-spacing:-0.450120px;}
.ls63_c00068{letter-spacing:-0.435600px;}
.ls76_c00068{letter-spacing:-0.399300px;}
.ls4f_c00068{letter-spacing:-0.363000px;}
.ls60_c00068{letter-spacing:-0.348480px;}
.ls66_c00068{letter-spacing:-0.312180px;}
.ls74_c00068{letter-spacing:-0.283140px;}
.ls5d_c00068{letter-spacing:-0.261360px;}
.ls6e_c00068{letter-spacing:-0.254100px;}
.ls77_c00068{letter-spacing:-0.246840px;}
.ls7c_c00068{letter-spacing:-0.225060px;}
.ls5a_c00068{letter-spacing:-0.188760px;}
.ls4d_c00068{letter-spacing:-0.181500px;}
.ls47_c00068{letter-spacing:-0.174240px;}
.ls78_c00068{letter-spacing:-0.166980px;}
.ls6c_c00068{letter-spacing:-0.159720px;}
.ls4b_c00068{letter-spacing:-0.152460px;}
.ls4e_c00068{letter-spacing:-0.130680px;}
.ls62_c00068{letter-spacing:-0.123420px;}
.ls5f_c00068{letter-spacing:-0.116160px;}
.ls54_c00068{letter-spacing:-0.101640px;}
.ls46_c00068{letter-spacing:-0.094380px;}
.ls51_c00068{letter-spacing:-0.087120px;}
.ls6f_c00068{letter-spacing:-0.079860px;}
.ls75_c00068{letter-spacing:-0.072600px;}
.ls61_c00068{letter-spacing:-0.065340px;}
.ls7a_c00068{letter-spacing:-0.064260px;}
.ls53_c00068{letter-spacing:-0.058080px;}
.ls49_c00068{letter-spacing:-0.043560px;}
.ls67_c00068{letter-spacing:-0.036300px;}
.ls6b_c00068{letter-spacing:-0.021780px;}
.ls69_c00068{letter-spacing:-0.014280px;}
.ls56_c00068{letter-spacing:-0.007260px;}
.ls5e_c00068{letter-spacing:0.000000px;}
.lsb_c00068{letter-spacing:0.007260px;}
.ls6_c00068{letter-spacing:0.021780px;}
.ls3_c00068{letter-spacing:0.029040px;}
.ls1d_c00068{letter-spacing:0.036300px;}
.lsf_c00068{letter-spacing:0.043560px;}
.ls2d_c00068{letter-spacing:0.050820px;}
.ls1a_c00068{letter-spacing:0.058080px;}
.ls30_c00068{letter-spacing:0.065340px;}
.ls1e_c00068{letter-spacing:0.072600px;}
.lsc_c00068{letter-spacing:0.087120px;}
.ls2e_c00068{letter-spacing:0.101640px;}
.lse_c00068{letter-spacing:0.108900px;}
.ls11_c00068{letter-spacing:0.123420px;}
.ls2f_c00068{letter-spacing:0.130680px;}
.ls2c_c00068{letter-spacing:0.137940px;}
.ls32_c00068{letter-spacing:0.152460px;}
.ls35_c00068{letter-spacing:0.166980px;}
.ls8_c00068{letter-spacing:0.188760px;}
.ls7_c00068{letter-spacing:0.196020px;}
.ls13_c00068{letter-spacing:0.203280px;}
.ls3b_c00068{letter-spacing:0.210540px;}
.ls9_c00068{letter-spacing:0.246840px;}
.ls31_c00068{letter-spacing:0.261360px;}
.ls38_c00068{letter-spacing:0.275880px;}
.lsd_c00068{letter-spacing:0.283140px;}
.ls21_c00068{letter-spacing:0.290400px;}
.ls3f_c00068{letter-spacing:0.304920px;}
.ls17_c00068{letter-spacing:0.312180px;}
.ls19_c00068{letter-spacing:0.319440px;}
.ls29_c00068{letter-spacing:0.342720px;}
.ls3e_c00068{letter-spacing:0.348480px;}
.ls3a_c00068{letter-spacing:0.370260px;}
.ls40_c00068{letter-spacing:0.392040px;}
.ls36_c00068{letter-spacing:0.435600px;}
.lsa_c00068{letter-spacing:0.442860px;}
.ls33_c00068{letter-spacing:0.449280px;}
.ls41_c00068{letter-spacing:0.464640px;}
.ls22_c00068{letter-spacing:0.515460px;}
.ls39_c00068{letter-spacing:0.537240px;}
.ls26_c00068{letter-spacing:0.592620px;}
.ls37_c00068{letter-spacing:0.595320px;}
.ls27_c00068{letter-spacing:0.614040px;}
.ls20_c00068{letter-spacing:0.621180px;}
.ls2a_c00068{letter-spacing:0.653400px;}
.ls3d_c00068{letter-spacing:0.667920px;}
.ls12_c00068{letter-spacing:0.675180px;}
.ls2_c00068{letter-spacing:0.699720px;}
.ls1b_c00068{letter-spacing:0.762300px;}
.ls4_c00068{letter-spacing:0.769560px;}
.ls28_c00068{letter-spacing:0.771120px;}
.ls16_c00068{letter-spacing:0.784080px;}
.ls1_c00068{letter-spacing:0.807300px;}
.ls2b_c00068{letter-spacing:0.820380px;}
.ls14_c00068{letter-spacing:0.871200px;}
.ls18_c00068{letter-spacing:0.900240px;}
.ls10_c00068{letter-spacing:0.922020px;}
.ls34_c00068{letter-spacing:0.987360px;}
.ls3c_c00068{letter-spacing:1.052700px;}
.ls42_c00068{letter-spacing:1.098240px;}
.ls23_c00068{letter-spacing:1.165320px;}
.ls0_c00068{letter-spacing:1.173120px;}
.ls1f_c00068{letter-spacing:1.255980px;}
.ls6a_c00068{letter-spacing:1.502280px;}
.ls43_c00068{letter-spacing:1.565460px;}
.ls5_c00068{letter-spacing:1.618980px;}
.ls73_c00068{letter-spacing:1.698840px;}
.ls1c_c00068{letter-spacing:1.902120px;}
.ls15_c00068{letter-spacing:2.337720px;}
.ls24_c00068{letter-spacing:2.442960px;}
.ls25_c00068{letter-spacing:2.695680px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{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__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00068{word-spacing:0.000000px;}
._4_c00068{margin-left:-4.152720px;}
._b_c00068{margin-left:-2.477040px;}
._14_c00068{margin-left:-1.089000px;}
._0_c00068{width:1.366200px;}
._5_c00068{width:3.062940px;}
._2_c00068{width:4.504440px;}
._3_c00068{width:5.784360px;}
._1_c00068{width:6.902880px;}
._c_c00068{width:8.313480px;}
._7_c00068{width:9.750180px;}
._6_c00068{width:11.412720px;}
._d_c00068{width:13.480680px;}
._13_c00068{width:14.498940px;}
._12_c00068{width:15.660960px;}
._19_c00068{width:19.326120px;}
._1a_c00068{width:20.499960px;}
._1b_c00068{width:21.794520px;}
._8_c00068{width:26.404620px;}
._a_c00068{width:28.226880px;}
._15_c00068{width:31.813320px;}
._9_c00068{width:34.303500px;}
._18_c00068{width:36.655740px;}
._16_c00068{width:38.608500px;}
._17_c00068{width:41.410440px;}
._11_c00068{width:52.722120px;}
._f_c00068{width:54.667800px;}
._10_c00068{width:56.098020px;}
._e_c00068{width:57.775080px;}
.fc0_c00068{color:transparent;}
.fs0_c00068{font-size:62.400000px;}
.fs4_c00068{font-size:65.400000px;}
.fs1_c00068{font-size:70.200000px;}
.fs3_c00068{font-size:71.400000px;}
.fs2_c00068{font-size:72.600000px;}
.y0_c00068{bottom:0.000000px;}
.y1c_c00068{bottom:70.935015px;}
.y1b_c00068{bottom:222.847365px;}
.y1a_c00068{bottom:254.174265px;}
.y19_c00068{bottom:285.112215px;}
.y17_c00068{bottom:347.029215px;}
.y18_c00068{bottom:347.040015px;}
.y16_c00068{bottom:380.171115px;}
.y15_c00068{bottom:411.135015px;}
.y14_c00068{bottom:471.600015px;}
.y13_c00068{bottom:533.172465px;}
.y12_c00068{bottom:564.844215px;}
.y11_c00068{bottom:596.171115px;}
.y10_c00068{bottom:627.135015px;}
.yf_c00068{bottom:688.680015px;}
.ye_c00068{bottom:750.608115px;}
.yd_c00068{bottom:781.930365px;}
.yc_c00068{bottom:812.513115px;}
.ya_c00068{bottom:843.832065px;}
.yb_c00068{bottom:843.840015px;}
.y9_c00068{bottom:874.451115px;}
.y7_c00068{bottom:905.412465px;}
.y8_c00068{bottom:905.415015px;}
.y6_c00068{bottom:966.977265px;}
.y4_c00068{bottom:997.556115px;}
.y5_c00068{bottom:997.560015px;}
.y3_c00068{bottom:1028.520015px;}
.y2_c00068{bottom:1090.095015px;}
.y1_c00068{bottom:1198.095015px;}
.h2_c00068{height:61.242188px;}
.h7_c00068{height:64.186523px;}
.h3_c00068{height:68.897461px;}
.h4_c00068{height:71.252930px;}
.h5_c00068{height:71.271530px;}
.h6_c00068{height:71.284130px;}
.h1_c00068{height:1263.000000px;}
.h0_c00068{height:1263.240015px;}
.w1_c00068{width:892.500000px;}
.w0_c00068{width:892.800015px;}
.x0_c00068{left:0.000000px;}
.xd_c00068{left:121.003965px;}
.xb_c00068{left:122.082765px;}
.x3_c00068{left:123.153765px;}
.x1_c00068{left:125.835015px;}
.xc_c00068{left:174.855015px;}
.x6_c00068{left:176.633565px;}
.x2_c00068{left:183.135015px;}
.x9_c00068{left:220.875015px;}
.x4_c00068{left:229.155015px;}
.xa_c00068{left:243.570015px;}
.x5_c00068{left:250.740015px;}
.x7_c00068{left:311.955015px;}
.xe_c00068{left:314.805015px;}
.x8_c00068{left:336.090015px;}
.xf_c00068{left:342.615015px;}
.x10_c00068{left:371.355015px;}
.x11_c00068{left:392.940015px;}
.x12_c00068{left:429.645015px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls4a_c00068{letter-spacing:-2.258667pt;}
.ls52_c00068{letter-spacing:-2.219947pt;}
.ls7d_c00068{letter-spacing:-2.034667pt;}
.ls64_c00068{letter-spacing:-1.393920pt;}
.ls72_c00068{letter-spacing:-1.368107pt;}
.ls55_c00068{letter-spacing:-1.290667pt;}
.ls5b_c00068{letter-spacing:-1.187413pt;}
.ls65_c00068{letter-spacing:-0.871200pt;}
.ls70_c00068{letter-spacing:-0.864747pt;}
.ls7b_c00068{letter-spacing:-0.793760pt;}
.ls5c_c00068{letter-spacing:-0.729227pt;}
.ls48_c00068{letter-spacing:-0.703413pt;}
.ls44_c00068{letter-spacing:-0.690507pt;}
.ls71_c00068{letter-spacing:-0.677600pt;}
.ls50_c00068{letter-spacing:-0.651787pt;}
.ls68_c00068{letter-spacing:-0.574347pt;}
.ls57_c00068{letter-spacing:-0.567893pt;}
.ls6d_c00068{letter-spacing:-0.535627pt;}
.ls79_c00068{letter-spacing:-0.503360pt;}
.ls59_c00068{letter-spacing:-0.496907pt;}
.ls45_c00068{letter-spacing:-0.484000pt;}
.ls58_c00068{letter-spacing:-0.471093pt;}
.ls4c_c00068{letter-spacing:-0.400107pt;}
.ls63_c00068{letter-spacing:-0.387200pt;}
.ls76_c00068{letter-spacing:-0.354933pt;}
.ls4f_c00068{letter-spacing:-0.322667pt;}
.ls60_c00068{letter-spacing:-0.309760pt;}
.ls66_c00068{letter-spacing:-0.277493pt;}
.ls74_c00068{letter-spacing:-0.251680pt;}
.ls5d_c00068{letter-spacing:-0.232320pt;}
.ls6e_c00068{letter-spacing:-0.225867pt;}
.ls77_c00068{letter-spacing:-0.219413pt;}
.ls7c_c00068{letter-spacing:-0.200053pt;}
.ls5a_c00068{letter-spacing:-0.167787pt;}
.ls4d_c00068{letter-spacing:-0.161333pt;}
.ls47_c00068{letter-spacing:-0.154880pt;}
.ls78_c00068{letter-spacing:-0.148427pt;}
.ls6c_c00068{letter-spacing:-0.141973pt;}
.ls4b_c00068{letter-spacing:-0.135520pt;}
.ls4e_c00068{letter-spacing:-0.116160pt;}
.ls62_c00068{letter-spacing:-0.109707pt;}
.ls5f_c00068{letter-spacing:-0.103253pt;}
.ls54_c00068{letter-spacing:-0.090347pt;}
.ls46_c00068{letter-spacing:-0.083893pt;}
.ls51_c00068{letter-spacing:-0.077440pt;}
.ls6f_c00068{letter-spacing:-0.070987pt;}
.ls75_c00068{letter-spacing:-0.064533pt;}
.ls61_c00068{letter-spacing:-0.058080pt;}
.ls7a_c00068{letter-spacing:-0.057120pt;}
.ls53_c00068{letter-spacing:-0.051627pt;}
.ls49_c00068{letter-spacing:-0.038720pt;}
.ls67_c00068{letter-spacing:-0.032267pt;}
.ls6b_c00068{letter-spacing:-0.019360pt;}
.ls69_c00068{letter-spacing:-0.012693pt;}
.ls56_c00068{letter-spacing:-0.006453pt;}
.ls5e_c00068{letter-spacing:0.000000pt;}
.lsb_c00068{letter-spacing:0.006453pt;}
.ls6_c00068{letter-spacing:0.019360pt;}
.ls3_c00068{letter-spacing:0.025813pt;}
.ls1d_c00068{letter-spacing:0.032267pt;}
.lsf_c00068{letter-spacing:0.038720pt;}
.ls2d_c00068{letter-spacing:0.045173pt;}
.ls1a_c00068{letter-spacing:0.051627pt;}
.ls30_c00068{letter-spacing:0.058080pt;}
.ls1e_c00068{letter-spacing:0.064533pt;}
.lsc_c00068{letter-spacing:0.077440pt;}
.ls2e_c00068{letter-spacing:0.090347pt;}
.lse_c00068{letter-spacing:0.096800pt;}
.ls11_c00068{letter-spacing:0.109707pt;}
.ls2f_c00068{letter-spacing:0.116160pt;}
.ls2c_c00068{letter-spacing:0.122613pt;}
.ls32_c00068{letter-spacing:0.135520pt;}
.ls35_c00068{letter-spacing:0.148427pt;}
.ls8_c00068{letter-spacing:0.167787pt;}
.ls7_c00068{letter-spacing:0.174240pt;}
.ls13_c00068{letter-spacing:0.180693pt;}
.ls3b_c00068{letter-spacing:0.187147pt;}
.ls9_c00068{letter-spacing:0.219413pt;}
.ls31_c00068{letter-spacing:0.232320pt;}
.ls38_c00068{letter-spacing:0.245227pt;}
.lsd_c00068{letter-spacing:0.251680pt;}
.ls21_c00068{letter-spacing:0.258133pt;}
.ls3f_c00068{letter-spacing:0.271040pt;}
.ls17_c00068{letter-spacing:0.277493pt;}
.ls19_c00068{letter-spacing:0.283947pt;}
.ls29_c00068{letter-spacing:0.304640pt;}
.ls3e_c00068{letter-spacing:0.309760pt;}
.ls3a_c00068{letter-spacing:0.329120pt;}
.ls40_c00068{letter-spacing:0.348480pt;}
.ls36_c00068{letter-spacing:0.387200pt;}
.lsa_c00068{letter-spacing:0.393653pt;}
.ls33_c00068{letter-spacing:0.399360pt;}
.ls41_c00068{letter-spacing:0.413013pt;}
.ls22_c00068{letter-spacing:0.458187pt;}
.ls39_c00068{letter-spacing:0.477547pt;}
.ls26_c00068{letter-spacing:0.526773pt;}
.ls37_c00068{letter-spacing:0.529173pt;}
.ls27_c00068{letter-spacing:0.545813pt;}
.ls20_c00068{letter-spacing:0.552160pt;}
.ls2a_c00068{letter-spacing:0.580800pt;}
.ls3d_c00068{letter-spacing:0.593707pt;}
.ls12_c00068{letter-spacing:0.600160pt;}
.ls2_c00068{letter-spacing:0.621973pt;}
.ls1b_c00068{letter-spacing:0.677600pt;}
.ls4_c00068{letter-spacing:0.684053pt;}
.ls28_c00068{letter-spacing:0.685440pt;}
.ls16_c00068{letter-spacing:0.696960pt;}
.ls1_c00068{letter-spacing:0.717600pt;}
.ls2b_c00068{letter-spacing:0.729227pt;}
.ls14_c00068{letter-spacing:0.774400pt;}
.ls18_c00068{letter-spacing:0.800213pt;}
.ls10_c00068{letter-spacing:0.819573pt;}
.ls34_c00068{letter-spacing:0.877653pt;}
.ls3c_c00068{letter-spacing:0.935733pt;}
.ls42_c00068{letter-spacing:0.976213pt;}
.ls23_c00068{letter-spacing:1.035840pt;}
.ls0_c00068{letter-spacing:1.042773pt;}
.ls1f_c00068{letter-spacing:1.116427pt;}
.ls6a_c00068{letter-spacing:1.335360pt;}
.ls43_c00068{letter-spacing:1.391520pt;}
.ls5_c00068{letter-spacing:1.439093pt;}
.ls73_c00068{letter-spacing:1.510080pt;}
.ls1c_c00068{letter-spacing:1.690773pt;}
.ls15_c00068{letter-spacing:2.077973pt;}
.ls24_c00068{letter-spacing:2.171520pt;}
.ls25_c00068{letter-spacing:2.396160pt;}
.ws0_c00068{word-spacing:0.000000pt;}
._4_c00068{margin-left:-3.691307pt;}
._b_c00068{margin-left:-2.201813pt;}
._14_c00068{margin-left:-0.968000pt;}
._0_c00068{width:1.214400pt;}
._5_c00068{width:2.722613pt;}
._2_c00068{width:4.003947pt;}
._3_c00068{width:5.141653pt;}
._1_c00068{width:6.135893pt;}
._c_c00068{width:7.389760pt;}
._7_c00068{width:8.666827pt;}
._6_c00068{width:10.144640pt;}
._d_c00068{width:11.982827pt;}
._13_c00068{width:12.887947pt;}
._12_c00068{width:13.920853pt;}
._19_c00068{width:17.178773pt;}
._1a_c00068{width:18.222187pt;}
._1b_c00068{width:19.372907pt;}
._8_c00068{width:23.470773pt;}
._a_c00068{width:25.090560pt;}
._15_c00068{width:28.278507pt;}
._9_c00068{width:30.492000pt;}
._18_c00068{width:32.582880pt;}
._16_c00068{width:34.318667pt;}
._17_c00068{width:36.809280pt;}
._11_c00068{width:46.864107pt;}
._f_c00068{width:48.593600pt;}
._10_c00068{width:49.864907pt;}
._e_c00068{width:51.355627pt;}
.fs0_c00068{font-size:55.466667pt;}
.fs4_c00068{font-size:58.133333pt;}
.fs1_c00068{font-size:62.400000pt;}
.fs3_c00068{font-size:63.466667pt;}
.fs2_c00068{font-size:64.533333pt;}
.y0_c00068{bottom:0.000000pt;}
.y1c_c00068{bottom:63.053347pt;}
.y1b_c00068{bottom:198.086547pt;}
.y1a_c00068{bottom:225.932680pt;}
.y19_c00068{bottom:253.433080pt;}
.y17_c00068{bottom:308.470413pt;}
.y18_c00068{bottom:308.480013pt;}
.y16_c00068{bottom:337.929880pt;}
.y15_c00068{bottom:365.453347pt;}
.y14_c00068{bottom:419.200013pt;}
.y13_c00068{bottom:473.931080pt;}
.y12_c00068{bottom:502.083747pt;}
.y11_c00068{bottom:529.929880pt;}
.y10_c00068{bottom:557.453347pt;}
.yf_c00068{bottom:612.160013pt;}
.ye_c00068{bottom:667.207213pt;}
.yd_c00068{bottom:695.049213pt;}
.yc_c00068{bottom:722.233880pt;}
.ya_c00068{bottom:750.072947pt;}
.yb_c00068{bottom:750.080013pt;}
.y9_c00068{bottom:777.289880pt;}
.y7_c00068{bottom:804.811080pt;}
.y8_c00068{bottom:804.813347pt;}
.y6_c00068{bottom:859.535347pt;}
.y4_c00068{bottom:886.716547pt;}
.y5_c00068{bottom:886.720013pt;}
.y3_c00068{bottom:914.240013pt;}
.y2_c00068{bottom:968.973347pt;}
.y1_c00068{bottom:1064.973347pt;}
.h2_c00068{height:54.437500pt;}
.h7_c00068{height:57.054688pt;}
.h3_c00068{height:61.242187pt;}
.h4_c00068{height:63.335938pt;}
.h5_c00068{height:63.352471pt;}
.h6_c00068{height:63.363671pt;}
.h1_c00068{height:1122.666667pt;}
.h0_c00068{height:1122.880013pt;}
.w1_c00068{width:793.333333pt;}
.w0_c00068{width:793.600013pt;}
.x0_c00068{left:0.000000pt;}
.xd_c00068{left:107.559080pt;}
.xb_c00068{left:108.518013pt;}
.x3_c00068{left:109.470013pt;}
.x1_c00068{left:111.853347pt;}
.xc_c00068{left:155.426680pt;}
.x6_c00068{left:157.007613pt;}
.x2_c00068{left:162.786680pt;}
.x9_c00068{left:196.333347pt;}
.x4_c00068{left:203.693347pt;}
.xa_c00068{left:216.506680pt;}
.x5_c00068{left:222.880013pt;}
.x7_c00068{left:277.293347pt;}
.xe_c00068{left:279.826680pt;}
.x8_c00068{left:298.746680pt;}
.xf_c00068{left:304.546680pt;}
.x10_c00068{left:330.093347pt;}
.x11_c00068{left:349.280013pt;}
.x12_c00068{left:381.906680pt;}
}





/* 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_c00069 {
    display:none;
  }
  .loading-indicator_c00069.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00069 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_c00069 { 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_c00069" -> "#page-container .classname_c00069")
 */
.pf_c00069 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00069 { /* 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_c00069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00069 { /* 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_c00069 { /* 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_c00069 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00069 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00069 {overflow:visible;}
  }
}
.c_c00069 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00069 { /* 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_c00069:after { /* webkit #35443 */
  content: '';
}
.t_c00069:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00069 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 */
}
.__c00069 { /* 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_c00069 { /* info for Javascript */
  display:none;
}
.l_c00069 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00069 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00069 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00069: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_c00069 {
    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_c00069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00069.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_c00069 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00069;src:url('chunks/assets/font_83e536f15a06e14d2fac6f87.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;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:ff2_c00069;src:url('chunks/assets/font_35319622a438f2daa07f9420.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.284668;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_c00069;src:url('chunks/assets/font_d01f48b35bc6e293c826ca36.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:0.666000;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_c00069;src:url('chunks/assets/font_051e3eb6227fd93d0b3e7ea0.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.284180;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;}
.m9_c00069{transform:matrix(0.202762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202762,0.000000,0.000000,0.250000,0,0);}
.m3_c00069{transform:matrix(0.203456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203456,0.000000,0.000000,0.250000,0,0);}
.m7_c00069{transform:matrix(0.206013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206013,0.000000,0.000000,0.250000,0,0);}
.mb_c00069{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.ma_c00069{transform:matrix(0.218151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218151,0.000000,0.000000,0.250000,0,0);}
.m5_c00069{transform:matrix(0.226577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226577,0.000000,0.000000,0.250000,0,0);}
.m6_c00069{transform:matrix(0.235643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235643,0.000000,0.000000,0.250000,0,0);}
.me_c00069{transform:matrix(0.237564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237564,0.000000,0.000000,0.250000,0,0);}
.md_c00069{transform:matrix(0.246119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246119,0.000000,0.000000,0.250000,0,0);}
.mc_c00069{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.m8_c00069{transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);}
.m2_c00069{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_c00069{transform:matrix(0.259775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259775,0.000000,0.000000,0.250000,0,0);}
.m0_c00069{transform:matrix(0.264973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264973,0.000000,0.000000,0.250000,0,0);}
.m4_c00069{transform:matrix(0.513300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513300,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls29_c00069{letter-spacing:-2.499000px;}
.ls32_c00069{letter-spacing:-2.247000px;}
.ls2e_c00069{letter-spacing:-2.163000px;}
.ls2b_c00069{letter-spacing:-1.974000px;}
.ls35_c00069{letter-spacing:-1.964520px;}
.ls2d_c00069{letter-spacing:-1.953000px;}
.ls44_c00069{letter-spacing:-1.913160px;}
.ls3f_c00069{letter-spacing:-1.290420px;}
.ls37_c00069{letter-spacing:-1.110660px;}
.ls45_c00069{letter-spacing:-1.091400px;}
.ls39_c00069{letter-spacing:-0.995100px;}
.ls33_c00069{letter-spacing:-0.924480px;}
.ls3c_c00069{letter-spacing:-0.802500px;}
.ls3a_c00069{letter-spacing:-0.789660px;}
.ls2f_c00069{letter-spacing:-0.588000px;}
.ls2c_c00069{letter-spacing:-0.529920px;}
.ls3e_c00069{letter-spacing:-0.455820px;}
.ls42_c00069{letter-spacing:-0.449400px;}
.ls40_c00069{letter-spacing:-0.391620px;}
.ls38_c00069{letter-spacing:-0.333840px;}
.ls3b_c00069{letter-spacing:-0.314580px;}
.ls30_c00069{letter-spacing:-0.247680px;}
.ls46_c00069{letter-spacing:-0.187200px;}
.ls41_c00069{letter-spacing:-0.115560px;}
.ls43_c00069{letter-spacing:-0.083460px;}
.ls28_c00069{letter-spacing:0.000000px;}
.ls8_c00069{letter-spacing:0.044940px;}
.ls3_c00069{letter-spacing:0.051360px;}
.lsc_c00069{letter-spacing:0.070620px;}
.ls47_c00069{letter-spacing:0.141240px;}
.ls1f_c00069{letter-spacing:0.154080px;}
.ls7_c00069{letter-spacing:0.173340px;}
.ls22_c00069{letter-spacing:0.199020px;}
.ls17_c00069{letter-spacing:0.263220px;}
.ls23_c00069{letter-spacing:0.346680px;}
.ls19_c00069{letter-spacing:0.372360px;}
.ls16_c00069{letter-spacing:0.391620px;}
.ls1a_c00069{letter-spacing:0.423720px;}
.ls20_c00069{letter-spacing:0.455820px;}
.ls34_c00069{letter-spacing:0.457920px;}
.ls5_c00069{letter-spacing:0.475080px;}
.ls18_c00069{letter-spacing:0.487920px;}
.ls6_c00069{letter-spacing:0.500760px;}
.ls4_c00069{letter-spacing:0.577800px;}
.ls1c_c00069{letter-spacing:0.597060px;}
.lsa_c00069{letter-spacing:0.616320px;}
.ls25_c00069{letter-spacing:0.622740px;}
.ls36_c00069{letter-spacing:0.654840px;}
.ls1d_c00069{letter-spacing:0.686940px;}
.ls11_c00069{letter-spacing:0.719040px;}
.ls26_c00069{letter-spacing:0.725460px;}
.ls24_c00069{letter-spacing:0.751140px;}
.lsb_c00069{letter-spacing:0.834600px;}
.lse_c00069{letter-spacing:0.860280px;}
.ls21_c00069{letter-spacing:0.873120px;}
.ls1b_c00069{letter-spacing:0.905220px;}
.ls10_c00069{letter-spacing:0.930900px;}
.ls13_c00069{letter-spacing:0.947640px;}
.ls14_c00069{letter-spacing:0.979440px;}
.ls2_c00069{letter-spacing:0.988680px;}
.ls1_c00069{letter-spacing:1.059300px;}
.lsd_c00069{letter-spacing:1.123500px;}
.ls3d_c00069{letter-spacing:1.136340px;}
.ls12_c00069{letter-spacing:1.206960px;}
.ls1e_c00069{letter-spacing:1.271160px;}
.ls31_c00069{letter-spacing:1.277580px;}
.ls0_c00069{letter-spacing:1.324800px;}
.lsf_c00069{letter-spacing:1.335360px;}
.ls15_c00069{letter-spacing:1.733400px;}
.ls2a_c00069{letter-spacing:1.800000px;}
.ls9_c00069{letter-spacing:2.137860px;}
.ls27_c00069{letter-spacing:2.730000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{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__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00069{word-spacing:0.000000px;}
._9_c00069{margin-left:-4.224360px;}
._c_c00069{margin-left:-1.822860px;}
._a_c00069{width:1.046700px;}
._b_c00069{width:2.407260px;}
._7_c00069{width:3.723360px;}
._5_c00069{width:5.058960px;}
._8_c00069{width:7.141440px;}
._e_c00069{width:8.566140px;}
._6_c00069{width:9.578640px;}
._d_c00069{width:10.603320px;}
._f_c00069{width:12.688560px;}
._10_c00069{width:16.663680px;}
._1_c00069{width:27.533700px;}
._2_c00069{width:29.730180px;}
._3_c00069{width:33.769200px;}
._4_c00069{width:38.121960px;}
._0_c00069{width:219.744000px;}
.fc0_c00069{color:transparent;}
.fs2_c00069{font-size:36.000000px;}
.fs0_c00069{font-size:54.600000px;}
.fs6_c00069{font-size:55.800000px;}
.fs3_c00069{font-size:56.400000px;}
.fs5_c00069{font-size:57.600000px;}
.fs8_c00069{font-size:58.800000px;}
.fs4_c00069{font-size:60.600000px;}
.fs7_c00069{font-size:61.800000px;}
.fsd_c00069{font-size:62.400000px;}
.fsc_c00069{font-size:63.600000px;}
.fsb_c00069{font-size:64.200000px;}
.fsf_c00069{font-size:66.000000px;}
.fs1_c00069{font-size:71.400000px;}
.fse_c00069{font-size:76.800000px;}
.fsa_c00069{font-size:77.760000px;}
.fs9_c00069{font-size:81.600000px;}
.y0_c00069{bottom:0.000000px;}
.y18_c00069{bottom:47.895000px;}
.y17_c00069{bottom:266.418300px;}
.y16_c00069{bottom:285.132600px;}
.y15_c00069{bottom:304.196550px;}
.y14_c00069{bottom:323.275500px;}
.y13_c00069{bottom:342.380700px;}
.y12_c00069{bottom:361.095000px;}
.y11_c00069{bottom:502.200000px;}
.y10_c00069{bottom:525.255000px;}
.yf_c00069{bottom:567.720000px;}
.ye_c00069{bottom:590.040000px;}
.y1a_c00069{bottom:614.880000px;}
.y19_c00069{bottom:618.495000px;}
.yd_c00069{bottom:622.800000px;}
.yc_c00069{bottom:648.720000px;}
.yb_c00069{bottom:676.800000px;}
.ya_c00069{bottom:710.280000px;}
.y9_c00069{bottom:739.800000px;}
.y8_c00069{bottom:753.495000px;}
.y7_c00069{bottom:767.880000px;}
.y5_c00069{bottom:790.920000px;}
.y4_c00069{bottom:793.462350px;}
.y6_c00069{bottom:793.815000px;}
.y2_c00069{bottom:804.240000px;}
.y3_c00069{bottom:815.400000px;}
.y1_c00069{bottom:1172.175000px;}
.h4_c00069{height:37.546875px;}
.hc_c00069{height:51.788160px;}
.h10_c00069{height:55.353516px;}
.h2_c00069{height:56.946094px;}
.h8_c00069{height:58.197656px;}
.h5_c00069{height:58.823438px;}
.h6_c00069{height:59.475586px;}
.h7_c00069{height:60.075000px;}
.h9_c00069{height:60.653320px;}
.ha_c00069{height:61.326563px;}
.hd_c00069{height:63.008789px;}
.hf_c00069{height:63.022589px;}
.he_c00069{height:63.026789px;}
.h12_c00069{height:68.835938px;}
.h3_c00069{height:70.075195px;}
.hb_c00069{height:80.085938px;}
.h11_c00069{height:80.100000px;}
.h1_c00069{height:1263.000000px;}
.h0_c00069{height:1263.240000px;}
.w1_c00069{width:892.500000px;}
.w0_c00069{width:892.800000px;}
.x0_c00069{left:0.000000px;}
.x1_c00069{left:139.110000px;}
.x11_c00069{left:195.645000px;}
.xe_c00069{left:224.790000px;}
.x12_c00069{left:226.275000px;}
.xf_c00069{left:245.190000px;}
.x10_c00069{left:257.775000px;}
.x2_c00069{left:289.215000px;}
.x3_c00069{left:422.100000px;}
.x9_c00069{left:424.530000px;}
.x15_c00069{left:444.435000px;}
.xc_c00069{left:480.600000px;}
.xd_c00069{left:481.875000px;}
.xb_c00069{left:484.860000px;}
.x5_c00069{left:488.370574px;}
.xa_c00069{left:491.970000px;}
.x8_c00069{left:496.005000px;}
.x4_c00069{left:511.410000px;}
.x13_c00069{left:560.010000px;}
.x14_c00069{left:583.050000px;}
.x6_c00069{left:627.315000px;}
.x7_c00069{left:682.905000px;}
.x17_c00069{left:855.135000px;}
.x16_c00069{left:856.185000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls29_c00069{letter-spacing:-2.221333pt;}
.ls32_c00069{letter-spacing:-1.997333pt;}
.ls2e_c00069{letter-spacing:-1.922667pt;}
.ls2b_c00069{letter-spacing:-1.754667pt;}
.ls35_c00069{letter-spacing:-1.746240pt;}
.ls2d_c00069{letter-spacing:-1.736000pt;}
.ls44_c00069{letter-spacing:-1.700587pt;}
.ls3f_c00069{letter-spacing:-1.147040pt;}
.ls37_c00069{letter-spacing:-0.987253pt;}
.ls45_c00069{letter-spacing:-0.970133pt;}
.ls39_c00069{letter-spacing:-0.884533pt;}
.ls33_c00069{letter-spacing:-0.821760pt;}
.ls3c_c00069{letter-spacing:-0.713333pt;}
.ls3a_c00069{letter-spacing:-0.701920pt;}
.ls2f_c00069{letter-spacing:-0.522667pt;}
.ls2c_c00069{letter-spacing:-0.471040pt;}
.ls3e_c00069{letter-spacing:-0.405173pt;}
.ls42_c00069{letter-spacing:-0.399467pt;}
.ls40_c00069{letter-spacing:-0.348107pt;}
.ls38_c00069{letter-spacing:-0.296747pt;}
.ls3b_c00069{letter-spacing:-0.279627pt;}
.ls30_c00069{letter-spacing:-0.220160pt;}
.ls46_c00069{letter-spacing:-0.166400pt;}
.ls41_c00069{letter-spacing:-0.102720pt;}
.ls43_c00069{letter-spacing:-0.074187pt;}
.ls28_c00069{letter-spacing:0.000000pt;}
.ls8_c00069{letter-spacing:0.039947pt;}
.ls3_c00069{letter-spacing:0.045653pt;}
.lsc_c00069{letter-spacing:0.062773pt;}
.ls47_c00069{letter-spacing:0.125547pt;}
.ls1f_c00069{letter-spacing:0.136960pt;}
.ls7_c00069{letter-spacing:0.154080pt;}
.ls22_c00069{letter-spacing:0.176907pt;}
.ls17_c00069{letter-spacing:0.233973pt;}
.ls23_c00069{letter-spacing:0.308160pt;}
.ls19_c00069{letter-spacing:0.330987pt;}
.ls16_c00069{letter-spacing:0.348107pt;}
.ls1a_c00069{letter-spacing:0.376640pt;}
.ls20_c00069{letter-spacing:0.405173pt;}
.ls34_c00069{letter-spacing:0.407040pt;}
.ls5_c00069{letter-spacing:0.422293pt;}
.ls18_c00069{letter-spacing:0.433707pt;}
.ls6_c00069{letter-spacing:0.445120pt;}
.ls4_c00069{letter-spacing:0.513600pt;}
.ls1c_c00069{letter-spacing:0.530720pt;}
.lsa_c00069{letter-spacing:0.547840pt;}
.ls25_c00069{letter-spacing:0.553547pt;}
.ls36_c00069{letter-spacing:0.582080pt;}
.ls1d_c00069{letter-spacing:0.610613pt;}
.ls11_c00069{letter-spacing:0.639147pt;}
.ls26_c00069{letter-spacing:0.644853pt;}
.ls24_c00069{letter-spacing:0.667680pt;}
.lsb_c00069{letter-spacing:0.741867pt;}
.lse_c00069{letter-spacing:0.764693pt;}
.ls21_c00069{letter-spacing:0.776107pt;}
.ls1b_c00069{letter-spacing:0.804640pt;}
.ls10_c00069{letter-spacing:0.827467pt;}
.ls13_c00069{letter-spacing:0.842347pt;}
.ls14_c00069{letter-spacing:0.870613pt;}
.ls2_c00069{letter-spacing:0.878827pt;}
.ls1_c00069{letter-spacing:0.941600pt;}
.lsd_c00069{letter-spacing:0.998667pt;}
.ls3d_c00069{letter-spacing:1.010080pt;}
.ls12_c00069{letter-spacing:1.072853pt;}
.ls1e_c00069{letter-spacing:1.129920pt;}
.ls31_c00069{letter-spacing:1.135627pt;}
.ls0_c00069{letter-spacing:1.177600pt;}
.lsf_c00069{letter-spacing:1.186987pt;}
.ls15_c00069{letter-spacing:1.540800pt;}
.ls2a_c00069{letter-spacing:1.600000pt;}
.ls9_c00069{letter-spacing:1.900320pt;}
.ls27_c00069{letter-spacing:2.426667pt;}
.ws0_c00069{word-spacing:0.000000pt;}
._9_c00069{margin-left:-3.754987pt;}
._c_c00069{margin-left:-1.620320pt;}
._a_c00069{width:0.930400pt;}
._b_c00069{width:2.139787pt;}
._7_c00069{width:3.309653pt;}
._5_c00069{width:4.496853pt;}
._8_c00069{width:6.347947pt;}
._e_c00069{width:7.614347pt;}
._6_c00069{width:8.514347pt;}
._d_c00069{width:9.425173pt;}
._f_c00069{width:11.278720pt;}
._10_c00069{width:14.812160pt;}
._1_c00069{width:24.474400pt;}
._2_c00069{width:26.426827pt;}
._3_c00069{width:30.017067pt;}
._4_c00069{width:33.886187pt;}
._0_c00069{width:195.328000pt;}
.fs2_c00069{font-size:32.000000pt;}
.fs0_c00069{font-size:48.533333pt;}
.fs6_c00069{font-size:49.600000pt;}
.fs3_c00069{font-size:50.133333pt;}
.fs5_c00069{font-size:51.200000pt;}
.fs8_c00069{font-size:52.266667pt;}
.fs4_c00069{font-size:53.866667pt;}
.fs7_c00069{font-size:54.933333pt;}
.fsd_c00069{font-size:55.466667pt;}
.fsc_c00069{font-size:56.533333pt;}
.fsb_c00069{font-size:57.066667pt;}
.fsf_c00069{font-size:58.666667pt;}
.fs1_c00069{font-size:63.466667pt;}
.fse_c00069{font-size:68.266667pt;}
.fsa_c00069{font-size:69.120000pt;}
.fs9_c00069{font-size:72.533333pt;}
.y0_c00069{bottom:0.000000pt;}
.y18_c00069{bottom:42.573333pt;}
.y17_c00069{bottom:236.816267pt;}
.y16_c00069{bottom:253.451200pt;}
.y15_c00069{bottom:270.396933pt;}
.y14_c00069{bottom:287.356000pt;}
.y13_c00069{bottom:304.338400pt;}
.y12_c00069{bottom:320.973333pt;}
.y11_c00069{bottom:446.400000pt;}
.y10_c00069{bottom:466.893333pt;}
.yf_c00069{bottom:504.640000pt;}
.ye_c00069{bottom:524.480000pt;}
.y1a_c00069{bottom:546.560000pt;}
.y19_c00069{bottom:549.773333pt;}
.yd_c00069{bottom:553.600000pt;}
.yc_c00069{bottom:576.640000pt;}
.yb_c00069{bottom:601.600000pt;}
.ya_c00069{bottom:631.360000pt;}
.y9_c00069{bottom:657.600000pt;}
.y8_c00069{bottom:669.773333pt;}
.y7_c00069{bottom:682.560000pt;}
.y5_c00069{bottom:703.040000pt;}
.y4_c00069{bottom:705.299867pt;}
.y6_c00069{bottom:705.613333pt;}
.y2_c00069{bottom:714.880000pt;}
.y3_c00069{bottom:724.800000pt;}
.y1_c00069{bottom:1041.933333pt;}
.h4_c00069{height:33.375000pt;}
.hc_c00069{height:46.033920pt;}
.h10_c00069{height:49.203125pt;}
.h2_c00069{height:50.618750pt;}
.h8_c00069{height:51.731250pt;}
.h5_c00069{height:52.287500pt;}
.h6_c00069{height:52.867187pt;}
.h7_c00069{height:53.400000pt;}
.h9_c00069{height:53.914062pt;}
.ha_c00069{height:54.512500pt;}
.hd_c00069{height:56.007812pt;}
.hf_c00069{height:56.020079pt;}
.he_c00069{height:56.023813pt;}
.h12_c00069{height:61.187500pt;}
.h3_c00069{height:62.289062pt;}
.hb_c00069{height:71.187500pt;}
.h11_c00069{height:71.200000pt;}
.h1_c00069{height:1122.666667pt;}
.h0_c00069{height:1122.880000pt;}
.w1_c00069{width:793.333333pt;}
.w0_c00069{width:793.600000pt;}
.x0_c00069{left:0.000000pt;}
.x1_c00069{left:123.653333pt;}
.x11_c00069{left:173.906667pt;}
.xe_c00069{left:199.813333pt;}
.x12_c00069{left:201.133333pt;}
.xf_c00069{left:217.946667pt;}
.x10_c00069{left:229.133333pt;}
.x2_c00069{left:257.080000pt;}
.x3_c00069{left:375.200000pt;}
.x9_c00069{left:377.360000pt;}
.x15_c00069{left:395.053333pt;}
.xc_c00069{left:427.200000pt;}
.xd_c00069{left:428.333333pt;}
.xb_c00069{left:430.986667pt;}
.x5_c00069{left:434.107177pt;}
.xa_c00069{left:437.306667pt;}
.x8_c00069{left:440.893333pt;}
.x4_c00069{left:454.586667pt;}
.x13_c00069{left:497.786667pt;}
.x14_c00069{left:518.266667pt;}
.x6_c00069{left:557.613333pt;}
.x7_c00069{left:607.026667pt;}
.x17_c00069{left:760.120000pt;}
.x16_c00069{left:761.053333pt;}
}





/* 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_c00070 {
    display:none;
  }
  .loading-indicator_c00070.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00070 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_c00070 { 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_c00070" -> "#page-container .classname_c00070")
 */
.pf_c00070 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00070 { /* 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_c00070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00070 { /* 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_c00070 { /* 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_c00070 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00070 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00070 {overflow:visible;}
  }
}
.c_c00070 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00070 { /* 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_c00070:after { /* webkit #35443 */
  content: '';
}
.t_c00070:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00070 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 */
}
.__c00070 { /* 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_c00070 { /* info for Javascript */
  display:none;
}
.l_c00070 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00070 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00070 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00070: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_c00070 {
    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_c00070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00070.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_c00070 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00070;src:url('chunks/assets/font_1cbb078549c602a2a9695c52.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.284668;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_c00070;src:url('chunks/assets/font_32e4620b0c0e4a70a55fd958.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.284180;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_c00070;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;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:ff4_c00070;src:url('chunks/assets/font_44b398e497070d7fa6b72bf2.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;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;}
.m6_c00070{transform:matrix(0.220699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220699,0.000000,0.000000,0.250000,0,0);}
.m9_c00070{transform:matrix(0.227868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227868,0.000000,0.000000,0.250000,0,0);}
.m8_c00070{transform:matrix(0.229871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229871,0.000000,0.000000,0.250000,0,0);}
.m1_c00070{transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);}
.m2_c00070{transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);}
.m4_c00070{transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);}
.m3_c00070{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m0_c00070{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);}
.m5_c00070{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m7_c00070{transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.ls4e_c00070{letter-spacing:-2.667000px;}
.ls5a_c00070{letter-spacing:-2.457000px;}
.ls5f_c00070{letter-spacing:-2.352000px;}
.ls4d_c00070{letter-spacing:-2.171700px;}
.ls52_c00070{letter-spacing:-0.478380px;}
.ls5c_c00070{letter-spacing:-0.442260px;}
.ls5e_c00070{letter-spacing:-0.196560px;}
.ls50_c00070{letter-spacing:-0.161460px;}
.ls51_c00070{letter-spacing:-0.135660px;}
.ls56_c00070{letter-spacing:-0.105300px;}
.ls5d_c00070{letter-spacing:-0.077220px;}
.ls61_c00070{letter-spacing:-0.070200px;}
.ls4f_c00070{letter-spacing:0.000000px;}
.ls3d_c00070{letter-spacing:0.161460px;}
.ls1b_c00070{letter-spacing:0.196560px;}
.ls26_c00070{letter-spacing:0.257040px;}
.lse_c00070{letter-spacing:0.335580px;}
.ls3b_c00070{letter-spacing:0.421200px;}
.lsd_c00070{letter-spacing:0.492660px;}
.ls5b_c00070{letter-spacing:0.526500px;}
.ls33_c00070{letter-spacing:0.554580px;}
.ls11_c00070{letter-spacing:0.578340px;}
.lsc_c00070{letter-spacing:0.635460px;}
.lsa_c00070{letter-spacing:0.645840px;}
.ls18_c00070{letter-spacing:0.673920px;}
.ls2a_c00070{letter-spacing:0.678300px;}
.ls23_c00070{letter-spacing:0.730080px;}
.ls46_c00070{letter-spacing:0.744120px;}
.ls62_c00070{letter-spacing:0.772200px;}
.ls35_c00070{letter-spacing:0.779220px;}
.ls19_c00070{letter-spacing:0.793260px;}
.ls7_c00070{letter-spacing:0.814320px;}
.ls14_c00070{letter-spacing:0.828360px;}
.ls20_c00070{letter-spacing:0.835380px;}
.ls32_c00070{letter-spacing:0.842400px;}
.ls24_c00070{letter-spacing:0.849420px;}
.ls3a_c00070{letter-spacing:0.898560px;}
.ls2c_c00070{letter-spacing:0.912600px;}
.ls4c_c00070{letter-spacing:0.917280px;}
.ls57_c00070{letter-spacing:0.919620px;}
.ls1a_c00070{letter-spacing:0.926640px;}
.ls2b_c00070{letter-spacing:0.949620px;}
.ls2_c00070{letter-spacing:0.961740px;}
.ls47_c00070{letter-spacing:0.968760px;}
.ls22_c00070{letter-spacing:0.975780px;}
.ls41_c00070{letter-spacing:0.982800px;}
.ls4_c00070{letter-spacing:0.989820px;}
.ls6_c00070{letter-spacing:1.003860px;}
.ls15_c00070{letter-spacing:1.045980px;}
.ls40_c00070{letter-spacing:1.053000px;}
.ls30_c00070{letter-spacing:1.067040px;}
.lsf_c00070{letter-spacing:1.095120px;}
.ls29_c00070{letter-spacing:1.102140px;}
.ls9_c00070{letter-spacing:1.130220px;}
.ls28_c00070{letter-spacing:1.137240px;}
.ls59_c00070{letter-spacing:1.144260px;}
.ls2e_c00070{letter-spacing:1.165320px;}
.ls0_c00070{letter-spacing:1.173120px;}
.ls21_c00070{letter-spacing:1.186380px;}
.ls48_c00070{letter-spacing:1.193400px;}
.ls38_c00070{letter-spacing:1.221480px;}
.ls44_c00070{letter-spacing:1.235520px;}
.lsb_c00070{letter-spacing:1.242540px;}
.ls4b_c00070{letter-spacing:1.249560px;}
.ls45_c00070{letter-spacing:1.270620px;}
.ls25_c00070{letter-spacing:1.277640px;}
.ls1c_c00070{letter-spacing:1.284660px;}
.ls34_c00070{letter-spacing:1.298700px;}
.ls8_c00070{letter-spacing:1.305720px;}
.ls1e_c00070{letter-spacing:1.319760px;}
.ls3_c00070{letter-spacing:1.326780px;}
.ls2f_c00070{letter-spacing:1.340820px;}
.ls54_c00070{letter-spacing:1.347840px;}
.ls60_c00070{letter-spacing:1.354860px;}
.ls49_c00070{letter-spacing:1.392300px;}
.ls31_c00070{letter-spacing:1.396980px;}
.ls16_c00070{letter-spacing:1.425060px;}
.ls1_c00070{letter-spacing:1.467180px;}
.ls3e_c00070{letter-spacing:1.481220px;}
.ls10_c00070{letter-spacing:1.488240px;}
.ls39_c00070{letter-spacing:1.516320px;}
.ls13_c00070{letter-spacing:1.530360px;}
.ls4a_c00070{letter-spacing:1.551420px;}
.ls37_c00070{letter-spacing:1.579500px;}
.ls5_c00070{letter-spacing:1.628640px;}
.ls3f_c00070{letter-spacing:1.649700px;}
.ls53_c00070{letter-spacing:1.670760px;}
.ls1d_c00070{letter-spacing:1.719900px;}
.ls17_c00070{letter-spacing:1.832220px;}
.ls2d_c00070{letter-spacing:1.839240px;}
.ls3c_c00070{letter-spacing:1.846260px;}
.ls12_c00070{letter-spacing:1.930500px;}
.ls1f_c00070{letter-spacing:2.183220px;}
.ls36_c00070{letter-spacing:2.653560px;}
.ls42_c00070{letter-spacing:2.681640px;}
.ls58_c00070{letter-spacing:2.702700px;}
.ls43_c00070{letter-spacing:3.208140px;}
.ls27_c00070{letter-spacing:3.257280px;}
.ls55_c00070{letter-spacing:3.510000px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{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__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00070{word-spacing:0.000000px;}
._12_c00070{margin-left:-4.462020px;}
._e_c00070{margin-left:-3.229200px;}
._14_c00070{margin-left:-1.698840px;}
._f_c00070{width:1.116180px;}
._9_c00070{width:2.204280px;}
._16_c00070{width:3.247260px;}
._b_c00070{width:4.485780px;}
._c_c00070{width:5.693220px;}
._a_c00070{width:7.356960px;}
._d_c00070{width:8.985600px;}
._13_c00070{width:10.280940px;}
._10_c00070{width:11.744460px;}
._11_c00070{width:13.534560px;}
._15_c00070{width:15.015780px;}
._6_c00070{width:16.266480px;}
._3_c00070{width:17.409600px;}
._4_c00070{width:21.263580px;}
._8_c00070{width:22.925640px;}
._5_c00070{width:25.204200px;}
._7_c00070{width:34.550460px;}
._2_c00070{width:39.929760px;}
._0_c00070{width:41.895360px;}
._1_c00070{width:43.032600px;}
.fc0_c00070{color:transparent;}
.fs0_c00070{font-size:62.400000px;}
.fs4_c00070{font-size:67.200000px;}
.fs2_c00070{font-size:70.200000px;}
.fs3_c00070{font-size:71.400000px;}
.fs1_c00070{font-size:76.200000px;}
.y0_c00070{bottom:0.000000px;}
.y15_c00070{bottom:72.000000px;}
.y14_c00070{bottom:598.328250px;}
.y13_c00070{bottom:629.655000px;}
.y12_c00070{bottom:629.659350px;}
.y11_c00070{bottom:660.603600px;}
.y10_c00070{bottom:691.579350px;}
.ye_c00070{bottom:722.512800px;}
.yf_c00070{bottom:722.520000px;}
.yd_c00070{bottom:753.120000px;}
.yc_c00070{bottom:753.129600px;}
.yb_c00070{bottom:784.087800px;}
.ya_c00070{bottom:814.702950px;}
.y9_c00070{bottom:845.661150px;}
.y8_c00070{bottom:907.560000px;}
.y7_c00070{bottom:907.569600px;}
.y6_c00070{bottom:938.176800px;}
.y5_c00070{bottom:969.135000px;}
.y4_c00070{bottom:999.719250px;}
.y3_c00070{bottom:1030.695000px;}
.y2_c00070{bottom:1092.240000px;}
.y1_c00070{bottom:1199.880000px;}
.h2_c00070{height:61.242188px;}
.ha_c00070{height:65.953125px;}
.h4_c00070{height:68.897461px;}
.h7_c00070{height:70.008532px;}
.h6_c00070{height:70.040332px;}
.h5_c00070{height:70.043332px;}
.h9_c00070{height:70.073100px;}
.h8_c00070{height:70.087500px;}
.h3_c00070{height:74.786133px;}
.h1_c00070{height:1263.000000px;}
.h0_c00070{height:1263.240000px;}
.w1_c00070{width:892.500000px;}
.w0_c00070{width:892.800000px;}
.x0_c00070{left:0.000000px;}
.x11_c00070{left:116.898900px;}
.x9_c00070{left:117.926100px;}
.x8_c00070{left:119.014350px;}
.x1_c00070{left:120.795000px;}
.x2_c00070{left:160.830000px;}
.xc_c00070{left:171.628200px;}
.x7_c00070{left:172.770000px;}
.x3_c00070{left:256.485000px;}
.xa_c00070{left:290.190000px;}
.xb_c00070{left:319.680000px;}
.x12_c00070{left:324.885000px;}
.xd_c00070{left:330.555000px;}
.x13_c00070{left:345.840000px;}
.xe_c00070{left:351.555000px;}
.x4_c00070{left:357.255000px;}
.x14_c00070{left:423.165000px;}
.x5_c00070{left:464.355000px;}
.x6_c00070{left:481.485000px;}
.xf_c00070{left:556.095000px;}
.x10_c00070{left:580.890000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls4e_c00070{letter-spacing:-2.370667pt;}
.ls5a_c00070{letter-spacing:-2.184000pt;}
.ls5f_c00070{letter-spacing:-2.090667pt;}
.ls4d_c00070{letter-spacing:-1.930400pt;}
.ls52_c00070{letter-spacing:-0.425227pt;}
.ls5c_c00070{letter-spacing:-0.393120pt;}
.ls5e_c00070{letter-spacing:-0.174720pt;}
.ls50_c00070{letter-spacing:-0.143520pt;}
.ls51_c00070{letter-spacing:-0.120587pt;}
.ls56_c00070{letter-spacing:-0.093600pt;}
.ls5d_c00070{letter-spacing:-0.068640pt;}
.ls61_c00070{letter-spacing:-0.062400pt;}
.ls4f_c00070{letter-spacing:0.000000pt;}
.ls3d_c00070{letter-spacing:0.143520pt;}
.ls1b_c00070{letter-spacing:0.174720pt;}
.ls26_c00070{letter-spacing:0.228480pt;}
.lse_c00070{letter-spacing:0.298293pt;}
.ls3b_c00070{letter-spacing:0.374400pt;}
.lsd_c00070{letter-spacing:0.437920pt;}
.ls5b_c00070{letter-spacing:0.468000pt;}
.ls33_c00070{letter-spacing:0.492960pt;}
.ls11_c00070{letter-spacing:0.514080pt;}
.lsc_c00070{letter-spacing:0.564853pt;}
.lsa_c00070{letter-spacing:0.574080pt;}
.ls18_c00070{letter-spacing:0.599040pt;}
.ls2a_c00070{letter-spacing:0.602933pt;}
.ls23_c00070{letter-spacing:0.648960pt;}
.ls46_c00070{letter-spacing:0.661440pt;}
.ls62_c00070{letter-spacing:0.686400pt;}
.ls35_c00070{letter-spacing:0.692640pt;}
.ls19_c00070{letter-spacing:0.705120pt;}
.ls7_c00070{letter-spacing:0.723840pt;}
.ls14_c00070{letter-spacing:0.736320pt;}
.ls20_c00070{letter-spacing:0.742560pt;}
.ls32_c00070{letter-spacing:0.748800pt;}
.ls24_c00070{letter-spacing:0.755040pt;}
.ls3a_c00070{letter-spacing:0.798720pt;}
.ls2c_c00070{letter-spacing:0.811200pt;}
.ls4c_c00070{letter-spacing:0.815360pt;}
.ls57_c00070{letter-spacing:0.817440pt;}
.ls1a_c00070{letter-spacing:0.823680pt;}
.ls2b_c00070{letter-spacing:0.844107pt;}
.ls2_c00070{letter-spacing:0.854880pt;}
.ls47_c00070{letter-spacing:0.861120pt;}
.ls22_c00070{letter-spacing:0.867360pt;}
.ls41_c00070{letter-spacing:0.873600pt;}
.ls4_c00070{letter-spacing:0.879840pt;}
.ls6_c00070{letter-spacing:0.892320pt;}
.ls15_c00070{letter-spacing:0.929760pt;}
.ls40_c00070{letter-spacing:0.936000pt;}
.ls30_c00070{letter-spacing:0.948480pt;}
.lsf_c00070{letter-spacing:0.973440pt;}
.ls29_c00070{letter-spacing:0.979680pt;}
.ls9_c00070{letter-spacing:1.004640pt;}
.ls28_c00070{letter-spacing:1.010880pt;}
.ls59_c00070{letter-spacing:1.017120pt;}
.ls2e_c00070{letter-spacing:1.035840pt;}
.ls0_c00070{letter-spacing:1.042773pt;}
.ls21_c00070{letter-spacing:1.054560pt;}
.ls48_c00070{letter-spacing:1.060800pt;}
.ls38_c00070{letter-spacing:1.085760pt;}
.ls44_c00070{letter-spacing:1.098240pt;}
.lsb_c00070{letter-spacing:1.104480pt;}
.ls4b_c00070{letter-spacing:1.110720pt;}
.ls45_c00070{letter-spacing:1.129440pt;}
.ls25_c00070{letter-spacing:1.135680pt;}
.ls1c_c00070{letter-spacing:1.141920pt;}
.ls34_c00070{letter-spacing:1.154400pt;}
.ls8_c00070{letter-spacing:1.160640pt;}
.ls1e_c00070{letter-spacing:1.173120pt;}
.ls3_c00070{letter-spacing:1.179360pt;}
.ls2f_c00070{letter-spacing:1.191840pt;}
.ls54_c00070{letter-spacing:1.198080pt;}
.ls60_c00070{letter-spacing:1.204320pt;}
.ls49_c00070{letter-spacing:1.237600pt;}
.ls31_c00070{letter-spacing:1.241760pt;}
.ls16_c00070{letter-spacing:1.266720pt;}
.ls1_c00070{letter-spacing:1.304160pt;}
.ls3e_c00070{letter-spacing:1.316640pt;}
.ls10_c00070{letter-spacing:1.322880pt;}
.ls39_c00070{letter-spacing:1.347840pt;}
.ls13_c00070{letter-spacing:1.360320pt;}
.ls4a_c00070{letter-spacing:1.379040pt;}
.ls37_c00070{letter-spacing:1.404000pt;}
.ls5_c00070{letter-spacing:1.447680pt;}
.ls3f_c00070{letter-spacing:1.466400pt;}
.ls53_c00070{letter-spacing:1.485120pt;}
.ls1d_c00070{letter-spacing:1.528800pt;}
.ls17_c00070{letter-spacing:1.628640pt;}
.ls2d_c00070{letter-spacing:1.634880pt;}
.ls3c_c00070{letter-spacing:1.641120pt;}
.ls12_c00070{letter-spacing:1.716000pt;}
.ls1f_c00070{letter-spacing:1.940640pt;}
.ls36_c00070{letter-spacing:2.358720pt;}
.ls42_c00070{letter-spacing:2.383680pt;}
.ls58_c00070{letter-spacing:2.402400pt;}
.ls43_c00070{letter-spacing:2.851680pt;}
.ls27_c00070{letter-spacing:2.895360pt;}
.ls55_c00070{letter-spacing:3.120000pt;}
.ws0_c00070{word-spacing:0.000000pt;}
._12_c00070{margin-left:-3.966240pt;}
._e_c00070{margin-left:-2.870400pt;}
._14_c00070{margin-left:-1.510080pt;}
._f_c00070{width:0.992160pt;}
._9_c00070{width:1.959360pt;}
._16_c00070{width:2.886453pt;}
._b_c00070{width:3.987360pt;}
._c_c00070{width:5.060640pt;}
._a_c00070{width:6.539520pt;}
._d_c00070{width:7.987200pt;}
._13_c00070{width:9.138613pt;}
._10_c00070{width:10.439520pt;}
._11_c00070{width:12.030720pt;}
._15_c00070{width:13.347360pt;}
._6_c00070{width:14.459093pt;}
._3_c00070{width:15.475200pt;}
._4_c00070{width:18.900960pt;}
._8_c00070{width:20.378347pt;}
._5_c00070{width:22.403733pt;}
._7_c00070{width:30.711520pt;}
._2_c00070{width:35.493120pt;}
._0_c00070{width:37.240320pt;}
._1_c00070{width:38.251200pt;}
.fs0_c00070{font-size:55.466667pt;}
.fs4_c00070{font-size:59.733333pt;}
.fs2_c00070{font-size:62.400000pt;}
.fs3_c00070{font-size:63.466667pt;}
.fs1_c00070{font-size:67.733333pt;}
.y0_c00070{bottom:0.000000pt;}
.y15_c00070{bottom:64.000000pt;}
.y14_c00070{bottom:531.847333pt;}
.y13_c00070{bottom:559.693333pt;}
.y12_c00070{bottom:559.697200pt;}
.y11_c00070{bottom:587.203200pt;}
.y10_c00070{bottom:614.737200pt;}
.ye_c00070{bottom:642.233600pt;}
.yf_c00070{bottom:642.240000pt;}
.yd_c00070{bottom:669.440000pt;}
.yc_c00070{bottom:669.448533pt;}
.yb_c00070{bottom:696.966933pt;}
.ya_c00070{bottom:724.180400pt;}
.y9_c00070{bottom:751.698800pt;}
.y8_c00070{bottom:806.720000pt;}
.y7_c00070{bottom:806.728533pt;}
.y6_c00070{bottom:833.934933pt;}
.y5_c00070{bottom:861.453333pt;}
.y4_c00070{bottom:888.639333pt;}
.y3_c00070{bottom:916.173333pt;}
.y2_c00070{bottom:970.880000pt;}
.y1_c00070{bottom:1066.560000pt;}
.h2_c00070{height:54.437500pt;}
.ha_c00070{height:58.625000pt;}
.h4_c00070{height:61.242187pt;}
.h7_c00070{height:62.229806pt;}
.h6_c00070{height:62.258073pt;}
.h5_c00070{height:62.260740pt;}
.h9_c00070{height:62.287200pt;}
.h8_c00070{height:62.300000pt;}
.h3_c00070{height:66.476562pt;}
.h1_c00070{height:1122.666667pt;}
.h0_c00070{height:1122.880000pt;}
.w1_c00070{width:793.333333pt;}
.w0_c00070{width:793.600000pt;}
.x0_c00070{left:0.000000pt;}
.x11_c00070{left:103.910133pt;}
.x9_c00070{left:104.823200pt;}
.x8_c00070{left:105.790533pt;}
.x1_c00070{left:107.373333pt;}
.x2_c00070{left:142.960000pt;}
.xc_c00070{left:152.558400pt;}
.x7_c00070{left:153.573333pt;}
.x3_c00070{left:227.986667pt;}
.xa_c00070{left:257.946667pt;}
.xb_c00070{left:284.160000pt;}
.x12_c00070{left:288.786667pt;}
.xd_c00070{left:293.826667pt;}
.x13_c00070{left:307.413333pt;}
.xe_c00070{left:312.493333pt;}
.x4_c00070{left:317.560000pt;}
.x14_c00070{left:376.146667pt;}
.x5_c00070{left:412.760000pt;}
.x6_c00070{left:427.986667pt;}
.xf_c00070{left:494.306667pt;}
.x10_c00070{left:516.346667pt;}
}





/* 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_c00071 {
    display:none;
  }
  .loading-indicator_c00071.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00071 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_c00071 { 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_c00071" -> "#page-container .classname_c00071")
 */
.pf_c00071 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00071 { /* 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_c00071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00071 { /* 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_c00071 { /* 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_c00071 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00071 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00071 {overflow:visible;}
  }
}
.c_c00071 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00071 { /* 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_c00071:after { /* webkit #35443 */
  content: '';
}
.t_c00071:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00071 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 */
}
.__c00071 { /* 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_c00071 { /* info for Javascript */
  display:none;
}
.l_c00071 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00071 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00071 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00071: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_c00071 {
    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_c00071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00071.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_c00071 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00071;src:url('chunks/assets/font_36a6019b32f6cadedd081549.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.284668;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_c00071{transform:matrix(0.243553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243553,0.000000,0.000000,0.250000,0,0);}
.m0_c00071{transform:matrix(0.243770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243770,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m1_c00071{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);}
.m5_c00071{transform:matrix(0.250538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250538,0.000000,0.000000,0.250000,0,0);}
.m4_c00071{transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls60_c00071{letter-spacing:-2.961000px;}
.ls70_c00071{letter-spacing:-2.478000px;}
.ls77_c00071{letter-spacing:-1.932840px;}
.ls69_c00071{letter-spacing:-1.323960px;}
.ls7a_c00071{letter-spacing:-1.281480px;}
.ls88_c00071{letter-spacing:-1.231920px;}
.ls6a_c00071{letter-spacing:-1.139880px;}
.ls83_c00071{letter-spacing:-1.040760px;}
.ls63_c00071{letter-spacing:-0.955800px;}
.ls67_c00071{letter-spacing:-0.934560px;}
.ls76_c00071{letter-spacing:-0.722160px;}
.ls68_c00071{letter-spacing:-0.615960px;}
.ls6c_c00071{letter-spacing:-0.608880px;}
.ls80_c00071{letter-spacing:-0.559320px;}
.ls89_c00071{letter-spacing:-0.523920px;}
.ls6e_c00071{letter-spacing:-0.417720px;}
.ls8a_c00071{letter-spacing:-0.346920px;}
.ls8c_c00071{letter-spacing:-0.339840px;}
.ls72_c00071{letter-spacing:-0.318600px;}
.ls64_c00071{letter-spacing:-0.311520px;}
.ls6d_c00071{letter-spacing:-0.304440px;}
.ls8d_c00071{letter-spacing:-0.290280px;}
.ls81_c00071{letter-spacing:-0.219480px;}
.ls85_c00071{letter-spacing:-0.169920px;}
.ls8b_c00071{letter-spacing:-0.162840px;}
.ls82_c00071{letter-spacing:-0.141600px;}
.ls84_c00071{letter-spacing:-0.106200px;}
.ls75_c00071{letter-spacing:-0.099120px;}
.ls7e_c00071{letter-spacing:-0.092040px;}
.ls86_c00071{letter-spacing:-0.084960px;}
.ls62_c00071{letter-spacing:-0.070800px;}
.ls6b_c00071{letter-spacing:-0.063720px;}
.ls74_c00071{letter-spacing:-0.056640px;}
.ls78_c00071{letter-spacing:-0.042480px;}
.ls79_c00071{letter-spacing:-0.021240px;}
.ls7f_c00071{letter-spacing:-0.014160px;}
.ls73_c00071{letter-spacing:-0.007080px;}
.ls65_c00071{letter-spacing:0.000000px;}
.ls5c_c00071{letter-spacing:0.007080px;}
.lsa_c00071{letter-spacing:0.035400px;}
.ls22_c00071{letter-spacing:0.049560px;}
.ls1c_c00071{letter-spacing:0.063720px;}
.ls2f_c00071{letter-spacing:0.077880px;}
.ls4e_c00071{letter-spacing:0.092040px;}
.ls5e_c00071{letter-spacing:0.099120px;}
.ls13_c00071{letter-spacing:0.113280px;}
.ls40_c00071{letter-spacing:0.155760px;}
.ls47_c00071{letter-spacing:0.169920px;}
.ls43_c00071{letter-spacing:0.177000px;}
.ls3f_c00071{letter-spacing:0.198240px;}
.ls87_c00071{letter-spacing:0.219480px;}
.ls4c_c00071{letter-spacing:0.226560px;}
.ls27_c00071{letter-spacing:0.233640px;}
.ls2b_c00071{letter-spacing:0.240720px;}
.ls3b_c00071{letter-spacing:0.247800px;}
.ls34_c00071{letter-spacing:0.254880px;}
.ls4b_c00071{letter-spacing:0.261960px;}
.ls16_c00071{letter-spacing:0.276120px;}
.ls1f_c00071{letter-spacing:0.290280px;}
.ls1e_c00071{letter-spacing:0.297360px;}
.ls2c_c00071{letter-spacing:0.304440px;}
.ls19_c00071{letter-spacing:0.311520px;}
.ls44_c00071{letter-spacing:0.318600px;}
.ls32_c00071{letter-spacing:0.325680px;}
.ls3_c00071{letter-spacing:0.332760px;}
.ls71_c00071{letter-spacing:0.339840px;}
.ls15_c00071{letter-spacing:0.361080px;}
.ls24_c00071{letter-spacing:0.368160px;}
.ls1a_c00071{letter-spacing:0.375240px;}
.ls2_c00071{letter-spacing:0.382320px;}
.ls54_c00071{letter-spacing:0.396480px;}
.ls14_c00071{letter-spacing:0.403560px;}
.ls20_c00071{letter-spacing:0.424800px;}
.ls37_c00071{letter-spacing:0.438960px;}
.ls55_c00071{letter-spacing:0.446040px;}
.ls33_c00071{letter-spacing:0.453120px;}
.ls42_c00071{letter-spacing:0.460200px;}
.ls1_c00071{letter-spacing:0.467280px;}
.ls10_c00071{letter-spacing:0.474360px;}
.ls25_c00071{letter-spacing:0.481440px;}
.ls7d_c00071{letter-spacing:0.488520px;}
.ls4d_c00071{letter-spacing:0.495600px;}
.lsf_c00071{letter-spacing:0.502680px;}
.ls5f_c00071{letter-spacing:0.509760px;}
.ls21_c00071{letter-spacing:0.523920px;}
.ls1b_c00071{letter-spacing:0.531000px;}
.ls5_c00071{letter-spacing:0.538080px;}
.ls18_c00071{letter-spacing:0.545160px;}
.lsc_c00071{letter-spacing:0.552240px;}
.ls56_c00071{letter-spacing:0.559320px;}
.ls11_c00071{letter-spacing:0.566400px;}
.ls6_c00071{letter-spacing:0.573480px;}
.ls46_c00071{letter-spacing:0.580560px;}
.ls41_c00071{letter-spacing:0.587640px;}
.ls59_c00071{letter-spacing:0.601800px;}
.ls66_c00071{letter-spacing:0.608880px;}
.ls51_c00071{letter-spacing:0.623040px;}
.ls4a_c00071{letter-spacing:0.630120px;}
.ls29_c00071{letter-spacing:0.637200px;}
.ls8_c00071{letter-spacing:0.644280px;}
.ls5a_c00071{letter-spacing:0.658440px;}
.ls6f_c00071{letter-spacing:0.672600px;}
.ls7_c00071{letter-spacing:0.679680px;}
.lsd_c00071{letter-spacing:0.686760px;}
.ls2a_c00071{letter-spacing:0.693840px;}
.ls58_c00071{letter-spacing:0.708000px;}
.ls3d_c00071{letter-spacing:0.715080px;}
.ls28_c00071{letter-spacing:0.729240px;}
.ls5b_c00071{letter-spacing:0.736320px;}
.ls1d_c00071{letter-spacing:0.750480px;}
.ls48_c00071{letter-spacing:0.757560px;}
.ls50_c00071{letter-spacing:0.764640px;}
.ls26_c00071{letter-spacing:0.778800px;}
.ls3c_c00071{letter-spacing:0.800040px;}
.lse_c00071{letter-spacing:0.814200px;}
.ls53_c00071{letter-spacing:0.821280px;}
.ls23_c00071{letter-spacing:0.835440px;}
.ls3a_c00071{letter-spacing:0.856680px;}
.ls17_c00071{letter-spacing:0.870840px;}
.ls2d_c00071{letter-spacing:0.877920px;}
.lsb_c00071{letter-spacing:0.906240px;}
.ls52_c00071{letter-spacing:0.934560px;}
.ls12_c00071{letter-spacing:0.969960px;}
.ls3e_c00071{letter-spacing:0.991200px;}
.ls49_c00071{letter-spacing:1.019520px;}
.ls57_c00071{letter-spacing:1.146960px;}
.ls5d_c00071{letter-spacing:1.154040px;}
.ls45_c00071{letter-spacing:1.182360px;}
.ls2e_c00071{letter-spacing:1.479720px;}
.ls4_c00071{letter-spacing:1.522200px;}
.ls30_c00071{letter-spacing:1.607160px;}
.ls39_c00071{letter-spacing:1.614240px;}
.ls38_c00071{letter-spacing:2.088600px;}
.ls9_c00071{letter-spacing:2.315160px;}
.ls61_c00071{letter-spacing:2.512620px;}
.ls4f_c00071{letter-spacing:2.761200px;}
.ls31_c00071{letter-spacing:2.810760px;}
.ls0_c00071{letter-spacing:2.918700px;}
.ls36_c00071{letter-spacing:3.044400px;}
.ls35_c00071{letter-spacing:3.348840px;}
.ls7c_c00071{letter-spacing:3.419640px;}
.ls7b_c00071{letter-spacing:3.540000px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{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__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00071{word-spacing:0.000000px;}
._0_c00071{margin-left:-4.145400px;}
._18_c00071{margin-left:-2.683320px;}
._19_c00071{margin-left:-1.472640px;}
._1c_c00071{width:1.331040px;}
._11_c00071{width:2.357640px;}
._10_c00071{width:4.155960px;}
._f_c00071{width:5.487000px;}
._4_c00071{width:6.903000px;}
._3_c00071{width:8.878320px;}
._1_c00071{width:10.053600px;}
._7_c00071{width:11.292600px;}
._2_c00071{width:12.991800px;}
._6_c00071{width:14.160000px;}
._5_c00071{width:16.036200px;}
._17_c00071{width:17.784960px;}
._8_c00071{width:18.839880px;}
._12_c00071{width:21.997560px;}
._15_c00071{width:23.031240px;}
._13_c00071{width:24.390600px;}
._14_c00071{width:25.891560px;}
._1a_c00071{width:26.946480px;}
._16_c00071{width:28.270440px;}
._1b_c00071{width:29.374920px;}
._d_c00071{width:36.405360px;}
._c_c00071{width:37.573560px;}
._9_c00071{width:38.642640px;}
._b_c00071{width:40.171920px;}
._e_c00071{width:41.715360px;}
._a_c00071{width:92.677200px;}
.fc0_c00071{color:transparent;}
.fs2_c00071{font-size:67.800000px;}
.fs1_c00071{font-size:70.800000px;}
.fs0_c00071{font-size:84.600000px;}
.y0_c00071{bottom:0.000000px;}
.y1e_c00071{bottom:119.525100px;}
.y1d_c00071{bottom:150.128400px;}
.y1c_c00071{bottom:180.360000px;}
.y1b_c00071{bottom:241.968600px;}
.y1a_c00071{bottom:272.925900px;}
.y19_c00071{bottom:333.743100px;}
.y18_c00071{bottom:365.072100px;}
.y17_c00071{bottom:395.303700px;}
.y16_c00071{bottom:426.615000px;}
.y15_c00071{bottom:457.560000px;}
.y14_c00071{bottom:518.786400px;}
.y13_c00071{bottom:550.097700px;}
.y12_c00071{bottom:581.057700px;}
.y11_c00071{bottom:612.015000px;}
.y10_c00071{bottom:673.200000px;}
.yf_c00071{bottom:673.205400px;}
.ye_c00071{bottom:735.137700px;}
.yd_c00071{bottom:766.095000px;}
.yc_c00071{bottom:766.102500px;}
.yb_c00071{bottom:796.705800px;}
.ya_c00071{bottom:827.663100px;}
.y9_c00071{bottom:858.974400px;}
.y7_c00071{bottom:889.558800px;}
.y8_c00071{bottom:889.560000px;}
.y6_c00071{bottom:920.179800px;}
.y5_c00071{bottom:950.765400px;}
.y4_c00071{bottom:981.722700px;}
.y3_c00071{bottom:1012.697700px;}
.y2_c00071{bottom:1043.655000px;}
.y1_c00071{bottom:1112.055000px;}
.h3_c00071{height:69.486328px;}
.h2_c00071{height:83.030273px;}
.h1_c00071{height:1263.000000px;}
.h0_c00071{height:1263.240000px;}
.w1_c00071{width:892.500000px;}
.w0_c00071{width:892.800000px;}
.x0_c00071{left:0.000000px;}
.x6_c00071{left:126.864000px;}
.x1_c00071{left:127.875000px;}
.x2_c00071{left:148.815000px;}
.x9_c00071{left:154.620000px;}
.x3_c00071{left:191.775000px;}
.xc_c00071{left:233.159100px;}
.xa_c00071{left:305.190000px;}
.xb_c00071{left:429.030000px;}
.x4_c00071{left:512.070000px;}
.x5_c00071{left:528.300000px;}
.x7_c00071{left:716.235000px;}
.x8_c00071{left:740.370000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls60_c00071{letter-spacing:-2.632000pt;}
.ls70_c00071{letter-spacing:-2.202667pt;}
.ls77_c00071{letter-spacing:-1.718080pt;}
.ls69_c00071{letter-spacing:-1.176853pt;}
.ls7a_c00071{letter-spacing:-1.139093pt;}
.ls88_c00071{letter-spacing:-1.095040pt;}
.ls6a_c00071{letter-spacing:-1.013227pt;}
.ls83_c00071{letter-spacing:-0.925120pt;}
.ls63_c00071{letter-spacing:-0.849600pt;}
.ls67_c00071{letter-spacing:-0.830720pt;}
.ls76_c00071{letter-spacing:-0.641920pt;}
.ls68_c00071{letter-spacing:-0.547520pt;}
.ls6c_c00071{letter-spacing:-0.541227pt;}
.ls80_c00071{letter-spacing:-0.497173pt;}
.ls89_c00071{letter-spacing:-0.465707pt;}
.ls6e_c00071{letter-spacing:-0.371307pt;}
.ls8a_c00071{letter-spacing:-0.308373pt;}
.ls8c_c00071{letter-spacing:-0.302080pt;}
.ls72_c00071{letter-spacing:-0.283200pt;}
.ls64_c00071{letter-spacing:-0.276907pt;}
.ls6d_c00071{letter-spacing:-0.270613pt;}
.ls8d_c00071{letter-spacing:-0.258027pt;}
.ls81_c00071{letter-spacing:-0.195093pt;}
.ls85_c00071{letter-spacing:-0.151040pt;}
.ls8b_c00071{letter-spacing:-0.144747pt;}
.ls82_c00071{letter-spacing:-0.125867pt;}
.ls84_c00071{letter-spacing:-0.094400pt;}
.ls75_c00071{letter-spacing:-0.088107pt;}
.ls7e_c00071{letter-spacing:-0.081813pt;}
.ls86_c00071{letter-spacing:-0.075520pt;}
.ls62_c00071{letter-spacing:-0.062933pt;}
.ls6b_c00071{letter-spacing:-0.056640pt;}
.ls74_c00071{letter-spacing:-0.050347pt;}
.ls78_c00071{letter-spacing:-0.037760pt;}
.ls79_c00071{letter-spacing:-0.018880pt;}
.ls7f_c00071{letter-spacing:-0.012587pt;}
.ls73_c00071{letter-spacing:-0.006293pt;}
.ls65_c00071{letter-spacing:0.000000pt;}
.ls5c_c00071{letter-spacing:0.006293pt;}
.lsa_c00071{letter-spacing:0.031467pt;}
.ls22_c00071{letter-spacing:0.044053pt;}
.ls1c_c00071{letter-spacing:0.056640pt;}
.ls2f_c00071{letter-spacing:0.069227pt;}
.ls4e_c00071{letter-spacing:0.081813pt;}
.ls5e_c00071{letter-spacing:0.088107pt;}
.ls13_c00071{letter-spacing:0.100693pt;}
.ls40_c00071{letter-spacing:0.138453pt;}
.ls47_c00071{letter-spacing:0.151040pt;}
.ls43_c00071{letter-spacing:0.157333pt;}
.ls3f_c00071{letter-spacing:0.176213pt;}
.ls87_c00071{letter-spacing:0.195093pt;}
.ls4c_c00071{letter-spacing:0.201387pt;}
.ls27_c00071{letter-spacing:0.207680pt;}
.ls2b_c00071{letter-spacing:0.213973pt;}
.ls3b_c00071{letter-spacing:0.220267pt;}
.ls34_c00071{letter-spacing:0.226560pt;}
.ls4b_c00071{letter-spacing:0.232853pt;}
.ls16_c00071{letter-spacing:0.245440pt;}
.ls1f_c00071{letter-spacing:0.258027pt;}
.ls1e_c00071{letter-spacing:0.264320pt;}
.ls2c_c00071{letter-spacing:0.270613pt;}
.ls19_c00071{letter-spacing:0.276907pt;}
.ls44_c00071{letter-spacing:0.283200pt;}
.ls32_c00071{letter-spacing:0.289493pt;}
.ls3_c00071{letter-spacing:0.295787pt;}
.ls71_c00071{letter-spacing:0.302080pt;}
.ls15_c00071{letter-spacing:0.320960pt;}
.ls24_c00071{letter-spacing:0.327253pt;}
.ls1a_c00071{letter-spacing:0.333547pt;}
.ls2_c00071{letter-spacing:0.339840pt;}
.ls54_c00071{letter-spacing:0.352427pt;}
.ls14_c00071{letter-spacing:0.358720pt;}
.ls20_c00071{letter-spacing:0.377600pt;}
.ls37_c00071{letter-spacing:0.390187pt;}
.ls55_c00071{letter-spacing:0.396480pt;}
.ls33_c00071{letter-spacing:0.402773pt;}
.ls42_c00071{letter-spacing:0.409067pt;}
.ls1_c00071{letter-spacing:0.415360pt;}
.ls10_c00071{letter-spacing:0.421653pt;}
.ls25_c00071{letter-spacing:0.427947pt;}
.ls7d_c00071{letter-spacing:0.434240pt;}
.ls4d_c00071{letter-spacing:0.440533pt;}
.lsf_c00071{letter-spacing:0.446827pt;}
.ls5f_c00071{letter-spacing:0.453120pt;}
.ls21_c00071{letter-spacing:0.465707pt;}
.ls1b_c00071{letter-spacing:0.472000pt;}
.ls5_c00071{letter-spacing:0.478293pt;}
.ls18_c00071{letter-spacing:0.484587pt;}
.lsc_c00071{letter-spacing:0.490880pt;}
.ls56_c00071{letter-spacing:0.497173pt;}
.ls11_c00071{letter-spacing:0.503467pt;}
.ls6_c00071{letter-spacing:0.509760pt;}
.ls46_c00071{letter-spacing:0.516053pt;}
.ls41_c00071{letter-spacing:0.522347pt;}
.ls59_c00071{letter-spacing:0.534933pt;}
.ls66_c00071{letter-spacing:0.541227pt;}
.ls51_c00071{letter-spacing:0.553813pt;}
.ls4a_c00071{letter-spacing:0.560107pt;}
.ls29_c00071{letter-spacing:0.566400pt;}
.ls8_c00071{letter-spacing:0.572693pt;}
.ls5a_c00071{letter-spacing:0.585280pt;}
.ls6f_c00071{letter-spacing:0.597867pt;}
.ls7_c00071{letter-spacing:0.604160pt;}
.lsd_c00071{letter-spacing:0.610453pt;}
.ls2a_c00071{letter-spacing:0.616747pt;}
.ls58_c00071{letter-spacing:0.629333pt;}
.ls3d_c00071{letter-spacing:0.635627pt;}
.ls28_c00071{letter-spacing:0.648213pt;}
.ls5b_c00071{letter-spacing:0.654507pt;}
.ls1d_c00071{letter-spacing:0.667093pt;}
.ls48_c00071{letter-spacing:0.673387pt;}
.ls50_c00071{letter-spacing:0.679680pt;}
.ls26_c00071{letter-spacing:0.692267pt;}
.ls3c_c00071{letter-spacing:0.711147pt;}
.lse_c00071{letter-spacing:0.723733pt;}
.ls53_c00071{letter-spacing:0.730027pt;}
.ls23_c00071{letter-spacing:0.742613pt;}
.ls3a_c00071{letter-spacing:0.761493pt;}
.ls17_c00071{letter-spacing:0.774080pt;}
.ls2d_c00071{letter-spacing:0.780373pt;}
.lsb_c00071{letter-spacing:0.805547pt;}
.ls52_c00071{letter-spacing:0.830720pt;}
.ls12_c00071{letter-spacing:0.862187pt;}
.ls3e_c00071{letter-spacing:0.881067pt;}
.ls49_c00071{letter-spacing:0.906240pt;}
.ls57_c00071{letter-spacing:1.019520pt;}
.ls5d_c00071{letter-spacing:1.025813pt;}
.ls45_c00071{letter-spacing:1.050987pt;}
.ls2e_c00071{letter-spacing:1.315307pt;}
.ls4_c00071{letter-spacing:1.353067pt;}
.ls30_c00071{letter-spacing:1.428587pt;}
.ls39_c00071{letter-spacing:1.434880pt;}
.ls38_c00071{letter-spacing:1.856533pt;}
.ls9_c00071{letter-spacing:2.057920pt;}
.ls61_c00071{letter-spacing:2.233440pt;}
.ls4f_c00071{letter-spacing:2.454400pt;}
.ls31_c00071{letter-spacing:2.498453pt;}
.ls0_c00071{letter-spacing:2.594400pt;}
.ls36_c00071{letter-spacing:2.706133pt;}
.ls35_c00071{letter-spacing:2.976747pt;}
.ls7c_c00071{letter-spacing:3.039680pt;}
.ls7b_c00071{letter-spacing:3.146667pt;}
.ws0_c00071{word-spacing:0.000000pt;}
._0_c00071{margin-left:-3.684800pt;}
._18_c00071{margin-left:-2.385173pt;}
._19_c00071{margin-left:-1.309013pt;}
._1c_c00071{width:1.183147pt;}
._11_c00071{width:2.095680pt;}
._10_c00071{width:3.694187pt;}
._f_c00071{width:4.877333pt;}
._4_c00071{width:6.136000pt;}
._3_c00071{width:7.891840pt;}
._1_c00071{width:8.936533pt;}
._7_c00071{width:10.037867pt;}
._2_c00071{width:11.548267pt;}
._6_c00071{width:12.586667pt;}
._5_c00071{width:14.254400pt;}
._17_c00071{width:15.808853pt;}
._8_c00071{width:16.746560pt;}
._12_c00071{width:19.553387pt;}
._15_c00071{width:20.472213pt;}
._13_c00071{width:21.680533pt;}
._14_c00071{width:23.014720pt;}
._1a_c00071{width:23.952427pt;}
._16_c00071{width:25.129280pt;}
._1b_c00071{width:26.111040pt;}
._d_c00071{width:32.360320pt;}
._c_c00071{width:33.398720pt;}
._9_c00071{width:34.349013pt;}
._b_c00071{width:35.708373pt;}
._e_c00071{width:37.080320pt;}
._a_c00071{width:82.379733pt;}
.fs2_c00071{font-size:60.266667pt;}
.fs1_c00071{font-size:62.933333pt;}
.fs0_c00071{font-size:75.200000pt;}
.y0_c00071{bottom:0.000000pt;}
.y1e_c00071{bottom:106.244533pt;}
.y1d_c00071{bottom:133.447467pt;}
.y1c_c00071{bottom:160.320000pt;}
.y1b_c00071{bottom:215.083200pt;}
.y1a_c00071{bottom:242.600800pt;}
.y19_c00071{bottom:296.660533pt;}
.y18_c00071{bottom:324.508533pt;}
.y17_c00071{bottom:351.381067pt;}
.y16_c00071{bottom:379.213333pt;}
.y15_c00071{bottom:406.720000pt;}
.y14_c00071{bottom:461.143467pt;}
.y13_c00071{bottom:488.975733pt;}
.y12_c00071{bottom:516.495733pt;}
.y11_c00071{bottom:544.013333pt;}
.y10_c00071{bottom:598.400000pt;}
.yf_c00071{bottom:598.404800pt;}
.ye_c00071{bottom:653.455733pt;}
.yd_c00071{bottom:680.973333pt;}
.yc_c00071{bottom:680.980000pt;}
.yb_c00071{bottom:708.182933pt;}
.ya_c00071{bottom:735.700533pt;}
.y9_c00071{bottom:763.532800pt;}
.y7_c00071{bottom:790.718933pt;}
.y8_c00071{bottom:790.720000pt;}
.y6_c00071{bottom:817.937600pt;}
.y5_c00071{bottom:845.124800pt;}
.y4_c00071{bottom:872.642400pt;}
.y3_c00071{bottom:900.175733pt;}
.y2_c00071{bottom:927.693333pt;}
.y1_c00071{bottom:988.493333pt;}
.h3_c00071{height:61.765625pt;}
.h2_c00071{height:73.804688pt;}
.h1_c00071{height:1122.666667pt;}
.h0_c00071{height:1122.880000pt;}
.w1_c00071{width:793.333333pt;}
.w0_c00071{width:793.600000pt;}
.x0_c00071{left:0.000000pt;}
.x6_c00071{left:112.768000pt;}
.x1_c00071{left:113.666667pt;}
.x2_c00071{left:132.280000pt;}
.x9_c00071{left:137.440000pt;}
.x3_c00071{left:170.466667pt;}
.xc_c00071{left:207.252533pt;}
.xa_c00071{left:271.280000pt;}
.xb_c00071{left:381.360000pt;}
.x4_c00071{left:455.173333pt;}
.x5_c00071{left:469.600000pt;}
.x7_c00071{left:636.653333pt;}
.x8_c00071{left:658.106667pt;}
}





/* 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_c00072 {
    display:none;
  }
  .loading-indicator_c00072.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00072 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_c00072 { 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_c00072" -> "#page-container .classname_c00072")
 */
.pf_c00072 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00072 { /* 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_c00072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00072 { /* 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_c00072 { /* 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_c00072 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00072 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00072 {overflow:visible;}
  }
}
.c_c00072 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00072 { /* 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_c00072:after { /* webkit #35443 */
  content: '';
}
.t_c00072:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00072 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 */
}
.__c00072 { /* 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_c00072 { /* info for Javascript */
  display:none;
}
.l_c00072 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00072 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00072 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00072: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_c00072 {
    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_c00072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00072.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_c00072 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00072;src:url('chunks/assets/font_f6daee5d5d0d99b141c10aff.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.284668;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_c00072;src:url('chunks/assets/font_a082fdd0d0165454c1e10fc9.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.284180;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_c00072;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;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;}
.m2_c00072{transform:matrix(0.234140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234140,0.000000,0.000000,0.250000,0,0);}
.m1_c00072{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m0_c00072{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);}
.v0_c00072{vertical-align:0.000000px;}
.ls3e_c00072{letter-spacing:-2.541000px;}
.ls5e_c00072{letter-spacing:-2.289000px;}
.ls2f_c00072{letter-spacing:-1.568160px;}
.ls37_c00072{letter-spacing:-1.147080px;}
.ls2b_c00072{letter-spacing:-1.132560px;}
.ls38_c00072{letter-spacing:-1.067220px;}
.ls47_c00072{letter-spacing:-0.980100px;}
.ls1c_c00072{letter-spacing:-0.791340px;}
.ls1a_c00072{letter-spacing:-0.762300px;}
.ls24_c00072{letter-spacing:-0.733260px;}
.ls3a_c00072{letter-spacing:-0.704220px;}
.ls33_c00072{letter-spacing:-0.696960px;}
.ls5d_c00072{letter-spacing:-0.667920px;}
.ls39_c00072{letter-spacing:-0.631620px;}
.ls53_c00072{letter-spacing:-0.617100px;}
.ls5c_c00072{letter-spacing:-0.602580px;}
.ls31_c00072{letter-spacing:-0.588060px;}
.ls2e_c00072{letter-spacing:-0.559020px;}
.ls34_c00072{letter-spacing:-0.544500px;}
.ls45_c00072{letter-spacing:-0.537240px;}
.ls36_c00072{letter-spacing:-0.522720px;}
.ls50_c00072{letter-spacing:-0.493680px;}
.ls4f_c00072{letter-spacing:-0.479160px;}
.ls59_c00072{letter-spacing:-0.450120px;}
.ls4c_c00072{letter-spacing:-0.435600px;}
.ls19_c00072{letter-spacing:-0.428340px;}
.ls41_c00072{letter-spacing:-0.421260px;}
.ls28_c00072{letter-spacing:-0.421080px;}
.ls17_c00072{letter-spacing:-0.413820px;}
.ls3f_c00072{letter-spacing:-0.370260px;}
.ls3c_c00072{letter-spacing:-0.341220px;}
.ls2d_c00072{letter-spacing:-0.333960px;}
.ls1e_c00072{letter-spacing:-0.312180px;}
.ls44_c00072{letter-spacing:-0.304920px;}
.ls22_c00072{letter-spacing:-0.297660px;}
.ls29_c00072{letter-spacing:-0.290400px;}
.ls58_c00072{letter-spacing:-0.283140px;}
.ls32_c00072{letter-spacing:-0.275880px;}
.ls5a_c00072{letter-spacing:-0.261360px;}
.ls48_c00072{letter-spacing:-0.246840px;}
.ls40_c00072{letter-spacing:-0.239580px;}
.ls43_c00072{letter-spacing:-0.232320px;}
.ls27_c00072{letter-spacing:-0.225060px;}
.ls23_c00072{letter-spacing:-0.217800px;}
.ls35_c00072{letter-spacing:-0.203280px;}
.ls2a_c00072{letter-spacing:-0.196020px;}
.ls20_c00072{letter-spacing:-0.166980px;}
.ls49_c00072{letter-spacing:-0.152460px;}
.ls25_c00072{letter-spacing:-0.145200px;}
.ls3d_c00072{letter-spacing:-0.130680px;}
.ls4b_c00072{letter-spacing:-0.116160px;}
.ls2c_c00072{letter-spacing:-0.108900px;}
.ls57_c00072{letter-spacing:-0.101640px;}
.ls4d_c00072{letter-spacing:-0.094380px;}
.ls1f_c00072{letter-spacing:-0.087120px;}
.ls3b_c00072{letter-spacing:-0.079860px;}
.ls21_c00072{letter-spacing:-0.072600px;}
.ls1b_c00072{letter-spacing:-0.065340px;}
.ls46_c00072{letter-spacing:-0.050820px;}
.ls5b_c00072{letter-spacing:-0.043560px;}
.ls4e_c00072{letter-spacing:-0.036300px;}
.ls4a_c00072{letter-spacing:-0.021780px;}
.ls18_c00072{letter-spacing:-0.014520px;}
.ls1d_c00072{letter-spacing:0.000000px;}
.lsd_c00072{letter-spacing:0.007260px;}
.lsc_c00072{letter-spacing:0.021780px;}
.ls51_c00072{letter-spacing:0.050820px;}
.lse_c00072{letter-spacing:0.058080px;}
.ls10_c00072{letter-spacing:0.064260px;}
.ls4_c00072{letter-spacing:0.065340px;}
.ls2_c00072{letter-spacing:0.072600px;}
.ls26_c00072{letter-spacing:0.078540px;}
.ls52_c00072{letter-spacing:0.087120px;}
.ls30_c00072{letter-spacing:0.094380px;}
.lsa_c00072{letter-spacing:0.130680px;}
.ls8_c00072{letter-spacing:0.145200px;}
.ls56_c00072{letter-spacing:0.149940px;}
.ls9_c00072{letter-spacing:0.188760px;}
.ls55_c00072{letter-spacing:0.192780px;}
.ls5_c00072{letter-spacing:0.203280px;}
.lsb_c00072{letter-spacing:0.225060px;}
.ls3_c00072{letter-spacing:0.261360px;}
.ls54_c00072{letter-spacing:0.299880px;}
.ls13_c00072{letter-spacing:0.304920px;}
.ls14_c00072{letter-spacing:0.384780px;}
.ls11_c00072{letter-spacing:0.392700px;}
.lsf_c00072{letter-spacing:0.406980px;}
.ls12_c00072{letter-spacing:0.428340px;}
.ls6_c00072{letter-spacing:0.515460px;}
.ls42_c00072{letter-spacing:0.521220px;}
.ls15_c00072{letter-spacing:0.653400px;}
.ls7_c00072{letter-spacing:0.900240px;}
.ls16_c00072{letter-spacing:1.578960px;}
.ls1_c00072{letter-spacing:1.618980px;}
.ls0_c00072{letter-spacing:2.056320px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{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__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00072{word-spacing:0.000000px;}
._0_c00072{margin-left:-4.415520px;}
._14_c00072{margin-left:-2.855040px;}
._4_c00072{width:1.742400px;}
._d_c00072{width:3.457620px;}
._5_c00072{width:4.719000px;}
._15_c00072{width:6.337980px;}
._13_c00072{width:7.584840px;}
._3_c00072{width:9.742920px;}
._e_c00072{width:11.488260px;}
._12_c00072{width:12.589980px;}
._1_c00072{width:13.757700px;}
._2_c00072{width:15.071760px;}
._7_c00072{width:17.104560px;}
._6_c00072{width:19.427760px;}
._16_c00072{width:29.010960px;}
._17_c00072{width:31.175700px;}
._f_c00072{width:32.205360px;}
._18_c00072{width:33.500880px;}
._10_c00072{width:35.291880px;}
._11_c00072{width:36.721080px;}
._19_c00072{width:40.409160px;}
._1c_c00072{width:42.211740px;}
._1d_c00072{width:43.560000px;}
._1b_c00072{width:44.823240px;}
._1a_c00072{width:47.064480px;}
._1e_c00072{width:48.999840px;}
._8_c00072{width:57.499200px;}
._9_c00072{width:59.590080px;}
._b_c00072{width:60.933180px;}
._c_c00072{width:62.262000px;}
._a_c00072{width:64.730160px;}
.fc0_c00072{color:transparent;}
.fs0_c00072{font-size:61.200000px;}
.fs4_c00072{font-size:65.400000px;}
.fs3_c00072{font-size:67.200000px;}
.fs2_c00072{font-size:71.400000px;}
.fs1_c00072{font-size:72.600000px;}
.y0_c00072{bottom:0.000000px;}
.y1b_c00072{bottom:65.160006px;}
.y1a_c00072{bottom:188.631606px;}
.y19_c00072{bottom:250.214556px;}
.y18_c00072{bottom:312.832056px;}
.y17_c00072{bottom:343.088106px;}
.y16_c00072{bottom:374.415006px;}
.y15_c00072{bottom:436.320006px;}
.y14_c00072{bottom:467.285256px;}
.y13_c00072{bottom:498.255006px;}
.y12_c00072{bottom:529.210206px;}
.y10_c00072{bottom:590.760306px;}
.y11_c00072{bottom:590.775006px;}
.yf_c00072{bottom:622.087206px;}
.ye_c00072{bottom:653.051106px;}
.yd_c00072{bottom:684.014106px;}
.yc_c00072{bottom:714.615006px;}
.yb_c00072{bottom:776.527206px;}
.y9_c00072{bottom:838.451106px;}
.ya_c00072{bottom:838.455006px;}
.y8_c00072{bottom:869.406306px;}
.y7_c00072{bottom:900.352056px;}
.y6_c00072{bottom:931.315956px;}
.y5_c00072{bottom:961.935006px;}
.y4_c00072{bottom:1023.831306px;}
.y3_c00072{bottom:1085.414256px;}
.y2_c00072{bottom:1116.360006px;}
.y1_c00072{bottom:1192.680006px;}
.h2_c00072{height:60.064453px;}
.h7_c00072{height:64.186523px;}
.h6_c00072{height:70.066500px;}
.h3_c00072{height:71.252930px;}
.h5_c00072{height:71.256530px;}
.h4_c00072{height:71.287730px;}
.h1_c00072{height:1263.000000px;}
.h0_c00072{height:1263.240006px;}
.w1_c00072{width:892.500000px;}
.w0_c00072{width:892.799998px;}
.x0_c00072{left:0.000000px;}
.x10_c00072{left:121.833748px;}
.xa_c00072{left:123.296849px;}
.x4_c00072{left:125.080948px;}
.x1_c00072{left:126.554999px;}
.xf_c00072{left:187.019999px;}
.x7_c00072{left:188.459998px;}
.x3_c00072{left:189.539998px;}
.xb_c00072{left:214.034999px;}
.xe_c00072{left:229.466698px;}
.xd_c00072{left:230.675999px;}
.x2_c00072{left:232.469398px;}
.xc_c00072{left:235.394999px;}
.x5_c00072{left:416.354998px;}
.x11_c00072{left:429.284998px;}
.x6_c00072{left:437.579998px;}
.x8_c00072{left:654.674999px;}
.x9_c00072{left:684.149999px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls3e_c00072{letter-spacing:-2.258667pt;}
.ls5e_c00072{letter-spacing:-2.034667pt;}
.ls2f_c00072{letter-spacing:-1.393920pt;}
.ls37_c00072{letter-spacing:-1.019627pt;}
.ls2b_c00072{letter-spacing:-1.006720pt;}
.ls38_c00072{letter-spacing:-0.948640pt;}
.ls47_c00072{letter-spacing:-0.871200pt;}
.ls1c_c00072{letter-spacing:-0.703413pt;}
.ls1a_c00072{letter-spacing:-0.677600pt;}
.ls24_c00072{letter-spacing:-0.651787pt;}
.ls3a_c00072{letter-spacing:-0.625973pt;}
.ls33_c00072{letter-spacing:-0.619520pt;}
.ls5d_c00072{letter-spacing:-0.593707pt;}
.ls39_c00072{letter-spacing:-0.561440pt;}
.ls53_c00072{letter-spacing:-0.548533pt;}
.ls5c_c00072{letter-spacing:-0.535627pt;}
.ls31_c00072{letter-spacing:-0.522720pt;}
.ls2e_c00072{letter-spacing:-0.496907pt;}
.ls34_c00072{letter-spacing:-0.484000pt;}
.ls45_c00072{letter-spacing:-0.477547pt;}
.ls36_c00072{letter-spacing:-0.464640pt;}
.ls50_c00072{letter-spacing:-0.438827pt;}
.ls4f_c00072{letter-spacing:-0.425920pt;}
.ls59_c00072{letter-spacing:-0.400107pt;}
.ls4c_c00072{letter-spacing:-0.387200pt;}
.ls19_c00072{letter-spacing:-0.380747pt;}
.ls41_c00072{letter-spacing:-0.374453pt;}
.ls28_c00072{letter-spacing:-0.374293pt;}
.ls17_c00072{letter-spacing:-0.367840pt;}
.ls3f_c00072{letter-spacing:-0.329120pt;}
.ls3c_c00072{letter-spacing:-0.303307pt;}
.ls2d_c00072{letter-spacing:-0.296853pt;}
.ls1e_c00072{letter-spacing:-0.277493pt;}
.ls44_c00072{letter-spacing:-0.271040pt;}
.ls22_c00072{letter-spacing:-0.264587pt;}
.ls29_c00072{letter-spacing:-0.258133pt;}
.ls58_c00072{letter-spacing:-0.251680pt;}
.ls32_c00072{letter-spacing:-0.245227pt;}
.ls5a_c00072{letter-spacing:-0.232320pt;}
.ls48_c00072{letter-spacing:-0.219413pt;}
.ls40_c00072{letter-spacing:-0.212960pt;}
.ls43_c00072{letter-spacing:-0.206507pt;}
.ls27_c00072{letter-spacing:-0.200053pt;}
.ls23_c00072{letter-spacing:-0.193600pt;}
.ls35_c00072{letter-spacing:-0.180693pt;}
.ls2a_c00072{letter-spacing:-0.174240pt;}
.ls20_c00072{letter-spacing:-0.148427pt;}
.ls49_c00072{letter-spacing:-0.135520pt;}
.ls25_c00072{letter-spacing:-0.129067pt;}
.ls3d_c00072{letter-spacing:-0.116160pt;}
.ls4b_c00072{letter-spacing:-0.103253pt;}
.ls2c_c00072{letter-spacing:-0.096800pt;}
.ls57_c00072{letter-spacing:-0.090347pt;}
.ls4d_c00072{letter-spacing:-0.083893pt;}
.ls1f_c00072{letter-spacing:-0.077440pt;}
.ls3b_c00072{letter-spacing:-0.070987pt;}
.ls21_c00072{letter-spacing:-0.064533pt;}
.ls1b_c00072{letter-spacing:-0.058080pt;}
.ls46_c00072{letter-spacing:-0.045173pt;}
.ls5b_c00072{letter-spacing:-0.038720pt;}
.ls4e_c00072{letter-spacing:-0.032267pt;}
.ls4a_c00072{letter-spacing:-0.019360pt;}
.ls18_c00072{letter-spacing:-0.012907pt;}
.ls1d_c00072{letter-spacing:0.000000pt;}
.lsd_c00072{letter-spacing:0.006453pt;}
.lsc_c00072{letter-spacing:0.019360pt;}
.ls51_c00072{letter-spacing:0.045173pt;}
.lse_c00072{letter-spacing:0.051627pt;}
.ls10_c00072{letter-spacing:0.057120pt;}
.ls4_c00072{letter-spacing:0.058080pt;}
.ls2_c00072{letter-spacing:0.064533pt;}
.ls26_c00072{letter-spacing:0.069813pt;}
.ls52_c00072{letter-spacing:0.077440pt;}
.ls30_c00072{letter-spacing:0.083893pt;}
.lsa_c00072{letter-spacing:0.116160pt;}
.ls8_c00072{letter-spacing:0.129067pt;}
.ls56_c00072{letter-spacing:0.133280pt;}
.ls9_c00072{letter-spacing:0.167787pt;}
.ls55_c00072{letter-spacing:0.171360pt;}
.ls5_c00072{letter-spacing:0.180693pt;}
.lsb_c00072{letter-spacing:0.200053pt;}
.ls3_c00072{letter-spacing:0.232320pt;}
.ls54_c00072{letter-spacing:0.266560pt;}
.ls13_c00072{letter-spacing:0.271040pt;}
.ls14_c00072{letter-spacing:0.342027pt;}
.ls11_c00072{letter-spacing:0.349067pt;}
.lsf_c00072{letter-spacing:0.361760pt;}
.ls12_c00072{letter-spacing:0.380747pt;}
.ls6_c00072{letter-spacing:0.458187pt;}
.ls42_c00072{letter-spacing:0.463307pt;}
.ls15_c00072{letter-spacing:0.580800pt;}
.ls7_c00072{letter-spacing:0.800213pt;}
.ls16_c00072{letter-spacing:1.403520pt;}
.ls1_c00072{letter-spacing:1.439093pt;}
.ls0_c00072{letter-spacing:1.827840pt;}
.ws0_c00072{word-spacing:0.000000pt;}
._0_c00072{margin-left:-3.924907pt;}
._14_c00072{margin-left:-2.537813pt;}
._4_c00072{width:1.548800pt;}
._d_c00072{width:3.073440pt;}
._5_c00072{width:4.194667pt;}
._15_c00072{width:5.633760pt;}
._13_c00072{width:6.742080pt;}
._3_c00072{width:8.660373pt;}
._e_c00072{width:10.211787pt;}
._12_c00072{width:11.191093pt;}
._1_c00072{width:12.229067pt;}
._2_c00072{width:13.397120pt;}
._7_c00072{width:15.204053pt;}
._6_c00072{width:17.269120pt;}
._16_c00072{width:25.787520pt;}
._17_c00072{width:27.711733pt;}
._f_c00072{width:28.626987pt;}
._18_c00072{width:29.778560pt;}
._10_c00072{width:31.370560pt;}
._11_c00072{width:32.640960pt;}
._19_c00072{width:35.919253pt;}
._1c_c00072{width:37.521547pt;}
._1d_c00072{width:38.720000pt;}
._1b_c00072{width:39.842880pt;}
._1a_c00072{width:41.835093pt;}
._1e_c00072{width:43.555413pt;}
._8_c00072{width:51.110400pt;}
._9_c00072{width:52.968960pt;}
._b_c00072{width:54.162827pt;}
._c_c00072{width:55.344000pt;}
._a_c00072{width:57.537920pt;}
.fs0_c00072{font-size:54.400000pt;}
.fs4_c00072{font-size:58.133333pt;}
.fs3_c00072{font-size:59.733333pt;}
.fs2_c00072{font-size:63.466667pt;}
.fs1_c00072{font-size:64.533333pt;}
.y0_c00072{bottom:0.000000pt;}
.y1b_c00072{bottom:57.920005pt;}
.y1a_c00072{bottom:167.672539pt;}
.y19_c00072{bottom:222.412939pt;}
.y18_c00072{bottom:278.072939pt;}
.y17_c00072{bottom:304.967205pt;}
.y16_c00072{bottom:332.813339pt;}
.y15_c00072{bottom:387.840005pt;}
.y14_c00072{bottom:415.364672pt;}
.y13_c00072{bottom:442.893339pt;}
.y12_c00072{bottom:470.409072pt;}
.y10_c00072{bottom:525.120272pt;}
.y11_c00072{bottom:525.133339pt;}
.yf_c00072{bottom:552.966405pt;}
.ye_c00072{bottom:580.489872pt;}
.yd_c00072{bottom:608.012539pt;}
.yc_c00072{bottom:635.213339pt;}
.yb_c00072{bottom:690.246405pt;}
.y9_c00072{bottom:745.289872pt;}
.ya_c00072{bottom:745.293339pt;}
.y8_c00072{bottom:772.805605pt;}
.y7_c00072{bottom:800.312939pt;}
.y6_c00072{bottom:827.836405pt;}
.y5_c00072{bottom:855.053339pt;}
.y4_c00072{bottom:910.072272pt;}
.y3_c00072{bottom:964.812672pt;}
.y2_c00072{bottom:992.320005pt;}
.y1_c00072{bottom:1060.160005pt;}
.h2_c00072{height:53.390625pt;}
.h7_c00072{height:57.054688pt;}
.h6_c00072{height:62.281333pt;}
.h3_c00072{height:63.335938pt;}
.h5_c00072{height:63.339137pt;}
.h4_c00072{height:63.366871pt;}
.h1_c00072{height:1122.666667pt;}
.h0_c00072{height:1122.880005pt;}
.w1_c00072{width:793.333333pt;}
.w0_c00072{width:793.599999pt;}
.x0_c00072{left:0.000000pt;}
.x10_c00072{left:108.296665pt;}
.xa_c00072{left:109.597199pt;}
.x4_c00072{left:111.183065pt;}
.x1_c00072{left:112.493332pt;}
.xf_c00072{left:166.239999pt;}
.x7_c00072{left:167.519999pt;}
.x3_c00072{left:168.479999pt;}
.xb_c00072{left:190.253332pt;}
.xe_c00072{left:203.970399pt;}
.xd_c00072{left:205.045332pt;}
.x2_c00072{left:206.639465pt;}
.xc_c00072{left:209.239999pt;}
.x5_c00072{left:370.093332pt;}
.x11_c00072{left:381.586665pt;}
.x6_c00072{left:388.959999pt;}
.x8_c00072{left:581.933332pt;}
.x9_c00072{left:608.133332pt;}
}





/* 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_c00073 {
    display:none;
  }
  .loading-indicator_c00073.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00073 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_c00073 { 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_c00073" -> "#page-container .classname_c00073")
 */
.pf_c00073 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00073 { /* 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_c00073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00073 { /* 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_c00073 { /* 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_c00073 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00073 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00073 {overflow:visible;}
  }
}
.c_c00073 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00073 { /* 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_c00073:after { /* webkit #35443 */
  content: '';
}
.t_c00073:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00073 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 */
}
.__c00073 { /* 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_c00073 { /* info for Javascript */
  display:none;
}
.l_c00073 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00073 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00073 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00073: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_c00073 {
    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_c00073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00073.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_c00073 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00073;src:url('chunks/assets/font_081d7b0b8c1457184beb59f5.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.284668;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_c00073;src:url('chunks/assets/font_15666955d337aa9a01dcd312.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.284180;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_c00073{transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);}
.m1_c00073{transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);}
.m3_c00073{transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);}
.m4_c00073{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.m0_c00073{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);}
.v0_c00073{vertical-align:0.000000px;}
.ls37_c00073{letter-spacing:-2.520000px;}
.ls33_c00073{letter-spacing:-2.448000px;}
.ls43_c00073{letter-spacing:-2.426400px;}
.ls63_c00073{letter-spacing:-2.318400px;}
.ls7c_c00073{letter-spacing:-1.995000px;}
.ls70_c00073{letter-spacing:-1.936800px;}
.ls66_c00073{letter-spacing:-1.893600px;}
.ls68_c00073{letter-spacing:-1.785600px;}
.ls4b_c00073{letter-spacing:-1.670400px;}
.ls65_c00073{letter-spacing:-1.368000px;}
.ls45_c00073{letter-spacing:-1.353600px;}
.ls67_c00073{letter-spacing:-1.238400px;}
.ls69_c00073{letter-spacing:-1.216800px;}
.ls6a_c00073{letter-spacing:-1.202400px;}
.ls40_c00073{letter-spacing:-1.173600px;}
.ls21_c00073{letter-spacing:-1.065600px;}
.ls6d_c00073{letter-spacing:-1.008000px;}
.ls28_c00073{letter-spacing:-1.000800px;}
.ls27_c00073{letter-spacing:-0.986400px;}
.ls34_c00073{letter-spacing:-0.964800px;}
.ls30_c00073{letter-spacing:-0.936000px;}
.ls48_c00073{letter-spacing:-0.921600px;}
.ls74_c00073{letter-spacing:-0.864000px;}
.ls6b_c00073{letter-spacing:-0.842400px;}
.ls55_c00073{letter-spacing:-0.835200px;}
.ls44_c00073{letter-spacing:-0.820800px;}
.ls6e_c00073{letter-spacing:-0.813600px;}
.ls5a_c00073{letter-spacing:-0.784800px;}
.ls5f_c00073{letter-spacing:-0.777600px;}
.ls3a_c00073{letter-spacing:-0.770400px;}
.ls42_c00073{letter-spacing:-0.748800px;}
.ls47_c00073{letter-spacing:-0.727200px;}
.ls61_c00073{letter-spacing:-0.720000px;}
.ls71_c00073{letter-spacing:-0.698400px;}
.ls5d_c00073{letter-spacing:-0.684000px;}
.ls7b_c00073{letter-spacing:-0.662400px;}
.ls3d_c00073{letter-spacing:-0.655200px;}
.ls20_c00073{letter-spacing:-0.648000px;}
.ls50_c00073{letter-spacing:-0.633600px;}
.ls4e_c00073{letter-spacing:-0.626400px;}
.ls49_c00073{letter-spacing:-0.568800px;}
.ls60_c00073{letter-spacing:-0.547200px;}
.ls79_c00073{letter-spacing:-0.540000px;}
.ls38_c00073{letter-spacing:-0.532800px;}
.ls35_c00073{letter-spacing:-0.518400px;}
.ls75_c00073{letter-spacing:-0.504000px;}
.ls2f_c00073{letter-spacing:-0.460800px;}
.ls58_c00073{letter-spacing:-0.453600px;}
.ls51_c00073{letter-spacing:-0.446400px;}
.ls59_c00073{letter-spacing:-0.439200px;}
.ls4f_c00073{letter-spacing:-0.432000px;}
.ls7a_c00073{letter-spacing:-0.417600px;}
.ls3e_c00073{letter-spacing:-0.396000px;}
.ls29_c00073{letter-spacing:-0.381600px;}
.ls2a_c00073{letter-spacing:-0.374400px;}
.ls4d_c00073{letter-spacing:-0.367200px;}
.ls46_c00073{letter-spacing:-0.360000px;}
.ls57_c00073{letter-spacing:-0.338400px;}
.ls72_c00073{letter-spacing:-0.331200px;}
.ls2d_c00073{letter-spacing:-0.302400px;}
.ls4c_c00073{letter-spacing:-0.295200px;}
.ls24_c00073{letter-spacing:-0.288000px;}
.ls31_c00073{letter-spacing:-0.280800px;}
.ls4a_c00073{letter-spacing:-0.259200px;}
.ls3f_c00073{letter-spacing:-0.252000px;}
.ls64_c00073{letter-spacing:-0.244800px;}
.ls39_c00073{letter-spacing:-0.230400px;}
.ls62_c00073{letter-spacing:-0.216000px;}
.ls73_c00073{letter-spacing:-0.208800px;}
.ls5b_c00073{letter-spacing:-0.201600px;}
.ls77_c00073{letter-spacing:-0.187200px;}
.ls76_c00073{letter-spacing:-0.184080px;}
.ls6c_c00073{letter-spacing:-0.165600px;}
.ls53_c00073{letter-spacing:-0.158400px;}
.ls2e_c00073{letter-spacing:-0.144000px;}
.ls3b_c00073{letter-spacing:-0.129600px;}
.ls26_c00073{letter-spacing:-0.122400px;}
.ls6f_c00073{letter-spacing:-0.115200px;}
.ls41_c00073{letter-spacing:-0.108000px;}
.ls54_c00073{letter-spacing:-0.093600px;}
.ls2b_c00073{letter-spacing:-0.086400px;}
.ls1f_c00073{letter-spacing:-0.079200px;}
.ls3c_c00073{letter-spacing:-0.072000px;}
.ls56_c00073{letter-spacing:-0.064800px;}
.ls25_c00073{letter-spacing:-0.050400px;}
.ls52_c00073{letter-spacing:-0.043200px;}
.ls22_c00073{letter-spacing:-0.036000px;}
.ls5c_c00073{letter-spacing:-0.021600px;}
.ls78_c00073{letter-spacing:-0.014400px;}
.ls23_c00073{letter-spacing:0.000000px;}
.ls8_c00073{letter-spacing:0.007200px;}
.ls1b_c00073{letter-spacing:0.036000px;}
.ls5e_c00073{letter-spacing:0.042480px;}
.ls14_c00073{letter-spacing:0.043200px;}
.ls5_c00073{letter-spacing:0.050400px;}
.ls32_c00073{letter-spacing:0.057600px;}
.lse_c00073{letter-spacing:0.064800px;}
.ls1c_c00073{letter-spacing:0.072000px;}
.ls12_c00073{letter-spacing:0.079200px;}
.lsd_c00073{letter-spacing:0.086400px;}
.ls11_c00073{letter-spacing:0.100800px;}
.ls16_c00073{letter-spacing:0.122400px;}
.lsc_c00073{letter-spacing:0.129600px;}
.lsa_c00073{letter-spacing:0.187200px;}
.ls1d_c00073{letter-spacing:0.201600px;}
.ls6_c00073{letter-spacing:0.223200px;}
.ls2_c00073{letter-spacing:0.244800px;}
.lsb_c00073{letter-spacing:0.252000px;}
.ls15_c00073{letter-spacing:0.288000px;}
.ls10_c00073{letter-spacing:0.295200px;}
.lsf_c00073{letter-spacing:0.297360px;}
.ls2c_c00073{letter-spacing:0.316800px;}
.ls9_c00073{letter-spacing:0.324000px;}
.ls13_c00073{letter-spacing:0.374400px;}
.ls7_c00073{letter-spacing:0.424800px;}
.ls1_c00073{letter-spacing:0.439200px;}
.ls19_c00073{letter-spacing:0.518400px;}
.ls4_c00073{letter-spacing:0.540000px;}
.ls1a_c00073{letter-spacing:0.545160px;}
.ls17_c00073{letter-spacing:0.633600px;}
.ls36_c00073{letter-spacing:1.288800px;}
.ls3_c00073{letter-spacing:1.296000px;}
.ls1e_c00073{letter-spacing:1.836180px;}
.ls18_c00073{letter-spacing:2.167200px;}
.ls0_c00073{letter-spacing:2.242200px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{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__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00073{word-spacing:0.000000px;}
._0_c00073{margin-left:-4.666200px;}
._20_c00073{margin-left:-2.707200px;}
._f_c00073{margin-left:-1.656000px;}
._d_c00073{width:1.281600px;}
._e_c00073{width:2.649600px;}
._13_c00073{width:4.017600px;}
._1_c00073{width:5.716800px;}
._11_c00073{width:7.488000px;}
._4_c00073{width:9.144000px;}
._5_c00073{width:10.166400px;}
._2_c00073{width:11.844000px;}
._12_c00073{width:13.111200px;}
._10_c00073{width:14.572800px;}
._3_c00073{width:15.631200px;}
._19_c00073{width:16.718400px;}
._1a_c00073{width:20.044800px;}
._c_c00073{width:22.768800px;}
._a_c00073{width:23.947200px;}
._b_c00073{width:25.576800px;}
._6_c00073{width:27.727200px;}
._7_c00073{width:28.792800px;}
._25_c00073{width:30.644520px;}
._8_c00073{width:31.975200px;}
._1f_c00073{width:33.163200px;}
._1e_c00073{width:34.812000px;}
._9_c00073{width:37.440000px;}
._23_c00073{width:40.622400px;}
._21_c00073{width:41.688000px;}
._24_c00073{width:43.178400px;}
._22_c00073{width:47.779200px;}
._1c_c00073{width:49.730400px;}
._1b_c00073{width:51.235200px;}
._1d_c00073{width:55.728000px;}
._14_c00073{width:75.556800px;}
._18_c00073{width:84.168000px;}
._15_c00073{width:85.838400px;}
._17_c00073{width:86.947200px;}
._16_c00073{width:88.804800px;}
.fc0_c00073{color:transparent;}
.fs3_c00073{font-size:57.000000px;}
.fs0_c00073{font-size:60.600000px;}
.fs2_c00073{font-size:70.800000px;}
.fs1_c00073{font-size:72.000000px;}
.y0_c00073{bottom:0.000000px;}
.y20_c00073{bottom:68.775000px;}
.y1f_c00073{bottom:132.477000px;}
.y1e_c00073{bottom:163.077000px;}
.y1d_c00073{bottom:193.695000px;}
.y1c_c00073{bottom:224.637000px;}
.y1b_c00073{bottom:255.975000px;}
.y1a_c00073{bottom:286.935000px;}
.y19_c00073{bottom:317.517000px;}
.y18_c00073{bottom:348.135000px;}
.y17_c00073{bottom:409.338000px;}
.y16_c00073{bottom:440.280000px;}
.y15_c00073{bottom:471.258000px;}
.y13_c00073{bottom:502.197000px;}
.y14_c00073{bottom:502.200000px;}
.y12_c00073{bottom:563.037000px;}
.y11_c00073{bottom:595.095000px;}
.y10_c00073{bottom:625.695000px;}
.yf_c00073{bottom:656.655000px;}
.ye_c00073{bottom:718.197000px;}
.yd_c00073{bottom:779.775000px;}
.yc_c00073{bottom:779.778000px;}
.yb_c00073{bottom:810.357000px;}
.ya_c00073{bottom:841.695000px;}
.y9_c00073{bottom:872.655000px;}
.y8_c00073{bottom:934.560000px;}
.y7_c00073{bottom:995.400000px;}
.y5_c00073{bottom:1026.717000px;}
.y6_c00073{bottom:1026.720000px;}
.y4_c00073{bottom:1057.338000px;}
.y3_c00073{bottom:1087.560000px;}
.y2_c00073{bottom:1118.520000px;}
.y1_c00073{bottom:1193.775000px;}
.h5_c00073{height:55.942383px;}
.h2_c00073{height:59.475586px;}
.h3_c00073{height:70.664062px;}
.h4_c00073{height:70.676063px;}
.h1_c00073{height:1263.000000px;}
.h0_c00073{height:1263.240000px;}
.w1_c00073{width:892.500000px;}
.w0_c00073{width:892.800000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:126.930000px;}
.xb_c00073{left:127.962000px;}
.x2_c00073{left:180.540000px;}
.x10_c00073{left:191.700000px;}
.x8_c00073{left:217.185000px;}
.xa_c00073{left:234.285000px;}
.x9_c00073{left:235.995000px;}
.x5_c00073{left:255.885000px;}
.x3_c00073{left:371.625000px;}
.x4_c00073{left:391.155000px;}
.x11_c00073{left:421.035000px;}
.x13_c00073{left:431.820000px;}
.xc_c00073{left:435.045000px;}
.x6_c00073{left:439.395000px;}
.x12_c00073{left:444.795000px;}
.xd_c00073{left:460.965000px;}
.x7_c00073{left:463.125000px;}
.xe_c00073{left:524.355000px;}
.xf_c00073{left:545.580000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls37_c00073{letter-spacing:-2.240000pt;}
.ls33_c00073{letter-spacing:-2.176000pt;}
.ls43_c00073{letter-spacing:-2.156800pt;}
.ls63_c00073{letter-spacing:-2.060800pt;}
.ls7c_c00073{letter-spacing:-1.773333pt;}
.ls70_c00073{letter-spacing:-1.721600pt;}
.ls66_c00073{letter-spacing:-1.683200pt;}
.ls68_c00073{letter-spacing:-1.587200pt;}
.ls4b_c00073{letter-spacing:-1.484800pt;}
.ls65_c00073{letter-spacing:-1.216000pt;}
.ls45_c00073{letter-spacing:-1.203200pt;}
.ls67_c00073{letter-spacing:-1.100800pt;}
.ls69_c00073{letter-spacing:-1.081600pt;}
.ls6a_c00073{letter-spacing:-1.068800pt;}
.ls40_c00073{letter-spacing:-1.043200pt;}
.ls21_c00073{letter-spacing:-0.947200pt;}
.ls6d_c00073{letter-spacing:-0.896000pt;}
.ls28_c00073{letter-spacing:-0.889600pt;}
.ls27_c00073{letter-spacing:-0.876800pt;}
.ls34_c00073{letter-spacing:-0.857600pt;}
.ls30_c00073{letter-spacing:-0.832000pt;}
.ls48_c00073{letter-spacing:-0.819200pt;}
.ls74_c00073{letter-spacing:-0.768000pt;}
.ls6b_c00073{letter-spacing:-0.748800pt;}
.ls55_c00073{letter-spacing:-0.742400pt;}
.ls44_c00073{letter-spacing:-0.729600pt;}
.ls6e_c00073{letter-spacing:-0.723200pt;}
.ls5a_c00073{letter-spacing:-0.697600pt;}
.ls5f_c00073{letter-spacing:-0.691200pt;}
.ls3a_c00073{letter-spacing:-0.684800pt;}
.ls42_c00073{letter-spacing:-0.665600pt;}
.ls47_c00073{letter-spacing:-0.646400pt;}
.ls61_c00073{letter-spacing:-0.640000pt;}
.ls71_c00073{letter-spacing:-0.620800pt;}
.ls5d_c00073{letter-spacing:-0.608000pt;}
.ls7b_c00073{letter-spacing:-0.588800pt;}
.ls3d_c00073{letter-spacing:-0.582400pt;}
.ls20_c00073{letter-spacing:-0.576000pt;}
.ls50_c00073{letter-spacing:-0.563200pt;}
.ls4e_c00073{letter-spacing:-0.556800pt;}
.ls49_c00073{letter-spacing:-0.505600pt;}
.ls60_c00073{letter-spacing:-0.486400pt;}
.ls79_c00073{letter-spacing:-0.480000pt;}
.ls38_c00073{letter-spacing:-0.473600pt;}
.ls35_c00073{letter-spacing:-0.460800pt;}
.ls75_c00073{letter-spacing:-0.448000pt;}
.ls2f_c00073{letter-spacing:-0.409600pt;}
.ls58_c00073{letter-spacing:-0.403200pt;}
.ls51_c00073{letter-spacing:-0.396800pt;}
.ls59_c00073{letter-spacing:-0.390400pt;}
.ls4f_c00073{letter-spacing:-0.384000pt;}
.ls7a_c00073{letter-spacing:-0.371200pt;}
.ls3e_c00073{letter-spacing:-0.352000pt;}
.ls29_c00073{letter-spacing:-0.339200pt;}
.ls2a_c00073{letter-spacing:-0.332800pt;}
.ls4d_c00073{letter-spacing:-0.326400pt;}
.ls46_c00073{letter-spacing:-0.320000pt;}
.ls57_c00073{letter-spacing:-0.300800pt;}
.ls72_c00073{letter-spacing:-0.294400pt;}
.ls2d_c00073{letter-spacing:-0.268800pt;}
.ls4c_c00073{letter-spacing:-0.262400pt;}
.ls24_c00073{letter-spacing:-0.256000pt;}
.ls31_c00073{letter-spacing:-0.249600pt;}
.ls4a_c00073{letter-spacing:-0.230400pt;}
.ls3f_c00073{letter-spacing:-0.224000pt;}
.ls64_c00073{letter-spacing:-0.217600pt;}
.ls39_c00073{letter-spacing:-0.204800pt;}
.ls62_c00073{letter-spacing:-0.192000pt;}
.ls73_c00073{letter-spacing:-0.185600pt;}
.ls5b_c00073{letter-spacing:-0.179200pt;}
.ls77_c00073{letter-spacing:-0.166400pt;}
.ls76_c00073{letter-spacing:-0.163627pt;}
.ls6c_c00073{letter-spacing:-0.147200pt;}
.ls53_c00073{letter-spacing:-0.140800pt;}
.ls2e_c00073{letter-spacing:-0.128000pt;}
.ls3b_c00073{letter-spacing:-0.115200pt;}
.ls26_c00073{letter-spacing:-0.108800pt;}
.ls6f_c00073{letter-spacing:-0.102400pt;}
.ls41_c00073{letter-spacing:-0.096000pt;}
.ls54_c00073{letter-spacing:-0.083200pt;}
.ls2b_c00073{letter-spacing:-0.076800pt;}
.ls1f_c00073{letter-spacing:-0.070400pt;}
.ls3c_c00073{letter-spacing:-0.064000pt;}
.ls56_c00073{letter-spacing:-0.057600pt;}
.ls25_c00073{letter-spacing:-0.044800pt;}
.ls52_c00073{letter-spacing:-0.038400pt;}
.ls22_c00073{letter-spacing:-0.032000pt;}
.ls5c_c00073{letter-spacing:-0.019200pt;}
.ls78_c00073{letter-spacing:-0.012800pt;}
.ls23_c00073{letter-spacing:0.000000pt;}
.ls8_c00073{letter-spacing:0.006400pt;}
.ls1b_c00073{letter-spacing:0.032000pt;}
.ls5e_c00073{letter-spacing:0.037760pt;}
.ls14_c00073{letter-spacing:0.038400pt;}
.ls5_c00073{letter-spacing:0.044800pt;}
.ls32_c00073{letter-spacing:0.051200pt;}
.lse_c00073{letter-spacing:0.057600pt;}
.ls1c_c00073{letter-spacing:0.064000pt;}
.ls12_c00073{letter-spacing:0.070400pt;}
.lsd_c00073{letter-spacing:0.076800pt;}
.ls11_c00073{letter-spacing:0.089600pt;}
.ls16_c00073{letter-spacing:0.108800pt;}
.lsc_c00073{letter-spacing:0.115200pt;}
.lsa_c00073{letter-spacing:0.166400pt;}
.ls1d_c00073{letter-spacing:0.179200pt;}
.ls6_c00073{letter-spacing:0.198400pt;}
.ls2_c00073{letter-spacing:0.217600pt;}
.lsb_c00073{letter-spacing:0.224000pt;}
.ls15_c00073{letter-spacing:0.256000pt;}
.ls10_c00073{letter-spacing:0.262400pt;}
.lsf_c00073{letter-spacing:0.264320pt;}
.ls2c_c00073{letter-spacing:0.281600pt;}
.ls9_c00073{letter-spacing:0.288000pt;}
.ls13_c00073{letter-spacing:0.332800pt;}
.ls7_c00073{letter-spacing:0.377600pt;}
.ls1_c00073{letter-spacing:0.390400pt;}
.ls19_c00073{letter-spacing:0.460800pt;}
.ls4_c00073{letter-spacing:0.480000pt;}
.ls1a_c00073{letter-spacing:0.484587pt;}
.ls17_c00073{letter-spacing:0.563200pt;}
.ls36_c00073{letter-spacing:1.145600pt;}
.ls3_c00073{letter-spacing:1.152000pt;}
.ls1e_c00073{letter-spacing:1.632160pt;}
.ls18_c00073{letter-spacing:1.926400pt;}
.ls0_c00073{letter-spacing:1.993067pt;}
.ws0_c00073{word-spacing:0.000000pt;}
._0_c00073{margin-left:-4.147733pt;}
._20_c00073{margin-left:-2.406400pt;}
._f_c00073{margin-left:-1.472000pt;}
._d_c00073{width:1.139200pt;}
._e_c00073{width:2.355200pt;}
._13_c00073{width:3.571200pt;}
._1_c00073{width:5.081600pt;}
._11_c00073{width:6.656000pt;}
._4_c00073{width:8.128000pt;}
._5_c00073{width:9.036800pt;}
._2_c00073{width:10.528000pt;}
._12_c00073{width:11.654400pt;}
._10_c00073{width:12.953600pt;}
._3_c00073{width:13.894400pt;}
._19_c00073{width:14.860800pt;}
._1a_c00073{width:17.817600pt;}
._c_c00073{width:20.238933pt;}
._a_c00073{width:21.286400pt;}
._b_c00073{width:22.734933pt;}
._6_c00073{width:24.646400pt;}
._7_c00073{width:25.593600pt;}
._25_c00073{width:27.239573pt;}
._8_c00073{width:28.422400pt;}
._1f_c00073{width:29.478400pt;}
._1e_c00073{width:30.944000pt;}
._9_c00073{width:33.280000pt;}
._23_c00073{width:36.108800pt;}
._21_c00073{width:37.056000pt;}
._24_c00073{width:38.380800pt;}
._22_c00073{width:42.470400pt;}
._1c_c00073{width:44.204800pt;}
._1b_c00073{width:45.542400pt;}
._1d_c00073{width:49.536000pt;}
._14_c00073{width:67.161600pt;}
._18_c00073{width:74.816000pt;}
._15_c00073{width:76.300800pt;}
._17_c00073{width:77.286400pt;}
._16_c00073{width:78.937600pt;}
.fs3_c00073{font-size:50.666667pt;}
.fs0_c00073{font-size:53.866667pt;}
.fs2_c00073{font-size:62.933333pt;}
.fs1_c00073{font-size:64.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y20_c00073{bottom:61.133333pt;}
.y1f_c00073{bottom:117.757333pt;}
.y1e_c00073{bottom:144.957333pt;}
.y1d_c00073{bottom:172.173333pt;}
.y1c_c00073{bottom:199.677333pt;}
.y1b_c00073{bottom:227.533333pt;}
.y1a_c00073{bottom:255.053333pt;}
.y19_c00073{bottom:282.237333pt;}
.y18_c00073{bottom:309.453333pt;}
.y17_c00073{bottom:363.856000pt;}
.y16_c00073{bottom:391.360000pt;}
.y15_c00073{bottom:418.896000pt;}
.y13_c00073{bottom:446.397333pt;}
.y14_c00073{bottom:446.400000pt;}
.y12_c00073{bottom:500.477333pt;}
.y11_c00073{bottom:528.973333pt;}
.y10_c00073{bottom:556.173333pt;}
.yf_c00073{bottom:583.693333pt;}
.ye_c00073{bottom:638.397333pt;}
.yd_c00073{bottom:693.133333pt;}
.yc_c00073{bottom:693.136000pt;}
.yb_c00073{bottom:720.317333pt;}
.ya_c00073{bottom:748.173333pt;}
.y9_c00073{bottom:775.693333pt;}
.y8_c00073{bottom:830.720000pt;}
.y7_c00073{bottom:884.800000pt;}
.y5_c00073{bottom:912.637333pt;}
.y6_c00073{bottom:912.640000pt;}
.y4_c00073{bottom:939.856000pt;}
.y3_c00073{bottom:966.720000pt;}
.y2_c00073{bottom:994.240000pt;}
.y1_c00073{bottom:1061.133333pt;}
.h5_c00073{height:49.726562pt;}
.h2_c00073{height:52.867187pt;}
.h3_c00073{height:62.812500pt;}
.h4_c00073{height:62.823167pt;}
.h1_c00073{height:1122.666667pt;}
.h0_c00073{height:1122.880000pt;}
.w1_c00073{width:793.333333pt;}
.w0_c00073{width:793.600000pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:112.826667pt;}
.xb_c00073{left:113.744000pt;}
.x2_c00073{left:160.480000pt;}
.x10_c00073{left:170.400000pt;}
.x8_c00073{left:193.053333pt;}
.xa_c00073{left:208.253333pt;}
.x9_c00073{left:209.773333pt;}
.x5_c00073{left:227.453333pt;}
.x3_c00073{left:330.333333pt;}
.x4_c00073{left:347.693333pt;}
.x11_c00073{left:374.253333pt;}
.x13_c00073{left:383.840000pt;}
.xc_c00073{left:386.706667pt;}
.x6_c00073{left:390.573333pt;}
.x12_c00073{left:395.373333pt;}
.xd_c00073{left:409.746667pt;}
.x7_c00073{left:411.666667pt;}
.xe_c00073{left:466.093333pt;}
.xf_c00073{left:484.960000pt;}
}





/* 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_c00074 {
    display:none;
  }
  .loading-indicator_c00074.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00074 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_c00074 { 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_c00074" -> "#page-container .classname_c00074")
 */
.pf_c00074 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00074 { /* 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_c00074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00074 { /* 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_c00074 { /* 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_c00074 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00074 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00074 {overflow:visible;}
  }
}
.c_c00074 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00074 { /* 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_c00074:after { /* webkit #35443 */
  content: '';
}
.t_c00074:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00074 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 */
}
.__c00074 { /* 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_c00074 { /* info for Javascript */
  display:none;
}
.l_c00074 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00074 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00074 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00074: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_c00074 {
    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_c00074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00074.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_c00074 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00074;src:url('chunks/assets/font_f71ec2eb30efb2853bcd4f3e.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.284668;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_c00074;src:url('chunks/assets/font_2e2e4089a610ce75f0317cbc.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.284180;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_c00074;src:url('chunks/assets/font_860054a8246be46d06e301f5.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;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:ff4_c00074;src:url('chunks/assets/font_65754c6766c0b66cfe122741.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;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:ff5_c00074;src:url('chunks/assets/font_b7bd417ad6576f5025d8e0fc.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:0.666000;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_c00074{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m7_c00074{transform:matrix(0.227868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227868,0.000000,0.000000,0.250000,0,0);}
.m6_c00074{transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);}
.m1_c00074{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m0_c00074{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);}
.m3_c00074{transform:matrix(0.361049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361049,0.000000,0.000000,0.250000,0,0);}
.m2_c00074{transform:matrix(0.568196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568196,0.000000,0.000000,0.250000,0,0);}
.m5_c00074{transform:matrix(1.235330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.235330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.235330,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls53_c00074{letter-spacing:-2.541000px;}
.ls4e_c00074{letter-spacing:-2.410320px;}
.ls87_c00074{letter-spacing:-2.352000px;}
.ls6f_c00074{letter-spacing:-2.207040px;}
.ls4a_c00074{letter-spacing:-2.170740px;}
.ls3f_c00074{letter-spacing:-1.996500px;}
.ls34_c00074{letter-spacing:-1.880340px;}
.ls36_c00074{letter-spacing:-1.611720px;}
.ls39_c00074{letter-spacing:-1.568160px;}
.ls80_c00074{letter-spacing:-1.546380px;}
.ls43_c00074{letter-spacing:-1.452000px;}
.ls37_c00074{letter-spacing:-1.372140px;}
.ls7b_c00074{letter-spacing:-1.350360px;}
.ls4d_c00074{letter-spacing:-1.226940px;}
.ls47_c00074{letter-spacing:-1.118040px;}
.ls84_c00074{letter-spacing:-1.074480px;}
.ls7d_c00074{letter-spacing:-0.972840px;}
.ls86_c00074{letter-spacing:-0.922020px;}
.ls41_c00074{letter-spacing:-0.900240px;}
.ls78_c00074{letter-spacing:-0.892980px;}
.ls48_c00074{letter-spacing:-0.827640px;}
.ls3a_c00074{letter-spacing:-0.813120px;}
.ls33_c00074{letter-spacing:-0.791340px;}
.ls7c_c00074{letter-spacing:-0.762300px;}
.ls7f_c00074{letter-spacing:-0.747780px;}
.ls2e_c00074{letter-spacing:-0.740520px;}
.ls59_c00074{letter-spacing:-0.696960px;}
.ls50_c00074{letter-spacing:-0.667920px;}
.ls5b_c00074{letter-spacing:-0.660660px;}
.ls3b_c00074{letter-spacing:-0.653400px;}
.ls79_c00074{letter-spacing:-0.646140px;}
.ls81_c00074{letter-spacing:-0.638880px;}
.ls46_c00074{letter-spacing:-0.602580px;}
.ls73_c00074{letter-spacing:-0.580800px;}
.ls56_c00074{letter-spacing:-0.537240px;}
.ls7e_c00074{letter-spacing:-0.529980px;}
.ls76_c00074{letter-spacing:-0.522720px;}
.ls5f_c00074{letter-spacing:-0.500940px;}
.ls72_c00074{letter-spacing:-0.486420px;}
.ls63_c00074{letter-spacing:-0.479160px;}
.ls7a_c00074{letter-spacing:-0.471900px;}
.ls3d_c00074{letter-spacing:-0.464640px;}
.ls3c_c00074{letter-spacing:-0.457380px;}
.ls6c_c00074{letter-spacing:-0.435600px;}
.ls42_c00074{letter-spacing:-0.421080px;}
.ls58_c00074{letter-spacing:-0.413820px;}
.ls68_c00074{letter-spacing:-0.399300px;}
.ls3e_c00074{letter-spacing:-0.392040px;}
.ls75_c00074{letter-spacing:-0.384780px;}
.ls2c_c00074{letter-spacing:-0.370260px;}
.ls5c_c00074{letter-spacing:-0.363000px;}
.ls65_c00074{letter-spacing:-0.355740px;}
.ls40_c00074{letter-spacing:-0.348480px;}
.ls74_c00074{letter-spacing:-0.333960px;}
.ls2f_c00074{letter-spacing:-0.319440px;}
.ls35_c00074{letter-spacing:-0.312180px;}
.ls82_c00074{letter-spacing:-0.297660px;}
.ls49_c00074{letter-spacing:-0.283140px;}
.ls6d_c00074{letter-spacing:-0.275880px;}
.ls6b_c00074{letter-spacing:-0.268620px;}
.ls57_c00074{letter-spacing:-0.261360px;}
.ls4b_c00074{letter-spacing:-0.254100px;}
.ls29_c00074{letter-spacing:-0.246840px;}
.ls5d_c00074{letter-spacing:-0.239580px;}
.ls5e_c00074{letter-spacing:-0.232320px;}
.ls55_c00074{letter-spacing:-0.225060px;}
.ls69_c00074{letter-spacing:-0.217800px;}
.ls4c_c00074{letter-spacing:-0.210540px;}
.ls44_c00074{letter-spacing:-0.203280px;}
.ls6e_c00074{letter-spacing:-0.196020px;}
.ls51_c00074{letter-spacing:-0.188760px;}
.ls52_c00074{letter-spacing:-0.181500px;}
.ls31_c00074{letter-spacing:-0.174240px;}
.ls32_c00074{letter-spacing:-0.166980px;}
.ls83_c00074{letter-spacing:-0.159720px;}
.ls45_c00074{letter-spacing:-0.152460px;}
.ls66_c00074{letter-spacing:-0.130680px;}
.ls2d_c00074{letter-spacing:-0.116160px;}
.ls5a_c00074{letter-spacing:-0.108900px;}
.ls64_c00074{letter-spacing:-0.101640px;}
.ls4f_c00074{letter-spacing:-0.094380px;}
.ls62_c00074{letter-spacing:-0.072600px;}
.ls30_c00074{letter-spacing:-0.065340px;}
.ls6a_c00074{letter-spacing:-0.058080px;}
.ls54_c00074{letter-spacing:-0.050820px;}
.ls71_c00074{letter-spacing:-0.043560px;}
.ls70_c00074{letter-spacing:-0.036300px;}
.ls2b_c00074{letter-spacing:-0.014520px;}
.ls61_c00074{letter-spacing:-0.007260px;}
.ls38_c00074{letter-spacing:0.000000px;}
.ls21_c00074{letter-spacing:0.007260px;}
.ls17_c00074{letter-spacing:0.014520px;}
.ls22_c00074{letter-spacing:0.021780px;}
.ls9_c00074{letter-spacing:0.029040px;}
.ls1e_c00074{letter-spacing:0.043560px;}
.ls11_c00074{letter-spacing:0.050820px;}
.ls8_c00074{letter-spacing:0.058080px;}
.ls2_c00074{letter-spacing:0.065340px;}
.lsa_c00074{letter-spacing:0.072600px;}
.ls25_c00074{letter-spacing:0.079860px;}
.ls20_c00074{letter-spacing:0.087120px;}
.ls85_c00074{letter-spacing:0.101640px;}
.ls1c_c00074{letter-spacing:0.108900px;}
.ls6_c00074{letter-spacing:0.116160px;}
.ls15_c00074{letter-spacing:0.130680px;}
.ls1a_c00074{letter-spacing:0.137940px;}
.ls67_c00074{letter-spacing:0.162840px;}
.ls12_c00074{letter-spacing:0.188760px;}
.ls19_c00074{letter-spacing:0.203280px;}
.ls5_c00074{letter-spacing:0.210540px;}
.ls7_c00074{letter-spacing:0.239580px;}
.ls24_c00074{letter-spacing:0.246840px;}
.ls26_c00074{letter-spacing:0.254100px;}
.lsf_c00074{letter-spacing:0.261360px;}
.lse_c00074{letter-spacing:0.283140px;}
.ls3_c00074{letter-spacing:0.297660px;}
.ls13_c00074{letter-spacing:0.304920px;}
.ls16_c00074{letter-spacing:0.341220px;}
.ls1b_c00074{letter-spacing:0.348480px;}
.ls27_c00074{letter-spacing:0.355740px;}
.ls23_c00074{letter-spacing:0.384780px;}
.ls1f_c00074{letter-spacing:0.421080px;}
.ls10_c00074{letter-spacing:0.428340px;}
.ls14_c00074{letter-spacing:0.435600px;}
.ls60_c00074{letter-spacing:0.442860px;}
.lsc_c00074{letter-spacing:0.457380px;}
.ls1_c00074{letter-spacing:0.500940px;}
.ls2a_c00074{letter-spacing:0.531000px;}
.lsd_c00074{letter-spacing:0.559020px;}
.lsb_c00074{letter-spacing:0.653400px;}
.ls18_c00074{letter-spacing:0.900240px;}
.ls1d_c00074{letter-spacing:0.920400px;}
.ls4_c00074{letter-spacing:1.618980px;}
.ls77_c00074{letter-spacing:1.680000px;}
.ls28_c00074{letter-spacing:2.096760px;}
.ls0_c00074{letter-spacing:2.345220px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{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__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00074{word-spacing:0.000000px;}
.ws1_c00074{word-spacing:6.830400px;}
.ws0_c00074{word-spacing:12.600000px;}
.ws2_c00074{word-spacing:42.830400px;}
._1f_c00074{margin-left:-19.520147px;}
._1b_c00074{margin-left:-5.822520px;}
._0_c00074{margin-left:-3.420720px;}
._1_c00074{margin-left:-2.163120px;}
._1a_c00074{width:1.582680px;}
._2_c00074{width:3.157800px;}
._a_c00074{width:4.414080px;}
._14_c00074{width:6.454140px;}
._9_c00074{width:7.724640px;}
._8_c00074{width:8.908020px;}
._6_c00074{width:9.967980px;}
._f_c00074{width:11.093280px;}
._7_c00074{width:12.240360px;}
._b_c00074{width:13.481820px;}
._c_c00074{width:15.267780px;}
._15_c00074{width:16.407600px;}
._10_c00074{width:17.881380px;}
._d_c00074{width:19.558440px;}
._e_c00074{width:20.807160px;}
._18_c00074{width:22.082340px;}
._16_c00074{width:23.991960px;}
._17_c00074{width:25.279320px;}
._19_c00074{width:28.349280px;}
._20_c00074{width:30.809280px;}
._3_c00074{width:33.670560px;}
._5_c00074{width:37.105860px;}
._4_c00074{width:38.565120px;}
._13_c00074{width:39.879180px;}
._12_c00074{width:40.881060px;}
._11_c00074{width:43.131660px;}
._1e_c00074{width:45.215280px;}
._1c_c00074{width:46.580160px;}
._1d_c00074{width:49.905240px;}
._21_c00074{width:55.691160px;}
._22_c00074{width:457.113120px;}
.fc0_c00074{color:transparent;}
.fs5_c00074{font-size:10.080000px;}
.fs4_c00074{font-size:33.600000px;}
.fs0_c00074{font-size:60.600000px;}
.fs6_c00074{font-size:67.200000px;}
.fs2_c00074{font-size:70.800000px;}
.fs1_c00074{font-size:72.600000px;}
.fs3_c00074{font-size:118.200600px;}
.y0_c00074{bottom:0.000000px;}
.y1f_c00074{bottom:68.775006px;}
.y1d_c00074{bottom:131.387406px;}
.y1e_c00074{bottom:131.400006px;}
.y1c_c00074{bottom:162.351306px;}
.y1b_c00074{bottom:193.333356px;}
.y1a_c00074{bottom:224.279106px;}
.y19_c00074{bottom:254.880006px;}
.y18_c00074{bottom:282.615006px;}
.y17_c00074{bottom:285.836106px;}
.y16_c00074{bottom:316.792056px;}
.y15_c00074{bottom:347.411106px;}
.y14_c00074{bottom:378.375006px;}
.y13_c00074{bottom:440.280006px;}
.y12_c00074{bottom:470.857356px;}
.y11_c00074{bottom:501.839406px;}
.y10_c00074{bottom:532.785156px;}
.yf_c00074{bottom:594.712956px;}
.ye_c00074{bottom:625.697256px;}
.yd_c00074{bottom:656.265156px;}
.yc_c00074{bottom:687.247206px;}
.yb_c00074{bottom:718.211106px;}
.ya_c00074{bottom:749.175006px;}
.y9_c00074{bottom:811.081656px;}
.y8_c00074{bottom:872.991306px;}
.y7_c00074{bottom:904.318206px;}
.y6_c00074{bottom:934.937256px;}
.y5_c00074{bottom:965.515056px;}
.y4_c00074{bottom:996.134106px;}
.y3_c00074{bottom:1026.735006px;}
.y2_c00074{bottom:1088.640006px;}
.y1_c00074{bottom:1195.575006px;}
.h9_c00074{height:6.713280px;}
.h8_c00074{height:35.043750px;}
.h2_c00074{height:59.475586px;}
.ha_c00074{height:65.953125px;}
.h3_c00074{height:71.252930px;}
.h7_c00074{height:71.268530px;}
.h4_c00074{height:71.272730px;}
.h5_c00074{height:71.312330px;}
.h6_c00074{height:123.311332px;}
.h1_c00074{height:1263.000000px;}
.h0_c00074{height:1263.240006px;}
.w1_c00074{width:892.500000px;}
.w0_c00074{width:892.799998px;}
.x0_c00074{left:0.000000px;}
.xc_c00074{left:114.997349px;}
.x5_c00074{left:116.377648px;}
.x4_c00074{left:117.886649px;}
.x1_c00074{left:120.089999px;}
.xd_c00074{left:130.964999px;}
.xe_c00074{left:146.354998px;}
.xf_c00074{left:170.204998px;}
.xb_c00074{left:180.179998px;}
.x7_c00074{left:181.259998px;}
.x3_c00074{left:183.059999px;}
.x10_c00074{left:184.679998px;}
.x11_c00074{left:190.364998px;}
.xa_c00074{left:223.123349px;}
.x6_c00074{left:224.624248px;}
.x2_c00074{left:226.364998px;}
.x16_c00074{left:262.994999px;}
.x17_c00074{left:285.329998px;}
.x18_c00074{left:423.524999px;}
.x8_c00074{left:439.034998px;}
.x9_c00074{left:461.834999px;}
.x12_c00074{left:503.594998px;}
.x14_c00074{left:662.249998px;}
.x15_c00074{left:682.019998px;}
.x13_c00074{left:699.044999px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls53_c00074{letter-spacing:-2.258667pt;}
.ls4e_c00074{letter-spacing:-2.142507pt;}
.ls87_c00074{letter-spacing:-2.090667pt;}
.ls6f_c00074{letter-spacing:-1.961813pt;}
.ls4a_c00074{letter-spacing:-1.929547pt;}
.ls3f_c00074{letter-spacing:-1.774667pt;}
.ls34_c00074{letter-spacing:-1.671413pt;}
.ls36_c00074{letter-spacing:-1.432640pt;}
.ls39_c00074{letter-spacing:-1.393920pt;}
.ls80_c00074{letter-spacing:-1.374560pt;}
.ls43_c00074{letter-spacing:-1.290667pt;}
.ls37_c00074{letter-spacing:-1.219680pt;}
.ls7b_c00074{letter-spacing:-1.200320pt;}
.ls4d_c00074{letter-spacing:-1.090613pt;}
.ls47_c00074{letter-spacing:-0.993813pt;}
.ls84_c00074{letter-spacing:-0.955093pt;}
.ls7d_c00074{letter-spacing:-0.864747pt;}
.ls86_c00074{letter-spacing:-0.819573pt;}
.ls41_c00074{letter-spacing:-0.800213pt;}
.ls78_c00074{letter-spacing:-0.793760pt;}
.ls48_c00074{letter-spacing:-0.735680pt;}
.ls3a_c00074{letter-spacing:-0.722773pt;}
.ls33_c00074{letter-spacing:-0.703413pt;}
.ls7c_c00074{letter-spacing:-0.677600pt;}
.ls7f_c00074{letter-spacing:-0.664693pt;}
.ls2e_c00074{letter-spacing:-0.658240pt;}
.ls59_c00074{letter-spacing:-0.619520pt;}
.ls50_c00074{letter-spacing:-0.593707pt;}
.ls5b_c00074{letter-spacing:-0.587253pt;}
.ls3b_c00074{letter-spacing:-0.580800pt;}
.ls79_c00074{letter-spacing:-0.574347pt;}
.ls81_c00074{letter-spacing:-0.567893pt;}
.ls46_c00074{letter-spacing:-0.535627pt;}
.ls73_c00074{letter-spacing:-0.516267pt;}
.ls56_c00074{letter-spacing:-0.477547pt;}
.ls7e_c00074{letter-spacing:-0.471093pt;}
.ls76_c00074{letter-spacing:-0.464640pt;}
.ls5f_c00074{letter-spacing:-0.445280pt;}
.ls72_c00074{letter-spacing:-0.432373pt;}
.ls63_c00074{letter-spacing:-0.425920pt;}
.ls7a_c00074{letter-spacing:-0.419467pt;}
.ls3d_c00074{letter-spacing:-0.413013pt;}
.ls3c_c00074{letter-spacing:-0.406560pt;}
.ls6c_c00074{letter-spacing:-0.387200pt;}
.ls42_c00074{letter-spacing:-0.374293pt;}
.ls58_c00074{letter-spacing:-0.367840pt;}
.ls68_c00074{letter-spacing:-0.354933pt;}
.ls3e_c00074{letter-spacing:-0.348480pt;}
.ls75_c00074{letter-spacing:-0.342027pt;}
.ls2c_c00074{letter-spacing:-0.329120pt;}
.ls5c_c00074{letter-spacing:-0.322667pt;}
.ls65_c00074{letter-spacing:-0.316213pt;}
.ls40_c00074{letter-spacing:-0.309760pt;}
.ls74_c00074{letter-spacing:-0.296853pt;}
.ls2f_c00074{letter-spacing:-0.283947pt;}
.ls35_c00074{letter-spacing:-0.277493pt;}
.ls82_c00074{letter-spacing:-0.264587pt;}
.ls49_c00074{letter-spacing:-0.251680pt;}
.ls6d_c00074{letter-spacing:-0.245227pt;}
.ls6b_c00074{letter-spacing:-0.238773pt;}
.ls57_c00074{letter-spacing:-0.232320pt;}
.ls4b_c00074{letter-spacing:-0.225867pt;}
.ls29_c00074{letter-spacing:-0.219413pt;}
.ls5d_c00074{letter-spacing:-0.212960pt;}
.ls5e_c00074{letter-spacing:-0.206507pt;}
.ls55_c00074{letter-spacing:-0.200053pt;}
.ls69_c00074{letter-spacing:-0.193600pt;}
.ls4c_c00074{letter-spacing:-0.187147pt;}
.ls44_c00074{letter-spacing:-0.180693pt;}
.ls6e_c00074{letter-spacing:-0.174240pt;}
.ls51_c00074{letter-spacing:-0.167787pt;}
.ls52_c00074{letter-spacing:-0.161333pt;}
.ls31_c00074{letter-spacing:-0.154880pt;}
.ls32_c00074{letter-spacing:-0.148427pt;}
.ls83_c00074{letter-spacing:-0.141973pt;}
.ls45_c00074{letter-spacing:-0.135520pt;}
.ls66_c00074{letter-spacing:-0.116160pt;}
.ls2d_c00074{letter-spacing:-0.103253pt;}
.ls5a_c00074{letter-spacing:-0.096800pt;}
.ls64_c00074{letter-spacing:-0.090347pt;}
.ls4f_c00074{letter-spacing:-0.083893pt;}
.ls62_c00074{letter-spacing:-0.064533pt;}
.ls30_c00074{letter-spacing:-0.058080pt;}
.ls6a_c00074{letter-spacing:-0.051627pt;}
.ls54_c00074{letter-spacing:-0.045173pt;}
.ls71_c00074{letter-spacing:-0.038720pt;}
.ls70_c00074{letter-spacing:-0.032267pt;}
.ls2b_c00074{letter-spacing:-0.012907pt;}
.ls61_c00074{letter-spacing:-0.006453pt;}
.ls38_c00074{letter-spacing:0.000000pt;}
.ls21_c00074{letter-spacing:0.006453pt;}
.ls17_c00074{letter-spacing:0.012907pt;}
.ls22_c00074{letter-spacing:0.019360pt;}
.ls9_c00074{letter-spacing:0.025813pt;}
.ls1e_c00074{letter-spacing:0.038720pt;}
.ls11_c00074{letter-spacing:0.045173pt;}
.ls8_c00074{letter-spacing:0.051627pt;}
.ls2_c00074{letter-spacing:0.058080pt;}
.lsa_c00074{letter-spacing:0.064533pt;}
.ls25_c00074{letter-spacing:0.070987pt;}
.ls20_c00074{letter-spacing:0.077440pt;}
.ls85_c00074{letter-spacing:0.090347pt;}
.ls1c_c00074{letter-spacing:0.096800pt;}
.ls6_c00074{letter-spacing:0.103253pt;}
.ls15_c00074{letter-spacing:0.116160pt;}
.ls1a_c00074{letter-spacing:0.122613pt;}
.ls67_c00074{letter-spacing:0.144747pt;}
.ls12_c00074{letter-spacing:0.167787pt;}
.ls19_c00074{letter-spacing:0.180693pt;}
.ls5_c00074{letter-spacing:0.187147pt;}
.ls7_c00074{letter-spacing:0.212960pt;}
.ls24_c00074{letter-spacing:0.219413pt;}
.ls26_c00074{letter-spacing:0.225867pt;}
.lsf_c00074{letter-spacing:0.232320pt;}
.lse_c00074{letter-spacing:0.251680pt;}
.ls3_c00074{letter-spacing:0.264587pt;}
.ls13_c00074{letter-spacing:0.271040pt;}
.ls16_c00074{letter-spacing:0.303307pt;}
.ls1b_c00074{letter-spacing:0.309760pt;}
.ls27_c00074{letter-spacing:0.316213pt;}
.ls23_c00074{letter-spacing:0.342027pt;}
.ls1f_c00074{letter-spacing:0.374293pt;}
.ls10_c00074{letter-spacing:0.380747pt;}
.ls14_c00074{letter-spacing:0.387200pt;}
.ls60_c00074{letter-spacing:0.393653pt;}
.lsc_c00074{letter-spacing:0.406560pt;}
.ls1_c00074{letter-spacing:0.445280pt;}
.ls2a_c00074{letter-spacing:0.472000pt;}
.lsd_c00074{letter-spacing:0.496907pt;}
.lsb_c00074{letter-spacing:0.580800pt;}
.ls18_c00074{letter-spacing:0.800213pt;}
.ls1d_c00074{letter-spacing:0.818133pt;}
.ls4_c00074{letter-spacing:1.439093pt;}
.ls77_c00074{letter-spacing:1.493333pt;}
.ls28_c00074{letter-spacing:1.863787pt;}
.ls0_c00074{letter-spacing:2.084640pt;}
.ws3_c00074{word-spacing:0.000000pt;}
.ws1_c00074{word-spacing:6.071467pt;}
.ws0_c00074{word-spacing:11.200000pt;}
.ws2_c00074{word-spacing:38.071467pt;}
._1f_c00074{margin-left:-17.351242pt;}
._1b_c00074{margin-left:-5.175573pt;}
._0_c00074{margin-left:-3.040640pt;}
._1_c00074{margin-left:-1.922773pt;}
._1a_c00074{width:1.406827pt;}
._2_c00074{width:2.806933pt;}
._a_c00074{width:3.923627pt;}
._14_c00074{width:5.737013pt;}
._9_c00074{width:6.866347pt;}
._8_c00074{width:7.918240pt;}
._6_c00074{width:8.860427pt;}
._f_c00074{width:9.860693pt;}
._7_c00074{width:10.880320pt;}
._b_c00074{width:11.983840pt;}
._c_c00074{width:13.571360pt;}
._15_c00074{width:14.584533pt;}
._10_c00074{width:15.894560pt;}
._d_c00074{width:17.385280pt;}
._e_c00074{width:18.495253pt;}
._18_c00074{width:19.628747pt;}
._16_c00074{width:21.326187pt;}
._17_c00074{width:22.470507pt;}
._19_c00074{width:25.199360pt;}
._20_c00074{width:27.386027pt;}
._3_c00074{width:29.929387pt;}
._5_c00074{width:32.982987pt;}
._4_c00074{width:34.280107pt;}
._13_c00074{width:35.448160pt;}
._12_c00074{width:36.338720pt;}
._11_c00074{width:38.339253pt;}
._1e_c00074{width:40.191360pt;}
._1c_c00074{width:41.404587pt;}
._1d_c00074{width:44.360213pt;}
._21_c00074{width:49.503253pt;}
._22_c00074{width:406.322773pt;}
.fs5_c00074{font-size:8.960000pt;}
.fs4_c00074{font-size:29.866667pt;}
.fs0_c00074{font-size:53.866667pt;}
.fs6_c00074{font-size:59.733333pt;}
.fs2_c00074{font-size:62.933333pt;}
.fs1_c00074{font-size:64.533333pt;}
.fs3_c00074{font-size:105.067200pt;}
.y0_c00074{bottom:0.000000pt;}
.y1f_c00074{bottom:61.133339pt;}
.y1d_c00074{bottom:116.788805pt;}
.y1e_c00074{bottom:116.800005pt;}
.y1c_c00074{bottom:144.312272pt;}
.y1b_c00074{bottom:171.851872pt;}
.y1a_c00074{bottom:199.359205pt;}
.y19_c00074{bottom:226.560005pt;}
.y18_c00074{bottom:251.213339pt;}
.y17_c00074{bottom:254.076539pt;}
.y16_c00074{bottom:281.592939pt;}
.y15_c00074{bottom:308.809872pt;}
.y14_c00074{bottom:336.333339pt;}
.y13_c00074{bottom:391.360005pt;}
.y12_c00074{bottom:418.539872pt;}
.y11_c00074{bottom:446.079472pt;}
.y10_c00074{bottom:473.586805pt;}
.yf_c00074{bottom:528.633739pt;}
.ye_c00074{bottom:556.175339pt;}
.yd_c00074{bottom:583.346805pt;}
.yc_c00074{bottom:610.886405pt;}
.yb_c00074{bottom:638.409872pt;}
.ya_c00074{bottom:665.933339pt;}
.y9_c00074{bottom:720.961472pt;}
.y8_c00074{bottom:775.992272pt;}
.y7_c00074{bottom:803.838405pt;}
.y6_c00074{bottom:831.055339pt;}
.y5_c00074{bottom:858.235605pt;}
.y4_c00074{bottom:885.452539pt;}
.y3_c00074{bottom:912.653339pt;}
.y2_c00074{bottom:967.680005pt;}
.y1_c00074{bottom:1062.733339pt;}
.h9_c00074{height:5.967360pt;}
.h8_c00074{height:31.150000pt;}
.h2_c00074{height:52.867187pt;}
.ha_c00074{height:58.625000pt;}
.h3_c00074{height:63.335938pt;}
.h7_c00074{height:63.349804pt;}
.h4_c00074{height:63.353538pt;}
.h5_c00074{height:63.388738pt;}
.h6_c00074{height:109.610073pt;}
.h1_c00074{height:1122.666667pt;}
.h0_c00074{height:1122.880005pt;}
.w1_c00074{width:793.333333pt;}
.w0_c00074{width:793.599999pt;}
.x0_c00074{left:0.000000pt;}
.xc_c00074{left:102.219865pt;}
.x5_c00074{left:103.446799pt;}
.x4_c00074{left:104.788132pt;}
.x1_c00074{left:106.746665pt;}
.xd_c00074{left:116.413332pt;}
.xe_c00074{left:130.093332pt;}
.xf_c00074{left:151.293332pt;}
.xb_c00074{left:160.159999pt;}
.x7_c00074{left:161.119999pt;}
.x3_c00074{left:162.719999pt;}
.x10_c00074{left:164.159999pt;}
.x11_c00074{left:169.213332pt;}
.xa_c00074{left:198.331865pt;}
.x6_c00074{left:199.665999pt;}
.x2_c00074{left:201.213332pt;}
.x16_c00074{left:233.773332pt;}
.x17_c00074{left:253.626665pt;}
.x18_c00074{left:376.466665pt;}
.x8_c00074{left:390.253332pt;}
.x9_c00074{left:410.519999pt;}
.x12_c00074{left:447.639999pt;}
.x14_c00074{left:588.666665pt;}
.x15_c00074{left:606.239999pt;}
.x13_c00074{left:621.373332pt;}
}





/* 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_c00075 {
    display:none;
  }
  .loading-indicator_c00075.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00075 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_c00075 { 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_c00075" -> "#page-container .classname_c00075")
 */
.pf_c00075 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00075 { /* 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_c00075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00075 { /* 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_c00075 { /* 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_c00075 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00075 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00075 {overflow:visible;}
  }
}
.c_c00075 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00075 { /* 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_c00075:after { /* webkit #35443 */
  content: '';
}
.t_c00075:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00075 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 */
}
.__c00075 { /* 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_c00075 { /* info for Javascript */
  display:none;
}
.l_c00075 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00075 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00075 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00075: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_c00075 {
    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_c00075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00075.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_c00075 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00075;src:url('chunks/assets/font_50bc1b1683367200898dddcf.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.284668;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_c00075;src:url('chunks/assets/font_74b9f07e148012e4f116724b.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.284180;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_c00075{transform:matrix(0.228287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228287,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);}
.m0_c00075{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);}
.v0_c00075{vertical-align:0.000000px;}
.ls3a_c00075{letter-spacing:-2.520000px;}
.ls48_c00075{letter-spacing:-2.448000px;}
.ls79_c00075{letter-spacing:-2.289000px;}
.ls4b_c00075{letter-spacing:-2.080800px;}
.ls24_c00075{letter-spacing:-1.936800px;}
.ls66_c00075{letter-spacing:-1.785600px;}
.ls65_c00075{letter-spacing:-1.224000px;}
.ls52_c00075{letter-spacing:-1.216800px;}
.ls25_c00075{letter-spacing:-1.202400px;}
.ls55_c00075{letter-spacing:-1.180800px;}
.ls3c_c00075{letter-spacing:-1.173600px;}
.ls54_c00075{letter-spacing:-1.108800px;}
.ls3b_c00075{letter-spacing:-1.065600px;}
.ls53_c00075{letter-spacing:-0.979200px;}
.ls44_c00075{letter-spacing:-0.885600px;}
.ls57_c00075{letter-spacing:-0.813600px;}
.ls74_c00075{letter-spacing:-0.785880px;}
.ls3e_c00075{letter-spacing:-0.748800px;}
.ls70_c00075{letter-spacing:-0.693840px;}
.ls5c_c00075{letter-spacing:-0.684000px;}
.ls23_c00075{letter-spacing:-0.612000px;}
.ls58_c00075{letter-spacing:-0.568800px;}
.ls43_c00075{letter-spacing:-0.540000px;}
.ls59_c00075{letter-spacing:-0.525600px;}
.ls75_c00075{letter-spacing:-0.518400px;}
.ls2e_c00075{letter-spacing:-0.511200px;}
.ls6a_c00075{letter-spacing:-0.489600px;}
.ls42_c00075{letter-spacing:-0.482400px;}
.ls69_c00075{letter-spacing:-0.475200px;}
.ls60_c00075{letter-spacing:-0.460800px;}
.ls4f_c00075{letter-spacing:-0.453600px;}
.ls50_c00075{letter-spacing:-0.439200px;}
.ls6c_c00075{letter-spacing:-0.431880px;}
.ls31_c00075{letter-spacing:-0.403560px;}
.ls2c_c00075{letter-spacing:-0.403200px;}
.ls41_c00075{letter-spacing:-0.388800px;}
.ls39_c00075{letter-spacing:-0.381600px;}
.ls32_c00075{letter-spacing:-0.375240px;}
.ls2a_c00075{letter-spacing:-0.374400px;}
.ls2b_c00075{letter-spacing:-0.367200px;}
.ls73_c00075{letter-spacing:-0.360000px;}
.ls6f_c00075{letter-spacing:-0.352800px;}
.ls68_c00075{letter-spacing:-0.345600px;}
.ls49_c00075{letter-spacing:-0.331200px;}
.ls4c_c00075{letter-spacing:-0.316800px;}
.ls63_c00075{letter-spacing:-0.309600px;}
.ls28_c00075{letter-spacing:-0.302400px;}
.ls27_c00075{letter-spacing:-0.295200px;}
.ls62_c00075{letter-spacing:-0.280800px;}
.ls6d_c00075{letter-spacing:-0.273600px;}
.ls40_c00075{letter-spacing:-0.252000px;}
.ls45_c00075{letter-spacing:-0.237600px;}
.ls26_c00075{letter-spacing:-0.230400px;}
.ls5b_c00075{letter-spacing:-0.223200px;}
.ls6e_c00075{letter-spacing:-0.219480px;}
.ls47_c00075{letter-spacing:-0.216000px;}
.ls38_c00075{letter-spacing:-0.208800px;}
.ls3f_c00075{letter-spacing:-0.187200px;}
.ls34_c00075{letter-spacing:-0.180000px;}
.ls35_c00075{letter-spacing:-0.165600px;}
.ls56_c00075{letter-spacing:-0.158400px;}
.ls5a_c00075{letter-spacing:-0.151200px;}
.ls5f_c00075{letter-spacing:-0.136800px;}
.ls4e_c00075{letter-spacing:-0.129600px;}
.ls51_c00075{letter-spacing:-0.122400px;}
.ls67_c00075{letter-spacing:-0.115200px;}
.ls3d_c00075{letter-spacing:-0.108000px;}
.ls61_c00075{letter-spacing:-0.100800px;}
.ls30_c00075{letter-spacing:-0.099120px;}
.ls4a_c00075{letter-spacing:-0.079200px;}
.ls29_c00075{letter-spacing:-0.072000px;}
.ls72_c00075{letter-spacing:-0.070800px;}
.ls5d_c00075{letter-spacing:-0.064800px;}
.ls36_c00075{letter-spacing:-0.050400px;}
.ls5e_c00075{letter-spacing:-0.043200px;}
.ls76_c00075{letter-spacing:-0.042480px;}
.ls78_c00075{letter-spacing:-0.035400px;}
.ls4d_c00075{letter-spacing:-0.028800px;}
.ls2d_c00075{letter-spacing:-0.021600px;}
.ls22_c00075{letter-spacing:0.000000px;}
.ls2_c00075{letter-spacing:0.007200px;}
.ls20_c00075{letter-spacing:0.028320px;}
.ls33_c00075{letter-spacing:0.035400px;}
.ls12_c00075{letter-spacing:0.043200px;}
.ls14_c00075{letter-spacing:0.057600px;}
.lsa_c00075{letter-spacing:0.072000px;}
.ls7_c00075{letter-spacing:0.086400px;}
.ls2f_c00075{letter-spacing:0.092040px;}
.ls17_c00075{letter-spacing:0.093600px;}
.ls3_c00075{letter-spacing:0.100800px;}
.lsd_c00075{letter-spacing:0.122400px;}
.ls1f_c00075{letter-spacing:0.127440px;}
.ls10_c00075{letter-spacing:0.136800px;}
.ls77_c00075{letter-spacing:0.141600px;}
.ls5_c00075{letter-spacing:0.155760px;}
.ls1a_c00075{letter-spacing:0.172800px;}
.ls4_c00075{letter-spacing:0.180000px;}
.ls37_c00075{letter-spacing:0.191160px;}
.lsf_c00075{letter-spacing:0.201600px;}
.ls16_c00075{letter-spacing:0.233640px;}
.ls1_c00075{letter-spacing:0.259200px;}
.lsb_c00075{letter-spacing:0.280800px;}
.ls13_c00075{letter-spacing:0.288000px;}
.ls15_c00075{letter-spacing:0.295200px;}
.ls6_c00075{letter-spacing:0.324000px;}
.ls6b_c00075{letter-spacing:0.389400px;}
.ls9_c00075{letter-spacing:0.403200px;}
.ls1e_c00075{letter-spacing:0.403560px;}
.ls46_c00075{letter-spacing:0.417600px;}
.ls11_c00075{letter-spacing:0.432000px;}
.ls8_c00075{letter-spacing:0.439200px;}
.ls1b_c00075{letter-spacing:0.482400px;}
.ls64_c00075{letter-spacing:0.511200px;}
.ls18_c00075{letter-spacing:0.583200px;}
.ls1c_c00075{letter-spacing:0.604800px;}
.lsc_c00075{letter-spacing:0.626400px;}
.ls19_c00075{letter-spacing:0.641700px;}
.ls1d_c00075{letter-spacing:0.722160px;}
.ls71_c00075{letter-spacing:0.771720px;}
.lse_c00075{letter-spacing:1.296000px;}
.ls21_c00075{letter-spacing:1.702860px;}
.ls0_c00075{letter-spacing:2.242200px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{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__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00075{word-spacing:0.000000px;}
._0_c00075{margin-left:-3.212400px;}
._9_c00075{margin-left:-1.584000px;}
._4_c00075{width:1.656000px;}
._16_c00075{width:2.678400px;}
._5_c00075{width:3.765600px;}
._14_c00075{width:4.910400px;}
._a_c00075{width:6.163200px;}
._7_c00075{width:8.180160px;}
._6_c00075{width:9.562320px;}
._d_c00075{width:10.562640px;}
._e_c00075{width:11.711520px;}
._12_c00075{width:13.035600px;}
._8_c00075{width:14.273280px;}
._f_c00075{width:15.579360px;}
._10_c00075{width:17.280000px;}
._13_c00075{width:18.976800px;}
._11_c00075{width:20.450400px;}
._1_c00075{width:21.859200px;}
._3_c00075{width:23.613600px;}
._2_c00075{width:25.077600px;}
._c_c00075{width:27.720000px;}
._b_c00075{width:29.692800px;}
._15_c00075{width:32.435160px;}
.fc0_c00075{color:transparent;}
.fs0_c00075{font-size:60.600000px;}
.fs4_c00075{font-size:65.400000px;}
.fs3_c00075{font-size:69.000000px;}
.fs2_c00075{font-size:70.800000px;}
.fs1_c00075{font-size:72.000000px;}
.y0_c00075{bottom:0.000000px;}
.y20_c00075{bottom:69.120015px;}
.y1f_c00075{bottom:133.208415px;}
.y1e_c00075{bottom:163.437015px;}
.y1d_c00075{bottom:193.695015px;}
.y1c_c00075{bottom:224.655015px;}
.y1b_c00075{bottom:255.615015px;}
.y1a_c00075{bottom:285.855015px;}
.y19_c00075{bottom:316.815015px;}
.y18_c00075{bottom:347.415015px;}
.y17_c00075{bottom:378.375015px;}
.y16_c00075{bottom:408.600015px;}
.y15_c00075{bottom:440.295015px;}
.y14_c00075{bottom:470.895015px;}
.y13_c00075{bottom:532.815015px;}
.y12_c00075{bottom:563.415015px;}
.y11_c00075{bottom:594.738015px;}
.y10_c00075{bottom:625.338015px;}
.yf_c00075{bottom:655.917015px;}
.ye_c00075{bottom:686.895015px;}
.yd_c00075{bottom:717.837015px;}
.yc_c00075{bottom:748.815015px;}
.yb_c00075{bottom:779.415015px;}
.ya_c00075{bottom:810.357015px;}
.y9_c00075{bottom:841.335015px;}
.y8_c00075{bottom:902.520015px;}
.y7_c00075{bottom:933.480015px;}
.y6_c00075{bottom:963.720015px;}
.y5_c00075{bottom:994.674015px;}
.y4_c00075{bottom:1025.298015px;}
.y3_c00075{bottom:1086.477015px;}
.y2_c00075{bottom:1117.815015px;}
.y1_c00075{bottom:1193.415015px;}
.h2_c00075{height:59.475586px;}
.h6_c00075{height:64.186523px;}
.h5_c00075{height:69.451758px;}
.h3_c00075{height:70.664062px;}
.h4_c00075{height:70.676062px;}
.h1_c00075{height:1263.000000px;}
.h0_c00075{height:1263.240015px;}
.w1_c00075{width:892.500000px;}
.w0_c00075{width:892.800015px;}
.x0_c00075{left:0.000000px;}
.x1_c00075{left:129.450015px;}
.x6_c00075{left:130.485015px;}
.x3_c00075{left:194.580015px;}
.x7_c00075{left:236.085015px;}
.x2_c00075{left:237.165015px;}
.x4_c00075{left:430.395015px;}
.x8_c00075{left:433.260015px;}
.x5_c00075{left:451.965015px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls3a_c00075{letter-spacing:-2.240000pt;}
.ls48_c00075{letter-spacing:-2.176000pt;}
.ls79_c00075{letter-spacing:-2.034667pt;}
.ls4b_c00075{letter-spacing:-1.849600pt;}
.ls24_c00075{letter-spacing:-1.721600pt;}
.ls66_c00075{letter-spacing:-1.587200pt;}
.ls65_c00075{letter-spacing:-1.088000pt;}
.ls52_c00075{letter-spacing:-1.081600pt;}
.ls25_c00075{letter-spacing:-1.068800pt;}
.ls55_c00075{letter-spacing:-1.049600pt;}
.ls3c_c00075{letter-spacing:-1.043200pt;}
.ls54_c00075{letter-spacing:-0.985600pt;}
.ls3b_c00075{letter-spacing:-0.947200pt;}
.ls53_c00075{letter-spacing:-0.870400pt;}
.ls44_c00075{letter-spacing:-0.787200pt;}
.ls57_c00075{letter-spacing:-0.723200pt;}
.ls74_c00075{letter-spacing:-0.698560pt;}
.ls3e_c00075{letter-spacing:-0.665600pt;}
.ls70_c00075{letter-spacing:-0.616747pt;}
.ls5c_c00075{letter-spacing:-0.608000pt;}
.ls23_c00075{letter-spacing:-0.544000pt;}
.ls58_c00075{letter-spacing:-0.505600pt;}
.ls43_c00075{letter-spacing:-0.480000pt;}
.ls59_c00075{letter-spacing:-0.467200pt;}
.ls75_c00075{letter-spacing:-0.460800pt;}
.ls2e_c00075{letter-spacing:-0.454400pt;}
.ls6a_c00075{letter-spacing:-0.435200pt;}
.ls42_c00075{letter-spacing:-0.428800pt;}
.ls69_c00075{letter-spacing:-0.422400pt;}
.ls60_c00075{letter-spacing:-0.409600pt;}
.ls4f_c00075{letter-spacing:-0.403200pt;}
.ls50_c00075{letter-spacing:-0.390400pt;}
.ls6c_c00075{letter-spacing:-0.383893pt;}
.ls31_c00075{letter-spacing:-0.358720pt;}
.ls2c_c00075{letter-spacing:-0.358400pt;}
.ls41_c00075{letter-spacing:-0.345600pt;}
.ls39_c00075{letter-spacing:-0.339200pt;}
.ls32_c00075{letter-spacing:-0.333547pt;}
.ls2a_c00075{letter-spacing:-0.332800pt;}
.ls2b_c00075{letter-spacing:-0.326400pt;}
.ls73_c00075{letter-spacing:-0.320000pt;}
.ls6f_c00075{letter-spacing:-0.313600pt;}
.ls68_c00075{letter-spacing:-0.307200pt;}
.ls49_c00075{letter-spacing:-0.294400pt;}
.ls4c_c00075{letter-spacing:-0.281600pt;}
.ls63_c00075{letter-spacing:-0.275200pt;}
.ls28_c00075{letter-spacing:-0.268800pt;}
.ls27_c00075{letter-spacing:-0.262400pt;}
.ls62_c00075{letter-spacing:-0.249600pt;}
.ls6d_c00075{letter-spacing:-0.243200pt;}
.ls40_c00075{letter-spacing:-0.224000pt;}
.ls45_c00075{letter-spacing:-0.211200pt;}
.ls26_c00075{letter-spacing:-0.204800pt;}
.ls5b_c00075{letter-spacing:-0.198400pt;}
.ls6e_c00075{letter-spacing:-0.195093pt;}
.ls47_c00075{letter-spacing:-0.192000pt;}
.ls38_c00075{letter-spacing:-0.185600pt;}
.ls3f_c00075{letter-spacing:-0.166400pt;}
.ls34_c00075{letter-spacing:-0.160000pt;}
.ls35_c00075{letter-spacing:-0.147200pt;}
.ls56_c00075{letter-spacing:-0.140800pt;}
.ls5a_c00075{letter-spacing:-0.134400pt;}
.ls5f_c00075{letter-spacing:-0.121600pt;}
.ls4e_c00075{letter-spacing:-0.115200pt;}
.ls51_c00075{letter-spacing:-0.108800pt;}
.ls67_c00075{letter-spacing:-0.102400pt;}
.ls3d_c00075{letter-spacing:-0.096000pt;}
.ls61_c00075{letter-spacing:-0.089600pt;}
.ls30_c00075{letter-spacing:-0.088107pt;}
.ls4a_c00075{letter-spacing:-0.070400pt;}
.ls29_c00075{letter-spacing:-0.064000pt;}
.ls72_c00075{letter-spacing:-0.062933pt;}
.ls5d_c00075{letter-spacing:-0.057600pt;}
.ls36_c00075{letter-spacing:-0.044800pt;}
.ls5e_c00075{letter-spacing:-0.038400pt;}
.ls76_c00075{letter-spacing:-0.037760pt;}
.ls78_c00075{letter-spacing:-0.031467pt;}
.ls4d_c00075{letter-spacing:-0.025600pt;}
.ls2d_c00075{letter-spacing:-0.019200pt;}
.ls22_c00075{letter-spacing:0.000000pt;}
.ls2_c00075{letter-spacing:0.006400pt;}
.ls20_c00075{letter-spacing:0.025173pt;}
.ls33_c00075{letter-spacing:0.031467pt;}
.ls12_c00075{letter-spacing:0.038400pt;}
.ls14_c00075{letter-spacing:0.051200pt;}
.lsa_c00075{letter-spacing:0.064000pt;}
.ls7_c00075{letter-spacing:0.076800pt;}
.ls2f_c00075{letter-spacing:0.081813pt;}
.ls17_c00075{letter-spacing:0.083200pt;}
.ls3_c00075{letter-spacing:0.089600pt;}
.lsd_c00075{letter-spacing:0.108800pt;}
.ls1f_c00075{letter-spacing:0.113280pt;}
.ls10_c00075{letter-spacing:0.121600pt;}
.ls77_c00075{letter-spacing:0.125867pt;}
.ls5_c00075{letter-spacing:0.138453pt;}
.ls1a_c00075{letter-spacing:0.153600pt;}
.ls4_c00075{letter-spacing:0.160000pt;}
.ls37_c00075{letter-spacing:0.169920pt;}
.lsf_c00075{letter-spacing:0.179200pt;}
.ls16_c00075{letter-spacing:0.207680pt;}
.ls1_c00075{letter-spacing:0.230400pt;}
.lsb_c00075{letter-spacing:0.249600pt;}
.ls13_c00075{letter-spacing:0.256000pt;}
.ls15_c00075{letter-spacing:0.262400pt;}
.ls6_c00075{letter-spacing:0.288000pt;}
.ls6b_c00075{letter-spacing:0.346133pt;}
.ls9_c00075{letter-spacing:0.358400pt;}
.ls1e_c00075{letter-spacing:0.358720pt;}
.ls46_c00075{letter-spacing:0.371200pt;}
.ls11_c00075{letter-spacing:0.384000pt;}
.ls8_c00075{letter-spacing:0.390400pt;}
.ls1b_c00075{letter-spacing:0.428800pt;}
.ls64_c00075{letter-spacing:0.454400pt;}
.ls18_c00075{letter-spacing:0.518400pt;}
.ls1c_c00075{letter-spacing:0.537600pt;}
.lsc_c00075{letter-spacing:0.556800pt;}
.ls19_c00075{letter-spacing:0.570400pt;}
.ls1d_c00075{letter-spacing:0.641920pt;}
.ls71_c00075{letter-spacing:0.685973pt;}
.lse_c00075{letter-spacing:1.152000pt;}
.ls21_c00075{letter-spacing:1.513653pt;}
.ls0_c00075{letter-spacing:1.993067pt;}
.ws0_c00075{word-spacing:0.000000pt;}
._0_c00075{margin-left:-2.855467pt;}
._9_c00075{margin-left:-1.408000pt;}
._4_c00075{width:1.472000pt;}
._16_c00075{width:2.380800pt;}
._5_c00075{width:3.347200pt;}
._14_c00075{width:4.364800pt;}
._a_c00075{width:5.478400pt;}
._7_c00075{width:7.271253pt;}
._6_c00075{width:8.499840pt;}
._d_c00075{width:9.389013pt;}
._e_c00075{width:10.410240pt;}
._12_c00075{width:11.587200pt;}
._8_c00075{width:12.687360pt;}
._f_c00075{width:13.848320pt;}
._10_c00075{width:15.360000pt;}
._13_c00075{width:16.868267pt;}
._11_c00075{width:18.178133pt;}
._1_c00075{width:19.430400pt;}
._3_c00075{width:20.989867pt;}
._2_c00075{width:22.291200pt;}
._c_c00075{width:24.640000pt;}
._b_c00075{width:26.393600pt;}
._15_c00075{width:28.831253pt;}
.fs0_c00075{font-size:53.866667pt;}
.fs4_c00075{font-size:58.133333pt;}
.fs3_c00075{font-size:61.333333pt;}
.fs2_c00075{font-size:62.933333pt;}
.fs1_c00075{font-size:64.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y20_c00075{bottom:61.440013pt;}
.y1f_c00075{bottom:118.407480pt;}
.y1e_c00075{bottom:145.277347pt;}
.y1d_c00075{bottom:172.173347pt;}
.y1c_c00075{bottom:199.693347pt;}
.y1b_c00075{bottom:227.213347pt;}
.y1a_c00075{bottom:254.093347pt;}
.y19_c00075{bottom:281.613347pt;}
.y18_c00075{bottom:308.813347pt;}
.y17_c00075{bottom:336.333347pt;}
.y16_c00075{bottom:363.200013pt;}
.y15_c00075{bottom:391.373347pt;}
.y14_c00075{bottom:418.573347pt;}
.y13_c00075{bottom:473.613347pt;}
.y12_c00075{bottom:500.813347pt;}
.y11_c00075{bottom:528.656013pt;}
.y10_c00075{bottom:555.856013pt;}
.yf_c00075{bottom:583.037347pt;}
.ye_c00075{bottom:610.573347pt;}
.yd_c00075{bottom:638.077347pt;}
.yc_c00075{bottom:665.613347pt;}
.yb_c00075{bottom:692.813347pt;}
.ya_c00075{bottom:720.317347pt;}
.y9_c00075{bottom:747.853347pt;}
.y8_c00075{bottom:802.240013pt;}
.y7_c00075{bottom:829.760013pt;}
.y6_c00075{bottom:856.640013pt;}
.y5_c00075{bottom:884.154680pt;}
.y4_c00075{bottom:911.376013pt;}
.y3_c00075{bottom:965.757347pt;}
.y2_c00075{bottom:993.613347pt;}
.y1_c00075{bottom:1060.813347pt;}
.h2_c00075{height:52.867187pt;}
.h6_c00075{height:57.054688pt;}
.h5_c00075{height:61.734896pt;}
.h3_c00075{height:62.812500pt;}
.h4_c00075{height:62.823167pt;}
.h1_c00075{height:1122.666667pt;}
.h0_c00075{height:1122.880013pt;}
.w1_c00075{width:793.333333pt;}
.w0_c00075{width:793.600013pt;}
.x0_c00075{left:0.000000pt;}
.x1_c00075{left:115.066680pt;}
.x6_c00075{left:115.986680pt;}
.x3_c00075{left:172.960013pt;}
.x7_c00075{left:209.853347pt;}
.x2_c00075{left:210.813347pt;}
.x4_c00075{left:382.573347pt;}
.x8_c00075{left:385.120013pt;}
.x5_c00075{left:401.746680pt;}
}





/* 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_c00076 {
    display:none;
  }
  .loading-indicator_c00076.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00076 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_c00076 { 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_c00076" -> "#page-container .classname_c00076")
 */
.pf_c00076 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00076 { /* 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_c00076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00076 { /* 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_c00076 { /* 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_c00076 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00076 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00076 {overflow:visible;}
  }
}
.c_c00076 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00076 { /* 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_c00076:after { /* webkit #35443 */
  content: '';
}
.t_c00076:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00076 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 */
}
.__c00076 { /* 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_c00076 { /* info for Javascript */
  display:none;
}
.l_c00076 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00076 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00076 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00076: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_c00076 {
    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_c00076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00076.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_c00076 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00076;src:url('chunks/assets/font_d6f4af6cfd81f402e2f26a6f.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.284668;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_c00076;src:url('chunks/assets/font_cccf6fc1dafebd2b1332bf9b.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00076{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);}
.v0_c00076{vertical-align:0.000000px;}
.ls13_c00076{letter-spacing:0.127440px;}
.ls16_c00076{letter-spacing:0.246960px;}
.ls14_c00076{letter-spacing:0.297360px;}
.ls4_c00076{letter-spacing:0.453120px;}
.ls15_c00076{letter-spacing:0.502680px;}
.ls3_c00076{letter-spacing:0.509760px;}
.lsf_c00076{letter-spacing:0.545160px;}
.ls2_c00076{letter-spacing:0.673920px;}
.lsc_c00076{letter-spacing:0.694980px;}
.ls12_c00076{letter-spacing:0.765180px;}
.ls10_c00076{letter-spacing:0.785880px;}
.ls6_c00076{letter-spacing:0.933660px;}
.ls11_c00076{letter-spacing:0.934560px;}
.lsa_c00076{letter-spacing:1.003860px;}
.ls7_c00076{letter-spacing:1.024920px;}
.lsd_c00076{letter-spacing:1.095120px;}
.lsb_c00076{letter-spacing:1.144260px;}
.ls1_c00076{letter-spacing:1.235520px;}
.ls8_c00076{letter-spacing:1.291680px;}
.ls9_c00076{letter-spacing:1.312740px;}
.lse_c00076{letter-spacing:1.316340px;}
.ls0_c00076{letter-spacing:1.464660px;}
.ls5_c00076{letter-spacing:1.474200px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{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__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00076{word-spacing:0.000000px;}
._0_c00076{margin-left:-3.473160px;}
._1_c00076{margin-left:-1.460160px;}
._4_c00076{width:1.296540px;}
._2_c00076{width:5.901240px;}
._3_c00076{width:6.952560px;}
.fc0_c00076{color:transparent;}
.fs3_c00076{font-size:58.800000px;}
.fs0_c00076{font-size:61.800000px;}
.fs1_c00076{font-size:70.200000px;}
.fs2_c00076{font-size:70.800000px;}
.y0_c00076{bottom:0.000000px;}
.y9_c00076{bottom:73.800015px;}
.y8_c00076{bottom:846.023115px;}
.y7_c00076{bottom:877.334415px;}
.y6_c00076{bottom:907.920015px;}
.y5_c00076{bottom:969.120015px;}
.y4_c00076{bottom:1031.055015px;}
.y3_c00076{bottom:1062.015015px;}
.y2_c00076{bottom:1092.600015px;}
.y1_c00076{bottom:1200.960015px;}
.h5_c00076{height:57.708984px;}
.h2_c00076{height:60.653320px;}
.h4_c00076{height:68.897461px;}
.h3_c00076{height:69.451758px;}
.h1_c00076{height:1263.000000px;}
.h0_c00076{height:1263.240015px;}
.w1_c00076{width:892.500000px;}
.w0_c00076{width:892.800000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:124.755000px;}
.x3_c00076{left:175.860000px;}
.x5_c00076{left:220.866600px;}
.x4_c00076{left:225.150000px;}
.x2_c00076{left:230.325000px;}
.x6_c00076{left:428.580000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls13_c00076{letter-spacing:0.113280pt;}
.ls16_c00076{letter-spacing:0.219520pt;}
.ls14_c00076{letter-spacing:0.264320pt;}
.ls4_c00076{letter-spacing:0.402773pt;}
.ls15_c00076{letter-spacing:0.446827pt;}
.ls3_c00076{letter-spacing:0.453120pt;}
.lsf_c00076{letter-spacing:0.484587pt;}
.ls2_c00076{letter-spacing:0.599040pt;}
.lsc_c00076{letter-spacing:0.617760pt;}
.ls12_c00076{letter-spacing:0.680160pt;}
.ls10_c00076{letter-spacing:0.698560pt;}
.ls6_c00076{letter-spacing:0.829920pt;}
.ls11_c00076{letter-spacing:0.830720pt;}
.lsa_c00076{letter-spacing:0.892320pt;}
.ls7_c00076{letter-spacing:0.911040pt;}
.lsd_c00076{letter-spacing:0.973440pt;}
.lsb_c00076{letter-spacing:1.017120pt;}
.ls1_c00076{letter-spacing:1.098240pt;}
.ls8_c00076{letter-spacing:1.148160pt;}
.ls9_c00076{letter-spacing:1.166880pt;}
.lse_c00076{letter-spacing:1.170080pt;}
.ls0_c00076{letter-spacing:1.301920pt;}
.ls5_c00076{letter-spacing:1.310400pt;}
.ws0_c00076{word-spacing:0.000000pt;}
._0_c00076{margin-left:-3.087253pt;}
._1_c00076{margin-left:-1.297920pt;}
._4_c00076{width:1.152480pt;}
._2_c00076{width:5.245547pt;}
._3_c00076{width:6.180053pt;}
.fs3_c00076{font-size:52.266667pt;}
.fs0_c00076{font-size:54.933333pt;}
.fs1_c00076{font-size:62.400000pt;}
.fs2_c00076{font-size:62.933333pt;}
.y0_c00076{bottom:0.000000pt;}
.y9_c00076{bottom:65.600013pt;}
.y8_c00076{bottom:752.020547pt;}
.y7_c00076{bottom:779.852813pt;}
.y6_c00076{bottom:807.040013pt;}
.y5_c00076{bottom:861.440013pt;}
.y4_c00076{bottom:916.493347pt;}
.y3_c00076{bottom:944.013347pt;}
.y2_c00076{bottom:971.200013pt;}
.y1_c00076{bottom:1067.520013pt;}
.h5_c00076{height:51.296875pt;}
.h2_c00076{height:53.914062pt;}
.h4_c00076{height:61.242187pt;}
.h3_c00076{height:61.734896pt;}
.h1_c00076{height:1122.666667pt;}
.h0_c00076{height:1122.880013pt;}
.w1_c00076{width:793.333333pt;}
.w0_c00076{width:793.600000pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:110.893333pt;}
.x3_c00076{left:156.320000pt;}
.x5_c00076{left:196.325867pt;}
.x4_c00076{left:200.133333pt;}
.x2_c00076{left:204.733333pt;}
.x6_c00076{left:380.960000pt;}
}





/* 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_c00077 {
    display:none;
  }
  .loading-indicator_c00077.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00077 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_c00077 { 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_c00077" -> "#page-container .classname_c00077")
 */
.pf_c00077 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00077 { /* 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_c00077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00077 { /* 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_c00077 { /* 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_c00077 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00077 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00077 {overflow:visible;}
  }
}
.c_c00077 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00077 { /* 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_c00077:after { /* webkit #35443 */
  content: '';
}
.t_c00077:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00077 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 */
}
.__c00077 { /* 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_c00077 { /* info for Javascript */
  display:none;
}
.l_c00077 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00077 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00077 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00077: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_c00077 {
    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_c00077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00077.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_c00077 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00077;src:url('chunks/assets/font_26f5333a8d06689416dc863a.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.311035;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_c00077;src:url('chunks/assets/font_6031628623fbaf763937ec7b.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.284668;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_c00077;src:url('chunks/assets/font_b985875307ac6b5cd396f07c.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:0.666000;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_c00077;src:url('chunks/assets/font_5003f953daa8c3dd82eeb46e.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;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:ff5_c00077;src:url('chunks/assets/font_0c066817ad522855a5a959af.woff2')format("woff");}.ff5_c00077{font-family:ff5_c00077;line-height:1.284180;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_c00077;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff6_c00077{font-family:ff6_c00077;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;}
.m2_c00077{transform:matrix(0.125868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125868,0.000000,0.000000,0.250000,0,0);}
.ma_c00077{transform:matrix(0.131018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131018,0.000000,0.000000,0.250000,0,0);}
.m4_c00077{transform:matrix(0.145239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145239,0.000000,0.000000,0.250000,0,0);}
.mc_c00077{transform:matrix(0.165939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165939,0.000000,0.000000,0.250000,0,0);}
.m10_c00077{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.m11_c00077{transform:matrix(0.230907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230907,0.000000,0.000000,0.250000,0,0);}
.m6_c00077{transform:matrix(0.236746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236746,0.000000,0.000000,0.250000,0,0);}
.md_c00077{transform:matrix(0.241293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241293,0.000000,0.000000,0.250000,0,0);}
.m7_c00077{transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);}
.m3_c00077{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.m0_c00077{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);}
.m5_c00077{transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);}
.m1_c00077{transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);}
.m8_c00077{transform:matrix(0.309308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309308,0.000000,0.000000,0.250000,0,0);}
.mb_c00077{transform:matrix(0.310697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310697,0.000000,0.000000,0.250000,0,0);}
.me_c00077{transform:matrix(0.506253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506253,0.000000,0.000000,0.250000,0,0);}
.mf_c00077{transform:matrix(0.664420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664420,0.000000,0.000000,0.250000,0,0);}
.m9_c00077{transform:matrix(0.976871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.976871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.976871,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.ls62_c00077{letter-spacing:-2.394000px;}
.ls64_c00077{letter-spacing:-2.310000px;}
.ls7b_c00077{letter-spacing:-2.205000px;}
.ls57_c00077{letter-spacing:-1.522800px;}
.ls65_c00077{letter-spacing:-1.083300px;}
.ls5a_c00077{letter-spacing:-1.037040px;}
.ls77_c00077{letter-spacing:-0.861000px;}
.ls5f_c00077{letter-spacing:-0.759240px;}
.ls73_c00077{letter-spacing:-0.725040px;}
.ls5c_c00077{letter-spacing:-0.656640px;}
.ls6f_c00077{letter-spacing:-0.526680px;}
.ls66_c00077{letter-spacing:-0.103500px;}
.ls58_c00077{letter-spacing:0.000000px;}
.ls72_c00077{letter-spacing:0.034200px;}
.ls6c_c00077{letter-spacing:0.054720px;}
.ls29_c00077{letter-spacing:0.355680px;}
.ls32_c00077{letter-spacing:0.396720px;}
.ls74_c00077{letter-spacing:0.478800px;}
.ls71_c00077{letter-spacing:0.485640px;}
.ls1a_c00077{letter-spacing:0.595080px;}
.ls49_c00077{letter-spacing:0.614100px;}
.ls1b_c00077{letter-spacing:0.615600px;}
.ls3b_c00077{letter-spacing:0.629280px;}
.ls11_c00077{letter-spacing:0.641700px;}
.ls2f_c00077{letter-spacing:0.642960px;}
.ls30_c00077{letter-spacing:0.703800px;}
.ls4e_c00077{letter-spacing:0.711360px;}
.ls7a_c00077{letter-spacing:0.720030px;}
.ls28_c00077{letter-spacing:0.725040px;}
.ls63_c00077{letter-spacing:0.731400px;}
.ls2a_c00077{letter-spacing:0.745560px;}
.ls6d_c00077{letter-spacing:0.752400px;}
.lsc_c00077{letter-spacing:0.779760px;}
.ls3f_c00077{letter-spacing:0.800280px;}
.ls4d_c00077{letter-spacing:0.807120px;}
.ls31_c00077{letter-spacing:0.828000px;}
.ls27_c00077{letter-spacing:0.834480px;}
.ls26_c00077{letter-spacing:0.841320px;}
.ls6e_c00077{letter-spacing:0.848160px;}
.ls67_c00077{letter-spacing:0.855600px;}
.ls76_c00077{letter-spacing:0.870030px;}
.ls1d_c00077{letter-spacing:0.916560px;}
.ls3c_c00077{letter-spacing:0.923400px;}
.ls45_c00077{letter-spacing:0.930240px;}
.ls4a_c00077{letter-spacing:0.966000px;}
.ls56_c00077{letter-spacing:0.991800px;}
.ls25_c00077{letter-spacing:1.005480px;}
.ls2c_c00077{letter-spacing:1.012320px;}
.ls20_c00077{letter-spacing:1.060200px;}
.ls46_c00077{letter-spacing:1.067040px;}
.ls1e_c00077{letter-spacing:1.149120px;}
.lsa_c00077{letter-spacing:1.169640px;}
.ls78_c00077{letter-spacing:1.170030px;}
.ls40_c00077{letter-spacing:1.176480px;}
.ls13_c00077{letter-spacing:1.193700px;}
.ls60_c00077{letter-spacing:1.203840px;}
.ls12_c00077{letter-spacing:1.207500px;}
.ls61_c00077{letter-spacing:1.210680px;}
.ls34_c00077{letter-spacing:1.238040px;}
.ls9_c00077{letter-spacing:1.265400px;}
.ls35_c00077{letter-spacing:1.279080px;}
.ls4b_c00077{letter-spacing:1.283400px;}
.ls39_c00077{letter-spacing:1.299600px;}
.ls15_c00077{letter-spacing:1.306440px;}
.ls47_c00077{letter-spacing:1.333800px;}
.ls33_c00077{letter-spacing:1.340640px;}
.ls68_c00077{letter-spacing:1.352400px;}
.ls8_c00077{letter-spacing:1.354320px;}
.lsf_c00077{letter-spacing:1.361160px;}
.ls6_c00077{letter-spacing:1.368000px;}
.ls70_c00077{letter-spacing:1.381680px;}
.ls16_c00077{letter-spacing:1.395360px;}
.ls69_c00077{letter-spacing:1.409040px;}
.ls1f_c00077{letter-spacing:1.436400px;}
.ls1c_c00077{letter-spacing:1.470600px;}
.ls19_c00077{letter-spacing:1.484280px;}
.ls52_c00077{letter-spacing:1.511640px;}
.ls24_c00077{letter-spacing:1.552680px;}
.ls53_c00077{letter-spacing:1.566360px;}
.ls6a_c00077{letter-spacing:1.586880px;}
.ls4c_c00077{letter-spacing:1.600560px;}
.ls23_c00077{letter-spacing:1.607400px;}
.ls3d_c00077{letter-spacing:1.641600px;}
.ls41_c00077{letter-spacing:1.648440px;}
.ls22_c00077{letter-spacing:1.655280px;}
.ls54_c00077{letter-spacing:1.668960px;}
.ls7_c00077{letter-spacing:1.675800px;}
.ls21_c00077{letter-spacing:1.785240px;}
.ls3e_c00077{letter-spacing:1.792080px;}
.ls1_c00077{letter-spacing:1.809600px;}
.ls2b_c00077{letter-spacing:1.819440px;}
.ls3a_c00077{letter-spacing:1.874160px;}
.ls55_c00077{letter-spacing:1.887840px;}
.ls48_c00077{letter-spacing:1.942560px;}
.ls5b_c00077{letter-spacing:1.955760px;}
.ls4f_c00077{letter-spacing:1.976760px;}
.ls14_c00077{letter-spacing:1.990440px;}
.ls50_c00077{letter-spacing:2.017800px;}
.ls18_c00077{letter-spacing:2.024640px;}
.ls38_c00077{letter-spacing:2.058840px;}
.ls59_c00077{letter-spacing:2.065500px;}
.ls51_c00077{letter-spacing:2.072520px;}
.ls43_c00077{letter-spacing:2.106720px;}
.ls2e_c00077{letter-spacing:2.113560px;}
.ls36_c00077{letter-spacing:2.127240px;}
.ls3_c00077{letter-spacing:2.181960px;}
.ls44_c00077{letter-spacing:2.195640px;}
.ls42_c00077{letter-spacing:2.229840px;}
.ls0_c00077{letter-spacing:2.251800px;}
.ls2d_c00077{letter-spacing:2.305080px;}
.lse_c00077{letter-spacing:2.318760px;}
.ls6b_c00077{letter-spacing:2.332440px;}
.ls10_c00077{letter-spacing:2.373480px;}
.ls37_c00077{letter-spacing:2.400840px;}
.ls75_c00077{letter-spacing:2.414520px;}
.ls17_c00077{letter-spacing:2.455560px;}
.ls4_c00077{letter-spacing:2.476080px;}
.lsb_c00077{letter-spacing:2.489760px;}
.ls5d_c00077{letter-spacing:2.530800px;}
.ls79_c00077{letter-spacing:2.580000px;}
.lsd_c00077{letter-spacing:2.804400px;}
.ls2_c00077{letter-spacing:2.824920px;}
.ls5_c00077{letter-spacing:2.927520px;}
.ls5e_c00077{letter-spacing:3.420000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{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__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00077{word-spacing:0.000000px;}
.ws1_c00077{word-spacing:90.561600px;}
.ws0_c00077{word-spacing:164.979360px;}
._1a_c00077{margin-left:-20.667000px;}
._1c_c00077{margin-left:-16.283880px;}
._18_c00077{margin-left:-15.061680px;}
._a_c00077{margin-left:-13.925040px;}
._14_c00077{margin-left:-11.970000px;}
._13_c00077{margin-left:-10.690920px;}
._5_c00077{margin-left:-4.557600px;}
._3_c00077{margin-left:-2.380320px;}
._4_c00077{margin-left:-1.210680px;}
._1_c00077{width:2.629200px;}
._19_c00077{width:4.832880px;}
._12_c00077{width:5.881920px;}
._0_c00077{width:7.568400px;}
._16_c00077{width:9.155400px;}
._2_c00077{width:11.463840px;}
._20_c00077{width:14.032200px;}
._1f_c00077{width:15.133560px;}
._1e_c00077{width:18.663480px;}
._10_c00077{width:21.005640px;}
._1d_c00077{width:23.262840px;}
._11_c00077{width:24.507720px;}
._15_c00077{width:25.930440px;}
._6_c00077{width:27.151200px;}
._7_c00077{width:28.796400px;}
._9_c00077{width:29.938680px;}
._f_c00077{width:31.035900px;}
._17_c00077{width:32.705400px;}
._8_c00077{width:34.371000px;}
._1b_c00077{width:36.908640px;}
._b_c00077{width:45.417600px;}
._c_c00077{width:47.025000px;}
._e_c00077{width:49.220640px;}
._d_c00077{width:51.881400px;}
._22_c00077{width:87.907680px;}
._21_c00077{width:88.920000px;}
._23_c00077{width:93.229200px;}
.fc0_c00077{color:transparent;}
.fsa_c00077{font-size:14.400600px;}
.fs6_c00077{font-size:17.400600px;}
.fs8_c00077{font-size:23.400600px;}
.fs7_c00077{font-size:24.600000px;}
.fsb_c00077{font-size:25.800600px;}
.fsc_c00077{font-size:48.600000px;}
.fs9_c00077{font-size:51.600000px;}
.fs3_c00077{font-size:51.840000px;}
.fsd_c00077{font-size:63.000000px;}
.fs5_c00077{font-size:66.000000px;}
.fs2_c00077{font-size:68.400000px;}
.fs4_c00077{font-size:69.000000px;}
.fs1_c00077{font-size:69.600000px;}
.fs0_c00077{font-size:81.000000px;}
.y0_c00077{bottom:0.000000px;}
.y25_c00077{bottom:66.600000px;}
.y24_c00077{bottom:150.127200px;}
.y23_c00077{bottom:180.360000px;}
.y19_c00077{bottom:210.959700px;}
.y22_c00077{bottom:210.975000px;}
.y21_c00077{bottom:220.335000px;}
.y1f_c00077{bottom:241.926900px;}
.y20_c00077{bottom:241.935000px;}
.y1e_c00077{bottom:272.903100px;}
.y1d_c00077{bottom:303.495000px;}
.y1b_c00077{bottom:334.079700px;}
.y1c_c00077{bottom:334.095000px;}
.y1a_c00077{bottom:364.671600px;}
.y18_c00077{bottom:395.280600px;}
.y17_c00077{bottom:426.607800px;}
.y16_c00077{bottom:457.935000px;}
.y15_c00077{bottom:488.535000px;}
.y14_c00077{bottom:519.486900px;}
.yc_c00077{bottom:550.095000px;}
.y13_c00077{bottom:550.455000px;}
.y12_c00077{bottom:581.400000px;}
.y11_c00077{bottom:581.406000px;}
.y10_c00077{bottom:612.006900px;}
.yf_c00077{bottom:642.975000px;}
.ye_c00077{bottom:673.566900px;}
.yd_c00077{bottom:704.535000px;}
.yb_c00077{bottom:735.135000px;}
.ya_c00077{bottom:765.720000px;}
.y9_c00077{bottom:796.335000px;}
.y8_c00077{bottom:827.272800px;}
.y7_c00077{bottom:858.600000px;}
.y5_c00077{bottom:889.199100px;}
.y6_c00077{bottom:889.200000px;}
.y4_c00077{bottom:950.400000px;}
.y3_c00077{bottom:981.375000px;}
.y2_c00077{bottom:1041.855000px;}
.y1_c00077{bottom:1110.600000px;}
.h12_c00077{height:14.133401px;}
.hd_c00077{height:18.148282px;}
.he_c00077{height:24.143555px;}
.hf_c00077{height:24.406095px;}
.h10_c00077{height:24.792187px;}
.h13_c00077{height:26.909220px;}
.h6_c00077{height:34.525440px;}
.h11_c00077{height:52.003125px;}
.h14_c00077{height:61.831055px;}
.h4_c00077{height:67.130859px;}
.h5_c00077{height:67.134459px;}
.h9_c00077{height:67.163259px;}
.hb_c00077{height:67.192059px;}
.hc_c00077{height:67.686035px;}
.h7_c00077{height:67.719727px;}
.h8_c00077{height:68.835938px;}
.h3_c00077{height:70.143750px;}
.ha_c00077{height:71.339063px;}
.h2_c00077{height:81.632812px;}
.h1_c00077{height:1263.000000px;}
.h0_c00077{height:1263.240000px;}
.w1_c00077{width:892.500000px;}
.w0_c00077{width:892.800000px;}
.x0_c00077{left:0.000000px;}
.x1_c00077{left:125.415000px;}
.x4_c00077{left:126.485100px;}
.x9_c00077{left:143.085000px;}
.x3_c00077{left:166.140000px;}
.x1c_c00077{left:186.815700px;}
.xc_c00077{left:188.224200px;}
.x6_c00077{left:189.330000px;}
.x1a_c00077{left:190.410000px;}
.x11_c00077{left:217.350000px;}
.x8_c00077{left:224.820000px;}
.xb_c00077{left:231.795000px;}
.x12_c00077{left:246.855000px;}
.x13_c00077{left:320.985000px;}
.x10_c00077{left:325.440000px;}
.xa_c00077{left:341.640000px;}
.x14_c00077{left:369.555000px;}
.x15_c00077{left:390.615000px;}
.x16_c00077{left:426.630000px;}
.x1d_c00077{left:428.940000px;}
.x17_c00077{left:437.820000px;}
.xe_c00077{left:473.535000px;}
.x1b_c00077{left:479.730000px;}
.x5_c00077{left:485.280000px;}
.xf_c00077{left:490.485000px;}
.x18_c00077{left:494.805000px;}
.x7_c00077{left:521.415000px;}
.x19_c00077{left:523.410000px;}
.xd_c00077{left:528.510000px;}
.x2_c00077{left:668.805000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls62_c00077{letter-spacing:-2.128000pt;}
.ls64_c00077{letter-spacing:-2.053333pt;}
.ls7b_c00077{letter-spacing:-1.960000pt;}
.ls57_c00077{letter-spacing:-1.353600pt;}
.ls65_c00077{letter-spacing:-0.962933pt;}
.ls5a_c00077{letter-spacing:-0.921813pt;}
.ls77_c00077{letter-spacing:-0.765333pt;}
.ls5f_c00077{letter-spacing:-0.674880pt;}
.ls73_c00077{letter-spacing:-0.644480pt;}
.ls5c_c00077{letter-spacing:-0.583680pt;}
.ls6f_c00077{letter-spacing:-0.468160pt;}
.ls66_c00077{letter-spacing:-0.092000pt;}
.ls58_c00077{letter-spacing:0.000000pt;}
.ls72_c00077{letter-spacing:0.030400pt;}
.ls6c_c00077{letter-spacing:0.048640pt;}
.ls29_c00077{letter-spacing:0.316160pt;}
.ls32_c00077{letter-spacing:0.352640pt;}
.ls74_c00077{letter-spacing:0.425600pt;}
.ls71_c00077{letter-spacing:0.431680pt;}
.ls1a_c00077{letter-spacing:0.528960pt;}
.ls49_c00077{letter-spacing:0.545867pt;}
.ls1b_c00077{letter-spacing:0.547200pt;}
.ls3b_c00077{letter-spacing:0.559360pt;}
.ls11_c00077{letter-spacing:0.570400pt;}
.ls2f_c00077{letter-spacing:0.571520pt;}
.ls30_c00077{letter-spacing:0.625600pt;}
.ls4e_c00077{letter-spacing:0.632320pt;}
.ls7a_c00077{letter-spacing:0.640027pt;}
.ls28_c00077{letter-spacing:0.644480pt;}
.ls63_c00077{letter-spacing:0.650133pt;}
.ls2a_c00077{letter-spacing:0.662720pt;}
.ls6d_c00077{letter-spacing:0.668800pt;}
.lsc_c00077{letter-spacing:0.693120pt;}
.ls3f_c00077{letter-spacing:0.711360pt;}
.ls4d_c00077{letter-spacing:0.717440pt;}
.ls31_c00077{letter-spacing:0.736000pt;}
.ls27_c00077{letter-spacing:0.741760pt;}
.ls26_c00077{letter-spacing:0.747840pt;}
.ls6e_c00077{letter-spacing:0.753920pt;}
.ls67_c00077{letter-spacing:0.760533pt;}
.ls76_c00077{letter-spacing:0.773360pt;}
.ls1d_c00077{letter-spacing:0.814720pt;}
.ls3c_c00077{letter-spacing:0.820800pt;}
.ls45_c00077{letter-spacing:0.826880pt;}
.ls4a_c00077{letter-spacing:0.858667pt;}
.ls56_c00077{letter-spacing:0.881600pt;}
.ls25_c00077{letter-spacing:0.893760pt;}
.ls2c_c00077{letter-spacing:0.899840pt;}
.ls20_c00077{letter-spacing:0.942400pt;}
.ls46_c00077{letter-spacing:0.948480pt;}
.ls1e_c00077{letter-spacing:1.021440pt;}
.lsa_c00077{letter-spacing:1.039680pt;}
.ls78_c00077{letter-spacing:1.040027pt;}
.ls40_c00077{letter-spacing:1.045760pt;}
.ls13_c00077{letter-spacing:1.061067pt;}
.ls60_c00077{letter-spacing:1.070080pt;}
.ls12_c00077{letter-spacing:1.073333pt;}
.ls61_c00077{letter-spacing:1.076160pt;}
.ls34_c00077{letter-spacing:1.100480pt;}
.ls9_c00077{letter-spacing:1.124800pt;}
.ls35_c00077{letter-spacing:1.136960pt;}
.ls4b_c00077{letter-spacing:1.140800pt;}
.ls39_c00077{letter-spacing:1.155200pt;}
.ls15_c00077{letter-spacing:1.161280pt;}
.ls47_c00077{letter-spacing:1.185600pt;}
.ls33_c00077{letter-spacing:1.191680pt;}
.ls68_c00077{letter-spacing:1.202133pt;}
.ls8_c00077{letter-spacing:1.203840pt;}
.lsf_c00077{letter-spacing:1.209920pt;}
.ls6_c00077{letter-spacing:1.216000pt;}
.ls70_c00077{letter-spacing:1.228160pt;}
.ls16_c00077{letter-spacing:1.240320pt;}
.ls69_c00077{letter-spacing:1.252480pt;}
.ls1f_c00077{letter-spacing:1.276800pt;}
.ls1c_c00077{letter-spacing:1.307200pt;}
.ls19_c00077{letter-spacing:1.319360pt;}
.ls52_c00077{letter-spacing:1.343680pt;}
.ls24_c00077{letter-spacing:1.380160pt;}
.ls53_c00077{letter-spacing:1.392320pt;}
.ls6a_c00077{letter-spacing:1.410560pt;}
.ls4c_c00077{letter-spacing:1.422720pt;}
.ls23_c00077{letter-spacing:1.428800pt;}
.ls3d_c00077{letter-spacing:1.459200pt;}
.ls41_c00077{letter-spacing:1.465280pt;}
.ls22_c00077{letter-spacing:1.471360pt;}
.ls54_c00077{letter-spacing:1.483520pt;}
.ls7_c00077{letter-spacing:1.489600pt;}
.ls21_c00077{letter-spacing:1.586880pt;}
.ls3e_c00077{letter-spacing:1.592960pt;}
.ls1_c00077{letter-spacing:1.608533pt;}
.ls2b_c00077{letter-spacing:1.617280pt;}
.ls3a_c00077{letter-spacing:1.665920pt;}
.ls55_c00077{letter-spacing:1.678080pt;}
.ls48_c00077{letter-spacing:1.726720pt;}
.ls5b_c00077{letter-spacing:1.738453pt;}
.ls4f_c00077{letter-spacing:1.757120pt;}
.ls14_c00077{letter-spacing:1.769280pt;}
.ls50_c00077{letter-spacing:1.793600pt;}
.ls18_c00077{letter-spacing:1.799680pt;}
.ls38_c00077{letter-spacing:1.830080pt;}
.ls59_c00077{letter-spacing:1.836000pt;}
.ls51_c00077{letter-spacing:1.842240pt;}
.ls43_c00077{letter-spacing:1.872640pt;}
.ls2e_c00077{letter-spacing:1.878720pt;}
.ls36_c00077{letter-spacing:1.890880pt;}
.ls3_c00077{letter-spacing:1.939520pt;}
.ls44_c00077{letter-spacing:1.951680pt;}
.ls42_c00077{letter-spacing:1.982080pt;}
.ls0_c00077{letter-spacing:2.001600pt;}
.ls2d_c00077{letter-spacing:2.048960pt;}
.lse_c00077{letter-spacing:2.061120pt;}
.ls6b_c00077{letter-spacing:2.073280pt;}
.ls10_c00077{letter-spacing:2.109760pt;}
.ls37_c00077{letter-spacing:2.134080pt;}
.ls75_c00077{letter-spacing:2.146240pt;}
.ls17_c00077{letter-spacing:2.182720pt;}
.ls4_c00077{letter-spacing:2.200960pt;}
.lsb_c00077{letter-spacing:2.213120pt;}
.ls5d_c00077{letter-spacing:2.249600pt;}
.ls79_c00077{letter-spacing:2.293333pt;}
.lsd_c00077{letter-spacing:2.492800pt;}
.ls2_c00077{letter-spacing:2.511040pt;}
.ls5_c00077{letter-spacing:2.602240pt;}
.ls5e_c00077{letter-spacing:3.040000pt;}
.ws2_c00077{word-spacing:0.000000pt;}
.ws1_c00077{word-spacing:80.499200pt;}
.ws0_c00077{word-spacing:146.648320pt;}
._1a_c00077{margin-left:-18.370667pt;}
._1c_c00077{margin-left:-14.474560pt;}
._18_c00077{margin-left:-13.388160pt;}
._a_c00077{margin-left:-12.377813pt;}
._14_c00077{margin-left:-10.640000pt;}
._13_c00077{margin-left:-9.503040pt;}
._5_c00077{margin-left:-4.051200pt;}
._3_c00077{margin-left:-2.115840pt;}
._4_c00077{margin-left:-1.076160pt;}
._1_c00077{width:2.337067pt;}
._19_c00077{width:4.295893pt;}
._12_c00077{width:5.228373pt;}
._0_c00077{width:6.727467pt;}
._16_c00077{width:8.138133pt;}
._2_c00077{width:10.190080pt;}
._20_c00077{width:12.473067pt;}
._1f_c00077{width:13.452053pt;}
._1e_c00077{width:16.589760pt;}
._10_c00077{width:18.671680pt;}
._1d_c00077{width:20.678080pt;}
._11_c00077{width:21.784640pt;}
._15_c00077{width:23.049280pt;}
._6_c00077{width:24.134400pt;}
._7_c00077{width:25.596800pt;}
._9_c00077{width:26.612160pt;}
._f_c00077{width:27.587467pt;}
._17_c00077{width:29.071467pt;}
._8_c00077{width:30.552000pt;}
._1b_c00077{width:32.807680pt;}
._b_c00077{width:40.371200pt;}
._c_c00077{width:41.800000pt;}
._e_c00077{width:43.751680pt;}
._d_c00077{width:46.116800pt;}
._22_c00077{width:78.140160pt;}
._21_c00077{width:79.040000pt;}
._23_c00077{width:82.870400pt;}
.fsa_c00077{font-size:12.800533pt;}
.fs6_c00077{font-size:15.467200pt;}
.fs8_c00077{font-size:20.800533pt;}
.fs7_c00077{font-size:21.866667pt;}
.fsb_c00077{font-size:22.933867pt;}
.fsc_c00077{font-size:43.200000pt;}
.fs9_c00077{font-size:45.866667pt;}
.fs3_c00077{font-size:46.080000pt;}
.fsd_c00077{font-size:56.000000pt;}
.fs5_c00077{font-size:58.666667pt;}
.fs2_c00077{font-size:60.800000pt;}
.fs4_c00077{font-size:61.333333pt;}
.fs1_c00077{font-size:61.866667pt;}
.fs0_c00077{font-size:72.000000pt;}
.y0_c00077{bottom:0.000000pt;}
.y25_c00077{bottom:59.200000pt;}
.y24_c00077{bottom:133.446400pt;}
.y23_c00077{bottom:160.320000pt;}
.y19_c00077{bottom:187.519733pt;}
.y22_c00077{bottom:187.533333pt;}
.y21_c00077{bottom:195.853333pt;}
.y1f_c00077{bottom:215.046133pt;}
.y20_c00077{bottom:215.053333pt;}
.y1e_c00077{bottom:242.580533pt;}
.y1d_c00077{bottom:269.773333pt;}
.y1b_c00077{bottom:296.959733pt;}
.y1c_c00077{bottom:296.973333pt;}
.y1a_c00077{bottom:324.152533pt;}
.y18_c00077{bottom:351.360533pt;}
.y17_c00077{bottom:379.206933pt;}
.y16_c00077{bottom:407.053333pt;}
.y15_c00077{bottom:434.253333pt;}
.y14_c00077{bottom:461.766133pt;}
.yc_c00077{bottom:488.973333pt;}
.y13_c00077{bottom:489.293333pt;}
.y12_c00077{bottom:516.800000pt;}
.y11_c00077{bottom:516.805333pt;}
.y10_c00077{bottom:544.006133pt;}
.yf_c00077{bottom:571.533333pt;}
.ye_c00077{bottom:598.726133pt;}
.yd_c00077{bottom:626.253333pt;}
.yb_c00077{bottom:653.453333pt;}
.ya_c00077{bottom:680.640000pt;}
.y9_c00077{bottom:707.853333pt;}
.y8_c00077{bottom:735.353600pt;}
.y7_c00077{bottom:763.200000pt;}
.y5_c00077{bottom:790.399200pt;}
.y6_c00077{bottom:790.400000pt;}
.y4_c00077{bottom:844.800000pt;}
.y3_c00077{bottom:872.333333pt;}
.y2_c00077{bottom:926.093333pt;}
.y1_c00077{bottom:987.200000pt;}
.h12_c00077{height:12.563023pt;}
.hd_c00077{height:16.131806pt;}
.he_c00077{height:21.460937pt;}
.hf_c00077{height:21.694306pt;}
.h10_c00077{height:22.037500pt;}
.h13_c00077{height:23.919306pt;}
.h6_c00077{height:30.689280pt;}
.h11_c00077{height:46.225000pt;}
.h14_c00077{height:54.960938pt;}
.h4_c00077{height:59.671875pt;}
.h5_c00077{height:59.675075pt;}
.h9_c00077{height:59.700675pt;}
.hb_c00077{height:59.726275pt;}
.hc_c00077{height:60.165365pt;}
.h7_c00077{height:60.195312pt;}
.h8_c00077{height:61.187500pt;}
.h3_c00077{height:62.350000pt;}
.ha_c00077{height:63.412500pt;}
.h2_c00077{height:72.562500pt;}
.h1_c00077{height:1122.666667pt;}
.h0_c00077{height:1122.880000pt;}
.w1_c00077{width:793.333333pt;}
.w0_c00077{width:793.600000pt;}
.x0_c00077{left:0.000000pt;}
.x1_c00077{left:111.480000pt;}
.x4_c00077{left:112.431200pt;}
.x9_c00077{left:127.186667pt;}
.x3_c00077{left:147.680000pt;}
.x1c_c00077{left:166.058400pt;}
.xc_c00077{left:167.310400pt;}
.x6_c00077{left:168.293333pt;}
.x1a_c00077{left:169.253333pt;}
.x11_c00077{left:193.200000pt;}
.x8_c00077{left:199.840000pt;}
.xb_c00077{left:206.040000pt;}
.x12_c00077{left:219.426667pt;}
.x13_c00077{left:285.320000pt;}
.x10_c00077{left:289.280000pt;}
.xa_c00077{left:303.680000pt;}
.x14_c00077{left:328.493333pt;}
.x15_c00077{left:347.213333pt;}
.x16_c00077{left:379.226667pt;}
.x1d_c00077{left:381.280000pt;}
.x17_c00077{left:389.173333pt;}
.xe_c00077{left:420.920000pt;}
.x1b_c00077{left:426.426667pt;}
.x5_c00077{left:431.360000pt;}
.xf_c00077{left:435.986667pt;}
.x18_c00077{left:439.826667pt;}
.x7_c00077{left:463.480000pt;}
.x19_c00077{left:465.253333pt;}
.xd_c00077{left:469.786667pt;}
.x2_c00077{left:594.493333pt;}
}





/* 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_c00078 {
    display:none;
  }
  .loading-indicator_c00078.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00078 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_c00078 { 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_c00078" -> "#page-container .classname_c00078")
 */
.pf_c00078 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00078 { /* 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_c00078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00078 { /* 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_c00078 { /* 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_c00078 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00078 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00078 {overflow:visible;}
  }
}
.c_c00078 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00078 { /* 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_c00078:after { /* webkit #35443 */
  content: '';
}
.t_c00078:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00078 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 */
}
.__c00078 { /* 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_c00078 { /* info for Javascript */
  display:none;
}
.l_c00078 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00078 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00078 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00078: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_c00078 {
    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_c00078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00078.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_c00078 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00078;src:url('chunks/assets/font_5fd54a76de4526c867d7d48e.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.284668;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_c00078;src:url('chunks/assets/font_f357ad3c35d1636ca63e8635.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.284180;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_c00078;src:url('chunks/assets/font_0aaf9dc98658f4d0bf3b5824.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:0.666000;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_c00078;src:url('chunks/assets/font_987757c815f6ce039cc68e36.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;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;}
.mf_c00078{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.m3_c00078{transform:matrix(0.140792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140792,0.000000,0.000000,0.250000,0,0);}
.md_c00078{transform:matrix(0.146617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146617,0.000000,0.000000,0.250000,0,0);}
.m11_c00078{transform:matrix(0.205252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205252,0.000000,0.000000,0.250000,0,0);}
.m4_c00078{transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);}
.mc_c00078{transform:matrix(0.234130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234130,0.000000,0.000000,0.250000,0,0);}
.m8_c00078{transform:matrix(0.235293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235293,0.000000,0.000000,0.250000,0,0);}
.mb_c00078{transform:matrix(0.240439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240439,0.000000,0.000000,0.250000,0,0);}
.ma_c00078{transform:matrix(0.242816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242816,0.000000,0.000000,0.250000,0,0);}
.m5_c00078{transform:matrix(0.243857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243857,0.000000,0.000000,0.250000,0,0);}
.m1_c00078{transform:matrix(0.247026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247026,0.000000,0.000000,0.250000,0,0);}
.m2_c00078{transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);}
.m9_c00078{transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);}
.m0_c00078{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);}
.m6_c00078{transform:matrix(0.253327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253327,0.000000,0.000000,0.250000,0,0);}
.m7_c00078{transform:matrix(0.269276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269276,0.000000,0.000000,0.250000,0,0);}
.me_c00078{transform:matrix(0.286932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286932,0.000000,0.000000,0.250000,0,0);}
.m10_c00078{transform:matrix(0.303121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303121,0.000000,0.000000,0.250000,0,0);}
.m12_c00078{transform:matrix(0.389381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389381,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls78_c00078{letter-spacing:-2.583000px;}
.ls63_c00078{letter-spacing:-2.457000px;}
.ls62_c00078{letter-spacing:-2.035800px;}
.ls61_c00078{letter-spacing:-1.769040px;}
.ls77_c00078{letter-spacing:-1.520280px;}
.ls72_c00078{letter-spacing:-1.081080px;}
.ls6b_c00078{letter-spacing:-0.989820px;}
.ls6c_c00078{letter-spacing:-0.849420px;}
.ls64_c00078{letter-spacing:-0.765180px;}
.ls6d_c00078{letter-spacing:-0.575640px;}
.ls79_c00078{letter-spacing:-0.533520px;}
.ls66_c00078{letter-spacing:-0.512460px;}
.ls7e_c00078{letter-spacing:-0.504021px;}
.ls7b_c00078{letter-spacing:-0.338580px;}
.ls76_c00078{letter-spacing:-0.329940px;}
.ls73_c00078{letter-spacing:-0.294840px;}
.ls6f_c00078{letter-spacing:-0.196560px;}
.ls60_c00078{letter-spacing:-0.175500px;}
.ls7a_c00078{letter-spacing:-0.112320px;}
.ls6a_c00078{letter-spacing:-0.063180px;}
.ls68_c00078{letter-spacing:-0.028080px;}
.ls69_c00078{letter-spacing:0.000000px;}
.ls39_c00078{letter-spacing:0.105300px;}
.ls16_c00078{letter-spacing:0.119340px;}
.ls49_c00078{letter-spacing:0.126360px;}
.ls74_c00078{letter-spacing:0.175500px;}
.ls23_c00078{letter-spacing:0.189540px;}
.ls1e_c00078{letter-spacing:0.210600px;}
.ls4e_c00078{letter-spacing:0.238680px;}
.ls3_c00078{letter-spacing:0.245700px;}
.ls10_c00078{letter-spacing:0.266760px;}
.ls75_c00078{letter-spacing:0.273780px;}
.ls1b_c00078{letter-spacing:0.287820px;}
.ls71_c00078{letter-spacing:0.301860px;}
.ls19_c00078{letter-spacing:0.322920px;}
.ls7c_c00078{letter-spacing:0.331500px;}
.ls57_c00078{letter-spacing:0.372060px;}
.ls33_c00078{letter-spacing:0.386100px;}
.lsa_c00078{letter-spacing:0.393120px;}
.ls65_c00078{letter-spacing:0.400140px;}
.ls4_c00078{letter-spacing:0.407160px;}
.ls2d_c00078{letter-spacing:0.428220px;}
.ls58_c00078{letter-spacing:0.435240px;}
.ls4f_c00078{letter-spacing:0.442260px;}
.ls15_c00078{letter-spacing:0.449280px;}
.ls3e_c00078{letter-spacing:0.519480px;}
.ls8_c00078{letter-spacing:0.526500px;}
.ls12_c00078{letter-spacing:0.561600px;}
.ls70_c00078{letter-spacing:0.575640px;}
.lsb_c00078{letter-spacing:0.589680px;}
.ls43_c00078{letter-spacing:0.596700px;}
.ls35_c00078{letter-spacing:0.610740px;}
.ls21_c00078{letter-spacing:0.631800px;}
.ls30_c00078{letter-spacing:0.659880px;}
.ls2c_c00078{letter-spacing:0.673920px;}
.ls3b_c00078{letter-spacing:0.694980px;}
.ls11_c00078{letter-spacing:0.702000px;}
.ls22_c00078{letter-spacing:0.709020px;}
.ls6_c00078{letter-spacing:0.730080px;}
.ls67_c00078{letter-spacing:0.737100px;}
.ls45_c00078{letter-spacing:0.793260px;}
.ls26_c00078{letter-spacing:0.807300px;}
.ls54_c00078{letter-spacing:0.828360px;}
.lsc_c00078{letter-spacing:0.835380px;}
.ls2a_c00078{letter-spacing:0.849420px;}
.lsf_c00078{letter-spacing:0.870480px;}
.ls4a_c00078{letter-spacing:0.905580px;}
.ls20_c00078{letter-spacing:0.926640px;}
.ls36_c00078{letter-spacing:0.940680px;}
.ls2e_c00078{letter-spacing:0.975780px;}
.ls34_c00078{letter-spacing:0.982800px;}
.ls3c_c00078{letter-spacing:0.989820px;}
.ls51_c00078{letter-spacing:0.996840px;}
.ls3a_c00078{letter-spacing:1.017900px;}
.ls9_c00078{letter-spacing:1.031940px;}
.ls1f_c00078{letter-spacing:1.045980px;}
.ls32_c00078{letter-spacing:1.053000px;}
.ls29_c00078{letter-spacing:1.060020px;}
.ls2_c00078{letter-spacing:1.081080px;}
.ls27_c00078{letter-spacing:1.088100px;}
.ls18_c00078{letter-spacing:1.095120px;}
.ls2f_c00078{letter-spacing:1.109160px;}
.ls4d_c00078{letter-spacing:1.130220px;}
.ls4c_c00078{letter-spacing:1.151280px;}
.ls44_c00078{letter-spacing:1.158300px;}
.ls0_c00078{letter-spacing:1.165320px;}
.ls14_c00078{letter-spacing:1.172340px;}
.ls17_c00078{letter-spacing:1.207440px;}
.ls5b_c00078{letter-spacing:1.214460px;}
.ls47_c00078{letter-spacing:1.228500px;}
.ls5d_c00078{letter-spacing:1.235520px;}
.ls52_c00078{letter-spacing:1.242540px;}
.ls5_c00078{letter-spacing:1.249560px;}
.lse_c00078{letter-spacing:1.256580px;}
.ls4b_c00078{letter-spacing:1.270620px;}
.ls42_c00078{letter-spacing:1.277640px;}
.ls7_c00078{letter-spacing:1.284660px;}
.ls38_c00078{letter-spacing:1.291680px;}
.ls55_c00078{letter-spacing:1.298700px;}
.ls48_c00078{letter-spacing:1.312740px;}
.ls5a_c00078{letter-spacing:1.347840px;}
.ls37_c00078{letter-spacing:1.382940px;}
.ls5e_c00078{letter-spacing:1.411020px;}
.lsd_c00078{letter-spacing:1.425060px;}
.ls46_c00078{letter-spacing:1.446120px;}
.ls25_c00078{letter-spacing:1.453140px;}
.ls7d_c00078{letter-spacing:1.470030px;}
.ls1c_c00078{letter-spacing:1.481220px;}
.ls2b_c00078{letter-spacing:1.488240px;}
.ls1d_c00078{letter-spacing:1.502280px;}
.ls5c_c00078{letter-spacing:1.544400px;}
.ls28_c00078{letter-spacing:1.572480px;}
.ls56_c00078{letter-spacing:1.579500px;}
.ls41_c00078{letter-spacing:1.663740px;}
.ls40_c00078{letter-spacing:1.670760px;}
.ls24_c00078{letter-spacing:1.684800px;}
.ls59_c00078{letter-spacing:1.719900px;}
.ls53_c00078{letter-spacing:1.783080px;}
.ls3d_c00078{letter-spacing:1.790100px;}
.ls13_c00078{letter-spacing:1.811160px;}
.ls50_c00078{letter-spacing:1.860300px;}
.ls3f_c00078{letter-spacing:2.407860px;}
.ls1a_c00078{letter-spacing:2.562300px;}
.ls5f_c00078{letter-spacing:2.744280px;}
.ls31_c00078{letter-spacing:2.871180px;}
.ls1_c00078{letter-spacing:3.208140px;}
.ls6e_c00078{letter-spacing:3.510000px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{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__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00078{word-spacing:0.000000px;}
.ws3_c00078{word-spacing:54.720900px;}
.ws1_c00078{word-spacing:89.617320px;}
.ws2_c00078{word-spacing:91.007280px;}
.ws0_c00078{word-spacing:91.231920px;}
._4_c00078{margin-left:-18.827640px;}
._11_c00078{margin-left:-16.489980px;}
._e_c00078{margin-left:-14.727960px;}
._f_c00078{margin-left:-12.916800px;}
._1c_c00078{margin-left:-11.147760px;}
._10_c00078{margin-left:-9.919260px;}
._1f_c00078{margin-left:-8.594400px;}
._17_c00078{margin-left:-7.525440px;}
._21_c00078{margin-left:-4.226040px;}
._19_c00078{margin-left:-2.457000px;}
._12_c00078{margin-left:-1.235520px;}
._1b_c00078{width:1.038960px;}
._5_c00078{width:2.611440px;}
._20_c00078{width:3.834360px;}
._7_c00078{width:5.672160px;}
._18_c00078{width:6.830460px;}
._1a_c00078{width:8.662680px;}
._6_c00078{width:9.898200px;}
._27_c00078{width:11.653200px;}
._9_c00078{width:12.818520px;}
._8_c00078{width:14.180400px;}
._1_c00078{width:15.458040px;}
._a_c00078{width:16.848000px;}
._26_c00078{width:19.473480px;}
._0_c00078{width:20.498400px;}
._13_c00078{width:22.400820px;}
._2_c00078{width:23.938200px;}
._d_c00078{width:24.963120px;}
._b_c00078{width:26.451360px;}
._3_c00078{width:27.553500px;}
._14_c00078{width:29.336580px;}
._c_c00078{width:30.965220px;}
._15_c00078{width:33.822360px;}
._1d_c00078{width:34.847280px;}
._16_c00078{width:36.363600px;}
._1e_c00078{width:39.143520px;}
._25_c00078{width:63.467340px;}
._23_c00078{width:64.920960px;}
._24_c00078{width:68.108040px;}
._22_c00078{width:70.200000px;}
._28_c00078{width:185.764492px;}
.fc0_c00078{color:transparent;}
.fsb_c00078{font-size:14.400600px;}
.fs7_c00078{font-size:23.040000px;}
.fsd_c00078{font-size:27.600000px;}
.fsa_c00078{font-size:29.400600px;}
.fs8_c00078{font-size:31.200000px;}
.fsc_c00078{font-size:41.400600px;}
.fs9_c00078{font-size:51.000000px;}
.fs2_c00078{font-size:54.720000px;}
.fs0_c00078{font-size:59.400000px;}
.fs4_c00078{font-size:67.200000px;}
.fs3_c00078{font-size:69.000000px;}
.fs1_c00078{font-size:70.200000px;}
.fs5_c00078{font-size:73.800000px;}
.fse_c00078{font-size:162.720000px;}
.fs6_c00078{font-size:253.440000px;}
.y0_c00078{bottom:0.000000px;}
.y2e_c00078{bottom:65.895006px;}
.y2d_c00078{bottom:158.401806px;}
.y35_c00078{bottom:164.160006px;}
.y2c_c00078{bottom:189.360006px;}
.y2b_c00078{bottom:189.368256px;}
.y2f_c00078{bottom:205.215006px;}
.y2a_c00078{bottom:220.698606px;}
.y34_c00078{bottom:228.975006px;}
.y33_c00078{bottom:235.455006px;}
.y32_c00078{bottom:241.215006px;}
.y29_c00078{bottom:251.288256px;}
.y31_c00078{bottom:252.375006px;}
.y30_c00078{bottom:262.800006px;}
.y27_c00078{bottom:282.611406px;}
.y28_c00078{bottom:282.615006px;}
.y26_c00078{bottom:313.218606px;}
.y25_c00078{bottom:344.878806px;}
.y24_c00078{bottom:375.139806px;}
.y23_c00078{bottom:406.792806px;}
.y22_c00078{bottom:437.400006px;}
.y1a_c00078{bottom:468.013656px;}
.y20_c00078{bottom:468.712806px;}
.y21_c00078{bottom:468.720006px;}
.y1f_c00078{bottom:499.321806px;}
.y1d_c00078{bottom:530.272806px;}
.y1e_c00078{bottom:530.280006px;}
.y1b_c00078{bottom:560.870706px;}
.y1c_c00078{bottom:560.880006px;}
.y18_c00078{bottom:592.209606px;}
.y19_c00078{bottom:592.215006px;}
.y17_c00078{bottom:623.167806px;}
.y15_c00078{bottom:653.767806px;}
.y16_c00078{bottom:653.775006px;}
.y14_c00078{bottom:684.375006px;}
.y13_c00078{bottom:715.320006px;}
.y12_c00078{bottom:715.322856px;}
.y11_c00078{bottom:746.281056px;}
.y10_c00078{bottom:777.256806px;}
.yf_c00078{bottom:808.215006px;}
.yd_c00078{bottom:839.159256px;}
.ye_c00078{bottom:839.160006px;}
.yb_c00078{bottom:870.132156px;}
.yc_c00078{bottom:870.135006px;}
.ya_c00078{bottom:900.739356px;}
.y9_c00078{bottom:931.669206px;}
.y8_c00078{bottom:962.276406px;}
.y7_c00078{bottom:993.252156px;}
.y6_c00078{bottom:1023.841806px;}
.y5_c00078{bottom:1054.800006px;}
.y3_c00078{bottom:1085.408256px;}
.y4_c00078{bottom:1085.415006px;}
.y2_c00078{bottom:1116.735006px;}
.y1_c00078{bottom:1192.680006px;}
.he_c00078{height:14.133401px;}
.hb_c00078{height:15.344640px;}
.h10_c00078{height:28.785937px;}
.hd_c00078{height:28.855081px;}
.h5_c00078{height:36.443520px;}
.hf_c00078{height:43.179532px;}
.hc_c00078{height:53.191406px;}
.h2_c00078{height:58.297852px;}
.h3_c00078{height:68.897461px;}
.h4_c00078{height:68.940661px;}
.h7_c00078{height:70.116300px;}
.h6_c00078{height:71.957644px;}
.h9_c00078{height:72.430664px;}
.h8_c00078{height:72.445064px;}
.h11_c00078{height:108.371520px;}
.ha_c00078{height:168.791040px;}
.h1_c00078{height:1263.000000px;}
.h0_c00078{height:1263.240006px;}
.w1_c00078{width:892.500000px;}
.w0_c00078{width:892.799998px;}
.x0_c00078{left:0.000000px;}
.x1_c00078{left:121.604999px;}
.x15_c00078{left:134.798249px;}
.xc_c00078{left:136.609049px;}
.x5_c00078{left:137.653948px;}
.x1a_c00078{left:180.532948px;}
.x12_c00078{left:181.958549px;}
.x6_c00078{left:183.231299px;}
.x4_c00078{left:184.345948px;}
.x2_c00078{left:185.369998px;}
.x18_c00078{left:285.239999px;}
.xe_c00078{left:300.359999px;}
.x19_c00078{left:311.789999px;}
.xf_c00078{left:332.459999px;}
.x10_c00078{left:344.174999px;}
.x11_c00078{left:379.904999px;}
.x1b_c00078{left:395.114999px;}
.x1c_c00078{left:422.114999px;}
.x1d_c00078{left:424.274999px;}
.x7_c00078{left:460.904998px;}
.x13_c00078{left:464.939999px;}
.x16_c00078{left:471.749998px;}
.x17_c00078{left:492.794999px;}
.x9_c00078{left:495.734998px;}
.xa_c00078{left:513.389998px;}
.x14_c00078{left:517.124998px;}
.x8_c00078{left:518.564999px;}
.x3_c00078{left:521.039999px;}
.xb_c00078{left:522.164999px;}
.xd_c00078{left:523.619999px;}
.x1e_c00078{left:561.959998px;}
.x26_c00078{left:567.359998px;}
.x24_c00078{left:570.329998px;}
.x22_c00078{left:573.104998px;}
.x20_c00078{left:581.294999px;}
.x1f_c00078{left:595.094998px;}
.x21_c00078{left:602.834998px;}
.x23_c00078{left:620.234998px;}
.x25_c00078{left:625.229999px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls78_c00078{letter-spacing:-2.296000pt;}
.ls63_c00078{letter-spacing:-2.184000pt;}
.ls62_c00078{letter-spacing:-1.809600pt;}
.ls61_c00078{letter-spacing:-1.572480pt;}
.ls77_c00078{letter-spacing:-1.351360pt;}
.ls72_c00078{letter-spacing:-0.960960pt;}
.ls6b_c00078{letter-spacing:-0.879840pt;}
.ls6c_c00078{letter-spacing:-0.755040pt;}
.ls64_c00078{letter-spacing:-0.680160pt;}
.ls6d_c00078{letter-spacing:-0.511680pt;}
.ls79_c00078{letter-spacing:-0.474240pt;}
.ls66_c00078{letter-spacing:-0.455520pt;}
.ls7e_c00078{letter-spacing:-0.448019pt;}
.ls7b_c00078{letter-spacing:-0.300960pt;}
.ls76_c00078{letter-spacing:-0.293280pt;}
.ls73_c00078{letter-spacing:-0.262080pt;}
.ls6f_c00078{letter-spacing:-0.174720pt;}
.ls60_c00078{letter-spacing:-0.156000pt;}
.ls7a_c00078{letter-spacing:-0.099840pt;}
.ls6a_c00078{letter-spacing:-0.056160pt;}
.ls68_c00078{letter-spacing:-0.024960pt;}
.ls69_c00078{letter-spacing:0.000000pt;}
.ls39_c00078{letter-spacing:0.093600pt;}
.ls16_c00078{letter-spacing:0.106080pt;}
.ls49_c00078{letter-spacing:0.112320pt;}
.ls74_c00078{letter-spacing:0.156000pt;}
.ls23_c00078{letter-spacing:0.168480pt;}
.ls1e_c00078{letter-spacing:0.187200pt;}
.ls4e_c00078{letter-spacing:0.212160pt;}
.ls3_c00078{letter-spacing:0.218400pt;}
.ls10_c00078{letter-spacing:0.237120pt;}
.ls75_c00078{letter-spacing:0.243360pt;}
.ls1b_c00078{letter-spacing:0.255840pt;}
.ls71_c00078{letter-spacing:0.268320pt;}
.ls19_c00078{letter-spacing:0.287040pt;}
.ls7c_c00078{letter-spacing:0.294667pt;}
.ls57_c00078{letter-spacing:0.330720pt;}
.ls33_c00078{letter-spacing:0.343200pt;}
.lsa_c00078{letter-spacing:0.349440pt;}
.ls65_c00078{letter-spacing:0.355680pt;}
.ls4_c00078{letter-spacing:0.361920pt;}
.ls2d_c00078{letter-spacing:0.380640pt;}
.ls58_c00078{letter-spacing:0.386880pt;}
.ls4f_c00078{letter-spacing:0.393120pt;}
.ls15_c00078{letter-spacing:0.399360pt;}
.ls3e_c00078{letter-spacing:0.461760pt;}
.ls8_c00078{letter-spacing:0.468000pt;}
.ls12_c00078{letter-spacing:0.499200pt;}
.ls70_c00078{letter-spacing:0.511680pt;}
.lsb_c00078{letter-spacing:0.524160pt;}
.ls43_c00078{letter-spacing:0.530400pt;}
.ls35_c00078{letter-spacing:0.542880pt;}
.ls21_c00078{letter-spacing:0.561600pt;}
.ls30_c00078{letter-spacing:0.586560pt;}
.ls2c_c00078{letter-spacing:0.599040pt;}
.ls3b_c00078{letter-spacing:0.617760pt;}
.ls11_c00078{letter-spacing:0.624000pt;}
.ls22_c00078{letter-spacing:0.630240pt;}
.ls6_c00078{letter-spacing:0.648960pt;}
.ls67_c00078{letter-spacing:0.655200pt;}
.ls45_c00078{letter-spacing:0.705120pt;}
.ls26_c00078{letter-spacing:0.717600pt;}
.ls54_c00078{letter-spacing:0.736320pt;}
.lsc_c00078{letter-spacing:0.742560pt;}
.ls2a_c00078{letter-spacing:0.755040pt;}
.lsf_c00078{letter-spacing:0.773760pt;}
.ls4a_c00078{letter-spacing:0.804960pt;}
.ls20_c00078{letter-spacing:0.823680pt;}
.ls36_c00078{letter-spacing:0.836160pt;}
.ls2e_c00078{letter-spacing:0.867360pt;}
.ls34_c00078{letter-spacing:0.873600pt;}
.ls3c_c00078{letter-spacing:0.879840pt;}
.ls51_c00078{letter-spacing:0.886080pt;}
.ls3a_c00078{letter-spacing:0.904800pt;}
.ls9_c00078{letter-spacing:0.917280pt;}
.ls1f_c00078{letter-spacing:0.929760pt;}
.ls32_c00078{letter-spacing:0.936000pt;}
.ls29_c00078{letter-spacing:0.942240pt;}
.ls2_c00078{letter-spacing:0.960960pt;}
.ls27_c00078{letter-spacing:0.967200pt;}
.ls18_c00078{letter-spacing:0.973440pt;}
.ls2f_c00078{letter-spacing:0.985920pt;}
.ls4d_c00078{letter-spacing:1.004640pt;}
.ls4c_c00078{letter-spacing:1.023360pt;}
.ls44_c00078{letter-spacing:1.029600pt;}
.ls0_c00078{letter-spacing:1.035840pt;}
.ls14_c00078{letter-spacing:1.042080pt;}
.ls17_c00078{letter-spacing:1.073280pt;}
.ls5b_c00078{letter-spacing:1.079520pt;}
.ls47_c00078{letter-spacing:1.092000pt;}
.ls5d_c00078{letter-spacing:1.098240pt;}
.ls52_c00078{letter-spacing:1.104480pt;}
.ls5_c00078{letter-spacing:1.110720pt;}
.lse_c00078{letter-spacing:1.116960pt;}
.ls4b_c00078{letter-spacing:1.129440pt;}
.ls42_c00078{letter-spacing:1.135680pt;}
.ls7_c00078{letter-spacing:1.141920pt;}
.ls38_c00078{letter-spacing:1.148160pt;}
.ls55_c00078{letter-spacing:1.154400pt;}
.ls48_c00078{letter-spacing:1.166880pt;}
.ls5a_c00078{letter-spacing:1.198080pt;}
.ls37_c00078{letter-spacing:1.229280pt;}
.ls5e_c00078{letter-spacing:1.254240pt;}
.lsd_c00078{letter-spacing:1.266720pt;}
.ls46_c00078{letter-spacing:1.285440pt;}
.ls25_c00078{letter-spacing:1.291680pt;}
.ls7d_c00078{letter-spacing:1.306693pt;}
.ls1c_c00078{letter-spacing:1.316640pt;}
.ls2b_c00078{letter-spacing:1.322880pt;}
.ls1d_c00078{letter-spacing:1.335360pt;}
.ls5c_c00078{letter-spacing:1.372800pt;}
.ls28_c00078{letter-spacing:1.397760pt;}
.ls56_c00078{letter-spacing:1.404000pt;}
.ls41_c00078{letter-spacing:1.478880pt;}
.ls40_c00078{letter-spacing:1.485120pt;}
.ls24_c00078{letter-spacing:1.497600pt;}
.ls59_c00078{letter-spacing:1.528800pt;}
.ls53_c00078{letter-spacing:1.584960pt;}
.ls3d_c00078{letter-spacing:1.591200pt;}
.ls13_c00078{letter-spacing:1.609920pt;}
.ls50_c00078{letter-spacing:1.653600pt;}
.ls3f_c00078{letter-spacing:2.140320pt;}
.ls1a_c00078{letter-spacing:2.277600pt;}
.ls5f_c00078{letter-spacing:2.439360pt;}
.ls31_c00078{letter-spacing:2.552160pt;}
.ls1_c00078{letter-spacing:2.851680pt;}
.ls6e_c00078{letter-spacing:3.120000pt;}
.ws4_c00078{word-spacing:0.000000pt;}
.ws3_c00078{word-spacing:48.640800pt;}
.ws1_c00078{word-spacing:79.659840pt;}
.ws2_c00078{word-spacing:80.895360pt;}
.ws0_c00078{word-spacing:81.095040pt;}
._4_c00078{margin-left:-16.735680pt;}
._11_c00078{margin-left:-14.657760pt;}
._e_c00078{margin-left:-13.091520pt;}
._f_c00078{margin-left:-11.481600pt;}
._1c_c00078{margin-left:-9.909120pt;}
._10_c00078{margin-left:-8.817120pt;}
._1f_c00078{margin-left:-7.639467pt;}
._17_c00078{margin-left:-6.689280pt;}
._21_c00078{margin-left:-3.756480pt;}
._19_c00078{margin-left:-2.184000pt;}
._12_c00078{margin-left:-1.098240pt;}
._1b_c00078{width:0.923520pt;}
._5_c00078{width:2.321280pt;}
._20_c00078{width:3.408320pt;}
._7_c00078{width:5.041920pt;}
._18_c00078{width:6.071520pt;}
._1a_c00078{width:7.700160pt;}
._6_c00078{width:8.798400pt;}
._27_c00078{width:10.358400pt;}
._9_c00078{width:11.394240pt;}
._8_c00078{width:12.604800pt;}
._1_c00078{width:13.740480pt;}
._a_c00078{width:14.976000pt;}
._26_c00078{width:17.309760pt;}
._0_c00078{width:18.220800pt;}
._13_c00078{width:19.911840pt;}
._2_c00078{width:21.278400pt;}
._d_c00078{width:22.189440pt;}
._b_c00078{width:23.512320pt;}
._3_c00078{width:24.492000pt;}
._14_c00078{width:26.076960pt;}
._c_c00078{width:27.524640pt;}
._15_c00078{width:30.064320pt;}
._1d_c00078{width:30.975360pt;}
._16_c00078{width:32.323200pt;}
._1e_c00078{width:34.794240pt;}
._25_c00078{width:56.415413pt;}
._23_c00078{width:57.707520pt;}
._24_c00078{width:60.540480pt;}
._22_c00078{width:62.400000pt;}
._28_c00078{width:165.123993pt;}
.fsb_c00078{font-size:12.800533pt;}
.fs7_c00078{font-size:20.480000pt;}
.fsd_c00078{font-size:24.533333pt;}
.fsa_c00078{font-size:26.133867pt;}
.fs8_c00078{font-size:27.733333pt;}
.fsc_c00078{font-size:36.800533pt;}
.fs9_c00078{font-size:45.333333pt;}
.fs2_c00078{font-size:48.640000pt;}
.fs0_c00078{font-size:52.800000pt;}
.fs4_c00078{font-size:59.733333pt;}
.fs3_c00078{font-size:61.333333pt;}
.fs1_c00078{font-size:62.400000pt;}
.fs5_c00078{font-size:65.600000pt;}
.fse_c00078{font-size:144.640000pt;}
.fs6_c00078{font-size:225.280000pt;}
.y0_c00078{bottom:0.000000pt;}
.y2e_c00078{bottom:58.573339pt;}
.y2d_c00078{bottom:140.801605pt;}
.y35_c00078{bottom:145.920005pt;}
.y2c_c00078{bottom:168.320005pt;}
.y2b_c00078{bottom:168.327339pt;}
.y2f_c00078{bottom:182.413339pt;}
.y2a_c00078{bottom:196.176539pt;}
.y34_c00078{bottom:203.533339pt;}
.y33_c00078{bottom:209.293339pt;}
.y32_c00078{bottom:214.413339pt;}
.y29_c00078{bottom:223.367339pt;}
.y31_c00078{bottom:224.333339pt;}
.y30_c00078{bottom:233.600005pt;}
.y27_c00078{bottom:251.210139pt;}
.y28_c00078{bottom:251.213339pt;}
.y26_c00078{bottom:278.416539pt;}
.y25_c00078{bottom:306.558939pt;}
.y24_c00078{bottom:333.457605pt;}
.y23_c00078{bottom:361.593605pt;}
.y22_c00078{bottom:388.800005pt;}
.y1a_c00078{bottom:416.012139pt;}
.y20_c00078{bottom:416.633605pt;}
.y21_c00078{bottom:416.640005pt;}
.y1f_c00078{bottom:443.841605pt;}
.y1d_c00078{bottom:471.353605pt;}
.y1e_c00078{bottom:471.360005pt;}
.y1b_c00078{bottom:498.551739pt;}
.y1c_c00078{bottom:498.560005pt;}
.y18_c00078{bottom:526.408539pt;}
.y19_c00078{bottom:526.413339pt;}
.y17_c00078{bottom:553.926939pt;}
.y15_c00078{bottom:581.126939pt;}
.y16_c00078{bottom:581.133339pt;}
.y14_c00078{bottom:608.333339pt;}
.y13_c00078{bottom:635.840005pt;}
.y12_c00078{bottom:635.842539pt;}
.y11_c00078{bottom:663.360939pt;}
.y10_c00078{bottom:690.894939pt;}
.yf_c00078{bottom:718.413339pt;}
.yd_c00078{bottom:745.919339pt;}
.ye_c00078{bottom:745.920005pt;}
.yb_c00078{bottom:773.450805pt;}
.yc_c00078{bottom:773.453339pt;}
.ya_c00078{bottom:800.657205pt;}
.y9_c00078{bottom:828.150405pt;}
.y8_c00078{bottom:855.356805pt;}
.y7_c00078{bottom:882.890805pt;}
.y6_c00078{bottom:910.081605pt;}
.y5_c00078{bottom:937.600005pt;}
.y3_c00078{bottom:964.807339pt;}
.y4_c00078{bottom:964.813339pt;}
.y2_c00078{bottom:992.653339pt;}
.y1_c00078{bottom:1060.160005pt;}
.he_c00078{height:12.563023pt;}
.hb_c00078{height:13.639680pt;}
.h10_c00078{height:25.587500pt;}
.hd_c00078{height:25.648961pt;}
.h5_c00078{height:32.394240pt;}
.hf_c00078{height:38.381806pt;}
.hc_c00078{height:47.281250pt;}
.h2_c00078{height:51.820312pt;}
.h3_c00078{height:61.242187pt;}
.h4_c00078{height:61.280588pt;}
.h7_c00078{height:62.325600pt;}
.h6_c00078{height:63.962350pt;}
.h9_c00078{height:64.382813pt;}
.h8_c00078{height:64.395613pt;}
.h11_c00078{height:96.330240pt;}
.ha_c00078{height:150.036480pt;}
.h1_c00078{height:1122.666667pt;}
.h0_c00078{height:1122.880005pt;}
.w1_c00078{width:793.333333pt;}
.w0_c00078{width:793.599999pt;}
.x0_c00078{left:0.000000pt;}
.x1_c00078{left:108.093332pt;}
.x15_c00078{left:119.820665pt;}
.xc_c00078{left:121.430265pt;}
.x5_c00078{left:122.359065pt;}
.x1a_c00078{left:160.473732pt;}
.x12_c00078{left:161.740932pt;}
.x6_c00078{left:162.872265pt;}
.x4_c00078{left:163.863065pt;}
.x2_c00078{left:164.773332pt;}
.x18_c00078{left:253.546665pt;}
.xe_c00078{left:266.986665pt;}
.x19_c00078{left:277.146665pt;}
.xf_c00078{left:295.519999pt;}
.x10_c00078{left:305.933332pt;}
.x11_c00078{left:337.693332pt;}
.x1b_c00078{left:351.213332pt;}
.x1c_c00078{left:375.213332pt;}
.x1d_c00078{left:377.133332pt;}
.x7_c00078{left:409.693332pt;}
.x13_c00078{left:413.279999pt;}
.x16_c00078{left:419.333332pt;}
.x17_c00078{left:438.039999pt;}
.x9_c00078{left:440.653332pt;}
.xa_c00078{left:456.346665pt;}
.x14_c00078{left:459.666665pt;}
.x8_c00078{left:460.946665pt;}
.x3_c00078{left:463.146665pt;}
.xb_c00078{left:464.146665pt;}
.xd_c00078{left:465.439999pt;}
.x1e_c00078{left:499.519999pt;}
.x26_c00078{left:504.319999pt;}
.x24_c00078{left:506.959999pt;}
.x22_c00078{left:509.426665pt;}
.x20_c00078{left:516.706665pt;}
.x1f_c00078{left:528.973332pt;}
.x21_c00078{left:535.853332pt;}
.x23_c00078{left:551.319999pt;}
.x25_c00078{left:555.759999pt;}
}





/* 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_c00079 {
    display:none;
  }
  .loading-indicator_c00079.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00079 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_c00079 { 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_c00079" -> "#page-container .classname_c00079")
 */
.pf_c00079 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00079 { /* 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_c00079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00079 { /* 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_c00079 { /* 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_c00079 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00079 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00079 {overflow:visible;}
  }
}
.c_c00079 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00079 { /* 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_c00079:after { /* webkit #35443 */
  content: '';
}
.t_c00079:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00079 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 */
}
.__c00079 { /* 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_c00079 { /* info for Javascript */
  display:none;
}
.l_c00079 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00079 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00079 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00079: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_c00079 {
    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_c00079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00079.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_c00079 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00079;src:url('chunks/assets/font_4767b5ef0f12b269230685e7.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.284668;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_c00079;src:url('chunks/assets/font_388944f3f759e949999c2a9d.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.284180;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_c00079;src:url('chunks/assets/font_f20b9efccdfa9530a2537979.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:0.666000;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_c00079;src:url('chunks/assets/font_2117552340f0ee7da0e16280.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;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;}
.m2a_c00079{transform:matrix(0.017717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017717,0.000000,0.000000,0.250000,0,0);}
.m17_c00079{transform:matrix(0.031625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031625,0.000000,0.000000,0.250000,0,0);}
.m16_c00079{transform:matrix(0.038465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038465,0.000000,0.000000,0.250000,0,0);}
.m1a_c00079{transform:matrix(0.044000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044000,0.000000,0.000000,0.250000,0,0);}
.m11_c00079{transform:matrix(0.051350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051350,0.000000,0.000000,0.250000,0,0);}
.m2d_c00079{transform:matrix(0.102737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102737,0.000000,0.000000,0.250000,0,0);}
.m20_c00079{transform:matrix(0.106115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106115,0.000000,0.000000,0.250000,0,0);}
.m21_c00079{transform:matrix(0.107378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107378,0.000000,0.000000,0.250000,0,0);}
.m29_c00079{transform:matrix(0.143805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143805,0.000000,0.000000,0.250000,0,0);}
.m14_c00079{transform:matrix(0.146423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146423,0.000000,0.000000,0.250000,0,0);}
.m1c_c00079{transform:matrix(0.154797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154797,0.000000,0.000000,0.250000,0,0);}
.m2e_c00079{transform:matrix(0.165802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165802,0.000000,0.000000,0.250000,0,0);}
.m1e_c00079{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.m1f_c00079{transform:matrix(0.215445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215445,0.000000,0.000000,0.250000,0,0);}
.m13_c00079{transform:matrix(0.215914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215914,0.000000,0.000000,0.250000,0,0);}
.m18_c00079{transform:matrix(0.217722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217722,0.000000,0.000000,0.250000,0,0);}
.m7_c00079{transform:matrix(0.229410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229410,0.000000,0.000000,0.250000,0,0);}
.mf_c00079{transform:matrix(0.232617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232617,0.000000,0.000000,0.250000,0,0);}
.ma_c00079{transform:matrix(0.233067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233067,0.000000,0.000000,0.250000,0,0);}
.m9_c00079{transform:matrix(0.235006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235006,0.000000,0.000000,0.250000,0,0);}
.md_c00079{transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);}
.m6_c00079{transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);}
.me_c00079{transform:matrix(0.240901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240901,0.000000,0.000000,0.250000,0,0);}
.mb_c00079{transform:matrix(0.243292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243292,0.000000,0.000000,0.250000,0,0);}
.m5_c00079{transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);}
.mc_c00079{transform:matrix(0.245890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245890,0.000000,0.000000,0.250000,0,0);}
.m8_c00079{transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);}
.m3_c00079{transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);}
.m0_c00079{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m4_c00079{transform:matrix(0.249137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249137,0.000000,0.000000,0.250000,0,0);}
.m1_c00079{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);}
.m2_c00079{transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);}
.m2b_c00079{transform:matrix(0.288482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288482,0.000000,0.000000,0.250000,0,0);}
.m28_c00079{transform:matrix(0.295623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295623,0.000000,0.000000,0.250000,0,0);}
.m12_c00079{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m19_c00079{transform:matrix(0.344575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344575,0.000000,0.000000,0.250000,0,0);}
.m24_c00079{transform:matrix(0.345103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345103,0.000000,0.000000,0.250000,0,0);}
.m2c_c00079{transform:matrix(0.345115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345115,0.000000,0.000000,0.250000,0,0);}
.m27_c00079{transform:matrix(0.346736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346736,0.000000,0.000000,0.250000,0,0);}
.m10_c00079{transform:matrix(0.514583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514583,0.000000,0.000000,0.250000,0,0);}
.m26_c00079{transform:matrix(0.527103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527103,0.000000,0.000000,0.250000,0,0);}
.m1d_c00079{transform:matrix(0.638941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00079{transform:matrix(0.643391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643391,0.000000,0.000000,0.250000,0,0);}
.m22_c00079{transform:matrix(0.706059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706059,0.000000,0.000000,0.250000,0,0);}
.m25_c00079{transform:matrix(0.950882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950882,0.000000,0.000000,0.250000,0,0);}
.m15_c00079{transform:matrix(1.108676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.108676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.108676,0.000000,0.000000,0.250000,0,0);}
.m23_c00079{transform:matrix(1.375485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.375485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.375485,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls7c_c00079{letter-spacing:-11.319021px;}
.ls88_c00079{letter-spacing:-10.521000px;}
.ls89_c00079{letter-spacing:-5.712021px;}
.ls62_c00079{letter-spacing:-2.604000px;}
.ls82_c00079{letter-spacing:-2.562000px;}
.ls34_c00079{letter-spacing:-2.520000px;}
.ls20_c00079{letter-spacing:-2.448000px;}
.ls1b_c00079{letter-spacing:-2.426400px;}
.ls35_c00079{letter-spacing:-2.383200px;}
.ls17_c00079{letter-spacing:-2.331000px;}
.ls57_c00079{letter-spacing:-2.275200px;}
.ls63_c00079{letter-spacing:-2.246880px;}
.ls65_c00079{letter-spacing:-2.239200px;}
.ls29_c00079{letter-spacing:-2.217600px;}
.ls75_c00079{letter-spacing:-2.152800px;}
.ls80_c00079{letter-spacing:-2.100000px;}
.ls78_c00079{letter-spacing:-2.016000px;}
.ls7a_c00079{letter-spacing:-1.848000px;}
.ls28_c00079{letter-spacing:-1.821600px;}
.ls83_c00079{letter-spacing:-1.785000px;}
.ls5a_c00079{letter-spacing:-1.756800px;}
.ls18_c00079{letter-spacing:-1.720800px;}
.ls31_c00079{letter-spacing:-1.670400px;}
.ls46_c00079{letter-spacing:-1.396800px;}
.ls5b_c00079{letter-spacing:-1.310400px;}
.ls36_c00079{letter-spacing:-1.238400px;}
.ls72_c00079{letter-spacing:-1.173600px;}
.ls4a_c00079{letter-spacing:-1.116000px;}
.ls59_c00079{letter-spacing:-1.101600px;}
.ls6b_c00079{letter-spacing:-1.044000px;}
.ls49_c00079{letter-spacing:-1.008000px;}
.ls23_c00079{letter-spacing:-0.914400px;}
.ls4c_c00079{letter-spacing:-0.885600px;}
.ls73_c00079{letter-spacing:-0.864000px;}
.ls55_c00079{letter-spacing:-0.835200px;}
.ls5d_c00079{letter-spacing:-0.828000px;}
.ls21_c00079{letter-spacing:-0.813600px;}
.ls5e_c00079{letter-spacing:-0.806400px;}
.ls6e_c00079{letter-spacing:-0.799200px;}
.ls4e_c00079{letter-spacing:-0.748800px;}
.ls7d_c00079{letter-spacing:-0.735021px;}
.ls4f_c00079{letter-spacing:-0.734400px;}
.ls71_c00079{letter-spacing:-0.691200px;}
.ls40_c00079{letter-spacing:-0.669600px;}
.ls19_c00079{letter-spacing:-0.662400px;}
.ls2d_c00079{letter-spacing:-0.648000px;}
.ls25_c00079{letter-spacing:-0.640800px;}
.ls6f_c00079{letter-spacing:-0.612000px;}
.ls2f_c00079{letter-spacing:-0.604800px;}
.ls6d_c00079{letter-spacing:-0.590400px;}
.ls67_c00079{letter-spacing:-0.583200px;}
.ls38_c00079{letter-spacing:-0.576000px;}
.ls54_c00079{letter-spacing:-0.547200px;}
.ls76_c00079{letter-spacing:-0.525600px;}
.ls41_c00079{letter-spacing:-0.518400px;}
.ls32_c00079{letter-spacing:-0.504000px;}
.ls44_c00079{letter-spacing:-0.482400px;}
.ls51_c00079{letter-spacing:-0.475200px;}
.ls30_c00079{letter-spacing:-0.468000px;}
.ls50_c00079{letter-spacing:-0.460800px;}
.ls1a_c00079{letter-spacing:-0.410400px;}
.ls43_c00079{letter-spacing:-0.403200px;}
.ls3d_c00079{letter-spacing:-0.388800px;}
.ls48_c00079{letter-spacing:-0.381600px;}
.ls77_c00079{letter-spacing:-0.374400px;}
.ls3e_c00079{letter-spacing:-0.367200px;}
.ls27_c00079{letter-spacing:-0.360000px;}
.ls42_c00079{letter-spacing:-0.345600px;}
.ls2b_c00079{letter-spacing:-0.338400px;}
.ls2c_c00079{letter-spacing:-0.331200px;}
.ls45_c00079{letter-spacing:-0.302400px;}
.ls56_c00079{letter-spacing:-0.295200px;}
.ls3b_c00079{letter-spacing:-0.288000px;}
.ls3c_c00079{letter-spacing:-0.273600px;}
.ls69_c00079{letter-spacing:-0.259200px;}
.ls1c_c00079{letter-spacing:-0.252000px;}
.ls68_c00079{letter-spacing:-0.237600px;}
.ls53_c00079{letter-spacing:-0.230400px;}
.ls4d_c00079{letter-spacing:-0.208800px;}
.ls60_c00079{letter-spacing:-0.194400px;}
.ls24_c00079{letter-spacing:-0.180000px;}
.ls47_c00079{letter-spacing:-0.172800px;}
.ls6c_c00079{letter-spacing:-0.165600px;}
.ls2a_c00079{letter-spacing:-0.158400px;}
.ls6a_c00079{letter-spacing:-0.144000px;}
.ls26_c00079{letter-spacing:-0.129600px;}
.ls33_c00079{letter-spacing:-0.108000px;}
.ls1f_c00079{letter-spacing:-0.100800px;}
.ls5c_c00079{letter-spacing:-0.093600px;}
.ls39_c00079{letter-spacing:-0.086400px;}
.ls3f_c00079{letter-spacing:-0.079200px;}
.ls37_c00079{letter-spacing:-0.064800px;}
.ls4b_c00079{letter-spacing:-0.057600px;}
.ls1d_c00079{letter-spacing:-0.043200px;}
.ls1e_c00079{letter-spacing:-0.028800px;}
.ls61_c00079{letter-spacing:-0.021600px;}
.ls3a_c00079{letter-spacing:-0.014400px;}
.ls22_c00079{letter-spacing:0.000000px;}
.ls0_c00079{letter-spacing:0.007200px;}
.ls4_c00079{letter-spacing:0.014400px;}
.ls11_c00079{letter-spacing:0.057600px;}
.ls16_c00079{letter-spacing:0.064800px;}
.lsb_c00079{letter-spacing:0.079200px;}
.ls5f_c00079{letter-spacing:0.172800px;}
.ls5_c00079{letter-spacing:0.186300px;}
.ls9_c00079{letter-spacing:0.201600px;}
.ls10_c00079{letter-spacing:0.208800px;}
.ls70_c00079{letter-spacing:0.244800px;}
.lsc_c00079{letter-spacing:0.276000px;}
.ls3_c00079{letter-spacing:0.331200px;}
.lsf_c00079{letter-spacing:0.417600px;}
.ls74_c00079{letter-spacing:0.439200px;}
.lsa_c00079{letter-spacing:0.482400px;}
.ls84_c00079{letter-spacing:0.510000px;}
.ls15_c00079{letter-spacing:0.545100px;}
.ls1_c00079{letter-spacing:0.634800px;}
.ls85_c00079{letter-spacing:0.720030px;}
.ls66_c00079{letter-spacing:0.727200px;}
.ls52_c00079{letter-spacing:0.871200px;}
.ls2_c00079{letter-spacing:0.883200px;}
.ls12_c00079{letter-spacing:0.945300px;}
.ls7e_c00079{letter-spacing:0.960030px;}
.lsd_c00079{letter-spacing:1.000500px;}
.ls7_c00079{letter-spacing:1.069500px;}
.ls58_c00079{letter-spacing:1.207500px;}
.ls6_c00079{letter-spacing:1.221300px;}
.ls13_c00079{letter-spacing:1.296000px;}
.ls7f_c00079{letter-spacing:1.380000px;}
.ls8_c00079{letter-spacing:1.389600px;}
.ls81_c00079{letter-spacing:1.410000px;}
.ls87_c00079{letter-spacing:1.470030px;}
.lse_c00079{letter-spacing:1.497300px;}
.ls14_c00079{letter-spacing:1.683600px;}
.ls64_c00079{letter-spacing:1.966500px;}
.ls86_c00079{letter-spacing:2.550000px;}
.ls2e_c00079{letter-spacing:3.600000px;}
.ls79_c00079{letter-spacing:3.750000px;}
.ls7b_c00079{letter-spacing:4.818669px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{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__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00079{word-spacing:-17.704800px;}
.ws5_c00079{word-spacing:0.000000px;}
.ws1_c00079{word-spacing:54.504000px;}
.ws2_c00079{word-spacing:55.692000px;}
.ws0_c00079{word-spacing:57.828000px;}
.ws4_c00079{word-spacing:127.152000px;}
._1b_c00079{margin-left:-16.653600px;}
._a_c00079{margin-left:-13.881600px;}
._b_c00079{margin-left:-12.060000px;}
._1d_c00079{margin-left:-10.476000px;}
._c_c00079{margin-left:-9.425400px;}
._18_c00079{margin-left:-7.797000px;}
._20_c00079{margin-left:-3.039720px;}
._19_c00079{margin-left:-1.048200px;}
._17_c00079{width:1.353600px;}
._1c_c00079{width:2.808000px;}
._9_c00079{width:4.060800px;}
._10_c00079{width:5.443200px;}
._21_c00079{width:6.508800px;}
._3_c00079{width:7.790400px;}
._22_c00079{width:9.048000px;}
._0_c00079{width:10.161600px;}
._e_c00079{width:11.824800px;}
._2_c00079{width:12.888000px;}
._d_c00079{width:14.433600px;}
._1e_c00079{width:15.981600px;}
._1_c00079{width:17.148000px;}
._f_c00079{width:19.557600px;}
._1f_c00079{width:21.340800px;}
._1a_c00079{width:23.270400px;}
._7_c00079{width:25.020000px;}
._8_c00079{width:26.568000px;}
._4_c00079{width:28.051200px;}
._6_c00079{width:29.577600px;}
._5_c00079{width:33.552000px;}
._24_c00079{width:35.164800px;}
._11_c00079{width:36.741600px;}
._16_c00079{width:37.908000px;}
._15_c00079{width:42.112800px;}
._23_c00079{width:43.848000px;}
._13_c00079{width:56.239200px;}
._14_c00079{width:61.012800px;}
._12_c00079{width:65.692800px;}
._28_c00079{width:89.039700px;}
._26_c00079{width:183.684000px;}
._27_c00079{width:213.165266px;}
._25_c00079{width:266.987020px;}
.fc0_c00079{color:transparent;}
.fs1a_c00079{font-size:10.200000px;}
.fs1b_c00079{font-size:14.400600px;}
.fs11_c00079{font-size:17.400600px;}
.fs13_c00079{font-size:19.200600px;}
.fse_c00079{font-size:21.000600px;}
.fsc_c00079{font-size:22.200600px;}
.fsf_c00079{font-size:27.600000px;}
.fs17_c00079{font-size:28.200000px;}
.fs1e_c00079{font-size:29.400600px;}
.fs8_c00079{font-size:31.680000px;}
.fsa_c00079{font-size:33.120600px;}
.fs14_c00079{font-size:36.000000px;}
.fs1f_c00079{font-size:38.400600px;}
.fs6_c00079{font-size:38.880600px;}
.fs19_c00079{font-size:51.000000px;}
.fs9_c00079{font-size:52.800000px;}
.fsd_c00079{font-size:55.200000px;}
.fs4_c00079{font-size:57.600000px;}
.fs15_c00079{font-size:60.000000px;}
.fs25_c00079{font-size:66.000000px;}
.fs0_c00079{font-size:66.600000px;}
.fs2_c00079{font-size:69.000000px;}
.fs1_c00079{font-size:72.000000px;}
.fs18_c00079{font-size:73.200000px;}
.fs3_c00079{font-size:74.400000px;}
.fs7_c00079{font-size:75.000000px;}
.fs24_c00079{font-size:76.800000px;}
.fs12_c00079{font-size:82.800000px;}
.fs10_c00079{font-size:96.000000px;}
.fs23_c00079{font-size:123.600000px;}
.fs22_c00079{font-size:163.200600px;}
.fs21_c00079{font-size:165.600000px;}
.fs5_c00079{font-size:172.800000px;}
.fs1d_c00079{font-size:182.880000px;}
.fs20_c00079{font-size:300.600000px;}
.fsb_c00079{font-size:323.400600px;}
.fs1c_c00079{font-size:325.440000px;}
.fs16_c00079{font-size:432.000000px;}
.y0_c00079{bottom:0.000000px;}
.y24_c00079{bottom:68.040000px;}
.y23_c00079{bottom:131.397000px;}
.y22_c00079{bottom:161.997000px;}
.y21_c00079{bottom:192.615000px;}
.y20_c00079{bottom:223.215000px;}
.y1f_c00079{bottom:254.517000px;}
.y1e_c00079{bottom:285.135000px;}
.y1d_c00079{bottom:316.095000px;}
.y1c_c00079{bottom:346.695000px;}
.y1b_c00079{bottom:377.295000px;}
.y19_c00079{bottom:407.877000px;}
.y1a_c00079{bottom:407.880000px;}
.y18_c00079{bottom:439.215000px;}
.y17_c00079{bottom:469.815000px;}
.y3c_c00079{bottom:481.320000px;}
.y16_c00079{bottom:500.775000px;}
.y40_c00079{bottom:501.135000px;}
.y3f_c00079{bottom:506.880000px;}
.y3e_c00079{bottom:511.215000px;}
.y3d_c00079{bottom:522.000000px;}
.y37_c00079{bottom:532.815000px;}
.y3b_c00079{bottom:538.215000px;}
.y3a_c00079{bottom:545.775000px;}
.y39_c00079{bottom:553.695000px;}
.y15_c00079{bottom:562.317000px;}
.y38_c00079{bottom:568.455000px;}
.y14_c00079{bottom:593.655000px;}
.y42_c00079{bottom:613.080000px;}
.y41_c00079{bottom:616.695000px;}
.y13_c00079{bottom:624.240000px;}
.y12_c00079{bottom:655.215000px;}
.y11_c00079{bottom:655.218000px;}
.y10_c00079{bottom:686.160000px;}
.yf_c00079{bottom:716.775000px;}
.ye_c00079{bottom:747.375000px;}
.y30_c00079{bottom:751.695000px;}
.yd_c00079{bottom:778.335000px;}
.y36_c00079{bottom:792.015000px;}
.y35_c00079{bottom:800.655000px;}
.y34_c00079{bottom:808.215000px;}
.yc_c00079{bottom:808.917000px;}
.y33_c00079{bottom:816.120000px;}
.y32_c00079{bottom:824.400000px;}
.yb_c00079{bottom:839.877000px;}
.y31_c00079{bottom:839.880000px;}
.ya_c00079{bottom:870.855000px;}
.y9_c00079{bottom:901.440000px;}
.y8_c00079{bottom:932.397000px;}
.y7_c00079{bottom:963.015000px;}
.y6_c00079{bottom:993.957000px;}
.y2f_c00079{bottom:1020.600000px;}
.y29_c00079{bottom:1022.400000px;}
.y5_c00079{bottom:1024.575000px;}
.y2d_c00079{bottom:1031.760000px;}
.y2e_c00079{bottom:1033.575000px;}
.y2c_c00079{bottom:1042.215000px;}
.y2b_c00079{bottom:1051.215000px;}
.y4_c00079{bottom:1054.815000px;}
.y2a_c00079{bottom:1055.535000px;}
.y25_c00079{bottom:1079.655000px;}
.y3_c00079{bottom:1085.757000px;}
.y28_c00079{bottom:1094.400000px;}
.y27_c00079{bottom:1101.600000px;}
.y26_c00079{bottom:1113.120000px;}
.y2_c00079{bottom:1116.375000px;}
.y1_c00079{bottom:1192.335000px;}
.h1d_c00079{height:10.010742px;}
.h1f_c00079{height:14.126370px;}
.h1e_c00079{height:14.133401px;}
.h14_c00079{height:20.025626px;}
.hb_c00079{height:21.098880px;}
.h10_c00079{height:21.902970px;}
.hd_c00079{height:22.058320px;}
.h1b_c00079{height:23.154532px;}
.h15_c00079{height:23.976000px;}
.h9_c00079{height:25.894480px;}
.h18_c00079{height:27.676758px;}
.h11_c00079{height:28.785937px;}
.h23_c00079{height:28.855081px;}
.h24_c00079{height:37.688089px;}
.h22_c00079{height:50.053711px;}
.h1a_c00079{height:53.191406px;}
.hc_c00079{height:55.068750px;}
.h7_c00079{height:56.531250px;}
.hf_c00079{height:57.571875px;}
.h1c_c00079{height:60.075000px;}
.h16_c00079{height:62.578125px;}
.h2_c00079{height:65.364258px;}
.h6_c00079{height:67.719727px;}
.h2a_c00079{height:68.835938px;}
.h3_c00079{height:70.664062px;}
.h5_c00079{height:70.676063px;}
.h4_c00079{height:72.983203px;}
.ha_c00079{height:73.608398px;}
.h19_c00079{height:76.345312px;}
.h29_c00079{height:80.100000px;}
.h13_c00079{height:86.357813px;}
.h12_c00079{height:100.125000px;}
.h8_c00079{height:115.084800px;}
.h21_c00079{height:121.798080px;}
.h28_c00079{height:128.910938px;}
.h27_c00079{height:170.213126px;}
.h26_c00079{height:172.715625px;}
.h20_c00079{height:216.743040px;}
.h25_c00079{height:295.022461px;}
.he_c00079{height:317.400003px;}
.h17_c00079{height:450.562500px;}
.h1_c00079{height:1263.000000px;}
.h0_c00079{height:1263.240000px;}
.w1_c00079{width:892.500000px;}
.w0_c00079{width:892.800000px;}
.x0_c00079{left:0.000000px;}
.x1_c00079{left:129.525000px;}
.xf_c00079{left:148.050000px;}
.x2_c00079{left:149.130000px;}
.x1c_c00079{left:191.331000px;}
.x1b_c00079{left:192.414000px;}
.x3_c00079{left:193.716000px;}
.x19_c00079{left:291.435000px;}
.x17_c00079{left:310.110000px;}
.x1a_c00079{left:313.230000px;}
.x10_c00079{left:325.935000px;}
.x11_c00079{left:343.245000px;}
.x18_c00079{left:359.460000px;}
.x12_c00079{left:373.095000px;}
.x4_c00079{left:383.580000px;}
.x13_c00079{left:394.350000px;}
.x14_c00079{left:428.250000px;}
.x1d_c00079{left:431.505000px;}
.x5_c00079{left:434.685000px;}
.x9_c00079{left:458.835000px;}
.x15_c00079{left:463.215000px;}
.xb_c00079{left:467.745000px;}
.x6_c00079{left:470.625000px;}
.x16_c00079{left:481.125000px;}
.xa_c00079{left:488.340000px;}
.xc_c00079{left:493.725000px;}
.x7_c00079{left:496.605000px;}
.xe_c00079{left:521.790000px;}
.xd_c00079{left:523.920000px;}
.x8_c00079{left:525.885000px;}
.x23_c00079{left:571.290000px;}
.x1e_c00079{left:574.215000px;}
.x3e_c00079{left:575.445000px;}
.x24_c00079{left:577.245000px;}
.x26_c00079{left:579.165000px;}
.x34_c00079{left:580.605000px;}
.x3f_c00079{left:581.760000px;}
.x27_c00079{left:584.940000px;}
.x31_c00079{left:585.945000px;}
.x38_c00079{left:587.115000px;}
.x29_c00079{left:588.315000px;}
.x2a_c00079{left:589.935000px;}
.x2b_c00079{left:591.765000px;}
.x22_c00079{left:593.430000px;}
.x39_c00079{left:595.290000px;}
.x2c_c00079{left:596.535000px;}
.x20_c00079{left:598.905000px;}
.x2f_c00079{left:600.555000px;}
.x35_c00079{left:601.890000px;}
.x3d_c00079{left:604.815000px;}
.x1f_c00079{left:607.695000px;}
.x36_c00079{left:608.925000px;}
.x3a_c00079{left:611.940000px;}
.x32_c00079{left:616.875000px;}
.x3b_c00079{left:622.650000px;}
.x2d_c00079{left:625.920000px;}
.x21_c00079{left:630.720000px;}
.x33_c00079{left:632.070000px;}
.x30_c00079{left:633.540000px;}
.x37_c00079{left:636.795000px;}
.x3c_c00079{left:640.770000px;}
.x2e_c00079{left:642.360000px;}
.x28_c00079{left:647.835000px;}
.x25_c00079{left:650.670000px;}
.x41_c00079{left:855.135000px;}
.x40_c00079{left:856.545000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls7c_c00079{letter-spacing:-10.061352pt;}
.ls88_c00079{letter-spacing:-9.352000pt;}
.ls89_c00079{letter-spacing:-5.077352pt;}
.ls62_c00079{letter-spacing:-2.314667pt;}
.ls82_c00079{letter-spacing:-2.277333pt;}
.ls34_c00079{letter-spacing:-2.240000pt;}
.ls20_c00079{letter-spacing:-2.176000pt;}
.ls1b_c00079{letter-spacing:-2.156800pt;}
.ls35_c00079{letter-spacing:-2.118400pt;}
.ls17_c00079{letter-spacing:-2.072000pt;}
.ls57_c00079{letter-spacing:-2.022400pt;}
.ls63_c00079{letter-spacing:-1.997227pt;}
.ls65_c00079{letter-spacing:-1.990400pt;}
.ls29_c00079{letter-spacing:-1.971200pt;}
.ls75_c00079{letter-spacing:-1.913600pt;}
.ls80_c00079{letter-spacing:-1.866667pt;}
.ls78_c00079{letter-spacing:-1.792000pt;}
.ls7a_c00079{letter-spacing:-1.642667pt;}
.ls28_c00079{letter-spacing:-1.619200pt;}
.ls83_c00079{letter-spacing:-1.586667pt;}
.ls5a_c00079{letter-spacing:-1.561600pt;}
.ls18_c00079{letter-spacing:-1.529600pt;}
.ls31_c00079{letter-spacing:-1.484800pt;}
.ls46_c00079{letter-spacing:-1.241600pt;}
.ls5b_c00079{letter-spacing:-1.164800pt;}
.ls36_c00079{letter-spacing:-1.100800pt;}
.ls72_c00079{letter-spacing:-1.043200pt;}
.ls4a_c00079{letter-spacing:-0.992000pt;}
.ls59_c00079{letter-spacing:-0.979200pt;}
.ls6b_c00079{letter-spacing:-0.928000pt;}
.ls49_c00079{letter-spacing:-0.896000pt;}
.ls23_c00079{letter-spacing:-0.812800pt;}
.ls4c_c00079{letter-spacing:-0.787200pt;}
.ls73_c00079{letter-spacing:-0.768000pt;}
.ls55_c00079{letter-spacing:-0.742400pt;}
.ls5d_c00079{letter-spacing:-0.736000pt;}
.ls21_c00079{letter-spacing:-0.723200pt;}
.ls5e_c00079{letter-spacing:-0.716800pt;}
.ls6e_c00079{letter-spacing:-0.710400pt;}
.ls4e_c00079{letter-spacing:-0.665600pt;}
.ls7d_c00079{letter-spacing:-0.653352pt;}
.ls4f_c00079{letter-spacing:-0.652800pt;}
.ls71_c00079{letter-spacing:-0.614400pt;}
.ls40_c00079{letter-spacing:-0.595200pt;}
.ls19_c00079{letter-spacing:-0.588800pt;}
.ls2d_c00079{letter-spacing:-0.576000pt;}
.ls25_c00079{letter-spacing:-0.569600pt;}
.ls6f_c00079{letter-spacing:-0.544000pt;}
.ls2f_c00079{letter-spacing:-0.537600pt;}
.ls6d_c00079{letter-spacing:-0.524800pt;}
.ls67_c00079{letter-spacing:-0.518400pt;}
.ls38_c00079{letter-spacing:-0.512000pt;}
.ls54_c00079{letter-spacing:-0.486400pt;}
.ls76_c00079{letter-spacing:-0.467200pt;}
.ls41_c00079{letter-spacing:-0.460800pt;}
.ls32_c00079{letter-spacing:-0.448000pt;}
.ls44_c00079{letter-spacing:-0.428800pt;}
.ls51_c00079{letter-spacing:-0.422400pt;}
.ls30_c00079{letter-spacing:-0.416000pt;}
.ls50_c00079{letter-spacing:-0.409600pt;}
.ls1a_c00079{letter-spacing:-0.364800pt;}
.ls43_c00079{letter-spacing:-0.358400pt;}
.ls3d_c00079{letter-spacing:-0.345600pt;}
.ls48_c00079{letter-spacing:-0.339200pt;}
.ls77_c00079{letter-spacing:-0.332800pt;}
.ls3e_c00079{letter-spacing:-0.326400pt;}
.ls27_c00079{letter-spacing:-0.320000pt;}
.ls42_c00079{letter-spacing:-0.307200pt;}
.ls2b_c00079{letter-spacing:-0.300800pt;}
.ls2c_c00079{letter-spacing:-0.294400pt;}
.ls45_c00079{letter-spacing:-0.268800pt;}
.ls56_c00079{letter-spacing:-0.262400pt;}
.ls3b_c00079{letter-spacing:-0.256000pt;}
.ls3c_c00079{letter-spacing:-0.243200pt;}
.ls69_c00079{letter-spacing:-0.230400pt;}
.ls1c_c00079{letter-spacing:-0.224000pt;}
.ls68_c00079{letter-spacing:-0.211200pt;}
.ls53_c00079{letter-spacing:-0.204800pt;}
.ls4d_c00079{letter-spacing:-0.185600pt;}
.ls60_c00079{letter-spacing:-0.172800pt;}
.ls24_c00079{letter-spacing:-0.160000pt;}
.ls47_c00079{letter-spacing:-0.153600pt;}
.ls6c_c00079{letter-spacing:-0.147200pt;}
.ls2a_c00079{letter-spacing:-0.140800pt;}
.ls6a_c00079{letter-spacing:-0.128000pt;}
.ls26_c00079{letter-spacing:-0.115200pt;}
.ls33_c00079{letter-spacing:-0.096000pt;}
.ls1f_c00079{letter-spacing:-0.089600pt;}
.ls5c_c00079{letter-spacing:-0.083200pt;}
.ls39_c00079{letter-spacing:-0.076800pt;}
.ls3f_c00079{letter-spacing:-0.070400pt;}
.ls37_c00079{letter-spacing:-0.057600pt;}
.ls4b_c00079{letter-spacing:-0.051200pt;}
.ls1d_c00079{letter-spacing:-0.038400pt;}
.ls1e_c00079{letter-spacing:-0.025600pt;}
.ls61_c00079{letter-spacing:-0.019200pt;}
.ls3a_c00079{letter-spacing:-0.012800pt;}
.ls22_c00079{letter-spacing:0.000000pt;}
.ls0_c00079{letter-spacing:0.006400pt;}
.ls4_c00079{letter-spacing:0.012800pt;}
.ls11_c00079{letter-spacing:0.051200pt;}
.ls16_c00079{letter-spacing:0.057600pt;}
.lsb_c00079{letter-spacing:0.070400pt;}
.ls5f_c00079{letter-spacing:0.153600pt;}
.ls5_c00079{letter-spacing:0.165600pt;}
.ls9_c00079{letter-spacing:0.179200pt;}
.ls10_c00079{letter-spacing:0.185600pt;}
.ls70_c00079{letter-spacing:0.217600pt;}
.lsc_c00079{letter-spacing:0.245333pt;}
.ls3_c00079{letter-spacing:0.294400pt;}
.lsf_c00079{letter-spacing:0.371200pt;}
.ls74_c00079{letter-spacing:0.390400pt;}
.lsa_c00079{letter-spacing:0.428800pt;}
.ls84_c00079{letter-spacing:0.453333pt;}
.ls15_c00079{letter-spacing:0.484533pt;}
.ls1_c00079{letter-spacing:0.564267pt;}
.ls85_c00079{letter-spacing:0.640027pt;}
.ls66_c00079{letter-spacing:0.646400pt;}
.ls52_c00079{letter-spacing:0.774400pt;}
.ls2_c00079{letter-spacing:0.785067pt;}
.ls12_c00079{letter-spacing:0.840267pt;}
.ls7e_c00079{letter-spacing:0.853360pt;}
.lsd_c00079{letter-spacing:0.889333pt;}
.ls7_c00079{letter-spacing:0.950667pt;}
.ls58_c00079{letter-spacing:1.073333pt;}
.ls6_c00079{letter-spacing:1.085600pt;}
.ls13_c00079{letter-spacing:1.152000pt;}
.ls7f_c00079{letter-spacing:1.226667pt;}
.ls8_c00079{letter-spacing:1.235200pt;}
.ls81_c00079{letter-spacing:1.253333pt;}
.ls87_c00079{letter-spacing:1.306693pt;}
.lse_c00079{letter-spacing:1.330933pt;}
.ls14_c00079{letter-spacing:1.496533pt;}
.ls64_c00079{letter-spacing:1.748000pt;}
.ls86_c00079{letter-spacing:2.266667pt;}
.ls2e_c00079{letter-spacing:3.200000pt;}
.ls79_c00079{letter-spacing:3.333333pt;}
.ls7b_c00079{letter-spacing:4.283261pt;}
.ws3_c00079{word-spacing:-15.737600pt;}
.ws5_c00079{word-spacing:0.000000pt;}
.ws1_c00079{word-spacing:48.448000pt;}
.ws2_c00079{word-spacing:49.504000pt;}
.ws0_c00079{word-spacing:51.402667pt;}
.ws4_c00079{word-spacing:113.024000pt;}
._1b_c00079{margin-left:-14.803200pt;}
._a_c00079{margin-left:-12.339200pt;}
._b_c00079{margin-left:-10.720000pt;}
._1d_c00079{margin-left:-9.312000pt;}
._c_c00079{margin-left:-8.378133pt;}
._18_c00079{margin-left:-6.930667pt;}
._20_c00079{margin-left:-2.701973pt;}
._19_c00079{margin-left:-0.931733pt;}
._17_c00079{width:1.203200pt;}
._1c_c00079{width:2.496000pt;}
._9_c00079{width:3.609600pt;}
._10_c00079{width:4.838400pt;}
._21_c00079{width:5.785600pt;}
._3_c00079{width:6.924800pt;}
._22_c00079{width:8.042667pt;}
._0_c00079{width:9.032533pt;}
._e_c00079{width:10.510933pt;}
._2_c00079{width:11.456000pt;}
._d_c00079{width:12.829867pt;}
._1e_c00079{width:14.205867pt;}
._1_c00079{width:15.242667pt;}
._f_c00079{width:17.384533pt;}
._1f_c00079{width:18.969600pt;}
._1a_c00079{width:20.684800pt;}
._7_c00079{width:22.240000pt;}
._8_c00079{width:23.616000pt;}
._4_c00079{width:24.934400pt;}
._6_c00079{width:26.291200pt;}
._5_c00079{width:29.824000pt;}
._24_c00079{width:31.257600pt;}
._11_c00079{width:32.659200pt;}
._16_c00079{width:33.696000pt;}
._15_c00079{width:37.433600pt;}
._23_c00079{width:38.976000pt;}
._13_c00079{width:49.990400pt;}
._14_c00079{width:54.233600pt;}
._12_c00079{width:58.393600pt;}
._28_c00079{width:79.146400pt;}
._26_c00079{width:163.274667pt;}
._27_c00079{width:189.480237pt;}
._25_c00079{width:237.321796pt;}
.fs1a_c00079{font-size:9.066667pt;}
.fs1b_c00079{font-size:12.800533pt;}
.fs11_c00079{font-size:15.467200pt;}
.fs13_c00079{font-size:17.067200pt;}
.fse_c00079{font-size:18.667200pt;}
.fsc_c00079{font-size:19.733867pt;}
.fsf_c00079{font-size:24.533333pt;}
.fs17_c00079{font-size:25.066667pt;}
.fs1e_c00079{font-size:26.133867pt;}
.fs8_c00079{font-size:28.160000pt;}
.fsa_c00079{font-size:29.440533pt;}
.fs14_c00079{font-size:32.000000pt;}
.fs1f_c00079{font-size:34.133867pt;}
.fs6_c00079{font-size:34.560533pt;}
.fs19_c00079{font-size:45.333333pt;}
.fs9_c00079{font-size:46.933333pt;}
.fsd_c00079{font-size:49.066667pt;}
.fs4_c00079{font-size:51.200000pt;}
.fs15_c00079{font-size:53.333333pt;}
.fs25_c00079{font-size:58.666667pt;}
.fs0_c00079{font-size:59.200000pt;}
.fs2_c00079{font-size:61.333333pt;}
.fs1_c00079{font-size:64.000000pt;}
.fs18_c00079{font-size:65.066667pt;}
.fs3_c00079{font-size:66.133333pt;}
.fs7_c00079{font-size:66.666667pt;}
.fs24_c00079{font-size:68.266667pt;}
.fs12_c00079{font-size:73.600000pt;}
.fs10_c00079{font-size:85.333333pt;}
.fs23_c00079{font-size:109.866667pt;}
.fs22_c00079{font-size:145.067200pt;}
.fs21_c00079{font-size:147.200000pt;}
.fs5_c00079{font-size:153.600000pt;}
.fs1d_c00079{font-size:162.560000pt;}
.fs20_c00079{font-size:267.200000pt;}
.fsb_c00079{font-size:287.467200pt;}
.fs1c_c00079{font-size:289.280000pt;}
.fs16_c00079{font-size:384.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y24_c00079{bottom:60.480000pt;}
.y23_c00079{bottom:116.797333pt;}
.y22_c00079{bottom:143.997333pt;}
.y21_c00079{bottom:171.213333pt;}
.y20_c00079{bottom:198.413333pt;}
.y1f_c00079{bottom:226.237333pt;}
.y1e_c00079{bottom:253.453333pt;}
.y1d_c00079{bottom:280.973333pt;}
.y1c_c00079{bottom:308.173333pt;}
.y1b_c00079{bottom:335.373333pt;}
.y19_c00079{bottom:362.557333pt;}
.y1a_c00079{bottom:362.560000pt;}
.y18_c00079{bottom:390.413333pt;}
.y17_c00079{bottom:417.613333pt;}
.y3c_c00079{bottom:427.840000pt;}
.y16_c00079{bottom:445.133333pt;}
.y40_c00079{bottom:445.453333pt;}
.y3f_c00079{bottom:450.560000pt;}
.y3e_c00079{bottom:454.413333pt;}
.y3d_c00079{bottom:464.000000pt;}
.y37_c00079{bottom:473.613333pt;}
.y3b_c00079{bottom:478.413333pt;}
.y3a_c00079{bottom:485.133333pt;}
.y39_c00079{bottom:492.173333pt;}
.y15_c00079{bottom:499.837333pt;}
.y38_c00079{bottom:505.293333pt;}
.y14_c00079{bottom:527.693333pt;}
.y42_c00079{bottom:544.960000pt;}
.y41_c00079{bottom:548.173333pt;}
.y13_c00079{bottom:554.880000pt;}
.y12_c00079{bottom:582.413333pt;}
.y11_c00079{bottom:582.416000pt;}
.y10_c00079{bottom:609.920000pt;}
.yf_c00079{bottom:637.133333pt;}
.ye_c00079{bottom:664.333333pt;}
.y30_c00079{bottom:668.173333pt;}
.yd_c00079{bottom:691.853333pt;}
.y36_c00079{bottom:704.013333pt;}
.y35_c00079{bottom:711.693333pt;}
.y34_c00079{bottom:718.413333pt;}
.yc_c00079{bottom:719.037333pt;}
.y33_c00079{bottom:725.440000pt;}
.y32_c00079{bottom:732.800000pt;}
.yb_c00079{bottom:746.557333pt;}
.y31_c00079{bottom:746.560000pt;}
.ya_c00079{bottom:774.093333pt;}
.y9_c00079{bottom:801.280000pt;}
.y8_c00079{bottom:828.797333pt;}
.y7_c00079{bottom:856.013333pt;}
.y6_c00079{bottom:883.517333pt;}
.y2f_c00079{bottom:907.200000pt;}
.y29_c00079{bottom:908.800000pt;}
.y5_c00079{bottom:910.733333pt;}
.y2d_c00079{bottom:917.120000pt;}
.y2e_c00079{bottom:918.733333pt;}
.y2c_c00079{bottom:926.413333pt;}
.y2b_c00079{bottom:934.413333pt;}
.y4_c00079{bottom:937.613333pt;}
.y2a_c00079{bottom:938.253333pt;}
.y25_c00079{bottom:959.693333pt;}
.y3_c00079{bottom:965.117333pt;}
.y28_c00079{bottom:972.800000pt;}
.y27_c00079{bottom:979.200000pt;}
.y26_c00079{bottom:989.440000pt;}
.y2_c00079{bottom:992.333333pt;}
.y1_c00079{bottom:1059.853333pt;}
.h1d_c00079{height:8.898438pt;}
.h1f_c00079{height:12.556773pt;}
.h1e_c00079{height:12.563023pt;}
.h14_c00079{height:17.800556pt;}
.hb_c00079{height:18.754560pt;}
.h10_c00079{height:19.469306pt;}
.hd_c00079{height:19.607395pt;}
.h1b_c00079{height:20.581806pt;}
.h15_c00079{height:21.312000pt;}
.h9_c00079{height:23.017315pt;}
.h18_c00079{height:24.601563pt;}
.h11_c00079{height:25.587500pt;}
.h23_c00079{height:25.648961pt;}
.h24_c00079{height:33.500523pt;}
.h22_c00079{height:44.492188pt;}
.h1a_c00079{height:47.281250pt;}
.hc_c00079{height:48.950000pt;}
.h7_c00079{height:50.250000pt;}
.hf_c00079{height:51.175000pt;}
.h1c_c00079{height:53.400000pt;}
.h16_c00079{height:55.625000pt;}
.h2_c00079{height:58.101562pt;}
.h6_c00079{height:60.195312pt;}
.h2a_c00079{height:61.187500pt;}
.h3_c00079{height:62.812500pt;}
.h5_c00079{height:62.823167pt;}
.h4_c00079{height:64.873958pt;}
.ha_c00079{height:65.429688pt;}
.h19_c00079{height:67.862500pt;}
.h29_c00079{height:71.200000pt;}
.h13_c00079{height:76.762500pt;}
.h12_c00079{height:89.000000pt;}
.h8_c00079{height:102.297600pt;}
.h21_c00079{height:108.264960pt;}
.h28_c00079{height:114.587500pt;}
.h27_c00079{height:151.300556pt;}
.h26_c00079{height:153.525000pt;}
.h20_c00079{height:192.660480pt;}
.h25_c00079{height:262.242188pt;}
.he_c00079{height:282.133336pt;}
.h17_c00079{height:400.500000pt;}
.h1_c00079{height:1122.666667pt;}
.h0_c00079{height:1122.880000pt;}
.w1_c00079{width:793.333333pt;}
.w0_c00079{width:793.600000pt;}
.x0_c00079{left:0.000000pt;}
.x1_c00079{left:115.133333pt;}
.xf_c00079{left:131.600000pt;}
.x2_c00079{left:132.560000pt;}
.x1c_c00079{left:170.072000pt;}
.x1b_c00079{left:171.034667pt;}
.x3_c00079{left:172.192000pt;}
.x19_c00079{left:259.053333pt;}
.x17_c00079{left:275.653333pt;}
.x1a_c00079{left:278.426667pt;}
.x10_c00079{left:289.720000pt;}
.x11_c00079{left:305.106667pt;}
.x18_c00079{left:319.520000pt;}
.x12_c00079{left:331.640000pt;}
.x4_c00079{left:340.960000pt;}
.x13_c00079{left:350.533333pt;}
.x14_c00079{left:380.666667pt;}
.x1d_c00079{left:383.560000pt;}
.x5_c00079{left:386.386667pt;}
.x9_c00079{left:407.853333pt;}
.x15_c00079{left:411.746667pt;}
.xb_c00079{left:415.773333pt;}
.x6_c00079{left:418.333333pt;}
.x16_c00079{left:427.666667pt;}
.xa_c00079{left:434.080000pt;}
.xc_c00079{left:438.866667pt;}
.x7_c00079{left:441.426667pt;}
.xe_c00079{left:463.813333pt;}
.xd_c00079{left:465.706667pt;}
.x8_c00079{left:467.453333pt;}
.x23_c00079{left:507.813333pt;}
.x1e_c00079{left:510.413333pt;}
.x3e_c00079{left:511.506667pt;}
.x24_c00079{left:513.106667pt;}
.x26_c00079{left:514.813333pt;}
.x34_c00079{left:516.093333pt;}
.x3f_c00079{left:517.120000pt;}
.x27_c00079{left:519.946667pt;}
.x31_c00079{left:520.840000pt;}
.x38_c00079{left:521.880000pt;}
.x29_c00079{left:522.946667pt;}
.x2a_c00079{left:524.386667pt;}
.x2b_c00079{left:526.013333pt;}
.x22_c00079{left:527.493333pt;}
.x39_c00079{left:529.146667pt;}
.x2c_c00079{left:530.253333pt;}
.x20_c00079{left:532.360000pt;}
.x2f_c00079{left:533.826667pt;}
.x35_c00079{left:535.013333pt;}
.x3d_c00079{left:537.613333pt;}
.x1f_c00079{left:540.173333pt;}
.x36_c00079{left:541.266667pt;}
.x3a_c00079{left:543.946667pt;}
.x32_c00079{left:548.333333pt;}
.x3b_c00079{left:553.466667pt;}
.x2d_c00079{left:556.373333pt;}
.x21_c00079{left:560.640000pt;}
.x33_c00079{left:561.840000pt;}
.x30_c00079{left:563.146667pt;}
.x37_c00079{left:566.040000pt;}
.x3c_c00079{left:569.573333pt;}
.x2e_c00079{left:570.986667pt;}
.x28_c00079{left:575.853333pt;}
.x25_c00079{left:578.373333pt;}
.x41_c00079{left:760.120000pt;}
.x40_c00079{left:761.373333pt;}
}





/* 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_c00080 {
    display:none;
  }
  .loading-indicator_c00080.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00080 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_c00080 { 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_c00080" -> "#page-container .classname_c00080")
 */
.pf_c00080 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00080 { /* 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_c00080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00080 { /* 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_c00080 { /* 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_c00080 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00080 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00080 {overflow:visible;}
  }
}
.c_c00080 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00080 { /* 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_c00080:after { /* webkit #35443 */
  content: '';
}
.t_c00080:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00080 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 */
}
.__c00080 { /* 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_c00080 { /* info for Javascript */
  display:none;
}
.l_c00080 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00080 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00080 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00080: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_c00080 {
    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_c00080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00080.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_c00080 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00080;src:url('chunks/assets/font_ad48c16008d6ac7a9bfa0d4d.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.311035;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_c00080;src:url('chunks/assets/font_f00a5f8c200398434e4165a0.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.284668;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_c00080;src:url('chunks/assets/font_aabf2738dcee68257b46fd3e.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.284180;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_c00080;src:url('chunks/assets/font_9e7bcb90a385c1cd3dbf9fc1.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;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:ff5_c00080;src:url('chunks/assets/font_2bb60c89b525d3210377bf77.woff2')format("woff");}.ff5_c00080{font-family:ff5_c00080;line-height:0.666000;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_c00080;src:url('chunks/assets/font_f4536467b32706cdc95cc2c6.woff2')format("woff");}.ff6_c00080{font-family:ff6_c00080;line-height:1.284180;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;}
.me_c00080{transform:matrix(0.124287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124287,0.000000,0.000000,0.250000,0,0);}
.m4_c00080{transform:matrix(0.154353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154353,0.000000,0.000000,0.250000,0,0);}
.m8_c00080{transform:matrix(0.176389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176389,0.000000,0.000000,0.250000,0,0);}
.m9_c00080{transform:matrix(0.178219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178219,0.000000,0.000000,0.250000,0,0);}
.m1b_c00080{transform:matrix(0.225372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225372,0.000000,0.000000,0.250000,0,0);}
.m2_c00080{transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);}
.m5_c00080{transform:matrix(0.238824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238824,0.000000,0.000000,0.250000,0,0);}
.md_c00080{transform:matrix(0.242023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242023,0.000000,0.000000,0.250000,0,0);}
.ma_c00080{transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);}
.m1_c00080{transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);}
.mc_c00080{transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);}
.m16_c00080{transform:matrix(0.247031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247031,0.000000,0.000000,0.250000,0,0);}
.m6_c00080{transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);}
.m3_c00080{transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);}
.mb_c00080{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m7_c00080{transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);}
.m0_c00080{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);}
.m17_c00080{transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);}
.m13_c00080{transform:matrix(0.289311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289311,0.000000,0.000000,0.250000,0,0);}
.mf_c00080{transform:matrix(0.310410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310410,0.000000,0.000000,0.250000,0,0);}
.m15_c00080{transform:matrix(0.334961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334961,0.000000,0.000000,0.250000,0,0);}
.m18_c00080{transform:matrix(0.341054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341054,0.000000,0.000000,0.250000,0,0);}
.m11_c00080{transform:matrix(0.352410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352410,0.000000,0.000000,0.250000,0,0);}
.m10_c00080{transform:matrix(0.388765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388765,0.000000,0.000000,0.250000,0,0);}
.m19_c00080{transform:matrix(0.395842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395842,0.000000,0.000000,0.250000,0,0);}
.m1c_c00080{transform:matrix(0.419643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419643,0.000000,0.000000,0.250000,0,0);}
.m14_c00080{transform:matrix(0.425699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425699,0.000000,0.000000,0.250000,0,0);}
.m1a_c00080{transform:matrix(0.450607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450607,0.000000,0.000000,0.250000,0,0);}
.m12_c00080{transform:matrix(0.670815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670815,0.000000,0.000000,0.250000,0,0);}
.v1_c00080{vertical-align:-8.617800px;}
.v0_c00080{vertical-align:0.000000px;}
.v2_c00080{vertical-align:8.640000px;}
.ls37_c00080{letter-spacing:-2.688000px;}
.ls27_c00080{letter-spacing:-2.541000px;}
.ls42_c00080{letter-spacing:-2.526480px;}
.ls59_c00080{letter-spacing:-2.461140px;}
.ls2f_c00080{letter-spacing:-2.207040px;}
.ls41_c00080{letter-spacing:-2.178000px;}
.ls1d_c00080{letter-spacing:-2.105400px;}
.ls3b_c00080{letter-spacing:-2.069100px;}
.ls58_c00080{letter-spacing:-1.996500px;}
.ls25_c00080{letter-spacing:-1.880340px;}
.ls51_c00080{letter-spacing:-1.764180px;}
.ls71_c00080{letter-spacing:-1.730160px;}
.ls1a_c00080{letter-spacing:-1.706100px;}
.ls5a_c00080{letter-spacing:-1.626240px;}
.ls2b_c00080{letter-spacing:-1.611720px;}
.ls4f_c00080{letter-spacing:-1.568160px;}
.ls1e_c00080{letter-spacing:-1.539120px;}
.ls18_c00080{letter-spacing:-1.481040px;}
.ls3a_c00080{letter-spacing:-1.408440px;}
.ls23_c00080{letter-spacing:-1.364880px;}
.ls38_c00080{letter-spacing:-1.267200px;}
.ls17_c00080{letter-spacing:-1.176120px;}
.ls3c_c00080{letter-spacing:-1.147080px;}
.ls4d_c00080{letter-spacing:-1.059960px;}
.ls48_c00080{letter-spacing:-1.045440px;}
.ls70_c00080{letter-spacing:-0.965580px;}
.ls6f_c00080{letter-spacing:-0.922020px;}
.ls29_c00080{letter-spacing:-0.914760px;}
.ls56_c00080{letter-spacing:-0.907500px;}
.ls24_c00080{letter-spacing:-0.892980px;}
.ls4a_c00080{letter-spacing:-0.813120px;}
.ls4e_c00080{letter-spacing:-0.791340px;}
.ls66_c00080{letter-spacing:-0.762300px;}
.ls1b_c00080{letter-spacing:-0.718740px;}
.ls6e_c00080{letter-spacing:-0.646140px;}
.ls28_c00080{letter-spacing:-0.638880px;}
.ls55_c00080{letter-spacing:-0.624360px;}
.ls6b_c00080{letter-spacing:-0.595320px;}
.ls67_c00080{letter-spacing:-0.588060px;}
.ls68_c00080{letter-spacing:-0.580800px;}
.ls35_c00080{letter-spacing:-0.529980px;}
.ls36_c00080{letter-spacing:-0.522720px;}
.ls5c_c00080{letter-spacing:-0.464640px;}
.ls32_c00080{letter-spacing:-0.457380px;}
.ls4b_c00080{letter-spacing:-0.442860px;}
.ls22_c00080{letter-spacing:-0.428340px;}
.ls5b_c00080{letter-spacing:-0.413820px;}
.ls69_c00080{letter-spacing:-0.406560px;}
.ls47_c00080{letter-spacing:-0.399300px;}
.ls43_c00080{letter-spacing:-0.377520px;}
.ls3d_c00080{letter-spacing:-0.355740px;}
.ls2a_c00080{letter-spacing:-0.341220px;}
.ls45_c00080{letter-spacing:-0.333960px;}
.ls2d_c00080{letter-spacing:-0.326700px;}
.ls65_c00080{letter-spacing:-0.319440px;}
.ls19_c00080{letter-spacing:-0.312180px;}
.ls5d_c00080{letter-spacing:-0.304920px;}
.ls52_c00080{letter-spacing:-0.290400px;}
.ls6c_c00080{letter-spacing:-0.283140px;}
.ls3e_c00080{letter-spacing:-0.261360px;}
.ls31_c00080{letter-spacing:-0.254100px;}
.ls34_c00080{letter-spacing:-0.232320px;}
.ls30_c00080{letter-spacing:-0.225060px;}
.ls2e_c00080{letter-spacing:-0.174240px;}
.ls3f_c00080{letter-spacing:-0.166980px;}
.ls20_c00080{letter-spacing:-0.152460px;}
.ls44_c00080{letter-spacing:-0.137940px;}
.ls26_c00080{letter-spacing:-0.116160px;}
.ls2c_c00080{letter-spacing:-0.108900px;}
.ls39_c00080{letter-spacing:-0.101640px;}
.ls1f_c00080{letter-spacing:-0.094380px;}
.ls50_c00080{letter-spacing:-0.087120px;}
.ls46_c00080{letter-spacing:-0.079860px;}
.ls49_c00080{letter-spacing:-0.065340px;}
.ls54_c00080{letter-spacing:-0.058080px;}
.ls5f_c00080{letter-spacing:-0.050820px;}
.ls40_c00080{letter-spacing:-0.043560px;}
.ls53_c00080{letter-spacing:-0.029040px;}
.ls6a_c00080{letter-spacing:-0.021780px;}
.ls4c_c00080{letter-spacing:-0.014520px;}
.ls5e_c00080{letter-spacing:-0.007260px;}
.ls21_c00080{letter-spacing:0.000000px;}
.ls4_c00080{letter-spacing:0.007260px;}
.ls3_c00080{letter-spacing:0.021780px;}
.ls6d_c00080{letter-spacing:0.043560px;}
.ls13_c00080{letter-spacing:0.049560px;}
.ls1c_c00080{letter-spacing:0.065340px;}
.ls7_c00080{letter-spacing:0.072600px;}
.ls6_c00080{letter-spacing:0.166980px;}
.lsf_c00080{letter-spacing:0.184080px;}
.ls8_c00080{letter-spacing:0.188760px;}
.ls12_c00080{letter-spacing:0.196020px;}
.ls2_c00080{letter-spacing:0.203280px;}
.lsa_c00080{letter-spacing:0.254880px;}
.ls5_c00080{letter-spacing:0.261360px;}
.lsc_c00080{letter-spacing:0.382320px;}
.ls10_c00080{letter-spacing:0.417720px;}
.lsd_c00080{letter-spacing:0.495600px;}
.ls57_c00080{letter-spacing:0.551760px;}
.ls33_c00080{letter-spacing:0.609840px;}
.ls11_c00080{letter-spacing:0.644280px;}
.ls1_c00080{letter-spacing:0.647280px;}
.ls14_c00080{letter-spacing:0.665520px;}
.ls62_c00080{letter-spacing:0.840030px;}
.ls9_c00080{letter-spacing:0.913320px;}
.ls60_c00080{letter-spacing:1.030260px;}
.lsb_c00080{letter-spacing:1.189440px;}
.ls63_c00080{letter-spacing:1.230000px;}
.ls64_c00080{letter-spacing:1.350030px;}
.ls0_c00080{letter-spacing:1.489440px;}
.ls15_c00080{letter-spacing:1.618980px;}
.ls16_c00080{letter-spacing:1.647060px;}
.ls61_c00080{letter-spacing:2.190030px;}
.lse_c00080{letter-spacing:3.049200px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{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__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00080{word-spacing:-18.353280px;}
.ws2_c00080{word-spacing:-17.954880px;}
.ws8_c00080{word-spacing:0.000000px;}
.ws0_c00080{word-spacing:54.159600px;}
.ws1_c00080{word-spacing:55.321200px;}
.ws4_c00080{word-spacing:127.413000px;}
.ws7_c00080{word-spacing:127.812300px;}
.ws6_c00080{word-spacing:129.273300px;}
.ws3_c00080{word-spacing:129.808800px;}
._18_c00080{margin-left:-21.630960px;}
._14_c00080{margin-left:-20.171400px;}
._5_c00080{margin-left:-16.322160px;}
._4_c00080{margin-left:-14.221920px;}
._15_c00080{margin-left:-11.906400px;}
._24_c00080{margin-left:-10.510920px;}
._19_c00080{margin-left:-7.986240px;}
._13_c00080{margin-left:-1.887600px;}
._a_c00080{width:2.475660px;}
._16_c00080{width:4.630320px;}
._9_c00080{width:5.713620px;}
._17_c00080{width:7.405980px;}
._12_c00080{width:8.602680px;}
._7_c00080{width:9.655800px;}
._6_c00080{width:10.969860px;}
._8_c00080{width:13.670580px;}
._b_c00080{width:15.746940px;}
._21_c00080{width:18.485760px;}
._1d_c00080{width:19.631040px;}
._1e_c00080{width:21.054000px;}
._1f_c00080{width:22.476960px;}
._20_c00080{width:24.219360px;}
._1a_c00080{width:31.312380px;}
._1c_c00080{width:33.323400px;}
._1b_c00080{width:34.528560px;}
._25_c00080{width:38.231160px;}
._10_c00080{width:41.135160px;}
._11_c00080{width:43.777800px;}
._f_c00080{width:46.275240px;}
._22_c00080{width:50.471520px;}
._23_c00080{width:52.939920px;}
._c_c00080{width:56.867580px;}
._d_c00080{width:61.201800px;}
._e_c00080{width:63.336240px;}
._2_c00080{width:64.984260px;}
._0_c00080{width:67.677720px;}
._1_c00080{width:68.940960px;}
._3_c00080{width:70.583340px;}
.fc0_c00080{color:transparent;}
.fsd_c00080{font-size:16.800600px;}
.fse_c00080{font-size:17.280000px;}
.fs12_c00080{font-size:20.160000px;}
.fsf_c00080{font-size:24.600000px;}
.fs10_c00080{font-size:27.000600px;}
.fsb_c00080{font-size:36.000000px;}
.fsc_c00080{font-size:43.800600px;}
.fsa_c00080{font-size:46.200000px;}
.fs11_c00080{font-size:53.400000px;}
.fs6_c00080{font-size:54.720000px;}
.fs0_c00080{font-size:58.200000px;}
.fs5_c00080{font-size:64.200000px;}
.fs7_c00080{font-size:64.800000px;}
.fs9_c00080{font-size:69.000000px;}
.fs2_c00080{font-size:69.600000px;}
.fs4_c00080{font-size:70.800000px;}
.fs1_c00080{font-size:72.600000px;}
.fs3_c00080{font-size:76.800000px;}
.fs8_c00080{font-size:88.200000px;}
.y0_c00080{bottom:0.000000px;}
.y2a_c00080{bottom:66.615006px;}
.y29_c00080{bottom:129.598206px;}
.y28_c00080{bottom:159.836106px;}
.y27_c00080{bottom:190.800006px;}
.y25_c00080{bottom:221.408106px;}
.y26_c00080{bottom:221.415006px;}
.y24_c00080{bottom:252.735006px;}
.y23_c00080{bottom:282.975006px;}
.y22_c00080{bottom:287.655006px;}
.y21_c00080{bottom:314.284206px;}
.y20_c00080{bottom:345.611106px;}
.y1f_c00080{bottom:376.575006px;}
.y1e_c00080{bottom:407.535006px;}
.y1d_c00080{bottom:438.129456px;}
.y1c_c00080{bottom:469.093356px;}
.y1b_c00080{bottom:500.057256px;}
.y1a_c00080{bottom:530.640006px;}
.y19_c00080{bottom:561.615006px;}
.y17_c00080{bottom:592.928106px;}
.y18_c00080{bottom:592.935006px;}
.y16_c00080{bottom:624.255006px;}
.y15_c00080{bottom:655.215006px;}
.y13_c00080{bottom:685.447206px;}
.y14_c00080{bottom:685.455006px;}
.y12_c00080{bottom:716.392956px;}
.y11_c00080{bottom:747.375006px;}
.y2b_c00080{bottom:758.880006px;}
.y10_c00080{bottom:776.895006px;}
.yf_c00080{bottom:776.900406px;}
.ye_c00080{bottom:809.280006px;}
.yd_c00080{bottom:840.255006px;}
.yc_c00080{bottom:871.225356px;}
.yb_c00080{bottom:901.808106px;}
.ya_c00080{bottom:933.135006px;}
.y8_c00080{bottom:964.091106px;}
.y9_c00080{bottom:964.095006px;}
.y7_c00080{bottom:995.055006px;}
.y5_c00080{bottom:1025.632956px;}
.y6_c00080{bottom:1025.640006px;}
.y4_c00080{bottom:1056.615006px;}
.y3_c00080{bottom:1086.840006px;}
.y2_c00080{bottom:1118.520006px;}
.y1_c00080{bottom:1196.640006px;}
.he_c00080{height:11.508480px;}
.h12_c00080{height:13.426560px;}
.hc_c00080{height:16.480667px;}
.hd_c00080{height:16.488870px;}
.ha_c00080{height:23.976000px;}
.hf_c00080{height:24.792187px;}
.h10_c00080{height:26.486428px;}
.h5_c00080{height:36.443520px;}
.hb_c00080{height:42.987894px;}
.h6_c00080{height:43.156800px;}
.h9_c00080{height:45.320215px;}
.h11_c00080{height:55.694531px;}
.h2_c00080{height:58.654687px;}
.h3_c00080{height:71.252930px;}
.h8_c00080{height:71.964844px;}
.h4_c00080{height:75.337500px;}
.h7_c00080{height:77.945677px;}
.h1_c00080{height:1263.000000px;}
.h0_c00080{height:1263.240006px;}
.w1_c00080{width:892.500000px;}
.w0_c00080{width:892.799998px;}
.x0_c00080{left:0.000000px;}
.x2f_c00080{left:108.254999px;}
.x21_c00080{left:109.694998px;}
.x1b_c00080{left:112.409999px;}
.x15_c00080{left:114.209098px;}
.x1_c00080{left:121.244998px;}
.x8_c00080{left:135.449998px;}
.x3_c00080{left:137.969999px;}
.x2d_c00080{left:173.115898px;}
.x22_c00080{left:174.420149px;}
.x1e_c00080{left:175.543498px;}
.x1a_c00080{left:176.557648px;}
.x12_c00080{left:177.824998px;}
.x9_c00080{left:179.863048px;}
.x6_c00080{left:181.624798px;}
.x4_c00080{left:182.691599px;}
.x2_c00080{left:184.109998px;}
.xa_c00080{left:226.619999px;}
.x18_c00080{left:250.034999px;}
.x19_c00080{left:286.709999px;}
.x27_c00080{left:323.729999px;}
.x23_c00080{left:326.249999px;}
.x28_c00080{left:335.009999px;}
.x29_c00080{left:344.414999px;}
.x2a_c00080{left:353.519999px;}
.x1f_c00080{left:382.124999px;}
.xc_c00080{left:394.484998px;}
.x20_c00080{left:400.889998px;}
.xd_c00080{left:413.489999px;}
.x30_c00080{left:415.619999px;}
.x24_c00080{left:419.774999px;}
.xb_c00080{left:421.919999px;}
.x13_c00080{left:438.944999px;}
.xe_c00080{left:449.384999px;}
.x16_c00080{left:453.809999px;}
.x2b_c00080{left:455.234998px;}
.x14_c00080{left:456.989999px;}
.x25_c00080{left:462.089998px;}
.xf_c00080{left:467.804999px;}
.x2c_c00080{left:478.289999px;}
.x1c_c00080{left:480.404998px;}
.x26_c00080{left:484.199998px;}
.x10_c00080{left:497.969998px;}
.x2e_c00080{left:503.174999px;}
.x1d_c00080{left:509.684999px;}
.x17_c00080{left:512.084998px;}
.x5_c00080{left:513.464998px;}
.x7_c00080{left:516.359998px;}
.x11_c00080{left:543.254999px;}
.x31_c00080{left:751.334998px;}
@media print{
.v1_c00080{vertical-align:-7.660267pt;}
.v0_c00080{vertical-align:0.000000pt;}
.v2_c00080{vertical-align:7.680000pt;}
.ls37_c00080{letter-spacing:-2.389333pt;}
.ls27_c00080{letter-spacing:-2.258667pt;}
.ls42_c00080{letter-spacing:-2.245760pt;}
.ls59_c00080{letter-spacing:-2.187680pt;}
.ls2f_c00080{letter-spacing:-1.961813pt;}
.ls41_c00080{letter-spacing:-1.936000pt;}
.ls1d_c00080{letter-spacing:-1.871467pt;}
.ls3b_c00080{letter-spacing:-1.839200pt;}
.ls58_c00080{letter-spacing:-1.774667pt;}
.ls25_c00080{letter-spacing:-1.671413pt;}
.ls51_c00080{letter-spacing:-1.568160pt;}
.ls71_c00080{letter-spacing:-1.537920pt;}
.ls1a_c00080{letter-spacing:-1.516533pt;}
.ls5a_c00080{letter-spacing:-1.445547pt;}
.ls2b_c00080{letter-spacing:-1.432640pt;}
.ls4f_c00080{letter-spacing:-1.393920pt;}
.ls1e_c00080{letter-spacing:-1.368107pt;}
.ls18_c00080{letter-spacing:-1.316480pt;}
.ls3a_c00080{letter-spacing:-1.251947pt;}
.ls23_c00080{letter-spacing:-1.213227pt;}
.ls38_c00080{letter-spacing:-1.126400pt;}
.ls17_c00080{letter-spacing:-1.045440pt;}
.ls3c_c00080{letter-spacing:-1.019627pt;}
.ls4d_c00080{letter-spacing:-0.942187pt;}
.ls48_c00080{letter-spacing:-0.929280pt;}
.ls70_c00080{letter-spacing:-0.858293pt;}
.ls6f_c00080{letter-spacing:-0.819573pt;}
.ls29_c00080{letter-spacing:-0.813120pt;}
.ls56_c00080{letter-spacing:-0.806667pt;}
.ls24_c00080{letter-spacing:-0.793760pt;}
.ls4a_c00080{letter-spacing:-0.722773pt;}
.ls4e_c00080{letter-spacing:-0.703413pt;}
.ls66_c00080{letter-spacing:-0.677600pt;}
.ls1b_c00080{letter-spacing:-0.638880pt;}
.ls6e_c00080{letter-spacing:-0.574347pt;}
.ls28_c00080{letter-spacing:-0.567893pt;}
.ls55_c00080{letter-spacing:-0.554987pt;}
.ls6b_c00080{letter-spacing:-0.529173pt;}
.ls67_c00080{letter-spacing:-0.522720pt;}
.ls68_c00080{letter-spacing:-0.516267pt;}
.ls35_c00080{letter-spacing:-0.471093pt;}
.ls36_c00080{letter-spacing:-0.464640pt;}
.ls5c_c00080{letter-spacing:-0.413013pt;}
.ls32_c00080{letter-spacing:-0.406560pt;}
.ls4b_c00080{letter-spacing:-0.393653pt;}
.ls22_c00080{letter-spacing:-0.380747pt;}
.ls5b_c00080{letter-spacing:-0.367840pt;}
.ls69_c00080{letter-spacing:-0.361387pt;}
.ls47_c00080{letter-spacing:-0.354933pt;}
.ls43_c00080{letter-spacing:-0.335573pt;}
.ls3d_c00080{letter-spacing:-0.316213pt;}
.ls2a_c00080{letter-spacing:-0.303307pt;}
.ls45_c00080{letter-spacing:-0.296853pt;}
.ls2d_c00080{letter-spacing:-0.290400pt;}
.ls65_c00080{letter-spacing:-0.283947pt;}
.ls19_c00080{letter-spacing:-0.277493pt;}
.ls5d_c00080{letter-spacing:-0.271040pt;}
.ls52_c00080{letter-spacing:-0.258133pt;}
.ls6c_c00080{letter-spacing:-0.251680pt;}
.ls3e_c00080{letter-spacing:-0.232320pt;}
.ls31_c00080{letter-spacing:-0.225867pt;}
.ls34_c00080{letter-spacing:-0.206507pt;}
.ls30_c00080{letter-spacing:-0.200053pt;}
.ls2e_c00080{letter-spacing:-0.154880pt;}
.ls3f_c00080{letter-spacing:-0.148427pt;}
.ls20_c00080{letter-spacing:-0.135520pt;}
.ls44_c00080{letter-spacing:-0.122613pt;}
.ls26_c00080{letter-spacing:-0.103253pt;}
.ls2c_c00080{letter-spacing:-0.096800pt;}
.ls39_c00080{letter-spacing:-0.090347pt;}
.ls1f_c00080{letter-spacing:-0.083893pt;}
.ls50_c00080{letter-spacing:-0.077440pt;}
.ls46_c00080{letter-spacing:-0.070987pt;}
.ls49_c00080{letter-spacing:-0.058080pt;}
.ls54_c00080{letter-spacing:-0.051627pt;}
.ls5f_c00080{letter-spacing:-0.045173pt;}
.ls40_c00080{letter-spacing:-0.038720pt;}
.ls53_c00080{letter-spacing:-0.025813pt;}
.ls6a_c00080{letter-spacing:-0.019360pt;}
.ls4c_c00080{letter-spacing:-0.012907pt;}
.ls5e_c00080{letter-spacing:-0.006453pt;}
.ls21_c00080{letter-spacing:0.000000pt;}
.ls4_c00080{letter-spacing:0.006453pt;}
.ls3_c00080{letter-spacing:0.019360pt;}
.ls6d_c00080{letter-spacing:0.038720pt;}
.ls13_c00080{letter-spacing:0.044053pt;}
.ls1c_c00080{letter-spacing:0.058080pt;}
.ls7_c00080{letter-spacing:0.064533pt;}
.ls6_c00080{letter-spacing:0.148427pt;}
.lsf_c00080{letter-spacing:0.163627pt;}
.ls8_c00080{letter-spacing:0.167787pt;}
.ls12_c00080{letter-spacing:0.174240pt;}
.ls2_c00080{letter-spacing:0.180693pt;}
.lsa_c00080{letter-spacing:0.226560pt;}
.ls5_c00080{letter-spacing:0.232320pt;}
.lsc_c00080{letter-spacing:0.339840pt;}
.ls10_c00080{letter-spacing:0.371307pt;}
.lsd_c00080{letter-spacing:0.440533pt;}
.ls57_c00080{letter-spacing:0.490453pt;}
.ls33_c00080{letter-spacing:0.542080pt;}
.ls11_c00080{letter-spacing:0.572693pt;}
.ls1_c00080{letter-spacing:0.575360pt;}
.ls14_c00080{letter-spacing:0.591573pt;}
.ls62_c00080{letter-spacing:0.746693pt;}
.ls9_c00080{letter-spacing:0.811840pt;}
.ls60_c00080{letter-spacing:0.915787pt;}
.lsb_c00080{letter-spacing:1.057280pt;}
.ls63_c00080{letter-spacing:1.093333pt;}
.ls64_c00080{letter-spacing:1.200027pt;}
.ls0_c00080{letter-spacing:1.323947pt;}
.ls15_c00080{letter-spacing:1.439093pt;}
.ls16_c00080{letter-spacing:1.464053pt;}
.ls61_c00080{letter-spacing:1.946693pt;}
.lse_c00080{letter-spacing:2.710400pt;}
.ws5_c00080{word-spacing:-16.314027pt;}
.ws2_c00080{word-spacing:-15.959893pt;}
.ws8_c00080{word-spacing:0.000000pt;}
.ws0_c00080{word-spacing:48.141867pt;}
.ws1_c00080{word-spacing:49.174400pt;}
.ws4_c00080{word-spacing:113.256000pt;}
.ws7_c00080{word-spacing:113.610933pt;}
.ws6_c00080{word-spacing:114.909600pt;}
.ws3_c00080{word-spacing:115.385600pt;}
._18_c00080{margin-left:-19.227520pt;}
._14_c00080{margin-left:-17.930133pt;}
._5_c00080{margin-left:-14.508587pt;}
._4_c00080{margin-left:-12.641707pt;}
._15_c00080{margin-left:-10.583467pt;}
._24_c00080{margin-left:-9.343040pt;}
._19_c00080{margin-left:-7.098880pt;}
._13_c00080{margin-left:-1.677867pt;}
._a_c00080{width:2.200587pt;}
._16_c00080{width:4.115840pt;}
._9_c00080{width:5.078773pt;}
._17_c00080{width:6.583093pt;}
._12_c00080{width:7.646827pt;}
._7_c00080{width:8.582933pt;}
._6_c00080{width:9.750987pt;}
._8_c00080{width:12.151627pt;}
._b_c00080{width:13.997280pt;}
._21_c00080{width:16.431787pt;}
._1d_c00080{width:17.449813pt;}
._1e_c00080{width:18.714667pt;}
._1f_c00080{width:19.979520pt;}
._20_c00080{width:21.528320pt;}
._1a_c00080{width:27.833227pt;}
._1c_c00080{width:29.620800pt;}
._1b_c00080{width:30.692053pt;}
._25_c00080{width:33.983253pt;}
._10_c00080{width:36.564587pt;}
._11_c00080{width:38.913600pt;}
._f_c00080{width:41.133547pt;}
._22_c00080{width:44.863573pt;}
._23_c00080{width:47.057707pt;}
._c_c00080{width:50.548960pt;}
._d_c00080{width:54.401600pt;}
._e_c00080{width:56.298880pt;}
._2_c00080{width:57.763787pt;}
._0_c00080{width:60.157973pt;}
._1_c00080{width:61.280853pt;}
._3_c00080{width:62.740747pt;}
.fsd_c00080{font-size:14.933867pt;}
.fse_c00080{font-size:15.360000pt;}
.fs12_c00080{font-size:17.920000pt;}
.fsf_c00080{font-size:21.866667pt;}
.fs10_c00080{font-size:24.000533pt;}
.fsb_c00080{font-size:32.000000pt;}
.fsc_c00080{font-size:38.933867pt;}
.fsa_c00080{font-size:41.066667pt;}
.fs11_c00080{font-size:47.466667pt;}
.fs6_c00080{font-size:48.640000pt;}
.fs0_c00080{font-size:51.733333pt;}
.fs5_c00080{font-size:57.066667pt;}
.fs7_c00080{font-size:57.600000pt;}
.fs9_c00080{font-size:61.333333pt;}
.fs2_c00080{font-size:61.866667pt;}
.fs4_c00080{font-size:62.933333pt;}
.fs1_c00080{font-size:64.533333pt;}
.fs3_c00080{font-size:68.266667pt;}
.fs8_c00080{font-size:78.400000pt;}
.y0_c00080{bottom:0.000000pt;}
.y2a_c00080{bottom:59.213339pt;}
.y29_c00080{bottom:115.198405pt;}
.y28_c00080{bottom:142.076539pt;}
.y27_c00080{bottom:169.600005pt;}
.y25_c00080{bottom:196.807205pt;}
.y26_c00080{bottom:196.813339pt;}
.y24_c00080{bottom:224.653339pt;}
.y23_c00080{bottom:251.533339pt;}
.y22_c00080{bottom:255.693339pt;}
.y21_c00080{bottom:279.363739pt;}
.y20_c00080{bottom:307.209872pt;}
.y1f_c00080{bottom:334.733339pt;}
.y1e_c00080{bottom:362.253339pt;}
.y1d_c00080{bottom:389.448405pt;}
.y1c_c00080{bottom:416.971872pt;}
.y1b_c00080{bottom:444.495339pt;}
.y1a_c00080{bottom:471.680005pt;}
.y19_c00080{bottom:499.213339pt;}
.y17_c00080{bottom:527.047205pt;}
.y18_c00080{bottom:527.053339pt;}
.y16_c00080{bottom:554.893339pt;}
.y15_c00080{bottom:582.413339pt;}
.y13_c00080{bottom:609.286405pt;}
.y14_c00080{bottom:609.293339pt;}
.y12_c00080{bottom:636.793739pt;}
.y11_c00080{bottom:664.333339pt;}
.y2b_c00080{bottom:674.560005pt;}
.y10_c00080{bottom:690.573339pt;}
.yf_c00080{bottom:690.578139pt;}
.ye_c00080{bottom:719.360005pt;}
.yd_c00080{bottom:746.893339pt;}
.yc_c00080{bottom:774.422539pt;}
.yb_c00080{bottom:801.607205pt;}
.ya_c00080{bottom:829.453339pt;}
.y8_c00080{bottom:856.969872pt;}
.y9_c00080{bottom:856.973339pt;}
.y7_c00080{bottom:884.493339pt;}
.y5_c00080{bottom:911.673739pt;}
.y6_c00080{bottom:911.680005pt;}
.y4_c00080{bottom:939.213339pt;}
.y3_c00080{bottom:966.080005pt;}
.y2_c00080{bottom:994.240005pt;}
.y1_c00080{bottom:1063.680005pt;}
.he_c00080{height:10.229760pt;}
.h12_c00080{height:11.934720pt;}
.hc_c00080{height:14.649482pt;}
.hd_c00080{height:14.656773pt;}
.ha_c00080{height:21.312000pt;}
.hf_c00080{height:22.037500pt;}
.h10_c00080{height:23.543492pt;}
.h5_c00080{height:32.394240pt;}
.hb_c00080{height:38.211461pt;}
.h6_c00080{height:38.361600pt;}
.h9_c00080{height:40.284635pt;}
.h11_c00080{height:49.506250pt;}
.h2_c00080{height:52.137500pt;}
.h3_c00080{height:63.335938pt;}
.h8_c00080{height:63.968750pt;}
.h4_c00080{height:66.966667pt;}
.h7_c00080{height:69.285046pt;}
.h1_c00080{height:1122.666667pt;}
.h0_c00080{height:1122.880005pt;}
.w1_c00080{width:793.333333pt;}
.w0_c00080{width:793.599999pt;}
.x0_c00080{left:0.000000pt;}
.x2f_c00080{left:96.226665pt;}
.x21_c00080{left:97.506665pt;}
.x1b_c00080{left:99.919999pt;}
.x15_c00080{left:101.519199pt;}
.x1_c00080{left:107.773332pt;}
.x8_c00080{left:120.399999pt;}
.x3_c00080{left:122.639999pt;}
.x2d_c00080{left:153.880799pt;}
.x22_c00080{left:155.040132pt;}
.x1e_c00080{left:156.038665pt;}
.x1a_c00080{left:156.940132pt;}
.x12_c00080{left:158.066665pt;}
.x9_c00080{left:159.878265pt;}
.x6_c00080{left:161.444265pt;}
.x4_c00080{left:162.392532pt;}
.x2_c00080{left:163.653332pt;}
.xa_c00080{left:201.439999pt;}
.x18_c00080{left:222.253332pt;}
.x19_c00080{left:254.853332pt;}
.x27_c00080{left:287.759999pt;}
.x23_c00080{left:289.999999pt;}
.x28_c00080{left:297.786665pt;}
.x29_c00080{left:306.146665pt;}
.x2a_c00080{left:314.239999pt;}
.x1f_c00080{left:339.666665pt;}
.xc_c00080{left:350.653332pt;}
.x20_c00080{left:356.346665pt;}
.xd_c00080{left:367.546665pt;}
.x30_c00080{left:369.439999pt;}
.x24_c00080{left:373.133332pt;}
.xb_c00080{left:375.039999pt;}
.x13_c00080{left:390.173332pt;}
.xe_c00080{left:399.453332pt;}
.x16_c00080{left:403.386665pt;}
.x2b_c00080{left:404.653332pt;}
.x14_c00080{left:406.213332pt;}
.x25_c00080{left:410.746665pt;}
.xf_c00080{left:415.826665pt;}
.x2c_c00080{left:425.146665pt;}
.x1c_c00080{left:427.026665pt;}
.x26_c00080{left:430.399999pt;}
.x10_c00080{left:442.639999pt;}
.x2e_c00080{left:447.266665pt;}
.x1d_c00080{left:453.053332pt;}
.x17_c00080{left:455.186665pt;}
.x5_c00080{left:456.413332pt;}
.x7_c00080{left:458.986665pt;}
.x11_c00080{left:482.893332pt;}
.x31_c00080{left:667.853332pt;}
}





/* 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_c00081 {
    display:none;
  }
  .loading-indicator_c00081.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00081 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_c00081 { 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_c00081" -> "#page-container .classname_c00081")
 */
.pf_c00081 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00081 { /* 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_c00081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00081 { /* 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_c00081 { /* 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_c00081 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00081 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00081 {overflow:visible;}
  }
}
.c_c00081 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00081 { /* 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_c00081:after { /* webkit #35443 */
  content: '';
}
.t_c00081:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00081 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 */
}
.__c00081 { /* 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_c00081 { /* info for Javascript */
  display:none;
}
.l_c00081 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00081 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00081 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00081: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_c00081 {
    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_c00081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00081.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_c00081 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00081;src:url('chunks/assets/font_864517f199b24b5fc6997566.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.284668;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_c00081;src:url('chunks/assets/font_1531830963007e923c4ccfcb.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:0.666000;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_c00081;src:url('chunks/assets/font_b95fc15144b20d5cdd690500.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.284180;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_c00081{transform:matrix(0.061644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061644,0.000000,0.000000,0.250000,0,0);}
.m9_c00081{transform:matrix(0.133784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133784,0.000000,0.000000,0.250000,0,0);}
.mb_c00081{transform:matrix(0.142097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142097,0.000000,0.000000,0.250000,0,0);}
.mc_c00081{transform:matrix(0.216242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216242,0.000000,0.000000,0.250000,0,0);}
.m7_c00081{transform:matrix(0.226798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226798,0.000000,0.000000,0.250000,0,0);}
.m8_c00081{transform:matrix(0.234489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234489,0.000000,0.000000,0.250000,0,0);}
.me_c00081{transform:matrix(0.245909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245909,0.000000,0.000000,0.250000,0,0);}
.m0_c00081{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.ma_c00081{transform:matrix(0.248246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248246,0.000000,0.000000,0.250000,0,0);}
.md_c00081{transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{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);}
.m2_c00081{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m6_c00081{transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);}
.m3_c00081{transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);}
.m5_c00081{transform:matrix(0.325527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325527,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls4a_c00081{letter-spacing:-2.499000px;}
.ls46_c00081{letter-spacing:-2.370480px;}
.ls36_c00081{letter-spacing:-2.352000px;}
.ls5c_c00081{letter-spacing:-2.120580px;}
.ls5b_c00081{letter-spacing:-2.106300px;}
.ls4d_c00081{letter-spacing:-2.063460px;}
.ls4e_c00081{letter-spacing:-2.042040px;}
.ls7e_c00081{letter-spacing:-2.016000px;}
.ls3b_c00081{letter-spacing:-1.884960px;}
.ls74_c00081{letter-spacing:-1.856400px;}
.ls56_c00081{letter-spacing:-1.656480px;}
.ls5a_c00081{letter-spacing:-1.549380px;}
.ls59_c00081{letter-spacing:-1.513680px;}
.ls3c_c00081{letter-spacing:-1.485120px;}
.ls5e_c00081{letter-spacing:-1.470840px;}
.ls5f_c00081{letter-spacing:-1.356600px;}
.ls79_c00081{letter-spacing:-1.342320px;}
.ls6c_c00081{letter-spacing:-1.149540px;}
.ls50_c00081{letter-spacing:-1.120980px;}
.ls3d_c00081{letter-spacing:-1.035300px;}
.ls3a_c00081{letter-spacing:-1.028160px;}
.ls78_c00081{letter-spacing:-0.942480px;}
.ls6f_c00081{letter-spacing:-0.928200px;}
.ls66_c00081{letter-spacing:-0.828240px;}
.ls42_c00081{letter-spacing:-0.792540px;}
.ls6d_c00081{letter-spacing:-0.785400px;}
.ls7c_c00081{letter-spacing:-0.763980px;}
.ls67_c00081{letter-spacing:-0.678300px;}
.ls41_c00081{letter-spacing:-0.642600px;}
.ls5d_c00081{letter-spacing:-0.592620px;}
.ls44_c00081{letter-spacing:-0.542640px;}
.ls75_c00081{letter-spacing:-0.528360px;}
.ls57_c00081{letter-spacing:-0.492660px;}
.ls70_c00081{letter-spacing:-0.478380px;}
.ls4b_c00081{letter-spacing:-0.456960px;}
.ls71_c00081{letter-spacing:-0.399840px;}
.ls64_c00081{letter-spacing:-0.385560px;}
.ls77_c00081{letter-spacing:-0.378420px;}
.ls53_c00081{letter-spacing:-0.371280px;}
.ls61_c00081{letter-spacing:-0.271320px;}
.ls47_c00081{letter-spacing:-0.264180px;}
.ls63_c00081{letter-spacing:-0.242760px;}
.ls6a_c00081{letter-spacing:-0.228480px;}
.ls45_c00081{letter-spacing:-0.214200px;}
.ls55_c00081{letter-spacing:-0.199920px;}
.ls73_c00081{letter-spacing:-0.192780px;}
.ls43_c00081{letter-spacing:-0.185640px;}
.ls54_c00081{letter-spacing:-0.178500px;}
.ls6e_c00081{letter-spacing:-0.171360px;}
.ls69_c00081{letter-spacing:-0.157080px;}
.ls52_c00081{letter-spacing:-0.149940px;}
.ls51_c00081{letter-spacing:-0.142800px;}
.ls48_c00081{letter-spacing:-0.135660px;}
.ls4f_c00081{letter-spacing:-0.128520px;}
.ls58_c00081{letter-spacing:-0.121380px;}
.ls68_c00081{letter-spacing:-0.107100px;}
.ls76_c00081{letter-spacing:-0.092820px;}
.ls3e_c00081{letter-spacing:-0.078540px;}
.ls4c_c00081{letter-spacing:-0.071400px;}
.ls6b_c00081{letter-spacing:-0.064260px;}
.ls62_c00081{letter-spacing:-0.049980px;}
.ls7b_c00081{letter-spacing:-0.021420px;}
.ls39_c00081{letter-spacing:0.000000px;}
.ls2a_c00081{letter-spacing:0.007140px;}
.ls31_c00081{letter-spacing:0.027840px;}
.ls1d_c00081{letter-spacing:0.028560px;}
.ls4_c00081{letter-spacing:0.035700px;}
.ls35_c00081{letter-spacing:0.049980px;}
.ls8_c00081{letter-spacing:0.055680px;}
.ls2f_c00081{letter-spacing:0.057120px;}
.lsb_c00081{letter-spacing:0.064260px;}
.ls5_c00081{letter-spacing:0.078540px;}
.ls10_c00081{letter-spacing:0.092820px;}
.ls24_c00081{letter-spacing:0.099960px;}
.ls1c_c00081{letter-spacing:0.107100px;}
.ls2e_c00081{letter-spacing:0.114240px;}
.ls13_c00081{letter-spacing:0.121380px;}
.ls7a_c00081{letter-spacing:0.142800px;}
.ls12_c00081{letter-spacing:0.178500px;}
.ls18_c00081{letter-spacing:0.180960px;}
.lsc_c00081{letter-spacing:0.185640px;}
.ls11_c00081{letter-spacing:0.242760px;}
.ls25_c00081{letter-spacing:0.250560px;}
.ls7d_c00081{letter-spacing:0.271320px;}
.lse_c00081{letter-spacing:0.292740px;}
.ls2b_c00081{letter-spacing:0.299880px;}
.ls14_c00081{letter-spacing:0.321300px;}
.ls15_c00081{letter-spacing:0.328440px;}
.ls21_c00081{letter-spacing:0.335580px;}
.ls33_c00081{letter-spacing:0.342720px;}
.lsa_c00081{letter-spacing:0.385560px;}
.ls65_c00081{letter-spacing:0.406980px;}
.ls29_c00081{letter-spacing:0.414120px;}
.ls9_c00081{letter-spacing:0.417600px;}
.ls22_c00081{letter-spacing:0.428400px;}
.ls23_c00081{letter-spacing:0.449820px;}
.ls16_c00081{letter-spacing:0.485520px;}
.ls7_c00081{letter-spacing:0.487200px;}
.ls1f_c00081{letter-spacing:0.501120px;}
.ls34_c00081{letter-spacing:0.506940px;}
.lsd_c00081{letter-spacing:0.521220px;}
.lsf_c00081{letter-spacing:0.535500px;}
.ls6_c00081{letter-spacing:0.542640px;}
.ls1b_c00081{letter-spacing:0.571200px;}
.ls17_c00081{letter-spacing:0.635460px;}
.ls32_c00081{letter-spacing:0.668160px;}
.ls19_c00081{letter-spacing:0.675120px;}
.ls72_c00081{letter-spacing:0.714000px;}
.ls2d_c00081{letter-spacing:0.716880px;}
.ls27_c00081{letter-spacing:0.828240px;}
.ls1a_c00081{letter-spacing:0.849120px;}
.ls2c_c00081{letter-spacing:0.856080px;}
.ls60_c00081{letter-spacing:0.913920px;}
.ls20_c00081{letter-spacing:1.056720px;}
.ls28_c00081{letter-spacing:1.063860px;}
.ls3f_c00081{letter-spacing:1.128120px;}
.ls1_c00081{letter-spacing:1.152600px;}
.ls49_c00081{letter-spacing:1.170960px;}
.ls26_c00081{letter-spacing:1.294560px;}
.ls1e_c00081{letter-spacing:1.364160px;}
.ls2_c00081{letter-spacing:1.417020px;}
.ls30_c00081{letter-spacing:1.517280px;}
.ls3_c00081{letter-spacing:1.633980px;}
.ls0_c00081{letter-spacing:1.830600px;}
.ls37_c00081{letter-spacing:2.250960px;}
.ls38_c00081{letter-spacing:3.390000px;}
.ls40_c00081{letter-spacing:3.570000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{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__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00081{word-spacing:0.000000px;}
.ws4_c00081{word-spacing:126.472500px;}
.ws5_c00081{word-spacing:126.485100px;}
.ws1_c00081{word-spacing:126.770700px;}
.ws3_c00081{word-spacing:127.904700px;}
.ws0_c00081{word-spacing:127.913100px;}
.ws2_c00081{word-spacing:128.819700px;}
._1b_c00081{margin-left:-19.209600px;}
._8_c00081{margin-left:-14.184480px;}
._7_c00081{margin-left:-12.562200px;}
._14_c00081{margin-left:-10.916340px;}
._9_c00081{margin-left:-9.888900px;}
._20_c00081{margin-left:-8.087340px;}
._26_c00081{margin-left:-5.140800px;}
._1f_c00081{margin-left:-3.784200px;}
._6_c00081{margin-left:-1.185240px;}
._1_c00081{width:1.674660px;}
._a_c00081{width:2.748900px;}
._0_c00081{width:3.796800px;}
._15_c00081{width:4.909860px;}
._1a_c00081{width:6.333180px;}
._5_c00081{width:7.918260px;}
._3_c00081{width:9.531900px;}
._2_c00081{width:12.323640px;}
._4_c00081{width:14.080080px;}
._25_c00081{width:16.758960px;}
._16_c00081{width:20.863080px;}
._11_c00081{width:23.076480px;}
._17_c00081{width:24.618720px;}
._10_c00081{width:25.632600px;}
._13_c00081{width:26.953500px;}
._24_c00081{width:28.402920px;}
._12_c00081{width:29.823780px;}
._19_c00081{width:32.734500px;}
._18_c00081{width:33.760320px;}
._b_c00081{width:38.413200px;}
._c_c00081{width:41.840400px;}
._e_c00081{width:44.410800px;}
._f_c00081{width:46.038720px;}
._d_c00081{width:47.845140px;}
._1c_c00081{width:50.394780px;}
._1d_c00081{width:51.807840px;}
._1e_c00081{width:53.213760px;}
._21_c00081{width:55.863360px;}
._22_c00081{width:56.920080px;}
._23_c00081{width:59.604720px;}
._27_c00081{width:63.446040px;}
._28_c00081{width:64.781220px;}
.fc0_c00081{color:transparent;}
.fs5_c00081{font-size:53.280000px;}
.fs6_c00081{font-size:56.160000px;}
.fs7_c00081{font-size:57.600000px;}
.fs0_c00081{font-size:67.200000px;}
.fs1_c00081{font-size:67.800000px;}
.fs4_c00081{font-size:69.600000px;}
.fs3_c00081{font-size:71.400000px;}
.fs2_c00081{font-size:210.240600px;}
.y0_c00081{bottom:0.000000px;}
.y27_c00081{bottom:65.895006px;}
.y26_c00081{bottom:128.893206px;}
.y25_c00081{bottom:159.845106px;}
.y24_c00081{bottom:190.440006px;}
.y23_c00081{bottom:221.421306px;}
.y22_c00081{bottom:252.373206px;}
.y21_c00081{bottom:282.968106px;}
.y20_c00081{bottom:313.920006px;}
.y1f_c00081{bottom:344.535006px;}
.y1e_c00081{bottom:344.542206px;}
.y1d_c00081{bottom:374.780106px;}
.y1c_c00081{bottom:405.375006px;}
.y1b_c00081{bottom:405.376206px;}
.y1a_c00081{bottom:436.702956px;}
.y19_c00081{bottom:467.280006px;}
.y18_c00081{bottom:498.253206px;}
.y17_c00081{bottom:559.800006px;}
.y16_c00081{bottom:591.135006px;}
.y15_c00081{bottom:591.142956px;}
.y14_c00081{bottom:621.720006px;}
.y13_c00081{bottom:652.688106px;}
.y12_c00081{bottom:683.643456px;}
.y11_c00081{bottom:714.256206px;}
.y10_c00081{bottom:745.208106px;}
.yf_c00081{bottom:776.160006px;}
.ye_c00081{bottom:806.782956px;}
.yd_c00081{bottom:837.360006px;}
.yc_c00081{bottom:837.386406px;}
.yb_c00081{bottom:868.338306px;}
.ya_c00081{bottom:898.951056px;}
.y9_c00081{bottom:929.528106px;}
.y8_c00081{bottom:960.480006px;}
.y7_c00081{bottom:991.095006px;}
.y6_c00081{bottom:991.103106px;}
.y5_c00081{bottom:1022.055006px;}
.y4_c00081{bottom:1052.640006px;}
.y3_c00081{bottom:1082.895006px;}
.y2_c00081{bottom:1114.575006px;}
.y1_c00081{bottom:1189.455006px;}
.h6_c00081{height:35.484480px;}
.h7_c00081{height:37.402560px;}
.h9_c00081{height:56.531250px;}
.h2_c00081{height:65.953125px;}
.h3_c00081{height:66.541992px;}
.h8_c00081{height:70.040332px;}
.h5_c00081{height:70.075195px;}
.h4_c00081{height:140.020240px;}
.h1_c00081{height:1263.000000px;}
.h0_c00081{height:1263.240006px;}
.w1_c00081{width:892.500000px;}
.w0_c00081{width:892.799998px;}
.x0_c00081{left:0.000000px;}
.x1_c00081{left:124.124999px;}
.x15_c00081{left:186.099898px;}
.xf_c00081{left:187.747948px;}
.x2_c00081{left:188.819998px;}
.x8_c00081{left:342.104999px;}
.x9_c00081{left:367.739999px;}
.x3_c00081{left:381.779998px;}
.x4_c00081{left:403.559999px;}
.x10_c00081{left:406.814998px;}
.x5_c00081{left:427.154998px;}
.x11_c00081{left:441.209999px;}
.x12_c00081{left:449.339998px;}
.x13_c00081{left:457.004998px;}
.xc_c00081{left:476.654998px;}
.x14_c00081{left:486.824998px;}
.xa_c00081{left:509.789999px;}
.xe_c00081{left:514.424999px;}
.xb_c00081{left:518.654998px;}
.xd_c00081{left:528.449998px;}
.x6_c00081{left:597.959998px;}
.x7_c00081{left:602.279999px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls4a_c00081{letter-spacing:-2.221333pt;}
.ls46_c00081{letter-spacing:-2.107093pt;}
.ls36_c00081{letter-spacing:-2.090667pt;}
.ls5c_c00081{letter-spacing:-1.884960pt;}
.ls5b_c00081{letter-spacing:-1.872267pt;}
.ls4d_c00081{letter-spacing:-1.834187pt;}
.ls4e_c00081{letter-spacing:-1.815147pt;}
.ls7e_c00081{letter-spacing:-1.792000pt;}
.ls3b_c00081{letter-spacing:-1.675520pt;}
.ls74_c00081{letter-spacing:-1.650133pt;}
.ls56_c00081{letter-spacing:-1.472427pt;}
.ls5a_c00081{letter-spacing:-1.377227pt;}
.ls59_c00081{letter-spacing:-1.345493pt;}
.ls3c_c00081{letter-spacing:-1.320107pt;}
.ls5e_c00081{letter-spacing:-1.307413pt;}
.ls5f_c00081{letter-spacing:-1.205867pt;}
.ls79_c00081{letter-spacing:-1.193173pt;}
.ls6c_c00081{letter-spacing:-1.021813pt;}
.ls50_c00081{letter-spacing:-0.996427pt;}
.ls3d_c00081{letter-spacing:-0.920267pt;}
.ls3a_c00081{letter-spacing:-0.913920pt;}
.ls78_c00081{letter-spacing:-0.837760pt;}
.ls6f_c00081{letter-spacing:-0.825067pt;}
.ls66_c00081{letter-spacing:-0.736213pt;}
.ls42_c00081{letter-spacing:-0.704480pt;}
.ls6d_c00081{letter-spacing:-0.698133pt;}
.ls7c_c00081{letter-spacing:-0.679093pt;}
.ls67_c00081{letter-spacing:-0.602933pt;}
.ls41_c00081{letter-spacing:-0.571200pt;}
.ls5d_c00081{letter-spacing:-0.526773pt;}
.ls44_c00081{letter-spacing:-0.482347pt;}
.ls75_c00081{letter-spacing:-0.469653pt;}
.ls57_c00081{letter-spacing:-0.437920pt;}
.ls70_c00081{letter-spacing:-0.425227pt;}
.ls4b_c00081{letter-spacing:-0.406187pt;}
.ls71_c00081{letter-spacing:-0.355413pt;}
.ls64_c00081{letter-spacing:-0.342720pt;}
.ls77_c00081{letter-spacing:-0.336373pt;}
.ls53_c00081{letter-spacing:-0.330027pt;}
.ls61_c00081{letter-spacing:-0.241173pt;}
.ls47_c00081{letter-spacing:-0.234827pt;}
.ls63_c00081{letter-spacing:-0.215787pt;}
.ls6a_c00081{letter-spacing:-0.203093pt;}
.ls45_c00081{letter-spacing:-0.190400pt;}
.ls55_c00081{letter-spacing:-0.177707pt;}
.ls73_c00081{letter-spacing:-0.171360pt;}
.ls43_c00081{letter-spacing:-0.165013pt;}
.ls54_c00081{letter-spacing:-0.158667pt;}
.ls6e_c00081{letter-spacing:-0.152320pt;}
.ls69_c00081{letter-spacing:-0.139627pt;}
.ls52_c00081{letter-spacing:-0.133280pt;}
.ls51_c00081{letter-spacing:-0.126933pt;}
.ls48_c00081{letter-spacing:-0.120587pt;}
.ls4f_c00081{letter-spacing:-0.114240pt;}
.ls58_c00081{letter-spacing:-0.107893pt;}
.ls68_c00081{letter-spacing:-0.095200pt;}
.ls76_c00081{letter-spacing:-0.082507pt;}
.ls3e_c00081{letter-spacing:-0.069813pt;}
.ls4c_c00081{letter-spacing:-0.063467pt;}
.ls6b_c00081{letter-spacing:-0.057120pt;}
.ls62_c00081{letter-spacing:-0.044427pt;}
.ls7b_c00081{letter-spacing:-0.019040pt;}
.ls39_c00081{letter-spacing:0.000000pt;}
.ls2a_c00081{letter-spacing:0.006347pt;}
.ls31_c00081{letter-spacing:0.024747pt;}
.ls1d_c00081{letter-spacing:0.025387pt;}
.ls4_c00081{letter-spacing:0.031733pt;}
.ls35_c00081{letter-spacing:0.044427pt;}
.ls8_c00081{letter-spacing:0.049493pt;}
.ls2f_c00081{letter-spacing:0.050773pt;}
.lsb_c00081{letter-spacing:0.057120pt;}
.ls5_c00081{letter-spacing:0.069813pt;}
.ls10_c00081{letter-spacing:0.082507pt;}
.ls24_c00081{letter-spacing:0.088853pt;}
.ls1c_c00081{letter-spacing:0.095200pt;}
.ls2e_c00081{letter-spacing:0.101547pt;}
.ls13_c00081{letter-spacing:0.107893pt;}
.ls7a_c00081{letter-spacing:0.126933pt;}
.ls12_c00081{letter-spacing:0.158667pt;}
.ls18_c00081{letter-spacing:0.160853pt;}
.lsc_c00081{letter-spacing:0.165013pt;}
.ls11_c00081{letter-spacing:0.215787pt;}
.ls25_c00081{letter-spacing:0.222720pt;}
.ls7d_c00081{letter-spacing:0.241173pt;}
.lse_c00081{letter-spacing:0.260213pt;}
.ls2b_c00081{letter-spacing:0.266560pt;}
.ls14_c00081{letter-spacing:0.285600pt;}
.ls15_c00081{letter-spacing:0.291947pt;}
.ls21_c00081{letter-spacing:0.298293pt;}
.ls33_c00081{letter-spacing:0.304640pt;}
.lsa_c00081{letter-spacing:0.342720pt;}
.ls65_c00081{letter-spacing:0.361760pt;}
.ls29_c00081{letter-spacing:0.368107pt;}
.ls9_c00081{letter-spacing:0.371200pt;}
.ls22_c00081{letter-spacing:0.380800pt;}
.ls23_c00081{letter-spacing:0.399840pt;}
.ls16_c00081{letter-spacing:0.431573pt;}
.ls7_c00081{letter-spacing:0.433067pt;}
.ls1f_c00081{letter-spacing:0.445440pt;}
.ls34_c00081{letter-spacing:0.450613pt;}
.lsd_c00081{letter-spacing:0.463307pt;}
.lsf_c00081{letter-spacing:0.476000pt;}
.ls6_c00081{letter-spacing:0.482347pt;}
.ls1b_c00081{letter-spacing:0.507733pt;}
.ls17_c00081{letter-spacing:0.564853pt;}
.ls32_c00081{letter-spacing:0.593920pt;}
.ls19_c00081{letter-spacing:0.600107pt;}
.ls72_c00081{letter-spacing:0.634667pt;}
.ls2d_c00081{letter-spacing:0.637227pt;}
.ls27_c00081{letter-spacing:0.736213pt;}
.ls1a_c00081{letter-spacing:0.754773pt;}
.ls2c_c00081{letter-spacing:0.760960pt;}
.ls60_c00081{letter-spacing:0.812373pt;}
.ls20_c00081{letter-spacing:0.939307pt;}
.ls28_c00081{letter-spacing:0.945653pt;}
.ls3f_c00081{letter-spacing:1.002773pt;}
.ls1_c00081{letter-spacing:1.024533pt;}
.ls49_c00081{letter-spacing:1.040853pt;}
.ls26_c00081{letter-spacing:1.150720pt;}
.ls1e_c00081{letter-spacing:1.212587pt;}
.ls2_c00081{letter-spacing:1.259573pt;}
.ls30_c00081{letter-spacing:1.348693pt;}
.ls3_c00081{letter-spacing:1.452427pt;}
.ls0_c00081{letter-spacing:1.627200pt;}
.ls37_c00081{letter-spacing:2.000853pt;}
.ls38_c00081{letter-spacing:3.013333pt;}
.ls40_c00081{letter-spacing:3.173333pt;}
.ws6_c00081{word-spacing:0.000000pt;}
.ws4_c00081{word-spacing:112.420000pt;}
.ws5_c00081{word-spacing:112.431200pt;}
.ws1_c00081{word-spacing:112.685067pt;}
.ws3_c00081{word-spacing:113.693067pt;}
.ws0_c00081{word-spacing:113.700533pt;}
.ws2_c00081{word-spacing:114.506400pt;}
._1b_c00081{margin-left:-17.075200pt;}
._8_c00081{margin-left:-12.608427pt;}
._7_c00081{margin-left:-11.166400pt;}
._14_c00081{margin-left:-9.703413pt;}
._9_c00081{margin-left:-8.790133pt;}
._20_c00081{margin-left:-7.188747pt;}
._26_c00081{margin-left:-4.569600pt;}
._1f_c00081{margin-left:-3.363733pt;}
._6_c00081{margin-left:-1.053547pt;}
._1_c00081{width:1.488587pt;}
._a_c00081{width:2.443467pt;}
._0_c00081{width:3.374933pt;}
._15_c00081{width:4.364320pt;}
._1a_c00081{width:5.629493pt;}
._5_c00081{width:7.038453pt;}
._3_c00081{width:8.472800pt;}
._2_c00081{width:10.954347pt;}
._4_c00081{width:12.515627pt;}
._25_c00081{width:14.896853pt;}
._16_c00081{width:18.544960pt;}
._11_c00081{width:20.512427pt;}
._17_c00081{width:21.883307pt;}
._10_c00081{width:22.784533pt;}
._13_c00081{width:23.958667pt;}
._24_c00081{width:25.247040pt;}
._12_c00081{width:26.510027pt;}
._19_c00081{width:29.097333pt;}
._18_c00081{width:30.009173pt;}
._b_c00081{width:34.145067pt;}
._c_c00081{width:37.191467pt;}
._e_c00081{width:39.476267pt;}
._f_c00081{width:40.923307pt;}
._d_c00081{width:42.529013pt;}
._1c_c00081{width:44.795360pt;}
._1d_c00081{width:46.051413pt;}
._1e_c00081{width:47.301120pt;}
._21_c00081{width:49.656320pt;}
._22_c00081{width:50.595627pt;}
._23_c00081{width:52.981973pt;}
._27_c00081{width:56.396480pt;}
._28_c00081{width:57.583307pt;}
.fs5_c00081{font-size:47.360000pt;}
.fs6_c00081{font-size:49.920000pt;}
.fs7_c00081{font-size:51.200000pt;}
.fs0_c00081{font-size:59.733333pt;}
.fs1_c00081{font-size:60.266667pt;}
.fs4_c00081{font-size:61.866667pt;}
.fs3_c00081{font-size:63.466667pt;}
.fs2_c00081{font-size:186.880533pt;}
.y0_c00081{bottom:0.000000pt;}
.y27_c00081{bottom:58.573339pt;}
.y26_c00081{bottom:114.571739pt;}
.y25_c00081{bottom:142.084539pt;}
.y24_c00081{bottom:169.280005pt;}
.y23_c00081{bottom:196.818939pt;}
.y22_c00081{bottom:224.331739pt;}
.y21_c00081{bottom:251.527205pt;}
.y20_c00081{bottom:279.040005pt;}
.y1f_c00081{bottom:306.253339pt;}
.y1e_c00081{bottom:306.259739pt;}
.y1d_c00081{bottom:333.137872pt;}
.y1c_c00081{bottom:360.333339pt;}
.y1b_c00081{bottom:360.334405pt;}
.y1a_c00081{bottom:388.180405pt;}
.y19_c00081{bottom:415.360005pt;}
.y18_c00081{bottom:442.891739pt;}
.y17_c00081{bottom:497.600005pt;}
.y16_c00081{bottom:525.453339pt;}
.y15_c00081{bottom:525.460405pt;}
.y14_c00081{bottom:552.640005pt;}
.y13_c00081{bottom:580.167205pt;}
.y12_c00081{bottom:607.683072pt;}
.y11_c00081{bottom:634.894405pt;}
.y10_c00081{bottom:662.407205pt;}
.yf_c00081{bottom:689.920005pt;}
.ye_c00081{bottom:717.140405pt;}
.yd_c00081{bottom:744.320005pt;}
.yc_c00081{bottom:744.343472pt;}
.yb_c00081{bottom:771.856272pt;}
.ya_c00081{bottom:799.067605pt;}
.y9_c00081{bottom:826.247205pt;}
.y8_c00081{bottom:853.760005pt;}
.y7_c00081{bottom:880.973339pt;}
.y6_c00081{bottom:880.980539pt;}
.y5_c00081{bottom:908.493339pt;}
.y4_c00081{bottom:935.680005pt;}
.y3_c00081{bottom:962.573339pt;}
.y2_c00081{bottom:990.733339pt;}
.y1_c00081{bottom:1057.293339pt;}
.h6_c00081{height:31.541760pt;}
.h7_c00081{height:33.246720pt;}
.h9_c00081{height:50.250000pt;}
.h2_c00081{height:58.625000pt;}
.h3_c00081{height:59.148438pt;}
.h8_c00081{height:62.258073pt;}
.h5_c00081{height:62.289062pt;}
.h4_c00081{height:124.462435pt;}
.h1_c00081{height:1122.666667pt;}
.h0_c00081{height:1122.880005pt;}
.w1_c00081{width:793.333333pt;}
.w0_c00081{width:793.599999pt;}
.x0_c00081{left:0.000000pt;}
.x1_c00081{left:110.333332pt;}
.x15_c00081{left:165.422132pt;}
.xf_c00081{left:166.887065pt;}
.x2_c00081{left:167.839999pt;}
.x8_c00081{left:304.093332pt;}
.x9_c00081{left:326.879999pt;}
.x3_c00081{left:339.359999pt;}
.x4_c00081{left:358.719999pt;}
.x10_c00081{left:361.613332pt;}
.x5_c00081{left:379.693332pt;}
.x11_c00081{left:392.186665pt;}
.x12_c00081{left:399.413332pt;}
.x13_c00081{left:406.226665pt;}
.xc_c00081{left:423.693332pt;}
.x14_c00081{left:432.733332pt;}
.xa_c00081{left:453.146665pt;}
.xe_c00081{left:457.266665pt;}
.xb_c00081{left:461.026665pt;}
.xd_c00081{left:469.733332pt;}
.x6_c00081{left:531.519999pt;}
.x7_c00081{left:535.359999pt;}
}





/* 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_c00082 {
    display:none;
  }
  .loading-indicator_c00082.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00082 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_c00082 { 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_c00082" -> "#page-container .classname_c00082")
 */
.pf_c00082 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00082 { /* 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_c00082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00082 { /* 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_c00082 { /* 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_c00082 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00082 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00082 {overflow:visible;}
  }
}
.c_c00082 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00082 { /* 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_c00082:after { /* webkit #35443 */
  content: '';
}
.t_c00082:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00082 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 */
}
.__c00082 { /* 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_c00082 { /* info for Javascript */
  display:none;
}
.l_c00082 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00082 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00082 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00082: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_c00082 {
    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_c00082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00082.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_c00082 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00082;src:url('chunks/assets/font_7cda1ce8565e83a822245488.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.284668;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_c00082;src:url('chunks/assets/font_5a6d70d2b62c1fd511798ec6.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:0.666000;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_c00082;src:url('chunks/assets/font_00563c1af423372caf330d91.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.284180;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_c00082;src:url('chunks/assets/font_f8377d97778557399f77e4c9.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;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:ff5_c00082;src:url('chunks/assets/font_24c5dc1329913bfb448f298b.woff2')format("woff");}.ff5_c00082{font-family:ff5_c00082;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;}
.m19_c00082{transform:matrix(0.120192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120192,0.000000,0.000000,0.250000,0,0);}
.m4_c00082{transform:matrix(0.152703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152703,0.000000,0.000000,0.250000,0,0);}
.m2_c00082{transform:matrix(0.161184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161184,0.000000,0.000000,0.250000,0,0);}
.m12_c00082{transform:matrix(0.166506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166506,0.000000,0.000000,0.250000,0,0);}
.m8_c00082{transform:matrix(0.181214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181214,0.000000,0.000000,0.250000,0,0);}
.m18_c00082{transform:matrix(0.191578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191578,0.000000,0.000000,0.250000,0,0);}
.m1d_c00082{transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);}
.m11_c00082{transform:matrix(0.208052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208052,0.000000,0.000000,0.250000,0,0);}
.m15_c00082{transform:matrix(0.208896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208896,0.000000,0.000000,0.250000,0,0);}
.m16_c00082{transform:matrix(0.212334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212334,0.000000,0.000000,0.250000,0,0);}
.m13_c00082{transform:matrix(0.213722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213722,0.000000,0.000000,0.250000,0,0);}
.mf_c00082{transform:matrix(0.214511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214511,0.000000,0.000000,0.250000,0,0);}
.mc_c00082{transform:matrix(0.226798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226798,0.000000,0.000000,0.250000,0,0);}
.m6_c00082{transform:matrix(0.232458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232458,0.000000,0.000000,0.250000,0,0);}
.mb_c00082{transform:matrix(0.235935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235935,0.000000,0.000000,0.250000,0,0);}
.ma_c00082{transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);}
.m5_c00082{transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);}
.me_c00082{transform:matrix(0.242874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242874,0.000000,0.000000,0.250000,0,0);}
.m9_c00082{transform:matrix(0.244468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244468,0.000000,0.000000,0.250000,0,0);}
.m0_c00082{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m3_c00082{transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);}
.md_c00082{transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);}
.m7_c00082{transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);}
.m1_c00082{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);}
.m1a_c00082{transform:matrix(0.311325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311325,0.000000,0.000000,0.250000,0,0);}
.m10_c00082{transform:matrix(0.336414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336414,0.000000,0.000000,0.250000,0,0);}
.m1b_c00082{transform:matrix(0.336420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336420,0.000000,0.000000,0.250000,0,0);}
.m14_c00082{transform:matrix(0.636667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636667,0.000000,0.000000,0.250000,0,0);}
.m1c_c00082{transform:matrix(0.689655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689655,0.000000,0.000000,0.250000,0,0);}
.m17_c00082{transform:matrix(0.849249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.849249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.849249,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.v1_c00082{vertical-align:4.263600px;}
.ls83_c00082{letter-spacing:-5.334000px;}
.ls76_c00082{letter-spacing:-2.667000px;}
.ls58_c00082{letter-spacing:-2.499000px;}
.ls62_c00082{letter-spacing:-2.457000px;}
.ls79_c00082{letter-spacing:-2.436000px;}
.ls54_c00082{letter-spacing:-2.370480px;}
.ls4d_c00082{letter-spacing:-2.352000px;}
.ls5c_c00082{letter-spacing:-2.106300px;}
.ls65_c00082{letter-spacing:-2.077740px;}
.ls6f_c00082{letter-spacing:-1.963500px;}
.ls6e_c00082{letter-spacing:-1.884960px;}
.ls64_c00082{letter-spacing:-1.762020px;}
.ls67_c00082{letter-spacing:-1.627920px;}
.ls66_c00082{letter-spacing:-1.599360px;}
.ls7c_c00082{letter-spacing:-1.491000px;}
.ls7d_c00082{letter-spacing:-1.449021px;}
.ls81_c00082{letter-spacing:-1.407000px;}
.ls63_c00082{letter-spacing:-1.389960px;}
.ls69_c00082{letter-spacing:-1.342320px;}
.ls7b_c00082{letter-spacing:-1.218021px;}
.ls5a_c00082{letter-spacing:-1.149540px;}
.ls55_c00082{letter-spacing:-1.085280px;}
.ls5b_c00082{letter-spacing:-0.878220px;}
.ls78_c00082{letter-spacing:-0.799680px;}
.ls6c_c00082{letter-spacing:-0.792540px;}
.ls6d_c00082{letter-spacing:-0.785400px;}
.ls7f_c00082{letter-spacing:-0.693021px;}
.ls5d_c00082{letter-spacing:-0.678300px;}
.ls73_c00082{letter-spacing:-0.554580px;}
.ls68_c00082{letter-spacing:-0.528360px;}
.ls4e_c00082{letter-spacing:-0.492660px;}
.ls51_c00082{letter-spacing:-0.428400px;}
.ls59_c00082{letter-spacing:-0.399840px;}
.ls6b_c00082{letter-spacing:-0.314160px;}
.ls5f_c00082{letter-spacing:-0.307020px;}
.ls7e_c00082{letter-spacing:-0.265204px;}
.ls71_c00082{letter-spacing:-0.264180px;}
.ls5e_c00082{letter-spacing:-0.242760px;}
.ls52_c00082{letter-spacing:-0.192780px;}
.ls56_c00082{letter-spacing:-0.157080px;}
.ls6a_c00082{letter-spacing:-0.142800px;}
.ls61_c00082{letter-spacing:-0.092820px;}
.ls72_c00082{letter-spacing:-0.049980px;}
.ls53_c00082{letter-spacing:-0.007140px;}
.ls4f_c00082{letter-spacing:0.000000px;}
.ls28_c00082{letter-spacing:0.049140px;}
.ls47_c00082{letter-spacing:0.071400px;}
.ls60_c00082{letter-spacing:0.092820px;}
.ls48_c00082{letter-spacing:0.107100px;}
.ls3d_c00082{letter-spacing:0.114240px;}
.ls2a_c00082{letter-spacing:0.128520px;}
.lsc_c00082{letter-spacing:0.149940px;}
.ls20_c00082{letter-spacing:0.164220px;}
.lse_c00082{letter-spacing:0.178500px;}
.ls2b_c00082{letter-spacing:0.199920px;}
.ls2c_c00082{letter-spacing:0.210600px;}
.ls9_c00082{letter-spacing:0.214200px;}
.ls3_c00082{letter-spacing:0.228480px;}
.ls37_c00082{letter-spacing:0.235620px;}
.ls44_c00082{letter-spacing:0.242760px;}
.ls46_c00082{letter-spacing:0.264180px;}
.ls1e_c00082{letter-spacing:0.276000px;}
.lsb_c00082{letter-spacing:0.299880px;}
.ls74_c00082{letter-spacing:0.314160px;}
.ls11_c00082{letter-spacing:0.321300px;}
.ls0_c00082{letter-spacing:0.335580px;}
.ls13_c00082{letter-spacing:0.342720px;}
.ls50_c00082{letter-spacing:0.349860px;}
.ls70_c00082{letter-spacing:0.357000px;}
.ls43_c00082{letter-spacing:0.385560px;}
.ls1d_c00082{letter-spacing:0.393300px;}
.ls33_c00082{letter-spacing:0.421200px;}
.ls2e_c00082{letter-spacing:0.428400px;}
.ls25_c00082{letter-spacing:0.442680px;}
.ls36_c00082{letter-spacing:0.449820px;}
.ls1c_c00082{letter-spacing:0.456960px;}
.ls24_c00082{letter-spacing:0.485520px;}
.ls3b_c00082{letter-spacing:0.499800px;}
.ls39_c00082{letter-spacing:0.506940px;}
.ls31_c00082{letter-spacing:0.514080px;}
.ls14_c00082{letter-spacing:0.519480px;}
.ls5_c00082{letter-spacing:0.528360px;}
.ls7_c00082{letter-spacing:0.531300px;}
.ls27_c00082{letter-spacing:0.535500px;}
.ls75_c00082{letter-spacing:0.549780px;}
.ls41_c00082{letter-spacing:0.556920px;}
.ls30_c00082{letter-spacing:0.578340px;}
.lsa_c00082{letter-spacing:0.592620px;}
.lsd_c00082{letter-spacing:0.614040px;}
.ls1b_c00082{letter-spacing:0.621180px;}
.ls32_c00082{letter-spacing:0.628320px;}
.ls21_c00082{letter-spacing:0.635460px;}
.ls2_c00082{letter-spacing:0.642600px;}
.ls1a_c00082{letter-spacing:0.656880px;}
.ls26_c00082{letter-spacing:0.664020px;}
.ls8_c00082{letter-spacing:0.673920px;}
.ls3c_c00082{letter-spacing:0.678300px;}
.ls77_c00082{letter-spacing:0.706860px;}
.ls22_c00082{letter-spacing:0.742560px;}
.ls4a_c00082{letter-spacing:0.749700px;}
.ls10_c00082{letter-spacing:0.771120px;}
.ls16_c00082{letter-spacing:0.778260px;}
.ls40_c00082{letter-spacing:0.785400px;}
.ls17_c00082{letter-spacing:0.799680px;}
.lsf_c00082{letter-spacing:0.821100px;}
.ls4c_c00082{letter-spacing:0.842400px;}
.ls2f_c00082{letter-spacing:0.842520px;}
.ls57_c00082{letter-spacing:0.856800px;}
.ls38_c00082{letter-spacing:0.892500px;}
.ls19_c00082{letter-spacing:0.913920px;}
.ls2d_c00082{letter-spacing:1.003860px;}
.ls34_c00082{letter-spacing:1.010880px;}
.ls12_c00082{letter-spacing:1.013880px;}
.ls1f_c00082{letter-spacing:1.017900px;}
.ls49_c00082{letter-spacing:1.035300px;}
.ls23_c00082{letter-spacing:1.042440px;}
.ls45_c00082{letter-spacing:1.049580px;}
.ls3a_c00082{letter-spacing:1.056720px;}
.ls18_c00082{letter-spacing:1.063860px;}
.ls82_c00082{letter-spacing:1.170030px;}
.ls3e_c00082{letter-spacing:1.186380px;}
.ls29_c00082{letter-spacing:1.228500px;}
.ls35_c00082{letter-spacing:1.256640px;}
.ls4b_c00082{letter-spacing:1.354860px;}
.ls42_c00082{letter-spacing:1.404000px;}
.ls6_c00082{letter-spacing:1.635300px;}
.ls15_c00082{letter-spacing:1.930500px;}
.ls3f_c00082{letter-spacing:1.958580px;}
.ls80_c00082{letter-spacing:2.040030px;}
.ls1_c00082{letter-spacing:2.413320px;}
.ls4_c00082{letter-spacing:3.134460px;}
.ls7a_c00082{letter-spacing:20.190030px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{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__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00082{word-spacing:0.000000px;}
.ws1_c00082{word-spacing:126.182700px;}
.ws3_c00082{word-spacing:126.199500px;}
.ws5_c00082{word-spacing:126.593100px;}
.ws0_c00082{word-spacing:126.949200px;}
.ws2_c00082{word-spacing:128.484300px;}
.ws4_c00082{word-spacing:128.591400px;}
._c_c00082{margin-left:-18.546840px;}
._4_c00082{margin-left:-17.302020px;}
._16_c00082{margin-left:-15.734460px;}
._1f_c00082{margin-left:-14.589960px;}
._5_c00082{margin-left:-13.516200px;}
._17_c00082{margin-left:-12.382860px;}
._b_c00082{margin-left:-10.785600px;}
._14_c00082{margin-left:-9.090900px;}
._13_c00082{margin-left:-6.261840px;}
._15_c00082{margin-left:-4.036500px;}
._d_c00082{margin-left:-2.217600px;}
._12_c00082{margin-left:-1.063860px;}
._8_c00082{width:1.977780px;}
._6_c00082{width:3.674160px;}
._7_c00082{width:5.926200px;}
._e_c00082{width:7.896840px;}
._1d_c00082{width:9.103500px;}
._11_c00082{width:10.145940px;}
._1e_c00082{width:11.266920px;}
._f_c00082{width:12.973380px;}
._1c_c00082{width:14.270820px;}
._9_c00082{width:15.386700px;}
._a_c00082{width:17.243100px;}
._3_c00082{width:19.106640px;}
._0_c00082{width:23.697660px;}
._2_c00082{width:25.632600px;}
._10_c00082{width:26.946360px;}
._1_c00082{width:28.752780px;}
._18_c00082{width:55.799100px;}
._1a_c00082{width:59.304840px;}
._19_c00082{width:61.304040px;}
._1b_c00082{width:63.503160px;}
.fc0_c00082{color:transparent;}
.fs11_c00082{font-size:19.800600px;}
.fs15_c00082{font-size:23.400600px;}
.fsa_c00082{font-size:34.800600px;}
.fs14_c00082{font-size:37.440000px;}
.fs13_c00082{font-size:40.200000px;}
.fs10_c00082{font-size:40.800600px;}
.fse_c00082{font-size:41.400600px;}
.fsb_c00082{font-size:42.600000px;}
.fsf_c00082{font-size:49.200000px;}
.fs5_c00082{font-size:53.280000px;}
.fs2_c00082{font-size:54.720000px;}
.fs12_c00082{font-size:55.200000px;}
.fs0_c00082{font-size:67.200000px;}
.fs6_c00082{font-size:67.800000px;}
.fs3_c00082{font-size:69.000000px;}
.fs8_c00082{font-size:69.600000px;}
.fs4_c00082{font-size:70.200000px;}
.fs1_c00082{font-size:71.400000px;}
.fs7_c00082{font-size:76.200000px;}
.fs17_c00082{font-size:83.520000px;}
.fsc_c00082{font-size:108.000000px;}
.fs16_c00082{font-size:116.640000px;}
.fs19_c00082{font-size:148.200600px;}
.fs18_c00082{font-size:152.400000px;}
.fs9_c00082{font-size:403.800600px;}
.fsd_c00082{font-size:432.000000px;}
.y0_c00082{bottom:0.000000px;}
.y28_c00082{bottom:69.135006px;}
.y27_c00082{bottom:162.360006px;}
.y36_c00082{bottom:163.800006px;}
.y35_c00082{bottom:187.920006px;}
.y26_c00082{bottom:193.328106px;}
.y34_c00082{bottom:206.280006px;}
.y33_c00082{bottom:218.535006px;}
.y25_c00082{bottom:223.214106px;}
.y24_c00082{bottom:254.880006px;}
.y22_c00082{bottom:284.415006px;}
.y23_c00082{bottom:285.840006px;}
.y21_c00082{bottom:316.455006px;}
.y20_c00082{bottom:347.775006px;}
.y1f_c00082{bottom:378.735006px;}
.y1e_c00082{bottom:409.695006px;}
.y1d_c00082{bottom:440.280006px;}
.y1c_c00082{bottom:440.293356px;}
.y2e_c00082{bottom:457.935006px;}
.y14_c00082{bottom:470.552106px;}
.y1b_c00082{bottom:471.263106px;}
.y32_c00082{bottom:471.975006px;}
.y31_c00082{bottom:492.855006px;}
.y30_c00082{bottom:500.775006px;}
.y1a_c00082{bottom:502.215006px;}
.y2f_c00082{bottom:511.560006px;}
.y2d_c00082{bottom:523.455006px;}
.y19_c00082{bottom:532.441356px;}
.y18_c00082{bottom:563.768106px;}
.y29_c00082{bottom:574.935006px;}
.y17_c00082{bottom:594.720006px;}
.y2c_c00082{bottom:596.175006px;}
.y2b_c00082{bottom:609.135006px;}
.y2a_c00082{bottom:620.280006px;}
.y16_c00082{bottom:626.055006px;}
.y15_c00082{bottom:626.079156px;}
.y13_c00082{bottom:657.031056px;}
.y12_c00082{bottom:687.982956px;}
.y11_c00082{bottom:718.560006px;}
.y10_c00082{bottom:749.528106px;}
.yf_c00082{bottom:780.480006px;}
.ye_c00082{bottom:811.095006px;}
.yd_c00082{bottom:842.419956px;}
.yc_c00082{bottom:872.640006px;}
.yb_c00082{bottom:903.615006px;}
.ya_c00082{bottom:903.623106px;}
.y9_c00082{bottom:934.575006px;}
.y8_c00082{bottom:965.160006px;}
.y7_c00082{bottom:965.165256px;}
.y6_c00082{bottom:996.135006px;}
.y5_c00082{bottom:1027.111056px;}
.y4_c00082{bottom:1057.688106px;}
.y3_c00082{bottom:1088.640006px;}
.y2_c00082{bottom:1119.255006px;}
.y1_c00082{bottom:1195.575006px;}
.h12_c00082{height:19.433206px;}
.h17_c00082{height:24.406095px;}
.h16_c00082{height:24.935040px;}
.h5_c00082{height:35.484480px;}
.hc_c00082{height:36.295938px;}
.h4_c00082{height:36.443520px;}
.hd_c00082{height:41.809570px;}
.h15_c00082{height:41.927344px;}
.h13_c00082{height:42.553751px;}
.h10_c00082{height:43.179532px;}
.h11_c00082{height:51.314062px;}
.h19_c00082{height:55.624320px;}
.h14_c00082{height:57.571875px;}
.h2_c00082{height:65.953125px;}
.ha_c00082{height:68.308594px;}
.h6_c00082{height:68.897461px;}
.h3_c00082{height:70.075195px;}
.h7_c00082{height:70.713281px;}
.he_c00082{height:71.928000px;}
.h9_c00082{height:74.338795px;}
.h8_c00082{height:74.786133px;}
.h18_c00082{height:77.682240px;}
.h1b_c00082{height:154.568595px;}
.h1a_c00082{height:158.948437px;}
.hb_c00082{height:421.151407px;}
.hf_c00082{height:423.984375px;}
.h1_c00082{height:1263.000000px;}
.h0_c00082{height:1263.240006px;}
.w1_c00082{width:892.500000px;}
.w0_c00082{width:892.799998px;}
.x0_c00082{left:0.000000px;}
.x16_c00082{left:116.774998px;}
.xf_c00082{left:118.243798px;}
.xa_c00082{left:119.309999px;}
.x4_c00082{left:121.220548px;}
.x1_c00082{left:123.044999px;}
.x17_c00082{left:181.004998px;}
.x10_c00082{left:182.218198px;}
.x9_c00082{left:184.139998px;}
.x5_c00082{left:185.219099px;}
.x2_c00082{left:186.659999px;}
.xe_c00082{left:197.279998px;}
.x6_c00082{left:314.024999px;}
.x11_c00082{left:361.649999px;}
.x7_c00082{left:363.629998px;}
.x12_c00082{left:375.104999px;}
.x18_c00082{left:423.914999px;}
.x8_c00082{left:455.774999px;}
.xb_c00082{left:511.199998px;}
.xc_c00082{left:513.734998px;}
.x14_c00082{left:518.174999px;}
.x13_c00082{left:522.359998px;}
.x15_c00082{left:523.829998px;}
.xd_c00082{left:527.189999px;}
.x3_c00082{left:545.414999px;}
.x19_c00082{left:563.774999px;}
.x26_c00082{left:569.519998px;}
.x24_c00082{left:575.279999px;}
.x1f_c00082{left:578.174999px;}
.x27_c00082{left:579.914999px;}
.x22_c00082{left:584.234998px;}
.x1a_c00082{left:587.639998px;}
.x1d_c00082{left:594.629999px;}
.x25_c00082{left:612.524999px;}
.x1e_c00082{left:615.404998px;}
.x1b_c00082{left:616.454998px;}
.x20_c00082{left:621.494999px;}
.x1c_c00082{left:623.729999px;}
.x21_c00082{left:636.329998px;}
.x23_c00082{left:646.019998px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.v1_c00082{vertical-align:3.789867pt;}
.ls83_c00082{letter-spacing:-4.741333pt;}
.ls76_c00082{letter-spacing:-2.370667pt;}
.ls58_c00082{letter-spacing:-2.221333pt;}
.ls62_c00082{letter-spacing:-2.184000pt;}
.ls79_c00082{letter-spacing:-2.165333pt;}
.ls54_c00082{letter-spacing:-2.107093pt;}
.ls4d_c00082{letter-spacing:-2.090667pt;}
.ls5c_c00082{letter-spacing:-1.872267pt;}
.ls65_c00082{letter-spacing:-1.846880pt;}
.ls6f_c00082{letter-spacing:-1.745333pt;}
.ls6e_c00082{letter-spacing:-1.675520pt;}
.ls64_c00082{letter-spacing:-1.566240pt;}
.ls67_c00082{letter-spacing:-1.447040pt;}
.ls66_c00082{letter-spacing:-1.421653pt;}
.ls7c_c00082{letter-spacing:-1.325333pt;}
.ls7d_c00082{letter-spacing:-1.288019pt;}
.ls81_c00082{letter-spacing:-1.250667pt;}
.ls63_c00082{letter-spacing:-1.235520pt;}
.ls69_c00082{letter-spacing:-1.193173pt;}
.ls7b_c00082{letter-spacing:-1.082685pt;}
.ls5a_c00082{letter-spacing:-1.021813pt;}
.ls55_c00082{letter-spacing:-0.964693pt;}
.ls5b_c00082{letter-spacing:-0.780640pt;}
.ls78_c00082{letter-spacing:-0.710827pt;}
.ls6c_c00082{letter-spacing:-0.704480pt;}
.ls6d_c00082{letter-spacing:-0.698133pt;}
.ls7f_c00082{letter-spacing:-0.616019pt;}
.ls5d_c00082{letter-spacing:-0.602933pt;}
.ls73_c00082{letter-spacing:-0.492960pt;}
.ls68_c00082{letter-spacing:-0.469653pt;}
.ls4e_c00082{letter-spacing:-0.437920pt;}
.ls51_c00082{letter-spacing:-0.380800pt;}
.ls59_c00082{letter-spacing:-0.355413pt;}
.ls6b_c00082{letter-spacing:-0.279253pt;}
.ls5f_c00082{letter-spacing:-0.272907pt;}
.ls7e_c00082{letter-spacing:-0.235737pt;}
.ls71_c00082{letter-spacing:-0.234827pt;}
.ls5e_c00082{letter-spacing:-0.215787pt;}
.ls52_c00082{letter-spacing:-0.171360pt;}
.ls56_c00082{letter-spacing:-0.139627pt;}
.ls6a_c00082{letter-spacing:-0.126933pt;}
.ls61_c00082{letter-spacing:-0.082507pt;}
.ls72_c00082{letter-spacing:-0.044427pt;}
.ls53_c00082{letter-spacing:-0.006347pt;}
.ls4f_c00082{letter-spacing:0.000000pt;}
.ls28_c00082{letter-spacing:0.043680pt;}
.ls47_c00082{letter-spacing:0.063467pt;}
.ls60_c00082{letter-spacing:0.082507pt;}
.ls48_c00082{letter-spacing:0.095200pt;}
.ls3d_c00082{letter-spacing:0.101547pt;}
.ls2a_c00082{letter-spacing:0.114240pt;}
.lsc_c00082{letter-spacing:0.133280pt;}
.ls20_c00082{letter-spacing:0.145973pt;}
.lse_c00082{letter-spacing:0.158667pt;}
.ls2b_c00082{letter-spacing:0.177707pt;}
.ls2c_c00082{letter-spacing:0.187200pt;}
.ls9_c00082{letter-spacing:0.190400pt;}
.ls3_c00082{letter-spacing:0.203093pt;}
.ls37_c00082{letter-spacing:0.209440pt;}
.ls44_c00082{letter-spacing:0.215787pt;}
.ls46_c00082{letter-spacing:0.234827pt;}
.ls1e_c00082{letter-spacing:0.245333pt;}
.lsb_c00082{letter-spacing:0.266560pt;}
.ls74_c00082{letter-spacing:0.279253pt;}
.ls11_c00082{letter-spacing:0.285600pt;}
.ls0_c00082{letter-spacing:0.298293pt;}
.ls13_c00082{letter-spacing:0.304640pt;}
.ls50_c00082{letter-spacing:0.310987pt;}
.ls70_c00082{letter-spacing:0.317333pt;}
.ls43_c00082{letter-spacing:0.342720pt;}
.ls1d_c00082{letter-spacing:0.349600pt;}
.ls33_c00082{letter-spacing:0.374400pt;}
.ls2e_c00082{letter-spacing:0.380800pt;}
.ls25_c00082{letter-spacing:0.393493pt;}
.ls36_c00082{letter-spacing:0.399840pt;}
.ls1c_c00082{letter-spacing:0.406187pt;}
.ls24_c00082{letter-spacing:0.431573pt;}
.ls3b_c00082{letter-spacing:0.444267pt;}
.ls39_c00082{letter-spacing:0.450613pt;}
.ls31_c00082{letter-spacing:0.456960pt;}
.ls14_c00082{letter-spacing:0.461760pt;}
.ls5_c00082{letter-spacing:0.469653pt;}
.ls7_c00082{letter-spacing:0.472267pt;}
.ls27_c00082{letter-spacing:0.476000pt;}
.ls75_c00082{letter-spacing:0.488693pt;}
.ls41_c00082{letter-spacing:0.495040pt;}
.ls30_c00082{letter-spacing:0.514080pt;}
.lsa_c00082{letter-spacing:0.526773pt;}
.lsd_c00082{letter-spacing:0.545813pt;}
.ls1b_c00082{letter-spacing:0.552160pt;}
.ls32_c00082{letter-spacing:0.558507pt;}
.ls21_c00082{letter-spacing:0.564853pt;}
.ls2_c00082{letter-spacing:0.571200pt;}
.ls1a_c00082{letter-spacing:0.583893pt;}
.ls26_c00082{letter-spacing:0.590240pt;}
.ls8_c00082{letter-spacing:0.599040pt;}
.ls3c_c00082{letter-spacing:0.602933pt;}
.ls77_c00082{letter-spacing:0.628320pt;}
.ls22_c00082{letter-spacing:0.660053pt;}
.ls4a_c00082{letter-spacing:0.666400pt;}
.ls10_c00082{letter-spacing:0.685440pt;}
.ls16_c00082{letter-spacing:0.691787pt;}
.ls40_c00082{letter-spacing:0.698133pt;}
.ls17_c00082{letter-spacing:0.710827pt;}
.lsf_c00082{letter-spacing:0.729867pt;}
.ls4c_c00082{letter-spacing:0.748800pt;}
.ls2f_c00082{letter-spacing:0.748907pt;}
.ls57_c00082{letter-spacing:0.761600pt;}
.ls38_c00082{letter-spacing:0.793333pt;}
.ls19_c00082{letter-spacing:0.812373pt;}
.ls2d_c00082{letter-spacing:0.892320pt;}
.ls34_c00082{letter-spacing:0.898560pt;}
.ls12_c00082{letter-spacing:0.901227pt;}
.ls1f_c00082{letter-spacing:0.904800pt;}
.ls49_c00082{letter-spacing:0.920267pt;}
.ls23_c00082{letter-spacing:0.926613pt;}
.ls45_c00082{letter-spacing:0.932960pt;}
.ls3a_c00082{letter-spacing:0.939307pt;}
.ls18_c00082{letter-spacing:0.945653pt;}
.ls82_c00082{letter-spacing:1.040027pt;}
.ls3e_c00082{letter-spacing:1.054560pt;}
.ls29_c00082{letter-spacing:1.092000pt;}
.ls35_c00082{letter-spacing:1.117013pt;}
.ls4b_c00082{letter-spacing:1.204320pt;}
.ls42_c00082{letter-spacing:1.248000pt;}
.ls6_c00082{letter-spacing:1.453600pt;}
.ls15_c00082{letter-spacing:1.716000pt;}
.ls3f_c00082{letter-spacing:1.740960pt;}
.ls80_c00082{letter-spacing:1.813360pt;}
.ls1_c00082{letter-spacing:2.145173pt;}
.ls4_c00082{letter-spacing:2.786187pt;}
.ls7a_c00082{letter-spacing:17.946693pt;}
.ws6_c00082{word-spacing:0.000000pt;}
.ws1_c00082{word-spacing:112.162400pt;}
.ws3_c00082{word-spacing:112.177333pt;}
.ws5_c00082{word-spacing:112.527200pt;}
.ws0_c00082{word-spacing:112.843733pt;}
.ws2_c00082{word-spacing:114.208267pt;}
.ws4_c00082{word-spacing:114.303467pt;}
._c_c00082{margin-left:-16.486080pt;}
._4_c00082{margin-left:-15.379573pt;}
._16_c00082{margin-left:-13.986187pt;}
._1f_c00082{margin-left:-12.968853pt;}
._5_c00082{margin-left:-12.014400pt;}
._17_c00082{margin-left:-11.006987pt;}
._b_c00082{margin-left:-9.587200pt;}
._14_c00082{margin-left:-8.080800pt;}
._13_c00082{margin-left:-5.566080pt;}
._15_c00082{margin-left:-3.588000pt;}
._d_c00082{margin-left:-1.971200pt;}
._12_c00082{margin-left:-0.945653pt;}
._8_c00082{width:1.758027pt;}
._6_c00082{width:3.265920pt;}
._7_c00082{width:5.267733pt;}
._e_c00082{width:7.019413pt;}
._1d_c00082{width:8.092000pt;}
._11_c00082{width:9.018613pt;}
._1e_c00082{width:10.015040pt;}
._f_c00082{width:11.531893pt;}
._1c_c00082{width:12.685173pt;}
._9_c00082{width:13.677067pt;}
._a_c00082{width:15.327200pt;}
._3_c00082{width:16.983680pt;}
._0_c00082{width:21.064587pt;}
._2_c00082{width:22.784533pt;}
._10_c00082{width:23.952320pt;}
._1_c00082{width:25.558027pt;}
._18_c00082{width:49.599200pt;}
._1a_c00082{width:52.715413pt;}
._19_c00082{width:54.492480pt;}
._1b_c00082{width:56.447253pt;}
.fs11_c00082{font-size:17.600533pt;}
.fs15_c00082{font-size:20.800533pt;}
.fsa_c00082{font-size:30.933867pt;}
.fs14_c00082{font-size:33.280000pt;}
.fs13_c00082{font-size:35.733333pt;}
.fs10_c00082{font-size:36.267200pt;}
.fse_c00082{font-size:36.800533pt;}
.fsb_c00082{font-size:37.866667pt;}
.fsf_c00082{font-size:43.733333pt;}
.fs5_c00082{font-size:47.360000pt;}
.fs2_c00082{font-size:48.640000pt;}
.fs12_c00082{font-size:49.066667pt;}
.fs0_c00082{font-size:59.733333pt;}
.fs6_c00082{font-size:60.266667pt;}
.fs3_c00082{font-size:61.333333pt;}
.fs8_c00082{font-size:61.866667pt;}
.fs4_c00082{font-size:62.400000pt;}
.fs1_c00082{font-size:63.466667pt;}
.fs7_c00082{font-size:67.733333pt;}
.fs17_c00082{font-size:74.240000pt;}
.fsc_c00082{font-size:96.000000pt;}
.fs16_c00082{font-size:103.680000pt;}
.fs19_c00082{font-size:131.733867pt;}
.fs18_c00082{font-size:135.466667pt;}
.fs9_c00082{font-size:358.933867pt;}
.fsd_c00082{font-size:384.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y28_c00082{bottom:61.453339pt;}
.y27_c00082{bottom:144.320005pt;}
.y36_c00082{bottom:145.600005pt;}
.y35_c00082{bottom:167.040005pt;}
.y26_c00082{bottom:171.847205pt;}
.y34_c00082{bottom:183.360005pt;}
.y33_c00082{bottom:194.253339pt;}
.y25_c00082{bottom:198.412539pt;}
.y24_c00082{bottom:226.560005pt;}
.y22_c00082{bottom:252.813339pt;}
.y23_c00082{bottom:254.080005pt;}
.y21_c00082{bottom:281.293339pt;}
.y20_c00082{bottom:309.133339pt;}
.y1f_c00082{bottom:336.653339pt;}
.y1e_c00082{bottom:364.173339pt;}
.y1d_c00082{bottom:391.360005pt;}
.y1c_c00082{bottom:391.371872pt;}
.y2e_c00082{bottom:407.053339pt;}
.y14_c00082{bottom:418.268539pt;}
.y1b_c00082{bottom:418.900539pt;}
.y32_c00082{bottom:419.533339pt;}
.y31_c00082{bottom:438.093339pt;}
.y30_c00082{bottom:445.133339pt;}
.y1a_c00082{bottom:446.413339pt;}
.y2f_c00082{bottom:454.720005pt;}
.y2d_c00082{bottom:465.293339pt;}
.y19_c00082{bottom:473.281205pt;}
.y18_c00082{bottom:501.127205pt;}
.y29_c00082{bottom:511.053339pt;}
.y17_c00082{bottom:528.640005pt;}
.y2c_c00082{bottom:529.933339pt;}
.y2b_c00082{bottom:541.453339pt;}
.y2a_c00082{bottom:551.360005pt;}
.y16_c00082{bottom:556.493339pt;}
.y15_c00082{bottom:556.514805pt;}
.y13_c00082{bottom:584.027605pt;}
.y12_c00082{bottom:611.540405pt;}
.y11_c00082{bottom:638.720005pt;}
.y10_c00082{bottom:666.247205pt;}
.yf_c00082{bottom:693.760005pt;}
.ye_c00082{bottom:720.973339pt;}
.yd_c00082{bottom:748.817739pt;}
.yc_c00082{bottom:775.680005pt;}
.yb_c00082{bottom:803.213339pt;}
.ya_c00082{bottom:803.220539pt;}
.y9_c00082{bottom:830.733339pt;}
.y8_c00082{bottom:857.920005pt;}
.y7_c00082{bottom:857.924672pt;}
.y6_c00082{bottom:885.453339pt;}
.y5_c00082{bottom:912.987605pt;}
.y4_c00082{bottom:940.167205pt;}
.y3_c00082{bottom:967.680005pt;}
.y2_c00082{bottom:994.893339pt;}
.y1_c00082{bottom:1062.733339pt;}
.h12_c00082{height:17.273961pt;}
.h17_c00082{height:21.694306pt;}
.h16_c00082{height:22.164480pt;}
.h5_c00082{height:31.541760pt;}
.hc_c00082{height:32.263056pt;}
.h4_c00082{height:32.394240pt;}
.hd_c00082{height:37.164062pt;}
.h15_c00082{height:37.268750pt;}
.h13_c00082{height:37.825556pt;}
.h10_c00082{height:38.381806pt;}
.h11_c00082{height:45.612500pt;}
.h19_c00082{height:49.443840pt;}
.h14_c00082{height:51.175000pt;}
.h2_c00082{height:58.625000pt;}
.ha_c00082{height:60.718750pt;}
.h6_c00082{height:61.242187pt;}
.h3_c00082{height:62.289062pt;}
.h7_c00082{height:62.856250pt;}
.he_c00082{height:63.936000pt;}
.h9_c00082{height:66.078929pt;}
.h8_c00082{height:66.476562pt;}
.h18_c00082{height:69.050880pt;}
.h1b_c00082{height:137.394306pt;}
.h1a_c00082{height:141.287500pt;}
.hb_c00082{height:374.356806pt;}
.hf_c00082{height:376.875000pt;}
.h1_c00082{height:1122.666667pt;}
.h0_c00082{height:1122.880005pt;}
.w1_c00082{width:793.333333pt;}
.w0_c00082{width:793.599999pt;}
.x0_c00082{left:0.000000pt;}
.x16_c00082{left:103.799999pt;}
.xf_c00082{left:105.105599pt;}
.xa_c00082{left:106.053332pt;}
.x4_c00082{left:107.751599pt;}
.x1_c00082{left:109.373332pt;}
.x17_c00082{left:160.893332pt;}
.x10_c00082{left:161.971732pt;}
.x9_c00082{left:163.679999pt;}
.x5_c00082{left:164.639199pt;}
.x2_c00082{left:165.919999pt;}
.xe_c00082{left:175.359999pt;}
.x6_c00082{left:279.133332pt;}
.x11_c00082{left:321.466665pt;}
.x7_c00082{left:323.226665pt;}
.x12_c00082{left:333.426665pt;}
.x18_c00082{left:376.813332pt;}
.x8_c00082{left:405.133332pt;}
.xb_c00082{left:454.399999pt;}
.xc_c00082{left:456.653332pt;}
.x14_c00082{left:460.599999pt;}
.x13_c00082{left:464.319999pt;}
.x15_c00082{left:465.626665pt;}
.xd_c00082{left:468.613332pt;}
.x3_c00082{left:484.813332pt;}
.x19_c00082{left:501.133332pt;}
.x26_c00082{left:506.239999pt;}
.x24_c00082{left:511.359999pt;}
.x1f_c00082{left:513.933332pt;}
.x27_c00082{left:515.479999pt;}
.x22_c00082{left:519.319999pt;}
.x1a_c00082{left:522.346665pt;}
.x1d_c00082{left:528.559999pt;}
.x25_c00082{left:544.466665pt;}
.x1e_c00082{left:547.026665pt;}
.x1b_c00082{left:547.959999pt;}
.x20_c00082{left:552.439999pt;}
.x1c_c00082{left:554.426665pt;}
.x21_c00082{left:565.626665pt;}
.x23_c00082{left:574.239999pt;}
}





/* 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_c00083 {
    display:none;
  }
  .loading-indicator_c00083.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00083 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_c00083 { 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_c00083" -> "#page-container .classname_c00083")
 */
.pf_c00083 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00083 { /* 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_c00083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00083 { /* 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_c00083 { /* 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_c00083 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00083 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00083 {overflow:visible;}
  }
}
.c_c00083 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00083 { /* 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_c00083:after { /* webkit #35443 */
  content: '';
}
.t_c00083:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00083 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 */
}
.__c00083 { /* 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_c00083 { /* info for Javascript */
  display:none;
}
.l_c00083 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00083 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00083 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00083: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_c00083 {
    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_c00083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00083.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_c00083 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00083;src:url('chunks/assets/font_7afeb9700282da17d3ab28ab.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.284668;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_c00083;src:url('chunks/assets/font_f00c67f8f34b6b8977e91874.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.284180;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_c00083;src:url('chunks/assets/font_0d4a7034157abf2a6d7d05c0.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;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:ff4_c00083;src:url('chunks/assets/font_86473379787af56093249f9a.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:0.666000;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;}
.m7_c00083{transform:matrix(0.027995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027995,0.000000,0.000000,0.250000,0,0);}
.m9_c00083{transform:matrix(0.131875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131875,0.000000,0.000000,0.250000,0,0);}
.m8_c00083{transform:matrix(0.137687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137687,0.000000,0.000000,0.250000,0,0);}
.ma_c00083{transform:matrix(0.188417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188417,0.000000,0.000000,0.250000,0,0);}
.mb_c00083{transform:matrix(0.192537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192537,0.000000,0.000000,0.250000,0,0);}
.m6_c00083{transform:matrix(0.215481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215481,0.000000,0.000000,0.250000,0,0);}
.m4_c00083{transform:matrix(0.227963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227963,0.000000,0.000000,0.250000,0,0);}
.m3_c00083{transform:matrix(0.236230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236230,0.000000,0.000000,0.250000,0,0);}
.m11_c00083{transform:matrix(0.245909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245909,0.000000,0.000000,0.250000,0,0);}
.m0_c00083{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_c00083{transform:matrix(0.253563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253563,0.000000,0.000000,0.250000,0,0);}
.m5_c00083{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m2_c00083{transform:matrix(0.258389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258389,0.000000,0.000000,0.250000,0,0);}
.m10_c00083{transform:matrix(0.350279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350279,0.000000,0.000000,0.250000,0,0);}
.md_c00083{transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);}
.me_c00083{transform:matrix(0.377589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377589,0.000000,0.000000,0.250000,0,0);}
.mc_c00083{transform:matrix(0.500919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500919,0.000000,0.000000,0.250000,0,0);}
.mf_c00083{transform:matrix(0.513129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513129,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls65_c00083{letter-spacing:-2.415000px;}
.ls7d_c00083{letter-spacing:-2.016000px;}
.ls7a_c00083{letter-spacing:-1.635300px;}
.ls6d_c00083{letter-spacing:-1.512000px;}
.ls62_c00083{letter-spacing:-1.483500px;}
.ls6e_c00083{letter-spacing:-1.260000px;}
.ls5b_c00083{letter-spacing:-1.211040px;}
.ls74_c00083{letter-spacing:-1.182720px;}
.ls7b_c00083{letter-spacing:-1.159200px;}
.ls6c_c00083{letter-spacing:-1.092000px;}
.ls66_c00083{letter-spacing:-1.083300px;}
.ls5e_c00083{letter-spacing:-1.000500px;}
.ls7c_c00083{letter-spacing:-0.986700px;}
.ls79_c00083{letter-spacing:-0.676200px;}
.ls63_c00083{letter-spacing:-0.662400px;}
.ls68_c00083{letter-spacing:-0.296700px;}
.ls61_c00083{letter-spacing:-0.276000px;}
.ls71_c00083{letter-spacing:-0.262200px;}
.ls78_c00083{letter-spacing:-0.200100px;}
.ls5d_c00083{letter-spacing:-0.117300px;}
.ls70_c00083{letter-spacing:-0.103500px;}
.ls5c_c00083{letter-spacing:-0.013920px;}
.ls6b_c00083{letter-spacing:-0.013800px;}
.ls5a_c00083{letter-spacing:0.000000px;}
.ls64_c00083{letter-spacing:0.006900px;}
.ls18_c00083{letter-spacing:0.048300px;}
.ls4c_c00083{letter-spacing:0.069600px;}
.lsa_c00083{letter-spacing:0.082800px;}
.ls19_c00083{letter-spacing:0.201840px;}
.ls17_c00083{letter-spacing:0.255300px;}
.ls75_c00083{letter-spacing:0.282900px;}
.ls26_c00083{letter-spacing:0.351900px;}
.ls4b_c00083{letter-spacing:0.372600px;}
.ls1f_c00083{letter-spacing:0.386400px;}
.ls36_c00083{letter-spacing:0.427800px;}
.ls2b_c00083{letter-spacing:0.448500px;}
.ls2d_c00083{letter-spacing:0.483000px;}
.ls51_c00083{letter-spacing:0.489900px;}
.ls42_c00083{letter-spacing:0.510600px;}
.ls1e_c00083{letter-spacing:0.565800px;}
.ls29_c00083{letter-spacing:0.579600px;}
.ls2c_c00083{letter-spacing:0.600300px;}
.ls48_c00083{letter-spacing:0.626400px;}
.ls45_c00083{letter-spacing:0.647280px;}
.ls55_c00083{letter-spacing:0.662400px;}
.ls7_c00083{letter-spacing:0.676200px;}
.ls4e_c00083{letter-spacing:0.696000px;}
.ls1c_c00083{letter-spacing:0.710700px;}
.ls44_c00083{letter-spacing:0.738300px;}
.ls4a_c00083{letter-spacing:0.751680px;}
.lsf_c00083{letter-spacing:0.759000px;}
.ls3_c00083{letter-spacing:0.772800px;}
.ls34_c00083{letter-spacing:0.786600px;}
.ls11_c00083{letter-spacing:0.807300px;}
.ls3d_c00083{letter-spacing:0.834900px;}
.ls49_c00083{letter-spacing:0.841800px;}
.ls43_c00083{letter-spacing:0.842160px;}
.ls41_c00083{letter-spacing:0.856080px;}
.ls47_c00083{letter-spacing:0.869400px;}
.ls6a_c00083{letter-spacing:0.876960px;}
.ls2a_c00083{letter-spacing:0.897840px;}
.ls3a_c00083{letter-spacing:0.910800px;}
.lsb_c00083{letter-spacing:0.917700px;}
.ls12_c00083{letter-spacing:0.924600px;}
.ls23_c00083{letter-spacing:0.959100px;}
.ls21_c00083{letter-spacing:0.966000px;}
.ls58_c00083{letter-spacing:0.972900px;}
.ls1b_c00083{letter-spacing:0.993600px;}
.ls22_c00083{letter-spacing:1.007400px;}
.ls8_c00083{letter-spacing:1.023120px;}
.ls4d_c00083{letter-spacing:1.035000px;}
.ls9_c00083{letter-spacing:1.037040px;}
.ls50_c00083{letter-spacing:1.050960px;}
.ls30_c00083{letter-spacing:1.055700px;}
.ls1_c00083{letter-spacing:1.062600px;}
.ls73_c00083{letter-spacing:1.083300px;}
.ls1a_c00083{letter-spacing:1.085760px;}
.ls1d_c00083{letter-spacing:1.090200px;}
.ls3b_c00083{letter-spacing:1.097100px;}
.ls24_c00083{letter-spacing:1.110900px;}
.ls25_c00083{letter-spacing:1.117800px;}
.ls56_c00083{letter-spacing:1.119960px;}
.ls31_c00083{letter-spacing:1.131600px;}
.ls38_c00083{letter-spacing:1.138500px;}
.lse_c00083{letter-spacing:1.152300px;}
.ls39_c00083{letter-spacing:1.173000px;}
.ls3c_c00083{letter-spacing:1.183200px;}
.ls3f_c00083{letter-spacing:1.186800px;}
.ls20_c00083{letter-spacing:1.248900px;}
.ls40_c00083{letter-spacing:1.287600px;}
.lsc_c00083{letter-spacing:1.297200px;}
.ls14_c00083{letter-spacing:1.311000px;}
.ls59_c00083{letter-spacing:1.345500px;}
.ls35_c00083{letter-spacing:1.386900px;}
.ls32_c00083{letter-spacing:1.393800px;}
.ls10_c00083{letter-spacing:1.407600px;}
.ls67_c00083{letter-spacing:1.435200px;}
.ls77_c00083{letter-spacing:1.440030px;}
.ls60_c00083{letter-spacing:1.449000px;}
.ls37_c00083{letter-spacing:1.462800px;}
.ls28_c00083{letter-spacing:1.483500px;}
.ls0_c00083{letter-spacing:1.504200px;}
.lsd_c00083{letter-spacing:1.524900px;}
.ls72_c00083{letter-spacing:1.538700px;}
.ls4f_c00083{letter-spacing:1.545600px;}
.ls46_c00083{letter-spacing:1.559400px;}
.ls2_c00083{letter-spacing:1.566300px;}
.ls15_c00083{letter-spacing:1.600800px;}
.ls4_c00083{letter-spacing:1.662900px;}
.ls5f_c00083{letter-spacing:1.683600px;}
.ls27_c00083{letter-spacing:1.690500px;}
.ls16_c00083{letter-spacing:1.725000px;}
.ls76_c00083{letter-spacing:1.860000px;}
.ls3e_c00083{letter-spacing:1.872240px;}
.ls52_c00083{letter-spacing:1.886160px;}
.ls53_c00083{letter-spacing:1.934880px;}
.ls6f_c00083{letter-spacing:1.950030px;}
.ls13_c00083{letter-spacing:1.987200px;}
.ls5_c00083{letter-spacing:2.028600px;}
.ls6_c00083{letter-spacing:2.076900px;}
.ls2e_c00083{letter-spacing:2.201100px;}
.ls69_c00083{letter-spacing:2.208000px;}
.ls54_c00083{letter-spacing:2.519520px;}
.ls2f_c00083{letter-spacing:2.835900px;}
.ls33_c00083{letter-spacing:3.284400px;}
.ls57_c00083{letter-spacing:3.450000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{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__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00083{word-spacing:-17.829600px;}
.ws5_c00083{word-spacing:0.000000px;}
.ws3_c00083{word-spacing:15.752400px;}
.ws4_c00083{word-spacing:25.147200px;}
.ws2_c00083{word-spacing:43.114800px;}
.ws0_c00083{word-spacing:124.303500px;}
._7_c00083{margin-left:-18.396000px;}
._4_c00083{margin-left:-12.985800px;}
._14_c00083{margin-left:-11.380500px;}
._15_c00083{margin-left:-10.259040px;}
._6_c00083{margin-left:-8.004000px;}
._5_c00083{margin-left:-6.444960px;}
._3_c00083{margin-left:-3.029100px;}
._8_c00083{margin-left:-1.336560px;}
._13_c00083{width:1.569600px;}
._b_c00083{width:2.766900px;}
._9_c00083{width:4.678200px;}
._a_c00083{width:5.920200px;}
._1e_c00083{width:7.093380px;}
._1b_c00083{width:8.300700px;}
._2_c00083{width:9.618600px;}
._0_c00083{width:12.061200px;}
._16_c00083{width:13.363500px;}
._1_c00083{width:15.373200px;}
._d_c00083{width:16.698000px;}
._c_c00083{width:18.505800px;}
._1c_c00083{width:19.820400px;}
._e_c00083{width:21.155400px;}
._1d_c00083{width:22.632000px;}
._19_c00083{width:23.742900px;}
._1a_c00083{width:25.316100px;}
._17_c00083{width:47.320200px;}
._18_c00083{width:49.017600px;}
._f_c00083{width:66.088200px;}
._11_c00083{width:68.875800px;}
._12_c00083{width:70.807800px;}
._10_c00083{width:73.374600px;}
._21_c00083{width:96.492000px;}
._1f_c00083{width:120.528000px;}
._20_c00083{width:127.073400px;}
.fc0_c00083{color:transparent;}
.fs11_c00083{font-size:18.600000px;}
.fs7_c00083{font-size:18.720000px;}
.fsf_c00083{font-size:27.600000px;}
.fs10_c00083{font-size:28.800600px;}
.fs6_c00083{font-size:31.200000px;}
.fs13_c00083{font-size:33.000600px;}
.fs9_c00083{font-size:36.000000px;}
.fse_c00083{font-size:37.200000px;}
.fsb_c00083{font-size:39.000600px;}
.fs8_c00083{font-size:43.200000px;}
.fsa_c00083{font-size:55.200000px;}
.fs14_c00083{font-size:57.600000px;}
.fs0_c00083{font-size:61.200000px;}
.fsc_c00083{font-size:64.800000px;}
.fs3_c00083{font-size:66.000000px;}
.fsd_c00083{font-size:67.200000px;}
.fs1_c00083{font-size:69.000000px;}
.fs2_c00083{font-size:69.600000px;}
.fs12_c00083{font-size:138.000000px;}
.fs5_c00083{font-size:184.320000px;}
.fs4_c00083{font-size:344.160600px;}
.y0_c00083{bottom:0.000000px;}
.y29_c00083{bottom:70.200006px;}
.y28_c00083{bottom:133.560006px;}
.y27_c00083{bottom:164.160006px;}
.y26_c00083{bottom:194.415006px;}
.y25_c00083{bottom:225.375006px;}
.y24_c00083{bottom:256.695006px;}
.y23_c00083{bottom:287.280006px;}
.y22_c00083{bottom:317.880006px;}
.y21_c00083{bottom:348.135006px;}
.y20_c00083{bottom:378.735006px;}
.y1f_c00083{bottom:410.055006px;}
.y1e_c00083{bottom:440.640006px;}
.y1d_c00083{bottom:471.615006px;}
.y1c_c00083{bottom:502.215006px;}
.y1b_c00083{bottom:531.375006px;}
.y1a_c00083{bottom:533.535006px;}
.y19_c00083{bottom:594.714006px;}
.y18_c00083{bottom:625.695006px;}
.y11_c00083{bottom:687.247506px;}
.y12_c00083{bottom:687.255006px;}
.y10_c00083{bottom:749.175006px;}
.y17_c00083{bottom:766.455006px;}
.y13_c00083{bottom:768.615006px;}
.ye_c00083{bottom:780.125256px;}
.yf_c00083{bottom:780.135006px;}
.y16_c00083{bottom:784.455006px;}
.y15_c00083{bottom:794.160006px;}
.y14_c00083{bottom:808.575006px;}
.yd_c00083{bottom:810.726756px;}
.yc_c00083{bottom:841.673256px;}
.yb_c00083{bottom:872.637006px;}
.ya_c00083{bottom:903.255756px;}
.y9_c00083{bottom:933.840006px;}
.y8_c00083{bottom:964.448256px;}
.y7_c00083{bottom:995.049756px;}
.y6_c00083{bottom:1025.634006px;}
.y5_c00083{bottom:1056.615006px;}
.y3_c00083{bottom:1087.573506px;}
.y4_c00083{bottom:1087.575006px;}
.y2_c00083{bottom:1118.520006px;}
.y1_c00083{bottom:1193.775006px;}
.hb_c00083{height:12.467520px;}
.h13_c00083{height:30.038126px;}
.ha_c00083{height:32.540625px;}
.h12_c00083{height:36.509766px;}
.hd_c00083{height:37.546875px;}
.h10_c00083{height:38.257913px;}
.hf_c00083{height:38.276956px;}
.h11_c00083{height:43.156800px;}
.hc_c00083{height:45.056250px;}
.h15_c00083{height:56.531250px;}
.he_c00083{height:57.571875px;}
.h2_c00083{height:60.064453px;}
.h3_c00083{height:67.719727px;}
.h7_c00083{height:67.749727px;}
.h6_c00083{height:68.274609px;}
.h4_c00083{height:68.308594px;}
.h5_c00083{height:68.862938px;}
.h9_c00083{height:122.757120px;}
.h14_c00083{height:143.929688px;}
.h8_c00083{height:229.210960px;}
.h1_c00083{height:1263.000000px;}
.h0_c00083{height:1263.240006px;}
.w1_c00083{width:892.500000px;}
.w0_c00083{width:892.799998px;}
.x0_c00083{left:0.000000px;}
.x20_c00083{left:122.294999px;}
.x1f_c00083{left:123.734999px;}
.x1_c00083{left:124.844999px;}
.x17_c00083{left:129.794998px;}
.x18_c00083{left:144.974998px;}
.x19_c00083{left:168.254998px;}
.x1e_c00083{left:188.174998px;}
.x2_c00083{left:189.644998px;}
.x1a_c00083{left:193.514998px;}
.x1b_c00083{left:207.899999px;}
.x1c_c00083{left:241.649999px;}
.x1d_c00083{left:250.514998px;}
.x5_c00083{left:363.449999px;}
.xa_c00083{left:386.864999px;}
.x6_c00083{left:407.519998px;}
.x3_c00083{left:413.639998px;}
.x9_c00083{left:416.294999px;}
.xb_c00083{left:422.204998px;}
.x21_c00083{left:428.609998px;}
.x4_c00083{left:440.114999px;}
.x7_c00083{left:507.524999px;}
.xc_c00083{left:521.174999px;}
.x8_c00083{left:530.174999px;}
.xd_c00083{left:550.259999px;}
.xe_c00083{left:671.414999px;}
.x10_c00083{left:678.929999px;}
.x15_c00083{left:684.674999px;}
.xf_c00083{left:689.039999px;}
.x11_c00083{left:690.494999px;}
.x12_c00083{left:726.269998px;}
.x16_c00083{left:731.039999px;}
.x13_c00083{left:732.434999px;}
.x14_c00083{left:738.704998px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls65_c00083{letter-spacing:-2.146667pt;}
.ls7d_c00083{letter-spacing:-1.792000pt;}
.ls7a_c00083{letter-spacing:-1.453600pt;}
.ls6d_c00083{letter-spacing:-1.344000pt;}
.ls62_c00083{letter-spacing:-1.318667pt;}
.ls6e_c00083{letter-spacing:-1.120000pt;}
.ls5b_c00083{letter-spacing:-1.076480pt;}
.ls74_c00083{letter-spacing:-1.051307pt;}
.ls7b_c00083{letter-spacing:-1.030400pt;}
.ls6c_c00083{letter-spacing:-0.970667pt;}
.ls66_c00083{letter-spacing:-0.962933pt;}
.ls5e_c00083{letter-spacing:-0.889333pt;}
.ls7c_c00083{letter-spacing:-0.877067pt;}
.ls79_c00083{letter-spacing:-0.601067pt;}
.ls63_c00083{letter-spacing:-0.588800pt;}
.ls68_c00083{letter-spacing:-0.263733pt;}
.ls61_c00083{letter-spacing:-0.245333pt;}
.ls71_c00083{letter-spacing:-0.233067pt;}
.ls78_c00083{letter-spacing:-0.177867pt;}
.ls5d_c00083{letter-spacing:-0.104267pt;}
.ls70_c00083{letter-spacing:-0.092000pt;}
.ls5c_c00083{letter-spacing:-0.012373pt;}
.ls6b_c00083{letter-spacing:-0.012267pt;}
.ls5a_c00083{letter-spacing:0.000000pt;}
.ls64_c00083{letter-spacing:0.006133pt;}
.ls18_c00083{letter-spacing:0.042933pt;}
.ls4c_c00083{letter-spacing:0.061867pt;}
.lsa_c00083{letter-spacing:0.073600pt;}
.ls19_c00083{letter-spacing:0.179413pt;}
.ls17_c00083{letter-spacing:0.226933pt;}
.ls75_c00083{letter-spacing:0.251467pt;}
.ls26_c00083{letter-spacing:0.312800pt;}
.ls4b_c00083{letter-spacing:0.331200pt;}
.ls1f_c00083{letter-spacing:0.343467pt;}
.ls36_c00083{letter-spacing:0.380267pt;}
.ls2b_c00083{letter-spacing:0.398667pt;}
.ls2d_c00083{letter-spacing:0.429333pt;}
.ls51_c00083{letter-spacing:0.435467pt;}
.ls42_c00083{letter-spacing:0.453867pt;}
.ls1e_c00083{letter-spacing:0.502933pt;}
.ls29_c00083{letter-spacing:0.515200pt;}
.ls2c_c00083{letter-spacing:0.533600pt;}
.ls48_c00083{letter-spacing:0.556800pt;}
.ls45_c00083{letter-spacing:0.575360pt;}
.ls55_c00083{letter-spacing:0.588800pt;}
.ls7_c00083{letter-spacing:0.601067pt;}
.ls4e_c00083{letter-spacing:0.618667pt;}
.ls1c_c00083{letter-spacing:0.631733pt;}
.ls44_c00083{letter-spacing:0.656267pt;}
.ls4a_c00083{letter-spacing:0.668160pt;}
.lsf_c00083{letter-spacing:0.674667pt;}
.ls3_c00083{letter-spacing:0.686933pt;}
.ls34_c00083{letter-spacing:0.699200pt;}
.ls11_c00083{letter-spacing:0.717600pt;}
.ls3d_c00083{letter-spacing:0.742133pt;}
.ls49_c00083{letter-spacing:0.748267pt;}
.ls43_c00083{letter-spacing:0.748587pt;}
.ls41_c00083{letter-spacing:0.760960pt;}
.ls47_c00083{letter-spacing:0.772800pt;}
.ls6a_c00083{letter-spacing:0.779520pt;}
.ls2a_c00083{letter-spacing:0.798080pt;}
.ls3a_c00083{letter-spacing:0.809600pt;}
.lsb_c00083{letter-spacing:0.815733pt;}
.ls12_c00083{letter-spacing:0.821867pt;}
.ls23_c00083{letter-spacing:0.852533pt;}
.ls21_c00083{letter-spacing:0.858667pt;}
.ls58_c00083{letter-spacing:0.864800pt;}
.ls1b_c00083{letter-spacing:0.883200pt;}
.ls22_c00083{letter-spacing:0.895467pt;}
.ls8_c00083{letter-spacing:0.909440pt;}
.ls4d_c00083{letter-spacing:0.920000pt;}
.ls9_c00083{letter-spacing:0.921813pt;}
.ls50_c00083{letter-spacing:0.934187pt;}
.ls30_c00083{letter-spacing:0.938400pt;}
.ls1_c00083{letter-spacing:0.944533pt;}
.ls73_c00083{letter-spacing:0.962933pt;}
.ls1a_c00083{letter-spacing:0.965120pt;}
.ls1d_c00083{letter-spacing:0.969067pt;}
.ls3b_c00083{letter-spacing:0.975200pt;}
.ls24_c00083{letter-spacing:0.987467pt;}
.ls25_c00083{letter-spacing:0.993600pt;}
.ls56_c00083{letter-spacing:0.995520pt;}
.ls31_c00083{letter-spacing:1.005867pt;}
.ls38_c00083{letter-spacing:1.012000pt;}
.lse_c00083{letter-spacing:1.024267pt;}
.ls39_c00083{letter-spacing:1.042667pt;}
.ls3c_c00083{letter-spacing:1.051733pt;}
.ls3f_c00083{letter-spacing:1.054933pt;}
.ls20_c00083{letter-spacing:1.110133pt;}
.ls40_c00083{letter-spacing:1.144533pt;}
.lsc_c00083{letter-spacing:1.153067pt;}
.ls14_c00083{letter-spacing:1.165333pt;}
.ls59_c00083{letter-spacing:1.196000pt;}
.ls35_c00083{letter-spacing:1.232800pt;}
.ls32_c00083{letter-spacing:1.238933pt;}
.ls10_c00083{letter-spacing:1.251200pt;}
.ls67_c00083{letter-spacing:1.275733pt;}
.ls77_c00083{letter-spacing:1.280027pt;}
.ls60_c00083{letter-spacing:1.288000pt;}
.ls37_c00083{letter-spacing:1.300267pt;}
.ls28_c00083{letter-spacing:1.318667pt;}
.ls0_c00083{letter-spacing:1.337067pt;}
.lsd_c00083{letter-spacing:1.355467pt;}
.ls72_c00083{letter-spacing:1.367733pt;}
.ls4f_c00083{letter-spacing:1.373867pt;}
.ls46_c00083{letter-spacing:1.386133pt;}
.ls2_c00083{letter-spacing:1.392267pt;}
.ls15_c00083{letter-spacing:1.422933pt;}
.ls4_c00083{letter-spacing:1.478133pt;}
.ls5f_c00083{letter-spacing:1.496533pt;}
.ls27_c00083{letter-spacing:1.502667pt;}
.ls16_c00083{letter-spacing:1.533333pt;}
.ls76_c00083{letter-spacing:1.653333pt;}
.ls3e_c00083{letter-spacing:1.664213pt;}
.ls52_c00083{letter-spacing:1.676587pt;}
.ls53_c00083{letter-spacing:1.719893pt;}
.ls6f_c00083{letter-spacing:1.733360pt;}
.ls13_c00083{letter-spacing:1.766400pt;}
.ls5_c00083{letter-spacing:1.803200pt;}
.ls6_c00083{letter-spacing:1.846133pt;}
.ls2e_c00083{letter-spacing:1.956533pt;}
.ls69_c00083{letter-spacing:1.962667pt;}
.ls54_c00083{letter-spacing:2.239573pt;}
.ls2f_c00083{letter-spacing:2.520800pt;}
.ls33_c00083{letter-spacing:2.919467pt;}
.ls57_c00083{letter-spacing:3.066667pt;}
.ws1_c00083{word-spacing:-15.848533pt;}
.ws5_c00083{word-spacing:0.000000pt;}
.ws3_c00083{word-spacing:14.002133pt;}
.ws4_c00083{word-spacing:22.353067pt;}
.ws2_c00083{word-spacing:38.324267pt;}
.ws0_c00083{word-spacing:110.492000pt;}
._7_c00083{margin-left:-16.352000pt;}
._4_c00083{margin-left:-11.542933pt;}
._14_c00083{margin-left:-10.116000pt;}
._15_c00083{margin-left:-9.119147pt;}
._6_c00083{margin-left:-7.114667pt;}
._5_c00083{margin-left:-5.728853pt;}
._3_c00083{margin-left:-2.692533pt;}
._8_c00083{margin-left:-1.188053pt;}
._13_c00083{width:1.395200pt;}
._b_c00083{width:2.459467pt;}
._9_c00083{width:4.158400pt;}
._a_c00083{width:5.262400pt;}
._1e_c00083{width:6.305227pt;}
._1b_c00083{width:7.378400pt;}
._2_c00083{width:8.549867pt;}
._0_c00083{width:10.721067pt;}
._16_c00083{width:11.878667pt;}
._1_c00083{width:13.665067pt;}
._d_c00083{width:14.842667pt;}
._c_c00083{width:16.449600pt;}
._1c_c00083{width:17.618133pt;}
._e_c00083{width:18.804800pt;}
._1d_c00083{width:20.117333pt;}
._19_c00083{width:21.104800pt;}
._1a_c00083{width:22.503200pt;}
._17_c00083{width:42.062400pt;}
._18_c00083{width:43.571200pt;}
._f_c00083{width:58.745067pt;}
._11_c00083{width:61.222933pt;}
._12_c00083{width:62.940267pt;}
._10_c00083{width:65.221867pt;}
._21_c00083{width:85.770667pt;}
._1f_c00083{width:107.136000pt;}
._20_c00083{width:112.954133pt;}
.fs11_c00083{font-size:16.533333pt;}
.fs7_c00083{font-size:16.640000pt;}
.fsf_c00083{font-size:24.533333pt;}
.fs10_c00083{font-size:25.600533pt;}
.fs6_c00083{font-size:27.733333pt;}
.fs13_c00083{font-size:29.333867pt;}
.fs9_c00083{font-size:32.000000pt;}
.fse_c00083{font-size:33.066667pt;}
.fsb_c00083{font-size:34.667200pt;}
.fs8_c00083{font-size:38.400000pt;}
.fsa_c00083{font-size:49.066667pt;}
.fs14_c00083{font-size:51.200000pt;}
.fs0_c00083{font-size:54.400000pt;}
.fsc_c00083{font-size:57.600000pt;}
.fs3_c00083{font-size:58.666667pt;}
.fsd_c00083{font-size:59.733333pt;}
.fs1_c00083{font-size:61.333333pt;}
.fs2_c00083{font-size:61.866667pt;}
.fs12_c00083{font-size:122.666667pt;}
.fs5_c00083{font-size:163.840000pt;}
.fs4_c00083{font-size:305.920533pt;}
.y0_c00083{bottom:0.000000pt;}
.y29_c00083{bottom:62.400005pt;}
.y28_c00083{bottom:118.720005pt;}
.y27_c00083{bottom:145.920005pt;}
.y26_c00083{bottom:172.813339pt;}
.y25_c00083{bottom:200.333339pt;}
.y24_c00083{bottom:228.173339pt;}
.y23_c00083{bottom:255.360005pt;}
.y22_c00083{bottom:282.560005pt;}
.y21_c00083{bottom:309.453339pt;}
.y20_c00083{bottom:336.653339pt;}
.y1f_c00083{bottom:364.493339pt;}
.y1e_c00083{bottom:391.680005pt;}
.y1d_c00083{bottom:419.213339pt;}
.y1c_c00083{bottom:446.413339pt;}
.y1b_c00083{bottom:472.333339pt;}
.y1a_c00083{bottom:474.253339pt;}
.y19_c00083{bottom:528.634672pt;}
.y18_c00083{bottom:556.173339pt;}
.y11_c00083{bottom:610.886672pt;}
.y12_c00083{bottom:610.893339pt;}
.y10_c00083{bottom:665.933339pt;}
.y17_c00083{bottom:681.293339pt;}
.y13_c00083{bottom:683.213339pt;}
.ye_c00083{bottom:693.444672pt;}
.yf_c00083{bottom:693.453339pt;}
.y16_c00083{bottom:697.293339pt;}
.y15_c00083{bottom:705.920005pt;}
.y14_c00083{bottom:718.733339pt;}
.yd_c00083{bottom:720.646005pt;}
.yc_c00083{bottom:748.154005pt;}
.yb_c00083{bottom:775.677339pt;}
.ya_c00083{bottom:802.894005pt;}
.y9_c00083{bottom:830.080005pt;}
.y8_c00083{bottom:857.287339pt;}
.y7_c00083{bottom:884.488672pt;}
.y6_c00083{bottom:911.674672pt;}
.y5_c00083{bottom:939.213339pt;}
.y3_c00083{bottom:966.732005pt;}
.y4_c00083{bottom:966.733339pt;}
.y2_c00083{bottom:994.240005pt;}
.y1_c00083{bottom:1061.133339pt;}
.hb_c00083{height:11.082240pt;}
.h13_c00083{height:26.700556pt;}
.ha_c00083{height:28.925000pt;}
.h12_c00083{height:32.453125pt;}
.hd_c00083{height:33.375000pt;}
.h10_c00083{height:34.007034pt;}
.hf_c00083{height:34.023961pt;}
.h11_c00083{height:38.361600pt;}
.hc_c00083{height:40.050000pt;}
.h15_c00083{height:50.250000pt;}
.he_c00083{height:51.175000pt;}
.h2_c00083{height:53.390625pt;}
.h3_c00083{height:60.195312pt;}
.h7_c00083{height:60.221979pt;}
.h6_c00083{height:60.688542pt;}
.h4_c00083{height:60.718750pt;}
.h5_c00083{height:61.211500pt;}
.h9_c00083{height:109.117440pt;}
.h14_c00083{height:127.937500pt;}
.h8_c00083{height:203.743075pt;}
.h1_c00083{height:1122.666667pt;}
.h0_c00083{height:1122.880005pt;}
.w1_c00083{width:793.333333pt;}
.w0_c00083{width:793.599999pt;}
.x0_c00083{left:0.000000pt;}
.x20_c00083{left:108.706665pt;}
.x1f_c00083{left:109.986665pt;}
.x1_c00083{left:110.973332pt;}
.x17_c00083{left:115.373332pt;}
.x18_c00083{left:128.866665pt;}
.x19_c00083{left:149.559999pt;}
.x1e_c00083{left:167.266665pt;}
.x2_c00083{left:168.573332pt;}
.x1a_c00083{left:172.013332pt;}
.x1b_c00083{left:184.799999pt;}
.x1c_c00083{left:214.799999pt;}
.x1d_c00083{left:222.679999pt;}
.x5_c00083{left:323.066665pt;}
.xa_c00083{left:343.879999pt;}
.x6_c00083{left:362.239999pt;}
.x3_c00083{left:367.679999pt;}
.x9_c00083{left:370.039999pt;}
.xb_c00083{left:375.293332pt;}
.x21_c00083{left:380.986665pt;}
.x4_c00083{left:391.213332pt;}
.x7_c00083{left:451.133332pt;}
.xc_c00083{left:463.266665pt;}
.x8_c00083{left:471.266665pt;}
.xd_c00083{left:489.119999pt;}
.xe_c00083{left:596.813332pt;}
.x10_c00083{left:603.493332pt;}
.x15_c00083{left:608.599999pt;}
.xf_c00083{left:612.479999pt;}
.x11_c00083{left:613.773332pt;}
.x12_c00083{left:645.573332pt;}
.x16_c00083{left:649.813332pt;}
.x13_c00083{left:651.053332pt;}
.x14_c00083{left:656.626665pt;}
}





/* 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_c00084 {
    display:none;
  }
  .loading-indicator_c00084.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00084 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_c00084 { 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_c00084" -> "#page-container .classname_c00084")
 */
.pf_c00084 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00084 { /* 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_c00084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00084 { /* 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_c00084 { /* 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_c00084 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00084 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00084 {overflow:visible;}
  }
}
.c_c00084 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00084 { /* 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_c00084:after { /* webkit #35443 */
  content: '';
}
.t_c00084:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00084 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 */
}
.__c00084 { /* 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_c00084 { /* info for Javascript */
  display:none;
}
.l_c00084 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00084 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00084 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00084: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_c00084 {
    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_c00084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00084.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_c00084 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00084;src:url('chunks/assets/font_13f5b615d92ea82bb3179133.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.284668;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_c00084;src:url('chunks/assets/font_d724ad2f97d6b4fd9765553d.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.284180;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;}
.m3_c00084{transform:matrix(0.228287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228287,0.000000,0.000000,0.250000,0,0);}
.m2_c00084{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.m1_c00084{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00084{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);}
.v0_c00084{vertical-align:0.000000px;}
.ls3c_c00084{letter-spacing:-2.478000px;}
.ls46_c00084{letter-spacing:-2.457000px;}
.ls40_c00084{letter-spacing:-2.407860px;}
.ls47_c00084{letter-spacing:-2.289000px;}
.ls41_c00084{letter-spacing:-1.930500px;}
.ls3a_c00084{letter-spacing:-1.543440px;}
.ls39_c00084{letter-spacing:-1.446120px;}
.ls3f_c00084{letter-spacing:-0.968760px;}
.ls45_c00084{letter-spacing:-0.491400px;}
.ls38_c00084{letter-spacing:-0.168480px;}
.ls37_c00084{letter-spacing:-0.007020px;}
.ls43_c00084{letter-spacing:0.000000px;}
.ls30_c00084{letter-spacing:0.049140px;}
.ls13_c00084{letter-spacing:0.119340px;}
.ls3d_c00084{letter-spacing:0.140400px;}
.ls42_c00084{letter-spacing:0.217620px;}
.lsb_c00084{letter-spacing:0.254880px;}
.lsa_c00084{letter-spacing:0.379080px;}
.ls8_c00084{letter-spacing:0.389400px;}
.lsd_c00084{letter-spacing:0.417720px;}
.ls15_c00084{letter-spacing:0.421200px;}
.ls33_c00084{letter-spacing:0.431880px;}
.ls35_c00084{letter-spacing:0.442260px;}
.ls7_c00084{letter-spacing:0.449280px;}
.ls2_c00084{letter-spacing:0.470340px;}
.ls32_c00084{letter-spacing:0.488520px;}
.ls20_c00084{letter-spacing:0.491400px;}
.ls3e_c00084{letter-spacing:0.498420px;}
.ls1f_c00084{letter-spacing:0.516840px;}
.ls1b_c00084{letter-spacing:0.526500px;}
.ls23_c00084{letter-spacing:0.533520px;}
.ls6_c00084{letter-spacing:0.580560px;}
.ls5_c00084{letter-spacing:0.594720px;}
.ls1c_c00084{letter-spacing:0.603720px;}
.ls9_c00084{letter-spacing:0.615960px;}
.ls1_c00084{letter-spacing:0.623040px;}
.ls2b_c00084{letter-spacing:0.624780px;}
.ls11_c00084{letter-spacing:0.630120px;}
.ls12_c00084{letter-spacing:0.652860px;}
.ls1a_c00084{letter-spacing:0.665520px;}
.ls10_c00084{letter-spacing:0.666900px;}
.ls19_c00084{letter-spacing:0.694980px;}
.ls2d_c00084{letter-spacing:0.700920px;}
.ls2f_c00084{letter-spacing:0.702000px;}
.ls16_c00084{letter-spacing:0.708000px;}
.ls25_c00084{letter-spacing:0.709020px;}
.ls1d_c00084{letter-spacing:0.716040px;}
.ls18_c00084{letter-spacing:0.764640px;}
.ls22_c00084{letter-spacing:0.792960px;}
.ls21_c00084{letter-spacing:0.800040px;}
.ls44_c00084{letter-spacing:0.800280px;}
.ls24_c00084{letter-spacing:0.807120px;}
.ls31_c00084{letter-spacing:0.849600px;}
.lse_c00084{letter-spacing:0.856440px;}
.ls1e_c00084{letter-spacing:0.877920px;}
.lsf_c00084{letter-spacing:0.892080px;}
.ls34_c00084{letter-spacing:0.905580px;}
.ls14_c00084{letter-spacing:0.927480px;}
.ls3_c00084{letter-spacing:0.934560px;}
.ls2c_c00084{letter-spacing:1.012440px;}
.ls28_c00084{letter-spacing:1.024920px;}
.ls2e_c00084{letter-spacing:1.054920px;}
.ls29_c00084{letter-spacing:1.060020px;}
.lsc_c00084{letter-spacing:1.116180px;}
.ls0_c00084{letter-spacing:1.451400px;}
.ls17_c00084{letter-spacing:1.530360px;}
.ls26_c00084{letter-spacing:1.578840px;}
.ls36_c00084{letter-spacing:1.603440px;}
.ls3b_c00084{letter-spacing:2.138160px;}
.ls2a_c00084{letter-spacing:2.350560px;}
.ls4_c00084{letter-spacing:2.534640px;}
.ls27_c00084{letter-spacing:2.839080px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{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__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00084{word-spacing:0.000000px;}
._a_c00084{margin-left:-7.547280px;}
._3_c00084{margin-left:-5.982600px;}
._0_c00084{margin-left:-2.796600px;}
._1_c00084{margin-left:-1.244400px;}
._8_c00084{width:1.231920px;}
._6_c00084{width:2.393040px;}
._7_c00084{width:3.659160px;}
._5_c00084{width:4.956000px;}
._2_c00084{width:6.534600px;}
._9_c00084{width:7.648740px;}
._4_c00084{width:8.703360px;}
.fc0_c00084{color:transparent;}
.fs0_c00084{font-size:61.200000px;}
.fs4_c00084{font-size:65.400000px;}
.fs2_c00084{font-size:70.200000px;}
.fs1_c00084{font-size:70.800000px;}
.fs3_c00084{font-size:73.800000px;}
.y0_c00084{bottom:0.000000px;}
.y23_c00084{bottom:69.855006px;}
.y22_c00084{bottom:131.760006px;}
.y21_c00084{bottom:162.720006px;}
.y20_c00084{bottom:193.695006px;}
.y1f_c00084{bottom:224.655006px;}
.y1e_c00084{bottom:255.255006px;}
.y1d_c00084{bottom:285.840006px;}
.y1c_c00084{bottom:316.800006px;}
.y1b_c00084{bottom:347.775006px;}
.y1a_c00084{bottom:379.095006px;}
.y19_c00084{bottom:410.055006px;}
.y18_c00084{bottom:441.015006px;}
.y17_c00084{bottom:471.975006px;}
.y16_c00084{bottom:502.935006px;}
.y15_c00084{bottom:533.175006px;}
.y14_c00084{bottom:564.480006px;}
.y13_c00084{bottom:595.455006px;}
.y12_c00084{bottom:626.775006px;}
.y11_c00084{bottom:657.720006px;}
.y10_c00084{bottom:688.695006px;}
.yf_c00084{bottom:719.280006px;}
.ye_c00084{bottom:750.255006px;}
.yd_c00084{bottom:781.215006px;}
.yc_c00084{bottom:811.800006px;}
.yb_c00084{bottom:843.135006px;}
.ya_c00084{bottom:874.095006px;}
.y9_c00084{bottom:905.055006px;}
.y8_c00084{bottom:936.000006px;}
.y7_c00084{bottom:966.615006px;}
.y6_c00084{bottom:997.215006px;}
.y5_c00084{bottom:1028.160006px;}
.y4_c00084{bottom:1059.135006px;}
.y3_c00084{bottom:1089.735006px;}
.y2_c00084{bottom:1121.055006px;}
.y1_c00084{bottom:1197.000006px;}
.h2_c00084{height:60.064453px;}
.h6_c00084{height:64.186523px;}
.h5_c00084{height:68.897461px;}
.h3_c00084{height:69.451758px;}
.h4_c00084{height:72.430664px;}
.h1_c00084{height:1263.000000px;}
.h0_c00084{height:1263.240006px;}
.w1_c00084{width:892.500000px;}
.w0_c00084{width:892.799998px;}
.x0_c00084{left:0.000000px;}
.x3_c00084{left:118.454999px;}
.x1_c00084{left:119.804999px;}
.x8_c00084{left:178.574998px;}
.x7_c00084{left:179.654999px;}
.x6_c00084{left:180.734998px;}
.x5_c00084{left:181.814999px;}
.x2_c00084{left:183.149998px;}
.x4_c00084{left:283.364999px;}
.xa_c00084{left:420.674999px;}
.x9_c00084{left:467.039999px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls3c_c00084{letter-spacing:-2.202667pt;}
.ls46_c00084{letter-spacing:-2.184000pt;}
.ls40_c00084{letter-spacing:-2.140320pt;}
.ls47_c00084{letter-spacing:-2.034667pt;}
.ls41_c00084{letter-spacing:-1.716000pt;}
.ls3a_c00084{letter-spacing:-1.371947pt;}
.ls39_c00084{letter-spacing:-1.285440pt;}
.ls3f_c00084{letter-spacing:-0.861120pt;}
.ls45_c00084{letter-spacing:-0.436800pt;}
.ls38_c00084{letter-spacing:-0.149760pt;}
.ls37_c00084{letter-spacing:-0.006240pt;}
.ls43_c00084{letter-spacing:0.000000pt;}
.ls30_c00084{letter-spacing:0.043680pt;}
.ls13_c00084{letter-spacing:0.106080pt;}
.ls3d_c00084{letter-spacing:0.124800pt;}
.ls42_c00084{letter-spacing:0.193440pt;}
.lsb_c00084{letter-spacing:0.226560pt;}
.lsa_c00084{letter-spacing:0.336960pt;}
.ls8_c00084{letter-spacing:0.346133pt;}
.lsd_c00084{letter-spacing:0.371307pt;}
.ls15_c00084{letter-spacing:0.374400pt;}
.ls33_c00084{letter-spacing:0.383893pt;}
.ls35_c00084{letter-spacing:0.393120pt;}
.ls7_c00084{letter-spacing:0.399360pt;}
.ls2_c00084{letter-spacing:0.418080pt;}
.ls32_c00084{letter-spacing:0.434240pt;}
.ls20_c00084{letter-spacing:0.436800pt;}
.ls3e_c00084{letter-spacing:0.443040pt;}
.ls1f_c00084{letter-spacing:0.459413pt;}
.ls1b_c00084{letter-spacing:0.468000pt;}
.ls23_c00084{letter-spacing:0.474240pt;}
.ls6_c00084{letter-spacing:0.516053pt;}
.ls5_c00084{letter-spacing:0.528640pt;}
.ls1c_c00084{letter-spacing:0.536640pt;}
.ls9_c00084{letter-spacing:0.547520pt;}
.ls1_c00084{letter-spacing:0.553813pt;}
.ls2b_c00084{letter-spacing:0.555360pt;}
.ls11_c00084{letter-spacing:0.560107pt;}
.ls12_c00084{letter-spacing:0.580320pt;}
.ls1a_c00084{letter-spacing:0.591573pt;}
.ls10_c00084{letter-spacing:0.592800pt;}
.ls19_c00084{letter-spacing:0.617760pt;}
.ls2d_c00084{letter-spacing:0.623040pt;}
.ls2f_c00084{letter-spacing:0.624000pt;}
.ls16_c00084{letter-spacing:0.629333pt;}
.ls25_c00084{letter-spacing:0.630240pt;}
.ls1d_c00084{letter-spacing:0.636480pt;}
.ls18_c00084{letter-spacing:0.679680pt;}
.ls22_c00084{letter-spacing:0.704853pt;}
.ls21_c00084{letter-spacing:0.711147pt;}
.ls44_c00084{letter-spacing:0.711360pt;}
.ls24_c00084{letter-spacing:0.717440pt;}
.ls31_c00084{letter-spacing:0.755200pt;}
.lse_c00084{letter-spacing:0.761280pt;}
.ls1e_c00084{letter-spacing:0.780373pt;}
.lsf_c00084{letter-spacing:0.792960pt;}
.ls34_c00084{letter-spacing:0.804960pt;}
.ls14_c00084{letter-spacing:0.824427pt;}
.ls3_c00084{letter-spacing:0.830720pt;}
.ls2c_c00084{letter-spacing:0.899947pt;}
.ls28_c00084{letter-spacing:0.911040pt;}
.ls2e_c00084{letter-spacing:0.937707pt;}
.ls29_c00084{letter-spacing:0.942240pt;}
.lsc_c00084{letter-spacing:0.992160pt;}
.ls0_c00084{letter-spacing:1.290133pt;}
.ls17_c00084{letter-spacing:1.360320pt;}
.ls26_c00084{letter-spacing:1.403413pt;}
.ls36_c00084{letter-spacing:1.425280pt;}
.ls3b_c00084{letter-spacing:1.900587pt;}
.ls2a_c00084{letter-spacing:2.089387pt;}
.ls4_c00084{letter-spacing:2.253013pt;}
.ls27_c00084{letter-spacing:2.523627pt;}
.ws0_c00084{word-spacing:0.000000pt;}
._a_c00084{margin-left:-6.708693pt;}
._3_c00084{margin-left:-5.317867pt;}
._0_c00084{margin-left:-2.485867pt;}
._1_c00084{margin-left:-1.106133pt;}
._8_c00084{width:1.095040pt;}
._6_c00084{width:2.127147pt;}
._7_c00084{width:3.252587pt;}
._5_c00084{width:4.405333pt;}
._2_c00084{width:5.808533pt;}
._9_c00084{width:6.798880pt;}
._4_c00084{width:7.736320pt;}
.fs0_c00084{font-size:54.400000pt;}
.fs4_c00084{font-size:58.133333pt;}
.fs2_c00084{font-size:62.400000pt;}
.fs1_c00084{font-size:62.933333pt;}
.fs3_c00084{font-size:65.600000pt;}
.y0_c00084{bottom:0.000000pt;}
.y23_c00084{bottom:62.093339pt;}
.y22_c00084{bottom:117.120005pt;}
.y21_c00084{bottom:144.640005pt;}
.y20_c00084{bottom:172.173339pt;}
.y1f_c00084{bottom:199.693339pt;}
.y1e_c00084{bottom:226.893339pt;}
.y1d_c00084{bottom:254.080005pt;}
.y1c_c00084{bottom:281.600005pt;}
.y1b_c00084{bottom:309.133339pt;}
.y1a_c00084{bottom:336.973339pt;}
.y19_c00084{bottom:364.493339pt;}
.y18_c00084{bottom:392.013339pt;}
.y17_c00084{bottom:419.533339pt;}
.y16_c00084{bottom:447.053339pt;}
.y15_c00084{bottom:473.933339pt;}
.y14_c00084{bottom:501.760005pt;}
.y13_c00084{bottom:529.293339pt;}
.y12_c00084{bottom:557.133339pt;}
.y11_c00084{bottom:584.640005pt;}
.y10_c00084{bottom:612.173339pt;}
.yf_c00084{bottom:639.360005pt;}
.ye_c00084{bottom:666.893339pt;}
.yd_c00084{bottom:694.413339pt;}
.yc_c00084{bottom:721.600005pt;}
.yb_c00084{bottom:749.453339pt;}
.ya_c00084{bottom:776.973339pt;}
.y9_c00084{bottom:804.493339pt;}
.y8_c00084{bottom:832.000005pt;}
.y7_c00084{bottom:859.213339pt;}
.y6_c00084{bottom:886.413339pt;}
.y5_c00084{bottom:913.920005pt;}
.y4_c00084{bottom:941.453339pt;}
.y3_c00084{bottom:968.653339pt;}
.y2_c00084{bottom:996.493339pt;}
.y1_c00084{bottom:1064.000005pt;}
.h2_c00084{height:53.390625pt;}
.h6_c00084{height:57.054688pt;}
.h5_c00084{height:61.242187pt;}
.h3_c00084{height:61.734896pt;}
.h4_c00084{height:64.382813pt;}
.h1_c00084{height:1122.666667pt;}
.h0_c00084{height:1122.880005pt;}
.w1_c00084{width:793.333333pt;}
.w0_c00084{width:793.599999pt;}
.x0_c00084{left:0.000000pt;}
.x3_c00084{left:105.293332pt;}
.x1_c00084{left:106.493332pt;}
.x8_c00084{left:158.733332pt;}
.x7_c00084{left:159.693332pt;}
.x6_c00084{left:160.653332pt;}
.x5_c00084{left:161.613332pt;}
.x2_c00084{left:162.799999pt;}
.x4_c00084{left:251.879999pt;}
.xa_c00084{left:373.933332pt;}
.x9_c00084{left:415.146665pt;}
}





/* 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_c00085 {
    display:none;
  }
  .loading-indicator_c00085.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00085 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_c00085 { 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_c00085" -> "#page-container .classname_c00085")
 */
.pf_c00085 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00085 { /* 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_c00085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00085 { /* 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_c00085 { /* 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_c00085 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00085 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00085 {overflow:visible;}
  }
}
.c_c00085 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00085 { /* 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_c00085:after { /* webkit #35443 */
  content: '';
}
.t_c00085:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00085 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 */
}
.__c00085 { /* 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_c00085 { /* info for Javascript */
  display:none;
}
.l_c00085 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00085 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00085 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00085: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_c00085 {
    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_c00085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00085.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_c00085 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00085;src:url('chunks/assets/font_047c727381503337026a8cdf.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.284668;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_c00085;src:url('chunks/assets/font_3e92e4132c897a1d6b080e83.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.284180;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_c00085;src:url('chunks/assets/font_84ca3306aa18a7cae4f110d6.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;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;}
.m3_c00085{transform:matrix(0.218274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218274,0.000000,0.000000,0.250000,0,0);}
.m2_c00085{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m0_c00085{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_c00085{transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls51_c00085{letter-spacing:-2.436000px;}
.ls54_c00085{letter-spacing:-2.394000px;}
.ls47_c00085{letter-spacing:-2.025360px;}
.ls48_c00085{letter-spacing:-1.545120px;}
.ls53_c00085{letter-spacing:-1.064880px;}
.ls4b_c00085{letter-spacing:-0.584640px;}
.ls4e_c00085{letter-spacing:-0.104400px;}
.ls4f_c00085{letter-spacing:0.000000px;}
.ls3c_c00085{letter-spacing:0.320160px;}
.ls4a_c00085{letter-spacing:0.375840px;}
.ls42_c00085{letter-spacing:0.389760px;}
.ls19_c00085{letter-spacing:0.480240px;}
.ls4d_c00085{letter-spacing:0.494160px;}
.ls1b_c00085{letter-spacing:0.501120px;}
.ls23_c00085{letter-spacing:0.508080px;}
.ls3a_c00085{letter-spacing:0.515040px;}
.ls35_c00085{letter-spacing:0.542880px;}
.lsf_c00085{letter-spacing:0.584640px;}
.ls37_c00085{letter-spacing:0.598560px;}
.ls15_c00085{letter-spacing:0.661200px;}
.ls2d_c00085{letter-spacing:0.696000px;}
.ls8_c00085{letter-spacing:0.702960px;}
.ls1d_c00085{letter-spacing:0.709920px;}
.ls26_c00085{letter-spacing:0.744720px;}
.ls14_c00085{letter-spacing:0.807360px;}
.lsc_c00085{letter-spacing:0.821280px;}
.ls4c_c00085{letter-spacing:0.856080px;}
.ls45_c00085{letter-spacing:0.890880px;}
.lsb_c00085{letter-spacing:0.904800px;}
.ls4_c00085{letter-spacing:0.911760px;}
.ls30_c00085{letter-spacing:0.925680px;}
.ls49_c00085{letter-spacing:0.946560px;}
.ls38_c00085{letter-spacing:0.953520px;}
.ls3d_c00085{letter-spacing:0.960480px;}
.ls2_c00085{letter-spacing:0.981360px;}
.ls2b_c00085{letter-spacing:0.995280px;}
.ls2a_c00085{letter-spacing:1.023120px;}
.lse_c00085{letter-spacing:1.085760px;}
.ls46_c00085{letter-spacing:1.119960px;}
.ls12_c00085{letter-spacing:1.141440px;}
.ls1e_c00085{letter-spacing:1.197120px;}
.ls32_c00085{letter-spacing:1.252800px;}
.ls29_c00085{letter-spacing:1.259760px;}
.ls3e_c00085{letter-spacing:1.294980px;}
.ls9_c00085{letter-spacing:1.389900px;}
.ls39_c00085{letter-spacing:1.403460px;}
.ls40_c00085{letter-spacing:1.430580px;}
.ls20_c00085{letter-spacing:1.471260px;}
.ls31_c00085{letter-spacing:1.496400px;}
.ls2f_c00085{letter-spacing:1.498380px;}
.ls50_c00085{letter-spacing:1.572960px;}
.ls3b_c00085{letter-spacing:1.579740px;}
.ls0_c00085{letter-spacing:1.593300px;}
.ls3_c00085{letter-spacing:1.600080px;}
.lsa_c00085{letter-spacing:1.708560px;}
.ls7_c00085{letter-spacing:1.756020px;}
.ls6_c00085{letter-spacing:1.769580px;}
.ls33_c00085{letter-spacing:1.781760px;}
.ls11_c00085{letter-spacing:1.789920px;}
.ls5_c00085{letter-spacing:1.796700px;}
.ls43_c00085{letter-spacing:1.857720px;}
.ls18_c00085{letter-spacing:1.864500px;}
.ls27_c00085{letter-spacing:1.898400px;}
.ls36_c00085{letter-spacing:1.925520px;}
.ls34_c00085{letter-spacing:1.959420px;}
.ls3f_c00085{letter-spacing:2.000100px;}
.ls16_c00085{letter-spacing:2.006880px;}
.ls52_c00085{letter-spacing:2.013660px;}
.ls1_c00085{letter-spacing:2.027220px;}
.ls2e_c00085{letter-spacing:2.074680px;}
.ls13_c00085{letter-spacing:2.156040px;}
.lsd_c00085{letter-spacing:2.189940px;}
.ls2c_c00085{letter-spacing:2.217060px;}
.ls17_c00085{letter-spacing:2.264520px;}
.ls10_c00085{letter-spacing:2.366220px;}
.ls1f_c00085{letter-spacing:2.420460px;}
.ls24_c00085{letter-spacing:2.436000px;}
.ls25_c00085{letter-spacing:2.528940px;}
.ls22_c00085{letter-spacing:2.617080px;}
.ls44_c00085{letter-spacing:2.718780px;}
.ls1a_c00085{letter-spacing:2.739120px;}
.ls1c_c00085{letter-spacing:2.874720px;}
.ls21_c00085{letter-spacing:3.044220px;}
.ls41_c00085{letter-spacing:3.301860px;}
.ls28_c00085{letter-spacing:3.480000px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{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__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00085{word-spacing:0.000000px;}
._6_c00085{margin-left:-19.011120px;}
._c_c00085{margin-left:-16.331100px;}
._b_c00085{margin-left:-7.200720px;}
._1_c00085{margin-left:-5.058780px;}
._9_c00085{margin-left:-4.013760px;}
._7_c00085{margin-left:-2.996760px;}
._4_c00085{margin-left:-1.911840px;}
._0_c00085{width:1.728900px;}
._a_c00085{width:3.017100px;}
._3_c00085{width:4.373100px;}
._8_c00085{width:5.380920px;}
._2_c00085{width:6.744240px;}
._5_c00085{width:8.323740px;}
.fc0_c00085{color:transparent;}
.fs0_c00085{font-size:61.200000px;}
.fs8_c00085{font-size:66.000000px;}
.fs4_c00085{font-size:67.200000px;}
.fs1_c00085{font-size:67.800000px;}
.fs6_c00085{font-size:68.400000px;}
.fs5_c00085{font-size:69.000000px;}
.fs2_c00085{font-size:69.600000px;}
.fs3_c00085{font-size:73.800000px;}
.fs7_c00085{font-size:76.800000px;}
.y0_c00085{bottom:0.000000px;}
.y23_c00085{bottom:68.775000px;}
.y22_c00085{bottom:132.120000px;}
.y21_c00085{bottom:162.375000px;}
.y20_c00085{bottom:192.615000px;}
.y1f_c00085{bottom:223.575000px;}
.y1e_c00085{bottom:254.895000px;}
.y1d_c00085{bottom:285.855000px;}
.y1c_c00085{bottom:316.815000px;}
.y1b_c00085{bottom:347.415000px;}
.y1a_c00085{bottom:378.015000px;}
.y19_c00085{bottom:408.255000px;}
.y18_c00085{bottom:439.575000px;}
.y17_c00085{bottom:470.175000px;}
.y16_c00085{bottom:501.120000px;}
.y15_c00085{bottom:531.720000px;}
.y14_c00085{bottom:562.680000px;}
.y13_c00085{bottom:593.655000px;}
.y25_c00085{bottom:614.535000px;}
.y24_c00085{bottom:618.120000px;}
.y12_c00085{bottom:624.255000px;}
.y11_c00085{bottom:655.200000px;}
.y10_c00085{bottom:686.175000px;}
.yf_c00085{bottom:717.120000px;}
.ye_c00085{bottom:748.095000px;}
.yd_c00085{bottom:779.040000px;}
.yc_c00085{bottom:809.655000px;}
.yb_c00085{bottom:840.615000px;}
.ya_c00085{bottom:871.560000px;}
.y9_c00085{bottom:901.815000px;}
.y8_c00085{bottom:933.135000px;}
.y7_c00085{bottom:963.720000px;}
.y6_c00085{bottom:994.680000px;}
.y5_c00085{bottom:1025.655000px;}
.y4_c00085{bottom:1056.240000px;}
.y3_c00085{bottom:1087.200000px;}
.y2_c00085{bottom:1118.175000px;}
.y1_c00085{bottom:1192.680000px;}
.h2_c00085{height:60.064453px;}
.h4_c00085{height:66.508887px;}
.h8_c00085{height:67.130859px;}
.h3_c00085{height:68.308594px;}
.ha_c00085{height:68.835938px;}
.h6_c00085{height:70.087500px;}
.h7_c00085{height:71.964844px;}
.h5_c00085{height:72.430664px;}
.h9_c00085{height:80.100000px;}
.h1_c00085{height:1263.000000px;}
.h0_c00085{height:1263.240000px;}
.w1_c00085{width:892.500000px;}
.w0_c00085{width:892.800000px;}
.x0_c00085{left:0.000000px;}
.xd_c00085{left:124.230000px;}
.x1_c00085{left:126.645000px;}
.x9_c00085{left:188.310000px;}
.x8_c00085{left:189.390000px;}
.x5_c00085{left:190.470000px;}
.x2_c00085{left:191.550000px;}
.xb_c00085{left:308.325000px;}
.x6_c00085{left:356.565000px;}
.xc_c00085{left:360.840000px;}
.x7_c00085{left:408.720000px;}
.x3_c00085{left:422.445000px;}
.xe_c00085{left:428.235000px;}
.xa_c00085{left:436.080000px;}
.x4_c00085{left:474.240000px;}
.x10_c00085{left:854.415000px;}
.xf_c00085{left:855.465000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls51_c00085{letter-spacing:-2.165333pt;}
.ls54_c00085{letter-spacing:-2.128000pt;}
.ls47_c00085{letter-spacing:-1.800320pt;}
.ls48_c00085{letter-spacing:-1.373440pt;}
.ls53_c00085{letter-spacing:-0.946560pt;}
.ls4b_c00085{letter-spacing:-0.519680pt;}
.ls4e_c00085{letter-spacing:-0.092800pt;}
.ls4f_c00085{letter-spacing:0.000000pt;}
.ls3c_c00085{letter-spacing:0.284587pt;}
.ls4a_c00085{letter-spacing:0.334080pt;}
.ls42_c00085{letter-spacing:0.346453pt;}
.ls19_c00085{letter-spacing:0.426880pt;}
.ls4d_c00085{letter-spacing:0.439253pt;}
.ls1b_c00085{letter-spacing:0.445440pt;}
.ls23_c00085{letter-spacing:0.451627pt;}
.ls3a_c00085{letter-spacing:0.457813pt;}
.ls35_c00085{letter-spacing:0.482560pt;}
.lsf_c00085{letter-spacing:0.519680pt;}
.ls37_c00085{letter-spacing:0.532053pt;}
.ls15_c00085{letter-spacing:0.587733pt;}
.ls2d_c00085{letter-spacing:0.618667pt;}
.ls8_c00085{letter-spacing:0.624853pt;}
.ls1d_c00085{letter-spacing:0.631040pt;}
.ls26_c00085{letter-spacing:0.661973pt;}
.ls14_c00085{letter-spacing:0.717653pt;}
.lsc_c00085{letter-spacing:0.730027pt;}
.ls4c_c00085{letter-spacing:0.760960pt;}
.ls45_c00085{letter-spacing:0.791893pt;}
.lsb_c00085{letter-spacing:0.804267pt;}
.ls4_c00085{letter-spacing:0.810453pt;}
.ls30_c00085{letter-spacing:0.822827pt;}
.ls49_c00085{letter-spacing:0.841387pt;}
.ls38_c00085{letter-spacing:0.847573pt;}
.ls3d_c00085{letter-spacing:0.853760pt;}
.ls2_c00085{letter-spacing:0.872320pt;}
.ls2b_c00085{letter-spacing:0.884693pt;}
.ls2a_c00085{letter-spacing:0.909440pt;}
.lse_c00085{letter-spacing:0.965120pt;}
.ls46_c00085{letter-spacing:0.995520pt;}
.ls12_c00085{letter-spacing:1.014613pt;}
.ls1e_c00085{letter-spacing:1.064107pt;}
.ls32_c00085{letter-spacing:1.113600pt;}
.ls29_c00085{letter-spacing:1.119787pt;}
.ls3e_c00085{letter-spacing:1.151093pt;}
.ls9_c00085{letter-spacing:1.235467pt;}
.ls39_c00085{letter-spacing:1.247520pt;}
.ls40_c00085{letter-spacing:1.271627pt;}
.ls20_c00085{letter-spacing:1.307787pt;}
.ls31_c00085{letter-spacing:1.330133pt;}
.ls2f_c00085{letter-spacing:1.331893pt;}
.ls50_c00085{letter-spacing:1.398187pt;}
.ls3b_c00085{letter-spacing:1.404213pt;}
.ls0_c00085{letter-spacing:1.416267pt;}
.ls3_c00085{letter-spacing:1.422293pt;}
.lsa_c00085{letter-spacing:1.518720pt;}
.ls7_c00085{letter-spacing:1.560907pt;}
.ls6_c00085{letter-spacing:1.572960pt;}
.ls33_c00085{letter-spacing:1.583787pt;}
.ls11_c00085{letter-spacing:1.591040pt;}
.ls5_c00085{letter-spacing:1.597067pt;}
.ls43_c00085{letter-spacing:1.651307pt;}
.ls18_c00085{letter-spacing:1.657333pt;}
.ls27_c00085{letter-spacing:1.687467pt;}
.ls36_c00085{letter-spacing:1.711573pt;}
.ls34_c00085{letter-spacing:1.741707pt;}
.ls3f_c00085{letter-spacing:1.777867pt;}
.ls16_c00085{letter-spacing:1.783893pt;}
.ls52_c00085{letter-spacing:1.789920pt;}
.ls1_c00085{letter-spacing:1.801973pt;}
.ls2e_c00085{letter-spacing:1.844160pt;}
.ls13_c00085{letter-spacing:1.916480pt;}
.lsd_c00085{letter-spacing:1.946613pt;}
.ls2c_c00085{letter-spacing:1.970720pt;}
.ls17_c00085{letter-spacing:2.012907pt;}
.ls10_c00085{letter-spacing:2.103307pt;}
.ls1f_c00085{letter-spacing:2.151520pt;}
.ls24_c00085{letter-spacing:2.165333pt;}
.ls25_c00085{letter-spacing:2.247947pt;}
.ls22_c00085{letter-spacing:2.326293pt;}
.ls44_c00085{letter-spacing:2.416693pt;}
.ls1a_c00085{letter-spacing:2.434773pt;}
.ls1c_c00085{letter-spacing:2.555307pt;}
.ls21_c00085{letter-spacing:2.705973pt;}
.ls41_c00085{letter-spacing:2.934987pt;}
.ls28_c00085{letter-spacing:3.093333pt;}
.ws0_c00085{word-spacing:0.000000pt;}
._6_c00085{margin-left:-16.898773pt;}
._c_c00085{margin-left:-14.516533pt;}
._b_c00085{margin-left:-6.400640pt;}
._1_c00085{margin-left:-4.496693pt;}
._9_c00085{margin-left:-3.567787pt;}
._7_c00085{margin-left:-2.663787pt;}
._4_c00085{margin-left:-1.699413pt;}
._0_c00085{width:1.536800pt;}
._a_c00085{width:2.681867pt;}
._3_c00085{width:3.887200pt;}
._8_c00085{width:4.783040pt;}
._2_c00085{width:5.994880pt;}
._5_c00085{width:7.398880pt;}
.fs0_c00085{font-size:54.400000pt;}
.fs8_c00085{font-size:58.666667pt;}
.fs4_c00085{font-size:59.733333pt;}
.fs1_c00085{font-size:60.266667pt;}
.fs6_c00085{font-size:60.800000pt;}
.fs5_c00085{font-size:61.333333pt;}
.fs2_c00085{font-size:61.866667pt;}
.fs3_c00085{font-size:65.600000pt;}
.fs7_c00085{font-size:68.266667pt;}
.y0_c00085{bottom:0.000000pt;}
.y23_c00085{bottom:61.133333pt;}
.y22_c00085{bottom:117.440000pt;}
.y21_c00085{bottom:144.333333pt;}
.y20_c00085{bottom:171.213333pt;}
.y1f_c00085{bottom:198.733333pt;}
.y1e_c00085{bottom:226.573333pt;}
.y1d_c00085{bottom:254.093333pt;}
.y1c_c00085{bottom:281.613333pt;}
.y1b_c00085{bottom:308.813333pt;}
.y1a_c00085{bottom:336.013333pt;}
.y19_c00085{bottom:362.893333pt;}
.y18_c00085{bottom:390.733333pt;}
.y17_c00085{bottom:417.933333pt;}
.y16_c00085{bottom:445.440000pt;}
.y15_c00085{bottom:472.640000pt;}
.y14_c00085{bottom:500.160000pt;}
.y13_c00085{bottom:527.693333pt;}
.y25_c00085{bottom:546.253333pt;}
.y24_c00085{bottom:549.440000pt;}
.y12_c00085{bottom:554.893333pt;}
.y11_c00085{bottom:582.400000pt;}
.y10_c00085{bottom:609.933333pt;}
.yf_c00085{bottom:637.440000pt;}
.ye_c00085{bottom:664.973333pt;}
.yd_c00085{bottom:692.480000pt;}
.yc_c00085{bottom:719.693333pt;}
.yb_c00085{bottom:747.213333pt;}
.ya_c00085{bottom:774.720000pt;}
.y9_c00085{bottom:801.613333pt;}
.y8_c00085{bottom:829.453333pt;}
.y7_c00085{bottom:856.640000pt;}
.y6_c00085{bottom:884.160000pt;}
.y5_c00085{bottom:911.693333pt;}
.y4_c00085{bottom:938.880000pt;}
.y3_c00085{bottom:966.400000pt;}
.y2_c00085{bottom:993.933333pt;}
.y1_c00085{bottom:1060.160000pt;}
.h2_c00085{height:53.390625pt;}
.h4_c00085{height:59.119010pt;}
.h8_c00085{height:59.671875pt;}
.h3_c00085{height:60.718750pt;}
.ha_c00085{height:61.187500pt;}
.h6_c00085{height:62.300000pt;}
.h7_c00085{height:63.968750pt;}
.h5_c00085{height:64.382813pt;}
.h9_c00085{height:71.200000pt;}
.h1_c00085{height:1122.666667pt;}
.h0_c00085{height:1122.880000pt;}
.w1_c00085{width:793.333333pt;}
.w0_c00085{width:793.600000pt;}
.x0_c00085{left:0.000000pt;}
.xd_c00085{left:110.426667pt;}
.x1_c00085{left:112.573333pt;}
.x9_c00085{left:167.386667pt;}
.x8_c00085{left:168.346667pt;}
.x5_c00085{left:169.306667pt;}
.x2_c00085{left:170.266667pt;}
.xb_c00085{left:274.066667pt;}
.x6_c00085{left:316.946667pt;}
.xc_c00085{left:320.746667pt;}
.x7_c00085{left:363.306667pt;}
.x3_c00085{left:375.506667pt;}
.xe_c00085{left:380.653333pt;}
.xa_c00085{left:387.626667pt;}
.x4_c00085{left:421.546667pt;}
.x10_c00085{left:759.480000pt;}
.xf_c00085{left:760.413333pt;}
}





/* 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_c00086 {
    display:none;
  }
  .loading-indicator_c00086.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00086 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_c00086 { 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_c00086" -> "#page-container .classname_c00086")
 */
.pf_c00086 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00086 { /* 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_c00086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00086 { /* 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_c00086 { /* 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_c00086 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00086 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00086 {overflow:visible;}
  }
}
.c_c00086 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00086 { /* 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_c00086:after { /* webkit #35443 */
  content: '';
}
.t_c00086:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00086 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 */
}
.__c00086 { /* 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_c00086 { /* info for Javascript */
  display:none;
}
.l_c00086 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00086 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00086 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00086: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_c00086 {
    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_c00086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00086.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_c00086 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00086;src:url('chunks/assets/font_a570faffa0d6754fbf1b3c5c.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.284668;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_c00086;src:url('chunks/assets/font_25514c2745b6667a4818b91f.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.284180;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_c00086;src:url('chunks/assets/font_0219c670e8455ada10e00875.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;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:ff4_c00086;src:url('chunks/assets/font_7dba7ba0f0ca61b7a0f63067.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;line-height:0.666000;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_c00086{transform:matrix(0.127706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127706,0.000000,0.000000,0.250000,0,0);}
.m0_c00086{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_c00086{transform:matrix(0.273870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273870,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls55_c00086{letter-spacing:-2.407860px;}
.ls58_c00086{letter-spacing:-1.776060px;}
.ls46_c00086{letter-spacing:-1.446120px;}
.ls48_c00086{letter-spacing:-0.968760px;}
.ls47_c00086{letter-spacing:-0.491400px;}
.ls4a_c00086{letter-spacing:-0.210600px;}
.ls4d_c00086{letter-spacing:-0.007020px;}
.ls4b_c00086{letter-spacing:0.000000px;}
.ls52_c00086{letter-spacing:0.161460px;}
.ls49_c00086{letter-spacing:0.217620px;}
.ls14_c00086{letter-spacing:0.400140px;}
.ls6_c00086{letter-spacing:0.407160px;}
.ls39_c00086{letter-spacing:0.442260px;}
.ls4e_c00086{letter-spacing:0.470340px;}
.ls54_c00086{letter-spacing:0.498420px;}
.ls34_c00086{letter-spacing:0.568620px;}
.ls53_c00086{letter-spacing:0.575640px;}
.ls2d_c00086{letter-spacing:0.596700px;}
.ls4f_c00086{letter-spacing:0.621180px;}
.ls2b_c00086{letter-spacing:0.652860px;}
.ls18_c00086{letter-spacing:0.666900px;}
.ls2_c00086{letter-spacing:0.694980px;}
.ls10_c00086{letter-spacing:0.730080px;}
.ls40_c00086{letter-spacing:0.765180px;}
.ls1c_c00086{letter-spacing:0.779220px;}
.ls1d_c00086{letter-spacing:0.800280px;}
.ls17_c00086{letter-spacing:0.807300px;}
.ls38_c00086{letter-spacing:0.821340px;}
.ls3b_c00086{letter-spacing:0.856440px;}
.ls1e_c00086{letter-spacing:0.876960px;}
.ls4_c00086{letter-spacing:0.877500px;}
.ls22_c00086{letter-spacing:0.884520px;}
.ls44_c00086{letter-spacing:0.891540px;}
.lse_c00086{letter-spacing:0.898560px;}
.ls1b_c00086{letter-spacing:0.912600px;}
.ls33_c00086{letter-spacing:0.926640px;}
.ls7_c00086{letter-spacing:0.946560px;}
.ls4c_c00086{letter-spacing:0.947700px;}
.ls25_c00086{letter-spacing:1.024920px;}
.ls28_c00086{letter-spacing:1.045980px;}
.ls31_c00086{letter-spacing:1.067040px;}
.ls30_c00086{letter-spacing:1.109160px;}
.ls0_c00086{letter-spacing:1.113600px;}
.ls13_c00086{letter-spacing:1.137240px;}
.lsc_c00086{letter-spacing:1.148400px;}
.ls3_c00086{letter-spacing:1.183200px;}
.ls15_c00086{letter-spacing:1.197120px;}
.ls3e_c00086{letter-spacing:1.235520px;}
.ls8_c00086{letter-spacing:1.245840px;}
.ls42_c00086{letter-spacing:1.256580px;}
.ls2a_c00086{letter-spacing:1.259760px;}
.ls50_c00086{letter-spacing:1.284660px;}
.ls32_c00086{letter-spacing:1.301520px;}
.lsa_c00086{letter-spacing:1.308480px;}
.ls16_c00086{letter-spacing:1.315440px;}
.ls3d_c00086{letter-spacing:1.343280px;}
.ls1a_c00086{letter-spacing:1.354860px;}
.lsb_c00086{letter-spacing:1.385040px;}
.ls29_c00086{letter-spacing:1.404000px;}
.ls26_c00086{letter-spacing:1.418040px;}
.lsd_c00086{letter-spacing:1.454640px;}
.ls41_c00086{letter-spacing:1.461600px;}
.ls1_c00086{letter-spacing:1.475520px;}
.ls35_c00086{letter-spacing:1.517280px;}
.ls24_c00086{letter-spacing:1.531200px;}
.ls2f_c00086{letter-spacing:1.545120px;}
.ls20_c00086{letter-spacing:1.551420px;}
.ls27_c00086{letter-spacing:1.559040px;}
.ls36_c00086{letter-spacing:1.572960px;}
.ls23_c00086{letter-spacing:1.677360px;}
.ls2c_c00086{letter-spacing:1.684320px;}
.ls19_c00086{letter-spacing:1.726080px;}
.ls3c_c00086{letter-spacing:1.802640px;}
.ls2e_c00086{letter-spacing:1.837440px;}
.ls56_c00086{letter-spacing:1.860300px;}
.ls37_c00086{letter-spacing:1.872240px;}
.ls3f_c00086{letter-spacing:1.893120px;}
.ls43_c00086{letter-spacing:2.310720px;}
.ls57_c00086{letter-spacing:2.345520px;}
.ls9_c00086{letter-spacing:2.401200px;}
.ls3a_c00086{letter-spacing:2.422080px;}
.ls5_c00086{letter-spacing:2.498640px;}
.ls45_c00086{letter-spacing:2.744280px;}
.ls11_c00086{letter-spacing:2.874480px;}
.ls21_c00086{letter-spacing:2.888400px;}
.lsf_c00086{letter-spacing:3.020640px;}
.ls12_c00086{letter-spacing:3.166020px;}
.ls1f_c00086{letter-spacing:3.488940px;}
.ls51_c00086{letter-spacing:3.510000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{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__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:0.000000px;}
._5_c00086{margin-left:-12.661920px;}
._a_c00086{margin-left:-9.726000px;}
._e_c00086{margin-left:-7.523760px;}
._3_c00086{margin-left:-5.995680px;}
._7_c00086{margin-left:-4.592160px;}
._9_c00086{margin-left:-3.326880px;}
._1_c00086{margin-left:-1.375200px;}
._4_c00086{width:1.376400px;}
._6_c00086{width:2.727600px;}
._0_c00086{width:4.284780px;}
._c_c00086{width:5.419080px;}
._2_c00086{width:6.528600px;}
._b_c00086{width:7.820280px;}
._8_c00086{width:8.868480px;}
._d_c00086{width:17.500080px;}
.fc0_c00086{color:transparent;}
.fs5_c00086{font-size:53.280000px;}
.fs0_c00086{font-size:59.400000px;}
.fs3_c00086{font-size:66.600000px;}
.fs6_c00086{font-size:68.400000px;}
.fs1_c00086{font-size:69.600000px;}
.fs2_c00086{font-size:70.200000px;}
.fs4_c00086{font-size:71.400000px;}
.y0_c00086{bottom:0.000000px;}
.y23_c00086{bottom:70.560015px;}
.y22_c00086{bottom:132.844215px;}
.y21_c00086{bottom:162.720015px;}
.y20_c00086{bottom:194.775015px;}
.y1f_c00086{bottom:225.375015px;}
.y1e_c00086{bottom:256.335015px;}
.y1d_c00086{bottom:287.655015px;}
.y1c_c00086{bottom:317.895015px;}
.y1b_c00086{bottom:349.215015px;}
.y1a_c00086{bottom:379.815015px;}
.y19_c00086{bottom:411.135015px;}
.y18_c00086{bottom:441.735015px;}
.y17_c00086{bottom:473.055015px;}
.y16_c00086{bottom:503.655015px;}
.y15_c00086{bottom:533.895015px;}
.y14_c00086{bottom:565.575015px;}
.y13_c00086{bottom:596.520015px;}
.y12_c00086{bottom:627.135015px;}
.y11_c00086{bottom:658.095015px;}
.y10_c00086{bottom:689.055015px;}
.yf_c00086{bottom:720.375015px;}
.ye_c00086{bottom:751.339365px;}
.yd_c00086{bottom:782.280015px;}
.yc_c00086{bottom:813.255015px;}
.yb_c00086{bottom:844.215015px;}
.ya_c00086{bottom:874.800015px;}
.y9_c00086{bottom:906.120015px;}
.y8_c00086{bottom:937.095015px;}
.y7_c00086{bottom:968.055015px;}
.y6_c00086{bottom:998.640015px;}
.y5_c00086{bottom:1029.960015px;}
.y4_c00086{bottom:1060.575015px;}
.y3_c00086{bottom:1091.175015px;}
.y2_c00086{bottom:1122.855015px;}
.y1_c00086{bottom:1198.095015px;}
.h5_c00086{height:35.484480px;}
.h2_c00086{height:58.297852px;}
.h7_c00086{height:68.274609px;}
.h8_c00086{height:68.880661px;}
.h3_c00086{height:68.897461px;}
.h4_c00086{height:70.057795px;}
.h6_c00086{height:71.339063px;}
.h1_c00086{height:1263.000000px;}
.h0_c00086{height:1263.240015px;}
.w1_c00086{width:892.500000px;}
.w0_c00086{width:892.800000px;}
.x0_c00086{left:0.000000px;}
.x6_c00086{left:116.805000px;}
.x3_c00086{left:118.815000px;}
.x1_c00086{left:120.885000px;}
.x7_c00086{left:181.605000px;}
.x4_c00086{left:183.255000px;}
.x2_c00086{left:184.695000px;}
.x5_c00086{left:314.835000px;}
.x8_c00086{left:401.760000px;}
.xa_c00086{left:424.995000px;}
.x9_c00086{left:476.310000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls55_c00086{letter-spacing:-2.140320pt;}
.ls58_c00086{letter-spacing:-1.578720pt;}
.ls46_c00086{letter-spacing:-1.285440pt;}
.ls48_c00086{letter-spacing:-0.861120pt;}
.ls47_c00086{letter-spacing:-0.436800pt;}
.ls4a_c00086{letter-spacing:-0.187200pt;}
.ls4d_c00086{letter-spacing:-0.006240pt;}
.ls4b_c00086{letter-spacing:0.000000pt;}
.ls52_c00086{letter-spacing:0.143520pt;}
.ls49_c00086{letter-spacing:0.193440pt;}
.ls14_c00086{letter-spacing:0.355680pt;}
.ls6_c00086{letter-spacing:0.361920pt;}
.ls39_c00086{letter-spacing:0.393120pt;}
.ls4e_c00086{letter-spacing:0.418080pt;}
.ls54_c00086{letter-spacing:0.443040pt;}
.ls34_c00086{letter-spacing:0.505440pt;}
.ls53_c00086{letter-spacing:0.511680pt;}
.ls2d_c00086{letter-spacing:0.530400pt;}
.ls4f_c00086{letter-spacing:0.552160pt;}
.ls2b_c00086{letter-spacing:0.580320pt;}
.ls18_c00086{letter-spacing:0.592800pt;}
.ls2_c00086{letter-spacing:0.617760pt;}
.ls10_c00086{letter-spacing:0.648960pt;}
.ls40_c00086{letter-spacing:0.680160pt;}
.ls1c_c00086{letter-spacing:0.692640pt;}
.ls1d_c00086{letter-spacing:0.711360pt;}
.ls17_c00086{letter-spacing:0.717600pt;}
.ls38_c00086{letter-spacing:0.730080pt;}
.ls3b_c00086{letter-spacing:0.761280pt;}
.ls1e_c00086{letter-spacing:0.779520pt;}
.ls4_c00086{letter-spacing:0.780000pt;}
.ls22_c00086{letter-spacing:0.786240pt;}
.ls44_c00086{letter-spacing:0.792480pt;}
.lse_c00086{letter-spacing:0.798720pt;}
.ls1b_c00086{letter-spacing:0.811200pt;}
.ls33_c00086{letter-spacing:0.823680pt;}
.ls7_c00086{letter-spacing:0.841387pt;}
.ls4c_c00086{letter-spacing:0.842400pt;}
.ls25_c00086{letter-spacing:0.911040pt;}
.ls28_c00086{letter-spacing:0.929760pt;}
.ls31_c00086{letter-spacing:0.948480pt;}
.ls30_c00086{letter-spacing:0.985920pt;}
.ls0_c00086{letter-spacing:0.989867pt;}
.ls13_c00086{letter-spacing:1.010880pt;}
.lsc_c00086{letter-spacing:1.020800pt;}
.ls3_c00086{letter-spacing:1.051733pt;}
.ls15_c00086{letter-spacing:1.064107pt;}
.ls3e_c00086{letter-spacing:1.098240pt;}
.ls8_c00086{letter-spacing:1.107413pt;}
.ls42_c00086{letter-spacing:1.116960pt;}
.ls2a_c00086{letter-spacing:1.119787pt;}
.ls50_c00086{letter-spacing:1.141920pt;}
.ls32_c00086{letter-spacing:1.156907pt;}
.lsa_c00086{letter-spacing:1.163093pt;}
.ls16_c00086{letter-spacing:1.169280pt;}
.ls3d_c00086{letter-spacing:1.194027pt;}
.ls1a_c00086{letter-spacing:1.204320pt;}
.lsb_c00086{letter-spacing:1.231147pt;}
.ls29_c00086{letter-spacing:1.248000pt;}
.ls26_c00086{letter-spacing:1.260480pt;}
.lsd_c00086{letter-spacing:1.293013pt;}
.ls41_c00086{letter-spacing:1.299200pt;}
.ls1_c00086{letter-spacing:1.311573pt;}
.ls35_c00086{letter-spacing:1.348693pt;}
.ls24_c00086{letter-spacing:1.361067pt;}
.ls2f_c00086{letter-spacing:1.373440pt;}
.ls20_c00086{letter-spacing:1.379040pt;}
.ls27_c00086{letter-spacing:1.385813pt;}
.ls36_c00086{letter-spacing:1.398187pt;}
.ls23_c00086{letter-spacing:1.490987pt;}
.ls2c_c00086{letter-spacing:1.497173pt;}
.ls19_c00086{letter-spacing:1.534293pt;}
.ls3c_c00086{letter-spacing:1.602347pt;}
.ls2e_c00086{letter-spacing:1.633280pt;}
.ls56_c00086{letter-spacing:1.653600pt;}
.ls37_c00086{letter-spacing:1.664213pt;}
.ls3f_c00086{letter-spacing:1.682773pt;}
.ls43_c00086{letter-spacing:2.053973pt;}
.ls57_c00086{letter-spacing:2.084907pt;}
.ls9_c00086{letter-spacing:2.134400pt;}
.ls3a_c00086{letter-spacing:2.152960pt;}
.ls5_c00086{letter-spacing:2.221013pt;}
.ls45_c00086{letter-spacing:2.439360pt;}
.ls11_c00086{letter-spacing:2.555093pt;}
.ls21_c00086{letter-spacing:2.567467pt;}
.lsf_c00086{letter-spacing:2.685013pt;}
.ls12_c00086{letter-spacing:2.814240pt;}
.ls1f_c00086{letter-spacing:3.101280pt;}
.ls51_c00086{letter-spacing:3.120000pt;}
.ws0_c00086{word-spacing:0.000000pt;}
._5_c00086{margin-left:-11.255040pt;}
._a_c00086{margin-left:-8.645333pt;}
._e_c00086{margin-left:-6.687787pt;}
._3_c00086{margin-left:-5.329493pt;}
._7_c00086{margin-left:-4.081920pt;}
._9_c00086{margin-left:-2.957227pt;}
._1_c00086{margin-left:-1.222400pt;}
._4_c00086{width:1.223467pt;}
._6_c00086{width:2.424533pt;}
._0_c00086{width:3.808693pt;}
._c_c00086{width:4.816960pt;}
._2_c00086{width:5.803200pt;}
._b_c00086{width:6.951360pt;}
._8_c00086{width:7.883093pt;}
._d_c00086{width:15.555627pt;}
.fs5_c00086{font-size:47.360000pt;}
.fs0_c00086{font-size:52.800000pt;}
.fs3_c00086{font-size:59.200000pt;}
.fs6_c00086{font-size:60.800000pt;}
.fs1_c00086{font-size:61.866667pt;}
.fs2_c00086{font-size:62.400000pt;}
.fs4_c00086{font-size:63.466667pt;}
.y0_c00086{bottom:0.000000pt;}
.y23_c00086{bottom:62.720013pt;}
.y22_c00086{bottom:118.083747pt;}
.y21_c00086{bottom:144.640013pt;}
.y20_c00086{bottom:173.133347pt;}
.y1f_c00086{bottom:200.333347pt;}
.y1e_c00086{bottom:227.853347pt;}
.y1d_c00086{bottom:255.693347pt;}
.y1c_c00086{bottom:282.573347pt;}
.y1b_c00086{bottom:310.413347pt;}
.y1a_c00086{bottom:337.613347pt;}
.y19_c00086{bottom:365.453347pt;}
.y18_c00086{bottom:392.653347pt;}
.y17_c00086{bottom:420.493347pt;}
.y16_c00086{bottom:447.693347pt;}
.y15_c00086{bottom:474.573347pt;}
.y14_c00086{bottom:502.733347pt;}
.y13_c00086{bottom:530.240013pt;}
.y12_c00086{bottom:557.453347pt;}
.y11_c00086{bottom:584.973347pt;}
.y10_c00086{bottom:612.493347pt;}
.yf_c00086{bottom:640.333347pt;}
.ye_c00086{bottom:667.857213pt;}
.yd_c00086{bottom:695.360013pt;}
.yc_c00086{bottom:722.893347pt;}
.yb_c00086{bottom:750.413347pt;}
.ya_c00086{bottom:777.600013pt;}
.y9_c00086{bottom:805.440013pt;}
.y8_c00086{bottom:832.973347pt;}
.y7_c00086{bottom:860.493347pt;}
.y6_c00086{bottom:887.680013pt;}
.y5_c00086{bottom:915.520013pt;}
.y4_c00086{bottom:942.733347pt;}
.y3_c00086{bottom:969.933347pt;}
.y2_c00086{bottom:998.093347pt;}
.y1_c00086{bottom:1064.973347pt;}
.h5_c00086{height:31.541760pt;}
.h2_c00086{height:51.820312pt;}
.h7_c00086{height:60.688542pt;}
.h8_c00086{height:61.227254pt;}
.h3_c00086{height:61.242187pt;}
.h4_c00086{height:62.273596pt;}
.h6_c00086{height:63.412500pt;}
.h1_c00086{height:1122.666667pt;}
.h0_c00086{height:1122.880013pt;}
.w1_c00086{width:793.333333pt;}
.w0_c00086{width:793.600000pt;}
.x0_c00086{left:0.000000pt;}
.x6_c00086{left:103.826667pt;}
.x3_c00086{left:105.613333pt;}
.x1_c00086{left:107.453333pt;}
.x7_c00086{left:161.426667pt;}
.x4_c00086{left:162.893333pt;}
.x2_c00086{left:164.173333pt;}
.x5_c00086{left:279.853333pt;}
.x8_c00086{left:357.120000pt;}
.xa_c00086{left:377.773333pt;}
.x9_c00086{left:423.386667pt;}
}





/* 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_c00087 {
    display:none;
  }
  .loading-indicator_c00087.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00087 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_c00087 { 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_c00087" -> "#page-container .classname_c00087")
 */
.pf_c00087 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00087 { /* 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_c00087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00087 { /* 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_c00087 { /* 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_c00087 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00087 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00087 {overflow:visible;}
  }
}
.c_c00087 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00087 { /* 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_c00087:after { /* webkit #35443 */
  content: '';
}
.t_c00087:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00087 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 */
}
.__c00087 { /* 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_c00087 { /* info for Javascript */
  display:none;
}
.l_c00087 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00087 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00087 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00087: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_c00087 {
    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_c00087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00087.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_c00087 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00087;src:url('chunks/assets/font_c2d00a9a81847e4d7b5c02b2.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.284668;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_c00087;src:url('chunks/assets/font_462de41cb6f98e318004a523.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.284180;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_c00087;src:url('chunks/assets/font_90bfefaa3054d0c0b85e6c9a.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;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;}
.m1_c00087{transform:matrix(0.245106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245106,0.000000,0.000000,0.250000,0,0);}
.m2_c00087{transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);}
.m0_c00087{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);}
.v0_c00087{vertical-align:0.000000px;}
.ls3d_c00087{letter-spacing:-2.436000px;}
.ls46_c00087{letter-spacing:-2.025360px;}
.ls43_c00087{letter-spacing:-1.545120px;}
.ls4a_c00087{letter-spacing:-1.301520px;}
.ls41_c00087{letter-spacing:-1.064880px;}
.ls47_c00087{letter-spacing:-0.598560px;}
.ls3c_c00087{letter-spacing:-0.584640px;}
.ls4b_c00087{letter-spacing:-0.338580px;}
.ls44_c00087{letter-spacing:-0.104400px;}
.ls3f_c00087{letter-spacing:0.000000px;}
.ls32_c00087{letter-spacing:0.104400px;}
.ls19_c00087{letter-spacing:0.292320px;}
.ls3e_c00087{letter-spacing:0.375840px;}
.ls13_c00087{letter-spacing:0.389760px;}
.ls48_c00087{letter-spacing:0.494160px;}
.ls11_c00087{letter-spacing:0.515040px;}
.ls1d_c00087{letter-spacing:0.528960px;}
.ls42_c00087{letter-spacing:0.584640px;}
.ls20_c00087{letter-spacing:0.633360px;}
.ls7_c00087{letter-spacing:0.647280px;}
.ls2a_c00087{letter-spacing:0.668160px;}
.ls1_c00087{letter-spacing:0.682080px;}
.ls2b_c00087{letter-spacing:0.702960px;}
.ls22_c00087{letter-spacing:0.723840px;}
.ls36_c00087{letter-spacing:0.751680px;}
.lsf_c00087{letter-spacing:0.807360px;}
.ls26_c00087{letter-spacing:0.814320px;}
.ls23_c00087{letter-spacing:0.828240px;}
.ls40_c00087{letter-spacing:0.856080px;}
.ls28_c00087{letter-spacing:0.863040px;}
.ls29_c00087{letter-spacing:0.883920px;}
.lsc_c00087{letter-spacing:0.890880px;}
.ls30_c00087{letter-spacing:0.911760px;}
.lsd_c00087{letter-spacing:0.925680px;}
.ls1c_c00087{letter-spacing:0.939600px;}
.ls31_c00087{letter-spacing:0.946560px;}
.lsa_c00087{letter-spacing:0.953520px;}
.ls16_c00087{letter-spacing:0.988320px;}
.ls17_c00087{letter-spacing:1.030080px;}
.ls1b_c00087{letter-spacing:1.044000px;}
.ls38_c00087{letter-spacing:1.050960px;}
.ls34_c00087{letter-spacing:1.057920px;}
.ls2d_c00087{letter-spacing:1.078800px;}
.ls24_c00087{letter-spacing:1.099680px;}
.ls39_c00087{letter-spacing:1.155360px;}
.ls15_c00087{letter-spacing:1.183200px;}
.ls1e_c00087{letter-spacing:1.190160px;}
.ls49_c00087{letter-spacing:1.211040px;}
.ls21_c00087{letter-spacing:1.218000px;}
.ls5_c00087{letter-spacing:1.259760px;}
.ls9_c00087{letter-spacing:1.266720px;}
.ls27_c00087{letter-spacing:1.287600px;}
.ls18_c00087{letter-spacing:1.315440px;}
.ls6_c00087{letter-spacing:1.329360px;}
.ls0_c00087{letter-spacing:1.343280px;}
.ls2e_c00087{letter-spacing:1.357200px;}
.ls2f_c00087{letter-spacing:1.378080px;}
.ls4_c00087{letter-spacing:1.398960px;}
.ls2c_c00087{letter-spacing:1.426800px;}
.lsb_c00087{letter-spacing:1.440720px;}
.ls35_c00087{letter-spacing:1.517280px;}
.ls1a_c00087{letter-spacing:1.538160px;}
.ls1f_c00087{letter-spacing:1.566000px;}
.ls2_c00087{letter-spacing:1.579920px;}
.lse_c00087{letter-spacing:1.621680px;}
.ls3a_c00087{letter-spacing:1.628640px;}
.ls3_c00087{letter-spacing:1.642560px;}
.ls10_c00087{letter-spacing:1.914000px;}
.ls37_c00087{letter-spacing:1.969680px;}
.ls12_c00087{letter-spacing:2.081040px;}
.ls14_c00087{letter-spacing:2.171520px;}
.ls3b_c00087{letter-spacing:2.423520px;}
.ls8_c00087{letter-spacing:2.484720px;}
.ls33_c00087{letter-spacing:2.902320px;}
.ls25_c00087{letter-spacing:3.257280px;}
.ls45_c00087{letter-spacing:3.319920px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{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__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00087{word-spacing:0.000000px;}
._2_c00087{margin-left:-8.143200px;}
._6_c00087{margin-left:-5.428800px;}
._3_c00087{margin-left:-2.714400px;}
._4_c00087{margin-left:-1.447680px;}
._9_c00087{width:1.078800px;}
._5_c00087{width:2.366400px;}
._0_c00087{width:4.454400px;}
._1_c00087{width:6.282240px;}
._7_c00087{width:7.607280px;}
._8_c00087{width:11.463840px;}
.fc0_c00087{color:transparent;}
.fs0_c00087{font-size:59.400000px;}
.fs3_c00087{font-size:67.200000px;}
.fs5_c00087{font-size:68.400000px;}
.fs2_c00087{font-size:69.000000px;}
.fs1_c00087{font-size:69.600000px;}
.fs4_c00087{font-size:70.200000px;}
.y0_c00087{bottom:0.000000px;}
.y25_c00087{bottom:68.055015px;}
.y24_c00087{bottom:132.120015px;}
.y23_c00087{bottom:163.076415px;}
.y22_c00087{bottom:193.335015px;}
.y21_c00087{bottom:224.664615px;}
.y20_c00087{bottom:255.619215px;}
.y1f_c00087{bottom:286.573815px;}
.y1e_c00087{bottom:317.180415px;}
.y1d_c00087{bottom:348.117615px;}
.y1c_c00087{bottom:378.376215px;}
.y1b_c00087{bottom:408.600015px;}
.y1a_c00087{bottom:439.933815px;}
.y19_c00087{bottom:470.905815px;}
.y18_c00087{bottom:501.843015px;}
.y17_c00087{bottom:532.815015px;}
.y16_c00087{bottom:563.055015px;}
.y15_c00087{bottom:594.379215px;}
.y14_c00087{bottom:625.333815px;}
.y13_c00087{bottom:655.923015px;}
.y12_c00087{bottom:686.895015px;}
.y11_c00087{bottom:717.480015px;}
.y10_c00087{bottom:748.456215px;}
.yf_c00087{bottom:779.410815px;}
.ye_c00087{bottom:809.997615px;}
.yd_c00087{bottom:841.340415px;}
.yc_c00087{bottom:872.296215px;}
.yb_c00087{bottom:902.885415px;}
.ya_c00087{bottom:933.840015px;}
.y8_c00087{bottom:964.090815px;}
.y9_c00087{bottom:964.095015px;}
.y7_c00087{bottom:994.688415px;}
.y6_c00087{bottom:1025.295015px;}
.y5_c00087{bottom:1055.873415px;}
.y4_c00087{bottom:1086.480015px;}
.y3_c00087{bottom:1086.483015px;}
.y2_c00087{bottom:1117.455015px;}
.y1_c00087{bottom:1192.680015px;}
.h2_c00087{height:58.297852px;}
.h8_c00087{height:68.274609px;}
.h4_c00087{height:68.274994px;}
.h6_c00087{height:68.286994px;}
.h5_c00087{height:68.303794px;}
.h3_c00087{height:68.308594px;}
.h9_c00087{height:70.087500px;}
.ha_c00087{height:71.339063px;}
.h7_c00087{height:71.974444px;}
.h1_c00087{height:1263.000000px;}
.h0_c00087{height:1263.240015px;}
.w1_c00087{width:892.500000px;}
.w0_c00087{width:892.800015px;}
.x0_c00087{left:0.000000px;}
.x9_c00087{left:118.950015px;}
.x7_c00087{left:121.110015px;}
.x1_c00087{left:122.685015px;}
.x8_c00087{left:184.466415px;}
.x6_c00087{left:186.129015px;}
.x2_c00087{left:187.201815px;}
.xa_c00087{left:424.995015px;}
.x3_c00087{left:446.220015px;}
.x5_c00087{left:469.920015px;}
.x4_c00087{left:528.240015px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls3d_c00087{letter-spacing:-2.165333pt;}
.ls46_c00087{letter-spacing:-1.800320pt;}
.ls43_c00087{letter-spacing:-1.373440pt;}
.ls4a_c00087{letter-spacing:-1.156907pt;}
.ls41_c00087{letter-spacing:-0.946560pt;}
.ls47_c00087{letter-spacing:-0.532053pt;}
.ls3c_c00087{letter-spacing:-0.519680pt;}
.ls4b_c00087{letter-spacing:-0.300960pt;}
.ls44_c00087{letter-spacing:-0.092800pt;}
.ls3f_c00087{letter-spacing:0.000000pt;}
.ls32_c00087{letter-spacing:0.092800pt;}
.ls19_c00087{letter-spacing:0.259840pt;}
.ls3e_c00087{letter-spacing:0.334080pt;}
.ls13_c00087{letter-spacing:0.346453pt;}
.ls48_c00087{letter-spacing:0.439253pt;}
.ls11_c00087{letter-spacing:0.457813pt;}
.ls1d_c00087{letter-spacing:0.470187pt;}
.ls42_c00087{letter-spacing:0.519680pt;}
.ls20_c00087{letter-spacing:0.562987pt;}
.ls7_c00087{letter-spacing:0.575360pt;}
.ls2a_c00087{letter-spacing:0.593920pt;}
.ls1_c00087{letter-spacing:0.606293pt;}
.ls2b_c00087{letter-spacing:0.624853pt;}
.ls22_c00087{letter-spacing:0.643413pt;}
.ls36_c00087{letter-spacing:0.668160pt;}
.lsf_c00087{letter-spacing:0.717653pt;}
.ls26_c00087{letter-spacing:0.723840pt;}
.ls23_c00087{letter-spacing:0.736213pt;}
.ls40_c00087{letter-spacing:0.760960pt;}
.ls28_c00087{letter-spacing:0.767147pt;}
.ls29_c00087{letter-spacing:0.785707pt;}
.lsc_c00087{letter-spacing:0.791893pt;}
.ls30_c00087{letter-spacing:0.810453pt;}
.lsd_c00087{letter-spacing:0.822827pt;}
.ls1c_c00087{letter-spacing:0.835200pt;}
.ls31_c00087{letter-spacing:0.841387pt;}
.lsa_c00087{letter-spacing:0.847573pt;}
.ls16_c00087{letter-spacing:0.878507pt;}
.ls17_c00087{letter-spacing:0.915627pt;}
.ls1b_c00087{letter-spacing:0.928000pt;}
.ls38_c00087{letter-spacing:0.934187pt;}
.ls34_c00087{letter-spacing:0.940373pt;}
.ls2d_c00087{letter-spacing:0.958933pt;}
.ls24_c00087{letter-spacing:0.977493pt;}
.ls39_c00087{letter-spacing:1.026987pt;}
.ls15_c00087{letter-spacing:1.051733pt;}
.ls1e_c00087{letter-spacing:1.057920pt;}
.ls49_c00087{letter-spacing:1.076480pt;}
.ls21_c00087{letter-spacing:1.082667pt;}
.ls5_c00087{letter-spacing:1.119787pt;}
.ls9_c00087{letter-spacing:1.125973pt;}
.ls27_c00087{letter-spacing:1.144533pt;}
.ls18_c00087{letter-spacing:1.169280pt;}
.ls6_c00087{letter-spacing:1.181653pt;}
.ls0_c00087{letter-spacing:1.194027pt;}
.ls2e_c00087{letter-spacing:1.206400pt;}
.ls2f_c00087{letter-spacing:1.224960pt;}
.ls4_c00087{letter-spacing:1.243520pt;}
.ls2c_c00087{letter-spacing:1.268267pt;}
.lsb_c00087{letter-spacing:1.280640pt;}
.ls35_c00087{letter-spacing:1.348693pt;}
.ls1a_c00087{letter-spacing:1.367253pt;}
.ls1f_c00087{letter-spacing:1.392000pt;}
.ls2_c00087{letter-spacing:1.404373pt;}
.lse_c00087{letter-spacing:1.441493pt;}
.ls3a_c00087{letter-spacing:1.447680pt;}
.ls3_c00087{letter-spacing:1.460053pt;}
.ls10_c00087{letter-spacing:1.701333pt;}
.ls37_c00087{letter-spacing:1.750827pt;}
.ls12_c00087{letter-spacing:1.849813pt;}
.ls14_c00087{letter-spacing:1.930240pt;}
.ls3b_c00087{letter-spacing:2.154240pt;}
.ls8_c00087{letter-spacing:2.208640pt;}
.ls33_c00087{letter-spacing:2.579840pt;}
.ls25_c00087{letter-spacing:2.895360pt;}
.ls45_c00087{letter-spacing:2.951040pt;}
.ws0_c00087{word-spacing:0.000000pt;}
._2_c00087{margin-left:-7.238400pt;}
._6_c00087{margin-left:-4.825600pt;}
._3_c00087{margin-left:-2.412800pt;}
._4_c00087{margin-left:-1.286827pt;}
._9_c00087{width:0.958933pt;}
._5_c00087{width:2.103467pt;}
._0_c00087{width:3.959467pt;}
._1_c00087{width:5.584213pt;}
._7_c00087{width:6.762027pt;}
._8_c00087{width:10.190080pt;}
.fs0_c00087{font-size:52.800000pt;}
.fs3_c00087{font-size:59.733333pt;}
.fs5_c00087{font-size:60.800000pt;}
.fs2_c00087{font-size:61.333333pt;}
.fs1_c00087{font-size:61.866667pt;}
.fs4_c00087{font-size:62.400000pt;}
.y0_c00087{bottom:0.000000pt;}
.y25_c00087{bottom:60.493347pt;}
.y24_c00087{bottom:117.440013pt;}
.y23_c00087{bottom:144.956813pt;}
.y22_c00087{bottom:171.853347pt;}
.y21_c00087{bottom:199.701880pt;}
.y20_c00087{bottom:227.217080pt;}
.y1f_c00087{bottom:254.732280pt;}
.y1e_c00087{bottom:281.938147pt;}
.y1d_c00087{bottom:309.437880pt;}
.y1c_c00087{bottom:336.334413pt;}
.y1b_c00087{bottom:363.200013pt;}
.y1a_c00087{bottom:391.052280pt;}
.y19_c00087{bottom:418.582947pt;}
.y18_c00087{bottom:446.082680pt;}
.y17_c00087{bottom:473.613347pt;}
.y16_c00087{bottom:500.493347pt;}
.y15_c00087{bottom:528.337080pt;}
.y14_c00087{bottom:555.852280pt;}
.y13_c00087{bottom:583.042680pt;}
.y12_c00087{bottom:610.573347pt;}
.y11_c00087{bottom:637.760013pt;}
.y10_c00087{bottom:665.294413pt;}
.yf_c00087{bottom:692.809613pt;}
.ye_c00087{bottom:719.997880pt;}
.yd_c00087{bottom:747.858147pt;}
.yc_c00087{bottom:775.374413pt;}
.yb_c00087{bottom:802.564813pt;}
.ya_c00087{bottom:830.080013pt;}
.y8_c00087{bottom:856.969613pt;}
.y9_c00087{bottom:856.973347pt;}
.y7_c00087{bottom:884.167480pt;}
.y6_c00087{bottom:911.373347pt;}
.y5_c00087{bottom:938.554147pt;}
.y4_c00087{bottom:965.760013pt;}
.y3_c00087{bottom:965.762680pt;}
.y2_c00087{bottom:993.293347pt;}
.y1_c00087{bottom:1060.160013pt;}
.h2_c00087{height:51.820312pt;}
.h8_c00087{height:60.688542pt;}
.h4_c00087{height:60.688883pt;}
.h6_c00087{height:60.699550pt;}
.h5_c00087{height:60.714483pt;}
.h3_c00087{height:60.718750pt;}
.h9_c00087{height:62.300000pt;}
.ha_c00087{height:63.412500pt;}
.h7_c00087{height:63.977283pt;}
.h1_c00087{height:1122.666667pt;}
.h0_c00087{height:1122.880013pt;}
.w1_c00087{width:793.333333pt;}
.w0_c00087{width:793.600013pt;}
.x0_c00087{left:0.000000pt;}
.x9_c00087{left:105.733347pt;}
.x7_c00087{left:107.653347pt;}
.x1_c00087{left:109.053347pt;}
.x8_c00087{left:163.970147pt;}
.x6_c00087{left:165.448013pt;}
.x2_c00087{left:166.401613pt;}
.xa_c00087{left:377.773347pt;}
.x3_c00087{left:396.640013pt;}
.x5_c00087{left:417.706680pt;}
.x4_c00087{left:469.546680pt;}
}





/* 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_c00088 {
    display:none;
  }
  .loading-indicator_c00088.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00088 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_c00088 { 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_c00088" -> "#page-container .classname_c00088")
 */
.pf_c00088 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00088 { /* 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_c00088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00088 { /* 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_c00088 { /* 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_c00088 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00088 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00088 {overflow:visible;}
  }
}
.c_c00088 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00088 { /* 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_c00088:after { /* webkit #35443 */
  content: '';
}
.t_c00088:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00088 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 */
}
.__c00088 { /* 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_c00088 { /* info for Javascript */
  display:none;
}
.l_c00088 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00088 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00088 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00088: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_c00088 {
    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_c00088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00088.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_c00088 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00088;src:url('chunks/assets/font_028b53cbe30595926367b3c2.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.284668;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_c00088;src:url('chunks/assets/font_f724a61eaff7a0e33afedd91.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.284180;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_c00088;src:url('chunks/assets/font_6e260876ed4cbe8c01b4567e.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;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:ff4_c00088;src:url('chunks/assets/font_0219c670e8455ada10e00875.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;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;}
.m3_c00088{transform:matrix(0.238977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238977,0.000000,0.000000,0.250000,0,0);}
.m0_c00088{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);}
.m2_c00088{transform:matrix(0.252891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252891,0.000000,0.000000,0.250000,0,0);}
.m1_c00088{transform:matrix(0.257824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257824,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls54_c00088{letter-spacing:-2.407860px;}
.ls58_c00088{letter-spacing:-2.268000px;}
.ls48_c00088{letter-spacing:-1.930500px;}
.ls4d_c00088{letter-spacing:-1.881240px;}
.ls4c_c00088{letter-spacing:-1.446120px;}
.ls4f_c00088{letter-spacing:-1.125540px;}
.ls56_c00088{letter-spacing:-1.017900px;}
.ls45_c00088{letter-spacing:-0.968760px;}
.ls55_c00088{letter-spacing:-0.491400px;}
.ls49_c00088{letter-spacing:-0.007020px;}
.ls46_c00088{letter-spacing:0.000000px;}
.ls1f_c00088{letter-spacing:0.343980px;}
.ls18_c00088{letter-spacing:0.365700px;}
.ls2_c00088{letter-spacing:0.407160px;}
.ls47_c00088{letter-spacing:0.470340px;}
.ls35_c00088{letter-spacing:0.491400px;}
.lsd_c00088{letter-spacing:0.547560px;}
.lsf_c00088{letter-spacing:0.554580px;}
.ls4e_c00088{letter-spacing:0.586500px;}
.ls12_c00088{letter-spacing:0.687960px;}
.ls6_c00088{letter-spacing:0.723060px;}
.ls32_c00088{letter-spacing:0.730080px;}
.ls1b_c00088{letter-spacing:0.758160px;}
.ls2a_c00088{letter-spacing:0.786240px;}
.ls3a_c00088{letter-spacing:0.800280px;}
.ls57_c00088{letter-spacing:0.807300px;}
.ls4b_c00088{letter-spacing:0.856440px;}
.ls1e_c00088{letter-spacing:0.877500px;}
.ls20_c00088{letter-spacing:0.912600px;}
.ls37_c00088{letter-spacing:0.919620px;}
.ls10_c00088{letter-spacing:0.968760px;}
.ls3d_c00088{letter-spacing:0.982800px;}
.ls41_c00088{letter-spacing:1.003860px;}
.lsa_c00088{letter-spacing:1.024920px;}
.ls23_c00088{letter-spacing:1.031940px;}
.ls28_c00088{letter-spacing:1.045980px;}
.ls24_c00088{letter-spacing:1.109160px;}
.ls15_c00088{letter-spacing:1.165320px;}
.ls2c_c00088{letter-spacing:1.172340px;}
.ls38_c00088{letter-spacing:1.235520px;}
.ls5_c00088{letter-spacing:1.256580px;}
.ls44_c00088{letter-spacing:1.285200px;}
.ls43_c00088{letter-spacing:1.311000px;}
.ls0_c00088{letter-spacing:1.317900px;}
.ls21_c00088{letter-spacing:1.354860px;}
.ls8_c00088{letter-spacing:1.380000px;}
.ls3f_c00088{letter-spacing:1.407600px;}
.ls9_c00088{letter-spacing:1.453140px;}
.ls22_c00088{letter-spacing:1.462800px;}
.ls3_c00088{letter-spacing:1.483500px;}
.ls2e_c00088{letter-spacing:1.511100px;}
.ls40_c00088{letter-spacing:1.531800px;}
.ls31_c00088{letter-spacing:1.552500px;}
.ls3b_c00088{letter-spacing:1.587000px;}
.ls11_c00088{letter-spacing:1.600800px;}
.ls42_c00088{letter-spacing:1.614600px;}
.ls7_c00088{letter-spacing:1.642200px;}
.ls34_c00088{letter-spacing:1.662900px;}
.ls3e_c00088{letter-spacing:1.686720px;}
.ls1_c00088{letter-spacing:1.690500px;}
.ls17_c00088{letter-spacing:1.697400px;}
.lsc_c00088{letter-spacing:1.704300px;}
.lse_c00088{letter-spacing:1.718100px;}
.ls14_c00088{letter-spacing:1.731900px;}
.ls30_c00088{letter-spacing:1.780200px;}
.ls13_c00088{letter-spacing:1.821600px;}
.ls50_c00088{letter-spacing:1.824840px;}
.ls2d_c00088{letter-spacing:1.835400px;}
.ls1c_c00088{letter-spacing:1.842300px;}
.ls26_c00088{letter-spacing:1.869900px;}
.ls4_c00088{letter-spacing:1.987200px;}
.ls36_c00088{letter-spacing:2.007900px;}
.ls27_c00088{letter-spacing:2.028600px;}
.lsb_c00088{letter-spacing:2.304600px;}
.ls29_c00088{letter-spacing:2.311500px;}
.ls25_c00088{letter-spacing:2.380500px;}
.ls3c_c00088{letter-spacing:2.435700px;}
.ls1d_c00088{letter-spacing:2.442600px;}
.ls33_c00088{letter-spacing:2.663400px;}
.ls2b_c00088{letter-spacing:2.681640px;}
.ls2f_c00088{letter-spacing:2.822100px;}
.ls19_c00088{letter-spacing:2.843820px;}
.ls51_c00088{letter-spacing:3.174000px;}
.ls39_c00088{letter-spacing:3.180900px;}
.ls16_c00088{letter-spacing:3.256800px;}
.ls1a_c00088{letter-spacing:3.387900px;}
.ls52_c00088{letter-spacing:3.394800px;}
.ls4a_c00088{letter-spacing:3.450000px;}
.ls53_c00088{letter-spacing:3.510000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{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__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00088{word-spacing:0.000000px;}
._b_c00088{margin-left:-13.075500px;}
._c_c00088{margin-left:-9.812100px;}
._7_c00088{margin-left:-7.480800px;}
._3_c00088{margin-left:-5.425800px;}
._a_c00088{margin-left:-4.381500px;}
._6_c00088{margin-left:-3.062820px;}
._4_c00088{margin-left:-1.986660px;}
._2_c00088{width:1.000500px;}
._0_c00088{width:2.615100px;}
._8_c00088{width:4.026540px;}
._1_c00088{width:5.652180px;}
._5_c00088{width:7.563900px;}
._9_c00088{width:8.564400px;}
.fc0_c00088{color:transparent;}
.fs0_c00088{font-size:61.200000px;}
.fs6_c00088{font-size:64.800000px;}
.fs4_c00088{font-size:66.600000px;}
.fs5_c00088{font-size:67.200000px;}
.fs1_c00088{font-size:69.000000px;}
.fs2_c00088{font-size:70.200000px;}
.fs3_c00088{font-size:73.200000px;}
.y0_c00088{bottom:0.000000px;}
.y23_c00088{bottom:73.455000px;}
.y22_c00088{bottom:135.360000px;}
.y21_c00088{bottom:166.695000px;}
.y20_c00088{bottom:197.295000px;}
.y1f_c00088{bottom:228.255000px;}
.y1e_c00088{bottom:258.855000px;}
.y1d_c00088{bottom:290.520000px;}
.y1c_c00088{bottom:320.775000px;}
.y1b_c00088{bottom:351.735000px;}
.y1a_c00088{bottom:382.695000px;}
.y19_c00088{bottom:414.000000px;}
.y18_c00088{bottom:444.600000px;}
.y17_c00088{bottom:475.935000px;}
.y16_c00088{bottom:506.175000px;}
.y15_c00088{bottom:537.495000px;}
.y14_c00088{bottom:568.440000px;}
.y13_c00088{bottom:599.775000px;}
.y12_c00088{bottom:630.731250px;}
.y11_c00088{bottom:661.695000px;}
.y10_c00088{bottom:692.280000px;}
.yf_c00088{bottom:722.895000px;}
.ye_c00088{bottom:754.575750px;}
.yd_c00088{bottom:784.815000px;}
.yc_c00088{bottom:816.135000px;}
.yb_c00088{bottom:847.455000px;}
.ya_c00088{bottom:878.400000px;}
.y9_c00088{bottom:909.000000px;}
.y8_c00088{bottom:939.975000px;}
.y7_c00088{bottom:970.935000px;}
.y6_c00088{bottom:1001.520000px;}
.y5_c00088{bottom:1032.135000px;}
.y4_c00088{bottom:1062.720000px;}
.y3_c00088{bottom:1093.335000px;}
.y2_c00088{bottom:1124.655000px;}
.y1_c00088{bottom:1200.615000px;}
.h2_c00088{height:60.064453px;}
.h8_c00088{height:63.597656px;}
.h4_c00088{height:67.686035px;}
.h3_c00088{height:68.897461px;}
.h6_c00088{height:68.912461px;}
.h7_c00088{height:70.087500px;}
.h5_c00088{height:71.841797px;}
.h1_c00088{height:1263.000000px;}
.h0_c00088{height:1263.240000px;}
.w1_c00088{width:892.500000px;}
.w0_c00088{width:892.800000px;}
.x0_c00088{left:0.000000px;}
.x7_c00088{left:122.550000px;}
.x1_c00088{left:126.645000px;}
.x9_c00088{left:186.630000px;}
.x6_c00088{left:187.710000px;}
.x3_c00088{left:188.790000px;}
.x2_c00088{left:189.870000px;}
.x4_c00088{left:265.560000px;}
.x5_c00088{left:306.645000px;}
.x8_c00088{left:335.925000px;}
.xa_c00088{left:429.930000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls54_c00088{letter-spacing:-2.140320pt;}
.ls58_c00088{letter-spacing:-2.016000pt;}
.ls48_c00088{letter-spacing:-1.716000pt;}
.ls4d_c00088{letter-spacing:-1.672213pt;}
.ls4c_c00088{letter-spacing:-1.285440pt;}
.ls4f_c00088{letter-spacing:-1.000480pt;}
.ls56_c00088{letter-spacing:-0.904800pt;}
.ls45_c00088{letter-spacing:-0.861120pt;}
.ls55_c00088{letter-spacing:-0.436800pt;}
.ls49_c00088{letter-spacing:-0.006240pt;}
.ls46_c00088{letter-spacing:0.000000pt;}
.ls1f_c00088{letter-spacing:0.305760pt;}
.ls18_c00088{letter-spacing:0.325067pt;}
.ls2_c00088{letter-spacing:0.361920pt;}
.ls47_c00088{letter-spacing:0.418080pt;}
.ls35_c00088{letter-spacing:0.436800pt;}
.lsd_c00088{letter-spacing:0.486720pt;}
.lsf_c00088{letter-spacing:0.492960pt;}
.ls4e_c00088{letter-spacing:0.521333pt;}
.ls12_c00088{letter-spacing:0.611520pt;}
.ls6_c00088{letter-spacing:0.642720pt;}
.ls32_c00088{letter-spacing:0.648960pt;}
.ls1b_c00088{letter-spacing:0.673920pt;}
.ls2a_c00088{letter-spacing:0.698880pt;}
.ls3a_c00088{letter-spacing:0.711360pt;}
.ls57_c00088{letter-spacing:0.717600pt;}
.ls4b_c00088{letter-spacing:0.761280pt;}
.ls1e_c00088{letter-spacing:0.780000pt;}
.ls20_c00088{letter-spacing:0.811200pt;}
.ls37_c00088{letter-spacing:0.817440pt;}
.ls10_c00088{letter-spacing:0.861120pt;}
.ls3d_c00088{letter-spacing:0.873600pt;}
.ls41_c00088{letter-spacing:0.892320pt;}
.lsa_c00088{letter-spacing:0.911040pt;}
.ls23_c00088{letter-spacing:0.917280pt;}
.ls28_c00088{letter-spacing:0.929760pt;}
.ls24_c00088{letter-spacing:0.985920pt;}
.ls15_c00088{letter-spacing:1.035840pt;}
.ls2c_c00088{letter-spacing:1.042080pt;}
.ls38_c00088{letter-spacing:1.098240pt;}
.ls5_c00088{letter-spacing:1.116960pt;}
.ls44_c00088{letter-spacing:1.142400pt;}
.ls43_c00088{letter-spacing:1.165333pt;}
.ls0_c00088{letter-spacing:1.171467pt;}
.ls21_c00088{letter-spacing:1.204320pt;}
.ls8_c00088{letter-spacing:1.226667pt;}
.ls3f_c00088{letter-spacing:1.251200pt;}
.ls9_c00088{letter-spacing:1.291680pt;}
.ls22_c00088{letter-spacing:1.300267pt;}
.ls3_c00088{letter-spacing:1.318667pt;}
.ls2e_c00088{letter-spacing:1.343200pt;}
.ls40_c00088{letter-spacing:1.361600pt;}
.ls31_c00088{letter-spacing:1.380000pt;}
.ls3b_c00088{letter-spacing:1.410667pt;}
.ls11_c00088{letter-spacing:1.422933pt;}
.ls42_c00088{letter-spacing:1.435200pt;}
.ls7_c00088{letter-spacing:1.459733pt;}
.ls34_c00088{letter-spacing:1.478133pt;}
.ls3e_c00088{letter-spacing:1.499307pt;}
.ls1_c00088{letter-spacing:1.502667pt;}
.ls17_c00088{letter-spacing:1.508800pt;}
.lsc_c00088{letter-spacing:1.514933pt;}
.lse_c00088{letter-spacing:1.527200pt;}
.ls14_c00088{letter-spacing:1.539467pt;}
.ls30_c00088{letter-spacing:1.582400pt;}
.ls13_c00088{letter-spacing:1.619200pt;}
.ls50_c00088{letter-spacing:1.622080pt;}
.ls2d_c00088{letter-spacing:1.631467pt;}
.ls1c_c00088{letter-spacing:1.637600pt;}
.ls26_c00088{letter-spacing:1.662133pt;}
.ls4_c00088{letter-spacing:1.766400pt;}
.ls36_c00088{letter-spacing:1.784800pt;}
.ls27_c00088{letter-spacing:1.803200pt;}
.lsb_c00088{letter-spacing:2.048533pt;}
.ls29_c00088{letter-spacing:2.054667pt;}
.ls25_c00088{letter-spacing:2.116000pt;}
.ls3c_c00088{letter-spacing:2.165067pt;}
.ls1d_c00088{letter-spacing:2.171200pt;}
.ls33_c00088{letter-spacing:2.367467pt;}
.ls2b_c00088{letter-spacing:2.383680pt;}
.ls2f_c00088{letter-spacing:2.508533pt;}
.ls19_c00088{letter-spacing:2.527840pt;}
.ls51_c00088{letter-spacing:2.821333pt;}
.ls39_c00088{letter-spacing:2.827467pt;}
.ls16_c00088{letter-spacing:2.894933pt;}
.ls1a_c00088{letter-spacing:3.011467pt;}
.ls52_c00088{letter-spacing:3.017600pt;}
.ls4a_c00088{letter-spacing:3.066667pt;}
.ls53_c00088{letter-spacing:3.120000pt;}
.ws0_c00088{word-spacing:0.000000pt;}
._b_c00088{margin-left:-11.622667pt;}
._c_c00088{margin-left:-8.721867pt;}
._7_c00088{margin-left:-6.649600pt;}
._3_c00088{margin-left:-4.822933pt;}
._a_c00088{margin-left:-3.894667pt;}
._6_c00088{margin-left:-2.722507pt;}
._4_c00088{margin-left:-1.765920pt;}
._2_c00088{width:0.889333pt;}
._0_c00088{width:2.324533pt;}
._8_c00088{width:3.579147pt;}
._1_c00088{width:5.024160pt;}
._5_c00088{width:6.723467pt;}
._9_c00088{width:7.612800pt;}
.fs0_c00088{font-size:54.400000pt;}
.fs6_c00088{font-size:57.600000pt;}
.fs4_c00088{font-size:59.200000pt;}
.fs5_c00088{font-size:59.733333pt;}
.fs1_c00088{font-size:61.333333pt;}
.fs2_c00088{font-size:62.400000pt;}
.fs3_c00088{font-size:65.066667pt;}
.y0_c00088{bottom:0.000000pt;}
.y23_c00088{bottom:65.293333pt;}
.y22_c00088{bottom:120.320000pt;}
.y21_c00088{bottom:148.173333pt;}
.y20_c00088{bottom:175.373333pt;}
.y1f_c00088{bottom:202.893333pt;}
.y1e_c00088{bottom:230.093333pt;}
.y1d_c00088{bottom:258.240000pt;}
.y1c_c00088{bottom:285.133333pt;}
.y1b_c00088{bottom:312.653333pt;}
.y1a_c00088{bottom:340.173333pt;}
.y19_c00088{bottom:368.000000pt;}
.y18_c00088{bottom:395.200000pt;}
.y17_c00088{bottom:423.053333pt;}
.y16_c00088{bottom:449.933333pt;}
.y15_c00088{bottom:477.773333pt;}
.y14_c00088{bottom:505.280000pt;}
.y13_c00088{bottom:533.133333pt;}
.y12_c00088{bottom:560.650000pt;}
.y11_c00088{bottom:588.173333pt;}
.y10_c00088{bottom:615.360000pt;}
.yf_c00088{bottom:642.573333pt;}
.ye_c00088{bottom:670.734000pt;}
.yd_c00088{bottom:697.613333pt;}
.yc_c00088{bottom:725.453333pt;}
.yb_c00088{bottom:753.293333pt;}
.ya_c00088{bottom:780.800000pt;}
.y9_c00088{bottom:808.000000pt;}
.y8_c00088{bottom:835.533333pt;}
.y7_c00088{bottom:863.053333pt;}
.y6_c00088{bottom:890.240000pt;}
.y5_c00088{bottom:917.453333pt;}
.y4_c00088{bottom:944.640000pt;}
.y3_c00088{bottom:971.853333pt;}
.y2_c00088{bottom:999.693333pt;}
.y1_c00088{bottom:1067.213333pt;}
.h2_c00088{height:53.390625pt;}
.h8_c00088{height:56.531250pt;}
.h4_c00088{height:60.165365pt;}
.h3_c00088{height:61.242187pt;}
.h6_c00088{height:61.255521pt;}
.h7_c00088{height:62.300000pt;}
.h5_c00088{height:63.859375pt;}
.h1_c00088{height:1122.666667pt;}
.h0_c00088{height:1122.880000pt;}
.w1_c00088{width:793.333333pt;}
.w0_c00088{width:793.600000pt;}
.x0_c00088{left:0.000000pt;}
.x7_c00088{left:108.933333pt;}
.x1_c00088{left:112.573333pt;}
.x9_c00088{left:165.893333pt;}
.x6_c00088{left:166.853333pt;}
.x3_c00088{left:167.813333pt;}
.x2_c00088{left:168.773333pt;}
.x4_c00088{left:236.053333pt;}
.x5_c00088{left:272.573333pt;}
.x8_c00088{left:298.600000pt;}
.xa_c00088{left:382.160000pt;}
}





/* 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_c00089 {
    display:none;
  }
  .loading-indicator_c00089.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00089 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_c00089 { 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_c00089" -> "#page-container .classname_c00089")
 */
.pf_c00089 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00089 { /* 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_c00089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00089 { /* 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_c00089 { /* 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_c00089 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00089 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00089 {overflow:visible;}
  }
}
.c_c00089 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00089 { /* 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_c00089:after { /* webkit #35443 */
  content: '';
}
.t_c00089:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00089 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 */
}
.__c00089 { /* 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_c00089 { /* info for Javascript */
  display:none;
}
.l_c00089 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00089 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00089 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00089: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_c00089 {
    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_c00089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00089.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_c00089 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00089;src:url('chunks/assets/font_25ecbaac2348e53eceb972ad.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.284668;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_c00089;src:url('chunks/assets/font_12d6801aca7e729517782b6d.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.284180;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;}
.m3_c00089{transform:matrix(0.230441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230441,0.000000,0.000000,0.250000,0,0);}
.m0_c00089{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_c00089{transform:matrix(0.251009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251009,0.000000,0.000000,0.250000,0,0);}
.m2_c00089{transform:matrix(0.273355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273355,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.ls51_c00089{letter-spacing:-2.118300px;}
.ls53_c00089{letter-spacing:-2.058000px;}
.ls50_c00089{letter-spacing:-1.635300px;}
.ls4b_c00089{letter-spacing:-1.159200px;}
.ls4c_c00089{letter-spacing:-0.676200px;}
.ls4f_c00089{letter-spacing:-0.458280px;}
.ls52_c00089{letter-spacing:-0.262200px;}
.ls4e_c00089{letter-spacing:-0.200100px;}
.ls4a_c00089{letter-spacing:0.000000px;}
.ls49_c00089{letter-spacing:0.282900px;}
.lsf_c00089{letter-spacing:0.372600px;}
.ls33_c00089{letter-spacing:0.414000px;}
.ls2_c00089{letter-spacing:0.510600px;}
.ls1a_c00089{letter-spacing:0.565800px;}
.ls39_c00089{letter-spacing:0.627900px;}
.ls16_c00089{letter-spacing:0.662400px;}
.lsd_c00089{letter-spacing:0.683100px;}
.ls4_c00089{letter-spacing:0.690000px;}
.ls48_c00089{letter-spacing:0.759000px;}
.ls12_c00089{letter-spacing:0.821100px;}
.ls35_c00089{letter-spacing:0.834900px;}
.ls29_c00089{letter-spacing:0.848700px;}
.lsc_c00089{letter-spacing:0.869400px;}
.ls46_c00089{letter-spacing:0.876300px;}
.ls3a_c00089{letter-spacing:0.897000px;}
.ls3f_c00089{letter-spacing:0.910800px;}
.ls8_c00089{letter-spacing:0.931500px;}
.lsa_c00089{letter-spacing:0.945300px;}
.ls27_c00089{letter-spacing:0.993600px;}
.ls23_c00089{letter-spacing:1.007400px;}
.ls3e_c00089{letter-spacing:1.012320px;}
.ls1e_c00089{letter-spacing:1.014300px;}
.ls31_c00089{letter-spacing:1.076400px;}
.ls41_c00089{letter-spacing:1.090200px;}
.ls15_c00089{letter-spacing:1.094400px;}
.ls22_c00089{letter-spacing:1.166100px;}
.ls20_c00089{letter-spacing:1.207500px;}
.ls26_c00089{letter-spacing:1.217520px;}
.ls11_c00089{letter-spacing:1.224360px;}
.ls42_c00089{letter-spacing:1.255800px;}
.ls37_c00089{letter-spacing:1.258560px;}
.ls40_c00089{letter-spacing:1.285920px;}
.ls2e_c00089{letter-spacing:1.347480px;}
.ls18_c00089{letter-spacing:1.374840px;}
.ls7_c00089{letter-spacing:1.393800px;}
.ls36_c00089{letter-spacing:1.395360px;}
.ls2c_c00089{letter-spacing:1.476600px;}
.ls38_c00089{letter-spacing:1.484280px;}
.ls45_c00089{letter-spacing:1.497300px;}
.ls1_c00089{letter-spacing:1.497960px;}
.ls30_c00089{letter-spacing:1.525320px;}
.ls32_c00089{letter-spacing:1.538700px;}
.ls5_c00089{letter-spacing:1.545840px;}
.ls19_c00089{letter-spacing:1.600560px;}
.ls28_c00089{letter-spacing:1.648440px;}
.ls3d_c00089{letter-spacing:1.655280px;}
.ls3_c00089{letter-spacing:1.662120px;}
.lsb_c00089{letter-spacing:1.696320px;}
.ls1d_c00089{letter-spacing:1.710000px;}
.ls0_c00089{letter-spacing:1.751040px;}
.ls43_c00089{letter-spacing:1.757880px;}
.ls2d_c00089{letter-spacing:1.778400px;}
.ls34_c00089{letter-spacing:1.826280px;}
.ls10_c00089{letter-spacing:1.860480px;}
.ls2f_c00089{letter-spacing:1.901520px;}
.ls25_c00089{letter-spacing:1.908360px;}
.ls21_c00089{letter-spacing:1.928880px;}
.ls14_c00089{letter-spacing:1.976760px;}
.ls44_c00089{letter-spacing:2.031480px;}
.ls17_c00089{letter-spacing:2.099880px;}
.ls6_c00089{letter-spacing:2.106720px;}
.ls47_c00089{letter-spacing:2.148000px;}
.lse_c00089{letter-spacing:2.161440px;}
.ls1b_c00089{letter-spacing:2.257200px;}
.ls1f_c00089{letter-spacing:2.380320px;}
.ls9_c00089{letter-spacing:2.455560px;}
.ls2a_c00089{letter-spacing:2.518500px;}
.ls2b_c00089{letter-spacing:2.539200px;}
.ls1c_c00089{letter-spacing:2.558160px;}
.ls24_c00089{letter-spacing:2.647080px;}
.ls13_c00089{letter-spacing:2.729160px;}
.ls3c_c00089{letter-spacing:3.064320px;}
.ls3b_c00089{letter-spacing:3.201120px;}
.ls4d_c00089{letter-spacing:3.420000px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{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__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00089{word-spacing:0.000000px;}
._6_c00089{margin-left:-15.184800px;}
._7_c00089{margin-left:-7.797600px;}
._3_c00089{margin-left:-4.628160px;}
._9_c00089{margin-left:-3.276180px;}
._4_c00089{margin-left:-1.890600px;}
._0_c00089{width:1.340640px;}
._5_c00089{width:2.829000px;}
._8_c00089{width:4.335360px;}
._2_c00089{width:5.451720px;}
._1_c00089{width:7.221960px;}
.fc0_c00089{color:transparent;}
.fs3_c00089{font-size:58.800000px;}
.fs0_c00089{font-size:60.000000px;}
.fs1_c00089{font-size:68.400000px;}
.fs2_c00089{font-size:69.000000px;}
.y0_c00089{bottom:0.000000px;}
.y23_c00089{bottom:66.975000px;}
.y22_c00089{bottom:130.320000px;}
.y21_c00089{bottom:160.920000px;}
.y20_c00089{bottom:191.520000px;}
.y1f_c00089{bottom:222.135000px;}
.y1e_c00089{bottom:253.095000px;}
.y1d_c00089{bottom:283.335000px;}
.y1c_c00089{bottom:314.295000px;}
.y1b_c00089{bottom:344.895000px;}
.y1a_c00089{bottom:375.135000px;}
.y19_c00089{bottom:406.095000px;}
.y18_c00089{bottom:437.415000px;}
.y17_c00089{bottom:468.735000px;}
.y16_c00089{bottom:499.335000px;}
.y15_c00089{bottom:530.280000px;}
.y14_c00089{bottom:561.247800px;}
.y13_c00089{bottom:592.575000px;}
.y12_c00089{bottom:623.175000px;}
.y11_c00089{bottom:654.120000px;}
.y10_c00089{bottom:684.735000px;}
.yf_c00089{bottom:715.695000px;}
.ye_c00089{bottom:746.655000px;}
.yd_c00089{bottom:777.615000px;}
.yc_c00089{bottom:808.200000px;}
.yb_c00089{bottom:839.520000px;}
.ya_c00089{bottom:870.135000px;}
.y9_c00089{bottom:900.720000px;}
.y8_c00089{bottom:931.695000px;}
.y7_c00089{bottom:963.000000px;}
.y6_c00089{bottom:993.615000px;}
.y5_c00089{bottom:1024.935000px;}
.y4_c00089{bottom:1055.520000px;}
.y3_c00089{bottom:1086.135000px;}
.y2_c00089{bottom:1117.080000px;}
.y1_c00089{bottom:1192.335000px;}
.h6_c00089{height:57.708984px;}
.h2_c00089{height:58.886719px;}
.h4_c00089{height:67.097461px;}
.h3_c00089{height:67.719727px;}
.h5_c00089{height:67.748527px;}
.h1_c00089{height:1263.000000px;}
.h0_c00089{height:1263.240000px;}
.w1_c00089{width:892.500000px;}
.w0_c00089{width:892.800000px;}
.x0_c00089{left:0.000000px;}
.x9_c00089{left:118.575000px;}
.x3_c00089{left:120.735000px;}
.x1_c00089{left:122.325000px;}
.xa_c00089{left:181.935000px;}
.x8_c00089{left:183.015000px;}
.x7_c00089{left:184.095000px;}
.x4_c00089{left:185.175000px;}
.x2_c00089{left:186.900000px;}
.x5_c00089{left:218.085000px;}
.x6_c00089{left:243.765000px;}
.xb_c00089{left:422.760000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls51_c00089{letter-spacing:-1.882933pt;}
.ls53_c00089{letter-spacing:-1.829333pt;}
.ls50_c00089{letter-spacing:-1.453600pt;}
.ls4b_c00089{letter-spacing:-1.030400pt;}
.ls4c_c00089{letter-spacing:-0.601067pt;}
.ls4f_c00089{letter-spacing:-0.407360pt;}
.ls52_c00089{letter-spacing:-0.233067pt;}
.ls4e_c00089{letter-spacing:-0.177867pt;}
.ls4a_c00089{letter-spacing:0.000000pt;}
.ls49_c00089{letter-spacing:0.251467pt;}
.lsf_c00089{letter-spacing:0.331200pt;}
.ls33_c00089{letter-spacing:0.368000pt;}
.ls2_c00089{letter-spacing:0.453867pt;}
.ls1a_c00089{letter-spacing:0.502933pt;}
.ls39_c00089{letter-spacing:0.558133pt;}
.ls16_c00089{letter-spacing:0.588800pt;}
.lsd_c00089{letter-spacing:0.607200pt;}
.ls4_c00089{letter-spacing:0.613333pt;}
.ls48_c00089{letter-spacing:0.674667pt;}
.ls12_c00089{letter-spacing:0.729867pt;}
.ls35_c00089{letter-spacing:0.742133pt;}
.ls29_c00089{letter-spacing:0.754400pt;}
.lsc_c00089{letter-spacing:0.772800pt;}
.ls46_c00089{letter-spacing:0.778933pt;}
.ls3a_c00089{letter-spacing:0.797333pt;}
.ls3f_c00089{letter-spacing:0.809600pt;}
.ls8_c00089{letter-spacing:0.828000pt;}
.lsa_c00089{letter-spacing:0.840267pt;}
.ls27_c00089{letter-spacing:0.883200pt;}
.ls23_c00089{letter-spacing:0.895467pt;}
.ls3e_c00089{letter-spacing:0.899840pt;}
.ls1e_c00089{letter-spacing:0.901600pt;}
.ls31_c00089{letter-spacing:0.956800pt;}
.ls41_c00089{letter-spacing:0.969067pt;}
.ls15_c00089{letter-spacing:0.972800pt;}
.ls22_c00089{letter-spacing:1.036533pt;}
.ls20_c00089{letter-spacing:1.073333pt;}
.ls26_c00089{letter-spacing:1.082240pt;}
.ls11_c00089{letter-spacing:1.088320pt;}
.ls42_c00089{letter-spacing:1.116267pt;}
.ls37_c00089{letter-spacing:1.118720pt;}
.ls40_c00089{letter-spacing:1.143040pt;}
.ls2e_c00089{letter-spacing:1.197760pt;}
.ls18_c00089{letter-spacing:1.222080pt;}
.ls7_c00089{letter-spacing:1.238933pt;}
.ls36_c00089{letter-spacing:1.240320pt;}
.ls2c_c00089{letter-spacing:1.312533pt;}
.ls38_c00089{letter-spacing:1.319360pt;}
.ls45_c00089{letter-spacing:1.330933pt;}
.ls1_c00089{letter-spacing:1.331520pt;}
.ls30_c00089{letter-spacing:1.355840pt;}
.ls32_c00089{letter-spacing:1.367733pt;}
.ls5_c00089{letter-spacing:1.374080pt;}
.ls19_c00089{letter-spacing:1.422720pt;}
.ls28_c00089{letter-spacing:1.465280pt;}
.ls3d_c00089{letter-spacing:1.471360pt;}
.ls3_c00089{letter-spacing:1.477440pt;}
.lsb_c00089{letter-spacing:1.507840pt;}
.ls1d_c00089{letter-spacing:1.520000pt;}
.ls0_c00089{letter-spacing:1.556480pt;}
.ls43_c00089{letter-spacing:1.562560pt;}
.ls2d_c00089{letter-spacing:1.580800pt;}
.ls34_c00089{letter-spacing:1.623360pt;}
.ls10_c00089{letter-spacing:1.653760pt;}
.ls2f_c00089{letter-spacing:1.690240pt;}
.ls25_c00089{letter-spacing:1.696320pt;}
.ls21_c00089{letter-spacing:1.714560pt;}
.ls14_c00089{letter-spacing:1.757120pt;}
.ls44_c00089{letter-spacing:1.805760pt;}
.ls17_c00089{letter-spacing:1.866560pt;}
.ls6_c00089{letter-spacing:1.872640pt;}
.ls47_c00089{letter-spacing:1.909333pt;}
.lse_c00089{letter-spacing:1.921280pt;}
.ls1b_c00089{letter-spacing:2.006400pt;}
.ls1f_c00089{letter-spacing:2.115840pt;}
.ls9_c00089{letter-spacing:2.182720pt;}
.ls2a_c00089{letter-spacing:2.238667pt;}
.ls2b_c00089{letter-spacing:2.257067pt;}
.ls1c_c00089{letter-spacing:2.273920pt;}
.ls24_c00089{letter-spacing:2.352960pt;}
.ls13_c00089{letter-spacing:2.425920pt;}
.ls3c_c00089{letter-spacing:2.723840pt;}
.ls3b_c00089{letter-spacing:2.845440pt;}
.ls4d_c00089{letter-spacing:3.040000pt;}
.ws0_c00089{word-spacing:0.000000pt;}
._6_c00089{margin-left:-13.497600pt;}
._7_c00089{margin-left:-6.931200pt;}
._3_c00089{margin-left:-4.113920pt;}
._9_c00089{margin-left:-2.912160pt;}
._4_c00089{margin-left:-1.680533pt;}
._0_c00089{width:1.191680pt;}
._5_c00089{width:2.514667pt;}
._8_c00089{width:3.853653pt;}
._2_c00089{width:4.845973pt;}
._1_c00089{width:6.419520pt;}
.fs3_c00089{font-size:52.266667pt;}
.fs0_c00089{font-size:53.333333pt;}
.fs1_c00089{font-size:60.800000pt;}
.fs2_c00089{font-size:61.333333pt;}
.y0_c00089{bottom:0.000000pt;}
.y23_c00089{bottom:59.533333pt;}
.y22_c00089{bottom:115.840000pt;}
.y21_c00089{bottom:143.040000pt;}
.y20_c00089{bottom:170.240000pt;}
.y1f_c00089{bottom:197.453333pt;}
.y1e_c00089{bottom:224.973333pt;}
.y1d_c00089{bottom:251.853333pt;}
.y1c_c00089{bottom:279.373333pt;}
.y1b_c00089{bottom:306.573333pt;}
.y1a_c00089{bottom:333.453333pt;}
.y19_c00089{bottom:360.973333pt;}
.y18_c00089{bottom:388.813333pt;}
.y17_c00089{bottom:416.653333pt;}
.y16_c00089{bottom:443.853333pt;}
.y15_c00089{bottom:471.360000pt;}
.y14_c00089{bottom:498.886933pt;}
.y13_c00089{bottom:526.733333pt;}
.y12_c00089{bottom:553.933333pt;}
.y11_c00089{bottom:581.440000pt;}
.y10_c00089{bottom:608.653333pt;}
.yf_c00089{bottom:636.173333pt;}
.ye_c00089{bottom:663.693333pt;}
.yd_c00089{bottom:691.213333pt;}
.yc_c00089{bottom:718.400000pt;}
.yb_c00089{bottom:746.240000pt;}
.ya_c00089{bottom:773.453333pt;}
.y9_c00089{bottom:800.640000pt;}
.y8_c00089{bottom:828.173333pt;}
.y7_c00089{bottom:856.000000pt;}
.y6_c00089{bottom:883.213333pt;}
.y5_c00089{bottom:911.053333pt;}
.y4_c00089{bottom:938.240000pt;}
.y3_c00089{bottom:965.453333pt;}
.y2_c00089{bottom:992.960000pt;}
.y1_c00089{bottom:1059.853333pt;}
.h6_c00089{height:51.296875pt;}
.h2_c00089{height:52.343750pt;}
.h4_c00089{height:59.642187pt;}
.h3_c00089{height:60.195312pt;}
.h5_c00089{height:60.220913pt;}
.h1_c00089{height:1122.666667pt;}
.h0_c00089{height:1122.880000pt;}
.w1_c00089{width:793.333333pt;}
.w0_c00089{width:793.600000pt;}
.x0_c00089{left:0.000000pt;}
.x9_c00089{left:105.400000pt;}
.x3_c00089{left:107.320000pt;}
.x1_c00089{left:108.733333pt;}
.xa_c00089{left:161.720000pt;}
.x8_c00089{left:162.680000pt;}
.x7_c00089{left:163.640000pt;}
.x4_c00089{left:164.600000pt;}
.x2_c00089{left:166.133333pt;}
.x5_c00089{left:193.853333pt;}
.x6_c00089{left:216.680000pt;}
.xb_c00089{left:375.786667pt;}
}





/* 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_c00090 {
    display:none;
  }
  .loading-indicator_c00090.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00090 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_c00090 { 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_c00090" -> "#page-container .classname_c00090")
 */
.pf_c00090 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00090 { /* 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_c00090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00090 { /* 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_c00090 { /* 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_c00090 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00090 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00090 {overflow:visible;}
  }
}
.c_c00090 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00090 { /* 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_c00090:after { /* webkit #35443 */
  content: '';
}
.t_c00090:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00090 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 */
}
.__c00090 { /* 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_c00090 { /* info for Javascript */
  display:none;
}
.l_c00090 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00090 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00090 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00090: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_c00090 {
    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_c00090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00090.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_c00090 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00090;src:url('chunks/assets/font_135db6c6e89afe4601b9d4e2.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.284668;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_c00090;src:url('chunks/assets/font_e9d944d79421df2798950272.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.284180;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;}
.m5_c00090{transform:matrix(0.198795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198795,0.000000,0.000000,0.250000,0,0);}
.m7_c00090{transform:matrix(0.231311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231311,0.000000,0.000000,0.250000,0,0);}
.m2_c00090{transform:matrix(0.247504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247504,0.000000,0.000000,0.250000,0,0);}
.m6_c00090{transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);}
.m0_c00090{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_c00090{transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);}
.m3_c00090{transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);}
.m4_c00090{transform:matrix(0.262368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262368,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls4e_c00090{letter-spacing:-2.457000px;}
.ls45_c00090{letter-spacing:-2.373000px;}
.ls51_c00090{letter-spacing:-2.226000px;}
.ls41_c00090{letter-spacing:-2.042820px;}
.ls4c_c00090{letter-spacing:-1.930500px;}
.ls40_c00090{letter-spacing:-1.446120px;}
.ls48_c00090{letter-spacing:-0.968760px;}
.ls43_c00090{letter-spacing:-0.491400px;}
.ls3c_c00090{letter-spacing:-0.007020px;}
.ls4b_c00090{letter-spacing:0.000000px;}
.ls26_c00090{letter-spacing:0.133380px;}
.ls47_c00090{letter-spacing:0.161460px;}
.ls30_c00090{letter-spacing:0.358020px;}
.ls4f_c00090{letter-spacing:0.406800px;}
.ls2d_c00090{letter-spacing:0.407160px;}
.ls3b_c00090{letter-spacing:0.470340px;}
.ls29_c00090{letter-spacing:0.491400px;}
.ls10_c00090{letter-spacing:0.498420px;}
.ls34_c00090{letter-spacing:0.568620px;}
.ls2_c00090{letter-spacing:0.589680px;}
.ls31_c00090{letter-spacing:0.617760px;}
.ls1_c00090{letter-spacing:0.631800px;}
.ls3_c00090{letter-spacing:0.652860px;}
.lsf_c00090{letter-spacing:0.680940px;}
.ls2b_c00090{letter-spacing:0.687960px;}
.ls5_c00090{letter-spacing:0.694980px;}
.ls1c_c00090{letter-spacing:0.709020px;}
.ls27_c00090{letter-spacing:0.730080px;}
.lsd_c00090{letter-spacing:0.737100px;}
.ls16_c00090{letter-spacing:0.744120px;}
.ls8_c00090{letter-spacing:0.779220px;}
.ls4_c00090{letter-spacing:0.786240px;}
.ls3e_c00090{letter-spacing:0.800280px;}
.ls9_c00090{letter-spacing:0.807300px;}
.ls1a_c00090{letter-spacing:0.814320px;}
.ls12_c00090{letter-spacing:0.870480px;}
.ls14_c00090{letter-spacing:0.877500px;}
.ls6_c00090{letter-spacing:0.898560px;}
.ls32_c00090{letter-spacing:0.940680px;}
.ls3d_c00090{letter-spacing:0.947700px;}
.lsc_c00090{letter-spacing:0.961740px;}
.ls39_c00090{letter-spacing:0.982800px;}
.ls2a_c00090{letter-spacing:0.989820px;}
.ls0_c00090{letter-spacing:1.003860px;}
.ls37_c00090{letter-spacing:1.010880px;}
.ls15_c00090{letter-spacing:1.024920px;}
.ls13_c00090{letter-spacing:1.081080px;}
.ls1e_c00090{letter-spacing:1.095120px;}
.ls7_c00090{letter-spacing:1.109160px;}
.ls24_c00090{letter-spacing:1.130220px;}
.lse_c00090{letter-spacing:1.137240px;}
.ls17_c00090{letter-spacing:1.172340px;}
.ls28_c00090{letter-spacing:1.186380px;}
.lsb_c00090{letter-spacing:1.214460px;}
.ls42_c00090{letter-spacing:1.221480px;}
.ls22_c00090{letter-spacing:1.228500px;}
.ls2e_c00090{letter-spacing:1.242540px;}
.ls20_c00090{letter-spacing:1.256580px;}
.ls38_c00090{letter-spacing:1.270620px;}
.ls49_c00090{letter-spacing:1.354860px;}
.lsa_c00090{letter-spacing:1.375920px;}
.ls4a_c00090{letter-spacing:1.404000px;}
.ls3a_c00090{letter-spacing:1.444320px;}
.ls46_c00090{letter-spacing:1.450920px;}
.ls19_c00090{letter-spacing:1.502280px;}
.ls2f_c00090{letter-spacing:1.509300px;}
.ls25_c00090{letter-spacing:1.705860px;}
.ls23_c00090{letter-spacing:1.719900px;}
.ls1d_c00090{letter-spacing:1.747980px;}
.ls18_c00090{letter-spacing:1.965600px;}
.ls4d_c00090{letter-spacing:2.013660px;}
.ls36_c00090{letter-spacing:2.056860px;}
.ls1b_c00090{letter-spacing:2.106000px;}
.ls1f_c00090{letter-spacing:2.407860px;}
.ls2c_c00090{letter-spacing:2.723760px;}
.ls21_c00090{letter-spacing:2.871180px;}
.ls33_c00090{letter-spacing:3.023880px;}
.ls11_c00090{letter-spacing:3.306420px;}
.ls50_c00090{letter-spacing:3.341520px;}
.ls44_c00090{letter-spacing:3.356100px;}
.ls35_c00090{letter-spacing:3.418740px;}
.ls3f_c00090{letter-spacing:3.510000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{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__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00090{word-spacing:-18.202860px;}
.ws1_c00090{word-spacing:0.000000px;}
._b_c00090{margin-left:-25.818420px;}
._6_c00090{margin-left:-10.604220px;}
._a_c00090{margin-left:-9.301500px;}
._8_c00090{margin-left:-6.838860px;}
._4_c00090{margin-left:-5.157180px;}
._7_c00090{margin-left:-3.279960px;}
._9_c00090{margin-left:-1.214460px;}
._3_c00090{width:1.405980px;}
._0_c00090{width:2.724840px;}
._1_c00090{width:4.212000px;}
._5_c00090{width:5.377320px;}
._2_c00090{width:6.514560px;}
.fc0_c00090{color:transparent;}
.fs0_c00090{font-size:61.200000px;}
.fs3_c00090{font-size:63.600000px;}
.fs2_c00090{font-size:67.800000px;}
.fs1_c00090{font-size:70.200000px;}
.y0_c00090{bottom:0.000000px;}
.y26_c00090{bottom:67.695000px;}
.y25_c00090{bottom:129.960000px;}
.y24_c00090{bottom:160.560000px;}
.y23_c00090{bottom:190.800000px;}
.y22_c00090{bottom:221.415000px;}
.y21_c00090{bottom:252.720000px;}
.y20_c00090{bottom:282.975000px;}
.y1f_c00090{bottom:314.655000px;}
.y1e_c00090{bottom:345.975000px;}
.y1d_c00090{bottom:376.568250px;}
.y1c_c00090{bottom:407.895000px;}
.y1b_c00090{bottom:438.855000px;}
.y1a_c00090{bottom:469.808250px;}
.y18_c00090{bottom:501.130350px;}
.y19_c00090{bottom:501.135000px;}
.y17_c00090{bottom:531.720000px;}
.y16_c00090{bottom:563.055000px;}
.y15_c00090{bottom:593.640000px;}
.y14_c00090{bottom:624.615000px;}
.y13_c00090{bottom:655.560000px;}
.y12_c00090{bottom:655.570050px;}
.y11_c00090{bottom:686.896800px;}
.y10_c00090{bottom:717.855000px;}
.yf_c00090{bottom:748.455000px;}
.ye_c00090{bottom:779.400000px;}
.yd_c00090{bottom:810.368250px;}
.yc_c00090{bottom:841.695000px;}
.yb_c00090{bottom:872.659350px;}
.ya_c00090{bottom:903.600000px;}
.y9_c00090{bottom:903.601800px;}
.y8_c00090{bottom:934.560000px;}
.y7_c00090{bottom:965.535000px;}
.y6_c00090{bottom:996.135000px;}
.y5_c00090{bottom:1027.080000px;}
.y4_c00090{bottom:1058.041050px;}
.y3_c00090{bottom:1088.648250px;}
.y2_c00090{bottom:1119.975000px;}
.y1_c00090{bottom:1195.560000px;}
.h2_c00090{height:60.064453px;}
.h9_c00090{height:62.419922px;}
.h6_c00090{height:66.541992px;}
.h4_c00090{height:68.863184px;}
.h8_c00090{height:68.864461px;}
.h7_c00090{height:68.881784px;}
.h3_c00090{height:68.897461px;}
.h5_c00090{height:68.924461px;}
.h1_c00090{height:1263.000000px;}
.h0_c00090{height:1263.240000px;}
.w1_c00090{width:892.500000px;}
.w0_c00090{width:892.800000px;}
.x0_c00090{left:0.000000px;}
.x9_c00090{left:116.415000px;}
.x1_c00090{left:120.885000px;}
.x8_c00090{left:181.215000px;}
.x6_c00090{left:182.295000px;}
.x3_c00090{left:183.375000px;}
.x2_c00090{left:184.455000px;}
.xc_c00090{left:272.775000px;}
.x10_c00090{left:276.885000px;}
.x7_c00090{left:325.575000px;}
.xa_c00090{left:328.125000px;}
.xd_c00090{left:362.565000px;}
.x4_c00090{left:369.510000px;}
.xb_c00090{left:380.625000px;}
.x11_c00090{left:424.185000px;}
.x5_c00090{left:428.325000px;}
.xe_c00090{left:477.600000px;}
.xf_c00090{left:506.625000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls4e_c00090{letter-spacing:-2.184000pt;}
.ls45_c00090{letter-spacing:-2.109333pt;}
.ls51_c00090{letter-spacing:-1.978667pt;}
.ls41_c00090{letter-spacing:-1.815840pt;}
.ls4c_c00090{letter-spacing:-1.716000pt;}
.ls40_c00090{letter-spacing:-1.285440pt;}
.ls48_c00090{letter-spacing:-0.861120pt;}
.ls43_c00090{letter-spacing:-0.436800pt;}
.ls3c_c00090{letter-spacing:-0.006240pt;}
.ls4b_c00090{letter-spacing:0.000000pt;}
.ls26_c00090{letter-spacing:0.118560pt;}
.ls47_c00090{letter-spacing:0.143520pt;}
.ls30_c00090{letter-spacing:0.318240pt;}
.ls4f_c00090{letter-spacing:0.361600pt;}
.ls2d_c00090{letter-spacing:0.361920pt;}
.ls3b_c00090{letter-spacing:0.418080pt;}
.ls29_c00090{letter-spacing:0.436800pt;}
.ls10_c00090{letter-spacing:0.443040pt;}
.ls34_c00090{letter-spacing:0.505440pt;}
.ls2_c00090{letter-spacing:0.524160pt;}
.ls31_c00090{letter-spacing:0.549120pt;}
.ls1_c00090{letter-spacing:0.561600pt;}
.ls3_c00090{letter-spacing:0.580320pt;}
.lsf_c00090{letter-spacing:0.605280pt;}
.ls2b_c00090{letter-spacing:0.611520pt;}
.ls5_c00090{letter-spacing:0.617760pt;}
.ls1c_c00090{letter-spacing:0.630240pt;}
.ls27_c00090{letter-spacing:0.648960pt;}
.lsd_c00090{letter-spacing:0.655200pt;}
.ls16_c00090{letter-spacing:0.661440pt;}
.ls8_c00090{letter-spacing:0.692640pt;}
.ls4_c00090{letter-spacing:0.698880pt;}
.ls3e_c00090{letter-spacing:0.711360pt;}
.ls9_c00090{letter-spacing:0.717600pt;}
.ls1a_c00090{letter-spacing:0.723840pt;}
.ls12_c00090{letter-spacing:0.773760pt;}
.ls14_c00090{letter-spacing:0.780000pt;}
.ls6_c00090{letter-spacing:0.798720pt;}
.ls32_c00090{letter-spacing:0.836160pt;}
.ls3d_c00090{letter-spacing:0.842400pt;}
.lsc_c00090{letter-spacing:0.854880pt;}
.ls39_c00090{letter-spacing:0.873600pt;}
.ls2a_c00090{letter-spacing:0.879840pt;}
.ls0_c00090{letter-spacing:0.892320pt;}
.ls37_c00090{letter-spacing:0.898560pt;}
.ls15_c00090{letter-spacing:0.911040pt;}
.ls13_c00090{letter-spacing:0.960960pt;}
.ls1e_c00090{letter-spacing:0.973440pt;}
.ls7_c00090{letter-spacing:0.985920pt;}
.ls24_c00090{letter-spacing:1.004640pt;}
.lse_c00090{letter-spacing:1.010880pt;}
.ls17_c00090{letter-spacing:1.042080pt;}
.ls28_c00090{letter-spacing:1.054560pt;}
.lsb_c00090{letter-spacing:1.079520pt;}
.ls42_c00090{letter-spacing:1.085760pt;}
.ls22_c00090{letter-spacing:1.092000pt;}
.ls2e_c00090{letter-spacing:1.104480pt;}
.ls20_c00090{letter-spacing:1.116960pt;}
.ls38_c00090{letter-spacing:1.129440pt;}
.ls49_c00090{letter-spacing:1.204320pt;}
.lsa_c00090{letter-spacing:1.223040pt;}
.ls4a_c00090{letter-spacing:1.248000pt;}
.ls3a_c00090{letter-spacing:1.283840pt;}
.ls46_c00090{letter-spacing:1.289707pt;}
.ls19_c00090{letter-spacing:1.335360pt;}
.ls2f_c00090{letter-spacing:1.341600pt;}
.ls25_c00090{letter-spacing:1.516320pt;}
.ls23_c00090{letter-spacing:1.528800pt;}
.ls1d_c00090{letter-spacing:1.553760pt;}
.ls18_c00090{letter-spacing:1.747200pt;}
.ls4d_c00090{letter-spacing:1.789920pt;}
.ls36_c00090{letter-spacing:1.828320pt;}
.ls1b_c00090{letter-spacing:1.872000pt;}
.ls1f_c00090{letter-spacing:2.140320pt;}
.ls2c_c00090{letter-spacing:2.421120pt;}
.ls21_c00090{letter-spacing:2.552160pt;}
.ls33_c00090{letter-spacing:2.687893pt;}
.ls11_c00090{letter-spacing:2.939040pt;}
.ls50_c00090{letter-spacing:2.970240pt;}
.ls44_c00090{letter-spacing:2.983200pt;}
.ls35_c00090{letter-spacing:3.038880pt;}
.ls3f_c00090{letter-spacing:3.120000pt;}
.ws0_c00090{word-spacing:-16.180320pt;}
.ws1_c00090{word-spacing:0.000000pt;}
._b_c00090{margin-left:-22.949707pt;}
._6_c00090{margin-left:-9.425973pt;}
._a_c00090{margin-left:-8.268000pt;}
._8_c00090{margin-left:-6.078987pt;}
._4_c00090{margin-left:-4.584160pt;}
._7_c00090{margin-left:-2.915520pt;}
._9_c00090{margin-left:-1.079520pt;}
._3_c00090{width:1.249760pt;}
._0_c00090{width:2.422080pt;}
._1_c00090{width:3.744000pt;}
._5_c00090{width:4.779840pt;}
._2_c00090{width:5.790720pt;}
.fs0_c00090{font-size:54.400000pt;}
.fs3_c00090{font-size:56.533333pt;}
.fs2_c00090{font-size:60.266667pt;}
.fs1_c00090{font-size:62.400000pt;}
.y0_c00090{bottom:0.000000pt;}
.y26_c00090{bottom:60.173333pt;}
.y25_c00090{bottom:115.520000pt;}
.y24_c00090{bottom:142.720000pt;}
.y23_c00090{bottom:169.600000pt;}
.y22_c00090{bottom:196.813333pt;}
.y21_c00090{bottom:224.640000pt;}
.y20_c00090{bottom:251.533333pt;}
.y1f_c00090{bottom:279.693333pt;}
.y1e_c00090{bottom:307.533333pt;}
.y1d_c00090{bottom:334.727333pt;}
.y1c_c00090{bottom:362.573333pt;}
.y1b_c00090{bottom:390.093333pt;}
.y1a_c00090{bottom:417.607333pt;}
.y18_c00090{bottom:445.449200pt;}
.y19_c00090{bottom:445.453333pt;}
.y17_c00090{bottom:472.640000pt;}
.y16_c00090{bottom:500.493333pt;}
.y15_c00090{bottom:527.680000pt;}
.y14_c00090{bottom:555.213333pt;}
.y13_c00090{bottom:582.720000pt;}
.y12_c00090{bottom:582.728933pt;}
.y11_c00090{bottom:610.574933pt;}
.y10_c00090{bottom:638.093333pt;}
.yf_c00090{bottom:665.293333pt;}
.ye_c00090{bottom:692.800000pt;}
.yd_c00090{bottom:720.327333pt;}
.yc_c00090{bottom:748.173333pt;}
.yb_c00090{bottom:775.697200pt;}
.ya_c00090{bottom:803.200000pt;}
.y9_c00090{bottom:803.201600pt;}
.y8_c00090{bottom:830.720000pt;}
.y7_c00090{bottom:858.253333pt;}
.y6_c00090{bottom:885.453333pt;}
.y5_c00090{bottom:912.960000pt;}
.y4_c00090{bottom:940.480933pt;}
.y3_c00090{bottom:967.687333pt;}
.y2_c00090{bottom:995.533333pt;}
.y1_c00090{bottom:1062.720000pt;}
.h2_c00090{height:53.390625pt;}
.h9_c00090{height:55.484375pt;}
.h6_c00090{height:59.148438pt;}
.h4_c00090{height:61.211719pt;}
.h8_c00090{height:61.212854pt;}
.h7_c00090{height:61.228252pt;}
.h3_c00090{height:61.242187pt;}
.h5_c00090{height:61.266188pt;}
.h1_c00090{height:1122.666667pt;}
.h0_c00090{height:1122.880000pt;}
.w1_c00090{width:793.333333pt;}
.w0_c00090{width:793.600000pt;}
.x0_c00090{left:0.000000pt;}
.x9_c00090{left:103.480000pt;}
.x1_c00090{left:107.453333pt;}
.x8_c00090{left:161.080000pt;}
.x6_c00090{left:162.040000pt;}
.x3_c00090{left:163.000000pt;}
.x2_c00090{left:163.960000pt;}
.xc_c00090{left:242.466667pt;}
.x10_c00090{left:246.120000pt;}
.x7_c00090{left:289.400000pt;}
.xa_c00090{left:291.666667pt;}
.xd_c00090{left:322.280000pt;}
.x4_c00090{left:328.453333pt;}
.xb_c00090{left:338.333333pt;}
.x11_c00090{left:377.053333pt;}
.x5_c00090{left:380.733333pt;}
.xe_c00090{left:424.533333pt;}
.xf_c00090{left:450.333333pt;}
}





/* 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_c00091 {
    display:none;
  }
  .loading-indicator_c00091.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00091 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_c00091 { 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_c00091" -> "#page-container .classname_c00091")
 */
.pf_c00091 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00091 { /* 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_c00091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00091 { /* 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_c00091 { /* 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_c00091 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00091 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00091 {overflow:visible;}
  }
}
.c_c00091 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00091 { /* 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_c00091:after { /* webkit #35443 */
  content: '';
}
.t_c00091:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00091 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 */
}
.__c00091 { /* 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_c00091 { /* info for Javascript */
  display:none;
}
.l_c00091 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00091 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00091 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00091: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_c00091 {
    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_c00091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00091.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_c00091 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00091;src:url('chunks/assets/font_e397d5a5398b2b79cd13b464.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.284668;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_c00091;src:url('chunks/assets/font_70f3ee2711a4e8da67912f52.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.284180;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_c00091;src:url('chunks/assets/font_0ce4031ea9cd839cc9eaf057.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.311035;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_c00091;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;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;}
.m1_c00091{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m8_c00091{transform:matrix(0.241149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241149,0.000000,0.000000,0.250000,0,0);}
.m5_c00091{transform:matrix(0.244628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244628,0.000000,0.000000,0.250000,0,0);}
.m3_c00091{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.m0_c00091{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);}
.m7_c00091{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m4_c00091{transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);}
.m2_c00091{transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);}
.m6_c00091{transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls6a_c00091{letter-spacing:-2.604000px;}
.ls6f_c00091{letter-spacing:-2.457000px;}
.ls70_c00091{letter-spacing:-2.407860px;}
.ls83_c00091{letter-spacing:-2.204280px;}
.ls7f_c00091{letter-spacing:-2.148120px;}
.ls92_c00091{letter-spacing:-2.079000px;}
.ls7a_c00091{letter-spacing:-1.635660px;}
.ls8c_c00091{letter-spacing:-1.544400px;}
.ls73_c00091{letter-spacing:-1.186380px;}
.ls87_c00091{letter-spacing:-0.947700px;}
.ls8d_c00091{letter-spacing:-0.821340px;}
.ls7d_c00091{letter-spacing:-0.793260px;}
.ls7c_c00091{letter-spacing:-0.765180px;}
.ls89_c00091{letter-spacing:-0.744120px;}
.ls71_c00091{letter-spacing:-0.533520px;}
.ls7b_c00091{letter-spacing:-0.512460px;}
.ls68_c00091{letter-spacing:-0.491400px;}
.ls79_c00091{letter-spacing:-0.470340px;}
.ls86_c00091{letter-spacing:-0.358020px;}
.ls88_c00091{letter-spacing:-0.266760px;}
.ls8e_c00091{letter-spacing:-0.252720px;}
.ls77_c00091{letter-spacing:-0.231660px;}
.ls90_c00091{letter-spacing:-0.196560px;}
.ls78_c00091{letter-spacing:-0.161460px;}
.ls82_c00091{letter-spacing:-0.070200px;}
.ls8f_c00091{letter-spacing:-0.063180px;}
.ls85_c00091{letter-spacing:-0.056160px;}
.ls84_c00091{letter-spacing:-0.028080px;}
.ls6b_c00091{letter-spacing:-0.007020px;}
.ls6d_c00091{letter-spacing:0.000000px;}
.ls8a_c00091{letter-spacing:0.007020px;}
.ls1e_c00091{letter-spacing:0.105300px;}
.ls3d_c00091{letter-spacing:0.126360px;}
.ls55_c00091{letter-spacing:0.140400px;}
.ls6_c00091{letter-spacing:0.182520px;}
.ls5d_c00091{letter-spacing:0.196560px;}
.ls61_c00091{letter-spacing:0.210600px;}
.ls91_c00091{letter-spacing:0.224640px;}
.ls57_c00091{letter-spacing:0.252720px;}
.ls2c_c00091{letter-spacing:0.273780px;}
.lsd_c00091{letter-spacing:0.287820px;}
.ls4a_c00091{letter-spacing:0.393120px;}
.ls2f_c00091{letter-spacing:0.414180px;}
.ls1b_c00091{letter-spacing:0.442260px;}
.ls33_c00091{letter-spacing:0.456300px;}
.ls29_c00091{letter-spacing:0.463320px;}
.ls6e_c00091{letter-spacing:0.470340px;}
.ls3e_c00091{letter-spacing:0.484380px;}
.ls28_c00091{letter-spacing:0.491400px;}
.ls10_c00091{letter-spacing:0.498420px;}
.ls40_c00091{letter-spacing:0.505440px;}
.ls32_c00091{letter-spacing:0.526500px;}
.ls44_c00091{letter-spacing:0.533520px;}
.ls42_c00091{letter-spacing:0.540540px;}
.ls47_c00091{letter-spacing:0.547560px;}
.ls17_c00091{letter-spacing:0.561600px;}
.ls1_c00091{letter-spacing:0.568620px;}
.ls58_c00091{letter-spacing:0.582660px;}
.ls5a_c00091{letter-spacing:0.589680px;}
.ls46_c00091{letter-spacing:0.596700px;}
.ls5e_c00091{letter-spacing:0.603720px;}
.ls13_c00091{letter-spacing:0.610740px;}
.ls23_c00091{letter-spacing:0.631800px;}
.ls4d_c00091{letter-spacing:0.645840px;}
.ls52_c00091{letter-spacing:0.652860px;}
.ls49_c00091{letter-spacing:0.659880px;}
.ls59_c00091{letter-spacing:0.666900px;}
.lsc_c00091{letter-spacing:0.673920px;}
.ls14_c00091{letter-spacing:0.680940px;}
.ls3f_c00091{letter-spacing:0.687960px;}
.ls3a_c00091{letter-spacing:0.702000px;}
.ls2b_c00091{letter-spacing:0.709020px;}
.ls43_c00091{letter-spacing:0.716040px;}
.ls5b_c00091{letter-spacing:0.723060px;}
.ls80_c00091{letter-spacing:0.737100px;}
.ls1a_c00091{letter-spacing:0.744120px;}
.ls4b_c00091{letter-spacing:0.751140px;}
.ls3b_c00091{letter-spacing:0.758160px;}
.ls7e_c00091{letter-spacing:0.772200px;}
.lse_c00091{letter-spacing:0.779220px;}
.ls1f_c00091{letter-spacing:0.786240px;}
.lsb_c00091{letter-spacing:0.793260px;}
.ls53_c00091{letter-spacing:0.800280px;}
.ls62_c00091{letter-spacing:0.807300px;}
.ls19_c00091{letter-spacing:0.821340px;}
.ls56_c00091{letter-spacing:0.828360px;}
.ls2d_c00091{letter-spacing:0.835380px;}
.ls12_c00091{letter-spacing:0.849420px;}
.ls36_c00091{letter-spacing:0.856440px;}
.ls8b_c00091{letter-spacing:0.863460px;}
.ls2e_c00091{letter-spacing:0.870480px;}
.ls1c_c00091{letter-spacing:0.877500px;}
.ls5f_c00091{letter-spacing:0.884520px;}
.ls48_c00091{letter-spacing:0.898560px;}
.ls15_c00091{letter-spacing:0.905580px;}
.ls4f_c00091{letter-spacing:0.919620px;}
.ls27_c00091{letter-spacing:0.926640px;}
.lsa_c00091{letter-spacing:0.933660px;}
.ls4e_c00091{letter-spacing:0.940680px;}
.ls3c_c00091{letter-spacing:0.954720px;}
.ls2a_c00091{letter-spacing:0.968760px;}
.ls31_c00091{letter-spacing:0.975780px;}
.ls4c_c00091{letter-spacing:0.996840px;}
.ls41_c00091{letter-spacing:1.003860px;}
.ls1d_c00091{letter-spacing:1.010880px;}
.ls35_c00091{letter-spacing:1.067040px;}
.ls22_c00091{letter-spacing:1.095120px;}
.ls18_c00091{letter-spacing:1.130220px;}
.ls24_c00091{letter-spacing:1.137240px;}
.ls5_c00091{letter-spacing:1.165320px;}
.ls30_c00091{letter-spacing:1.172340px;}
.ls66_c00091{letter-spacing:1.207440px;}
.ls39_c00091{letter-spacing:1.214460px;}
.ls54_c00091{letter-spacing:1.235520px;}
.ls5c_c00091{letter-spacing:1.242540px;}
.ls21_c00091{letter-spacing:1.284660px;}
.lsf_c00091{letter-spacing:1.326780px;}
.ls38_c00091{letter-spacing:1.347840px;}
.ls34_c00091{letter-spacing:1.425060px;}
.ls63_c00091{letter-spacing:1.446120px;}
.ls26_c00091{letter-spacing:1.481220px;}
.ls3_c00091{letter-spacing:1.511640px;}
.ls50_c00091{letter-spacing:1.544400px;}
.ls25_c00091{letter-spacing:1.551420px;}
.ls72_c00091{letter-spacing:1.572480px;}
.ls4_c00091{letter-spacing:1.778400px;}
.ls51_c00091{letter-spacing:1.832220px;}
.ls45_c00091{letter-spacing:1.839240px;}
.ls2_c00091{letter-spacing:1.853640px;}
.ls9_c00091{letter-spacing:1.932300px;}
.ls64_c00091{letter-spacing:1.944540px;}
.ls16_c00091{letter-spacing:1.972620px;}
.ls37_c00091{letter-spacing:2.113020px;}
.ls0_c00091{letter-spacing:2.202480px;}
.ls65_c00091{letter-spacing:2.225340px;}
.ls69_c00091{letter-spacing:2.373480px;}
.ls11_c00091{letter-spacing:2.485080px;}
.ls60_c00091{letter-spacing:2.681640px;}
.ls67_c00091{letter-spacing:2.744280px;}
.ls76_c00091{letter-spacing:2.840820px;}
.ls7_c00091{letter-spacing:2.976420px;}
.ls8_c00091{letter-spacing:3.023880px;}
.ls74_c00091{letter-spacing:3.118800px;}
.ls20_c00091{letter-spacing:3.208140px;}
.ls75_c00091{letter-spacing:3.390000px;}
.ls6c_c00091{letter-spacing:3.420000px;}
.ls81_c00091{letter-spacing:3.510000px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{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__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00091{word-spacing:0.000000px;}
._19_c00091{margin-left:-5.433480px;}
._4_c00091{margin-left:-3.313440px;}
._8_c00091{margin-left:-1.720860px;}
._7_c00091{width:1.356000px;}
._3_c00091{width:2.729160px;}
._0_c00091{width:3.963600px;}
._2_c00091{width:5.550000px;}
._5_c00091{width:6.779160px;}
._a_c00091{width:7.855380px;}
._1_c00091{width:8.985600px;}
._6_c00091{width:10.868280px;}
._9_c00091{width:12.264060px;}
._17_c00091{width:13.569540px;}
._16_c00091{width:15.554700px;}
._11_c00091{width:16.855020px;}
._18_c00091{width:18.673620px;}
._10_c00091{width:19.712160px;}
._d_c00091{width:20.997000px;}
._c_c00091{width:23.102820px;}
._b_c00091{width:24.162840px;}
._f_c00091{width:25.482420px;}
._e_c00091{width:28.108080px;}
._15_c00091{width:37.978200px;}
._13_c00091{width:40.238640px;}
._12_c00091{width:42.232320px;}
._14_c00091{width:43.783740px;}
.fc0_c00091{color:transparent;}
.fs0_c00091{font-size:59.400000px;}
.fs7_c00091{font-size:61.200000px;}
.fs6_c00091{font-size:67.200000px;}
.fs4_c00091{font-size:67.800000px;}
.fs1_c00091{font-size:68.400000px;}
.fs2_c00091{font-size:70.200000px;}
.fs5_c00091{font-size:73.800000px;}
.fs3_c00091{font-size:74.400000px;}
.y0_c00091{bottom:0.000000px;}
.y1b_c00091{bottom:59.400000px;}
.y1a_c00091{bottom:215.640000px;}
.y19_c00091{bottom:246.607800px;}
.y18_c00091{bottom:277.215000px;}
.y17_c00091{bottom:307.815750px;}
.y16_c00091{bottom:338.773950px;}
.y15_c00091{bottom:400.339350px;}
.y14_c00091{bottom:431.287800px;}
.y13_c00091{bottom:461.884650px;}
.y12_c00091{bottom:492.842850px;}
.y11_c00091{bottom:523.801050px;}
.y10_c00091{bottom:554.408250px;}
.yf_c00091{bottom:585.736350px;}
.ye_c00091{bottom:615.975000px;}
.yd_c00091{bottom:677.900400px;}
.yc_c00091{bottom:708.858600px;}
.yb_c00091{bottom:739.816800px;}
.ya_c00091{bottom:770.775000px;}
.y9_c00091{bottom:801.727800px;}
.y8_c00091{bottom:832.335000px;}
.y7_c00091{bottom:894.240000px;}
.y6_c00091{bottom:954.721050px;}
.y5_c00091{bottom:1016.655000px;}
.y4_c00091{bottom:1047.615000px;}
.y3_c00091{bottom:1078.560000px;}
.y2_c00091{bottom:1109.175000px;}
.y1_c00091{bottom:1184.775000px;}
.h2_c00091{height:58.297852px;}
.h8_c00091{height:66.541992px;}
.h4_c00091{height:67.097461px;}
.h3_c00091{height:68.897461px;}
.ha_c00091{height:70.056300px;}
.h9_c00091{height:70.087500px;}
.h7_c00091{height:70.744237px;}
.hc_c00091{height:72.399464px;}
.h6_c00091{height:72.430664px;}
.hb_c00091{height:72.472064px;}
.h5_c00091{height:73.019531px;}
.h1_c00091{height:1263.000000px;}
.h0_c00091{height:1263.240000px;}
.w1_c00091{width:892.500000px;}
.w0_c00091{width:892.800000px;}
.x0_c00091{left:0.000000px;}
.xe_c00091{left:116.310000px;}
.xd_c00091{left:117.880950px;}
.x1_c00091{left:119.085000px;}
.xf_c00091{left:145.110000px;}
.xb_c00091{left:182.415000px;}
.x2_c00091{left:183.615000px;}
.xc_c00091{left:216.525000px;}
.x5_c00091{left:292.305000px;}
.x3_c00091{left:357.405000px;}
.x6_c00091{left:364.440000px;}
.x9_c00091{left:366.510000px;}
.x10_c00091{left:422.025000px;}
.x4_c00091{left:439.305000px;}
.xa_c00091{left:445.140000px;}
.x7_c00091{left:598.245000px;}
.x8_c00091{left:626.670000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls6a_c00091{letter-spacing:-2.314667pt;}
.ls6f_c00091{letter-spacing:-2.184000pt;}
.ls70_c00091{letter-spacing:-2.140320pt;}
.ls83_c00091{letter-spacing:-1.959360pt;}
.ls7f_c00091{letter-spacing:-1.909440pt;}
.ls92_c00091{letter-spacing:-1.848000pt;}
.ls7a_c00091{letter-spacing:-1.453920pt;}
.ls8c_c00091{letter-spacing:-1.372800pt;}
.ls73_c00091{letter-spacing:-1.054560pt;}
.ls87_c00091{letter-spacing:-0.842400pt;}
.ls8d_c00091{letter-spacing:-0.730080pt;}
.ls7d_c00091{letter-spacing:-0.705120pt;}
.ls7c_c00091{letter-spacing:-0.680160pt;}
.ls89_c00091{letter-spacing:-0.661440pt;}
.ls71_c00091{letter-spacing:-0.474240pt;}
.ls7b_c00091{letter-spacing:-0.455520pt;}
.ls68_c00091{letter-spacing:-0.436800pt;}
.ls79_c00091{letter-spacing:-0.418080pt;}
.ls86_c00091{letter-spacing:-0.318240pt;}
.ls88_c00091{letter-spacing:-0.237120pt;}
.ls8e_c00091{letter-spacing:-0.224640pt;}
.ls77_c00091{letter-spacing:-0.205920pt;}
.ls90_c00091{letter-spacing:-0.174720pt;}
.ls78_c00091{letter-spacing:-0.143520pt;}
.ls82_c00091{letter-spacing:-0.062400pt;}
.ls8f_c00091{letter-spacing:-0.056160pt;}
.ls85_c00091{letter-spacing:-0.049920pt;}
.ls84_c00091{letter-spacing:-0.024960pt;}
.ls6b_c00091{letter-spacing:-0.006240pt;}
.ls6d_c00091{letter-spacing:0.000000pt;}
.ls8a_c00091{letter-spacing:0.006240pt;}
.ls1e_c00091{letter-spacing:0.093600pt;}
.ls3d_c00091{letter-spacing:0.112320pt;}
.ls55_c00091{letter-spacing:0.124800pt;}
.ls6_c00091{letter-spacing:0.162240pt;}
.ls5d_c00091{letter-spacing:0.174720pt;}
.ls61_c00091{letter-spacing:0.187200pt;}
.ls91_c00091{letter-spacing:0.199680pt;}
.ls57_c00091{letter-spacing:0.224640pt;}
.ls2c_c00091{letter-spacing:0.243360pt;}
.lsd_c00091{letter-spacing:0.255840pt;}
.ls4a_c00091{letter-spacing:0.349440pt;}
.ls2f_c00091{letter-spacing:0.368160pt;}
.ls1b_c00091{letter-spacing:0.393120pt;}
.ls33_c00091{letter-spacing:0.405600pt;}
.ls29_c00091{letter-spacing:0.411840pt;}
.ls6e_c00091{letter-spacing:0.418080pt;}
.ls3e_c00091{letter-spacing:0.430560pt;}
.ls28_c00091{letter-spacing:0.436800pt;}
.ls10_c00091{letter-spacing:0.443040pt;}
.ls40_c00091{letter-spacing:0.449280pt;}
.ls32_c00091{letter-spacing:0.468000pt;}
.ls44_c00091{letter-spacing:0.474240pt;}
.ls42_c00091{letter-spacing:0.480480pt;}
.ls47_c00091{letter-spacing:0.486720pt;}
.ls17_c00091{letter-spacing:0.499200pt;}
.ls1_c00091{letter-spacing:0.505440pt;}
.ls58_c00091{letter-spacing:0.517920pt;}
.ls5a_c00091{letter-spacing:0.524160pt;}
.ls46_c00091{letter-spacing:0.530400pt;}
.ls5e_c00091{letter-spacing:0.536640pt;}
.ls13_c00091{letter-spacing:0.542880pt;}
.ls23_c00091{letter-spacing:0.561600pt;}
.ls4d_c00091{letter-spacing:0.574080pt;}
.ls52_c00091{letter-spacing:0.580320pt;}
.ls49_c00091{letter-spacing:0.586560pt;}
.ls59_c00091{letter-spacing:0.592800pt;}
.lsc_c00091{letter-spacing:0.599040pt;}
.ls14_c00091{letter-spacing:0.605280pt;}
.ls3f_c00091{letter-spacing:0.611520pt;}
.ls3a_c00091{letter-spacing:0.624000pt;}
.ls2b_c00091{letter-spacing:0.630240pt;}
.ls43_c00091{letter-spacing:0.636480pt;}
.ls5b_c00091{letter-spacing:0.642720pt;}
.ls80_c00091{letter-spacing:0.655200pt;}
.ls1a_c00091{letter-spacing:0.661440pt;}
.ls4b_c00091{letter-spacing:0.667680pt;}
.ls3b_c00091{letter-spacing:0.673920pt;}
.ls7e_c00091{letter-spacing:0.686400pt;}
.lse_c00091{letter-spacing:0.692640pt;}
.ls1f_c00091{letter-spacing:0.698880pt;}
.lsb_c00091{letter-spacing:0.705120pt;}
.ls53_c00091{letter-spacing:0.711360pt;}
.ls62_c00091{letter-spacing:0.717600pt;}
.ls19_c00091{letter-spacing:0.730080pt;}
.ls56_c00091{letter-spacing:0.736320pt;}
.ls2d_c00091{letter-spacing:0.742560pt;}
.ls12_c00091{letter-spacing:0.755040pt;}
.ls36_c00091{letter-spacing:0.761280pt;}
.ls8b_c00091{letter-spacing:0.767520pt;}
.ls2e_c00091{letter-spacing:0.773760pt;}
.ls1c_c00091{letter-spacing:0.780000pt;}
.ls5f_c00091{letter-spacing:0.786240pt;}
.ls48_c00091{letter-spacing:0.798720pt;}
.ls15_c00091{letter-spacing:0.804960pt;}
.ls4f_c00091{letter-spacing:0.817440pt;}
.ls27_c00091{letter-spacing:0.823680pt;}
.lsa_c00091{letter-spacing:0.829920pt;}
.ls4e_c00091{letter-spacing:0.836160pt;}
.ls3c_c00091{letter-spacing:0.848640pt;}
.ls2a_c00091{letter-spacing:0.861120pt;}
.ls31_c00091{letter-spacing:0.867360pt;}
.ls4c_c00091{letter-spacing:0.886080pt;}
.ls41_c00091{letter-spacing:0.892320pt;}
.ls1d_c00091{letter-spacing:0.898560pt;}
.ls35_c00091{letter-spacing:0.948480pt;}
.ls22_c00091{letter-spacing:0.973440pt;}
.ls18_c00091{letter-spacing:1.004640pt;}
.ls24_c00091{letter-spacing:1.010880pt;}
.ls5_c00091{letter-spacing:1.035840pt;}
.ls30_c00091{letter-spacing:1.042080pt;}
.ls66_c00091{letter-spacing:1.073280pt;}
.ls39_c00091{letter-spacing:1.079520pt;}
.ls54_c00091{letter-spacing:1.098240pt;}
.ls5c_c00091{letter-spacing:1.104480pt;}
.ls21_c00091{letter-spacing:1.141920pt;}
.lsf_c00091{letter-spacing:1.179360pt;}
.ls38_c00091{letter-spacing:1.198080pt;}
.ls34_c00091{letter-spacing:1.266720pt;}
.ls63_c00091{letter-spacing:1.285440pt;}
.ls26_c00091{letter-spacing:1.316640pt;}
.ls3_c00091{letter-spacing:1.343680pt;}
.ls50_c00091{letter-spacing:1.372800pt;}
.ls25_c00091{letter-spacing:1.379040pt;}
.ls72_c00091{letter-spacing:1.397760pt;}
.ls4_c00091{letter-spacing:1.580800pt;}
.ls51_c00091{letter-spacing:1.628640pt;}
.ls45_c00091{letter-spacing:1.634880pt;}
.ls2_c00091{letter-spacing:1.647680pt;}
.ls9_c00091{letter-spacing:1.717600pt;}
.ls64_c00091{letter-spacing:1.728480pt;}
.ls16_c00091{letter-spacing:1.753440pt;}
.ls37_c00091{letter-spacing:1.878240pt;}
.ls0_c00091{letter-spacing:1.957760pt;}
.ls65_c00091{letter-spacing:1.978080pt;}
.ls69_c00091{letter-spacing:2.109760pt;}
.ls11_c00091{letter-spacing:2.208960pt;}
.ls60_c00091{letter-spacing:2.383680pt;}
.ls67_c00091{letter-spacing:2.439360pt;}
.ls76_c00091{letter-spacing:2.525173pt;}
.ls7_c00091{letter-spacing:2.645707pt;}
.ls8_c00091{letter-spacing:2.687893pt;}
.ls74_c00091{letter-spacing:2.772267pt;}
.ls20_c00091{letter-spacing:2.851680pt;}
.ls75_c00091{letter-spacing:3.013333pt;}
.ls6c_c00091{letter-spacing:3.040000pt;}
.ls81_c00091{letter-spacing:3.120000pt;}
.ws0_c00091{word-spacing:0.000000pt;}
._19_c00091{margin-left:-4.829760pt;}
._4_c00091{margin-left:-2.945280pt;}
._8_c00091{margin-left:-1.529653pt;}
._7_c00091{width:1.205333pt;}
._3_c00091{width:2.425920pt;}
._0_c00091{width:3.523200pt;}
._2_c00091{width:4.933333pt;}
._5_c00091{width:6.025920pt;}
._a_c00091{width:6.982560pt;}
._1_c00091{width:7.987200pt;}
._6_c00091{width:9.660693pt;}
._9_c00091{width:10.901387pt;}
._17_c00091{width:12.061813pt;}
._16_c00091{width:13.826400pt;}
._11_c00091{width:14.982240pt;}
._18_c00091{width:16.598773pt;}
._10_c00091{width:17.521920pt;}
._d_c00091{width:18.664000pt;}
._c_c00091{width:20.535840pt;}
._b_c00091{width:21.478080pt;}
._f_c00091{width:22.651040pt;}
._e_c00091{width:24.984960pt;}
._15_c00091{width:33.758400pt;}
._13_c00091{width:35.767680pt;}
._12_c00091{width:37.539840pt;}
._14_c00091{width:38.918880pt;}
.fs0_c00091{font-size:52.800000pt;}
.fs7_c00091{font-size:54.400000pt;}
.fs6_c00091{font-size:59.733333pt;}
.fs4_c00091{font-size:60.266667pt;}
.fs1_c00091{font-size:60.800000pt;}
.fs2_c00091{font-size:62.400000pt;}
.fs5_c00091{font-size:65.600000pt;}
.fs3_c00091{font-size:66.133333pt;}
.y0_c00091{bottom:0.000000pt;}
.y1b_c00091{bottom:52.800000pt;}
.y1a_c00091{bottom:191.680000pt;}
.y19_c00091{bottom:219.206933pt;}
.y18_c00091{bottom:246.413333pt;}
.y17_c00091{bottom:273.614000pt;}
.y16_c00091{bottom:301.132400pt;}
.y15_c00091{bottom:355.857200pt;}
.y14_c00091{bottom:383.366933pt;}
.y13_c00091{bottom:410.564133pt;}
.y12_c00091{bottom:438.082533pt;}
.y11_c00091{bottom:465.600933pt;}
.y10_c00091{bottom:492.807333pt;}
.yf_c00091{bottom:520.654533pt;}
.ye_c00091{bottom:547.533333pt;}
.yd_c00091{bottom:602.578133pt;}
.yc_c00091{bottom:630.096533pt;}
.yb_c00091{bottom:657.614933pt;}
.ya_c00091{bottom:685.133333pt;}
.y9_c00091{bottom:712.646933pt;}
.y8_c00091{bottom:739.853333pt;}
.y7_c00091{bottom:794.880000pt;}
.y6_c00091{bottom:848.640933pt;}
.y5_c00091{bottom:903.693333pt;}
.y4_c00091{bottom:931.213333pt;}
.y3_c00091{bottom:958.720000pt;}
.y2_c00091{bottom:985.933333pt;}
.y1_c00091{bottom:1053.133333pt;}
.h2_c00091{height:51.820312pt;}
.h8_c00091{height:59.148438pt;}
.h4_c00091{height:59.642187pt;}
.h3_c00091{height:61.242187pt;}
.ha_c00091{height:62.272267pt;}
.h9_c00091{height:62.300000pt;}
.h7_c00091{height:62.883767pt;}
.hc_c00091{height:64.355079pt;}
.h6_c00091{height:64.382813pt;}
.hb_c00091{height:64.419613pt;}
.h5_c00091{height:64.906250pt;}
.h1_c00091{height:1122.666667pt;}
.h0_c00091{height:1122.880000pt;}
.w1_c00091{width:793.333333pt;}
.w0_c00091{width:793.600000pt;}
.x0_c00091{left:0.000000pt;}
.xe_c00091{left:103.386667pt;}
.xd_c00091{left:104.783067pt;}
.x1_c00091{left:105.853333pt;}
.xf_c00091{left:128.986667pt;}
.xb_c00091{left:162.146667pt;}
.x2_c00091{left:163.213333pt;}
.xc_c00091{left:192.466667pt;}
.x5_c00091{left:259.826667pt;}
.x3_c00091{left:317.693333pt;}
.x6_c00091{left:323.946667pt;}
.x9_c00091{left:325.786667pt;}
.x10_c00091{left:375.133333pt;}
.x4_c00091{left:390.493333pt;}
.xa_c00091{left:395.680000pt;}
.x7_c00091{left:531.773333pt;}
.x8_c00091{left:557.040000pt;}
}





/* 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_c00092 {
    display:none;
  }
  .loading-indicator_c00092.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00092 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_c00092 { 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_c00092" -> "#page-container .classname_c00092")
 */
.pf_c00092 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00092 { /* 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_c00092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00092 { /* 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_c00092 { /* 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_c00092 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00092 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00092 {overflow:visible;}
  }
}
.c_c00092 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00092 { /* 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_c00092:after { /* webkit #35443 */
  content: '';
}
.t_c00092:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00092 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 */
}
.__c00092 { /* 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_c00092 { /* info for Javascript */
  display:none;
}
.l_c00092 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00092 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00092 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00092: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_c00092 {
    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_c00092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00092.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_c00092 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00092;src:url('chunks/assets/font_a80c6068fa020bd1dc9082c8.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.284668;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_c00092;src:url('chunks/assets/font_2afe9c7376191cc3fc3f81f1.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;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;}
.m1_c00092{transform:matrix(0.244858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244858,0.000000,0.000000,0.250000,0,0);}
.m2_c00092{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m0_c00092{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);}
.v0_c00092{vertical-align:0.000000px;}
.ls56_c00092{letter-spacing:-2.520000px;}
.ls53_c00092{letter-spacing:-2.448000px;}
.ls7d_c00092{letter-spacing:-2.415000px;}
.ls69_c00092{letter-spacing:-2.080800px;}
.ls6d_c00092{letter-spacing:-1.922400px;}
.ls5f_c00092{letter-spacing:-1.828800px;}
.ls67_c00092{letter-spacing:-1.785600px;}
.ls6b_c00092{letter-spacing:-1.764000px;}
.ls83_c00092{letter-spacing:-1.454400px;}
.ls54_c00092{letter-spacing:-1.216800px;}
.ls6f_c00092{letter-spacing:-1.202400px;}
.ls8a_c00092{letter-spacing:-1.116000px;}
.ls7b_c00092{letter-spacing:-1.108800px;}
.ls5b_c00092{letter-spacing:-1.008000px;}
.ls74_c00092{letter-spacing:-0.878400px;}
.ls7a_c00092{letter-spacing:-0.813600px;}
.ls8b_c00092{letter-spacing:-0.784800px;}
.ls82_c00092{letter-spacing:-0.777600px;}
.ls7c_c00092{letter-spacing:-0.770400px;}
.ls87_c00092{letter-spacing:-0.765180px;}
.ls70_c00092{letter-spacing:-0.748800px;}
.ls61_c00092{letter-spacing:-0.734400px;}
.ls76_c00092{letter-spacing:-0.640800px;}
.ls8c_c00092{letter-spacing:-0.604800px;}
.ls8e_c00092{letter-spacing:-0.576240px;}
.ls84_c00092{letter-spacing:-0.504000px;}
.ls79_c00092{letter-spacing:-0.496800px;}
.ls75_c00092{letter-spacing:-0.489600px;}
.ls62_c00092{letter-spacing:-0.482400px;}
.ls63_c00092{letter-spacing:-0.460800px;}
.ls80_c00092{letter-spacing:-0.439200px;}
.ls59_c00092{letter-spacing:-0.424800px;}
.ls6a_c00092{letter-spacing:-0.403200px;}
.ls81_c00092{letter-spacing:-0.396000px;}
.ls5c_c00092{letter-spacing:-0.345600px;}
.ls6c_c00092{letter-spacing:-0.338400px;}
.ls5a_c00092{letter-spacing:-0.324000px;}
.ls60_c00092{letter-spacing:-0.295200px;}
.ls8d_c00092{letter-spacing:-0.280800px;}
.ls64_c00092{letter-spacing:-0.237600px;}
.ls5e_c00092{letter-spacing:-0.230400px;}
.ls86_c00092{letter-spacing:-0.196560px;}
.ls6e_c00092{letter-spacing:-0.172800px;}
.ls77_c00092{letter-spacing:-0.165600px;}
.ls5d_c00092{letter-spacing:-0.151200px;}
.ls7e_c00092{letter-spacing:-0.144000px;}
.ls71_c00092{letter-spacing:-0.129600px;}
.ls7f_c00092{letter-spacing:-0.108000px;}
.ls65_c00092{letter-spacing:-0.086400px;}
.ls55_c00092{letter-spacing:-0.072000px;}
.ls88_c00092{letter-spacing:-0.070200px;}
.ls57_c00092{letter-spacing:-0.050400px;}
.ls72_c00092{letter-spacing:-0.028800px;}
.ls68_c00092{letter-spacing:-0.014400px;}
.ls58_c00092{letter-spacing:0.000000px;}
.ls10_c00092{letter-spacing:0.014400px;}
.ls26_c00092{letter-spacing:0.021600px;}
.ls85_c00092{letter-spacing:0.028800px;}
.ls16_c00092{letter-spacing:0.036000px;}
.ls3_c00092{letter-spacing:0.043200px;}
.ls50_c00092{letter-spacing:0.057600px;}
.ls2_c00092{letter-spacing:0.064800px;}
.ls1d_c00092{letter-spacing:0.072000px;}
.ls1a_c00092{letter-spacing:0.079200px;}
.ls2c_c00092{letter-spacing:0.086400px;}
.ls17_c00092{letter-spacing:0.100800px;}
.ls38_c00092{letter-spacing:0.108000px;}
.ls4a_c00092{letter-spacing:0.115200px;}
.ls2a_c00092{letter-spacing:0.122400px;}
.ls13_c00092{letter-spacing:0.129600px;}
.ls24_c00092{letter-spacing:0.136800px;}
.ls45_c00092{letter-spacing:0.144000px;}
.ls40_c00092{letter-spacing:0.151200px;}
.ls49_c00092{letter-spacing:0.158400px;}
.ls6_c00092{letter-spacing:0.165600px;}
.ls28_c00092{letter-spacing:0.180000px;}
.ls3c_c00092{letter-spacing:0.187200px;}
.lsc_c00092{letter-spacing:0.194400px;}
.ls2b_c00092{letter-spacing:0.201600px;}
.ls30_c00092{letter-spacing:0.216000px;}
.ls78_c00092{letter-spacing:0.223200px;}
.ls27_c00092{letter-spacing:0.230400px;}
.ls18_c00092{letter-spacing:0.237600px;}
.ls32_c00092{letter-spacing:0.244800px;}
.ls20_c00092{letter-spacing:0.259200px;}
.ls15_c00092{letter-spacing:0.266400px;}
.ls19_c00092{letter-spacing:0.273600px;}
.ls33_c00092{letter-spacing:0.280800px;}
.lsa_c00092{letter-spacing:0.295200px;}
.ls43_c00092{letter-spacing:0.302400px;}
.ls23_c00092{letter-spacing:0.309600px;}
.ls46_c00092{letter-spacing:0.324000px;}
.ls22_c00092{letter-spacing:0.331200px;}
.ls1c_c00092{letter-spacing:0.338400px;}
.lsf_c00092{letter-spacing:0.345600px;}
.ls5_c00092{letter-spacing:0.367200px;}
.ls2e_c00092{letter-spacing:0.381600px;}
.ls9_c00092{letter-spacing:0.388800px;}
.ls1e_c00092{letter-spacing:0.396000px;}
.ls34_c00092{letter-spacing:0.410400px;}
.ls3b_c00092{letter-spacing:0.417600px;}
.ls3d_c00092{letter-spacing:0.432000px;}
.ls14_c00092{letter-spacing:0.446400px;}
.ls31_c00092{letter-spacing:0.468000px;}
.lse_c00092{letter-spacing:0.475200px;}
.ls2f_c00092{letter-spacing:0.489600px;}
.ls2d_c00092{letter-spacing:0.496800px;}
.ls47_c00092{letter-spacing:0.518400px;}
.ls36_c00092{letter-spacing:0.525600px;}
.ls39_c00092{letter-spacing:0.547200px;}
.ls3e_c00092{letter-spacing:0.554400px;}
.ls89_c00092{letter-spacing:0.568620px;}
.ls7_c00092{letter-spacing:0.568800px;}
.ls66_c00092{letter-spacing:0.604800px;}
.ls35_c00092{letter-spacing:0.619200px;}
.ls48_c00092{letter-spacing:0.626400px;}
.ls1_c00092{letter-spacing:0.633600px;}
.ls4_c00092{letter-spacing:0.705600px;}
.lsb_c00092{letter-spacing:0.712800px;}
.ls1b_c00092{letter-spacing:0.727200px;}
.ls25_c00092{letter-spacing:0.748800px;}
.ls29_c00092{letter-spacing:0.756000px;}
.ls41_c00092{letter-spacing:0.777600px;}
.ls11_c00092{letter-spacing:0.871200px;}
.ls44_c00092{letter-spacing:0.892800px;}
.ls4d_c00092{letter-spacing:0.954720px;}
.ls8_c00092{letter-spacing:1.094400px;}
.ls1f_c00092{letter-spacing:1.101600px;}
.ls4b_c00092{letter-spacing:1.165320px;}
.ls4c_c00092{letter-spacing:1.186380px;}
.ls0_c00092{letter-spacing:1.188000px;}
.ls3f_c00092{letter-spacing:1.202400px;}
.ls37_c00092{letter-spacing:1.209600px;}
.ls52_c00092{letter-spacing:1.285200px;}
.ls51_c00092{letter-spacing:1.296000px;}
.ls3a_c00092{letter-spacing:1.353600px;}
.ls12_c00092{letter-spacing:1.461600px;}
.ls73_c00092{letter-spacing:1.483200px;}
.ls21_c00092{letter-spacing:1.504800px;}
.lsd_c00092{letter-spacing:1.620000px;}
.ls42_c00092{letter-spacing:1.641600px;}
.ls4f_c00092{letter-spacing:1.663740px;}
.ls4e_c00092{letter-spacing:1.846260px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{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__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00092{word-spacing:0.000000px;}
.ws2_c00092{word-spacing:0.898560px;}
.ws3_c00092{word-spacing:1.080000px;}
.ws0_c00092{word-spacing:1.152000px;}
.ws1_c00092{word-spacing:1.195200px;}
._16_c00092{margin-left:-3.722400px;}
._17_c00092{margin-left:-2.433600px;}
._0_c00092{margin-left:-1.188000px;}
._1_c00092{width:1.569600px;}
._18_c00092{width:2.599200px;}
._6_c00092{width:3.715200px;}
._7_c00092{width:4.795200px;}
._4_c00092{width:6.199200px;}
._8_c00092{width:7.581600px;}
._3_c00092{width:8.899200px;}
._5_c00092{width:10.569600px;}
._2_c00092{width:12.168000px;}
._15_c00092{width:13.500000px;}
._c_c00092{width:14.536800px;}
._e_c00092{width:15.782400px;}
._b_c00092{width:17.006400px;}
._f_c00092{width:19.288800px;}
._a_c00092{width:20.563200px;}
._9_c00092{width:22.248000px;}
._d_c00092{width:24.264000px;}
._11_c00092{width:30.484800px;}
._10_c00092{width:31.946400px;}
._12_c00092{width:33.120000px;}
._13_c00092{width:35.373600px;}
._14_c00092{width:36.979200px;}
.fc0_c00092{color:transparent;}
.fs4_c00092{font-size:58.800000px;}
.fs0_c00092{font-size:61.200000px;}
.fs6_c00092{font-size:66.000000px;}
.fs2_c00092{font-size:69.000000px;}
.fs3_c00092{font-size:70.200000px;}
.fs1_c00092{font-size:72.000000px;}
.fs5_c00092{font-size:76.800000px;}
.y0_c00092{bottom:0.000000px;}
.y1d_c00092{bottom:66.255015px;}
.y1c_c00092{bottom:128.157015px;}
.y1b_c00092{bottom:189.735015px;}
.y1a_c00092{bottom:251.655015px;}
.y19_c00092{bottom:282.615015px;}
.y18_c00092{bottom:313.215015px;}
.y17_c00092{bottom:344.535015px;}
.y16_c00092{bottom:375.858015px;}
.y15_c00092{bottom:437.400015px;}
.y13_c00092{bottom:498.597015px;}
.y14_c00092{bottom:498.600015px;}
.y12_c00092{bottom:529.215015px;}
.y11_c00092{bottom:560.517015px;}
.y1f_c00092{bottom:615.255015px;}
.y1e_c00092{bottom:618.840015px;}
.y10_c00092{bottom:622.815015px;}
.yf_c00092{bottom:653.757015px;}
.ye_c00092{bottom:684.735015px;}
.yd_c00092{bottom:746.295015px;}
.yc_c00092{bottom:777.597015px;}
.yb_c00092{bottom:808.575015px;}
.ya_c00092{bottom:840.255015px;}
.y9_c00092{bottom:870.855015px;}
.y8_c00092{bottom:932.757015px;}
.y7_c00092{bottom:963.375015px;}
.y6_c00092{bottom:994.335015px;}
.y5_c00092{bottom:1025.277015px;}
.y4_c00092{bottom:1055.895015px;}
.y3_c00092{bottom:1086.855015px;}
.y2_c00092{bottom:1118.175015px;}
.y1_c00092{bottom:1195.215015px;}
.h5_c00092{height:57.708984px;}
.h2_c00092{height:60.064453px;}
.h7_c00092{height:68.835938px;}
.h3_c00092{height:70.664062px;}
.h4_c00092{height:71.964844px;}
.h6_c00092{height:80.100000px;}
.h1_c00092{height:1263.000000px;}
.h0_c00092{height:1263.240015px;}
.w1_c00092{width:892.500000px;}
.w0_c00092{width:892.800000px;}
.x0_c00092{left:0.000000px;}
.xa_c00092{left:121.242000px;}
.x8_c00092{left:122.538000px;}
.x6_c00092{left:123.636000px;}
.x5_c00092{left:125.232000px;}
.x1_c00092{left:126.285000px;}
.xe_c00092{left:184.623000px;}
.x9_c00092{left:186.312000px;}
.x7_c00092{left:187.518000px;}
.x2_c00092{left:189.885000px;}
.xb_c00092{left:200.700000px;}
.xd_c00092{left:207.645000px;}
.xc_c00092{left:218.265000px;}
.x3_c00092{left:378.525000px;}
.x4_c00092{left:406.410000px;}
.xf_c00092{left:428.505000px;}
.x11_c00092{left:850.095000px;}
.x10_c00092{left:851.145000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls56_c00092{letter-spacing:-2.240000pt;}
.ls53_c00092{letter-spacing:-2.176000pt;}
.ls7d_c00092{letter-spacing:-2.146667pt;}
.ls69_c00092{letter-spacing:-1.849600pt;}
.ls6d_c00092{letter-spacing:-1.708800pt;}
.ls5f_c00092{letter-spacing:-1.625600pt;}
.ls67_c00092{letter-spacing:-1.587200pt;}
.ls6b_c00092{letter-spacing:-1.568000pt;}
.ls83_c00092{letter-spacing:-1.292800pt;}
.ls54_c00092{letter-spacing:-1.081600pt;}
.ls6f_c00092{letter-spacing:-1.068800pt;}
.ls8a_c00092{letter-spacing:-0.992000pt;}
.ls7b_c00092{letter-spacing:-0.985600pt;}
.ls5b_c00092{letter-spacing:-0.896000pt;}
.ls74_c00092{letter-spacing:-0.780800pt;}
.ls7a_c00092{letter-spacing:-0.723200pt;}
.ls8b_c00092{letter-spacing:-0.697600pt;}
.ls82_c00092{letter-spacing:-0.691200pt;}
.ls7c_c00092{letter-spacing:-0.684800pt;}
.ls87_c00092{letter-spacing:-0.680160pt;}
.ls70_c00092{letter-spacing:-0.665600pt;}
.ls61_c00092{letter-spacing:-0.652800pt;}
.ls76_c00092{letter-spacing:-0.569600pt;}
.ls8c_c00092{letter-spacing:-0.537600pt;}
.ls8e_c00092{letter-spacing:-0.512213pt;}
.ls84_c00092{letter-spacing:-0.448000pt;}
.ls79_c00092{letter-spacing:-0.441600pt;}
.ls75_c00092{letter-spacing:-0.435200pt;}
.ls62_c00092{letter-spacing:-0.428800pt;}
.ls63_c00092{letter-spacing:-0.409600pt;}
.ls80_c00092{letter-spacing:-0.390400pt;}
.ls59_c00092{letter-spacing:-0.377600pt;}
.ls6a_c00092{letter-spacing:-0.358400pt;}
.ls81_c00092{letter-spacing:-0.352000pt;}
.ls5c_c00092{letter-spacing:-0.307200pt;}
.ls6c_c00092{letter-spacing:-0.300800pt;}
.ls5a_c00092{letter-spacing:-0.288000pt;}
.ls60_c00092{letter-spacing:-0.262400pt;}
.ls8d_c00092{letter-spacing:-0.249600pt;}
.ls64_c00092{letter-spacing:-0.211200pt;}
.ls5e_c00092{letter-spacing:-0.204800pt;}
.ls86_c00092{letter-spacing:-0.174720pt;}
.ls6e_c00092{letter-spacing:-0.153600pt;}
.ls77_c00092{letter-spacing:-0.147200pt;}
.ls5d_c00092{letter-spacing:-0.134400pt;}
.ls7e_c00092{letter-spacing:-0.128000pt;}
.ls71_c00092{letter-spacing:-0.115200pt;}
.ls7f_c00092{letter-spacing:-0.096000pt;}
.ls65_c00092{letter-spacing:-0.076800pt;}
.ls55_c00092{letter-spacing:-0.064000pt;}
.ls88_c00092{letter-spacing:-0.062400pt;}
.ls57_c00092{letter-spacing:-0.044800pt;}
.ls72_c00092{letter-spacing:-0.025600pt;}
.ls68_c00092{letter-spacing:-0.012800pt;}
.ls58_c00092{letter-spacing:0.000000pt;}
.ls10_c00092{letter-spacing:0.012800pt;}
.ls26_c00092{letter-spacing:0.019200pt;}
.ls85_c00092{letter-spacing:0.025600pt;}
.ls16_c00092{letter-spacing:0.032000pt;}
.ls3_c00092{letter-spacing:0.038400pt;}
.ls50_c00092{letter-spacing:0.051200pt;}
.ls2_c00092{letter-spacing:0.057600pt;}
.ls1d_c00092{letter-spacing:0.064000pt;}
.ls1a_c00092{letter-spacing:0.070400pt;}
.ls2c_c00092{letter-spacing:0.076800pt;}
.ls17_c00092{letter-spacing:0.089600pt;}
.ls38_c00092{letter-spacing:0.096000pt;}
.ls4a_c00092{letter-spacing:0.102400pt;}
.ls2a_c00092{letter-spacing:0.108800pt;}
.ls13_c00092{letter-spacing:0.115200pt;}
.ls24_c00092{letter-spacing:0.121600pt;}
.ls45_c00092{letter-spacing:0.128000pt;}
.ls40_c00092{letter-spacing:0.134400pt;}
.ls49_c00092{letter-spacing:0.140800pt;}
.ls6_c00092{letter-spacing:0.147200pt;}
.ls28_c00092{letter-spacing:0.160000pt;}
.ls3c_c00092{letter-spacing:0.166400pt;}
.lsc_c00092{letter-spacing:0.172800pt;}
.ls2b_c00092{letter-spacing:0.179200pt;}
.ls30_c00092{letter-spacing:0.192000pt;}
.ls78_c00092{letter-spacing:0.198400pt;}
.ls27_c00092{letter-spacing:0.204800pt;}
.ls18_c00092{letter-spacing:0.211200pt;}
.ls32_c00092{letter-spacing:0.217600pt;}
.ls20_c00092{letter-spacing:0.230400pt;}
.ls15_c00092{letter-spacing:0.236800pt;}
.ls19_c00092{letter-spacing:0.243200pt;}
.ls33_c00092{letter-spacing:0.249600pt;}
.lsa_c00092{letter-spacing:0.262400pt;}
.ls43_c00092{letter-spacing:0.268800pt;}
.ls23_c00092{letter-spacing:0.275200pt;}
.ls46_c00092{letter-spacing:0.288000pt;}
.ls22_c00092{letter-spacing:0.294400pt;}
.ls1c_c00092{letter-spacing:0.300800pt;}
.lsf_c00092{letter-spacing:0.307200pt;}
.ls5_c00092{letter-spacing:0.326400pt;}
.ls2e_c00092{letter-spacing:0.339200pt;}
.ls9_c00092{letter-spacing:0.345600pt;}
.ls1e_c00092{letter-spacing:0.352000pt;}
.ls34_c00092{letter-spacing:0.364800pt;}
.ls3b_c00092{letter-spacing:0.371200pt;}
.ls3d_c00092{letter-spacing:0.384000pt;}
.ls14_c00092{letter-spacing:0.396800pt;}
.ls31_c00092{letter-spacing:0.416000pt;}
.lse_c00092{letter-spacing:0.422400pt;}
.ls2f_c00092{letter-spacing:0.435200pt;}
.ls2d_c00092{letter-spacing:0.441600pt;}
.ls47_c00092{letter-spacing:0.460800pt;}
.ls36_c00092{letter-spacing:0.467200pt;}
.ls39_c00092{letter-spacing:0.486400pt;}
.ls3e_c00092{letter-spacing:0.492800pt;}
.ls89_c00092{letter-spacing:0.505440pt;}
.ls7_c00092{letter-spacing:0.505600pt;}
.ls66_c00092{letter-spacing:0.537600pt;}
.ls35_c00092{letter-spacing:0.550400pt;}
.ls48_c00092{letter-spacing:0.556800pt;}
.ls1_c00092{letter-spacing:0.563200pt;}
.ls4_c00092{letter-spacing:0.627200pt;}
.lsb_c00092{letter-spacing:0.633600pt;}
.ls1b_c00092{letter-spacing:0.646400pt;}
.ls25_c00092{letter-spacing:0.665600pt;}
.ls29_c00092{letter-spacing:0.672000pt;}
.ls41_c00092{letter-spacing:0.691200pt;}
.ls11_c00092{letter-spacing:0.774400pt;}
.ls44_c00092{letter-spacing:0.793600pt;}
.ls4d_c00092{letter-spacing:0.848640pt;}
.ls8_c00092{letter-spacing:0.972800pt;}
.ls1f_c00092{letter-spacing:0.979200pt;}
.ls4b_c00092{letter-spacing:1.035840pt;}
.ls4c_c00092{letter-spacing:1.054560pt;}
.ls0_c00092{letter-spacing:1.056000pt;}
.ls3f_c00092{letter-spacing:1.068800pt;}
.ls37_c00092{letter-spacing:1.075200pt;}
.ls52_c00092{letter-spacing:1.142400pt;}
.ls51_c00092{letter-spacing:1.152000pt;}
.ls3a_c00092{letter-spacing:1.203200pt;}
.ls12_c00092{letter-spacing:1.299200pt;}
.ls73_c00092{letter-spacing:1.318400pt;}
.ls21_c00092{letter-spacing:1.337600pt;}
.lsd_c00092{letter-spacing:1.440000pt;}
.ls42_c00092{letter-spacing:1.459200pt;}
.ls4f_c00092{letter-spacing:1.478880pt;}
.ls4e_c00092{letter-spacing:1.641120pt;}
.ws4_c00092{word-spacing:0.000000pt;}
.ws2_c00092{word-spacing:0.798720pt;}
.ws3_c00092{word-spacing:0.960000pt;}
.ws0_c00092{word-spacing:1.024000pt;}
.ws1_c00092{word-spacing:1.062400pt;}
._16_c00092{margin-left:-3.308800pt;}
._17_c00092{margin-left:-2.163200pt;}
._0_c00092{margin-left:-1.056000pt;}
._1_c00092{width:1.395200pt;}
._18_c00092{width:2.310400pt;}
._6_c00092{width:3.302400pt;}
._7_c00092{width:4.262400pt;}
._4_c00092{width:5.510400pt;}
._8_c00092{width:6.739200pt;}
._3_c00092{width:7.910400pt;}
._5_c00092{width:9.395200pt;}
._2_c00092{width:10.816000pt;}
._15_c00092{width:12.000000pt;}
._c_c00092{width:12.921600pt;}
._e_c00092{width:14.028800pt;}
._b_c00092{width:15.116800pt;}
._f_c00092{width:17.145600pt;}
._a_c00092{width:18.278400pt;}
._9_c00092{width:19.776000pt;}
._d_c00092{width:21.568000pt;}
._11_c00092{width:27.097600pt;}
._10_c00092{width:28.396800pt;}
._12_c00092{width:29.440000pt;}
._13_c00092{width:31.443200pt;}
._14_c00092{width:32.870400pt;}
.fs4_c00092{font-size:52.266667pt;}
.fs0_c00092{font-size:54.400000pt;}
.fs6_c00092{font-size:58.666667pt;}
.fs2_c00092{font-size:61.333333pt;}
.fs3_c00092{font-size:62.400000pt;}
.fs1_c00092{font-size:64.000000pt;}
.fs5_c00092{font-size:68.266667pt;}
.y0_c00092{bottom:0.000000pt;}
.y1d_c00092{bottom:58.893347pt;}
.y1c_c00092{bottom:113.917347pt;}
.y1b_c00092{bottom:168.653347pt;}
.y1a_c00092{bottom:223.693347pt;}
.y19_c00092{bottom:251.213347pt;}
.y18_c00092{bottom:278.413347pt;}
.y17_c00092{bottom:306.253347pt;}
.y16_c00092{bottom:334.096013pt;}
.y15_c00092{bottom:388.800013pt;}
.y13_c00092{bottom:443.197347pt;}
.y14_c00092{bottom:443.200013pt;}
.y12_c00092{bottom:470.413347pt;}
.y11_c00092{bottom:498.237347pt;}
.y1f_c00092{bottom:546.893347pt;}
.y1e_c00092{bottom:550.080013pt;}
.y10_c00092{bottom:553.613347pt;}
.yf_c00092{bottom:581.117347pt;}
.ye_c00092{bottom:608.653347pt;}
.yd_c00092{bottom:663.373347pt;}
.yc_c00092{bottom:691.197347pt;}
.yb_c00092{bottom:718.733347pt;}
.ya_c00092{bottom:746.893347pt;}
.y9_c00092{bottom:774.093347pt;}
.y8_c00092{bottom:829.117347pt;}
.y7_c00092{bottom:856.333347pt;}
.y6_c00092{bottom:883.853347pt;}
.y5_c00092{bottom:911.357347pt;}
.y4_c00092{bottom:938.573347pt;}
.y3_c00092{bottom:966.093347pt;}
.y2_c00092{bottom:993.933347pt;}
.y1_c00092{bottom:1062.413347pt;}
.h5_c00092{height:51.296875pt;}
.h2_c00092{height:53.390625pt;}
.h7_c00092{height:61.187500pt;}
.h3_c00092{height:62.812500pt;}
.h4_c00092{height:63.968750pt;}
.h6_c00092{height:71.200000pt;}
.h1_c00092{height:1122.666667pt;}
.h0_c00092{height:1122.880013pt;}
.w1_c00092{width:793.333333pt;}
.w0_c00092{width:793.600000pt;}
.x0_c00092{left:0.000000pt;}
.xa_c00092{left:107.770667pt;}
.x8_c00092{left:108.922667pt;}
.x6_c00092{left:109.898667pt;}
.x5_c00092{left:111.317333pt;}
.x1_c00092{left:112.253333pt;}
.xe_c00092{left:164.109333pt;}
.x9_c00092{left:165.610667pt;}
.x7_c00092{left:166.682667pt;}
.x2_c00092{left:168.786667pt;}
.xb_c00092{left:178.400000pt;}
.xd_c00092{left:184.573333pt;}
.xc_c00092{left:194.013333pt;}
.x3_c00092{left:336.466667pt;}
.x4_c00092{left:361.253333pt;}
.xf_c00092{left:380.893333pt;}
.x11_c00092{left:755.640000pt;}
.x10_c00092{left:756.573333pt;}
}





/* 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_c00093 {
    display:none;
  }
  .loading-indicator_c00093.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00093 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_c00093 { 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_c00093" -> "#page-container .classname_c00093")
 */
.pf_c00093 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00093 { /* 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_c00093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00093 { /* 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_c00093 { /* 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_c00093 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00093 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00093 {overflow:visible;}
  }
}
.c_c00093 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00093 { /* 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_c00093:after { /* webkit #35443 */
  content: '';
}
.t_c00093:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00093 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 */
}
.__c00093 { /* 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_c00093 { /* info for Javascript */
  display:none;
}
.l_c00093 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00093 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00093 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00093: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_c00093 {
    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_c00093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00093.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_c00093 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00093;src:url('chunks/assets/font_a0a28432264c37d7c1bd8d2f.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.284668;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;}
.m6_c00093{transform:matrix(0.240932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240932,0.000000,0.000000,0.250000,0,0);}
.m5_c00093{transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);}
.m8_c00093{transform:matrix(0.243316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243316,0.000000,0.000000,0.250000,0,0);}
.m4_c00093{transform:matrix(0.243394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243394,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);}
.m9_c00093{transform:matrix(0.246121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246121,0.000000,0.000000,0.250000,0,0);}
.m7_c00093{transform:matrix(0.247451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247451,0.000000,0.000000,0.250000,0,0);}
.m3_c00093{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m0_c00093{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);}
.m2_c00093{transform:matrix(0.263106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263106,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls3a_c00093{letter-spacing:-2.478000px;}
.ls48_c00093{letter-spacing:-2.400120px;}
.ls5d_c00093{letter-spacing:-2.088600px;}
.ls60_c00093{letter-spacing:-2.037000px;}
.ls4e_c00093{letter-spacing:-1.784160px;}
.ls45_c00093{letter-spacing:-1.359360px;}
.ls3b_c00093{letter-spacing:-1.323960px;}
.ls46_c00093{letter-spacing:-1.281480px;}
.ls47_c00093{letter-spacing:-1.139880px;}
.ls4a_c00093{letter-spacing:-1.005360px;}
.ls54_c00093{letter-spacing:-0.955800px;}
.ls44_c00093{letter-spacing:-0.934560px;}
.ls49_c00093{letter-spacing:-0.736320px;}
.ls3d_c00093{letter-spacing:-0.672600px;}
.ls50_c00093{letter-spacing:-0.601800px;}
.ls4c_c00093{letter-spacing:-0.594720px;}
.ls51_c00093{letter-spacing:-0.587640px;}
.ls56_c00093{letter-spacing:-0.566400px;}
.ls3f_c00093{letter-spacing:-0.509760px;}
.ls4d_c00093{letter-spacing:-0.424800px;}
.ls58_c00093{letter-spacing:-0.375240px;}
.ls4b_c00093{letter-spacing:-0.290280px;}
.ls59_c00093{letter-spacing:-0.233640px;}
.ls5b_c00093{letter-spacing:-0.120360px;}
.ls4f_c00093{letter-spacing:-0.106200px;}
.ls42_c00093{letter-spacing:-0.070800px;}
.ls57_c00093{letter-spacing:-0.007080px;}
.ls39_c00093{letter-spacing:0.000000px;}
.ls21_c00093{letter-spacing:0.028320px;}
.ls22_c00093{letter-spacing:0.056640px;}
.lsf_c00093{letter-spacing:0.084960px;}
.ls40_c00093{letter-spacing:0.092040px;}
.lsd_c00093{letter-spacing:0.113280px;}
.ls52_c00093{letter-spacing:0.120360px;}
.ls20_c00093{letter-spacing:0.162840px;}
.ls5f_c00093{letter-spacing:0.219480px;}
.ls5e_c00093{letter-spacing:0.226560px;}
.ls18_c00093{letter-spacing:0.233640px;}
.ls23_c00093{letter-spacing:0.247800px;}
.ls28_c00093{letter-spacing:0.254880px;}
.ls13_c00093{letter-spacing:0.283200px;}
.ls2_c00093{letter-spacing:0.290280px;}
.ls43_c00093{letter-spacing:0.297360px;}
.ls25_c00093{letter-spacing:0.318600px;}
.ls31_c00093{letter-spacing:0.332760px;}
.ls16_c00093{letter-spacing:0.368160px;}
.ls27_c00093{letter-spacing:0.403560px;}
.ls6_c00093{letter-spacing:0.424800px;}
.lsc_c00093{letter-spacing:0.431880px;}
.ls24_c00093{letter-spacing:0.438960px;}
.ls37_c00093{letter-spacing:0.460200px;}
.ls55_c00093{letter-spacing:0.467280px;}
.ls11_c00093{letter-spacing:0.481440px;}
.ls15_c00093{letter-spacing:0.495600px;}
.ls26_c00093{letter-spacing:0.502680px;}
.ls3c_c00093{letter-spacing:0.509760px;}
.ls2a_c00093{letter-spacing:0.516840px;}
.ls1b_c00093{letter-spacing:0.523920px;}
.ls5a_c00093{letter-spacing:0.531000px;}
.ls29_c00093{letter-spacing:0.545160px;}
.ls12_c00093{letter-spacing:0.566400px;}
.ls7_c00093{letter-spacing:0.580560px;}
.ls1d_c00093{letter-spacing:0.594720px;}
.lsa_c00093{letter-spacing:0.601800px;}
.ls1e_c00093{letter-spacing:0.623040px;}
.ls8_c00093{letter-spacing:0.644280px;}
.ls41_c00093{letter-spacing:0.651360px;}
.ls34_c00093{letter-spacing:0.686760px;}
.ls14_c00093{letter-spacing:0.693840px;}
.ls2e_c00093{letter-spacing:0.708000px;}
.ls53_c00093{letter-spacing:0.736320px;}
.ls17_c00093{letter-spacing:0.750480px;}
.ls3_c00093{letter-spacing:0.771720px;}
.ls30_c00093{letter-spacing:0.778800px;}
.ls2b_c00093{letter-spacing:0.800040px;}
.ls2f_c00093{letter-spacing:0.814200px;}
.ls1c_c00093{letter-spacing:0.821280px;}
.ls1f_c00093{letter-spacing:0.870840px;}
.ls0_c00093{letter-spacing:0.877920px;}
.ls4_c00093{letter-spacing:0.885000px;}
.ls5c_c00093{letter-spacing:0.906240px;}
.ls1_c00093{letter-spacing:0.920400px;}
.ls35_c00093{letter-spacing:0.955800px;}
.ls1a_c00093{letter-spacing:1.069080px;}
.ls10_c00093{letter-spacing:1.097400px;}
.ls32_c00093{letter-spacing:1.146960px;}
.lsb_c00093{letter-spacing:1.182360px;}
.ls2d_c00093{letter-spacing:1.189440px;}
.ls9_c00093{letter-spacing:1.373520px;}
.ls19_c00093{letter-spacing:1.465560px;}
.ls2c_c00093{letter-spacing:1.522200px;}
.ls38_c00093{letter-spacing:1.557420px;}
.ls33_c00093{letter-spacing:1.706280px;}
.ls5_c00093{letter-spacing:2.088600px;}
.ls36_c00093{letter-spacing:2.230200px;}
.lse_c00093{letter-spacing:2.810760px;}
.ls3e_c00093{letter-spacing:3.540000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{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__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00093{word-spacing:0.000000px;}
.ws1_c00093{word-spacing:1.883280px;}
.ws2_c00093{word-spacing:2.393040px;}
.ws0_c00093{word-spacing:2.605440px;}
._15_c00093{margin-left:-22.231200px;}
._6_c00093{margin-left:-6.711840px;}
._1_c00093{margin-left:-3.554160px;}
._0_c00093{margin-left:-2.180640px;}
._4_c00093{margin-left:-1.047840px;}
._2_c00093{width:1.699200px;}
._5_c00093{width:3.502800px;}
._3_c00093{width:4.963080px;}
._14_c00093{width:6.195000px;}
._a_c00093{width:7.759680px;}
._8_c00093{width:8.892480px;}
._7_c00093{width:11.214720px;}
._9_c00093{width:13.133400px;}
._11_c00093{width:15.285720px;}
._e_c00093{width:17.890560px;}
._13_c00093{width:19.491240px;}
._12_c00093{width:20.709000px;}
._c_c00093{width:22.726800px;}
._10_c00093{width:23.760480px;}
._d_c00093{width:24.935760px;}
._b_c00093{width:27.144720px;}
._f_c00093{width:32.716680px;}
.fc0_c00093{color:transparent;}
.fs2_c00093{font-size:58.200000px;}
.fs0_c00093{font-size:60.600000px;}
.fs1_c00093{font-size:70.800000px;}
.y0_c00093{bottom:0.000000px;}
.y16_c00093{bottom:67.335000px;}
.y15_c00093{bottom:561.601500px;}
.y14_c00093{bottom:592.204800px;}
.y13_c00093{bottom:622.825800px;}
.y12_c00093{bottom:653.783100px;}
.y11_c00093{bottom:715.697700px;}
.y10_c00093{bottom:746.655000px;}
.yf_c00093{bottom:746.663100px;}
.ye_c00093{bottom:777.974400px;}
.yd_c00093{bottom:808.560000px;}
.yc_c00093{bottom:808.568700px;}
.yb_c00093{bottom:870.855000px;}
.y9_c00093{bottom:901.448400px;}
.ya_c00093{bottom:901.455000px;}
.y8_c00093{bottom:932.034000px;}
.y7_c00093{bottom:962.651100px;}
.y6_c00093{bottom:993.608400px;}
.y5_c00093{bottom:1054.814400px;}
.y4_c00093{bottom:1085.400000px;}
.y3_c00093{bottom:1085.408700px;}
.y2_c00093{bottom:1116.720000px;}
.y1_c00093{bottom:1192.335000px;}
.h6_c00093{height:57.120117px;}
.h2_c00093{height:59.475586px;}
.h3_c00093{height:69.486328px;}
.h4_c00093{height:69.488728px;}
.h5_c00093{height:69.501928px;}
.h1_c00093{height:1263.000000px;}
.h0_c00093{height:1263.240000px;}
.w1_c00093{width:892.500000px;}
.w0_c00093{width:892.800000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:119.085000px;}
.x7_c00093{left:183.147600px;}
.x2_c00093{left:205.815000px;}
.x8_c00093{left:261.885000px;}
.xf_c00093{left:283.110000px;}
.x9_c00093{left:296.085000px;}
.x10_c00093{left:305.025000px;}
.xa_c00093{left:320.550000px;}
.x5_c00093{left:327.435000px;}
.x6_c00093{left:360.870000px;}
.x11_c00093{left:377.070000px;}
.x12_c00093{left:399.210000px;}
.x13_c00093{left:423.825000px;}
.x3_c00093{left:454.080000px;}
.xb_c00093{left:463.935000px;}
.x4_c00093{left:475.380000px;}
.xc_c00093{left:488.310000px;}
.xd_c00093{left:548.565000px;}
.xe_c00093{left:572.910000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls3a_c00093{letter-spacing:-2.202667pt;}
.ls48_c00093{letter-spacing:-2.133440pt;}
.ls5d_c00093{letter-spacing:-1.856533pt;}
.ls60_c00093{letter-spacing:-1.810667pt;}
.ls4e_c00093{letter-spacing:-1.585920pt;}
.ls45_c00093{letter-spacing:-1.208320pt;}
.ls3b_c00093{letter-spacing:-1.176853pt;}
.ls46_c00093{letter-spacing:-1.139093pt;}
.ls47_c00093{letter-spacing:-1.013227pt;}
.ls4a_c00093{letter-spacing:-0.893653pt;}
.ls54_c00093{letter-spacing:-0.849600pt;}
.ls44_c00093{letter-spacing:-0.830720pt;}
.ls49_c00093{letter-spacing:-0.654507pt;}
.ls3d_c00093{letter-spacing:-0.597867pt;}
.ls50_c00093{letter-spacing:-0.534933pt;}
.ls4c_c00093{letter-spacing:-0.528640pt;}
.ls51_c00093{letter-spacing:-0.522347pt;}
.ls56_c00093{letter-spacing:-0.503467pt;}
.ls3f_c00093{letter-spacing:-0.453120pt;}
.ls4d_c00093{letter-spacing:-0.377600pt;}
.ls58_c00093{letter-spacing:-0.333547pt;}
.ls4b_c00093{letter-spacing:-0.258027pt;}
.ls59_c00093{letter-spacing:-0.207680pt;}
.ls5b_c00093{letter-spacing:-0.106987pt;}
.ls4f_c00093{letter-spacing:-0.094400pt;}
.ls42_c00093{letter-spacing:-0.062933pt;}
.ls57_c00093{letter-spacing:-0.006293pt;}
.ls39_c00093{letter-spacing:0.000000pt;}
.ls21_c00093{letter-spacing:0.025173pt;}
.ls22_c00093{letter-spacing:0.050347pt;}
.lsf_c00093{letter-spacing:0.075520pt;}
.ls40_c00093{letter-spacing:0.081813pt;}
.lsd_c00093{letter-spacing:0.100693pt;}
.ls52_c00093{letter-spacing:0.106987pt;}
.ls20_c00093{letter-spacing:0.144747pt;}
.ls5f_c00093{letter-spacing:0.195093pt;}
.ls5e_c00093{letter-spacing:0.201387pt;}
.ls18_c00093{letter-spacing:0.207680pt;}
.ls23_c00093{letter-spacing:0.220267pt;}
.ls28_c00093{letter-spacing:0.226560pt;}
.ls13_c00093{letter-spacing:0.251733pt;}
.ls2_c00093{letter-spacing:0.258027pt;}
.ls43_c00093{letter-spacing:0.264320pt;}
.ls25_c00093{letter-spacing:0.283200pt;}
.ls31_c00093{letter-spacing:0.295787pt;}
.ls16_c00093{letter-spacing:0.327253pt;}
.ls27_c00093{letter-spacing:0.358720pt;}
.ls6_c00093{letter-spacing:0.377600pt;}
.lsc_c00093{letter-spacing:0.383893pt;}
.ls24_c00093{letter-spacing:0.390187pt;}
.ls37_c00093{letter-spacing:0.409067pt;}
.ls55_c00093{letter-spacing:0.415360pt;}
.ls11_c00093{letter-spacing:0.427947pt;}
.ls15_c00093{letter-spacing:0.440533pt;}
.ls26_c00093{letter-spacing:0.446827pt;}
.ls3c_c00093{letter-spacing:0.453120pt;}
.ls2a_c00093{letter-spacing:0.459413pt;}
.ls1b_c00093{letter-spacing:0.465707pt;}
.ls5a_c00093{letter-spacing:0.472000pt;}
.ls29_c00093{letter-spacing:0.484587pt;}
.ls12_c00093{letter-spacing:0.503467pt;}
.ls7_c00093{letter-spacing:0.516053pt;}
.ls1d_c00093{letter-spacing:0.528640pt;}
.lsa_c00093{letter-spacing:0.534933pt;}
.ls1e_c00093{letter-spacing:0.553813pt;}
.ls8_c00093{letter-spacing:0.572693pt;}
.ls41_c00093{letter-spacing:0.578987pt;}
.ls34_c00093{letter-spacing:0.610453pt;}
.ls14_c00093{letter-spacing:0.616747pt;}
.ls2e_c00093{letter-spacing:0.629333pt;}
.ls53_c00093{letter-spacing:0.654507pt;}
.ls17_c00093{letter-spacing:0.667093pt;}
.ls3_c00093{letter-spacing:0.685973pt;}
.ls30_c00093{letter-spacing:0.692267pt;}
.ls2b_c00093{letter-spacing:0.711147pt;}
.ls2f_c00093{letter-spacing:0.723733pt;}
.ls1c_c00093{letter-spacing:0.730027pt;}
.ls1f_c00093{letter-spacing:0.774080pt;}
.ls0_c00093{letter-spacing:0.780373pt;}
.ls4_c00093{letter-spacing:0.786667pt;}
.ls5c_c00093{letter-spacing:0.805547pt;}
.ls1_c00093{letter-spacing:0.818133pt;}
.ls35_c00093{letter-spacing:0.849600pt;}
.ls1a_c00093{letter-spacing:0.950293pt;}
.ls10_c00093{letter-spacing:0.975467pt;}
.ls32_c00093{letter-spacing:1.019520pt;}
.lsb_c00093{letter-spacing:1.050987pt;}
.ls2d_c00093{letter-spacing:1.057280pt;}
.ls9_c00093{letter-spacing:1.220907pt;}
.ls19_c00093{letter-spacing:1.302720pt;}
.ls2c_c00093{letter-spacing:1.353067pt;}
.ls38_c00093{letter-spacing:1.384373pt;}
.ls33_c00093{letter-spacing:1.516693pt;}
.ls5_c00093{letter-spacing:1.856533pt;}
.ls36_c00093{letter-spacing:1.982400pt;}
.lse_c00093{letter-spacing:2.498453pt;}
.ls3e_c00093{letter-spacing:3.146667pt;}
.ws3_c00093{word-spacing:0.000000pt;}
.ws1_c00093{word-spacing:1.674027pt;}
.ws2_c00093{word-spacing:2.127147pt;}
.ws0_c00093{word-spacing:2.315947pt;}
._15_c00093{margin-left:-19.761067pt;}
._6_c00093{margin-left:-5.966080pt;}
._1_c00093{margin-left:-3.159253pt;}
._0_c00093{margin-left:-1.938347pt;}
._4_c00093{margin-left:-0.931413pt;}
._2_c00093{width:1.510400pt;}
._5_c00093{width:3.113600pt;}
._3_c00093{width:4.411627pt;}
._14_c00093{width:5.506667pt;}
._a_c00093{width:6.897493pt;}
._8_c00093{width:7.904427pt;}
._7_c00093{width:9.968640pt;}
._9_c00093{width:11.674133pt;}
._11_c00093{width:13.587307pt;}
._e_c00093{width:15.902720pt;}
._13_c00093{width:17.325547pt;}
._12_c00093{width:18.408000pt;}
._c_c00093{width:20.201600pt;}
._10_c00093{width:21.120427pt;}
._d_c00093{width:22.165120pt;}
._b_c00093{width:24.128640pt;}
._f_c00093{width:29.081493pt;}
.fs2_c00093{font-size:51.733333pt;}
.fs0_c00093{font-size:53.866667pt;}
.fs1_c00093{font-size:62.933333pt;}
.y0_c00093{bottom:0.000000pt;}
.y16_c00093{bottom:59.853333pt;}
.y15_c00093{bottom:499.201333pt;}
.y14_c00093{bottom:526.404267pt;}
.y13_c00093{bottom:553.622933pt;}
.y12_c00093{bottom:581.140533pt;}
.y11_c00093{bottom:636.175733pt;}
.y10_c00093{bottom:663.693333pt;}
.yf_c00093{bottom:663.700533pt;}
.ye_c00093{bottom:691.532800pt;}
.yd_c00093{bottom:718.720000pt;}
.yc_c00093{bottom:718.727733pt;}
.yb_c00093{bottom:774.093333pt;}
.y9_c00093{bottom:801.287467pt;}
.ya_c00093{bottom:801.293333pt;}
.y8_c00093{bottom:828.474667pt;}
.y7_c00093{bottom:855.689867pt;}
.y6_c00093{bottom:883.207467pt;}
.y5_c00093{bottom:937.612800pt;}
.y4_c00093{bottom:964.800000pt;}
.y3_c00093{bottom:964.807733pt;}
.y2_c00093{bottom:992.640000pt;}
.y1_c00093{bottom:1059.853333pt;}
.h6_c00093{height:50.773437pt;}
.h2_c00093{height:52.867187pt;}
.h3_c00093{height:61.765625pt;}
.h4_c00093{height:61.767758pt;}
.h5_c00093{height:61.779492pt;}
.h1_c00093{height:1122.666667pt;}
.h0_c00093{height:1122.880000pt;}
.w1_c00093{width:793.333333pt;}
.w0_c00093{width:793.600000pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:105.853333pt;}
.x7_c00093{left:162.797867pt;}
.x2_c00093{left:182.946667pt;}
.x8_c00093{left:232.786667pt;}
.xf_c00093{left:251.653333pt;}
.x9_c00093{left:263.186667pt;}
.x10_c00093{left:271.133333pt;}
.xa_c00093{left:284.933333pt;}
.x5_c00093{left:291.053333pt;}
.x6_c00093{left:320.773333pt;}
.x11_c00093{left:335.173333pt;}
.x12_c00093{left:354.853333pt;}
.x13_c00093{left:376.733333pt;}
.x3_c00093{left:403.626667pt;}
.xb_c00093{left:412.386667pt;}
.x4_c00093{left:422.560000pt;}
.xc_c00093{left:434.053333pt;}
.xd_c00093{left:487.613333pt;}
.xe_c00093{left:509.253333pt;}
}





/* 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_c00094 {
    display:none;
  }
  .loading-indicator_c00094.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00094 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_c00094 { 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_c00094" -> "#page-container .classname_c00094")
 */
.pf_c00094 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00094 { /* 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_c00094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00094 { /* 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_c00094 { /* 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_c00094 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00094 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00094 {overflow:visible;}
  }
}
.c_c00094 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00094 { /* 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_c00094:after { /* webkit #35443 */
  content: '';
}
.t_c00094:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00094 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 */
}
.__c00094 { /* 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_c00094 { /* info for Javascript */
  display:none;
}
.l_c00094 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00094 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00094 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00094: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_c00094 {
    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_c00094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00094.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_c00094 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00094;src:url('chunks/assets/font_799764ae13c5467ea7a4ec7a.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.284668;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;}
.m1_c00094{transform:matrix(0.238977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238977,0.000000,0.000000,0.250000,0,0);}
.m0_c00094{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);}
.v0_c00094{vertical-align:0.000000px;}
.ls1a_c00094{letter-spacing:-2.365740px;}
.ls23_c00094{letter-spacing:-2.268000px;}
.ls1c_c00094{letter-spacing:-0.765180px;}
.ls1f_c00094{letter-spacing:-0.470340px;}
.ls1b_c00094{letter-spacing:-0.231660px;}
.ls1d_c00094{letter-spacing:-0.070200px;}
.ls20_c00094{letter-spacing:0.000000px;}
.ls13_c00094{letter-spacing:0.056160px;}
.ls18_c00094{letter-spacing:0.140400px;}
.ls22_c00094{letter-spacing:0.428220px;}
.ls9_c00094{letter-spacing:0.512460px;}
.ls2_c00094{letter-spacing:0.673920px;}
.lsd_c00094{letter-spacing:0.814320px;}
.ls14_c00094{letter-spacing:0.828360px;}
.ls4_c00094{letter-spacing:0.849420px;}
.ls5_c00094{letter-spacing:0.877500px;}
.ls1e_c00094{letter-spacing:0.905580px;}
.lsf_c00094{letter-spacing:0.954720px;}
.ls16_c00094{letter-spacing:0.968760px;}
.ls3_c00094{letter-spacing:0.982800px;}
.ls10_c00094{letter-spacing:1.031940px;}
.ls1_c00094{letter-spacing:1.045980px;}
.ls0_c00094{letter-spacing:1.081080px;}
.ls11_c00094{letter-spacing:1.137240px;}
.ls8_c00094{letter-spacing:1.172340px;}
.ls12_c00094{letter-spacing:1.207440px;}
.ls7_c00094{letter-spacing:1.214460px;}
.lse_c00094{letter-spacing:1.242540px;}
.lsc_c00094{letter-spacing:1.396980px;}
.ls21_c00094{letter-spacing:1.425060px;}
.ls19_c00094{letter-spacing:1.557420px;}
.ls17_c00094{letter-spacing:1.747980px;}
.lsb_c00094{letter-spacing:1.832220px;}
.lsa_c00094{letter-spacing:2.021760px;}
.ls6_c00094{letter-spacing:2.871180px;}
.ls15_c00094{letter-spacing:3.194100px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{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__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00094{word-spacing:0.000000px;}
._4_c00094{margin-left:-5.257980px;}
._5_c00094{margin-left:-3.615300px;}
._6_c00094{margin-left:-1.291680px;}
._2_c00094{width:1.972620px;}
._7_c00094{width:3.217620px;}
._1_c00094{width:4.499820px;}
._3_c00094{width:6.296940px;}
._0_c00094{width:11.070540px;}
.fc0_c00094{color:transparent;}
.fs0_c00094{font-size:60.600000px;}
.fs3_c00094{font-size:64.800000px;}
.fs1_c00094{font-size:70.200000px;}
.fs2_c00094{font-size:73.800000px;}
.y0_c00094{bottom:0.000000px;}
.y5_c00094{bottom:70.575006px;}
.y4_c00094{bottom:1059.127806px;}
.y3_c00094{bottom:1089.728706px;}
.y2_c00094{bottom:1121.775006px;}
.y1_c00094{bottom:1199.160006px;}
.h2_c00094{height:59.475586px;}
.h5_c00094{height:63.597656px;}
.h3_c00094{height:68.897461px;}
.h4_c00094{height:72.455864px;}
.h1_c00094{height:1263.000000px;}
.h0_c00094{height:1263.240006px;}
.w1_c00094{width:892.500000px;}
.w0_c00094{width:892.799998px;}
.x0_c00094{left:0.000000px;}
.x2_c00094{left:99.569998px;}
.x1_c00094{left:125.924998px;}
.x3_c00094{left:426.329998px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls1a_c00094{letter-spacing:-2.102880pt;}
.ls23_c00094{letter-spacing:-2.016000pt;}
.ls1c_c00094{letter-spacing:-0.680160pt;}
.ls1f_c00094{letter-spacing:-0.418080pt;}
.ls1b_c00094{letter-spacing:-0.205920pt;}
.ls1d_c00094{letter-spacing:-0.062400pt;}
.ls20_c00094{letter-spacing:0.000000pt;}
.ls13_c00094{letter-spacing:0.049920pt;}
.ls18_c00094{letter-spacing:0.124800pt;}
.ls22_c00094{letter-spacing:0.380640pt;}
.ls9_c00094{letter-spacing:0.455520pt;}
.ls2_c00094{letter-spacing:0.599040pt;}
.lsd_c00094{letter-spacing:0.723840pt;}
.ls14_c00094{letter-spacing:0.736320pt;}
.ls4_c00094{letter-spacing:0.755040pt;}
.ls5_c00094{letter-spacing:0.780000pt;}
.ls1e_c00094{letter-spacing:0.804960pt;}
.lsf_c00094{letter-spacing:0.848640pt;}
.ls16_c00094{letter-spacing:0.861120pt;}
.ls3_c00094{letter-spacing:0.873600pt;}
.ls10_c00094{letter-spacing:0.917280pt;}
.ls1_c00094{letter-spacing:0.929760pt;}
.ls0_c00094{letter-spacing:0.960960pt;}
.ls11_c00094{letter-spacing:1.010880pt;}
.ls8_c00094{letter-spacing:1.042080pt;}
.ls12_c00094{letter-spacing:1.073280pt;}
.ls7_c00094{letter-spacing:1.079520pt;}
.lse_c00094{letter-spacing:1.104480pt;}
.lsc_c00094{letter-spacing:1.241760pt;}
.ls21_c00094{letter-spacing:1.266720pt;}
.ls19_c00094{letter-spacing:1.384373pt;}
.ls17_c00094{letter-spacing:1.553760pt;}
.lsb_c00094{letter-spacing:1.628640pt;}
.lsa_c00094{letter-spacing:1.797120pt;}
.ls6_c00094{letter-spacing:2.552160pt;}
.ls15_c00094{letter-spacing:2.839200pt;}
.ws0_c00094{word-spacing:0.000000pt;}
._4_c00094{margin-left:-4.673760pt;}
._5_c00094{margin-left:-3.213600pt;}
._6_c00094{margin-left:-1.148160pt;}
._2_c00094{width:1.753440pt;}
._7_c00094{width:2.860107pt;}
._1_c00094{width:3.999840pt;}
._3_c00094{width:5.597280pt;}
._0_c00094{width:9.840480pt;}
.fs0_c00094{font-size:53.866667pt;}
.fs3_c00094{font-size:57.600000pt;}
.fs1_c00094{font-size:62.400000pt;}
.fs2_c00094{font-size:65.600000pt;}
.y0_c00094{bottom:0.000000pt;}
.y5_c00094{bottom:62.733339pt;}
.y4_c00094{bottom:941.446939pt;}
.y3_c00094{bottom:968.647739pt;}
.y2_c00094{bottom:997.133339pt;}
.y1_c00094{bottom:1065.920005pt;}
.h2_c00094{height:52.867187pt;}
.h5_c00094{height:56.531250pt;}
.h3_c00094{height:61.242187pt;}
.h4_c00094{height:64.405213pt;}
.h1_c00094{height:1122.666667pt;}
.h0_c00094{height:1122.880005pt;}
.w1_c00094{width:793.333333pt;}
.w0_c00094{width:793.599999pt;}
.x0_c00094{left:0.000000pt;}
.x2_c00094{left:88.506665pt;}
.x1_c00094{left:111.933332pt;}
.x3_c00094{left:378.959999pt;}
}





/* 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_c00095 {
    display:none;
  }
  .loading-indicator_c00095.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00095 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_c00095 { 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_c00095" -> "#page-container .classname_c00095")
 */
.pf_c00095 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00095 { /* 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_c00095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00095 { /* 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_c00095 { /* 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_c00095 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00095 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00095 {overflow:visible;}
  }
}
.c_c00095 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00095 { /* 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_c00095:after { /* webkit #35443 */
  content: '';
}
.t_c00095:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00095 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 */
}
.__c00095 { /* 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_c00095 { /* info for Javascript */
  display:none;
}
.l_c00095 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00095 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00095 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00095: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_c00095 {
    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_c00095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00095.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_c00095 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00095;src:url('chunks/assets/font_af2f89abf9d8d973d6a689ed.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.311035;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_c00095;src:url('chunks/assets/font_5eca4a59b19c9d326d414e6f.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.284668;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;}
.m1_c00095{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.m2_c00095{transform:matrix(0.242702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242702,0.000000,0.000000,0.250000,0,0);}
.m0_c00095{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);}
.v0_c00095{vertical-align:0.000000px;}
.ls5_c00095{letter-spacing:-2.541000px;}
.lsa_c00095{letter-spacing:-2.289000px;}
.ls6_c00095{letter-spacing:-1.927920px;}
.ls8_c00095{letter-spacing:0.000000px;}
.ls2_c00095{letter-spacing:0.892800px;}
.ls7_c00095{letter-spacing:1.050960px;}
.ls3_c00095{letter-spacing:1.180800px;}
.ls9_c00095{letter-spacing:1.232640px;}
.ls4_c00095{letter-spacing:1.484100px;}
.ls0_c00095{letter-spacing:1.860480px;}
.ls1_c00095{letter-spacing:2.361600px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{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__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00095{word-spacing:0.000000px;}
._2_c00095{margin-left:-3.237120px;}
._3_c00095{margin-left:-1.699680px;}
._0_c00095{width:7.871760px;}
._1_c00095{width:9.300000px;}
.fc0_c00095{color:transparent;}
.fs3_c00095{font-size:57.600000px;}
.fs0_c00095{font-size:58.200000px;}
.fs4_c00095{font-size:65.400000px;}
.fs2_c00095{font-size:69.600000px;}
.fs1_c00095{font-size:72.600000px;}
.y0_c00095{bottom:0.000000px;}
.y4_c00095{bottom:68.055006px;}
.y3_c00095{bottom:117.720006px;}
.y2_c00095{bottom:1116.360006px;}
.y1_c00095{bottom:1193.775006px;}
.h5_c00095{height:56.531250px;}
.h2_c00095{height:58.654687px;}
.h6_c00095{height:64.186523px;}
.h4_c00095{height:68.308594px;}
.h3_c00095{height:73.167187px;}
.h1_c00095{height:1263.000000px;}
.h0_c00095{height:1263.240006px;}
.w1_c00095{width:892.500000px;}
.w0_c00095{width:892.799998px;}
.x0_c00095{left:0.000000px;}
.x2_c00095{left:94.859999px;}
.x4_c00095{left:117.494998px;}
.x1_c00095{left:119.804999px;}
.x3_c00095{left:140.294998px;}
.x5_c00095{left:421.994999px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls5_c00095{letter-spacing:-2.258667pt;}
.lsa_c00095{letter-spacing:-2.034667pt;}
.ls6_c00095{letter-spacing:-1.713707pt;}
.ls8_c00095{letter-spacing:0.000000pt;}
.ls2_c00095{letter-spacing:0.793600pt;}
.ls7_c00095{letter-spacing:0.934187pt;}
.ls3_c00095{letter-spacing:1.049600pt;}
.ls9_c00095{letter-spacing:1.095680pt;}
.ls4_c00095{letter-spacing:1.319200pt;}
.ls0_c00095{letter-spacing:1.653760pt;}
.ls1_c00095{letter-spacing:2.099200pt;}
.ws0_c00095{word-spacing:0.000000pt;}
._2_c00095{margin-left:-2.877440pt;}
._3_c00095{margin-left:-1.510827pt;}
._0_c00095{width:6.997120pt;}
._1_c00095{width:8.266667pt;}
.fs3_c00095{font-size:51.200000pt;}
.fs0_c00095{font-size:51.733333pt;}
.fs4_c00095{font-size:58.133333pt;}
.fs2_c00095{font-size:61.866667pt;}
.fs1_c00095{font-size:64.533333pt;}
.y0_c00095{bottom:0.000000pt;}
.y4_c00095{bottom:60.493339pt;}
.y3_c00095{bottom:104.640005pt;}
.y2_c00095{bottom:992.320005pt;}
.y1_c00095{bottom:1061.133339pt;}
.h5_c00095{height:50.250000pt;}
.h2_c00095{height:52.137500pt;}
.h6_c00095{height:57.054688pt;}
.h4_c00095{height:60.718750pt;}
.h3_c00095{height:65.037500pt;}
.h1_c00095{height:1122.666667pt;}
.h0_c00095{height:1122.880005pt;}
.w1_c00095{width:793.333333pt;}
.w0_c00095{width:793.599999pt;}
.x0_c00095{left:0.000000pt;}
.x2_c00095{left:84.319999pt;}
.x4_c00095{left:104.439999pt;}
.x1_c00095{left:106.493332pt;}
.x3_c00095{left:124.706665pt;}
.x5_c00095{left:375.106665pt;}
}





/* 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_c00096 {
    display:none;
  }
  .loading-indicator_c00096.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00096 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_c00096 { 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_c00096" -> "#page-container .classname_c00096")
 */
.pf_c00096 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00096 { /* 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_c00096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00096 { /* 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_c00096 { /* 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_c00096 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00096 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00096 {overflow:visible;}
  }
}
.c_c00096 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00096 { /* 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_c00096:after { /* webkit #35443 */
  content: '';
}
.t_c00096:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00096 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 */
}
.__c00096 { /* 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_c00096 { /* info for Javascript */
  display:none;
}
.l_c00096 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00096 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00096 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00096: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_c00096 {
    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_c00096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00096.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_c00096 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00096;src:url('chunks/assets/font_a3aee0e8cc55ed48b336312c.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.284668;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;}
.m1_c00096{transform:matrix(0.224945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224945,0.000000,0.000000,0.250000,0,0);}
.m0_c00096{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);}
.v0_c00096{vertical-align:0.000000px;}
.ls2_c00096{letter-spacing:-2.365740px;}
.ls5_c00096{letter-spacing:-2.289000px;}
.ls4_c00096{letter-spacing:0.000000px;}
.ls3_c00096{letter-spacing:0.891540px;}
.ls0_c00096{letter-spacing:1.439100px;}
.ls1_c00096{letter-spacing:1.714980px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{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__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00096{word-spacing:0.000000px;}
._0_c00096{margin-left:-2.948400px;}
._1_c00096{width:10.045620px;}
._3_c00096{width:74.560200px;}
._2_c00096{width:75.721800px;}
.fc0_c00096{color:transparent;}
.fs0_c00096{font-size:60.600000px;}
.fs3_c00096{font-size:65.400000px;}
.fs1_c00096{font-size:70.200000px;}
.fs2_c00096{font-size:72.600000px;}
.y0_c00096{bottom:0.000000px;}
.y4_c00096{bottom:66.600000px;}
.y3_c00096{bottom:1023.495000px;}
.y2_c00096{bottom:1118.175000px;}
.y1_c00096{bottom:1195.560000px;}
.h2_c00096{height:59.475586px;}
.h5_c00096{height:64.186523px;}
.h3_c00096{height:68.897461px;}
.h4_c00096{height:71.252930px;}
.h1_c00096{height:1263.000000px;}
.h0_c00096{height:1263.240000px;}
.w1_c00096{width:892.500000px;}
.w0_c00096{width:892.800000px;}
.x0_c00096{left:0.000000px;}
.x2_c00096{left:101.370000px;}
.x1_c00096{left:127.365000px;}
.x4_c00096{left:429.945000px;}
.x3_c00096{left:609.300000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls2_c00096{letter-spacing:-2.102880pt;}
.ls5_c00096{letter-spacing:-2.034667pt;}
.ls4_c00096{letter-spacing:0.000000pt;}
.ls3_c00096{letter-spacing:0.792480pt;}
.ls0_c00096{letter-spacing:1.279200pt;}
.ls1_c00096{letter-spacing:1.524427pt;}
.ws0_c00096{word-spacing:0.000000pt;}
._0_c00096{margin-left:-2.620800pt;}
._1_c00096{width:8.929440pt;}
._3_c00096{width:66.275733pt;}
._2_c00096{width:67.308267pt;}
.fs0_c00096{font-size:53.866667pt;}
.fs3_c00096{font-size:58.133333pt;}
.fs1_c00096{font-size:62.400000pt;}
.fs2_c00096{font-size:64.533333pt;}
.y0_c00096{bottom:0.000000pt;}
.y4_c00096{bottom:59.200000pt;}
.y3_c00096{bottom:909.773333pt;}
.y2_c00096{bottom:993.933333pt;}
.y1_c00096{bottom:1062.720000pt;}
.h2_c00096{height:52.867187pt;}
.h5_c00096{height:57.054688pt;}
.h3_c00096{height:61.242187pt;}
.h4_c00096{height:63.335938pt;}
.h1_c00096{height:1122.666667pt;}
.h0_c00096{height:1122.880000pt;}
.w1_c00096{width:793.333333pt;}
.w0_c00096{width:793.600000pt;}
.x0_c00096{left:0.000000pt;}
.x2_c00096{left:90.106667pt;}
.x1_c00096{left:113.213333pt;}
.x4_c00096{left:382.173333pt;}
.x3_c00096{left:541.600000pt;}
}





/* 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_c00097 {
    display:none;
  }
  .loading-indicator_c00097.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00097 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_c00097 { 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_c00097" -> "#page-container .classname_c00097")
 */
.pf_c00097 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00097 { /* 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_c00097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00097 { /* 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_c00097 { /* 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_c00097 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00097 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00097 {overflow:visible;}
  }
}
.c_c00097 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00097 { /* 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_c00097:after { /* webkit #35443 */
  content: '';
}
.t_c00097:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00097 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 */
}
.__c00097 { /* 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_c00097 { /* info for Javascript */
  display:none;
}
.l_c00097 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00097 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00097 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00097: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_c00097 {
    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_c00097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00097.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_c00097 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00097;src:url('chunks/assets/font_6d35d2453b3581f96eeabe50.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.284668;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_c00097{transform:matrix(0.224945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224945,0.000000,0.000000,0.250000,0,0);}
.m1_c00097{transform:matrix(0.247451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247451,0.000000,0.000000,0.250000,0,0);}
.m0_c00097{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);}
.v0_c00097{vertical-align:0.000000px;}
.ls1c_c00097{letter-spacing:-2.478000px;}
.ls2c_c00097{letter-spacing:-2.289000px;}
.ls25_c00097{letter-spacing:-2.088600px;}
.ls19_c00097{letter-spacing:-1.359360px;}
.ls1f_c00097{letter-spacing:-1.323960px;}
.ls20_c00097{letter-spacing:-1.104480px;}
.ls2a_c00097{letter-spacing:-1.083240px;}
.ls21_c00097{letter-spacing:-0.969960px;}
.ls23_c00097{letter-spacing:-0.955800px;}
.ls24_c00097{letter-spacing:-0.934560px;}
.ls1d_c00097{letter-spacing:-0.715080px;}
.ls28_c00097{letter-spacing:-0.566400px;}
.ls26_c00097{letter-spacing:-0.290280px;}
.ls29_c00097{letter-spacing:-0.212400px;}
.ls27_c00097{letter-spacing:-0.120360px;}
.ls22_c00097{letter-spacing:-0.014160px;}
.ls1e_c00097{letter-spacing:0.000000px;}
.ls4_c00097{letter-spacing:0.042480px;}
.ls13_c00097{letter-spacing:0.070800px;}
.ls2_c00097{letter-spacing:0.113280px;}
.ls2b_c00097{letter-spacing:0.219480px;}
.ls3_c00097{letter-spacing:0.283200px;}
.ls10_c00097{letter-spacing:0.290280px;}
.ls15_c00097{letter-spacing:0.297360px;}
.ls11_c00097{letter-spacing:0.332760px;}
.ls5_c00097{letter-spacing:0.361080px;}
.ls9_c00097{letter-spacing:0.481440px;}
.ls6_c00097{letter-spacing:0.495600px;}
.lsd_c00097{letter-spacing:0.523920px;}
.ls8_c00097{letter-spacing:0.545160px;}
.ls1a_c00097{letter-spacing:0.615960px;}
.lsf_c00097{letter-spacing:0.623040px;}
.lsb_c00097{letter-spacing:0.715080px;}
.lse_c00097{letter-spacing:0.729240px;}
.ls1b_c00097{letter-spacing:0.736320px;}
.ls1_c00097{letter-spacing:0.743400px;}
.lsa_c00097{letter-spacing:0.750480px;}
.ls7_c00097{letter-spacing:0.870840px;}
.ls14_c00097{letter-spacing:0.955800px;}
.lsc_c00097{letter-spacing:0.991200px;}
.ls0_c00097{letter-spacing:1.097400px;}
.ls17_c00097{letter-spacing:1.331040px;}
.ls18_c00097{letter-spacing:1.444320px;}
.ls16_c00097{letter-spacing:2.230200px;}
.ls12_c00097{letter-spacing:3.143520px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{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__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00097{word-spacing:0.000000px;}
._a_c00097{margin-left:-6.832200px;}
._0_c00097{margin-left:-2.407200px;}
._b_c00097{margin-left:-1.217760px;}
._7_c00097{width:1.529280px;}
._8_c00097{width:2.646000px;}
._5_c00097{width:3.681600px;}
._6_c00097{width:4.757760px;}
._1_c00097{width:6.414480px;}
._3_c00097{width:7.847520px;}
._2_c00097{width:9.365880px;}
._9_c00097{width:10.854600px;}
._4_c00097{width:13.152720px;}
.fc0_c00097{color:transparent;}
.fs0_c00097{font-size:61.200000px;}
.fs2_c00097{font-size:65.400000px;}
.fs1_c00097{font-size:70.800000px;}
.y0_c00097{bottom:0.000000px;}
.y8_c00097{bottom:67.695000px;}
.y7_c00097{bottom:667.103100px;}
.y6_c00097{bottom:698.042700px;}
.y5_c00097{bottom:729.000000px;}
.y3_c00097{bottom:759.970500px;}
.y4_c00097{bottom:759.975000px;}
.y2_c00097{bottom:1116.360000px;}
.y1_c00097{bottom:1193.400000px;}
.h2_c00097{height:60.064453px;}
.h4_c00097{height:64.186523px;}
.h3_c00097{height:69.486328px;}
.h1_c00097{height:1263.000000px;}
.h0_c00097{height:1263.240000px;}
.w1_c00097{width:892.500000px;}
.w0_c00097{width:892.800000px;}
.x0_c00097{left:0.000000px;}
.x2_c00097{left:102.450000px;}
.x1_c00097{left:127.365000px;}
.x3_c00097{left:175.110000px;}
.x4_c00097{left:194.670000px;}
.x5_c00097{left:430.665000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls1c_c00097{letter-spacing:-2.202667pt;}
.ls2c_c00097{letter-spacing:-2.034667pt;}
.ls25_c00097{letter-spacing:-1.856533pt;}
.ls19_c00097{letter-spacing:-1.208320pt;}
.ls1f_c00097{letter-spacing:-1.176853pt;}
.ls20_c00097{letter-spacing:-0.981760pt;}
.ls2a_c00097{letter-spacing:-0.962880pt;}
.ls21_c00097{letter-spacing:-0.862187pt;}
.ls23_c00097{letter-spacing:-0.849600pt;}
.ls24_c00097{letter-spacing:-0.830720pt;}
.ls1d_c00097{letter-spacing:-0.635627pt;}
.ls28_c00097{letter-spacing:-0.503467pt;}
.ls26_c00097{letter-spacing:-0.258027pt;}
.ls29_c00097{letter-spacing:-0.188800pt;}
.ls27_c00097{letter-spacing:-0.106987pt;}
.ls22_c00097{letter-spacing:-0.012587pt;}
.ls1e_c00097{letter-spacing:0.000000pt;}
.ls4_c00097{letter-spacing:0.037760pt;}
.ls13_c00097{letter-spacing:0.062933pt;}
.ls2_c00097{letter-spacing:0.100693pt;}
.ls2b_c00097{letter-spacing:0.195093pt;}
.ls3_c00097{letter-spacing:0.251733pt;}
.ls10_c00097{letter-spacing:0.258027pt;}
.ls15_c00097{letter-spacing:0.264320pt;}
.ls11_c00097{letter-spacing:0.295787pt;}
.ls5_c00097{letter-spacing:0.320960pt;}
.ls9_c00097{letter-spacing:0.427947pt;}
.ls6_c00097{letter-spacing:0.440533pt;}
.lsd_c00097{letter-spacing:0.465707pt;}
.ls8_c00097{letter-spacing:0.484587pt;}
.ls1a_c00097{letter-spacing:0.547520pt;}
.lsf_c00097{letter-spacing:0.553813pt;}
.lsb_c00097{letter-spacing:0.635627pt;}
.lse_c00097{letter-spacing:0.648213pt;}
.ls1b_c00097{letter-spacing:0.654507pt;}
.ls1_c00097{letter-spacing:0.660800pt;}
.lsa_c00097{letter-spacing:0.667093pt;}
.ls7_c00097{letter-spacing:0.774080pt;}
.ls14_c00097{letter-spacing:0.849600pt;}
.lsc_c00097{letter-spacing:0.881067pt;}
.ls0_c00097{letter-spacing:0.975467pt;}
.ls17_c00097{letter-spacing:1.183147pt;}
.ls18_c00097{letter-spacing:1.283840pt;}
.ls16_c00097{letter-spacing:1.982400pt;}
.ls12_c00097{letter-spacing:2.794240pt;}
.ws0_c00097{word-spacing:0.000000pt;}
._a_c00097{margin-left:-6.073067pt;}
._0_c00097{margin-left:-2.139733pt;}
._b_c00097{margin-left:-1.082453pt;}
._7_c00097{width:1.359360pt;}
._8_c00097{width:2.352000pt;}
._5_c00097{width:3.272533pt;}
._6_c00097{width:4.229120pt;}
._1_c00097{width:5.701760pt;}
._3_c00097{width:6.975573pt;}
._2_c00097{width:8.325227pt;}
._9_c00097{width:9.648533pt;}
._4_c00097{width:11.691307pt;}
.fs0_c00097{font-size:54.400000pt;}
.fs2_c00097{font-size:58.133333pt;}
.fs1_c00097{font-size:62.933333pt;}
.y0_c00097{bottom:0.000000pt;}
.y8_c00097{bottom:60.173333pt;}
.y7_c00097{bottom:592.980533pt;}
.y6_c00097{bottom:620.482400pt;}
.y5_c00097{bottom:648.000000pt;}
.y3_c00097{bottom:675.529333pt;}
.y4_c00097{bottom:675.533333pt;}
.y2_c00097{bottom:992.320000pt;}
.y1_c00097{bottom:1060.800000pt;}
.h2_c00097{height:53.390625pt;}
.h4_c00097{height:57.054688pt;}
.h3_c00097{height:61.765625pt;}
.h1_c00097{height:1122.666667pt;}
.h0_c00097{height:1122.880000pt;}
.w1_c00097{width:793.333333pt;}
.w0_c00097{width:793.600000pt;}
.x0_c00097{left:0.000000pt;}
.x2_c00097{left:91.066667pt;}
.x1_c00097{left:113.213333pt;}
.x3_c00097{left:155.653333pt;}
.x4_c00097{left:173.040000pt;}
.x5_c00097{left:382.813333pt;}
}





/* 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_c00098 {
    display:none;
  }
  .loading-indicator_c00098.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00098 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_c00098 { 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_c00098" -> "#page-container .classname_c00098")
 */
.pf_c00098 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00098 { /* 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_c00098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00098 { /* 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_c00098 { /* 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_c00098 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00098 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00098 {overflow:visible;}
  }
}
.c_c00098 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00098 { /* 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_c00098:after { /* webkit #35443 */
  content: '';
}
.t_c00098:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00098 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 */
}
.__c00098 { /* 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_c00098 { /* info for Javascript */
  display:none;
}
.l_c00098 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00098 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00098 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00098: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_c00098 {
    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_c00098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00098.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_c00098 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00098;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.311035;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_c00098;src:url('chunks/assets/font_c28ae2a8eb3b6ccc988b2c80.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:0.666000;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_c00098;src:url('chunks/assets/font_ac00f33e0e1a33dead83d77b.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.284180;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_c00098;src:url('chunks/assets/font_f48ac39321eaee4bff3b4fb4.woff2')format("woff");}.ff4_c00098{font-family:ff4_c00098;line-height:1.284668;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_c00098;src:url('chunks/assets/font_e504f6159b316550ed5788a8.woff2')format("woff");}.ff5_c00098{font-family:ff5_c00098;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:ff6_c00098;src:url('chunks/assets/font_10894e0ff3876c552ef11213.woff2')format("woff");}.ff6_c00098{font-family:ff6_c00098;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;}
.m35_c00098{transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);}
.m30_c00098{transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);}
.m6c_c00098{transform:matrix(0.107809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107809,0.000000,0.000000,0.250000,0,0);}
.m51_c00098{transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);}
.m65_c00098{transform:matrix(0.121631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121631,0.000000,0.000000,0.250000,0,0);}
.m4b_c00098{transform:matrix(0.139360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139360,0.000000,0.000000,0.250000,0,0);}
.m5c_c00098{transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);}
.m62_c00098{transform:matrix(0.144311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144311,0.000000,0.000000,0.250000,0,0);}
.m66_c00098{transform:matrix(0.146649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146649,0.000000,0.000000,0.250000,0,0);}
.m5a_c00098{transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);}
.m24_c00098{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m40_c00098{transform:matrix(0.158345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158345,0.000000,0.000000,0.250000,0,0);}
.m4c_c00098{transform:matrix(0.167422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167422,0.000000,0.000000,0.250000,0,0);}
.m67_c00098{transform:matrix(0.167516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167516,0.000000,0.000000,0.250000,0,0);}
.m6e_c00098{transform:matrix(0.169124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169124,0.000000,0.000000,0.250000,0,0);}
.m27_c00098{transform:matrix(0.169872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169872,0.000000,0.000000,0.250000,0,0);}
.m69_c00098{transform:matrix(0.173373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173373,0.000000,0.000000,0.250000,0,0);}
.m1_c00098{transform:matrix(0.175734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175734,0.000000,0.000000,0.250000,0,0);}
.m15_c00098{transform:matrix(0.176951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176951,0.000000,0.000000,0.250000,0,0);}
.m4a_c00098{transform:matrix(0.177262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177262,0.000000,0.000000,0.250000,0,0);}
.m3c_c00098{transform:matrix(0.182470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182470,0.000000,0.000000,0.250000,0,0);}
.m50_c00098{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00098{transform:matrix(0.188191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188191,0.000000,0.000000,0.250000,0,0);}
.m20_c00098{transform:matrix(0.191476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191476,0.000000,0.000000,0.250000,0,0);}
.m28_c00098{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m52_c00098{transform:matrix(0.194962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194962,0.000000,0.000000,0.250000,0,0);}
.m3e_c00098{transform:matrix(0.197752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197752,0.000000,0.000000,0.250000,0,0);}
.m19_c00098{transform:matrix(0.198887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198887,0.000000,0.000000,0.250000,0,0);}
.m3_c00098{transform:matrix(0.203921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203921,0.000000,0.000000,0.250000,0,0);}
.m43_c00098{transform:matrix(0.204078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204078,0.000000,0.000000,0.250000,0,0);}
.m4d_c00098{transform:matrix(0.206523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206523,0.000000,0.000000,0.250000,0,0);}
.m1c_c00098{transform:matrix(0.210623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210623,0.000000,0.000000,0.250000,0,0);}
.m6b_c00098{transform:matrix(0.210838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210838,0.000000,0.000000,0.250000,0,0);}
.m60_c00098{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m36_c00098{transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);}
.m55_c00098{transform:matrix(0.216673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216673,0.000000,0.000000,0.250000,0,0);}
.m46_c00098{transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);}
.m1d_c00098{transform:matrix(0.218868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218868,0.000000,0.000000,0.250000,0,0);}
.m9_c00098{transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);}
.m13_c00098{transform:matrix(0.219669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219669,0.000000,0.000000,0.250000,0,0);}
.m48_c00098{transform:matrix(0.220242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220242,0.000000,0.000000,0.250000,0,0);}
.ma_c00098{transform:matrix(0.221293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221293,0.000000,0.000000,0.250000,0,0);}
.m5b_c00098{transform:matrix(0.223434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223434,0.000000,0.000000,0.250000,0,0);}
.m3d_c00098{transform:matrix(0.227729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227729,0.000000,0.000000,0.250000,0,0);}
.m17_c00098{transform:matrix(0.228370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228370,0.000000,0.000000,0.250000,0,0);}
.m21_c00098{transform:matrix(0.228966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228966,0.000000,0.000000,0.250000,0,0);}
.m49_c00098{transform:matrix(0.235296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235296,0.000000,0.000000,0.250000,0,0);}
.m22_c00098{transform:matrix(0.236733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236733,0.000000,0.000000,0.250000,0,0);}
.m63_c00098{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m2a_c00098{transform:matrix(0.237032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237032,0.000000,0.000000,0.250000,0,0);}
.m2b_c00098{transform:matrix(0.237227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237227,0.000000,0.000000,0.250000,0,0);}
.m31_c00098{transform:matrix(0.237681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237681,0.000000,0.000000,0.250000,0,0);}
.m16_c00098{transform:matrix(0.238365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238365,0.000000,0.000000,0.250000,0,0);}
.m39_c00098{transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);}
.m26_c00098{transform:matrix(0.239806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239806,0.000000,0.000000,0.250000,0,0);}
.me_c00098{transform:matrix(0.240419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240419,0.000000,0.000000,0.250000,0,0);}
.m3f_c00098{transform:matrix(0.240483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240483,0.000000,0.000000,0.250000,0,0);}
.m23_c00098{transform:matrix(0.240743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240743,0.000000,0.000000,0.250000,0,0);}
.m2f_c00098{transform:matrix(0.241568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241568,0.000000,0.000000,0.250000,0,0);}
.m6f_c00098{transform:matrix(0.243138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243138,0.000000,0.000000,0.250000,0,0);}
.m1f_c00098{transform:matrix(0.243904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243904,0.000000,0.000000,0.250000,0,0);}
.m56_c00098{transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);}
.mf_c00098{transform:matrix(0.244667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244667,0.000000,0.000000,0.250000,0,0);}
.m1e_c00098{transform:matrix(0.244797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244797,0.000000,0.000000,0.250000,0,0);}
.mb_c00098{transform:matrix(0.245253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245253,0.000000,0.000000,0.250000,0,0);}
.m6_c00098{transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);}
.m18_c00098{transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);}
.m2e_c00098{transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);}
.m2c_c00098{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.m41_c00098{transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);}
.m0_c00098{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);}
.m58_c00098{transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);}
.m2d_c00098{transform:matrix(0.254468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254468,0.000000,0.000000,0.250000,0,0);}
.m12_c00098{transform:matrix(0.254837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254837,0.000000,0.000000,0.250000,0,0);}
.m1a_c00098{transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);}
.m5f_c00098{transform:matrix(0.256957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256957,0.000000,0.000000,0.250000,0,0);}
.m11_c00098{transform:matrix(0.258415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258415,0.000000,0.000000,0.250000,0,0);}
.m32_c00098{transform:matrix(0.259041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259041,0.000000,0.000000,0.250000,0,0);}
.m1b_c00098{transform:matrix(0.261028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261028,0.000000,0.000000,0.250000,0,0);}
.m25_c00098{transform:matrix(0.265941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265941,0.000000,0.000000,0.250000,0,0);}
.m64_c00098{transform:matrix(0.269200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269200,0.000000,0.000000,0.250000,0,0);}
.m5d_c00098{transform:matrix(0.269376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269376,0.000000,0.000000,0.250000,0,0);}
.m44_c00098{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m3a_c00098{transform:matrix(0.272342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272342,0.000000,0.000000,0.250000,0,0);}
.m47_c00098{transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);}
.m33_c00098{transform:matrix(0.276970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276970,0.000000,0.000000,0.250000,0,0);}
.m61_c00098{transform:matrix(0.279322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279322,0.000000,0.000000,0.250000,0,0);}
.md_c00098{transform:matrix(0.279329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279329,0.000000,0.000000,0.250000,0,0);}
.m7_c00098{transform:matrix(0.279646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279646,0.000000,0.000000,0.250000,0,0);}
.m57_c00098{transform:matrix(0.281656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281656,0.000000,0.000000,0.250000,0,0);}
.m4e_c00098{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m5e_c00098{transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);}
.m37_c00098{transform:matrix(0.291329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291329,0.000000,0.000000,0.250000,0,0);}
.mc_c00098{transform:matrix(0.296986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296986,0.000000,0.000000,0.250000,0,0);}
.m6d_c00098{transform:matrix(0.304037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304037,0.000000,0.000000,0.250000,0,0);}
.m42_c00098{transform:matrix(0.318694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318694,0.000000,0.000000,0.250000,0,0);}
.m2_c00098{transform:matrix(0.320477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320477,0.000000,0.000000,0.250000,0,0);}
.m10_c00098{transform:matrix(0.322641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322641,0.000000,0.000000,0.250000,0,0);}
.m3b_c00098{transform:matrix(0.334495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334495,0.000000,0.000000,0.250000,0,0);}
.m45_c00098{transform:matrix(0.340075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340075,0.000000,0.000000,0.250000,0,0);}
.m54_c00098{transform:matrix(0.341604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341604,0.000000,0.000000,0.250000,0,0);}
.m29_c00098{transform:matrix(0.345652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345652,0.000000,0.000000,0.250000,0,0);}
.m14_c00098{transform:matrix(0.361216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361216,0.000000,0.000000,0.250000,0,0);}
.m34_c00098{transform:matrix(0.375792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375792,0.000000,0.000000,0.250000,0,0);}
.m53_c00098{transform:matrix(0.389413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389413,0.000000,0.000000,0.250000,0,0);}
.m59_c00098{transform:matrix(0.408497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408497,0.000000,0.000000,0.250000,0,0);}
.m4_c00098{transform:matrix(0.413339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413339,0.000000,0.000000,0.250000,0,0);}
.m38_c00098{transform:matrix(0.430655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430655,0.000000,0.000000,0.250000,0,0);}
.m68_c00098{transform:matrix(0.449280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449280,0.000000,0.000000,0.250000,0,0);}
.m8_c00098{transform:matrix(0.490471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490471,0.000000,0.000000,0.250000,0,0);}
.m5_c00098{transform:matrix(0.495500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00098{transform:matrix(0.525518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525518,0.000000,0.000000,0.250000,0,0);}
.vd_c00098{vertical-align:-24.540000px;}
.vb_c00098{vertical-align:-23.040000px;}
.va_c00098{vertical-align:-21.660000px;}
.v10_c00098{vertical-align:-18.720000px;}
.v1_c00098{vertical-align:-15.840000px;}
.v8_c00098{vertical-align:-13.020000px;}
.vc_c00098{vertical-align:-8.580000px;}
.v6_c00098{vertical-align:-4.356000px;}
.v2_c00098{vertical-align:-2.940000px;}
.v3_c00098{vertical-align:-1.386000px;}
.v0_c00098{vertical-align:0.000000px;}
.v9_c00098{vertical-align:1.380000px;}
.v7_c00098{vertical-align:4.380000px;}
.vf_c00098{vertical-align:5.760000px;}
.v11_c00098{vertical-align:8.640000px;}
.v5_c00098{vertical-align:10.080000px;}
.v4_c00098{vertical-align:14.460000px;}
.ve_c00098{vertical-align:21.600000px;}
.ls5d_c00098{letter-spacing:-4.116000px;}
.ls6a_c00098{letter-spacing:-3.213000px;}
.ls43_c00098{letter-spacing:-2.835000px;}
.ls33_c00098{letter-spacing:-2.814000px;}
.ls28_c00098{letter-spacing:-2.772000px;}
.ls52_c00098{letter-spacing:-2.751000px;}
.ls6b_c00098{letter-spacing:-2.688000px;}
.ls15_c00098{letter-spacing:-2.604000px;}
.ls40_c00098{letter-spacing:-2.499000px;}
.ls57_c00098{letter-spacing:-2.415000px;}
.ls63_c00098{letter-spacing:-2.352000px;}
.ls1d_c00098{letter-spacing:-2.310000px;}
.ls70_c00098{letter-spacing:-2.205000px;}
.ls17_c00098{letter-spacing:-2.142000px;}
.ls44_c00098{letter-spacing:-2.100000px;}
.ls5f_c00098{letter-spacing:-2.079000px;}
.ls6d_c00098{letter-spacing:-2.074680px;}
.ls48_c00098{letter-spacing:-2.058000px;}
.ls53_c00098{letter-spacing:-2.037000px;}
.ls1e_c00098{letter-spacing:-1.974000px;}
.ls2f_c00098{letter-spacing:-1.933920px;}
.ls35_c00098{letter-spacing:-1.909440px;}
.ls23_c00098{letter-spacing:-1.869000px;}
.ls59_c00098{letter-spacing:-1.659021px;}
.ls22_c00098{letter-spacing:-1.505520px;}
.ls42_c00098{letter-spacing:-1.450440px;}
.ls36_c00098{letter-spacing:-1.438200px;}
.ls4b_c00098{letter-spacing:-1.428840px;}
.ls6c_c00098{letter-spacing:-1.416960px;}
.ls5b_c00098{letter-spacing:-1.260720px;}
.ls3e_c00098{letter-spacing:-1.242360px;}
.ls38_c00098{letter-spacing:-1.168920px;}
.ls62_c00098{letter-spacing:-1.155021px;}
.ls31_c00098{letter-spacing:-1.092000px;}
.ls3b_c00098{letter-spacing:-1.089360px;}
.ls2d_c00098{letter-spacing:-1.078680px;}
.ls1b_c00098{letter-spacing:-0.979200px;}
.ls2e_c00098{letter-spacing:-0.954720px;}
.ls41_c00098{letter-spacing:-0.881280px;}
.ls45_c00098{letter-spacing:-0.850680px;}
.ls49_c00098{letter-spacing:-0.817320px;}
.ls34_c00098{letter-spacing:-0.630360px;}
.ls2b_c00098{letter-spacing:-0.599760px;}
.ls19_c00098{letter-spacing:-0.563040px;}
.ls60_c00098{letter-spacing:-0.495729px;}
.ls2a_c00098{letter-spacing:-0.495720px;}
.ls32_c00098{letter-spacing:-0.465120px;}
.ls27_c00098{letter-spacing:-0.446760px;}
.ls47_c00098{letter-spacing:-0.440640px;}
.ls5e_c00098{letter-spacing:-0.391680px;}
.ls46_c00098{letter-spacing:-0.379440px;}
.ls37_c00098{letter-spacing:-0.342720px;}
.ls1c_c00098{letter-spacing:-0.318240px;}
.ls29_c00098{letter-spacing:-0.263160px;}
.ls4f_c00098{letter-spacing:-0.257040px;}
.ls4c_c00098{letter-spacing:-0.244800px;}
.ls21_c00098{letter-spacing:-0.208080px;}
.ls6e_c00098{letter-spacing:-0.189720px;}
.ls58_c00098{letter-spacing:-0.140760px;}
.ls50_c00098{letter-spacing:-0.104040px;}
.ls64_c00098{letter-spacing:-0.097920px;}
.ls4e_c00098{letter-spacing:-0.030600px;}
.ls55_c00098{letter-spacing:-0.010800px;}
.ls13_c00098{letter-spacing:0.000000px;}
.ls30_c00098{letter-spacing:0.058740px;}
.lsf_c00098{letter-spacing:0.091800px;}
.ls3c_c00098{letter-spacing:0.144302px;}
.lse_c00098{letter-spacing:0.201960px;}
.lsd_c00098{letter-spacing:0.504909px;}
.ls39_c00098{letter-spacing:0.636480px;}
.ls6_c00098{letter-spacing:0.802560px;}
.ls69_c00098{letter-spacing:0.815340px;}
.ls7_c00098{letter-spacing:0.869040px;}
.ls4_c00098{letter-spacing:0.899640px;}
.lsb_c00098{letter-spacing:0.924120px;}
.lsa_c00098{letter-spacing:0.960840px;}
.ls2_c00098{letter-spacing:0.973080px;}
.ls4d_c00098{letter-spacing:1.046520px;}
.ls20_c00098{letter-spacing:1.140030px;}
.ls8_c00098{letter-spacing:1.181160px;}
.ls5a_c00098{letter-spacing:1.230000px;}
.ls3f_c00098{letter-spacing:1.254600px;}
.ls10_c00098{letter-spacing:1.260000px;}
.ls16_c00098{letter-spacing:1.350030px;}
.ls12_c00098{letter-spacing:1.352400px;}
.ls24_c00098{letter-spacing:1.470030px;}
.ls25_c00098{letter-spacing:1.500000px;}
.ls1a_c00098{letter-spacing:1.560000px;}
.ls61_c00098{letter-spacing:1.567529px;}
.ls66_c00098{letter-spacing:1.650030px;}
.ls1f_c00098{letter-spacing:1.653120px;}
.ls68_c00098{letter-spacing:1.680000px;}
.ls56_c00098{letter-spacing:1.770030px;}
.ls5c_c00098{letter-spacing:1.888920px;}
.ls3d_c00098{letter-spacing:1.950030px;}
.ls6f_c00098{letter-spacing:2.010000px;}
.lsc_c00098{letter-spacing:2.056320px;}
.ls18_c00098{letter-spacing:2.160000px;}
.ls3_c00098{letter-spacing:2.184840px;}
.ls11_c00098{letter-spacing:2.241360px;}
.ls3a_c00098{letter-spacing:2.280000px;}
.ls5_c00098{letter-spacing:2.350080px;}
.ls51_c00098{letter-spacing:2.520000px;}
.ls0_c00098{letter-spacing:2.827440px;}
.ls9_c00098{letter-spacing:2.870280px;}
.ls14_c00098{letter-spacing:2.940000px;}
.ls67_c00098{letter-spacing:2.970000px;}
.ls26_c00098{letter-spacing:3.000000px;}
.ls2c_c00098{letter-spacing:3.060000px;}
.ls54_c00098{letter-spacing:3.360000px;}
.ls65_c00098{letter-spacing:3.600000px;}
.ls1_c00098{letter-spacing:3.630000px;}
.ls4a_c00098{letter-spacing:3.960000px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{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__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00098{word-spacing:0.000000px;}
._2d_c00098{margin-left:-25.903200px;}
._6_c00098{margin-left:-24.463200px;}
._22_c00098{margin-left:-23.023200px;}
._2f_c00098{margin-left:-20.544840px;}
._d_c00098{margin-left:-19.137240px;}
._19_c00098{margin-left:-17.368800px;}
._30_c00098{margin-left:-15.836400px;}
._1a_c00098{margin-left:-14.625840px;}
._18_c00098{margin-left:-13.468920px;}
._14_c00098{margin-left:-11.750400px;}
._2e_c00098{margin-left:-10.557840px;}
._1b_c00098{margin-left:-9.316800px;}
._c_c00098{margin-left:-7.660560px;}
._20_c00098{margin-left:-6.396000px;}
._3_c00098{margin-left:-4.676400px;}
._a_c00098{margin-left:-3.392640px;}
._e_c00098{margin-left:-1.191840px;}
._7_c00098{width:2.679120px;}
._46_c00098{width:5.568313px;}
._1f_c00098{width:22.818000px;}
._8_c00098{width:28.886400px;}
._24_c00098{width:31.995360px;}
._32_c00098{width:35.536800px;}
._21_c00098{width:40.629600px;}
._9_c00098{width:48.246000px;}
._2_c00098{width:49.698000px;}
._3b_c00098{width:54.147600px;}
._3a_c00098{width:55.500000px;}
._35_c00098{width:57.300000px;}
._39_c00098{width:59.445600px;}
._38_c00098{width:61.034400px;}
._36_c00098{width:62.445600px;}
._37_c00098{width:63.494400px;}
._33_c00098{width:66.708960px;}
._4a_c00098{width:70.620000px;}
._41_c00098{width:86.240400px;}
._b_c00098{width:107.230200px;}
._16_c00098{width:154.770000px;}
._4_c00098{width:155.792400px;}
._3d_c00098{width:167.698800px;}
._28_c00098{width:210.714000px;}
._17_c00098{width:261.360000px;}
._3c_c00098{width:273.778800px;}
._23_c00098{width:296.292480px;}
._10_c00098{width:365.046000px;}
._26_c00098{width:367.884000px;}
._2a_c00098{width:462.139200px;}
._5_c00098{width:471.570000px;}
._11_c00098{width:475.926000px;}
._29_c00098{width:515.337600px;}
._34_c00098{width:664.545600px;}
._49_c00098{width:689.642400px;}
._3f_c00098{width:697.139700px;}
._4b_c00098{width:718.849200px;}
._25_c00098{width:723.739200px;}
._4c_c00098{width:768.618000px;}
._12_c00098{width:810.315840px;}
._31_c00098{width:835.284120px;}
._47_c00098{width:849.720000px;}
._42_c00098{width:885.440760px;}
._48_c00098{width:897.798000px;}
._0_c00098{width:898.848000px;}
._15_c00098{width:936.100800px;}
._1d_c00098{width:983.434200px;}
._45_c00098{width:986.128496px;}
._2b_c00098{width:1005.840000px;}
._2c_c00098{width:1042.611000px;}
._27_c00098{width:1083.322560px;}
._1e_c00098{width:1087.014000px;}
._f_c00098{width:1147.469760px;}
._13_c00098{width:1217.502000px;}
._1c_c00098{width:1436.260440px;}
._3e_c00098{width:1459.821480px;}
._40_c00098{width:1625.202000px;}
._43_c00098{width:1737.753600px;}
._1_c00098{width:1747.791840px;}
._44_c00098{width:1918.718280px;}
.fc0_c00098{color:transparent;}
.fse_c00098{font-size:22.800600px;}
.fs41_c00098{font-size:24.480000px;}
.fs2f_c00098{font-size:24.600000px;}
.fs3_c00098{font-size:25.200000px;}
.fs6_c00098{font-size:27.000600px;}
.fs2c_c00098{font-size:27.600000px;}
.fs30_c00098{font-size:28.800000px;}
.fs34_c00098{font-size:28.800600px;}
.fs12_c00098{font-size:29.400600px;}
.fs13_c00098{font-size:30.000000px;}
.fs27_c00098{font-size:30.240600px;}
.fsa_c00098{font-size:31.200000px;}
.fs16_c00098{font-size:31.680000px;}
.fs32_c00098{font-size:32.400600px;}
.fs33_c00098{font-size:33.000600px;}
.fs37_c00098{font-size:33.600000px;}
.fs36_c00098{font-size:34.800600px;}
.fs29_c00098{font-size:35.400600px;}
.fs28_c00098{font-size:36.000000px;}
.fs1c_c00098{font-size:37.440000px;}
.fs1d_c00098{font-size:39.000600px;}
.fs40_c00098{font-size:40.200000px;}
.fs20_c00098{font-size:40.320000px;}
.fs9_c00098{font-size:43.200000px;}
.fs1b_c00098{font-size:45.600000px;}
.fs1a_c00098{font-size:46.080000px;}
.fs2e_c00098{font-size:47.400600px;}
.fs3e_c00098{font-size:47.520000px;}
.fsd_c00098{font-size:50.400000px;}
.fs11_c00098{font-size:53.400000px;}
.fs38_c00098{font-size:54.720000px;}
.fs21_c00098{font-size:55.800000px;}
.fs22_c00098{font-size:56.160000px;}
.fsc_c00098{font-size:56.400000px;}
.fs24_c00098{font-size:57.000000px;}
.fs25_c00098{font-size:58.200000px;}
.fs0_c00098{font-size:58.800000px;}
.fs2b_c00098{font-size:59.400000px;}
.fs14_c00098{font-size:60.000000px;}
.fs3f_c00098{font-size:60.600000px;}
.fs7_c00098{font-size:61.200000px;}
.fs8_c00098{font-size:62.400000px;}
.fs42_c00098{font-size:63.000000px;}
.fs39_c00098{font-size:64.200000px;}
.fsb_c00098{font-size:64.800000px;}
.fs4_c00098{font-size:66.000000px;}
.fs26_c00098{font-size:67.200000px;}
.fs19_c00098{font-size:67.800000px;}
.fs2a_c00098{font-size:69.000000px;}
.fs1_c00098{font-size:69.120000px;}
.fs1e_c00098{font-size:71.400000px;}
.fs35_c00098{font-size:72.000000px;}
.fsf_c00098{font-size:72.600000px;}
.fs3d_c00098{font-size:73.800000px;}
.fs2_c00098{font-size:74.400000px;}
.fs3c_c00098{font-size:75.000000px;}
.fs2d_c00098{font-size:76.800000px;}
.fs3b_c00098{font-size:78.000000px;}
.fs23_c00098{font-size:78.600000px;}
.fs15_c00098{font-size:79.200000px;}
.fs17_c00098{font-size:80.400000px;}
.fs1f_c00098{font-size:81.000000px;}
.fs10_c00098{font-size:82.200000px;}
.fs18_c00098{font-size:84.000000px;}
.fs3a_c00098{font-size:91.800000px;}
.fs5_c00098{font-size:92.400000px;}
.fs31_c00098{font-size:117.600000px;}
.y0_c00098{bottom:0.000000px;}
.ya5_c00098{bottom:69.120000px;}
.ya4_c00098{bottom:123.480000px;}
.ya2_c00098{bottom:128.520000px;}
.ya3_c00098{bottom:130.680000px;}
.ya1_c00098{bottom:140.760000px;}
.ya0_c00098{bottom:145.080000px;}
.y9f_c00098{bottom:159.840000px;}
.y9e_c00098{bottom:161.640000px;}
.y9c_c00098{bottom:164.520000px;}
.y9d_c00098{bottom:168.120000px;}
.y98_c00098{bottom:173.160000px;}
.y9a_c00098{bottom:175.320000px;}
.y9b_c00098{bottom:176.760000px;}
.y99_c00098{bottom:177.120000px;}
.y96_c00098{bottom:182.520000px;}
.y97_c00098{bottom:185.040000px;}
.y94_c00098{bottom:194.055000px;}
.y92_c00098{bottom:194.415000px;}
.y95_c00098{bottom:196.575000px;}
.y93_c00098{bottom:196.935000px;}
.y91_c00098{bottom:197.295000px;}
.y90_c00098{bottom:201.615000px;}
.y8f_c00098{bottom:214.935000px;}
.y8d_c00098{bottom:216.720000px;}
.y8e_c00098{bottom:218.175000px;}
.y8b_c00098{bottom:230.055000px;}
.y8a_c00098{bottom:230.415000px;}
.y8c_c00098{bottom:232.575000px;}
.y88_c00098{bottom:235.095000px;}
.y89_c00098{bottom:235.800000px;}
.y87_c00098{bottom:250.935000px;}
.y84_c00098{bottom:252.720000px;}
.y86_c00098{bottom:256.695000px;}
.y85_c00098{bottom:257.055000px;}
.y83_c00098{bottom:266.055000px;}
.y82_c00098{bottom:269.655000px;}
.y81_c00098{bottom:272.535000px;}
.y80_c00098{bottom:286.575000px;}
.y7f_c00098{bottom:290.175000px;}
.y7c_c00098{bottom:302.055000px;}
.y7b_c00098{bottom:302.415000px;}
.y7d_c00098{bottom:304.200000px;}
.y7e_c00098{bottom:304.575000px;}
.y78_c00098{bottom:308.535000px;}
.y7a_c00098{bottom:309.975000px;}
.y79_c00098{bottom:310.335000px;}
.y77_c00098{bottom:323.655000px;}
.y75_c00098{bottom:324.720000px;}
.y76_c00098{bottom:329.055000px;}
.y73_c00098{bottom:338.055000px;}
.y72_c00098{bottom:338.415000px;}
.y74_c00098{bottom:340.575000px;}
.y71_c00098{bottom:341.295000px;}
.y6f_c00098{bottom:344.535000px;}
.y70_c00098{bottom:345.255000px;}
.y6e_c00098{bottom:357.495000px;}
.y6d_c00098{bottom:360.720000px;}
.y6b_c00098{bottom:374.055000px;}
.y6c_c00098{bottom:376.575000px;}
.y6a_c00098{bottom:376.935000px;}
.y68_c00098{bottom:379.455000px;}
.y69_c00098{bottom:384.855000px;}
.y66_c00098{bottom:395.295000px;}
.y67_c00098{bottom:395.640000px;}
.y64_c00098{bottom:396.015000px;}
.y65_c00098{bottom:403.560000px;}
.y63_c00098{bottom:410.055000px;}
.y60_c00098{bottom:410.775000px;}
.y62_c00098{bottom:413.295000px;}
.y5f_c00098{bottom:414.720000px;}
.y61_c00098{bottom:417.240000px;}
.y5d_c00098{bottom:435.975000px;}
.y5e_c00098{bottom:436.695000px;}
.y5c_c00098{bottom:446.055000px;}
.y5b_c00098{bottom:448.200000px;}
.y58_c00098{bottom:463.320000px;}
.y59_c00098{bottom:465.855000px;}
.y5a_c00098{bottom:466.200000px;}
.y57_c00098{bottom:466.560000px;}
.y56_c00098{bottom:470.895000px;}
.y55_c00098{bottom:481.320000px;}
.y54_c00098{bottom:484.200000px;}
.y52_c00098{bottom:499.320000px;}
.y53_c00098{bottom:501.855000px;}
.y51_c00098{bottom:502.200000px;}
.y4e_c00098{bottom:520.200000px;}
.y50_c00098{bottom:520.935000px;}
.y4f_c00098{bottom:526.320000px;}
.y4c_c00098{bottom:537.135000px;}
.y4d_c00098{bottom:543.615000px;}
.y4a_c00098{bottom:552.615000px;}
.y49_c00098{bottom:552.975000px;}
.y47_c00098{bottom:554.055000px;}
.y4b_c00098{bottom:554.775000px;}
.y48_c00098{bottom:555.855000px;}
.y46_c00098{bottom:558.720000px;}
.y45_c00098{bottom:572.775000px;}
.y44_c00098{bottom:588.615000px;}
.y43_c00098{bottom:592.200000px;}
.y42_c00098{bottom:607.695000px;}
.y41_c00098{bottom:609.855000px;}
.y40_c00098{bottom:624.615000px;}
.y3f_c00098{bottom:627.855000px;}
.y3e_c00098{bottom:645.855000px;}
.y3c_c00098{bottom:660.615000px;}
.y3a_c00098{bottom:662.055000px;}
.y3d_c00098{bottom:662.775000px;}
.y3b_c00098{bottom:663.855000px;}
.y39_c00098{bottom:686.175000px;}
.y37_c00098{bottom:696.975000px;}
.y38_c00098{bottom:699.135000px;}
.y36_c00098{bottom:700.560000px;}
.y35_c00098{bottom:717.480000px;}
.y34_c00098{bottom:720.015000px;}
.y33_c00098{bottom:732.615000px;}
.y32_c00098{bottom:735.135000px;}
.y2f_c00098{bottom:753.480000px;}
.y31_c00098{bottom:753.855000px;}
.y30_c00098{bottom:756.015000px;}
.y2d_c00098{bottom:768.600000px;}
.y2c_c00098{bottom:768.975000px;}
.y2e_c00098{bottom:770.760000px;}
.y2b_c00098{bottom:771.855000px;}
.y2a_c00098{bottom:789.855000px;}
.y28_c00098{bottom:806.760000px;}
.y29_c00098{bottom:807.495000px;}
.y27_c00098{bottom:821.895000px;}
.y24_c00098{bottom:825.135000px;}
.y26_c00098{bottom:825.495000px;}
.y25_c00098{bottom:828.015000px;}
.y23_c00098{bottom:840.600000px;}
.y21_c00098{bottom:843.495000px;}
.y22_c00098{bottom:843.855000px;}
.y20_c00098{bottom:860.760000px;}
.y1f_c00098{bottom:879.495000px;}
.y1e_c00098{bottom:894.975000px;}
.y1d_c00098{bottom:900.015000px;}
.y1c_c00098{bottom:912.240000px;}
.y1b_c00098{bottom:914.760000px;}
.y19_c00098{bottom:929.895000px;}
.y1a_c00098{bottom:932.055000px;}
.y18_c00098{bottom:932.760000px;}
.y17_c00098{bottom:951.135000px;}
.y16_c00098{bottom:954.015000px;}
.y15_c00098{bottom:964.440000px;}
.y14_c00098{bottom:968.055000px;}
.y13_c00098{bottom:983.175000px;}
.y12_c00098{bottom:986.760000px;}
.yf_c00098{bottom:987.855000px;}
.y10_c00098{bottom:992.895000px;}
.y11_c00098{bottom:993.600000px;}
.ye_c00098{bottom:1001.175000px;}
.yd_c00098{bottom:1004.400000px;}
.yc_c00098{bottom:1005.495000px;}
.yb_c00098{bottom:1022.400000px;}
.y8_c00098{bottom:1022.760000px;}
.ya_c00098{bottom:1023.135000px;}
.y9_c00098{bottom:1028.895000px;}
.y6_c00098{bottom:1040.400000px;}
.y7_c00098{bottom:1040.760000px;}
.y3_c00098{bottom:1045.080000px;}
.y4_c00098{bottom:1046.175000px;}
.y5_c00098{bottom:1047.240000px;}
.y2_c00098{bottom:1055.535000px;}
.y1_c00098{bottom:1197.015000px;}
.h58_c00098{height:16.303680px;}
.h43_c00098{height:19.180800px;}
.h38_c00098{height:20.140240px;}
.h1c_c00098{height:21.098880px;}
.h12_c00098{height:23.780313px;}
.h4c_c00098{height:23.976000px;}
.h26_c00098{height:24.935040px;}
.h41_c00098{height:25.657031px;}
.h6_c00098{height:26.282813px;}
.h8_c00098{height:26.486428px;}
.h2d_c00098{height:26.853120px;}
.h18_c00098{height:29.443359px;}
.hd_c00098{height:30.605859px;}
.h17_c00098{height:30.663907px;}
.h23_c00098{height:30.689280px;}
.h54_c00098{height:31.648320px;}
.h48_c00098{height:32.388284px;}
.h46_c00098{height:32.540625px;}
.h3a_c00098{height:34.743753px;}
.h4d_c00098{height:35.043750px;}
.h4e_c00098{height:36.443520px;}
.h2f_c00098{height:37.402560px;}
.h31_c00098{height:38.257913px;}
.h27_c00098{height:38.276956px;}
.h57_c00098{height:39.434473px;}
.h20_c00098{height:42.377344px;}
.hb_c00098{height:42.398438px;}
.h39_c00098{height:44.295938px;}
.h24_c00098{height:44.731641px;}
.h3_c00098{height:46.033920px;}
.h4b_c00098{height:47.235937px;}
.h40_c00098{height:49.437345px;}
.h11_c00098{height:49.464844px;}
.h47_c00098{height:50.115937px;}
.h15_c00098{height:52.383105px;}
.h28_c00098{height:52.935937px;}
.h3b_c00098{height:57.091699px;}
.h36_c00098{height:57.120117px;}
.h4_c00098{height:57.680273px;}
.h2e_c00098{height:57.708984px;}
.h10_c00098{height:58.823438px;}
.h19_c00098{height:58.886719px;}
.h2_c00098{height:59.259375px;}
.h35_c00098{height:59.449219px;}
.h56_c00098{height:59.475586px;}
.h9_c00098{height:60.034570px;}
.h1b_c00098{height:60.064453px;}
.ha_c00098{height:61.242188px;}
.h25_c00098{height:61.326563px;}
.h59_c00098{height:61.831055px;}
.h3d_c00098{height:61.952344px;}
.h4f_c00098{height:62.977441px;}
.h45_c00098{height:64.515938px;}
.h55_c00098{height:65.323125px;}
.hc_c00098{height:65.895937px;}
.h49_c00098{height:65.920312px;}
.h2c_c00098{height:67.455937px;}
.he_c00098{height:67.584375px;}
.hf_c00098{height:68.835938px;}
.h37_c00098{height:70.087500px;}
.h2a_c00098{height:70.215938px;}
.h3e_c00098{height:70.275937px;}
.h32_c00098{height:70.335937px;}
.h4a_c00098{height:70.664062px;}
.h13_c00098{height:71.252930px;}
.h3c_c00098{height:71.964844px;}
.h53_c00098{height:72.394629px;}
.h5_c00098{height:73.019531px;}
.h1f_c00098{height:73.215938px;}
.h30_c00098{height:74.023125px;}
.h29_c00098{height:74.467969px;}
.h42_c00098{height:74.595937px;}
.h7_c00098{height:74.845547px;}
.h3f_c00098{height:75.375000px;}
.h52_c00098{height:76.552734px;}
.h33_c00098{height:77.141602px;}
.h51_c00098{height:77.475937px;}
.h1e_c00098{height:77.596875px;}
.h34_c00098{height:77.730469px;}
.h21_c00098{height:78.908203px;}
.h1d_c00098{height:78.915938px;}
.h2b_c00098{height:79.497070px;}
.h22_c00098{height:82.441406px;}
.h1a_c00098{height:82.603125px;}
.h14_c00098{height:85.732031px;}
.h16_c00098{height:90.685547px;}
.h50_c00098{height:95.744531px;}
.h44_c00098{height:122.653125px;}
.h1_c00098{height:1263.000000px;}
.h0_c00098{height:1263.240000px;}
.w1_c00098{width:892.500000px;}
.w0_c00098{width:892.800000px;}
.x0_c00098{left:0.000000px;}
.x71_c00098{left:114.075000px;}
.x32_c00098{left:116.430000px;}
.x28_c00098{left:117.510000px;}
.xf_c00098{left:118.590000px;}
.x72_c00098{left:119.880000px;}
.x46_c00098{left:121.020000px;}
.x2c_c00098{left:122.490000px;}
.x1c_c00098{left:123.555000px;}
.x3_c00098{left:124.815000px;}
.x1_c00098{left:127.365000px;}
.x4a_c00098{left:131.265000px;}
.x67_c00098{left:139.095000px;}
.x1b_c00098{left:142.200000px;}
.x47_c00098{left:143.355000px;}
.x27_c00098{left:144.795000px;}
.x15_c00098{left:146.760000px;}
.x21_c00098{left:153.060000px;}
.x5b_c00098{left:154.785000px;}
.x4_c00098{left:156.285000px;}
.x55_c00098{left:159.915000px;}
.x3e_c00098{left:161.145000px;}
.x58_c00098{left:163.935000px;}
.x74_c00098{left:165.600000px;}
.x3f_c00098{left:167.835000px;}
.x68_c00098{left:173.805000px;}
.x5e_c00098{left:175.170000px;}
.x65_c00098{left:176.805000px;}
.xa_c00098{left:181.140000px;}
.x33_c00098{left:183.030000px;}
.x1d_c00098{left:184.800000px;}
.x7_c00098{left:185.910000px;}
.x1a_c00098{left:187.305000px;}
.x5c_c00098{left:188.340000px;}
.x73_c00098{left:190.320000px;}
.x4f_c00098{left:191.790000px;}
.x59_c00098{left:193.275000px;}
.x30_c00098{left:195.165000px;}
.xe_c00098{left:196.755000px;}
.x12_c00098{left:198.135000px;}
.x38_c00098{left:200.580000px;}
.x51_c00098{left:202.785000px;}
.x10_c00098{left:205.335000px;}
.x5a_c00098{left:207.510000px;}
.x8_c00098{left:209.295000px;}
.x5f_c00098{left:212.775000px;}
.x50_c00098{left:217.305000px;}
.x13_c00098{left:218.430000px;}
.x5_c00098{left:220.245000px;}
.x4b_c00098{left:223.095000px;}
.x6f_c00098{left:224.535000px;}
.x62_c00098{left:225.570000px;}
.x4c_c00098{left:227.610000px;}
.x35_c00098{left:232.995000px;}
.x39_c00098{left:235.140000px;}
.x70_c00098{left:237.330000px;}
.x36_c00098{left:240.690000px;}
.x1e_c00098{left:243.300000px;}
.x9_c00098{left:247.605000px;}
.x54_c00098{left:250.410000px;}
.x22_c00098{left:253.740000px;}
.x2d_c00098{left:258.300000px;}
.x23_c00098{left:259.500000px;}
.x3a_c00098{left:267.540000px;}
.x3b_c00098{left:282.090000px;}
.x2e_c00098{left:294.720000px;}
.x3c_c00098{left:423.300000px;}
.x6e_c00098{left:425.610000px;}
.x53_c00098{left:426.690000px;}
.x40_c00098{left:427.770000px;}
.x14_c00098{left:429.570000px;}
.x2_c00098{left:430.575000px;}
.x6b_c00098{left:447.375000px;}
.x19_c00098{left:451.665000px;}
.x31_c00098{left:455.130000px;}
.x63_c00098{left:473.055000px;}
.x34_c00098{left:475.215000px;}
.x29_c00098{left:477.195000px;}
.x3d_c00098{left:480.690000px;}
.x6_c00098{left:482.850000px;}
.x41_c00098{left:501.135000px;}
.x69_c00098{left:505.170000px;}
.x52_c00098{left:506.250000px;}
.x1f_c00098{left:508.410000px;}
.x6c_c00098{left:553.680000px;}
.x24_c00098{left:556.215000px;}
.xb_c00098{left:561.330000px;}
.x4d_c00098{left:577.050000px;}
.x6d_c00098{left:579.840000px;}
.x42_c00098{left:581.805000px;}
.x20_c00098{left:583.755000px;}
.x75_c00098{left:605.175000px;}
.x43_c00098{left:607.695000px;}
.x48_c00098{left:608.955000px;}
.x16_c00098{left:610.080000px;}
.x4e_c00098{left:612.450000px;}
.x25_c00098{left:616.140000px;}
.x61_c00098{left:633.120000px;}
.x2a_c00098{left:635.415000px;}
.xc_c00098{left:637.425000px;}
.x56_c00098{left:660.840000px;}
.x2f_c00098{left:662.805000px;}
.x60_c00098{left:664.650000px;}
.x49_c00098{left:666.090000px;}
.xd_c00098{left:668.610000px;}
.x5d_c00098{left:686.175000px;}
.x37_c00098{left:688.335000px;}
.x17_c00098{left:690.675000px;}
.x6a_c00098{left:712.095000px;}
.x44_c00098{left:714.255000px;}
.x2b_c00098{left:716.085000px;}
.x66_c00098{left:717.210000px;}
.x26_c00098{left:718.545000px;}
.x11_c00098{left:721.785000px;}
.x64_c00098{left:743.850000px;}
.x57_c00098{left:744.930000px;}
.x45_c00098{left:746.370000px;}
.x18_c00098{left:747.810000px;}
@media print{
.vd_c00098{vertical-align:-21.813333pt;}
.vb_c00098{vertical-align:-20.480000pt;}
.va_c00098{vertical-align:-19.253333pt;}
.v10_c00098{vertical-align:-16.640000pt;}
.v1_c00098{vertical-align:-14.080000pt;}
.v8_c00098{vertical-align:-11.573333pt;}
.vc_c00098{vertical-align:-7.626667pt;}
.v6_c00098{vertical-align:-3.872000pt;}
.v2_c00098{vertical-align:-2.613333pt;}
.v3_c00098{vertical-align:-1.232000pt;}
.v0_c00098{vertical-align:0.000000pt;}
.v9_c00098{vertical-align:1.226667pt;}
.v7_c00098{vertical-align:3.893333pt;}
.vf_c00098{vertical-align:5.120000pt;}
.v11_c00098{vertical-align:7.680000pt;}
.v5_c00098{vertical-align:8.960000pt;}
.v4_c00098{vertical-align:12.853333pt;}
.ve_c00098{vertical-align:19.200000pt;}
.ls5d_c00098{letter-spacing:-3.658667pt;}
.ls6a_c00098{letter-spacing:-2.856000pt;}
.ls43_c00098{letter-spacing:-2.520000pt;}
.ls33_c00098{letter-spacing:-2.501333pt;}
.ls28_c00098{letter-spacing:-2.464000pt;}
.ls52_c00098{letter-spacing:-2.445333pt;}
.ls6b_c00098{letter-spacing:-2.389333pt;}
.ls15_c00098{letter-spacing:-2.314667pt;}
.ls40_c00098{letter-spacing:-2.221333pt;}
.ls57_c00098{letter-spacing:-2.146667pt;}
.ls63_c00098{letter-spacing:-2.090667pt;}
.ls1d_c00098{letter-spacing:-2.053333pt;}
.ls70_c00098{letter-spacing:-1.960000pt;}
.ls17_c00098{letter-spacing:-1.904000pt;}
.ls44_c00098{letter-spacing:-1.866667pt;}
.ls5f_c00098{letter-spacing:-1.848000pt;}
.ls6d_c00098{letter-spacing:-1.844160pt;}
.ls48_c00098{letter-spacing:-1.829333pt;}
.ls53_c00098{letter-spacing:-1.810667pt;}
.ls1e_c00098{letter-spacing:-1.754667pt;}
.ls2f_c00098{letter-spacing:-1.719040pt;}
.ls35_c00098{letter-spacing:-1.697280pt;}
.ls23_c00098{letter-spacing:-1.661333pt;}
.ls59_c00098{letter-spacing:-1.474685pt;}
.ls22_c00098{letter-spacing:-1.338240pt;}
.ls42_c00098{letter-spacing:-1.289280pt;}
.ls36_c00098{letter-spacing:-1.278400pt;}
.ls4b_c00098{letter-spacing:-1.270080pt;}
.ls6c_c00098{letter-spacing:-1.259520pt;}
.ls5b_c00098{letter-spacing:-1.120640pt;}
.ls3e_c00098{letter-spacing:-1.104320pt;}
.ls38_c00098{letter-spacing:-1.039040pt;}
.ls62_c00098{letter-spacing:-1.026685pt;}
.ls31_c00098{letter-spacing:-0.970667pt;}
.ls3b_c00098{letter-spacing:-0.968320pt;}
.ls2d_c00098{letter-spacing:-0.958827pt;}
.ls1b_c00098{letter-spacing:-0.870400pt;}
.ls2e_c00098{letter-spacing:-0.848640pt;}
.ls41_c00098{letter-spacing:-0.783360pt;}
.ls45_c00098{letter-spacing:-0.756160pt;}
.ls49_c00098{letter-spacing:-0.726507pt;}
.ls34_c00098{letter-spacing:-0.560320pt;}
.ls2b_c00098{letter-spacing:-0.533120pt;}
.ls19_c00098{letter-spacing:-0.500480pt;}
.ls60_c00098{letter-spacing:-0.440648pt;}
.ls2a_c00098{letter-spacing:-0.440640pt;}
.ls32_c00098{letter-spacing:-0.413440pt;}
.ls27_c00098{letter-spacing:-0.397120pt;}
.ls47_c00098{letter-spacing:-0.391680pt;}
.ls5e_c00098{letter-spacing:-0.348160pt;}
.ls46_c00098{letter-spacing:-0.337280pt;}
.ls37_c00098{letter-spacing:-0.304640pt;}
.ls1c_c00098{letter-spacing:-0.282880pt;}
.ls29_c00098{letter-spacing:-0.233920pt;}
.ls4f_c00098{letter-spacing:-0.228480pt;}
.ls4c_c00098{letter-spacing:-0.217600pt;}
.ls21_c00098{letter-spacing:-0.184960pt;}
.ls6e_c00098{letter-spacing:-0.168640pt;}
.ls58_c00098{letter-spacing:-0.125120pt;}
.ls50_c00098{letter-spacing:-0.092480pt;}
.ls64_c00098{letter-spacing:-0.087040pt;}
.ls4e_c00098{letter-spacing:-0.027200pt;}
.ls55_c00098{letter-spacing:-0.009600pt;}
.ls13_c00098{letter-spacing:0.000000pt;}
.ls30_c00098{letter-spacing:0.052213pt;}
.lsf_c00098{letter-spacing:0.081600pt;}
.ls3c_c00098{letter-spacing:0.128269pt;}
.lse_c00098{letter-spacing:0.179520pt;}
.lsd_c00098{letter-spacing:0.448808pt;}
.ls39_c00098{letter-spacing:0.565760pt;}
.ls6_c00098{letter-spacing:0.713387pt;}
.ls69_c00098{letter-spacing:0.724747pt;}
.ls7_c00098{letter-spacing:0.772480pt;}
.ls4_c00098{letter-spacing:0.799680pt;}
.lsb_c00098{letter-spacing:0.821440pt;}
.lsa_c00098{letter-spacing:0.854080pt;}
.ls2_c00098{letter-spacing:0.864960pt;}
.ls4d_c00098{letter-spacing:0.930240pt;}
.ls20_c00098{letter-spacing:1.013360pt;}
.ls8_c00098{letter-spacing:1.049920pt;}
.ls5a_c00098{letter-spacing:1.093333pt;}
.ls3f_c00098{letter-spacing:1.115200pt;}
.ls10_c00098{letter-spacing:1.120000pt;}
.ls16_c00098{letter-spacing:1.200027pt;}
.ls12_c00098{letter-spacing:1.202133pt;}
.ls24_c00098{letter-spacing:1.306693pt;}
.ls25_c00098{letter-spacing:1.333333pt;}
.ls1a_c00098{letter-spacing:1.386667pt;}
.ls61_c00098{letter-spacing:1.393359pt;}
.ls66_c00098{letter-spacing:1.466693pt;}
.ls1f_c00098{letter-spacing:1.469440pt;}
.ls68_c00098{letter-spacing:1.493333pt;}
.ls56_c00098{letter-spacing:1.573360pt;}
.ls5c_c00098{letter-spacing:1.679040pt;}
.ls3d_c00098{letter-spacing:1.733360pt;}
.ls6f_c00098{letter-spacing:1.786667pt;}
.lsc_c00098{letter-spacing:1.827840pt;}
.ls18_c00098{letter-spacing:1.920000pt;}
.ls3_c00098{letter-spacing:1.942080pt;}
.ls11_c00098{letter-spacing:1.992320pt;}
.ls3a_c00098{letter-spacing:2.026667pt;}
.ls5_c00098{letter-spacing:2.088960pt;}
.ls51_c00098{letter-spacing:2.240000pt;}
.ls0_c00098{letter-spacing:2.513280pt;}
.ls9_c00098{letter-spacing:2.551360pt;}
.ls14_c00098{letter-spacing:2.613333pt;}
.ls67_c00098{letter-spacing:2.640000pt;}
.ls26_c00098{letter-spacing:2.666667pt;}
.ls2c_c00098{letter-spacing:2.720000pt;}
.ls54_c00098{letter-spacing:2.986667pt;}
.ls65_c00098{letter-spacing:3.200000pt;}
.ls1_c00098{letter-spacing:3.226667pt;}
.ls4a_c00098{letter-spacing:3.520000pt;}
.ws0_c00098{word-spacing:0.000000pt;}
._2d_c00098{margin-left:-23.025067pt;}
._6_c00098{margin-left:-21.745067pt;}
._22_c00098{margin-left:-20.465067pt;}
._2f_c00098{margin-left:-18.262080pt;}
._d_c00098{margin-left:-17.010880pt;}
._19_c00098{margin-left:-15.438933pt;}
._30_c00098{margin-left:-14.076800pt;}
._1a_c00098{margin-left:-13.000747pt;}
._18_c00098{margin-left:-11.972373pt;}
._14_c00098{margin-left:-10.444800pt;}
._2e_c00098{margin-left:-9.384747pt;}
._1b_c00098{margin-left:-8.281600pt;}
._c_c00098{margin-left:-6.809387pt;}
._20_c00098{margin-left:-5.685333pt;}
._3_c00098{margin-left:-4.156800pt;}
._a_c00098{margin-left:-3.015680pt;}
._e_c00098{margin-left:-1.059413pt;}
._7_c00098{width:2.381440pt;}
._46_c00098{width:4.949611pt;}
._1f_c00098{width:20.282667pt;}
._8_c00098{width:25.676800pt;}
._24_c00098{width:28.440320pt;}
._32_c00098{width:31.588267pt;}
._21_c00098{width:36.115200pt;}
._9_c00098{width:42.885333pt;}
._2_c00098{width:44.176000pt;}
._3b_c00098{width:48.131200pt;}
._3a_c00098{width:49.333333pt;}
._35_c00098{width:50.933333pt;}
._39_c00098{width:52.840533pt;}
._38_c00098{width:54.252800pt;}
._36_c00098{width:55.507200pt;}
._37_c00098{width:56.439467pt;}
._33_c00098{width:59.296853pt;}
._4a_c00098{width:62.773333pt;}
._41_c00098{width:76.658133pt;}
._b_c00098{width:95.315733pt;}
._16_c00098{width:137.573333pt;}
._4_c00098{width:138.482133pt;}
._3d_c00098{width:149.065600pt;}
._28_c00098{width:187.301333pt;}
._17_c00098{width:232.320000pt;}
._3c_c00098{width:243.358933pt;}
._23_c00098{width:263.371093pt;}
._10_c00098{width:324.485333pt;}
._26_c00098{width:327.008000pt;}
._2a_c00098{width:410.790400pt;}
._5_c00098{width:419.173333pt;}
._11_c00098{width:423.045333pt;}
._29_c00098{width:458.077867pt;}
._34_c00098{width:590.707200pt;}
._49_c00098{width:613.015467pt;}
._3f_c00098{width:619.679733pt;}
._4b_c00098{width:638.977067pt;}
._25_c00098{width:643.323733pt;}
._4c_c00098{width:683.216000pt;}
._12_c00098{width:720.280747pt;}
._31_c00098{width:742.474773pt;}
._47_c00098{width:755.306667pt;}
._42_c00098{width:787.058453pt;}
._48_c00098{width:798.042667pt;}
._0_c00098{width:798.976000pt;}
._15_c00098{width:832.089600pt;}
._1d_c00098{width:874.163733pt;}
._45_c00098{width:876.558663pt;}
._2b_c00098{width:894.080000pt;}
._2c_c00098{width:926.765333pt;}
._27_c00098{width:962.953387pt;}
._1e_c00098{width:966.234667pt;}
._f_c00098{width:1019.973120pt;}
._13_c00098{width:1082.224000pt;}
._1c_c00098{width:1276.675947pt;}
._3e_c00098{width:1297.619093pt;}
._40_c00098{width:1444.624000pt;}
._43_c00098{width:1544.669867pt;}
._1_c00098{width:1553.592747pt;}
._44_c00098{width:1705.527360pt;}
.fse_c00098{font-size:20.267200pt;}
.fs41_c00098{font-size:21.760000pt;}
.fs2f_c00098{font-size:21.866667pt;}
.fs3_c00098{font-size:22.400000pt;}
.fs6_c00098{font-size:24.000533pt;}
.fs2c_c00098{font-size:24.533333pt;}
.fs30_c00098{font-size:25.600000pt;}
.fs34_c00098{font-size:25.600533pt;}
.fs12_c00098{font-size:26.133867pt;}
.fs13_c00098{font-size:26.666667pt;}
.fs27_c00098{font-size:26.880533pt;}
.fsa_c00098{font-size:27.733333pt;}
.fs16_c00098{font-size:28.160000pt;}
.fs32_c00098{font-size:28.800533pt;}
.fs33_c00098{font-size:29.333867pt;}
.fs37_c00098{font-size:29.866667pt;}
.fs36_c00098{font-size:30.933867pt;}
.fs29_c00098{font-size:31.467200pt;}
.fs28_c00098{font-size:32.000000pt;}
.fs1c_c00098{font-size:33.280000pt;}
.fs1d_c00098{font-size:34.667200pt;}
.fs40_c00098{font-size:35.733333pt;}
.fs20_c00098{font-size:35.840000pt;}
.fs9_c00098{font-size:38.400000pt;}
.fs1b_c00098{font-size:40.533333pt;}
.fs1a_c00098{font-size:40.960000pt;}
.fs2e_c00098{font-size:42.133867pt;}
.fs3e_c00098{font-size:42.240000pt;}
.fsd_c00098{font-size:44.800000pt;}
.fs11_c00098{font-size:47.466667pt;}
.fs38_c00098{font-size:48.640000pt;}
.fs21_c00098{font-size:49.600000pt;}
.fs22_c00098{font-size:49.920000pt;}
.fsc_c00098{font-size:50.133333pt;}
.fs24_c00098{font-size:50.666667pt;}
.fs25_c00098{font-size:51.733333pt;}
.fs0_c00098{font-size:52.266667pt;}
.fs2b_c00098{font-size:52.800000pt;}
.fs14_c00098{font-size:53.333333pt;}
.fs3f_c00098{font-size:53.866667pt;}
.fs7_c00098{font-size:54.400000pt;}
.fs8_c00098{font-size:55.466667pt;}
.fs42_c00098{font-size:56.000000pt;}
.fs39_c00098{font-size:57.066667pt;}
.fsb_c00098{font-size:57.600000pt;}
.fs4_c00098{font-size:58.666667pt;}
.fs26_c00098{font-size:59.733333pt;}
.fs19_c00098{font-size:60.266667pt;}
.fs2a_c00098{font-size:61.333333pt;}
.fs1_c00098{font-size:61.440000pt;}
.fs1e_c00098{font-size:63.466667pt;}
.fs35_c00098{font-size:64.000000pt;}
.fsf_c00098{font-size:64.533333pt;}
.fs3d_c00098{font-size:65.600000pt;}
.fs2_c00098{font-size:66.133333pt;}
.fs3c_c00098{font-size:66.666667pt;}
.fs2d_c00098{font-size:68.266667pt;}
.fs3b_c00098{font-size:69.333333pt;}
.fs23_c00098{font-size:69.866667pt;}
.fs15_c00098{font-size:70.400000pt;}
.fs17_c00098{font-size:71.466667pt;}
.fs1f_c00098{font-size:72.000000pt;}
.fs10_c00098{font-size:73.066667pt;}
.fs18_c00098{font-size:74.666667pt;}
.fs3a_c00098{font-size:81.600000pt;}
.fs5_c00098{font-size:82.133333pt;}
.fs31_c00098{font-size:104.533333pt;}
.y0_c00098{bottom:0.000000pt;}
.ya5_c00098{bottom:61.440000pt;}
.ya4_c00098{bottom:109.760000pt;}
.ya2_c00098{bottom:114.240000pt;}
.ya3_c00098{bottom:116.160000pt;}
.ya1_c00098{bottom:125.120000pt;}
.ya0_c00098{bottom:128.960000pt;}
.y9f_c00098{bottom:142.080000pt;}
.y9e_c00098{bottom:143.680000pt;}
.y9c_c00098{bottom:146.240000pt;}
.y9d_c00098{bottom:149.440000pt;}
.y98_c00098{bottom:153.920000pt;}
.y9a_c00098{bottom:155.840000pt;}
.y9b_c00098{bottom:157.120000pt;}
.y99_c00098{bottom:157.440000pt;}
.y96_c00098{bottom:162.240000pt;}
.y97_c00098{bottom:164.480000pt;}
.y94_c00098{bottom:172.493333pt;}
.y92_c00098{bottom:172.813333pt;}
.y95_c00098{bottom:174.733333pt;}
.y93_c00098{bottom:175.053333pt;}
.y91_c00098{bottom:175.373333pt;}
.y90_c00098{bottom:179.213333pt;}
.y8f_c00098{bottom:191.053333pt;}
.y8d_c00098{bottom:192.640000pt;}
.y8e_c00098{bottom:193.933333pt;}
.y8b_c00098{bottom:204.493333pt;}
.y8a_c00098{bottom:204.813333pt;}
.y8c_c00098{bottom:206.733333pt;}
.y88_c00098{bottom:208.973333pt;}
.y89_c00098{bottom:209.600000pt;}
.y87_c00098{bottom:223.053333pt;}
.y84_c00098{bottom:224.640000pt;}
.y86_c00098{bottom:228.173333pt;}
.y85_c00098{bottom:228.493333pt;}
.y83_c00098{bottom:236.493333pt;}
.y82_c00098{bottom:239.693333pt;}
.y81_c00098{bottom:242.253333pt;}
.y80_c00098{bottom:254.733333pt;}
.y7f_c00098{bottom:257.933333pt;}
.y7c_c00098{bottom:268.493333pt;}
.y7b_c00098{bottom:268.813333pt;}
.y7d_c00098{bottom:270.400000pt;}
.y7e_c00098{bottom:270.733333pt;}
.y78_c00098{bottom:274.253333pt;}
.y7a_c00098{bottom:275.533333pt;}
.y79_c00098{bottom:275.853333pt;}
.y77_c00098{bottom:287.693333pt;}
.y75_c00098{bottom:288.640000pt;}
.y76_c00098{bottom:292.493333pt;}
.y73_c00098{bottom:300.493333pt;}
.y72_c00098{bottom:300.813333pt;}
.y74_c00098{bottom:302.733333pt;}
.y71_c00098{bottom:303.373333pt;}
.y6f_c00098{bottom:306.253333pt;}
.y70_c00098{bottom:306.893333pt;}
.y6e_c00098{bottom:317.773333pt;}
.y6d_c00098{bottom:320.640000pt;}
.y6b_c00098{bottom:332.493333pt;}
.y6c_c00098{bottom:334.733333pt;}
.y6a_c00098{bottom:335.053333pt;}
.y68_c00098{bottom:337.293333pt;}
.y69_c00098{bottom:342.093333pt;}
.y66_c00098{bottom:351.373333pt;}
.y67_c00098{bottom:351.680000pt;}
.y64_c00098{bottom:352.013333pt;}
.y65_c00098{bottom:358.720000pt;}
.y63_c00098{bottom:364.493333pt;}
.y60_c00098{bottom:365.133333pt;}
.y62_c00098{bottom:367.373333pt;}
.y5f_c00098{bottom:368.640000pt;}
.y61_c00098{bottom:370.880000pt;}
.y5d_c00098{bottom:387.533333pt;}
.y5e_c00098{bottom:388.173333pt;}
.y5c_c00098{bottom:396.493333pt;}
.y5b_c00098{bottom:398.400000pt;}
.y58_c00098{bottom:411.840000pt;}
.y59_c00098{bottom:414.093333pt;}
.y5a_c00098{bottom:414.400000pt;}
.y57_c00098{bottom:414.720000pt;}
.y56_c00098{bottom:418.573333pt;}
.y55_c00098{bottom:427.840000pt;}
.y54_c00098{bottom:430.400000pt;}
.y52_c00098{bottom:443.840000pt;}
.y53_c00098{bottom:446.093333pt;}
.y51_c00098{bottom:446.400000pt;}
.y4e_c00098{bottom:462.400000pt;}
.y50_c00098{bottom:463.053333pt;}
.y4f_c00098{bottom:467.840000pt;}
.y4c_c00098{bottom:477.453333pt;}
.y4d_c00098{bottom:483.213333pt;}
.y4a_c00098{bottom:491.213333pt;}
.y49_c00098{bottom:491.533333pt;}
.y47_c00098{bottom:492.493333pt;}
.y4b_c00098{bottom:493.133333pt;}
.y48_c00098{bottom:494.093333pt;}
.y46_c00098{bottom:496.640000pt;}
.y45_c00098{bottom:509.133333pt;}
.y44_c00098{bottom:523.213333pt;}
.y43_c00098{bottom:526.400000pt;}
.y42_c00098{bottom:540.173333pt;}
.y41_c00098{bottom:542.093333pt;}
.y40_c00098{bottom:555.213333pt;}
.y3f_c00098{bottom:558.093333pt;}
.y3e_c00098{bottom:574.093333pt;}
.y3c_c00098{bottom:587.213333pt;}
.y3a_c00098{bottom:588.493333pt;}
.y3d_c00098{bottom:589.133333pt;}
.y3b_c00098{bottom:590.093333pt;}
.y39_c00098{bottom:609.933333pt;}
.y37_c00098{bottom:619.533333pt;}
.y38_c00098{bottom:621.453333pt;}
.y36_c00098{bottom:622.720000pt;}
.y35_c00098{bottom:637.760000pt;}
.y34_c00098{bottom:640.013333pt;}
.y33_c00098{bottom:651.213333pt;}
.y32_c00098{bottom:653.453333pt;}
.y2f_c00098{bottom:669.760000pt;}
.y31_c00098{bottom:670.093333pt;}
.y30_c00098{bottom:672.013333pt;}
.y2d_c00098{bottom:683.200000pt;}
.y2c_c00098{bottom:683.533333pt;}
.y2e_c00098{bottom:685.120000pt;}
.y2b_c00098{bottom:686.093333pt;}
.y2a_c00098{bottom:702.093333pt;}
.y28_c00098{bottom:717.120000pt;}
.y29_c00098{bottom:717.773333pt;}
.y27_c00098{bottom:730.573333pt;}
.y24_c00098{bottom:733.453333pt;}
.y26_c00098{bottom:733.773333pt;}
.y25_c00098{bottom:736.013333pt;}
.y23_c00098{bottom:747.200000pt;}
.y21_c00098{bottom:749.773333pt;}
.y22_c00098{bottom:750.093333pt;}
.y20_c00098{bottom:765.120000pt;}
.y1f_c00098{bottom:781.773333pt;}
.y1e_c00098{bottom:795.533333pt;}
.y1d_c00098{bottom:800.013333pt;}
.y1c_c00098{bottom:810.880000pt;}
.y1b_c00098{bottom:813.120000pt;}
.y19_c00098{bottom:826.573333pt;}
.y1a_c00098{bottom:828.493333pt;}
.y18_c00098{bottom:829.120000pt;}
.y17_c00098{bottom:845.453333pt;}
.y16_c00098{bottom:848.013333pt;}
.y15_c00098{bottom:857.280000pt;}
.y14_c00098{bottom:860.493333pt;}
.y13_c00098{bottom:873.933333pt;}
.y12_c00098{bottom:877.120000pt;}
.yf_c00098{bottom:878.093333pt;}
.y10_c00098{bottom:882.573333pt;}
.y11_c00098{bottom:883.200000pt;}
.ye_c00098{bottom:889.933333pt;}
.yd_c00098{bottom:892.800000pt;}
.yc_c00098{bottom:893.773333pt;}
.yb_c00098{bottom:908.800000pt;}
.y8_c00098{bottom:909.120000pt;}
.ya_c00098{bottom:909.453333pt;}
.y9_c00098{bottom:914.573333pt;}
.y6_c00098{bottom:924.800000pt;}
.y7_c00098{bottom:925.120000pt;}
.y3_c00098{bottom:928.960000pt;}
.y4_c00098{bottom:929.933333pt;}
.y5_c00098{bottom:930.880000pt;}
.y2_c00098{bottom:938.253333pt;}
.y1_c00098{bottom:1064.013333pt;}
.h58_c00098{height:14.492160pt;}
.h43_c00098{height:17.049600pt;}
.h38_c00098{height:17.902435pt;}
.h1c_c00098{height:18.754560pt;}
.h12_c00098{height:21.138056pt;}
.h4c_c00098{height:21.312000pt;}
.h26_c00098{height:22.164480pt;}
.h41_c00098{height:22.806250pt;}
.h6_c00098{height:23.362500pt;}
.h8_c00098{height:23.543492pt;}
.h2d_c00098{height:23.869440pt;}
.h18_c00098{height:26.171875pt;}
.hd_c00098{height:27.205208pt;}
.h17_c00098{height:27.256806pt;}
.h23_c00098{height:27.279360pt;}
.h54_c00098{height:28.131840pt;}
.h48_c00098{height:28.789586pt;}
.h46_c00098{height:28.925000pt;}
.h3a_c00098{height:30.883336pt;}
.h4d_c00098{height:31.150000pt;}
.h4e_c00098{height:32.394240pt;}
.h2f_c00098{height:33.246720pt;}
.h31_c00098{height:34.007034pt;}
.h27_c00098{height:34.023961pt;}
.h57_c00098{height:35.052865pt;}
.h20_c00098{height:37.668750pt;}
.hb_c00098{height:37.687500pt;}
.h39_c00098{height:39.374167pt;}
.h24_c00098{height:39.761458pt;}
.h3_c00098{height:40.919040pt;}
.h4b_c00098{height:41.987500pt;}
.h40_c00098{height:43.944306pt;}
.h11_c00098{height:43.968750pt;}
.h47_c00098{height:44.547500pt;}
.h15_c00098{height:46.562760pt;}
.h28_c00098{height:47.054167pt;}
.h3b_c00098{height:50.748177pt;}
.h36_c00098{height:50.773437pt;}
.h4_c00098{height:51.271354pt;}
.h2e_c00098{height:51.296875pt;}
.h10_c00098{height:52.287500pt;}
.h19_c00098{height:52.343750pt;}
.h2_c00098{height:52.675000pt;}
.h35_c00098{height:52.843750pt;}
.h56_c00098{height:52.867187pt;}
.h9_c00098{height:53.364062pt;}
.h1b_c00098{height:53.390625pt;}
.ha_c00098{height:54.437500pt;}
.h25_c00098{height:54.512500pt;}
.h59_c00098{height:54.960938pt;}
.h3d_c00098{height:55.068750pt;}
.h4f_c00098{height:55.979948pt;}
.h45_c00098{height:57.347500pt;}
.h55_c00098{height:58.065000pt;}
.hc_c00098{height:58.574167pt;}
.h49_c00098{height:58.595833pt;}
.h2c_c00098{height:59.960833pt;}
.he_c00098{height:60.075000pt;}
.hf_c00098{height:61.187500pt;}
.h37_c00098{height:62.300000pt;}
.h2a_c00098{height:62.414167pt;}
.h3e_c00098{height:62.467500pt;}
.h32_c00098{height:62.520833pt;}
.h4a_c00098{height:62.812500pt;}
.h13_c00098{height:63.335938pt;}
.h3c_c00098{height:63.968750pt;}
.h53_c00098{height:64.350781pt;}
.h5_c00098{height:64.906250pt;}
.h1f_c00098{height:65.080833pt;}
.h30_c00098{height:65.798333pt;}
.h29_c00098{height:66.193750pt;}
.h42_c00098{height:66.307500pt;}
.h7_c00098{height:66.529375pt;}
.h3f_c00098{height:67.000000pt;}
.h52_c00098{height:68.046875pt;}
.h33_c00098{height:68.570312pt;}
.h51_c00098{height:68.867500pt;}
.h1e_c00098{height:68.975000pt;}
.h34_c00098{height:69.093750pt;}
.h21_c00098{height:70.140625pt;}
.h1d_c00098{height:70.147500pt;}
.h2b_c00098{height:70.664062pt;}
.h22_c00098{height:73.281250pt;}
.h1a_c00098{height:73.425000pt;}
.h14_c00098{height:76.206250pt;}
.h16_c00098{height:80.609375pt;}
.h50_c00098{height:85.106250pt;}
.h44_c00098{height:109.025000pt;}
.h1_c00098{height:1122.666667pt;}
.h0_c00098{height:1122.880000pt;}
.w1_c00098{width:793.333333pt;}
.w0_c00098{width:793.600000pt;}
.x0_c00098{left:0.000000pt;}
.x71_c00098{left:101.400000pt;}
.x32_c00098{left:103.493333pt;}
.x28_c00098{left:104.453333pt;}
.xf_c00098{left:105.413333pt;}
.x72_c00098{left:106.560000pt;}
.x46_c00098{left:107.573333pt;}
.x2c_c00098{left:108.880000pt;}
.x1c_c00098{left:109.826667pt;}
.x3_c00098{left:110.946667pt;}
.x1_c00098{left:113.213333pt;}
.x4a_c00098{left:116.680000pt;}
.x67_c00098{left:123.640000pt;}
.x1b_c00098{left:126.400000pt;}
.x47_c00098{left:127.426667pt;}
.x27_c00098{left:128.706667pt;}
.x15_c00098{left:130.453333pt;}
.x21_c00098{left:136.053333pt;}
.x5b_c00098{left:137.586667pt;}
.x4_c00098{left:138.920000pt;}
.x55_c00098{left:142.146667pt;}
.x3e_c00098{left:143.240000pt;}
.x58_c00098{left:145.720000pt;}
.x74_c00098{left:147.200000pt;}
.x3f_c00098{left:149.186667pt;}
.x68_c00098{left:154.493333pt;}
.x5e_c00098{left:155.706667pt;}
.x65_c00098{left:157.160000pt;}
.xa_c00098{left:161.013333pt;}
.x33_c00098{left:162.693333pt;}
.x1d_c00098{left:164.266667pt;}
.x7_c00098{left:165.253333pt;}
.x1a_c00098{left:166.493333pt;}
.x5c_c00098{left:167.413333pt;}
.x73_c00098{left:169.173333pt;}
.x4f_c00098{left:170.480000pt;}
.x59_c00098{left:171.800000pt;}
.x30_c00098{left:173.480000pt;}
.xe_c00098{left:174.893333pt;}
.x12_c00098{left:176.120000pt;}
.x38_c00098{left:178.293333pt;}
.x51_c00098{left:180.253333pt;}
.x10_c00098{left:182.520000pt;}
.x5a_c00098{left:184.453333pt;}
.x8_c00098{left:186.040000pt;}
.x5f_c00098{left:189.133333pt;}
.x50_c00098{left:193.160000pt;}
.x13_c00098{left:194.160000pt;}
.x5_c00098{left:195.773333pt;}
.x4b_c00098{left:198.306667pt;}
.x6f_c00098{left:199.586667pt;}
.x62_c00098{left:200.506667pt;}
.x4c_c00098{left:202.320000pt;}
.x35_c00098{left:207.106667pt;}
.x39_c00098{left:209.013333pt;}
.x70_c00098{left:210.960000pt;}
.x36_c00098{left:213.946667pt;}
.x1e_c00098{left:216.266667pt;}
.x9_c00098{left:220.093333pt;}
.x54_c00098{left:222.586667pt;}
.x22_c00098{left:225.546667pt;}
.x2d_c00098{left:229.600000pt;}
.x23_c00098{left:230.666667pt;}
.x3a_c00098{left:237.813333pt;}
.x3b_c00098{left:250.746667pt;}
.x2e_c00098{left:261.973333pt;}
.x3c_c00098{left:376.266667pt;}
.x6e_c00098{left:378.320000pt;}
.x53_c00098{left:379.280000pt;}
.x40_c00098{left:380.240000pt;}
.x14_c00098{left:381.840000pt;}
.x2_c00098{left:382.733333pt;}
.x6b_c00098{left:397.666667pt;}
.x19_c00098{left:401.480000pt;}
.x31_c00098{left:404.560000pt;}
.x63_c00098{left:420.493333pt;}
.x34_c00098{left:422.413333pt;}
.x29_c00098{left:424.173333pt;}
.x3d_c00098{left:427.280000pt;}
.x6_c00098{left:429.200000pt;}
.x41_c00098{left:445.453333pt;}
.x69_c00098{left:449.040000pt;}
.x52_c00098{left:450.000000pt;}
.x1f_c00098{left:451.920000pt;}
.x6c_c00098{left:492.160000pt;}
.x24_c00098{left:494.413333pt;}
.xb_c00098{left:498.960000pt;}
.x4d_c00098{left:512.933333pt;}
.x6d_c00098{left:515.413333pt;}
.x42_c00098{left:517.160000pt;}
.x20_c00098{left:518.893333pt;}
.x75_c00098{left:537.933333pt;}
.x43_c00098{left:540.173333pt;}
.x48_c00098{left:541.293333pt;}
.x16_c00098{left:542.293333pt;}
.x4e_c00098{left:544.400000pt;}
.x25_c00098{left:547.680000pt;}
.x61_c00098{left:562.773333pt;}
.x2a_c00098{left:564.813333pt;}
.xc_c00098{left:566.600000pt;}
.x56_c00098{left:587.413333pt;}
.x2f_c00098{left:589.160000pt;}
.x60_c00098{left:590.800000pt;}
.x49_c00098{left:592.080000pt;}
.xd_c00098{left:594.320000pt;}
.x5d_c00098{left:609.933333pt;}
.x37_c00098{left:611.853333pt;}
.x17_c00098{left:613.933333pt;}
.x6a_c00098{left:632.973333pt;}
.x44_c00098{left:634.893333pt;}
.x2b_c00098{left:636.520000pt;}
.x66_c00098{left:637.520000pt;}
.x26_c00098{left:638.706667pt;}
.x11_c00098{left:641.586667pt;}
.x64_c00098{left:661.200000pt;}
.x57_c00098{left:662.160000pt;}
.x45_c00098{left:663.440000pt;}
.x18_c00098{left:664.720000pt;}
}





/* 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_c00099 {
    display:none;
  }
  .loading-indicator_c00099.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00099 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_c00099 { 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_c00099" -> "#page-container .classname_c00099")
 */
.pf_c00099 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00099 { /* 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_c00099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00099 { /* 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_c00099 { /* 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_c00099 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00099 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00099 {overflow:visible;}
  }
}
.c_c00099 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00099 { /* 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_c00099:after { /* webkit #35443 */
  content: '';
}
.t_c00099:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00099 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 */
}
.__c00099 { /* 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_c00099 { /* info for Javascript */
  display:none;
}
.l_c00099 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00099 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00099 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00099: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_c00099 {
    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_c00099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00099.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_c00099 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00099;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.311035;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_c00099;src:url('chunks/assets/font_6d449ed8ea931daadfce098d.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.284668;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_c00099;src:url('chunks/assets/font_069f1f99266f46c97025417c.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.284180;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_c00099;src:url('chunks/assets/font_f8521b27998c0ea3eb0c2c4c.woff2')format("woff");}.ff4_c00099{font-family:ff4_c00099;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:ff5_c00099;src:url('chunks/assets/font_49450df266be450031e3b1b4.woff2')format("woff");}.ff5_c00099{font-family:ff5_c00099;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:ff6_c00099;src:url('chunks/assets/font_3835fd2a5f62c4b35f8e10d9.woff2')format("woff");}.ff6_c00099{font-family:ff6_c00099;line-height:0.666000;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;}
.m8a_c00099{transform:matrix(0.017857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017857,0.000000,0.000000,0.250000,0,0);}
.m1b_c00099{transform:matrix(0.111653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111653,0.000000,0.000000,0.250000,0,0);}
.m1e_c00099{transform:matrix(0.120369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120369,0.000000,0.000000,0.250000,0,0);}
.m1c_c00099{transform:matrix(0.121126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121126,0.000000,0.000000,0.250000,0,0);}
.m78_c00099{transform:matrix(0.123861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123861,0.000000,0.000000,0.250000,0,0);}
.m50_c00099{transform:matrix(0.130853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130853,0.000000,0.000000,0.250000,0,0);}
.m20_c00099{transform:matrix(0.132811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132811,0.000000,0.000000,0.250000,0,0);}
.m21_c00099{transform:matrix(0.133016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133016,0.000000,0.000000,0.250000,0,0);}
.m87_c00099{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00099{transform:matrix(0.168673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168673,0.000000,0.000000,0.250000,0,0);}
.m58_c00099{transform:matrix(0.170748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170748,0.000000,0.000000,0.250000,0,0);}
.m3d_c00099{transform:matrix(0.176120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176120,0.000000,0.000000,0.250000,0,0);}
.m9_c00099{transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);}
.m43_c00099{transform:matrix(0.178467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178467,0.000000,0.000000,0.250000,0,0);}
.m31_c00099{transform:matrix(0.180570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180570,0.000000,0.000000,0.250000,0,0);}
.m3e_c00099{transform:matrix(0.183142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183142,0.000000,0.000000,0.250000,0,0);}
.mb_c00099{transform:matrix(0.186403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186403,0.000000,0.000000,0.250000,0,0);}
.m36_c00099{transform:matrix(0.199067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199067,0.000000,0.000000,0.250000,0,0);}
.m12_c00099{transform:matrix(0.199202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199202,0.000000,0.000000,0.250000,0,0);}
.m53_c00099{transform:matrix(0.202752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202752,0.000000,0.000000,0.250000,0,0);}
.m75_c00099{transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);}
.m2d_c00099{transform:matrix(0.207766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207766,0.000000,0.000000,0.250000,0,0);}
.m62_c00099{transform:matrix(0.209079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209079,0.000000,0.000000,0.250000,0,0);}
.m45_c00099{transform:matrix(0.209516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209516,0.000000,0.000000,0.250000,0,0);}
.m19_c00099{transform:matrix(0.212317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212317,0.000000,0.000000,0.250000,0,0);}
.m4d_c00099{transform:matrix(0.212964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212964,0.000000,0.000000,0.250000,0,0);}
.m18_c00099{transform:matrix(0.214664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214664,0.000000,0.000000,0.250000,0,0);}
.m38_c00099{transform:matrix(0.221226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221226,0.000000,0.000000,0.250000,0,0);}
.m7c_c00099{transform:matrix(0.222774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222774,0.000000,0.000000,0.250000,0,0);}
.m1f_c00099{transform:matrix(0.224091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224091,0.000000,0.000000,0.250000,0,0);}
.m4e_c00099{transform:matrix(0.224593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224593,0.000000,0.000000,0.250000,0,0);}
.m7b_c00099{transform:matrix(0.226005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226005,0.000000,0.000000,0.250000,0,0);}
.m77_c00099{transform:matrix(0.226878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226878,0.000000,0.000000,0.250000,0,0);}
.m42_c00099{transform:matrix(0.227438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227438,0.000000,0.000000,0.250000,0,0);}
.m68_c00099{transform:matrix(0.227468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227468,0.000000,0.000000,0.250000,0,0);}
.m4b_c00099{transform:matrix(0.227713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227713,0.000000,0.000000,0.250000,0,0);}
.m8b_c00099{transform:matrix(0.232690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232690,0.000000,0.000000,0.250000,0,0);}
.m7f_c00099{transform:matrix(0.235958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235958,0.000000,0.000000,0.250000,0,0);}
.m5a_c00099{transform:matrix(0.237708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237708,0.000000,0.000000,0.250000,0,0);}
.m16_c00099{transform:matrix(0.240082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240082,0.000000,0.000000,0.250000,0,0);}
.m34_c00099{transform:matrix(0.240681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240681,0.000000,0.000000,0.250000,0,0);}
.m84_c00099{transform:matrix(0.243931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243931,0.000000,0.000000,0.250000,0,0);}
.m47_c00099{transform:matrix(0.244069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244069,0.000000,0.000000,0.250000,0,0);}
.m22_c00099{transform:matrix(0.246354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246354,0.000000,0.000000,0.250000,0,0);}
.m49_c00099{transform:matrix(0.246741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246741,0.000000,0.000000,0.250000,0,0);}
.m60_c00099{transform:matrix(0.247542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247542,0.000000,0.000000,0.250000,0,0);}
.md_c00099{transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);}
.m8_c00099{transform:matrix(0.249319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249319,0.000000,0.000000,0.250000,0,0);}
.m23_c00099{transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);}
.m67_c00099{transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);}
.m0_c00099{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);}
.m59_c00099{transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);}
.m57_c00099{transform:matrix(0.250786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250786,0.000000,0.000000,0.250000,0,0);}
.mc_c00099{transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);}
.m85_c00099{transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);}
.me_c00099{transform:matrix(0.254932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254932,0.000000,0.000000,0.250000,0,0);}
.m32_c00099{transform:matrix(0.255358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255358,0.000000,0.000000,0.250000,0,0);}
.m73_c00099{transform:matrix(0.256096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256096,0.000000,0.000000,0.250000,0,0);}
.m69_c00099{transform:matrix(0.256285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256285,0.000000,0.000000,0.250000,0,0);}
.m7e_c00099{transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);}
.m5f_c00099{transform:matrix(0.259734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259734,0.000000,0.000000,0.250000,0,0);}
.m7_c00099{transform:matrix(0.261283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261283,0.000000,0.000000,0.250000,0,0);}
.m29_c00099{transform:matrix(0.263096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263096,0.000000,0.000000,0.250000,0,0);}
.m46_c00099{transform:matrix(0.266157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266157,0.000000,0.000000,0.250000,0,0);}
.m3b_c00099{transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);}
.m2c_c00099{transform:matrix(0.267679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267679,0.000000,0.000000,0.250000,0,0);}
.ma_c00099{transform:matrix(0.268087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268087,0.000000,0.000000,0.250000,0,0);}
.m5c_c00099{transform:matrix(0.271064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271064,0.000000,0.000000,0.250000,0,0);}
.m41_c00099{transform:matrix(0.273090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273090,0.000000,0.000000,0.250000,0,0);}
.m48_c00099{transform:matrix(0.274766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274766,0.000000,0.000000,0.250000,0,0);}
.m6_c00099{transform:matrix(0.276305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276305,0.000000,0.000000,0.250000,0,0);}
.m81_c00099{transform:matrix(0.277063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277063,0.000000,0.000000,0.250000,0,0);}
.m28_c00099{transform:matrix(0.277692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277692,0.000000,0.000000,0.250000,0,0);}
.m44_c00099{transform:matrix(0.278028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278028,0.000000,0.000000,0.250000,0,0);}
.m65_c00099{transform:matrix(0.278660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278660,0.000000,0.000000,0.250000,0,0);}
.m7a_c00099{transform:matrix(0.280677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280677,0.000000,0.000000,0.250000,0,0);}
.m88_c00099{transform:matrix(0.283346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283346,0.000000,0.000000,0.250000,0,0);}
.m2b_c00099{transform:matrix(0.283481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283481,0.000000,0.000000,0.250000,0,0);}
.m3f_c00099{transform:matrix(0.283899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283899,0.000000,0.000000,0.250000,0,0);}
.m13_c00099{transform:matrix(0.284198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284198,0.000000,0.000000,0.250000,0,0);}
.m5b_c00099{transform:matrix(0.285064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285064,0.000000,0.000000,0.250000,0,0);}
.m1_c00099{transform:matrix(0.286262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286262,0.000000,0.000000,0.250000,0,0);}
.m89_c00099{transform:matrix(0.286476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286476,0.000000,0.000000,0.250000,0,0);}
.mf_c00099{transform:matrix(0.288872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288872,0.000000,0.000000,0.250000,0,0);}
.m82_c00099{transform:matrix(0.289065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289065,0.000000,0.000000,0.250000,0,0);}
.m6f_c00099{transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);}
.m56_c00099{transform:matrix(0.292740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292740,0.000000,0.000000,0.250000,0,0);}
.m6c_c00099{transform:matrix(0.293374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293374,0.000000,0.000000,0.250000,0,0);}
.m40_c00099{transform:matrix(0.293899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293899,0.000000,0.000000,0.250000,0,0);}
.m64_c00099{transform:matrix(0.301094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301094,0.000000,0.000000,0.250000,0,0);}
.m80_c00099{transform:matrix(0.303871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303871,0.000000,0.000000,0.250000,0,0);}
.m63_c00099{transform:matrix(0.303999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303999,0.000000,0.000000,0.250000,0,0);}
.m15_c00099{transform:matrix(0.312357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312357,0.000000,0.000000,0.250000,0,0);}
.m7d_c00099{transform:matrix(0.312373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312373,0.000000,0.000000,0.250000,0,0);}
.m6d_c00099{transform:matrix(0.316852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316852,0.000000,0.000000,0.250000,0,0);}
.m35_c00099{transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);}
.m1a_c00099{transform:matrix(0.322571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322571,0.000000,0.000000,0.250000,0,0);}
.m4_c00099{transform:matrix(0.322627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322627,0.000000,0.000000,0.250000,0,0);}
.m54_c00099{transform:matrix(0.324868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324868,0.000000,0.000000,0.250000,0,0);}
.m6a_c00099{transform:matrix(0.326517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326517,0.000000,0.000000,0.250000,0,0);}
.m79_c00099{transform:matrix(0.328712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328712,0.000000,0.000000,0.250000,0,0);}
.m86_c00099{transform:matrix(0.328815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328815,0.000000,0.000000,0.250000,0,0);}
.m5_c00099{transform:matrix(0.330426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330426,0.000000,0.000000,0.250000,0,0);}
.m4f_c00099{transform:matrix(0.330998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330998,0.000000,0.000000,0.250000,0,0);}
.m3a_c00099{transform:matrix(0.332209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332209,0.000000,0.000000,0.250000,0,0);}
.m10_c00099{transform:matrix(0.333540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333540,0.000000,0.000000,0.250000,0,0);}
.m70_c00099{transform:matrix(0.335484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335484,0.000000,0.000000,0.250000,0,0);}
.m52_c00099{transform:matrix(0.335793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335793,0.000000,0.000000,0.250000,0,0);}
.m66_c00099{transform:matrix(0.337360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337360,0.000000,0.000000,0.250000,0,0);}
.m6e_c00099{transform:matrix(0.340993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340993,0.000000,0.000000,0.250000,0,0);}
.m5d_c00099{transform:matrix(0.348707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348707,0.000000,0.000000,0.250000,0,0);}
.m72_c00099{transform:matrix(0.349855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349855,0.000000,0.000000,0.250000,0,0);}
.m3_c00099{transform:matrix(0.366250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00099{transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);}
.m3c_c00099{transform:matrix(0.368324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368324,0.000000,0.000000,0.250000,0,0);}
.m2_c00099{transform:matrix(0.370291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370291,0.000000,0.000000,0.250000,0,0);}
.m33_c00099{transform:matrix(0.371231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371231,0.000000,0.000000,0.250000,0,0);}
.m76_c00099{transform:matrix(0.374538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374538,0.000000,0.000000,0.250000,0,0);}
.m2e_c00099{transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00099{transform:matrix(0.380310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380310,0.000000,0.000000,0.250000,0,0);}
.m11_c00099{transform:matrix(0.384310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384310,0.000000,0.000000,0.250000,0,0);}
.m17_c00099{transform:matrix(0.394461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394461,0.000000,0.000000,0.250000,0,0);}
.m2a_c00099{transform:matrix(0.398485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398485,0.000000,0.000000,0.250000,0,0);}
.m37_c00099{transform:matrix(0.404442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404442,0.000000,0.000000,0.250000,0,0);}
.m71_c00099{transform:matrix(0.408648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408648,0.000000,0.000000,0.250000,0,0);}
.m27_c00099{transform:matrix(0.410206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410206,0.000000,0.000000,0.250000,0,0);}
.m6b_c00099{transform:matrix(0.418695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418695,0.000000,0.000000,0.250000,0,0);}
.m55_c00099{transform:matrix(0.420633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420633,0.000000,0.000000,0.250000,0,0);}
.m61_c00099{transform:matrix(0.435840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435840,0.000000,0.000000,0.250000,0,0);}
.m5e_c00099{transform:matrix(0.444418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444418,0.000000,0.000000,0.250000,0,0);}
.m39_c00099{transform:matrix(0.468141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468141,0.000000,0.000000,0.250000,0,0);}
.m14_c00099{transform:matrix(0.470246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470246,0.000000,0.000000,0.250000,0,0);}
.m30_c00099{transform:matrix(0.470842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470842,0.000000,0.000000,0.250000,0,0);}
.m24_c00099{transform:matrix(0.474120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474120,0.000000,0.000000,0.250000,0,0);}
.m74_c00099{transform:matrix(0.483745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483745,0.000000,0.000000,0.250000,0,0);}
.m26_c00099{transform:matrix(0.492233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492233,0.000000,0.000000,0.250000,0,0);}
.m51_c00099{transform:matrix(0.530470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530470,0.000000,0.000000,0.250000,0,0);}
.m2f_c00099{transform:matrix(0.536864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536864,0.000000,0.000000,0.250000,0,0);}
.m83_c00099{transform:matrix(0.554584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554584,0.000000,0.000000,0.250000,0,0);}
.m25_c00099{transform:matrix(0.561254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561254,0.000000,0.000000,0.250000,0,0);}
.ve_c00099{vertical-align:-28.740000px;}
.v2_c00099{vertical-align:-27.420000px;}
.v10_c00099{vertical-align:-25.920000px;}
.v13_c00099{vertical-align:-24.480000px;}
.vc_c00099{vertical-align:-21.540000px;}
.v4_c00099{vertical-align:-20.100000px;}
.v12_c00099{vertical-align:-18.720000px;}
.v9_c00099{vertical-align:-17.280000px;}
.v14_c00099{vertical-align:-14.340000px;}
.v7_c00099{vertical-align:-8.640000px;}
.v1_c00099{vertical-align:-5.820000px;}
.v8_c00099{vertical-align:-4.260000px;}
.vb_c00099{vertical-align:-2.812200px;}
.v3_c00099{vertical-align:-1.438800px;}
.v0_c00099{vertical-align:0.000000px;}
.v5_c00099{vertical-align:1.440000px;}
.vd_c00099{vertical-align:2.820000px;}
.v11_c00099{vertical-align:5.760000px;}
.vf_c00099{vertical-align:11.460000px;}
.v6_c00099{vertical-align:21.540000px;}
.va_c00099{vertical-align:23.040000px;}
.ls2b_c00099{letter-spacing:-4.809000px;}
.ls64_c00099{letter-spacing:-3.990000px;}
.ls2e_c00099{letter-spacing:-3.339000px;}
.ls41_c00099{letter-spacing:-3.024000px;}
.ls2c_c00099{letter-spacing:-2.793000px;}
.ls54_c00099{letter-spacing:-2.688000px;}
.ls4d_c00099{letter-spacing:-2.646000px;}
.ls42_c00099{letter-spacing:-2.625000px;}
.ls47_c00099{letter-spacing:-2.583000px;}
.ls1b_c00099{letter-spacing:-2.499000px;}
.ls22_c00099{letter-spacing:-2.491860px;}
.ls2d_c00099{letter-spacing:-2.415000px;}
.ls28_c00099{letter-spacing:-2.394000px;}
.ls49_c00099{letter-spacing:-2.373000px;}
.ls4c_c00099{letter-spacing:-2.310000px;}
.ls4b_c00099{letter-spacing:-2.289000px;}
.ls3e_c00099{letter-spacing:-2.205000px;}
.ls19_c00099{letter-spacing:-2.121000px;}
.ls18_c00099{letter-spacing:-2.017980px;}
.ls6a_c00099{letter-spacing:-2.016000px;}
.ls67_c00099{letter-spacing:-1.995000px;}
.ls4f_c00099{letter-spacing:-1.921020px;}
.ls16_c00099{letter-spacing:-1.911000px;}
.ls63_c00099{letter-spacing:-1.890000px;}
.ls37_c00099{letter-spacing:-1.869000px;}
.ls1c_c00099{letter-spacing:-1.860420px;}
.ls46_c00099{letter-spacing:-1.848000px;}
.ls56_c00099{letter-spacing:-1.799820px;}
.ls35_c00099{letter-spacing:-1.785420px;}
.ls17_c00099{letter-spacing:-1.555500px;}
.ls30_c00099{letter-spacing:-1.296840px;}
.ls60_c00099{letter-spacing:-1.266540px;}
.ls32_c00099{letter-spacing:-0.993840px;}
.ls58_c00099{letter-spacing:-0.705600px;}
.ls40_c00099{letter-spacing:-0.607560px;}
.ls65_c00099{letter-spacing:-0.563580px;}
.ls1f_c00099{letter-spacing:-0.412080px;}
.ls45_c00099{letter-spacing:-0.385440px;}
.ls21_c00099{letter-spacing:-0.351480px;}
.ls51_c00099{letter-spacing:-0.344400px;}
.ls4e_c00099{letter-spacing:-0.315120px;}
.ls62_c00099{letter-spacing:-0.212100px;}
.ls31_c00099{letter-spacing:-0.193920px;}
.ls27_c00099{letter-spacing:-0.163620px;}
.ls5b_c00099{letter-spacing:-0.139380px;}
.ls14_c00099{letter-spacing:-0.117300px;}
.ls57_c00099{letter-spacing:-0.115140px;}
.ls3a_c00099{letter-spacing:-0.060600px;}
.ls48_c00099{letter-spacing:-0.054540px;}
.ls11_c00099{letter-spacing:0.000000px;}
.ls1_c00099{letter-spacing:0.016920px;}
.lsd_c00099{letter-spacing:0.024240px;}
.lsa_c00099{letter-spacing:0.054540px;}
.lsb_c00099{letter-spacing:0.054600px;}
.ls5_c00099{letter-spacing:0.078780px;}
.ls7_c00099{letter-spacing:0.096960px;}
.lsf_c00099{letter-spacing:0.127260px;}
.ls4_c00099{letter-spacing:0.131760px;}
.ls2_c00099{letter-spacing:0.331200px;}
.lse_c00099{letter-spacing:0.408969px;}
.ls66_c00099{letter-spacing:0.611220px;}
.lsc_c00099{letter-spacing:0.623280px;}
.ls29_c00099{letter-spacing:0.636300px;}
.ls61_c00099{letter-spacing:0.738720px;}
.ls44_c00099{letter-spacing:0.746640px;}
.ls5d_c00099{letter-spacing:1.230000px;}
.ls9_c00099{letter-spacing:1.230240px;}
.ls13_c00099{letter-spacing:1.313940px;}
.ls2f_c00099{letter-spacing:1.320030px;}
.ls0_c00099{letter-spacing:1.343220px;}
.ls5a_c00099{letter-spacing:1.350030px;}
.ls8_c00099{letter-spacing:1.378080px;}
.ls23_c00099{letter-spacing:1.380000px;}
.ls55_c00099{letter-spacing:1.410000px;}
.ls20_c00099{letter-spacing:1.440030px;}
.ls5f_c00099{letter-spacing:1.470030px;}
.ls26_c00099{letter-spacing:1.530000px;}
.ls3d_c00099{letter-spacing:1.560000px;}
.ls3_c00099{letter-spacing:1.570140px;}
.ls25_c00099{letter-spacing:1.590030px;}
.ls10_c00099{letter-spacing:1.647060px;}
.ls1e_c00099{letter-spacing:1.650030px;}
.ls69_c00099{letter-spacing:1.680000px;}
.ls50_c00099{letter-spacing:1.710000px;}
.ls38_c00099{letter-spacing:1.719480px;}
.ls24_c00099{letter-spacing:1.740030px;}
.ls3c_c00099{letter-spacing:1.770030px;}
.ls12_c00099{letter-spacing:1.830000px;}
.ls4a_c00099{letter-spacing:1.860000px;}
.ls59_c00099{letter-spacing:1.928160px;}
.ls3b_c00099{letter-spacing:1.980000px;}
.ls43_c00099{letter-spacing:2.010000px;}
.ls52_c00099{letter-spacing:2.016960px;}
.ls5e_c00099{letter-spacing:2.040030px;}
.ls3f_c00099{letter-spacing:2.130000px;}
.ls33_c00099{letter-spacing:2.310000px;}
.ls68_c00099{letter-spacing:2.340030px;}
.ls36_c00099{letter-spacing:2.435040px;}
.ls5c_c00099{letter-spacing:2.520960px;}
.ls6_c00099{letter-spacing:2.533440px;}
.ls34_c00099{letter-spacing:2.580000px;}
.ls1d_c00099{letter-spacing:2.640000px;}
.ls39_c00099{letter-spacing:2.700000px;}
.ls15_c00099{letter-spacing:2.730000px;}
.ls2a_c00099{letter-spacing:2.760000px;}
.ls53_c00099{letter-spacing:2.880000px;}
.ls1a_c00099{letter-spacing:3.030000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{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__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00099{word-spacing:0.000000px;}
._29_c00099{margin-left:-21.672000px;}
._1d_c00099{margin-left:-20.292000px;}
._3e_c00099{margin-left:-16.470600px;}
._23_c00099{margin-left:-13.780440px;}
._18_c00099{margin-left:-11.340000px;}
._22_c00099{margin-left:-9.659640px;}
._b_c00099{margin-left:-7.356600px;}
._4c_c00099{margin-left:-5.467200px;}
._1f_c00099{margin-left:-2.205600px;}
._9_c00099{margin-left:-1.153500px;}
._4b_c00099{width:1.293626px;}
._36_c00099{width:3.460466px;}
._3c_c00099{width:4.919100px;}
._52_c00099{width:12.968400px;}
._4a_c00099{width:23.391600px;}
._1_c00099{width:28.957200px;}
._2_c00099{width:33.276000px;}
._0_c00099{width:36.532800px;}
._3_c00099{width:38.809200px;}
._7_c00099{width:39.873600px;}
._6_c00099{width:43.742400px;}
._8_c00099{width:46.431600px;}
._12_c00099{width:48.723000px;}
._f_c00099{width:50.161800px;}
._32_c00099{width:51.600600px;}
._14_c00099{width:52.882200px;}
._50_c00099{width:54.945000px;}
._13_c00099{width:55.947000px;}
._5_c00099{width:57.228000px;}
._10_c00099{width:60.526800px;}
._58_c00099{width:62.020200px;}
._51_c00099{width:63.298200px;}
._4_c00099{width:65.631600px;}
._33_c00099{width:82.341266px;}
._1a_c00099{width:90.331500px;}
._37_c00099{width:129.156000px;}
._3a_c00099{width:152.410700px;}
._31_c00099{width:153.886200px;}
._20_c00099{width:155.325000px;}
._41_c00099{width:157.616400px;}
._3d_c00099{width:159.959550px;}
._16_c00099{width:208.932900px;}
._e_c00099{width:210.247500px;}
._53_c00099{width:214.221660px;}
._43_c00099{width:256.106400px;}
._30_c00099{width:257.545200px;}
._2f_c00099{width:260.422800px;}
._11_c00099{width:261.861600px;}
._5a_c00099{width:361.917266px;}
._40_c00099{width:366.373200px;}
._2e_c00099{width:368.398200px;}
._4e_c00099{width:470.683800px;}
._26_c00099{width:472.122600px;}
._59_c00099{width:477.540000px;}
._48_c00099{width:482.996400px;}
._39_c00099{width:575.781600px;}
._46_c00099{width:577.220400px;}
._25_c00099{width:578.659200px;}
._5b_c00099{width:630.724920px;}
._2d_c00099{width:641.032800px;}
._3f_c00099{width:665.331900px;}
._45_c00099{width:668.556180px;}
._4f_c00099{width:788.253220px;}
._5c_c00099{width:790.420800px;}
._d_c00099{width:793.236600px;}
._2b_c00099{width:817.399200px;}
._15_c00099{width:825.478300px;}
._4d_c00099{width:842.754257px;}
._38_c00099{width:855.174120px;}
._24_c00099{width:861.114120px;}
._2c_c00099{width:892.579200px;}
._3b_c00099{width:894.018000px;}
._44_c00099{width:895.456800px;}
._56_c00099{width:915.708660px;}
._42_c00099{width:958.581600px;}
._49_c00099{width:960.002400px;}
._19_c00099{width:979.388160px;}
._28_c00099{width:986.607120px;}
._55_c00099{width:1001.407200px;}
._1b_c00099{width:1007.336760px;}
._a_c00099{width:1016.122800px;}
._2a_c00099{width:1104.279000px;}
._34_c00099{width:1203.738180px;}
._54_c00099{width:1328.713800px;}
._47_c00099{width:1342.113720px;}
._35_c00099{width:1420.877220px;}
._27_c00099{width:1436.149680px;}
._21_c00099{width:1497.486360px;}
._17_c00099{width:1564.378800px;}
._57_c00099{width:1795.047217px;}
._1c_c00099{width:1834.165560px;}
._c_c00099{width:1953.144000px;}
._1e_c00099{width:2140.187400px;}
.fc0_c00099{color:transparent;}
.fs39_c00099{font-size:9.600000px;}
.fs28_c00099{font-size:18.720000px;}
.fs6_c00099{font-size:24.000000px;}
.fs3b_c00099{font-size:24.600000px;}
.fs1f_c00099{font-size:26.400600px;}
.fs33_c00099{font-size:27.000600px;}
.fs11_c00099{font-size:27.600000px;}
.fs37_c00099{font-size:28.200000px;}
.fs10_c00099{font-size:28.800600px;}
.fs3a_c00099{font-size:29.400600px;}
.fs13_c00099{font-size:30.600000px;}
.fs25_c00099{font-size:31.200000px;}
.fsd_c00099{font-size:31.800600px;}
.fsf_c00099{font-size:33.000600px;}
.fs18_c00099{font-size:33.600000px;}
.fs35_c00099{font-size:34.200000px;}
.fs1e_c00099{font-size:34.560000px;}
.fs12_c00099{font-size:34.800600px;}
.fs24_c00099{font-size:35.400600px;}
.fs3_c00099{font-size:36.600000px;}
.fs30_c00099{font-size:37.200000px;}
.fs1a_c00099{font-size:38.880600px;}
.fs1c_c00099{font-size:39.000600px;}
.fs23_c00099{font-size:39.600000px;}
.fs2b_c00099{font-size:40.200000px;}
.fs40_c00099{font-size:40.320000px;}
.fs3c_c00099{font-size:40.800600px;}
.fs2e_c00099{font-size:41.400600px;}
.fs34_c00099{font-size:42.000000px;}
.fs27_c00099{font-size:42.600000px;}
.fs20_c00099{font-size:46.200000px;}
.fs3f_c00099{font-size:46.800600px;}
.fs7_c00099{font-size:51.000000px;}
.fs21_c00099{font-size:51.600000px;}
.fse_c00099{font-size:52.800000px;}
.fs22_c00099{font-size:53.400000px;}
.fsb_c00099{font-size:54.000000px;}
.fs8_c00099{font-size:54.600000px;}
.fs16_c00099{font-size:55.200000px;}
.fs4_c00099{font-size:56.400000px;}
.fs3e_c00099{font-size:57.000000px;}
.fsa_c00099{font-size:57.600000px;}
.fs0_c00099{font-size:58.200000px;}
.fs38_c00099{font-size:58.800000px;}
.fs9_c00099{font-size:60.600000px;}
.fs2_c00099{font-size:61.800000px;}
.fs2c_c00099{font-size:62.400000px;}
.fs26_c00099{font-size:63.000000px;}
.fs5_c00099{font-size:65.400000px;}
.fs31_c00099{font-size:66.000000px;}
.fs2f_c00099{font-size:67.800000px;}
.fs14_c00099{font-size:68.400000px;}
.fs1b_c00099{font-size:69.000000px;}
.fs1_c00099{font-size:70.800000px;}
.fsc_c00099{font-size:71.400000px;}
.fs15_c00099{font-size:72.000000px;}
.fs2d_c00099{font-size:73.800000px;}
.fs2a_c00099{font-size:75.000000px;}
.fs32_c00099{font-size:75.600000px;}
.fs36_c00099{font-size:76.800000px;}
.fs19_c00099{font-size:79.800000px;}
.fs29_c00099{font-size:86.400000px;}
.fs1d_c00099{font-size:95.400000px;}
.fs3d_c00099{font-size:114.000000px;}
.fs17_c00099{font-size:137.400000px;}
.y0_c00099{bottom:0.000000px;}
.y90_c00099{bottom:64.815000px;}
.y8f_c00099{bottom:122.040000px;}
.y8e_c00099{bottom:123.840000px;}
.y8c_c00099{bottom:128.880000px;}
.y8d_c00099{bottom:140.040000px;}
.y8b_c00099{bottom:141.840000px;}
.y8a_c00099{bottom:147.255000px;}
.y89_c00099{bottom:158.400000px;}
.y88_c00099{bottom:159.120000px;}
.y87_c00099{bottom:164.520000px;}
.y85_c00099{bottom:175.320000px;}
.y86_c00099{bottom:177.480000px;}
.y84_c00099{bottom:183.255000px;}
.y82_c00099{bottom:191.160000px;}
.y83_c00099{bottom:194.415000px;}
.y81_c00099{bottom:200.520000px;}
.y80_c00099{bottom:211.335000px;}
.y7f_c00099{bottom:212.775000px;}
.y7e_c00099{bottom:218.895000px;}
.y7d_c00099{bottom:219.255000px;}
.y7b_c00099{bottom:230.775000px;}
.y7c_c00099{bottom:231.855000px;}
.y7a_c00099{bottom:233.640000px;}
.y79_c00099{bottom:236.520000px;}
.y78_c00099{bottom:246.975000px;}
.y77_c00099{bottom:249.135000px;}
.y76_c00099{bottom:255.255000px;}
.y75_c00099{bottom:266.415000px;}
.y74_c00099{bottom:267.135000px;}
.y73_c00099{bottom:272.520000px;}
.y72_c00099{bottom:287.295000px;}
.y71_c00099{bottom:288.000000px;}
.y6f_c00099{bottom:289.815000px;}
.y70_c00099{bottom:290.895000px;}
.y6e_c00099{bottom:302.055000px;}
.y6d_c00099{bottom:302.415000px;}
.y6c_c00099{bottom:308.520000px;}
.y6a_c00099{bottom:320.055000px;}
.y6b_c00099{bottom:320.775000px;}
.y69_c00099{bottom:324.735000px;}
.y68_c00099{bottom:325.815000px;}
.y67_c00099{bottom:337.695000px;}
.y66_c00099{bottom:343.095000px;}
.y65_c00099{bottom:353.895000px;}
.y64_c00099{bottom:361.815000px;}
.y63_c00099{bottom:372.600000px;}
.y62_c00099{bottom:373.335000px;}
.y61_c00099{bottom:379.095000px;}
.y60_c00099{bottom:388.815000px;}
.y5f_c00099{bottom:390.975000px;}
.y5e_c00099{bottom:396.360000px;}
.y5d_c00099{bottom:407.520000px;}
.y5c_c00099{bottom:424.815000px;}
.y5b_c00099{bottom:426.975000px;}
.y5a_c00099{bottom:432.360000px;}
.y59_c00099{bottom:441.360000px;}
.y58_c00099{bottom:443.895000px;}
.y57_c00099{bottom:449.655000px;}
.y56_c00099{bottom:451.095000px;}
.y55_c00099{bottom:462.975000px;}
.y54_c00099{bottom:477.735000px;}
.y53_c00099{bottom:480.255000px;}
.y52_c00099{bottom:485.655000px;}
.y51_c00099{bottom:503.655000px;}
.y50_c00099{bottom:504.360000px;}
.y4f_c00099{bottom:513.735000px;}
.y4e_c00099{bottom:521.655000px;}
.y4d_c00099{bottom:530.280000px;}
.y4c_c00099{bottom:534.600000px;}
.y4a_c00099{bottom:535.695000px;}
.y4b_c00099{bottom:540.360000px;}
.y49_c00099{bottom:552.255000px;}
.y48_c00099{bottom:555.855000px;}
.y47_c00099{bottom:566.655000px;}
.y46_c00099{bottom:570.600000px;}
.y44_c00099{bottom:572.040000px;}
.y45_c00099{bottom:577.815000px;}
.y43_c00099{bottom:590.415000px;}
.y42_c00099{bottom:590.775000px;}
.y3f_c00099{bottom:604.815000px;}
.y41_c00099{bottom:606.255000px;}
.y40_c00099{bottom:613.440000px;}
.y3c_c00099{bottom:623.895000px;}
.y3e_c00099{bottom:624.255000px;}
.y3d_c00099{bottom:629.655000px;}
.y38_c00099{bottom:640.815000px;}
.y3b_c00099{bottom:641.520000px;}
.y3a_c00099{bottom:642.600000px;}
.y39_c00099{bottom:649.440000px;}
.y37_c00099{bottom:658.815000px;}
.y35_c00099{bottom:659.895000px;}
.y36_c00099{bottom:665.280000px;}
.y33_c00099{bottom:680.040000px;}
.y34_c00099{bottom:680.775000px;}
.y31_c00099{bottom:681.855000px;}
.y32_c00099{bottom:685.440000px;}
.y2e_c00099{bottom:695.175000px;}
.y30_c00099{bottom:695.520000px;}
.y2f_c00099{bottom:697.335000px;}
.y2d_c00099{bottom:713.175000px;}
.y2c_c00099{bottom:715.335000px;}
.y2b_c00099{bottom:732.600000px;}
.y2a_c00099{bottom:737.655000px;}
.y29_c00099{bottom:749.520000px;}
.y28_c00099{bottom:767.520000px;}
.y27_c00099{bottom:768.240000px;}
.y26_c00099{bottom:786.240000px;}
.y25_c00099{bottom:790.935000px;}
.y24_c00099{bottom:803.880000px;}
.y23_c00099{bottom:820.815000px;}
.y22_c00099{bottom:823.335000px;}
.y20_c00099{bottom:838.815000px;}
.y21_c00099{bottom:839.175000px;}
.y1e_c00099{bottom:839.880000px;}
.y1f_c00099{bottom:847.080000px;}
.y1d_c00099{bottom:856.080000px;}
.y1c_c00099{bottom:857.175000px;}
.y1b_c00099{bottom:878.040000px;}
.y1a_c00099{bottom:880.200000px;}
.y18_c00099{bottom:889.935000px;}
.y17_c00099{bottom:892.455000px;}
.y19_c00099{bottom:893.880000px;}
.y15_c00099{bottom:896.400000px;}
.y16_c00099{bottom:897.495000px;}
.y14_c00099{bottom:898.935000px;}
.y13_c00099{bottom:906.495000px;}
.y12_c00099{bottom:916.200000px;}
.yf_c00099{bottom:929.175000px;}
.y11_c00099{bottom:929.520000px;}
.y10_c00099{bottom:933.495000px;}
.ye_c00099{bottom:947.880000px;}
.yd_c00099{bottom:958.695000px;}
.yc_c00099{bottom:964.080000px;}
.ya_c00099{bottom:978.855000px;}
.yb_c00099{bottom:981.720000px;}
.y9_c00099{bottom:983.880000px;}
.y7_c00099{bottom:998.295000px;}
.y8_c00099{bottom:999.360000px;}
.y6_c00099{bottom:1001.175000px;}
.y4_c00099{bottom:1020.240000px;}
.y5_c00099{bottom:1023.855000px;}
.y3_c00099{bottom:1036.455000px;}
.y2_c00099{bottom:1053.360000px;}
.y1_c00099{bottom:1190.175000px;}
.h35_c00099{height:12.467520px;}
.h26_c00099{height:23.016960px;}
.h57_c00099{height:24.143555px;}
.h22_c00099{height:25.894480px;}
.h28_c00099{height:25.910745px;}
.h65_c00099{height:26.853120px;}
.h15_c00099{height:27.087891px;}
.h52_c00099{height:28.160782px;}
.h42_c00099{height:28.266214px;}
.h45_c00099{height:28.785937px;}
.h54_c00099{height:28.855081px;}
.h4e_c00099{height:29.411719px;}
.h29_c00099{height:30.032227px;}
.h13_c00099{height:30.038126px;}
.h17_c00099{height:31.210550px;}
.h19_c00099{height:31.914844px;}
.h11_c00099{height:32.388284px;}
.h31_c00099{height:32.540625px;}
.h61_c00099{height:32.976562px;}
.h16_c00099{height:34.154886px;}
.h49_c00099{height:35.669531px;}
.h4_c00099{height:35.903027px;}
.h6_c00099{height:35.920898px;}
.h64_c00099{height:36.509766px;}
.h30_c00099{height:36.921720px;}
.h47_c00099{height:37.845996px;}
.h24_c00099{height:38.276956px;}
.h63_c00099{height:38.361600px;}
.h3e_c00099{height:38.798438px;}
.h5f_c00099{height:39.350156px;}
.h38_c00099{height:39.434473px;}
.h55_c00099{height:39.454102px;}
.h7_c00099{height:40.790156px;}
.h2f_c00099{height:41.301562px;}
.h58_c00099{height:42.553751px;}
.h3c_c00099{height:43.179532px;}
.h53_c00099{height:43.730156px;}
.h56_c00099{height:43.790156px;}
.h34_c00099{height:44.430469px;}
.h14_c00099{height:45.230156px;}
.h60_c00099{height:45.909378px;}
.h1a_c00099{height:46.670156px;}
.h46_c00099{height:47.990156px;}
.h2a_c00099{height:48.185156px;}
.h4a_c00099{height:49.490156px;}
.h39_c00099{height:51.794531px;}
.h4b_c00099{height:51.820313px;}
.h2d_c00099{height:52.383105px;}
.h2e_c00099{height:52.998047px;}
.h8_c00099{height:53.191406px;}
.h9_c00099{height:53.560254px;}
.h2b_c00099{height:53.817187px;}
.h59_c00099{height:53.870156px;}
.h10_c00099{height:55.068750px;}
.h5d_c00099{height:55.914551px;}
.h5b_c00099{height:56.320312px;}
.h4c_c00099{height:56.531250px;}
.h1e_c00099{height:57.571875px;}
.h2_c00099{height:58.654687px;}
.hc_c00099{height:58.823438px;}
.h18_c00099{height:59.445996px;}
.hb_c00099{height:59.475586px;}
.hf_c00099{height:59.570156px;}
.h32_c00099{height:59.630156px;}
.h20_c00099{height:60.075000px;}
.h50_c00099{height:60.623145px;}
.h40_c00099{height:60.700781px;}
.h3a_c00099{height:61.242188px;}
.h33_c00099{height:61.831055px;}
.h62_c00099{height:62.325996px;}
.h5_c00099{height:62.390156px;}
.h27_c00099{height:62.510156px;}
.h12_c00099{height:63.950156px;}
.h5a_c00099{height:65.330156px;}
.h2c_c00099{height:65.390156px;}
.h3d_c00099{height:66.508887px;}
.h1d_c00099{height:66.770156px;}
.h1b_c00099{height:67.130859px;}
.h51_c00099{height:67.773281px;}
.ha_c00099{height:68.210156px;}
.h41_c00099{height:68.835938px;}
.h66_c00099{height:69.273281px;}
.h3_c00099{height:69.486328px;}
.h5e_c00099{height:69.648956px;}
.h48_c00099{height:71.090156px;}
.h23_c00099{height:71.964844px;}
.h3f_c00099{height:72.430664px;}
.h4f_c00099{height:74.030156px;}
.h43_c00099{height:74.197266px;}
.hd_c00099{height:74.467969px;}
.h1c_c00099{height:75.093750px;}
.h3b_c00099{height:76.971094px;}
.h37_c00099{height:78.222656px;}
.h4d_c00099{height:80.100000px;}
.h21_c00099{height:83.228906px;}
.h44_c00099{height:83.424844px;}
.h36_c00099{height:84.796875px;}
.he_c00099{height:89.750156px;}
.h25_c00099{height:93.629883px;}
.h5c_c00099{height:111.884766px;}
.h1f_c00099{height:134.850586px;}
.h1_c00099{height:1263.000000px;}
.h0_c00099{height:1263.240000px;}
.w1_c00099{width:892.500000px;}
.w0_c00099{width:892.800000px;}
.x0_c00099{left:0.000000px;}
.x55_c00099{left:116.985000px;}
.x18_c00099{left:118.530000px;}
.x4e_c00099{left:121.620000px;}
.x1_c00099{left:123.405000px;}
.x46_c00099{left:124.710000px;}
.x15_c00099{left:125.760000px;}
.x13_c00099{left:128.520000px;}
.x1d_c00099{left:130.095000px;}
.x4c_c00099{left:133.140000px;}
.x57_c00099{left:136.350000px;}
.x29_c00099{left:138.150000px;}
.x24_c00099{left:139.740000px;}
.x19_c00099{left:141.000000px;}
.x1a_c00099{left:145.230000px;}
.x25_c00099{left:149.070000px;}
.x1b_c00099{left:151.830000px;}
.x2b_c00099{left:153.000000px;}
.x6_c00099{left:154.365000px;}
.x39_c00099{left:156.105000px;}
.x38_c00099{left:159.930000px;}
.x3_c00099{left:164.025000px;}
.x3c_c00099{left:166.185000px;}
.x14_c00099{left:167.670000px;}
.x11_c00099{left:169.005000px;}
.x4_c00099{left:171.930000px;}
.x42_c00099{left:173.250000px;}
.x7_c00099{left:174.825000px;}
.x3a_c00099{left:176.160000px;}
.x49_c00099{left:177.585000px;}
.x4f_c00099{left:182.685000px;}
.x48_c00099{left:183.810000px;}
.x2a_c00099{left:185.145000px;}
.x30_c00099{left:186.300000px;}
.x26_c00099{left:187.965000px;}
.x12_c00099{left:189.210000px;}
.x31_c00099{left:190.215000px;}
.x5_c00099{left:192.660000px;}
.x35_c00099{left:197.580000px;}
.x43_c00099{left:200.610000px;}
.x2c_c00099{left:201.990000px;}
.x3e_c00099{left:205.005000px;}
.x40_c00099{left:206.430000px;}
.x10_c00099{left:207.855000px;}
.x1c_c00099{left:210.300000px;}
.x45_c00099{left:211.965000px;}
.x32_c00099{left:214.035000px;}
.x27_c00099{left:216.240000px;}
.x8_c00099{left:218.100000px;}
.x41_c00099{left:221.115000px;}
.x1e_c00099{left:222.165000px;}
.x21_c00099{left:224.940000px;}
.x9_c00099{left:225.945000px;}
.x16_c00099{left:228.030000px;}
.x1f_c00099{left:229.335000px;}
.x33_c00099{left:231.540000px;}
.xa_c00099{left:233.565000px;}
.x28_c00099{left:235.485000px;}
.x36_c00099{left:236.805000px;}
.xb_c00099{left:239.265000px;}
.xd_c00099{left:240.525000px;}
.x4a_c00099{left:243.975000px;}
.x22_c00099{left:245.625000px;}
.x20_c00099{left:246.795000px;}
.x34_c00099{left:248.055000px;}
.x2f_c00099{left:250.905000px;}
.x52_c00099{left:256.650000px;}
.xe_c00099{left:261.855000px;}
.x4d_c00099{left:265.470000px;}
.x53_c00099{left:268.365000px;}
.x2d_c00099{left:269.625000px;}
.x2e_c00099{left:273.675000px;}
.x56_c00099{left:282.000000px;}
.x50_c00099{left:424.890000px;}
.x2_c00099{left:427.245000px;}
.x54_c00099{left:450.450000px;}
.x47_c00099{left:451.530000px;}
.xf_c00099{left:452.610000px;}
.x51_c00099{left:476.730000px;}
.x44_c00099{left:477.810000px;}
.x3b_c00099{left:504.450000px;}
.xc_c00099{left:505.530000px;}
.x37_c00099{left:557.370000px;}
.x3d_c00099{left:636.570000px;}
.x23_c00099{left:663.930000px;}
.x3f_c00099{left:689.640000px;}
.x4b_c00099{left:715.410000px;}
.x17_c00099{left:717.210000px;}
@media print{
.ve_c00099{vertical-align:-25.546667pt;}
.v2_c00099{vertical-align:-24.373333pt;}
.v10_c00099{vertical-align:-23.040000pt;}
.v13_c00099{vertical-align:-21.760000pt;}
.vc_c00099{vertical-align:-19.146667pt;}
.v4_c00099{vertical-align:-17.866667pt;}
.v12_c00099{vertical-align:-16.640000pt;}
.v9_c00099{vertical-align:-15.360000pt;}
.v14_c00099{vertical-align:-12.746667pt;}
.v7_c00099{vertical-align:-7.680000pt;}
.v1_c00099{vertical-align:-5.173333pt;}
.v8_c00099{vertical-align:-3.786667pt;}
.vb_c00099{vertical-align:-2.499733pt;}
.v3_c00099{vertical-align:-1.278933pt;}
.v0_c00099{vertical-align:0.000000pt;}
.v5_c00099{vertical-align:1.280000pt;}
.vd_c00099{vertical-align:2.506667pt;}
.v11_c00099{vertical-align:5.120000pt;}
.vf_c00099{vertical-align:10.186667pt;}
.v6_c00099{vertical-align:19.146667pt;}
.va_c00099{vertical-align:20.480000pt;}
.ls2b_c00099{letter-spacing:-4.274667pt;}
.ls64_c00099{letter-spacing:-3.546667pt;}
.ls2e_c00099{letter-spacing:-2.968000pt;}
.ls41_c00099{letter-spacing:-2.688000pt;}
.ls2c_c00099{letter-spacing:-2.482667pt;}
.ls54_c00099{letter-spacing:-2.389333pt;}
.ls4d_c00099{letter-spacing:-2.352000pt;}
.ls42_c00099{letter-spacing:-2.333333pt;}
.ls47_c00099{letter-spacing:-2.296000pt;}
.ls1b_c00099{letter-spacing:-2.221333pt;}
.ls22_c00099{letter-spacing:-2.214987pt;}
.ls2d_c00099{letter-spacing:-2.146667pt;}
.ls28_c00099{letter-spacing:-2.128000pt;}
.ls49_c00099{letter-spacing:-2.109333pt;}
.ls4c_c00099{letter-spacing:-2.053333pt;}
.ls4b_c00099{letter-spacing:-2.034667pt;}
.ls3e_c00099{letter-spacing:-1.960000pt;}
.ls19_c00099{letter-spacing:-1.885333pt;}
.ls18_c00099{letter-spacing:-1.793760pt;}
.ls6a_c00099{letter-spacing:-1.792000pt;}
.ls67_c00099{letter-spacing:-1.773333pt;}
.ls4f_c00099{letter-spacing:-1.707573pt;}
.ls16_c00099{letter-spacing:-1.698667pt;}
.ls63_c00099{letter-spacing:-1.680000pt;}
.ls37_c00099{letter-spacing:-1.661333pt;}
.ls1c_c00099{letter-spacing:-1.653707pt;}
.ls46_c00099{letter-spacing:-1.642667pt;}
.ls56_c00099{letter-spacing:-1.599840pt;}
.ls35_c00099{letter-spacing:-1.587040pt;}
.ls17_c00099{letter-spacing:-1.382667pt;}
.ls30_c00099{letter-spacing:-1.152747pt;}
.ls60_c00099{letter-spacing:-1.125813pt;}
.ls32_c00099{letter-spacing:-0.883413pt;}
.ls58_c00099{letter-spacing:-0.627200pt;}
.ls40_c00099{letter-spacing:-0.540053pt;}
.ls65_c00099{letter-spacing:-0.500960pt;}
.ls1f_c00099{letter-spacing:-0.366293pt;}
.ls45_c00099{letter-spacing:-0.342613pt;}
.ls21_c00099{letter-spacing:-0.312427pt;}
.ls51_c00099{letter-spacing:-0.306133pt;}
.ls4e_c00099{letter-spacing:-0.280107pt;}
.ls62_c00099{letter-spacing:-0.188533pt;}
.ls31_c00099{letter-spacing:-0.172373pt;}
.ls27_c00099{letter-spacing:-0.145440pt;}
.ls5b_c00099{letter-spacing:-0.123893pt;}
.ls14_c00099{letter-spacing:-0.104267pt;}
.ls57_c00099{letter-spacing:-0.102347pt;}
.ls3a_c00099{letter-spacing:-0.053867pt;}
.ls48_c00099{letter-spacing:-0.048480pt;}
.ls11_c00099{letter-spacing:0.000000pt;}
.ls1_c00099{letter-spacing:0.015040pt;}
.lsd_c00099{letter-spacing:0.021547pt;}
.lsa_c00099{letter-spacing:0.048480pt;}
.lsb_c00099{letter-spacing:0.048533pt;}
.ls5_c00099{letter-spacing:0.070027pt;}
.ls7_c00099{letter-spacing:0.086187pt;}
.lsf_c00099{letter-spacing:0.113120pt;}
.ls4_c00099{letter-spacing:0.117120pt;}
.ls2_c00099{letter-spacing:0.294400pt;}
.lse_c00099{letter-spacing:0.363528pt;}
.ls66_c00099{letter-spacing:0.543307pt;}
.lsc_c00099{letter-spacing:0.554027pt;}
.ls29_c00099{letter-spacing:0.565600pt;}
.ls61_c00099{letter-spacing:0.656640pt;}
.ls44_c00099{letter-spacing:0.663680pt;}
.ls5d_c00099{letter-spacing:1.093333pt;}
.ls9_c00099{letter-spacing:1.093547pt;}
.ls13_c00099{letter-spacing:1.167947pt;}
.ls2f_c00099{letter-spacing:1.173360pt;}
.ls0_c00099{letter-spacing:1.193973pt;}
.ls5a_c00099{letter-spacing:1.200027pt;}
.ls8_c00099{letter-spacing:1.224960pt;}
.ls23_c00099{letter-spacing:1.226667pt;}
.ls55_c00099{letter-spacing:1.253333pt;}
.ls20_c00099{letter-spacing:1.280027pt;}
.ls5f_c00099{letter-spacing:1.306693pt;}
.ls26_c00099{letter-spacing:1.360000pt;}
.ls3d_c00099{letter-spacing:1.386667pt;}
.ls3_c00099{letter-spacing:1.395680pt;}
.ls25_c00099{letter-spacing:1.413360pt;}
.ls10_c00099{letter-spacing:1.464053pt;}
.ls1e_c00099{letter-spacing:1.466693pt;}
.ls69_c00099{letter-spacing:1.493333pt;}
.ls50_c00099{letter-spacing:1.520000pt;}
.ls38_c00099{letter-spacing:1.528427pt;}
.ls24_c00099{letter-spacing:1.546693pt;}
.ls3c_c00099{letter-spacing:1.573360pt;}
.ls12_c00099{letter-spacing:1.626667pt;}
.ls4a_c00099{letter-spacing:1.653333pt;}
.ls59_c00099{letter-spacing:1.713920pt;}
.ls3b_c00099{letter-spacing:1.760000pt;}
.ls43_c00099{letter-spacing:1.786667pt;}
.ls52_c00099{letter-spacing:1.792853pt;}
.ls5e_c00099{letter-spacing:1.813360pt;}
.ls3f_c00099{letter-spacing:1.893333pt;}
.ls33_c00099{letter-spacing:2.053333pt;}
.ls68_c00099{letter-spacing:2.080027pt;}
.ls36_c00099{letter-spacing:2.164480pt;}
.ls5c_c00099{letter-spacing:2.240853pt;}
.ls6_c00099{letter-spacing:2.251947pt;}
.ls34_c00099{letter-spacing:2.293333pt;}
.ls1d_c00099{letter-spacing:2.346667pt;}
.ls39_c00099{letter-spacing:2.400000pt;}
.ls15_c00099{letter-spacing:2.426667pt;}
.ls2a_c00099{letter-spacing:2.453333pt;}
.ls53_c00099{letter-spacing:2.560000pt;}
.ls1a_c00099{letter-spacing:2.693333pt;}
.ws0_c00099{word-spacing:0.000000pt;}
._29_c00099{margin-left:-19.264000pt;}
._1d_c00099{margin-left:-18.037333pt;}
._3e_c00099{margin-left:-14.640533pt;}
._23_c00099{margin-left:-12.249280pt;}
._18_c00099{margin-left:-10.080000pt;}
._22_c00099{margin-left:-8.586347pt;}
._b_c00099{margin-left:-6.539200pt;}
._4c_c00099{margin-left:-4.859733pt;}
._1f_c00099{margin-left:-1.960533pt;}
._9_c00099{margin-left:-1.025333pt;}
._4b_c00099{width:1.149890pt;}
._36_c00099{width:3.075970pt;}
._3c_c00099{width:4.372533pt;}
._52_c00099{width:11.527467pt;}
._4a_c00099{width:20.792533pt;}
._1_c00099{width:25.739733pt;}
._2_c00099{width:29.578667pt;}
._0_c00099{width:32.473600pt;}
._3_c00099{width:34.497067pt;}
._7_c00099{width:35.443200pt;}
._6_c00099{width:38.882133pt;}
._8_c00099{width:41.272533pt;}
._12_c00099{width:43.309333pt;}
._f_c00099{width:44.588267pt;}
._32_c00099{width:45.867200pt;}
._14_c00099{width:47.006400pt;}
._50_c00099{width:48.840000pt;}
._13_c00099{width:49.730667pt;}
._5_c00099{width:50.869333pt;}
._10_c00099{width:53.801600pt;}
._58_c00099{width:55.129067pt;}
._51_c00099{width:56.265067pt;}
._4_c00099{width:58.339200pt;}
._33_c00099{width:73.192237pt;}
._1a_c00099{width:80.294667pt;}
._37_c00099{width:114.805333pt;}
._3a_c00099{width:135.476178pt;}
._31_c00099{width:136.787733pt;}
._20_c00099{width:138.066667pt;}
._41_c00099{width:140.103467pt;}
._3d_c00099{width:142.186267pt;}
._16_c00099{width:185.718133pt;}
._e_c00099{width:186.886667pt;}
._53_c00099{width:190.419253pt;}
._43_c00099{width:227.650133pt;}
._30_c00099{width:228.929067pt;}
._2f_c00099{width:231.486933pt;}
._11_c00099{width:232.765867pt;}
._5a_c00099{width:321.704237pt;}
._40_c00099{width:325.665067pt;}
._2e_c00099{width:327.465067pt;}
._4e_c00099{width:418.385600pt;}
._26_c00099{width:419.664533pt;}
._59_c00099{width:424.480000pt;}
._48_c00099{width:429.330133pt;}
._39_c00099{width:511.805867pt;}
._46_c00099{width:513.084800pt;}
._25_c00099{width:514.363733pt;}
._5b_c00099{width:560.644373pt;}
._2d_c00099{width:569.806933pt;}
._3f_c00099{width:591.406133pt;}
._45_c00099{width:594.272160pt;}
._4f_c00099{width:700.669529pt;}
._5c_c00099{width:702.596267pt;}
._d_c00099{width:705.099200pt;}
._2b_c00099{width:726.577067pt;}
._15_c00099{width:733.758489pt;}
._4d_c00099{width:749.114895pt;}
._38_c00099{width:760.154773pt;}
._24_c00099{width:765.434773pt;}
._2c_c00099{width:793.403733pt;}
._3b_c00099{width:794.682667pt;}
._44_c00099{width:795.961600pt;}
._56_c00099{width:813.963253pt;}
._42_c00099{width:852.072533pt;}
._49_c00099{width:853.335467pt;}
._19_c00099{width:870.567253pt;}
._28_c00099{width:876.984107pt;}
._55_c00099{width:890.139733pt;}
._1b_c00099{width:895.410453pt;}
._a_c00099{width:903.220267pt;}
._2a_c00099{width:981.581333pt;}
._34_c00099{width:1069.989493pt;}
._54_c00099{width:1181.078933pt;}
._47_c00099{width:1192.989973pt;}
._35_c00099{width:1263.001973pt;}
._27_c00099{width:1276.577493pt;}
._21_c00099{width:1331.098987pt;}
._17_c00099{width:1390.558933pt;}
._57_c00099{width:1595.597526pt;}
._1c_c00099{width:1630.369387pt;}
._c_c00099{width:1736.128000pt;}
._1e_c00099{width:1902.388800pt;}
.fs39_c00099{font-size:8.533333pt;}
.fs28_c00099{font-size:16.640000pt;}
.fs6_c00099{font-size:21.333333pt;}
.fs3b_c00099{font-size:21.866667pt;}
.fs1f_c00099{font-size:23.467200pt;}
.fs33_c00099{font-size:24.000533pt;}
.fs11_c00099{font-size:24.533333pt;}
.fs37_c00099{font-size:25.066667pt;}
.fs10_c00099{font-size:25.600533pt;}
.fs3a_c00099{font-size:26.133867pt;}
.fs13_c00099{font-size:27.200000pt;}
.fs25_c00099{font-size:27.733333pt;}
.fsd_c00099{font-size:28.267200pt;}
.fsf_c00099{font-size:29.333867pt;}
.fs18_c00099{font-size:29.866667pt;}
.fs35_c00099{font-size:30.400000pt;}
.fs1e_c00099{font-size:30.720000pt;}
.fs12_c00099{font-size:30.933867pt;}
.fs24_c00099{font-size:31.467200pt;}
.fs3_c00099{font-size:32.533333pt;}
.fs30_c00099{font-size:33.066667pt;}
.fs1a_c00099{font-size:34.560533pt;}
.fs1c_c00099{font-size:34.667200pt;}
.fs23_c00099{font-size:35.200000pt;}
.fs2b_c00099{font-size:35.733333pt;}
.fs40_c00099{font-size:35.840000pt;}
.fs3c_c00099{font-size:36.267200pt;}
.fs2e_c00099{font-size:36.800533pt;}
.fs34_c00099{font-size:37.333333pt;}
.fs27_c00099{font-size:37.866667pt;}
.fs20_c00099{font-size:41.066667pt;}
.fs3f_c00099{font-size:41.600533pt;}
.fs7_c00099{font-size:45.333333pt;}
.fs21_c00099{font-size:45.866667pt;}
.fse_c00099{font-size:46.933333pt;}
.fs22_c00099{font-size:47.466667pt;}
.fsb_c00099{font-size:48.000000pt;}
.fs8_c00099{font-size:48.533333pt;}
.fs16_c00099{font-size:49.066667pt;}
.fs4_c00099{font-size:50.133333pt;}
.fs3e_c00099{font-size:50.666667pt;}
.fsa_c00099{font-size:51.200000pt;}
.fs0_c00099{font-size:51.733333pt;}
.fs38_c00099{font-size:52.266667pt;}
.fs9_c00099{font-size:53.866667pt;}
.fs2_c00099{font-size:54.933333pt;}
.fs2c_c00099{font-size:55.466667pt;}
.fs26_c00099{font-size:56.000000pt;}
.fs5_c00099{font-size:58.133333pt;}
.fs31_c00099{font-size:58.666667pt;}
.fs2f_c00099{font-size:60.266667pt;}
.fs14_c00099{font-size:60.800000pt;}
.fs1b_c00099{font-size:61.333333pt;}
.fs1_c00099{font-size:62.933333pt;}
.fsc_c00099{font-size:63.466667pt;}
.fs15_c00099{font-size:64.000000pt;}
.fs2d_c00099{font-size:65.600000pt;}
.fs2a_c00099{font-size:66.666667pt;}
.fs32_c00099{font-size:67.200000pt;}
.fs36_c00099{font-size:68.266667pt;}
.fs19_c00099{font-size:70.933333pt;}
.fs29_c00099{font-size:76.800000pt;}
.fs1d_c00099{font-size:84.800000pt;}
.fs3d_c00099{font-size:101.333333pt;}
.fs17_c00099{font-size:122.133333pt;}
.y0_c00099{bottom:0.000000pt;}
.y90_c00099{bottom:57.613333pt;}
.y8f_c00099{bottom:108.480000pt;}
.y8e_c00099{bottom:110.080000pt;}
.y8c_c00099{bottom:114.560000pt;}
.y8d_c00099{bottom:124.480000pt;}
.y8b_c00099{bottom:126.080000pt;}
.y8a_c00099{bottom:130.893333pt;}
.y89_c00099{bottom:140.800000pt;}
.y88_c00099{bottom:141.440000pt;}
.y87_c00099{bottom:146.240000pt;}
.y85_c00099{bottom:155.840000pt;}
.y86_c00099{bottom:157.760000pt;}
.y84_c00099{bottom:162.893333pt;}
.y82_c00099{bottom:169.920000pt;}
.y83_c00099{bottom:172.813333pt;}
.y81_c00099{bottom:178.240000pt;}
.y80_c00099{bottom:187.853333pt;}
.y7f_c00099{bottom:189.133333pt;}
.y7e_c00099{bottom:194.573333pt;}
.y7d_c00099{bottom:194.893333pt;}
.y7b_c00099{bottom:205.133333pt;}
.y7c_c00099{bottom:206.093333pt;}
.y7a_c00099{bottom:207.680000pt;}
.y79_c00099{bottom:210.240000pt;}
.y78_c00099{bottom:219.533333pt;}
.y77_c00099{bottom:221.453333pt;}
.y76_c00099{bottom:226.893333pt;}
.y75_c00099{bottom:236.813333pt;}
.y74_c00099{bottom:237.453333pt;}
.y73_c00099{bottom:242.240000pt;}
.y72_c00099{bottom:255.373333pt;}
.y71_c00099{bottom:256.000000pt;}
.y6f_c00099{bottom:257.613333pt;}
.y70_c00099{bottom:258.573333pt;}
.y6e_c00099{bottom:268.493333pt;}
.y6d_c00099{bottom:268.813333pt;}
.y6c_c00099{bottom:274.240000pt;}
.y6a_c00099{bottom:284.493333pt;}
.y6b_c00099{bottom:285.133333pt;}
.y69_c00099{bottom:288.653333pt;}
.y68_c00099{bottom:289.613333pt;}
.y67_c00099{bottom:300.173333pt;}
.y66_c00099{bottom:304.973333pt;}
.y65_c00099{bottom:314.573333pt;}
.y64_c00099{bottom:321.613333pt;}
.y63_c00099{bottom:331.200000pt;}
.y62_c00099{bottom:331.853333pt;}
.y61_c00099{bottom:336.973333pt;}
.y60_c00099{bottom:345.613333pt;}
.y5f_c00099{bottom:347.533333pt;}
.y5e_c00099{bottom:352.320000pt;}
.y5d_c00099{bottom:362.240000pt;}
.y5c_c00099{bottom:377.613333pt;}
.y5b_c00099{bottom:379.533333pt;}
.y5a_c00099{bottom:384.320000pt;}
.y59_c00099{bottom:392.320000pt;}
.y58_c00099{bottom:394.573333pt;}
.y57_c00099{bottom:399.693333pt;}
.y56_c00099{bottom:400.973333pt;}
.y55_c00099{bottom:411.533333pt;}
.y54_c00099{bottom:424.653333pt;}
.y53_c00099{bottom:426.893333pt;}
.y52_c00099{bottom:431.693333pt;}
.y51_c00099{bottom:447.693333pt;}
.y50_c00099{bottom:448.320000pt;}
.y4f_c00099{bottom:456.653333pt;}
.y4e_c00099{bottom:463.693333pt;}
.y4d_c00099{bottom:471.360000pt;}
.y4c_c00099{bottom:475.200000pt;}
.y4a_c00099{bottom:476.173333pt;}
.y4b_c00099{bottom:480.320000pt;}
.y49_c00099{bottom:490.893333pt;}
.y48_c00099{bottom:494.093333pt;}
.y47_c00099{bottom:503.693333pt;}
.y46_c00099{bottom:507.200000pt;}
.y44_c00099{bottom:508.480000pt;}
.y45_c00099{bottom:513.613333pt;}
.y43_c00099{bottom:524.813333pt;}
.y42_c00099{bottom:525.133333pt;}
.y3f_c00099{bottom:537.613333pt;}
.y41_c00099{bottom:538.893333pt;}
.y40_c00099{bottom:545.280000pt;}
.y3c_c00099{bottom:554.573333pt;}
.y3e_c00099{bottom:554.893333pt;}
.y3d_c00099{bottom:559.693333pt;}
.y38_c00099{bottom:569.613333pt;}
.y3b_c00099{bottom:570.240000pt;}
.y3a_c00099{bottom:571.200000pt;}
.y39_c00099{bottom:577.280000pt;}
.y37_c00099{bottom:585.613333pt;}
.y35_c00099{bottom:586.573333pt;}
.y36_c00099{bottom:591.360000pt;}
.y33_c00099{bottom:604.480000pt;}
.y34_c00099{bottom:605.133333pt;}
.y31_c00099{bottom:606.093333pt;}
.y32_c00099{bottom:609.280000pt;}
.y2e_c00099{bottom:617.933333pt;}
.y30_c00099{bottom:618.240000pt;}
.y2f_c00099{bottom:619.853333pt;}
.y2d_c00099{bottom:633.933333pt;}
.y2c_c00099{bottom:635.853333pt;}
.y2b_c00099{bottom:651.200000pt;}
.y2a_c00099{bottom:655.693333pt;}
.y29_c00099{bottom:666.240000pt;}
.y28_c00099{bottom:682.240000pt;}
.y27_c00099{bottom:682.880000pt;}
.y26_c00099{bottom:698.880000pt;}
.y25_c00099{bottom:703.053333pt;}
.y24_c00099{bottom:714.560000pt;}
.y23_c00099{bottom:729.613333pt;}
.y22_c00099{bottom:731.853333pt;}
.y20_c00099{bottom:745.613333pt;}
.y21_c00099{bottom:745.933333pt;}
.y1e_c00099{bottom:746.560000pt;}
.y1f_c00099{bottom:752.960000pt;}
.y1d_c00099{bottom:760.960000pt;}
.y1c_c00099{bottom:761.933333pt;}
.y1b_c00099{bottom:780.480000pt;}
.y1a_c00099{bottom:782.400000pt;}
.y18_c00099{bottom:791.053333pt;}
.y17_c00099{bottom:793.293333pt;}
.y19_c00099{bottom:794.560000pt;}
.y15_c00099{bottom:796.800000pt;}
.y16_c00099{bottom:797.773333pt;}
.y14_c00099{bottom:799.053333pt;}
.y13_c00099{bottom:805.773333pt;}
.y12_c00099{bottom:814.400000pt;}
.yf_c00099{bottom:825.933333pt;}
.y11_c00099{bottom:826.240000pt;}
.y10_c00099{bottom:829.773333pt;}
.ye_c00099{bottom:842.560000pt;}
.yd_c00099{bottom:852.173333pt;}
.yc_c00099{bottom:856.960000pt;}
.ya_c00099{bottom:870.093333pt;}
.yb_c00099{bottom:872.640000pt;}
.y9_c00099{bottom:874.560000pt;}
.y7_c00099{bottom:887.373333pt;}
.y8_c00099{bottom:888.320000pt;}
.y6_c00099{bottom:889.933333pt;}
.y4_c00099{bottom:906.880000pt;}
.y5_c00099{bottom:910.093333pt;}
.y3_c00099{bottom:921.293333pt;}
.y2_c00099{bottom:936.320000pt;}
.y1_c00099{bottom:1057.933333pt;}
.h35_c00099{height:11.082240pt;}
.h26_c00099{height:20.459520pt;}
.h57_c00099{height:21.460937pt;}
.h22_c00099{height:23.017315pt;}
.h28_c00099{height:23.031773pt;}
.h65_c00099{height:23.869440pt;}
.h15_c00099{height:24.078125pt;}
.h52_c00099{height:25.031806pt;}
.h42_c00099{height:25.125523pt;}
.h45_c00099{height:25.587500pt;}
.h54_c00099{height:25.648961pt;}
.h4e_c00099{height:26.143750pt;}
.h29_c00099{height:26.695312pt;}
.h13_c00099{height:26.700556pt;}
.h17_c00099{height:27.742711pt;}
.h19_c00099{height:28.368750pt;}
.h11_c00099{height:28.789586pt;}
.h31_c00099{height:28.925000pt;}
.h61_c00099{height:29.312500pt;}
.h16_c00099{height:30.359898pt;}
.h49_c00099{height:31.706250pt;}
.h4_c00099{height:31.913802pt;}
.h6_c00099{height:31.929687pt;}
.h64_c00099{height:32.453125pt;}
.h30_c00099{height:32.819306pt;}
.h47_c00099{height:33.640885pt;}
.h24_c00099{height:34.023961pt;}
.h63_c00099{height:34.099200pt;}
.h3e_c00099{height:34.487500pt;}
.h5f_c00099{height:34.977917pt;}
.h38_c00099{height:35.052865pt;}
.h55_c00099{height:35.070312pt;}
.h7_c00099{height:36.257917pt;}
.h2f_c00099{height:36.712500pt;}
.h58_c00099{height:37.825556pt;}
.h3c_c00099{height:38.381806pt;}
.h53_c00099{height:38.871250pt;}
.h56_c00099{height:38.924583pt;}
.h34_c00099{height:39.493750pt;}
.h14_c00099{height:40.204583pt;}
.h60_c00099{height:40.808336pt;}
.h1a_c00099{height:41.484583pt;}
.h46_c00099{height:42.657917pt;}
.h2a_c00099{height:42.831250pt;}
.h4a_c00099{height:43.991250pt;}
.h39_c00099{height:46.039583pt;}
.h4b_c00099{height:46.062500pt;}
.h2d_c00099{height:46.562760pt;}
.h2e_c00099{height:47.109375pt;}
.h8_c00099{height:47.281250pt;}
.h9_c00099{height:47.609115pt;}
.h2b_c00099{height:47.837500pt;}
.h59_c00099{height:47.884583pt;}
.h10_c00099{height:48.950000pt;}
.h5d_c00099{height:49.701823pt;}
.h5b_c00099{height:50.062500pt;}
.h4c_c00099{height:50.250000pt;}
.h1e_c00099{height:51.175000pt;}
.h2_c00099{height:52.137500pt;}
.hc_c00099{height:52.287500pt;}
.h18_c00099{height:52.840885pt;}
.hb_c00099{height:52.867187pt;}
.hf_c00099{height:52.951250pt;}
.h32_c00099{height:53.004583pt;}
.h20_c00099{height:53.400000pt;}
.h50_c00099{height:53.887240pt;}
.h40_c00099{height:53.956250pt;}
.h3a_c00099{height:54.437500pt;}
.h33_c00099{height:54.960938pt;}
.h62_c00099{height:55.400885pt;}
.h5_c00099{height:55.457917pt;}
.h27_c00099{height:55.564583pt;}
.h12_c00099{height:56.844583pt;}
.h5a_c00099{height:58.071250pt;}
.h2c_c00099{height:58.124583pt;}
.h3d_c00099{height:59.119010pt;}
.h1d_c00099{height:59.351250pt;}
.h1b_c00099{height:59.671875pt;}
.h51_c00099{height:60.242917pt;}
.ha_c00099{height:60.631250pt;}
.h41_c00099{height:61.187500pt;}
.h66_c00099{height:61.576250pt;}
.h3_c00099{height:61.765625pt;}
.h5e_c00099{height:61.910183pt;}
.h48_c00099{height:63.191250pt;}
.h23_c00099{height:63.968750pt;}
.h3f_c00099{height:64.382813pt;}
.h4f_c00099{height:65.804583pt;}
.h43_c00099{height:65.953125pt;}
.hd_c00099{height:66.193750pt;}
.h1c_c00099{height:66.750000pt;}
.h3b_c00099{height:68.418750pt;}
.h37_c00099{height:69.531250pt;}
.h4d_c00099{height:71.200000pt;}
.h21_c00099{height:73.981250pt;}
.h44_c00099{height:74.155417pt;}
.h36_c00099{height:75.375000pt;}
.he_c00099{height:79.777917pt;}
.h25_c00099{height:83.226562pt;}
.h5c_c00099{height:99.453125pt;}
.h1f_c00099{height:119.867187pt;}
.h1_c00099{height:1122.666667pt;}
.h0_c00099{height:1122.880000pt;}
.w1_c00099{width:793.333333pt;}
.w0_c00099{width:793.600000pt;}
.x0_c00099{left:0.000000pt;}
.x55_c00099{left:103.986667pt;}
.x18_c00099{left:105.360000pt;}
.x4e_c00099{left:108.106667pt;}
.x1_c00099{left:109.693333pt;}
.x46_c00099{left:110.853333pt;}
.x15_c00099{left:111.786667pt;}
.x13_c00099{left:114.240000pt;}
.x1d_c00099{left:115.640000pt;}
.x4c_c00099{left:118.346667pt;}
.x57_c00099{left:121.200000pt;}
.x29_c00099{left:122.800000pt;}
.x24_c00099{left:124.213333pt;}
.x19_c00099{left:125.333333pt;}
.x1a_c00099{left:129.093333pt;}
.x25_c00099{left:132.506667pt;}
.x1b_c00099{left:134.960000pt;}
.x2b_c00099{left:136.000000pt;}
.x6_c00099{left:137.213333pt;}
.x39_c00099{left:138.760000pt;}
.x38_c00099{left:142.160000pt;}
.x3_c00099{left:145.800000pt;}
.x3c_c00099{left:147.720000pt;}
.x14_c00099{left:149.040000pt;}
.x11_c00099{left:150.226667pt;}
.x4_c00099{left:152.826667pt;}
.x42_c00099{left:154.000000pt;}
.x7_c00099{left:155.400000pt;}
.x3a_c00099{left:156.586667pt;}
.x49_c00099{left:157.853333pt;}
.x4f_c00099{left:162.386667pt;}
.x48_c00099{left:163.386667pt;}
.x2a_c00099{left:164.573333pt;}
.x30_c00099{left:165.600000pt;}
.x26_c00099{left:167.080000pt;}
.x12_c00099{left:168.186667pt;}
.x31_c00099{left:169.080000pt;}
.x5_c00099{left:171.253333pt;}
.x35_c00099{left:175.626667pt;}
.x43_c00099{left:178.320000pt;}
.x2c_c00099{left:179.546667pt;}
.x3e_c00099{left:182.226667pt;}
.x40_c00099{left:183.493333pt;}
.x10_c00099{left:184.760000pt;}
.x1c_c00099{left:186.933333pt;}
.x45_c00099{left:188.413333pt;}
.x32_c00099{left:190.253333pt;}
.x27_c00099{left:192.213333pt;}
.x8_c00099{left:193.866667pt;}
.x41_c00099{left:196.546667pt;}
.x1e_c00099{left:197.480000pt;}
.x21_c00099{left:199.946667pt;}
.x9_c00099{left:200.840000pt;}
.x16_c00099{left:202.693333pt;}
.x1f_c00099{left:203.853333pt;}
.x33_c00099{left:205.813333pt;}
.xa_c00099{left:207.613333pt;}
.x28_c00099{left:209.320000pt;}
.x36_c00099{left:210.493333pt;}
.xb_c00099{left:212.680000pt;}
.xd_c00099{left:213.800000pt;}
.x4a_c00099{left:216.866667pt;}
.x22_c00099{left:218.333333pt;}
.x20_c00099{left:219.373333pt;}
.x34_c00099{left:220.493333pt;}
.x2f_c00099{left:223.026667pt;}
.x52_c00099{left:228.133333pt;}
.xe_c00099{left:232.760000pt;}
.x4d_c00099{left:235.973333pt;}
.x53_c00099{left:238.546667pt;}
.x2d_c00099{left:239.666667pt;}
.x2e_c00099{left:243.266667pt;}
.x56_c00099{left:250.666667pt;}
.x50_c00099{left:377.680000pt;}
.x2_c00099{left:379.773333pt;}
.x54_c00099{left:400.400000pt;}
.x47_c00099{left:401.360000pt;}
.xf_c00099{left:402.320000pt;}
.x51_c00099{left:423.760000pt;}
.x44_c00099{left:424.720000pt;}
.x3b_c00099{left:448.400000pt;}
.xc_c00099{left:449.360000pt;}
.x37_c00099{left:495.440000pt;}
.x3d_c00099{left:565.840000pt;}
.x23_c00099{left:590.160000pt;}
.x3f_c00099{left:613.013333pt;}
.x4b_c00099{left:635.920000pt;}
.x17_c00099{left:637.520000pt;}
}





/* 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_c00100 {
    display:none;
  }
  .loading-indicator_c00100.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00100 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_c00100 { 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_c00100" -> "#page-container .classname_c00100")
 */
.pf_c00100 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00100 { /* 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_c00100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00100 { /* 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_c00100 { /* 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_c00100 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00100 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00100 {overflow:visible;}
  }
}
.c_c00100 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00100 { /* 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_c00100:after { /* webkit #35443 */
  content: '';
}
.t_c00100:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00100 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 */
}
.__c00100 { /* 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_c00100 { /* info for Javascript */
  display:none;
}
.l_c00100 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00100 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00100 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00100: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_c00100 {
    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_c00100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00100.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_c00100 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00100;src:url('chunks/assets/font_7d52b78c10a0a03f68f77423.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.284668;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_c00100;src:url('chunks/assets/font_746c0d6b238d883068a78ce0.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;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_c00100;src:url('chunks/assets/font_9ea57b91a9b438791ccba441.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;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:ff4_c00100;src:url('chunks/assets/font_f0052568023deb118ed9a9ae.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:1.284180;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_c00100{transform:matrix(0.222613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222613,0.000000,0.000000,0.250000,0,0);}
.m2_c00100{transform:matrix(0.243309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243309,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{transform:matrix(0.245372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245372,0.000000,0.000000,0.250000,0,0);}
.m3_c00100{transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{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);}
.v0_c00100{vertical-align:0.000000px;}
.ls43_c00100{letter-spacing:-2.499000px;}
.ls65_c00100{letter-spacing:-2.100000px;}
.ls4a_c00100{letter-spacing:-1.884960px;}
.ls4d_c00100{letter-spacing:-1.556520px;}
.ls60_c00100{letter-spacing:-1.485120px;}
.ls53_c00100{letter-spacing:-1.356600px;}
.ls46_c00100{letter-spacing:-1.263780px;}
.ls5b_c00100{letter-spacing:-1.199520px;}
.ls44_c00100{letter-spacing:-1.063860px;}
.ls59_c00100{letter-spacing:-0.956760px;}
.ls62_c00100{letter-spacing:-0.885360px;}
.ls5e_c00100{letter-spacing:-0.878220px;}
.ls5a_c00100{letter-spacing:-0.835380px;}
.ls45_c00100{letter-spacing:-0.792540px;}
.ls48_c00100{letter-spacing:-0.585480px;}
.ls5f_c00100{letter-spacing:-0.549780px;}
.ls57_c00100{letter-spacing:-0.485520px;}
.ls58_c00100{letter-spacing:-0.471240px;}
.ls52_c00100{letter-spacing:-0.449820px;}
.ls54_c00100{letter-spacing:-0.392700px;}
.ls5c_c00100{letter-spacing:-0.342720px;}
.ls50_c00100{letter-spacing:-0.249900px;}
.ls4f_c00100{letter-spacing:-0.199920px;}
.ls47_c00100{letter-spacing:-0.171360px;}
.ls49_c00100{letter-spacing:-0.071400px;}
.ls5d_c00100{letter-spacing:-0.042840px;}
.ls51_c00100{letter-spacing:-0.035700px;}
.ls63_c00100{letter-spacing:-0.028560px;}
.ls56_c00100{letter-spacing:-0.021420px;}
.ls4c_c00100{letter-spacing:0.000000px;}
.ls37_c00100{letter-spacing:0.014280px;}
.ls33_c00100{letter-spacing:0.035700px;}
.ls2c_c00100{letter-spacing:0.057120px;}
.ls2a_c00100{letter-spacing:0.064260px;}
.lsc_c00100{letter-spacing:0.078540px;}
.ls0_c00100{letter-spacing:0.085680px;}
.ls1f_c00100{letter-spacing:0.107100px;}
.ls15_c00100{letter-spacing:0.135660px;}
.ls2_c00100{letter-spacing:0.149940px;}
.ls55_c00100{letter-spacing:0.157080px;}
.ls13_c00100{letter-spacing:0.171360px;}
.ls27_c00100{letter-spacing:0.199920px;}
.ls4_c00100{letter-spacing:0.207060px;}
.ls64_c00100{letter-spacing:0.214200px;}
.ls4b_c00100{letter-spacing:0.235620px;}
.ls19_c00100{letter-spacing:0.249900px;}
.ls3b_c00100{letter-spacing:0.257040px;}
.ls2f_c00100{letter-spacing:0.307020px;}
.ls11_c00100{letter-spacing:0.314160px;}
.ls40_c00100{letter-spacing:0.335580px;}
.ls16_c00100{letter-spacing:0.349860px;}
.ls10_c00100{letter-spacing:0.357000px;}
.ls6_c00100{letter-spacing:0.378420px;}
.ls4e_c00100{letter-spacing:0.385560px;}
.ls17_c00100{letter-spacing:0.399840px;}
.ls9_c00100{letter-spacing:0.435540px;}
.ls25_c00100{letter-spacing:0.442680px;}
.ls12_c00100{letter-spacing:0.456960px;}
.ls8_c00100{letter-spacing:0.464100px;}
.lse_c00100{letter-spacing:0.471240px;}
.ls22_c00100{letter-spacing:0.485520px;}
.ls1b_c00100{letter-spacing:0.499800px;}
.ls38_c00100{letter-spacing:0.506940px;}
.ls39_c00100{letter-spacing:0.528360px;}
.ls3f_c00100{letter-spacing:0.542640px;}
.ls31_c00100{letter-spacing:0.549780px;}
.lsa_c00100{letter-spacing:0.564060px;}
.ls3e_c00100{letter-spacing:0.606900px;}
.ls7_c00100{letter-spacing:0.614040px;}
.ls1c_c00100{letter-spacing:0.621180px;}
.ls21_c00100{letter-spacing:0.635460px;}
.ls26_c00100{letter-spacing:0.642600px;}
.ls3c_c00100{letter-spacing:0.649740px;}
.ls14_c00100{letter-spacing:0.678300px;}
.ls5_c00100{letter-spacing:0.685440px;}
.ls2d_c00100{letter-spacing:0.706860px;}
.ls32_c00100{letter-spacing:0.745560px;}
.ls24_c00100{letter-spacing:0.749700px;}
.ls1a_c00100{letter-spacing:0.756840px;}
.ls1e_c00100{letter-spacing:0.778260px;}
.lsf_c00100{letter-spacing:0.806820px;}
.ls30_c00100{letter-spacing:0.835380px;}
.ls2b_c00100{letter-spacing:0.856800px;}
.ls3d_c00100{letter-spacing:0.878220px;}
.ls1d_c00100{letter-spacing:0.885360px;}
.lsd_c00100{letter-spacing:0.892500px;}
.ls36_c00100{letter-spacing:0.899640px;}
.ls28_c00100{letter-spacing:0.906780px;}
.ls34_c00100{letter-spacing:0.964440px;}
.ls3a_c00100{letter-spacing:0.971040px;}
.ls61_c00100{letter-spacing:1.063860px;}
.ls3_c00100{letter-spacing:1.078140px;}
.ls42_c00100{letter-spacing:1.120980px;}
.ls29_c00100{letter-spacing:1.135260px;}
.ls20_c00100{letter-spacing:1.220940px;}
.ls41_c00100{letter-spacing:1.285200px;}
.ls1_c00100{letter-spacing:1.292340px;}
.ls23_c00100{letter-spacing:1.342320px;}
.lsb_c00100{letter-spacing:1.763580px;}
.ls35_c00100{letter-spacing:2.013480px;}
.ls2e_c00100{letter-spacing:2.084880px;}
.ls18_c00100{letter-spacing:2.413320px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{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__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:0.000000px;}
._6_c00100{margin-left:-11.493900px;}
._14_c00100{margin-left:-5.112240px;}
._10_c00100{margin-left:-3.762300px;}
._1_c00100{margin-left:-2.370480px;}
._f_c00100{margin-left:-1.199520px;}
._2_c00100{width:1.376640px;}
._4_c00100{width:3.177960px;}
._0_c00100{width:4.340760px;}
._3_c00100{width:5.919060px;}
._c_c00100{width:7.054320px;}
._5_c00100{width:8.118540px;}
._b_c00100{width:10.067400px;}
._7_c00100{width:11.388300px;}
._a_c00100{width:12.559260px;}
._8_c00100{width:14.165760px;}
._13_c00100{width:15.236760px;}
._9_c00100{width:16.314900px;}
._e_c00100{width:18.064200px;}
._d_c00100{width:19.956300px;}
._11_c00100{width:21.330600px;}
._12_c00100{width:23.033640px;}
.fc0_c00100{color:transparent;}
.fs6_c00100{font-size:60.000000px;}
.fs0_c00100{font-size:61.200000px;}
.fs2_c00100{font-size:66.000000px;}
.fs3_c00100{font-size:67.800000px;}
.fs4_c00100{font-size:68.400000px;}
.fs1_c00100{font-size:71.400000px;}
.fs5_c00100{font-size:73.800000px;}
.y0_c00100{bottom:0.000000px;}
.y14_c00100{bottom:66.975000px;}
.y13_c00100{bottom:139.688100px;}
.y12_c00100{bottom:170.648250px;}
.y11_c00100{bottom:201.975000px;}
.y10_c00100{bottom:262.800000px;}
.yf_c00100{bottom:324.374250px;}
.ye_c00100{bottom:356.415000px;}
.yd_c00100{bottom:417.975000px;}
.yc_c00100{bottom:417.982800px;}
.yb_c00100{bottom:479.904450px;}
.ya_c00100{bottom:510.856350px;}
.y9_c00100{bottom:541.451250px;}
.y8_c00100{bottom:573.135000px;}
.y7_c00100{bottom:603.725250px;}
.y6_c00100{bottom:634.695000px;}
.y5_c00100{bottom:665.640000px;}
.y4_c00100{bottom:727.198500px;}
.y3_c00100{bottom:789.498750px;}
.y2_c00100{bottom:1100.535000px;}
.y1_c00100{bottom:1195.200000px;}
.h2_c00100{height:60.064453px;}
.h6_c00100{height:62.578125px;}
.h3_c00100{height:70.075195px;}
.h4_c00100{height:71.307863px;}
.h5_c00100{height:72.397664px;}
.h1_c00100{height:1263.000000px;}
.h0_c00100{height:1263.240000px;}
.w1_c00100{width:892.500000px;}
.w0_c00100{width:892.800000px;}
.x0_c00100{left:0.000000px;}
.xc_c00100{left:120.561900px;}
.x7_c00100{left:122.015850px;}
.x5_c00100{left:123.248100px;}
.x2_c00100{left:125.490000px;}
.x1_c00100{left:126.645000px;}
.x3_c00100{left:171.870000px;}
.x8_c00100{left:176.215500px;}
.xa_c00100{left:186.495000px;}
.x6_c00100{left:187.545000px;}
.x4_c00100{left:189.900000px;}
.xb_c00100{left:369.465000px;}
.x9_c00100{left:375.240000px;}
.xd_c00100{left:429.315000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls43_c00100{letter-spacing:-2.221333pt;}
.ls65_c00100{letter-spacing:-1.866667pt;}
.ls4a_c00100{letter-spacing:-1.675520pt;}
.ls4d_c00100{letter-spacing:-1.383573pt;}
.ls60_c00100{letter-spacing:-1.320107pt;}
.ls53_c00100{letter-spacing:-1.205867pt;}
.ls46_c00100{letter-spacing:-1.123360pt;}
.ls5b_c00100{letter-spacing:-1.066240pt;}
.ls44_c00100{letter-spacing:-0.945653pt;}
.ls59_c00100{letter-spacing:-0.850453pt;}
.ls62_c00100{letter-spacing:-0.786987pt;}
.ls5e_c00100{letter-spacing:-0.780640pt;}
.ls5a_c00100{letter-spacing:-0.742560pt;}
.ls45_c00100{letter-spacing:-0.704480pt;}
.ls48_c00100{letter-spacing:-0.520427pt;}
.ls5f_c00100{letter-spacing:-0.488693pt;}
.ls57_c00100{letter-spacing:-0.431573pt;}
.ls58_c00100{letter-spacing:-0.418880pt;}
.ls52_c00100{letter-spacing:-0.399840pt;}
.ls54_c00100{letter-spacing:-0.349067pt;}
.ls5c_c00100{letter-spacing:-0.304640pt;}
.ls50_c00100{letter-spacing:-0.222133pt;}
.ls4f_c00100{letter-spacing:-0.177707pt;}
.ls47_c00100{letter-spacing:-0.152320pt;}
.ls49_c00100{letter-spacing:-0.063467pt;}
.ls5d_c00100{letter-spacing:-0.038080pt;}
.ls51_c00100{letter-spacing:-0.031733pt;}
.ls63_c00100{letter-spacing:-0.025387pt;}
.ls56_c00100{letter-spacing:-0.019040pt;}
.ls4c_c00100{letter-spacing:0.000000pt;}
.ls37_c00100{letter-spacing:0.012693pt;}
.ls33_c00100{letter-spacing:0.031733pt;}
.ls2c_c00100{letter-spacing:0.050773pt;}
.ls2a_c00100{letter-spacing:0.057120pt;}
.lsc_c00100{letter-spacing:0.069813pt;}
.ls0_c00100{letter-spacing:0.076160pt;}
.ls1f_c00100{letter-spacing:0.095200pt;}
.ls15_c00100{letter-spacing:0.120587pt;}
.ls2_c00100{letter-spacing:0.133280pt;}
.ls55_c00100{letter-spacing:0.139627pt;}
.ls13_c00100{letter-spacing:0.152320pt;}
.ls27_c00100{letter-spacing:0.177707pt;}
.ls4_c00100{letter-spacing:0.184053pt;}
.ls64_c00100{letter-spacing:0.190400pt;}
.ls4b_c00100{letter-spacing:0.209440pt;}
.ls19_c00100{letter-spacing:0.222133pt;}
.ls3b_c00100{letter-spacing:0.228480pt;}
.ls2f_c00100{letter-spacing:0.272907pt;}
.ls11_c00100{letter-spacing:0.279253pt;}
.ls40_c00100{letter-spacing:0.298293pt;}
.ls16_c00100{letter-spacing:0.310987pt;}
.ls10_c00100{letter-spacing:0.317333pt;}
.ls6_c00100{letter-spacing:0.336373pt;}
.ls4e_c00100{letter-spacing:0.342720pt;}
.ls17_c00100{letter-spacing:0.355413pt;}
.ls9_c00100{letter-spacing:0.387147pt;}
.ls25_c00100{letter-spacing:0.393493pt;}
.ls12_c00100{letter-spacing:0.406187pt;}
.ls8_c00100{letter-spacing:0.412533pt;}
.lse_c00100{letter-spacing:0.418880pt;}
.ls22_c00100{letter-spacing:0.431573pt;}
.ls1b_c00100{letter-spacing:0.444267pt;}
.ls38_c00100{letter-spacing:0.450613pt;}
.ls39_c00100{letter-spacing:0.469653pt;}
.ls3f_c00100{letter-spacing:0.482347pt;}
.ls31_c00100{letter-spacing:0.488693pt;}
.lsa_c00100{letter-spacing:0.501387pt;}
.ls3e_c00100{letter-spacing:0.539467pt;}
.ls7_c00100{letter-spacing:0.545813pt;}
.ls1c_c00100{letter-spacing:0.552160pt;}
.ls21_c00100{letter-spacing:0.564853pt;}
.ls26_c00100{letter-spacing:0.571200pt;}
.ls3c_c00100{letter-spacing:0.577547pt;}
.ls14_c00100{letter-spacing:0.602933pt;}
.ls5_c00100{letter-spacing:0.609280pt;}
.ls2d_c00100{letter-spacing:0.628320pt;}
.ls32_c00100{letter-spacing:0.662720pt;}
.ls24_c00100{letter-spacing:0.666400pt;}
.ls1a_c00100{letter-spacing:0.672747pt;}
.ls1e_c00100{letter-spacing:0.691787pt;}
.lsf_c00100{letter-spacing:0.717173pt;}
.ls30_c00100{letter-spacing:0.742560pt;}
.ls2b_c00100{letter-spacing:0.761600pt;}
.ls3d_c00100{letter-spacing:0.780640pt;}
.ls1d_c00100{letter-spacing:0.786987pt;}
.lsd_c00100{letter-spacing:0.793333pt;}
.ls36_c00100{letter-spacing:0.799680pt;}
.ls28_c00100{letter-spacing:0.806027pt;}
.ls34_c00100{letter-spacing:0.857280pt;}
.ls3a_c00100{letter-spacing:0.863147pt;}
.ls61_c00100{letter-spacing:0.945653pt;}
.ls3_c00100{letter-spacing:0.958347pt;}
.ls42_c00100{letter-spacing:0.996427pt;}
.ls29_c00100{letter-spacing:1.009120pt;}
.ls20_c00100{letter-spacing:1.085280pt;}
.ls41_c00100{letter-spacing:1.142400pt;}
.ls1_c00100{letter-spacing:1.148747pt;}
.ls23_c00100{letter-spacing:1.193173pt;}
.lsb_c00100{letter-spacing:1.567627pt;}
.ls35_c00100{letter-spacing:1.789760pt;}
.ls2e_c00100{letter-spacing:1.853227pt;}
.ls18_c00100{letter-spacing:2.145173pt;}
.ws0_c00100{word-spacing:0.000000pt;}
._6_c00100{margin-left:-10.216800pt;}
._14_c00100{margin-left:-4.544213pt;}
._10_c00100{margin-left:-3.344267pt;}
._1_c00100{margin-left:-2.107093pt;}
._f_c00100{margin-left:-1.066240pt;}
._2_c00100{width:1.223680pt;}
._4_c00100{width:2.824853pt;}
._0_c00100{width:3.858453pt;}
._3_c00100{width:5.261387pt;}
._c_c00100{width:6.270507pt;}
._5_c00100{width:7.216480pt;}
._b_c00100{width:8.948800pt;}
._7_c00100{width:10.122933pt;}
._a_c00100{width:11.163787pt;}
._8_c00100{width:12.591787pt;}
._13_c00100{width:13.543787pt;}
._9_c00100{width:14.502133pt;}
._e_c00100{width:16.057067pt;}
._d_c00100{width:17.738933pt;}
._11_c00100{width:18.960533pt;}
._12_c00100{width:20.474347pt;}
.fs6_c00100{font-size:53.333333pt;}
.fs0_c00100{font-size:54.400000pt;}
.fs2_c00100{font-size:58.666667pt;}
.fs3_c00100{font-size:60.266667pt;}
.fs4_c00100{font-size:60.800000pt;}
.fs1_c00100{font-size:63.466667pt;}
.fs5_c00100{font-size:65.600000pt;}
.y0_c00100{bottom:0.000000pt;}
.y14_c00100{bottom:59.533333pt;}
.y13_c00100{bottom:124.167200pt;}
.y12_c00100{bottom:151.687333pt;}
.y11_c00100{bottom:179.533333pt;}
.y10_c00100{bottom:233.600000pt;}
.yf_c00100{bottom:288.332667pt;}
.ye_c00100{bottom:316.813333pt;}
.yd_c00100{bottom:371.533333pt;}
.yc_c00100{bottom:371.540267pt;}
.yb_c00100{bottom:426.581733pt;}
.ya_c00100{bottom:454.094533pt;}
.y9_c00100{bottom:481.290000pt;}
.y8_c00100{bottom:509.453333pt;}
.y7_c00100{bottom:536.644667pt;}
.y6_c00100{bottom:564.173333pt;}
.y5_c00100{bottom:591.680000pt;}
.y4_c00100{bottom:646.398667pt;}
.y3_c00100{bottom:701.776667pt;}
.y2_c00100{bottom:978.253333pt;}
.y1_c00100{bottom:1062.400000pt;}
.h2_c00100{height:53.390625pt;}
.h6_c00100{height:55.625000pt;}
.h3_c00100{height:62.289062pt;}
.h4_c00100{height:63.384767pt;}
.h5_c00100{height:64.353479pt;}
.h1_c00100{height:1122.666667pt;}
.h0_c00100{height:1122.880000pt;}
.w1_c00100{width:793.333333pt;}
.w0_c00100{width:793.600000pt;}
.x0_c00100{left:0.000000pt;}
.xc_c00100{left:107.166133pt;}
.x7_c00100{left:108.458533pt;}
.x5_c00100{left:109.553867pt;}
.x2_c00100{left:111.546667pt;}
.x1_c00100{left:112.573333pt;}
.x3_c00100{left:152.773333pt;}
.x8_c00100{left:156.636000pt;}
.xa_c00100{left:165.773333pt;}
.x6_c00100{left:166.706667pt;}
.x4_c00100{left:168.800000pt;}
.xb_c00100{left:328.413333pt;}
.x9_c00100{left:333.546667pt;}
.xd_c00100{left:381.613333pt;}
}





/* 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_c00101 {
    display:none;
  }
  .loading-indicator_c00101.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00101 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_c00101 { 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_c00101" -> "#page-container .classname_c00101")
 */
.pf_c00101 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00101 { /* 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_c00101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00101 { /* 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_c00101 { /* 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_c00101 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00101 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00101 {overflow:visible;}
  }
}
.c_c00101 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00101 { /* 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_c00101:after { /* webkit #35443 */
  content: '';
}
.t_c00101:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00101 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 */
}
.__c00101 { /* 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_c00101 { /* info for Javascript */
  display:none;
}
.l_c00101 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00101 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00101 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00101: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_c00101 {
    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_c00101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00101.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_c00101 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00101;src:url('chunks/assets/font_686772c84014fad13fc52532.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.284668;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_c00101;src:url('chunks/assets/font_371aee6b0e38fa9b65632b04.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.284180;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_c00101;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;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;}
.ma_c00101{transform:matrix(0.148541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148541,0.000000,0.000000,0.250000,0,0);}
.m9_c00101{transform:matrix(0.159026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159026,0.000000,0.000000,0.250000,0,0);}
.m3_c00101{transform:matrix(0.235093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235093,0.000000,0.000000,0.250000,0,0);}
.mb_c00101{transform:matrix(0.244980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244980,0.000000,0.000000,0.250000,0,0);}
.m5_c00101{transform:matrix(0.246070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246070,0.000000,0.000000,0.250000,0,0);}
.m6_c00101{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m4_c00101{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m8_c00101{transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);}
.m0_c00101{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_c00101{transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);}
.m2_c00101{transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);}
.m7_c00101{transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls78_c00101{letter-spacing:-2.415000px;}
.ls89_c00101{letter-spacing:-2.332200px;}
.lsa4_c00101{letter-spacing:-2.290800px;}
.ls76_c00101{letter-spacing:-2.118300px;}
.lsab_c00101{letter-spacing:-2.079000px;}
.ls79_c00101{letter-spacing:-1.959600px;}
.ls81_c00101{letter-spacing:-1.731900px;}
.ls7c_c00101{letter-spacing:-1.649100px;}
.ls7d_c00101{letter-spacing:-1.573200px;}
.ls87_c00101{letter-spacing:-1.483500px;}
.ls82_c00101{letter-spacing:-1.338600px;}
.ls8b_c00101{letter-spacing:-1.110900px;}
.ls91_c00101{letter-spacing:-1.083300px;}
.ls9a_c00101{letter-spacing:-1.014300px;}
.lsa1_c00101{letter-spacing:-0.966000px;}
.lsa8_c00101{letter-spacing:-0.959100px;}
.ls8d_c00101{letter-spacing:-0.945300px;}
.ls80_c00101{letter-spacing:-0.862500px;}
.lsaa_c00101{letter-spacing:-0.855600px;}
.lsa0_c00101{letter-spacing:-0.848700px;}
.ls90_c00101{letter-spacing:-0.821100px;}
.ls8a_c00101{letter-spacing:-0.814200px;}
.ls96_c00101{letter-spacing:-0.807300px;}
.ls7e_c00101{letter-spacing:-0.690000px;}
.ls88_c00101{letter-spacing:-0.621000px;}
.ls7f_c00101{letter-spacing:-0.600300px;}
.ls83_c00101{letter-spacing:-0.538200px;}
.ls84_c00101{letter-spacing:-0.503700px;}
.ls86_c00101{letter-spacing:-0.469200px;}
.ls85_c00101{letter-spacing:-0.427800px;}
.ls92_c00101{letter-spacing:-0.400200px;}
.ls7b_c00101{letter-spacing:-0.331200px;}
.lsa2_c00101{letter-spacing:-0.310500px;}
.ls97_c00101{letter-spacing:-0.296700px;}
.ls9d_c00101{letter-spacing:-0.289800px;}
.ls9f_c00101{letter-spacing:-0.248400px;}
.ls99_c00101{letter-spacing:-0.241500px;}
.lsa9_c00101{letter-spacing:-0.200100px;}
.ls95_c00101{letter-spacing:-0.186300px;}
.ls9b_c00101{letter-spacing:-0.138000px;}
.ls9c_c00101{letter-spacing:-0.131100px;}
.lsa5_c00101{letter-spacing:-0.103500px;}
.ls93_c00101{letter-spacing:-0.082800px;}
.ls94_c00101{letter-spacing:-0.075900px;}
.lsa7_c00101{letter-spacing:-0.048300px;}
.ls77_c00101{letter-spacing:-0.041400px;}
.ls8c_c00101{letter-spacing:-0.020700px;}
.ls7a_c00101{letter-spacing:0.000000px;}
.ls71_c00101{letter-spacing:0.006900px;}
.ls68_c00101{letter-spacing:0.013800px;}
.ls15_c00101{letter-spacing:0.020700px;}
.ls6b_c00101{letter-spacing:0.034500px;}
.ls20_c00101{letter-spacing:0.041400px;}
.ls2d_c00101{letter-spacing:0.089700px;}
.ls5a_c00101{letter-spacing:0.096600px;}
.ls1c_c00101{letter-spacing:0.110400px;}
.ls55_c00101{letter-spacing:0.117300px;}
.ls5d_c00101{letter-spacing:0.131100px;}
.ls16_c00101{letter-spacing:0.144900px;}
.ls3a_c00101{letter-spacing:0.165600px;}
.lsa3_c00101{letter-spacing:0.172500px;}
.ls32_c00101{letter-spacing:0.179400px;}
.ls46_c00101{letter-spacing:0.186300px;}
.ls5c_c00101{letter-spacing:0.193200px;}
.ls4a_c00101{letter-spacing:0.200100px;}
.lsa6_c00101{letter-spacing:0.207000px;}
.ls14_c00101{letter-spacing:0.213900px;}
.ls43_c00101{letter-spacing:0.220800px;}
.ls41_c00101{letter-spacing:0.227700px;}
.ls25_c00101{letter-spacing:0.241500px;}
.ls2a_c00101{letter-spacing:0.248400px;}
.ls1f_c00101{letter-spacing:0.255300px;}
.ls33_c00101{letter-spacing:0.269100px;}
.ls27_c00101{letter-spacing:0.276000px;}
.ls60_c00101{letter-spacing:0.296700px;}
.ls21_c00101{letter-spacing:0.310500px;}
.ls8f_c00101{letter-spacing:0.317400px;}
.ls5e_c00101{letter-spacing:0.324300px;}
.ls1_c00101{letter-spacing:0.331200px;}
.ls11_c00101{letter-spacing:0.345000px;}
.ls7_c00101{letter-spacing:0.351900px;}
.ls26_c00101{letter-spacing:0.358800px;}
.ls51_c00101{letter-spacing:0.365700px;}
.ls56_c00101{letter-spacing:0.372600px;}
.ls18_c00101{letter-spacing:0.386400px;}
.ls98_c00101{letter-spacing:0.393300px;}
.ls23_c00101{letter-spacing:0.400200px;}
.ls28_c00101{letter-spacing:0.407100px;}
.ls53_c00101{letter-spacing:0.414000px;}
.ls2c_c00101{letter-spacing:0.420900px;}
.ls8_c00101{letter-spacing:0.427800px;}
.ls19_c00101{letter-spacing:0.434700px;}
.ls1d_c00101{letter-spacing:0.441600px;}
.lsa_c00101{letter-spacing:0.496800px;}
.ls31_c00101{letter-spacing:0.510600px;}
.ls37_c00101{letter-spacing:0.517500px;}
.ls70_c00101{letter-spacing:0.538200px;}
.ls2_c00101{letter-spacing:0.545100px;}
.ls6d_c00101{letter-spacing:0.552000px;}
.ls38_c00101{letter-spacing:0.558900px;}
.ls9e_c00101{letter-spacing:0.565800px;}
.ls59_c00101{letter-spacing:0.572700px;}
.ls3b_c00101{letter-spacing:0.579600px;}
.ls1e_c00101{letter-spacing:0.586500px;}
.ls4c_c00101{letter-spacing:0.607200px;}
.ls12_c00101{letter-spacing:0.621000px;}
.ls13_c00101{letter-spacing:0.627900px;}
.ls40_c00101{letter-spacing:0.634800px;}
.ls24_c00101{letter-spacing:0.641700px;}
.lse_c00101{letter-spacing:0.648600px;}
.ls6a_c00101{letter-spacing:0.662400px;}
.ls17_c00101{letter-spacing:0.669300px;}
.ls48_c00101{letter-spacing:0.676200px;}
.ls49_c00101{letter-spacing:0.683100px;}
.ls6c_c00101{letter-spacing:0.690000px;}
.ls6f_c00101{letter-spacing:0.696900px;}
.ls47_c00101{letter-spacing:0.703800px;}
.ls69_c00101{letter-spacing:0.710700px;}
.ls29_c00101{letter-spacing:0.717600px;}
.ls4d_c00101{letter-spacing:0.724500px;}
.ls62_c00101{letter-spacing:0.731400px;}
.ls35_c00101{letter-spacing:0.745200px;}
.lsf_c00101{letter-spacing:0.752100px;}
.ls1a_c00101{letter-spacing:0.759000px;}
.ls54_c00101{letter-spacing:0.765900px;}
.ls4e_c00101{letter-spacing:0.772800px;}
.ls8e_c00101{letter-spacing:0.779700px;}
.ls3c_c00101{letter-spacing:0.800400px;}
.ls45_c00101{letter-spacing:0.814200px;}
.ls72_c00101{letter-spacing:0.828000px;}
.ls2f_c00101{letter-spacing:0.869400px;}
.ls34_c00101{letter-spacing:0.883200px;}
.ls66_c00101{letter-spacing:0.897000px;}
.ls4b_c00101{letter-spacing:0.945300px;}
.ls30_c00101{letter-spacing:0.966000px;}
.ls4f_c00101{letter-spacing:0.979800px;}
.ls1b_c00101{letter-spacing:0.993600px;}
.ls57_c00101{letter-spacing:1.021200px;}
.ls65_c00101{letter-spacing:1.028100px;}
.ls22_c00101{letter-spacing:1.048800px;}
.ls64_c00101{letter-spacing:1.083300px;}
.ls42_c00101{letter-spacing:1.090200px;}
.ls3e_c00101{letter-spacing:1.097100px;}
.ls58_c00101{letter-spacing:1.117800px;}
.ls36_c00101{letter-spacing:1.124700px;}
.ls4_c00101{letter-spacing:1.138500px;}
.ls3d_c00101{letter-spacing:1.159200px;}
.ls6_c00101{letter-spacing:1.166100px;}
.ls5f_c00101{letter-spacing:1.173000px;}
.ls5_c00101{letter-spacing:1.214400px;}
.lsc_c00101{letter-spacing:1.235100px;}
.ls44_c00101{letter-spacing:1.269600px;}
.ls3f_c00101{letter-spacing:1.311000px;}
.lsd_c00101{letter-spacing:1.401840px;}
.lsb_c00101{letter-spacing:1.435200px;}
.ls50_c00101{letter-spacing:1.483500px;}
.ls2e_c00101{letter-spacing:1.600800px;}
.ls9_c00101{letter-spacing:1.849200px;}
.ls3_c00101{letter-spacing:1.869900px;}
.ls2b_c00101{letter-spacing:2.035500px;}
.ls52_c00101{letter-spacing:2.076900px;}
.ls63_c00101{letter-spacing:2.318400px;}
.ls0_c00101{letter-spacing:2.428800px;}
.ls39_c00101{letter-spacing:2.539200px;}
.ls73_c00101{letter-spacing:2.583900px;}
.ls6e_c00101{letter-spacing:2.842800px;}
.ls61_c00101{letter-spacing:2.884200px;}
.ls10_c00101{letter-spacing:3.022200px;}
.ls5b_c00101{letter-spacing:3.070500px;}
.ls67_c00101{letter-spacing:3.091200px;}
.ls74_c00101{letter-spacing:3.450000px;}
.ls75_c00101{letter-spacing:3.600000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{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__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00101{word-spacing:0.000000px;}
.ws1_c00101{word-spacing:6.113400px;}
.ws0_c00101{word-spacing:20.493000px;}
._7_c00101{margin-left:-5.914080px;}
._9_c00101{margin-left:-4.002000px;}
._10_c00101{margin-left:-2.442600px;}
._8_c00101{margin-left:-1.242000px;}
._a_c00101{width:1.041900px;}
._0_c00101{width:2.346000px;}
._3_c00101{width:3.353400px;}
._1_c00101{width:5.216400px;}
._6_c00101{width:6.568800px;}
._4_c00101{width:8.038500px;}
._5_c00101{width:10.191300px;}
._2_c00101{width:11.861100px;}
._f_c00101{width:14.034600px;}
._e_c00101{width:15.304200px;}
._11_c00101{width:16.580700px;}
._c_c00101{width:19.195800px;}
._b_c00101{width:20.858700px;}
._d_c00101{width:22.859700px;}
._13_c00101{width:24.081000px;}
._14_c00101{width:28.296900px;}
._12_c00101{width:29.359500px;}
.fc0_c00101{color:transparent;}
.fs0_c00101{font-size:59.400000px;}
.fs5_c00101{font-size:61.200000px;}
.fs4_c00101{font-size:67.200000px;}
.fs1_c00101{font-size:69.000000px;}
.fs3_c00101{font-size:70.800000px;}
.fs2_c00101{font-size:72.000000px;}
.y0_c00101{bottom:0.000000px;}
.y23_c00101{bottom:64.815000px;}
.y21_c00101{bottom:187.551000px;}
.y22_c00101{bottom:187.560000px;}
.y20_c00101{bottom:220.326000px;}
.y1f_c00101{bottom:251.634750px;}
.y1e_c00101{bottom:312.855000px;}
.y1d_c00101{bottom:343.095000px;}
.y1c_c00101{bottom:343.095750px;}
.y1a_c00101{bottom:373.314000px;}
.y1b_c00101{bottom:373.335000px;}
.y19_c00101{bottom:404.640000px;}
.y18_c00101{bottom:435.966000px;}
.y17_c00101{bottom:466.567500px;}
.y16_c00101{bottom:497.514000px;}
.y15_c00101{bottom:528.478500px;}
.y14_c00101{bottom:559.080000px;}
.y13_c00101{bottom:590.026500px;}
.y12_c00101{bottom:620.990250px;}
.y11_c00101{bottom:651.971250px;}
.yf_c00101{bottom:682.927500px;}
.y10_c00101{bottom:682.935000px;}
.ye_c00101{bottom:714.253500px;}
.yd_c00101{bottom:745.200000px;}
.yb_c00101{bottom:806.767500px;}
.yc_c00101{bottom:806.775000px;}
.ya_c00101{bottom:837.714000px;}
.y9_c00101{bottom:868.695000px;}
.y7_c00101{bottom:929.872500px;}
.y8_c00101{bottom:929.880000px;}
.y5_c00101{bottom:991.453500px;}
.y6_c00101{bottom:991.455000px;}
.y4_c00101{bottom:1022.400000px;}
.y3_c00101{bottom:1083.615000px;}
.y2_c00101{bottom:1114.935000px;}
.y1_c00101{bottom:1190.520000px;}
.h2_c00101{height:58.297852px;}
.h7_c00101{height:67.686035px;}
.h3_c00101{height:67.719727px;}
.h5_c00101{height:69.451758px;}
.h6_c00101{height:70.153500px;}
.h4_c00101{height:70.628906px;}
.h1_c00101{height:1263.000000px;}
.h0_c00101{height:1263.240000px;}
.w1_c00101{width:892.500000px;}
.w0_c00101{width:892.800000px;}
.x0_c00101{left:0.000000px;}
.x1_c00101{left:122.325000px;}
.x2_c00101{left:144.900000px;}
.x11_c00101{left:168.060000px;}
.x10_c00101{left:185.566500px;}
.x5_c00101{left:187.476000px;}
.x12_c00101{left:199.980000px;}
.x6_c00101{left:229.830000px;}
.x7_c00101{left:246.045000px;}
.x13_c00101{left:283.260000px;}
.xd_c00101{left:293.955000px;}
.xe_c00101{left:315.960000px;}
.x3_c00101{left:321.165000px;}
.x8_c00101{left:358.725000px;}
.x9_c00101{left:387.570000px;}
.x4_c00101{left:389.070000px;}
.x14_c00101{left:426.435000px;}
.xb_c00101{left:441.915000px;}
.xc_c00101{left:463.680000px;}
.xa_c00101{left:519.765000px;}
.xf_c00101{left:729.840000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls78_c00101{letter-spacing:-2.146667pt;}
.ls89_c00101{letter-spacing:-2.073067pt;}
.lsa4_c00101{letter-spacing:-2.036267pt;}
.ls76_c00101{letter-spacing:-1.882933pt;}
.lsab_c00101{letter-spacing:-1.848000pt;}
.ls79_c00101{letter-spacing:-1.741867pt;}
.ls81_c00101{letter-spacing:-1.539467pt;}
.ls7c_c00101{letter-spacing:-1.465867pt;}
.ls7d_c00101{letter-spacing:-1.398400pt;}
.ls87_c00101{letter-spacing:-1.318667pt;}
.ls82_c00101{letter-spacing:-1.189867pt;}
.ls8b_c00101{letter-spacing:-0.987467pt;}
.ls91_c00101{letter-spacing:-0.962933pt;}
.ls9a_c00101{letter-spacing:-0.901600pt;}
.lsa1_c00101{letter-spacing:-0.858667pt;}
.lsa8_c00101{letter-spacing:-0.852533pt;}
.ls8d_c00101{letter-spacing:-0.840267pt;}
.ls80_c00101{letter-spacing:-0.766667pt;}
.lsaa_c00101{letter-spacing:-0.760533pt;}
.lsa0_c00101{letter-spacing:-0.754400pt;}
.ls90_c00101{letter-spacing:-0.729867pt;}
.ls8a_c00101{letter-spacing:-0.723733pt;}
.ls96_c00101{letter-spacing:-0.717600pt;}
.ls7e_c00101{letter-spacing:-0.613333pt;}
.ls88_c00101{letter-spacing:-0.552000pt;}
.ls7f_c00101{letter-spacing:-0.533600pt;}
.ls83_c00101{letter-spacing:-0.478400pt;}
.ls84_c00101{letter-spacing:-0.447733pt;}
.ls86_c00101{letter-spacing:-0.417067pt;}
.ls85_c00101{letter-spacing:-0.380267pt;}
.ls92_c00101{letter-spacing:-0.355733pt;}
.ls7b_c00101{letter-spacing:-0.294400pt;}
.lsa2_c00101{letter-spacing:-0.276000pt;}
.ls97_c00101{letter-spacing:-0.263733pt;}
.ls9d_c00101{letter-spacing:-0.257600pt;}
.ls9f_c00101{letter-spacing:-0.220800pt;}
.ls99_c00101{letter-spacing:-0.214667pt;}
.lsa9_c00101{letter-spacing:-0.177867pt;}
.ls95_c00101{letter-spacing:-0.165600pt;}
.ls9b_c00101{letter-spacing:-0.122667pt;}
.ls9c_c00101{letter-spacing:-0.116533pt;}
.lsa5_c00101{letter-spacing:-0.092000pt;}
.ls93_c00101{letter-spacing:-0.073600pt;}
.ls94_c00101{letter-spacing:-0.067467pt;}
.lsa7_c00101{letter-spacing:-0.042933pt;}
.ls77_c00101{letter-spacing:-0.036800pt;}
.ls8c_c00101{letter-spacing:-0.018400pt;}
.ls7a_c00101{letter-spacing:0.000000pt;}
.ls71_c00101{letter-spacing:0.006133pt;}
.ls68_c00101{letter-spacing:0.012267pt;}
.ls15_c00101{letter-spacing:0.018400pt;}
.ls6b_c00101{letter-spacing:0.030667pt;}
.ls20_c00101{letter-spacing:0.036800pt;}
.ls2d_c00101{letter-spacing:0.079733pt;}
.ls5a_c00101{letter-spacing:0.085867pt;}
.ls1c_c00101{letter-spacing:0.098133pt;}
.ls55_c00101{letter-spacing:0.104267pt;}
.ls5d_c00101{letter-spacing:0.116533pt;}
.ls16_c00101{letter-spacing:0.128800pt;}
.ls3a_c00101{letter-spacing:0.147200pt;}
.lsa3_c00101{letter-spacing:0.153333pt;}
.ls32_c00101{letter-spacing:0.159467pt;}
.ls46_c00101{letter-spacing:0.165600pt;}
.ls5c_c00101{letter-spacing:0.171733pt;}
.ls4a_c00101{letter-spacing:0.177867pt;}
.lsa6_c00101{letter-spacing:0.184000pt;}
.ls14_c00101{letter-spacing:0.190133pt;}
.ls43_c00101{letter-spacing:0.196267pt;}
.ls41_c00101{letter-spacing:0.202400pt;}
.ls25_c00101{letter-spacing:0.214667pt;}
.ls2a_c00101{letter-spacing:0.220800pt;}
.ls1f_c00101{letter-spacing:0.226933pt;}
.ls33_c00101{letter-spacing:0.239200pt;}
.ls27_c00101{letter-spacing:0.245333pt;}
.ls60_c00101{letter-spacing:0.263733pt;}
.ls21_c00101{letter-spacing:0.276000pt;}
.ls8f_c00101{letter-spacing:0.282133pt;}
.ls5e_c00101{letter-spacing:0.288267pt;}
.ls1_c00101{letter-spacing:0.294400pt;}
.ls11_c00101{letter-spacing:0.306667pt;}
.ls7_c00101{letter-spacing:0.312800pt;}
.ls26_c00101{letter-spacing:0.318933pt;}
.ls51_c00101{letter-spacing:0.325067pt;}
.ls56_c00101{letter-spacing:0.331200pt;}
.ls18_c00101{letter-spacing:0.343467pt;}
.ls98_c00101{letter-spacing:0.349600pt;}
.ls23_c00101{letter-spacing:0.355733pt;}
.ls28_c00101{letter-spacing:0.361867pt;}
.ls53_c00101{letter-spacing:0.368000pt;}
.ls2c_c00101{letter-spacing:0.374133pt;}
.ls8_c00101{letter-spacing:0.380267pt;}
.ls19_c00101{letter-spacing:0.386400pt;}
.ls1d_c00101{letter-spacing:0.392533pt;}
.lsa_c00101{letter-spacing:0.441600pt;}
.ls31_c00101{letter-spacing:0.453867pt;}
.ls37_c00101{letter-spacing:0.460000pt;}
.ls70_c00101{letter-spacing:0.478400pt;}
.ls2_c00101{letter-spacing:0.484533pt;}
.ls6d_c00101{letter-spacing:0.490667pt;}
.ls38_c00101{letter-spacing:0.496800pt;}
.ls9e_c00101{letter-spacing:0.502933pt;}
.ls59_c00101{letter-spacing:0.509067pt;}
.ls3b_c00101{letter-spacing:0.515200pt;}
.ls1e_c00101{letter-spacing:0.521333pt;}
.ls4c_c00101{letter-spacing:0.539733pt;}
.ls12_c00101{letter-spacing:0.552000pt;}
.ls13_c00101{letter-spacing:0.558133pt;}
.ls40_c00101{letter-spacing:0.564267pt;}
.ls24_c00101{letter-spacing:0.570400pt;}
.lse_c00101{letter-spacing:0.576533pt;}
.ls6a_c00101{letter-spacing:0.588800pt;}
.ls17_c00101{letter-spacing:0.594933pt;}
.ls48_c00101{letter-spacing:0.601067pt;}
.ls49_c00101{letter-spacing:0.607200pt;}
.ls6c_c00101{letter-spacing:0.613333pt;}
.ls6f_c00101{letter-spacing:0.619467pt;}
.ls47_c00101{letter-spacing:0.625600pt;}
.ls69_c00101{letter-spacing:0.631733pt;}
.ls29_c00101{letter-spacing:0.637867pt;}
.ls4d_c00101{letter-spacing:0.644000pt;}
.ls62_c00101{letter-spacing:0.650133pt;}
.ls35_c00101{letter-spacing:0.662400pt;}
.lsf_c00101{letter-spacing:0.668533pt;}
.ls1a_c00101{letter-spacing:0.674667pt;}
.ls54_c00101{letter-spacing:0.680800pt;}
.ls4e_c00101{letter-spacing:0.686933pt;}
.ls8e_c00101{letter-spacing:0.693067pt;}
.ls3c_c00101{letter-spacing:0.711467pt;}
.ls45_c00101{letter-spacing:0.723733pt;}
.ls72_c00101{letter-spacing:0.736000pt;}
.ls2f_c00101{letter-spacing:0.772800pt;}
.ls34_c00101{letter-spacing:0.785067pt;}
.ls66_c00101{letter-spacing:0.797333pt;}
.ls4b_c00101{letter-spacing:0.840267pt;}
.ls30_c00101{letter-spacing:0.858667pt;}
.ls4f_c00101{letter-spacing:0.870933pt;}
.ls1b_c00101{letter-spacing:0.883200pt;}
.ls57_c00101{letter-spacing:0.907733pt;}
.ls65_c00101{letter-spacing:0.913867pt;}
.ls22_c00101{letter-spacing:0.932267pt;}
.ls64_c00101{letter-spacing:0.962933pt;}
.ls42_c00101{letter-spacing:0.969067pt;}
.ls3e_c00101{letter-spacing:0.975200pt;}
.ls58_c00101{letter-spacing:0.993600pt;}
.ls36_c00101{letter-spacing:0.999733pt;}
.ls4_c00101{letter-spacing:1.012000pt;}
.ls3d_c00101{letter-spacing:1.030400pt;}
.ls6_c00101{letter-spacing:1.036533pt;}
.ls5f_c00101{letter-spacing:1.042667pt;}
.ls5_c00101{letter-spacing:1.079467pt;}
.lsc_c00101{letter-spacing:1.097867pt;}
.ls44_c00101{letter-spacing:1.128533pt;}
.ls3f_c00101{letter-spacing:1.165333pt;}
.lsd_c00101{letter-spacing:1.246080pt;}
.lsb_c00101{letter-spacing:1.275733pt;}
.ls50_c00101{letter-spacing:1.318667pt;}
.ls2e_c00101{letter-spacing:1.422933pt;}
.ls9_c00101{letter-spacing:1.643733pt;}
.ls3_c00101{letter-spacing:1.662133pt;}
.ls2b_c00101{letter-spacing:1.809333pt;}
.ls52_c00101{letter-spacing:1.846133pt;}
.ls63_c00101{letter-spacing:2.060800pt;}
.ls0_c00101{letter-spacing:2.158933pt;}
.ls39_c00101{letter-spacing:2.257067pt;}
.ls73_c00101{letter-spacing:2.296800pt;}
.ls6e_c00101{letter-spacing:2.526933pt;}
.ls61_c00101{letter-spacing:2.563733pt;}
.ls10_c00101{letter-spacing:2.686400pt;}
.ls5b_c00101{letter-spacing:2.729333pt;}
.ls67_c00101{letter-spacing:2.747733pt;}
.ls74_c00101{letter-spacing:3.066667pt;}
.ls75_c00101{letter-spacing:3.200000pt;}
.ws2_c00101{word-spacing:0.000000pt;}
.ws1_c00101{word-spacing:5.434133pt;}
.ws0_c00101{word-spacing:18.216000pt;}
._7_c00101{margin-left:-5.256960pt;}
._9_c00101{margin-left:-3.557333pt;}
._10_c00101{margin-left:-2.171200pt;}
._8_c00101{margin-left:-1.104000pt;}
._a_c00101{width:0.926133pt;}
._0_c00101{width:2.085333pt;}
._3_c00101{width:2.980800pt;}
._1_c00101{width:4.636800pt;}
._6_c00101{width:5.838933pt;}
._4_c00101{width:7.145333pt;}
._5_c00101{width:9.058933pt;}
._2_c00101{width:10.543200pt;}
._f_c00101{width:12.475200pt;}
._e_c00101{width:13.603733pt;}
._11_c00101{width:14.738400pt;}
._c_c00101{width:17.062933pt;}
._b_c00101{width:18.541067pt;}
._d_c00101{width:20.319733pt;}
._13_c00101{width:21.405333pt;}
._14_c00101{width:25.152800pt;}
._12_c00101{width:26.097333pt;}
.fs0_c00101{font-size:52.800000pt;}
.fs5_c00101{font-size:54.400000pt;}
.fs4_c00101{font-size:59.733333pt;}
.fs1_c00101{font-size:61.333333pt;}
.fs3_c00101{font-size:62.933333pt;}
.fs2_c00101{font-size:64.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y23_c00101{bottom:57.613333pt;}
.y21_c00101{bottom:166.712000pt;}
.y22_c00101{bottom:166.720000pt;}
.y20_c00101{bottom:195.845333pt;}
.y1f_c00101{bottom:223.675333pt;}
.y1e_c00101{bottom:278.093333pt;}
.y1d_c00101{bottom:304.973333pt;}
.y1c_c00101{bottom:304.974000pt;}
.y1a_c00101{bottom:331.834667pt;}
.y1b_c00101{bottom:331.853333pt;}
.y19_c00101{bottom:359.680000pt;}
.y18_c00101{bottom:387.525333pt;}
.y17_c00101{bottom:414.726667pt;}
.y16_c00101{bottom:442.234667pt;}
.y15_c00101{bottom:469.758667pt;}
.y14_c00101{bottom:496.960000pt;}
.y13_c00101{bottom:524.468000pt;}
.y12_c00101{bottom:551.991333pt;}
.y11_c00101{bottom:579.530000pt;}
.yf_c00101{bottom:607.046667pt;}
.y10_c00101{bottom:607.053333pt;}
.ye_c00101{bottom:634.892000pt;}
.yd_c00101{bottom:662.400000pt;}
.yb_c00101{bottom:717.126667pt;}
.yc_c00101{bottom:717.133333pt;}
.ya_c00101{bottom:744.634667pt;}
.y9_c00101{bottom:772.173333pt;}
.y7_c00101{bottom:826.553333pt;}
.y8_c00101{bottom:826.560000pt;}
.y5_c00101{bottom:881.292000pt;}
.y6_c00101{bottom:881.293333pt;}
.y4_c00101{bottom:908.800000pt;}
.y3_c00101{bottom:963.213333pt;}
.y2_c00101{bottom:991.053333pt;}
.y1_c00101{bottom:1058.240000pt;}
.h2_c00101{height:51.820312pt;}
.h7_c00101{height:60.165365pt;}
.h3_c00101{height:60.195312pt;}
.h5_c00101{height:61.734896pt;}
.h6_c00101{height:62.358667pt;}
.h4_c00101{height:62.781250pt;}
.h1_c00101{height:1122.666667pt;}
.h0_c00101{height:1122.880000pt;}
.w1_c00101{width:793.333333pt;}
.w0_c00101{width:793.600000pt;}
.x0_c00101{left:0.000000pt;}
.x1_c00101{left:108.733333pt;}
.x2_c00101{left:128.800000pt;}
.x11_c00101{left:149.386667pt;}
.x10_c00101{left:164.948000pt;}
.x5_c00101{left:166.645333pt;}
.x12_c00101{left:177.760000pt;}
.x6_c00101{left:204.293333pt;}
.x7_c00101{left:218.706667pt;}
.x13_c00101{left:251.786667pt;}
.xd_c00101{left:261.293333pt;}
.xe_c00101{left:280.853333pt;}
.x3_c00101{left:285.480000pt;}
.x8_c00101{left:318.866667pt;}
.x9_c00101{left:344.506667pt;}
.x4_c00101{left:345.840000pt;}
.x14_c00101{left:379.053333pt;}
.xb_c00101{left:392.813333pt;}
.xc_c00101{left:412.160000pt;}
.xa_c00101{left:462.013333pt;}
.xf_c00101{left:648.746667pt;}
}





/* 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_c00102 {
    display:none;
  }
  .loading-indicator_c00102.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00102 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_c00102 { 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_c00102" -> "#page-container .classname_c00102")
 */
.pf_c00102 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00102 { /* 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_c00102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00102 { /* 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_c00102 { /* 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_c00102 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00102 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00102 {overflow:visible;}
  }
}
.c_c00102 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00102 { /* 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_c00102:after { /* webkit #35443 */
  content: '';
}
.t_c00102:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00102 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 */
}
.__c00102 { /* 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_c00102 { /* info for Javascript */
  display:none;
}
.l_c00102 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00102 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00102 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00102: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_c00102 {
    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_c00102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00102.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_c00102 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00102;src:url('chunks/assets/font_810e109f1dcc33917d7aebcc.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.284668;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_c00102;src:url('chunks/assets/font_d325ee966da5c76f95cefd79.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00102{transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);}
.m3_c00102{transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);}
.m2_c00102{transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{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);}
.v0_c00102{vertical-align:0.000000px;}
.v1_c00102{vertical-align:27.360000px;}
.v2_c00102{vertical-align:28.800000px;}
.ls32_c00102{letter-spacing:-2.562000px;}
.ls40_c00102{letter-spacing:-2.457000px;}
.ls3c_c00102{letter-spacing:-2.260440px;}
.ls50_c00102{letter-spacing:-1.942080px;}
.ls4b_c00102{letter-spacing:-1.509300px;}
.ls48_c00102{letter-spacing:-1.151280px;}
.ls43_c00102{letter-spacing:-0.947700px;}
.ls41_c00102{letter-spacing:-0.842400px;}
.ls4e_c00102{letter-spacing:-0.793260px;}
.ls37_c00102{letter-spacing:-0.765180px;}
.ls46_c00102{letter-spacing:-0.744120px;}
.ls49_c00102{letter-spacing:-0.702000px;}
.ls42_c00102{letter-spacing:-0.582660px;}
.ls39_c00102{letter-spacing:-0.512460px;}
.ls35_c00102{letter-spacing:-0.491400px;}
.ls4f_c00102{letter-spacing:-0.442260px;}
.ls3f_c00102{letter-spacing:-0.287820px;}
.ls38_c00102{letter-spacing:-0.280800px;}
.ls45_c00102{letter-spacing:-0.238680px;}
.ls3d_c00102{letter-spacing:-0.224640px;}
.ls47_c00102{letter-spacing:-0.182520px;}
.ls36_c00102{letter-spacing:-0.161460px;}
.ls44_c00102{letter-spacing:-0.147420px;}
.ls4d_c00102{letter-spacing:-0.133380px;}
.ls33_c00102{letter-spacing:-0.105300px;}
.ls3e_c00102{letter-spacing:-0.049140px;}
.ls3a_c00102{letter-spacing:-0.035100px;}
.ls4c_c00102{letter-spacing:-0.028080px;}
.ls4a_c00102{letter-spacing:-0.014040px;}
.ls51_c00102{letter-spacing:-0.007020px;}
.ls34_c00102{letter-spacing:0.000000px;}
.ls6_c00102{letter-spacing:0.028080px;}
.ls14_c00102{letter-spacing:0.049140px;}
.ls2b_c00102{letter-spacing:0.091260px;}
.ls29_c00102{letter-spacing:0.098280px;}
.ls13_c00102{letter-spacing:0.105300px;}
.ls1a_c00102{letter-spacing:0.112320px;}
.ls22_c00102{letter-spacing:0.133380px;}
.ls24_c00102{letter-spacing:0.140400px;}
.ls3_c00102{letter-spacing:0.147420px;}
.ls8_c00102{letter-spacing:0.161460px;}
.lsa_c00102{letter-spacing:0.168480px;}
.ls2_c00102{letter-spacing:0.175500px;}
.ls2a_c00102{letter-spacing:0.196560px;}
.ls2c_c00102{letter-spacing:0.224640px;}
.ls15_c00102{letter-spacing:0.231660px;}
.lsc_c00102{letter-spacing:0.238680px;}
.ls5_c00102{letter-spacing:0.245700px;}
.ls3b_c00102{letter-spacing:0.252720px;}
.ls2d_c00102{letter-spacing:0.259740px;}
.ls20_c00102{letter-spacing:0.266760px;}
.ls1c_c00102{letter-spacing:0.273780px;}
.ls26_c00102{letter-spacing:0.294840px;}
.ls1f_c00102{letter-spacing:0.308880px;}
.ls21_c00102{letter-spacing:0.329940px;}
.ls28_c00102{letter-spacing:0.358020px;}
.ls7_c00102{letter-spacing:0.372060px;}
.lsb_c00102{letter-spacing:0.379080px;}
.ls2f_c00102{letter-spacing:0.406800px;}
.ls18_c00102{letter-spacing:0.407160px;}
.lsf_c00102{letter-spacing:0.414180px;}
.ls1b_c00102{letter-spacing:0.449280px;}
.ls9_c00102{letter-spacing:0.456300px;}
.ls1d_c00102{letter-spacing:0.477360px;}
.ls1_c00102{letter-spacing:0.491400px;}
.ls12_c00102{letter-spacing:0.533520px;}
.ls1e_c00102{letter-spacing:0.582660px;}
.ls10_c00102{letter-spacing:0.589680px;}
.ls30_c00102{letter-spacing:0.638820px;}
.ls31_c00102{letter-spacing:0.645840px;}
.ls4_c00102{letter-spacing:0.673920px;}
.lse_c00102{letter-spacing:0.765180px;}
.ls52_c00102{letter-spacing:0.849720px;}
.ls2e_c00102{letter-spacing:0.942420px;}
.ls19_c00102{letter-spacing:1.081080px;}
.ls0_c00102{letter-spacing:1.118700px;}
.ls17_c00102{letter-spacing:1.172340px;}
.ls11_c00102{letter-spacing:1.207440px;}
.ls16_c00102{letter-spacing:1.242540px;}
.ls27_c00102{letter-spacing:1.281420px;}
.ls23_c00102{letter-spacing:1.425060px;}
.lsd_c00102{letter-spacing:1.769040px;}
.ls25_c00102{letter-spacing:2.113020px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{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__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00102{word-spacing:-17.844840px;}
.ws1_c00102{word-spacing:-17.795700px;}
.ws4_c00102{word-spacing:0.000000px;}
.ws0_c00102{word-spacing:16.498800px;}
.ws3_c00102{word-spacing:22.324500px;}
._d_c00102{margin-left:-8.610120px;}
._f_c00102{margin-left:-4.485780px;}
._6_c00102{margin-left:-3.411720px;}
._4_c00102{margin-left:-1.010880px;}
._3_c00102{width:1.439100px;}
._5_c00102{width:3.067740px;}
._9_c00102{width:5.096520px;}
._7_c00102{width:6.149520px;}
._a_c00102{width:7.497360px;}
._8_c00102{width:8.536320px;}
._b_c00102{width:10.438740px;}
._1_c00102{width:12.285000px;}
._c_c00102{width:13.646880px;}
._0_c00102{width:15.198300px;}
._2_c00102{width:18.617040px;}
._e_c00102{width:21.937950px;}
._10_c00102{width:23.158530px;}
._11_c00102{width:24.576570px;}
._12_c00102{width:26.641350px;}
.fc0_c00102{color:transparent;}
.fs4_c00102{font-size:32.400600px;}
.fs5_c00102{font-size:58.200000px;}
.fs1_c00102{font-size:67.800000px;}
.fs2_c00102{font-size:70.200000px;}
.fs3_c00102{font-size:71.400000px;}
.fs0_c00102{font-size:73.200000px;}
.y0_c00102{bottom:0.000000px;}
.yf_c00102{bottom:69.120015px;}
.ye_c00102{bottom:718.575015px;}
.yd_c00102{bottom:779.768265px;}
.yc_c00102{bottom:811.095015px;}
.yb_c00102{bottom:873.001065px;}
.ya_c00102{bottom:903.976815px;}
.y9_c00102{bottom:934.935015px;}
.y7_c00102{bottom:965.872815px;}
.y8_c00102{bottom:965.880015px;}
.y6_c00102{bottom:996.480015px;}
.y5_c00102{bottom:996.485415px;}
.y4_c00102{bottom:1027.461165px;}
.y3_c00102{bottom:1058.419365px;}
.y2_c00102{bottom:1089.360015px;}
.y1_c00102{bottom:1197.000015px;}
.h7_c00102{height:57.120117px;}
.h3_c00102{height:68.897461px;}
.h4_c00102{height:68.926261px;}
.h6_c00102{height:70.070995px;}
.h5_c00102{height:70.075195px;}
.h2_c00102{height:71.841797px;}
.h1_c00102{height:1263.000000px;}
.h0_c00102{height:1263.240015px;}
.w1_c00102{width:892.500000px;}
.w0_c00102{width:892.800015px;}
.x0_c00102{left:0.000000px;}
.x6_c00102{left:127.096515px;}
.x3_c00102{left:128.123415px;}
.x1_c00102{left:129.525015px;}
.x8_c00102{left:190.965015px;}
.x2_c00102{left:192.735015px;}
.x4_c00102{left:428.250015px;}
.x9_c00102{left:433.275015px;}
.x5_c00102{left:449.490015px;}
.x7_c00102{left:744.240015px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.v1_c00102{vertical-align:24.320000pt;}
.v2_c00102{vertical-align:25.600000pt;}
.ls32_c00102{letter-spacing:-2.277333pt;}
.ls40_c00102{letter-spacing:-2.184000pt;}
.ls3c_c00102{letter-spacing:-2.009280pt;}
.ls50_c00102{letter-spacing:-1.726293pt;}
.ls4b_c00102{letter-spacing:-1.341600pt;}
.ls48_c00102{letter-spacing:-1.023360pt;}
.ls43_c00102{letter-spacing:-0.842400pt;}
.ls41_c00102{letter-spacing:-0.748800pt;}
.ls4e_c00102{letter-spacing:-0.705120pt;}
.ls37_c00102{letter-spacing:-0.680160pt;}
.ls46_c00102{letter-spacing:-0.661440pt;}
.ls49_c00102{letter-spacing:-0.624000pt;}
.ls42_c00102{letter-spacing:-0.517920pt;}
.ls39_c00102{letter-spacing:-0.455520pt;}
.ls35_c00102{letter-spacing:-0.436800pt;}
.ls4f_c00102{letter-spacing:-0.393120pt;}
.ls3f_c00102{letter-spacing:-0.255840pt;}
.ls38_c00102{letter-spacing:-0.249600pt;}
.ls45_c00102{letter-spacing:-0.212160pt;}
.ls3d_c00102{letter-spacing:-0.199680pt;}
.ls47_c00102{letter-spacing:-0.162240pt;}
.ls36_c00102{letter-spacing:-0.143520pt;}
.ls44_c00102{letter-spacing:-0.131040pt;}
.ls4d_c00102{letter-spacing:-0.118560pt;}
.ls33_c00102{letter-spacing:-0.093600pt;}
.ls3e_c00102{letter-spacing:-0.043680pt;}
.ls3a_c00102{letter-spacing:-0.031200pt;}
.ls4c_c00102{letter-spacing:-0.024960pt;}
.ls4a_c00102{letter-spacing:-0.012480pt;}
.ls51_c00102{letter-spacing:-0.006240pt;}
.ls34_c00102{letter-spacing:0.000000pt;}
.ls6_c00102{letter-spacing:0.024960pt;}
.ls14_c00102{letter-spacing:0.043680pt;}
.ls2b_c00102{letter-spacing:0.081120pt;}
.ls29_c00102{letter-spacing:0.087360pt;}
.ls13_c00102{letter-spacing:0.093600pt;}
.ls1a_c00102{letter-spacing:0.099840pt;}
.ls22_c00102{letter-spacing:0.118560pt;}
.ls24_c00102{letter-spacing:0.124800pt;}
.ls3_c00102{letter-spacing:0.131040pt;}
.ls8_c00102{letter-spacing:0.143520pt;}
.lsa_c00102{letter-spacing:0.149760pt;}
.ls2_c00102{letter-spacing:0.156000pt;}
.ls2a_c00102{letter-spacing:0.174720pt;}
.ls2c_c00102{letter-spacing:0.199680pt;}
.ls15_c00102{letter-spacing:0.205920pt;}
.lsc_c00102{letter-spacing:0.212160pt;}
.ls5_c00102{letter-spacing:0.218400pt;}
.ls3b_c00102{letter-spacing:0.224640pt;}
.ls2d_c00102{letter-spacing:0.230880pt;}
.ls20_c00102{letter-spacing:0.237120pt;}
.ls1c_c00102{letter-spacing:0.243360pt;}
.ls26_c00102{letter-spacing:0.262080pt;}
.ls1f_c00102{letter-spacing:0.274560pt;}
.ls21_c00102{letter-spacing:0.293280pt;}
.ls28_c00102{letter-spacing:0.318240pt;}
.ls7_c00102{letter-spacing:0.330720pt;}
.lsb_c00102{letter-spacing:0.336960pt;}
.ls2f_c00102{letter-spacing:0.361600pt;}
.ls18_c00102{letter-spacing:0.361920pt;}
.lsf_c00102{letter-spacing:0.368160pt;}
.ls1b_c00102{letter-spacing:0.399360pt;}
.ls9_c00102{letter-spacing:0.405600pt;}
.ls1d_c00102{letter-spacing:0.424320pt;}
.ls1_c00102{letter-spacing:0.436800pt;}
.ls12_c00102{letter-spacing:0.474240pt;}
.ls1e_c00102{letter-spacing:0.517920pt;}
.ls10_c00102{letter-spacing:0.524160pt;}
.ls30_c00102{letter-spacing:0.567840pt;}
.ls31_c00102{letter-spacing:0.574080pt;}
.ls4_c00102{letter-spacing:0.599040pt;}
.lse_c00102{letter-spacing:0.680160pt;}
.ls52_c00102{letter-spacing:0.755307pt;}
.ls2e_c00102{letter-spacing:0.837707pt;}
.ls19_c00102{letter-spacing:0.960960pt;}
.ls0_c00102{letter-spacing:0.994400pt;}
.ls17_c00102{letter-spacing:1.042080pt;}
.ls11_c00102{letter-spacing:1.073280pt;}
.ls16_c00102{letter-spacing:1.104480pt;}
.ls27_c00102{letter-spacing:1.139040pt;}
.ls23_c00102{letter-spacing:1.266720pt;}
.lsd_c00102{letter-spacing:1.572480pt;}
.ls25_c00102{letter-spacing:1.878240pt;}
.ws2_c00102{word-spacing:-15.862080pt;}
.ws1_c00102{word-spacing:-15.818400pt;}
.ws4_c00102{word-spacing:0.000000pt;}
.ws0_c00102{word-spacing:14.665600pt;}
.ws3_c00102{word-spacing:19.844000pt;}
._d_c00102{margin-left:-7.653440pt;}
._f_c00102{margin-left:-3.987360pt;}
._6_c00102{margin-left:-3.032640pt;}
._4_c00102{margin-left:-0.898560pt;}
._3_c00102{width:1.279200pt;}
._5_c00102{width:2.726880pt;}
._9_c00102{width:4.530240pt;}
._7_c00102{width:5.466240pt;}
._a_c00102{width:6.664320pt;}
._8_c00102{width:7.587840pt;}
._b_c00102{width:9.278880pt;}
._1_c00102{width:10.920000pt;}
._c_c00102{width:12.130560pt;}
._0_c00102{width:13.509600pt;}
._2_c00102{width:16.548480pt;}
._e_c00102{width:19.500400pt;}
._10_c00102{width:20.585360pt;}
._11_c00102{width:21.845840pt;}
._12_c00102{width:23.681200pt;}
.fs4_c00102{font-size:28.800533pt;}
.fs5_c00102{font-size:51.733333pt;}
.fs1_c00102{font-size:60.266667pt;}
.fs2_c00102{font-size:62.400000pt;}
.fs3_c00102{font-size:63.466667pt;}
.fs0_c00102{font-size:65.066667pt;}
.y0_c00102{bottom:0.000000pt;}
.yf_c00102{bottom:61.440013pt;}
.ye_c00102{bottom:638.733347pt;}
.yd_c00102{bottom:693.127347pt;}
.yc_c00102{bottom:720.973347pt;}
.yb_c00102{bottom:776.000947pt;}
.ya_c00102{bottom:803.534947pt;}
.y9_c00102{bottom:831.053347pt;}
.y7_c00102{bottom:858.553613pt;}
.y8_c00102{bottom:858.560013pt;}
.y6_c00102{bottom:885.760013pt;}
.y5_c00102{bottom:885.764813pt;}
.y4_c00102{bottom:913.298813pt;}
.y3_c00102{bottom:940.817213pt;}
.y2_c00102{bottom:968.320013pt;}
.y1_c00102{bottom:1064.000013pt;}
.h7_c00102{height:50.773437pt;}
.h3_c00102{height:61.242187pt;}
.h4_c00102{height:61.267788pt;}
.h6_c00102{height:62.285329pt;}
.h5_c00102{height:62.289062pt;}
.h2_c00102{height:63.859375pt;}
.h1_c00102{height:1122.666667pt;}
.h0_c00102{height:1122.880013pt;}
.w1_c00102{width:793.333333pt;}
.w0_c00102{width:793.600013pt;}
.x0_c00102{left:0.000000pt;}
.x6_c00102{left:112.974680pt;}
.x3_c00102{left:113.887480pt;}
.x1_c00102{left:115.133347pt;}
.x8_c00102{left:169.746680pt;}
.x2_c00102{left:171.320013pt;}
.x4_c00102{left:380.666680pt;}
.x9_c00102{left:385.133347pt;}
.x5_c00102{left:399.546680pt;}
.x7_c00102{left:661.546680pt;}
}





/* 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_c00103 {
    display:none;
  }
  .loading-indicator_c00103.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00103 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_c00103 { 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_c00103" -> "#page-container .classname_c00103")
 */
.pf_c00103 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00103 { /* 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_c00103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00103 { /* 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_c00103 { /* 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_c00103 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00103 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00103 {overflow:visible;}
  }
}
.c_c00103 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00103 { /* 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_c00103:after { /* webkit #35443 */
  content: '';
}
.t_c00103:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00103 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 */
}
.__c00103 { /* 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_c00103 { /* info for Javascript */
  display:none;
}
.l_c00103 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00103 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00103 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00103: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_c00103 {
    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_c00103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00103.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_c00103 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00103;src:url('chunks/assets/font_0a2c3c128ff1a2a08afe472f.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.284668;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_c00103;src:url('chunks/assets/font_647b59249b4b37b51714de72.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.284180;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_c00103;src:url('chunks/assets/font_066781501369ad39ea957d57.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.311035;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;}
.m3_c00103{transform:matrix(0.235086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235086,0.000000,0.000000,0.250000,0,0);}
.m2_c00103{transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);}
.m4_c00103{transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);}
.m1_c00103{transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);}
.m0_c00103{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);}
.v0_c00103{vertical-align:0.000000px;}
.ls68_c00103{letter-spacing:-2.488800px;}
.ls38_c00103{letter-spacing:-2.436000px;}
.ls91_c00103{letter-spacing:-2.269200px;}
.ls67_c00103{letter-spacing:-2.137440px;}
.ls99_c00103{letter-spacing:-2.100000px;}
.ls6c_c00103{letter-spacing:-2.034960px;}
.ls4b_c00103{letter-spacing:-1.886160px;}
.ls90_c00103{letter-spacing:-1.873920px;}
.ls71_c00103{letter-spacing:-1.830000px;}
.ls6f_c00103{letter-spacing:-1.712880px;}
.ls53_c00103{letter-spacing:-1.649520px;}
.ls60_c00103{letter-spacing:-1.621680px;}
.ls69_c00103{letter-spacing:-1.545120px;}
.ls57_c00103{letter-spacing:-1.531200px;}
.ls61_c00103{letter-spacing:-1.426800px;}
.ls86_c00103{letter-spacing:-1.343280px;}
.ls8f_c00103{letter-spacing:-1.266720px;}
.ls4c_c00103{letter-spacing:-1.231920px;}
.ls80_c00103{letter-spacing:-1.218000px;}
.ls7c_c00103{letter-spacing:-1.169280px;}
.ls76_c00103{letter-spacing:-1.120560px;}
.ls41_c00103{letter-spacing:-1.099680px;}
.ls6e_c00103{letter-spacing:-1.064880px;}
.ls6b_c00103{letter-spacing:-0.967440px;}
.ls81_c00103{letter-spacing:-0.897840px;}
.ls34_c00103{letter-spacing:-0.890880px;}
.ls39_c00103{letter-spacing:-0.883920px;}
.ls7d_c00103{letter-spacing:-0.870000px;}
.ls7f_c00103{letter-spacing:-0.842160px;}
.ls51_c00103{letter-spacing:-0.800400px;}
.ls40_c00103{letter-spacing:-0.793440px;}
.ls37_c00103{letter-spacing:-0.758640px;}
.ls92_c00103{letter-spacing:-0.744720px;}
.ls63_c00103{letter-spacing:-0.730800px;}
.ls4a_c00103{letter-spacing:-0.689040px;}
.ls89_c00103{letter-spacing:-0.661200px;}
.ls75_c00103{letter-spacing:-0.633360px;}
.ls43_c00103{letter-spacing:-0.626400px;}
.ls74_c00103{letter-spacing:-0.619440px;}
.ls65_c00103{letter-spacing:-0.612480px;}
.ls66_c00103{letter-spacing:-0.598560px;}
.ls35_c00103{letter-spacing:-0.584640px;}
.ls98_c00103{letter-spacing:-0.570720px;}
.ls6a_c00103{letter-spacing:-0.556800px;}
.ls77_c00103{letter-spacing:-0.549840px;}
.ls72_c00103{letter-spacing:-0.528960px;}
.ls85_c00103{letter-spacing:-0.515040px;}
.ls97_c00103{letter-spacing:-0.508080px;}
.ls3b_c00103{letter-spacing:-0.501120px;}
.ls59_c00103{letter-spacing:-0.494160px;}
.ls8a_c00103{letter-spacing:-0.487200px;}
.ls8d_c00103{letter-spacing:-0.473280px;}
.ls5a_c00103{letter-spacing:-0.459360px;}
.ls3a_c00103{letter-spacing:-0.438480px;}
.ls8c_c00103{letter-spacing:-0.431520px;}
.ls45_c00103{letter-spacing:-0.417600px;}
.ls55_c00103{letter-spacing:-0.410640px;}
.ls96_c00103{letter-spacing:-0.403680px;}
.ls3d_c00103{letter-spacing:-0.396720px;}
.ls83_c00103{letter-spacing:-0.389760px;}
.ls82_c00103{letter-spacing:-0.375840px;}
.ls4f_c00103{letter-spacing:-0.368880px;}
.ls4d_c00103{letter-spacing:-0.361920px;}
.ls7e_c00103{letter-spacing:-0.341040px;}
.ls3c_c00103{letter-spacing:-0.334080px;}
.ls5f_c00103{letter-spacing:-0.320160px;}
.ls79_c00103{letter-spacing:-0.313200px;}
.ls6d_c00103{letter-spacing:-0.306240px;}
.ls5e_c00103{letter-spacing:-0.299280px;}
.ls56_c00103{letter-spacing:-0.278400px;}
.ls70_c00103{letter-spacing:-0.257520px;}
.ls50_c00103{letter-spacing:-0.250560px;}
.ls88_c00103{letter-spacing:-0.243600px;}
.ls8b_c00103{letter-spacing:-0.229680px;}
.ls47_c00103{letter-spacing:-0.215760px;}
.ls48_c00103{letter-spacing:-0.208800px;}
.ls3f_c00103{letter-spacing:-0.201840px;}
.ls87_c00103{letter-spacing:-0.194880px;}
.ls42_c00103{letter-spacing:-0.187920px;}
.ls58_c00103{letter-spacing:-0.180960px;}
.ls73_c00103{letter-spacing:-0.174000px;}
.ls8e_c00103{letter-spacing:-0.167040px;}
.ls62_c00103{letter-spacing:-0.160080px;}
.ls94_c00103{letter-spacing:-0.146160px;}
.ls95_c00103{letter-spacing:-0.139200px;}
.ls7a_c00103{letter-spacing:-0.132240px;}
.ls36_c00103{letter-spacing:-0.125280px;}
.ls4e_c00103{letter-spacing:-0.118320px;}
.ls52_c00103{letter-spacing:-0.104400px;}
.ls84_c00103{letter-spacing:-0.090480px;}
.ls5b_c00103{letter-spacing:-0.076560px;}
.ls5d_c00103{letter-spacing:-0.062640px;}
.ls44_c00103{letter-spacing:-0.055680px;}
.ls49_c00103{letter-spacing:-0.041760px;}
.ls54_c00103{letter-spacing:-0.034800px;}
.ls46_c00103{letter-spacing:-0.027840px;}
.ls7b_c00103{letter-spacing:-0.013920px;}
.ls3e_c00103{letter-spacing:0.000000px;}
.lsc_c00103{letter-spacing:0.006960px;}
.ls1a_c00103{letter-spacing:0.020880px;}
.ls2a_c00103{letter-spacing:0.027840px;}
.ls2_c00103{letter-spacing:0.041760px;}
.ls31_c00103{letter-spacing:0.069600px;}
.ls28_c00103{letter-spacing:0.083520px;}
.ls3_c00103{letter-spacing:0.097440px;}
.ls13_c00103{letter-spacing:0.125280px;}
.ls2f_c00103{letter-spacing:0.146160px;}
.lsd_c00103{letter-spacing:0.153120px;}
.ls25_c00103{letter-spacing:0.160080px;}
.ls1e_c00103{letter-spacing:0.167040px;}
.ls14_c00103{letter-spacing:0.174000px;}
.ls2e_c00103{letter-spacing:0.180960px;}
.ls6_c00103{letter-spacing:0.201840px;}
.ls26_c00103{letter-spacing:0.215760px;}
.lsb_c00103{letter-spacing:0.222720px;}
.ls5_c00103{letter-spacing:0.229680px;}
.ls7_c00103{letter-spacing:0.236640px;}
.ls9_c00103{letter-spacing:0.243600px;}
.ls64_c00103{letter-spacing:0.257520px;}
.ls18_c00103{letter-spacing:0.264480px;}
.ls5c_c00103{letter-spacing:0.306240px;}
.ls22_c00103{letter-spacing:0.320160px;}
.ls15_c00103{letter-spacing:0.334080px;}
.ls20_c00103{letter-spacing:0.354960px;}
.ls2c_c00103{letter-spacing:0.403680px;}
.ls1b_c00103{letter-spacing:0.410640px;}
.ls24_c00103{letter-spacing:0.459360px;}
.ls16_c00103{letter-spacing:0.487200px;}
.ls78_c00103{letter-spacing:0.515040px;}
.ls1_c00103{letter-spacing:0.522000px;}
.lse_c00103{letter-spacing:0.535920px;}
.ls1d_c00103{letter-spacing:0.542880px;}
.ls29_c00103{letter-spacing:0.654240px;}
.ls12_c00103{letter-spacing:0.730800px;}
.ls2d_c00103{letter-spacing:0.737760px;}
.ls0_c00103{letter-spacing:0.842160px;}
.ls93_c00103{letter-spacing:0.876960px;}
.ls17_c00103{letter-spacing:0.925680px;}
.ls1f_c00103{letter-spacing:0.969540px;}
.lsf_c00103{letter-spacing:1.002240px;}
.ls21_c00103{letter-spacing:1.037040px;}
.ls23_c00103{letter-spacing:1.183200px;}
.ls27_c00103{letter-spacing:1.190160px;}
.ls11_c00103{letter-spacing:1.231920px;}
.ls2b_c00103{letter-spacing:1.266720px;}
.ls8_c00103{letter-spacing:1.315440px;}
.ls32_c00103{letter-spacing:1.393800px;}
.lsa_c00103{letter-spacing:1.398960px;}
.ls19_c00103{letter-spacing:1.447680px;}
.ls1c_c00103{letter-spacing:1.983600px;}
.ls10_c00103{letter-spacing:1.990560px;}
.ls4_c00103{letter-spacing:2.164560px;}
.ls33_c00103{letter-spacing:2.423520px;}
.ls30_c00103{letter-spacing:2.442960px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{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__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00103{word-spacing:0.000000px;}
._1_c00103{margin-left:-4.476960px;}
._4_c00103{margin-left:-3.354720px;}
._2_c00103{margin-left:-1.405200px;}
._e_c00103{width:1.850880px;}
._0_c00103{width:2.978880px;}
._3_c00103{width:5.178720px;}
._b_c00103{width:7.050480px;}
._d_c00103{width:8.435520px;}
._7_c00103{width:10.481760px;}
._10_c00103{width:11.553120px;}
._c_c00103{width:13.233600px;}
._6_c00103{width:14.727360px;}
._8_c00103{width:16.084560px;}
._9_c00103{width:17.107680px;}
._5_c00103{width:18.491760px;}
._a_c00103{width:20.726880px;}
._f_c00103{width:22.575600px;}
._13_c00103{width:24.126000px;}
._14_c00103{width:25.571040px;}
._12_c00103{width:26.601120px;}
._11_c00103{width:27.979200px;}
.fc0_c00103{color:transparent;}
.fs0_c00103{font-size:59.400000px;}
.fs5_c00103{font-size:60.000000px;}
.fs3_c00103{font-size:67.800000px;}
.fs4_c00103{font-size:69.000000px;}
.fs1_c00103{font-size:69.600000px;}
.fs2_c00103{font-size:73.200000px;}
.y0_c00103{bottom:0.000000px;}
.y1d_c00103{bottom:67.335000px;}
.y1c_c00103{bottom:147.255000px;}
.y1a_c00103{bottom:177.837600px;}
.y1b_c00103{bottom:177.840000px;}
.y19_c00103{bottom:209.169600px;}
.y18_c00103{bottom:240.865800px;}
.y17_c00103{bottom:272.185800px;}
.y16_c00103{bottom:303.505800px;}
.y15_c00103{bottom:334.460400px;}
.y14_c00103{bottom:365.415000px;}
.y13_c00103{bottom:396.352200px;}
.y12_c00103{bottom:428.037600px;}
.y11_c00103{bottom:459.357600px;}
.y10_c00103{bottom:490.695000px;}
.yf_c00103{bottom:553.335000px;}
.ye_c00103{bottom:585.000000px;}
.yd_c00103{bottom:616.335000px;}
.yc_c00103{bottom:678.980400px;}
.yb_c00103{bottom:741.255000px;}
.ya_c00103{bottom:803.512200px;}
.y9_c00103{bottom:834.849600px;}
.y8_c00103{bottom:866.517600px;}
.y7_c00103{bottom:897.489600px;}
.y6_c00103{bottom:929.175000px;}
.y5_c00103{bottom:960.495000px;}
.y4_c00103{bottom:991.815000px;}
.y3_c00103{bottom:1054.080000px;}
.y2_c00103{bottom:1116.360000px;}
.y1_c00103{bottom:1191.240000px;}
.h2_c00103{height:58.297852px;}
.ha_c00103{height:58.886719px;}
.h3_c00103{height:68.308594px;}
.h9_c00103{height:68.318194px;}
.h5_c00103{height:68.329688px;}
.h8_c00103{height:68.330194px;}
.h7_c00103{height:71.762855px;}
.h6_c00103{height:71.806055px;}
.h4_c00103{height:71.837255px;}
.h1_c00103{height:1263.000000px;}
.h0_c00103{height:1263.240000px;}
.w1_c00103{width:892.500000px;}
.w0_c00103{width:892.800000px;}
.x0_c00103{left:0.000000px;}
.xa_c00103{left:121.605000px;}
.x7_c00103{left:123.157800px;}
.x1_c00103{left:124.485000px;}
.x4_c00103{left:177.615000px;}
.x3_c00103{left:179.325000px;}
.x2_c00103{left:342.480000px;}
.x5_c00103{left:348.975000px;}
.x6_c00103{left:373.080000px;}
.xb_c00103{left:426.435000px;}
.x8_c00103{left:663.735000px;}
.x9_c00103{left:686.700000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls68_c00103{letter-spacing:-2.212267pt;}
.ls38_c00103{letter-spacing:-2.165333pt;}
.ls91_c00103{letter-spacing:-2.017067pt;}
.ls67_c00103{letter-spacing:-1.899947pt;}
.ls99_c00103{letter-spacing:-1.866667pt;}
.ls6c_c00103{letter-spacing:-1.808853pt;}
.ls4b_c00103{letter-spacing:-1.676587pt;}
.ls90_c00103{letter-spacing:-1.665707pt;}
.ls71_c00103{letter-spacing:-1.626667pt;}
.ls6f_c00103{letter-spacing:-1.522560pt;}
.ls53_c00103{letter-spacing:-1.466240pt;}
.ls60_c00103{letter-spacing:-1.441493pt;}
.ls69_c00103{letter-spacing:-1.373440pt;}
.ls57_c00103{letter-spacing:-1.361067pt;}
.ls61_c00103{letter-spacing:-1.268267pt;}
.ls86_c00103{letter-spacing:-1.194027pt;}
.ls8f_c00103{letter-spacing:-1.125973pt;}
.ls4c_c00103{letter-spacing:-1.095040pt;}
.ls80_c00103{letter-spacing:-1.082667pt;}
.ls7c_c00103{letter-spacing:-1.039360pt;}
.ls76_c00103{letter-spacing:-0.996053pt;}
.ls41_c00103{letter-spacing:-0.977493pt;}
.ls6e_c00103{letter-spacing:-0.946560pt;}
.ls6b_c00103{letter-spacing:-0.859947pt;}
.ls81_c00103{letter-spacing:-0.798080pt;}
.ls34_c00103{letter-spacing:-0.791893pt;}
.ls39_c00103{letter-spacing:-0.785707pt;}
.ls7d_c00103{letter-spacing:-0.773333pt;}
.ls7f_c00103{letter-spacing:-0.748587pt;}
.ls51_c00103{letter-spacing:-0.711467pt;}
.ls40_c00103{letter-spacing:-0.705280pt;}
.ls37_c00103{letter-spacing:-0.674347pt;}
.ls92_c00103{letter-spacing:-0.661973pt;}
.ls63_c00103{letter-spacing:-0.649600pt;}
.ls4a_c00103{letter-spacing:-0.612480pt;}
.ls89_c00103{letter-spacing:-0.587733pt;}
.ls75_c00103{letter-spacing:-0.562987pt;}
.ls43_c00103{letter-spacing:-0.556800pt;}
.ls74_c00103{letter-spacing:-0.550613pt;}
.ls65_c00103{letter-spacing:-0.544427pt;}
.ls66_c00103{letter-spacing:-0.532053pt;}
.ls35_c00103{letter-spacing:-0.519680pt;}
.ls98_c00103{letter-spacing:-0.507307pt;}
.ls6a_c00103{letter-spacing:-0.494933pt;}
.ls77_c00103{letter-spacing:-0.488747pt;}
.ls72_c00103{letter-spacing:-0.470187pt;}
.ls85_c00103{letter-spacing:-0.457813pt;}
.ls97_c00103{letter-spacing:-0.451627pt;}
.ls3b_c00103{letter-spacing:-0.445440pt;}
.ls59_c00103{letter-spacing:-0.439253pt;}
.ls8a_c00103{letter-spacing:-0.433067pt;}
.ls8d_c00103{letter-spacing:-0.420693pt;}
.ls5a_c00103{letter-spacing:-0.408320pt;}
.ls3a_c00103{letter-spacing:-0.389760pt;}
.ls8c_c00103{letter-spacing:-0.383573pt;}
.ls45_c00103{letter-spacing:-0.371200pt;}
.ls55_c00103{letter-spacing:-0.365013pt;}
.ls96_c00103{letter-spacing:-0.358827pt;}
.ls3d_c00103{letter-spacing:-0.352640pt;}
.ls83_c00103{letter-spacing:-0.346453pt;}
.ls82_c00103{letter-spacing:-0.334080pt;}
.ls4f_c00103{letter-spacing:-0.327893pt;}
.ls4d_c00103{letter-spacing:-0.321707pt;}
.ls7e_c00103{letter-spacing:-0.303147pt;}
.ls3c_c00103{letter-spacing:-0.296960pt;}
.ls5f_c00103{letter-spacing:-0.284587pt;}
.ls79_c00103{letter-spacing:-0.278400pt;}
.ls6d_c00103{letter-spacing:-0.272213pt;}
.ls5e_c00103{letter-spacing:-0.266027pt;}
.ls56_c00103{letter-spacing:-0.247467pt;}
.ls70_c00103{letter-spacing:-0.228907pt;}
.ls50_c00103{letter-spacing:-0.222720pt;}
.ls88_c00103{letter-spacing:-0.216533pt;}
.ls8b_c00103{letter-spacing:-0.204160pt;}
.ls47_c00103{letter-spacing:-0.191787pt;}
.ls48_c00103{letter-spacing:-0.185600pt;}
.ls3f_c00103{letter-spacing:-0.179413pt;}
.ls87_c00103{letter-spacing:-0.173227pt;}
.ls42_c00103{letter-spacing:-0.167040pt;}
.ls58_c00103{letter-spacing:-0.160853pt;}
.ls73_c00103{letter-spacing:-0.154667pt;}
.ls8e_c00103{letter-spacing:-0.148480pt;}
.ls62_c00103{letter-spacing:-0.142293pt;}
.ls94_c00103{letter-spacing:-0.129920pt;}
.ls95_c00103{letter-spacing:-0.123733pt;}
.ls7a_c00103{letter-spacing:-0.117547pt;}
.ls36_c00103{letter-spacing:-0.111360pt;}
.ls4e_c00103{letter-spacing:-0.105173pt;}
.ls52_c00103{letter-spacing:-0.092800pt;}
.ls84_c00103{letter-spacing:-0.080427pt;}
.ls5b_c00103{letter-spacing:-0.068053pt;}
.ls5d_c00103{letter-spacing:-0.055680pt;}
.ls44_c00103{letter-spacing:-0.049493pt;}
.ls49_c00103{letter-spacing:-0.037120pt;}
.ls54_c00103{letter-spacing:-0.030933pt;}
.ls46_c00103{letter-spacing:-0.024747pt;}
.ls7b_c00103{letter-spacing:-0.012373pt;}
.ls3e_c00103{letter-spacing:0.000000pt;}
.lsc_c00103{letter-spacing:0.006187pt;}
.ls1a_c00103{letter-spacing:0.018560pt;}
.ls2a_c00103{letter-spacing:0.024747pt;}
.ls2_c00103{letter-spacing:0.037120pt;}
.ls31_c00103{letter-spacing:0.061867pt;}
.ls28_c00103{letter-spacing:0.074240pt;}
.ls3_c00103{letter-spacing:0.086613pt;}
.ls13_c00103{letter-spacing:0.111360pt;}
.ls2f_c00103{letter-spacing:0.129920pt;}
.lsd_c00103{letter-spacing:0.136107pt;}
.ls25_c00103{letter-spacing:0.142293pt;}
.ls1e_c00103{letter-spacing:0.148480pt;}
.ls14_c00103{letter-spacing:0.154667pt;}
.ls2e_c00103{letter-spacing:0.160853pt;}
.ls6_c00103{letter-spacing:0.179413pt;}
.ls26_c00103{letter-spacing:0.191787pt;}
.lsb_c00103{letter-spacing:0.197973pt;}
.ls5_c00103{letter-spacing:0.204160pt;}
.ls7_c00103{letter-spacing:0.210347pt;}
.ls9_c00103{letter-spacing:0.216533pt;}
.ls64_c00103{letter-spacing:0.228907pt;}
.ls18_c00103{letter-spacing:0.235093pt;}
.ls5c_c00103{letter-spacing:0.272213pt;}
.ls22_c00103{letter-spacing:0.284587pt;}
.ls15_c00103{letter-spacing:0.296960pt;}
.ls20_c00103{letter-spacing:0.315520pt;}
.ls2c_c00103{letter-spacing:0.358827pt;}
.ls1b_c00103{letter-spacing:0.365013pt;}
.ls24_c00103{letter-spacing:0.408320pt;}
.ls16_c00103{letter-spacing:0.433067pt;}
.ls78_c00103{letter-spacing:0.457813pt;}
.ls1_c00103{letter-spacing:0.464000pt;}
.lse_c00103{letter-spacing:0.476373pt;}
.ls1d_c00103{letter-spacing:0.482560pt;}
.ls29_c00103{letter-spacing:0.581547pt;}
.ls12_c00103{letter-spacing:0.649600pt;}
.ls2d_c00103{letter-spacing:0.655787pt;}
.ls0_c00103{letter-spacing:0.748587pt;}
.ls93_c00103{letter-spacing:0.779520pt;}
.ls17_c00103{letter-spacing:0.822827pt;}
.ls1f_c00103{letter-spacing:0.861813pt;}
.lsf_c00103{letter-spacing:0.890880pt;}
.ls21_c00103{letter-spacing:0.921813pt;}
.ls23_c00103{letter-spacing:1.051733pt;}
.ls27_c00103{letter-spacing:1.057920pt;}
.ls11_c00103{letter-spacing:1.095040pt;}
.ls2b_c00103{letter-spacing:1.125973pt;}
.ls8_c00103{letter-spacing:1.169280pt;}
.ls32_c00103{letter-spacing:1.238933pt;}
.lsa_c00103{letter-spacing:1.243520pt;}
.ls19_c00103{letter-spacing:1.286827pt;}
.ls1c_c00103{letter-spacing:1.763200pt;}
.ls10_c00103{letter-spacing:1.769387pt;}
.ls4_c00103{letter-spacing:1.924053pt;}
.ls33_c00103{letter-spacing:2.154240pt;}
.ls30_c00103{letter-spacing:2.171520pt;}
.ws0_c00103{word-spacing:0.000000pt;}
._1_c00103{margin-left:-3.979520pt;}
._4_c00103{margin-left:-2.981973pt;}
._2_c00103{margin-left:-1.249067pt;}
._e_c00103{width:1.645227pt;}
._0_c00103{width:2.647893pt;}
._3_c00103{width:4.603307pt;}
._b_c00103{width:6.267093pt;}
._d_c00103{width:7.498240pt;}
._7_c00103{width:9.317120pt;}
._10_c00103{width:10.269440pt;}
._c_c00103{width:11.763200pt;}
._6_c00103{width:13.090987pt;}
._8_c00103{width:14.297387pt;}
._9_c00103{width:15.206827pt;}
._5_c00103{width:16.437120pt;}
._a_c00103{width:18.423893pt;}
._f_c00103{width:20.067200pt;}
._13_c00103{width:21.445333pt;}
._14_c00103{width:22.729813pt;}
._12_c00103{width:23.645440pt;}
._11_c00103{width:24.870400pt;}
.fs0_c00103{font-size:52.800000pt;}
.fs5_c00103{font-size:53.333333pt;}
.fs3_c00103{font-size:60.266667pt;}
.fs4_c00103{font-size:61.333333pt;}
.fs1_c00103{font-size:61.866667pt;}
.fs2_c00103{font-size:65.066667pt;}
.y0_c00103{bottom:0.000000pt;}
.y1d_c00103{bottom:59.853333pt;}
.y1c_c00103{bottom:130.893333pt;}
.y1a_c00103{bottom:158.077867pt;}
.y1b_c00103{bottom:158.080000pt;}
.y19_c00103{bottom:185.928533pt;}
.y18_c00103{bottom:214.102933pt;}
.y17_c00103{bottom:241.942933pt;}
.y16_c00103{bottom:269.782933pt;}
.y15_c00103{bottom:297.298133pt;}
.y14_c00103{bottom:324.813333pt;}
.y13_c00103{bottom:352.313067pt;}
.y12_c00103{bottom:380.477867pt;}
.y11_c00103{bottom:408.317867pt;}
.y10_c00103{bottom:436.173333pt;}
.yf_c00103{bottom:491.853333pt;}
.ye_c00103{bottom:520.000000pt;}
.yd_c00103{bottom:547.853333pt;}
.yc_c00103{bottom:603.538133pt;}
.yb_c00103{bottom:658.893333pt;}
.ya_c00103{bottom:714.233067pt;}
.y9_c00103{bottom:742.088533pt;}
.y8_c00103{bottom:770.237867pt;}
.y7_c00103{bottom:797.768533pt;}
.y6_c00103{bottom:825.933333pt;}
.y5_c00103{bottom:853.773333pt;}
.y4_c00103{bottom:881.613333pt;}
.y3_c00103{bottom:936.960000pt;}
.y2_c00103{bottom:992.320000pt;}
.y1_c00103{bottom:1058.880000pt;}
.h2_c00103{height:51.820312pt;}
.ha_c00103{height:52.343750pt;}
.h3_c00103{height:60.718750pt;}
.h9_c00103{height:60.727283pt;}
.h5_c00103{height:60.737500pt;}
.h8_c00103{height:60.737950pt;}
.h7_c00103{height:63.789204pt;}
.h6_c00103{height:63.827604pt;}
.h4_c00103{height:63.855338pt;}
.h1_c00103{height:1122.666667pt;}
.h0_c00103{height:1122.880000pt;}
.w1_c00103{width:793.333333pt;}
.w0_c00103{width:793.600000pt;}
.x0_c00103{left:0.000000pt;}
.xa_c00103{left:108.093333pt;}
.x7_c00103{left:109.473600pt;}
.x1_c00103{left:110.653333pt;}
.x4_c00103{left:157.880000pt;}
.x3_c00103{left:159.400000pt;}
.x2_c00103{left:304.426667pt;}
.x5_c00103{left:310.200000pt;}
.x6_c00103{left:331.626667pt;}
.xb_c00103{left:379.053333pt;}
.x8_c00103{left:589.986667pt;}
.x9_c00103{left:610.400000pt;}
}





/* 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_c00104 {
    display:none;
  }
  .loading-indicator_c00104.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00104 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_c00104 { 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_c00104" -> "#page-container .classname_c00104")
 */
.pf_c00104 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00104 { /* 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_c00104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00104 { /* 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_c00104 { /* 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_c00104 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00104 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00104 {overflow:visible;}
  }
}
.c_c00104 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00104 { /* 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_c00104:after { /* webkit #35443 */
  content: '';
}
.t_c00104:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00104 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 */
}
.__c00104 { /* 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_c00104 { /* info for Javascript */
  display:none;
}
.l_c00104 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00104 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00104 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00104: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_c00104 {
    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_c00104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00104.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_c00104 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00104;src:url('chunks/assets/font_156c369699371e808a73ac80.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.284668;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_c00104;src:url('chunks/assets/font_5044463780f852f35dd2964b.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.284180;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_c00104;src:url('chunks/assets/font_711ddc779d94d20efe901096.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;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:ff4_c00104;src:url('chunks/assets/font_4b1b149edec65e2c0dd88d3a.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;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:ff5_c00104;src:url('chunks/assets/font_74ee749abaabeb12b7660f98.woff2')format("woff");}.ff5_c00104{font-family:ff5_c00104;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;}
.m8_c00104{transform:matrix(0.134807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134807,0.000000,0.000000,0.250000,0,0);}
.md_c00104{transform:matrix(0.173891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173891,0.000000,0.000000,0.250000,0,0);}
.m6_c00104{transform:matrix(0.208533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208533,0.000000,0.000000,0.250000,0,0);}
.mc_c00104{transform:matrix(0.211723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211723,0.000000,0.000000,0.250000,0,0);}
.ma_c00104{transform:matrix(0.214566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214566,0.000000,0.000000,0.250000,0,0);}
.me_c00104{transform:matrix(0.214737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214737,0.000000,0.000000,0.250000,0,0);}
.mb_c00104{transform:matrix(0.219509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219509,0.000000,0.000000,0.250000,0,0);}
.m16_c00104{transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);}
.m9_c00104{transform:matrix(0.225137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225137,0.000000,0.000000,0.250000,0,0);}
.m2_c00104{transform:matrix(0.235201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235201,0.000000,0.000000,0.250000,0,0);}
.m7_c00104{transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);}
.m1a_c00104{transform:matrix(0.242292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242292,0.000000,0.000000,0.250000,0,0);}
.m13_c00104{transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);}
.m18_c00104{transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);}
.m11_c00104{transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);}
.m17_c00104{transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);}
.m5_c00104{transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);}
.m0_c00104{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);}
.m4_c00104{transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);}
.m12_c00104{transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);}
.m14_c00104{transform:matrix(0.252594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252594,0.000000,0.000000,0.250000,0,0);}
.m3_c00104{transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);}
.m19_c00104{transform:matrix(0.259053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259053,0.000000,0.000000,0.250000,0,0);}
.m15_c00104{transform:matrix(0.272485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272485,0.000000,0.000000,0.250000,0,0);}
.m10_c00104{transform:matrix(0.283386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283386,0.000000,0.000000,0.250000,0,0);}
.mf_c00104{transform:matrix(0.831050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.831050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.831050,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls7f_c00104{letter-spacing:-2.631600px;}
.ls6e_c00104{letter-spacing:-2.562000px;}
.ls88_c00104{letter-spacing:-2.541000px;}
.ls61_c00104{letter-spacing:-2.520000px;}
.ls6b_c00104{letter-spacing:-2.457000px;}
.ls5f_c00104{letter-spacing:-2.415000px;}
.ls6f_c00104{letter-spacing:-2.394000px;}
.ls50_c00104{letter-spacing:-2.373000px;}
.ls7e_c00104{letter-spacing:-2.345220px;}
.ls8d_c00104{letter-spacing:-2.268000px;}
.ls81_c00104{letter-spacing:-2.168280px;}
.ls7c_c00104{letter-spacing:-2.004120px;}
.ls5c_c00104{letter-spacing:-1.780200px;}
.ls8c_c00104{letter-spacing:-1.682640px;}
.ls86_c00104{letter-spacing:-1.575420px;}
.ls87_c00104{letter-spacing:-1.553640px;}
.ls83_c00104{letter-spacing:-1.203840px;}
.ls85_c00104{letter-spacing:-1.052700px;}
.ls76_c00104{letter-spacing:-0.820800px;}
.ls8b_c00104{letter-spacing:-0.711360px;}
.ls5b_c00104{letter-spacing:-0.684000px;}
.ls56_c00104{letter-spacing:-0.636120px;}
.ls7b_c00104{letter-spacing:-0.540360px;}
.ls89_c00104{letter-spacing:-0.533520px;}
.ls64_c00104{letter-spacing:-0.492480px;}
.ls59_c00104{letter-spacing:-0.461040px;}
.ls82_c00104{letter-spacing:-0.348840px;}
.ls5a_c00104{letter-spacing:-0.307800px;}
.ls78_c00104{letter-spacing:-0.253080px;}
.ls71_c00104{letter-spacing:-0.198360px;}
.ls79_c00104{letter-spacing:-0.157320px;}
.ls51_c00104{letter-spacing:-0.135600px;}
.ls5e_c00104{letter-spacing:-0.129960px;}
.ls8a_c00104{letter-spacing:-0.123120px;}
.ls6a_c00104{letter-spacing:-0.116280px;}
.ls54_c00104{letter-spacing:-0.115260px;}
.ls4e_c00104{letter-spacing:-0.109440px;}
.ls60_c00104{letter-spacing:-0.102600px;}
.ls67_c00104{letter-spacing:-0.088920px;}
.ls63_c00104{letter-spacing:-0.082080px;}
.ls75_c00104{letter-spacing:-0.068400px;}
.ls4f_c00104{letter-spacing:-0.061020px;}
.ls66_c00104{letter-spacing:-0.041040px;}
.ls69_c00104{letter-spacing:-0.034200px;}
.ls55_c00104{letter-spacing:0.000000px;}
.ls1d_c00104{letter-spacing:0.006840px;}
.ls2_c00104{letter-spacing:0.033900px;}
.ls12_c00104{letter-spacing:0.116280px;}
.ls2e_c00104{letter-spacing:0.129960px;}
.ls5_c00104{letter-spacing:0.142380px;}
.ls30_c00104{letter-spacing:0.143640px;}
.lsf_c00104{letter-spacing:0.150480px;}
.ls3c_c00104{letter-spacing:0.198360px;}
.ls29_c00104{letter-spacing:0.205200px;}
.ls1b_c00104{letter-spacing:0.259920px;}
.ls3f_c00104{letter-spacing:0.273600px;}
.ls19_c00104{letter-spacing:0.328320px;}
.ls1c_c00104{letter-spacing:0.355680px;}
.ls4_c00104{letter-spacing:0.369360px;}
.ls80_c00104{letter-spacing:0.376200px;}
.ls40_c00104{letter-spacing:0.389880px;}
.ls31_c00104{letter-spacing:0.424080px;}
.ls14_c00104{letter-spacing:0.465120px;}
.ls45_c00104{letter-spacing:0.485640px;}
.ls70_c00104{letter-spacing:0.488160px;}
.ls32_c00104{letter-spacing:0.499320px;}
.ls18_c00104{letter-spacing:0.506160px;}
.ls33_c00104{letter-spacing:0.519840px;}
.ls72_c00104{letter-spacing:0.565800px;}
.ls68_c00104{letter-spacing:0.569520px;}
.ls10_c00104{letter-spacing:0.574560px;}
.lsb_c00104{letter-spacing:0.595080px;}
.ls7d_c00104{letter-spacing:0.616980px;}
.ls2a_c00104{letter-spacing:0.629280px;}
.ls8_c00104{letter-spacing:0.649800px;}
.ls2b_c00104{letter-spacing:0.656640px;}
.ls13_c00104{letter-spacing:0.663480px;}
.ls7_c00104{letter-spacing:0.664440px;}
.ls1e_c00104{letter-spacing:0.670320px;}
.ls16_c00104{letter-spacing:0.677160px;}
.ls28_c00104{letter-spacing:0.684000px;}
.ls26_c00104{letter-spacing:0.690840px;}
.ls3_c00104{letter-spacing:0.698340px;}
.ls3b_c00104{letter-spacing:0.731880px;}
.ls48_c00104{letter-spacing:0.752400px;}
.ls4b_c00104{letter-spacing:0.779760px;}
.ls4a_c00104{letter-spacing:0.806820px;}
.ls1f_c00104{letter-spacing:0.820800px;}
.ls0_c00104{letter-spacing:0.827640px;}
.ls52_c00104{letter-spacing:0.833940px;}
.ls11_c00104{letter-spacing:0.841320px;}
.ls7a_c00104{letter-spacing:0.847500px;}
.ls38_c00104{letter-spacing:0.889200px;}
.lsc_c00104{letter-spacing:0.916560px;}
.ls34_c00104{letter-spacing:0.937080px;}
.ls22_c00104{letter-spacing:0.943920px;}
.ls3a_c00104{letter-spacing:0.950760px;}
.ls43_c00104{letter-spacing:0.957600px;}
.ls77_c00104{letter-spacing:0.962760px;}
.ls4c_c00104{letter-spacing:0.964440px;}
.ls3e_c00104{letter-spacing:0.984960px;}
.ls6_c00104{letter-spacing:0.991800px;}
.ls57_c00104{letter-spacing:1.005480px;}
.ls1_c00104{letter-spacing:1.037340px;}
.ls24_c00104{letter-spacing:1.046520px;}
.ls21_c00104{letter-spacing:1.060200px;}
.ls53_c00104{letter-spacing:1.064460px;}
.ls2d_c00104{letter-spacing:1.073880px;}
.ls15_c00104{letter-spacing:1.094400px;}
.lsd_c00104{letter-spacing:1.128600px;}
.ls37_c00104{letter-spacing:1.142280px;}
.ls46_c00104{letter-spacing:1.149120px;}
.ls49_c00104{letter-spacing:1.172940px;}
.ls9_c00104{letter-spacing:1.224360px;}
.ls44_c00104{letter-spacing:1.258560px;}
.ls47_c00104{letter-spacing:1.272240px;}
.ls25_c00104{letter-spacing:1.285920px;}
.ls62_c00104{letter-spacing:1.301760px;}
.ls6c_c00104{letter-spacing:1.335660px;}
.ls42_c00104{letter-spacing:1.395360px;}
.ls2c_c00104{letter-spacing:1.402200px;}
.ls73_c00104{letter-spacing:1.403460px;}
.ls35_c00104{letter-spacing:1.422720px;}
.ls65_c00104{letter-spacing:1.471260px;}
.ls27_c00104{letter-spacing:1.532160px;}
.ls17_c00104{letter-spacing:1.675800px;}
.ls4d_c00104{letter-spacing:1.714980px;}
.ls2f_c00104{letter-spacing:1.785240px;}
.ls74_c00104{letter-spacing:1.800000px;}
.lsa_c00104{letter-spacing:1.812600px;}
.ls1a_c00104{letter-spacing:1.826280px;}
.ls6d_c00104{letter-spacing:2.010960px;}
.ls20_c00104{letter-spacing:2.140920px;}
.ls39_c00104{letter-spacing:2.209320px;}
.ls36_c00104{letter-spacing:2.352960px;}
.ls3d_c00104{letter-spacing:2.455560px;}
.ls84_c00104{letter-spacing:2.633400px;}
.ls23_c00104{letter-spacing:2.701800px;}
.ls41_c00104{letter-spacing:2.722320px;}
.lse_c00104{letter-spacing:3.091680px;}
.ls58_c00104{letter-spacing:3.390000px;}
.ls5d_c00104{letter-spacing:3.420000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{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__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00104{word-spacing:-17.017920px;}
.ws7_c00104{word-spacing:-17.011080px;}
.ws6_c00104{word-spacing:-16.846920px;}
.ws8_c00104{word-spacing:0.000000px;}
.ws1_c00104{word-spacing:124.405920px;}
.ws4_c00104{word-spacing:125.951760px;}
.ws5_c00104{word-spacing:126.102240px;}
.ws0_c00104{word-spacing:126.115920px;}
.ws3_c00104{word-spacing:126.882000px;}
._d_c00104{margin-left:-19.849680px;}
._e_c00104{margin-left:-17.489880px;}
._9_c00104{margin-left:-15.554160px;}
._b_c00104{margin-left:-14.377680px;}
._a_c00104{margin-left:-12.757200px;}
._f_c00104{margin-left:-11.409120px;}
._8_c00104{margin-left:-7.628460px;}
._c_c00104{margin-left:-6.361200px;}
._5_c00104{margin-left:-4.610160px;}
._3_c00104{margin-left:-2.804400px;}
._7_c00104{margin-left:-1.183320px;}
._6_c00104{width:1.060200px;}
._4_c00104{width:2.587200px;}
._0_c00104{width:3.714120px;}
._2_c00104{width:4.942500px;}
._1_c00104{width:6.584880px;}
._12_c00104{width:7.695000px;}
._14_c00104{width:9.165600px;}
._11_c00104{width:13.244280px;}
._13_c00104{width:17.271000px;}
._10_c00104{width:1636.512000px;}
.fc0_c00104{color:transparent;}
.fs7_c00104{font-size:36.000000px;}
.fs0_c00104{font-size:60.600000px;}
.fsa_c00104{font-size:64.800000px;}
.fs2_c00104{font-size:67.800000px;}
.fs1_c00104{font-size:68.400000px;}
.fs3_c00104{font-size:69.000000px;}
.fs5_c00104{font-size:70.200000px;}
.fs4_c00104{font-size:72.000000px;}
.fs9_c00104{font-size:72.600000px;}
.fs6_c00104{font-size:73.200000px;}
.fs8_c00104{font-size:77.400000px;}
.y0_c00104{bottom:0.000000px;}
.y24_c00104{bottom:60.855006px;}
.y23_c00104{bottom:138.975006px;}
.y22_c00104{bottom:201.255006px;}
.y21_c00104{bottom:233.280006px;}
.y20_c00104{bottom:294.840006px;}
.y1f_c00104{bottom:326.880006px;}
.y1d_c00104{bottom:390.607806px;}
.y1e_c00104{bottom:390.615006px;}
.y1c_c00104{bottom:421.935006px;}
.y16_c00104{bottom:452.535006px;}
.y1b_c00104{bottom:453.615006px;}
.y1a_c00104{bottom:484.560006px;}
.y15_c00104{bottom:515.175006px;}
.y19_c00104{bottom:516.255006px;}
.y18_c00104{bottom:522.720006px;}
.y17_c00104{bottom:547.215006px;}
.y13_c00104{bottom:579.251706px;}
.y14_c00104{bottom:579.255006px;}
.y12_c00104{bottom:611.280006px;}
.y10_c00104{bottom:642.601806px;}
.y11_c00104{bottom:642.615006px;}
.yf_c00104{bottom:673.552806px;}
.ye_c00104{bottom:704.880006px;}
.yd_c00104{bottom:736.215006px;}
.yb_c00104{bottom:767.512806px;}
.yc_c00104{bottom:767.520006px;}
.ya_c00104{bottom:798.840006px;}
.y8_c00104{bottom:830.153706px;}
.y9_c00104{bottom:830.160006px;}
.y7_c00104{bottom:861.840006px;}
.y6_c00104{bottom:893.520006px;}
.y5_c00104{bottom:955.800606px;}
.y4_c00104{bottom:1018.455006px;}
.y3_c00104{bottom:1080.735006px;}
.y2_c00104{bottom:1112.415006px;}
.y1_c00104{bottom:1186.935006px;}
.hc_c00104{height:37.546875px;}
.h2_c00104{height:59.475586px;}
.hf_c00104{height:63.597656px;}
.h4_c00104{height:66.508887px;}
.h3_c00104{height:67.130859px;}
.h8_c00104{height:67.144059px;}
.h5_c00104{height:67.719727px;}
.h7_c00104{height:68.863184px;}
.he_c00104{height:71.252930px;}
.hb_c00104{height:71.339063px;}
.ha_c00104{height:71.806055px;}
.h9_c00104{height:71.841797px;}
.h6_c00104{height:75.093750px;}
.hd_c00104{height:75.926074px;}
.h1_c00104{height:1263.000000px;}
.h0_c00104{height:1263.240006px;}
.w1_c00104{width:892.500000px;}
.w0_c00104{width:892.799998px;}
.x0_c00104{left:0.000000px;}
.xf_c00104{left:128.048099px;}
.xa_c00104{left:129.209998px;}
.x1_c00104{left:130.604998px;}
.x25_c00104{left:174.485098px;}
.x28_c00104{left:180.989998px;}
.x12_c00104{left:182.489998px;}
.xc_c00104{left:183.494998px;}
.x24_c00104{left:206.444999px;}
.x21_c00104{left:214.949999px;}
.xd_c00104{left:217.274998px;}
.x29_c00104{left:223.334998px;}
.x2a_c00104{left:239.564999px;}
.x27_c00104{left:260.069998px;}
.x2b_c00104{left:268.409999px;}
.x1f_c00104{left:271.304999px;}
.x20_c00104{left:332.864999px;}
.x18_c00104{left:342.659999px;}
.x2d_c00104{left:345.104999px;}
.x19_c00104{left:366.134999px;}
.x2e_c00104{left:379.004999px;}
.x2_c00104{left:391.799998px;}
.xb_c00104{left:396.209999px;}
.x3_c00104{left:411.629999px;}
.x2f_c00104{left:424.184999px;}
.x32_c00104{left:433.619999px;}
.x4_c00104{left:470.639998px;}
.x5_c00104{left:491.204998px;}
.x6_c00104{left:571.799998px;}
.x30_c00104{left:590.249998px;}
.x1a_c00104{left:591.449998px;}
.x7_c00104{left:592.829998px;}
.x31_c00104{left:615.254999px;}
.x17_c00104{left:647.054999px;}
.x1d_c00104{left:659.924999px;}
.x26_c00104{left:663.599999px;}
.x15_c00104{left:666.479999px;}
.x22_c00104{left:670.454998px;}
.x8_c00104{left:671.879999px;}
.x1b_c00104{left:673.304999px;}
.x10_c00104{left:680.504999px;}
.x16_c00104{left:686.324998px;}
.x13_c00104{left:687.359998px;}
.x23_c00104{left:690.029999px;}
.x9_c00104{left:692.909999px;}
.x1e_c00104{left:695.444999px;}
.x1c_c00104{left:696.479999px;}
.x11_c00104{left:703.364998px;}
.x14_c00104{left:706.109998px;}
.x2c_c00104{left:717.749998px;}
.xe_c00104{left:745.919999px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls7f_c00104{letter-spacing:-2.339200pt;}
.ls6e_c00104{letter-spacing:-2.277333pt;}
.ls88_c00104{letter-spacing:-2.258667pt;}
.ls61_c00104{letter-spacing:-2.240000pt;}
.ls6b_c00104{letter-spacing:-2.184000pt;}
.ls5f_c00104{letter-spacing:-2.146667pt;}
.ls6f_c00104{letter-spacing:-2.128000pt;}
.ls50_c00104{letter-spacing:-2.109333pt;}
.ls7e_c00104{letter-spacing:-2.084640pt;}
.ls8d_c00104{letter-spacing:-2.016000pt;}
.ls81_c00104{letter-spacing:-1.927360pt;}
.ls7c_c00104{letter-spacing:-1.781440pt;}
.ls5c_c00104{letter-spacing:-1.582400pt;}
.ls8c_c00104{letter-spacing:-1.495680pt;}
.ls86_c00104{letter-spacing:-1.400373pt;}
.ls87_c00104{letter-spacing:-1.381013pt;}
.ls83_c00104{letter-spacing:-1.070080pt;}
.ls85_c00104{letter-spacing:-0.935733pt;}
.ls76_c00104{letter-spacing:-0.729600pt;}
.ls8b_c00104{letter-spacing:-0.632320pt;}
.ls5b_c00104{letter-spacing:-0.608000pt;}
.ls56_c00104{letter-spacing:-0.565440pt;}
.ls7b_c00104{letter-spacing:-0.480320pt;}
.ls89_c00104{letter-spacing:-0.474240pt;}
.ls64_c00104{letter-spacing:-0.437760pt;}
.ls59_c00104{letter-spacing:-0.409813pt;}
.ls82_c00104{letter-spacing:-0.310080pt;}
.ls5a_c00104{letter-spacing:-0.273600pt;}
.ls78_c00104{letter-spacing:-0.224960pt;}
.ls71_c00104{letter-spacing:-0.176320pt;}
.ls79_c00104{letter-spacing:-0.139840pt;}
.ls51_c00104{letter-spacing:-0.120533pt;}
.ls5e_c00104{letter-spacing:-0.115520pt;}
.ls8a_c00104{letter-spacing:-0.109440pt;}
.ls6a_c00104{letter-spacing:-0.103360pt;}
.ls54_c00104{letter-spacing:-0.102453pt;}
.ls4e_c00104{letter-spacing:-0.097280pt;}
.ls60_c00104{letter-spacing:-0.091200pt;}
.ls67_c00104{letter-spacing:-0.079040pt;}
.ls63_c00104{letter-spacing:-0.072960pt;}
.ls75_c00104{letter-spacing:-0.060800pt;}
.ls4f_c00104{letter-spacing:-0.054240pt;}
.ls66_c00104{letter-spacing:-0.036480pt;}
.ls69_c00104{letter-spacing:-0.030400pt;}
.ls55_c00104{letter-spacing:0.000000pt;}
.ls1d_c00104{letter-spacing:0.006080pt;}
.ls2_c00104{letter-spacing:0.030133pt;}
.ls12_c00104{letter-spacing:0.103360pt;}
.ls2e_c00104{letter-spacing:0.115520pt;}
.ls5_c00104{letter-spacing:0.126560pt;}
.ls30_c00104{letter-spacing:0.127680pt;}
.lsf_c00104{letter-spacing:0.133760pt;}
.ls3c_c00104{letter-spacing:0.176320pt;}
.ls29_c00104{letter-spacing:0.182400pt;}
.ls1b_c00104{letter-spacing:0.231040pt;}
.ls3f_c00104{letter-spacing:0.243200pt;}
.ls19_c00104{letter-spacing:0.291840pt;}
.ls1c_c00104{letter-spacing:0.316160pt;}
.ls4_c00104{letter-spacing:0.328320pt;}
.ls80_c00104{letter-spacing:0.334400pt;}
.ls40_c00104{letter-spacing:0.346560pt;}
.ls31_c00104{letter-spacing:0.376960pt;}
.ls14_c00104{letter-spacing:0.413440pt;}
.ls45_c00104{letter-spacing:0.431680pt;}
.ls70_c00104{letter-spacing:0.433920pt;}
.ls32_c00104{letter-spacing:0.443840pt;}
.ls18_c00104{letter-spacing:0.449920pt;}
.ls33_c00104{letter-spacing:0.462080pt;}
.ls72_c00104{letter-spacing:0.502933pt;}
.ls68_c00104{letter-spacing:0.506240pt;}
.ls10_c00104{letter-spacing:0.510720pt;}
.lsb_c00104{letter-spacing:0.528960pt;}
.ls7d_c00104{letter-spacing:0.548427pt;}
.ls2a_c00104{letter-spacing:0.559360pt;}
.ls8_c00104{letter-spacing:0.577600pt;}
.ls2b_c00104{letter-spacing:0.583680pt;}
.ls13_c00104{letter-spacing:0.589760pt;}
.ls7_c00104{letter-spacing:0.590613pt;}
.ls1e_c00104{letter-spacing:0.595840pt;}
.ls16_c00104{letter-spacing:0.601920pt;}
.ls28_c00104{letter-spacing:0.608000pt;}
.ls26_c00104{letter-spacing:0.614080pt;}
.ls3_c00104{letter-spacing:0.620747pt;}
.ls3b_c00104{letter-spacing:0.650560pt;}
.ls48_c00104{letter-spacing:0.668800pt;}
.ls4b_c00104{letter-spacing:0.693120pt;}
.ls4a_c00104{letter-spacing:0.717173pt;}
.ls1f_c00104{letter-spacing:0.729600pt;}
.ls0_c00104{letter-spacing:0.735680pt;}
.ls52_c00104{letter-spacing:0.741280pt;}
.ls11_c00104{letter-spacing:0.747840pt;}
.ls7a_c00104{letter-spacing:0.753333pt;}
.ls38_c00104{letter-spacing:0.790400pt;}
.lsc_c00104{letter-spacing:0.814720pt;}
.ls34_c00104{letter-spacing:0.832960pt;}
.ls22_c00104{letter-spacing:0.839040pt;}
.ls3a_c00104{letter-spacing:0.845120pt;}
.ls43_c00104{letter-spacing:0.851200pt;}
.ls77_c00104{letter-spacing:0.855787pt;}
.ls4c_c00104{letter-spacing:0.857280pt;}
.ls3e_c00104{letter-spacing:0.875520pt;}
.ls6_c00104{letter-spacing:0.881600pt;}
.ls57_c00104{letter-spacing:0.893760pt;}
.ls1_c00104{letter-spacing:0.922080pt;}
.ls24_c00104{letter-spacing:0.930240pt;}
.ls21_c00104{letter-spacing:0.942400pt;}
.ls53_c00104{letter-spacing:0.946187pt;}
.ls2d_c00104{letter-spacing:0.954560pt;}
.ls15_c00104{letter-spacing:0.972800pt;}
.lsd_c00104{letter-spacing:1.003200pt;}
.ls37_c00104{letter-spacing:1.015360pt;}
.ls46_c00104{letter-spacing:1.021440pt;}
.ls49_c00104{letter-spacing:1.042613pt;}
.ls9_c00104{letter-spacing:1.088320pt;}
.ls44_c00104{letter-spacing:1.118720pt;}
.ls47_c00104{letter-spacing:1.130880pt;}
.ls25_c00104{letter-spacing:1.143040pt;}
.ls62_c00104{letter-spacing:1.157120pt;}
.ls6c_c00104{letter-spacing:1.187253pt;}
.ls42_c00104{letter-spacing:1.240320pt;}
.ls2c_c00104{letter-spacing:1.246400pt;}
.ls73_c00104{letter-spacing:1.247520pt;}
.ls35_c00104{letter-spacing:1.264640pt;}
.ls65_c00104{letter-spacing:1.307787pt;}
.ls27_c00104{letter-spacing:1.361920pt;}
.ls17_c00104{letter-spacing:1.489600pt;}
.ls4d_c00104{letter-spacing:1.524427pt;}
.ls2f_c00104{letter-spacing:1.586880pt;}
.ls74_c00104{letter-spacing:1.600000pt;}
.lsa_c00104{letter-spacing:1.611200pt;}
.ls1a_c00104{letter-spacing:1.623360pt;}
.ls6d_c00104{letter-spacing:1.787520pt;}
.ls20_c00104{letter-spacing:1.903040pt;}
.ls39_c00104{letter-spacing:1.963840pt;}
.ls36_c00104{letter-spacing:2.091520pt;}
.ls3d_c00104{letter-spacing:2.182720pt;}
.ls84_c00104{letter-spacing:2.340800pt;}
.ls23_c00104{letter-spacing:2.401600pt;}
.ls41_c00104{letter-spacing:2.419840pt;}
.lse_c00104{letter-spacing:2.748160pt;}
.ls58_c00104{letter-spacing:3.013333pt;}
.ls5d_c00104{letter-spacing:3.040000pt;}
.ws2_c00104{word-spacing:-15.127040pt;}
.ws7_c00104{word-spacing:-15.120960pt;}
.ws6_c00104{word-spacing:-14.975040pt;}
.ws8_c00104{word-spacing:0.000000pt;}
.ws1_c00104{word-spacing:110.583040pt;}
.ws4_c00104{word-spacing:111.957120pt;}
.ws5_c00104{word-spacing:112.090880pt;}
.ws0_c00104{word-spacing:112.103040pt;}
.ws3_c00104{word-spacing:112.784000pt;}
._d_c00104{margin-left:-17.644160pt;}
._e_c00104{margin-left:-15.546560pt;}
._9_c00104{margin-left:-13.825920pt;}
._b_c00104{margin-left:-12.780160pt;}
._a_c00104{margin-left:-11.339733pt;}
._f_c00104{margin-left:-10.141440pt;}
._8_c00104{margin-left:-6.780853pt;}
._c_c00104{margin-left:-5.654400pt;}
._5_c00104{margin-left:-4.097920pt;}
._3_c00104{margin-left:-2.492800pt;}
._7_c00104{margin-left:-1.051840pt;}
._6_c00104{width:0.942400pt;}
._4_c00104{width:2.299733pt;}
._0_c00104{width:3.301440pt;}
._2_c00104{width:4.393333pt;}
._1_c00104{width:5.853227pt;}
._12_c00104{width:6.840000pt;}
._14_c00104{width:8.147200pt;}
._11_c00104{width:11.772693pt;}
._13_c00104{width:15.352000pt;}
._10_c00104{width:1454.677333pt;}
.fs7_c00104{font-size:32.000000pt;}
.fs0_c00104{font-size:53.866667pt;}
.fsa_c00104{font-size:57.600000pt;}
.fs2_c00104{font-size:60.266667pt;}
.fs1_c00104{font-size:60.800000pt;}
.fs3_c00104{font-size:61.333333pt;}
.fs5_c00104{font-size:62.400000pt;}
.fs4_c00104{font-size:64.000000pt;}
.fs9_c00104{font-size:64.533333pt;}
.fs6_c00104{font-size:65.066667pt;}
.fs8_c00104{font-size:68.800000pt;}
.y0_c00104{bottom:0.000000pt;}
.y24_c00104{bottom:54.093339pt;}
.y23_c00104{bottom:123.533339pt;}
.y22_c00104{bottom:178.893339pt;}
.y21_c00104{bottom:207.360005pt;}
.y20_c00104{bottom:262.080005pt;}
.y1f_c00104{bottom:290.560005pt;}
.y1d_c00104{bottom:347.206939pt;}
.y1e_c00104{bottom:347.213339pt;}
.y1c_c00104{bottom:375.053339pt;}
.y16_c00104{bottom:402.253339pt;}
.y1b_c00104{bottom:403.213339pt;}
.y1a_c00104{bottom:430.720005pt;}
.y15_c00104{bottom:457.933339pt;}
.y19_c00104{bottom:458.893339pt;}
.y18_c00104{bottom:464.640005pt;}
.y17_c00104{bottom:486.413339pt;}
.y13_c00104{bottom:514.890405pt;}
.y14_c00104{bottom:514.893339pt;}
.y12_c00104{bottom:543.360005pt;}
.y10_c00104{bottom:571.201605pt;}
.y11_c00104{bottom:571.213339pt;}
.yf_c00104{bottom:598.713605pt;}
.ye_c00104{bottom:626.560005pt;}
.yd_c00104{bottom:654.413339pt;}
.yb_c00104{bottom:682.233605pt;}
.yc_c00104{bottom:682.240005pt;}
.ya_c00104{bottom:710.080005pt;}
.y8_c00104{bottom:737.914405pt;}
.y9_c00104{bottom:737.920005pt;}
.y7_c00104{bottom:766.080005pt;}
.y6_c00104{bottom:794.240005pt;}
.y5_c00104{bottom:849.600539pt;}
.y4_c00104{bottom:905.293339pt;}
.y3_c00104{bottom:960.653339pt;}
.y2_c00104{bottom:988.813339pt;}
.y1_c00104{bottom:1055.053339pt;}
.hc_c00104{height:33.375000pt;}
.h2_c00104{height:52.867187pt;}
.hf_c00104{height:56.531250pt;}
.h4_c00104{height:59.119010pt;}
.h3_c00104{height:59.671875pt;}
.h8_c00104{height:59.683608pt;}
.h5_c00104{height:60.195312pt;}
.h7_c00104{height:61.211719pt;}
.he_c00104{height:63.335938pt;}
.hb_c00104{height:63.412500pt;}
.ha_c00104{height:63.827604pt;}
.h9_c00104{height:63.859375pt;}
.h6_c00104{height:66.750000pt;}
.hd_c00104{height:67.489844pt;}
.h1_c00104{height:1122.666667pt;}
.h0_c00104{height:1122.880005pt;}
.w1_c00104{width:793.333333pt;}
.w0_c00104{width:793.599999pt;}
.x0_c00104{left:0.000000pt;}
.xf_c00104{left:113.820532pt;}
.xa_c00104{left:114.853332pt;}
.x1_c00104{left:116.093332pt;}
.x25_c00104{left:155.097865pt;}
.x28_c00104{left:160.879999pt;}
.x12_c00104{left:162.213332pt;}
.xc_c00104{left:163.106665pt;}
.x24_c00104{left:183.506665pt;}
.x21_c00104{left:191.066665pt;}
.xd_c00104{left:193.133332pt;}
.x29_c00104{left:198.519999pt;}
.x2a_c00104{left:212.946665pt;}
.x27_c00104{left:231.173332pt;}
.x2b_c00104{left:238.586665pt;}
.x1f_c00104{left:241.159999pt;}
.x20_c00104{left:295.879999pt;}
.x18_c00104{left:304.586665pt;}
.x2d_c00104{left:306.759999pt;}
.x19_c00104{left:325.453332pt;}
.x2e_c00104{left:336.893332pt;}
.x2_c00104{left:348.266665pt;}
.xb_c00104{left:352.186665pt;}
.x3_c00104{left:365.893332pt;}
.x2f_c00104{left:377.053332pt;}
.x32_c00104{left:385.439999pt;}
.x4_c00104{left:418.346665pt;}
.x5_c00104{left:436.626665pt;}
.x6_c00104{left:508.266665pt;}
.x30_c00104{left:524.666665pt;}
.x1a_c00104{left:525.733332pt;}
.x7_c00104{left:526.959999pt;}
.x31_c00104{left:546.893332pt;}
.x17_c00104{left:575.159999pt;}
.x1d_c00104{left:586.599999pt;}
.x26_c00104{left:589.866665pt;}
.x15_c00104{left:592.426665pt;}
.x22_c00104{left:595.959999pt;}
.x8_c00104{left:597.226665pt;}
.x1b_c00104{left:598.493332pt;}
.x10_c00104{left:604.893332pt;}
.x16_c00104{left:610.066665pt;}
.x13_c00104{left:610.986665pt;}
.x23_c00104{left:613.359999pt;}
.x9_c00104{left:615.919999pt;}
.x1e_c00104{left:618.173332pt;}
.x1c_c00104{left:619.093332pt;}
.x11_c00104{left:625.213332pt;}
.x14_c00104{left:627.653332pt;}
.x2c_c00104{left:637.999999pt;}
.xe_c00104{left:663.039999pt;}
}





/* 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_c00105 {
    display:none;
  }
  .loading-indicator_c00105.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00105 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_c00105 { 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_c00105" -> "#page-container .classname_c00105")
 */
.pf_c00105 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00105 { /* 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_c00105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00105 { /* 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_c00105 { /* 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_c00105 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00105 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00105 {overflow:visible;}
  }
}
.c_c00105 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00105 { /* 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_c00105:after { /* webkit #35443 */
  content: '';
}
.t_c00105:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00105 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 */
}
.__c00105 { /* 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_c00105 { /* info for Javascript */
  display:none;
}
.l_c00105 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00105 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00105 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00105: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_c00105 {
    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_c00105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00105.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_c00105 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00105;src:url('chunks/assets/font_b66545353932b0742a8bec02.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.284668;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_c00105;src:url('chunks/assets/font_a12607a0b351f2cc106be001.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.284180;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_c00105;src:url('chunks/assets/font_c0d3d5a3e201903bfd97d944.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;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;}
.m5_c00105{transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);}
.m2_c00105{transform:matrix(0.216342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216342,0.000000,0.000000,0.250000,0,0);}
.m7_c00105{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m0_c00105{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m1_c00105{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);}
.m6_c00105{transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);}
.m4_c00105{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.m8_c00105{transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);}
.m3_c00105{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.ls89_c00105{letter-spacing:-2.625000px;}
.ls97_c00105{letter-spacing:-2.373000px;}
.ls77_c00105{letter-spacing:-2.352000px;}
.ls7c_c00105{letter-spacing:-2.331000px;}
.ls7d_c00105{letter-spacing:-2.237760px;}
.ls7b_c00105{letter-spacing:-1.921920px;}
.ls9d_c00105{letter-spacing:-1.642200px;}
.ls79_c00105{letter-spacing:-1.612800px;}
.ls9f_c00105{letter-spacing:-1.176000px;}
.ls96_c00105{letter-spacing:-0.974400px;}
.ls9b_c00105{letter-spacing:-0.638400px;}
.ls78_c00105{letter-spacing:-0.598080px;}
.ls83_c00105{letter-spacing:-0.470400px;}
.ls9e_c00105{letter-spacing:-0.409920px;}
.ls98_c00105{letter-spacing:-0.349440px;}
.ls99_c00105{letter-spacing:-0.257640px;}
.ls7e_c00105{letter-spacing:-0.241920px;}
.ls95_c00105{letter-spacing:-0.235200px;}
.ls8c_c00105{letter-spacing:-0.026880px;}
.ls7f_c00105{letter-spacing:0.000000px;}
.ls86_c00105{letter-spacing:0.033600px;}
.ls56_c00105{letter-spacing:0.073920px;}
.ls6_c00105{letter-spacing:0.120960px;}
.ls54_c00105{letter-spacing:0.161280px;}
.ls88_c00105{letter-spacing:0.168000px;}
.ls39_c00105{letter-spacing:0.188160px;}
.ls7_c00105{letter-spacing:0.201600px;}
.ls92_c00105{letter-spacing:0.215040px;}
.ls6a_c00105{letter-spacing:0.223740px;}
.ls59_c00105{letter-spacing:0.241920px;}
.ls6c_c00105{letter-spacing:0.255360px;}
.ls60_c00105{letter-spacing:0.295680px;}
.ls20_c00105{letter-spacing:0.309120px;}
.ls4c_c00105{letter-spacing:0.329280px;}
.ls8_c00105{letter-spacing:0.396480px;}
.ls2f_c00105{letter-spacing:0.423360px;}
.ls48_c00105{letter-spacing:0.430080px;}
.ls7a_c00105{letter-spacing:0.436800px;}
.ls46_c00105{letter-spacing:0.443520px;}
.ls65_c00105{letter-spacing:0.463680px;}
.lsa_c00105{letter-spacing:0.488160px;}
.ls4f_c00105{letter-spacing:0.490560px;}
.ls5_c00105{letter-spacing:0.497280px;}
.ls36_c00105{letter-spacing:0.504000px;}
.ls74_c00105{letter-spacing:0.517440px;}
.ls8a_c00105{letter-spacing:0.524160px;}
.ls42_c00105{letter-spacing:0.551040px;}
.ls70_c00105{letter-spacing:0.571200px;}
.ls38_c00105{letter-spacing:0.576300px;}
.ls3b_c00105{letter-spacing:0.584640px;}
.ls9a_c00105{letter-spacing:0.591360px;}
.ls40_c00105{letter-spacing:0.598080px;}
.ls2b_c00105{letter-spacing:0.618240px;}
.ls6b_c00105{letter-spacing:0.651840px;}
.ls4_c00105{letter-spacing:0.657660px;}
.ls5f_c00105{letter-spacing:0.665280px;}
.ls8e_c00105{letter-spacing:0.672000px;}
.lsc_c00105{letter-spacing:0.678720px;}
.ls11_c00105{letter-spacing:0.685440px;}
.ls45_c00105{letter-spacing:0.692160px;}
.ls58_c00105{letter-spacing:0.705600px;}
.ls1f_c00105{letter-spacing:0.712320px;}
.ls67_c00105{letter-spacing:0.719040px;}
.ls5c_c00105{letter-spacing:0.725460px;}
.ls2_c00105{letter-spacing:0.739200px;}
.ls82_c00105{letter-spacing:0.745920px;}
.ls93_c00105{letter-spacing:0.752640px;}
.lsb_c00105{letter-spacing:0.766080px;}
.ls35_c00105{letter-spacing:0.779520px;}
.ls57_c00105{letter-spacing:0.813120px;}
.ls10_c00105{letter-spacing:0.819840px;}
.ls25_c00105{letter-spacing:0.833280px;}
.lse_c00105{letter-spacing:0.840000px;}
.ls28_c00105{letter-spacing:0.846720px;}
.ls5e_c00105{letter-spacing:0.853440px;}
.ls29_c00105{letter-spacing:0.873600px;}
.ls8b_c00105{letter-spacing:0.880320px;}
.ls5d_c00105{letter-spacing:0.887040px;}
.lsd_c00105{letter-spacing:0.894960px;}
.ls23_c00105{letter-spacing:0.900480px;}
.ls41_c00105{letter-spacing:0.907200px;}
.ls3c_c00105{letter-spacing:0.913920px;}
.ls73_c00105{letter-spacing:0.940800px;}
.ls4a_c00105{letter-spacing:0.974400px;}
.ls1e_c00105{letter-spacing:1.001280px;}
.ls2d_c00105{letter-spacing:1.003440px;}
.ls9c_c00105{letter-spacing:1.008000px;}
.ls68_c00105{letter-spacing:1.014720px;}
.ls3_c00105{letter-spacing:1.017000px;}
.ls75_c00105{letter-spacing:1.034880px;}
.ls9_c00105{letter-spacing:1.037340px;}
.ls14_c00105{letter-spacing:1.061760px;}
.ls18_c00105{letter-spacing:1.068480px;}
.ls1a_c00105{letter-spacing:1.081920px;}
.ls5b_c00105{letter-spacing:1.102080px;}
.ls22_c00105{letter-spacing:1.108800px;}
.ls15_c00105{letter-spacing:1.122240px;}
.ls85_c00105{letter-spacing:1.128960px;}
.ls26_c00105{letter-spacing:1.135680px;}
.ls94_c00105{letter-spacing:1.142400px;}
.ls2e_c00105{letter-spacing:1.149120px;}
.ls0_c00105{letter-spacing:1.166160px;}
.ls6e_c00105{letter-spacing:1.169280px;}
.ls51_c00105{letter-spacing:1.196160px;}
.ls53_c00105{letter-spacing:1.202880px;}
.ls55_c00105{letter-spacing:1.209600px;}
.ls27_c00105{letter-spacing:1.216320px;}
.ls3e_c00105{letter-spacing:1.229760px;}
.ls32_c00105{letter-spacing:1.243200px;}
.ls5a_c00105{letter-spacing:1.256640px;}
.ls80_c00105{letter-spacing:1.290240px;}
.ls21_c00105{letter-spacing:1.317120px;}
.ls52_c00105{letter-spacing:1.330560px;}
.ls13_c00105{letter-spacing:1.350720px;}
.lsf_c00105{letter-spacing:1.357440px;}
.ls1d_c00105{letter-spacing:1.364160px;}
.ls6f_c00105{letter-spacing:1.384320px;}
.ls1b_c00105{letter-spacing:1.424640px;}
.ls30_c00105{letter-spacing:1.464960px;}
.ls37_c00105{letter-spacing:1.471680px;}
.ls3f_c00105{letter-spacing:1.498560px;}
.ls66_c00105{letter-spacing:1.505280px;}
.ls4e_c00105{letter-spacing:1.525440px;}
.ls3a_c00105{letter-spacing:1.538880px;}
.ls17_c00105{letter-spacing:1.565760px;}
.ls44_c00105{letter-spacing:1.579200px;}
.ls4d_c00105{letter-spacing:1.599360px;}
.ls47_c00105{letter-spacing:1.626240px;}
.ls71_c00105{letter-spacing:1.646400px;}
.ls33_c00105{letter-spacing:1.700160px;}
.ls91_c00105{letter-spacing:1.706880px;}
.ls2c_c00105{letter-spacing:1.740480px;}
.ls84_c00105{letter-spacing:1.827840px;}
.ls2a_c00105{letter-spacing:1.834560px;}
.ls1_c00105{letter-spacing:1.837380px;}
.ls61_c00105{letter-spacing:1.841280px;}
.ls19_c00105{letter-spacing:1.861440px;}
.ls4b_c00105{letter-spacing:1.868160px;}
.ls12_c00105{letter-spacing:1.888320px;}
.ls3d_c00105{letter-spacing:1.901760px;}
.ls1c_c00105{letter-spacing:1.935360px;}
.ls8d_c00105{letter-spacing:1.948800px;}
.ls69_c00105{letter-spacing:2.002560px;}
.ls50_c00105{letter-spacing:2.036160px;}
.ls76_c00105{letter-spacing:2.063040px;}
.ls90_c00105{letter-spacing:2.069760px;}
.ls8f_c00105{letter-spacing:2.244480px;}
.ls34_c00105{letter-spacing:2.311680px;}
.ls31_c00105{letter-spacing:2.358720px;}
.ls43_c00105{letter-spacing:2.425920px;}
.ls72_c00105{letter-spacing:2.439360px;}
.ls62_c00105{letter-spacing:2.493120px;}
.ls6d_c00105{letter-spacing:2.620800px;}
.ls24_c00105{letter-spacing:2.634240px;}
.ls87_c00105{letter-spacing:2.654400px;}
.ls64_c00105{letter-spacing:2.688000px;}
.ls16_c00105{letter-spacing:2.755200px;}
.ls49_c00105{letter-spacing:3.124800px;}
.ls63_c00105{letter-spacing:3.346560px;}
.ls81_c00105{letter-spacing:3.360000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{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__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00105{word-spacing:0.000000px;}
.ws3_c00105{word-spacing:6.423900px;}
.ws1_c00105{word-spacing:11.639640px;}
.ws0_c00105{word-spacing:11.906760px;}
.ws2_c00105{word-spacing:19.162800px;}
._0_c00105{margin-left:-7.024080px;}
._10_c00105{margin-left:-5.804760px;}
._a_c00105{margin-left:-4.683840px;}
._5_c00105{margin-left:-3.661200px;}
._1_c00105{margin-left:-1.439400px;}
._3_c00105{width:1.370880px;}
._6_c00105{width:2.838660px;}
._2_c00105{width:4.032000px;}
._9_c00105{width:5.705280px;}
._8_c00105{width:7.620480px;}
._7_c00105{width:9.347520px;}
._d_c00105{width:10.678080px;}
._c_c00105{width:12.243840px;}
._4_c00105{width:13.372800px;}
._b_c00105{width:15.328320px;}
._e_c00105{width:16.625280px;}
._f_c00105{width:18.634560px;}
._19_c00105{width:20.560560px;}
._11_c00105{width:21.840000px;}
._14_c00105{width:24.064320px;}
._16_c00105{width:25.132320px;}
._15_c00105{width:27.081600px;}
._12_c00105{width:28.331520px;}
._17_c00105{width:29.699520px;}
._13_c00105{width:31.100160px;}
._18_c00105{width:32.202720px;}
.fc0_c00105{color:transparent;}
.fs5_c00105{font-size:58.800000px;}
.fs2_c00105{font-size:66.600000px;}
.fs0_c00105{font-size:67.200000px;}
.fs1_c00105{font-size:67.800000px;}
.fs4_c00105{font-size:69.000000px;}
.fs3_c00105{font-size:75.000000px;}
.y0_c00105{bottom:0.000000px;}
.y1e_c00105{bottom:70.215015px;}
.y1d_c00105{bottom:275.412615px;}
.y1b_c00105{bottom:306.372615px;}
.y1c_c00105{bottom:306.375015px;}
.y1a_c00105{bottom:337.335015px;}
.y19_c00105{bottom:399.979815px;}
.y18_c00105{bottom:431.301615px;}
.y17_c00105{bottom:462.600015px;}
.y15_c00105{bottom:525.595815px;}
.y16_c00105{bottom:525.600015px;}
.y14_c00105{bottom:556.567815px;}
.y13_c00105{bottom:588.252615px;}
.y12_c00105{bottom:619.215015px;}
.y11_c00105{bottom:619.226415px;}
.y10_c00105{bottom:650.524815px;}
.yf_c00105{bottom:681.840015px;}
.ye_c00105{bottom:744.475815px;}
.yd_c00105{bottom:775.455015px;}
.yc_c00105{bottom:775.459815px;}
.yb_c00105{bottom:806.775015px;}
.ya_c00105{bottom:870.139815px;}
.y9_c00105{bottom:901.455015px;}
.y8_c00105{bottom:901.469415px;}
.y7_c00105{bottom:932.784615px;}
.y6_c00105{bottom:964.099815px;}
.y5_c00105{bottom:995.415015px;}
.y4_c00105{bottom:1057.680015px;}
.y3_c00105{bottom:1088.655015px;}
.y2_c00105{bottom:1120.335015px;}
.y1_c00105{bottom:1194.840015px;}
.ha_c00105{height:57.708984px;}
.h2_c00105{height:65.953125px;}
.h7_c00105{height:65.969925px;}
.h6_c00105{height:65.981925px;}
.h3_c00105{height:66.508887px;}
.h4_c00105{height:69.461719px;}
.h8_c00105{height:70.713281px;}
.h9_c00105{height:71.974444px;}
.h5_c00105{height:78.222656px;}
.h1_c00105{height:1263.000000px;}
.h0_c00105{height:1263.240015px;}
.w1_c00105{width:892.500000px;}
.w0_c00105{width:892.800015px;}
.x0_c00105{left:0.000000px;}
.x15_c00105{left:126.539415px;}
.x1_c00105{left:128.085015px;}
.x14_c00105{left:181.245015px;}
.x2_c00105{left:182.295015px;}
.x16_c00105{left:253.710015px;}
.x17_c00105{left:276.405015px;}
.x9_c00105{left:409.935015px;}
.x1a_c00105{left:430.035015px;}
.xa_c00105{left:444.075015px;}
.x18_c00105{left:471.150015px;}
.x7_c00105{left:482.310015px;}
.x19_c00105{left:494.820015px;}
.x13_c00105{left:503.400015px;}
.x8_c00105{left:506.640015px;}
.x3_c00105{left:556.770015px;}
.x4_c00105{left:573.135015px;}
.xb_c00105{left:592.455015px;}
.xf_c00105{left:614.700015px;}
.xc_c00105{left:634.590015px;}
.x10_c00105{left:640.065015px;}
.x5_c00105{left:643.500015px;}
.x6_c00105{left:667.410015px;}
.xd_c00105{left:686.715015px;}
.xe_c00105{left:708.405015px;}
.x11_c00105{left:710.460015px;}
.x12_c00105{left:734.610015px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls89_c00105{letter-spacing:-2.333333pt;}
.ls97_c00105{letter-spacing:-2.109333pt;}
.ls77_c00105{letter-spacing:-2.090667pt;}
.ls7c_c00105{letter-spacing:-2.072000pt;}
.ls7d_c00105{letter-spacing:-1.989120pt;}
.ls7b_c00105{letter-spacing:-1.708373pt;}
.ls9d_c00105{letter-spacing:-1.459733pt;}
.ls79_c00105{letter-spacing:-1.433600pt;}
.ls9f_c00105{letter-spacing:-1.045333pt;}
.ls96_c00105{letter-spacing:-0.866133pt;}
.ls9b_c00105{letter-spacing:-0.567467pt;}
.ls78_c00105{letter-spacing:-0.531627pt;}
.ls83_c00105{letter-spacing:-0.418133pt;}
.ls9e_c00105{letter-spacing:-0.364373pt;}
.ls98_c00105{letter-spacing:-0.310613pt;}
.ls99_c00105{letter-spacing:-0.229013pt;}
.ls7e_c00105{letter-spacing:-0.215040pt;}
.ls95_c00105{letter-spacing:-0.209067pt;}
.ls8c_c00105{letter-spacing:-0.023893pt;}
.ls7f_c00105{letter-spacing:0.000000pt;}
.ls86_c00105{letter-spacing:0.029867pt;}
.ls56_c00105{letter-spacing:0.065707pt;}
.ls6_c00105{letter-spacing:0.107520pt;}
.ls54_c00105{letter-spacing:0.143360pt;}
.ls88_c00105{letter-spacing:0.149333pt;}
.ls39_c00105{letter-spacing:0.167253pt;}
.ls7_c00105{letter-spacing:0.179200pt;}
.ls92_c00105{letter-spacing:0.191147pt;}
.ls6a_c00105{letter-spacing:0.198880pt;}
.ls59_c00105{letter-spacing:0.215040pt;}
.ls6c_c00105{letter-spacing:0.226987pt;}
.ls60_c00105{letter-spacing:0.262827pt;}
.ls20_c00105{letter-spacing:0.274773pt;}
.ls4c_c00105{letter-spacing:0.292693pt;}
.ls8_c00105{letter-spacing:0.352427pt;}
.ls2f_c00105{letter-spacing:0.376320pt;}
.ls48_c00105{letter-spacing:0.382293pt;}
.ls7a_c00105{letter-spacing:0.388267pt;}
.ls46_c00105{letter-spacing:0.394240pt;}
.ls65_c00105{letter-spacing:0.412160pt;}
.lsa_c00105{letter-spacing:0.433920pt;}
.ls4f_c00105{letter-spacing:0.436053pt;}
.ls5_c00105{letter-spacing:0.442027pt;}
.ls36_c00105{letter-spacing:0.448000pt;}
.ls74_c00105{letter-spacing:0.459947pt;}
.ls8a_c00105{letter-spacing:0.465920pt;}
.ls42_c00105{letter-spacing:0.489813pt;}
.ls70_c00105{letter-spacing:0.507733pt;}
.ls38_c00105{letter-spacing:0.512267pt;}
.ls3b_c00105{letter-spacing:0.519680pt;}
.ls9a_c00105{letter-spacing:0.525653pt;}
.ls40_c00105{letter-spacing:0.531627pt;}
.ls2b_c00105{letter-spacing:0.549547pt;}
.ls6b_c00105{letter-spacing:0.579413pt;}
.ls4_c00105{letter-spacing:0.584587pt;}
.ls5f_c00105{letter-spacing:0.591360pt;}
.ls8e_c00105{letter-spacing:0.597333pt;}
.lsc_c00105{letter-spacing:0.603307pt;}
.ls11_c00105{letter-spacing:0.609280pt;}
.ls45_c00105{letter-spacing:0.615253pt;}
.ls58_c00105{letter-spacing:0.627200pt;}
.ls1f_c00105{letter-spacing:0.633173pt;}
.ls67_c00105{letter-spacing:0.639147pt;}
.ls5c_c00105{letter-spacing:0.644853pt;}
.ls2_c00105{letter-spacing:0.657067pt;}
.ls82_c00105{letter-spacing:0.663040pt;}
.ls93_c00105{letter-spacing:0.669013pt;}
.lsb_c00105{letter-spacing:0.680960pt;}
.ls35_c00105{letter-spacing:0.692907pt;}
.ls57_c00105{letter-spacing:0.722773pt;}
.ls10_c00105{letter-spacing:0.728747pt;}
.ls25_c00105{letter-spacing:0.740693pt;}
.lse_c00105{letter-spacing:0.746667pt;}
.ls28_c00105{letter-spacing:0.752640pt;}
.ls5e_c00105{letter-spacing:0.758613pt;}
.ls29_c00105{letter-spacing:0.776533pt;}
.ls8b_c00105{letter-spacing:0.782507pt;}
.ls5d_c00105{letter-spacing:0.788480pt;}
.lsd_c00105{letter-spacing:0.795520pt;}
.ls23_c00105{letter-spacing:0.800427pt;}
.ls41_c00105{letter-spacing:0.806400pt;}
.ls3c_c00105{letter-spacing:0.812373pt;}
.ls73_c00105{letter-spacing:0.836267pt;}
.ls4a_c00105{letter-spacing:0.866133pt;}
.ls1e_c00105{letter-spacing:0.890027pt;}
.ls2d_c00105{letter-spacing:0.891947pt;}
.ls9c_c00105{letter-spacing:0.896000pt;}
.ls68_c00105{letter-spacing:0.901973pt;}
.ls3_c00105{letter-spacing:0.904000pt;}
.ls75_c00105{letter-spacing:0.919893pt;}
.ls9_c00105{letter-spacing:0.922080pt;}
.ls14_c00105{letter-spacing:0.943787pt;}
.ls18_c00105{letter-spacing:0.949760pt;}
.ls1a_c00105{letter-spacing:0.961707pt;}
.ls5b_c00105{letter-spacing:0.979627pt;}
.ls22_c00105{letter-spacing:0.985600pt;}
.ls15_c00105{letter-spacing:0.997547pt;}
.ls85_c00105{letter-spacing:1.003520pt;}
.ls26_c00105{letter-spacing:1.009493pt;}
.ls94_c00105{letter-spacing:1.015467pt;}
.ls2e_c00105{letter-spacing:1.021440pt;}
.ls0_c00105{letter-spacing:1.036587pt;}
.ls6e_c00105{letter-spacing:1.039360pt;}
.ls51_c00105{letter-spacing:1.063253pt;}
.ls53_c00105{letter-spacing:1.069227pt;}
.ls55_c00105{letter-spacing:1.075200pt;}
.ls27_c00105{letter-spacing:1.081173pt;}
.ls3e_c00105{letter-spacing:1.093120pt;}
.ls32_c00105{letter-spacing:1.105067pt;}
.ls5a_c00105{letter-spacing:1.117013pt;}
.ls80_c00105{letter-spacing:1.146880pt;}
.ls21_c00105{letter-spacing:1.170773pt;}
.ls52_c00105{letter-spacing:1.182720pt;}
.ls13_c00105{letter-spacing:1.200640pt;}
.lsf_c00105{letter-spacing:1.206613pt;}
.ls1d_c00105{letter-spacing:1.212587pt;}
.ls6f_c00105{letter-spacing:1.230507pt;}
.ls1b_c00105{letter-spacing:1.266347pt;}
.ls30_c00105{letter-spacing:1.302187pt;}
.ls37_c00105{letter-spacing:1.308160pt;}
.ls3f_c00105{letter-spacing:1.332053pt;}
.ls66_c00105{letter-spacing:1.338027pt;}
.ls4e_c00105{letter-spacing:1.355947pt;}
.ls3a_c00105{letter-spacing:1.367893pt;}
.ls17_c00105{letter-spacing:1.391787pt;}
.ls44_c00105{letter-spacing:1.403733pt;}
.ls4d_c00105{letter-spacing:1.421653pt;}
.ls47_c00105{letter-spacing:1.445547pt;}
.ls71_c00105{letter-spacing:1.463467pt;}
.ls33_c00105{letter-spacing:1.511253pt;}
.ls91_c00105{letter-spacing:1.517227pt;}
.ls2c_c00105{letter-spacing:1.547093pt;}
.ls84_c00105{letter-spacing:1.624747pt;}
.ls2a_c00105{letter-spacing:1.630720pt;}
.ls1_c00105{letter-spacing:1.633227pt;}
.ls61_c00105{letter-spacing:1.636693pt;}
.ls19_c00105{letter-spacing:1.654613pt;}
.ls4b_c00105{letter-spacing:1.660587pt;}
.ls12_c00105{letter-spacing:1.678507pt;}
.ls3d_c00105{letter-spacing:1.690453pt;}
.ls1c_c00105{letter-spacing:1.720320pt;}
.ls8d_c00105{letter-spacing:1.732267pt;}
.ls69_c00105{letter-spacing:1.780053pt;}
.ls50_c00105{letter-spacing:1.809920pt;}
.ls76_c00105{letter-spacing:1.833813pt;}
.ls90_c00105{letter-spacing:1.839787pt;}
.ls8f_c00105{letter-spacing:1.995093pt;}
.ls34_c00105{letter-spacing:2.054827pt;}
.ls31_c00105{letter-spacing:2.096640pt;}
.ls43_c00105{letter-spacing:2.156373pt;}
.ls72_c00105{letter-spacing:2.168320pt;}
.ls62_c00105{letter-spacing:2.216107pt;}
.ls6d_c00105{letter-spacing:2.329600pt;}
.ls24_c00105{letter-spacing:2.341547pt;}
.ls87_c00105{letter-spacing:2.359467pt;}
.ls64_c00105{letter-spacing:2.389333pt;}
.ls16_c00105{letter-spacing:2.449067pt;}
.ls49_c00105{letter-spacing:2.777600pt;}
.ls63_c00105{letter-spacing:2.974720pt;}
.ls81_c00105{letter-spacing:2.986667pt;}
.ws4_c00105{word-spacing:0.000000pt;}
.ws3_c00105{word-spacing:5.710133pt;}
.ws1_c00105{word-spacing:10.346347pt;}
.ws0_c00105{word-spacing:10.583787pt;}
.ws2_c00105{word-spacing:17.033600pt;}
._0_c00105{margin-left:-6.243627pt;}
._10_c00105{margin-left:-5.159787pt;}
._a_c00105{margin-left:-4.163413pt;}
._5_c00105{margin-left:-3.254400pt;}
._1_c00105{margin-left:-1.279467pt;}
._3_c00105{width:1.218560pt;}
._6_c00105{width:2.523253pt;}
._2_c00105{width:3.584000pt;}
._9_c00105{width:5.071360pt;}
._8_c00105{width:6.773760pt;}
._7_c00105{width:8.308907pt;}
._d_c00105{width:9.491627pt;}
._c_c00105{width:10.883413pt;}
._4_c00105{width:11.886933pt;}
._b_c00105{width:13.625173pt;}
._e_c00105{width:14.778027pt;}
._f_c00105{width:16.564053pt;}
._19_c00105{width:18.276053pt;}
._11_c00105{width:19.413333pt;}
._14_c00105{width:21.390507pt;}
._16_c00105{width:22.339840pt;}
._15_c00105{width:24.072533pt;}
._12_c00105{width:25.183573pt;}
._17_c00105{width:26.399573pt;}
._13_c00105{width:27.644587pt;}
._18_c00105{width:28.624640pt;}
.fs5_c00105{font-size:52.266667pt;}
.fs2_c00105{font-size:59.200000pt;}
.fs0_c00105{font-size:59.733333pt;}
.fs1_c00105{font-size:60.266667pt;}
.fs4_c00105{font-size:61.333333pt;}
.fs3_c00105{font-size:66.666667pt;}
.y0_c00105{bottom:0.000000pt;}
.y1e_c00105{bottom:62.413347pt;}
.y1d_c00105{bottom:244.811213pt;}
.y1b_c00105{bottom:272.331213pt;}
.y1c_c00105{bottom:272.333347pt;}
.y1a_c00105{bottom:299.853347pt;}
.y19_c00105{bottom:355.537613pt;}
.y18_c00105{bottom:383.379213pt;}
.y17_c00105{bottom:411.200013pt;}
.y15_c00105{bottom:467.196280pt;}
.y16_c00105{bottom:467.200013pt;}
.y14_c00105{bottom:494.726947pt;}
.y13_c00105{bottom:522.891213pt;}
.y12_c00105{bottom:550.413347pt;}
.y11_c00105{bottom:550.423480pt;}
.y10_c00105{bottom:578.244280pt;}
.yf_c00105{bottom:606.080013pt;}
.ye_c00105{bottom:661.756280pt;}
.yd_c00105{bottom:689.293347pt;}
.yc_c00105{bottom:689.297613pt;}
.yb_c00105{bottom:717.133347pt;}
.ya_c00105{bottom:773.457613pt;}
.y9_c00105{bottom:801.293347pt;}
.y8_c00105{bottom:801.306147pt;}
.y7_c00105{bottom:829.141880pt;}
.y6_c00105{bottom:856.977613pt;}
.y5_c00105{bottom:884.813347pt;}
.y4_c00105{bottom:940.160013pt;}
.y3_c00105{bottom:967.693347pt;}
.y2_c00105{bottom:995.853347pt;}
.y1_c00105{bottom:1062.080013pt;}
.ha_c00105{height:51.296875pt;}
.h2_c00105{height:58.625000pt;}
.h7_c00105{height:58.639933pt;}
.h6_c00105{height:58.650600pt;}
.h3_c00105{height:59.119010pt;}
.h4_c00105{height:61.743750pt;}
.h8_c00105{height:62.856250pt;}
.h9_c00105{height:63.977283pt;}
.h5_c00105{height:69.531250pt;}
.h1_c00105{height:1122.666667pt;}
.h0_c00105{height:1122.880013pt;}
.w1_c00105{width:793.333333pt;}
.w0_c00105{width:793.600013pt;}
.x0_c00105{left:0.000000pt;}
.x15_c00105{left:112.479480pt;}
.x1_c00105{left:113.853347pt;}
.x14_c00105{left:161.106680pt;}
.x2_c00105{left:162.040013pt;}
.x16_c00105{left:225.520013pt;}
.x17_c00105{left:245.693347pt;}
.x9_c00105{left:364.386680pt;}
.x1a_c00105{left:382.253347pt;}
.xa_c00105{left:394.733347pt;}
.x18_c00105{left:418.800013pt;}
.x7_c00105{left:428.720013pt;}
.x19_c00105{left:439.840013pt;}
.x13_c00105{left:447.466680pt;}
.x8_c00105{left:450.346680pt;}
.x3_c00105{left:494.906680pt;}
.x4_c00105{left:509.453347pt;}
.xb_c00105{left:526.626680pt;}
.xf_c00105{left:546.400013pt;}
.xc_c00105{left:564.080013pt;}
.x10_c00105{left:568.946680pt;}
.x5_c00105{left:572.000013pt;}
.x6_c00105{left:593.253347pt;}
.xd_c00105{left:610.413347pt;}
.xe_c00105{left:629.693347pt;}
.x11_c00105{left:631.520013pt;}
.x12_c00105{left:652.986680pt;}
}





/* 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_c00106 {
    display:none;
  }
  .loading-indicator_c00106.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00106 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_c00106 { 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_c00106" -> "#page-container .classname_c00106")
 */
.pf_c00106 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00106 { /* 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_c00106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00106 { /* 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_c00106 { /* 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_c00106 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00106 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00106 {overflow:visible;}
  }
}
.c_c00106 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00106 { /* 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_c00106:after { /* webkit #35443 */
  content: '';
}
.t_c00106:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00106 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 */
}
.__c00106 { /* 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_c00106 { /* info for Javascript */
  display:none;
}
.l_c00106 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00106 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00106 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00106: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_c00106 {
    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_c00106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00106.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_c00106 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00106;src:url('chunks/assets/font_31cb56843bba22cd2aecaa3e.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;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:ff2_c00106;src:url('chunks/assets/font_bb78d23219e9563f6bf89e6f.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.284180;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_c00106;src:url('chunks/assets/font_71b4abf5c78056694a318c23.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:1.284668;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;}
.m6_c00106{transform:matrix(0.150027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150027,0.000000,0.000000,0.250000,0,0);}
.m10_c00106{transform:matrix(0.229960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229960,0.000000,0.000000,0.250000,0,0);}
.m3_c00106{transform:matrix(0.241391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241391,0.000000,0.000000,0.250000,0,0);}
.mb_c00106{transform:matrix(0.241546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241546,0.000000,0.000000,0.250000,0,0);}
.m9_c00106{transform:matrix(0.248412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248412,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);}
.m0_c00106{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);}
.m5_c00106{transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);}
.mc_c00106{transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);}
.m7_c00106{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.mf_c00106{transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);}
.ma_c00106{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.md_c00106{transform:matrix(0.253471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253471,0.000000,0.000000,0.250000,0,0);}
.me_c00106{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.m4_c00106{transform:matrix(0.255525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255525,0.000000,0.000000,0.250000,0,0);}
.m8_c00106{transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);}
.m2_c00106{transform:matrix(0.259558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259558,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls77_c00106{letter-spacing:-2.688000px;}
.ls7d_c00106{letter-spacing:-2.625000px;}
.ls81_c00106{letter-spacing:-2.394000px;}
.ls6a_c00106{letter-spacing:-2.352000px;}
.ls8d_c00106{letter-spacing:-2.074680px;}
.ls6b_c00106{letter-spacing:-1.612800px;}
.ls6e_c00106{letter-spacing:-1.438080px;}
.ls6c_c00106{letter-spacing:-1.135680px;}
.ls71_c00106{letter-spacing:-0.873600px;}
.ls75_c00106{letter-spacing:-0.739200px;}
.ls8b_c00106{letter-spacing:-0.651840px;}
.ls8a_c00106{letter-spacing:-0.483840px;}
.ls85_c00106{letter-spacing:-0.383040px;}
.ls70_c00106{letter-spacing:-0.262080px;}
.ls7b_c00106{letter-spacing:-0.116280px;}
.ls80_c00106{letter-spacing:-0.114240px;}
.ls68_c00106{letter-spacing:0.000000px;}
.ls61_c00106{letter-spacing:0.087360px;}
.lsf_c00106{letter-spacing:0.120960px;}
.ls83_c00106{letter-spacing:0.215040px;}
.ls72_c00106{letter-spacing:0.228480px;}
.ls36_c00106{letter-spacing:0.329280px;}
.ls1e_c00106{letter-spacing:0.349440px;}
.ls9_c00106{letter-spacing:0.362880px;}
.ls34_c00106{letter-spacing:0.383040px;}
.ls6f_c00106{letter-spacing:0.403200px;}
.ls8c_c00106{letter-spacing:0.409920px;}
.lsa_c00106{letter-spacing:0.477120px;}
.ls51_c00106{letter-spacing:0.504000px;}
.ls7c_c00106{letter-spacing:0.517440px;}
.ls4e_c00106{letter-spacing:0.524160px;}
.ls14_c00106{letter-spacing:0.526680px;}
.ls23_c00106{letter-spacing:0.557760px;}
.ls78_c00106{letter-spacing:0.571200px;}
.ls3d_c00106{letter-spacing:0.598080px;}
.ls2_c00106{letter-spacing:0.618240px;}
.ls66_c00106{letter-spacing:0.631680px;}
.ls64_c00106{letter-spacing:0.651840px;}
.ls47_c00106{letter-spacing:0.656640px;}
.ls5b_c00106{letter-spacing:0.658560px;}
.ls12_c00106{letter-spacing:0.672000px;}
.ls5_c00106{letter-spacing:0.678720px;}
.ls40_c00106{letter-spacing:0.690840px;}
.lse_c00106{letter-spacing:0.692160px;}
.ls88_c00106{letter-spacing:0.739200px;}
.ls8_c00106{letter-spacing:0.779760px;}
.lsd_c00106{letter-spacing:0.786600px;}
.ls49_c00106{letter-spacing:0.799680px;}
.ls44_c00106{letter-spacing:0.833280px;}
.ls2f_c00106{letter-spacing:0.841320px;}
.ls33_c00106{letter-spacing:0.860160px;}
.ls15_c00106{letter-spacing:0.861840px;}
.ls87_c00106{letter-spacing:0.873600px;}
.ls48_c00106{letter-spacing:0.900480px;}
.lsc_c00106{letter-spacing:0.907200px;}
.ls62_c00106{letter-spacing:0.909720px;}
.ls4b_c00106{letter-spacing:0.913920px;}
.ls55_c00106{letter-spacing:0.927360px;}
.ls35_c00106{letter-spacing:0.934080px;}
.ls2c_c00106{letter-spacing:0.950760px;}
.ls3c_c00106{letter-spacing:0.960960px;}
.ls10_c00106{letter-spacing:0.981120px;}
.ls7_c00106{letter-spacing:0.991800px;}
.ls65_c00106{letter-spacing:0.994560px;}
.ls6_c00106{letter-spacing:1.001280px;}
.ls63_c00106{letter-spacing:1.005480px;}
.ls3e_c00106{letter-spacing:1.014720px;}
.ls3b_c00106{letter-spacing:1.028160px;}
.ls26_c00106{letter-spacing:1.034880px;}
.ls11_c00106{letter-spacing:1.067040px;}
.ls54_c00106{letter-spacing:1.068480px;}
.ls13_c00106{letter-spacing:1.121760px;}
.ls50_c00106{letter-spacing:1.128960px;}
.ls29_c00106{letter-spacing:1.135680px;}
.ls19_c00106{letter-spacing:1.142400px;}
.lsb_c00106{letter-spacing:1.155840px;}
.ls7f_c00106{letter-spacing:1.169280px;}
.ls5f_c00106{letter-spacing:1.176000px;}
.ls84_c00106{letter-spacing:1.189440px;}
.ls4f_c00106{letter-spacing:1.196160px;}
.ls69_c00106{letter-spacing:1.202880px;}
.ls4c_c00106{letter-spacing:1.223040px;}
.ls56_c00106{letter-spacing:1.243200px;}
.ls3f_c00106{letter-spacing:1.249920px;}
.ls28_c00106{letter-spacing:1.276800px;}
.ls4d_c00106{letter-spacing:1.290240px;}
.ls86_c00106{letter-spacing:1.317120px;}
.ls7e_c00106{letter-spacing:1.330560px;}
.ls25_c00106{letter-spacing:1.350720px;}
.ls52_c00106{letter-spacing:1.357440px;}
.ls17_c00106{letter-spacing:1.377600px;}
.ls2a_c00106{letter-spacing:1.397760px;}
.ls30_c00106{letter-spacing:1.471680px;}
.ls1d_c00106{letter-spacing:1.485120px;}
.ls46_c00106{letter-spacing:1.491840px;}
.ls32_c00106{letter-spacing:1.505280px;}
.ls18_c00106{letter-spacing:1.538880px;}
.ls79_c00106{letter-spacing:1.552320px;}
.ls2d_c00106{letter-spacing:1.559040px;}
.ls37_c00106{letter-spacing:1.565760px;}
.ls4_c00106{letter-spacing:1.572480px;}
.ls38_c00106{letter-spacing:1.599360px;}
.ls22_c00106{letter-spacing:1.632960px;}
.ls5c_c00106{letter-spacing:1.653120px;}
.ls39_c00106{letter-spacing:1.686720px;}
.ls24_c00106{letter-spacing:1.693440px;}
.ls58_c00106{letter-spacing:1.706880px;}
.ls5d_c00106{letter-spacing:1.720320px;}
.ls27_c00106{letter-spacing:1.740480px;}
.ls82_c00106{letter-spacing:1.774080px;}
.ls60_c00106{letter-spacing:1.780800px;}
.ls45_c00106{letter-spacing:1.787520px;}
.ls1b_c00106{letter-spacing:1.834560px;}
.ls41_c00106{letter-spacing:1.841280px;}
.ls2e_c00106{letter-spacing:1.848000px;}
.ls43_c00106{letter-spacing:1.901760px;}
.ls5e_c00106{letter-spacing:1.915200px;}
.ls73_c00106{letter-spacing:1.935360px;}
.ls1a_c00106{letter-spacing:1.948800px;}
.ls1_c00106{letter-spacing:1.969920px;}
.ls31_c00106{letter-spacing:2.036160px;}
.ls0_c00106{letter-spacing:2.038320px;}
.ls76_c00106{letter-spacing:2.103360px;}
.ls4a_c00106{letter-spacing:2.143680px;}
.ls16_c00106{letter-spacing:2.177280px;}
.ls20_c00106{letter-spacing:2.184000px;}
.ls1f_c00106{letter-spacing:2.257920px;}
.ls67_c00106{letter-spacing:2.269440px;}
.ls59_c00106{letter-spacing:2.298240px;}
.ls3_c00106{letter-spacing:2.304960px;}
.ls53_c00106{letter-spacing:2.439360px;}
.ls5a_c00106{letter-spacing:2.441880px;}
.ls2b_c00106{letter-spacing:2.587200px;}
.ls57_c00106{letter-spacing:2.620800px;}
.ls21_c00106{letter-spacing:2.741760px;}
.ls1c_c00106{letter-spacing:2.755200px;}
.ls42_c00106{letter-spacing:2.976960px;}
.ls3a_c00106{letter-spacing:3.037440px;}
.ls89_c00106{letter-spacing:3.292800px;}
.ls74_c00106{letter-spacing:3.306240px;}
.ls6d_c00106{letter-spacing:3.360000px;}
.ls7a_c00106{letter-spacing:3.420000px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{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__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00106{word-spacing:-1.302240px;}
.ws4_c00106{word-spacing:0.000000px;}
.ws2_c00106{word-spacing:2.179200px;}
.ws0_c00106{word-spacing:7.497840px;}
.ws3_c00106{word-spacing:18.889800px;}
._e_c00106{margin-left:-9.031680px;}
._d_c00106{margin-left:-7.580160px;}
._f_c00106{margin-left:-6.289920px;}
._3_c00106{margin-left:-4.354560px;}
._0_c00106{margin-left:-2.900160px;}
._5_c00106{margin-left:-1.048320px;}
._4_c00106{width:1.737600px;}
._8_c00106{width:3.685680px;}
._1_c00106{width:4.800240px;}
._9_c00106{width:6.219360px;}
._b_c00106{width:7.365120px;}
._2_c00106{width:9.206400px;}
._c_c00106{width:11.356080px;}
._a_c00106{width:12.465600px;}
._6_c00106{width:13.964520px;}
._7_c00106{width:19.254600px;}
.fc0_c00106{color:transparent;}
.fs0_c00106{font-size:57.600000px;}
.fs5_c00106{font-size:61.200000px;}
.fs2_c00106{font-size:67.200000px;}
.fs1_c00106{font-size:68.400000px;}
.fs4_c00106{font-size:75.000000px;}
.fs3_c00106{font-size:76.800000px;}
.y0_c00106{bottom:0.000000px;}
.y22_c00106{bottom:68.055000px;}
.y21_c00106{bottom:146.520000px;}
.y1f_c00106{bottom:177.833400px;}
.y20_c00106{bottom:177.840000px;}
.y1e_c00106{bottom:239.775000px;}
.y1d_c00106{bottom:239.777400px;}
.y1c_c00106{bottom:271.815000px;}
.y1a_c00106{bottom:334.447800px;}
.y1b_c00106{bottom:334.455000px;}
.y19_c00106{bottom:366.855000px;}
.y18_c00106{bottom:398.175000px;}
.y17_c00106{bottom:460.815000px;}
.y16_c00106{bottom:460.821600px;}
.y15_c00106{bottom:492.120000px;}
.y13_c00106{bottom:554.772000px;}
.y14_c00106{bottom:554.775000px;}
.y12_c00106{bottom:586.440000px;}
.y11_c00106{bottom:586.443000px;}
.y10_c00106{bottom:617.775000px;}
.yf_c00106{bottom:680.415000px;}
.ye_c00106{bottom:743.421600px;}
.yc_c00106{bottom:774.715200px;}
.yd_c00106{bottom:774.720000px;}
.yb_c00106{bottom:806.400000px;}
.ya_c00106{bottom:869.775000px;}
.y9_c00106{bottom:901.080000px;}
.y8_c00106{bottom:932.400000px;}
.y7_c00106{bottom:963.720000px;}
.y6_c00106{bottom:1026.720000px;}
.y5_c00106{bottom:1026.723000px;}
.y4_c00106{bottom:1088.295000px;}
.y3_c00106{bottom:1088.297400px;}
.y2_c00106{bottom:1120.335000px;}
.y1_c00106{bottom:1196.295000px;}
.h9_c00106{height:60.064453px;}
.h2_c00106{height:60.075000px;}
.h4_c00106{height:65.953125px;}
.h7_c00106{height:65.965125px;}
.h3_c00106{height:67.097461px;}
.h8_c00106{height:71.339063px;}
.h6_c00106{height:73.608398px;}
.h5_c00106{height:75.375000px;}
.h1_c00106{height:1263.000000px;}
.h0_c00106{height:1263.240000px;}
.w1_c00106{width:892.500000px;}
.w0_c00106{width:892.800000px;}
.x0_c00106{left:0.000000px;}
.x27_c00106{left:121.226400px;}
.x1a_c00106{left:122.244600px;}
.xd_c00106{left:123.308400px;}
.x1_c00106{left:128.550000px;}
.x23_c00106{left:144.645000px;}
.x22_c00106{left:175.485000px;}
.x10_c00106{left:176.925000px;}
.x8_c00106{left:178.335000px;}
.x7_c00106{left:179.415000px;}
.x3_c00106{left:180.626400px;}
.x20_c00106{left:193.650000px;}
.x24_c00106{left:197.550000px;}
.x2d_c00106{left:217.575000px;}
.x4_c00106{left:222.615000px;}
.x21_c00106{left:224.925000px;}
.x2a_c00106{left:231.975000px;}
.x2e_c00106{left:233.820000px;}
.x5_c00106{left:239.220000px;}
.x2_c00106{left:311.895000px;}
.x28_c00106{left:337.230000px;}
.x29_c00106{left:359.925000px;}
.x2f_c00106{left:365.310000px;}
.x6_c00106{left:369.975000px;}
.x30_c00106{left:388.365000px;}
.x11_c00106{left:396.660000px;}
.x12_c00106{left:427.875000px;}
.x18_c00106{left:473.940000px;}
.x9_c00106{left:474.990000px;}
.x13_c00106{left:480.450000px;}
.x25_c00106{left:484.740000px;}
.xa_c00106{left:491.220000px;}
.x19_c00106{left:494.835000px;}
.xb_c00106{left:498.090000px;}
.x26_c00106{left:505.980000px;}
.xc_c00106{left:516.630000px;}
.x2b_c00106{left:529.020000px;}
.x1c_c00106{left:548.610000px;}
.x2c_c00106{left:549.645000px;}
.x1b_c00106{left:561.720000px;}
.x1d_c00106{left:585.555000px;}
.x14_c00106{left:604.995000px;}
.x15_c00106{left:622.320000px;}
.xe_c00106{left:664.560000px;}
.x1e_c00106{left:669.930000px;}
.xf_c00106{left:696.630000px;}
.x16_c00106{left:699.750000px;}
.x1f_c00106{left:707.235000px;}
.x17_c00106{left:737.460000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls77_c00106{letter-spacing:-2.389333pt;}
.ls7d_c00106{letter-spacing:-2.333333pt;}
.ls81_c00106{letter-spacing:-2.128000pt;}
.ls6a_c00106{letter-spacing:-2.090667pt;}
.ls8d_c00106{letter-spacing:-1.844160pt;}
.ls6b_c00106{letter-spacing:-1.433600pt;}
.ls6e_c00106{letter-spacing:-1.278293pt;}
.ls6c_c00106{letter-spacing:-1.009493pt;}
.ls71_c00106{letter-spacing:-0.776533pt;}
.ls75_c00106{letter-spacing:-0.657067pt;}
.ls8b_c00106{letter-spacing:-0.579413pt;}
.ls8a_c00106{letter-spacing:-0.430080pt;}
.ls85_c00106{letter-spacing:-0.340480pt;}
.ls70_c00106{letter-spacing:-0.232960pt;}
.ls7b_c00106{letter-spacing:-0.103360pt;}
.ls80_c00106{letter-spacing:-0.101547pt;}
.ls68_c00106{letter-spacing:0.000000pt;}
.ls61_c00106{letter-spacing:0.077653pt;}
.lsf_c00106{letter-spacing:0.107520pt;}
.ls83_c00106{letter-spacing:0.191147pt;}
.ls72_c00106{letter-spacing:0.203093pt;}
.ls36_c00106{letter-spacing:0.292693pt;}
.ls1e_c00106{letter-spacing:0.310613pt;}
.ls9_c00106{letter-spacing:0.322560pt;}
.ls34_c00106{letter-spacing:0.340480pt;}
.ls6f_c00106{letter-spacing:0.358400pt;}
.ls8c_c00106{letter-spacing:0.364373pt;}
.lsa_c00106{letter-spacing:0.424107pt;}
.ls51_c00106{letter-spacing:0.448000pt;}
.ls7c_c00106{letter-spacing:0.459947pt;}
.ls4e_c00106{letter-spacing:0.465920pt;}
.ls14_c00106{letter-spacing:0.468160pt;}
.ls23_c00106{letter-spacing:0.495787pt;}
.ls78_c00106{letter-spacing:0.507733pt;}
.ls3d_c00106{letter-spacing:0.531627pt;}
.ls2_c00106{letter-spacing:0.549547pt;}
.ls66_c00106{letter-spacing:0.561493pt;}
.ls64_c00106{letter-spacing:0.579413pt;}
.ls47_c00106{letter-spacing:0.583680pt;}
.ls5b_c00106{letter-spacing:0.585387pt;}
.ls12_c00106{letter-spacing:0.597333pt;}
.ls5_c00106{letter-spacing:0.603307pt;}
.ls40_c00106{letter-spacing:0.614080pt;}
.lse_c00106{letter-spacing:0.615253pt;}
.ls88_c00106{letter-spacing:0.657067pt;}
.ls8_c00106{letter-spacing:0.693120pt;}
.lsd_c00106{letter-spacing:0.699200pt;}
.ls49_c00106{letter-spacing:0.710827pt;}
.ls44_c00106{letter-spacing:0.740693pt;}
.ls2f_c00106{letter-spacing:0.747840pt;}
.ls33_c00106{letter-spacing:0.764587pt;}
.ls15_c00106{letter-spacing:0.766080pt;}
.ls87_c00106{letter-spacing:0.776533pt;}
.ls48_c00106{letter-spacing:0.800427pt;}
.lsc_c00106{letter-spacing:0.806400pt;}
.ls62_c00106{letter-spacing:0.808640pt;}
.ls4b_c00106{letter-spacing:0.812373pt;}
.ls55_c00106{letter-spacing:0.824320pt;}
.ls35_c00106{letter-spacing:0.830293pt;}
.ls2c_c00106{letter-spacing:0.845120pt;}
.ls3c_c00106{letter-spacing:0.854187pt;}
.ls10_c00106{letter-spacing:0.872107pt;}
.ls7_c00106{letter-spacing:0.881600pt;}
.ls65_c00106{letter-spacing:0.884053pt;}
.ls6_c00106{letter-spacing:0.890027pt;}
.ls63_c00106{letter-spacing:0.893760pt;}
.ls3e_c00106{letter-spacing:0.901973pt;}
.ls3b_c00106{letter-spacing:0.913920pt;}
.ls26_c00106{letter-spacing:0.919893pt;}
.ls11_c00106{letter-spacing:0.948480pt;}
.ls54_c00106{letter-spacing:0.949760pt;}
.ls13_c00106{letter-spacing:0.997120pt;}
.ls50_c00106{letter-spacing:1.003520pt;}
.ls29_c00106{letter-spacing:1.009493pt;}
.ls19_c00106{letter-spacing:1.015467pt;}
.lsb_c00106{letter-spacing:1.027413pt;}
.ls7f_c00106{letter-spacing:1.039360pt;}
.ls5f_c00106{letter-spacing:1.045333pt;}
.ls84_c00106{letter-spacing:1.057280pt;}
.ls4f_c00106{letter-spacing:1.063253pt;}
.ls69_c00106{letter-spacing:1.069227pt;}
.ls4c_c00106{letter-spacing:1.087147pt;}
.ls56_c00106{letter-spacing:1.105067pt;}
.ls3f_c00106{letter-spacing:1.111040pt;}
.ls28_c00106{letter-spacing:1.134933pt;}
.ls4d_c00106{letter-spacing:1.146880pt;}
.ls86_c00106{letter-spacing:1.170773pt;}
.ls7e_c00106{letter-spacing:1.182720pt;}
.ls25_c00106{letter-spacing:1.200640pt;}
.ls52_c00106{letter-spacing:1.206613pt;}
.ls17_c00106{letter-spacing:1.224533pt;}
.ls2a_c00106{letter-spacing:1.242453pt;}
.ls30_c00106{letter-spacing:1.308160pt;}
.ls1d_c00106{letter-spacing:1.320107pt;}
.ls46_c00106{letter-spacing:1.326080pt;}
.ls32_c00106{letter-spacing:1.338027pt;}
.ls18_c00106{letter-spacing:1.367893pt;}
.ls79_c00106{letter-spacing:1.379840pt;}
.ls2d_c00106{letter-spacing:1.385813pt;}
.ls37_c00106{letter-spacing:1.391787pt;}
.ls4_c00106{letter-spacing:1.397760pt;}
.ls38_c00106{letter-spacing:1.421653pt;}
.ls22_c00106{letter-spacing:1.451520pt;}
.ls5c_c00106{letter-spacing:1.469440pt;}
.ls39_c00106{letter-spacing:1.499307pt;}
.ls24_c00106{letter-spacing:1.505280pt;}
.ls58_c00106{letter-spacing:1.517227pt;}
.ls5d_c00106{letter-spacing:1.529173pt;}
.ls27_c00106{letter-spacing:1.547093pt;}
.ls82_c00106{letter-spacing:1.576960pt;}
.ls60_c00106{letter-spacing:1.582933pt;}
.ls45_c00106{letter-spacing:1.588907pt;}
.ls1b_c00106{letter-spacing:1.630720pt;}
.ls41_c00106{letter-spacing:1.636693pt;}
.ls2e_c00106{letter-spacing:1.642667pt;}
.ls43_c00106{letter-spacing:1.690453pt;}
.ls5e_c00106{letter-spacing:1.702400pt;}
.ls73_c00106{letter-spacing:1.720320pt;}
.ls1a_c00106{letter-spacing:1.732267pt;}
.ls1_c00106{letter-spacing:1.751040pt;}
.ls31_c00106{letter-spacing:1.809920pt;}
.ls0_c00106{letter-spacing:1.811840pt;}
.ls76_c00106{letter-spacing:1.869653pt;}
.ls4a_c00106{letter-spacing:1.905493pt;}
.ls16_c00106{letter-spacing:1.935360pt;}
.ls20_c00106{letter-spacing:1.941333pt;}
.ls1f_c00106{letter-spacing:2.007040pt;}
.ls67_c00106{letter-spacing:2.017280pt;}
.ls59_c00106{letter-spacing:2.042880pt;}
.ls3_c00106{letter-spacing:2.048853pt;}
.ls53_c00106{letter-spacing:2.168320pt;}
.ls5a_c00106{letter-spacing:2.170560pt;}
.ls2b_c00106{letter-spacing:2.299733pt;}
.ls57_c00106{letter-spacing:2.329600pt;}
.ls21_c00106{letter-spacing:2.437120pt;}
.ls1c_c00106{letter-spacing:2.449067pt;}
.ls42_c00106{letter-spacing:2.646187pt;}
.ls3a_c00106{letter-spacing:2.699947pt;}
.ls89_c00106{letter-spacing:2.926933pt;}
.ls74_c00106{letter-spacing:2.938880pt;}
.ls6d_c00106{letter-spacing:2.986667pt;}
.ls7a_c00106{letter-spacing:3.040000pt;}
.ws1_c00106{word-spacing:-1.157547pt;}
.ws4_c00106{word-spacing:0.000000pt;}
.ws2_c00106{word-spacing:1.937067pt;}
.ws0_c00106{word-spacing:6.664747pt;}
.ws3_c00106{word-spacing:16.790933pt;}
._e_c00106{margin-left:-8.028160pt;}
._d_c00106{margin-left:-6.737920pt;}
._f_c00106{margin-left:-5.591040pt;}
._3_c00106{margin-left:-3.870720pt;}
._0_c00106{margin-left:-2.577920pt;}
._5_c00106{margin-left:-0.931840pt;}
._4_c00106{width:1.544533pt;}
._8_c00106{width:3.276160pt;}
._1_c00106{width:4.266880pt;}
._9_c00106{width:5.528320pt;}
._b_c00106{width:6.546773pt;}
._2_c00106{width:8.183467pt;}
._c_c00106{width:10.094293pt;}
._a_c00106{width:11.080533pt;}
._6_c00106{width:12.412907pt;}
._7_c00106{width:17.115200pt;}
.fs0_c00106{font-size:51.200000pt;}
.fs5_c00106{font-size:54.400000pt;}
.fs2_c00106{font-size:59.733333pt;}
.fs1_c00106{font-size:60.800000pt;}
.fs4_c00106{font-size:66.666667pt;}
.fs3_c00106{font-size:68.266667pt;}
.y0_c00106{bottom:0.000000pt;}
.y22_c00106{bottom:60.493333pt;}
.y21_c00106{bottom:130.240000pt;}
.y1f_c00106{bottom:158.074133pt;}
.y20_c00106{bottom:158.080000pt;}
.y1e_c00106{bottom:213.133333pt;}
.y1d_c00106{bottom:213.135467pt;}
.y1c_c00106{bottom:241.613333pt;}
.y1a_c00106{bottom:297.286933pt;}
.y1b_c00106{bottom:297.293333pt;}
.y19_c00106{bottom:326.093333pt;}
.y18_c00106{bottom:353.933333pt;}
.y17_c00106{bottom:409.613333pt;}
.y16_c00106{bottom:409.619200pt;}
.y15_c00106{bottom:437.440000pt;}
.y13_c00106{bottom:493.130667pt;}
.y14_c00106{bottom:493.133333pt;}
.y12_c00106{bottom:521.280000pt;}
.y11_c00106{bottom:521.282667pt;}
.y10_c00106{bottom:549.133333pt;}
.yf_c00106{bottom:604.813333pt;}
.ye_c00106{bottom:660.819200pt;}
.yc_c00106{bottom:688.635733pt;}
.yd_c00106{bottom:688.640000pt;}
.yb_c00106{bottom:716.800000pt;}
.ya_c00106{bottom:773.133333pt;}
.y9_c00106{bottom:800.960000pt;}
.y8_c00106{bottom:828.800000pt;}
.y7_c00106{bottom:856.640000pt;}
.y6_c00106{bottom:912.640000pt;}
.y5_c00106{bottom:912.642667pt;}
.y4_c00106{bottom:967.373333pt;}
.y3_c00106{bottom:967.375467pt;}
.y2_c00106{bottom:995.853333pt;}
.y1_c00106{bottom:1063.373333pt;}
.h9_c00106{height:53.390625pt;}
.h2_c00106{height:53.400000pt;}
.h4_c00106{height:58.625000pt;}
.h7_c00106{height:58.635667pt;}
.h3_c00106{height:59.642187pt;}
.h8_c00106{height:63.412500pt;}
.h6_c00106{height:65.429688pt;}
.h5_c00106{height:67.000000pt;}
.h1_c00106{height:1122.666667pt;}
.h0_c00106{height:1122.880000pt;}
.w1_c00106{width:793.333333pt;}
.w0_c00106{width:793.600000pt;}
.x0_c00106{left:0.000000pt;}
.x27_c00106{left:107.756800pt;}
.x1a_c00106{left:108.661867pt;}
.xd_c00106{left:109.607467pt;}
.x1_c00106{left:114.266667pt;}
.x23_c00106{left:128.573333pt;}
.x22_c00106{left:155.986667pt;}
.x10_c00106{left:157.266667pt;}
.x8_c00106{left:158.520000pt;}
.x7_c00106{left:159.480000pt;}
.x3_c00106{left:160.556800pt;}
.x20_c00106{left:172.133333pt;}
.x24_c00106{left:175.600000pt;}
.x2d_c00106{left:193.400000pt;}
.x4_c00106{left:197.880000pt;}
.x21_c00106{left:199.933333pt;}
.x2a_c00106{left:206.200000pt;}
.x2e_c00106{left:207.840000pt;}
.x5_c00106{left:212.640000pt;}
.x2_c00106{left:277.240000pt;}
.x28_c00106{left:299.760000pt;}
.x29_c00106{left:319.933333pt;}
.x2f_c00106{left:324.720000pt;}
.x6_c00106{left:328.866667pt;}
.x30_c00106{left:345.213333pt;}
.x11_c00106{left:352.586667pt;}
.x12_c00106{left:380.333333pt;}
.x18_c00106{left:421.280000pt;}
.x9_c00106{left:422.213333pt;}
.x13_c00106{left:427.066667pt;}
.x25_c00106{left:430.880000pt;}
.xa_c00106{left:436.640000pt;}
.x19_c00106{left:439.853333pt;}
.xb_c00106{left:442.746667pt;}
.x26_c00106{left:449.760000pt;}
.xc_c00106{left:459.226667pt;}
.x2b_c00106{left:470.240000pt;}
.x1c_c00106{left:487.653333pt;}
.x2c_c00106{left:488.573333pt;}
.x1b_c00106{left:499.306667pt;}
.x1d_c00106{left:520.493333pt;}
.x14_c00106{left:537.773333pt;}
.x15_c00106{left:553.173333pt;}
.xe_c00106{left:590.720000pt;}
.x1e_c00106{left:595.493333pt;}
.xf_c00106{left:619.226667pt;}
.x16_c00106{left:622.000000pt;}
.x1f_c00106{left:628.653333pt;}
.x17_c00106{left:655.520000pt;}
}





/* 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_c00107 {
    display:none;
  }
  .loading-indicator_c00107.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00107 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_c00107 { 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_c00107" -> "#page-container .classname_c00107")
 */
.pf_c00107 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00107 { /* 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_c00107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00107 { /* 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_c00107 { /* 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_c00107 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00107 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00107 {overflow:visible;}
  }
}
.c_c00107 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00107 { /* 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_c00107:after { /* webkit #35443 */
  content: '';
}
.t_c00107:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00107 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 */
}
.__c00107 { /* 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_c00107 { /* info for Javascript */
  display:none;
}
.l_c00107 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00107 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00107 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00107: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_c00107 {
    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_c00107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00107.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_c00107 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00107;src:url('chunks/assets/font_c738b33663902b1543533483.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.284668;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_c00107;src:url('chunks/assets/font_e4188c5bcb1346f02427ef7e.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.284180;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_c00107;src:url('chunks/assets/font_9d285f796ae82c97d46d7616.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;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:ff4_c00107;src:url('chunks/assets/font_b7cd611b8251e6fd03097f44.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;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:ff5_c00107;src:url('chunks/assets/font_d54c4b0532dfb9652d58d7f1.woff2')format("woff");}.ff5_c00107{font-family:ff5_c00107;line-height:0.666000;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;}
.m8_c00107{transform:matrix(0.162494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162494,0.000000,0.000000,0.250000,0,0);}
.m9_c00107{transform:matrix(0.214804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214804,0.000000,0.000000,0.250000,0,0);}
.m19_c00107{transform:matrix(0.222243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222243,0.000000,0.000000,0.250000,0,0);}
.md_c00107{transform:matrix(0.242337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242337,0.000000,0.000000,0.250000,0,0);}
.mc_c00107{transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);}
.m1_c00107{transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);}
.m0_c00107{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);}
.m12_c00107{transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);}
.m3_c00107{transform:matrix(0.253011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253011,0.000000,0.000000,0.250000,0,0);}
.m11_c00107{transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);}
.m4_c00107{transform:matrix(0.253390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253390,0.000000,0.000000,0.250000,0,0);}
.m7_c00107{transform:matrix(0.253688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253688,0.000000,0.000000,0.250000,0,0);}
.m10_c00107{transform:matrix(0.253768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253768,0.000000,0.000000,0.250000,0,0);}
.mf_c00107{transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);}
.m5_c00107{transform:matrix(0.254516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254516,0.000000,0.000000,0.250000,0,0);}
.m6_c00107{transform:matrix(0.257028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257028,0.000000,0.000000,0.250000,0,0);}
.me_c00107{transform:matrix(0.258560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258560,0.000000,0.000000,0.250000,0,0);}
.ma_c00107{transform:matrix(0.259119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259119,0.000000,0.000000,0.250000,0,0);}
.m2_c00107{transform:matrix(0.260172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260172,0.000000,0.000000,0.250000,0,0);}
.m18_c00107{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.mb_c00107{transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);}
.m17_c00107{transform:matrix(0.358038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358038,0.000000,0.000000,0.250000,0,0);}
.m16_c00107{transform:matrix(0.359299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359299,0.000000,0.000000,0.250000,0,0);}
.m14_c00107{transform:matrix(0.375935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375935,0.000000,0.000000,0.250000,0,0);}
.m13_c00107{transform:matrix(0.403018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403018,0.000000,0.000000,0.250000,0,0);}
.m15_c00107{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls77_c00107{letter-spacing:-2.688000px;}
.ls81_c00107{letter-spacing:-2.541000px;}
.ls92_c00107{letter-spacing:-2.352000px;}
.ls6c_c00107{letter-spacing:-2.289000px;}
.ls78_c00107{letter-spacing:-2.142000px;}
.ls89_c00107{letter-spacing:-1.909380px;}
.ls91_c00107{letter-spacing:-1.798500px;}
.ls90_c00107{letter-spacing:-1.746180px;}
.ls7c_c00107{letter-spacing:-1.488300px;}
.ls80_c00107{letter-spacing:-1.350360px;}
.ls6e_c00107{letter-spacing:-1.177200px;}
.ls86_c00107{letter-spacing:-0.943800px;}
.ls68_c00107{letter-spacing:-0.784800px;}
.ls6d_c00107{letter-spacing:-0.313920px;}
.ls6a_c00107{letter-spacing:-0.307380px;}
.ls72_c00107{letter-spacing:0.000000px;}
.ls6f_c00107{letter-spacing:0.098100px;}
.ls44_c00107{letter-spacing:0.124260px;}
.ls55_c00107{letter-spacing:0.221760px;}
.ls76_c00107{letter-spacing:0.274680px;}
.ls60_c00107{letter-spacing:0.366240px;}
.ls25_c00107{letter-spacing:0.438180px;}
.ls61_c00107{letter-spacing:0.483960px;}
.ls3f_c00107{letter-spacing:0.555900px;}
.ls12_c00107{letter-spacing:0.557760px;}
.ls36_c00107{letter-spacing:0.672000px;}
.ls3_c00107{letter-spacing:0.739020px;}
.ls69_c00107{letter-spacing:0.784800px;}
.ls4a_c00107{letter-spacing:0.817500px;}
.ls87_c00107{letter-spacing:0.843660px;}
.ls54_c00107{letter-spacing:0.873600px;}
.ls7f_c00107{letter-spacing:0.876360px;}
.lsd_c00107{letter-spacing:0.927360px;}
.ls10_c00107{letter-spacing:0.928680px;}
.ls11_c00107{letter-spacing:0.981120px;}
.ls1c_c00107{letter-spacing:1.048320px;}
.ls14_c00107{letter-spacing:1.098720px;}
.ls9_c00107{letter-spacing:1.105260px;}
.lsf_c00107{letter-spacing:1.115520px;}
.ls5_c00107{letter-spacing:1.118340px;}
.ls4e_c00107{letter-spacing:1.131420px;}
.ls7_c00107{letter-spacing:1.142400px;}
.ls79_c00107{letter-spacing:1.151040px;}
.ls31_c00107{letter-spacing:1.169280px;}
.ls17_c00107{letter-spacing:1.189440px;}
.lsc_c00107{letter-spacing:1.216320px;}
.ls48_c00107{letter-spacing:1.249140px;}
.ls8c_c00107{letter-spacing:1.260000px;}
.ls43_c00107{letter-spacing:1.262220px;}
.ls57_c00107{letter-spacing:1.268760px;}
.lsb_c00107{letter-spacing:1.281840px;}
.ls83_c00107{letter-spacing:1.301460px;}
.ls0_c00107{letter-spacing:1.303680px;}
.ls3b_c00107{letter-spacing:1.314540px;}
.ls18_c00107{letter-spacing:1.327620px;}
.ls64_c00107{letter-spacing:1.340700px;}
.lse_c00107{letter-spacing:1.350720px;}
.ls71_c00107{letter-spacing:1.360320px;}
.ls2c_c00107{letter-spacing:1.366860px;}
.ls70_c00107{letter-spacing:1.386480px;}
.ls1a_c00107{letter-spacing:1.419180px;}
.ls56_c00107{letter-spacing:1.425720px;}
.ls3a_c00107{letter-spacing:1.438800px;}
.ls6_c00107{letter-spacing:1.458420px;}
.ls1_c00107{letter-spacing:1.464960px;}
.ls67_c00107{letter-spacing:1.478040px;}
.ls8d_c00107{letter-spacing:1.500000px;}
.ls6b_c00107{letter-spacing:1.504200px;}
.ls32_c00107{letter-spacing:1.523820px;}
.ls4d_c00107{letter-spacing:1.536900px;}
.ls40_c00107{letter-spacing:1.576140px;}
.ls13_c00107{letter-spacing:1.589220px;}
.ls28_c00107{letter-spacing:1.602300px;}
.ls53_c00107{letter-spacing:1.621920px;}
.ls33_c00107{letter-spacing:1.635000px;}
.ls2_c00107{letter-spacing:1.641540px;}
.ls49_c00107{letter-spacing:1.661160px;}
.ls16_c00107{letter-spacing:1.674240px;}
.ls8_c00107{letter-spacing:1.680000px;}
.lsa_c00107{letter-spacing:1.687320px;}
.ls5a_c00107{letter-spacing:1.693860px;}
.ls38_c00107{letter-spacing:1.706940px;}
.ls62_c00107{letter-spacing:1.713480px;}
.ls66_c00107{letter-spacing:1.714980px;}
.ls37_c00107{letter-spacing:1.726560px;}
.ls5c_c00107{letter-spacing:1.746180px;}
.ls50_c00107{letter-spacing:1.752720px;}
.ls84_c00107{letter-spacing:1.765800px;}
.ls47_c00107{letter-spacing:1.805040px;}
.ls3e_c00107{letter-spacing:1.811580px;}
.ls52_c00107{letter-spacing:1.818120px;}
.ls7e_c00107{letter-spacing:1.837740px;}
.ls7d_c00107{letter-spacing:1.850820px;}
.ls75_c00107{letter-spacing:1.857360px;}
.ls59_c00107{letter-spacing:1.883520px;}
.ls4b_c00107{letter-spacing:1.942380px;}
.ls5f_c00107{letter-spacing:1.948920px;}
.ls2a_c00107{letter-spacing:1.955460px;}
.ls5b_c00107{letter-spacing:1.962000px;}
.ls41_c00107{letter-spacing:1.968540px;}
.ls30_c00107{letter-spacing:1.981620px;}
.ls26_c00107{letter-spacing:2.001240px;}
.ls1b_c00107{letter-spacing:2.014320px;}
.ls88_c00107{letter-spacing:2.047020px;}
.ls27_c00107{letter-spacing:2.053560px;}
.ls8e_c00107{letter-spacing:2.070030px;}
.ls2d_c00107{letter-spacing:2.105880px;}
.ls1e_c00107{letter-spacing:2.118960px;}
.ls23_c00107{letter-spacing:2.125500px;}
.ls5d_c00107{letter-spacing:2.138580px;}
.ls4c_c00107{letter-spacing:2.151660px;}
.ls51_c00107{letter-spacing:2.158200px;}
.ls4_c00107{letter-spacing:2.171280px;}
.ls42_c00107{letter-spacing:2.197440px;}
.ls3d_c00107{letter-spacing:2.223600px;}
.ls63_c00107{letter-spacing:2.236680px;}
.ls22_c00107{letter-spacing:2.269380px;}
.ls2b_c00107{letter-spacing:2.275920px;}
.ls74_c00107{letter-spacing:2.282460px;}
.ls1f_c00107{letter-spacing:2.308620px;}
.ls7a_c00107{letter-spacing:2.334780px;}
.ls29_c00107{letter-spacing:2.347860px;}
.ls24_c00107{letter-spacing:2.374020px;}
.ls82_c00107{letter-spacing:2.485200px;}
.ls15_c00107{letter-spacing:2.504820px;}
.ls8a_c00107{letter-spacing:2.526720px;}
.ls19_c00107{letter-spacing:2.537520px;}
.ls46_c00107{letter-spacing:2.550600px;}
.ls34_c00107{letter-spacing:2.570220px;}
.ls35_c00107{letter-spacing:2.609460px;}
.ls1d_c00107{letter-spacing:2.622540px;}
.ls58_c00107{letter-spacing:2.629080px;}
.ls3c_c00107{letter-spacing:2.779500px;}
.ls7b_c00107{letter-spacing:2.805660px;}
.ls45_c00107{letter-spacing:2.871060px;}
.ls5e_c00107{letter-spacing:2.943000px;}
.ls20_c00107{letter-spacing:2.969160px;}
.ls2e_c00107{letter-spacing:2.975700px;}
.ls39_c00107{letter-spacing:3.001860px;}
.ls85_c00107{letter-spacing:3.028020px;}
.ls2f_c00107{letter-spacing:3.047640px;}
.ls8f_c00107{letter-spacing:3.090000px;}
.ls21_c00107{letter-spacing:3.132660px;}
.ls65_c00107{letter-spacing:3.139200px;}
.ls4f_c00107{letter-spacing:3.165360px;}
.ls73_c00107{letter-spacing:3.270000px;}
.ls8b_c00107{letter-spacing:3.360000px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{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__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00107{word-spacing:-1.447680px;}
.ws3_c00107{word-spacing:0.000000px;}
.ws1_c00107{word-spacing:1.217280px;}
.ws2_c00107{word-spacing:33.439200px;}
._b_c00107{margin-left:-7.022580px;}
._1_c00107{margin-left:-5.056800px;}
._a_c00107{margin-left:-3.964800px;}
._0_c00107{margin-left:-2.782080px;}
._8_c00107{margin-left:-1.267680px;}
._2_c00107{width:1.507860px;}
._5_c00107{width:3.034680px;}
._3_c00107{width:4.289400px;}
._9_c00107{width:6.136860px;}
._17_c00107{width:7.410780px;}
._6_c00107{width:8.700000px;}
._c_c00107{width:10.006200px;}
._f_c00107{width:11.587080px;}
._4_c00107{width:13.372800px;}
._16_c00107{width:14.498220px;}
._7_c00107{width:15.637440px;}
._12_c00107{width:20.110500px;}
._10_c00107{width:22.046040px;}
._11_c00107{width:23.557080px;}
._13_c00107{width:24.695040px;}
._e_c00107{width:26.866320px;}
._d_c00107{width:28.435920px;}
._14_c00107{width:31.817100px;}
._15_c00107{width:32.935440px;}
.fc0_c00107{color:transparent;}
.fs9_c00107{font-size:15.840000px;}
.fs7_c00107{font-size:25.200000px;}
.fs6_c00107{font-size:28.800600px;}
.fs8_c00107{font-size:30.000000px;}
.fsc_c00107{font-size:39.000600px;}
.fsa_c00107{font-size:41.400600px;}
.fs0_c00107{font-size:60.600000px;}
.fs4_c00107{font-size:61.200000px;}
.fsb_c00107{font-size:61.800000px;}
.fs2_c00107{font-size:65.400000px;}
.fs1_c00107{font-size:67.200000px;}
.fs5_c00107{font-size:72.600000px;}
.fs3_c00107{font-size:76.800000px;}
.y0_c00107{bottom:0.000000px;}
.y20_c00107{bottom:72.015015px;}
.y1f_c00107{bottom:151.920015px;}
.y1e_c00107{bottom:213.855015px;}
.y1d_c00107{bottom:222.855015px;}
.y1c_c00107{bottom:245.895015px;}
.y1b_c00107{bottom:308.168715px;}
.y1a_c00107{bottom:339.855015px;}
.y19_c00107{bottom:371.175015px;}
.y18_c00107{bottom:433.815015px;}
.y17_c00107{bottom:464.760015px;}
.y16_c00107{bottom:527.055015px;}
.y14_c00107{bottom:558.368715px;}
.y15_c00107{bottom:558.375015px;}
.y13_c00107{bottom:590.055015px;}
.y12_c00107{bottom:621.000015px;}
.y10_c00107{bottom:652.328415px;}
.y11_c00107{bottom:652.335015px;}
.yf_c00107{bottom:683.655015px;}
.ye_c00107{bottom:745.920015px;}
.yc_c00107{bottom:808.928715px;}
.yd_c00107{bottom:808.935015px;}
.ya_c00107{bottom:840.608415px;}
.yb_c00107{bottom:840.615015px;}
.y9_c00107{bottom:871.935015px;}
.y8_c00107{bottom:934.200015px;}
.y7_c00107{bottom:965.520015px;}
.y6_c00107{bottom:996.840015px;}
.y5_c00107{bottom:1027.815015px;}
.y4_c00107{bottom:1059.135015px;}
.y3_c00107{bottom:1090.095015px;}
.y2_c00107{bottom:1121.775015px;}
.y1_c00107{bottom:1196.295015px;}
.hc_c00107{height:10.549440px;}
.ha_c00107{height:26.282813px;}
.h9_c00107{height:28.266214px;}
.hb_c00107{height:31.289062px;}
.hf_c00107{height:38.276956px;}
.hd_c00107{height:40.632425px;}
.h2_c00107{height:59.475586px;}
.h6_c00107{height:60.064453px;}
.he_c00107{height:60.653320px;}
.h4_c00107{height:64.186523px;}
.h3_c00107{height:65.920312px;}
.h10_c00107{height:65.953125px;}
.h7_c00107{height:71.252930px;}
.h8_c00107{height:71.278130px;}
.h5_c00107{height:75.375000px;}
.h1_c00107{height:1263.000000px;}
.h0_c00107{height:1263.240015px;}
.w1_c00107{width:892.500000px;}
.w0_c00107{width:892.800015px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:127.725015px;}
.x2a_c00107{left:158.220015px;}
.x36_c00107{left:180.285015px;}
.x2_c00107{left:181.920015px;}
.x32_c00107{left:200.355015px;}
.x22_c00107{left:221.850015px;}
.x33_c00107{left:223.320015px;}
.x1f_c00107{left:228.135015px;}
.x2f_c00107{left:238.095015px;}
.x34_c00107{left:239.235015px;}
.x6_c00107{left:249.660015px;}
.xd_c00107{left:253.080015px;}
.x20_c00107{left:259.785015px;}
.x35_c00107{left:267.495015px;}
.x7_c00107{left:272.490015px;}
.xe_c00107{left:274.710015px;}
.x24_c00107{left:286.170015px;}
.x28_c00107{left:294.450015px;}
.x1d_c00107{left:298.980015px;}
.xf_c00107{left:301.170015px;}
.x23_c00107{left:302.220015px;}
.x25_c00107{left:310.710015px;}
.x1e_c00107{left:320.235015px;}
.x29_c00107{left:325.290015px;}
.x2b_c00107{left:339.960015px;}
.x30_c00107{left:344.445015px;}
.x2c_c00107{left:366.690015px;}
.x13_c00107{left:399.060015px;}
.x31_c00107{left:415.965015px;}
.x14_c00107{left:427.500015px;}
.x37_c00107{left:430.755015px;}
.x10_c00107{left:440.205015px;}
.x2d_c00107{left:459.540015px;}
.x17_c00107{left:465.300015px;}
.x11_c00107{left:471.075015px;}
.x2e_c00107{left:487.260015px;}
.x18_c00107{left:488.700015px;}
.x8_c00107{left:490.515015px;}
.x1a_c00107{left:511.470015px;}
.x9_c00107{left:522.360015px;}
.x1b_c00107{left:540.225015px;}
.xa_c00107{left:554.250015px;}
.x3_c00107{left:568.230015px;}
.x15_c00107{left:599.955015px;}
.x21_c00107{left:613.260015px;}
.x12_c00107{left:623.445015px;}
.x26_c00107{left:628.230015px;}
.x16_c00107{left:637.530015px;}
.x4_c00107{left:640.980015px;}
.x5_c00107{left:662.010015px;}
.x27_c00107{left:665.820015px;}
.xb_c00107{left:674.820015px;}
.xc_c00107{left:698.250015px;}
.x1c_c00107{left:728.835015px;}
.x19_c00107{left:737.820015px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls77_c00107{letter-spacing:-2.389333pt;}
.ls81_c00107{letter-spacing:-2.258667pt;}
.ls92_c00107{letter-spacing:-2.090667pt;}
.ls6c_c00107{letter-spacing:-2.034667pt;}
.ls78_c00107{letter-spacing:-1.904000pt;}
.ls89_c00107{letter-spacing:-1.697227pt;}
.ls91_c00107{letter-spacing:-1.598667pt;}
.ls90_c00107{letter-spacing:-1.552160pt;}
.ls7c_c00107{letter-spacing:-1.322933pt;}
.ls80_c00107{letter-spacing:-1.200320pt;}
.ls6e_c00107{letter-spacing:-1.046400pt;}
.ls86_c00107{letter-spacing:-0.838933pt;}
.ls68_c00107{letter-spacing:-0.697600pt;}
.ls6d_c00107{letter-spacing:-0.279040pt;}
.ls6a_c00107{letter-spacing:-0.273227pt;}
.ls72_c00107{letter-spacing:0.000000pt;}
.ls6f_c00107{letter-spacing:0.087200pt;}
.ls44_c00107{letter-spacing:0.110453pt;}
.ls55_c00107{letter-spacing:0.197120pt;}
.ls76_c00107{letter-spacing:0.244160pt;}
.ls60_c00107{letter-spacing:0.325547pt;}
.ls25_c00107{letter-spacing:0.389493pt;}
.ls61_c00107{letter-spacing:0.430187pt;}
.ls3f_c00107{letter-spacing:0.494133pt;}
.ls12_c00107{letter-spacing:0.495787pt;}
.ls36_c00107{letter-spacing:0.597333pt;}
.ls3_c00107{letter-spacing:0.656907pt;}
.ls69_c00107{letter-spacing:0.697600pt;}
.ls4a_c00107{letter-spacing:0.726667pt;}
.ls87_c00107{letter-spacing:0.749920pt;}
.ls54_c00107{letter-spacing:0.776533pt;}
.ls7f_c00107{letter-spacing:0.778987pt;}
.lsd_c00107{letter-spacing:0.824320pt;}
.ls10_c00107{letter-spacing:0.825493pt;}
.ls11_c00107{letter-spacing:0.872107pt;}
.ls1c_c00107{letter-spacing:0.931840pt;}
.ls14_c00107{letter-spacing:0.976640pt;}
.ls9_c00107{letter-spacing:0.982453pt;}
.lsf_c00107{letter-spacing:0.991573pt;}
.ls5_c00107{letter-spacing:0.994080pt;}
.ls4e_c00107{letter-spacing:1.005707pt;}
.ls7_c00107{letter-spacing:1.015467pt;}
.ls79_c00107{letter-spacing:1.023147pt;}
.ls31_c00107{letter-spacing:1.039360pt;}
.ls17_c00107{letter-spacing:1.057280pt;}
.lsc_c00107{letter-spacing:1.081173pt;}
.ls48_c00107{letter-spacing:1.110347pt;}
.ls8c_c00107{letter-spacing:1.120000pt;}
.ls43_c00107{letter-spacing:1.121973pt;}
.ls57_c00107{letter-spacing:1.127787pt;}
.lsb_c00107{letter-spacing:1.139413pt;}
.ls83_c00107{letter-spacing:1.156853pt;}
.ls0_c00107{letter-spacing:1.158827pt;}
.ls3b_c00107{letter-spacing:1.168480pt;}
.ls18_c00107{letter-spacing:1.180107pt;}
.ls64_c00107{letter-spacing:1.191733pt;}
.lse_c00107{letter-spacing:1.200640pt;}
.ls71_c00107{letter-spacing:1.209173pt;}
.ls2c_c00107{letter-spacing:1.214987pt;}
.ls70_c00107{letter-spacing:1.232427pt;}
.ls1a_c00107{letter-spacing:1.261493pt;}
.ls56_c00107{letter-spacing:1.267307pt;}
.ls3a_c00107{letter-spacing:1.278933pt;}
.ls6_c00107{letter-spacing:1.296373pt;}
.ls1_c00107{letter-spacing:1.302187pt;}
.ls67_c00107{letter-spacing:1.313813pt;}
.ls8d_c00107{letter-spacing:1.333333pt;}
.ls6b_c00107{letter-spacing:1.337067pt;}
.ls32_c00107{letter-spacing:1.354507pt;}
.ls4d_c00107{letter-spacing:1.366133pt;}
.ls40_c00107{letter-spacing:1.401013pt;}
.ls13_c00107{letter-spacing:1.412640pt;}
.ls28_c00107{letter-spacing:1.424267pt;}
.ls53_c00107{letter-spacing:1.441707pt;}
.ls33_c00107{letter-spacing:1.453333pt;}
.ls2_c00107{letter-spacing:1.459147pt;}
.ls49_c00107{letter-spacing:1.476587pt;}
.ls16_c00107{letter-spacing:1.488213pt;}
.ls8_c00107{letter-spacing:1.493333pt;}
.lsa_c00107{letter-spacing:1.499840pt;}
.ls5a_c00107{letter-spacing:1.505653pt;}
.ls38_c00107{letter-spacing:1.517280pt;}
.ls62_c00107{letter-spacing:1.523093pt;}
.ls66_c00107{letter-spacing:1.524427pt;}
.ls37_c00107{letter-spacing:1.534720pt;}
.ls5c_c00107{letter-spacing:1.552160pt;}
.ls50_c00107{letter-spacing:1.557973pt;}
.ls84_c00107{letter-spacing:1.569600pt;}
.ls47_c00107{letter-spacing:1.604480pt;}
.ls3e_c00107{letter-spacing:1.610293pt;}
.ls52_c00107{letter-spacing:1.616107pt;}
.ls7e_c00107{letter-spacing:1.633547pt;}
.ls7d_c00107{letter-spacing:1.645173pt;}
.ls75_c00107{letter-spacing:1.650987pt;}
.ls59_c00107{letter-spacing:1.674240pt;}
.ls4b_c00107{letter-spacing:1.726560pt;}
.ls5f_c00107{letter-spacing:1.732373pt;}
.ls2a_c00107{letter-spacing:1.738187pt;}
.ls5b_c00107{letter-spacing:1.744000pt;}
.ls41_c00107{letter-spacing:1.749813pt;}
.ls30_c00107{letter-spacing:1.761440pt;}
.ls26_c00107{letter-spacing:1.778880pt;}
.ls1b_c00107{letter-spacing:1.790507pt;}
.ls88_c00107{letter-spacing:1.819573pt;}
.ls27_c00107{letter-spacing:1.825387pt;}
.ls8e_c00107{letter-spacing:1.840027pt;}
.ls2d_c00107{letter-spacing:1.871893pt;}
.ls1e_c00107{letter-spacing:1.883520pt;}
.ls23_c00107{letter-spacing:1.889333pt;}
.ls5d_c00107{letter-spacing:1.900960pt;}
.ls4c_c00107{letter-spacing:1.912587pt;}
.ls51_c00107{letter-spacing:1.918400pt;}
.ls4_c00107{letter-spacing:1.930027pt;}
.ls42_c00107{letter-spacing:1.953280pt;}
.ls3d_c00107{letter-spacing:1.976533pt;}
.ls63_c00107{letter-spacing:1.988160pt;}
.ls22_c00107{letter-spacing:2.017227pt;}
.ls2b_c00107{letter-spacing:2.023040pt;}
.ls74_c00107{letter-spacing:2.028853pt;}
.ls1f_c00107{letter-spacing:2.052107pt;}
.ls7a_c00107{letter-spacing:2.075360pt;}
.ls29_c00107{letter-spacing:2.086987pt;}
.ls24_c00107{letter-spacing:2.110240pt;}
.ls82_c00107{letter-spacing:2.209067pt;}
.ls15_c00107{letter-spacing:2.226507pt;}
.ls8a_c00107{letter-spacing:2.245973pt;}
.ls19_c00107{letter-spacing:2.255573pt;}
.ls46_c00107{letter-spacing:2.267200pt;}
.ls34_c00107{letter-spacing:2.284640pt;}
.ls35_c00107{letter-spacing:2.319520pt;}
.ls1d_c00107{letter-spacing:2.331147pt;}
.ls58_c00107{letter-spacing:2.336960pt;}
.ls3c_c00107{letter-spacing:2.470667pt;}
.ls7b_c00107{letter-spacing:2.493920pt;}
.ls45_c00107{letter-spacing:2.552053pt;}
.ls5e_c00107{letter-spacing:2.616000pt;}
.ls20_c00107{letter-spacing:2.639253pt;}
.ls2e_c00107{letter-spacing:2.645067pt;}
.ls39_c00107{letter-spacing:2.668320pt;}
.ls85_c00107{letter-spacing:2.691573pt;}
.ls2f_c00107{letter-spacing:2.709013pt;}
.ls8f_c00107{letter-spacing:2.746667pt;}
.ls21_c00107{letter-spacing:2.784587pt;}
.ls65_c00107{letter-spacing:2.790400pt;}
.ls4f_c00107{letter-spacing:2.813653pt;}
.ls73_c00107{letter-spacing:2.906667pt;}
.ls8b_c00107{letter-spacing:2.986667pt;}
.ws0_c00107{word-spacing:-1.286827pt;}
.ws3_c00107{word-spacing:0.000000pt;}
.ws1_c00107{word-spacing:1.082027pt;}
.ws2_c00107{word-spacing:29.723733pt;}
._b_c00107{margin-left:-6.242293pt;}
._1_c00107{margin-left:-4.494933pt;}
._a_c00107{margin-left:-3.524267pt;}
._0_c00107{margin-left:-2.472960pt;}
._8_c00107{margin-left:-1.126827pt;}
._2_c00107{width:1.340320pt;}
._5_c00107{width:2.697493pt;}
._3_c00107{width:3.812800pt;}
._9_c00107{width:5.454987pt;}
._17_c00107{width:6.587360pt;}
._6_c00107{width:7.733333pt;}
._c_c00107{width:8.894400pt;}
._f_c00107{width:10.299627pt;}
._4_c00107{width:11.886933pt;}
._16_c00107{width:12.887307pt;}
._7_c00107{width:13.899947pt;}
._12_c00107{width:17.876000pt;}
._10_c00107{width:19.596480pt;}
._11_c00107{width:20.939627pt;}
._13_c00107{width:21.951147pt;}
._e_c00107{width:23.881173pt;}
._d_c00107{width:25.276373pt;}
._14_c00107{width:28.281867pt;}
._15_c00107{width:29.275947pt;}
.fs9_c00107{font-size:14.080000pt;}
.fs7_c00107{font-size:22.400000pt;}
.fs6_c00107{font-size:25.600533pt;}
.fs8_c00107{font-size:26.666667pt;}
.fsc_c00107{font-size:34.667200pt;}
.fsa_c00107{font-size:36.800533pt;}
.fs0_c00107{font-size:53.866667pt;}
.fs4_c00107{font-size:54.400000pt;}
.fsb_c00107{font-size:54.933333pt;}
.fs2_c00107{font-size:58.133333pt;}
.fs1_c00107{font-size:59.733333pt;}
.fs5_c00107{font-size:64.533333pt;}
.fs3_c00107{font-size:68.266667pt;}
.y0_c00107{bottom:0.000000pt;}
.y20_c00107{bottom:64.013347pt;}
.y1f_c00107{bottom:135.040013pt;}
.y1e_c00107{bottom:190.093347pt;}
.y1d_c00107{bottom:198.093347pt;}
.y1c_c00107{bottom:218.573347pt;}
.y1b_c00107{bottom:273.927747pt;}
.y1a_c00107{bottom:302.093347pt;}
.y19_c00107{bottom:329.933347pt;}
.y18_c00107{bottom:385.613347pt;}
.y17_c00107{bottom:413.120013pt;}
.y16_c00107{bottom:468.493347pt;}
.y14_c00107{bottom:496.327747pt;}
.y15_c00107{bottom:496.333347pt;}
.y13_c00107{bottom:524.493347pt;}
.y12_c00107{bottom:552.000013pt;}
.y10_c00107{bottom:579.847480pt;}
.y11_c00107{bottom:579.853347pt;}
.yf_c00107{bottom:607.693347pt;}
.ye_c00107{bottom:663.040013pt;}
.yc_c00107{bottom:719.047747pt;}
.yd_c00107{bottom:719.053347pt;}
.ya_c00107{bottom:747.207480pt;}
.yb_c00107{bottom:747.213347pt;}
.y9_c00107{bottom:775.053347pt;}
.y8_c00107{bottom:830.400013pt;}
.y7_c00107{bottom:858.240013pt;}
.y6_c00107{bottom:886.080013pt;}
.y5_c00107{bottom:913.613347pt;}
.y4_c00107{bottom:941.453347pt;}
.y3_c00107{bottom:968.973347pt;}
.y2_c00107{bottom:997.133347pt;}
.y1_c00107{bottom:1063.373347pt;}
.hc_c00107{height:9.377280pt;}
.ha_c00107{height:23.362500pt;}
.h9_c00107{height:25.125523pt;}
.hb_c00107{height:27.812500pt;}
.hf_c00107{height:34.023961pt;}
.hd_c00107{height:36.117711pt;}
.h2_c00107{height:52.867187pt;}
.h6_c00107{height:53.390625pt;}
.he_c00107{height:53.914062pt;}
.h4_c00107{height:57.054688pt;}
.h3_c00107{height:58.595833pt;}
.h10_c00107{height:58.625000pt;}
.h7_c00107{height:63.335938pt;}
.h8_c00107{height:63.358338pt;}
.h5_c00107{height:67.000000pt;}
.h1_c00107{height:1122.666667pt;}
.h0_c00107{height:1122.880013pt;}
.w1_c00107{width:793.333333pt;}
.w0_c00107{width:793.600013pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:113.533347pt;}
.x2a_c00107{left:140.640013pt;}
.x36_c00107{left:160.253347pt;}
.x2_c00107{left:161.706680pt;}
.x32_c00107{left:178.093347pt;}
.x22_c00107{left:197.200013pt;}
.x33_c00107{left:198.506680pt;}
.x1f_c00107{left:202.786680pt;}
.x2f_c00107{left:211.640013pt;}
.x34_c00107{left:212.653347pt;}
.x6_c00107{left:221.920013pt;}
.xd_c00107{left:224.960013pt;}
.x20_c00107{left:230.920013pt;}
.x35_c00107{left:237.773347pt;}
.x7_c00107{left:242.213347pt;}
.xe_c00107{left:244.186680pt;}
.x24_c00107{left:254.373347pt;}
.x28_c00107{left:261.733347pt;}
.x1d_c00107{left:265.760013pt;}
.xf_c00107{left:267.706680pt;}
.x23_c00107{left:268.640013pt;}
.x25_c00107{left:276.186680pt;}
.x1e_c00107{left:284.653347pt;}
.x29_c00107{left:289.146680pt;}
.x2b_c00107{left:302.186680pt;}
.x30_c00107{left:306.173347pt;}
.x2c_c00107{left:325.946680pt;}
.x13_c00107{left:354.720013pt;}
.x31_c00107{left:369.746680pt;}
.x14_c00107{left:380.000013pt;}
.x37_c00107{left:382.893347pt;}
.x10_c00107{left:391.293347pt;}
.x2d_c00107{left:408.480013pt;}
.x17_c00107{left:413.600013pt;}
.x11_c00107{left:418.733347pt;}
.x2e_c00107{left:433.120013pt;}
.x18_c00107{left:434.400013pt;}
.x8_c00107{left:436.013347pt;}
.x1a_c00107{left:454.640013pt;}
.x9_c00107{left:464.320013pt;}
.x1b_c00107{left:480.200013pt;}
.xa_c00107{left:492.666680pt;}
.x3_c00107{left:505.093347pt;}
.x15_c00107{left:533.293347pt;}
.x21_c00107{left:545.120013pt;}
.x12_c00107{left:554.173347pt;}
.x26_c00107{left:558.426680pt;}
.x16_c00107{left:566.693347pt;}
.x4_c00107{left:569.760013pt;}
.x5_c00107{left:588.453347pt;}
.x27_c00107{left:591.840013pt;}
.xb_c00107{left:599.840013pt;}
.xc_c00107{left:620.666680pt;}
.x1c_c00107{left:647.853347pt;}
.x19_c00107{left:655.840013pt;}
}





/* 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_c00108 {
    display:none;
  }
  .loading-indicator_c00108.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00108 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_c00108 { 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_c00108" -> "#page-container .classname_c00108")
 */
.pf_c00108 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00108 { /* 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_c00108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00108 { /* 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_c00108 { /* 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_c00108 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00108 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00108 {overflow:visible;}
  }
}
.c_c00108 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00108 { /* 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_c00108:after { /* webkit #35443 */
  content: '';
}
.t_c00108:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00108 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 */
}
.__c00108 { /* 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_c00108 { /* info for Javascript */
  display:none;
}
.l_c00108 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00108 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00108 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00108: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_c00108 {
    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_c00108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00108.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_c00108 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00108;src:url('chunks/assets/font_e361d298c4cd1f5fddf29408.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.284668;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_c00108;src:url('chunks/assets/font_f2581efa0e3fb3ce47cf8932.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.284180;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_c00108;src:url('chunks/assets/font_bb4d439705236e3bd9c1d672.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;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;}
.m3_c00108{transform:matrix(0.186980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186980,0.000000,0.000000,0.250000,0,0);}
.m4_c00108{transform:matrix(0.188246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188246,0.000000,0.000000,0.250000,0,0);}
.m0_c00108{transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);}
.m16_c00108{transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);}
.m2_c00108{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m17_c00108{transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);}
.m1_c00108{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);}
.m9_c00108{transform:matrix(0.251189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251189,0.000000,0.000000,0.250000,0,0);}
.m5_c00108{transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);}
.m7_c00108{transform:matrix(0.253562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253562,0.000000,0.000000,0.250000,0,0);}
.mb_c00108{transform:matrix(0.255903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255903,0.000000,0.000000,0.250000,0,0);}
.m6_c00108{transform:matrix(0.257667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257667,0.000000,0.000000,0.250000,0,0);}
.ma_c00108{transform:matrix(0.259986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259986,0.000000,0.000000,0.250000,0,0);}
.m8_c00108{transform:matrix(0.261304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261304,0.000000,0.000000,0.250000,0,0);}
.m18_c00108{transform:matrix(0.274113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274113,0.000000,0.000000,0.250000,0,0);}
.m13_c00108{transform:matrix(0.274496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274496,0.000000,0.000000,0.250000,0,0);}
.mc_c00108{transform:matrix(0.281340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281340,0.000000,0.000000,0.250000,0,0);}
.md_c00108{transform:matrix(0.320570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320570,0.000000,0.000000,0.250000,0,0);}
.m11_c00108{transform:matrix(0.356844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356844,0.000000,0.000000,0.250000,0,0);}
.m14_c00108{transform:matrix(0.380502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380502,0.000000,0.000000,0.250000,0,0);}
.m12_c00108{transform:matrix(0.383779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383779,0.000000,0.000000,0.250000,0,0);}
.me_c00108{transform:matrix(0.426422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426422,0.000000,0.000000,0.250000,0,0);}
.mf_c00108{transform:matrix(0.431471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431471,0.000000,0.000000,0.250000,0,0);}
.m15_c00108{transform:matrix(0.488367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488367,0.000000,0.000000,0.250000,0,0);}
.m10_c00108{transform:matrix(0.497492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497492,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls67_c00108{letter-spacing:-2.667000px;}
.ls58_c00108{letter-spacing:-2.562000px;}
.ls64_c00108{letter-spacing:-2.415000px;}
.ls7e_c00108{letter-spacing:-2.373000px;}
.ls7c_c00108{letter-spacing:-2.047560px;}
.ls59_c00108{letter-spacing:-1.891620px;}
.ls79_c00108{letter-spacing:-1.410240px;}
.ls78_c00108{letter-spacing:-1.369560px;}
.ls80_c00108{letter-spacing:-1.071240px;}
.ls77_c00108{letter-spacing:-0.867840px;}
.ls7b_c00108{letter-spacing:-0.854280px;}
.ls7f_c00108{letter-spacing:-0.827160px;}
.ls7a_c00108{letter-spacing:-0.739020px;}
.ls60_c00108{letter-spacing:-0.691560px;}
.ls5b_c00108{letter-spacing:-0.569520px;}
.ls81_c00108{letter-spacing:-0.529620px;}
.ls5c_c00108{letter-spacing:-0.494940px;}
.ls6e_c00108{letter-spacing:-0.383040px;}
.ls61_c00108{letter-spacing:-0.264420px;}
.ls7d_c00108{letter-spacing:-0.257640px;}
.ls5f_c00108{letter-spacing:-0.210180px;}
.ls6a_c00108{letter-spacing:-0.128820px;}
.ls6d_c00108{letter-spacing:-0.074580px;}
.ls5e_c00108{letter-spacing:-0.054240px;}
.ls68_c00108{letter-spacing:0.000000px;}
.lsc_c00108{letter-spacing:0.033900px;}
.ls2e_c00108{letter-spacing:0.081360px;}
.ls6b_c00108{letter-spacing:0.101700px;}
.ls55_c00108{letter-spacing:0.155940px;}
.ls52_c00108{letter-spacing:0.203400px;}
.ls1c_c00108{letter-spacing:0.237300px;}
.ls51_c00108{letter-spacing:0.291540px;}
.ls5d_c00108{letter-spacing:0.325440px;}
.ls9_c00108{letter-spacing:0.339000px;}
.ls4c_c00108{letter-spacing:0.393240px;}
.ls48_c00108{letter-spacing:0.420360px;}
.lse_c00108{letter-spacing:0.433920px;}
.ls15_c00108{letter-spacing:0.474600px;}
.ls27_c00108{letter-spacing:0.478800px;}
.ls39_c00108{letter-spacing:0.488160px;}
.ls4f_c00108{letter-spacing:0.515280px;}
.ls19_c00108{letter-spacing:0.549180px;}
.ls33_c00108{letter-spacing:0.603420px;}
.ls3b_c00108{letter-spacing:0.616980px;}
.ls18_c00108{letter-spacing:0.623760px;}
.ls45_c00108{letter-spacing:0.637320px;}
.ls3c_c00108{letter-spacing:0.644100px;}
.ls3a_c00108{letter-spacing:0.656640px;}
.ls3f_c00108{letter-spacing:0.698340px;}
.ls34_c00108{letter-spacing:0.759360px;}
.ls50_c00108{letter-spacing:0.766080px;}
.ls12_c00108{letter-spacing:0.772920px;}
.ls3_c00108{letter-spacing:0.786480px;}
.ls66_c00108{letter-spacing:0.800040px;}
.ls38_c00108{letter-spacing:0.800280px;}
.ls4_c00108{letter-spacing:0.820380px;}
.ls32_c00108{letter-spacing:0.833940px;}
.lsb_c00108{letter-spacing:0.840720px;}
.ls20_c00108{letter-spacing:0.847500px;}
.ls57_c00108{letter-spacing:0.848160px;}
.ls5_c00108{letter-spacing:0.861840px;}
.ls2c_c00108{letter-spacing:0.867840px;}
.ls7_c00108{letter-spacing:0.881400px;}
.ls70_c00108{letter-spacing:0.888180px;}
.ls1_c00108{letter-spacing:0.889200px;}
.ls8_c00108{letter-spacing:0.908520px;}
.ls16_c00108{letter-spacing:0.915300px;}
.ls24_c00108{letter-spacing:0.928860px;}
.ls29_c00108{letter-spacing:0.935640px;}
.ls4e_c00108{letter-spacing:0.955980px;}
.ls53_c00108{letter-spacing:0.964440px;}
.ls47_c00108{letter-spacing:0.969540px;}
.ls2b_c00108{letter-spacing:0.983100px;}
.ls4a_c00108{letter-spacing:0.991800px;}
.ls36_c00108{letter-spacing:0.996660px;}
.lsf_c00108{letter-spacing:1.023780px;}
.ls62_c00108{letter-spacing:1.044120px;}
.ls6_c00108{letter-spacing:1.046520px;}
.ls5a_c00108{letter-spacing:1.050900px;}
.ls1e_c00108{letter-spacing:1.073880px;}
.ls69_c00108{letter-spacing:1.098360px;}
.ls21_c00108{letter-spacing:1.105140px;}
.ls22_c00108{letter-spacing:1.118700px;}
.ls56_c00108{letter-spacing:1.121760px;}
.lsa_c00108{letter-spacing:1.145820px;}
.ls54_c00108{letter-spacing:1.159380px;}
.ls14_c00108{letter-spacing:1.179720px;}
.ls4b_c00108{letter-spacing:1.183320px;}
.ls4d_c00108{letter-spacing:1.197000px;}
.ls30_c00108{letter-spacing:1.227180px;}
.ls37_c00108{letter-spacing:1.233960px;}
.ls10_c00108{letter-spacing:1.240740px;}
.ls1d_c00108{letter-spacing:1.301760px;}
.ls2_c00108{letter-spacing:1.340640px;}
.ls2f_c00108{letter-spacing:1.349220px;}
.ls0_c00108{letter-spacing:1.356000px;}
.ls3e_c00108{letter-spacing:1.396680px;}
.ls44_c00108{letter-spacing:1.422720px;}
.ls1a_c00108{letter-spacing:1.444140px;}
.ls11_c00108{letter-spacing:1.464480px;}
.ls13_c00108{letter-spacing:1.478040px;}
.ls41_c00108{letter-spacing:1.545480px;}
.ls42_c00108{letter-spacing:1.583640px;}
.ls49_c00108{letter-spacing:1.586520px;}
.ls1b_c00108{letter-spacing:1.728900px;}
.ls26_c00108{letter-spacing:1.742460px;}
.ls31_c00108{letter-spacing:1.749240px;}
.ls65_c00108{letter-spacing:1.762800px;}
.ls63_c00108{letter-spacing:1.810260px;}
.ls75_c00108{letter-spacing:1.830000px;}
.ls17_c00108{letter-spacing:1.850940px;}
.ls46_c00108{letter-spacing:1.911960px;}
.ls76_c00108{letter-spacing:1.920030px;}
.ls1f_c00108{letter-spacing:2.156040px;}
.ls2d_c00108{letter-spacing:2.162820px;}
.ls2a_c00108{letter-spacing:2.203500px;}
.ls28_c00108{letter-spacing:2.210280px;}
.ls3d_c00108{letter-spacing:2.223840px;}
.ls43_c00108{letter-spacing:2.428200px;}
.lsd_c00108{letter-spacing:2.495040px;}
.ls6c_c00108{letter-spacing:2.779800px;}
.ls25_c00108{letter-spacing:2.800140px;}
.ls35_c00108{letter-spacing:2.915400px;}
.ls74_c00108{letter-spacing:2.931960px;}
.ls23_c00108{letter-spacing:2.942520px;}
.ls71_c00108{letter-spacing:3.033720px;}
.ls73_c00108{letter-spacing:3.120000px;}
.ls72_c00108{letter-spacing:3.180000px;}
.ls40_c00108{letter-spacing:3.376440px;}
.ls6f_c00108{letter-spacing:3.390000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{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__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00108{word-spacing:-0.031800px;}
.ws5_c00108{word-spacing:0.000000px;}
.ws1_c00108{word-spacing:11.374080px;}
.ws0_c00108{word-spacing:11.817840px;}
.ws4_c00108{word-spacing:13.212600px;}
.ws2_c00108{word-spacing:19.184400px;}
._f_c00108{margin-left:-13.899000px;}
._14_c00108{margin-left:-8.447400px;}
._10_c00108{margin-left:-6.027420px;}
._2_c00108{margin-left:-4.156080px;}
._e_c00108{margin-left:-3.050880px;}
._0_c00108{margin-left:-2.004000px;}
._d_c00108{width:1.349160px;}
._4_c00108{width:3.091680px;}
._15_c00108{width:4.377960px;}
._3_c00108{width:5.478240px;}
._6_c00108{width:8.097120px;}
._1_c00108{width:10.000500px;}
._5_c00108{width:11.085300px;}
._7_c00108{width:12.332820px;}
._a_c00108{width:13.587120px;}
._9_c00108{width:14.597340px;}
._c_c00108{width:16.868640px;}
._8_c00108{width:18.739920px;}
._b_c00108{width:20.434920px;}
._12_c00108{width:24.317640px;}
._13_c00108{width:31.000200px;}
._11_c00108{width:35.018820px;}
.fc0_c00108{color:transparent;}
.fs7_c00108{font-size:36.600000px;}
.fs8_c00108{font-size:38.400600px;}
.fs9_c00108{font-size:58.200000px;}
.fs6_c00108{font-size:62.400000px;}
.fs5_c00108{font-size:63.600000px;}
.fs1_c00108{font-size:67.800000px;}
.fs2_c00108{font-size:68.400000px;}
.fs3_c00108{font-size:69.000000px;}
.fs0_c00108{font-size:73.200000px;}
.fs4_c00108{font-size:76.200000px;}
.y0_c00108{bottom:0.000000px;}
.y1b_c00108{bottom:65.880015px;}
.y1a_c00108{bottom:176.040015px;}
.y19_c00108{bottom:207.735015px;}
.y18_c00108{bottom:239.415015px;}
.y17_c00108{bottom:270.735015px;}
.y16_c00108{bottom:302.040015px;}
.y15_c00108{bottom:365.046165px;}
.y14_c00108{bottom:426.608565px;}
.y13_c00108{bottom:459.000015px;}
.y12_c00108{bottom:519.840015px;}
.y11_c00108{bottom:522.375015px;}
.y10_c00108{bottom:552.975015px;}
.yf_c00108{bottom:615.975015px;}
.ye_c00108{bottom:677.520015px;}
.yd_c00108{bottom:709.914465px;}
.yc_c00108{bottom:741.255015px;}
.ya_c00108{bottom:803.168565px;}
.yb_c00108{bottom:803.175015px;}
.y9_c00108{bottom:835.560015px;}
.y8_c00108{bottom:898.931415px;}
.y6_c00108{bottom:930.253365px;}
.y7_c00108{bottom:930.255015px;}
.y5_c00108{bottom:961.560015px;}
.y4_c00108{bottom:1024.560015px;}
.y3_c00108{bottom:1055.520015px;}
.y2_c00108{bottom:1118.520015px;}
.y1_c00108{bottom:1193.775015px;}
.hb_c00108{height:35.920898px;}
.hc_c00108{height:37.688089px;}
.hd_c00108{height:57.120117px;}
.ha_c00108{height:61.242188px;}
.h9_c00108{height:62.419922px;}
.h3_c00108{height:66.541992px;}
.h8_c00108{height:66.564192px;}
.h6_c00108{height:66.567792px;}
.h4_c00108{height:67.097461px;}
.h2_c00108{height:71.841797px;}
.h5_c00108{height:71.964844px;}
.h7_c00108{height:74.786133px;}
.h1_c00108{height:1263.000000px;}
.h0_c00108{height:1263.240015px;}
.w1_c00108{width:892.500000px;}
.w0_c00108{width:892.800015px;}
.x0_c00108{left:0.000000px;}
.x10_c00108{left:121.275015px;}
.x9_c00108{left:122.733015px;}
.x5_c00108{left:124.021515px;}
.x1_c00108{left:126.645015px;}
.x18_c00108{left:143.535015px;}
.x19_c00108{left:150.720015px;}
.x1a_c00108{left:164.775015px;}
.x11_c00108{left:174.360015px;}
.xd_c00108{left:176.205015px;}
.x8_c00108{left:177.285015px;}
.x4_c00108{left:178.365015px;}
.x3_c00108{left:179.400015px;}
.x2_c00108{left:180.525015px;}
.x12_c00108{left:193.530015px;}
.x1b_c00108{left:196.065015px;}
.x13_c00108{left:222.465015px;}
.xa_c00108{left:224.535015px;}
.x1c_c00108{left:233.820015px;}
.x14_c00108{left:250.185015px;}
.xb_c00108{left:251.955015px;}
.x6_c00108{left:260.100015px;}
.x7_c00108{left:282.075015px;}
.x15_c00108{left:308.490015px;}
.x1d_c00108{left:312.735015px;}
.x1e_c00108{left:320.190015px;}
.x16_c00108{left:337.140015px;}
.x1f_c00108{left:339.690015px;}
.x17_c00108{left:358.035015px;}
.x20_c00108{left:360.555015px;}
.x21_c00108{left:376.080015px;}
.x22_c00108{left:390.795015px;}
.x28_c00108{left:426.450015px;}
.xc_c00108{left:460.335015px;}
.x24_c00108{left:465.630015px;}
.x23_c00108{left:467.775015px;}
.x25_c00108{left:481.845015px;}
.x27_c00108{left:551.355015px;}
.x26_c00108{left:612.135015px;}
.xe_c00108{left:614.070015px;}
.xf_c00108{left:641.445015px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls67_c00108{letter-spacing:-2.370667pt;}
.ls58_c00108{letter-spacing:-2.277333pt;}
.ls64_c00108{letter-spacing:-2.146667pt;}
.ls7e_c00108{letter-spacing:-2.109333pt;}
.ls7c_c00108{letter-spacing:-1.820053pt;}
.ls59_c00108{letter-spacing:-1.681440pt;}
.ls79_c00108{letter-spacing:-1.253547pt;}
.ls78_c00108{letter-spacing:-1.217387pt;}
.ls80_c00108{letter-spacing:-0.952213pt;}
.ls77_c00108{letter-spacing:-0.771413pt;}
.ls7b_c00108{letter-spacing:-0.759360pt;}
.ls7f_c00108{letter-spacing:-0.735253pt;}
.ls7a_c00108{letter-spacing:-0.656907pt;}
.ls60_c00108{letter-spacing:-0.614720pt;}
.ls5b_c00108{letter-spacing:-0.506240pt;}
.ls81_c00108{letter-spacing:-0.470773pt;}
.ls5c_c00108{letter-spacing:-0.439947pt;}
.ls6e_c00108{letter-spacing:-0.340480pt;}
.ls61_c00108{letter-spacing:-0.235040pt;}
.ls7d_c00108{letter-spacing:-0.229013pt;}
.ls5f_c00108{letter-spacing:-0.186827pt;}
.ls6a_c00108{letter-spacing:-0.114507pt;}
.ls6d_c00108{letter-spacing:-0.066293pt;}
.ls5e_c00108{letter-spacing:-0.048213pt;}
.ls68_c00108{letter-spacing:0.000000pt;}
.lsc_c00108{letter-spacing:0.030133pt;}
.ls2e_c00108{letter-spacing:0.072320pt;}
.ls6b_c00108{letter-spacing:0.090400pt;}
.ls55_c00108{letter-spacing:0.138613pt;}
.ls52_c00108{letter-spacing:0.180800pt;}
.ls1c_c00108{letter-spacing:0.210933pt;}
.ls51_c00108{letter-spacing:0.259147pt;}
.ls5d_c00108{letter-spacing:0.289280pt;}
.ls9_c00108{letter-spacing:0.301333pt;}
.ls4c_c00108{letter-spacing:0.349547pt;}
.ls48_c00108{letter-spacing:0.373653pt;}
.lse_c00108{letter-spacing:0.385707pt;}
.ls15_c00108{letter-spacing:0.421867pt;}
.ls27_c00108{letter-spacing:0.425600pt;}
.ls39_c00108{letter-spacing:0.433920pt;}
.ls4f_c00108{letter-spacing:0.458027pt;}
.ls19_c00108{letter-spacing:0.488160pt;}
.ls33_c00108{letter-spacing:0.536373pt;}
.ls3b_c00108{letter-spacing:0.548427pt;}
.ls18_c00108{letter-spacing:0.554453pt;}
.ls45_c00108{letter-spacing:0.566507pt;}
.ls3c_c00108{letter-spacing:0.572533pt;}
.ls3a_c00108{letter-spacing:0.583680pt;}
.ls3f_c00108{letter-spacing:0.620747pt;}
.ls34_c00108{letter-spacing:0.674987pt;}
.ls50_c00108{letter-spacing:0.680960pt;}
.ls12_c00108{letter-spacing:0.687040pt;}
.ls3_c00108{letter-spacing:0.699093pt;}
.ls66_c00108{letter-spacing:0.711147pt;}
.ls38_c00108{letter-spacing:0.711360pt;}
.ls4_c00108{letter-spacing:0.729227pt;}
.ls32_c00108{letter-spacing:0.741280pt;}
.lsb_c00108{letter-spacing:0.747307pt;}
.ls20_c00108{letter-spacing:0.753333pt;}
.ls57_c00108{letter-spacing:0.753920pt;}
.ls5_c00108{letter-spacing:0.766080pt;}
.ls2c_c00108{letter-spacing:0.771413pt;}
.ls7_c00108{letter-spacing:0.783467pt;}
.ls70_c00108{letter-spacing:0.789493pt;}
.ls1_c00108{letter-spacing:0.790400pt;}
.ls8_c00108{letter-spacing:0.807573pt;}
.ls16_c00108{letter-spacing:0.813600pt;}
.ls24_c00108{letter-spacing:0.825653pt;}
.ls29_c00108{letter-spacing:0.831680pt;}
.ls4e_c00108{letter-spacing:0.849760pt;}
.ls53_c00108{letter-spacing:0.857280pt;}
.ls47_c00108{letter-spacing:0.861813pt;}
.ls2b_c00108{letter-spacing:0.873867pt;}
.ls4a_c00108{letter-spacing:0.881600pt;}
.ls36_c00108{letter-spacing:0.885920pt;}
.lsf_c00108{letter-spacing:0.910027pt;}
.ls62_c00108{letter-spacing:0.928107pt;}
.ls6_c00108{letter-spacing:0.930240pt;}
.ls5a_c00108{letter-spacing:0.934133pt;}
.ls1e_c00108{letter-spacing:0.954560pt;}
.ls69_c00108{letter-spacing:0.976320pt;}
.ls21_c00108{letter-spacing:0.982347pt;}
.ls22_c00108{letter-spacing:0.994400pt;}
.ls56_c00108{letter-spacing:0.997120pt;}
.lsa_c00108{letter-spacing:1.018507pt;}
.ls54_c00108{letter-spacing:1.030560pt;}
.ls14_c00108{letter-spacing:1.048640pt;}
.ls4b_c00108{letter-spacing:1.051840pt;}
.ls4d_c00108{letter-spacing:1.064000pt;}
.ls30_c00108{letter-spacing:1.090827pt;}
.ls37_c00108{letter-spacing:1.096853pt;}
.ls10_c00108{letter-spacing:1.102880pt;}
.ls1d_c00108{letter-spacing:1.157120pt;}
.ls2_c00108{letter-spacing:1.191680pt;}
.ls2f_c00108{letter-spacing:1.199307pt;}
.ls0_c00108{letter-spacing:1.205333pt;}
.ls3e_c00108{letter-spacing:1.241493pt;}
.ls44_c00108{letter-spacing:1.264640pt;}
.ls1a_c00108{letter-spacing:1.283680pt;}
.ls11_c00108{letter-spacing:1.301760pt;}
.ls13_c00108{letter-spacing:1.313813pt;}
.ls41_c00108{letter-spacing:1.373760pt;}
.ls42_c00108{letter-spacing:1.407680pt;}
.ls49_c00108{letter-spacing:1.410240pt;}
.ls1b_c00108{letter-spacing:1.536800pt;}
.ls26_c00108{letter-spacing:1.548853pt;}
.ls31_c00108{letter-spacing:1.554880pt;}
.ls65_c00108{letter-spacing:1.566933pt;}
.ls63_c00108{letter-spacing:1.609120pt;}
.ls75_c00108{letter-spacing:1.626667pt;}
.ls17_c00108{letter-spacing:1.645280pt;}
.ls46_c00108{letter-spacing:1.699520pt;}
.ls76_c00108{letter-spacing:1.706693pt;}
.ls1f_c00108{letter-spacing:1.916480pt;}
.ls2d_c00108{letter-spacing:1.922507pt;}
.ls2a_c00108{letter-spacing:1.958667pt;}
.ls28_c00108{letter-spacing:1.964693pt;}
.ls3d_c00108{letter-spacing:1.976747pt;}
.ls43_c00108{letter-spacing:2.158400pt;}
.lsd_c00108{letter-spacing:2.217813pt;}
.ls6c_c00108{letter-spacing:2.470933pt;}
.ls25_c00108{letter-spacing:2.489013pt;}
.ls35_c00108{letter-spacing:2.591467pt;}
.ls74_c00108{letter-spacing:2.606187pt;}
.ls23_c00108{letter-spacing:2.615573pt;}
.ls71_c00108{letter-spacing:2.696640pt;}
.ls73_c00108{letter-spacing:2.773333pt;}
.ls72_c00108{letter-spacing:2.826667pt;}
.ls40_c00108{letter-spacing:3.001280pt;}
.ls6f_c00108{letter-spacing:3.013333pt;}
.ws3_c00108{word-spacing:-0.028267pt;}
.ws5_c00108{word-spacing:0.000000pt;}
.ws1_c00108{word-spacing:10.110293pt;}
.ws0_c00108{word-spacing:10.504747pt;}
.ws4_c00108{word-spacing:11.744533pt;}
.ws2_c00108{word-spacing:17.052800pt;}
._f_c00108{margin-left:-12.354667pt;}
._14_c00108{margin-left:-7.508800pt;}
._10_c00108{margin-left:-5.357707pt;}
._2_c00108{margin-left:-3.694293pt;}
._e_c00108{margin-left:-2.711893pt;}
._0_c00108{margin-left:-1.781333pt;}
._d_c00108{width:1.199253pt;}
._4_c00108{width:2.748160pt;}
._15_c00108{width:3.891520pt;}
._3_c00108{width:4.869547pt;}
._6_c00108{width:7.197440pt;}
._1_c00108{width:8.889333pt;}
._5_c00108{width:9.853600pt;}
._7_c00108{width:10.962507pt;}
._a_c00108{width:12.077440pt;}
._9_c00108{width:12.975413pt;}
._c_c00108{width:14.994347pt;}
._8_c00108{width:16.657707pt;}
._b_c00108{width:18.164373pt;}
._12_c00108{width:21.615680pt;}
._13_c00108{width:27.555733pt;}
._11_c00108{width:31.127840pt;}
.fs7_c00108{font-size:32.533333pt;}
.fs8_c00108{font-size:34.133867pt;}
.fs9_c00108{font-size:51.733333pt;}
.fs6_c00108{font-size:55.466667pt;}
.fs5_c00108{font-size:56.533333pt;}
.fs1_c00108{font-size:60.266667pt;}
.fs2_c00108{font-size:60.800000pt;}
.fs3_c00108{font-size:61.333333pt;}
.fs0_c00108{font-size:65.066667pt;}
.fs4_c00108{font-size:67.733333pt;}
.y0_c00108{bottom:0.000000pt;}
.y1b_c00108{bottom:58.560013pt;}
.y1a_c00108{bottom:156.480013pt;}
.y19_c00108{bottom:184.653347pt;}
.y18_c00108{bottom:212.813347pt;}
.y17_c00108{bottom:240.653347pt;}
.y16_c00108{bottom:268.480013pt;}
.y15_c00108{bottom:324.485480pt;}
.y14_c00108{bottom:379.207613pt;}
.y13_c00108{bottom:408.000013pt;}
.y12_c00108{bottom:462.080013pt;}
.y11_c00108{bottom:464.333347pt;}
.y10_c00108{bottom:491.533347pt;}
.yf_c00108{bottom:547.533347pt;}
.ye_c00108{bottom:602.240013pt;}
.yd_c00108{bottom:631.035080pt;}
.yc_c00108{bottom:658.893347pt;}
.ya_c00108{bottom:713.927613pt;}
.yb_c00108{bottom:713.933347pt;}
.y9_c00108{bottom:742.720013pt;}
.y8_c00108{bottom:799.050147pt;}
.y6_c00108{bottom:826.891880pt;}
.y7_c00108{bottom:826.893347pt;}
.y5_c00108{bottom:854.720013pt;}
.y4_c00108{bottom:910.720013pt;}
.y3_c00108{bottom:938.240013pt;}
.y2_c00108{bottom:994.240013pt;}
.y1_c00108{bottom:1061.133347pt;}
.hb_c00108{height:31.929687pt;}
.hc_c00108{height:33.500523pt;}
.hd_c00108{height:50.773437pt;}
.ha_c00108{height:54.437500pt;}
.h9_c00108{height:55.484375pt;}
.h3_c00108{height:59.148438pt;}
.h8_c00108{height:59.168171pt;}
.h6_c00108{height:59.171371pt;}
.h4_c00108{height:59.642187pt;}
.h2_c00108{height:63.859375pt;}
.h5_c00108{height:63.968750pt;}
.h7_c00108{height:66.476562pt;}
.h1_c00108{height:1122.666667pt;}
.h0_c00108{height:1122.880013pt;}
.w1_c00108{width:793.333333pt;}
.w0_c00108{width:793.600013pt;}
.x0_c00108{left:0.000000pt;}
.x10_c00108{left:107.800013pt;}
.x9_c00108{left:109.096013pt;}
.x5_c00108{left:110.241347pt;}
.x1_c00108{left:112.573347pt;}
.x18_c00108{left:127.586680pt;}
.x19_c00108{left:133.973347pt;}
.x1a_c00108{left:146.466680pt;}
.x11_c00108{left:154.986680pt;}
.xd_c00108{left:156.626680pt;}
.x8_c00108{left:157.586680pt;}
.x4_c00108{left:158.546680pt;}
.x3_c00108{left:159.466680pt;}
.x2_c00108{left:160.466680pt;}
.x12_c00108{left:172.026680pt;}
.x1b_c00108{left:174.280013pt;}
.x13_c00108{left:197.746680pt;}
.xa_c00108{left:199.586680pt;}
.x1c_c00108{left:207.840013pt;}
.x14_c00108{left:222.386680pt;}
.xb_c00108{left:223.960013pt;}
.x6_c00108{left:231.200013pt;}
.x7_c00108{left:250.733347pt;}
.x15_c00108{left:274.213347pt;}
.x1d_c00108{left:277.986680pt;}
.x1e_c00108{left:284.613347pt;}
.x16_c00108{left:299.680013pt;}
.x1f_c00108{left:301.946680pt;}
.x17_c00108{left:318.253347pt;}
.x20_c00108{left:320.493347pt;}
.x21_c00108{left:334.293347pt;}
.x22_c00108{left:347.373347pt;}
.x28_c00108{left:379.066680pt;}
.xc_c00108{left:409.186680pt;}
.x24_c00108{left:413.893347pt;}
.x23_c00108{left:415.800013pt;}
.x25_c00108{left:428.306680pt;}
.x27_c00108{left:490.093347pt;}
.x26_c00108{left:544.120013pt;}
.xe_c00108{left:545.840013pt;}
.xf_c00108{left:570.173347pt;}
}





/* 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_c00109 {
    display:none;
  }
  .loading-indicator_c00109.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00109 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_c00109 { 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_c00109" -> "#page-container .classname_c00109")
 */
.pf_c00109 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00109 { /* 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_c00109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00109 { /* 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_c00109 { /* 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_c00109 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00109 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00109 {overflow:visible;}
  }
}
.c_c00109 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00109 { /* 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_c00109:after { /* webkit #35443 */
  content: '';
}
.t_c00109:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00109 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 */
}
.__c00109 { /* 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_c00109 { /* info for Javascript */
  display:none;
}
.l_c00109 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00109 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00109 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00109: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_c00109 {
    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_c00109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00109.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_c00109 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00109;src:url('chunks/assets/font_00b6819dccabdb04a5d50261.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.284668;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_c00109;src:url('chunks/assets/font_b649ef02ce0ec992056d0423.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.284180;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_c00109;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;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;}
.m4_c00109{transform:matrix(0.151524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151524,0.000000,0.000000,0.250000,0,0);}
.m3_c00109{transform:matrix(0.153628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153628,0.000000,0.000000,0.250000,0,0);}
.m8_c00109{transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);}
.m2_c00109{transform:matrix(0.237301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237301,0.000000,0.000000,0.250000,0,0);}
.md_c00109{transform:matrix(0.239609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239609,0.000000,0.000000,0.250000,0,0);}
.m6_c00109{transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);}
.ma_c00109{transform:matrix(0.243303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243303,0.000000,0.000000,0.250000,0,0);}
.m1_c00109{transform:matrix(0.243717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243717,0.000000,0.000000,0.250000,0,0);}
.mc_c00109{transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);}
.mb_c00109{transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);}
.m9_c00109{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m0_c00109{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);}
.m7_c00109{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m5_c00109{transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls60_c00109{letter-spacing:-2.625000px;}
.ls75_c00109{letter-spacing:-2.394000px;}
.ls54_c00109{letter-spacing:-2.352000px;}
.ls7b_c00109{letter-spacing:-2.168280px;}
.ls76_c00109{letter-spacing:-2.099880px;}
.ls8b_c00109{letter-spacing:-1.974000px;}
.ls53_c00109{letter-spacing:-1.963080px;}
.ls73_c00109{letter-spacing:-1.730520px;}
.ls85_c00109{letter-spacing:-1.641600px;}
.ls79_c00109{letter-spacing:-1.627920px;}
.ls83_c00109{letter-spacing:-1.614240px;}
.ls7d_c00109{letter-spacing:-1.566360px;}
.ls81_c00109{letter-spacing:-1.368000px;}
.ls69_c00109{letter-spacing:-1.340640px;}
.ls7e_c00109{letter-spacing:-1.292760px;}
.ls61_c00109{letter-spacing:-1.231200px;}
.ls67_c00109{letter-spacing:-1.197000px;}
.ls5a_c00109{letter-spacing:-0.971280px;}
.ls64_c00109{letter-spacing:-0.950760px;}
.ls5b_c00109{letter-spacing:-0.937080px;}
.ls82_c00109{letter-spacing:-0.896040px;}
.ls62_c00109{letter-spacing:-0.827640px;}
.ls88_c00109{letter-spacing:-0.779760px;}
.ls5c_c00109{letter-spacing:-0.759240px;}
.ls5d_c00109{letter-spacing:-0.684000px;}
.ls66_c00109{letter-spacing:-0.663480px;}
.ls77_c00109{letter-spacing:-0.581400px;}
.ls78_c00109{letter-spacing:-0.540360px;}
.ls72_c00109{letter-spacing:-0.533520px;}
.ls5e_c00109{letter-spacing:-0.526680px;}
.ls86_c00109{letter-spacing:-0.499320px;}
.ls89_c00109{letter-spacing:-0.451440px;}
.ls7c_c00109{letter-spacing:-0.444600px;}
.ls6b_c00109{letter-spacing:-0.376200px;}
.ls8a_c00109{letter-spacing:-0.355680px;}
.ls6c_c00109{letter-spacing:-0.335160px;}
.ls6e_c00109{letter-spacing:-0.315840px;}
.ls63_c00109{letter-spacing:-0.300960px;}
.ls56_c00109{letter-spacing:-0.280440px;}
.ls68_c00109{letter-spacing:-0.225720px;}
.ls58_c00109{letter-spacing:-0.218880px;}
.ls84_c00109{letter-spacing:-0.177840px;}
.ls7a_c00109{letter-spacing:-0.171000px;}
.ls7f_c00109{letter-spacing:-0.164160px;}
.ls87_c00109{letter-spacing:-0.157320px;}
.ls52_c00109{letter-spacing:-0.136800px;}
.ls57_c00109{letter-spacing:-0.123120px;}
.ls74_c00109{letter-spacing:-0.102600px;}
.ls50_c00109{letter-spacing:-0.088920px;}
.ls6f_c00109{letter-spacing:-0.068400px;}
.ls55_c00109{letter-spacing:-0.041040px;}
.ls71_c00109{letter-spacing:-0.020520px;}
.ls51_c00109{letter-spacing:0.000000px;}
.ls2f_c00109{letter-spacing:0.006840px;}
.ls37_c00109{letter-spacing:0.013680px;}
.ls32_c00109{letter-spacing:0.020520px;}
.ls38_c00109{letter-spacing:0.047880px;}
.ls23_c00109{letter-spacing:0.068400px;}
.ls9_c00109{letter-spacing:0.075240px;}
.ls7_c00109{letter-spacing:0.095760px;}
.ls20_c00109{letter-spacing:0.109440px;}
.ls2d_c00109{letter-spacing:0.116280px;}
.ls48_c00109{letter-spacing:0.123120px;}
.ls1d_c00109{letter-spacing:0.143640px;}
.ls22_c00109{letter-spacing:0.150480px;}
.ls30_c00109{letter-spacing:0.164160px;}
.ls15_c00109{letter-spacing:0.184680px;}
.ls4b_c00109{letter-spacing:0.191520px;}
.ls11_c00109{letter-spacing:0.212040px;}
.ls6d_c00109{letter-spacing:0.246240px;}
.ls41_c00109{letter-spacing:0.253080px;}
.ls2c_c00109{letter-spacing:0.266760px;}
.ls8_c00109{letter-spacing:0.273600px;}
.ls2e_c00109{letter-spacing:0.294120px;}
.ls6a_c00109{letter-spacing:0.321480px;}
.ls13_c00109{letter-spacing:0.328320px;}
.ls1b_c00109{letter-spacing:0.342000px;}
.ls3f_c00109{letter-spacing:0.362520px;}
.ls16_c00109{letter-spacing:0.376200px;}
.lsf_c00109{letter-spacing:0.383040px;}
.ls2a_c00109{letter-spacing:0.389760px;}
.ls2_c00109{letter-spacing:0.389880px;}
.ls26_c00109{letter-spacing:0.410400px;}
.ls19_c00109{letter-spacing:0.437760px;}
.ls3a_c00109{letter-spacing:0.478800px;}
.ls44_c00109{letter-spacing:0.485640px;}
.ls5f_c00109{letter-spacing:0.490560px;}
.lsd_c00109{letter-spacing:0.499320px;}
.ls36_c00109{letter-spacing:0.510720px;}
.ls29_c00109{letter-spacing:0.540360px;}
.ls1f_c00109{letter-spacing:0.554040px;}
.ls47_c00109{letter-spacing:0.557760px;}
.lse_c00109{letter-spacing:0.567720px;}
.ls10_c00109{letter-spacing:0.574560px;}
.ls21_c00109{letter-spacing:0.588240px;}
.ls5_c00109{letter-spacing:0.595080px;}
.ls18_c00109{letter-spacing:0.601920px;}
.ls4c_c00109{letter-spacing:0.608760px;}
.ls4_c00109{letter-spacing:0.615600px;}
.lsc_c00109{letter-spacing:0.622440px;}
.ls33_c00109{letter-spacing:0.636120px;}
.ls28_c00109{letter-spacing:0.642960px;}
.ls4a_c00109{letter-spacing:0.663480px;}
.ls1c_c00109{letter-spacing:0.725040px;}
.ls31_c00109{letter-spacing:0.752400px;}
.ls3_c00109{letter-spacing:0.772920px;}
.ls27_c00109{letter-spacing:0.779520px;}
.ls1a_c00109{letter-spacing:0.779760px;}
.ls59_c00109{letter-spacing:0.813960px;}
.ls40_c00109{letter-spacing:0.846720px;}
.ls6_c00109{letter-spacing:0.848160px;}
.ls24_c00109{letter-spacing:0.853440px;}
.ls2b_c00109{letter-spacing:0.855000px;}
.ls39_c00109{letter-spacing:0.868680px;}
.ls34_c00109{letter-spacing:0.873600px;}
.ls4d_c00109{letter-spacing:0.875520px;}
.ls14_c00109{letter-spacing:1.026000px;}
.ls0_c00109{letter-spacing:1.048320px;}
.ls4e_c00109{letter-spacing:1.060200px;}
.ls43_c00109{letter-spacing:1.061760px;}
.ls35_c00109{letter-spacing:1.067040px;}
.ls42_c00109{letter-spacing:1.088640px;}
.ls4f_c00109{letter-spacing:1.119960px;}
.ls3b_c00109{letter-spacing:1.142280px;}
.ls3e_c00109{letter-spacing:1.149120px;}
.ls1e_c00109{letter-spacing:1.169280px;}
.ls45_c00109{letter-spacing:1.176000px;}
.ls25_c00109{letter-spacing:1.265400px;}
.lsa_c00109{letter-spacing:1.350720px;}
.ls46_c00109{letter-spacing:1.429560px;}
.ls49_c00109{letter-spacing:1.444800px;}
.ls80_c00109{letter-spacing:1.456920px;}
.ls17_c00109{letter-spacing:1.648440px;}
.ls12_c00109{letter-spacing:1.737360px;}
.ls1_c00109{letter-spacing:2.086200px;}
.ls3c_c00109{letter-spacing:2.526720px;}
.ls3d_c00109{letter-spacing:2.795520px;}
.lsb_c00109{letter-spacing:2.961720px;}
.ls65_c00109{letter-spacing:3.360000px;}
.ls70_c00109{letter-spacing:3.420000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{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__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00109{word-spacing:-0.664800px;}
.ws5_c00109{word-spacing:0.000000px;}
.ws2_c00109{word-spacing:5.764800px;}
.ws1_c00109{word-spacing:8.628480px;}
.ws4_c00109{word-spacing:12.638880px;}
.ws0_c00109{word-spacing:18.952320px;}
._f_c00109{margin-left:-6.135120px;}
._e_c00109{margin-left:-3.973680px;}
._d_c00109{margin-left:-1.822800px;}
._6_c00109{width:1.398720px;}
._c_c00109{width:2.530800px;}
._3_c00109{width:3.926160px;}
._7_c00109{width:5.171040px;}
._b_c00109{width:6.730560px;}
._5_c00109{width:7.866000px;}
._9_c00109{width:9.035640px;}
._8_c00109{width:10.321560px;}
._4_c00109{width:11.504880px;}
._a_c00109{width:12.654000px;}
._11_c00109{width:14.500800px;}
._0_c00109{width:15.903000px;}
._2_c00109{width:18.878400px;}
._1_c00109{width:20.301120px;}
._10_c00109{width:22.359960px;}
.fc0_c00109{color:transparent;}
.fs4_c00109{font-size:56.400000px;}
.fs0_c00109{font-size:61.200000px;}
.fs1_c00109{font-size:67.200000px;}
.fs2_c00109{font-size:68.400000px;}
.fs3_c00109{font-size:75.000000px;}
.y0_c00109{bottom:0.000000px;}
.y23_c00109{bottom:65.535015px;}
.y22_c00109{bottom:145.080015px;}
.y21_c00109{bottom:207.375015px;}
.y20_c00109{bottom:239.040015px;}
.y1f_c00109{bottom:270.000015px;}
.y1e_c00109{bottom:300.975015px;}
.y1d_c00109{bottom:332.295015px;}
.y1c_c00109{bottom:394.208715px;}
.y1b_c00109{bottom:425.895015px;}
.y1a_c00109{bottom:425.899815px;}
.y18_c00109{bottom:488.512815px;}
.y19_c00109{bottom:488.520015px;}
.y17_c00109{bottom:519.840015px;}
.y16_c00109{bottom:582.480015px;}
.y15_c00109{bottom:582.486915px;}
.y14_c00109{bottom:613.455015px;}
.y13_c00109{bottom:676.080015px;}
.y11_c00109{bottom:738.370815px;}
.y12_c00109{bottom:738.375015px;}
.y10_c00109{bottom:770.031915px;}
.yf_c00109{bottom:801.000015px;}
.ye_c00109{bottom:801.007815px;}
.yd_c00109{bottom:832.335015px;}
.yb_c00109{bottom:894.609615px;}
.yc_c00109{bottom:894.615015px;}
.ya_c00109{bottom:926.655015px;}
.y9_c00109{bottom:926.661615px;}
.y7_c00109{bottom:988.193415px;}
.y8_c00109{bottom:988.200015px;}
.y6_c00109{bottom:1019.879715px;}
.y5_c00109{bottom:1050.847815px;}
.y3_c00109{bottom:1082.170815px;}
.y4_c00109{bottom:1082.175015px;}
.y2_c00109{bottom:1113.840015px;}
.y1_c00109{bottom:1188.720015px;}
.ha_c00109{height:55.353516px;}
.h2_c00109{height:60.064453px;}
.h4_c00109{height:65.920312px;}
.h5_c00109{height:67.104459px;}
.h3_c00109{height:67.130859px;}
.h8_c00109{height:67.147659px;}
.h7_c00109{height:67.163259px;}
.h9_c00109{height:70.087500px;}
.h6_c00109{height:73.608398px;}
.h1_c00109{height:1263.000000px;}
.h0_c00109{height:1263.240015px;}
.w1_c00109{width:892.500000px;}
.w0_c00109{width:892.800015px;}
.x0_c00109{left:0.000000px;}
.x1_c00109{left:125.565015px;}
.x9_c00109{left:127.206915px;}
.x12_c00109{left:137.430015px;}
.x5_c00109{left:145.920015px;}
.x13_c00109{left:160.125015px;}
.x6_c00109{left:165.525015px;}
.xa_c00109{left:171.300015px;}
.x1f_c00109{left:176.565015px;}
.xf_c00109{left:178.410015px;}
.x2_c00109{left:179.445015px;}
.x10_c00109{left:195.015015px;}
.x1a_c00109{left:197.820015px;}
.xb_c00109{left:202.875015px;}
.x15_c00109{left:220.830015px;}
.x16_c00109{left:237.045015px;}
.x17_c00109{left:264.420015px;}
.x14_c00109{left:298.575015px;}
.x11_c00109{left:299.640015px;}
.xc_c00109{left:308.100015px;}
.xd_c00109{left:383.160015px;}
.x1b_c00109{left:386.085015px;}
.x1d_c00109{left:397.860015px;}
.xe_c00109{left:403.845015px;}
.x1c_c00109{left:414.480015px;}
.x20_c00109{left:425.775015px;}
.x1e_c00109{left:441.480015px;}
.x3_c00109{left:452.640015px;}
.x4_c00109{left:474.405015px;}
.x7_c00109{left:625.980015px;}
.x8_c00109{left:660.060015px;}
.x18_c00109{left:683.415015px;}
.x19_c00109{left:701.205015px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls60_c00109{letter-spacing:-2.333333pt;}
.ls75_c00109{letter-spacing:-2.128000pt;}
.ls54_c00109{letter-spacing:-2.090667pt;}
.ls7b_c00109{letter-spacing:-1.927360pt;}
.ls76_c00109{letter-spacing:-1.866560pt;}
.ls8b_c00109{letter-spacing:-1.754667pt;}
.ls53_c00109{letter-spacing:-1.744960pt;}
.ls73_c00109{letter-spacing:-1.538240pt;}
.ls85_c00109{letter-spacing:-1.459200pt;}
.ls79_c00109{letter-spacing:-1.447040pt;}
.ls83_c00109{letter-spacing:-1.434880pt;}
.ls7d_c00109{letter-spacing:-1.392320pt;}
.ls81_c00109{letter-spacing:-1.216000pt;}
.ls69_c00109{letter-spacing:-1.191680pt;}
.ls7e_c00109{letter-spacing:-1.149120pt;}
.ls61_c00109{letter-spacing:-1.094400pt;}
.ls67_c00109{letter-spacing:-1.064000pt;}
.ls5a_c00109{letter-spacing:-0.863360pt;}
.ls64_c00109{letter-spacing:-0.845120pt;}
.ls5b_c00109{letter-spacing:-0.832960pt;}
.ls82_c00109{letter-spacing:-0.796480pt;}
.ls62_c00109{letter-spacing:-0.735680pt;}
.ls88_c00109{letter-spacing:-0.693120pt;}
.ls5c_c00109{letter-spacing:-0.674880pt;}
.ls5d_c00109{letter-spacing:-0.608000pt;}
.ls66_c00109{letter-spacing:-0.589760pt;}
.ls77_c00109{letter-spacing:-0.516800pt;}
.ls78_c00109{letter-spacing:-0.480320pt;}
.ls72_c00109{letter-spacing:-0.474240pt;}
.ls5e_c00109{letter-spacing:-0.468160pt;}
.ls86_c00109{letter-spacing:-0.443840pt;}
.ls89_c00109{letter-spacing:-0.401280pt;}
.ls7c_c00109{letter-spacing:-0.395200pt;}
.ls6b_c00109{letter-spacing:-0.334400pt;}
.ls8a_c00109{letter-spacing:-0.316160pt;}
.ls6c_c00109{letter-spacing:-0.297920pt;}
.ls6e_c00109{letter-spacing:-0.280747pt;}
.ls63_c00109{letter-spacing:-0.267520pt;}
.ls56_c00109{letter-spacing:-0.249280pt;}
.ls68_c00109{letter-spacing:-0.200640pt;}
.ls58_c00109{letter-spacing:-0.194560pt;}
.ls84_c00109{letter-spacing:-0.158080pt;}
.ls7a_c00109{letter-spacing:-0.152000pt;}
.ls7f_c00109{letter-spacing:-0.145920pt;}
.ls87_c00109{letter-spacing:-0.139840pt;}
.ls52_c00109{letter-spacing:-0.121600pt;}
.ls57_c00109{letter-spacing:-0.109440pt;}
.ls74_c00109{letter-spacing:-0.091200pt;}
.ls50_c00109{letter-spacing:-0.079040pt;}
.ls6f_c00109{letter-spacing:-0.060800pt;}
.ls55_c00109{letter-spacing:-0.036480pt;}
.ls71_c00109{letter-spacing:-0.018240pt;}
.ls51_c00109{letter-spacing:0.000000pt;}
.ls2f_c00109{letter-spacing:0.006080pt;}
.ls37_c00109{letter-spacing:0.012160pt;}
.ls32_c00109{letter-spacing:0.018240pt;}
.ls38_c00109{letter-spacing:0.042560pt;}
.ls23_c00109{letter-spacing:0.060800pt;}
.ls9_c00109{letter-spacing:0.066880pt;}
.ls7_c00109{letter-spacing:0.085120pt;}
.ls20_c00109{letter-spacing:0.097280pt;}
.ls2d_c00109{letter-spacing:0.103360pt;}
.ls48_c00109{letter-spacing:0.109440pt;}
.ls1d_c00109{letter-spacing:0.127680pt;}
.ls22_c00109{letter-spacing:0.133760pt;}
.ls30_c00109{letter-spacing:0.145920pt;}
.ls15_c00109{letter-spacing:0.164160pt;}
.ls4b_c00109{letter-spacing:0.170240pt;}
.ls11_c00109{letter-spacing:0.188480pt;}
.ls6d_c00109{letter-spacing:0.218880pt;}
.ls41_c00109{letter-spacing:0.224960pt;}
.ls2c_c00109{letter-spacing:0.237120pt;}
.ls8_c00109{letter-spacing:0.243200pt;}
.ls2e_c00109{letter-spacing:0.261440pt;}
.ls6a_c00109{letter-spacing:0.285760pt;}
.ls13_c00109{letter-spacing:0.291840pt;}
.ls1b_c00109{letter-spacing:0.304000pt;}
.ls3f_c00109{letter-spacing:0.322240pt;}
.ls16_c00109{letter-spacing:0.334400pt;}
.lsf_c00109{letter-spacing:0.340480pt;}
.ls2a_c00109{letter-spacing:0.346453pt;}
.ls2_c00109{letter-spacing:0.346560pt;}
.ls26_c00109{letter-spacing:0.364800pt;}
.ls19_c00109{letter-spacing:0.389120pt;}
.ls3a_c00109{letter-spacing:0.425600pt;}
.ls44_c00109{letter-spacing:0.431680pt;}
.ls5f_c00109{letter-spacing:0.436053pt;}
.lsd_c00109{letter-spacing:0.443840pt;}
.ls36_c00109{letter-spacing:0.453973pt;}
.ls29_c00109{letter-spacing:0.480320pt;}
.ls1f_c00109{letter-spacing:0.492480pt;}
.ls47_c00109{letter-spacing:0.495787pt;}
.lse_c00109{letter-spacing:0.504640pt;}
.ls10_c00109{letter-spacing:0.510720pt;}
.ls21_c00109{letter-spacing:0.522880pt;}
.ls5_c00109{letter-spacing:0.528960pt;}
.ls18_c00109{letter-spacing:0.535040pt;}
.ls4c_c00109{letter-spacing:0.541120pt;}
.ls4_c00109{letter-spacing:0.547200pt;}
.lsc_c00109{letter-spacing:0.553280pt;}
.ls33_c00109{letter-spacing:0.565440pt;}
.ls28_c00109{letter-spacing:0.571520pt;}
.ls4a_c00109{letter-spacing:0.589760pt;}
.ls1c_c00109{letter-spacing:0.644480pt;}
.ls31_c00109{letter-spacing:0.668800pt;}
.ls3_c00109{letter-spacing:0.687040pt;}
.ls27_c00109{letter-spacing:0.692907pt;}
.ls1a_c00109{letter-spacing:0.693120pt;}
.ls59_c00109{letter-spacing:0.723520pt;}
.ls40_c00109{letter-spacing:0.752640pt;}
.ls6_c00109{letter-spacing:0.753920pt;}
.ls24_c00109{letter-spacing:0.758613pt;}
.ls2b_c00109{letter-spacing:0.760000pt;}
.ls39_c00109{letter-spacing:0.772160pt;}
.ls34_c00109{letter-spacing:0.776533pt;}
.ls4d_c00109{letter-spacing:0.778240pt;}
.ls14_c00109{letter-spacing:0.912000pt;}
.ls0_c00109{letter-spacing:0.931840pt;}
.ls4e_c00109{letter-spacing:0.942400pt;}
.ls43_c00109{letter-spacing:0.943787pt;}
.ls35_c00109{letter-spacing:0.948480pt;}
.ls42_c00109{letter-spacing:0.967680pt;}
.ls4f_c00109{letter-spacing:0.995520pt;}
.ls3b_c00109{letter-spacing:1.015360pt;}
.ls3e_c00109{letter-spacing:1.021440pt;}
.ls1e_c00109{letter-spacing:1.039360pt;}
.ls45_c00109{letter-spacing:1.045333pt;}
.ls25_c00109{letter-spacing:1.124800pt;}
.lsa_c00109{letter-spacing:1.200640pt;}
.ls46_c00109{letter-spacing:1.270720pt;}
.ls49_c00109{letter-spacing:1.284267pt;}
.ls80_c00109{letter-spacing:1.295040pt;}
.ls17_c00109{letter-spacing:1.465280pt;}
.ls12_c00109{letter-spacing:1.544320pt;}
.ls1_c00109{letter-spacing:1.854400pt;}
.ls3c_c00109{letter-spacing:2.245973pt;}
.ls3d_c00109{letter-spacing:2.484907pt;}
.lsb_c00109{letter-spacing:2.632640pt;}
.ls65_c00109{letter-spacing:2.986667pt;}
.ls70_c00109{letter-spacing:3.040000pt;}
.ws3_c00109{word-spacing:-0.590933pt;}
.ws5_c00109{word-spacing:0.000000pt;}
.ws2_c00109{word-spacing:5.124267pt;}
.ws1_c00109{word-spacing:7.669760pt;}
.ws4_c00109{word-spacing:11.234560pt;}
.ws0_c00109{word-spacing:16.846507pt;}
._f_c00109{margin-left:-5.453440pt;}
._e_c00109{margin-left:-3.532160pt;}
._d_c00109{margin-left:-1.620267pt;}
._6_c00109{width:1.243307pt;}
._c_c00109{width:2.249600pt;}
._3_c00109{width:3.489920pt;}
._7_c00109{width:4.596480pt;}
._b_c00109{width:5.982720pt;}
._5_c00109{width:6.992000pt;}
._9_c00109{width:8.031680pt;}
._8_c00109{width:9.174720pt;}
._4_c00109{width:10.226560pt;}
._a_c00109{width:11.248000pt;}
._11_c00109{width:12.889600pt;}
._0_c00109{width:14.136000pt;}
._2_c00109{width:16.780800pt;}
._1_c00109{width:18.045440pt;}
._10_c00109{width:19.875520pt;}
.fs4_c00109{font-size:50.133333pt;}
.fs0_c00109{font-size:54.400000pt;}
.fs1_c00109{font-size:59.733333pt;}
.fs2_c00109{font-size:60.800000pt;}
.fs3_c00109{font-size:66.666667pt;}
.y0_c00109{bottom:0.000000pt;}
.y23_c00109{bottom:58.253347pt;}
.y22_c00109{bottom:128.960013pt;}
.y21_c00109{bottom:184.333347pt;}
.y20_c00109{bottom:212.480013pt;}
.y1f_c00109{bottom:240.000013pt;}
.y1e_c00109{bottom:267.533347pt;}
.y1d_c00109{bottom:295.373347pt;}
.y1c_c00109{bottom:350.407747pt;}
.y1b_c00109{bottom:378.573347pt;}
.y1a_c00109{bottom:378.577613pt;}
.y18_c00109{bottom:434.233613pt;}
.y19_c00109{bottom:434.240013pt;}
.y17_c00109{bottom:462.080013pt;}
.y16_c00109{bottom:517.760013pt;}
.y15_c00109{bottom:517.766147pt;}
.y14_c00109{bottom:545.293347pt;}
.y13_c00109{bottom:600.960013pt;}
.y11_c00109{bottom:656.329613pt;}
.y12_c00109{bottom:656.333347pt;}
.y10_c00109{bottom:684.472813pt;}
.yf_c00109{bottom:712.000013pt;}
.ye_c00109{bottom:712.006947pt;}
.yd_c00109{bottom:739.853347pt;}
.yb_c00109{bottom:795.208547pt;}
.yc_c00109{bottom:795.213347pt;}
.ya_c00109{bottom:823.693347pt;}
.y9_c00109{bottom:823.699213pt;}
.y7_c00109{bottom:878.394147pt;}
.y8_c00109{bottom:878.400013pt;}
.y6_c00109{bottom:906.559747pt;}
.y5_c00109{bottom:934.086947pt;}
.y3_c00109{bottom:961.929613pt;}
.y4_c00109{bottom:961.933347pt;}
.y2_c00109{bottom:990.080013pt;}
.y1_c00109{bottom:1056.640013pt;}
.ha_c00109{height:49.203125pt;}
.h2_c00109{height:53.390625pt;}
.h4_c00109{height:58.595833pt;}
.h5_c00109{height:59.648408pt;}
.h3_c00109{height:59.671875pt;}
.h8_c00109{height:59.686808pt;}
.h7_c00109{height:59.700675pt;}
.h9_c00109{height:62.300000pt;}
.h6_c00109{height:65.429688pt;}
.h1_c00109{height:1122.666667pt;}
.h0_c00109{height:1122.880013pt;}
.w1_c00109{width:793.333333pt;}
.w0_c00109{width:793.600013pt;}
.x0_c00109{left:0.000000pt;}
.x1_c00109{left:111.613347pt;}
.x9_c00109{left:113.072813pt;}
.x12_c00109{left:122.160013pt;}
.x5_c00109{left:129.706680pt;}
.x13_c00109{left:142.333347pt;}
.x6_c00109{left:147.133347pt;}
.xa_c00109{left:152.266680pt;}
.x1f_c00109{left:156.946680pt;}
.xf_c00109{left:158.586680pt;}
.x2_c00109{left:159.506680pt;}
.x10_c00109{left:173.346680pt;}
.x1a_c00109{left:175.840013pt;}
.xb_c00109{left:180.333347pt;}
.x15_c00109{left:196.293347pt;}
.x16_c00109{left:210.706680pt;}
.x17_c00109{left:235.040013pt;}
.x14_c00109{left:265.400013pt;}
.x11_c00109{left:266.346680pt;}
.xc_c00109{left:273.866680pt;}
.xd_c00109{left:340.586680pt;}
.x1b_c00109{left:343.186680pt;}
.x1d_c00109{left:353.653347pt;}
.xe_c00109{left:358.973347pt;}
.x1c_c00109{left:368.426680pt;}
.x20_c00109{left:378.466680pt;}
.x1e_c00109{left:392.426680pt;}
.x3_c00109{left:402.346680pt;}
.x4_c00109{left:421.693347pt;}
.x7_c00109{left:556.426680pt;}
.x8_c00109{left:586.720013pt;}
.x18_c00109{left:607.480013pt;}
.x19_c00109{left:623.293347pt;}
}





/* 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_c00110 {
    display:none;
  }
  .loading-indicator_c00110.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00110 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_c00110 { 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_c00110" -> "#page-container .classname_c00110")
 */
.pf_c00110 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00110 { /* 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_c00110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00110 { /* 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_c00110 { /* 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_c00110 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00110 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00110 {overflow:visible;}
  }
}
.c_c00110 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00110 { /* 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_c00110:after { /* webkit #35443 */
  content: '';
}
.t_c00110:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00110 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 */
}
.__c00110 { /* 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_c00110 { /* info for Javascript */
  display:none;
}
.l_c00110 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00110 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00110 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00110: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_c00110 {
    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_c00110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00110.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_c00110 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00110;src:url('chunks/assets/font_e376e8c02e277f67b1ef1855.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.284668;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_c00110;src:url('chunks/assets/font_3f3bfdbcae8ab09125dbae02.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.284180;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_c00110;src:url('chunks/assets/font_1854d57f936f719b5b6a1109.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;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;}
.m4_c00110{transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);}
.m3_c00110{transform:matrix(0.144152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144152,0.000000,0.000000,0.250000,0,0);}
.m5_c00110{transform:matrix(0.231510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231510,0.000000,0.000000,0.250000,0,0);}
.m6_c00110{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.mb_c00110{transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);}
.ma_c00110{transform:matrix(0.239976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239976,0.000000,0.000000,0.250000,0,0);}
.m7_c00110{transform:matrix(0.243116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243116,0.000000,0.000000,0.250000,0,0);}
.m8_c00110{transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{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);}
.m0_c00110{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.mc_c00110{transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);}
.m9_c00110{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m2_c00110{transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);}
.md_c00110{transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls75_c00110{letter-spacing:-2.688000px;}
.ls7b_c00110{letter-spacing:-2.583000px;}
.ls81_c00110{letter-spacing:-2.541000px;}
.ls79_c00110{letter-spacing:-2.398500px;}
.ls8c_c00110{letter-spacing:-2.394000px;}
.ls7d_c00110{letter-spacing:-2.310000px;}
.ls8b_c00110{letter-spacing:-2.168280px;}
.ls8e_c00110{letter-spacing:-2.162340px;}
.ls76_c00110{letter-spacing:-1.999980px;}
.ls84_c00110{letter-spacing:-1.933560px;}
.ls8d_c00110{letter-spacing:-1.926180px;}
.ls92_c00110{letter-spacing:-1.830240px;}
.ls91_c00110{letter-spacing:-1.793340px;}
.ls96_c00110{letter-spacing:-1.719540px;}
.ls87_c00110{letter-spacing:-1.682640px;}
.ls74_c00110{letter-spacing:-1.630980px;}
.ls89_c00110{letter-spacing:-1.566360px;}
.ls83_c00110{letter-spacing:-1.542420px;}
.ls88_c00110{letter-spacing:-1.313280px;}
.ls8a_c00110{letter-spacing:-1.292760px;}
.ls70_c00110{letter-spacing:-1.197000px;}
.ls90_c00110{letter-spacing:-1.080720px;}
.ls99_c00110{letter-spacing:-0.958440px;}
.ls8f_c00110{letter-spacing:-0.896040px;}
.ls94_c00110{letter-spacing:-0.834480px;}
.ls7e_c00110{letter-spacing:-0.615600px;}
.ls93_c00110{letter-spacing:-0.533520px;}
.ls80_c00110{letter-spacing:-0.526680px;}
.ls7c_c00110{letter-spacing:-0.478800px;}
.ls95_c00110{letter-spacing:-0.465120px;}
.ls86_c00110{letter-spacing:-0.386460px;}
.ls6a_c00110{letter-spacing:-0.376200px;}
.ls7a_c00110{letter-spacing:-0.302580px;}
.ls78_c00110{letter-spacing:-0.273600px;}
.ls85_c00110{letter-spacing:-0.171000px;}
.ls77_c00110{letter-spacing:-0.157320px;}
.ls97_c00110{letter-spacing:-0.129960px;}
.ls73_c00110{letter-spacing:-0.088920px;}
.ls71_c00110{letter-spacing:-0.013680px;}
.ls6e_c00110{letter-spacing:0.000000px;}
.ls1e_c00110{letter-spacing:0.020520px;}
.ls53_c00110{letter-spacing:0.068400px;}
.ls0_c00110{letter-spacing:0.082080px;}
.ls38_c00110{letter-spacing:0.109440px;}
.ls72_c00110{letter-spacing:0.143640px;}
.ls54_c00110{letter-spacing:0.164160px;}
.ls3e_c00110{letter-spacing:0.246240px;}
.lsc_c00110{letter-spacing:0.273600px;}
.ls17_c00110{letter-spacing:0.300960px;}
.ls1f_c00110{letter-spacing:0.307800px;}
.ls48_c00110{letter-spacing:0.335160px;}
.ls29_c00110{letter-spacing:0.342000px;}
.ls4e_c00110{letter-spacing:0.345780px;}
.ls67_c00110{letter-spacing:0.355680px;}
.ls34_c00110{letter-spacing:0.369360px;}
.lsf_c00110{letter-spacing:0.376200px;}
.ls15_c00110{letter-spacing:0.396720px;}
.ls6_c00110{letter-spacing:0.417240px;}
.ls4_c00110{letter-spacing:0.437760px;}
.ls7_c00110{letter-spacing:0.478800px;}
.ls16_c00110{letter-spacing:0.492480px;}
.ls2b_c00110{letter-spacing:0.499320px;}
.ls3a_c00110{letter-spacing:0.506160px;}
.ls58_c00110{letter-spacing:0.519840px;}
.ls2_c00110{letter-spacing:0.533520px;}
.ls28_c00110{letter-spacing:0.540360px;}
.ls3f_c00110{letter-spacing:0.547200px;}
.ls62_c00110{letter-spacing:0.554040px;}
.ls40_c00110{letter-spacing:0.560880px;}
.ls5_c00110{letter-spacing:0.574560px;}
.ls43_c00110{letter-spacing:0.588240px;}
.ls32_c00110{letter-spacing:0.595080px;}
.ls22_c00110{letter-spacing:0.608760px;}
.ls98_c00110{letter-spacing:0.615600px;}
.ls4f_c00110{letter-spacing:0.622440px;}
.ls57_c00110{letter-spacing:0.629280px;}
.lsb_c00110{letter-spacing:0.677160px;}
.ls59_c00110{letter-spacing:0.684000px;}
.ls5b_c00110{letter-spacing:0.690840px;}
.ls1a_c00110{letter-spacing:0.697680px;}
.ls63_c00110{letter-spacing:0.711360px;}
.ls3b_c00110{letter-spacing:0.718200px;}
.ls10_c00110{letter-spacing:0.731880px;}
.ls47_c00110{letter-spacing:0.752400px;}
.ls6b_c00110{letter-spacing:0.759240px;}
.ls64_c00110{letter-spacing:0.772920px;}
.ls6c_c00110{letter-spacing:0.820800px;}
.ls5f_c00110{letter-spacing:0.834480px;}
.ls39_c00110{letter-spacing:0.848160px;}
.ls7f_c00110{letter-spacing:0.861840px;}
.ls44_c00110{letter-spacing:0.902880px;}
.ls5e_c00110{letter-spacing:0.909720px;}
.ls19_c00110{letter-spacing:0.916560px;}
.ls51_c00110{letter-spacing:0.937080px;}
.ls52_c00110{letter-spacing:0.964440px;}
.ls24_c00110{letter-spacing:0.971280px;}
.ls14_c00110{letter-spacing:0.978120px;}
.ls30_c00110{letter-spacing:0.984960px;}
.ls12_c00110{letter-spacing:1.012320px;}
.ls1c_c00110{letter-spacing:1.026000px;}
.ls6f_c00110{letter-spacing:1.039680px;}
.ls61_c00110{letter-spacing:1.046520px;}
.ls27_c00110{letter-spacing:1.053360px;}
.ls60_c00110{letter-spacing:1.060200px;}
.ls18_c00110{letter-spacing:1.067040px;}
.ls68_c00110{letter-spacing:1.073880px;}
.ls37_c00110{letter-spacing:1.108080px;}
.ls2d_c00110{letter-spacing:1.136520px;}
.ls20_c00110{letter-spacing:1.149120px;}
.ls11_c00110{letter-spacing:1.155960px;}
.ls46_c00110{letter-spacing:1.169640px;}
.lsa_c00110{letter-spacing:1.217520px;}
.ls41_c00110{letter-spacing:1.224360px;}
.ls55_c00110{letter-spacing:1.244880px;}
.ls50_c00110{letter-spacing:1.251720px;}
.ls1b_c00110{letter-spacing:1.272240px;}
.ls1d_c00110{letter-spacing:1.279080px;}
.ls5a_c00110{letter-spacing:1.285920px;}
.ls5c_c00110{letter-spacing:1.299600px;}
.ls4a_c00110{letter-spacing:1.326960px;}
.ls2f_c00110{letter-spacing:1.333800px;}
.ls23_c00110{letter-spacing:1.354320px;}
.ls35_c00110{letter-spacing:1.361160px;}
.ls13_c00110{letter-spacing:1.395360px;}
.ls2a_c00110{letter-spacing:1.409040px;}
.ls21_c00110{letter-spacing:1.422720px;}
.ls5d_c00110{letter-spacing:1.456920px;}
.ls4b_c00110{letter-spacing:1.497960px;}
.lse_c00110{letter-spacing:1.511640px;}
.ls65_c00110{letter-spacing:1.539000px;}
.ls26_c00110{letter-spacing:1.545840px;}
.ls45_c00110{letter-spacing:1.552680px;}
.ls3d_c00110{letter-spacing:1.648440px;}
.ls1_c00110{letter-spacing:1.710000px;}
.ls3c_c00110{letter-spacing:1.716840px;}
.ls2e_c00110{letter-spacing:1.723680px;}
.ls8_c00110{letter-spacing:1.737360px;}
.ls66_c00110{letter-spacing:1.785240px;}
.lsd_c00110{letter-spacing:1.792080px;}
.ls42_c00110{letter-spacing:1.812600px;}
.ls49_c00110{letter-spacing:1.826280px;}
.ls2c_c00110{letter-spacing:1.976760px;}
.ls4d_c00110{letter-spacing:2.054340px;}
.ls56_c00110{letter-spacing:2.086200px;}
.ls36_c00110{letter-spacing:2.195640px;}
.ls9_c00110{letter-spacing:2.202480px;}
.ls25_c00110{letter-spacing:2.352960px;}
.ls33_c00110{letter-spacing:2.455560px;}
.ls82_c00110{letter-spacing:2.476080px;}
.ls4c_c00110{letter-spacing:2.481480px;}
.ls69_c00110{letter-spacing:2.940000px;}
.ls3_c00110{letter-spacing:2.961720px;}
.ls31_c00110{letter-spacing:3.091680px;}
.ls6d_c00110{letter-spacing:3.420000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{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__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00110{word-spacing:0.000000px;}
.ws2_c00110{word-spacing:1.868100px;}
.ws0_c00110{word-spacing:2.507520px;}
.ws1_c00110{word-spacing:20.091600px;}
.ws3_c00110{word-spacing:21.083760px;}
._f_c00110{margin-left:-7.553640px;}
._8_c00110{margin-left:-5.832240px;}
._a_c00110{margin-left:-4.658040px;}
._6_c00110{margin-left:-3.269040px;}
._3_c00110{margin-left:-1.450080px;}
._2_c00110{width:2.216160px;}
._1_c00110{width:3.570000px;}
._5_c00110{width:5.622480px;}
._7_c00110{width:6.833640px;}
._4_c00110{width:8.173800px;}
._9_c00110{width:9.516600px;}
._0_c00110{width:11.193120px;}
._b_c00110{width:13.269600px;}
._c_c00110{width:15.499440px;}
._d_c00110{width:18.796320px;}
._e_c00110{width:20.075400px;}
.fc0_c00110{color:transparent;}
.fs0_c00110{font-size:58.800000px;}
.fs4_c00110{font-size:66.000000px;}
.fs6_c00110{font-size:67.800000px;}
.fs1_c00110{font-size:68.400000px;}
.fs5_c00110{font-size:72.600000px;}
.fs2_c00110{font-size:73.800000px;}
.fs7_c00110{font-size:74.400000px;}
.fs3_c00110{font-size:76.800000px;}
.y0_c00110{bottom:0.000000px;}
.y1e_c00110{bottom:69.840000px;}
.y1c_c00110{bottom:148.306200px;}
.y1d_c00110{bottom:148.320000px;}
.y1b_c00110{bottom:179.992500px;}
.y1a_c00110{bottom:212.046900px;}
.y18_c00110{bottom:243.007800px;}
.y19_c00110{bottom:243.015000px;}
.y17_c00110{bottom:274.335000px;}
.y16_c00110{bottom:336.255000px;}
.y15_c00110{bottom:368.295000px;}
.y14_c00110{bottom:430.560000px;}
.y13_c00110{bottom:492.480000px;}
.y12_c00110{bottom:525.240000px;}
.yf_c00110{bottom:586.800000px;}
.y11_c00110{bottom:619.200000px;}
.y10_c00110{bottom:681.855000px;}
.ye_c00110{bottom:744.135000px;}
.yc_c00110{bottom:776.167800px;}
.yd_c00110{bottom:776.175000px;}
.yb_c00110{bottom:807.488700px;}
.ya_c00110{bottom:839.175000px;}
.y9_c00110{bottom:870.487800px;}
.y8_c00110{bottom:901.815000px;}
.y7_c00110{bottom:964.080000px;}
.y6_c00110{bottom:1027.080000px;}
.y5_c00110{bottom:1058.392800px;}
.y3_c00110{bottom:1089.713700px;}
.y4_c00110{bottom:1089.720000px;}
.y2_c00110{bottom:1121.400000px;}
.y1_c00110{bottom:1197.015000px;}
.h2_c00110{height:57.708984px;}
.ha_c00110{height:66.541992px;}
.h3_c00110{height:67.130859px;}
.h8_c00110{height:67.156059px;}
.hc_c00110{height:67.163259px;}
.h7_c00110{height:68.835938px;}
.h9_c00110{height:71.217480px;}
.h4_c00110{height:72.394629px;}
.h6_c00110{height:72.423429px;}
.hb_c00110{height:73.019531px;}
.h5_c00110{height:75.375000px;}
.h1_c00110{height:1263.000000px;}
.h0_c00110{height:1263.240000px;}
.w1_c00110{width:892.500000px;}
.w0_c00110{width:892.800000px;}
.x0_c00110{left:0.000000px;}
.x17_c00110{left:122.718000px;}
.x9_c00110{left:123.877500px;}
.x2_c00110{left:125.820000px;}
.x1_c00110{left:127.005000px;}
.xa_c00110{left:147.360000px;}
.xe_c00110{left:177.285000px;}
.x5_c00110{left:179.085000px;}
.xf_c00110{left:216.000000px;}
.x1a_c00110{left:252.180000px;}
.x1b_c00110{left:273.450000px;}
.x10_c00110{left:290.790000px;}
.x13_c00110{left:307.575000px;}
.x1c_c00110{left:428.250000px;}
.x14_c00110{left:429.915000px;}
.x15_c00110{left:478.230000px;}
.x16_c00110{left:494.445000px;}
.x3_c00110{left:527.790000px;}
.x6_c00110{left:541.380000px;}
.x4_c00110{left:556.890000px;}
.x7_c00110{left:572.940000px;}
.x11_c00110{left:587.790000px;}
.x12_c00110{left:611.205000px;}
.x18_c00110{left:651.960000px;}
.x19_c00110{left:676.770000px;}
.xb_c00110{left:696.435000px;}
.x8_c00110{left:714.180000px;}
.xd_c00110{left:716.445000px;}
.xc_c00110{left:740.715000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls75_c00110{letter-spacing:-2.389333pt;}
.ls7b_c00110{letter-spacing:-2.296000pt;}
.ls81_c00110{letter-spacing:-2.258667pt;}
.ls79_c00110{letter-spacing:-2.132000pt;}
.ls8c_c00110{letter-spacing:-2.128000pt;}
.ls7d_c00110{letter-spacing:-2.053333pt;}
.ls8b_c00110{letter-spacing:-1.927360pt;}
.ls8e_c00110{letter-spacing:-1.922080pt;}
.ls76_c00110{letter-spacing:-1.777760pt;}
.ls84_c00110{letter-spacing:-1.718720pt;}
.ls8d_c00110{letter-spacing:-1.712160pt;}
.ls92_c00110{letter-spacing:-1.626880pt;}
.ls91_c00110{letter-spacing:-1.594080pt;}
.ls96_c00110{letter-spacing:-1.528480pt;}
.ls87_c00110{letter-spacing:-1.495680pt;}
.ls74_c00110{letter-spacing:-1.449760pt;}
.ls89_c00110{letter-spacing:-1.392320pt;}
.ls83_c00110{letter-spacing:-1.371040pt;}
.ls88_c00110{letter-spacing:-1.167360pt;}
.ls8a_c00110{letter-spacing:-1.149120pt;}
.ls70_c00110{letter-spacing:-1.064000pt;}
.ls90_c00110{letter-spacing:-0.960640pt;}
.ls99_c00110{letter-spacing:-0.851947pt;}
.ls8f_c00110{letter-spacing:-0.796480pt;}
.ls94_c00110{letter-spacing:-0.741760pt;}
.ls7e_c00110{letter-spacing:-0.547200pt;}
.ls93_c00110{letter-spacing:-0.474240pt;}
.ls80_c00110{letter-spacing:-0.468160pt;}
.ls7c_c00110{letter-spacing:-0.425600pt;}
.ls95_c00110{letter-spacing:-0.413440pt;}
.ls86_c00110{letter-spacing:-0.343520pt;}
.ls6a_c00110{letter-spacing:-0.334400pt;}
.ls7a_c00110{letter-spacing:-0.268960pt;}
.ls78_c00110{letter-spacing:-0.243200pt;}
.ls85_c00110{letter-spacing:-0.152000pt;}
.ls77_c00110{letter-spacing:-0.139840pt;}
.ls97_c00110{letter-spacing:-0.115520pt;}
.ls73_c00110{letter-spacing:-0.079040pt;}
.ls71_c00110{letter-spacing:-0.012160pt;}
.ls6e_c00110{letter-spacing:0.000000pt;}
.ls1e_c00110{letter-spacing:0.018240pt;}
.ls53_c00110{letter-spacing:0.060800pt;}
.ls0_c00110{letter-spacing:0.072960pt;}
.ls38_c00110{letter-spacing:0.097280pt;}
.ls72_c00110{letter-spacing:0.127680pt;}
.ls54_c00110{letter-spacing:0.145920pt;}
.ls3e_c00110{letter-spacing:0.218880pt;}
.lsc_c00110{letter-spacing:0.243200pt;}
.ls17_c00110{letter-spacing:0.267520pt;}
.ls1f_c00110{letter-spacing:0.273600pt;}
.ls48_c00110{letter-spacing:0.297920pt;}
.ls29_c00110{letter-spacing:0.304000pt;}
.ls4e_c00110{letter-spacing:0.307360pt;}
.ls67_c00110{letter-spacing:0.316160pt;}
.ls34_c00110{letter-spacing:0.328320pt;}
.lsf_c00110{letter-spacing:0.334400pt;}
.ls15_c00110{letter-spacing:0.352640pt;}
.ls6_c00110{letter-spacing:0.370880pt;}
.ls4_c00110{letter-spacing:0.389120pt;}
.ls7_c00110{letter-spacing:0.425600pt;}
.ls16_c00110{letter-spacing:0.437760pt;}
.ls2b_c00110{letter-spacing:0.443840pt;}
.ls3a_c00110{letter-spacing:0.449920pt;}
.ls58_c00110{letter-spacing:0.462080pt;}
.ls2_c00110{letter-spacing:0.474240pt;}
.ls28_c00110{letter-spacing:0.480320pt;}
.ls3f_c00110{letter-spacing:0.486400pt;}
.ls62_c00110{letter-spacing:0.492480pt;}
.ls40_c00110{letter-spacing:0.498560pt;}
.ls5_c00110{letter-spacing:0.510720pt;}
.ls43_c00110{letter-spacing:0.522880pt;}
.ls32_c00110{letter-spacing:0.528960pt;}
.ls22_c00110{letter-spacing:0.541120pt;}
.ls98_c00110{letter-spacing:0.547200pt;}
.ls4f_c00110{letter-spacing:0.553280pt;}
.ls57_c00110{letter-spacing:0.559360pt;}
.lsb_c00110{letter-spacing:0.601920pt;}
.ls59_c00110{letter-spacing:0.608000pt;}
.ls5b_c00110{letter-spacing:0.614080pt;}
.ls1a_c00110{letter-spacing:0.620160pt;}
.ls63_c00110{letter-spacing:0.632320pt;}
.ls3b_c00110{letter-spacing:0.638400pt;}
.ls10_c00110{letter-spacing:0.650560pt;}
.ls47_c00110{letter-spacing:0.668800pt;}
.ls6b_c00110{letter-spacing:0.674880pt;}
.ls64_c00110{letter-spacing:0.687040pt;}
.ls6c_c00110{letter-spacing:0.729600pt;}
.ls5f_c00110{letter-spacing:0.741760pt;}
.ls39_c00110{letter-spacing:0.753920pt;}
.ls7f_c00110{letter-spacing:0.766080pt;}
.ls44_c00110{letter-spacing:0.802560pt;}
.ls5e_c00110{letter-spacing:0.808640pt;}
.ls19_c00110{letter-spacing:0.814720pt;}
.ls51_c00110{letter-spacing:0.832960pt;}
.ls52_c00110{letter-spacing:0.857280pt;}
.ls24_c00110{letter-spacing:0.863360pt;}
.ls14_c00110{letter-spacing:0.869440pt;}
.ls30_c00110{letter-spacing:0.875520pt;}
.ls12_c00110{letter-spacing:0.899840pt;}
.ls1c_c00110{letter-spacing:0.912000pt;}
.ls6f_c00110{letter-spacing:0.924160pt;}
.ls61_c00110{letter-spacing:0.930240pt;}
.ls27_c00110{letter-spacing:0.936320pt;}
.ls60_c00110{letter-spacing:0.942400pt;}
.ls18_c00110{letter-spacing:0.948480pt;}
.ls68_c00110{letter-spacing:0.954560pt;}
.ls37_c00110{letter-spacing:0.984960pt;}
.ls2d_c00110{letter-spacing:1.010240pt;}
.ls20_c00110{letter-spacing:1.021440pt;}
.ls11_c00110{letter-spacing:1.027520pt;}
.ls46_c00110{letter-spacing:1.039680pt;}
.lsa_c00110{letter-spacing:1.082240pt;}
.ls41_c00110{letter-spacing:1.088320pt;}
.ls55_c00110{letter-spacing:1.106560pt;}
.ls50_c00110{letter-spacing:1.112640pt;}
.ls1b_c00110{letter-spacing:1.130880pt;}
.ls1d_c00110{letter-spacing:1.136960pt;}
.ls5a_c00110{letter-spacing:1.143040pt;}
.ls5c_c00110{letter-spacing:1.155200pt;}
.ls4a_c00110{letter-spacing:1.179520pt;}
.ls2f_c00110{letter-spacing:1.185600pt;}
.ls23_c00110{letter-spacing:1.203840pt;}
.ls35_c00110{letter-spacing:1.209920pt;}
.ls13_c00110{letter-spacing:1.240320pt;}
.ls2a_c00110{letter-spacing:1.252480pt;}
.ls21_c00110{letter-spacing:1.264640pt;}
.ls5d_c00110{letter-spacing:1.295040pt;}
.ls4b_c00110{letter-spacing:1.331520pt;}
.lse_c00110{letter-spacing:1.343680pt;}
.ls65_c00110{letter-spacing:1.368000pt;}
.ls26_c00110{letter-spacing:1.374080pt;}
.ls45_c00110{letter-spacing:1.380160pt;}
.ls3d_c00110{letter-spacing:1.465280pt;}
.ls1_c00110{letter-spacing:1.520000pt;}
.ls3c_c00110{letter-spacing:1.526080pt;}
.ls2e_c00110{letter-spacing:1.532160pt;}
.ls8_c00110{letter-spacing:1.544320pt;}
.ls66_c00110{letter-spacing:1.586880pt;}
.lsd_c00110{letter-spacing:1.592960pt;}
.ls42_c00110{letter-spacing:1.611200pt;}
.ls49_c00110{letter-spacing:1.623360pt;}
.ls2c_c00110{letter-spacing:1.757120pt;}
.ls4d_c00110{letter-spacing:1.826080pt;}
.ls56_c00110{letter-spacing:1.854400pt;}
.ls36_c00110{letter-spacing:1.951680pt;}
.ls9_c00110{letter-spacing:1.957760pt;}
.ls25_c00110{letter-spacing:2.091520pt;}
.ls33_c00110{letter-spacing:2.182720pt;}
.ls82_c00110{letter-spacing:2.200960pt;}
.ls4c_c00110{letter-spacing:2.205760pt;}
.ls69_c00110{letter-spacing:2.613333pt;}
.ls3_c00110{letter-spacing:2.632640pt;}
.ls31_c00110{letter-spacing:2.748160pt;}
.ls6d_c00110{letter-spacing:3.040000pt;}
.ws4_c00110{word-spacing:0.000000pt;}
.ws2_c00110{word-spacing:1.660533pt;}
.ws0_c00110{word-spacing:2.228907pt;}
.ws1_c00110{word-spacing:17.859200pt;}
.ws3_c00110{word-spacing:18.741120pt;}
._f_c00110{margin-left:-6.714347pt;}
._8_c00110{margin-left:-5.184213pt;}
._a_c00110{margin-left:-4.140480pt;}
._6_c00110{margin-left:-2.905813pt;}
._3_c00110{margin-left:-1.288960pt;}
._2_c00110{width:1.969920pt;}
._1_c00110{width:3.173333pt;}
._5_c00110{width:4.997760pt;}
._7_c00110{width:6.074347pt;}
._4_c00110{width:7.265600pt;}
._9_c00110{width:8.459200pt;}
._0_c00110{width:9.949440pt;}
._b_c00110{width:11.795200pt;}
._c_c00110{width:13.777280pt;}
._d_c00110{width:16.707840pt;}
._e_c00110{width:17.844800pt;}
.fs0_c00110{font-size:52.266667pt;}
.fs4_c00110{font-size:58.666667pt;}
.fs6_c00110{font-size:60.266667pt;}
.fs1_c00110{font-size:60.800000pt;}
.fs5_c00110{font-size:64.533333pt;}
.fs2_c00110{font-size:65.600000pt;}
.fs7_c00110{font-size:66.133333pt;}
.fs3_c00110{font-size:68.266667pt;}
.y0_c00110{bottom:0.000000pt;}
.y1e_c00110{bottom:62.080000pt;}
.y1c_c00110{bottom:131.827733pt;}
.y1d_c00110{bottom:131.840000pt;}
.y1b_c00110{bottom:159.993333pt;}
.y1a_c00110{bottom:188.486133pt;}
.y18_c00110{bottom:216.006933pt;}
.y19_c00110{bottom:216.013333pt;}
.y17_c00110{bottom:243.853333pt;}
.y16_c00110{bottom:298.893333pt;}
.y15_c00110{bottom:327.373333pt;}
.y14_c00110{bottom:382.720000pt;}
.y13_c00110{bottom:437.760000pt;}
.y12_c00110{bottom:466.880000pt;}
.yf_c00110{bottom:521.600000pt;}
.y11_c00110{bottom:550.400000pt;}
.y10_c00110{bottom:606.093333pt;}
.ye_c00110{bottom:661.453333pt;}
.yc_c00110{bottom:689.926933pt;}
.yd_c00110{bottom:689.933333pt;}
.yb_c00110{bottom:717.767733pt;}
.ya_c00110{bottom:745.933333pt;}
.y9_c00110{bottom:773.766933pt;}
.y8_c00110{bottom:801.613333pt;}
.y7_c00110{bottom:856.960000pt;}
.y6_c00110{bottom:912.960000pt;}
.y5_c00110{bottom:940.793600pt;}
.y3_c00110{bottom:968.634400pt;}
.y4_c00110{bottom:968.640000pt;}
.y2_c00110{bottom:996.800000pt;}
.y1_c00110{bottom:1064.013333pt;}
.h2_c00110{height:51.296875pt;}
.ha_c00110{height:59.148438pt;}
.h3_c00110{height:59.671875pt;}
.h8_c00110{height:59.694275pt;}
.hc_c00110{height:59.700675pt;}
.h7_c00110{height:61.187500pt;}
.h9_c00110{height:63.304427pt;}
.h4_c00110{height:64.350781pt;}
.h6_c00110{height:64.376381pt;}
.hb_c00110{height:64.906250pt;}
.h5_c00110{height:67.000000pt;}
.h1_c00110{height:1122.666667pt;}
.h0_c00110{height:1122.880000pt;}
.w1_c00110{width:793.333333pt;}
.w0_c00110{width:793.600000pt;}
.x0_c00110{left:0.000000pt;}
.x17_c00110{left:109.082667pt;}
.x9_c00110{left:110.113333pt;}
.x2_c00110{left:111.840000pt;}
.x1_c00110{left:112.893333pt;}
.xa_c00110{left:130.986667pt;}
.xe_c00110{left:157.586667pt;}
.x5_c00110{left:159.186667pt;}
.xf_c00110{left:192.000000pt;}
.x1a_c00110{left:224.160000pt;}
.x1b_c00110{left:243.066667pt;}
.x10_c00110{left:258.480000pt;}
.x13_c00110{left:273.400000pt;}
.x1c_c00110{left:380.666667pt;}
.x14_c00110{left:382.146667pt;}
.x15_c00110{left:425.093333pt;}
.x16_c00110{left:439.506667pt;}
.x3_c00110{left:469.146667pt;}
.x6_c00110{left:481.226667pt;}
.x4_c00110{left:495.013333pt;}
.x7_c00110{left:509.280000pt;}
.x11_c00110{left:522.480000pt;}
.x12_c00110{left:543.293333pt;}
.x18_c00110{left:579.520000pt;}
.x19_c00110{left:601.573333pt;}
.xb_c00110{left:619.053333pt;}
.x8_c00110{left:634.826667pt;}
.xd_c00110{left:636.840000pt;}
.xc_c00110{left:658.413333pt;}
}





/* 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_c00111 {
    display:none;
  }
  .loading-indicator_c00111.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00111 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_c00111 { 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_c00111" -> "#page-container .classname_c00111")
 */
.pf_c00111 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00111 { /* 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_c00111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00111 { /* 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_c00111 { /* 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_c00111 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00111 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00111 {overflow:visible;}
  }
}
.c_c00111 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00111 { /* 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_c00111:after { /* webkit #35443 */
  content: '';
}
.t_c00111:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00111 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 */
}
.__c00111 { /* 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_c00111 { /* info for Javascript */
  display:none;
}
.l_c00111 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00111 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00111 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00111: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_c00111 {
    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_c00111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00111.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_c00111 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00111;src:url('chunks/assets/font_17eb65e06f6c60bcd8c960f6.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.284668;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_c00111;src:url('chunks/assets/font_bccdd5e767f7fc7c7a702553.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.284180;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_c00111;src:url('chunks/assets/font_79f89ec585ce5ef770c85908.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;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;}
.m1_c00111{transform:matrix(0.219111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219111,0.000000,0.000000,0.250000,0,0);}
.m3_c00111{transform:matrix(0.225284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225284,0.000000,0.000000,0.250000,0,0);}
.m2_c00111{transform:matrix(0.228369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228369,0.000000,0.000000,0.250000,0,0);}
.ma_c00111{transform:matrix(0.239441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239441,0.000000,0.000000,0.250000,0,0);}
.mb_c00111{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.mc_c00111{transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);}
.m0_c00111{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);}
.m5_c00111{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m6_c00111{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.m4_c00111{transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);}
.m7_c00111{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.m8_c00111{transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);}
.m9_c00111{transform:matrix(0.263679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263679,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls6d_c00111{letter-spacing:-2.604000px;}
.ls8f_c00111{letter-spacing:-2.394000px;}
.ls91_c00111{letter-spacing:-2.373000px;}
.ls85_c00111{letter-spacing:-2.096640px;}
.ls97_c00111{letter-spacing:-2.016000px;}
.ls84_c00111{letter-spacing:-1.612800px;}
.ls8c_c00111{letter-spacing:-1.135680px;}
.ls7c_c00111{letter-spacing:-1.061760px;}
.ls77_c00111{letter-spacing:-0.846720px;}
.ls88_c00111{letter-spacing:-0.792960px;}
.ls7f_c00111{letter-spacing:-0.745560px;}
.ls8a_c00111{letter-spacing:-0.719040px;}
.ls7b_c00111{letter-spacing:-0.544320px;}
.ls70_c00111{letter-spacing:-0.537600px;}
.ls75_c00111{letter-spacing:-0.504000px;}
.ls96_c00111{letter-spacing:-0.483840px;}
.ls94_c00111{letter-spacing:-0.349440px;}
.ls74_c00111{letter-spacing:-0.307800px;}
.ls89_c00111{letter-spacing:-0.282240px;}
.ls87_c00111{letter-spacing:-0.241920px;}
.ls86_c00111{letter-spacing:-0.194880px;}
.ls83_c00111{letter-spacing:-0.168000px;}
.ls78_c00111{letter-spacing:0.000000px;}
.ls90_c00111{letter-spacing:0.013680px;}
.ls51_c00111{letter-spacing:0.120960px;}
.ls4c_c00111{letter-spacing:0.136800px;}
.ls16_c00111{letter-spacing:0.161280px;}
.ls4d_c00111{letter-spacing:0.181440px;}
.ls1e_c00111{letter-spacing:0.215040px;}
.ls8d_c00111{letter-spacing:0.228480px;}
.ls39_c00111{letter-spacing:0.235200px;}
.ls1b_c00111{letter-spacing:0.241920px;}
.ls32_c00111{letter-spacing:0.255360px;}
.ls4a_c00111{letter-spacing:0.282240px;}
.ls30_c00111{letter-spacing:0.294120px;}
.ls5_c00111{letter-spacing:0.300960px;}
.ls7e_c00111{letter-spacing:0.322560px;}
.ls18_c00111{letter-spacing:0.362880px;}
.ls21_c00111{letter-spacing:0.383040px;}
.ls29_c00111{letter-spacing:0.389760px;}
.ls93_c00111{letter-spacing:0.423360px;}
.ls8b_c00111{letter-spacing:0.436800px;}
.ls67_c00111{letter-spacing:0.450240px;}
.ls2c_c00111{letter-spacing:0.463680px;}
.ls27_c00111{letter-spacing:0.465120px;}
.ls2_c00111{letter-spacing:0.477120px;}
.ls14_c00111{letter-spacing:0.510720px;}
.ls3f_c00111{letter-spacing:0.517440px;}
.ls5c_c00111{letter-spacing:0.524160px;}
.ls45_c00111{letter-spacing:0.537600px;}
.ls1a_c00111{letter-spacing:0.544320px;}
.ls66_c00111{letter-spacing:0.551040px;}
.ls92_c00111{letter-spacing:0.564480px;}
.ls40_c00111{letter-spacing:0.577920px;}
.ls7a_c00111{letter-spacing:0.591360px;}
.ls4f_c00111{letter-spacing:0.595080px;}
.ls20_c00111{letter-spacing:0.598080px;}
.ls6_c00111{letter-spacing:0.604800px;}
.ls54_c00111{letter-spacing:0.622440px;}
.ls3_c00111{letter-spacing:0.631680px;}
.ls25_c00111{letter-spacing:0.651840px;}
.ls2d_c00111{letter-spacing:0.665280px;}
.ls49_c00111{letter-spacing:0.678720px;}
.ls81_c00111{letter-spacing:0.692160px;}
.ls7_c00111{letter-spacing:0.698880px;}
.ls35_c00111{letter-spacing:0.705600px;}
.ls0_c00111{letter-spacing:0.711360px;}
.ls5f_c00111{letter-spacing:0.725760px;}
.ls4b_c00111{letter-spacing:0.731880px;}
.ls5d_c00111{letter-spacing:0.732480px;}
.ls53_c00111{letter-spacing:0.739200px;}
.ls1f_c00111{letter-spacing:0.745920px;}
.ls6f_c00111{letter-spacing:0.779520px;}
.ls3c_c00111{letter-spacing:0.786240px;}
.ls5e_c00111{letter-spacing:0.799680px;}
.ls80_c00111{letter-spacing:0.813120px;}
.ls12_c00111{letter-spacing:0.819840px;}
.ls68_c00111{letter-spacing:0.833280px;}
.ls15_c00111{letter-spacing:0.846720px;}
.ls1d_c00111{letter-spacing:0.880320px;}
.ls36_c00111{letter-spacing:0.887040px;}
.ls22_c00111{letter-spacing:0.893760px;}
.ls33_c00111{letter-spacing:0.913920px;}
.ls9_c00111{letter-spacing:0.920640px;}
.ls42_c00111{letter-spacing:0.927360px;}
.ls50_c00111{letter-spacing:0.930240px;}
.ls3e_c00111{letter-spacing:0.940800px;}
.ls2e_c00111{letter-spacing:0.947520px;}
.ls56_c00111{letter-spacing:0.967680px;}
.ls31_c00111{letter-spacing:0.974400px;}
.ls8_c00111{letter-spacing:0.994560px;}
.ls48_c00111{letter-spacing:1.001280px;}
.lse_c00111{letter-spacing:1.048320px;}
.ls7d_c00111{letter-spacing:1.055040px;}
.ls4e_c00111{letter-spacing:1.061760px;}
.lsb_c00111{letter-spacing:1.088640px;}
.ls82_c00111{letter-spacing:1.095360px;}
.ls6b_c00111{letter-spacing:1.102080px;}
.lsc_c00111{letter-spacing:1.108800px;}
.ls3a_c00111{letter-spacing:1.128960px;}
.ls6a_c00111{letter-spacing:1.142400px;}
.ls52_c00111{letter-spacing:1.149120px;}
.ls19_c00111{letter-spacing:1.169280px;}
.ls65_c00111{letter-spacing:1.189440px;}
.ls46_c00111{letter-spacing:1.202880px;}
.ls26_c00111{letter-spacing:1.249920px;}
.ls28_c00111{letter-spacing:1.256640px;}
.ls44_c00111{letter-spacing:1.258560px;}
.ls2a_c00111{letter-spacing:1.263360px;}
.ls64_c00111{letter-spacing:1.310400px;}
.ls23_c00111{letter-spacing:1.317120px;}
.ls61_c00111{letter-spacing:1.350720px;}
.ls1_c00111{letter-spacing:1.357440px;}
.ls17_c00111{letter-spacing:1.364160px;}
.ls37_c00111{letter-spacing:1.384320px;}
.ls6e_c00111{letter-spacing:1.397760px;}
.ls76_c00111{letter-spacing:1.424640px;}
.ls71_c00111{letter-spacing:1.431360px;}
.ls69_c00111{letter-spacing:1.458240px;}
.ls4_c00111{letter-spacing:1.464960px;}
.ls5b_c00111{letter-spacing:1.485120px;}
.ls79_c00111{letter-spacing:1.505280px;}
.ls62_c00111{letter-spacing:1.525440px;}
.ls8e_c00111{letter-spacing:1.538880px;}
.lsf_c00111{letter-spacing:1.579200px;}
.ls34_c00111{letter-spacing:1.659840px;}
.ls58_c00111{letter-spacing:1.693440px;}
.ls10_c00111{letter-spacing:1.700160px;}
.ls59_c00111{letter-spacing:1.706880px;}
.ls24_c00111{letter-spacing:1.733760px;}
.ls95_c00111{letter-spacing:1.747200px;}
.ls60_c00111{letter-spacing:1.874880px;}
.ls5a_c00111{letter-spacing:1.901760px;}
.ls43_c00111{letter-spacing:1.908360px;}
.ls3b_c00111{letter-spacing:1.948800px;}
.ls1c_c00111{letter-spacing:2.036160px;}
.lsa_c00111{letter-spacing:2.083200px;}
.ls41_c00111{letter-spacing:2.143680px;}
.ls6c_c00111{letter-spacing:2.148000px;}
.ls55_c00111{letter-spacing:2.177280px;}
.ls63_c00111{letter-spacing:2.257920px;}
.ls47_c00111{letter-spacing:2.304960px;}
.ls2b_c00111{letter-spacing:2.493120px;}
.ls13_c00111{letter-spacing:2.587200px;}
.ls38_c00111{letter-spacing:2.593920px;}
.ls11_c00111{letter-spacing:2.607360px;}
.lsd_c00111{letter-spacing:2.654400px;}
.ls2f_c00111{letter-spacing:2.688000px;}
.ls3d_c00111{letter-spacing:2.755200px;}
.ls57_c00111{letter-spacing:3.010560px;}
.ls72_c00111{letter-spacing:3.360000px;}
.ls73_c00111{letter-spacing:3.420000px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{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__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00111{word-spacing:-0.830640px;}
.ws5_c00111{word-spacing:0.000000px;}
.ws2_c00111{word-spacing:2.115600px;}
.ws4_c00111{word-spacing:3.677280px;}
.ws1_c00111{word-spacing:13.462800px;}
.ws3_c00111{word-spacing:29.569440px;}
._f_c00111{margin-left:-6.726720px;}
._0_c00111{margin-left:-4.556160px;}
._d_c00111{margin-left:-3.350400px;}
._9_c00111{margin-left:-1.706880px;}
._1_c00111{width:1.424640px;}
._b_c00111{width:3.198720px;}
._e_c00111{width:4.203840px;}
._a_c00111{width:5.476800px;}
._4_c00111{width:6.491520px;}
._6_c00111{width:8.090880px;}
._3_c00111{width:9.273600px;}
._5_c00111{width:11.376960px;}
._2_c00111{width:12.902400px;}
._7_c00111{width:13.910400px;}
._8_c00111{width:20.453400px;}
._12_c00111{width:22.008000px;}
._13_c00111{width:23.331840px;}
._10_c00111{width:25.595280px;}
._c_c00111{width:26.638080px;}
._11_c00111{width:28.077600px;}
._14_c00111{width:32.317680px;}
.fc0_c00111{color:transparent;}
.fs5_c00111{font-size:57.600000px;}
.fs0_c00111{font-size:60.000000px;}
.fs2_c00111{font-size:67.200000px;}
.fs4_c00111{font-size:67.800000px;}
.fs1_c00111{font-size:68.400000px;}
.fs3_c00111{font-size:74.400000px;}
.y0_c00111{bottom:0.000000px;}
.y1d_c00111{bottom:65.160000px;}
.y1b_c00111{bottom:174.955200px;}
.y1c_c00111{bottom:174.960000px;}
.y1a_c00111{bottom:206.640000px;}
.y19_c00111{bottom:269.290200px;}
.y18_c00111{bottom:300.975000px;}
.y17_c00111{bottom:331.935000px;}
.y16_c00111{bottom:394.575000px;}
.y15_c00111{bottom:425.895000px;}
.y14_c00111{bottom:457.200000px;}
.y13_c00111{bottom:519.494400px;}
.y12_c00111{bottom:582.124800px;}
.y11_c00111{bottom:613.440000px;}
.y10_c00111{bottom:676.095000px;}
.yf_c00111{bottom:707.419800px;}
.ye_c00111{bottom:738.735000px;}
.yd_c00111{bottom:738.741600px;}
.yc_c00111{bottom:770.040000px;}
.yb_c00111{bottom:833.044800px;}
.ya_c00111{bottom:864.360000px;}
.y9_c00111{bottom:926.652600px;}
.y8_c00111{bottom:957.615000px;}
.y6_c00111{bottom:988.557600px;}
.y7_c00111{bottom:988.560000px;}
.y4_c00111{bottom:1019.515800px;}
.y5_c00111{bottom:1019.520000px;}
.y3_c00111{bottom:1050.495000px;}
.y2_c00111{bottom:1113.135000px;}
.y1_c00111{bottom:1189.455000px;}
.h8_c00111{height:56.531250px;}
.h2_c00111{height:58.886719px;}
.h5_c00111{height:65.953125px;}
.h6_c00111{height:65.962725px;}
.h3_c00111{height:67.097461px;}
.h7_c00111{height:70.713281px;}
.h4_c00111{height:77.596875px;}
.h1_c00111{height:1263.000000px;}
.h0_c00111{height:1263.240000px;}
.w1_c00111{width:892.500000px;}
.w0_c00111{width:892.800000px;}
.x0_c00111{left:0.000000px;}
.x1c_c00111{left:123.045000px;}
.x15_c00111{left:124.386600px;}
.x1_c00111{left:125.565000px;}
.x17_c00111{left:177.615000px;}
.x12_c00111{left:178.725000px;}
.x2_c00111{left:179.805000px;}
.x16_c00111{left:296.775000px;}
.x10_c00111{left:332.820000px;}
.x1f_c00111{left:343.305000px;}
.x8_c00111{left:354.210000px;}
.x11_c00111{left:355.530000px;}
.x13_c00111{left:357.750000px;}
.xe_c00111{left:368.460000px;}
.x20_c00111{left:374.595000px;}
.x9_c00111{left:377.835000px;}
.x14_c00111{left:380.805000px;}
.xf_c00111{left:390.075000px;}
.xa_c00111{left:408.810000px;}
.x22_c00111{left:425.025000px;}
.xb_c00111{left:429.720000px;}
.x3_c00111{left:432.240000px;}
.x4_c00111{left:462.930000px;}
.x1d_c00111{left:484.740000px;}
.x21_c00111{left:489.105000px;}
.x1e_c00111{left:502.590000px;}
.x5_c00111{left:535.545000px;}
.x18_c00111{left:556.770000px;}
.x6_c00111{left:567.195000px;}
.x19_c00111{left:581.415000px;}
.xc_c00111{left:628.020000px;}
.xd_c00111{left:653.610000px;}
.x1a_c00111{left:668.280000px;}
.x1b_c00111{left:694.590000px;}
.x7_c00111{left:706.185000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls6d_c00111{letter-spacing:-2.314667pt;}
.ls8f_c00111{letter-spacing:-2.128000pt;}
.ls91_c00111{letter-spacing:-2.109333pt;}
.ls85_c00111{letter-spacing:-1.863680pt;}
.ls97_c00111{letter-spacing:-1.792000pt;}
.ls84_c00111{letter-spacing:-1.433600pt;}
.ls8c_c00111{letter-spacing:-1.009493pt;}
.ls7c_c00111{letter-spacing:-0.943787pt;}
.ls77_c00111{letter-spacing:-0.752640pt;}
.ls88_c00111{letter-spacing:-0.704853pt;}
.ls7f_c00111{letter-spacing:-0.662720pt;}
.ls8a_c00111{letter-spacing:-0.639147pt;}
.ls7b_c00111{letter-spacing:-0.483840pt;}
.ls70_c00111{letter-spacing:-0.477867pt;}
.ls75_c00111{letter-spacing:-0.448000pt;}
.ls96_c00111{letter-spacing:-0.430080pt;}
.ls94_c00111{letter-spacing:-0.310613pt;}
.ls74_c00111{letter-spacing:-0.273600pt;}
.ls89_c00111{letter-spacing:-0.250880pt;}
.ls87_c00111{letter-spacing:-0.215040pt;}
.ls86_c00111{letter-spacing:-0.173227pt;}
.ls83_c00111{letter-spacing:-0.149333pt;}
.ls78_c00111{letter-spacing:0.000000pt;}
.ls90_c00111{letter-spacing:0.012160pt;}
.ls51_c00111{letter-spacing:0.107520pt;}
.ls4c_c00111{letter-spacing:0.121600pt;}
.ls16_c00111{letter-spacing:0.143360pt;}
.ls4d_c00111{letter-spacing:0.161280pt;}
.ls1e_c00111{letter-spacing:0.191147pt;}
.ls8d_c00111{letter-spacing:0.203093pt;}
.ls39_c00111{letter-spacing:0.209067pt;}
.ls1b_c00111{letter-spacing:0.215040pt;}
.ls32_c00111{letter-spacing:0.226987pt;}
.ls4a_c00111{letter-spacing:0.250880pt;}
.ls30_c00111{letter-spacing:0.261440pt;}
.ls5_c00111{letter-spacing:0.267520pt;}
.ls7e_c00111{letter-spacing:0.286720pt;}
.ls18_c00111{letter-spacing:0.322560pt;}
.ls21_c00111{letter-spacing:0.340480pt;}
.ls29_c00111{letter-spacing:0.346453pt;}
.ls93_c00111{letter-spacing:0.376320pt;}
.ls8b_c00111{letter-spacing:0.388267pt;}
.ls67_c00111{letter-spacing:0.400213pt;}
.ls2c_c00111{letter-spacing:0.412160pt;}
.ls27_c00111{letter-spacing:0.413440pt;}
.ls2_c00111{letter-spacing:0.424107pt;}
.ls14_c00111{letter-spacing:0.453973pt;}
.ls3f_c00111{letter-spacing:0.459947pt;}
.ls5c_c00111{letter-spacing:0.465920pt;}
.ls45_c00111{letter-spacing:0.477867pt;}
.ls1a_c00111{letter-spacing:0.483840pt;}
.ls66_c00111{letter-spacing:0.489813pt;}
.ls92_c00111{letter-spacing:0.501760pt;}
.ls40_c00111{letter-spacing:0.513707pt;}
.ls7a_c00111{letter-spacing:0.525653pt;}
.ls4f_c00111{letter-spacing:0.528960pt;}
.ls20_c00111{letter-spacing:0.531627pt;}
.ls6_c00111{letter-spacing:0.537600pt;}
.ls54_c00111{letter-spacing:0.553280pt;}
.ls3_c00111{letter-spacing:0.561493pt;}
.ls25_c00111{letter-spacing:0.579413pt;}
.ls2d_c00111{letter-spacing:0.591360pt;}
.ls49_c00111{letter-spacing:0.603307pt;}
.ls81_c00111{letter-spacing:0.615253pt;}
.ls7_c00111{letter-spacing:0.621227pt;}
.ls35_c00111{letter-spacing:0.627200pt;}
.ls0_c00111{letter-spacing:0.632320pt;}
.ls5f_c00111{letter-spacing:0.645120pt;}
.ls4b_c00111{letter-spacing:0.650560pt;}
.ls5d_c00111{letter-spacing:0.651093pt;}
.ls53_c00111{letter-spacing:0.657067pt;}
.ls1f_c00111{letter-spacing:0.663040pt;}
.ls6f_c00111{letter-spacing:0.692907pt;}
.ls3c_c00111{letter-spacing:0.698880pt;}
.ls5e_c00111{letter-spacing:0.710827pt;}
.ls80_c00111{letter-spacing:0.722773pt;}
.ls12_c00111{letter-spacing:0.728747pt;}
.ls68_c00111{letter-spacing:0.740693pt;}
.ls15_c00111{letter-spacing:0.752640pt;}
.ls1d_c00111{letter-spacing:0.782507pt;}
.ls36_c00111{letter-spacing:0.788480pt;}
.ls22_c00111{letter-spacing:0.794453pt;}
.ls33_c00111{letter-spacing:0.812373pt;}
.ls9_c00111{letter-spacing:0.818347pt;}
.ls42_c00111{letter-spacing:0.824320pt;}
.ls50_c00111{letter-spacing:0.826880pt;}
.ls3e_c00111{letter-spacing:0.836267pt;}
.ls2e_c00111{letter-spacing:0.842240pt;}
.ls56_c00111{letter-spacing:0.860160pt;}
.ls31_c00111{letter-spacing:0.866133pt;}
.ls8_c00111{letter-spacing:0.884053pt;}
.ls48_c00111{letter-spacing:0.890027pt;}
.lse_c00111{letter-spacing:0.931840pt;}
.ls7d_c00111{letter-spacing:0.937813pt;}
.ls4e_c00111{letter-spacing:0.943787pt;}
.lsb_c00111{letter-spacing:0.967680pt;}
.ls82_c00111{letter-spacing:0.973653pt;}
.ls6b_c00111{letter-spacing:0.979627pt;}
.lsc_c00111{letter-spacing:0.985600pt;}
.ls3a_c00111{letter-spacing:1.003520pt;}
.ls6a_c00111{letter-spacing:1.015467pt;}
.ls52_c00111{letter-spacing:1.021440pt;}
.ls19_c00111{letter-spacing:1.039360pt;}
.ls65_c00111{letter-spacing:1.057280pt;}
.ls46_c00111{letter-spacing:1.069227pt;}
.ls26_c00111{letter-spacing:1.111040pt;}
.ls28_c00111{letter-spacing:1.117013pt;}
.ls44_c00111{letter-spacing:1.118720pt;}
.ls2a_c00111{letter-spacing:1.122987pt;}
.ls64_c00111{letter-spacing:1.164800pt;}
.ls23_c00111{letter-spacing:1.170773pt;}
.ls61_c00111{letter-spacing:1.200640pt;}
.ls1_c00111{letter-spacing:1.206613pt;}
.ls17_c00111{letter-spacing:1.212587pt;}
.ls37_c00111{letter-spacing:1.230507pt;}
.ls6e_c00111{letter-spacing:1.242453pt;}
.ls76_c00111{letter-spacing:1.266347pt;}
.ls71_c00111{letter-spacing:1.272320pt;}
.ls69_c00111{letter-spacing:1.296213pt;}
.ls4_c00111{letter-spacing:1.302187pt;}
.ls5b_c00111{letter-spacing:1.320107pt;}
.ls79_c00111{letter-spacing:1.338027pt;}
.ls62_c00111{letter-spacing:1.355947pt;}
.ls8e_c00111{letter-spacing:1.367893pt;}
.lsf_c00111{letter-spacing:1.403733pt;}
.ls34_c00111{letter-spacing:1.475413pt;}
.ls58_c00111{letter-spacing:1.505280pt;}
.ls10_c00111{letter-spacing:1.511253pt;}
.ls59_c00111{letter-spacing:1.517227pt;}
.ls24_c00111{letter-spacing:1.541120pt;}
.ls95_c00111{letter-spacing:1.553067pt;}
.ls60_c00111{letter-spacing:1.666560pt;}
.ls5a_c00111{letter-spacing:1.690453pt;}
.ls43_c00111{letter-spacing:1.696320pt;}
.ls3b_c00111{letter-spacing:1.732267pt;}
.ls1c_c00111{letter-spacing:1.809920pt;}
.lsa_c00111{letter-spacing:1.851733pt;}
.ls41_c00111{letter-spacing:1.905493pt;}
.ls6c_c00111{letter-spacing:1.909333pt;}
.ls55_c00111{letter-spacing:1.935360pt;}
.ls63_c00111{letter-spacing:2.007040pt;}
.ls47_c00111{letter-spacing:2.048853pt;}
.ls2b_c00111{letter-spacing:2.216107pt;}
.ls13_c00111{letter-spacing:2.299733pt;}
.ls38_c00111{letter-spacing:2.305707pt;}
.ls11_c00111{letter-spacing:2.317653pt;}
.lsd_c00111{letter-spacing:2.359467pt;}
.ls2f_c00111{letter-spacing:2.389333pt;}
.ls3d_c00111{letter-spacing:2.449067pt;}
.ls57_c00111{letter-spacing:2.676053pt;}
.ls72_c00111{letter-spacing:2.986667pt;}
.ls73_c00111{letter-spacing:3.040000pt;}
.ws0_c00111{word-spacing:-0.738347pt;}
.ws5_c00111{word-spacing:0.000000pt;}
.ws2_c00111{word-spacing:1.880533pt;}
.ws4_c00111{word-spacing:3.268693pt;}
.ws1_c00111{word-spacing:11.966933pt;}
.ws3_c00111{word-spacing:26.283947pt;}
._f_c00111{margin-left:-5.979307pt;}
._0_c00111{margin-left:-4.049920pt;}
._d_c00111{margin-left:-2.978133pt;}
._9_c00111{margin-left:-1.517227pt;}
._1_c00111{width:1.266347pt;}
._b_c00111{width:2.843307pt;}
._e_c00111{width:3.736747pt;}
._a_c00111{width:4.868267pt;}
._4_c00111{width:5.770240pt;}
._6_c00111{width:7.191893pt;}
._3_c00111{width:8.243200pt;}
._5_c00111{width:10.112853pt;}
._2_c00111{width:11.468800pt;}
._7_c00111{width:12.364800pt;}
._8_c00111{width:18.180800pt;}
._12_c00111{width:19.562667pt;}
._13_c00111{width:20.739413pt;}
._10_c00111{width:22.751360pt;}
._c_c00111{width:23.678293pt;}
._11_c00111{width:24.957867pt;}
._14_c00111{width:28.726827pt;}
.fs5_c00111{font-size:51.200000pt;}
.fs0_c00111{font-size:53.333333pt;}
.fs2_c00111{font-size:59.733333pt;}
.fs4_c00111{font-size:60.266667pt;}
.fs1_c00111{font-size:60.800000pt;}
.fs3_c00111{font-size:66.133333pt;}
.y0_c00111{bottom:0.000000pt;}
.y1d_c00111{bottom:57.920000pt;}
.y1b_c00111{bottom:155.515733pt;}
.y1c_c00111{bottom:155.520000pt;}
.y1a_c00111{bottom:183.680000pt;}
.y19_c00111{bottom:239.369067pt;}
.y18_c00111{bottom:267.533333pt;}
.y17_c00111{bottom:295.053333pt;}
.y16_c00111{bottom:350.733333pt;}
.y15_c00111{bottom:378.573333pt;}
.y14_c00111{bottom:406.400000pt;}
.y13_c00111{bottom:461.772800pt;}
.y12_c00111{bottom:517.444267pt;}
.y11_c00111{bottom:545.280000pt;}
.y10_c00111{bottom:600.973333pt;}
.yf_c00111{bottom:628.817600pt;}
.ye_c00111{bottom:656.653333pt;}
.yd_c00111{bottom:656.659200pt;}
.yc_c00111{bottom:684.480000pt;}
.yb_c00111{bottom:740.484267pt;}
.ya_c00111{bottom:768.320000pt;}
.y9_c00111{bottom:823.691200pt;}
.y8_c00111{bottom:851.213333pt;}
.y6_c00111{bottom:878.717867pt;}
.y7_c00111{bottom:878.720000pt;}
.y4_c00111{bottom:906.236267pt;}
.y5_c00111{bottom:906.240000pt;}
.y3_c00111{bottom:933.773333pt;}
.y2_c00111{bottom:989.453333pt;}
.y1_c00111{bottom:1057.293333pt;}
.h8_c00111{height:50.250000pt;}
.h2_c00111{height:52.343750pt;}
.h5_c00111{height:58.625000pt;}
.h6_c00111{height:58.633533pt;}
.h3_c00111{height:59.642187pt;}
.h7_c00111{height:62.856250pt;}
.h4_c00111{height:68.975000pt;}
.h1_c00111{height:1122.666667pt;}
.h0_c00111{height:1122.880000pt;}
.w1_c00111{width:793.333333pt;}
.w0_c00111{width:793.600000pt;}
.x0_c00111{left:0.000000pt;}
.x1c_c00111{left:109.373333pt;}
.x15_c00111{left:110.565867pt;}
.x1_c00111{left:111.613333pt;}
.x17_c00111{left:157.880000pt;}
.x12_c00111{left:158.866667pt;}
.x2_c00111{left:159.826667pt;}
.x16_c00111{left:263.800000pt;}
.x10_c00111{left:295.840000pt;}
.x1f_c00111{left:305.160000pt;}
.x8_c00111{left:314.853333pt;}
.x11_c00111{left:316.026667pt;}
.x13_c00111{left:318.000000pt;}
.xe_c00111{left:327.520000pt;}
.x20_c00111{left:332.973333pt;}
.x9_c00111{left:335.853333pt;}
.x14_c00111{left:338.493333pt;}
.xf_c00111{left:346.733333pt;}
.xa_c00111{left:363.386667pt;}
.x22_c00111{left:377.800000pt;}
.xb_c00111{left:381.973333pt;}
.x3_c00111{left:384.213333pt;}
.x4_c00111{left:411.493333pt;}
.x1d_c00111{left:430.880000pt;}
.x21_c00111{left:434.760000pt;}
.x1e_c00111{left:446.746667pt;}
.x5_c00111{left:476.040000pt;}
.x18_c00111{left:494.906667pt;}
.x6_c00111{left:504.173333pt;}
.x19_c00111{left:516.813333pt;}
.xc_c00111{left:558.240000pt;}
.xd_c00111{left:580.986667pt;}
.x1a_c00111{left:594.026667pt;}
.x1b_c00111{left:617.413333pt;}
.x7_c00111{left:627.720000pt;}
}





/* 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_c00112 {
    display:none;
  }
  .loading-indicator_c00112.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00112 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_c00112 { 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_c00112" -> "#page-container .classname_c00112")
 */
.pf_c00112 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00112 { /* 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_c00112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00112 { /* 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_c00112 { /* 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_c00112 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00112 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00112 {overflow:visible;}
  }
}
.c_c00112 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00112 { /* 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_c00112:after { /* webkit #35443 */
  content: '';
}
.t_c00112:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00112 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 */
}
.__c00112 { /* 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_c00112 { /* info for Javascript */
  display:none;
}
.l_c00112 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00112 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00112 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00112: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_c00112 {
    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_c00112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00112.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_c00112 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00112;src:url('chunks/assets/font_94dbf40d6e6c7a520b177b5a.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;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:ff2_c00112;src:url('chunks/assets/font_0b87bc15f0e9c4265c65e66f.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.284180;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_c00112;src:url('chunks/assets/font_2184ec9db7f462f599dfcf92.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.284668;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;}
.m8_c00112{transform:matrix(0.235286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235286,0.000000,0.000000,0.250000,0,0);}
.m1_c00112{transform:matrix(0.243717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243717,0.000000,0.000000,0.250000,0,0);}
.m6_c00112{transform:matrix(0.246248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246248,0.000000,0.000000,0.250000,0,0);}
.m3_c00112{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m0_c00112{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);}
.m4_c00112{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m5_c00112{transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);}
.m2_c00112{transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);}
.m7_c00112{transform:matrix(0.256529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256529,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls81_c00112{letter-spacing:-2.415000px;}
.ls8a_c00112{letter-spacing:-2.394000px;}
.ls76_c00112{letter-spacing:-2.352000px;}
.ls98_c00112{letter-spacing:-2.163000px;}
.ls99_c00112{letter-spacing:-2.147760px;}
.ls88_c00112{letter-spacing:-1.682640px;}
.ls79_c00112{letter-spacing:-1.525440px;}
.ls8e_c00112{letter-spacing:-1.347480px;}
.ls7d_c00112{letter-spacing:-1.299600px;}
.ls87_c00112{letter-spacing:-1.046520px;}
.ls8f_c00112{letter-spacing:-0.861840px;}
.ls86_c00112{letter-spacing:-0.772920px;}
.ls7f_c00112{letter-spacing:-0.697680px;}
.ls90_c00112{letter-spacing:-0.684000px;}
.ls7a_c00112{letter-spacing:-0.663480px;}
.ls9a_c00112{letter-spacing:-0.656640px;}
.ls8d_c00112{letter-spacing:-0.533520px;}
.ls9b_c00112{letter-spacing:-0.529620px;}
.ls7b_c00112{letter-spacing:-0.478800px;}
.ls94_c00112{letter-spacing:-0.458280px;}
.ls8c_c00112{letter-spacing:-0.417240px;}
.ls85_c00112{letter-spacing:-0.376200px;}
.ls89_c00112{letter-spacing:-0.348840px;}
.ls92_c00112{letter-spacing:-0.307800px;}
.ls97_c00112{letter-spacing:-0.191520px;}
.ls95_c00112{letter-spacing:-0.102600px;}
.ls7e_c00112{letter-spacing:-0.061560px;}
.ls7c_c00112{letter-spacing:0.000000px;}
.ls39_c00112{letter-spacing:0.020520px;}
.ls38_c00112{letter-spacing:0.047880px;}
.ls1e_c00112{letter-spacing:0.109440px;}
.ls49_c00112{letter-spacing:0.116280px;}
.ls96_c00112{letter-spacing:0.157320px;}
.ls2f_c00112{letter-spacing:0.177840px;}
.ls1f_c00112{letter-spacing:0.184680px;}
.ls1b_c00112{letter-spacing:0.191520px;}
.ls83_c00112{letter-spacing:0.212040px;}
.ls35_c00112{letter-spacing:0.218880px;}
.ls29_c00112{letter-spacing:0.221760px;}
.ls15_c00112{letter-spacing:0.225720px;}
.ls63_c00112{letter-spacing:0.246240px;}
.ls4f_c00112{letter-spacing:0.253080px;}
.ls1_c00112{letter-spacing:0.273600px;}
.ls70_c00112{letter-spacing:0.280440px;}
.ls6b_c00112{letter-spacing:0.307800px;}
.ls23_c00112{letter-spacing:0.314640px;}
.ls41_c00112{letter-spacing:0.348840px;}
.ls71_c00112{letter-spacing:0.369360px;}
.ls31_c00112{letter-spacing:0.376200px;}
.ls5_c00112{letter-spacing:0.389880px;}
.ls40_c00112{letter-spacing:0.396720px;}
.ls3b_c00112{letter-spacing:0.417240px;}
.ls3d_c00112{letter-spacing:0.430920px;}
.ls1a_c00112{letter-spacing:0.437760px;}
.ls72_c00112{letter-spacing:0.444600px;}
.ls2c_c00112{letter-spacing:0.458280px;}
.ls51_c00112{letter-spacing:0.465120px;}
.ls3_c00112{letter-spacing:0.485640px;}
.ls65_c00112{letter-spacing:0.499320px;}
.lsb_c00112{letter-spacing:0.506160px;}
.ls1d_c00112{letter-spacing:0.526680px;}
.ls82_c00112{letter-spacing:0.540360px;}
.ls52_c00112{letter-spacing:0.574560px;}
.ls69_c00112{letter-spacing:0.581400px;}
.lsf_c00112{letter-spacing:0.595080px;}
.ls57_c00112{letter-spacing:0.608760px;}
.ls17_c00112{letter-spacing:0.629280px;}
.ls56_c00112{letter-spacing:0.656640px;}
.ls25_c00112{letter-spacing:0.677160px;}
.ls3c_c00112{letter-spacing:0.684000px;}
.ls4d_c00112{letter-spacing:0.704520px;}
.ls24_c00112{letter-spacing:0.725040px;}
.ls8_c00112{letter-spacing:0.738720px;}
.ls12_c00112{letter-spacing:0.752400px;}
.ls50_c00112{letter-spacing:0.772920px;}
.ls62_c00112{letter-spacing:0.786600px;}
.ls48_c00112{letter-spacing:0.793440px;}
.lsd_c00112{letter-spacing:0.807120px;}
.ls42_c00112{letter-spacing:0.813960px;}
.ls64_c00112{letter-spacing:0.841320px;}
.lse_c00112{letter-spacing:0.848160px;}
.ls16_c00112{letter-spacing:0.855000px;}
.ls19_c00112{letter-spacing:0.861840px;}
.ls66_c00112{letter-spacing:0.868680px;}
.ls47_c00112{letter-spacing:0.882360px;}
.ls77_c00112{letter-spacing:0.889200px;}
.ls73_c00112{letter-spacing:0.909720px;}
.ls13_c00112{letter-spacing:0.916560px;}
.ls22_c00112{letter-spacing:0.930240px;}
.ls30_c00112{letter-spacing:0.957600px;}
.ls36_c00112{letter-spacing:0.964440px;}
.ls91_c00112{letter-spacing:0.971280px;}
.ls5d_c00112{letter-spacing:0.978120px;}
.ls4e_c00112{letter-spacing:0.984960px;}
.ls6c_c00112{letter-spacing:1.012320px;}
.ls43_c00112{letter-spacing:1.026000px;}
.ls0_c00112{letter-spacing:1.028160px;}
.ls5e_c00112{letter-spacing:1.039680px;}
.ls10_c00112{letter-spacing:1.068480px;}
.ls74_c00112{letter-spacing:1.073880px;}
.ls4b_c00112{letter-spacing:1.114920px;}
.ls93_c00112{letter-spacing:1.115520px;}
.ls53_c00112{letter-spacing:1.135440px;}
.ls2b_c00112{letter-spacing:1.142280px;}
.ls6d_c00112{letter-spacing:1.149120px;}
.lsa_c00112{letter-spacing:1.182720px;}
.ls7_c00112{letter-spacing:1.183320px;}
.ls5a_c00112{letter-spacing:1.190160px;}
.ls5b_c00112{letter-spacing:1.197000px;}
.ls6_c00112{letter-spacing:1.203840px;}
.ls21_c00112{letter-spacing:1.209600px;}
.ls20_c00112{letter-spacing:1.217520px;}
.ls28_c00112{letter-spacing:1.229760px;}
.ls3f_c00112{letter-spacing:1.244880px;}
.ls26_c00112{letter-spacing:1.251720px;}
.ls33_c00112{letter-spacing:1.263360px;}
.ls14_c00112{letter-spacing:1.279080px;}
.ls80_c00112{letter-spacing:1.333800px;}
.ls2a_c00112{letter-spacing:1.347480px;}
.ls5c_c00112{letter-spacing:1.395360px;}
.ls4_c00112{letter-spacing:1.402200px;}
.ls3e_c00112{letter-spacing:1.411200px;}
.ls8b_c00112{letter-spacing:1.450080px;}
.ls3a_c00112{letter-spacing:1.458240px;}
.ls32_c00112{letter-spacing:1.478400px;}
.ls46_c00112{letter-spacing:1.511640px;}
.ls6a_c00112{letter-spacing:1.525440px;}
.ls61_c00112{letter-spacing:1.539000px;}
.ls5f_c00112{letter-spacing:1.545840px;}
.ls4a_c00112{letter-spacing:1.580040px;}
.ls4c_c00112{letter-spacing:1.586880px;}
.ls68_c00112{letter-spacing:1.600560px;}
.ls6e_c00112{letter-spacing:1.641600px;}
.ls1c_c00112{letter-spacing:1.648440px;}
.ls58_c00112{letter-spacing:1.682640px;}
.ls67_c00112{letter-spacing:1.696320px;}
.ls6f_c00112{letter-spacing:1.716840px;}
.ls11_c00112{letter-spacing:1.737360px;}
.ls37_c00112{letter-spacing:1.760640px;}
.lsc_c00112{letter-spacing:1.792080px;}
.ls34_c00112{letter-spacing:1.833120px;}
.ls55_c00112{letter-spacing:1.854720px;}
.ls2_c00112{letter-spacing:2.004120px;}
.ls75_c00112{letter-spacing:2.141760px;}
.ls54_c00112{letter-spacing:2.202480px;}
.ls59_c00112{letter-spacing:2.291400px;}
.ls2e_c00112{letter-spacing:2.291520px;}
.ls27_c00112{letter-spacing:2.352960px;}
.ls44_c00112{letter-spacing:2.455560px;}
.ls45_c00112{letter-spacing:2.510280px;}
.ls60_c00112{letter-spacing:2.701800px;}
.ls9_c00112{letter-spacing:2.708640px;}
.ls2d_c00112{letter-spacing:2.788800px;}
.ls18_c00112{letter-spacing:3.091680px;}
.ls78_c00112{letter-spacing:3.360000px;}
.ls84_c00112{letter-spacing:3.420000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{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__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00112{word-spacing:-3.588960px;}
.ws4_c00112{word-spacing:-2.886480px;}
.ws6_c00112{word-spacing:0.000000px;}
.ws1_c00112{word-spacing:2.335200px;}
.ws2_c00112{word-spacing:3.492000px;}
.ws0_c00112{word-spacing:8.817600px;}
.ws5_c00112{word-spacing:15.163200px;}
._13_c00112{margin-left:-8.815680px;}
._11_c00112{margin-left:-7.211400px;}
._c_c00112{margin-left:-5.684040px;}
._b_c00112{margin-left:-4.664880px;}
._3_c00112{margin-left:-2.873880px;}
._4_c00112{margin-left:-1.144680px;}
._1_c00112{width:1.032840px;}
._a_c00112{width:2.247960px;}
._2_c00112{width:3.408720px;}
._0_c00112{width:5.539200px;}
._9_c00112{width:7.083840px;}
._5_c00112{width:8.086080px;}
._7_c00112{width:10.247160px;}
._8_c00112{width:11.267160px;}
._12_c00112{width:12.954120px;}
._d_c00112{width:14.664960px;}
._e_c00112{width:16.416000px;}
._f_c00112{width:19.083600px;}
._10_c00112{width:21.778560px;}
._6_c00112{width:23.925600px;}
.fc0_c00112{color:transparent;}
.fs0_c00112{font-size:58.200000px;}
.fs4_c00112{font-size:61.800000px;}
.fs1_c00112{font-size:67.200000px;}
.fs2_c00112{font-size:68.400000px;}
.fs3_c00112{font-size:69.000000px;}
.y0_c00112{bottom:0.000000px;}
.y1a_c00112{bottom:64.455015px;}
.y19_c00112{bottom:143.272815px;}
.y18_c00112{bottom:174.600015px;}
.y17_c00112{bottom:237.255015px;}
.y16_c00112{bottom:300.966915px;}
.y15_c00112{bottom:331.928715px;}
.y14_c00112{bottom:363.615015px;}
.y13_c00112{bottom:426.238815px;}
.y12_c00112{bottom:457.206915px;}
.y11_c00112{bottom:488.175015px;}
.y10_c00112{bottom:550.815015px;}
.yf_c00112{bottom:582.135015px;}
.ye_c00112{bottom:613.455015px;}
.yd_c00112{bottom:676.455015px;}
.yc_c00112{bottom:739.448715px;}
.yb_c00112{bottom:771.135015px;}
.ya_c00112{bottom:834.135015px;}
.y9_c00112{bottom:896.768115px;}
.y8_c00112{bottom:927.360015px;}
.y7_c00112{bottom:990.007815px;}
.y6_c00112{bottom:1021.327815px;}
.y4_c00112{bottom:1052.648715px;}
.y5_c00112{bottom:1052.655015px;}
.y3_c00112{bottom:1084.335015px;}
.y2_c00112{bottom:1116.000015px;}
.y1_c00112{bottom:1191.615015px;}
.h9_c00112{height:57.120117px;}
.h8_c00112{height:60.653320px;}
.h2_c00112{height:60.700781px;}
.h4_c00112{height:65.920312px;}
.h3_c00112{height:67.130859px;}
.h7_c00112{height:67.156059px;}
.h5_c00112{height:67.159659px;}
.h6_c00112{height:71.964844px;}
.h1_c00112{height:1263.000000px;}
.h0_c00112{height:1263.240015px;}
.w1_c00112{width:892.500000px;}
.w0_c00112{width:892.800015px;}
.x0_c00112{left:0.000000px;}
.x19_c00112{left:120.020115px;}
.x14_c00112{left:121.522515px;}
.x8_c00112{left:126.715515px;}
.x1_c00112{left:127.830015px;}
.x15_c00112{left:175.485015px;}
.x13_c00112{left:176.565015px;}
.x10_c00112{left:177.615015px;}
.xf_c00112{left:178.823415px;}
.x9_c00112{left:180.165015px;}
.x2_c00112{left:181.935015px;}
.xe_c00112{left:282.015015px;}
.x6_c00112{left:310.530015px;}
.x7_c00112{left:329.295015px;}
.x16_c00112{left:342.435015px;}
.xa_c00112{left:369.540015px;}
.xb_c00112{left:386.970015px;}
.xc_c00112{left:401.670015px;}
.xd_c00112{left:424.365015px;}
.x17_c00112{left:445.950015px;}
.x4_c00112{left:467.850015px;}
.x18_c00112{left:477.540015px;}
.x5_c00112{left:485.175015px;}
.x11_c00112{left:602.925015px;}
.x12_c00112{left:620.805015px;}
.x3_c00112{left:742.800015px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls81_c00112{letter-spacing:-2.146667pt;}
.ls8a_c00112{letter-spacing:-2.128000pt;}
.ls76_c00112{letter-spacing:-2.090667pt;}
.ls98_c00112{letter-spacing:-1.922667pt;}
.ls99_c00112{letter-spacing:-1.909120pt;}
.ls88_c00112{letter-spacing:-1.495680pt;}
.ls79_c00112{letter-spacing:-1.355947pt;}
.ls8e_c00112{letter-spacing:-1.197760pt;}
.ls7d_c00112{letter-spacing:-1.155200pt;}
.ls87_c00112{letter-spacing:-0.930240pt;}
.ls8f_c00112{letter-spacing:-0.766080pt;}
.ls86_c00112{letter-spacing:-0.687040pt;}
.ls7f_c00112{letter-spacing:-0.620160pt;}
.ls90_c00112{letter-spacing:-0.608000pt;}
.ls7a_c00112{letter-spacing:-0.589760pt;}
.ls9a_c00112{letter-spacing:-0.583680pt;}
.ls8d_c00112{letter-spacing:-0.474240pt;}
.ls9b_c00112{letter-spacing:-0.470773pt;}
.ls7b_c00112{letter-spacing:-0.425600pt;}
.ls94_c00112{letter-spacing:-0.407360pt;}
.ls8c_c00112{letter-spacing:-0.370880pt;}
.ls85_c00112{letter-spacing:-0.334400pt;}
.ls89_c00112{letter-spacing:-0.310080pt;}
.ls92_c00112{letter-spacing:-0.273600pt;}
.ls97_c00112{letter-spacing:-0.170240pt;}
.ls95_c00112{letter-spacing:-0.091200pt;}
.ls7e_c00112{letter-spacing:-0.054720pt;}
.ls7c_c00112{letter-spacing:0.000000pt;}
.ls39_c00112{letter-spacing:0.018240pt;}
.ls38_c00112{letter-spacing:0.042560pt;}
.ls1e_c00112{letter-spacing:0.097280pt;}
.ls49_c00112{letter-spacing:0.103360pt;}
.ls96_c00112{letter-spacing:0.139840pt;}
.ls2f_c00112{letter-spacing:0.158080pt;}
.ls1f_c00112{letter-spacing:0.164160pt;}
.ls1b_c00112{letter-spacing:0.170240pt;}
.ls83_c00112{letter-spacing:0.188480pt;}
.ls35_c00112{letter-spacing:0.194560pt;}
.ls29_c00112{letter-spacing:0.197120pt;}
.ls15_c00112{letter-spacing:0.200640pt;}
.ls63_c00112{letter-spacing:0.218880pt;}
.ls4f_c00112{letter-spacing:0.224960pt;}
.ls1_c00112{letter-spacing:0.243200pt;}
.ls70_c00112{letter-spacing:0.249280pt;}
.ls6b_c00112{letter-spacing:0.273600pt;}
.ls23_c00112{letter-spacing:0.279680pt;}
.ls41_c00112{letter-spacing:0.310080pt;}
.ls71_c00112{letter-spacing:0.328320pt;}
.ls31_c00112{letter-spacing:0.334400pt;}
.ls5_c00112{letter-spacing:0.346560pt;}
.ls40_c00112{letter-spacing:0.352640pt;}
.ls3b_c00112{letter-spacing:0.370880pt;}
.ls3d_c00112{letter-spacing:0.383040pt;}
.ls1a_c00112{letter-spacing:0.389120pt;}
.ls72_c00112{letter-spacing:0.395200pt;}
.ls2c_c00112{letter-spacing:0.407360pt;}
.ls51_c00112{letter-spacing:0.413440pt;}
.ls3_c00112{letter-spacing:0.431680pt;}
.ls65_c00112{letter-spacing:0.443840pt;}
.lsb_c00112{letter-spacing:0.449920pt;}
.ls1d_c00112{letter-spacing:0.468160pt;}
.ls82_c00112{letter-spacing:0.480320pt;}
.ls52_c00112{letter-spacing:0.510720pt;}
.ls69_c00112{letter-spacing:0.516800pt;}
.lsf_c00112{letter-spacing:0.528960pt;}
.ls57_c00112{letter-spacing:0.541120pt;}
.ls17_c00112{letter-spacing:0.559360pt;}
.ls56_c00112{letter-spacing:0.583680pt;}
.ls25_c00112{letter-spacing:0.601920pt;}
.ls3c_c00112{letter-spacing:0.608000pt;}
.ls4d_c00112{letter-spacing:0.626240pt;}
.ls24_c00112{letter-spacing:0.644480pt;}
.ls8_c00112{letter-spacing:0.656640pt;}
.ls12_c00112{letter-spacing:0.668800pt;}
.ls50_c00112{letter-spacing:0.687040pt;}
.ls62_c00112{letter-spacing:0.699200pt;}
.ls48_c00112{letter-spacing:0.705280pt;}
.lsd_c00112{letter-spacing:0.717440pt;}
.ls42_c00112{letter-spacing:0.723520pt;}
.ls64_c00112{letter-spacing:0.747840pt;}
.lse_c00112{letter-spacing:0.753920pt;}
.ls16_c00112{letter-spacing:0.760000pt;}
.ls19_c00112{letter-spacing:0.766080pt;}
.ls66_c00112{letter-spacing:0.772160pt;}
.ls47_c00112{letter-spacing:0.784320pt;}
.ls77_c00112{letter-spacing:0.790400pt;}
.ls73_c00112{letter-spacing:0.808640pt;}
.ls13_c00112{letter-spacing:0.814720pt;}
.ls22_c00112{letter-spacing:0.826880pt;}
.ls30_c00112{letter-spacing:0.851200pt;}
.ls36_c00112{letter-spacing:0.857280pt;}
.ls91_c00112{letter-spacing:0.863360pt;}
.ls5d_c00112{letter-spacing:0.869440pt;}
.ls4e_c00112{letter-spacing:0.875520pt;}
.ls6c_c00112{letter-spacing:0.899840pt;}
.ls43_c00112{letter-spacing:0.912000pt;}
.ls0_c00112{letter-spacing:0.913920pt;}
.ls5e_c00112{letter-spacing:0.924160pt;}
.ls10_c00112{letter-spacing:0.949760pt;}
.ls74_c00112{letter-spacing:0.954560pt;}
.ls4b_c00112{letter-spacing:0.991040pt;}
.ls93_c00112{letter-spacing:0.991573pt;}
.ls53_c00112{letter-spacing:1.009280pt;}
.ls2b_c00112{letter-spacing:1.015360pt;}
.ls6d_c00112{letter-spacing:1.021440pt;}
.lsa_c00112{letter-spacing:1.051307pt;}
.ls7_c00112{letter-spacing:1.051840pt;}
.ls5a_c00112{letter-spacing:1.057920pt;}
.ls5b_c00112{letter-spacing:1.064000pt;}
.ls6_c00112{letter-spacing:1.070080pt;}
.ls21_c00112{letter-spacing:1.075200pt;}
.ls20_c00112{letter-spacing:1.082240pt;}
.ls28_c00112{letter-spacing:1.093120pt;}
.ls3f_c00112{letter-spacing:1.106560pt;}
.ls26_c00112{letter-spacing:1.112640pt;}
.ls33_c00112{letter-spacing:1.122987pt;}
.ls14_c00112{letter-spacing:1.136960pt;}
.ls80_c00112{letter-spacing:1.185600pt;}
.ls2a_c00112{letter-spacing:1.197760pt;}
.ls5c_c00112{letter-spacing:1.240320pt;}
.ls4_c00112{letter-spacing:1.246400pt;}
.ls3e_c00112{letter-spacing:1.254400pt;}
.ls8b_c00112{letter-spacing:1.288960pt;}
.ls3a_c00112{letter-spacing:1.296213pt;}
.ls32_c00112{letter-spacing:1.314133pt;}
.ls46_c00112{letter-spacing:1.343680pt;}
.ls6a_c00112{letter-spacing:1.355947pt;}
.ls61_c00112{letter-spacing:1.368000pt;}
.ls5f_c00112{letter-spacing:1.374080pt;}
.ls4a_c00112{letter-spacing:1.404480pt;}
.ls4c_c00112{letter-spacing:1.410560pt;}
.ls68_c00112{letter-spacing:1.422720pt;}
.ls6e_c00112{letter-spacing:1.459200pt;}
.ls1c_c00112{letter-spacing:1.465280pt;}
.ls58_c00112{letter-spacing:1.495680pt;}
.ls67_c00112{letter-spacing:1.507840pt;}
.ls6f_c00112{letter-spacing:1.526080pt;}
.ls11_c00112{letter-spacing:1.544320pt;}
.ls37_c00112{letter-spacing:1.565013pt;}
.lsc_c00112{letter-spacing:1.592960pt;}
.ls34_c00112{letter-spacing:1.629440pt;}
.ls55_c00112{letter-spacing:1.648640pt;}
.ls2_c00112{letter-spacing:1.781440pt;}
.ls75_c00112{letter-spacing:1.903787pt;}
.ls54_c00112{letter-spacing:1.957760pt;}
.ls59_c00112{letter-spacing:2.036800pt;}
.ls2e_c00112{letter-spacing:2.036907pt;}
.ls27_c00112{letter-spacing:2.091520pt;}
.ls44_c00112{letter-spacing:2.182720pt;}
.ls45_c00112{letter-spacing:2.231360pt;}
.ls60_c00112{letter-spacing:2.401600pt;}
.ls9_c00112{letter-spacing:2.407680pt;}
.ls2d_c00112{letter-spacing:2.478933pt;}
.ls18_c00112{letter-spacing:2.748160pt;}
.ls78_c00112{letter-spacing:2.986667pt;}
.ls84_c00112{letter-spacing:3.040000pt;}
.ws3_c00112{word-spacing:-3.190187pt;}
.ws4_c00112{word-spacing:-2.565760pt;}
.ws6_c00112{word-spacing:0.000000pt;}
.ws1_c00112{word-spacing:2.075733pt;}
.ws2_c00112{word-spacing:3.104000pt;}
.ws0_c00112{word-spacing:7.837867pt;}
.ws5_c00112{word-spacing:13.478400pt;}
._13_c00112{margin-left:-7.836160pt;}
._11_c00112{margin-left:-6.410133pt;}
._c_c00112{margin-left:-5.052480pt;}
._b_c00112{margin-left:-4.146560pt;}
._3_c00112{margin-left:-2.554560pt;}
._4_c00112{margin-left:-1.017493pt;}
._1_c00112{width:0.918080pt;}
._a_c00112{width:1.998187pt;}
._2_c00112{width:3.029973pt;}
._0_c00112{width:4.923733pt;}
._9_c00112{width:6.296747pt;}
._5_c00112{width:7.187627pt;}
._7_c00112{width:9.108587pt;}
._8_c00112{width:10.015253pt;}
._12_c00112{width:11.514773pt;}
._d_c00112{width:13.035520pt;}
._e_c00112{width:14.592000pt;}
._f_c00112{width:16.963200pt;}
._10_c00112{width:19.358720pt;}
._6_c00112{width:21.267200pt;}
.fs0_c00112{font-size:51.733333pt;}
.fs4_c00112{font-size:54.933333pt;}
.fs1_c00112{font-size:59.733333pt;}
.fs2_c00112{font-size:60.800000pt;}
.fs3_c00112{font-size:61.333333pt;}
.y0_c00112{bottom:0.000000pt;}
.y1a_c00112{bottom:57.293347pt;}
.y19_c00112{bottom:127.353613pt;}
.y18_c00112{bottom:155.200013pt;}
.y17_c00112{bottom:210.893347pt;}
.y16_c00112{bottom:267.526147pt;}
.y15_c00112{bottom:295.047747pt;}
.y14_c00112{bottom:323.213347pt;}
.y13_c00112{bottom:378.878947pt;}
.y12_c00112{bottom:406.406147pt;}
.y11_c00112{bottom:433.933347pt;}
.y10_c00112{bottom:489.613347pt;}
.yf_c00112{bottom:517.453347pt;}
.ye_c00112{bottom:545.293347pt;}
.yd_c00112{bottom:601.293347pt;}
.yc_c00112{bottom:657.287747pt;}
.yb_c00112{bottom:685.453347pt;}
.ya_c00112{bottom:741.453347pt;}
.y9_c00112{bottom:797.127213pt;}
.y8_c00112{bottom:824.320013pt;}
.y7_c00112{bottom:880.006947pt;}
.y6_c00112{bottom:907.846947pt;}
.y4_c00112{bottom:935.687747pt;}
.y5_c00112{bottom:935.693347pt;}
.y3_c00112{bottom:963.853347pt;}
.y2_c00112{bottom:992.000013pt;}
.y1_c00112{bottom:1059.213347pt;}
.h9_c00112{height:50.773437pt;}
.h8_c00112{height:53.914062pt;}
.h2_c00112{height:53.956250pt;}
.h4_c00112{height:58.595833pt;}
.h3_c00112{height:59.671875pt;}
.h7_c00112{height:59.694275pt;}
.h5_c00112{height:59.697475pt;}
.h6_c00112{height:63.968750pt;}
.h1_c00112{height:1122.666667pt;}
.h0_c00112{height:1122.880013pt;}
.w1_c00112{width:793.333333pt;}
.w0_c00112{width:793.600013pt;}
.x0_c00112{left:0.000000pt;}
.x19_c00112{left:106.684547pt;}
.x14_c00112{left:108.020013pt;}
.x8_c00112{left:112.636013pt;}
.x1_c00112{left:113.626680pt;}
.x15_c00112{left:155.986680pt;}
.x13_c00112{left:156.946680pt;}
.x10_c00112{left:157.880013pt;}
.xf_c00112{left:158.954147pt;}
.x9_c00112{left:160.146680pt;}
.x2_c00112{left:161.720013pt;}
.xe_c00112{left:250.680013pt;}
.x6_c00112{left:276.026680pt;}
.x7_c00112{left:292.706680pt;}
.x16_c00112{left:304.386680pt;}
.xa_c00112{left:328.480013pt;}
.xb_c00112{left:343.973347pt;}
.xc_c00112{left:357.040013pt;}
.xd_c00112{left:377.213347pt;}
.x17_c00112{left:396.400013pt;}
.x4_c00112{left:415.866680pt;}
.x18_c00112{left:424.480013pt;}
.x5_c00112{left:431.266680pt;}
.x11_c00112{left:535.933347pt;}
.x12_c00112{left:551.826680pt;}
.x3_c00112{left:660.266680pt;}
}





/* 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_c00113 {
    display:none;
  }
  .loading-indicator_c00113.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00113 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_c00113 { 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_c00113" -> "#page-container .classname_c00113")
 */
.pf_c00113 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00113 { /* 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_c00113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00113 { /* 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_c00113 { /* 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_c00113 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00113 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00113 {overflow:visible;}
  }
}
.c_c00113 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00113 { /* 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_c00113:after { /* webkit #35443 */
  content: '';
}
.t_c00113:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00113 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 */
}
.__c00113 { /* 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_c00113 { /* info for Javascript */
  display:none;
}
.l_c00113 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00113 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00113 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00113: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_c00113 {
    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_c00113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00113.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_c00113 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00113;src:url('chunks/assets/font_cc18a2b6f5380bf71be6d085.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.284668;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_c00113;src:url('chunks/assets/font_16c769dde093d53f815fad57.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.284180;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_c00113{transform:matrix(0.239768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239768,0.000000,0.000000,0.250000,0,0);}
.m3_c00113{transform:matrix(0.244132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244132,0.000000,0.000000,0.250000,0,0);}
.m5_c00113{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m2_c00113{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m1_c00113{transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);}
.m0_c00113{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);}
.v0_c00113{vertical-align:0.000000px;}
.ls67_c00113{letter-spacing:-2.394000px;}
.ls68_c00113{letter-spacing:-2.168280px;}
.ls71_c00113{letter-spacing:-2.147760px;}
.ls7b_c00113{letter-spacing:-1.972980px;}
.ls78_c00113{letter-spacing:-1.682640px;}
.ls75_c00113{letter-spacing:-1.593720px;}
.ls73_c00113{letter-spacing:-1.429560px;}
.ls69_c00113{letter-spacing:-1.313280px;}
.ls72_c00113{letter-spacing:-1.258560px;}
.ls6d_c00113{letter-spacing:-1.251720px;}
.ls77_c00113{letter-spacing:-0.957600px;}
.ls5f_c00113{letter-spacing:-0.731880px;}
.ls60_c00113{letter-spacing:-0.684000px;}
.ls6a_c00113{letter-spacing:-0.595080px;}
.ls66_c00113{letter-spacing:-0.581400px;}
.ls70_c00113{letter-spacing:-0.540360px;}
.ls6e_c00113{letter-spacing:-0.533520px;}
.ls61_c00113{letter-spacing:-0.526680px;}
.ls74_c00113{letter-spacing:-0.519480px;}
.ls6f_c00113{letter-spacing:-0.471960px;}
.ls58_c00113{letter-spacing:-0.458280px;}
.ls5e_c00113{letter-spacing:-0.396720px;}
.ls57_c00113{letter-spacing:-0.376200px;}
.ls79_c00113{letter-spacing:-0.342000px;}
.ls6c_c00113{letter-spacing:-0.328320px;}
.ls62_c00113{letter-spacing:-0.321480px;}
.ls5d_c00113{letter-spacing:-0.294120px;}
.ls6b_c00113{letter-spacing:-0.225720px;}
.ls56_c00113{letter-spacing:-0.198360px;}
.ls7a_c00113{letter-spacing:-0.191520px;}
.ls5a_c00113{letter-spacing:-0.143640px;}
.ls5c_c00113{letter-spacing:-0.136800px;}
.ls64_c00113{letter-spacing:-0.123120px;}
.ls63_c00113{letter-spacing:0.000000px;}
.ls41_c00113{letter-spacing:0.006840px;}
.ls19_c00113{letter-spacing:0.027360px;}
.ls4d_c00113{letter-spacing:0.041040px;}
.ls1e_c00113{letter-spacing:0.068400px;}
.ls42_c00113{letter-spacing:0.075240px;}
.ls65_c00113{letter-spacing:0.088920px;}
.ls34_c00113{letter-spacing:0.102600px;}
.lsd_c00113{letter-spacing:0.136800px;}
.ls3c_c00113{letter-spacing:0.143640px;}
.ls4f_c00113{letter-spacing:0.177840px;}
.ls5b_c00113{letter-spacing:0.184680px;}
.ls47_c00113{letter-spacing:0.191520px;}
.ls59_c00113{letter-spacing:0.198360px;}
.ls36_c00113{letter-spacing:0.205200px;}
.ls4_c00113{letter-spacing:0.212040px;}
.ls15_c00113{letter-spacing:0.273600px;}
.ls2b_c00113{letter-spacing:0.307800px;}
.ls3f_c00113{letter-spacing:0.321480px;}
.ls8_c00113{letter-spacing:0.335160px;}
.lsb_c00113{letter-spacing:0.346320px;}
.ls24_c00113{letter-spacing:0.348840px;}
.ls37_c00113{letter-spacing:0.355680px;}
.ls2f_c00113{letter-spacing:0.362520px;}
.ls38_c00113{letter-spacing:0.369360px;}
.ls52_c00113{letter-spacing:0.376200px;}
.ls20_c00113{letter-spacing:0.389880px;}
.ls28_c00113{letter-spacing:0.403560px;}
.ls27_c00113{letter-spacing:0.417240px;}
.ls46_c00113{letter-spacing:0.485640px;}
.ls3e_c00113{letter-spacing:0.499320px;}
.ls22_c00113{letter-spacing:0.513000px;}
.ls33_c00113{letter-spacing:0.554040px;}
.lsf_c00113{letter-spacing:0.574560px;}
.ls16_c00113{letter-spacing:0.581400px;}
.ls6_c00113{letter-spacing:0.622440px;}
.ls2d_c00113{letter-spacing:0.629280px;}
.ls3d_c00113{letter-spacing:0.649800px;}
.ls26_c00113{letter-spacing:0.677160px;}
.ls3b_c00113{letter-spacing:0.684000px;}
.ls1a_c00113{letter-spacing:0.711360px;}
.ls21_c00113{letter-spacing:0.738720px;}
.ls10_c00113{letter-spacing:0.745560px;}
.ls3_c00113{letter-spacing:0.752400px;}
.ls2e_c00113{letter-spacing:0.772920px;}
.ls14_c00113{letter-spacing:0.855000px;}
.ls40_c00113{letter-spacing:0.902880px;}
.ls23_c00113{letter-spacing:0.909720px;}
.ls29_c00113{letter-spacing:0.916560px;}
.ls1_c00113{letter-spacing:0.930240px;}
.ls12_c00113{letter-spacing:0.937080px;}
.ls2c_c00113{letter-spacing:0.978120px;}
.ls1f_c00113{letter-spacing:1.019160px;}
.ls9_c00113{letter-spacing:1.026000px;}
.ls43_c00113{letter-spacing:1.060200px;}
.ls25_c00113{letter-spacing:1.067040px;}
.ls18_c00113{letter-spacing:1.149120px;}
.lsa_c00113{letter-spacing:1.158840px;}
.ls7_c00113{letter-spacing:1.203840px;}
.ls0_c00113{letter-spacing:1.245420px;}
.ls76_c00113{letter-spacing:1.285920px;}
.ls4e_c00113{letter-spacing:1.312020px;}
.ls3a_c00113{letter-spacing:1.340640px;}
.lsc_c00113{letter-spacing:1.347480px;}
.ls48_c00113{letter-spacing:1.425240px;}
.ls1c_c00113{letter-spacing:1.431900px;}
.ls4c_c00113{letter-spacing:1.438560px;}
.ls17_c00113{letter-spacing:1.451400px;}
.ls50_c00113{letter-spacing:1.458540px;}
.ls32_c00113{letter-spacing:1.504800px;}
.ls39_c00113{letter-spacing:1.539000px;}
.ls55_c00113{letter-spacing:1.557420px;}
.ls51_c00113{letter-spacing:1.625040px;}
.ls31_c00113{letter-spacing:1.648440px;}
.ls4a_c00113{letter-spacing:1.671660px;}
.ls1b_c00113{letter-spacing:1.711620px;}
.ls13_c00113{letter-spacing:1.744200px;}
.ls53_c00113{letter-spacing:1.744920px;}
.ls1d_c00113{letter-spacing:1.804860px;}
.ls2_c00113{letter-spacing:1.812600px;}
.ls35_c00113{letter-spacing:1.963080px;}
.ls30_c00113{letter-spacing:1.983600px;}
.ls54_c00113{letter-spacing:2.117880px;}
.ls2a_c00113{letter-spacing:2.202480px;}
.ls49_c00113{letter-spacing:2.204460px;}
.ls4b_c00113{letter-spacing:2.384280px;}
.ls44_c00113{letter-spacing:2.464200px;}
.ls5_c00113{letter-spacing:2.489760px;}
.lse_c00113{letter-spacing:2.715480px;}
.ls45_c00113{letter-spacing:2.923740px;}
.ls11_c00113{letter-spacing:2.961720px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{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__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00113{word-spacing:-1.808700px;}
.ws1_c00113{word-spacing:0.000000px;}
._13_c00113{margin-left:-10.256400px;}
._f_c00113{margin-left:-9.165600px;}
._14_c00113{margin-left:-6.839340px;}
._0_c00113{margin-left:-5.554080px;}
._10_c00113{margin-left:-4.218360px;}
._1_c00113{margin-left:-2.824920px;}
._2_c00113{margin-left:-1.778400px;}
._12_c00113{width:1.422720px;}
._b_c00113{width:3.527520px;}
._8_c00113{width:4.532400px;}
._15_c00113{width:5.745600px;}
._a_c00113{width:6.798240px;}
._7_c00113{width:7.927560px;}
._5_c00113{width:9.336600px;}
._16_c00113{width:10.567800px;}
._9_c00113{width:12.099960px;}
._3_c00113{width:14.225760px;}
._6_c00113{width:15.663600px;}
._11_c00113{width:16.663680px;}
._4_c00113{width:18.501000px;}
._e_c00113{width:20.608920px;}
._c_c00113{width:21.717000px;}
._d_c00113{width:24.083640px;}
.fc0_c00113{color:transparent;}
.fs4_c00113{font-size:58.200000px;}
.fs0_c00113{font-size:60.600000px;}
.fs1_c00113{font-size:66.600000px;}
.fs2_c00113{font-size:68.400000px;}
.fs3_c00113{font-size:70.800000px;}
.y0_c00113{bottom:0.000000px;}
.y1c_c00113{bottom:68.400015px;}
.y1b_c00113{bottom:148.695015px;}
.y1a_c00113{bottom:178.920015px;}
.y19_c00113{bottom:210.255015px;}
.y18_c00113{bottom:241.935015px;}
.y17_c00113{bottom:272.895015px;}
.y16_c00113{bottom:303.855015px;}
.y15_c00113{bottom:335.175015px;}
.y14_c00113{bottom:397.455015px;}
.y13_c00113{bottom:397.459815px;}
.y11_c00113{bottom:460.073715px;}
.y12_c00113{bottom:460.080015px;}
.y10_c00113{bottom:491.760015px;}
.yf_c00113{bottom:553.645515px;}
.ye_c00113{bottom:585.348915px;}
.yd_c00113{bottom:616.317015px;}
.yc_c00113{bottom:647.644215px;}
.yb_c00113{bottom:678.971415px;}
.ya_c00113{bottom:710.657715px;}
.y9_c00113{bottom:773.295015px;}
.y8_c00113{bottom:804.615015px;}
.y7_c00113{bottom:835.560015px;}
.y6_c00113{bottom:898.198815px;}
.y5_c00113{bottom:960.130515px;}
.y4_c00113{bottom:1022.767815px;}
.y3_c00113{bottom:1054.095015px;}
.y2_c00113{bottom:1117.095015px;}
.y1_c00113{bottom:1191.615015px;}
.h5_c00113{height:57.120117px;}
.h2_c00113{height:59.475586px;}
.h3_c00113{height:67.130859px;}
.h4_c00113{height:69.504328px;}
.h1_c00113{height:1263.000000px;}
.h0_c00113{height:1263.240015px;}
.w1_c00113{width:892.500000px;}
.w0_c00113{width:892.800015px;}
.x0_c00113{left:0.000000px;}
.x1_c00113{left:124.845015px;}
.xf_c00113{left:176.205015px;}
.x6_c00113{left:177.756615px;}
.x2_c00113{left:179.070015px;}
.x4_c00113{left:218.775015px;}
.x5_c00113{left:235.965015px;}
.x3_c00113{left:286.365015px;}
.x7_c00113{left:350.805015px;}
.x8_c00113{left:378.165015px;}
.x9_c00113{left:411.315015px;}
.x10_c00113{left:425.010015px;}
.xa_c00113{left:429.045015px;}
.xe_c00113{left:490.095015px;}
.xd_c00113{left:513.855015px;}
.xb_c00113{left:694.365015px;}
.xc_c00113{left:716.970015px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls67_c00113{letter-spacing:-2.128000pt;}
.ls68_c00113{letter-spacing:-1.927360pt;}
.ls71_c00113{letter-spacing:-1.909120pt;}
.ls7b_c00113{letter-spacing:-1.753760pt;}
.ls78_c00113{letter-spacing:-1.495680pt;}
.ls75_c00113{letter-spacing:-1.416640pt;}
.ls73_c00113{letter-spacing:-1.270720pt;}
.ls69_c00113{letter-spacing:-1.167360pt;}
.ls72_c00113{letter-spacing:-1.118720pt;}
.ls6d_c00113{letter-spacing:-1.112640pt;}
.ls77_c00113{letter-spacing:-0.851200pt;}
.ls5f_c00113{letter-spacing:-0.650560pt;}
.ls60_c00113{letter-spacing:-0.608000pt;}
.ls6a_c00113{letter-spacing:-0.528960pt;}
.ls66_c00113{letter-spacing:-0.516800pt;}
.ls70_c00113{letter-spacing:-0.480320pt;}
.ls6e_c00113{letter-spacing:-0.474240pt;}
.ls61_c00113{letter-spacing:-0.468160pt;}
.ls74_c00113{letter-spacing:-0.461760pt;}
.ls6f_c00113{letter-spacing:-0.419520pt;}
.ls58_c00113{letter-spacing:-0.407360pt;}
.ls5e_c00113{letter-spacing:-0.352640pt;}
.ls57_c00113{letter-spacing:-0.334400pt;}
.ls79_c00113{letter-spacing:-0.304000pt;}
.ls6c_c00113{letter-spacing:-0.291840pt;}
.ls62_c00113{letter-spacing:-0.285760pt;}
.ls5d_c00113{letter-spacing:-0.261440pt;}
.ls6b_c00113{letter-spacing:-0.200640pt;}
.ls56_c00113{letter-spacing:-0.176320pt;}
.ls7a_c00113{letter-spacing:-0.170240pt;}
.ls5a_c00113{letter-spacing:-0.127680pt;}
.ls5c_c00113{letter-spacing:-0.121600pt;}
.ls64_c00113{letter-spacing:-0.109440pt;}
.ls63_c00113{letter-spacing:0.000000pt;}
.ls41_c00113{letter-spacing:0.006080pt;}
.ls19_c00113{letter-spacing:0.024320pt;}
.ls4d_c00113{letter-spacing:0.036480pt;}
.ls1e_c00113{letter-spacing:0.060800pt;}
.ls42_c00113{letter-spacing:0.066880pt;}
.ls65_c00113{letter-spacing:0.079040pt;}
.ls34_c00113{letter-spacing:0.091200pt;}
.lsd_c00113{letter-spacing:0.121600pt;}
.ls3c_c00113{letter-spacing:0.127680pt;}
.ls4f_c00113{letter-spacing:0.158080pt;}
.ls5b_c00113{letter-spacing:0.164160pt;}
.ls47_c00113{letter-spacing:0.170240pt;}
.ls59_c00113{letter-spacing:0.176320pt;}
.ls36_c00113{letter-spacing:0.182400pt;}
.ls4_c00113{letter-spacing:0.188480pt;}
.ls15_c00113{letter-spacing:0.243200pt;}
.ls2b_c00113{letter-spacing:0.273600pt;}
.ls3f_c00113{letter-spacing:0.285760pt;}
.ls8_c00113{letter-spacing:0.297920pt;}
.lsb_c00113{letter-spacing:0.307840pt;}
.ls24_c00113{letter-spacing:0.310080pt;}
.ls37_c00113{letter-spacing:0.316160pt;}
.ls2f_c00113{letter-spacing:0.322240pt;}
.ls38_c00113{letter-spacing:0.328320pt;}
.ls52_c00113{letter-spacing:0.334400pt;}
.ls20_c00113{letter-spacing:0.346560pt;}
.ls28_c00113{letter-spacing:0.358720pt;}
.ls27_c00113{letter-spacing:0.370880pt;}
.ls46_c00113{letter-spacing:0.431680pt;}
.ls3e_c00113{letter-spacing:0.443840pt;}
.ls22_c00113{letter-spacing:0.456000pt;}
.ls33_c00113{letter-spacing:0.492480pt;}
.lsf_c00113{letter-spacing:0.510720pt;}
.ls16_c00113{letter-spacing:0.516800pt;}
.ls6_c00113{letter-spacing:0.553280pt;}
.ls2d_c00113{letter-spacing:0.559360pt;}
.ls3d_c00113{letter-spacing:0.577600pt;}
.ls26_c00113{letter-spacing:0.601920pt;}
.ls3b_c00113{letter-spacing:0.608000pt;}
.ls1a_c00113{letter-spacing:0.632320pt;}
.ls21_c00113{letter-spacing:0.656640pt;}
.ls10_c00113{letter-spacing:0.662720pt;}
.ls3_c00113{letter-spacing:0.668800pt;}
.ls2e_c00113{letter-spacing:0.687040pt;}
.ls14_c00113{letter-spacing:0.760000pt;}
.ls40_c00113{letter-spacing:0.802560pt;}
.ls23_c00113{letter-spacing:0.808640pt;}
.ls29_c00113{letter-spacing:0.814720pt;}
.ls1_c00113{letter-spacing:0.826880pt;}
.ls12_c00113{letter-spacing:0.832960pt;}
.ls2c_c00113{letter-spacing:0.869440pt;}
.ls1f_c00113{letter-spacing:0.905920pt;}
.ls9_c00113{letter-spacing:0.912000pt;}
.ls43_c00113{letter-spacing:0.942400pt;}
.ls25_c00113{letter-spacing:0.948480pt;}
.ls18_c00113{letter-spacing:1.021440pt;}
.lsa_c00113{letter-spacing:1.030080pt;}
.ls7_c00113{letter-spacing:1.070080pt;}
.ls0_c00113{letter-spacing:1.107040pt;}
.ls76_c00113{letter-spacing:1.143040pt;}
.ls4e_c00113{letter-spacing:1.166240pt;}
.ls3a_c00113{letter-spacing:1.191680pt;}
.lsc_c00113{letter-spacing:1.197760pt;}
.ls48_c00113{letter-spacing:1.266880pt;}
.ls1c_c00113{letter-spacing:1.272800pt;}
.ls4c_c00113{letter-spacing:1.278720pt;}
.ls17_c00113{letter-spacing:1.290133pt;}
.ls50_c00113{letter-spacing:1.296480pt;}
.ls32_c00113{letter-spacing:1.337600pt;}
.ls39_c00113{letter-spacing:1.368000pt;}
.ls55_c00113{letter-spacing:1.384373pt;}
.ls51_c00113{letter-spacing:1.444480pt;}
.ls31_c00113{letter-spacing:1.465280pt;}
.ls4a_c00113{letter-spacing:1.485920pt;}
.ls1b_c00113{letter-spacing:1.521440pt;}
.ls13_c00113{letter-spacing:1.550400pt;}
.ls53_c00113{letter-spacing:1.551040pt;}
.ls1d_c00113{letter-spacing:1.604320pt;}
.ls2_c00113{letter-spacing:1.611200pt;}
.ls35_c00113{letter-spacing:1.744960pt;}
.ls30_c00113{letter-spacing:1.763200pt;}
.ls54_c00113{letter-spacing:1.882560pt;}
.ls2a_c00113{letter-spacing:1.957760pt;}
.ls49_c00113{letter-spacing:1.959520pt;}
.ls4b_c00113{letter-spacing:2.119360pt;}
.ls44_c00113{letter-spacing:2.190400pt;}
.ls5_c00113{letter-spacing:2.213120pt;}
.lse_c00113{letter-spacing:2.413760pt;}
.ls45_c00113{letter-spacing:2.598880pt;}
.ls11_c00113{letter-spacing:2.632640pt;}
.ws0_c00113{word-spacing:-1.607733pt;}
.ws1_c00113{word-spacing:0.000000pt;}
._13_c00113{margin-left:-9.116800pt;}
._f_c00113{margin-left:-8.147200pt;}
._14_c00113{margin-left:-6.079413pt;}
._0_c00113{margin-left:-4.936960pt;}
._10_c00113{margin-left:-3.749653pt;}
._1_c00113{margin-left:-2.511040pt;}
._2_c00113{margin-left:-1.580800pt;}
._12_c00113{width:1.264640pt;}
._b_c00113{width:3.135573pt;}
._8_c00113{width:4.028800pt;}
._15_c00113{width:5.107200pt;}
._a_c00113{width:6.042880pt;}
._7_c00113{width:7.046720pt;}
._5_c00113{width:8.299200pt;}
._16_c00113{width:9.393600pt;}
._9_c00113{width:10.755520pt;}
._3_c00113{width:12.645120pt;}
._6_c00113{width:13.923200pt;}
._11_c00113{width:14.812160pt;}
._4_c00113{width:16.445333pt;}
._e_c00113{width:18.319040pt;}
._c_c00113{width:19.304000pt;}
._d_c00113{width:21.407680pt;}
.fs4_c00113{font-size:51.733333pt;}
.fs0_c00113{font-size:53.866667pt;}
.fs1_c00113{font-size:59.200000pt;}
.fs2_c00113{font-size:60.800000pt;}
.fs3_c00113{font-size:62.933333pt;}
.y0_c00113{bottom:0.000000pt;}
.y1c_c00113{bottom:60.800013pt;}
.y1b_c00113{bottom:132.173347pt;}
.y1a_c00113{bottom:159.040013pt;}
.y19_c00113{bottom:186.893347pt;}
.y18_c00113{bottom:215.053347pt;}
.y17_c00113{bottom:242.573347pt;}
.y16_c00113{bottom:270.093347pt;}
.y15_c00113{bottom:297.933347pt;}
.y14_c00113{bottom:353.293347pt;}
.y13_c00113{bottom:353.297613pt;}
.y11_c00113{bottom:408.954413pt;}
.y12_c00113{bottom:408.960013pt;}
.y10_c00113{bottom:437.120013pt;}
.yf_c00113{bottom:492.129347pt;}
.ye_c00113{bottom:520.310147pt;}
.yd_c00113{bottom:547.837347pt;}
.yc_c00113{bottom:575.683747pt;}
.yb_c00113{bottom:603.530147pt;}
.ya_c00113{bottom:631.695747pt;}
.y9_c00113{bottom:687.373347pt;}
.y8_c00113{bottom:715.213347pt;}
.y7_c00113{bottom:742.720013pt;}
.y6_c00113{bottom:798.398947pt;}
.y5_c00113{bottom:853.449347pt;}
.y4_c00113{bottom:909.126947pt;}
.y3_c00113{bottom:936.973347pt;}
.y2_c00113{bottom:992.973347pt;}
.y1_c00113{bottom:1059.213347pt;}
.h5_c00113{height:50.773437pt;}
.h2_c00113{height:52.867187pt;}
.h3_c00113{height:59.671875pt;}
.h4_c00113{height:61.781625pt;}
.h1_c00113{height:1122.666667pt;}
.h0_c00113{height:1122.880013pt;}
.w1_c00113{width:793.333333pt;}
.w0_c00113{width:793.600013pt;}
.x0_c00113{left:0.000000pt;}
.x1_c00113{left:110.973347pt;}
.xf_c00113{left:156.626680pt;}
.x6_c00113{left:158.005880pt;}
.x2_c00113{left:159.173347pt;}
.x4_c00113{left:194.466680pt;}
.x5_c00113{left:209.746680pt;}
.x3_c00113{left:254.546680pt;}
.x7_c00113{left:311.826680pt;}
.x8_c00113{left:336.146680pt;}
.x9_c00113{left:365.613347pt;}
.x10_c00113{left:377.786680pt;}
.xa_c00113{left:381.373347pt;}
.xe_c00113{left:435.640013pt;}
.xd_c00113{left:456.760013pt;}
.xb_c00113{left:617.213347pt;}
.xc_c00113{left:637.306680pt;}
}





/* 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_c00114 {
    display:none;
  }
  .loading-indicator_c00114.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00114 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_c00114 { 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_c00114" -> "#page-container .classname_c00114")
 */
.pf_c00114 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00114 { /* 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_c00114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00114 { /* 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_c00114 { /* 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_c00114 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00114 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00114 {overflow:visible;}
  }
}
.c_c00114 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00114 { /* 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_c00114:after { /* webkit #35443 */
  content: '';
}
.t_c00114:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00114 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 */
}
.__c00114 { /* 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_c00114 { /* info for Javascript */
  display:none;
}
.l_c00114 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00114 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00114 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00114: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_c00114 {
    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_c00114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00114.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_c00114 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00114;src:url('chunks/assets/font_d1235c98df0e07e9ab4f0910.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.284668;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_c00114;src:url('chunks/assets/font_68f5adacabef16708d9a9117.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.284180;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_c00114;src:url('chunks/assets/font_0d3a6d0a690c4e2386217802.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;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;}
.m7_c00114{transform:matrix(0.195644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195644,0.000000,0.000000,0.250000,0,0);}
.m3_c00114{transform:matrix(0.215666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215666,0.000000,0.000000,0.250000,0,0);}
.m6_c00114{transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);}
.m2_c00114{transform:matrix(0.234073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234073,0.000000,0.000000,0.250000,0,0);}
.m4_c00114{transform:matrix(0.242306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242306,0.000000,0.000000,0.250000,0,0);}
.m5_c00114{transform:matrix(0.246191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246191,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{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);}
.m0_c00114{transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls66_c00114{letter-spacing:-2.583000px;}
.ls6f_c00114{letter-spacing:-2.478000px;}
.ls50_c00114{letter-spacing:-2.436000px;}
.ls61_c00114{letter-spacing:-2.331000px;}
.ls4a_c00114{letter-spacing:-2.199240px;}
.ls6e_c00114{letter-spacing:-1.847880px;}
.ls57_c00114{letter-spacing:-1.815480px;}
.ls3b_c00114{letter-spacing:-1.719540px;}
.ls62_c00114{letter-spacing:-1.653120px;}
.ls65_c00114{letter-spacing:-1.571940px;}
.ls5f_c00114{letter-spacing:-1.475520px;}
.ls6d_c00114{letter-spacing:-1.454400px;}
.ls48_c00114{letter-spacing:-1.426800px;}
.ls42_c00114{letter-spacing:-1.218000px;}
.ls38_c00114{letter-spacing:-1.190160px;}
.ls52_c00114{letter-spacing:-1.176240px;}
.ls3a_c00114{letter-spacing:-1.078800px;}
.ls60_c00114{letter-spacing:-0.918720px;}
.ls41_c00114{letter-spacing:-0.883920px;}
.ls6b_c00114{letter-spacing:-0.835200px;}
.ls6a_c00114{letter-spacing:-0.828240px;}
.ls36_c00114{letter-spacing:-0.789660px;}
.ls37_c00114{letter-spacing:-0.758640px;}
.ls3e_c00114{letter-spacing:-0.751680px;}
.ls64_c00114{letter-spacing:-0.689040px;}
.ls47_c00114{letter-spacing:-0.682080px;}
.ls4c_c00114{letter-spacing:-0.657660px;}
.ls58_c00114{letter-spacing:-0.647280px;}
.ls54_c00114{letter-spacing:-0.619440px;}
.ls71_c00114{letter-spacing:-0.529620px;}
.ls45_c00114{letter-spacing:-0.501120px;}
.ls59_c00114{letter-spacing:-0.445440px;}
.ls3f_c00114{letter-spacing:-0.432900px;}
.ls5d_c00114{letter-spacing:-0.431520px;}
.ls49_c00114{letter-spacing:-0.424560px;}
.ls4b_c00114{letter-spacing:-0.419040px;}
.ls44_c00114{letter-spacing:-0.382800px;}
.ls5a_c00114{letter-spacing:-0.313200px;}
.ls43_c00114{letter-spacing:-0.285360px;}
.ls4f_c00114{letter-spacing:-0.257520px;}
.ls56_c00114{letter-spacing:-0.243600px;}
.ls68_c00114{letter-spacing:-0.215760px;}
.ls4e_c00114{letter-spacing:-0.208800px;}
.ls39_c00114{letter-spacing:-0.187920px;}
.ls51_c00114{letter-spacing:-0.186240px;}
.ls53_c00114{letter-spacing:-0.180960px;}
.ls63_c00114{letter-spacing:-0.153120px;}
.ls67_c00114{letter-spacing:-0.132240px;}
.ls3c_c00114{letter-spacing:-0.090480px;}
.ls55_c00114{letter-spacing:-0.076560px;}
.ls46_c00114{letter-spacing:-0.055680px;}
.ls4d_c00114{letter-spacing:-0.041760px;}
.ls6c_c00114{letter-spacing:-0.027840px;}
.ls5e_c00114{letter-spacing:-0.020880px;}
.ls5c_c00114{letter-spacing:-0.014400px;}
.ls3d_c00114{letter-spacing:-0.013920px;}
.ls40_c00114{letter-spacing:0.000000px;}
.ls17_c00114{letter-spacing:0.006960px;}
.ls0_c00114{letter-spacing:0.041760px;}
.ls6_c00114{letter-spacing:0.048720px;}
.ls22_c00114{letter-spacing:0.055680px;}
.ls1a_c00114{letter-spacing:0.064020px;}
.ls14_c00114{letter-spacing:0.076560px;}
.ls2f_c00114{letter-spacing:0.090480px;}
.ls11_c00114{letter-spacing:0.097440px;}
.ls2a_c00114{letter-spacing:0.125280px;}
.ls69_c00114{letter-spacing:0.139200px;}
.ls26_c00114{letter-spacing:0.153120px;}
.ls3_c00114{letter-spacing:0.160080px;}
.ls12_c00114{letter-spacing:0.174000px;}
.ls5b_c00114{letter-spacing:0.194880px;}
.ls18_c00114{letter-spacing:0.201840px;}
.ls24_c00114{letter-spacing:0.208800px;}
.ls8_c00114{letter-spacing:0.215760px;}
.ls2c_c00114{letter-spacing:0.222720px;}
.ls29_c00114{letter-spacing:0.257520px;}
.ls1d_c00114{letter-spacing:0.292320px;}
.ls2d_c00114{letter-spacing:0.299280px;}
.ls1e_c00114{letter-spacing:0.306240px;}
.ls27_c00114{letter-spacing:0.313200px;}
.ls33_c00114{letter-spacing:0.348000px;}
.ls7_c00114{letter-spacing:0.375840px;}
.lsd_c00114{letter-spacing:0.382800px;}
.ls2_c00114{letter-spacing:0.410640px;}
.ls21_c00114{letter-spacing:0.438480px;}
.lsf_c00114{letter-spacing:0.459360px;}
.ls28_c00114{letter-spacing:0.466320px;}
.ls32_c00114{letter-spacing:0.501120px;}
.ls10_c00114{letter-spacing:0.515040px;}
.ls20_c00114{letter-spacing:0.535920px;}
.lsa_c00114{letter-spacing:0.542880px;}
.lsc_c00114{letter-spacing:0.549840px;}
.ls15_c00114{letter-spacing:0.570720px;}
.ls1b_c00114{letter-spacing:0.626400px;}
.ls13_c00114{letter-spacing:0.696000px;}
.lse_c00114{letter-spacing:0.723840px;}
.ls9_c00114{letter-spacing:0.730800px;}
.lsb_c00114{letter-spacing:0.751680px;}
.ls2e_c00114{letter-spacing:0.828240px;}
.ls19_c00114{letter-spacing:0.835200px;}
.ls5_c00114{letter-spacing:0.883920px;}
.ls30_c00114{letter-spacing:1.037040px;}
.ls1f_c00114{letter-spacing:1.078800px;}
.ls25_c00114{letter-spacing:1.092720px;}
.ls16_c00114{letter-spacing:1.398960px;}
.ls1_c00114{letter-spacing:1.461600px;}
.ls2b_c00114{letter-spacing:1.607760px;}
.ls34_c00114{letter-spacing:1.802640px;}
.ls23_c00114{letter-spacing:1.983600px;}
.ls1c_c00114{letter-spacing:2.164560px;}
.ls31_c00114{letter-spacing:2.442960px;}
.ls70_c00114{letter-spacing:2.633760px;}
.ls4_c00114{letter-spacing:2.888400px;}
.ls35_c00114{letter-spacing:2.910000px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{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__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00114{word-spacing:0.000000px;}
.ws2_c00114{word-spacing:3.528600px;}
.ws1_c00114{word-spacing:10.626600px;}
.ws0_c00114{word-spacing:29.603760px;}
._13_c00114{margin-left:-6.175140px;}
._d_c00114{margin-left:-5.005860px;}
._10_c00114{margin-left:-3.869760px;}
._12_c00114{margin-left:-2.338560px;}
._e_c00114{margin-left:-1.261380px;}
._0_c00114{width:1.637220px;}
._2_c00114{width:2.963340px;}
._14_c00114{width:3.983040px;}
._f_c00114{width:5.053920px;}
._11_c00114{width:6.119760px;}
._1_c00114{width:7.746480px;}
._8_c00114{width:12.764640px;}
._a_c00114{width:15.416400px;}
._15_c00114{width:16.595760px;}
._b_c00114{width:18.353520px;}
._9_c00114{width:19.641120px;}
._c_c00114{width:21.616080px;}
._5_c00114{width:23.218560px;}
._4_c00114{width:24.631440px;}
._3_c00114{width:27.331920px;}
._6_c00114{width:30.010080px;}
._7_c00114{width:31.044540px;}
.fc0_c00114{color:transparent;}
.fs0_c00114{font-size:58.200000px;}
.fs3_c00114{font-size:66.600000px;}
.fs2_c00114{font-size:69.600000px;}
.fs5_c00114{font-size:70.800000px;}
.fs4_c00114{font-size:72.000000px;}
.fs1_c00114{font-size:73.800000px;}
.y0_c00114{bottom:0.000000px;}
.y12_c00114{bottom:65.175000px;}
.y11_c00114{bottom:519.135000px;}
.y10_c00114{bottom:550.455000px;}
.yf_c00114{bottom:582.135000px;}
.ye_c00114{bottom:645.135000px;}
.yd_c00114{bottom:676.455000px;}
.yc_c00114{bottom:739.455000px;}
.yb_c00114{bottom:739.457400px;}
.ya_c00114{bottom:770.760000px;}
.y9_c00114{bottom:802.080000px;}
.y8_c00114{bottom:864.723000px;}
.y7_c00114{bottom:895.695000px;}
.y6_c00114{bottom:927.375000px;}
.y5_c00114{bottom:990.375000px;}
.y4_c00114{bottom:1021.695000px;}
.y3_c00114{bottom:1053.015000px;}
.y2_c00114{bottom:1116.015000px;}
.y1_c00114{bottom:1191.975000px;}
.h2_c00114{height:57.120117px;}
.h4_c00114{height:68.308594px;}
.h6_c00114{height:69.461719px;}
.h7_c00114{height:69.486328px;}
.h5_c00114{height:70.664062px;}
.h3_c00114{height:72.394629px;}
.h1_c00114{height:1263.000000px;}
.h0_c00114{height:1263.240000px;}
.w1_c00114{width:892.500000px;}
.w0_c00114{width:892.800000px;}
.x0_c00114{left:0.000000px;}
.xd_c00114{left:118.831200px;}
.x9_c00114{left:120.612000px;}
.x4_c00114{left:122.245200px;}
.x1_c00114{left:125.205000px;}
.xe_c00114{left:173.340000px;}
.x8_c00114{left:174.750000px;}
.x5_c00114{left:175.845000px;}
.x3_c00114{left:176.925000px;}
.x2_c00114{left:177.975000px;}
.x11_c00114{left:209.355000px;}
.xf_c00114{left:212.040000px;}
.x12_c00114{left:273.495000px;}
.x10_c00114{left:285.750000px;}
.x13_c00114{left:296.220000px;}
.x14_c00114{left:422.490000px;}
.x6_c00114{left:507.405000px;}
.x7_c00114{left:530.520000px;}
.xc_c00114{left:561.720000px;}
.xa_c00114{left:631.635000px;}
.xb_c00114{left:652.845000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls66_c00114{letter-spacing:-2.296000pt;}
.ls6f_c00114{letter-spacing:-2.202667pt;}
.ls50_c00114{letter-spacing:-2.165333pt;}
.ls61_c00114{letter-spacing:-2.072000pt;}
.ls4a_c00114{letter-spacing:-1.954880pt;}
.ls6e_c00114{letter-spacing:-1.642560pt;}
.ls57_c00114{letter-spacing:-1.613760pt;}
.ls3b_c00114{letter-spacing:-1.528480pt;}
.ls62_c00114{letter-spacing:-1.469440pt;}
.ls65_c00114{letter-spacing:-1.397280pt;}
.ls5f_c00114{letter-spacing:-1.311573pt;}
.ls6d_c00114{letter-spacing:-1.292800pt;}
.ls48_c00114{letter-spacing:-1.268267pt;}
.ls42_c00114{letter-spacing:-1.082667pt;}
.ls38_c00114{letter-spacing:-1.057920pt;}
.ls52_c00114{letter-spacing:-1.045547pt;}
.ls3a_c00114{letter-spacing:-0.958933pt;}
.ls60_c00114{letter-spacing:-0.816640pt;}
.ls41_c00114{letter-spacing:-0.785707pt;}
.ls6b_c00114{letter-spacing:-0.742400pt;}
.ls6a_c00114{letter-spacing:-0.736213pt;}
.ls36_c00114{letter-spacing:-0.701920pt;}
.ls37_c00114{letter-spacing:-0.674347pt;}
.ls3e_c00114{letter-spacing:-0.668160pt;}
.ls64_c00114{letter-spacing:-0.612480pt;}
.ls47_c00114{letter-spacing:-0.606293pt;}
.ls4c_c00114{letter-spacing:-0.584587pt;}
.ls58_c00114{letter-spacing:-0.575360pt;}
.ls54_c00114{letter-spacing:-0.550613pt;}
.ls71_c00114{letter-spacing:-0.470773pt;}
.ls45_c00114{letter-spacing:-0.445440pt;}
.ls59_c00114{letter-spacing:-0.395947pt;}
.ls3f_c00114{letter-spacing:-0.384800pt;}
.ls5d_c00114{letter-spacing:-0.383573pt;}
.ls49_c00114{letter-spacing:-0.377387pt;}
.ls4b_c00114{letter-spacing:-0.372480pt;}
.ls44_c00114{letter-spacing:-0.340267pt;}
.ls5a_c00114{letter-spacing:-0.278400pt;}
.ls43_c00114{letter-spacing:-0.253653pt;}
.ls4f_c00114{letter-spacing:-0.228907pt;}
.ls56_c00114{letter-spacing:-0.216533pt;}
.ls68_c00114{letter-spacing:-0.191787pt;}
.ls4e_c00114{letter-spacing:-0.185600pt;}
.ls39_c00114{letter-spacing:-0.167040pt;}
.ls51_c00114{letter-spacing:-0.165547pt;}
.ls53_c00114{letter-spacing:-0.160853pt;}
.ls63_c00114{letter-spacing:-0.136107pt;}
.ls67_c00114{letter-spacing:-0.117547pt;}
.ls3c_c00114{letter-spacing:-0.080427pt;}
.ls55_c00114{letter-spacing:-0.068053pt;}
.ls46_c00114{letter-spacing:-0.049493pt;}
.ls4d_c00114{letter-spacing:-0.037120pt;}
.ls6c_c00114{letter-spacing:-0.024747pt;}
.ls5e_c00114{letter-spacing:-0.018560pt;}
.ls5c_c00114{letter-spacing:-0.012800pt;}
.ls3d_c00114{letter-spacing:-0.012373pt;}
.ls40_c00114{letter-spacing:0.000000pt;}
.ls17_c00114{letter-spacing:0.006187pt;}
.ls0_c00114{letter-spacing:0.037120pt;}
.ls6_c00114{letter-spacing:0.043307pt;}
.ls22_c00114{letter-spacing:0.049493pt;}
.ls1a_c00114{letter-spacing:0.056907pt;}
.ls14_c00114{letter-spacing:0.068053pt;}
.ls2f_c00114{letter-spacing:0.080427pt;}
.ls11_c00114{letter-spacing:0.086613pt;}
.ls2a_c00114{letter-spacing:0.111360pt;}
.ls69_c00114{letter-spacing:0.123733pt;}
.ls26_c00114{letter-spacing:0.136107pt;}
.ls3_c00114{letter-spacing:0.142293pt;}
.ls12_c00114{letter-spacing:0.154667pt;}
.ls5b_c00114{letter-spacing:0.173227pt;}
.ls18_c00114{letter-spacing:0.179413pt;}
.ls24_c00114{letter-spacing:0.185600pt;}
.ls8_c00114{letter-spacing:0.191787pt;}
.ls2c_c00114{letter-spacing:0.197973pt;}
.ls29_c00114{letter-spacing:0.228907pt;}
.ls1d_c00114{letter-spacing:0.259840pt;}
.ls2d_c00114{letter-spacing:0.266027pt;}
.ls1e_c00114{letter-spacing:0.272213pt;}
.ls27_c00114{letter-spacing:0.278400pt;}
.ls33_c00114{letter-spacing:0.309333pt;}
.ls7_c00114{letter-spacing:0.334080pt;}
.lsd_c00114{letter-spacing:0.340267pt;}
.ls2_c00114{letter-spacing:0.365013pt;}
.ls21_c00114{letter-spacing:0.389760pt;}
.lsf_c00114{letter-spacing:0.408320pt;}
.ls28_c00114{letter-spacing:0.414507pt;}
.ls32_c00114{letter-spacing:0.445440pt;}
.ls10_c00114{letter-spacing:0.457813pt;}
.ls20_c00114{letter-spacing:0.476373pt;}
.lsa_c00114{letter-spacing:0.482560pt;}
.lsc_c00114{letter-spacing:0.488747pt;}
.ls15_c00114{letter-spacing:0.507307pt;}
.ls1b_c00114{letter-spacing:0.556800pt;}
.ls13_c00114{letter-spacing:0.618667pt;}
.lse_c00114{letter-spacing:0.643413pt;}
.ls9_c00114{letter-spacing:0.649600pt;}
.lsb_c00114{letter-spacing:0.668160pt;}
.ls2e_c00114{letter-spacing:0.736213pt;}
.ls19_c00114{letter-spacing:0.742400pt;}
.ls5_c00114{letter-spacing:0.785707pt;}
.ls30_c00114{letter-spacing:0.921813pt;}
.ls1f_c00114{letter-spacing:0.958933pt;}
.ls25_c00114{letter-spacing:0.971307pt;}
.ls16_c00114{letter-spacing:1.243520pt;}
.ls1_c00114{letter-spacing:1.299200pt;}
.ls2b_c00114{letter-spacing:1.429120pt;}
.ls34_c00114{letter-spacing:1.602347pt;}
.ls23_c00114{letter-spacing:1.763200pt;}
.ls1c_c00114{letter-spacing:1.924053pt;}
.ls31_c00114{letter-spacing:2.171520pt;}
.ls70_c00114{letter-spacing:2.341120pt;}
.ls4_c00114{letter-spacing:2.567467pt;}
.ls35_c00114{letter-spacing:2.586667pt;}
.ws3_c00114{word-spacing:0.000000pt;}
.ws2_c00114{word-spacing:3.136533pt;}
.ws1_c00114{word-spacing:9.445867pt;}
.ws0_c00114{word-spacing:26.314453pt;}
._13_c00114{margin-left:-5.489013pt;}
._d_c00114{margin-left:-4.449653pt;}
._10_c00114{margin-left:-3.439787pt;}
._12_c00114{margin-left:-2.078720pt;}
._e_c00114{margin-left:-1.121227pt;}
._0_c00114{width:1.455307pt;}
._2_c00114{width:2.634080pt;}
._14_c00114{width:3.540480pt;}
._f_c00114{width:4.492373pt;}
._11_c00114{width:5.439787pt;}
._1_c00114{width:6.885760pt;}
._8_c00114{width:11.346347pt;}
._a_c00114{width:13.703467pt;}
._15_c00114{width:14.751787pt;}
._b_c00114{width:16.314240pt;}
._9_c00114{width:17.458773pt;}
._c_c00114{width:19.214293pt;}
._5_c00114{width:20.638720pt;}
._4_c00114{width:21.894613pt;}
._3_c00114{width:24.295040pt;}
._6_c00114{width:26.675627pt;}
._7_c00114{width:27.595147pt;}
.fs0_c00114{font-size:51.733333pt;}
.fs3_c00114{font-size:59.200000pt;}
.fs2_c00114{font-size:61.866667pt;}
.fs5_c00114{font-size:62.933333pt;}
.fs4_c00114{font-size:64.000000pt;}
.fs1_c00114{font-size:65.600000pt;}
.y0_c00114{bottom:0.000000pt;}
.y12_c00114{bottom:57.933333pt;}
.y11_c00114{bottom:461.453333pt;}
.y10_c00114{bottom:489.293333pt;}
.yf_c00114{bottom:517.453333pt;}
.ye_c00114{bottom:573.453333pt;}
.yd_c00114{bottom:601.293333pt;}
.yc_c00114{bottom:657.293333pt;}
.yb_c00114{bottom:657.295467pt;}
.ya_c00114{bottom:685.120000pt;}
.y9_c00114{bottom:712.960000pt;}
.y8_c00114{bottom:768.642667pt;}
.y7_c00114{bottom:796.173333pt;}
.y6_c00114{bottom:824.333333pt;}
.y5_c00114{bottom:880.333333pt;}
.y4_c00114{bottom:908.173333pt;}
.y3_c00114{bottom:936.013333pt;}
.y2_c00114{bottom:992.013333pt;}
.y1_c00114{bottom:1059.533333pt;}
.h2_c00114{height:50.773437pt;}
.h4_c00114{height:60.718750pt;}
.h6_c00114{height:61.743750pt;}
.h7_c00114{height:61.765625pt;}
.h5_c00114{height:62.812500pt;}
.h3_c00114{height:64.350781pt;}
.h1_c00114{height:1122.666667pt;}
.h0_c00114{height:1122.880000pt;}
.w1_c00114{width:793.333333pt;}
.w0_c00114{width:793.600000pt;}
.x0_c00114{left:0.000000pt;}
.xd_c00114{left:105.627733pt;}
.x9_c00114{left:107.210667pt;}
.x4_c00114{left:108.662400pt;}
.x1_c00114{left:111.293333pt;}
.xe_c00114{left:154.080000pt;}
.x8_c00114{left:155.333333pt;}
.x5_c00114{left:156.306667pt;}
.x3_c00114{left:157.266667pt;}
.x2_c00114{left:158.200000pt;}
.x11_c00114{left:186.093333pt;}
.xf_c00114{left:188.480000pt;}
.x12_c00114{left:243.106667pt;}
.x10_c00114{left:254.000000pt;}
.x13_c00114{left:263.306667pt;}
.x14_c00114{left:375.546667pt;}
.x6_c00114{left:451.026667pt;}
.x7_c00114{left:471.573333pt;}
.xc_c00114{left:499.306667pt;}
.xa_c00114{left:561.453333pt;}
.xb_c00114{left:580.306667pt;}
}





/* 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_c00115 {
    display:none;
  }
  .loading-indicator_c00115.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00115 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_c00115 { 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_c00115" -> "#page-container .classname_c00115")
 */
.pf_c00115 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00115 { /* 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_c00115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00115 { /* 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_c00115 { /* 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_c00115 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00115 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00115 {overflow:visible;}
  }
}
.c_c00115 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00115 { /* 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_c00115:after { /* webkit #35443 */
  content: '';
}
.t_c00115:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00115 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 */
}
.__c00115 { /* 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_c00115 { /* info for Javascript */
  display:none;
}
.l_c00115 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00115 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00115 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00115: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_c00115 {
    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_c00115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00115.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_c00115 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00115;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;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:ff2_c00115;src:url('chunks/assets/font_71fb5d6595acabd505f59272.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.284180;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_c00115;src:url('chunks/assets/font_41b3b23c1b7deb498810b5e7.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.284668;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_c00115;src:url('chunks/assets/font_a6f95bca414e574015066de8.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00115{transform:matrix(0.118548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118548,0.000000,0.000000,0.250000,0,0);}
.m5_c00115{transform:matrix(0.123867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123867,0.000000,0.000000,0.250000,0,0);}
.m7_c00115{transform:matrix(0.133145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133145,0.000000,0.000000,0.250000,0,0);}
.m6_c00115{transform:matrix(0.134460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134460,0.000000,0.000000,0.250000,0,0);}
.m3_c00115{transform:matrix(0.143016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143016,0.000000,0.000000,0.250000,0,0);}
.m8_c00115{transform:matrix(0.229890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229890,0.000000,0.000000,0.250000,0,0);}
.m2_c00115{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);}
.m4_c00115{transform:matrix(0.255626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255626,0.000000,0.000000,0.250000,0,0);}
.m1_c00115{transform:matrix(0.314299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314299,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls14_c00115{letter-spacing:-8.316000px;}
.ls1c_c00115{letter-spacing:-6.888000px;}
.ls1d_c00115{letter-spacing:-5.166000px;}
.ls1b_c00115{letter-spacing:-2.520000px;}
.lsc_c00115{letter-spacing:-2.394000px;}
.ls1e_c00115{letter-spacing:-2.331000px;}
.ls19_c00115{letter-spacing:-2.130600px;}
.lse_c00115{letter-spacing:-1.392840px;}
.ls16_c00115{letter-spacing:-0.057240px;}
.ls13_c00115{letter-spacing:0.000000px;}
.ls11_c00115{letter-spacing:0.044520px;}
.lsf_c00115{letter-spacing:0.082680px;}
.ls12_c00115{letter-spacing:0.178080px;}
.ls10_c00115{letter-spacing:0.311640px;}
.ls17_c00115{letter-spacing:0.470640px;}
.lsb_c00115{letter-spacing:0.483360px;}
.ls18_c00115{letter-spacing:0.489720px;}
.ls2_c00115{letter-spacing:0.769560px;}
.ls15_c00115{letter-spacing:0.839520px;}
.lsa_c00115{letter-spacing:0.845880px;}
.ls6_c00115{letter-spacing:0.871320px;}
.ls9_c00115{letter-spacing:0.979440px;}
.ls5_c00115{letter-spacing:1.017600px;}
.ls0_c00115{letter-spacing:1.106640px;}
.ls7_c00115{letter-spacing:1.240200px;}
.ls8_c00115{letter-spacing:1.265640px;}
.ls4_c00115{letter-spacing:1.291080px;}
.ls1_c00115{letter-spacing:1.386480px;}
.ls3_c00115{letter-spacing:1.488240px;}
.ls1a_c00115{letter-spacing:3.270000px;}
.lsd_c00115{letter-spacing:3.390000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{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__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00115{word-spacing:-2.421360px;}
.ws2_c00115{word-spacing:-2.188080px;}
.ws6_c00115{word-spacing:-1.119360px;}
.ws7_c00115{word-spacing:0.000000px;}
.ws4_c00115{word-spacing:0.094560px;}
.ws5_c00115{word-spacing:1.336560px;}
.ws1_c00115{word-spacing:1.386480px;}
.ws0_c00115{word-spacing:1.612560px;}
._1_c00115{margin-left:-5.037120px;}
._3_c00115{margin-left:-2.772960px;}
._4_c00115{margin-left:-1.272000px;}
._2_c00115{width:1.405560px;}
._0_c00115{width:2.956080px;}
.fc0_c00115{color:transparent;}
.fs3_c00115{font-size:57.000000px;}
.fs2_c00115{font-size:63.600000px;}
.fs5_c00115{font-size:65.400000px;}
.fs9_c00115{font-size:66.600000px;}
.fs1_c00115{font-size:67.800000px;}
.fs0_c00115{font-size:68.400000px;}
.fs6_c00115{font-size:72.000000px;}
.fs8_c00115{font-size:147.600000px;}
.fs7_c00115{font-size:196.800000px;}
.fs4_c00115{font-size:237.600000px;}
.y0_c00115{bottom:0.000000px;}
.y6_c00115{bottom:139.326006px;}
.yc_c00115{bottom:139.675506px;}
.y5_c00115{bottom:157.690506px;}
.yb_c00115{bottom:158.045706px;}
.y4_c00115{bottom:176.404806px;}
.ya_c00115{bottom:176.764806px;}
.y3_c00115{bottom:195.135006px;}
.y9_c00115{bottom:195.495006px;}
.y2_c00115{bottom:447.480006px;}
.y10_c00115{bottom:466.935006px;}
.yf_c00115{bottom:1020.615006px;}
.y8_c00115{bottom:1033.215006px;}
.ye_c00115{bottom:1078.575006px;}
.y7_c00115{bottom:1078.935006px;}
.y1_c00115{bottom:1079.640006px;}
.yd_c00115{bottom:1147.320006px;}
.h6_c00115{height:55.942383px;}
.h4_c00115{height:62.388867px;}
.h8_c00115{height:62.406867px;}
.h5_c00115{height:62.419922px;}
.hd_c00115{height:65.364258px;}
.h9_c00115{height:65.910938px;}
.h3_c00115{height:66.508887px;}
.ha_c00115{height:70.664062px;}
.h2_c00115{height:71.339063px;}
.hc_c00115{height:144.861328px;}
.hb_c00115{height:193.052344px;}
.h7_c00115{height:233.191406px;}
.h1_c00115{height:1263.000000px;}
.h0_c00115{height:1263.240006px;}
.w1_c00115{width:892.500000px;}
.w0_c00115{width:892.799998px;}
.x0_c00115{left:0.000000px;}
.x4_c00115{left:118.726198px;}
.x1_c00115{left:120.344999px;}
.x3_c00115{left:139.841398px;}
.x2_c00115{left:325.709999px;}
.x6_c00115{left:384.344998px;}
.x5_c00115{left:399.839998px;}
.x7_c00115{left:682.109998px;}
.x9_c00115{left:713.729999px;}
.xa_c00115{left:720.389998px;}
.xb_c00115{left:769.289999px;}
.x8_c00115{left:794.939999px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls14_c00115{letter-spacing:-7.392000pt;}
.ls1c_c00115{letter-spacing:-6.122667pt;}
.ls1d_c00115{letter-spacing:-4.592000pt;}
.ls1b_c00115{letter-spacing:-2.240000pt;}
.lsc_c00115{letter-spacing:-2.128000pt;}
.ls1e_c00115{letter-spacing:-2.072000pt;}
.ls19_c00115{letter-spacing:-1.893867pt;}
.lse_c00115{letter-spacing:-1.238080pt;}
.ls16_c00115{letter-spacing:-0.050880pt;}
.ls13_c00115{letter-spacing:0.000000pt;}
.ls11_c00115{letter-spacing:0.039573pt;}
.lsf_c00115{letter-spacing:0.073493pt;}
.ls12_c00115{letter-spacing:0.158293pt;}
.ls10_c00115{letter-spacing:0.277013pt;}
.ls17_c00115{letter-spacing:0.418347pt;}
.lsb_c00115{letter-spacing:0.429653pt;}
.ls18_c00115{letter-spacing:0.435307pt;}
.ls2_c00115{letter-spacing:0.684053pt;}
.ls15_c00115{letter-spacing:0.746240pt;}
.lsa_c00115{letter-spacing:0.751893pt;}
.ls6_c00115{letter-spacing:0.774507pt;}
.ls9_c00115{letter-spacing:0.870613pt;}
.ls5_c00115{letter-spacing:0.904533pt;}
.ls0_c00115{letter-spacing:0.983680pt;}
.ls7_c00115{letter-spacing:1.102400pt;}
.ls8_c00115{letter-spacing:1.125013pt;}
.ls4_c00115{letter-spacing:1.147627pt;}
.ls1_c00115{letter-spacing:1.232427pt;}
.ls3_c00115{letter-spacing:1.322880pt;}
.ls1a_c00115{letter-spacing:2.906667pt;}
.lsd_c00115{letter-spacing:3.013333pt;}
.ws3_c00115{word-spacing:-2.152320pt;}
.ws2_c00115{word-spacing:-1.944960pt;}
.ws6_c00115{word-spacing:-0.994987pt;}
.ws7_c00115{word-spacing:0.000000pt;}
.ws4_c00115{word-spacing:0.084053pt;}
.ws5_c00115{word-spacing:1.188053pt;}
.ws1_c00115{word-spacing:1.232427pt;}
.ws0_c00115{word-spacing:1.433387pt;}
._1_c00115{margin-left:-4.477440pt;}
._3_c00115{margin-left:-2.464853pt;}
._4_c00115{margin-left:-1.130667pt;}
._2_c00115{width:1.249387pt;}
._0_c00115{width:2.627627pt;}
.fs3_c00115{font-size:50.666667pt;}
.fs2_c00115{font-size:56.533333pt;}
.fs5_c00115{font-size:58.133333pt;}
.fs9_c00115{font-size:59.200000pt;}
.fs1_c00115{font-size:60.266667pt;}
.fs0_c00115{font-size:60.800000pt;}
.fs6_c00115{font-size:64.000000pt;}
.fs8_c00115{font-size:131.200000pt;}
.fs7_c00115{font-size:174.933333pt;}
.fs4_c00115{font-size:211.200000pt;}
.y0_c00115{bottom:0.000000pt;}
.y6_c00115{bottom:123.845339pt;}
.yc_c00115{bottom:124.156005pt;}
.y5_c00115{bottom:140.169339pt;}
.yb_c00115{bottom:140.485072pt;}
.y4_c00115{bottom:156.804272pt;}
.ya_c00115{bottom:157.124272pt;}
.y3_c00115{bottom:173.453339pt;}
.y9_c00115{bottom:173.773339pt;}
.y2_c00115{bottom:397.760005pt;}
.y10_c00115{bottom:415.053339pt;}
.yf_c00115{bottom:907.213339pt;}
.y8_c00115{bottom:918.413339pt;}
.ye_c00115{bottom:958.733339pt;}
.y7_c00115{bottom:959.053339pt;}
.y1_c00115{bottom:959.680005pt;}
.yd_c00115{bottom:1019.840005pt;}
.h6_c00115{height:49.726562pt;}
.h4_c00115{height:55.456771pt;}
.h8_c00115{height:55.472771pt;}
.h5_c00115{height:55.484375pt;}
.hd_c00115{height:58.101562pt;}
.h9_c00115{height:58.587500pt;}
.h3_c00115{height:59.119010pt;}
.ha_c00115{height:62.812500pt;}
.h2_c00115{height:63.412500pt;}
.hc_c00115{height:128.765625pt;}
.hb_c00115{height:171.602083pt;}
.h7_c00115{height:207.281250pt;}
.h1_c00115{height:1122.666667pt;}
.h0_c00115{height:1122.880005pt;}
.w1_c00115{width:793.333333pt;}
.w0_c00115{width:793.599999pt;}
.x0_c00115{left:0.000000pt;}
.x4_c00115{left:105.534399pt;}
.x1_c00115{left:106.973332pt;}
.x3_c00115{left:124.303465pt;}
.x2_c00115{left:289.519999pt;}
.x6_c00115{left:341.639999pt;}
.x5_c00115{left:355.413332pt;}
.x7_c00115{left:606.319999pt;}
.x9_c00115{left:634.426665pt;}
.xa_c00115{left:640.346665pt;}
.xb_c00115{left:683.813332pt;}
.x8_c00115{left:706.613332pt;}
}





/* 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_c00116 {
    display:none;
  }
  .loading-indicator_c00116.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00116 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_c00116 { 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_c00116" -> "#page-container .classname_c00116")
 */
.pf_c00116 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00116 { /* 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_c00116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00116 { /* 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_c00116 { /* 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_c00116 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00116 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00116 {overflow:visible;}
  }
}
.c_c00116 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00116 { /* 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_c00116:after { /* webkit #35443 */
  content: '';
}
.t_c00116:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00116 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 */
}
.__c00116 { /* 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_c00116 { /* info for Javascript */
  display:none;
}
.l_c00116 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00116 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00116 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00116: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_c00116 {
    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_c00116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00116.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_c00116 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00116;src:url('chunks/assets/font_d3d06968aff2a01341cf0a0b.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;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:ff2_c00116;src:url('chunks/assets/font_2a7f1e31fd02a2fb6cddaa02.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.284180;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_c00116;src:url('chunks/assets/font_751070fd757bc47a2d1f9b19.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:0.666000;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_c00116;src:url('chunks/assets/font_1e3c7090d92d05e8839214b4.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:1.284668;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_c00116{transform:matrix(0.060714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060714,0.000000,0.000000,0.250000,0,0);}
.m10_c00116{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m7_c00116{transform:matrix(0.085526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085526,0.000000,0.000000,0.250000,0,0);}
.mc_c00116{transform:matrix(0.116935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116935,0.000000,0.000000,0.250000,0,0);}
.m0_c00116{transform:matrix(0.117859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117859,0.000000,0.000000,0.250000,0,0);}
.m6_c00116{transform:matrix(0.124232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124232,0.000000,0.000000,0.250000,0,0);}
.md_c00116{transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);}
.m8_c00116{transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);}
.m3_c00116{transform:matrix(0.162948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162948,0.000000,0.000000,0.250000,0,0);}
.m9_c00116{transform:matrix(0.169379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169379,0.000000,0.000000,0.250000,0,0);}
.m4_c00116{transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);}
.mb_c00116{transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);}
.ma_c00116{transform:matrix(0.208407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208407,0.000000,0.000000,0.250000,0,0);}
.mf_c00116{transform:matrix(0.219238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219238,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{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);}
.m5_c00116{transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);}
.m11_c00116{transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);}
.me_c00116{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.lsd_c00116{letter-spacing:-4.368000px;}
.ls15_c00116{letter-spacing:-2.730000px;}
.ls8_c00116{letter-spacing:-2.709000px;}
.ls11_c00116{letter-spacing:-2.373000px;}
.ls9_c00116{letter-spacing:-1.392840px;}
.ls13_c00116{letter-spacing:-1.239021px;}
.ls12_c00116{letter-spacing:-1.176000px;}
.ls14_c00116{letter-spacing:-0.966000px;}
.ls16_c00116{letter-spacing:-0.882000px;}
.lsc_c00116{letter-spacing:0.000000px;}
.lsa_c00116{letter-spacing:0.139920px;}
.lsb_c00116{letter-spacing:0.190800px;}
.lse_c00116{letter-spacing:0.508800px;}
.ls2_c00116{letter-spacing:0.871320px;}
.ls5_c00116{letter-spacing:0.909480px;}
.ls3_c00116{letter-spacing:0.979440px;}
.ls17_c00116{letter-spacing:1.050030px;}
.ls0_c00116{letter-spacing:1.240200px;}
.ls4_c00116{letter-spacing:1.265640px;}
.ls1_c00116{letter-spacing:1.291080px;}
.lsf_c00116{letter-spacing:1.710840px;}
.ls7_c00116{letter-spacing:1.746540px;}
.ls6_c00116{letter-spacing:2.105400px;}
.ls10_c00116{letter-spacing:3.300000px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{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__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00116{word-spacing:-2.811120px;}
.ws3_c00116{word-spacing:-2.264160px;}
.ws2_c00116{word-spacing:-2.213280px;}
.ws4_c00116{word-spacing:0.000000px;}
.ws0_c00116{word-spacing:1.628160px;}
._0_c00116{margin-left:-3.752400px;}
.fc0_c00116{color:transparent;}
.fs19_c00116{font-size:11.520000px;}
.fs1d_c00116{font-size:18.720000px;}
.fs1c_c00116{font-size:21.000600px;}
.fs17_c00116{font-size:23.400600px;}
.fs1a_c00116{font-size:25.200000px;}
.fs13_c00116{font-size:27.600000px;}
.fs15_c00116{font-size:28.800600px;}
.fs11_c00116{font-size:33.600000px;}
.fs18_c00116{font-size:34.560000px;}
.fs12_c00116{font-size:35.400600px;}
.fs1b_c00116{font-size:37.440000px;}
.fs10_c00116{font-size:41.400600px;}
.fs9_c00116{font-size:42.000000px;}
.fsf_c00116{font-size:44.640600px;}
.fsc_c00116{font-size:52.800000px;}
.fse_c00116{font-size:54.720000px;}
.fs7_c00116{font-size:55.800000px;}
.fs3_c00116{font-size:62.400000px;}
.fsa_c00116{font-size:63.000000px;}
.fsb_c00116{font-size:63.360000px;}
.fs1_c00116{font-size:63.600000px;}
.fs6_c00116{font-size:66.000000px;}
.fsd_c00116{font-size:67.800000px;}
.fs16_c00116{font-size:76.800000px;}
.fs0_c00116{font-size:77.400000px;}
.fs14_c00116{font-size:78.000000px;}
.fs5_c00116{font-size:115.200600px;}
.fs4_c00116{font-size:124.800000px;}
.fs8_c00116{font-size:159.600000px;}
.fs2_c00116{font-size:201.600000px;}
.y0_c00116{bottom:0.000000px;}
.y3_c00116{bottom:149.405685px;}
.y8_c00116{bottom:149.755485px;}
.y2_c00116{bottom:168.119985px;}
.y5_c00116{bottom:407.534985px;}
.y10_c00116{bottom:458.294985px;}
.yf_c00116{bottom:465.854985px;}
.ye_c00116{bottom:475.199985px;}
.yd_c00116{bottom:494.639985px;}
.y7_c00116{bottom:511.199985px;}
.y23_c00116{bottom:524.174985px;}
.yc_c00116{bottom:529.934985px;}
.y22_c00116{bottom:531.014985px;}
.y21_c00116{bottom:537.494985px;}
.y6_c00116{bottom:538.199985px;}
.y20_c00116{bottom:549.374985px;}
.y1f_c00116{bottom:561.599985px;}
.y1e_c00116{bottom:576.374985px;}
.y1d_c00116{bottom:588.599985px;}
.y1c_c00116{bottom:597.959985px;}
.y1b_c00116{bottom:613.454985px;}
.y1a_c00116{bottom:617.039985px;}
.y19_c00116{bottom:637.199985px;}
.y18_c00116{bottom:645.854985px;}
.y17_c00116{bottom:663.494985px;}
.y16_c00116{bottom:669.254985px;}
.y15_c00116{bottom:674.294985px;}
.y14_c00116{bottom:693.374985px;}
.y13_c00116{bottom:699.494985px;}
.y12_c00116{bottom:714.959985px;}
.yb_c00116{bottom:734.774985px;}
.ya_c00116{bottom:805.679985px;}
.y4_c00116{bottom:869.414985px;}
.y11_c00116{bottom:1076.054985px;}
.y1_c00116{bottom:1083.959985px;}
.y9_c00116{bottom:1146.599985px;}
.h1c_c00116{height:7.672320px;}
.h20_c00116{height:12.467520px;}
.h1f_c00116{height:21.902970px;}
.h1b_c00116{height:23.016960px;}
.h1a_c00116{height:24.406095px;}
.h1e_c00116{height:24.935040px;}
.h1d_c00116{height:26.282813px;}
.h15_c00116{height:28.785937px;}
.h11_c00116{height:29.730640px;}
.h17_c00116{height:30.038126px;}
.h13_c00116{height:32.976562px;}
.h14_c00116{height:34.743753px;}
.h10_c00116{height:36.443520px;}
.h12_c00116{height:40.632425px;}
.hb_c00116{height:41.220703px;}
.hd_c00116{height:42.197760px;}
.he_c00116{height:51.820313px;}
.h5_c00116{height:61.242188px;}
.hc_c00116{height:61.831055px;}
.h3_c00116{height:62.388867px;}
.h9_c00116{height:62.419922px;}
.h8_c00116{height:64.775391px;}
.hf_c00116{height:66.541992px;}
.h19_c00116{height:68.835938px;}
.h18_c00116{height:80.100000px;}
.h2_c00116{height:80.725781px;}
.h16_c00116{height:81.351562px;}
.h7_c00116{height:120.150626px;}
.h6_c00116{height:122.484375px;}
.h4_c00116{height:134.265600px;}
.ha_c00116{height:166.457813px;}
.h1_c00116{height:1263.000000px;}
.h0_c00116{height:1263.239985px;}
.w1_c00116{width:892.500000px;}
.w0_c00116{width:892.800000px;}
.x0_c00116{left:0.000000px;}
.x1_c00116{left:118.155000px;}
.x2_c00116{left:121.035000px;}
.x3_c00116{left:345.615000px;}
.x4_c00116{left:357.300000px;}
.x7_c00116{left:385.050000px;}
.x5_c00116{left:388.455000px;}
.x6_c00116{left:390.030000px;}
.x9_c00116{left:669.750000px;}
.x8_c00116{left:683.550000px;}
.xa_c00116{left:688.590000px;}
.xd_c00116{left:698.280000px;}
.xb_c00116{left:701.190000px;}
.xc_c00116{left:702.375000px;}
.xe_c00116{left:793.155000px;}
.x11_c00116{left:853.770000px;}
.x10_c00116{left:854.865000px;}
.xf_c00116{left:856.095000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.lsd_c00116{letter-spacing:-3.882667pt;}
.ls15_c00116{letter-spacing:-2.426667pt;}
.ls8_c00116{letter-spacing:-2.408000pt;}
.ls11_c00116{letter-spacing:-2.109333pt;}
.ls9_c00116{letter-spacing:-1.238080pt;}
.ls13_c00116{letter-spacing:-1.101352pt;}
.ls12_c00116{letter-spacing:-1.045333pt;}
.ls14_c00116{letter-spacing:-0.858667pt;}
.ls16_c00116{letter-spacing:-0.784000pt;}
.lsc_c00116{letter-spacing:0.000000pt;}
.lsa_c00116{letter-spacing:0.124373pt;}
.lsb_c00116{letter-spacing:0.169600pt;}
.lse_c00116{letter-spacing:0.452267pt;}
.ls2_c00116{letter-spacing:0.774507pt;}
.ls5_c00116{letter-spacing:0.808427pt;}
.ls3_c00116{letter-spacing:0.870613pt;}
.ls17_c00116{letter-spacing:0.933360pt;}
.ls0_c00116{letter-spacing:1.102400pt;}
.ls4_c00116{letter-spacing:1.125013pt;}
.ls1_c00116{letter-spacing:1.147627pt;}
.lsf_c00116{letter-spacing:1.520747pt;}
.ls7_c00116{letter-spacing:1.552480pt;}
.ls6_c00116{letter-spacing:1.871467pt;}
.ls10_c00116{letter-spacing:2.933333pt;}
.ws1_c00116{word-spacing:-2.498773pt;}
.ws3_c00116{word-spacing:-2.012587pt;}
.ws2_c00116{word-spacing:-1.967360pt;}
.ws4_c00116{word-spacing:0.000000pt;}
.ws0_c00116{word-spacing:1.447253pt;}
._0_c00116{margin-left:-3.335467pt;}
.fs19_c00116{font-size:10.240000pt;}
.fs1d_c00116{font-size:16.640000pt;}
.fs1c_c00116{font-size:18.667200pt;}
.fs17_c00116{font-size:20.800533pt;}
.fs1a_c00116{font-size:22.400000pt;}
.fs13_c00116{font-size:24.533333pt;}
.fs15_c00116{font-size:25.600533pt;}
.fs11_c00116{font-size:29.866667pt;}
.fs18_c00116{font-size:30.720000pt;}
.fs12_c00116{font-size:31.467200pt;}
.fs1b_c00116{font-size:33.280000pt;}
.fs10_c00116{font-size:36.800533pt;}
.fs9_c00116{font-size:37.333333pt;}
.fsf_c00116{font-size:39.680533pt;}
.fsc_c00116{font-size:46.933333pt;}
.fse_c00116{font-size:48.640000pt;}
.fs7_c00116{font-size:49.600000pt;}
.fs3_c00116{font-size:55.466667pt;}
.fsa_c00116{font-size:56.000000pt;}
.fsb_c00116{font-size:56.320000pt;}
.fs1_c00116{font-size:56.533333pt;}
.fs6_c00116{font-size:58.666667pt;}
.fsd_c00116{font-size:60.266667pt;}
.fs16_c00116{font-size:68.266667pt;}
.fs0_c00116{font-size:68.800000pt;}
.fs14_c00116{font-size:69.333333pt;}
.fs5_c00116{font-size:102.400533pt;}
.fs4_c00116{font-size:110.933333pt;}
.fs8_c00116{font-size:141.866667pt;}
.fs2_c00116{font-size:179.200000pt;}
.y0_c00116{bottom:0.000000pt;}
.y3_c00116{bottom:132.805053pt;}
.y8_c00116{bottom:133.115987pt;}
.y2_c00116{bottom:149.439987pt;}
.y5_c00116{bottom:362.253320pt;}
.y10_c00116{bottom:407.373320pt;}
.yf_c00116{bottom:414.093320pt;}
.ye_c00116{bottom:422.399987pt;}
.yd_c00116{bottom:439.679987pt;}
.y7_c00116{bottom:454.399987pt;}
.y23_c00116{bottom:465.933320pt;}
.yc_c00116{bottom:471.053320pt;}
.y22_c00116{bottom:472.013320pt;}
.y21_c00116{bottom:477.773320pt;}
.y6_c00116{bottom:478.399987pt;}
.y20_c00116{bottom:488.333320pt;}
.y1f_c00116{bottom:499.199987pt;}
.y1e_c00116{bottom:512.333320pt;}
.y1d_c00116{bottom:523.199987pt;}
.y1c_c00116{bottom:531.519987pt;}
.y1b_c00116{bottom:545.293320pt;}
.y1a_c00116{bottom:548.479987pt;}
.y19_c00116{bottom:566.399987pt;}
.y18_c00116{bottom:574.093320pt;}
.y17_c00116{bottom:589.773320pt;}
.y16_c00116{bottom:594.893320pt;}
.y15_c00116{bottom:599.373320pt;}
.y14_c00116{bottom:616.333320pt;}
.y13_c00116{bottom:621.773320pt;}
.y12_c00116{bottom:635.519987pt;}
.yb_c00116{bottom:653.133320pt;}
.ya_c00116{bottom:716.159987pt;}
.y4_c00116{bottom:772.813320pt;}
.y11_c00116{bottom:956.493320pt;}
.y1_c00116{bottom:963.519987pt;}
.y9_c00116{bottom:1019.199987pt;}
.h1c_c00116{height:6.819840pt;}
.h20_c00116{height:11.082240pt;}
.h1f_c00116{height:19.469306pt;}
.h1b_c00116{height:20.459520pt;}
.h1a_c00116{height:21.694306pt;}
.h1e_c00116{height:22.164480pt;}
.h1d_c00116{height:23.362500pt;}
.h15_c00116{height:25.587500pt;}
.h11_c00116{height:26.427235pt;}
.h17_c00116{height:26.700556pt;}
.h13_c00116{height:29.312500pt;}
.h14_c00116{height:30.883336pt;}
.h10_c00116{height:32.394240pt;}
.h12_c00116{height:36.117711pt;}
.hb_c00116{height:36.640625pt;}
.hd_c00116{height:37.509120pt;}
.he_c00116{height:46.062500pt;}
.h5_c00116{height:54.437500pt;}
.hc_c00116{height:54.960938pt;}
.h3_c00116{height:55.456771pt;}
.h9_c00116{height:55.484375pt;}
.h8_c00116{height:57.578125pt;}
.hf_c00116{height:59.148438pt;}
.h19_c00116{height:61.187500pt;}
.h18_c00116{height:71.200000pt;}
.h2_c00116{height:71.756250pt;}
.h16_c00116{height:72.312500pt;}
.h7_c00116{height:106.800556pt;}
.h6_c00116{height:108.875000pt;}
.h4_c00116{height:119.347200pt;}
.ha_c00116{height:147.962500pt;}
.h1_c00116{height:1122.666667pt;}
.h0_c00116{height:1122.879987pt;}
.w1_c00116{width:793.333333pt;}
.w0_c00116{width:793.600000pt;}
.x0_c00116{left:0.000000pt;}
.x1_c00116{left:105.026667pt;}
.x2_c00116{left:107.586667pt;}
.x3_c00116{left:307.213333pt;}
.x4_c00116{left:317.600000pt;}
.x7_c00116{left:342.266667pt;}
.x5_c00116{left:345.293333pt;}
.x6_c00116{left:346.693333pt;}
.x9_c00116{left:595.333333pt;}
.x8_c00116{left:607.600000pt;}
.xa_c00116{left:612.080000pt;}
.xd_c00116{left:620.693333pt;}
.xb_c00116{left:623.280000pt;}
.xc_c00116{left:624.333333pt;}
.xe_c00116{left:705.026667pt;}
.x11_c00116{left:758.906667pt;}
.x10_c00116{left:759.880000pt;}
.xf_c00116{left:760.973333pt;}
}





/* 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_c00117 {
    display:none;
  }
  .loading-indicator_c00117.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00117 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_c00117 { 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_c00117" -> "#page-container .classname_c00117")
 */
.pf_c00117 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00117 { /* 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_c00117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00117 { /* 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_c00117 { /* 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_c00117 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00117 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00117 {overflow:visible;}
  }
}
.c_c00117 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00117 { /* 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_c00117:after { /* webkit #35443 */
  content: '';
}
.t_c00117:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00117 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 */
}
.__c00117 { /* 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_c00117 { /* info for Javascript */
  display:none;
}
.l_c00117 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00117 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00117 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00117: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_c00117 {
    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_c00117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00117.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_c00117 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00117;src:url('chunks/assets/font_0c2ee03acb9ee97127c81ec9.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.284668;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_c00117;src:url('chunks/assets/font_769792b66e48c3e0e959b592.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;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_c00117;src:url('chunks/assets/font_8ff52d8ebd6287b07f9846ae.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.311035;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_c00117;src:url('chunks/assets/font_372fb5bf718701bf11e48ea1.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:1.284180;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;}
.ma_c00117{transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);}
.mb_c00117{transform:matrix(0.220624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220624,0.000000,0.000000,0.250000,0,0);}
.m9_c00117{transform:matrix(0.230011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230011,0.000000,0.000000,0.250000,0,0);}
.m1_c00117{transform:matrix(0.246140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246140,0.000000,0.000000,0.250000,0,0);}
.m0_c00117{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);}
.mc_c00117{transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);}
.m7_c00117{transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);}
.m2_c00117{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.m8_c00117{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.md_c00117{transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);}
.m3_c00117{transform:matrix(0.255063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255063,0.000000,0.000000,0.250000,0,0);}
.m4_c00117{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.m5_c00117{transform:matrix(0.255821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255821,0.000000,0.000000,0.250000,0,0);}
.m6_c00117{transform:matrix(0.258708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258708,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls97_c00117{letter-spacing:-2.793000px;}
.ls98_c00117{letter-spacing:-2.730000px;}
.ls83_c00117{letter-spacing:-2.331000px;}
.ls8b_c00117{letter-spacing:-1.611720px;}
.ls8f_c00117{letter-spacing:-1.559040px;}
.ls90_c00117{letter-spacing:-0.960960px;}
.ls9d_c00117{letter-spacing:-0.823680px;}
.ls96_c00117{letter-spacing:-0.740520px;}
.ls81_c00117{letter-spacing:-0.483840px;}
.ls92_c00117{letter-spacing:-0.026880px;}
.ls84_c00117{letter-spacing:0.000000px;}
.ls6f_c00117{letter-spacing:0.033600px;}
.ls7c_c00117{letter-spacing:0.120960px;}
.ls4a_c00117{letter-spacing:0.127680px;}
.ls41_c00117{letter-spacing:0.134400px;}
.ls2b_c00117{letter-spacing:0.141120px;}
.ls63_c00117{letter-spacing:0.147840px;}
.ls48_c00117{letter-spacing:0.154560px;}
.ls11_c00117{letter-spacing:0.161280px;}
.ls82_c00117{letter-spacing:0.181440px;}
.ls57_c00117{letter-spacing:0.201600px;}
.ls35_c00117{letter-spacing:0.215040px;}
.ls7e_c00117{letter-spacing:0.235200px;}
.ls7b_c00117{letter-spacing:0.241920px;}
.ls74_c00117{letter-spacing:0.255360px;}
.ls42_c00117{letter-spacing:0.282240px;}
.ls24_c00117{letter-spacing:0.295680px;}
.ls13_c00117{letter-spacing:0.315840px;}
.ls6_c00117{letter-spacing:0.329280px;}
.ls50_c00117{letter-spacing:0.342720px;}
.ls6e_c00117{letter-spacing:0.423360px;}
.ls21_c00117{letter-spacing:0.430080px;}
.ls30_c00117{letter-spacing:0.450240px;}
.ls5e_c00117{letter-spacing:0.463680px;}
.lsa_c00117{letter-spacing:0.477120px;}
.lsf_c00117{letter-spacing:0.490560px;}
.ls20_c00117{letter-spacing:0.497280px;}
.ls93_c00117{letter-spacing:0.504000px;}
.ls6c_c00117{letter-spacing:0.530880px;}
.ls77_c00117{letter-spacing:0.537600px;}
.ls28_c00117{letter-spacing:0.571200px;}
.ls9b_c00117{letter-spacing:0.577920px;}
.ls3f_c00117{letter-spacing:0.584640px;}
.ls3e_c00117{letter-spacing:0.598080px;}
.ls14_c00117{letter-spacing:0.631680px;}
.ls19_c00117{letter-spacing:0.651840px;}
.ls36_c00117{letter-spacing:0.665280px;}
.ls88_c00117{letter-spacing:0.672000px;}
.ls3c_c00117{letter-spacing:0.692160px;}
.ls1e_c00117{letter-spacing:0.705600px;}
.ls6a_c00117{letter-spacing:0.712320px;}
.ls39_c00117{letter-spacing:0.719040px;}
.ls29_c00117{letter-spacing:0.745920px;}
.ls8a_c00117{letter-spacing:0.752640px;}
.ls3a_c00117{letter-spacing:0.779520px;}
.ls71_c00117{letter-spacing:0.799680px;}
.ls68_c00117{letter-spacing:0.806400px;}
.ls5c_c00117{letter-spacing:0.813120px;}
.ls9_c00117{letter-spacing:0.819840px;}
.ls4d_c00117{letter-spacing:0.826560px;}
.ls8_c00117{letter-spacing:0.833280px;}
.ls62_c00117{letter-spacing:0.853440px;}
.ls33_c00117{letter-spacing:0.860160px;}
.ls1a_c00117{letter-spacing:0.873600px;}
.ls47_c00117{letter-spacing:0.880320px;}
.lse_c00117{letter-spacing:0.887040px;}
.ls67_c00117{letter-spacing:0.900480px;}
.ls45_c00117{letter-spacing:0.913920px;}
.ls1b_c00117{letter-spacing:0.927360px;}
.ls38_c00117{letter-spacing:0.954240px;}
.ls5f_c00117{letter-spacing:0.960960px;}
.ls1c_c00117{letter-spacing:0.981120px;}
.ls54_c00117{letter-spacing:0.987840px;}
.ls15_c00117{letter-spacing:1.001280px;}
.ls95_c00117{letter-spacing:1.008000px;}
.ls0_c00117{letter-spacing:1.014720px;}
.ls5b_c00117{letter-spacing:1.021440px;}
.ls52_c00117{letter-spacing:1.034880px;}
.ls44_c00117{letter-spacing:1.039680px;}
.ls59_c00117{letter-spacing:1.041600px;}
.ls3_c00117{letter-spacing:1.048320px;}
.ls22_c00117{letter-spacing:1.061760px;}
.ls7a_c00117{letter-spacing:1.068480px;}
.ls5_c00117{letter-spacing:1.075200px;}
.ls76_c00117{letter-spacing:1.081920px;}
.ls5a_c00117{letter-spacing:1.108800px;}
.ls87_c00117{letter-spacing:1.115520px;}
.ls51_c00117{letter-spacing:1.122240px;}
.ls23_c00117{letter-spacing:1.142400px;}
.ls26_c00117{letter-spacing:1.149120px;}
.ls72_c00117{letter-spacing:1.162560px;}
.ls3d_c00117{letter-spacing:1.169280px;}
.ls89_c00117{letter-spacing:1.176000px;}
.ls58_c00117{letter-spacing:1.182720px;}
.ls5d_c00117{letter-spacing:1.189440px;}
.ls2f_c00117{letter-spacing:1.196160px;}
.ls79_c00117{letter-spacing:1.202880px;}
.ls6b_c00117{letter-spacing:1.209600px;}
.ls53_c00117{letter-spacing:1.223040px;}
.ls2a_c00117{letter-spacing:1.229760px;}
.ls56_c00117{letter-spacing:1.243200px;}
.ls78_c00117{letter-spacing:1.256640px;}
.ls9c_c00117{letter-spacing:1.278720px;}
.ls43_c00117{letter-spacing:1.283520px;}
.ls7_c00117{letter-spacing:1.323840px;}
.ls64_c00117{letter-spacing:1.330560px;}
.ls46_c00117{letter-spacing:1.337280px;}
.ls40_c00117{letter-spacing:1.350720px;}
.ls27_c00117{letter-spacing:1.357440px;}
.ls4b_c00117{letter-spacing:1.364160px;}
.ls4e_c00117{letter-spacing:1.378620px;}
.ls80_c00117{letter-spacing:1.393800px;}
.ls9a_c00117{letter-spacing:1.397760px;}
.ls10_c00117{letter-spacing:1.404480px;}
.ls65_c00117{letter-spacing:1.417920px;}
.ls86_c00117{letter-spacing:1.438080px;}
.ls94_c00117{letter-spacing:1.451520px;}
.ls75_c00117{letter-spacing:1.464960px;}
.ls1f_c00117{letter-spacing:1.485120px;}
.ls17_c00117{letter-spacing:1.505280px;}
.ls55_c00117{letter-spacing:1.525440px;}
.lsb_c00117{letter-spacing:1.538880px;}
.ls4_c00117{letter-spacing:1.552320px;}
.ls99_c00117{letter-spacing:1.592640px;}
.ls2d_c00117{letter-spacing:1.599360px;}
.ls8e_c00117{letter-spacing:1.606080px;}
.ls8d_c00117{letter-spacing:1.666560px;}
.ls25_c00117{letter-spacing:1.680000px;}
.ls4f_c00117{letter-spacing:1.693440px;}
.lsc_c00117{letter-spacing:1.700160px;}
.ls91_c00117{letter-spacing:1.706880px;}
.ls60_c00117{letter-spacing:1.827840px;}
.ls12_c00117{letter-spacing:1.868160px;}
.ls66_c00117{letter-spacing:1.874880px;}
.ls3b_c00117{letter-spacing:1.901760px;}
.ls4c_c00117{letter-spacing:1.918080px;}
.ls6d_c00117{letter-spacing:1.935360px;}
.ls70_c00117{letter-spacing:1.948800px;}
.ls1_c00117{letter-spacing:1.968960px;}
.ls7d_c00117{letter-spacing:2.016000px;}
.lsd_c00117{letter-spacing:2.036160px;}
.ls32_c00117{letter-spacing:2.103360px;}
.ls2_c00117{letter-spacing:2.136960px;}
.ls34_c00117{letter-spacing:2.157120px;}
.ls61_c00117{letter-spacing:2.177280px;}
.ls16_c00117{letter-spacing:2.244480px;}
.ls73_c00117{letter-spacing:2.278080px;}
.ls1d_c00117{letter-spacing:2.311680px;}
.ls49_c00117{letter-spacing:2.345280px;}
.ls7f_c00117{letter-spacing:2.419200px;}
.ls8c_c00117{letter-spacing:2.439360px;}
.ls69_c00117{letter-spacing:2.486400px;}
.ls18_c00117{letter-spacing:2.587200px;}
.ls2c_c00117{letter-spacing:2.755200px;}
.ls37_c00117{letter-spacing:3.030720px;}
.ls2e_c00117{letter-spacing:3.037440px;}
.ls31_c00117{letter-spacing:3.178560px;}
.ls85_c00117{letter-spacing:3.360000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{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__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00117{word-spacing:0.000000px;}
._e_c00117{margin-left:-8.910720px;}
._3_c00117{margin-left:-7.042560px;}
._f_c00117{margin-left:-5.779200px;}
._1_c00117{margin-left:-4.668960px;}
._5_c00117{margin-left:-3.151680px;}
._0_c00117{margin-left:-1.585920px;}
._2_c00117{width:1.775520px;}
._6_c00117{width:3.514560px;}
._b_c00117{width:4.909440px;}
._4_c00117{width:6.593760px;}
._c_c00117{width:8.400000px;}
._8_c00117{width:9.676800px;}
._d_c00117{width:10.839360px;}
._9_c00117{width:13.056960px;}
._a_c00117{width:14.246400px;}
._7_c00117{width:15.676320px;}
._16_c00117{width:18.217920px;}
._10_c00117{width:20.240640px;}
._11_c00117{width:23.016000px;}
._19_c00117{width:24.259200px;}
._17_c00117{width:27.155520px;}
._1a_c00117{width:28.250880px;}
._18_c00117{width:29.592960px;}
._1b_c00117{width:31.127040px;}
._12_c00117{width:33.626880px;}
._13_c00117{width:35.400960px;}
._15_c00117{width:36.637440px;}
._14_c00117{width:38.223360px;}
.fc0_c00117{color:transparent;}
.fs7_c00117{font-size:57.600000px;}
.fs0_c00117{font-size:60.600000px;}
.fs9_c00117{font-size:66.000000px;}
.fs2_c00117{font-size:66.600000px;}
.fs1_c00117{font-size:67.200000px;}
.fs3_c00117{font-size:68.400000px;}
.fs4_c00117{font-size:72.600000px;}
.fs8_c00117{font-size:76.800000px;}
.fs6_c00117{font-size:78.000000px;}
.fs5_c00117{font-size:79.800000px;}
.y0_c00117{bottom:0.000000px;}
.y25_c00117{bottom:70.215000px;}
.y23_c00117{bottom:147.612000px;}
.y24_c00117{bottom:147.615000px;}
.y21_c00117{bottom:209.513400px;}
.y22_c00117{bottom:209.520000px;}
.y20_c00117{bottom:241.215000px;}
.y1f_c00117{bottom:241.221600px;}
.y1e_c00117{bottom:272.520000px;}
.y1c_c00117{bottom:303.477600px;}
.y1d_c00117{bottom:303.480000px;}
.y1b_c00117{bottom:334.443000px;}
.y1a_c00117{bottom:365.775000px;}
.y19_c00117{bottom:365.789400px;}
.y18_c00117{bottom:397.087800px;}
.y17_c00117{bottom:428.403000px;}
.y16_c00117{bottom:460.087800px;}
.y15_c00117{bottom:522.735000px;}
.y14_c00117{bottom:554.055000px;}
.y27_c00117{bottom:613.080000px;}
.y26_c00117{bottom:616.695000px;}
.y13_c00117{bottom:616.697400px;}
.y12_c00117{bottom:678.979200px;}
.y11_c00117{bottom:741.626400px;}
.y10_c00117{bottom:772.924800px;}
.yf_c00117{bottom:804.240000px;}
.yd_c00117{bottom:835.572000px;}
.ye_c00117{bottom:835.575000px;}
.yc_c00117{bottom:867.240000px;}
.yb_c00117{bottom:898.215000px;}
.ya_c00117{bottom:898.219800px;}
.y8_c00117{bottom:929.532600px;}
.y9_c00117{bottom:929.535000px;}
.y7_c00117{bottom:960.495000px;}
.y6_c00117{bottom:960.499800px;}
.y4_c00117{bottom:991.810200px;}
.y5_c00117{bottom:991.815000px;}
.y3_c00117{bottom:1053.735000px;}
.y2_c00117{bottom:1116.735000px;}
.y1_c00117{bottom:1191.240000px;}
.h9_c00117{height:56.531250px;}
.h2_c00117{height:59.475586px;}
.h3_c00117{height:65.953125px;}
.hb_c00117{height:68.835938px;}
.h5_c00117{height:68.917575px;}
.h4_c00117{height:69.461719px;}
.h6_c00117{height:71.262530px;}
.h8_c00117{height:76.552734px;}
.h7_c00117{height:78.280371px;}
.ha_c00117{height:80.100000px;}
.h1_c00117{height:1263.000000px;}
.h0_c00117{height:1263.240000px;}
.w1_c00117{width:892.500000px;}
.w0_c00117{width:892.800000px;}
.x0_c00117{left:0.000000px;}
.x21_c00117{left:122.225400px;}
.x14_c00117{left:123.304200px;}
.x1_c00117{left:124.485000px;}
.x18_c00117{left:135.645000px;}
.x19_c00117{left:161.550000px;}
.xc_c00117{left:175.140000px;}
.x13_c00117{left:177.600000px;}
.x2_c00117{left:178.848600px;}
.x1a_c00117{left:184.155000px;}
.xd_c00117{left:196.410000px;}
.x15_c00117{left:247.500000px;}
.x16_c00117{left:271.800000px;}
.x5_c00117{left:291.510000px;}
.xa_c00117{left:311.070000px;}
.x6_c00117{left:314.100000px;}
.xe_c00117{left:330.315000px;}
.xb_c00117{left:342.555000px;}
.xf_c00117{left:351.930000px;}
.x1b_c00117{left:404.460000px;}
.x26_c00117{left:423.585000px;}
.x1c_c00117{left:425.490000px;}
.x1f_c00117{left:459.990000px;}
.x22_c00117{left:484.200000px;}
.x20_c00117{left:486.315000px;}
.x10_c00117{left:491.940000px;}
.x23_c00117{left:506.340000px;}
.x7_c00117{left:508.215000px;}
.x11_c00117{left:514.125000px;}
.x8_c00117{left:531.915000px;}
.x1d_c00117{left:584.775000px;}
.x1e_c00117{left:606.435000px;}
.x3_c00117{left:664.980000px;}
.x4_c00117{left:680.940000px;}
.x24_c00117{left:708.195000px;}
.x17_c00117{left:730.575000px;}
.x9_c00117{left:732.510000px;}
.x12_c00117{left:734.220000px;}
.x25_c00117{left:739.065000px;}
.x28_c00117{left:855.135000px;}
.x27_c00117{left:856.545000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls97_c00117{letter-spacing:-2.482667pt;}
.ls98_c00117{letter-spacing:-2.426667pt;}
.ls83_c00117{letter-spacing:-2.072000pt;}
.ls8b_c00117{letter-spacing:-1.432640pt;}
.ls8f_c00117{letter-spacing:-1.385813pt;}
.ls90_c00117{letter-spacing:-0.854187pt;}
.ls9d_c00117{letter-spacing:-0.732160pt;}
.ls96_c00117{letter-spacing:-0.658240pt;}
.ls81_c00117{letter-spacing:-0.430080pt;}
.ls92_c00117{letter-spacing:-0.023893pt;}
.ls84_c00117{letter-spacing:0.000000pt;}
.ls6f_c00117{letter-spacing:0.029867pt;}
.ls7c_c00117{letter-spacing:0.107520pt;}
.ls4a_c00117{letter-spacing:0.113493pt;}
.ls41_c00117{letter-spacing:0.119467pt;}
.ls2b_c00117{letter-spacing:0.125440pt;}
.ls63_c00117{letter-spacing:0.131413pt;}
.ls48_c00117{letter-spacing:0.137387pt;}
.ls11_c00117{letter-spacing:0.143360pt;}
.ls82_c00117{letter-spacing:0.161280pt;}
.ls57_c00117{letter-spacing:0.179200pt;}
.ls35_c00117{letter-spacing:0.191147pt;}
.ls7e_c00117{letter-spacing:0.209067pt;}
.ls7b_c00117{letter-spacing:0.215040pt;}
.ls74_c00117{letter-spacing:0.226987pt;}
.ls42_c00117{letter-spacing:0.250880pt;}
.ls24_c00117{letter-spacing:0.262827pt;}
.ls13_c00117{letter-spacing:0.280747pt;}
.ls6_c00117{letter-spacing:0.292693pt;}
.ls50_c00117{letter-spacing:0.304640pt;}
.ls6e_c00117{letter-spacing:0.376320pt;}
.ls21_c00117{letter-spacing:0.382293pt;}
.ls30_c00117{letter-spacing:0.400213pt;}
.ls5e_c00117{letter-spacing:0.412160pt;}
.lsa_c00117{letter-spacing:0.424107pt;}
.lsf_c00117{letter-spacing:0.436053pt;}
.ls20_c00117{letter-spacing:0.442027pt;}
.ls93_c00117{letter-spacing:0.448000pt;}
.ls6c_c00117{letter-spacing:0.471893pt;}
.ls77_c00117{letter-spacing:0.477867pt;}
.ls28_c00117{letter-spacing:0.507733pt;}
.ls9b_c00117{letter-spacing:0.513707pt;}
.ls3f_c00117{letter-spacing:0.519680pt;}
.ls3e_c00117{letter-spacing:0.531627pt;}
.ls14_c00117{letter-spacing:0.561493pt;}
.ls19_c00117{letter-spacing:0.579413pt;}
.ls36_c00117{letter-spacing:0.591360pt;}
.ls88_c00117{letter-spacing:0.597333pt;}
.ls3c_c00117{letter-spacing:0.615253pt;}
.ls1e_c00117{letter-spacing:0.627200pt;}
.ls6a_c00117{letter-spacing:0.633173pt;}
.ls39_c00117{letter-spacing:0.639147pt;}
.ls29_c00117{letter-spacing:0.663040pt;}
.ls8a_c00117{letter-spacing:0.669013pt;}
.ls3a_c00117{letter-spacing:0.692907pt;}
.ls71_c00117{letter-spacing:0.710827pt;}
.ls68_c00117{letter-spacing:0.716800pt;}
.ls5c_c00117{letter-spacing:0.722773pt;}
.ls9_c00117{letter-spacing:0.728747pt;}
.ls4d_c00117{letter-spacing:0.734720pt;}
.ls8_c00117{letter-spacing:0.740693pt;}
.ls62_c00117{letter-spacing:0.758613pt;}
.ls33_c00117{letter-spacing:0.764587pt;}
.ls1a_c00117{letter-spacing:0.776533pt;}
.ls47_c00117{letter-spacing:0.782507pt;}
.lse_c00117{letter-spacing:0.788480pt;}
.ls67_c00117{letter-spacing:0.800427pt;}
.ls45_c00117{letter-spacing:0.812373pt;}
.ls1b_c00117{letter-spacing:0.824320pt;}
.ls38_c00117{letter-spacing:0.848213pt;}
.ls5f_c00117{letter-spacing:0.854187pt;}
.ls1c_c00117{letter-spacing:0.872107pt;}
.ls54_c00117{letter-spacing:0.878080pt;}
.ls15_c00117{letter-spacing:0.890027pt;}
.ls95_c00117{letter-spacing:0.896000pt;}
.ls0_c00117{letter-spacing:0.901973pt;}
.ls5b_c00117{letter-spacing:0.907947pt;}
.ls52_c00117{letter-spacing:0.919893pt;}
.ls44_c00117{letter-spacing:0.924160pt;}
.ls59_c00117{letter-spacing:0.925867pt;}
.ls3_c00117{letter-spacing:0.931840pt;}
.ls22_c00117{letter-spacing:0.943787pt;}
.ls7a_c00117{letter-spacing:0.949760pt;}
.ls5_c00117{letter-spacing:0.955733pt;}
.ls76_c00117{letter-spacing:0.961707pt;}
.ls5a_c00117{letter-spacing:0.985600pt;}
.ls87_c00117{letter-spacing:0.991573pt;}
.ls51_c00117{letter-spacing:0.997547pt;}
.ls23_c00117{letter-spacing:1.015467pt;}
.ls26_c00117{letter-spacing:1.021440pt;}
.ls72_c00117{letter-spacing:1.033387pt;}
.ls3d_c00117{letter-spacing:1.039360pt;}
.ls89_c00117{letter-spacing:1.045333pt;}
.ls58_c00117{letter-spacing:1.051307pt;}
.ls5d_c00117{letter-spacing:1.057280pt;}
.ls2f_c00117{letter-spacing:1.063253pt;}
.ls79_c00117{letter-spacing:1.069227pt;}
.ls6b_c00117{letter-spacing:1.075200pt;}
.ls53_c00117{letter-spacing:1.087147pt;}
.ls2a_c00117{letter-spacing:1.093120pt;}
.ls56_c00117{letter-spacing:1.105067pt;}
.ls78_c00117{letter-spacing:1.117013pt;}
.ls9c_c00117{letter-spacing:1.136640pt;}
.ls43_c00117{letter-spacing:1.140907pt;}
.ls7_c00117{letter-spacing:1.176747pt;}
.ls64_c00117{letter-spacing:1.182720pt;}
.ls46_c00117{letter-spacing:1.188693pt;}
.ls40_c00117{letter-spacing:1.200640pt;}
.ls27_c00117{letter-spacing:1.206613pt;}
.ls4b_c00117{letter-spacing:1.212587pt;}
.ls4e_c00117{letter-spacing:1.225440pt;}
.ls80_c00117{letter-spacing:1.238933pt;}
.ls9a_c00117{letter-spacing:1.242453pt;}
.ls10_c00117{letter-spacing:1.248427pt;}
.ls65_c00117{letter-spacing:1.260373pt;}
.ls86_c00117{letter-spacing:1.278293pt;}
.ls94_c00117{letter-spacing:1.290240pt;}
.ls75_c00117{letter-spacing:1.302187pt;}
.ls1f_c00117{letter-spacing:1.320107pt;}
.ls17_c00117{letter-spacing:1.338027pt;}
.ls55_c00117{letter-spacing:1.355947pt;}
.lsb_c00117{letter-spacing:1.367893pt;}
.ls4_c00117{letter-spacing:1.379840pt;}
.ls99_c00117{letter-spacing:1.415680pt;}
.ls2d_c00117{letter-spacing:1.421653pt;}
.ls8e_c00117{letter-spacing:1.427627pt;}
.ls8d_c00117{letter-spacing:1.481387pt;}
.ls25_c00117{letter-spacing:1.493333pt;}
.ls4f_c00117{letter-spacing:1.505280pt;}
.lsc_c00117{letter-spacing:1.511253pt;}
.ls91_c00117{letter-spacing:1.517227pt;}
.ls60_c00117{letter-spacing:1.624747pt;}
.ls12_c00117{letter-spacing:1.660587pt;}
.ls66_c00117{letter-spacing:1.666560pt;}
.ls3b_c00117{letter-spacing:1.690453pt;}
.ls4c_c00117{letter-spacing:1.704960pt;}
.ls6d_c00117{letter-spacing:1.720320pt;}
.ls70_c00117{letter-spacing:1.732267pt;}
.ls1_c00117{letter-spacing:1.750187pt;}
.ls7d_c00117{letter-spacing:1.792000pt;}
.lsd_c00117{letter-spacing:1.809920pt;}
.ls32_c00117{letter-spacing:1.869653pt;}
.ls2_c00117{letter-spacing:1.899520pt;}
.ls34_c00117{letter-spacing:1.917440pt;}
.ls61_c00117{letter-spacing:1.935360pt;}
.ls16_c00117{letter-spacing:1.995093pt;}
.ls73_c00117{letter-spacing:2.024960pt;}
.ls1d_c00117{letter-spacing:2.054827pt;}
.ls49_c00117{letter-spacing:2.084693pt;}
.ls7f_c00117{letter-spacing:2.150400pt;}
.ls8c_c00117{letter-spacing:2.168320pt;}
.ls69_c00117{letter-spacing:2.210133pt;}
.ls18_c00117{letter-spacing:2.299733pt;}
.ls2c_c00117{letter-spacing:2.449067pt;}
.ls37_c00117{letter-spacing:2.693973pt;}
.ls2e_c00117{letter-spacing:2.699947pt;}
.ls31_c00117{letter-spacing:2.825387pt;}
.ls85_c00117{letter-spacing:2.986667pt;}
.ws0_c00117{word-spacing:0.000000pt;}
._e_c00117{margin-left:-7.920640pt;}
._3_c00117{margin-left:-6.260053pt;}
._f_c00117{margin-left:-5.137067pt;}
._1_c00117{margin-left:-4.150187pt;}
._5_c00117{margin-left:-2.801493pt;}
._0_c00117{margin-left:-1.409707pt;}
._2_c00117{width:1.578240pt;}
._6_c00117{width:3.124053pt;}
._b_c00117{width:4.363947pt;}
._4_c00117{width:5.861120pt;}
._c_c00117{width:7.466667pt;}
._8_c00117{width:8.601600pt;}
._d_c00117{width:9.634987pt;}
._9_c00117{width:11.606187pt;}
._a_c00117{width:12.663467pt;}
._7_c00117{width:13.934507pt;}
._16_c00117{width:16.193707pt;}
._10_c00117{width:17.991680pt;}
._11_c00117{width:20.458667pt;}
._19_c00117{width:21.563733pt;}
._17_c00117{width:24.138240pt;}
._1a_c00117{width:25.111893pt;}
._18_c00117{width:26.304853pt;}
._1b_c00117{width:27.668480pt;}
._12_c00117{width:29.890560pt;}
._13_c00117{width:31.467520pt;}
._15_c00117{width:32.566613pt;}
._14_c00117{width:33.976320pt;}
.fs7_c00117{font-size:51.200000pt;}
.fs0_c00117{font-size:53.866667pt;}
.fs9_c00117{font-size:58.666667pt;}
.fs2_c00117{font-size:59.200000pt;}
.fs1_c00117{font-size:59.733333pt;}
.fs3_c00117{font-size:60.800000pt;}
.fs4_c00117{font-size:64.533333pt;}
.fs8_c00117{font-size:68.266667pt;}
.fs6_c00117{font-size:69.333333pt;}
.fs5_c00117{font-size:70.933333pt;}
.y0_c00117{bottom:0.000000pt;}
.y25_c00117{bottom:62.413333pt;}
.y23_c00117{bottom:131.210667pt;}
.y24_c00117{bottom:131.213333pt;}
.y21_c00117{bottom:186.234133pt;}
.y22_c00117{bottom:186.240000pt;}
.y20_c00117{bottom:214.413333pt;}
.y1f_c00117{bottom:214.419200pt;}
.y1e_c00117{bottom:242.240000pt;}
.y1c_c00117{bottom:269.757867pt;}
.y1d_c00117{bottom:269.760000pt;}
.y1b_c00117{bottom:297.282667pt;}
.y1a_c00117{bottom:325.133333pt;}
.y19_c00117{bottom:325.146133pt;}
.y18_c00117{bottom:352.966933pt;}
.y17_c00117{bottom:380.802667pt;}
.y16_c00117{bottom:408.966933pt;}
.y15_c00117{bottom:464.653333pt;}
.y14_c00117{bottom:492.493333pt;}
.y27_c00117{bottom:544.960000pt;}
.y26_c00117{bottom:548.173333pt;}
.y13_c00117{bottom:548.175467pt;}
.y12_c00117{bottom:603.537067pt;}
.y11_c00117{bottom:659.223467pt;}
.y10_c00117{bottom:687.044267pt;}
.yf_c00117{bottom:714.880000pt;}
.yd_c00117{bottom:742.730667pt;}
.ye_c00117{bottom:742.733333pt;}
.yc_c00117{bottom:770.880000pt;}
.yb_c00117{bottom:798.413333pt;}
.ya_c00117{bottom:798.417600pt;}
.y8_c00117{bottom:826.251200pt;}
.y9_c00117{bottom:826.253333pt;}
.y7_c00117{bottom:853.773333pt;}
.y6_c00117{bottom:853.777600pt;}
.y4_c00117{bottom:881.609067pt;}
.y5_c00117{bottom:881.613333pt;}
.y3_c00117{bottom:936.653333pt;}
.y2_c00117{bottom:992.653333pt;}
.y1_c00117{bottom:1058.880000pt;}
.h9_c00117{height:50.250000pt;}
.h2_c00117{height:52.867187pt;}
.h3_c00117{height:58.625000pt;}
.hb_c00117{height:61.187500pt;}
.h5_c00117{height:61.260067pt;}
.h4_c00117{height:61.743750pt;}
.h6_c00117{height:63.344471pt;}
.h8_c00117{height:68.046875pt;}
.h7_c00117{height:69.582552pt;}
.ha_c00117{height:71.200000pt;}
.h1_c00117{height:1122.666667pt;}
.h0_c00117{height:1122.880000pt;}
.w1_c00117{width:793.333333pt;}
.w0_c00117{width:793.600000pt;}
.x0_c00117{left:0.000000pt;}
.x21_c00117{left:108.644800pt;}
.x14_c00117{left:109.603733pt;}
.x1_c00117{left:110.653333pt;}
.x18_c00117{left:120.573333pt;}
.x19_c00117{left:143.600000pt;}
.xc_c00117{left:155.680000pt;}
.x13_c00117{left:157.866667pt;}
.x2_c00117{left:158.976533pt;}
.x1a_c00117{left:163.693333pt;}
.xd_c00117{left:174.586667pt;}
.x15_c00117{left:220.000000pt;}
.x16_c00117{left:241.600000pt;}
.x5_c00117{left:259.120000pt;}
.xa_c00117{left:276.506667pt;}
.x6_c00117{left:279.200000pt;}
.xe_c00117{left:293.613333pt;}
.xb_c00117{left:304.493333pt;}
.xf_c00117{left:312.826667pt;}
.x1b_c00117{left:359.520000pt;}
.x26_c00117{left:376.520000pt;}
.x1c_c00117{left:378.213333pt;}
.x1f_c00117{left:408.880000pt;}
.x22_c00117{left:430.400000pt;}
.x20_c00117{left:432.280000pt;}
.x10_c00117{left:437.280000pt;}
.x23_c00117{left:450.080000pt;}
.x7_c00117{left:451.746667pt;}
.x11_c00117{left:457.000000pt;}
.x8_c00117{left:472.813333pt;}
.x1d_c00117{left:519.800000pt;}
.x1e_c00117{left:539.053333pt;}
.x3_c00117{left:591.093333pt;}
.x4_c00117{left:605.280000pt;}
.x24_c00117{left:629.506667pt;}
.x17_c00117{left:649.400000pt;}
.x9_c00117{left:651.120000pt;}
.x12_c00117{left:652.640000pt;}
.x25_c00117{left:656.946667pt;}
.x28_c00117{left:760.120000pt;}
.x27_c00117{left:761.373333pt;}
}





/* 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_c00118 {
    display:none;
  }
  .loading-indicator_c00118.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00118 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_c00118 { 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_c00118" -> "#page-container .classname_c00118")
 */
.pf_c00118 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00118 { /* 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_c00118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00118 { /* 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_c00118 { /* 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_c00118 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00118 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00118 {overflow:visible;}
  }
}
.c_c00118 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00118 { /* 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_c00118:after { /* webkit #35443 */
  content: '';
}
.t_c00118:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00118 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 */
}
.__c00118 { /* 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_c00118 { /* info for Javascript */
  display:none;
}
.l_c00118 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00118 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00118 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00118: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_c00118 {
    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_c00118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00118.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_c00118 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00118;src:url('chunks/assets/font_824bb3f97524c94aca864804.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.284668;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_c00118;src:url('chunks/assets/font_66407899984a48bb4c5c15cf.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.284180;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_c00118;src:url('chunks/assets/font_9131163270ab59ef5e51103b.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;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;}
.m8_c00118{transform:matrix(0.164693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164693,0.000000,0.000000,0.250000,0,0);}
.mc_c00118{transform:matrix(0.173782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173782,0.000000,0.000000,0.250000,0,0);}
.me_c00118{transform:matrix(0.226438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226438,0.000000,0.000000,0.250000,0,0);}
.m5_c00118{transform:matrix(0.241955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241955,0.000000,0.000000,0.250000,0,0);}
.m2_c00118{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m6_c00118{transform:matrix(0.247453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247453,0.000000,0.000000,0.250000,0,0);}
.m9_c00118{transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);}
.m4_c00118{transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);}
.m7_c00118{transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);}
.m0_c00118{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_c00118{transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);}
.m3_c00118{transform:matrix(0.252966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252966,0.000000,0.000000,0.250000,0,0);}
.md_c00118{transform:matrix(0.257205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257205,0.000000,0.000000,0.250000,0,0);}
.mb_c00118{transform:matrix(0.361933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361933,0.000000,0.000000,0.250000,0,0);}
.ma_c00118{transform:matrix(0.449674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449674,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.v1_c00118{vertical-align:21.576000px;}
.ls8f_c00118{letter-spacing:-2.562000px;}
.ls83_c00118{letter-spacing:-2.436000px;}
.ls74_c00118{letter-spacing:-2.415000px;}
.ls8e_c00118{letter-spacing:-2.152800px;}
.lsa0_c00118{letter-spacing:-2.100000px;}
.ls99_c00118{letter-spacing:-2.067120px;}
.ls9c_c00118{letter-spacing:-1.365021px;}
.ls73_c00118{letter-spacing:-1.110900px;}
.ls77_c00118{letter-spacing:-1.083300px;}
.ls8c_c00118{letter-spacing:-1.062600px;}
.ls75_c00118{letter-spacing:-1.014300px;}
.ls76_c00118{letter-spacing:-0.966000px;}
.ls96_c00118{letter-spacing:-0.897000px;}
.ls79_c00118{letter-spacing:-0.821100px;}
.ls70_c00118{letter-spacing:-0.752100px;}
.ls86_c00118{letter-spacing:-0.737760px;}
.ls90_c00118{letter-spacing:-0.710700px;}
.ls7c_c00118{letter-spacing:-0.676200px;}
.ls7f_c00118{letter-spacing:-0.619440px;}
.ls81_c00118{letter-spacing:-0.607200px;}
.ls8a_c00118{letter-spacing:-0.586500px;}
.ls9b_c00118{letter-spacing:-0.557709px;}
.ls80_c00118{letter-spacing:-0.552000px;}
.ls9d_c00118{letter-spacing:-0.503700px;}
.ls98_c00118{letter-spacing:-0.414000px;}
.ls7b_c00118{letter-spacing:-0.372600px;}
.ls95_c00118{letter-spacing:-0.365700px;}
.ls7d_c00118{letter-spacing:-0.338100px;}
.ls8d_c00118{letter-spacing:-0.331200px;}
.ls9f_c00118{letter-spacing:-0.324300px;}
.ls91_c00118{letter-spacing:-0.310500px;}
.ls7a_c00118{letter-spacing:-0.296700px;}
.ls88_c00118{letter-spacing:-0.248400px;}
.ls85_c00118{letter-spacing:-0.165600px;}
.ls6f_c00118{letter-spacing:-0.124200px;}
.ls78_c00118{letter-spacing:-0.103500px;}
.ls92_c00118{letter-spacing:-0.089700px;}
.ls94_c00118{letter-spacing:-0.069000px;}
.ls71_c00118{letter-spacing:-0.055200px;}
.ls84_c00118{letter-spacing:-0.048300px;}
.ls93_c00118{letter-spacing:-0.041400px;}
.ls72_c00118{letter-spacing:-0.020700px;}
.ls6c_c00118{letter-spacing:0.000000px;}
.ls7_c00118{letter-spacing:0.020700px;}
.ls64_c00118{letter-spacing:0.027600px;}
.ls55_c00118{letter-spacing:0.034500px;}
.ls22_c00118{letter-spacing:0.062100px;}
.ls4a_c00118{letter-spacing:0.069000px;}
.ls4d_c00118{letter-spacing:0.069600px;}
.lsc_c00118{letter-spacing:0.075900px;}
.ls58_c00118{letter-spacing:0.096600px;}
.ls3e_c00118{letter-spacing:0.103500px;}
.ls2b_c00118{letter-spacing:0.110400px;}
.ls2e_c00118{letter-spacing:0.117300px;}
.ls9e_c00118{letter-spacing:0.153120px;}
.ls4f_c00118{letter-spacing:0.165600px;}
.ls24_c00118{letter-spacing:0.172500px;}
.ls2a_c00118{letter-spacing:0.179400px;}
.ls1a_c00118{letter-spacing:0.220800px;}
.ls8b_c00118{letter-spacing:0.227700px;}
.lsd_c00118{letter-spacing:0.234600px;}
.ls17_c00118{letter-spacing:0.236640px;}
.ls44_c00118{letter-spacing:0.248400px;}
.ls42_c00118{letter-spacing:0.262200px;}
.ls10_c00118{letter-spacing:0.269100px;}
.ls1b_c00118{letter-spacing:0.276000px;}
.ls45_c00118{letter-spacing:0.282900px;}
.ls31_c00118{letter-spacing:0.289800px;}
.ls41_c00118{letter-spacing:0.317400px;}
.ls66_c00118{letter-spacing:0.324300px;}
.ls6_c00118{letter-spacing:0.331200px;}
.ls15_c00118{letter-spacing:0.345000px;}
.ls16_c00118{letter-spacing:0.351900px;}
.ls23_c00118{letter-spacing:0.358800px;}
.ls28_c00118{letter-spacing:0.365700px;}
.ls46_c00118{letter-spacing:0.379500px;}
.ls53_c00118{letter-spacing:0.396720px;}
.ls32_c00118{letter-spacing:0.400200px;}
.ls29_c00118{letter-spacing:0.407100px;}
.ls2_c00118{letter-spacing:0.420900px;}
.ls1d_c00118{letter-spacing:0.427800px;}
.ls20_c00118{letter-spacing:0.434700px;}
.ls52_c00118{letter-spacing:0.441600px;}
.ls34_c00118{letter-spacing:0.448500px;}
.ls4_c00118{letter-spacing:0.462300px;}
.ls27_c00118{letter-spacing:0.469200px;}
.ls50_c00118{letter-spacing:0.476100px;}
.ls5c_c00118{letter-spacing:0.476160px;}
.ls51_c00118{letter-spacing:0.483000px;}
.ls4c_c00118{letter-spacing:0.487200px;}
.ls43_c00118{letter-spacing:0.489900px;}
.ls1_c00118{letter-spacing:0.496800px;}
.ls21_c00118{letter-spacing:0.503700px;}
.ls36_c00118{letter-spacing:0.517500px;}
.ls3_c00118{letter-spacing:0.531300px;}
.ls19_c00118{letter-spacing:0.538200px;}
.ls33_c00118{letter-spacing:0.552000px;}
.ls11_c00118{letter-spacing:0.556800px;}
.ls68_c00118{letter-spacing:0.593400px;}
.ls61_c00118{letter-spacing:0.600300px;}
.lsa_c00118{letter-spacing:0.607200px;}
.ls3b_c00118{letter-spacing:0.614100px;}
.ls63_c00118{letter-spacing:0.621000px;}
.ls1f_c00118{letter-spacing:0.655500px;}
.ls3c_c00118{letter-spacing:0.683100px;}
.ls40_c00118{letter-spacing:0.690000px;}
.ls12_c00118{letter-spacing:0.696900px;}
.lsb_c00118{letter-spacing:0.703800px;}
.ls4b_c00118{letter-spacing:0.716880px;}
.ls0_c00118{letter-spacing:0.724500px;}
.ls87_c00118{letter-spacing:0.745200px;}
.ls1e_c00118{letter-spacing:0.752100px;}
.ls5a_c00118{letter-spacing:0.759000px;}
.ls54_c00118{letter-spacing:0.765600px;}
.ls2f_c00118{letter-spacing:0.765900px;}
.ls49_c00118{letter-spacing:0.772800px;}
.ls3f_c00118{letter-spacing:0.779700px;}
.ls82_c00118{letter-spacing:0.786600px;}
.ls26_c00118{letter-spacing:0.800400px;}
.ls30_c00118{letter-spacing:0.855600px;}
.ls56_c00118{letter-spacing:0.876300px;}
.ls65_c00118{letter-spacing:0.883200px;}
.ls69_c00118{letter-spacing:0.903900px;}
.ls59_c00118{letter-spacing:0.945300px;}
.ls5d_c00118{letter-spacing:0.959100px;}
.ls14_c00118{letter-spacing:0.966000px;}
.ls6b_c00118{letter-spacing:1.007340px;}
.ls25_c00118{letter-spacing:1.021200px;}
.ls48_c00118{letter-spacing:1.035000px;}
.lse_c00118{letter-spacing:1.097100px;}
.ls4e_c00118{letter-spacing:1.110900px;}
.ls35_c00118{letter-spacing:1.124700px;}
.ls38_c00118{letter-spacing:1.145400px;}
.ls3d_c00118{letter-spacing:1.193700px;}
.ls62_c00118{letter-spacing:1.283400px;}
.ls89_c00118{letter-spacing:1.317900px;}
.ls6e_c00118{letter-spacing:1.359300px;}
.lsf_c00118{letter-spacing:1.393800px;}
.ls2d_c00118{letter-spacing:1.407600px;}
.ls37_c00118{letter-spacing:1.469700px;}
.ls1c_c00118{letter-spacing:1.524900px;}
.ls57_c00118{letter-spacing:1.587000px;}
.ls2c_c00118{letter-spacing:1.600800px;}
.ls5b_c00118{letter-spacing:1.636800px;}
.ls3a_c00118{letter-spacing:1.718100px;}
.ls9_c00118{letter-spacing:1.773300px;}
.ls8_c00118{letter-spacing:1.794000px;}
.ls6a_c00118{letter-spacing:1.807800px;}
.ls18_c00118{letter-spacing:1.842300px;}
.ls9a_c00118{letter-spacing:1.950030px;}
.ls97_c00118{letter-spacing:2.018400px;}
.ls47_c00118{letter-spacing:2.083800px;}
.ls39_c00118{letter-spacing:2.194200px;}
.ls67_c00118{letter-spacing:2.449920px;}
.ls13_c00118{letter-spacing:2.539200px;}
.ls5_c00118{letter-spacing:2.559900px;}
.ls60_c00118{letter-spacing:2.794500px;}
.ls5f_c00118{letter-spacing:3.029100px;}
.ls5e_c00118{letter-spacing:3.298200px;}
.ls6d_c00118{letter-spacing:3.450000px;}
.ls7e_c00118{letter-spacing:3.480000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{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__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00118{word-spacing:-16.884300px;}
.ws5_c00118{word-spacing:-16.877400px;}
.ws6_c00118{word-spacing:0.000000px;}
.ws4_c00118{word-spacing:108.247200px;}
.ws2_c00118{word-spacing:108.619800px;}
.ws0_c00118{word-spacing:109.820400px;}
.ws1_c00118{word-spacing:110.758800px;}
._1c_c00118{margin-left:-15.043200px;}
._21_c00118{margin-left:-13.696500px;}
._1d_c00118{margin-left:-12.275100px;}
._20_c00118{margin-left:-11.022300px;}
._1e_c00118{margin-left:-9.770400px;}
._1f_c00118{margin-left:-8.418000px;}
._18_c00118{margin-left:-6.127200px;}
._2_c00118{margin-left:-4.188300px;}
._8_c00118{margin-left:-2.435700px;}
._3_c00118{margin-left:-1.276500px;}
._1_c00118{width:1.821600px;}
._4_c00118{width:2.939400px;}
._0_c00118{width:4.485000px;}
._d_c00118{width:5.554500px;}
._5_c00118{width:6.706800px;}
._6_c00118{width:8.721600px;}
._9_c00118{width:9.832500px;}
._7_c00118{width:11.115900px;}
._b_c00118{width:12.530400px;}
._a_c00118{width:14.145000px;}
._c_c00118{width:15.269700px;}
._12_c00118{width:18.478200px;}
._e_c00118{width:20.108400px;}
._13_c00118{width:21.679800px;}
._f_c00118{width:23.515200px;}
._11_c00118{width:24.543300px;}
._10_c00118{width:25.819800px;}
._15_c00118{width:61.479000px;}
._16_c00118{width:63.648000px;}
._17_c00118{width:66.242700px;}
._14_c00118{width:68.383200px;}
._19_c00118{width:126.976800px;}
._1b_c00118{width:158.419320px;}
._1a_c00118{width:192.175200px;}
.fc0_c00118{color:transparent;}
.fs5_c00118{font-size:39.000600px;}
.fs6_c00118{font-size:60.000000px;}
.fs0_c00118{font-size:61.800000px;}
.fs1_c00118{font-size:69.000000px;}
.fs2_c00118{font-size:69.600000px;}
.fs4_c00118{font-size:73.200000px;}
.fs3_c00118{font-size:74.400000px;}
.y0_c00118{bottom:0.000000px;}
.y23_c00118{bottom:65.535000px;}
.y22_c00118{bottom:141.120000px;}
.y21_c00118{bottom:173.880000px;}
.y20_c00118{bottom:201.975000px;}
.y1f_c00118{bottom:205.935000px;}
.y1e_c00118{bottom:236.523000px;}
.y1d_c00118{bottom:266.055000px;}
.y1c_c00118{bottom:297.729000px;}
.y1b_c00118{bottom:329.055000px;}
.y19_c00118{bottom:329.415000px;}
.y1a_c00118{bottom:334.815000px;}
.y18_c00118{bottom:361.453500px;}
.y17_c00118{bottom:425.523000px;}
.y16_c00118{bottom:488.170500px;}
.y15_c00118{bottom:549.735750px;}
.y14_c00118{bottom:582.114000px;}
.y13_c00118{bottom:613.440000px;}
.y11_c00118{bottom:644.767500px;}
.y12_c00118{bottom:644.775000px;}
.y10_c00118{bottom:675.731250px;}
.yf_c00118{bottom:707.040000px;}
.yd_c00118{bottom:738.351750px;}
.ye_c00118{bottom:738.360000px;}
.yc_c00118{bottom:769.679250px;}
.yb_c00118{bottom:832.676250px;}
.ya_c00118{bottom:863.985000px;}
.y9_c00118{bottom:895.328250px;}
.y8_c00118{bottom:926.654250px;}
.y7_c00118{bottom:989.651250px;}
.y5_c00118{bottom:1020.606750px;}
.y6_c00118{bottom:1020.615000px;}
.y4_c00118{bottom:1052.289000px;}
.y3_c00118{bottom:1083.609000px;}
.y2_c00118{bottom:1114.935000px;}
.y1_c00118{bottom:1190.880000px;}
.he_c00118{height:38.276956px;}
.h2_c00118{height:60.653320px;}
.hf_c00118{height:62.578125px;}
.h3_c00118{height:67.719727px;}
.ha_c00118{height:68.262609px;}
.h7_c00118{height:68.274609px;}
.h9_c00118{height:68.292609px;}
.h4_c00118{height:68.298609px;}
.h8_c00118{height:68.304609px;}
.h6_c00118{height:68.337609px;}
.h5_c00118{height:71.964844px;}
.hd_c00118{height:73.019531px;}
.hc_c00118{height:76.345312px;}
.hb_c00118{height:94.619531px;}
.h1_c00118{height:1263.000000px;}
.h0_c00118{height:1263.240000px;}
.w1_c00118{width:892.500000px;}
.w0_c00118{width:892.800000px;}
.x0_c00118{left:0.000000px;}
.x10_c00118{left:119.898750px;}
.x8_c00118{left:120.985500px;}
.x4_c00118{left:123.311250px;}
.x1_c00118{left:124.485000px;}
.xc_c00118{left:140.280000px;}
.x16_c00118{left:174.516000px;}
.x9_c00118{left:175.599000px;}
.x7_c00118{left:176.651250px;}
.x19_c00118{left:184.290000px;}
.x1c_c00118{left:230.955000px;}
.xd_c00118{left:268.035000px;}
.xe_c00118{left:287.880000px;}
.x1a_c00118{left:305.880000px;}
.xf_c00118{left:318.360000px;}
.x1b_c00118{left:329.580000px;}
.x17_c00118{left:367.410000px;}
.x14_c00118{left:396.900000px;}
.x20_c00118{left:423.285000px;}
.x15_c00118{left:476.115000px;}
.x5_c00118{left:508.860000px;}
.x6_c00118{left:527.775000px;}
.xa_c00118{left:596.715000px;}
.xb_c00118{left:614.040000px;}
.x11_c00118{left:633.405000px;}
.x12_c00118{left:657.585000px;}
.x1f_c00118{left:675.525000px;}
.x1d_c00118{left:682.005000px;}
.x2_c00118{left:700.230000px;}
.x1e_c00118{left:725.625000px;}
.x3_c00118{left:729.720000px;}
.x13_c00118{left:734.925000px;}
.x18_c00118{left:744.375000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.v1_c00118{vertical-align:19.178667pt;}
.ls8f_c00118{letter-spacing:-2.277333pt;}
.ls83_c00118{letter-spacing:-2.165333pt;}
.ls74_c00118{letter-spacing:-2.146667pt;}
.ls8e_c00118{letter-spacing:-1.913600pt;}
.lsa0_c00118{letter-spacing:-1.866667pt;}
.ls99_c00118{letter-spacing:-1.837440pt;}
.ls9c_c00118{letter-spacing:-1.213352pt;}
.ls73_c00118{letter-spacing:-0.987467pt;}
.ls77_c00118{letter-spacing:-0.962933pt;}
.ls8c_c00118{letter-spacing:-0.944533pt;}
.ls75_c00118{letter-spacing:-0.901600pt;}
.ls76_c00118{letter-spacing:-0.858667pt;}
.ls96_c00118{letter-spacing:-0.797333pt;}
.ls79_c00118{letter-spacing:-0.729867pt;}
.ls70_c00118{letter-spacing:-0.668533pt;}
.ls86_c00118{letter-spacing:-0.655787pt;}
.ls90_c00118{letter-spacing:-0.631733pt;}
.ls7c_c00118{letter-spacing:-0.601067pt;}
.ls7f_c00118{letter-spacing:-0.550613pt;}
.ls81_c00118{letter-spacing:-0.539733pt;}
.ls8a_c00118{letter-spacing:-0.521333pt;}
.ls9b_c00118{letter-spacing:-0.495741pt;}
.ls80_c00118{letter-spacing:-0.490667pt;}
.ls9d_c00118{letter-spacing:-0.447733pt;}
.ls98_c00118{letter-spacing:-0.368000pt;}
.ls7b_c00118{letter-spacing:-0.331200pt;}
.ls95_c00118{letter-spacing:-0.325067pt;}
.ls7d_c00118{letter-spacing:-0.300533pt;}
.ls8d_c00118{letter-spacing:-0.294400pt;}
.ls9f_c00118{letter-spacing:-0.288267pt;}
.ls91_c00118{letter-spacing:-0.276000pt;}
.ls7a_c00118{letter-spacing:-0.263733pt;}
.ls88_c00118{letter-spacing:-0.220800pt;}
.ls85_c00118{letter-spacing:-0.147200pt;}
.ls6f_c00118{letter-spacing:-0.110400pt;}
.ls78_c00118{letter-spacing:-0.092000pt;}
.ls92_c00118{letter-spacing:-0.079733pt;}
.ls94_c00118{letter-spacing:-0.061333pt;}
.ls71_c00118{letter-spacing:-0.049067pt;}
.ls84_c00118{letter-spacing:-0.042933pt;}
.ls93_c00118{letter-spacing:-0.036800pt;}
.ls72_c00118{letter-spacing:-0.018400pt;}
.ls6c_c00118{letter-spacing:0.000000pt;}
.ls7_c00118{letter-spacing:0.018400pt;}
.ls64_c00118{letter-spacing:0.024533pt;}
.ls55_c00118{letter-spacing:0.030667pt;}
.ls22_c00118{letter-spacing:0.055200pt;}
.ls4a_c00118{letter-spacing:0.061333pt;}
.ls4d_c00118{letter-spacing:0.061867pt;}
.lsc_c00118{letter-spacing:0.067467pt;}
.ls58_c00118{letter-spacing:0.085867pt;}
.ls3e_c00118{letter-spacing:0.092000pt;}
.ls2b_c00118{letter-spacing:0.098133pt;}
.ls2e_c00118{letter-spacing:0.104267pt;}
.ls9e_c00118{letter-spacing:0.136107pt;}
.ls4f_c00118{letter-spacing:0.147200pt;}
.ls24_c00118{letter-spacing:0.153333pt;}
.ls2a_c00118{letter-spacing:0.159467pt;}
.ls1a_c00118{letter-spacing:0.196267pt;}
.ls8b_c00118{letter-spacing:0.202400pt;}
.lsd_c00118{letter-spacing:0.208533pt;}
.ls17_c00118{letter-spacing:0.210347pt;}
.ls44_c00118{letter-spacing:0.220800pt;}
.ls42_c00118{letter-spacing:0.233067pt;}
.ls10_c00118{letter-spacing:0.239200pt;}
.ls1b_c00118{letter-spacing:0.245333pt;}
.ls45_c00118{letter-spacing:0.251467pt;}
.ls31_c00118{letter-spacing:0.257600pt;}
.ls41_c00118{letter-spacing:0.282133pt;}
.ls66_c00118{letter-spacing:0.288267pt;}
.ls6_c00118{letter-spacing:0.294400pt;}
.ls15_c00118{letter-spacing:0.306667pt;}
.ls16_c00118{letter-spacing:0.312800pt;}
.ls23_c00118{letter-spacing:0.318933pt;}
.ls28_c00118{letter-spacing:0.325067pt;}
.ls46_c00118{letter-spacing:0.337333pt;}
.ls53_c00118{letter-spacing:0.352640pt;}
.ls32_c00118{letter-spacing:0.355733pt;}
.ls29_c00118{letter-spacing:0.361867pt;}
.ls2_c00118{letter-spacing:0.374133pt;}
.ls1d_c00118{letter-spacing:0.380267pt;}
.ls20_c00118{letter-spacing:0.386400pt;}
.ls52_c00118{letter-spacing:0.392533pt;}
.ls34_c00118{letter-spacing:0.398667pt;}
.ls4_c00118{letter-spacing:0.410933pt;}
.ls27_c00118{letter-spacing:0.417067pt;}
.ls50_c00118{letter-spacing:0.423200pt;}
.ls5c_c00118{letter-spacing:0.423253pt;}
.ls51_c00118{letter-spacing:0.429333pt;}
.ls4c_c00118{letter-spacing:0.433067pt;}
.ls43_c00118{letter-spacing:0.435467pt;}
.ls1_c00118{letter-spacing:0.441600pt;}
.ls21_c00118{letter-spacing:0.447733pt;}
.ls36_c00118{letter-spacing:0.460000pt;}
.ls3_c00118{letter-spacing:0.472267pt;}
.ls19_c00118{letter-spacing:0.478400pt;}
.ls33_c00118{letter-spacing:0.490667pt;}
.ls11_c00118{letter-spacing:0.494933pt;}
.ls68_c00118{letter-spacing:0.527467pt;}
.ls61_c00118{letter-spacing:0.533600pt;}
.lsa_c00118{letter-spacing:0.539733pt;}
.ls3b_c00118{letter-spacing:0.545867pt;}
.ls63_c00118{letter-spacing:0.552000pt;}
.ls1f_c00118{letter-spacing:0.582667pt;}
.ls3c_c00118{letter-spacing:0.607200pt;}
.ls40_c00118{letter-spacing:0.613333pt;}
.ls12_c00118{letter-spacing:0.619467pt;}
.lsb_c00118{letter-spacing:0.625600pt;}
.ls4b_c00118{letter-spacing:0.637227pt;}
.ls0_c00118{letter-spacing:0.644000pt;}
.ls87_c00118{letter-spacing:0.662400pt;}
.ls1e_c00118{letter-spacing:0.668533pt;}
.ls5a_c00118{letter-spacing:0.674667pt;}
.ls54_c00118{letter-spacing:0.680533pt;}
.ls2f_c00118{letter-spacing:0.680800pt;}
.ls49_c00118{letter-spacing:0.686933pt;}
.ls3f_c00118{letter-spacing:0.693067pt;}
.ls82_c00118{letter-spacing:0.699200pt;}
.ls26_c00118{letter-spacing:0.711467pt;}
.ls30_c00118{letter-spacing:0.760533pt;}
.ls56_c00118{letter-spacing:0.778933pt;}
.ls65_c00118{letter-spacing:0.785067pt;}
.ls69_c00118{letter-spacing:0.803467pt;}
.ls59_c00118{letter-spacing:0.840267pt;}
.ls5d_c00118{letter-spacing:0.852533pt;}
.ls14_c00118{letter-spacing:0.858667pt;}
.ls6b_c00118{letter-spacing:0.895413pt;}
.ls25_c00118{letter-spacing:0.907733pt;}
.ls48_c00118{letter-spacing:0.920000pt;}
.lse_c00118{letter-spacing:0.975200pt;}
.ls4e_c00118{letter-spacing:0.987467pt;}
.ls35_c00118{letter-spacing:0.999733pt;}
.ls38_c00118{letter-spacing:1.018133pt;}
.ls3d_c00118{letter-spacing:1.061067pt;}
.ls62_c00118{letter-spacing:1.140800pt;}
.ls89_c00118{letter-spacing:1.171467pt;}
.ls6e_c00118{letter-spacing:1.208267pt;}
.lsf_c00118{letter-spacing:1.238933pt;}
.ls2d_c00118{letter-spacing:1.251200pt;}
.ls37_c00118{letter-spacing:1.306400pt;}
.ls1c_c00118{letter-spacing:1.355467pt;}
.ls57_c00118{letter-spacing:1.410667pt;}
.ls2c_c00118{letter-spacing:1.422933pt;}
.ls5b_c00118{letter-spacing:1.454933pt;}
.ls3a_c00118{letter-spacing:1.527200pt;}
.ls9_c00118{letter-spacing:1.576267pt;}
.ls8_c00118{letter-spacing:1.594667pt;}
.ls6a_c00118{letter-spacing:1.606933pt;}
.ls18_c00118{letter-spacing:1.637600pt;}
.ls9a_c00118{letter-spacing:1.733360pt;}
.ls97_c00118{letter-spacing:1.794133pt;}
.ls47_c00118{letter-spacing:1.852267pt;}
.ls39_c00118{letter-spacing:1.950400pt;}
.ls67_c00118{letter-spacing:2.177707pt;}
.ls13_c00118{letter-spacing:2.257067pt;}
.ls5_c00118{letter-spacing:2.275467pt;}
.ls60_c00118{letter-spacing:2.484000pt;}
.ls5f_c00118{letter-spacing:2.692533pt;}
.ls5e_c00118{letter-spacing:2.931733pt;}
.ls6d_c00118{letter-spacing:3.066667pt;}
.ls7e_c00118{letter-spacing:3.093333pt;}
.ws3_c00118{word-spacing:-15.008267pt;}
.ws5_c00118{word-spacing:-15.002133pt;}
.ws6_c00118{word-spacing:0.000000pt;}
.ws4_c00118{word-spacing:96.219733pt;}
.ws2_c00118{word-spacing:96.550933pt;}
.ws0_c00118{word-spacing:97.618133pt;}
.ws1_c00118{word-spacing:98.452267pt;}
._1c_c00118{margin-left:-13.371733pt;}
._21_c00118{margin-left:-12.174667pt;}
._1d_c00118{margin-left:-10.911200pt;}
._20_c00118{margin-left:-9.797600pt;}
._1e_c00118{margin-left:-8.684800pt;}
._1f_c00118{margin-left:-7.482667pt;}
._18_c00118{margin-left:-5.446400pt;}
._2_c00118{margin-left:-3.722933pt;}
._8_c00118{margin-left:-2.165067pt;}
._3_c00118{margin-left:-1.134667pt;}
._1_c00118{width:1.619200pt;}
._4_c00118{width:2.612800pt;}
._0_c00118{width:3.986667pt;}
._d_c00118{width:4.937333pt;}
._5_c00118{width:5.961600pt;}
._6_c00118{width:7.752533pt;}
._9_c00118{width:8.740000pt;}
._7_c00118{width:9.880800pt;}
._b_c00118{width:11.138133pt;}
._a_c00118{width:12.573333pt;}
._c_c00118{width:13.573067pt;}
._12_c00118{width:16.425067pt;}
._e_c00118{width:17.874133pt;}
._13_c00118{width:19.270933pt;}
._f_c00118{width:20.902400pt;}
._11_c00118{width:21.816267pt;}
._10_c00118{width:22.950933pt;}
._15_c00118{width:54.648000pt;}
._16_c00118{width:56.576000pt;}
._17_c00118{width:58.882400pt;}
._14_c00118{width:60.785067pt;}
._19_c00118{width:112.868267pt;}
._1b_c00118{width:140.817173pt;}
._1a_c00118{width:170.822400pt;}
.fs5_c00118{font-size:34.667200pt;}
.fs6_c00118{font-size:53.333333pt;}
.fs0_c00118{font-size:54.933333pt;}
.fs1_c00118{font-size:61.333333pt;}
.fs2_c00118{font-size:61.866667pt;}
.fs4_c00118{font-size:65.066667pt;}
.fs3_c00118{font-size:66.133333pt;}
.y0_c00118{bottom:0.000000pt;}
.y23_c00118{bottom:58.253333pt;}
.y22_c00118{bottom:125.440000pt;}
.y21_c00118{bottom:154.560000pt;}
.y20_c00118{bottom:179.533333pt;}
.y1f_c00118{bottom:183.053333pt;}
.y1e_c00118{bottom:210.242667pt;}
.y1d_c00118{bottom:236.493333pt;}
.y1c_c00118{bottom:264.648000pt;}
.y1b_c00118{bottom:292.493333pt;}
.y19_c00118{bottom:292.813333pt;}
.y1a_c00118{bottom:297.613333pt;}
.y18_c00118{bottom:321.292000pt;}
.y17_c00118{bottom:378.242667pt;}
.y16_c00118{bottom:433.929333pt;}
.y15_c00118{bottom:488.654000pt;}
.y14_c00118{bottom:517.434667pt;}
.y13_c00118{bottom:545.280000pt;}
.y11_c00118{bottom:573.126667pt;}
.y12_c00118{bottom:573.133333pt;}
.y10_c00118{bottom:600.650000pt;}
.yf_c00118{bottom:628.480000pt;}
.yd_c00118{bottom:656.312667pt;}
.ye_c00118{bottom:656.320000pt;}
.yc_c00118{bottom:684.159333pt;}
.yb_c00118{bottom:740.156667pt;}
.ya_c00118{bottom:767.986667pt;}
.y9_c00118{bottom:795.847333pt;}
.y8_c00118{bottom:823.692667pt;}
.y7_c00118{bottom:879.690000pt;}
.y5_c00118{bottom:907.206000pt;}
.y6_c00118{bottom:907.213333pt;}
.y4_c00118{bottom:935.368000pt;}
.y3_c00118{bottom:963.208000pt;}
.y2_c00118{bottom:991.053333pt;}
.y1_c00118{bottom:1058.560000pt;}
.he_c00118{height:34.023961pt;}
.h2_c00118{height:53.914062pt;}
.hf_c00118{height:55.625000pt;}
.h3_c00118{height:60.195312pt;}
.ha_c00118{height:60.677875pt;}
.h7_c00118{height:60.688542pt;}
.h9_c00118{height:60.704542pt;}
.h4_c00118{height:60.709875pt;}
.h8_c00118{height:60.715208pt;}
.h6_c00118{height:60.744542pt;}
.h5_c00118{height:63.968750pt;}
.hd_c00118{height:64.906250pt;}
.hc_c00118{height:67.862500pt;}
.hb_c00118{height:84.106250pt;}
.h1_c00118{height:1122.666667pt;}
.h0_c00118{height:1122.880000pt;}
.w1_c00118{width:793.333333pt;}
.w0_c00118{width:793.600000pt;}
.x0_c00118{left:0.000000pt;}
.x10_c00118{left:106.576667pt;}
.x8_c00118{left:107.542667pt;}
.x4_c00118{left:109.610000pt;}
.x1_c00118{left:110.653333pt;}
.xc_c00118{left:124.693333pt;}
.x16_c00118{left:155.125333pt;}
.x9_c00118{left:156.088000pt;}
.x7_c00118{left:157.023333pt;}
.x19_c00118{left:163.813333pt;}
.x1c_c00118{left:205.293333pt;}
.xd_c00118{left:238.253333pt;}
.xe_c00118{left:255.893333pt;}
.x1a_c00118{left:271.893333pt;}
.xf_c00118{left:282.986667pt;}
.x1b_c00118{left:292.960000pt;}
.x17_c00118{left:326.586667pt;}
.x14_c00118{left:352.800000pt;}
.x20_c00118{left:376.253333pt;}
.x15_c00118{left:423.213333pt;}
.x5_c00118{left:452.320000pt;}
.x6_c00118{left:469.133333pt;}
.xa_c00118{left:530.413333pt;}
.xb_c00118{left:545.813333pt;}
.x11_c00118{left:563.026667pt;}
.x12_c00118{left:584.520000pt;}
.x1f_c00118{left:600.466667pt;}
.x1d_c00118{left:606.226667pt;}
.x2_c00118{left:622.426667pt;}
.x1e_c00118{left:645.000000pt;}
.x3_c00118{left:648.640000pt;}
.x13_c00118{left:653.266667pt;}
.x18_c00118{left:661.666667pt;}
}





/* 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_c00119 {
    display:none;
  }
  .loading-indicator_c00119.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00119 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_c00119 { 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_c00119" -> "#page-container .classname_c00119")
 */
.pf_c00119 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00119 { /* 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_c00119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00119 { /* 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_c00119 { /* 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_c00119 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00119 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00119 {overflow:visible;}
  }
}
.c_c00119 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00119 { /* 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_c00119:after { /* webkit #35443 */
  content: '';
}
.t_c00119:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00119 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 */
}
.__c00119 { /* 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_c00119 { /* info for Javascript */
  display:none;
}
.l_c00119 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00119 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00119 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00119: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_c00119 {
    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_c00119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00119.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_c00119 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00119;src:url('chunks/assets/font_f92715f67b681ac7493b94e5.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.284668;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_c00119;src:url('chunks/assets/font_2b3a210197c4b5cd40763988.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.284180;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_c00119;src:url('chunks/assets/font_73306d793f95d5d414762747.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;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:ff4_c00119;src:url('chunks/assets/font_cf8da444f19656eda844eddc.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;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;}
.m6_c00119{transform:matrix(0.163465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163465,0.000000,0.000000,0.250000,0,0);}
.ma_c00119{transform:matrix(0.166573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166573,0.000000,0.000000,0.250000,0,0);}
.m3_c00119{transform:matrix(0.176754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176754,0.000000,0.000000,0.250000,0,0);}
.m1_c00119{transform:matrix(0.179020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179020,0.000000,0.000000,0.250000,0,0);}
.mc_c00119{transform:matrix(0.219957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219957,0.000000,0.000000,0.250000,0,0);}
.m8_c00119{transform:matrix(0.221709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221709,0.000000,0.000000,0.250000,0,0);}
.m7_c00119{transform:matrix(0.226490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226490,0.000000,0.000000,0.250000,0,0);}
.mf_c00119{transform:matrix(0.234538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234538,0.000000,0.000000,0.250000,0,0);}
.m12_c00119{transform:matrix(0.241737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241737,0.000000,0.000000,0.250000,0,0);}
.md_c00119{transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);}
.mb_c00119{transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);}
.me_c00119{transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);}
.m11_c00119{transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);}
.m4_c00119{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m10_c00119{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m0_c00119{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);}
.m5_c00119{transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);}
.m9_c00119{transform:matrix(0.253246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253246,0.000000,0.000000,0.250000,0,0);}
.m2_c00119{transform:matrix(0.258592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258592,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls34_c00119{letter-spacing:-2.667000px;}
.ls7f_c00119{letter-spacing:-2.604000px;}
.ls78_c00119{letter-spacing:-2.547720px;}
.ls4c_c00119{letter-spacing:-2.537460px;}
.ls3c_c00119{letter-spacing:-2.436000px;}
.ls4d_c00119{letter-spacing:-2.430780px;}
.ls86_c00119{letter-spacing:-2.429040px;}
.ls57_c00119{letter-spacing:-2.354580px;}
.ls5f_c00119{letter-spacing:-2.339460px;}
.ls3a_c00119{letter-spacing:-2.296800px;}
.ls84_c00119{letter-spacing:-2.255040px;}
.ls52_c00119{letter-spacing:-2.234160px;}
.ls6a_c00119{letter-spacing:-2.154960px;}
.ls85_c00119{letter-spacing:-2.136720px;}
.ls31_c00119{letter-spacing:-2.102400px;}
.ls7a_c00119{letter-spacing:-2.025360px;}
.ls99_c00119{letter-spacing:-1.995000px;}
.ls77_c00119{letter-spacing:-1.965600px;}
.ls5d_c00119{letter-spacing:-1.927920px;}
.ls5e_c00119{letter-spacing:-1.690020px;}
.ls32_c00119{letter-spacing:-1.649520px;}
.ls88_c00119{letter-spacing:-1.545120px;}
.ls67_c00119{letter-spacing:-1.531200px;}
.ls45_c00119{letter-spacing:-1.524240px;}
.ls59_c00119{letter-spacing:-1.468560px;}
.ls72_c00119{letter-spacing:-1.405920px;}
.ls83_c00119{letter-spacing:-1.266720px;}
.ls5a_c00119{letter-spacing:-1.259760px;}
.ls4a_c00119{letter-spacing:-1.190160px;}
.ls80_c00119{letter-spacing:-1.176240px;}
.ls41_c00119{letter-spacing:-1.134480px;}
.ls81_c00119{letter-spacing:-1.078800px;}
.ls8f_c00119{letter-spacing:-1.023120px;}
.ls8b_c00119{letter-spacing:-0.995280px;}
.ls64_c00119{letter-spacing:-0.988320px;}
.ls33_c00119{letter-spacing:-0.918720px;}
.ls6e_c00119{letter-spacing:-0.904800px;}
.ls7e_c00119{letter-spacing:-0.897840px;}
.ls56_c00119{letter-spacing:-0.856080px;}
.ls3f_c00119{letter-spacing:-0.835200px;}
.ls7c_c00119{letter-spacing:-0.827160px;}
.ls50_c00119{letter-spacing:-0.821280px;}
.ls87_c00119{letter-spacing:-0.758640px;}
.ls94_c00119{letter-spacing:-0.744720px;}
.ls47_c00119{letter-spacing:-0.737760px;}
.ls97_c00119{letter-spacing:-0.709920px;}
.ls75_c00119{letter-spacing:-0.696000px;}
.ls7d_c00119{letter-spacing:-0.668160px;}
.ls6f_c00119{letter-spacing:-0.661200px;}
.ls44_c00119{letter-spacing:-0.654240px;}
.ls6c_c00119{letter-spacing:-0.647280px;}
.ls6d_c00119{letter-spacing:-0.619440px;}
.ls91_c00119{letter-spacing:-0.612480px;}
.ls4f_c00119{letter-spacing:-0.605520px;}
.ls63_c00119{letter-spacing:-0.584640px;}
.ls2d_c00119{letter-spacing:-0.563760px;}
.ls3e_c00119{letter-spacing:-0.556800px;}
.ls30_c00119{letter-spacing:-0.549840px;}
.ls68_c00119{letter-spacing:-0.528960px;}
.ls29_c00119{letter-spacing:-0.501120px;}
.ls42_c00119{letter-spacing:-0.487200px;}
.ls79_c00119{letter-spacing:-0.473280px;}
.ls8d_c00119{letter-spacing:-0.417600px;}
.ls61_c00119{letter-spacing:-0.410640px;}
.ls2a_c00119{letter-spacing:-0.396720px;}
.ls93_c00119{letter-spacing:-0.389760px;}
.ls5b_c00119{letter-spacing:-0.375840px;}
.ls2c_c00119{letter-spacing:-0.327120px;}
.ls89_c00119{letter-spacing:-0.313200px;}
.ls2e_c00119{letter-spacing:-0.306240px;}
.ls96_c00119{letter-spacing:-0.285360px;}
.ls66_c00119{letter-spacing:-0.257520px;}
.ls65_c00119{letter-spacing:-0.250560px;}
.ls3d_c00119{letter-spacing:-0.243600px;}
.ls98_c00119{letter-spacing:-0.215760px;}
.ls39_c00119{letter-spacing:-0.208800px;}
.ls90_c00119{letter-spacing:-0.187920px;}
.ls69_c00119{letter-spacing:-0.180960px;}
.ls5c_c00119{letter-spacing:-0.174000px;}
.ls7b_c00119{letter-spacing:-0.169500px;}
.ls4b_c00119{letter-spacing:-0.167040px;}
.ls2f_c00119{letter-spacing:-0.160080px;}
.ls35_c00119{letter-spacing:-0.153120px;}
.ls8a_c00119{letter-spacing:-0.139200px;}
.ls51_c00119{letter-spacing:-0.132240px;}
.ls74_c00119{letter-spacing:-0.097440px;}
.ls62_c00119{letter-spacing:-0.090480px;}
.ls43_c00119{letter-spacing:-0.076560px;}
.ls55_c00119{letter-spacing:-0.062640px;}
.ls92_c00119{letter-spacing:-0.055680px;}
.ls95_c00119{letter-spacing:-0.048720px;}
.ls36_c00119{letter-spacing:-0.034800px;}
.ls8e_c00119{letter-spacing:-0.027840px;}
.ls71_c00119{letter-spacing:-0.020880px;}
.ls73_c00119{letter-spacing:-0.013920px;}
.ls40_c00119{letter-spacing:-0.006960px;}
.ls2b_c00119{letter-spacing:0.000000px;}
.ls25_c00119{letter-spacing:0.006960px;}
.ls20_c00119{letter-spacing:0.013920px;}
.ls1_c00119{letter-spacing:0.041760px;}
.ls1a_c00119{letter-spacing:0.062640px;}
.ls5_c00119{letter-spacing:0.069600px;}
.ls14_c00119{letter-spacing:0.083520px;}
.ls3b_c00119{letter-spacing:0.090480px;}
.ls17_c00119{letter-spacing:0.097440px;}
.ls7_c00119{letter-spacing:0.118320px;}
.ls3_c00119{letter-spacing:0.125280px;}
.lse_c00119{letter-spacing:0.139200px;}
.ls2_c00119{letter-spacing:0.167040px;}
.ls26_c00119{letter-spacing:0.187920px;}
.ls23_c00119{letter-spacing:0.215760px;}
.ls9_c00119{letter-spacing:0.229680px;}
.ls12_c00119{letter-spacing:0.243600px;}
.ls4_c00119{letter-spacing:0.257520px;}
.ls16_c00119{letter-spacing:0.264480px;}
.ls11_c00119{letter-spacing:0.271440px;}
.lsb_c00119{letter-spacing:0.292320px;}
.ls82_c00119{letter-spacing:0.306240px;}
.ls1b_c00119{letter-spacing:0.320160px;}
.lsd_c00119{letter-spacing:0.348000px;}
.ls19_c00119{letter-spacing:0.396720px;}
.lsa_c00119{letter-spacing:0.515040px;}
.ls8c_c00119{letter-spacing:0.522000px;}
.ls18_c00119{letter-spacing:0.542880px;}
.ls70_c00119{letter-spacing:0.623760px;}
.ls13_c00119{letter-spacing:0.633360px;}
.ls1f_c00119{letter-spacing:0.657660px;}
.ls1c_c00119{letter-spacing:0.716880px;}
.ls22_c00119{letter-spacing:0.737760px;}
.ls15_c00119{letter-spacing:0.758640px;}
.ls1e_c00119{letter-spacing:0.772920px;}
.ls76_c00119{letter-spacing:0.806820px;}
.ls1d_c00119{letter-spacing:0.813600px;}
.ls10_c00119{letter-spacing:0.925680px;}
.ls49_c00119{letter-spacing:0.976320px;}
.ls6b_c00119{letter-spacing:1.017000px;}
.ls46_c00119{letter-spacing:1.145820px;}
.ls58_c00119{letter-spacing:1.220400px;}
.ls60_c00119{letter-spacing:1.233960px;}
.ls4e_c00119{letter-spacing:1.322100px;}
.ls8_c00119{letter-spacing:1.439100px;}
.ls21_c00119{letter-spacing:1.447680px;}
.ls6_c00119{letter-spacing:1.461600px;}
.ls38_c00119{letter-spacing:1.498380px;}
.ls24_c00119{letter-spacing:1.705200px;}
.ls28_c00119{letter-spacing:1.714980px;}
.ls0_c00119{letter-spacing:1.795680px;}
.ls54_c00119{letter-spacing:1.884840px;}
.lsf_c00119{letter-spacing:2.164560px;}
.ls27_c00119{letter-spacing:2.442960px;}
.lsc_c00119{letter-spacing:2.878200px;}
.ls53_c00119{letter-spacing:3.510000px;}
.ls48_c00119{letter-spacing:3.570000px;}
.ls37_c00119{letter-spacing:3.600000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{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__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00119{word-spacing:-16.759980px;}
.ws3_c00119{word-spacing:-16.745760px;}
.wsc_c00119{word-spacing:-16.738800px;}
.ws4_c00119{word-spacing:-16.662240px;}
.ws6_c00119{word-spacing:-16.512540px;}
.wsd_c00119{word-spacing:-1.031040px;}
.wse_c00119{word-spacing:0.000000px;}
.wsa_c00119{word-spacing:89.575200px;}
.ws8_c00119{word-spacing:90.546000px;}
.wsb_c00119{word-spacing:90.654000px;}
.ws0_c00119{word-spacing:108.631680px;}
.ws2_c00119{word-spacing:109.550400px;}
.ws5_c00119{word-spacing:109.787040px;}
.ws7_c00119{word-spacing:110.747520px;}
.ws1_c00119{word-spacing:112.773600px;}
._6_c00119{margin-left:-16.154160px;}
._3_c00119{margin-left:-14.386320px;}
._e_c00119{margin-left:-12.869760px;}
._11_c00119{margin-left:-11.344800px;}
._9_c00119{margin-left:-9.003360px;}
._12_c00119{margin-left:-7.987920px;}
._b_c00119{margin-left:-6.465120px;}
._0_c00119{margin-left:-4.774560px;}
._7_c00119{margin-left:-3.730560px;}
._4_c00119{margin-left:-2.505600px;}
._1_c00119{margin-left:-1.308480px;}
._c_c00119{width:1.107780px;}
._a_c00119{width:2.219100px;}
._f_c00119{width:3.446340px;}
._5_c00119{width:4.913520px;}
._8_c00119{width:6.549600px;}
._d_c00119{width:8.058960px;}
._19_c00119{width:10.509600px;}
._10_c00119{width:11.583960px;}
._1a_c00119{width:12.667200px;}
._13_c00119{width:14.390760px;}
._18_c00119{width:15.929520px;}
._2_c00119{width:18.165600px;}
._14_c00119{width:19.418400px;}
._15_c00119{width:22.132800px;}
._16_c00119{width:23.594400px;}
._17_c00119{width:28.090560px;}
.fc0_c00119{color:transparent;}
.fsa_c00119{font-size:57.000000px;}
.fs0_c00119{font-size:60.600000px;}
.fs4_c00119{font-size:67.800000px;}
.fs1_c00119{font-size:69.600000px;}
.fs7_c00119{font-size:70.200000px;}
.fs6_c00119{font-size:71.400000px;}
.fs2_c00119{font-size:72.000000px;}
.fs5_c00119{font-size:73.800000px;}
.fs9_c00119{font-size:74.400000px;}
.fs8_c00119{font-size:75.600000px;}
.fs3_c00119{font-size:76.200000px;}
.y0_c00119{bottom:0.000000px;}
.y21_c00119{bottom:72.735015px;}
.y20_c00119{bottom:147.951015px;}
.y1f_c00119{bottom:178.557615px;}
.y1e_c00119{bottom:209.895015px;}
.y1d_c00119{bottom:241.215015px;}
.y1c_c00119{bottom:303.480015px;}
.y1b_c00119{bottom:365.775015px;}
.y1a_c00119{bottom:365.777415px;}
.y19_c00119{bottom:397.080015px;}
.y18_c00119{bottom:397.084215px;}
.y17_c00119{bottom:460.455015px;}
.y16_c00119{bottom:492.480015px;}
.y15_c00119{bottom:555.135015px;}
.y14_c00119{bottom:586.455015px;}
.y13_c00119{bottom:617.415015px;}
.y12_c00119{bottom:646.215015px;}
.y11_c00119{bottom:679.335015px;}
.y10_c00119{bottom:710.295015px;}
.yf_c00119{bottom:740.175015px;}
.ye_c00119{bottom:773.295015px;}
.yd_c00119{bottom:804.615015px;}
.yc_c00119{bottom:835.935015px;}
.ya_c00119{bottom:867.969615px;}
.yb_c00119{bottom:867.975015px;}
.y9_c00119{bottom:897.480015px;}
.y8_c00119{bottom:930.975015px;}
.y7_c00119{bottom:962.655015px;}
.y6_c00119{bottom:993.615015px;}
.y5_c00119{bottom:1023.135015px;}
.y4_c00119{bottom:1055.880015px;}
.y3_c00119{bottom:1085.772015px;}
.y2_c00119{bottom:1119.615015px;}
.y1_c00119{bottom:1194.135015px;}
.h11_c00119{height:55.942383px;}
.h2_c00119{height:59.475586px;}
.h6_c00119{height:66.508887px;}
.he_c00119{height:66.541992px;}
.h3_c00119{height:68.308594px;}
.h10_c00119{height:68.344594px;}
.h8_c00119{height:70.040332px;}
.h4_c00119{height:70.664062px;}
.h7_c00119{height:72.394629px;}
.hc_c00119{height:72.430664px;}
.hf_c00119{height:73.019531px;}
.ha_c00119{height:73.216406px;}
.hd_c00119{height:74.160352px;}
.hb_c00119{height:74.748926px;}
.h5_c00119{height:74.786133px;}
.h9_c00119{height:79.474219px;}
.h1_c00119{height:1263.000000px;}
.h0_c00119{height:1263.240015px;}
.w1_c00119{width:892.500000px;}
.w0_c00119{width:892.800015px;}
.x0_c00119{left:0.000000px;}
.x25_c00119{left:123.807615px;}
.x1_c00119{left:126.285015px;}
.x15_c00119{left:127.920015px;}
.x2_c00119{left:131.160015px;}
.x21_c00119{left:178.725015px;}
.x19_c00119{left:179.832615px;}
.x3_c00119{left:181.045815px;}
.x1b_c00119{left:237.405015px;}
.x1c_c00119{left:265.800015px;}
.x1a_c00119{left:328.140015px;}
.x4_c00119{left:332.925015px;}
.x8_c00119{left:348.045015px;}
.x1f_c00119{left:353.325015px;}
.xe_c00119{left:362.130015px;}
.x5_c00119{left:365.940015px;}
.xf_c00119{left:373.590015px;}
.x9_c00119{left:380.700015px;}
.x20_c00119{left:381.720015px;}
.x10_c00119{left:396.615015px;}
.x1d_c00119{left:411.765015px;}
.x26_c00119{left:425.400015px;}
.xa_c00119{left:433.635015px;}
.x22_c00119{left:438.240015px;}
.x1e_c00119{left:440.130015px;}
.xb_c00119{left:453.765015px;}
.x23_c00119{left:462.765015px;}
.x24_c00119{left:490.800015px;}
.x11_c00119{left:619.635015px;}
.x14_c00119{left:649.245015px;}
.x17_c00119{left:655.005015px;}
.xc_c00119{left:658.605015px;}
.x12_c00119{left:662.175015px;}
.x18_c00119{left:679.185015px;}
.xd_c00119{left:682.830015px;}
.x13_c00119{left:685.290015px;}
.x6_c00119{left:687.870015px;}
.x7_c00119{left:712.335015px;}
.x16_c00119{left:738.555015px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls34_c00119{letter-spacing:-2.370667pt;}
.ls7f_c00119{letter-spacing:-2.314667pt;}
.ls78_c00119{letter-spacing:-2.264640pt;}
.ls4c_c00119{letter-spacing:-2.255520pt;}
.ls3c_c00119{letter-spacing:-2.165333pt;}
.ls4d_c00119{letter-spacing:-2.160693pt;}
.ls86_c00119{letter-spacing:-2.159147pt;}
.ls57_c00119{letter-spacing:-2.092960pt;}
.ls5f_c00119{letter-spacing:-2.079520pt;}
.ls3a_c00119{letter-spacing:-2.041600pt;}
.ls84_c00119{letter-spacing:-2.004480pt;}
.ls52_c00119{letter-spacing:-1.985920pt;}
.ls6a_c00119{letter-spacing:-1.915520pt;}
.ls85_c00119{letter-spacing:-1.899307pt;}
.ls31_c00119{letter-spacing:-1.868800pt;}
.ls7a_c00119{letter-spacing:-1.800320pt;}
.ls99_c00119{letter-spacing:-1.773333pt;}
.ls77_c00119{letter-spacing:-1.747200pt;}
.ls5d_c00119{letter-spacing:-1.713707pt;}
.ls5e_c00119{letter-spacing:-1.502240pt;}
.ls32_c00119{letter-spacing:-1.466240pt;}
.ls88_c00119{letter-spacing:-1.373440pt;}
.ls67_c00119{letter-spacing:-1.361067pt;}
.ls45_c00119{letter-spacing:-1.354880pt;}
.ls59_c00119{letter-spacing:-1.305387pt;}
.ls72_c00119{letter-spacing:-1.249707pt;}
.ls83_c00119{letter-spacing:-1.125973pt;}
.ls5a_c00119{letter-spacing:-1.119787pt;}
.ls4a_c00119{letter-spacing:-1.057920pt;}
.ls80_c00119{letter-spacing:-1.045547pt;}
.ls41_c00119{letter-spacing:-1.008427pt;}
.ls81_c00119{letter-spacing:-0.958933pt;}
.ls8f_c00119{letter-spacing:-0.909440pt;}
.ls8b_c00119{letter-spacing:-0.884693pt;}
.ls64_c00119{letter-spacing:-0.878507pt;}
.ls33_c00119{letter-spacing:-0.816640pt;}
.ls6e_c00119{letter-spacing:-0.804267pt;}
.ls7e_c00119{letter-spacing:-0.798080pt;}
.ls56_c00119{letter-spacing:-0.760960pt;}
.ls3f_c00119{letter-spacing:-0.742400pt;}
.ls7c_c00119{letter-spacing:-0.735253pt;}
.ls50_c00119{letter-spacing:-0.730027pt;}
.ls87_c00119{letter-spacing:-0.674347pt;}
.ls94_c00119{letter-spacing:-0.661973pt;}
.ls47_c00119{letter-spacing:-0.655787pt;}
.ls97_c00119{letter-spacing:-0.631040pt;}
.ls75_c00119{letter-spacing:-0.618667pt;}
.ls7d_c00119{letter-spacing:-0.593920pt;}
.ls6f_c00119{letter-spacing:-0.587733pt;}
.ls44_c00119{letter-spacing:-0.581547pt;}
.ls6c_c00119{letter-spacing:-0.575360pt;}
.ls6d_c00119{letter-spacing:-0.550613pt;}
.ls91_c00119{letter-spacing:-0.544427pt;}
.ls4f_c00119{letter-spacing:-0.538240pt;}
.ls63_c00119{letter-spacing:-0.519680pt;}
.ls2d_c00119{letter-spacing:-0.501120pt;}
.ls3e_c00119{letter-spacing:-0.494933pt;}
.ls30_c00119{letter-spacing:-0.488747pt;}
.ls68_c00119{letter-spacing:-0.470187pt;}
.ls29_c00119{letter-spacing:-0.445440pt;}
.ls42_c00119{letter-spacing:-0.433067pt;}
.ls79_c00119{letter-spacing:-0.420693pt;}
.ls8d_c00119{letter-spacing:-0.371200pt;}
.ls61_c00119{letter-spacing:-0.365013pt;}
.ls2a_c00119{letter-spacing:-0.352640pt;}
.ls93_c00119{letter-spacing:-0.346453pt;}
.ls5b_c00119{letter-spacing:-0.334080pt;}
.ls2c_c00119{letter-spacing:-0.290773pt;}
.ls89_c00119{letter-spacing:-0.278400pt;}
.ls2e_c00119{letter-spacing:-0.272213pt;}
.ls96_c00119{letter-spacing:-0.253653pt;}
.ls66_c00119{letter-spacing:-0.228907pt;}
.ls65_c00119{letter-spacing:-0.222720pt;}
.ls3d_c00119{letter-spacing:-0.216533pt;}
.ls98_c00119{letter-spacing:-0.191787pt;}
.ls39_c00119{letter-spacing:-0.185600pt;}
.ls90_c00119{letter-spacing:-0.167040pt;}
.ls69_c00119{letter-spacing:-0.160853pt;}
.ls5c_c00119{letter-spacing:-0.154667pt;}
.ls7b_c00119{letter-spacing:-0.150667pt;}
.ls4b_c00119{letter-spacing:-0.148480pt;}
.ls2f_c00119{letter-spacing:-0.142293pt;}
.ls35_c00119{letter-spacing:-0.136107pt;}
.ls8a_c00119{letter-spacing:-0.123733pt;}
.ls51_c00119{letter-spacing:-0.117547pt;}
.ls74_c00119{letter-spacing:-0.086613pt;}
.ls62_c00119{letter-spacing:-0.080427pt;}
.ls43_c00119{letter-spacing:-0.068053pt;}
.ls55_c00119{letter-spacing:-0.055680pt;}
.ls92_c00119{letter-spacing:-0.049493pt;}
.ls95_c00119{letter-spacing:-0.043307pt;}
.ls36_c00119{letter-spacing:-0.030933pt;}
.ls8e_c00119{letter-spacing:-0.024747pt;}
.ls71_c00119{letter-spacing:-0.018560pt;}
.ls73_c00119{letter-spacing:-0.012373pt;}
.ls40_c00119{letter-spacing:-0.006187pt;}
.ls2b_c00119{letter-spacing:0.000000pt;}
.ls25_c00119{letter-spacing:0.006187pt;}
.ls20_c00119{letter-spacing:0.012373pt;}
.ls1_c00119{letter-spacing:0.037120pt;}
.ls1a_c00119{letter-spacing:0.055680pt;}
.ls5_c00119{letter-spacing:0.061867pt;}
.ls14_c00119{letter-spacing:0.074240pt;}
.ls3b_c00119{letter-spacing:0.080427pt;}
.ls17_c00119{letter-spacing:0.086613pt;}
.ls7_c00119{letter-spacing:0.105173pt;}
.ls3_c00119{letter-spacing:0.111360pt;}
.lse_c00119{letter-spacing:0.123733pt;}
.ls2_c00119{letter-spacing:0.148480pt;}
.ls26_c00119{letter-spacing:0.167040pt;}
.ls23_c00119{letter-spacing:0.191787pt;}
.ls9_c00119{letter-spacing:0.204160pt;}
.ls12_c00119{letter-spacing:0.216533pt;}
.ls4_c00119{letter-spacing:0.228907pt;}
.ls16_c00119{letter-spacing:0.235093pt;}
.ls11_c00119{letter-spacing:0.241280pt;}
.lsb_c00119{letter-spacing:0.259840pt;}
.ls82_c00119{letter-spacing:0.272213pt;}
.ls1b_c00119{letter-spacing:0.284587pt;}
.lsd_c00119{letter-spacing:0.309333pt;}
.ls19_c00119{letter-spacing:0.352640pt;}
.lsa_c00119{letter-spacing:0.457813pt;}
.ls8c_c00119{letter-spacing:0.464000pt;}
.ls18_c00119{letter-spacing:0.482560pt;}
.ls70_c00119{letter-spacing:0.554453pt;}
.ls13_c00119{letter-spacing:0.562987pt;}
.ls1f_c00119{letter-spacing:0.584587pt;}
.ls1c_c00119{letter-spacing:0.637227pt;}
.ls22_c00119{letter-spacing:0.655787pt;}
.ls15_c00119{letter-spacing:0.674347pt;}
.ls1e_c00119{letter-spacing:0.687040pt;}
.ls76_c00119{letter-spacing:0.717173pt;}
.ls1d_c00119{letter-spacing:0.723200pt;}
.ls10_c00119{letter-spacing:0.822827pt;}
.ls49_c00119{letter-spacing:0.867840pt;}
.ls6b_c00119{letter-spacing:0.904000pt;}
.ls46_c00119{letter-spacing:1.018507pt;}
.ls58_c00119{letter-spacing:1.084800pt;}
.ls60_c00119{letter-spacing:1.096853pt;}
.ls4e_c00119{letter-spacing:1.175200pt;}
.ls8_c00119{letter-spacing:1.279200pt;}
.ls21_c00119{letter-spacing:1.286827pt;}
.ls6_c00119{letter-spacing:1.299200pt;}
.ls38_c00119{letter-spacing:1.331893pt;}
.ls24_c00119{letter-spacing:1.515733pt;}
.ls28_c00119{letter-spacing:1.524427pt;}
.ls0_c00119{letter-spacing:1.596160pt;}
.ls54_c00119{letter-spacing:1.675413pt;}
.lsf_c00119{letter-spacing:1.924053pt;}
.ls27_c00119{letter-spacing:2.171520pt;}
.lsc_c00119{letter-spacing:2.558400pt;}
.ls53_c00119{letter-spacing:3.120000pt;}
.ls48_c00119{letter-spacing:3.173333pt;}
.ls37_c00119{letter-spacing:3.200000pt;}
.ws9_c00119{word-spacing:-14.897760pt;}
.ws3_c00119{word-spacing:-14.885120pt;}
.wsc_c00119{word-spacing:-14.878933pt;}
.ws4_c00119{word-spacing:-14.810880pt;}
.ws6_c00119{word-spacing:-14.677813pt;}
.wsd_c00119{word-spacing:-0.916480pt;}
.wse_c00119{word-spacing:0.000000pt;}
.wsa_c00119{word-spacing:79.622400pt;}
.ws8_c00119{word-spacing:80.485333pt;}
.wsb_c00119{word-spacing:80.581333pt;}
.ws0_c00119{word-spacing:96.561493pt;}
.ws2_c00119{word-spacing:97.378133pt;}
.ws5_c00119{word-spacing:97.588480pt;}
.ws7_c00119{word-spacing:98.442240pt;}
.ws1_c00119{word-spacing:100.243200pt;}
._6_c00119{margin-left:-14.359253pt;}
._3_c00119{margin-left:-12.787840pt;}
._e_c00119{margin-left:-11.439787pt;}
._11_c00119{margin-left:-10.084267pt;}
._9_c00119{margin-left:-8.002987pt;}
._12_c00119{margin-left:-7.100373pt;}
._b_c00119{margin-left:-5.746773pt;}
._0_c00119{margin-left:-4.244053pt;}
._7_c00119{margin-left:-3.316053pt;}
._4_c00119{margin-left:-2.227200pt;}
._1_c00119{margin-left:-1.163093pt;}
._c_c00119{width:0.984693pt;}
._a_c00119{width:1.972533pt;}
._f_c00119{width:3.063413pt;}
._5_c00119{width:4.367573pt;}
._8_c00119{width:5.821867pt;}
._d_c00119{width:7.163520pt;}
._19_c00119{width:9.341867pt;}
._10_c00119{width:10.296853pt;}
._1a_c00119{width:11.259733pt;}
._13_c00119{width:12.791787pt;}
._18_c00119{width:14.159573pt;}
._2_c00119{width:16.147200pt;}
._14_c00119{width:17.260800pt;}
._15_c00119{width:19.673600pt;}
._16_c00119{width:20.972800pt;}
._17_c00119{width:24.969387pt;}
.fsa_c00119{font-size:50.666667pt;}
.fs0_c00119{font-size:53.866667pt;}
.fs4_c00119{font-size:60.266667pt;}
.fs1_c00119{font-size:61.866667pt;}
.fs7_c00119{font-size:62.400000pt;}
.fs6_c00119{font-size:63.466667pt;}
.fs2_c00119{font-size:64.000000pt;}
.fs5_c00119{font-size:65.600000pt;}
.fs9_c00119{font-size:66.133333pt;}
.fs8_c00119{font-size:67.200000pt;}
.fs3_c00119{font-size:67.733333pt;}
.y0_c00119{bottom:0.000000pt;}
.y21_c00119{bottom:64.653347pt;}
.y20_c00119{bottom:131.512013pt;}
.y1f_c00119{bottom:158.717880pt;}
.y1e_c00119{bottom:186.573347pt;}
.y1d_c00119{bottom:214.413347pt;}
.y1c_c00119{bottom:269.760013pt;}
.y1b_c00119{bottom:325.133347pt;}
.y1a_c00119{bottom:325.135480pt;}
.y19_c00119{bottom:352.960013pt;}
.y18_c00119{bottom:352.963747pt;}
.y17_c00119{bottom:409.293347pt;}
.y16_c00119{bottom:437.760013pt;}
.y15_c00119{bottom:493.453347pt;}
.y14_c00119{bottom:521.293347pt;}
.y13_c00119{bottom:548.813347pt;}
.y12_c00119{bottom:574.413347pt;}
.y11_c00119{bottom:603.853347pt;}
.y10_c00119{bottom:631.373347pt;}
.yf_c00119{bottom:657.933347pt;}
.ye_c00119{bottom:687.373347pt;}
.yd_c00119{bottom:715.213347pt;}
.yc_c00119{bottom:743.053347pt;}
.ya_c00119{bottom:771.528547pt;}
.yb_c00119{bottom:771.533347pt;}
.y9_c00119{bottom:797.760013pt;}
.y8_c00119{bottom:827.533347pt;}
.y7_c00119{bottom:855.693347pt;}
.y6_c00119{bottom:883.213347pt;}
.y5_c00119{bottom:909.453347pt;}
.y4_c00119{bottom:938.560013pt;}
.y3_c00119{bottom:965.130680pt;}
.y2_c00119{bottom:995.213347pt;}
.y1_c00119{bottom:1061.453347pt;}
.h11_c00119{height:49.726562pt;}
.h2_c00119{height:52.867187pt;}
.h6_c00119{height:59.119010pt;}
.he_c00119{height:59.148438pt;}
.h3_c00119{height:60.718750pt;}
.h10_c00119{height:60.750750pt;}
.h8_c00119{height:62.258073pt;}
.h4_c00119{height:62.812500pt;}
.h7_c00119{height:64.350781pt;}
.hc_c00119{height:64.382813pt;}
.hf_c00119{height:64.906250pt;}
.ha_c00119{height:65.081250pt;}
.hd_c00119{height:65.920312pt;}
.hb_c00119{height:66.443490pt;}
.h5_c00119{height:66.476562pt;}
.h9_c00119{height:70.643750pt;}
.h1_c00119{height:1122.666667pt;}
.h0_c00119{height:1122.880013pt;}
.w1_c00119{width:793.333333pt;}
.w0_c00119{width:793.600013pt;}
.x0_c00119{left:0.000000pt;}
.x25_c00119{left:110.051213pt;}
.x1_c00119{left:112.253347pt;}
.x15_c00119{left:113.706680pt;}
.x2_c00119{left:116.586680pt;}
.x21_c00119{left:158.866680pt;}
.x19_c00119{left:159.851213pt;}
.x3_c00119{left:160.929613pt;}
.x1b_c00119{left:211.026680pt;}
.x1c_c00119{left:236.266680pt;}
.x1a_c00119{left:291.680013pt;}
.x4_c00119{left:295.933347pt;}
.x8_c00119{left:309.373347pt;}
.x1f_c00119{left:314.066680pt;}
.xe_c00119{left:321.893347pt;}
.x5_c00119{left:325.280013pt;}
.xf_c00119{left:332.080013pt;}
.x9_c00119{left:338.400013pt;}
.x20_c00119{left:339.306680pt;}
.x10_c00119{left:352.546680pt;}
.x1d_c00119{left:366.013347pt;}
.x26_c00119{left:378.133347pt;}
.xa_c00119{left:385.453347pt;}
.x22_c00119{left:389.546680pt;}
.x1e_c00119{left:391.226680pt;}
.xb_c00119{left:403.346680pt;}
.x23_c00119{left:411.346680pt;}
.x24_c00119{left:436.266680pt;}
.x11_c00119{left:550.786680pt;}
.x14_c00119{left:577.106680pt;}
.x17_c00119{left:582.226680pt;}
.xc_c00119{left:585.426680pt;}
.x12_c00119{left:588.600013pt;}
.x18_c00119{left:603.720013pt;}
.xd_c00119{left:606.960013pt;}
.x13_c00119{left:609.146680pt;}
.x6_c00119{left:611.440013pt;}
.x7_c00119{left:633.186680pt;}
.x16_c00119{left:656.493347pt;}
}





/* 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_c00120 {
    display:none;
  }
  .loading-indicator_c00120.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00120 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_c00120 { 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_c00120" -> "#page-container .classname_c00120")
 */
.pf_c00120 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00120 { /* 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_c00120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00120 { /* 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_c00120 { /* 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_c00120 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00120 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00120 {overflow:visible;}
  }
}
.c_c00120 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00120 { /* 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_c00120:after { /* webkit #35443 */
  content: '';
}
.t_c00120:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00120 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 */
}
.__c00120 { /* 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_c00120 { /* info for Javascript */
  display:none;
}
.l_c00120 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00120 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00120 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00120: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_c00120 {
    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_c00120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00120.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_c00120 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00120;src:url('chunks/assets/font_bdea637f1845c3bd924cfa4f.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;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:ff2_c00120;src:url('chunks/assets/font_935c8d126b2c2f4b38841f66.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.284668;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_c00120;src:url('chunks/assets/font_b3571ff6e9f8fd2038992c77.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.284180;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;}
.m6_c00120{transform:matrix(0.166412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166412,0.000000,0.000000,0.250000,0,0);}
.m5_c00120{transform:matrix(0.199511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199511,0.000000,0.000000,0.250000,0,0);}
.m4_c00120{transform:matrix(0.202244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202244,0.000000,0.000000,0.250000,0,0);}
.m1_c00120{transform:matrix(0.206064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206064,0.000000,0.000000,0.250000,0,0);}
.m7_c00120{transform:matrix(0.242646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242646,0.000000,0.000000,0.250000,0,0);}
.m8_c00120{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m2_c00120{transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);}
.me_c00120{transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);}
.md_c00120{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m0_c00120{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);}
.m3_c00120{transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);}
.ma_c00120{transform:matrix(0.251491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251491,0.000000,0.000000,0.250000,0,0);}
.mb_c00120{transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);}
.mc_c00120{transform:matrix(0.255539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255539,0.000000,0.000000,0.250000,0,0);}
.m9_c00120{transform:matrix(0.256709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256709,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.v1_c00120{vertical-align:27.360000px;}
.ls5d_c00120{letter-spacing:-2.877000px;}
.ls6b_c00120{letter-spacing:-2.751000px;}
.ls63_c00120{letter-spacing:-2.415000px;}
.ls6e_c00120{letter-spacing:-2.268000px;}
.ls7a_c00120{letter-spacing:-2.088960px;}
.ls7f_c00120{letter-spacing:-1.959600px;}
.ls7b_c00120{letter-spacing:-1.958400px;}
.ls84_c00120{letter-spacing:-1.869900px;}
.ls6c_c00120{letter-spacing:-1.283400px;}
.ls65_c00120{letter-spacing:-1.110900px;}
.ls61_c00120{letter-spacing:-1.083300px;}
.ls82_c00120{letter-spacing:-1.014300px;}
.ls81_c00120{letter-spacing:-0.952200px;}
.ls83_c00120{letter-spacing:-0.862500px;}
.ls6d_c00120{letter-spacing:-0.807300px;}
.ls73_c00120{letter-spacing:-0.800400px;}
.ls80_c00120{letter-spacing:-0.703800px;}
.ls76_c00120{letter-spacing:-0.676200px;}
.ls5b_c00120{letter-spacing:-0.545100px;}
.ls72_c00120{letter-spacing:-0.531300px;}
.ls6a_c00120{letter-spacing:-0.503700px;}
.ls5f_c00120{letter-spacing:-0.476100px;}
.ls75_c00120{letter-spacing:-0.455400px;}
.ls7e_c00120{letter-spacing:-0.241500px;}
.ls87_c00120{letter-spacing:-0.208800px;}
.ls7c_c00120{letter-spacing:-0.200100px;}
.ls85_c00120{letter-spacing:-0.193200px;}
.ls86_c00120{letter-spacing:-0.172500px;}
.ls79_c00120{letter-spacing:-0.138000px;}
.ls71_c00120{letter-spacing:-0.103500px;}
.ls5e_c00120{letter-spacing:-0.096600px;}
.ls66_c00120{letter-spacing:-0.089700px;}
.ls74_c00120{letter-spacing:-0.069000px;}
.ls7d_c00120{letter-spacing:-0.041400px;}
.ls67_c00120{letter-spacing:-0.020700px;}
.ls64_c00120{letter-spacing:-0.006900px;}
.ls59_c00120{letter-spacing:0.000000px;}
.lsf_c00120{letter-spacing:0.013800px;}
.ls7_c00120{letter-spacing:0.027600px;}
.ls28_c00120{letter-spacing:0.041400px;}
.ls52_c00120{letter-spacing:0.048300px;}
.lsd_c00120{letter-spacing:0.069000px;}
.ls14_c00120{letter-spacing:0.110400px;}
.ls5a_c00120{letter-spacing:0.131100px;}
.lsa_c00120{letter-spacing:0.138000px;}
.ls4f_c00120{letter-spacing:0.144900px;}
.ls32_c00120{letter-spacing:0.151800px;}
.ls4a_c00120{letter-spacing:0.165600px;}
.ls22_c00120{letter-spacing:0.179400px;}
.ls3a_c00120{letter-spacing:0.186300px;}
.ls5_c00120{letter-spacing:0.193200px;}
.ls51_c00120{letter-spacing:0.220800px;}
.ls33_c00120{letter-spacing:0.227700px;}
.ls40_c00120{letter-spacing:0.241500px;}
.ls1c_c00120{letter-spacing:0.248400px;}
.ls3c_c00120{letter-spacing:0.276000px;}
.ls3f_c00120{letter-spacing:0.282900px;}
.ls3_c00120{letter-spacing:0.317400px;}
.ls54_c00120{letter-spacing:0.331200px;}
.ls24_c00120{letter-spacing:0.338100px;}
.ls44_c00120{letter-spacing:0.345000px;}
.ls17_c00120{letter-spacing:0.351900px;}
.ls60_c00120{letter-spacing:0.358800px;}
.ls2c_c00120{letter-spacing:0.372600px;}
.ls3b_c00120{letter-spacing:0.379500px;}
.ls1d_c00120{letter-spacing:0.386400px;}
.ls41_c00120{letter-spacing:0.400200px;}
.ls55_c00120{letter-spacing:0.407100px;}
.ls36_c00120{letter-spacing:0.427800px;}
.ls29_c00120{letter-spacing:0.434700px;}
.ls34_c00120{letter-spacing:0.441600px;}
.ls57_c00120{letter-spacing:0.448500px;}
.ls9_c00120{letter-spacing:0.462300px;}
.ls2b_c00120{letter-spacing:0.476100px;}
.ls42_c00120{letter-spacing:0.483000px;}
.ls0_c00120{letter-spacing:0.489900px;}
.ls11_c00120{letter-spacing:0.496800px;}
.ls6_c00120{letter-spacing:0.503700px;}
.ls21_c00120{letter-spacing:0.510600px;}
.ls23_c00120{letter-spacing:0.531300px;}
.ls31_c00120{letter-spacing:0.545100px;}
.ls25_c00120{letter-spacing:0.552000px;}
.ls30_c00120{letter-spacing:0.558900px;}
.ls2f_c00120{letter-spacing:0.565800px;}
.ls70_c00120{letter-spacing:0.576300px;}
.ls16_c00120{letter-spacing:0.579600px;}
.ls1_c00120{letter-spacing:0.586500px;}
.ls77_c00120{letter-spacing:0.621000px;}
.ls4c_c00120{letter-spacing:0.627900px;}
.ls10_c00120{letter-spacing:0.634800px;}
.ls2d_c00120{letter-spacing:0.641700px;}
.lse_c00120{letter-spacing:0.669300px;}
.ls2a_c00120{letter-spacing:0.676200px;}
.ls12_c00120{letter-spacing:0.683100px;}
.ls1b_c00120{letter-spacing:0.690000px;}
.ls27_c00120{letter-spacing:0.738300px;}
.ls43_c00120{letter-spacing:0.759000px;}
.ls4_c00120{letter-spacing:0.765900px;}
.ls47_c00120{letter-spacing:0.766140px;}
.ls49_c00120{letter-spacing:0.779700px;}
.ls35_c00120{letter-spacing:0.793500px;}
.ls20_c00120{letter-spacing:0.800400px;}
.ls1f_c00120{letter-spacing:0.828000px;}
.ls6f_c00120{letter-spacing:0.841800px;}
.ls1a_c00120{letter-spacing:0.861060px;}
.ls53_c00120{letter-spacing:0.862500px;}
.ls1e_c00120{letter-spacing:0.890100px;}
.ls15_c00120{letter-spacing:0.903900px;}
.ls39_c00120{letter-spacing:0.917700px;}
.ls18_c00120{letter-spacing:0.924600px;}
.ls2e_c00120{letter-spacing:0.938400px;}
.ls46_c00120{letter-spacing:0.942420px;}
.ls13_c00120{letter-spacing:0.945300px;}
.ls38_c00120{letter-spacing:0.949200px;}
.ls48_c00120{letter-spacing:0.952200px;}
.ls8_c00120{letter-spacing:0.966000px;}
.ls50_c00120{letter-spacing:1.017000px;}
.ls5c_c00120{letter-spacing:1.097100px;}
.ls58_c00120{letter-spacing:1.211280px;}
.ls68_c00120{letter-spacing:1.240740px;}
.ls78_c00120{letter-spacing:1.262700px;}
.ls4d_c00120{letter-spacing:1.294980px;}
.lsb_c00120{letter-spacing:1.311000px;}
.ls19_c00120{letter-spacing:1.376340px;}
.ls4b_c00120{letter-spacing:1.580100px;}
.ls2_c00120{letter-spacing:1.600800px;}
.ls4e_c00120{letter-spacing:1.681440px;}
.ls37_c00120{letter-spacing:1.794000px;}
.ls3d_c00120{letter-spacing:1.952700px;}
.ls45_c00120{letter-spacing:2.014800px;}
.ls56_c00120{letter-spacing:2.028600px;}
.ls3e_c00120{letter-spacing:2.083800px;}
.ls26_c00120{letter-spacing:2.539200px;}
.ls62_c00120{letter-spacing:2.559900px;}
.lsc_c00120{letter-spacing:3.042900px;}
.ls69_c00120{letter-spacing:3.450000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{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__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00120{word-spacing:-16.794600px;}
.ws2_c00120{word-spacing:-0.172200px;}
.ws5_c00120{word-spacing:0.000000px;}
.ws3_c00120{word-spacing:1.540260px;}
.ws0_c00120{word-spacing:4.562760px;}
.ws4_c00120{word-spacing:14.518200px;}
._12_c00120{margin-left:-8.100600px;}
._d_c00120{margin-left:-6.313500px;}
._13_c00120{margin-left:-5.237100px;}
._7_c00120{margin-left:-3.953700px;}
._14_c00120{margin-left:-2.867520px;}
._6_c00120{margin-left:-1.704300px;}
._a_c00120{width:1.297200px;}
._8_c00120{width:2.484000px;}
._5_c00120{width:3.864000px;}
._9_c00120{width:5.200800px;}
._b_c00120{width:6.561900px;}
._e_c00120{width:8.880300px;}
._f_c00120{width:10.053300px;}
._c_c00120{width:11.079300px;}
._10_c00120{width:12.233700px;}
._3_c00120{width:14.303700px;}
._0_c00120{width:15.311100px;}
._1_c00120{width:16.767000px;}
._11_c00120{width:18.899100px;}
._2_c00120{width:20.113500px;}
._4_c00120{width:21.928200px;}
.fc0_c00120{color:transparent;}
.fs6_c00120{font-size:32.400600px;}
.fs8_c00120{font-size:52.200000px;}
.fs0_c00120{font-size:58.800000px;}
.fs5_c00120{font-size:64.800000px;}
.fs3_c00120{font-size:67.800000px;}
.fs1_c00120{font-size:69.000000px;}
.fs7_c00120{font-size:76.800000px;}
.fs4_c00120{font-size:78.600000px;}
.fs2_c00120{font-size:82.200000px;}
.y0_c00120{bottom:0.000000px;}
.y1f_c00120{bottom:74.880000px;}
.y1e_c00120{bottom:149.391750px;}
.y1d_c00120{bottom:180.735000px;}
.y1c_c00120{bottom:242.640000px;}
.y1b_c00120{bottom:305.640000px;}
.y1a_c00120{bottom:305.647500px;}
.y19_c00120{bottom:368.644500px;}
.y18_c00120{bottom:401.040000px;}
.y17_c00120{bottom:464.040000px;}
.y16_c00120{bottom:525.965250px;}
.y15_c00120{bottom:557.274000px;}
.y13_c00120{bottom:588.591750px;}
.y14_c00120{bottom:588.600000px;}
.y12_c00120{bottom:619.935000px;}
.y10_c00120{bottom:682.569000px;}
.y11_c00120{bottom:682.575000px;}
.yf_c00120{bottom:713.895000px;}
.ye_c00120{bottom:773.655000px;}
.yc_c00120{bottom:809.996250px;}
.yd_c00120{bottom:810.000000px;}
.yb_c00120{bottom:840.615000px;}
.ya_c00120{bottom:903.975000px;}
.y8_c00120{bottom:935.293500px;}
.y9_c00120{bottom:935.295000px;}
.y7_c00120{bottom:966.240000px;}
.y6_c00120{bottom:1029.236250px;}
.y5_c00120{bottom:1060.194000px;}
.y3_c00120{bottom:1091.166750px;}
.y4_c00120{bottom:1091.175000px;}
.y2_c00120{bottom:1123.200000px;}
.y1_c00120{bottom:1199.175000px;}
.ha_c00120{height:54.442969px;}
.h2_c00120{height:61.326563px;}
.h8_c00120{height:63.597656px;}
.h6_c00120{height:66.508887px;}
.h3_c00120{height:67.719727px;}
.h5_c00120{height:67.743727px;}
.h9_c00120{height:75.337500px;}
.h7_c00120{height:77.141602px;}
.h4_c00120{height:80.674805px;}
.h1_c00120{height:1263.000000px;}
.h0_c00120{height:1263.240000px;}
.w1_c00120{width:892.500000px;}
.w0_c00120{width:892.800000px;}
.x0_c00120{left:0.000000px;}
.x25_c00120{left:117.707250px;}
.x17_c00120{left:118.839750px;}
.xd_c00120{left:120.066750px;}
.x6_c00120{left:121.270500px;}
.x2_c00120{left:123.075000px;}
.x1_c00120{left:124.215000px;}
.x24_c00120{left:171.885000px;}
.x16_c00120{left:173.325000px;}
.x8_c00120{left:174.405000px;}
.x5_c00120{left:175.845000px;}
.xe_c00120{left:209.430000px;}
.xf_c00120{left:241.035000px;}
.x13_c00120{left:246.225000px;}
.x14_c00120{left:276.660000px;}
.x9_c00120{left:283.305000px;}
.x1f_c00120{left:301.500000px;}
.x18_c00120{left:303.195000px;}
.xa_c00120{left:313.020000px;}
.x19_c00120{left:333.690000px;}
.x1a_c00120{left:348.525000px;}
.x20_c00120{left:365.565000px;}
.x1b_c00120{left:381.435000px;}
.x21_c00120{left:393.960000px;}
.x3_c00120{left:411.045000px;}
.x26_c00120{left:422.940000px;}
.x4_c00120{left:438.165000px;}
.x1c_c00120{left:477.540000px;}
.x1d_c00120{left:500.370000px;}
.x10_c00120{left:507.540000px;}
.x11_c00120{left:540.210000px;}
.xb_c00120{left:604.350000px;}
.xc_c00120{left:639.930000px;}
.x22_c00120{left:662.580000px;}
.x23_c00120{left:679.845000px;}
.x15_c00120{left:694.980000px;}
.x1e_c00120{left:698.835000px;}
.x12_c00120{left:735.735000px;}
.x7_c00120{left:740.490000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.v1_c00120{vertical-align:24.320000pt;}
.ls5d_c00120{letter-spacing:-2.557333pt;}
.ls6b_c00120{letter-spacing:-2.445333pt;}
.ls63_c00120{letter-spacing:-2.146667pt;}
.ls6e_c00120{letter-spacing:-2.016000pt;}
.ls7a_c00120{letter-spacing:-1.856853pt;}
.ls7f_c00120{letter-spacing:-1.741867pt;}
.ls7b_c00120{letter-spacing:-1.740800pt;}
.ls84_c00120{letter-spacing:-1.662133pt;}
.ls6c_c00120{letter-spacing:-1.140800pt;}
.ls65_c00120{letter-spacing:-0.987467pt;}
.ls61_c00120{letter-spacing:-0.962933pt;}
.ls82_c00120{letter-spacing:-0.901600pt;}
.ls81_c00120{letter-spacing:-0.846400pt;}
.ls83_c00120{letter-spacing:-0.766667pt;}
.ls6d_c00120{letter-spacing:-0.717600pt;}
.ls73_c00120{letter-spacing:-0.711467pt;}
.ls80_c00120{letter-spacing:-0.625600pt;}
.ls76_c00120{letter-spacing:-0.601067pt;}
.ls5b_c00120{letter-spacing:-0.484533pt;}
.ls72_c00120{letter-spacing:-0.472267pt;}
.ls6a_c00120{letter-spacing:-0.447733pt;}
.ls5f_c00120{letter-spacing:-0.423200pt;}
.ls75_c00120{letter-spacing:-0.404800pt;}
.ls7e_c00120{letter-spacing:-0.214667pt;}
.ls87_c00120{letter-spacing:-0.185600pt;}
.ls7c_c00120{letter-spacing:-0.177867pt;}
.ls85_c00120{letter-spacing:-0.171733pt;}
.ls86_c00120{letter-spacing:-0.153333pt;}
.ls79_c00120{letter-spacing:-0.122667pt;}
.ls71_c00120{letter-spacing:-0.092000pt;}
.ls5e_c00120{letter-spacing:-0.085867pt;}
.ls66_c00120{letter-spacing:-0.079733pt;}
.ls74_c00120{letter-spacing:-0.061333pt;}
.ls7d_c00120{letter-spacing:-0.036800pt;}
.ls67_c00120{letter-spacing:-0.018400pt;}
.ls64_c00120{letter-spacing:-0.006133pt;}
.ls59_c00120{letter-spacing:0.000000pt;}
.lsf_c00120{letter-spacing:0.012267pt;}
.ls7_c00120{letter-spacing:0.024533pt;}
.ls28_c00120{letter-spacing:0.036800pt;}
.ls52_c00120{letter-spacing:0.042933pt;}
.lsd_c00120{letter-spacing:0.061333pt;}
.ls14_c00120{letter-spacing:0.098133pt;}
.ls5a_c00120{letter-spacing:0.116533pt;}
.lsa_c00120{letter-spacing:0.122667pt;}
.ls4f_c00120{letter-spacing:0.128800pt;}
.ls32_c00120{letter-spacing:0.134933pt;}
.ls4a_c00120{letter-spacing:0.147200pt;}
.ls22_c00120{letter-spacing:0.159467pt;}
.ls3a_c00120{letter-spacing:0.165600pt;}
.ls5_c00120{letter-spacing:0.171733pt;}
.ls51_c00120{letter-spacing:0.196267pt;}
.ls33_c00120{letter-spacing:0.202400pt;}
.ls40_c00120{letter-spacing:0.214667pt;}
.ls1c_c00120{letter-spacing:0.220800pt;}
.ls3c_c00120{letter-spacing:0.245333pt;}
.ls3f_c00120{letter-spacing:0.251467pt;}
.ls3_c00120{letter-spacing:0.282133pt;}
.ls54_c00120{letter-spacing:0.294400pt;}
.ls24_c00120{letter-spacing:0.300533pt;}
.ls44_c00120{letter-spacing:0.306667pt;}
.ls17_c00120{letter-spacing:0.312800pt;}
.ls60_c00120{letter-spacing:0.318933pt;}
.ls2c_c00120{letter-spacing:0.331200pt;}
.ls3b_c00120{letter-spacing:0.337333pt;}
.ls1d_c00120{letter-spacing:0.343467pt;}
.ls41_c00120{letter-spacing:0.355733pt;}
.ls55_c00120{letter-spacing:0.361867pt;}
.ls36_c00120{letter-spacing:0.380267pt;}
.ls29_c00120{letter-spacing:0.386400pt;}
.ls34_c00120{letter-spacing:0.392533pt;}
.ls57_c00120{letter-spacing:0.398667pt;}
.ls9_c00120{letter-spacing:0.410933pt;}
.ls2b_c00120{letter-spacing:0.423200pt;}
.ls42_c00120{letter-spacing:0.429333pt;}
.ls0_c00120{letter-spacing:0.435467pt;}
.ls11_c00120{letter-spacing:0.441600pt;}
.ls6_c00120{letter-spacing:0.447733pt;}
.ls21_c00120{letter-spacing:0.453867pt;}
.ls23_c00120{letter-spacing:0.472267pt;}
.ls31_c00120{letter-spacing:0.484533pt;}
.ls25_c00120{letter-spacing:0.490667pt;}
.ls30_c00120{letter-spacing:0.496800pt;}
.ls2f_c00120{letter-spacing:0.502933pt;}
.ls70_c00120{letter-spacing:0.512267pt;}
.ls16_c00120{letter-spacing:0.515200pt;}
.ls1_c00120{letter-spacing:0.521333pt;}
.ls77_c00120{letter-spacing:0.552000pt;}
.ls4c_c00120{letter-spacing:0.558133pt;}
.ls10_c00120{letter-spacing:0.564267pt;}
.ls2d_c00120{letter-spacing:0.570400pt;}
.lse_c00120{letter-spacing:0.594933pt;}
.ls2a_c00120{letter-spacing:0.601067pt;}
.ls12_c00120{letter-spacing:0.607200pt;}
.ls1b_c00120{letter-spacing:0.613333pt;}
.ls27_c00120{letter-spacing:0.656267pt;}
.ls43_c00120{letter-spacing:0.674667pt;}
.ls4_c00120{letter-spacing:0.680800pt;}
.ls47_c00120{letter-spacing:0.681013pt;}
.ls49_c00120{letter-spacing:0.693067pt;}
.ls35_c00120{letter-spacing:0.705333pt;}
.ls20_c00120{letter-spacing:0.711467pt;}
.ls1f_c00120{letter-spacing:0.736000pt;}
.ls6f_c00120{letter-spacing:0.748267pt;}
.ls1a_c00120{letter-spacing:0.765387pt;}
.ls53_c00120{letter-spacing:0.766667pt;}
.ls1e_c00120{letter-spacing:0.791200pt;}
.ls15_c00120{letter-spacing:0.803467pt;}
.ls39_c00120{letter-spacing:0.815733pt;}
.ls18_c00120{letter-spacing:0.821867pt;}
.ls2e_c00120{letter-spacing:0.834133pt;}
.ls46_c00120{letter-spacing:0.837707pt;}
.ls13_c00120{letter-spacing:0.840267pt;}
.ls38_c00120{letter-spacing:0.843733pt;}
.ls48_c00120{letter-spacing:0.846400pt;}
.ls8_c00120{letter-spacing:0.858667pt;}
.ls50_c00120{letter-spacing:0.904000pt;}
.ls5c_c00120{letter-spacing:0.975200pt;}
.ls58_c00120{letter-spacing:1.076693pt;}
.ls68_c00120{letter-spacing:1.102880pt;}
.ls78_c00120{letter-spacing:1.122400pt;}
.ls4d_c00120{letter-spacing:1.151093pt;}
.lsb_c00120{letter-spacing:1.165333pt;}
.ls19_c00120{letter-spacing:1.223413pt;}
.ls4b_c00120{letter-spacing:1.404533pt;}
.ls2_c00120{letter-spacing:1.422933pt;}
.ls4e_c00120{letter-spacing:1.494613pt;}
.ls37_c00120{letter-spacing:1.594667pt;}
.ls3d_c00120{letter-spacing:1.735733pt;}
.ls45_c00120{letter-spacing:1.790933pt;}
.ls56_c00120{letter-spacing:1.803200pt;}
.ls3e_c00120{letter-spacing:1.852267pt;}
.ls26_c00120{letter-spacing:2.257067pt;}
.ls62_c00120{letter-spacing:2.275467pt;}
.lsc_c00120{letter-spacing:2.704800pt;}
.ls69_c00120{letter-spacing:3.066667pt;}
.ws1_c00120{word-spacing:-14.928533pt;}
.ws2_c00120{word-spacing:-0.153067pt;}
.ws5_c00120{word-spacing:0.000000pt;}
.ws3_c00120{word-spacing:1.369120pt;}
.ws0_c00120{word-spacing:4.055787pt;}
.ws4_c00120{word-spacing:12.905067pt;}
._12_c00120{margin-left:-7.200533pt;}
._d_c00120{margin-left:-5.612000pt;}
._13_c00120{margin-left:-4.655200pt;}
._7_c00120{margin-left:-3.514400pt;}
._14_c00120{margin-left:-2.548907pt;}
._6_c00120{margin-left:-1.514933pt;}
._a_c00120{width:1.153067pt;}
._8_c00120{width:2.208000pt;}
._5_c00120{width:3.434667pt;}
._9_c00120{width:4.622933pt;}
._b_c00120{width:5.832800pt;}
._e_c00120{width:7.893600pt;}
._f_c00120{width:8.936267pt;}
._c_c00120{width:9.848267pt;}
._10_c00120{width:10.874400pt;}
._3_c00120{width:12.714400pt;}
._0_c00120{width:13.609867pt;}
._1_c00120{width:14.904000pt;}
._11_c00120{width:16.799200pt;}
._2_c00120{width:17.878667pt;}
._4_c00120{width:19.491733pt;}
.fs6_c00120{font-size:28.800533pt;}
.fs8_c00120{font-size:46.400000pt;}
.fs0_c00120{font-size:52.266667pt;}
.fs5_c00120{font-size:57.600000pt;}
.fs3_c00120{font-size:60.266667pt;}
.fs1_c00120{font-size:61.333333pt;}
.fs7_c00120{font-size:68.266667pt;}
.fs4_c00120{font-size:69.866667pt;}
.fs2_c00120{font-size:73.066667pt;}
.y0_c00120{bottom:0.000000pt;}
.y1f_c00120{bottom:66.560000pt;}
.y1e_c00120{bottom:132.792667pt;}
.y1d_c00120{bottom:160.653333pt;}
.y1c_c00120{bottom:215.680000pt;}
.y1b_c00120{bottom:271.680000pt;}
.y1a_c00120{bottom:271.686667pt;}
.y19_c00120{bottom:327.684000pt;}
.y18_c00120{bottom:356.480000pt;}
.y17_c00120{bottom:412.480000pt;}
.y16_c00120{bottom:467.524667pt;}
.y15_c00120{bottom:495.354667pt;}
.y13_c00120{bottom:523.192667pt;}
.y14_c00120{bottom:523.200000pt;}
.y12_c00120{bottom:551.053333pt;}
.y10_c00120{bottom:606.728000pt;}
.y11_c00120{bottom:606.733333pt;}
.yf_c00120{bottom:634.573333pt;}
.ye_c00120{bottom:687.693333pt;}
.yc_c00120{bottom:719.996667pt;}
.yd_c00120{bottom:720.000000pt;}
.yb_c00120{bottom:747.213333pt;}
.ya_c00120{bottom:803.533333pt;}
.y8_c00120{bottom:831.372000pt;}
.y9_c00120{bottom:831.373333pt;}
.y7_c00120{bottom:858.880000pt;}
.y6_c00120{bottom:914.876667pt;}
.y5_c00120{bottom:942.394667pt;}
.y3_c00120{bottom:969.926000pt;}
.y4_c00120{bottom:969.933333pt;}
.y2_c00120{bottom:998.400000pt;}
.y1_c00120{bottom:1065.933333pt;}
.ha_c00120{height:48.393750pt;}
.h2_c00120{height:54.512500pt;}
.h8_c00120{height:56.531250pt;}
.h6_c00120{height:59.119010pt;}
.h3_c00120{height:60.195312pt;}
.h5_c00120{height:60.216646pt;}
.h9_c00120{height:66.966667pt;}
.h7_c00120{height:68.570312pt;}
.h4_c00120{height:71.710937pt;}
.h1_c00120{height:1122.666667pt;}
.h0_c00120{height:1122.880000pt;}
.w1_c00120{width:793.333333pt;}
.w0_c00120{width:793.600000pt;}
.x0_c00120{left:0.000000pt;}
.x25_c00120{left:104.628667pt;}
.x17_c00120{left:105.635333pt;}
.xd_c00120{left:106.726000pt;}
.x6_c00120{left:107.796000pt;}
.x2_c00120{left:109.400000pt;}
.x1_c00120{left:110.413333pt;}
.x24_c00120{left:152.786667pt;}
.x16_c00120{left:154.066667pt;}
.x8_c00120{left:155.026667pt;}
.x5_c00120{left:156.306667pt;}
.xe_c00120{left:186.160000pt;}
.xf_c00120{left:214.253333pt;}
.x13_c00120{left:218.866667pt;}
.x14_c00120{left:245.920000pt;}
.x9_c00120{left:251.826667pt;}
.x1f_c00120{left:268.000000pt;}
.x18_c00120{left:269.506667pt;}
.xa_c00120{left:278.240000pt;}
.x19_c00120{left:296.613333pt;}
.x1a_c00120{left:309.800000pt;}
.x20_c00120{left:324.946667pt;}
.x1b_c00120{left:339.053333pt;}
.x21_c00120{left:350.186667pt;}
.x3_c00120{left:365.373333pt;}
.x26_c00120{left:375.946667pt;}
.x4_c00120{left:389.480000pt;}
.x1c_c00120{left:424.480000pt;}
.x1d_c00120{left:444.773333pt;}
.x10_c00120{left:451.146667pt;}
.x11_c00120{left:480.186667pt;}
.xb_c00120{left:537.200000pt;}
.xc_c00120{left:568.826667pt;}
.x22_c00120{left:588.960000pt;}
.x23_c00120{left:604.306667pt;}
.x15_c00120{left:617.760000pt;}
.x1e_c00120{left:621.186667pt;}
.x12_c00120{left:653.986667pt;}
.x7_c00120{left:658.213333pt;}
}





/* 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_c00121 {
    display:none;
  }
  .loading-indicator_c00121.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00121 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_c00121 { 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_c00121" -> "#page-container .classname_c00121")
 */
.pf_c00121 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00121 { /* 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_c00121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00121 { /* 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_c00121 { /* 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_c00121 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00121 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00121 {overflow:visible;}
  }
}
.c_c00121 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00121 { /* 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_c00121:after { /* webkit #35443 */
  content: '';
}
.t_c00121:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00121 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 */
}
.__c00121 { /* 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_c00121 { /* info for Javascript */
  display:none;
}
.l_c00121 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00121 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00121 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00121: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_c00121 {
    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_c00121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00121.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_c00121 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00121;src:url('chunks/assets/font_e877dd5d93f346a9329f5f03.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.284668;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_c00121;src:url('chunks/assets/font_f1d0bba36c198d97be0ff0bf.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.284180;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_c00121{transform:matrix(0.166873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166873,0.000000,0.000000,0.250000,0,0);}
.m1_c00121{transform:matrix(0.206787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206787,0.000000,0.000000,0.250000,0,0);}
.m5_c00121{transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);}
.m0_c00121{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);}
.m3_c00121{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m4_c00121{transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls72_c00121{letter-spacing:-2.814000px;}
.ls78_c00121{letter-spacing:-2.688000px;}
.ls8f_c00121{letter-spacing:-2.000100px;}
.ls9b_c00121{letter-spacing:-1.925520px;}
.ls8b_c00121{letter-spacing:-1.891620px;}
.ls86_c00121{letter-spacing:-1.844040px;}
.ls9f_c00121{letter-spacing:-1.835400px;}
.ls7b_c00121{letter-spacing:-1.807740px;}
.ls8e_c00121{letter-spacing:-1.796700px;}
.ls85_c00121{letter-spacing:-1.720620px;}
.ls9c_c00121{letter-spacing:-1.632960px;}
.ls75_c00121{letter-spacing:-1.403460px;}
.ls89_c00121{letter-spacing:-1.372140px;}
.ls83_c00121{letter-spacing:-1.357620px;}
.ls76_c00121{letter-spacing:-1.299540px;}
.ls93_c00121{letter-spacing:-1.292280px;}
.ls90_c00121{letter-spacing:-1.263240px;}
.ls8d_c00121{letter-spacing:-0.739020px;}
.ls81_c00121{letter-spacing:-0.671220px;}
.ls92_c00121{letter-spacing:-0.610200px;}
.ls71_c00121{letter-spacing:-0.467820px;}
.ls84_c00121{letter-spacing:-0.359340px;}
.ls99_c00121{letter-spacing:-0.339000px;}
.ls96_c00121{letter-spacing:-0.264420px;}
.ls98_c00121{letter-spacing:-0.257640px;}
.ls97_c00121{letter-spacing:-0.210180px;}
.ls8c_c00121{letter-spacing:-0.176280px;}
.ls82_c00121{letter-spacing:-0.162720px;}
.ls74_c00121{letter-spacing:-0.155940px;}
.ls88_c00121{letter-spacing:-0.145200px;}
.ls7e_c00121{letter-spacing:-0.128820px;}
.ls91_c00121{letter-spacing:-0.122040px;}
.ls7f_c00121{letter-spacing:-0.101700px;}
.ls7c_c00121{letter-spacing:-0.067800px;}
.ls6f_c00121{letter-spacing:0.000000px;}
.ls38_c00121{letter-spacing:0.020340px;}
.ls1e_c00121{letter-spacing:0.033900px;}
.ls2b_c00121{letter-spacing:0.040680px;}
.ls2d_c00121{letter-spacing:0.054240px;}
.ls9e_c00121{letter-spacing:0.061020px;}
.ls25_c00121{letter-spacing:0.081360px;}
.ls26_c00121{letter-spacing:0.128820px;}
.ls56_c00121{letter-spacing:0.189840px;}
.ls4f_c00121{letter-spacing:0.203400px;}
.ls9a_c00121{letter-spacing:0.210180px;}
.ls35_c00121{letter-spacing:0.216960px;}
.ls2a_c00121{letter-spacing:0.223740px;}
.ls27_c00121{letter-spacing:0.230520px;}
.ls5e_c00121{letter-spacing:0.237300px;}
.ls73_c00121{letter-spacing:0.257640px;}
.ls55_c00121{letter-spacing:0.271200px;}
.ls87_c00121{letter-spacing:0.284760px;}
.ls5a_c00121{letter-spacing:0.298320px;}
.ls58_c00121{letter-spacing:0.305100px;}
.ls3e_c00121{letter-spacing:0.311880px;}
.ls10_c00121{letter-spacing:0.325440px;}
.ls70_c00121{letter-spacing:0.332220px;}
.ls40_c00121{letter-spacing:0.339000px;}
.ls46_c00121{letter-spacing:0.352560px;}
.ls11_c00121{letter-spacing:0.359340px;}
.ls67_c00121{letter-spacing:0.372900px;}
.ls5d_c00121{letter-spacing:0.386460px;}
.ls16_c00121{letter-spacing:0.393240px;}
.ls3d_c00121{letter-spacing:0.413580px;}
.ls7d_c00121{letter-spacing:0.427140px;}
.ls94_c00121{letter-spacing:0.433920px;}
.lsd_c00121{letter-spacing:0.440700px;}
.ls6b_c00121{letter-spacing:0.454260px;}
.ls4a_c00121{letter-spacing:0.461040px;}
.ls63_c00121{letter-spacing:0.467820px;}
.ls43_c00121{letter-spacing:0.474600px;}
.ls30_c00121{letter-spacing:0.488160px;}
.ls14_c00121{letter-spacing:0.494940px;}
.lse_c00121{letter-spacing:0.501720px;}
.ls1f_c00121{letter-spacing:0.508500px;}
.ls4d_c00121{letter-spacing:0.528840px;}
.ls3c_c00121{letter-spacing:0.535620px;}
.ls54_c00121{letter-spacing:0.542400px;}
.ls50_c00121{letter-spacing:0.549180px;}
.ls22_c00121{letter-spacing:0.569520px;}
.ls2f_c00121{letter-spacing:0.583080px;}
.lsa_c00121{letter-spacing:0.589860px;}
.ls79_c00121{letter-spacing:0.596640px;}
.ls12_c00121{letter-spacing:0.603420px;}
.ls37_c00121{letter-spacing:0.610200px;}
.lsf_c00121{letter-spacing:0.623760px;}
.ls9_c00121{letter-spacing:0.630540px;}
.ls3_c00121{letter-spacing:0.637320px;}
.ls44_c00121{letter-spacing:0.644100px;}
.ls29_c00121{letter-spacing:0.650880px;}
.ls41_c00121{letter-spacing:0.657660px;}
.ls5b_c00121{letter-spacing:0.664440px;}
.ls1b_c00121{letter-spacing:0.671220px;}
.ls59_c00121{letter-spacing:0.678000px;}
.ls4c_c00121{letter-spacing:0.705120px;}
.ls21_c00121{letter-spacing:0.718680px;}
.ls1a_c00121{letter-spacing:0.739020px;}
.ls57_c00121{letter-spacing:0.745800px;}
.ls33_c00121{letter-spacing:0.772920px;}
.ls66_c00121{letter-spacing:0.779700px;}
.ls1c_c00121{letter-spacing:0.786480px;}
.ls28_c00121{letter-spacing:0.793260px;}
.ls23_c00121{letter-spacing:0.806820px;}
.ls2e_c00121{letter-spacing:0.813600px;}
.ls69_c00121{letter-spacing:0.819840px;}
.ls1d_c00121{letter-spacing:0.820380px;}
.ls77_c00121{letter-spacing:0.833940px;}
.ls8a_c00121{letter-spacing:0.840720px;}
.ls8_c00121{letter-spacing:0.854280px;}
.ls6a_c00121{letter-spacing:0.900480px;}
.ls18_c00121{letter-spacing:0.901740px;}
.ls48_c00121{letter-spacing:0.915300px;}
.ls62_c00121{letter-spacing:0.922080px;}
.ls95_c00121{letter-spacing:0.942420px;}
.ls6c_c00121{letter-spacing:0.962760px;}
.ls13_c00121{letter-spacing:1.017000px;}
.ls39_c00121{letter-spacing:1.030560px;}
.ls7a_c00121{letter-spacing:1.037340px;}
.ls7_c00121{letter-spacing:1.044120px;}
.ls4_c00121{letter-spacing:1.050900px;}
.ls20_c00121{letter-spacing:1.057680px;}
.ls9d_c00121{letter-spacing:1.081920px;}
.ls2c_c00121{letter-spacing:1.091580px;}
.ls0_c00121{letter-spacing:1.098360px;}
.ls5_c00121{letter-spacing:1.111920px;}
.ls19_c00121{letter-spacing:1.132260px;}
.ls60_c00121{letter-spacing:1.179720px;}
.ls53_c00121{letter-spacing:1.186500px;}
.ls3b_c00121{letter-spacing:1.240740px;}
.ls42_c00121{letter-spacing:1.247520px;}
.ls65_c00121{letter-spacing:1.254300px;}
.ls15_c00121{letter-spacing:1.281420px;}
.ls3f_c00121{letter-spacing:1.294980px;}
.ls6d_c00121{letter-spacing:1.356000px;}
.ls51_c00121{letter-spacing:1.376340px;}
.ls17_c00121{letter-spacing:1.410240px;}
.ls68_c00121{letter-spacing:1.444140px;}
.ls61_c00121{letter-spacing:1.450920px;}
.ls49_c00121{letter-spacing:1.464480px;}
.ls4e_c00121{letter-spacing:1.478040px;}
.ls47_c00121{letter-spacing:1.484820px;}
.ls45_c00121{letter-spacing:1.491600px;}
.ls31_c00121{letter-spacing:1.532280px;}
.ls52_c00121{letter-spacing:1.545840px;}
.lsc_c00121{letter-spacing:1.613640px;}
.lsb_c00121{letter-spacing:1.667880px;}
.ls32_c00121{letter-spacing:1.674660px;}
.ls6_c00121{letter-spacing:1.681440px;}
.ls6e_c00121{letter-spacing:1.714980px;}
.ls34_c00121{letter-spacing:1.742460px;}
.ls2_c00121{letter-spacing:1.762800px;}
.ls5c_c00121{letter-spacing:1.823820px;}
.ls24_c00121{letter-spacing:2.162820px;}
.ls1_c00121{letter-spacing:2.203500px;}
.ls64_c00121{letter-spacing:2.223840px;}
.ls5f_c00121{letter-spacing:2.332320px;}
.ls4b_c00121{letter-spacing:2.800140px;}
.ls3a_c00121{letter-spacing:3.356100px;}
.ls36_c00121{letter-spacing:3.376440px;}
.ls80_c00121{letter-spacing:3.390000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{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__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00121{word-spacing:0.000000px;}
.ws4_c00121{word-spacing:2.107320px;}
.ws0_c00121{word-spacing:2.126160px;}
.ws3_c00121{word-spacing:17.196240px;}
.ws2_c00121{word-spacing:19.122900px;}
.ws1_c00121{word-spacing:21.336000px;}
._b_c00121{margin-left:-4.898820px;}
._9_c00121{margin-left:-2.867940px;}
._a_c00121{margin-left:-1.084800px;}
._14_c00121{width:1.741500px;}
._8_c00121{width:3.010320px;}
._12_c00121{width:4.257840px;}
._c_c00121{width:5.779200px;}
._16_c00121{width:7.096740px;}
._11_c00121{width:8.583480px;}
._13_c00121{width:10.269060px;}
._10_c00121{width:11.376840px;}
._e_c00121{width:12.570120px;}
._15_c00121{width:13.600680px;}
._f_c00121{width:14.678700px;}
._d_c00121{width:15.878760px;}
._4_c00121{width:17.614440px;}
._17_c00121{width:18.756000px;}
._0_c00121{width:20.068800px;}
._2_c00121{width:21.187500px;}
._3_c00121{width:22.211280px;}
._5_c00121{width:23.214720px;}
._1_c00121{width:24.896160px;}
._6_c00121{width:26.035200px;}
._7_c00121{width:27.798000px;}
.fc0_c00121{color:transparent;}
.fs7_c00121{font-size:57.000000px;}
.fs0_c00121{font-size:60.600000px;}
.fs6_c00121{font-size:67.200000px;}
.fs1_c00121{font-size:67.800000px;}
.fs4_c00121{font-size:72.600000px;}
.fs5_c00121{font-size:76.800000px;}
.fs3_c00121{font-size:78.600000px;}
.fs2_c00121{font-size:80.400000px;}
.y0_c00121{bottom:0.000000px;}
.y1c_c00121{bottom:73.095015px;}
.y1b_c00121{bottom:150.477165px;}
.y1a_c00121{bottom:180.360015px;}
.y19_c00121{bottom:211.695465px;}
.y18_c00121{bottom:243.352515px;}
.y17_c00121{bottom:274.320165px;}
.y16_c00121{bottom:305.287815px;}
.y15_c00121{bottom:336.611415px;}
.y14_c00121{bottom:367.935015px;}
.y13_c00121{bottom:430.920015px;}
.y12_c00121{bottom:493.924215px;}
.y11_c00121{bottom:556.215465px;}
.y10_c00121{bottom:587.895015px;}
.yf_c00121{bottom:649.811415px;}
.ye_c00121{bottom:681.135015px;}
.yd_c00121{bottom:743.758515px;}
.yc_c00121{bottom:775.455015px;}
.ya_c00121{bottom:838.085715px;}
.yb_c00121{bottom:838.095015px;}
.y9_c00121{bottom:869.409315px;}
.y8_c00121{bottom:900.360015px;}
.y7_c00121{bottom:961.935015px;}
.y6_c00121{bottom:993.975015px;}
.y5_c00121{bottom:1056.611415px;}
.y4_c00121{bottom:1087.935015px;}
.y3_c00121{bottom:1087.935465px;}
.y2_c00121{bottom:1119.615015px;}
.y1_c00121{bottom:1194.840015px;}
.h9_c00121{height:55.942383px;}
.h2_c00121{height:59.475586px;}
.h3_c00121{height:66.541992px;}
.h8_c00121{height:66.631992px;}
.h6_c00121{height:71.217480px;}
.h7_c00121{height:75.375000px;}
.h5_c00121{height:77.156002px;}
.h4_c00121{height:78.908203px;}
.h1_c00121{height:1263.000000px;}
.h0_c00121{height:1263.240015px;}
.w1_c00121{width:892.500000px;}
.w0_c00121{width:892.800015px;}
.x0_c00121{left:0.000000px;}
.x11_c00121{left:122.970615px;}
.xe_c00121{left:124.178115px;}
.x1_c00121{left:125.205015px;}
.x7_c00121{left:170.910015px;}
.xb_c00121{left:178.005015px;}
.x4_c00121{left:179.085015px;}
.xf_c00121{left:265.245015px;}
.x10_c00121{left:294.030015px;}
.xa_c00121{left:308.325015px;}
.xc_c00121{left:345.135015px;}
.x8_c00121{left:356.220015px;}
.xd_c00121{left:368.970015px;}
.x9_c00121{left:377.100015px;}
.x12_c00121{left:425.745015px;}
.x5_c00121{left:499.950015px;}
.x6_c00121{left:531.555015px;}
.x2_c00121{left:694.725015px;}
.x3_c00121{left:723.060015px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls72_c00121{letter-spacing:-2.501333pt;}
.ls78_c00121{letter-spacing:-2.389333pt;}
.ls8f_c00121{letter-spacing:-1.777867pt;}
.ls9b_c00121{letter-spacing:-1.711573pt;}
.ls8b_c00121{letter-spacing:-1.681440pt;}
.ls86_c00121{letter-spacing:-1.639147pt;}
.ls9f_c00121{letter-spacing:-1.631467pt;}
.ls7b_c00121{letter-spacing:-1.606880pt;}
.ls8e_c00121{letter-spacing:-1.597067pt;}
.ls85_c00121{letter-spacing:-1.529440pt;}
.ls9c_c00121{letter-spacing:-1.451520pt;}
.ls75_c00121{letter-spacing:-1.247520pt;}
.ls89_c00121{letter-spacing:-1.219680pt;}
.ls83_c00121{letter-spacing:-1.206773pt;}
.ls76_c00121{letter-spacing:-1.155147pt;}
.ls93_c00121{letter-spacing:-1.148693pt;}
.ls90_c00121{letter-spacing:-1.122880pt;}
.ls8d_c00121{letter-spacing:-0.656907pt;}
.ls81_c00121{letter-spacing:-0.596640pt;}
.ls92_c00121{letter-spacing:-0.542400pt;}
.ls71_c00121{letter-spacing:-0.415840pt;}
.ls84_c00121{letter-spacing:-0.319413pt;}
.ls99_c00121{letter-spacing:-0.301333pt;}
.ls96_c00121{letter-spacing:-0.235040pt;}
.ls98_c00121{letter-spacing:-0.229013pt;}
.ls97_c00121{letter-spacing:-0.186827pt;}
.ls8c_c00121{letter-spacing:-0.156693pt;}
.ls82_c00121{letter-spacing:-0.144640pt;}
.ls74_c00121{letter-spacing:-0.138613pt;}
.ls88_c00121{letter-spacing:-0.129067pt;}
.ls7e_c00121{letter-spacing:-0.114507pt;}
.ls91_c00121{letter-spacing:-0.108480pt;}
.ls7f_c00121{letter-spacing:-0.090400pt;}
.ls7c_c00121{letter-spacing:-0.060267pt;}
.ls6f_c00121{letter-spacing:0.000000pt;}
.ls38_c00121{letter-spacing:0.018080pt;}
.ls1e_c00121{letter-spacing:0.030133pt;}
.ls2b_c00121{letter-spacing:0.036160pt;}
.ls2d_c00121{letter-spacing:0.048213pt;}
.ls9e_c00121{letter-spacing:0.054240pt;}
.ls25_c00121{letter-spacing:0.072320pt;}
.ls26_c00121{letter-spacing:0.114507pt;}
.ls56_c00121{letter-spacing:0.168747pt;}
.ls4f_c00121{letter-spacing:0.180800pt;}
.ls9a_c00121{letter-spacing:0.186827pt;}
.ls35_c00121{letter-spacing:0.192853pt;}
.ls2a_c00121{letter-spacing:0.198880pt;}
.ls27_c00121{letter-spacing:0.204907pt;}
.ls5e_c00121{letter-spacing:0.210933pt;}
.ls73_c00121{letter-spacing:0.229013pt;}
.ls55_c00121{letter-spacing:0.241067pt;}
.ls87_c00121{letter-spacing:0.253120pt;}
.ls5a_c00121{letter-spacing:0.265173pt;}
.ls58_c00121{letter-spacing:0.271200pt;}
.ls3e_c00121{letter-spacing:0.277227pt;}
.ls10_c00121{letter-spacing:0.289280pt;}
.ls70_c00121{letter-spacing:0.295307pt;}
.ls40_c00121{letter-spacing:0.301333pt;}
.ls46_c00121{letter-spacing:0.313387pt;}
.ls11_c00121{letter-spacing:0.319413pt;}
.ls67_c00121{letter-spacing:0.331467pt;}
.ls5d_c00121{letter-spacing:0.343520pt;}
.ls16_c00121{letter-spacing:0.349547pt;}
.ls3d_c00121{letter-spacing:0.367627pt;}
.ls7d_c00121{letter-spacing:0.379680pt;}
.ls94_c00121{letter-spacing:0.385707pt;}
.lsd_c00121{letter-spacing:0.391733pt;}
.ls6b_c00121{letter-spacing:0.403787pt;}
.ls4a_c00121{letter-spacing:0.409813pt;}
.ls63_c00121{letter-spacing:0.415840pt;}
.ls43_c00121{letter-spacing:0.421867pt;}
.ls30_c00121{letter-spacing:0.433920pt;}
.ls14_c00121{letter-spacing:0.439947pt;}
.lse_c00121{letter-spacing:0.445973pt;}
.ls1f_c00121{letter-spacing:0.452000pt;}
.ls4d_c00121{letter-spacing:0.470080pt;}
.ls3c_c00121{letter-spacing:0.476107pt;}
.ls54_c00121{letter-spacing:0.482133pt;}
.ls50_c00121{letter-spacing:0.488160pt;}
.ls22_c00121{letter-spacing:0.506240pt;}
.ls2f_c00121{letter-spacing:0.518293pt;}
.lsa_c00121{letter-spacing:0.524320pt;}
.ls79_c00121{letter-spacing:0.530347pt;}
.ls12_c00121{letter-spacing:0.536373pt;}
.ls37_c00121{letter-spacing:0.542400pt;}
.lsf_c00121{letter-spacing:0.554453pt;}
.ls9_c00121{letter-spacing:0.560480pt;}
.ls3_c00121{letter-spacing:0.566507pt;}
.ls44_c00121{letter-spacing:0.572533pt;}
.ls29_c00121{letter-spacing:0.578560pt;}
.ls41_c00121{letter-spacing:0.584587pt;}
.ls5b_c00121{letter-spacing:0.590613pt;}
.ls1b_c00121{letter-spacing:0.596640pt;}
.ls59_c00121{letter-spacing:0.602667pt;}
.ls4c_c00121{letter-spacing:0.626773pt;}
.ls21_c00121{letter-spacing:0.638827pt;}
.ls1a_c00121{letter-spacing:0.656907pt;}
.ls57_c00121{letter-spacing:0.662933pt;}
.ls33_c00121{letter-spacing:0.687040pt;}
.ls66_c00121{letter-spacing:0.693067pt;}
.ls1c_c00121{letter-spacing:0.699093pt;}
.ls28_c00121{letter-spacing:0.705120pt;}
.ls23_c00121{letter-spacing:0.717173pt;}
.ls2e_c00121{letter-spacing:0.723200pt;}
.ls69_c00121{letter-spacing:0.728747pt;}
.ls1d_c00121{letter-spacing:0.729227pt;}
.ls77_c00121{letter-spacing:0.741280pt;}
.ls8a_c00121{letter-spacing:0.747307pt;}
.ls8_c00121{letter-spacing:0.759360pt;}
.ls6a_c00121{letter-spacing:0.800427pt;}
.ls18_c00121{letter-spacing:0.801547pt;}
.ls48_c00121{letter-spacing:0.813600pt;}
.ls62_c00121{letter-spacing:0.819627pt;}
.ls95_c00121{letter-spacing:0.837707pt;}
.ls6c_c00121{letter-spacing:0.855787pt;}
.ls13_c00121{letter-spacing:0.904000pt;}
.ls39_c00121{letter-spacing:0.916053pt;}
.ls7a_c00121{letter-spacing:0.922080pt;}
.ls7_c00121{letter-spacing:0.928107pt;}
.ls4_c00121{letter-spacing:0.934133pt;}
.ls20_c00121{letter-spacing:0.940160pt;}
.ls9d_c00121{letter-spacing:0.961707pt;}
.ls2c_c00121{letter-spacing:0.970293pt;}
.ls0_c00121{letter-spacing:0.976320pt;}
.ls5_c00121{letter-spacing:0.988373pt;}
.ls19_c00121{letter-spacing:1.006453pt;}
.ls60_c00121{letter-spacing:1.048640pt;}
.ls53_c00121{letter-spacing:1.054667pt;}
.ls3b_c00121{letter-spacing:1.102880pt;}
.ls42_c00121{letter-spacing:1.108907pt;}
.ls65_c00121{letter-spacing:1.114933pt;}
.ls15_c00121{letter-spacing:1.139040pt;}
.ls3f_c00121{letter-spacing:1.151093pt;}
.ls6d_c00121{letter-spacing:1.205333pt;}
.ls51_c00121{letter-spacing:1.223413pt;}
.ls17_c00121{letter-spacing:1.253547pt;}
.ls68_c00121{letter-spacing:1.283680pt;}
.ls61_c00121{letter-spacing:1.289707pt;}
.ls49_c00121{letter-spacing:1.301760pt;}
.ls4e_c00121{letter-spacing:1.313813pt;}
.ls47_c00121{letter-spacing:1.319840pt;}
.ls45_c00121{letter-spacing:1.325867pt;}
.ls31_c00121{letter-spacing:1.362027pt;}
.ls52_c00121{letter-spacing:1.374080pt;}
.lsc_c00121{letter-spacing:1.434347pt;}
.lsb_c00121{letter-spacing:1.482560pt;}
.ls32_c00121{letter-spacing:1.488587pt;}
.ls6_c00121{letter-spacing:1.494613pt;}
.ls6e_c00121{letter-spacing:1.524427pt;}
.ls34_c00121{letter-spacing:1.548853pt;}
.ls2_c00121{letter-spacing:1.566933pt;}
.ls5c_c00121{letter-spacing:1.621173pt;}
.ls24_c00121{letter-spacing:1.922507pt;}
.ls1_c00121{letter-spacing:1.958667pt;}
.ls64_c00121{letter-spacing:1.976747pt;}
.ls5f_c00121{letter-spacing:2.073173pt;}
.ls4b_c00121{letter-spacing:2.489013pt;}
.ls3a_c00121{letter-spacing:2.983200pt;}
.ls36_c00121{letter-spacing:3.001280pt;}
.ls80_c00121{letter-spacing:3.013333pt;}
.ws5_c00121{word-spacing:0.000000pt;}
.ws4_c00121{word-spacing:1.873173pt;}
.ws0_c00121{word-spacing:1.889920pt;}
.ws3_c00121{word-spacing:15.285547pt;}
.ws2_c00121{word-spacing:16.998133pt;}
.ws1_c00121{word-spacing:18.965333pt;}
._b_c00121{margin-left:-4.354507pt;}
._9_c00121{margin-left:-2.549280pt;}
._a_c00121{margin-left:-0.964267pt;}
._14_c00121{width:1.548000pt;}
._8_c00121{width:2.675840pt;}
._12_c00121{width:3.784747pt;}
._c_c00121{width:5.137067pt;}
._16_c00121{width:6.308213pt;}
._11_c00121{width:7.629760pt;}
._13_c00121{width:9.128053pt;}
._10_c00121{width:10.112747pt;}
._e_c00121{width:11.173440pt;}
._15_c00121{width:12.089493pt;}
._f_c00121{width:13.047733pt;}
._d_c00121{width:14.114453pt;}
._4_c00121{width:15.657280pt;}
._17_c00121{width:16.672000pt;}
._0_c00121{width:17.838933pt;}
._2_c00121{width:18.833333pt;}
._3_c00121{width:19.743360pt;}
._5_c00121{width:20.635307pt;}
._1_c00121{width:22.129920pt;}
._6_c00121{width:23.142400pt;}
._7_c00121{width:24.709333pt;}
.fs7_c00121{font-size:50.666667pt;}
.fs0_c00121{font-size:53.866667pt;}
.fs6_c00121{font-size:59.733333pt;}
.fs1_c00121{font-size:60.266667pt;}
.fs4_c00121{font-size:64.533333pt;}
.fs5_c00121{font-size:68.266667pt;}
.fs3_c00121{font-size:69.866667pt;}
.fs2_c00121{font-size:71.466667pt;}
.y0_c00121{bottom:0.000000pt;}
.y1c_c00121{bottom:64.973347pt;}
.y1b_c00121{bottom:133.757480pt;}
.y1a_c00121{bottom:160.320013pt;}
.y19_c00121{bottom:188.173747pt;}
.y18_c00121{bottom:216.313347pt;}
.y17_c00121{bottom:243.840147pt;}
.y16_c00121{bottom:271.366947pt;}
.y15_c00121{bottom:299.210147pt;}
.y14_c00121{bottom:327.053347pt;}
.y13_c00121{bottom:383.040013pt;}
.y12_c00121{bottom:439.043747pt;}
.y11_c00121{bottom:494.413747pt;}
.y10_c00121{bottom:522.573347pt;}
.yf_c00121{bottom:577.610147pt;}
.ye_c00121{bottom:605.453347pt;}
.yd_c00121{bottom:661.118680pt;}
.yc_c00121{bottom:689.293347pt;}
.ya_c00121{bottom:744.965080pt;}
.yb_c00121{bottom:744.973347pt;}
.y9_c00121{bottom:772.808280pt;}
.y8_c00121{bottom:800.320013pt;}
.y7_c00121{bottom:855.053347pt;}
.y6_c00121{bottom:883.533347pt;}
.y5_c00121{bottom:939.210147pt;}
.y4_c00121{bottom:967.053347pt;}
.y3_c00121{bottom:967.053747pt;}
.y2_c00121{bottom:995.213347pt;}
.y1_c00121{bottom:1062.080013pt;}
.h9_c00121{height:49.726562pt;}
.h2_c00121{height:52.867187pt;}
.h3_c00121{height:59.148438pt;}
.h8_c00121{height:59.228438pt;}
.h6_c00121{height:63.304427pt;}
.h7_c00121{height:67.000000pt;}
.h5_c00121{height:68.583113pt;}
.h4_c00121{height:70.140625pt;}
.h1_c00121{height:1122.666667pt;}
.h0_c00121{height:1122.880013pt;}
.w1_c00121{width:793.333333pt;}
.w0_c00121{width:793.600013pt;}
.x0_c00121{left:0.000000pt;}
.x11_c00121{left:109.307213pt;}
.xe_c00121{left:110.380547pt;}
.x1_c00121{left:111.293347pt;}
.x7_c00121{left:151.920013pt;}
.xb_c00121{left:158.226680pt;}
.x4_c00121{left:159.186680pt;}
.xf_c00121{left:235.773347pt;}
.x10_c00121{left:261.360013pt;}
.xa_c00121{left:274.066680pt;}
.xc_c00121{left:306.786680pt;}
.x8_c00121{left:316.640013pt;}
.xd_c00121{left:327.973347pt;}
.x9_c00121{left:335.200013pt;}
.x12_c00121{left:378.440013pt;}
.x5_c00121{left:444.400013pt;}
.x6_c00121{left:472.493347pt;}
.x2_c00121{left:617.533347pt;}
.x3_c00121{left:642.720013pt;}
}





/* 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_c00122 {
    display:none;
  }
  .loading-indicator_c00122.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00122 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_c00122 { 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_c00122" -> "#page-container .classname_c00122")
 */
.pf_c00122 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00122 { /* 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_c00122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00122 { /* 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_c00122 { /* 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_c00122 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00122 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00122 {overflow:visible;}
  }
}
.c_c00122 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00122 { /* 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_c00122:after { /* webkit #35443 */
  content: '';
}
.t_c00122:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00122 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 */
}
.__c00122 { /* 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_c00122 { /* info for Javascript */
  display:none;
}
.l_c00122 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00122 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00122 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00122: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_c00122 {
    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_c00122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00122.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_c00122 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00122;src:url('chunks/assets/font_2fabf42f9a465a0a4cc86380.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;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:ff2_c00122;src:url('chunks/assets/font_068dbdf2b809a5a1ceadba41.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.284180;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_c00122;src:url('chunks/assets/font_67883095998ff7798392d647.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.284668;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_c00122{transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);}
.m2_c00122{transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);}
.m3_c00122{transform:matrix(0.176269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176269,0.000000,0.000000,0.250000,0,0);}
.mb_c00122{transform:matrix(0.206787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206787,0.000000,0.000000,0.250000,0,0);}
.mc_c00122{transform:matrix(0.234174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234174,0.000000,0.000000,0.250000,0,0);}
.m7_c00122{transform:matrix(0.244059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244059,0.000000,0.000000,0.250000,0,0);}
.m6_c00122{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m9_c00122{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m8_c00122{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.ma_c00122{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m0_c00122{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_c00122{transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);}
.m5_c00122{transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls94_c00122{letter-spacing:-2.814000px;}
.ls60_c00122{letter-spacing:-2.688000px;}
.ls75_c00122{letter-spacing:-2.583000px;}
.ls6c_c00122{letter-spacing:-2.415000px;}
.ls62_c00122{letter-spacing:-2.247000px;}
.ls6b_c00122{letter-spacing:-2.169720px;}
.ls97_c00122{letter-spacing:-1.995000px;}
.ls7f_c00122{letter-spacing:-1.959600px;}
.ls80_c00122{letter-spacing:-1.911300px;}
.ls86_c00122{letter-spacing:-1.497300px;}
.ls7a_c00122{letter-spacing:-1.463040px;}
.ls81_c00122{letter-spacing:-1.283400px;}
.ls7b_c00122{letter-spacing:-1.257300px;}
.ls6f_c00122{letter-spacing:-1.235100px;}
.ls6e_c00122{letter-spacing:-1.090200px;}
.ls83_c00122{letter-spacing:-1.062600px;}
.ls64_c00122{letter-spacing:-1.014300px;}
.ls63_c00122{letter-spacing:-1.000500px;}
.ls84_c00122{letter-spacing:-0.952200px;}
.ls89_c00122{letter-spacing:-0.862500px;}
.ls66_c00122{letter-spacing:-0.821100px;}
.ls8a_c00122{letter-spacing:-0.814200px;}
.ls70_c00122{letter-spacing:-0.800400px;}
.ls73_c00122{letter-spacing:-0.676200px;}
.ls8b_c00122{letter-spacing:-0.552000px;}
.ls82_c00122{letter-spacing:-0.503700px;}
.ls90_c00122{letter-spacing:-0.483000px;}
.ls8e_c00122{letter-spacing:-0.448500px;}
.ls95_c00122{letter-spacing:-0.345000px;}
.ls5f_c00122{letter-spacing:-0.331200px;}
.ls88_c00122{letter-spacing:-0.324300px;}
.ls77_c00122{letter-spacing:-0.310500px;}
.ls91_c00122{letter-spacing:-0.276000px;}
.ls61_c00122{letter-spacing:-0.262200px;}
.ls7e_c00122{letter-spacing:-0.241500px;}
.ls92_c00122{letter-spacing:-0.234600px;}
.ls6d_c00122{letter-spacing:-0.220800px;}
.ls7c_c00122{letter-spacing:-0.200100px;}
.ls65_c00122{letter-spacing:-0.193200px;}
.ls8d_c00122{letter-spacing:-0.172500px;}
.ls8f_c00122{letter-spacing:-0.158700px;}
.ls76_c00122{letter-spacing:-0.151800px;}
.ls8c_c00122{letter-spacing:-0.144900px;}
.ls71_c00122{letter-spacing:-0.117300px;}
.ls6a_c00122{letter-spacing:-0.103500px;}
.ls93_c00122{letter-spacing:-0.069000px;}
.ls96_c00122{letter-spacing:-0.055200px;}
.ls85_c00122{letter-spacing:-0.048300px;}
.ls7d_c00122{letter-spacing:-0.041400px;}
.ls67_c00122{letter-spacing:-0.027600px;}
.ls69_c00122{letter-spacing:0.000000px;}
.ls21_c00122{letter-spacing:0.013800px;}
.ls14_c00122{letter-spacing:0.020700px;}
.ls3_c00122{letter-spacing:0.027600px;}
.ls2e_c00122{letter-spacing:0.034500px;}
.ls2_c00122{letter-spacing:0.041400px;}
.lsa_c00122{letter-spacing:0.055200px;}
.ls3c_c00122{letter-spacing:0.062100px;}
.ls32_c00122{letter-spacing:0.082800px;}
.ls53_c00122{letter-spacing:0.096600px;}
.ls54_c00122{letter-spacing:0.110400px;}
.ls38_c00122{letter-spacing:0.117300px;}
.ls33_c00122{letter-spacing:0.144900px;}
.ls5b_c00122{letter-spacing:0.158700px;}
.ls52_c00122{letter-spacing:0.165600px;}
.ls1c_c00122{letter-spacing:0.179400px;}
.ls17_c00122{letter-spacing:0.186300px;}
.ls4e_c00122{letter-spacing:0.193200px;}
.ls50_c00122{letter-spacing:0.207000px;}
.ls44_c00122{letter-spacing:0.220800px;}
.ls22_c00122{letter-spacing:0.234600px;}
.lsb_c00122{letter-spacing:0.241500px;}
.lsc_c00122{letter-spacing:0.248400px;}
.ls6_c00122{letter-spacing:0.255300px;}
.ls78_c00122{letter-spacing:0.262200px;}
.ls74_c00122{letter-spacing:0.282900px;}
.ls45_c00122{letter-spacing:0.289800px;}
.ls40_c00122{letter-spacing:0.303600px;}
.ls4d_c00122{letter-spacing:0.310500px;}
.ls79_c00122{letter-spacing:0.317400px;}
.ls19_c00122{letter-spacing:0.331200px;}
.ls8_c00122{letter-spacing:0.351900px;}
.lsd_c00122{letter-spacing:0.358800px;}
.ls28_c00122{letter-spacing:0.365700px;}
.ls68_c00122{letter-spacing:0.379500px;}
.ls1a_c00122{letter-spacing:0.386400px;}
.ls47_c00122{letter-spacing:0.393300px;}
.ls26_c00122{letter-spacing:0.400200px;}
.ls43_c00122{letter-spacing:0.407100px;}
.ls1_c00122{letter-spacing:0.414000px;}
.ls7_c00122{letter-spacing:0.427800px;}
.ls11_c00122{letter-spacing:0.434700px;}
.ls12_c00122{letter-spacing:0.441600px;}
.ls1b_c00122{letter-spacing:0.448500px;}
.ls2a_c00122{letter-spacing:0.462300px;}
.ls5_c00122{letter-spacing:0.476100px;}
.ls1e_c00122{letter-spacing:0.496800px;}
.ls31_c00122{letter-spacing:0.503700px;}
.ls3d_c00122{letter-spacing:0.531300px;}
.ls20_c00122{letter-spacing:0.552000px;}
.ls49_c00122{letter-spacing:0.558900px;}
.ls10_c00122{letter-spacing:0.565800px;}
.ls3b_c00122{letter-spacing:0.572700px;}
.ls15_c00122{letter-spacing:0.586500px;}
.ls23_c00122{letter-spacing:0.621000px;}
.ls16_c00122{letter-spacing:0.627900px;}
.ls25_c00122{letter-spacing:0.641700px;}
.ls5d_c00122{letter-spacing:0.662400px;}
.ls56_c00122{letter-spacing:0.676200px;}
.ls37_c00122{letter-spacing:0.683100px;}
.ls30_c00122{letter-spacing:0.696900px;}
.ls59_c00122{letter-spacing:0.703800px;}
.ls57_c00122{letter-spacing:0.717600px;}
.ls0_c00122{letter-spacing:0.738300px;}
.ls42_c00122{letter-spacing:0.745200px;}
.ls3e_c00122{letter-spacing:0.807300px;}
.ls36_c00122{letter-spacing:0.821100px;}
.ls3f_c00122{letter-spacing:0.848700px;}
.ls34_c00122{letter-spacing:0.855600px;}
.ls51_c00122{letter-spacing:0.862500px;}
.ls55_c00122{letter-spacing:0.876300px;}
.ls35_c00122{letter-spacing:0.903900px;}
.ls18_c00122{letter-spacing:0.910800px;}
.lsf_c00122{letter-spacing:0.924600px;}
.ls58_c00122{letter-spacing:0.938400px;}
.ls5a_c00122{letter-spacing:0.952200px;}
.ls48_c00122{letter-spacing:0.972900px;}
.ls72_c00122{letter-spacing:1.000500px;}
.ls3a_c00122{letter-spacing:1.007400px;}
.ls1f_c00122{letter-spacing:1.041900px;}
.ls4_c00122{letter-spacing:1.055700px;}
.ls13_c00122{letter-spacing:1.097100px;}
.ls2c_c00122{letter-spacing:1.104000px;}
.ls9_c00122{letter-spacing:1.193700px;}
.ls2f_c00122{letter-spacing:1.214400px;}
.ls39_c00122{letter-spacing:1.228200px;}
.ls4f_c00122{letter-spacing:1.311000px;}
.ls4c_c00122{letter-spacing:1.324800px;}
.ls46_c00122{letter-spacing:1.359300px;}
.ls29_c00122{letter-spacing:1.435200px;}
.ls24_c00122{letter-spacing:1.469700px;}
.ls4a_c00122{letter-spacing:1.490400px;}
.ls87_c00122{letter-spacing:1.642200px;}
.ls27_c00122{letter-spacing:1.718100px;}
.ls5c_c00122{letter-spacing:1.821660px;}
.ls2b_c00122{letter-spacing:1.842300px;}
.ls4b_c00122{letter-spacing:2.028600px;}
.ls2d_c00122{letter-spacing:2.056200px;}
.ls41_c00122{letter-spacing:2.083800px;}
.ls1d_c00122{letter-spacing:2.539200px;}
.lse_c00122{letter-spacing:3.284400px;}
.ls5e_c00122{letter-spacing:3.450000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{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__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00122{word-spacing:0.000000px;}
.ws0_c00122{word-spacing:4.485000px;}
.ws3_c00122{word-spacing:10.943400px;}
.ws1_c00122{word-spacing:20.831100px;}
.ws2_c00122{word-spacing:23.460000px;}
._6_c00122{margin-left:-9.802500px;}
._13_c00122{margin-left:-6.000600px;}
._0_c00122{margin-left:-4.091700px;}
._4_c00122{margin-left:-2.921100px;}
._3_c00122{margin-left:-1.352400px;}
._5_c00122{width:1.232700px;}
._2_c00122{width:2.631300px;}
._1_c00122{width:4.236600px;}
._7_c00122{width:5.904000px;}
._d_c00122{width:7.396800px;}
._c_c00122{width:8.556000px;}
._9_c00122{width:9.915300px;}
._8_c00122{width:10.998600px;}
._b_c00122{width:12.134700px;}
._12_c00122{width:13.335300px;}
._a_c00122{width:15.141000px;}
._f_c00122{width:16.215000px;}
._11_c00122{width:20.389500px;}
._e_c00122{width:22.438800px;}
._10_c00122{width:23.929200px;}
._15_c00122{width:25.026300px;}
._14_c00122{width:27.379200px;}
.fc0_c00122{color:transparent;}
.fs9_c00122{font-size:57.000000px;}
.fs0_c00122{font-size:58.200000px;}
.fs3_c00122{font-size:64.200000px;}
.fs8_c00122{font-size:67.200000px;}
.fs1_c00122{font-size:69.000000px;}
.fs6_c00122{font-size:73.200000px;}
.fs4_c00122{font-size:73.800000px;}
.fs5_c00122{font-size:76.200000px;}
.fs2_c00122{font-size:76.800000px;}
.fs7_c00122{font-size:80.400000px;}
.y0_c00122{bottom:0.000000px;}
.y22_c00122{bottom:70.200000px;}
.y21_c00122{bottom:145.085250px;}
.y20_c00122{bottom:207.363000px;}
.y1f_c00122{bottom:238.689000px;}
.y1d_c00122{bottom:270.001500px;}
.y1e_c00122{bottom:270.015000px;}
.y1c_c00122{bottom:302.034750px;}
.y1b_c00122{bottom:333.360750px;}
.y1a_c00122{bottom:365.049000px;}
.y19_c00122{bottom:396.720000px;}
.y18_c00122{bottom:459.375000px;}
.y17_c00122{bottom:459.380250px;}
.y16_c00122{bottom:489.981750px;}
.y15_c00122{bottom:522.015000px;}
.y14_c00122{bottom:522.022500px;}
.y12_c00122{bottom:584.292000px;}
.y13_c00122{bottom:584.295000px;}
.y11_c00122{bottom:646.202250px;}
.y10_c00122{bottom:678.615000px;}
.yf_c00122{bottom:740.886750px;}
.ye_c00122{bottom:772.920000px;}
.yd_c00122{bottom:835.560000px;}
.yc_c00122{bottom:867.234000px;}
.yb_c00122{bottom:898.560000px;}
.ya_c00122{bottom:898.565250px;}
.y8_c00122{bottom:960.851250px;}
.y9_c00122{bottom:960.855000px;}
.y7_c00122{bottom:991.815000px;}
.y6_c00122{bottom:991.816500px;}
.y5_c00122{bottom:1054.434000px;}
.y4_c00122{bottom:1085.760000px;}
.y3_c00122{bottom:1085.762250px;}
.y2_c00122{bottom:1118.175000px;}
.y1_c00122{bottom:1194.495000px;}
.hf_c00122{height:59.449219px;}
.h2_c00122{height:60.700781px;}
.h6_c00122{height:66.958594px;}
.h3_c00122{height:67.686035px;}
.hb_c00122{height:67.689727px;}
.h4_c00122{height:67.719727px;}
.he_c00122{height:70.135500px;}
.h8_c00122{height:71.964844px;}
.h9_c00122{height:72.430664px;}
.h7_c00122{height:72.445664px;}
.ha_c00122{height:74.748926px;}
.h5_c00122{height:75.375000px;}
.hc_c00122{height:76.399312px;}
.hd_c00122{height:78.908203px;}
.h1_c00122{height:1263.000000px;}
.h0_c00122{height:1263.240000px;}
.w1_c00122{width:892.500000px;}
.w0_c00122{width:892.800000px;}
.x0_c00122{left:0.000000px;}
.x1d_c00122{left:120.255000px;}
.x13_c00122{left:121.485750px;}
.xe_c00122{left:123.097500px;}
.x7_c00122{left:124.490250px;}
.x1_c00122{left:125.670000px;}
.x8_c00122{left:147.150000px;}
.x1f_c00122{left:174.396750px;}
.x18_c00122{left:175.479750px;}
.x12_c00122{left:176.565000px;}
.xb_c00122{left:177.647250px;}
.x2_c00122{left:179.085000px;}
.x14_c00122{left:277.380000px;}
.x3_c00122{left:284.745000px;}
.x10_c00122{left:290.685000px;}
.xf_c00122{left:294.660000px;}
.x4_c00122{left:310.860000px;}
.x11_c00122{left:315.945000px;}
.x15_c00122{left:399.360000px;}
.x16_c00122{left:424.245000px;}
.x20_c00122{left:425.445000px;}
.x9_c00122{left:441.300000px;}
.x17_c00122{left:451.980000px;}
.xa_c00122{left:472.950000px;}
.x5_c00122{left:562.620000px;}
.x6_c00122{left:594.570000px;}
.x1b_c00122{left:629.445000px;}
.x1e_c00122{left:634.965000px;}
.x19_c00122{left:651.765000px;}
.x1c_c00122{left:658.200000px;}
.xc_c00122{left:663.300000px;}
.x1a_c00122{left:677.340000px;}
.xd_c00122{left:685.275000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls94_c00122{letter-spacing:-2.501333pt;}
.ls60_c00122{letter-spacing:-2.389333pt;}
.ls75_c00122{letter-spacing:-2.296000pt;}
.ls6c_c00122{letter-spacing:-2.146667pt;}
.ls62_c00122{letter-spacing:-1.997333pt;}
.ls6b_c00122{letter-spacing:-1.928640pt;}
.ls97_c00122{letter-spacing:-1.773333pt;}
.ls7f_c00122{letter-spacing:-1.741867pt;}
.ls80_c00122{letter-spacing:-1.698933pt;}
.ls86_c00122{letter-spacing:-1.330933pt;}
.ls7a_c00122{letter-spacing:-1.300480pt;}
.ls81_c00122{letter-spacing:-1.140800pt;}
.ls7b_c00122{letter-spacing:-1.117600pt;}
.ls6f_c00122{letter-spacing:-1.097867pt;}
.ls6e_c00122{letter-spacing:-0.969067pt;}
.ls83_c00122{letter-spacing:-0.944533pt;}
.ls64_c00122{letter-spacing:-0.901600pt;}
.ls63_c00122{letter-spacing:-0.889333pt;}
.ls84_c00122{letter-spacing:-0.846400pt;}
.ls89_c00122{letter-spacing:-0.766667pt;}
.ls66_c00122{letter-spacing:-0.729867pt;}
.ls8a_c00122{letter-spacing:-0.723733pt;}
.ls70_c00122{letter-spacing:-0.711467pt;}
.ls73_c00122{letter-spacing:-0.601067pt;}
.ls8b_c00122{letter-spacing:-0.490667pt;}
.ls82_c00122{letter-spacing:-0.447733pt;}
.ls90_c00122{letter-spacing:-0.429333pt;}
.ls8e_c00122{letter-spacing:-0.398667pt;}
.ls95_c00122{letter-spacing:-0.306667pt;}
.ls5f_c00122{letter-spacing:-0.294400pt;}
.ls88_c00122{letter-spacing:-0.288267pt;}
.ls77_c00122{letter-spacing:-0.276000pt;}
.ls91_c00122{letter-spacing:-0.245333pt;}
.ls61_c00122{letter-spacing:-0.233067pt;}
.ls7e_c00122{letter-spacing:-0.214667pt;}
.ls92_c00122{letter-spacing:-0.208533pt;}
.ls6d_c00122{letter-spacing:-0.196267pt;}
.ls7c_c00122{letter-spacing:-0.177867pt;}
.ls65_c00122{letter-spacing:-0.171733pt;}
.ls8d_c00122{letter-spacing:-0.153333pt;}
.ls8f_c00122{letter-spacing:-0.141067pt;}
.ls76_c00122{letter-spacing:-0.134933pt;}
.ls8c_c00122{letter-spacing:-0.128800pt;}
.ls71_c00122{letter-spacing:-0.104267pt;}
.ls6a_c00122{letter-spacing:-0.092000pt;}
.ls93_c00122{letter-spacing:-0.061333pt;}
.ls96_c00122{letter-spacing:-0.049067pt;}
.ls85_c00122{letter-spacing:-0.042933pt;}
.ls7d_c00122{letter-spacing:-0.036800pt;}
.ls67_c00122{letter-spacing:-0.024533pt;}
.ls69_c00122{letter-spacing:0.000000pt;}
.ls21_c00122{letter-spacing:0.012267pt;}
.ls14_c00122{letter-spacing:0.018400pt;}
.ls3_c00122{letter-spacing:0.024533pt;}
.ls2e_c00122{letter-spacing:0.030667pt;}
.ls2_c00122{letter-spacing:0.036800pt;}
.lsa_c00122{letter-spacing:0.049067pt;}
.ls3c_c00122{letter-spacing:0.055200pt;}
.ls32_c00122{letter-spacing:0.073600pt;}
.ls53_c00122{letter-spacing:0.085867pt;}
.ls54_c00122{letter-spacing:0.098133pt;}
.ls38_c00122{letter-spacing:0.104267pt;}
.ls33_c00122{letter-spacing:0.128800pt;}
.ls5b_c00122{letter-spacing:0.141067pt;}
.ls52_c00122{letter-spacing:0.147200pt;}
.ls1c_c00122{letter-spacing:0.159467pt;}
.ls17_c00122{letter-spacing:0.165600pt;}
.ls4e_c00122{letter-spacing:0.171733pt;}
.ls50_c00122{letter-spacing:0.184000pt;}
.ls44_c00122{letter-spacing:0.196267pt;}
.ls22_c00122{letter-spacing:0.208533pt;}
.lsb_c00122{letter-spacing:0.214667pt;}
.lsc_c00122{letter-spacing:0.220800pt;}
.ls6_c00122{letter-spacing:0.226933pt;}
.ls78_c00122{letter-spacing:0.233067pt;}
.ls74_c00122{letter-spacing:0.251467pt;}
.ls45_c00122{letter-spacing:0.257600pt;}
.ls40_c00122{letter-spacing:0.269867pt;}
.ls4d_c00122{letter-spacing:0.276000pt;}
.ls79_c00122{letter-spacing:0.282133pt;}
.ls19_c00122{letter-spacing:0.294400pt;}
.ls8_c00122{letter-spacing:0.312800pt;}
.lsd_c00122{letter-spacing:0.318933pt;}
.ls28_c00122{letter-spacing:0.325067pt;}
.ls68_c00122{letter-spacing:0.337333pt;}
.ls1a_c00122{letter-spacing:0.343467pt;}
.ls47_c00122{letter-spacing:0.349600pt;}
.ls26_c00122{letter-spacing:0.355733pt;}
.ls43_c00122{letter-spacing:0.361867pt;}
.ls1_c00122{letter-spacing:0.368000pt;}
.ls7_c00122{letter-spacing:0.380267pt;}
.ls11_c00122{letter-spacing:0.386400pt;}
.ls12_c00122{letter-spacing:0.392533pt;}
.ls1b_c00122{letter-spacing:0.398667pt;}
.ls2a_c00122{letter-spacing:0.410933pt;}
.ls5_c00122{letter-spacing:0.423200pt;}
.ls1e_c00122{letter-spacing:0.441600pt;}
.ls31_c00122{letter-spacing:0.447733pt;}
.ls3d_c00122{letter-spacing:0.472267pt;}
.ls20_c00122{letter-spacing:0.490667pt;}
.ls49_c00122{letter-spacing:0.496800pt;}
.ls10_c00122{letter-spacing:0.502933pt;}
.ls3b_c00122{letter-spacing:0.509067pt;}
.ls15_c00122{letter-spacing:0.521333pt;}
.ls23_c00122{letter-spacing:0.552000pt;}
.ls16_c00122{letter-spacing:0.558133pt;}
.ls25_c00122{letter-spacing:0.570400pt;}
.ls5d_c00122{letter-spacing:0.588800pt;}
.ls56_c00122{letter-spacing:0.601067pt;}
.ls37_c00122{letter-spacing:0.607200pt;}
.ls30_c00122{letter-spacing:0.619467pt;}
.ls59_c00122{letter-spacing:0.625600pt;}
.ls57_c00122{letter-spacing:0.637867pt;}
.ls0_c00122{letter-spacing:0.656267pt;}
.ls42_c00122{letter-spacing:0.662400pt;}
.ls3e_c00122{letter-spacing:0.717600pt;}
.ls36_c00122{letter-spacing:0.729867pt;}
.ls3f_c00122{letter-spacing:0.754400pt;}
.ls34_c00122{letter-spacing:0.760533pt;}
.ls51_c00122{letter-spacing:0.766667pt;}
.ls55_c00122{letter-spacing:0.778933pt;}
.ls35_c00122{letter-spacing:0.803467pt;}
.ls18_c00122{letter-spacing:0.809600pt;}
.lsf_c00122{letter-spacing:0.821867pt;}
.ls58_c00122{letter-spacing:0.834133pt;}
.ls5a_c00122{letter-spacing:0.846400pt;}
.ls48_c00122{letter-spacing:0.864800pt;}
.ls72_c00122{letter-spacing:0.889333pt;}
.ls3a_c00122{letter-spacing:0.895467pt;}
.ls1f_c00122{letter-spacing:0.926133pt;}
.ls4_c00122{letter-spacing:0.938400pt;}
.ls13_c00122{letter-spacing:0.975200pt;}
.ls2c_c00122{letter-spacing:0.981333pt;}
.ls9_c00122{letter-spacing:1.061067pt;}
.ls2f_c00122{letter-spacing:1.079467pt;}
.ls39_c00122{letter-spacing:1.091733pt;}
.ls4f_c00122{letter-spacing:1.165333pt;}
.ls4c_c00122{letter-spacing:1.177600pt;}
.ls46_c00122{letter-spacing:1.208267pt;}
.ls29_c00122{letter-spacing:1.275733pt;}
.ls24_c00122{letter-spacing:1.306400pt;}
.ls4a_c00122{letter-spacing:1.324800pt;}
.ls87_c00122{letter-spacing:1.459733pt;}
.ls27_c00122{letter-spacing:1.527200pt;}
.ls5c_c00122{letter-spacing:1.619253pt;}
.ls2b_c00122{letter-spacing:1.637600pt;}
.ls4b_c00122{letter-spacing:1.803200pt;}
.ls2d_c00122{letter-spacing:1.827733pt;}
.ls41_c00122{letter-spacing:1.852267pt;}
.ls1d_c00122{letter-spacing:2.257067pt;}
.lse_c00122{letter-spacing:2.919467pt;}
.ls5e_c00122{letter-spacing:3.066667pt;}
.ws4_c00122{word-spacing:0.000000pt;}
.ws0_c00122{word-spacing:3.986667pt;}
.ws3_c00122{word-spacing:9.727467pt;}
.ws1_c00122{word-spacing:18.516533pt;}
.ws2_c00122{word-spacing:20.853333pt;}
._6_c00122{margin-left:-8.713333pt;}
._13_c00122{margin-left:-5.333867pt;}
._0_c00122{margin-left:-3.637067pt;}
._4_c00122{margin-left:-2.596533pt;}
._3_c00122{margin-left:-1.202133pt;}
._5_c00122{width:1.095733pt;}
._2_c00122{width:2.338933pt;}
._1_c00122{width:3.765867pt;}
._7_c00122{width:5.248000pt;}
._d_c00122{width:6.574933pt;}
._c_c00122{width:7.605333pt;}
._9_c00122{width:8.813600pt;}
._8_c00122{width:9.776533pt;}
._b_c00122{width:10.786400pt;}
._12_c00122{width:11.853600pt;}
._a_c00122{width:13.458667pt;}
._f_c00122{width:14.413333pt;}
._11_c00122{width:18.124000pt;}
._e_c00122{width:19.945600pt;}
._10_c00122{width:21.270400pt;}
._15_c00122{width:22.245600pt;}
._14_c00122{width:24.337067pt;}
.fs9_c00122{font-size:50.666667pt;}
.fs0_c00122{font-size:51.733333pt;}
.fs3_c00122{font-size:57.066667pt;}
.fs8_c00122{font-size:59.733333pt;}
.fs1_c00122{font-size:61.333333pt;}
.fs6_c00122{font-size:65.066667pt;}
.fs4_c00122{font-size:65.600000pt;}
.fs5_c00122{font-size:67.733333pt;}
.fs2_c00122{font-size:68.266667pt;}
.fs7_c00122{font-size:71.466667pt;}
.y0_c00122{bottom:0.000000pt;}
.y22_c00122{bottom:62.400000pt;}
.y21_c00122{bottom:128.964667pt;}
.y20_c00122{bottom:184.322667pt;}
.y1f_c00122{bottom:212.168000pt;}
.y1d_c00122{bottom:240.001333pt;}
.y1e_c00122{bottom:240.013333pt;}
.y1c_c00122{bottom:268.475333pt;}
.y1b_c00122{bottom:296.320667pt;}
.y1a_c00122{bottom:324.488000pt;}
.y19_c00122{bottom:352.640000pt;}
.y18_c00122{bottom:408.333333pt;}
.y17_c00122{bottom:408.338000pt;}
.y16_c00122{bottom:435.539333pt;}
.y15_c00122{bottom:464.013333pt;}
.y14_c00122{bottom:464.020000pt;}
.y12_c00122{bottom:519.370667pt;}
.y13_c00122{bottom:519.373333pt;}
.y11_c00122{bottom:574.402000pt;}
.y10_c00122{bottom:603.213333pt;}
.yf_c00122{bottom:658.566000pt;}
.ye_c00122{bottom:687.040000pt;}
.yd_c00122{bottom:742.720000pt;}
.yc_c00122{bottom:770.874667pt;}
.yb_c00122{bottom:798.720000pt;}
.ya_c00122{bottom:798.724667pt;}
.y8_c00122{bottom:854.090000pt;}
.y9_c00122{bottom:854.093333pt;}
.y7_c00122{bottom:881.613333pt;}
.y6_c00122{bottom:881.614667pt;}
.y5_c00122{bottom:937.274667pt;}
.y4_c00122{bottom:965.120000pt;}
.y3_c00122{bottom:965.122000pt;}
.y2_c00122{bottom:993.933333pt;}
.y1_c00122{bottom:1061.773333pt;}
.hf_c00122{height:52.843750pt;}
.h2_c00122{height:53.956250pt;}
.h6_c00122{height:59.518750pt;}
.h3_c00122{height:60.165365pt;}
.hb_c00122{height:60.168646pt;}
.h4_c00122{height:60.195312pt;}
.he_c00122{height:62.342667pt;}
.h8_c00122{height:63.968750pt;}
.h9_c00122{height:64.382813pt;}
.h7_c00122{height:64.396146pt;}
.ha_c00122{height:66.443490pt;}
.h5_c00122{height:67.000000pt;}
.hc_c00122{height:67.910500pt;}
.hd_c00122{height:70.140625pt;}
.h1_c00122{height:1122.666667pt;}
.h0_c00122{height:1122.880000pt;}
.w1_c00122{width:793.333333pt;}
.w0_c00122{width:793.600000pt;}
.x0_c00122{left:0.000000pt;}
.x1d_c00122{left:106.893333pt;}
.x13_c00122{left:107.987333pt;}
.xe_c00122{left:109.420000pt;}
.x7_c00122{left:110.658000pt;}
.x1_c00122{left:111.706667pt;}
.x8_c00122{left:130.800000pt;}
.x1f_c00122{left:155.019333pt;}
.x18_c00122{left:155.982000pt;}
.x12_c00122{left:156.946667pt;}
.xb_c00122{left:157.908667pt;}
.x2_c00122{left:159.186667pt;}
.x14_c00122{left:246.560000pt;}
.x3_c00122{left:253.106667pt;}
.x10_c00122{left:258.386667pt;}
.xf_c00122{left:261.920000pt;}
.x4_c00122{left:276.320000pt;}
.x11_c00122{left:280.840000pt;}
.x15_c00122{left:354.986667pt;}
.x16_c00122{left:377.106667pt;}
.x20_c00122{left:378.173333pt;}
.x9_c00122{left:392.266667pt;}
.x17_c00122{left:401.760000pt;}
.xa_c00122{left:420.400000pt;}
.x5_c00122{left:500.106667pt;}
.x6_c00122{left:528.506667pt;}
.x1b_c00122{left:559.506667pt;}
.x1e_c00122{left:564.413333pt;}
.x19_c00122{left:579.346667pt;}
.x1c_c00122{left:585.066667pt;}
.xc_c00122{left:589.600000pt;}
.x1a_c00122{left:602.080000pt;}
.xd_c00122{left:609.133333pt;}
}





/* 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_c00123 {
    display:none;
  }
  .loading-indicator_c00123.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00123 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_c00123 { 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_c00123" -> "#page-container .classname_c00123")
 */
.pf_c00123 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00123 { /* 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_c00123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00123 { /* 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_c00123 { /* 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_c00123 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00123 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00123 {overflow:visible;}
  }
}
.c_c00123 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00123 { /* 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_c00123:after { /* webkit #35443 */
  content: '';
}
.t_c00123:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00123 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 */
}
.__c00123 { /* 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_c00123 { /* info for Javascript */
  display:none;
}
.l_c00123 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00123 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00123 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00123: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_c00123 {
    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_c00123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00123.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_c00123 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00123;src:url('chunks/assets/font_bb6e9d82dc4c663f11b9384f.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.284668;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_c00123;src:url('chunks/assets/font_f54678d19db55b455bf587bd.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.284180;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_c00123;src:url('chunks/assets/font_cce286adcc7c8c6a26c8f2b7.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;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;}
.m5_c00123{transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);}
.m3_c00123{transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);}
.m2_c00123{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9_c00123{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m4_c00123{transform:matrix(0.245224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245224,0.000000,0.000000,0.250000,0,0);}
.m6_c00123{transform:matrix(0.248159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248159,0.000000,0.000000,0.250000,0,0);}
.m7_c00123{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m1_c00123{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m8_c00123{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m0_c00123{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);}
.v0_c00123{vertical-align:0.000000px;}
.v2_c00123{vertical-align:25.920000px;}
.v1_c00123{vertical-align:27.420000px;}
.ls60_c00123{letter-spacing:-2.688000px;}
.ls4c_c00123{letter-spacing:-2.415000px;}
.ls87_c00123{letter-spacing:-2.383200px;}
.ls9c_c00123{letter-spacing:-2.373000px;}
.ls4a_c00123{letter-spacing:-2.159700px;}
.ls7a_c00123{letter-spacing:-2.076360px;}
.ls83_c00123{letter-spacing:-2.003760px;}
.ls98_c00123{letter-spacing:-1.959600px;}
.ls7b_c00123{letter-spacing:-1.844040px;}
.ls9b_c00123{letter-spacing:-1.842300px;}
.ls8b_c00123{letter-spacing:-1.807800px;}
.ls67_c00123{letter-spacing:-1.807740px;}
.ls93_c00123{letter-spacing:-1.780200px;}
.lsa0_c00123{letter-spacing:-1.543680px;}
.ls64_c00123{letter-spacing:-1.538700px;}
.ls99_c00123{letter-spacing:-1.531860px;}
.ls90_c00123{letter-spacing:-1.524600px;}
.ls75_c00123{letter-spacing:-1.466520px;}
.ls92_c00123{letter-spacing:-1.435200px;}
.ls8a_c00123{letter-spacing:-1.428300px;}
.ls5d_c00123{letter-spacing:-1.415700px;}
.ls8f_c00123{letter-spacing:-1.379400px;}
.ls95_c00123{letter-spacing:-1.263240px;}
.ls8e_c00123{letter-spacing:-1.242000px;}
.ls4d_c00123{letter-spacing:-1.145400px;}
.ls5b_c00123{letter-spacing:-1.110900px;}
.ls57_c00123{letter-spacing:-1.090200px;}
.ls62_c00123{letter-spacing:-1.083300px;}
.ls94_c00123{letter-spacing:-1.062600px;}
.ls6b_c00123{letter-spacing:-1.048800px;}
.ls4e_c00123{letter-spacing:-1.014300px;}
.ls86_c00123{letter-spacing:-1.000500px;}
.ls7e_c00123{letter-spacing:-0.966000px;}
.ls58_c00123{letter-spacing:-0.945300px;}
.ls91_c00123{letter-spacing:-0.862500px;}
.ls47_c00123{letter-spacing:-0.821100px;}
.ls96_c00123{letter-spacing:-0.814200px;}
.ls6e_c00123{letter-spacing:-0.800400px;}
.ls6a_c00123{letter-spacing:-0.772800px;}
.ls63_c00123{letter-spacing:-0.717600px;}
.ls74_c00123{letter-spacing:-0.690000px;}
.ls7f_c00123{letter-spacing:-0.683100px;}
.ls77_c00123{letter-spacing:-0.676200px;}
.ls5c_c00123{letter-spacing:-0.641700px;}
.ls78_c00123{letter-spacing:-0.634800px;}
.ls4b_c00123{letter-spacing:-0.593400px;}
.ls76_c00123{letter-spacing:-0.531300px;}
.ls97_c00123{letter-spacing:-0.517500px;}
.ls72_c00123{letter-spacing:-0.476100px;}
.ls8c_c00123{letter-spacing:-0.462300px;}
.ls5f_c00123{letter-spacing:-0.448500px;}
.ls9e_c00123{letter-spacing:-0.434700px;}
.ls69_c00123{letter-spacing:-0.420900px;}
.ls9f_c00123{letter-spacing:-0.407100px;}
.ls53_c00123{letter-spacing:-0.393300px;}
.ls50_c00123{letter-spacing:-0.372600px;}
.ls7c_c00123{letter-spacing:-0.351900px;}
.ls88_c00123{letter-spacing:-0.331200px;}
.ls5e_c00123{letter-spacing:-0.324300px;}
.ls73_c00123{letter-spacing:-0.309000px;}
.ls68_c00123{letter-spacing:-0.289800px;}
.ls79_c00123{letter-spacing:-0.276000px;}
.ls52_c00123{letter-spacing:-0.269100px;}
.ls80_c00123{letter-spacing:-0.262200px;}
.ls9a_c00123{letter-spacing:-0.248400px;}
.ls84_c00123{letter-spacing:-0.200100px;}
.ls55_c00123{letter-spacing:-0.193200px;}
.ls54_c00123{letter-spacing:-0.179400px;}
.ls56_c00123{letter-spacing:-0.158700px;}
.ls81_c00123{letter-spacing:-0.151800px;}
.ls82_c00123{letter-spacing:-0.145200px;}
.ls9d_c00123{letter-spacing:-0.144900px;}
.ls61_c00123{letter-spacing:-0.138000px;}
.ls6f_c00123{letter-spacing:-0.110400px;}
.ls48_c00123{letter-spacing:-0.103500px;}
.ls4f_c00123{letter-spacing:-0.096600px;}
.ls6c_c00123{letter-spacing:-0.089700px;}
.ls7d_c00123{letter-spacing:-0.075900px;}
.ls71_c00123{letter-spacing:-0.069000px;}
.ls6d_c00123{letter-spacing:-0.055200px;}
.ls65_c00123{letter-spacing:-0.048300px;}
.ls59_c00123{letter-spacing:-0.034500px;}
.ls5a_c00123{letter-spacing:-0.020700px;}
.ls89_c00123{letter-spacing:-0.006900px;}
.ls49_c00123{letter-spacing:0.000000px;}
.ls22_c00123{letter-spacing:0.006900px;}
.ls1c_c00123{letter-spacing:0.013800px;}
.ls26_c00123{letter-spacing:0.020700px;}
.ls19_c00123{letter-spacing:0.027600px;}
.ls28_c00123{letter-spacing:0.041400px;}
.ls3b_c00123{letter-spacing:0.048300px;}
.ls15_c00123{letter-spacing:0.069000px;}
.ls12_c00123{letter-spacing:0.089700px;}
.ls38_c00123{letter-spacing:0.096600px;}
.lsd_c00123{letter-spacing:0.110400px;}
.ls17_c00123{letter-spacing:0.117300px;}
.ls2d_c00123{letter-spacing:0.124200px;}
.ls1f_c00123{letter-spacing:0.131100px;}
.ls43_c00123{letter-spacing:0.144900px;}
.lsf_c00123{letter-spacing:0.158700px;}
.ls29_c00123{letter-spacing:0.165600px;}
.ls1e_c00123{letter-spacing:0.179400px;}
.ls51_c00123{letter-spacing:0.186300px;}
.ls1a_c00123{letter-spacing:0.193200px;}
.ls2a_c00123{letter-spacing:0.200100px;}
.ls1d_c00123{letter-spacing:0.220800px;}
.ls85_c00123{letter-spacing:0.227700px;}
.ls66_c00123{letter-spacing:0.241500px;}
.lse_c00123{letter-spacing:0.248400px;}
.ls5_c00123{letter-spacing:0.262200px;}
.ls9_c00123{letter-spacing:0.276000px;}
.ls70_c00123{letter-spacing:0.282900px;}
.ls44_c00123{letter-spacing:0.289800px;}
.ls37_c00123{letter-spacing:0.296700px;}
.lsc_c00123{letter-spacing:0.303600px;}
.ls0_c00123{letter-spacing:0.317400px;}
.ls40_c00123{letter-spacing:0.331200px;}
.ls11_c00123{letter-spacing:0.345000px;}
.ls8_c00123{letter-spacing:0.351900px;}
.ls7_c00123{letter-spacing:0.358800px;}
.ls21_c00123{letter-spacing:0.379500px;}
.ls3f_c00123{letter-spacing:0.400200px;}
.ls34_c00123{letter-spacing:0.407100px;}
.ls18_c00123{letter-spacing:0.414000px;}
.ls6_c00123{letter-spacing:0.427800px;}
.ls1b_c00123{letter-spacing:0.434700px;}
.ls45_c00123{letter-spacing:0.469200px;}
.ls3e_c00123{letter-spacing:0.503700px;}
.ls2e_c00123{letter-spacing:0.510600px;}
.lsa_c00123{letter-spacing:0.545100px;}
.ls3d_c00123{letter-spacing:0.572700px;}
.ls2_c00123{letter-spacing:0.586500px;}
.ls36_c00123{letter-spacing:0.614100px;}
.ls2f_c00123{letter-spacing:0.621000px;}
.ls3_c00123{letter-spacing:0.627900px;}
.ls3a_c00123{letter-spacing:0.634800px;}
.ls2b_c00123{letter-spacing:0.641700px;}
.ls3c_c00123{letter-spacing:0.683100px;}
.ls35_c00123{letter-spacing:0.738300px;}
.ls16_c00123{letter-spacing:0.765900px;}
.ls14_c00123{letter-spacing:0.793500px;}
.ls39_c00123{letter-spacing:0.883200px;}
.ls32_c00123{letter-spacing:0.952200px;}
.ls30_c00123{letter-spacing:0.986700px;}
.ls24_c00123{letter-spacing:1.003200px;}
.lsb_c00123{letter-spacing:1.035000px;}
.ls1_c00123{letter-spacing:1.097100px;}
.ls41_c00123{letter-spacing:1.117800px;}
.ls31_c00123{letter-spacing:1.297200px;}
.ls23_c00123{letter-spacing:1.311000px;}
.ls27_c00123{letter-spacing:1.345500px;}
.ls42_c00123{letter-spacing:1.359300px;}
.ls8d_c00123{letter-spacing:1.386900px;}
.ls4_c00123{letter-spacing:1.600800px;}
.ls46_c00123{letter-spacing:1.830000px;}
.ls10_c00123{letter-spacing:1.842300px;}
.ls25_c00123{letter-spacing:2.056200px;}
.ls20_c00123{letter-spacing:2.539200px;}
.ls13_c00123{letter-spacing:2.559900px;}
.ls33_c00123{letter-spacing:3.070500px;}
.ls2c_c00123{letter-spacing:5.520000px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{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__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00123{word-spacing:-17.374200px;}
.ws2_c00123{word-spacing:-16.560000px;}
.ws7_c00123{word-spacing:0.000000px;}
.ws1_c00123{word-spacing:12.456000px;}
.ws4_c00123{word-spacing:19.316400px;}
.ws0_c00123{word-spacing:21.032400px;}
.ws5_c00123{word-spacing:21.432240px;}
.ws6_c00123{word-spacing:52.981440px;}
._8_c00123{margin-left:-6.361800px;}
._14_c00123{margin-left:-4.501200px;}
._9_c00123{margin-left:-3.306900px;}
._1_c00123{margin-left:-1.787100px;}
._13_c00123{width:1.015500px;}
._3_c00123{width:2.230500px;}
._0_c00123{width:3.305100px;}
._5_c00123{width:5.485500px;}
._4_c00123{width:6.689400px;}
._2_c00123{width:7.838400px;}
._e_c00123{width:9.541200px;}
._6_c00123{width:10.971000px;}
._7_c00123{width:12.337200px;}
._d_c00123{width:14.400300px;}
._a_c00123{width:15.594000px;}
._c_c00123{width:18.795600px;}
._f_c00123{width:19.900500px;}
._b_c00123{width:21.340800px;}
._11_c00123{width:23.467800px;}
._10_c00123{width:24.881400px;}
._12_c00123{width:26.521800px;}
.fc0_c00123{color:transparent;}
.fs6_c00123{font-size:34.200000px;}
.fs9_c00123{font-size:57.600000px;}
.fs0_c00123{font-size:60.000000px;}
.fs5_c00123{font-size:61.800000px;}
.fs4_c00123{font-size:66.000000px;}
.fs8_c00123{font-size:67.800000px;}
.fs1_c00123{font-size:69.000000px;}
.fs7_c00123{font-size:72.000000px;}
.fs2_c00123{font-size:72.600000px;}
.fs3_c00123{font-size:76.800000px;}
.y0_c00123{bottom:0.000000px;}
.y1f_c00123{bottom:69.855015px;}
.y1e_c00123{bottom:146.175765px;}
.y1d_c00123{bottom:176.760015px;}
.y1c_c00123{bottom:208.080015px;}
.y1b_c00123{bottom:271.080015px;}
.y1a_c00123{bottom:302.040015px;}
.y19_c00123{bottom:363.975015px;}
.y18_c00123{bottom:395.295015px;}
.y16_c00123{bottom:458.286765px;}
.y17_c00123{bottom:458.295015px;}
.y15_c00123{bottom:489.975015px;}
.y14_c00123{bottom:552.594015px;}
.y13_c00123{bottom:583.920015px;}
.y12_c00123{bottom:646.569015px;}
.y11_c00123{bottom:677.895015px;}
.yf_c00123{bottom:740.505765px;}
.y10_c00123{bottom:740.520015px;}
.ye_c00123{bottom:772.194015px;}
.yc_c00123{bottom:803.516265px;}
.yd_c00123{bottom:803.520015px;}
.yb_c00123{bottom:834.480015px;}
.ya_c00123{bottom:897.135015px;}
.y9_c00123{bottom:897.141765px;}
.y8_c00123{bottom:929.175015px;}
.y7_c00123{bottom:960.840015px;}
.y6_c00123{bottom:1023.834015px;}
.y5_c00123{bottom:1054.809015px;}
.y3_c00123{bottom:1086.129015px;}
.y4_c00123{bottom:1086.135015px;}
.y2_c00123{bottom:1117.455015px;}
.y1_c00123{bottom:1192.335015px;}
.hb_c00123{height:56.531250px;}
.h2_c00123{height:58.886719px;}
.h3_c00123{height:67.719727px;}
.h4_c00123{height:67.743727px;}
.h7_c00123{height:67.776727px;}
.h9_c00123{height:70.664062px;}
.h8_c00123{height:70.697062px;}
.ha_c00123{height:70.713281px;}
.h5_c00123{height:71.217480px;}
.h6_c00123{height:75.375000px;}
.h1_c00123{height:1263.000000px;}
.h0_c00123{height:1263.240015px;}
.w1_c00123{width:892.500000px;}
.w0_c00123{width:892.800015px;}
.x0_c00123{left:0.000000px;}
.x1c_c00123{left:121.996515px;}
.x1b_c00123{left:123.135015px;}
.x11_c00123{left:124.518765px;}
.x1_c00123{left:125.565015px;}
.x17_c00123{left:177.615015px;}
.x10_c00123{left:178.740015px;}
.x6_c00123{left:179.805015px;}
.xd_c00123{left:211.575015px;}
.xe_c00123{left:234.690015px;}
.x13_c00123{left:235.965015px;}
.x14_c00123{left:263.625015px;}
.xb_c00123{left:288.855015px;}
.xc_c00123{left:309.885015px;}
.x12_c00123{left:332.445015px;}
.x15_c00123{left:417.045015px;}
.x1d_c00123{left:424.665015px;}
.x2_c00123{left:433.995015px;}
.x4_c00123{left:437.955015px;}
.x16_c00123{left:444.390015px;}
.x3_c00123{left:454.680015px;}
.x5_c00123{left:459.330015px;}
.x9_c00123{left:466.830015px;}
.x7_c00123{left:496.290015px;}
.xa_c00123{left:502.020015px;}
.x18_c00123{left:512.085015px;}
.x19_c00123{left:539.760015px;}
.xf_c00123{left:706.500015px;}
.x8_c00123{left:725.670015px;}
.x1a_c00123{left:736.740015px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.v2_c00123{vertical-align:23.040000pt;}
.v1_c00123{vertical-align:24.373333pt;}
.ls60_c00123{letter-spacing:-2.389333pt;}
.ls4c_c00123{letter-spacing:-2.146667pt;}
.ls87_c00123{letter-spacing:-2.118400pt;}
.ls9c_c00123{letter-spacing:-2.109333pt;}
.ls4a_c00123{letter-spacing:-1.919733pt;}
.ls7a_c00123{letter-spacing:-1.845653pt;}
.ls83_c00123{letter-spacing:-1.781120pt;}
.ls98_c00123{letter-spacing:-1.741867pt;}
.ls7b_c00123{letter-spacing:-1.639147pt;}
.ls9b_c00123{letter-spacing:-1.637600pt;}
.ls8b_c00123{letter-spacing:-1.606933pt;}
.ls67_c00123{letter-spacing:-1.606880pt;}
.ls93_c00123{letter-spacing:-1.582400pt;}
.lsa0_c00123{letter-spacing:-1.372160pt;}
.ls64_c00123{letter-spacing:-1.367733pt;}
.ls99_c00123{letter-spacing:-1.361653pt;}
.ls90_c00123{letter-spacing:-1.355200pt;}
.ls75_c00123{letter-spacing:-1.303573pt;}
.ls92_c00123{letter-spacing:-1.275733pt;}
.ls8a_c00123{letter-spacing:-1.269600pt;}
.ls5d_c00123{letter-spacing:-1.258400pt;}
.ls8f_c00123{letter-spacing:-1.226133pt;}
.ls95_c00123{letter-spacing:-1.122880pt;}
.ls8e_c00123{letter-spacing:-1.104000pt;}
.ls4d_c00123{letter-spacing:-1.018133pt;}
.ls5b_c00123{letter-spacing:-0.987467pt;}
.ls57_c00123{letter-spacing:-0.969067pt;}
.ls62_c00123{letter-spacing:-0.962933pt;}
.ls94_c00123{letter-spacing:-0.944533pt;}
.ls6b_c00123{letter-spacing:-0.932267pt;}
.ls4e_c00123{letter-spacing:-0.901600pt;}
.ls86_c00123{letter-spacing:-0.889333pt;}
.ls7e_c00123{letter-spacing:-0.858667pt;}
.ls58_c00123{letter-spacing:-0.840267pt;}
.ls91_c00123{letter-spacing:-0.766667pt;}
.ls47_c00123{letter-spacing:-0.729867pt;}
.ls96_c00123{letter-spacing:-0.723733pt;}
.ls6e_c00123{letter-spacing:-0.711467pt;}
.ls6a_c00123{letter-spacing:-0.686933pt;}
.ls63_c00123{letter-spacing:-0.637867pt;}
.ls74_c00123{letter-spacing:-0.613333pt;}
.ls7f_c00123{letter-spacing:-0.607200pt;}
.ls77_c00123{letter-spacing:-0.601067pt;}
.ls5c_c00123{letter-spacing:-0.570400pt;}
.ls78_c00123{letter-spacing:-0.564267pt;}
.ls4b_c00123{letter-spacing:-0.527467pt;}
.ls76_c00123{letter-spacing:-0.472267pt;}
.ls97_c00123{letter-spacing:-0.460000pt;}
.ls72_c00123{letter-spacing:-0.423200pt;}
.ls8c_c00123{letter-spacing:-0.410933pt;}
.ls5f_c00123{letter-spacing:-0.398667pt;}
.ls9e_c00123{letter-spacing:-0.386400pt;}
.ls69_c00123{letter-spacing:-0.374133pt;}
.ls9f_c00123{letter-spacing:-0.361867pt;}
.ls53_c00123{letter-spacing:-0.349600pt;}
.ls50_c00123{letter-spacing:-0.331200pt;}
.ls7c_c00123{letter-spacing:-0.312800pt;}
.ls88_c00123{letter-spacing:-0.294400pt;}
.ls5e_c00123{letter-spacing:-0.288267pt;}
.ls73_c00123{letter-spacing:-0.274667pt;}
.ls68_c00123{letter-spacing:-0.257600pt;}
.ls79_c00123{letter-spacing:-0.245333pt;}
.ls52_c00123{letter-spacing:-0.239200pt;}
.ls80_c00123{letter-spacing:-0.233067pt;}
.ls9a_c00123{letter-spacing:-0.220800pt;}
.ls84_c00123{letter-spacing:-0.177867pt;}
.ls55_c00123{letter-spacing:-0.171733pt;}
.ls54_c00123{letter-spacing:-0.159467pt;}
.ls56_c00123{letter-spacing:-0.141067pt;}
.ls81_c00123{letter-spacing:-0.134933pt;}
.ls82_c00123{letter-spacing:-0.129067pt;}
.ls9d_c00123{letter-spacing:-0.128800pt;}
.ls61_c00123{letter-spacing:-0.122667pt;}
.ls6f_c00123{letter-spacing:-0.098133pt;}
.ls48_c00123{letter-spacing:-0.092000pt;}
.ls4f_c00123{letter-spacing:-0.085867pt;}
.ls6c_c00123{letter-spacing:-0.079733pt;}
.ls7d_c00123{letter-spacing:-0.067467pt;}
.ls71_c00123{letter-spacing:-0.061333pt;}
.ls6d_c00123{letter-spacing:-0.049067pt;}
.ls65_c00123{letter-spacing:-0.042933pt;}
.ls59_c00123{letter-spacing:-0.030667pt;}
.ls5a_c00123{letter-spacing:-0.018400pt;}
.ls89_c00123{letter-spacing:-0.006133pt;}
.ls49_c00123{letter-spacing:0.000000pt;}
.ls22_c00123{letter-spacing:0.006133pt;}
.ls1c_c00123{letter-spacing:0.012267pt;}
.ls26_c00123{letter-spacing:0.018400pt;}
.ls19_c00123{letter-spacing:0.024533pt;}
.ls28_c00123{letter-spacing:0.036800pt;}
.ls3b_c00123{letter-spacing:0.042933pt;}
.ls15_c00123{letter-spacing:0.061333pt;}
.ls12_c00123{letter-spacing:0.079733pt;}
.ls38_c00123{letter-spacing:0.085867pt;}
.lsd_c00123{letter-spacing:0.098133pt;}
.ls17_c00123{letter-spacing:0.104267pt;}
.ls2d_c00123{letter-spacing:0.110400pt;}
.ls1f_c00123{letter-spacing:0.116533pt;}
.ls43_c00123{letter-spacing:0.128800pt;}
.lsf_c00123{letter-spacing:0.141067pt;}
.ls29_c00123{letter-spacing:0.147200pt;}
.ls1e_c00123{letter-spacing:0.159467pt;}
.ls51_c00123{letter-spacing:0.165600pt;}
.ls1a_c00123{letter-spacing:0.171733pt;}
.ls2a_c00123{letter-spacing:0.177867pt;}
.ls1d_c00123{letter-spacing:0.196267pt;}
.ls85_c00123{letter-spacing:0.202400pt;}
.ls66_c00123{letter-spacing:0.214667pt;}
.lse_c00123{letter-spacing:0.220800pt;}
.ls5_c00123{letter-spacing:0.233067pt;}
.ls9_c00123{letter-spacing:0.245333pt;}
.ls70_c00123{letter-spacing:0.251467pt;}
.ls44_c00123{letter-spacing:0.257600pt;}
.ls37_c00123{letter-spacing:0.263733pt;}
.lsc_c00123{letter-spacing:0.269867pt;}
.ls0_c00123{letter-spacing:0.282133pt;}
.ls40_c00123{letter-spacing:0.294400pt;}
.ls11_c00123{letter-spacing:0.306667pt;}
.ls8_c00123{letter-spacing:0.312800pt;}
.ls7_c00123{letter-spacing:0.318933pt;}
.ls21_c00123{letter-spacing:0.337333pt;}
.ls3f_c00123{letter-spacing:0.355733pt;}
.ls34_c00123{letter-spacing:0.361867pt;}
.ls18_c00123{letter-spacing:0.368000pt;}
.ls6_c00123{letter-spacing:0.380267pt;}
.ls1b_c00123{letter-spacing:0.386400pt;}
.ls45_c00123{letter-spacing:0.417067pt;}
.ls3e_c00123{letter-spacing:0.447733pt;}
.ls2e_c00123{letter-spacing:0.453867pt;}
.lsa_c00123{letter-spacing:0.484533pt;}
.ls3d_c00123{letter-spacing:0.509067pt;}
.ls2_c00123{letter-spacing:0.521333pt;}
.ls36_c00123{letter-spacing:0.545867pt;}
.ls2f_c00123{letter-spacing:0.552000pt;}
.ls3_c00123{letter-spacing:0.558133pt;}
.ls3a_c00123{letter-spacing:0.564267pt;}
.ls2b_c00123{letter-spacing:0.570400pt;}
.ls3c_c00123{letter-spacing:0.607200pt;}
.ls35_c00123{letter-spacing:0.656267pt;}
.ls16_c00123{letter-spacing:0.680800pt;}
.ls14_c00123{letter-spacing:0.705333pt;}
.ls39_c00123{letter-spacing:0.785067pt;}
.ls32_c00123{letter-spacing:0.846400pt;}
.ls30_c00123{letter-spacing:0.877067pt;}
.ls24_c00123{letter-spacing:0.891733pt;}
.lsb_c00123{letter-spacing:0.920000pt;}
.ls1_c00123{letter-spacing:0.975200pt;}
.ls41_c00123{letter-spacing:0.993600pt;}
.ls31_c00123{letter-spacing:1.153067pt;}
.ls23_c00123{letter-spacing:1.165333pt;}
.ls27_c00123{letter-spacing:1.196000pt;}
.ls42_c00123{letter-spacing:1.208267pt;}
.ls8d_c00123{letter-spacing:1.232800pt;}
.ls4_c00123{letter-spacing:1.422933pt;}
.ls46_c00123{letter-spacing:1.626667pt;}
.ls10_c00123{letter-spacing:1.637600pt;}
.ls25_c00123{letter-spacing:1.827733pt;}
.ls20_c00123{letter-spacing:2.257067pt;}
.ls13_c00123{letter-spacing:2.275467pt;}
.ls33_c00123{letter-spacing:2.729333pt;}
.ls2c_c00123{letter-spacing:4.906667pt;}
.ws3_c00123{word-spacing:-15.443733pt;}
.ws2_c00123{word-spacing:-14.720000pt;}
.ws7_c00123{word-spacing:0.000000pt;}
.ws1_c00123{word-spacing:11.072000pt;}
.ws4_c00123{word-spacing:17.170133pt;}
.ws0_c00123{word-spacing:18.695467pt;}
.ws5_c00123{word-spacing:19.050880pt;}
.ws6_c00123{word-spacing:47.094613pt;}
._8_c00123{margin-left:-5.654933pt;}
._14_c00123{margin-left:-4.001067pt;}
._9_c00123{margin-left:-2.939467pt;}
._1_c00123{margin-left:-1.588533pt;}
._13_c00123{width:0.902667pt;}
._3_c00123{width:1.982667pt;}
._0_c00123{width:2.937867pt;}
._5_c00123{width:4.876000pt;}
._4_c00123{width:5.946133pt;}
._2_c00123{width:6.967467pt;}
._e_c00123{width:8.481067pt;}
._6_c00123{width:9.752000pt;}
._7_c00123{width:10.966400pt;}
._d_c00123{width:12.800267pt;}
._a_c00123{width:13.861333pt;}
._c_c00123{width:16.707200pt;}
._f_c00123{width:17.689333pt;}
._b_c00123{width:18.969600pt;}
._11_c00123{width:20.860267pt;}
._10_c00123{width:22.116800pt;}
._12_c00123{width:23.574933pt;}
.fs6_c00123{font-size:30.400000pt;}
.fs9_c00123{font-size:51.200000pt;}
.fs0_c00123{font-size:53.333333pt;}
.fs5_c00123{font-size:54.933333pt;}
.fs4_c00123{font-size:58.666667pt;}
.fs8_c00123{font-size:60.266667pt;}
.fs1_c00123{font-size:61.333333pt;}
.fs7_c00123{font-size:64.000000pt;}
.fs2_c00123{font-size:64.533333pt;}
.fs3_c00123{font-size:68.266667pt;}
.y0_c00123{bottom:0.000000pt;}
.y1f_c00123{bottom:62.093347pt;}
.y1e_c00123{bottom:129.934013pt;}
.y1d_c00123{bottom:157.120013pt;}
.y1c_c00123{bottom:184.960013pt;}
.y1b_c00123{bottom:240.960013pt;}
.y1a_c00123{bottom:268.480013pt;}
.y19_c00123{bottom:323.533347pt;}
.y18_c00123{bottom:351.373347pt;}
.y16_c00123{bottom:407.366013pt;}
.y17_c00123{bottom:407.373347pt;}
.y15_c00123{bottom:435.533347pt;}
.y14_c00123{bottom:491.194680pt;}
.y13_c00123{bottom:519.040013pt;}
.y12_c00123{bottom:574.728013pt;}
.y11_c00123{bottom:602.573347pt;}
.yf_c00123{bottom:658.227347pt;}
.y10_c00123{bottom:658.240013pt;}
.ye_c00123{bottom:686.394680pt;}
.yc_c00123{bottom:714.236680pt;}
.yd_c00123{bottom:714.240013pt;}
.yb_c00123{bottom:741.760013pt;}
.ya_c00123{bottom:797.453347pt;}
.y9_c00123{bottom:797.459347pt;}
.y8_c00123{bottom:825.933347pt;}
.y7_c00123{bottom:854.080013pt;}
.y6_c00123{bottom:910.074680pt;}
.y5_c00123{bottom:937.608013pt;}
.y3_c00123{bottom:965.448013pt;}
.y4_c00123{bottom:965.453347pt;}
.y2_c00123{bottom:993.293347pt;}
.y1_c00123{bottom:1059.853347pt;}
.hb_c00123{height:50.250000pt;}
.h2_c00123{height:52.343750pt;}
.h3_c00123{height:60.195312pt;}
.h4_c00123{height:60.216646pt;}
.h7_c00123{height:60.245979pt;}
.h9_c00123{height:62.812500pt;}
.h8_c00123{height:62.841833pt;}
.ha_c00123{height:62.856250pt;}
.h5_c00123{height:63.304427pt;}
.h6_c00123{height:67.000000pt;}
.h1_c00123{height:1122.666667pt;}
.h0_c00123{height:1122.880013pt;}
.w1_c00123{width:793.333333pt;}
.w0_c00123{width:793.600013pt;}
.x0_c00123{left:0.000000pt;}
.x1c_c00123{left:108.441347pt;}
.x1b_c00123{left:109.453347pt;}
.x11_c00123{left:110.683347pt;}
.x1_c00123{left:111.613347pt;}
.x17_c00123{left:157.880013pt;}
.x10_c00123{left:158.880013pt;}
.x6_c00123{left:159.826680pt;}
.xd_c00123{left:188.066680pt;}
.xe_c00123{left:208.613347pt;}
.x13_c00123{left:209.746680pt;}
.x14_c00123{left:234.333347pt;}
.xb_c00123{left:256.760013pt;}
.xc_c00123{left:275.453347pt;}
.x12_c00123{left:295.506680pt;}
.x15_c00123{left:370.706680pt;}
.x1d_c00123{left:377.480013pt;}
.x2_c00123{left:385.773347pt;}
.x4_c00123{left:389.293347pt;}
.x16_c00123{left:395.013347pt;}
.x3_c00123{left:404.160013pt;}
.x5_c00123{left:408.293347pt;}
.x9_c00123{left:414.960013pt;}
.x7_c00123{left:441.146680pt;}
.xa_c00123{left:446.240013pt;}
.x18_c00123{left:455.186680pt;}
.x19_c00123{left:479.786680pt;}
.xf_c00123{left:628.000013pt;}
.x8_c00123{left:645.040013pt;}
.x1a_c00123{left:654.880013pt;}
}





/* 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_c00124 {
    display:none;
  }
  .loading-indicator_c00124.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00124 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_c00124 { 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_c00124" -> "#page-container .classname_c00124")
 */
.pf_c00124 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00124 { /* 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_c00124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00124 { /* 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_c00124 { /* 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_c00124 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00124 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00124 {overflow:visible;}
  }
}
.c_c00124 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00124 { /* 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_c00124:after { /* webkit #35443 */
  content: '';
}
.t_c00124:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00124 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 */
}
.__c00124 { /* 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_c00124 { /* info for Javascript */
  display:none;
}
.l_c00124 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00124 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00124 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00124: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_c00124 {
    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_c00124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00124.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_c00124 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00124;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.311035;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_c00124;src:url('chunks/assets/font_b3aa065b8fda08c603b00407.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.284668;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_c00124;src:url('chunks/assets/font_1ffdc07cb4ccf1da15405daa.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;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:ff4_c00124;src:url('chunks/assets/font_7806b1438593abbecdcf142c.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.284180;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_c00124;src:url('chunks/assets/font_fb3b8ee74ef7b3bb5b6f9fe4.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:1.284180;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_c00124;src:url('chunks/assets/font_2a4774d871e064bb0d517c26.woff2')format("woff");}.ff6_c00124{font-family:ff6_c00124;line-height:0.666000;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;}
.me_c00124{transform:matrix(0.135691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135691,0.000000,0.000000,0.250000,0,0);}
.mb_c00124{transform:matrix(0.157337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157337,0.000000,0.000000,0.250000,0,0);}
.m4_c00124{transform:matrix(0.170940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170940,0.000000,0.000000,0.250000,0,0);}
.m5_c00124{transform:matrix(0.173282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173282,0.000000,0.000000,0.250000,0,0);}
.mc_c00124{transform:matrix(0.210914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210914,0.000000,0.000000,0.250000,0,0);}
.mf_c00124{transform:matrix(0.231059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231059,0.000000,0.000000,0.250000,0,0);}
.m8_c00124{transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);}
.m7_c00124{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m0_c00124{transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);}
.md_c00124{transform:matrix(0.240603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240603,0.000000,0.000000,0.250000,0,0);}
.m3_c00124{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m6_c00124{transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);}
.m9_c00124{transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);}
.ma_c00124{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{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);}
.m2_c00124{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls7d_c00124{letter-spacing:-2.877000px;}
.ls68_c00124{letter-spacing:-2.625000px;}
.ls64_c00124{letter-spacing:-2.394000px;}
.ls70_c00124{letter-spacing:-2.373000px;}
.ls5c_c00124{letter-spacing:-2.310000px;}
.ls71_c00124{letter-spacing:-2.176380px;}
.ls83_c00124{letter-spacing:-2.147760px;}
.ls86_c00124{letter-spacing:-2.058000px;}
.ls80_c00124{letter-spacing:-1.826280px;}
.ls73_c00124{letter-spacing:-1.822860px;}
.ls76_c00124{letter-spacing:-1.682640px;}
.ls7b_c00124{letter-spacing:-1.566360px;}
.ls7f_c00124{letter-spacing:-1.429560px;}
.ls72_c00124{letter-spacing:-1.350540px;}
.ls7c_c00124{letter-spacing:-1.306440px;}
.ls5e_c00124{letter-spacing:-1.302960px;}
.ls60_c00124{letter-spacing:-0.684000px;}
.ls78_c00124{letter-spacing:-0.663480px;}
.ls79_c00124{letter-spacing:-0.601920px;}
.ls77_c00124{letter-spacing:-0.540360px;}
.ls5f_c00124{letter-spacing:-0.526680px;}
.ls6f_c00124{letter-spacing:-0.513000px;}
.ls63_c00124{letter-spacing:-0.478800px;}
.ls65_c00124{letter-spacing:-0.458280px;}
.ls6e_c00124{letter-spacing:-0.403560px;}
.ls6a_c00124{letter-spacing:-0.376200px;}
.ls84_c00124{letter-spacing:-0.287280px;}
.ls6d_c00124{letter-spacing:-0.177840px;}
.ls7e_c00124{letter-spacing:-0.171000px;}
.ls66_c00124{letter-spacing:-0.157320px;}
.ls82_c00124{letter-spacing:-0.150480px;}
.ls75_c00124{letter-spacing:-0.102600px;}
.ls81_c00124{letter-spacing:-0.068400px;}
.ls7a_c00124{letter-spacing:-0.013680px;}
.ls6b_c00124{letter-spacing:-0.006840px;}
.ls5d_c00124{letter-spacing:0.000000px;}
.ls4a_c00124{letter-spacing:0.006840px;}
.ls85_c00124{letter-spacing:0.047880px;}
.ls28_c00124{letter-spacing:0.082080px;}
.ls34_c00124{letter-spacing:0.102600px;}
.ls7_c00124{letter-spacing:0.109440px;}
.ls49_c00124{letter-spacing:0.116280px;}
.ls67_c00124{letter-spacing:0.123120px;}
.ls42_c00124{letter-spacing:0.143640px;}
.ls2a_c00124{letter-spacing:0.157320px;}
.ls27_c00124{letter-spacing:0.164160px;}
.lsa_c00124{letter-spacing:0.205200px;}
.ls58_c00124{letter-spacing:0.218880px;}
.ls74_c00124{letter-spacing:0.232560px;}
.ls61_c00124{letter-spacing:0.246240px;}
.ls44_c00124{letter-spacing:0.253080px;}
.ls18_c00124{letter-spacing:0.259920px;}
.ls3c_c00124{letter-spacing:0.287280px;}
.ls3d_c00124{letter-spacing:0.294120px;}
.ls8_c00124{letter-spacing:0.314640px;}
.ls53_c00124{letter-spacing:0.321480px;}
.ls10_c00124{letter-spacing:0.335160px;}
.ls15_c00124{letter-spacing:0.342000px;}
.ls45_c00124{letter-spacing:0.362520px;}
.ls1e_c00124{letter-spacing:0.369360px;}
.ls43_c00124{letter-spacing:0.376200px;}
.ls39_c00124{letter-spacing:0.383040px;}
.ls69_c00124{letter-spacing:0.396720px;}
.ls1f_c00124{letter-spacing:0.403560px;}
.ls4_c00124{letter-spacing:0.410400px;}
.lsb_c00124{letter-spacing:0.437760px;}
.ls40_c00124{letter-spacing:0.458280px;}
.ls56_c00124{letter-spacing:0.471960px;}
.ls3e_c00124{letter-spacing:0.478800px;}
.ls3b_c00124{letter-spacing:0.485640px;}
.ls32_c00124{letter-spacing:0.499320px;}
.ls36_c00124{letter-spacing:0.526680px;}
.ls5b_c00124{letter-spacing:0.574560px;}
.ls33_c00124{letter-spacing:0.601920px;}
.ls17_c00124{letter-spacing:0.615600px;}
.ls29_c00124{letter-spacing:0.629280px;}
.ls3f_c00124{letter-spacing:0.642960px;}
.ls25_c00124{letter-spacing:0.649800px;}
.ls1b_c00124{letter-spacing:0.656640px;}
.ls0_c00124{letter-spacing:0.663480px;}
.ls57_c00124{letter-spacing:0.677160px;}
.lsd_c00124{letter-spacing:0.697680px;}
.ls12_c00124{letter-spacing:0.718200px;}
.ls30_c00124{letter-spacing:0.731880px;}
.ls19_c00124{letter-spacing:0.738720px;}
.ls4e_c00124{letter-spacing:0.745560px;}
.ls6_c00124{letter-spacing:0.752400px;}
.ls21_c00124{letter-spacing:0.786600px;}
.ls26_c00124{letter-spacing:0.813960px;}
.ls1_c00124{letter-spacing:0.820800px;}
.ls59_c00124{letter-spacing:0.834480px;}
.ls3_c00124{letter-spacing:0.841320px;}
.ls35_c00124{letter-spacing:0.848160px;}
.lsc_c00124{letter-spacing:0.875520px;}
.ls1a_c00124{letter-spacing:0.889200px;}
.lsf_c00124{letter-spacing:0.909720px;}
.ls5_c00124{letter-spacing:0.916560px;}
.ls37_c00124{letter-spacing:0.930240px;}
.ls9_c00124{letter-spacing:0.943920px;}
.ls16_c00124{letter-spacing:0.950760px;}
.ls54_c00124{letter-spacing:0.964440px;}
.ls14_c00124{letter-spacing:0.971280px;}
.ls2b_c00124{letter-spacing:0.991800px;}
.ls6c_c00124{letter-spacing:1.012320px;}
.ls13_c00124{letter-spacing:1.019160px;}
.ls2_c00124{letter-spacing:1.060200px;}
.ls4c_c00124{letter-spacing:1.073880px;}
.ls2c_c00124{letter-spacing:1.101240px;}
.ls4d_c00124{letter-spacing:1.108080px;}
.ls51_c00124{letter-spacing:1.121760px;}
.ls22_c00124{letter-spacing:1.128600px;}
.ls1d_c00124{letter-spacing:1.142280px;}
.ls4b_c00124{letter-spacing:1.155960px;}
.ls23_c00124{letter-spacing:1.183320px;}
.ls1c_c00124{letter-spacing:1.224360px;}
.ls2e_c00124{letter-spacing:1.238040px;}
.lse_c00124{letter-spacing:1.251720px;}
.ls4f_c00124{letter-spacing:1.265400px;}
.ls50_c00124{letter-spacing:1.272240px;}
.ls20_c00124{letter-spacing:1.306440px;}
.ls47_c00124{letter-spacing:1.409040px;}
.ls48_c00124{letter-spacing:1.436400px;}
.ls55_c00124{letter-spacing:1.450080px;}
.ls41_c00124{letter-spacing:1.593720px;}
.ls2f_c00124{letter-spacing:1.627920px;}
.ls2d_c00124{letter-spacing:1.648440px;}
.ls5a_c00124{letter-spacing:1.682640px;}
.ls3a_c00124{letter-spacing:1.757880px;}
.ls52_c00124{letter-spacing:1.792080px;}
.ls38_c00124{letter-spacing:1.812600px;}
.ls11_c00124{letter-spacing:2.154600px;}
.ls46_c00124{letter-spacing:2.441880px;}
.ls24_c00124{letter-spacing:2.961720px;}
.ls31_c00124{letter-spacing:3.091680px;}
.ls62_c00124{letter-spacing:3.420000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{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__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00124{word-spacing:-17.975520px;}
.ws3_c00124{word-spacing:-0.239400px;}
.ws6_c00124{word-spacing:0.000000px;}
.ws4_c00124{word-spacing:2.120400px;}
.ws5_c00124{word-spacing:10.560960px;}
.ws0_c00124{word-spacing:17.400960px;}
.ws2_c00124{word-spacing:30.301200px;}
._6_c00124{margin-left:-3.734640px;}
._5_c00124{margin-left:-2.462400px;}
._9_c00124{margin-left:-1.020480px;}
._0_c00124{width:1.395360px;}
._2_c00124{width:2.701800px;}
._1_c00124{width:3.714120px;}
._b_c00124{width:4.829040px;}
._3_c00124{width:6.224400px;}
._4_c00124{width:8.198880px;}
._c_c00124{width:9.596520px;}
._d_c00124{width:12.086280px;}
._f_c00124{width:13.209600px;}
._a_c00124{width:14.473440px;}
._7_c00124{width:16.532280px;}
._8_c00124{width:18.632160px;}
._10_c00124{width:19.836000px;}
._e_c00124{width:21.300000px;}
.fc0_c00124{color:transparent;}
.fs6_c00124{font-size:53.280000px;}
.fs8_c00124{font-size:54.720000px;}
.fs9_c00124{font-size:58.800000px;}
.fs0_c00124{font-size:66.000000px;}
.fs4_c00124{font-size:67.800000px;}
.fs1_c00124{font-size:68.400000px;}
.fs2_c00124{font-size:73.200000px;}
.fs5_c00124{font-size:73.800000px;}
.fs3_c00124{font-size:75.000000px;}
.fs7_c00124{font-size:82.200000px;}
.y0_c00124{bottom:0.000000px;}
.y22_c00124{bottom:69.855000px;}
.y21_c00124{bottom:145.800000px;}
.y20_c00124{bottom:145.800600px;}
.y1f_c00124{bottom:177.127800px;}
.y1d_c00124{bottom:208.448700px;}
.y1e_c00124{bottom:208.455000px;}
.y1c_c00124{bottom:269.991600px;}
.y1b_c00124{bottom:301.695000px;}
.y1a_c00124{bottom:363.975000px;}
.y19_c00124{bottom:396.000000px;}
.y18_c00124{bottom:396.000600px;}
.y16_c00124{bottom:458.648700px;}
.y17_c00124{bottom:458.655000px;}
.y15_c00124{bottom:490.335000px;}
.y14_c00124{bottom:552.973500px;}
.y13_c00124{bottom:615.969900px;}
.y12_c00124{bottom:647.280000px;}
.y10_c00124{bottom:710.272800px;}
.y11_c00124{bottom:710.280000px;}
.yf_c00124{bottom:741.600000px;}
.ye_c00124{bottom:741.601500px;}
.yd_c00124{bottom:772.928700px;}
.yc_c00124{bottom:804.615000px;}
.yb_c00124{bottom:867.240000px;}
.y9_c00124{bottom:898.932600px;}
.ya_c00124{bottom:898.935000px;}
.y8_c00124{bottom:962.288100px;}
.y6_c00124{bottom:992.873700px;}
.y7_c00124{bottom:992.880000px;}
.y4_c00124{bottom:1024.555500px;}
.y5_c00124{bottom:1024.560000px;}
.y3_c00124{bottom:1087.192800px;}
.y2_c00124{bottom:1118.520000px;}
.y1_c00124{bottom:1194.855000px;}
.hb_c00124{height:35.484480px;}
.hd_c00124{height:36.443520px;}
.he_c00124{height:61.326563px;}
.h2_c00124{height:66.515625px;}
.h5_c00124{height:67.097461px;}
.h4_c00124{height:67.130859px;}
.h9_c00124{height:67.136859px;}
.h7_c00124{height:67.159659px;}
.h8_c00124{height:70.713281px;}
.ha_c00124{height:72.394629px;}
.h6_c00124{height:73.608398px;}
.h3_c00124{height:76.345312px;}
.hc_c00124{height:80.674805px;}
.h1_c00124{height:1263.000000px;}
.h0_c00124{height:1263.240000px;}
.w1_c00124{width:892.500000px;}
.w0_c00124{width:892.800000px;}
.x0_c00124{left:0.000000px;}
.x1d_c00124{left:118.046100px;}
.x13_c00124{left:119.096700px;}
.xe_c00124{left:120.218100px;}
.x6_c00124{left:121.851300px;}
.x2_c00124{left:123.450000px;}
.x1_c00124{left:124.485000px;}
.x1b_c00124{left:171.855000px;}
.x12_c00124{left:173.325000px;}
.xd_c00124{left:174.750000px;}
.x3_c00124{left:176.214000px;}
.xf_c00124{left:198.180000px;}
.x10_c00124{left:223.170000px;}
.x15_c00124{left:260.790000px;}
.xc_c00124{left:276.765000px;}
.x11_c00124{left:296.040000px;}
.x14_c00124{left:299.370000px;}
.x4_c00124{left:346.230000px;}
.x7_c00124{left:364.485000px;}
.x5_c00124{left:369.750000px;}
.x16_c00124{left:373.380000px;}
.x8_c00124{left:387.270000px;}
.x17_c00124{left:390.765000px;}
.x9_c00124{left:409.605000px;}
.x18_c00124{left:418.485000px;}
.x20_c00124{left:423.645000px;}
.x1c_c00124{left:433.695000px;}
.xa_c00124{left:445.875000px;}
.x19_c00124{left:459.735000px;}
.x1a_c00124{left:523.050000px;}
.x1e_c00124{left:590.415000px;}
.x1f_c00124{left:653.595000px;}
.xb_c00124{left:726.045000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls7d_c00124{letter-spacing:-2.557333pt;}
.ls68_c00124{letter-spacing:-2.333333pt;}
.ls64_c00124{letter-spacing:-2.128000pt;}
.ls70_c00124{letter-spacing:-2.109333pt;}
.ls5c_c00124{letter-spacing:-2.053333pt;}
.ls71_c00124{letter-spacing:-1.934560pt;}
.ls83_c00124{letter-spacing:-1.909120pt;}
.ls86_c00124{letter-spacing:-1.829333pt;}
.ls80_c00124{letter-spacing:-1.623360pt;}
.ls73_c00124{letter-spacing:-1.620320pt;}
.ls76_c00124{letter-spacing:-1.495680pt;}
.ls7b_c00124{letter-spacing:-1.392320pt;}
.ls7f_c00124{letter-spacing:-1.270720pt;}
.ls72_c00124{letter-spacing:-1.200480pt;}
.ls7c_c00124{letter-spacing:-1.161280pt;}
.ls5e_c00124{letter-spacing:-1.158187pt;}
.ls60_c00124{letter-spacing:-0.608000pt;}
.ls78_c00124{letter-spacing:-0.589760pt;}
.ls79_c00124{letter-spacing:-0.535040pt;}
.ls77_c00124{letter-spacing:-0.480320pt;}
.ls5f_c00124{letter-spacing:-0.468160pt;}
.ls6f_c00124{letter-spacing:-0.456000pt;}
.ls63_c00124{letter-spacing:-0.425600pt;}
.ls65_c00124{letter-spacing:-0.407360pt;}
.ls6e_c00124{letter-spacing:-0.358720pt;}
.ls6a_c00124{letter-spacing:-0.334400pt;}
.ls84_c00124{letter-spacing:-0.255360pt;}
.ls6d_c00124{letter-spacing:-0.158080pt;}
.ls7e_c00124{letter-spacing:-0.152000pt;}
.ls66_c00124{letter-spacing:-0.139840pt;}
.ls82_c00124{letter-spacing:-0.133760pt;}
.ls75_c00124{letter-spacing:-0.091200pt;}
.ls81_c00124{letter-spacing:-0.060800pt;}
.ls7a_c00124{letter-spacing:-0.012160pt;}
.ls6b_c00124{letter-spacing:-0.006080pt;}
.ls5d_c00124{letter-spacing:0.000000pt;}
.ls4a_c00124{letter-spacing:0.006080pt;}
.ls85_c00124{letter-spacing:0.042560pt;}
.ls28_c00124{letter-spacing:0.072960pt;}
.ls34_c00124{letter-spacing:0.091200pt;}
.ls7_c00124{letter-spacing:0.097280pt;}
.ls49_c00124{letter-spacing:0.103360pt;}
.ls67_c00124{letter-spacing:0.109440pt;}
.ls42_c00124{letter-spacing:0.127680pt;}
.ls2a_c00124{letter-spacing:0.139840pt;}
.ls27_c00124{letter-spacing:0.145920pt;}
.lsa_c00124{letter-spacing:0.182400pt;}
.ls58_c00124{letter-spacing:0.194560pt;}
.ls74_c00124{letter-spacing:0.206720pt;}
.ls61_c00124{letter-spacing:0.218880pt;}
.ls44_c00124{letter-spacing:0.224960pt;}
.ls18_c00124{letter-spacing:0.231040pt;}
.ls3c_c00124{letter-spacing:0.255360pt;}
.ls3d_c00124{letter-spacing:0.261440pt;}
.ls8_c00124{letter-spacing:0.279680pt;}
.ls53_c00124{letter-spacing:0.285760pt;}
.ls10_c00124{letter-spacing:0.297920pt;}
.ls15_c00124{letter-spacing:0.304000pt;}
.ls45_c00124{letter-spacing:0.322240pt;}
.ls1e_c00124{letter-spacing:0.328320pt;}
.ls43_c00124{letter-spacing:0.334400pt;}
.ls39_c00124{letter-spacing:0.340480pt;}
.ls69_c00124{letter-spacing:0.352640pt;}
.ls1f_c00124{letter-spacing:0.358720pt;}
.ls4_c00124{letter-spacing:0.364800pt;}
.lsb_c00124{letter-spacing:0.389120pt;}
.ls40_c00124{letter-spacing:0.407360pt;}
.ls56_c00124{letter-spacing:0.419520pt;}
.ls3e_c00124{letter-spacing:0.425600pt;}
.ls3b_c00124{letter-spacing:0.431680pt;}
.ls32_c00124{letter-spacing:0.443840pt;}
.ls36_c00124{letter-spacing:0.468160pt;}
.ls5b_c00124{letter-spacing:0.510720pt;}
.ls33_c00124{letter-spacing:0.535040pt;}
.ls17_c00124{letter-spacing:0.547200pt;}
.ls29_c00124{letter-spacing:0.559360pt;}
.ls3f_c00124{letter-spacing:0.571520pt;}
.ls25_c00124{letter-spacing:0.577600pt;}
.ls1b_c00124{letter-spacing:0.583680pt;}
.ls0_c00124{letter-spacing:0.589760pt;}
.ls57_c00124{letter-spacing:0.601920pt;}
.lsd_c00124{letter-spacing:0.620160pt;}
.ls12_c00124{letter-spacing:0.638400pt;}
.ls30_c00124{letter-spacing:0.650560pt;}
.ls19_c00124{letter-spacing:0.656640pt;}
.ls4e_c00124{letter-spacing:0.662720pt;}
.ls6_c00124{letter-spacing:0.668800pt;}
.ls21_c00124{letter-spacing:0.699200pt;}
.ls26_c00124{letter-spacing:0.723520pt;}
.ls1_c00124{letter-spacing:0.729600pt;}
.ls59_c00124{letter-spacing:0.741760pt;}
.ls3_c00124{letter-spacing:0.747840pt;}
.ls35_c00124{letter-spacing:0.753920pt;}
.lsc_c00124{letter-spacing:0.778240pt;}
.ls1a_c00124{letter-spacing:0.790400pt;}
.lsf_c00124{letter-spacing:0.808640pt;}
.ls5_c00124{letter-spacing:0.814720pt;}
.ls37_c00124{letter-spacing:0.826880pt;}
.ls9_c00124{letter-spacing:0.839040pt;}
.ls16_c00124{letter-spacing:0.845120pt;}
.ls54_c00124{letter-spacing:0.857280pt;}
.ls14_c00124{letter-spacing:0.863360pt;}
.ls2b_c00124{letter-spacing:0.881600pt;}
.ls6c_c00124{letter-spacing:0.899840pt;}
.ls13_c00124{letter-spacing:0.905920pt;}
.ls2_c00124{letter-spacing:0.942400pt;}
.ls4c_c00124{letter-spacing:0.954560pt;}
.ls2c_c00124{letter-spacing:0.978880pt;}
.ls4d_c00124{letter-spacing:0.984960pt;}
.ls51_c00124{letter-spacing:0.997120pt;}
.ls22_c00124{letter-spacing:1.003200pt;}
.ls1d_c00124{letter-spacing:1.015360pt;}
.ls4b_c00124{letter-spacing:1.027520pt;}
.ls23_c00124{letter-spacing:1.051840pt;}
.ls1c_c00124{letter-spacing:1.088320pt;}
.ls2e_c00124{letter-spacing:1.100480pt;}
.lse_c00124{letter-spacing:1.112640pt;}
.ls4f_c00124{letter-spacing:1.124800pt;}
.ls50_c00124{letter-spacing:1.130880pt;}
.ls20_c00124{letter-spacing:1.161280pt;}
.ls47_c00124{letter-spacing:1.252480pt;}
.ls48_c00124{letter-spacing:1.276800pt;}
.ls55_c00124{letter-spacing:1.288960pt;}
.ls41_c00124{letter-spacing:1.416640pt;}
.ls2f_c00124{letter-spacing:1.447040pt;}
.ls2d_c00124{letter-spacing:1.465280pt;}
.ls5a_c00124{letter-spacing:1.495680pt;}
.ls3a_c00124{letter-spacing:1.562560pt;}
.ls52_c00124{letter-spacing:1.592960pt;}
.ls38_c00124{letter-spacing:1.611200pt;}
.ls11_c00124{letter-spacing:1.915200pt;}
.ls46_c00124{letter-spacing:2.170560pt;}
.ls24_c00124{letter-spacing:2.632640pt;}
.ls31_c00124{letter-spacing:2.748160pt;}
.ls62_c00124{letter-spacing:3.040000pt;}
.ws1_c00124{word-spacing:-15.978240pt;}
.ws3_c00124{word-spacing:-0.212800pt;}
.ws6_c00124{word-spacing:0.000000pt;}
.ws4_c00124{word-spacing:1.884800pt;}
.ws5_c00124{word-spacing:9.387520pt;}
.ws0_c00124{word-spacing:15.467520pt;}
.ws2_c00124{word-spacing:26.934400pt;}
._6_c00124{margin-left:-3.319680pt;}
._5_c00124{margin-left:-2.188800pt;}
._9_c00124{margin-left:-0.907093pt;}
._0_c00124{width:1.240320pt;}
._2_c00124{width:2.401600pt;}
._1_c00124{width:3.301440pt;}
._b_c00124{width:4.292480pt;}
._3_c00124{width:5.532800pt;}
._4_c00124{width:7.287893pt;}
._c_c00124{width:8.530240pt;}
._d_c00124{width:10.743360pt;}
._f_c00124{width:11.741867pt;}
._a_c00124{width:12.865280pt;}
._7_c00124{width:14.695360pt;}
._8_c00124{width:16.561920pt;}
._10_c00124{width:17.632000pt;}
._e_c00124{width:18.933333pt;}
.fs6_c00124{font-size:47.360000pt;}
.fs8_c00124{font-size:48.640000pt;}
.fs9_c00124{font-size:52.266667pt;}
.fs0_c00124{font-size:58.666667pt;}
.fs4_c00124{font-size:60.266667pt;}
.fs1_c00124{font-size:60.800000pt;}
.fs2_c00124{font-size:65.066667pt;}
.fs5_c00124{font-size:65.600000pt;}
.fs3_c00124{font-size:66.666667pt;}
.fs7_c00124{font-size:73.066667pt;}
.y0_c00124{bottom:0.000000pt;}
.y22_c00124{bottom:62.093333pt;}
.y21_c00124{bottom:129.600000pt;}
.y20_c00124{bottom:129.600533pt;}
.y1f_c00124{bottom:157.446933pt;}
.y1d_c00124{bottom:185.287733pt;}
.y1e_c00124{bottom:185.293333pt;}
.y1c_c00124{bottom:239.992533pt;}
.y1b_c00124{bottom:268.173333pt;}
.y1a_c00124{bottom:323.533333pt;}
.y19_c00124{bottom:352.000000pt;}
.y18_c00124{bottom:352.000533pt;}
.y16_c00124{bottom:407.687733pt;}
.y17_c00124{bottom:407.693333pt;}
.y15_c00124{bottom:435.853333pt;}
.y14_c00124{bottom:491.532000pt;}
.y13_c00124{bottom:547.528800pt;}
.y12_c00124{bottom:575.360000pt;}
.y10_c00124{bottom:631.353600pt;}
.y11_c00124{bottom:631.360000pt;}
.yf_c00124{bottom:659.200000pt;}
.ye_c00124{bottom:659.201333pt;}
.yd_c00124{bottom:687.047733pt;}
.yc_c00124{bottom:715.213333pt;}
.yb_c00124{bottom:770.880000pt;}
.y9_c00124{bottom:799.051200pt;}
.ya_c00124{bottom:799.053333pt;}
.y8_c00124{bottom:855.367200pt;}
.y6_c00124{bottom:882.554400pt;}
.y7_c00124{bottom:882.560000pt;}
.y4_c00124{bottom:910.716000pt;}
.y5_c00124{bottom:910.720000pt;}
.y3_c00124{bottom:966.393600pt;}
.y2_c00124{bottom:994.240000pt;}
.y1_c00124{bottom:1062.093333pt;}
.hb_c00124{height:31.541760pt;}
.hd_c00124{height:32.394240pt;}
.he_c00124{height:54.512500pt;}
.h2_c00124{height:59.125000pt;}
.h5_c00124{height:59.642187pt;}
.h4_c00124{height:59.671875pt;}
.h9_c00124{height:59.677208pt;}
.h7_c00124{height:59.697475pt;}
.h8_c00124{height:62.856250pt;}
.ha_c00124{height:64.350781pt;}
.h6_c00124{height:65.429688pt;}
.h3_c00124{height:67.862500pt;}
.hc_c00124{height:71.710937pt;}
.h1_c00124{height:1122.666667pt;}
.h0_c00124{height:1122.880000pt;}
.w1_c00124{width:793.333333pt;}
.w0_c00124{width:793.600000pt;}
.x0_c00124{left:0.000000pt;}
.x1d_c00124{left:104.929867pt;}
.x13_c00124{left:105.863733pt;}
.xe_c00124{left:106.860533pt;}
.x6_c00124{left:108.312267pt;}
.x2_c00124{left:109.733333pt;}
.x1_c00124{left:110.653333pt;}
.x1b_c00124{left:152.760000pt;}
.x12_c00124{left:154.066667pt;}
.xd_c00124{left:155.333333pt;}
.x3_c00124{left:156.634667pt;}
.xf_c00124{left:176.160000pt;}
.x10_c00124{left:198.373333pt;}
.x15_c00124{left:231.813333pt;}
.xc_c00124{left:246.013333pt;}
.x11_c00124{left:263.146667pt;}
.x14_c00124{left:266.106667pt;}
.x4_c00124{left:307.760000pt;}
.x7_c00124{left:323.986667pt;}
.x5_c00124{left:328.666667pt;}
.x16_c00124{left:331.893333pt;}
.x8_c00124{left:344.240000pt;}
.x17_c00124{left:347.346667pt;}
.x9_c00124{left:364.093333pt;}
.x18_c00124{left:371.986667pt;}
.x20_c00124{left:376.573333pt;}
.x1c_c00124{left:385.506667pt;}
.xa_c00124{left:396.333333pt;}
.x19_c00124{left:408.653333pt;}
.x1a_c00124{left:464.933333pt;}
.x1e_c00124{left:524.813333pt;}
.x1f_c00124{left:580.973333pt;}
.xb_c00124{left:645.373333pt;}
}





/* 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_c00125 {
    display:none;
  }
  .loading-indicator_c00125.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00125 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_c00125 { 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_c00125" -> "#page-container .classname_c00125")
 */
.pf_c00125 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00125 { /* 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_c00125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00125 { /* 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_c00125 { /* 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_c00125 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00125 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00125 {overflow:visible;}
  }
}
.c_c00125 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00125 { /* 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_c00125:after { /* webkit #35443 */
  content: '';
}
.t_c00125:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00125 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 */
}
.__c00125 { /* 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_c00125 { /* info for Javascript */
  display:none;
}
.l_c00125 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00125 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00125 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00125: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_c00125 {
    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_c00125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00125.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_c00125 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00125;src:url('chunks/assets/font_035c5b87f6bbd98e92567439.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.284668;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_c00125;src:url('chunks/assets/font_44972ba47157695b7b9ab0ea.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.284180;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_c00125;src:url('chunks/assets/font_22221a32b84a1b92bb8ffe0d.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:0.666000;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_c00125;src:url('chunks/assets/font_908b9e31150bbe4ddc529c45.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;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;}
.m4_c00125{transform:matrix(0.142361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142361,0.000000,0.000000,0.250000,0,0);}
.m9_c00125{transform:matrix(0.162447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162447,0.000000,0.000000,0.250000,0,0);}
.m7_c00125{transform:matrix(0.164735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164735,0.000000,0.000000,0.250000,0,0);}
.m8_c00125{transform:matrix(0.167021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167021,0.000000,0.000000,0.250000,0,0);}
.ma_c00125{transform:matrix(0.168596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168596,0.000000,0.000000,0.250000,0,0);}
.m2_c00125{transform:matrix(0.208615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208615,0.000000,0.000000,0.250000,0,0);}
.m3_c00125{transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);}
.mc_c00125{transform:matrix(0.242646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242646,0.000000,0.000000,0.250000,0,0);}
.md_c00125{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m6_c00125{transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);}
.m12_c00125{transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);}
.m10_c00125{transform:matrix(0.247341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247341,0.000000,0.000000,0.250000,0,0);}
.m14_c00125{transform:matrix(0.247537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247537,0.000000,0.000000,0.250000,0,0);}
.me_c00125{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m11_c00125{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m5_c00125{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.mf_c00125{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m1_c00125{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);}
.mb_c00125{transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);}
.m0_c00125{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m13_c00125{transform:matrix(0.255737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255737,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls63_c00125{letter-spacing:-2.751000px;}
.ls51_c00125{letter-spacing:-2.730000px;}
.ls6a_c00125{letter-spacing:-2.688000px;}
.ls5d_c00125{letter-spacing:-2.415000px;}
.ls42_c00125{letter-spacing:-2.387400px;}
.ls7d_c00125{letter-spacing:-2.373000px;}
.ls60_c00125{letter-spacing:-2.352000px;}
.ls7a_c00125{letter-spacing:-2.201100px;}
.ls93_c00125{letter-spacing:-2.125200px;}
.ls8f_c00125{letter-spacing:-1.911300px;}
.ls8b_c00125{letter-spacing:-1.731900px;}
.ls67_c00125{letter-spacing:-1.656000px;}
.ls8d_c00125{letter-spacing:-1.628400px;}
.ls4c_c00125{letter-spacing:-1.538700px;}
.ls80_c00125{letter-spacing:-1.511100px;}
.ls8e_c00125{letter-spacing:-1.469700px;}
.ls92_c00125{letter-spacing:-1.435200px;}
.ls62_c00125{letter-spacing:-1.283400px;}
.ls9c_c00125{letter-spacing:-1.251300px;}
.ls96_c00125{letter-spacing:-1.235100px;}
.ls98_c00125{letter-spacing:-1.173000px;}
.ls66_c00125{letter-spacing:-1.131600px;}
.ls57_c00125{letter-spacing:-1.110900px;}
.ls44_c00125{letter-spacing:-1.083300px;}
.ls90_c00125{letter-spacing:-1.048800px;}
.ls55_c00125{letter-spacing:-1.007400px;}
.ls8a_c00125{letter-spacing:-1.000500px;}
.ls70_c00125{letter-spacing:-0.966000px;}
.ls97_c00125{letter-spacing:-0.855600px;}
.ls58_c00125{letter-spacing:-0.848700px;}
.ls53_c00125{letter-spacing:-0.821100px;}
.ls82_c00125{letter-spacing:-0.800400px;}
.ls6f_c00125{letter-spacing:-0.772800px;}
.ls95_c00125{letter-spacing:-0.710700px;}
.ls7f_c00125{letter-spacing:-0.683100px;}
.ls52_c00125{letter-spacing:-0.634800px;}
.ls9b_c00125{letter-spacing:-0.627900px;}
.ls46_c00125{letter-spacing:-0.593400px;}
.ls94_c00125{letter-spacing:-0.572700px;}
.ls88_c00125{letter-spacing:-0.558900px;}
.ls4b_c00125{letter-spacing:-0.552000px;}
.ls7e_c00125{letter-spacing:-0.531300px;}
.ls8c_c00125{letter-spacing:-0.517500px;}
.ls87_c00125{letter-spacing:-0.489900px;}
.ls4d_c00125{letter-spacing:-0.469200px;}
.ls5a_c00125{letter-spacing:-0.455400px;}
.ls50_c00125{letter-spacing:-0.434700px;}
.ls83_c00125{letter-spacing:-0.414000px;}
.ls59_c00125{letter-spacing:-0.407100px;}
.ls5e_c00125{letter-spacing:-0.386400px;}
.ls6d_c00125{letter-spacing:-0.379500px;}
.ls86_c00125{letter-spacing:-0.358800px;}
.ls73_c00125{letter-spacing:-0.345000px;}
.ls89_c00125{letter-spacing:-0.331200px;}
.ls7c_c00125{letter-spacing:-0.317400px;}
.ls54_c00125{letter-spacing:-0.289800px;}
.ls76_c00125{letter-spacing:-0.282900px;}
.ls9a_c00125{letter-spacing:-0.269100px;}
.ls45_c00125{letter-spacing:-0.248400px;}
.ls69_c00125{letter-spacing:-0.241500px;}
.ls77_c00125{letter-spacing:-0.220800px;}
.ls5b_c00125{letter-spacing:-0.200100px;}
.ls4f_c00125{letter-spacing:-0.193200px;}
.ls64_c00125{letter-spacing:-0.179400px;}
.ls78_c00125{letter-spacing:-0.172500px;}
.ls72_c00125{letter-spacing:-0.165600px;}
.ls79_c00125{letter-spacing:-0.158700px;}
.ls74_c00125{letter-spacing:-0.151800px;}
.ls49_c00125{letter-spacing:-0.144900px;}
.ls81_c00125{letter-spacing:-0.138000px;}
.ls75_c00125{letter-spacing:-0.131100px;}
.ls7b_c00125{letter-spacing:-0.124200px;}
.ls6e_c00125{letter-spacing:-0.117300px;}
.ls48_c00125{letter-spacing:-0.110400px;}
.ls68_c00125{letter-spacing:-0.103500px;}
.ls65_c00125{letter-spacing:-0.096600px;}
.ls99_c00125{letter-spacing:-0.089700px;}
.ls5f_c00125{letter-spacing:-0.082800px;}
.ls41_c00125{letter-spacing:-0.075900px;}
.ls43_c00125{letter-spacing:-0.055200px;}
.ls6b_c00125{letter-spacing:-0.041400px;}
.ls85_c00125{letter-spacing:-0.034500px;}
.ls6c_c00125{letter-spacing:-0.027600px;}
.ls4a_c00125{letter-spacing:-0.020700px;}
.ls4e_c00125{letter-spacing:0.000000px;}
.lsc_c00125{letter-spacing:0.006900px;}
.ls22_c00125{letter-spacing:0.013800px;}
.ls26_c00125{letter-spacing:0.020700px;}
.ls3f_c00125{letter-spacing:0.027600px;}
.ls1a_c00125{letter-spacing:0.034500px;}
.ls1f_c00125{letter-spacing:0.041400px;}
.ls18_c00125{letter-spacing:0.048300px;}
.ls5c_c00125{letter-spacing:0.055200px;}
.ls30_c00125{letter-spacing:0.062100px;}
.ls21_c00125{letter-spacing:0.069000px;}
.ls61_c00125{letter-spacing:0.087360px;}
.ls84_c00125{letter-spacing:0.096600px;}
.ls47_c00125{letter-spacing:0.110400px;}
.ls1c_c00125{letter-spacing:0.117300px;}
.ls9_c00125{letter-spacing:0.124200px;}
.ls8_c00125{letter-spacing:0.131100px;}
.lsb_c00125{letter-spacing:0.144900px;}
.ls10_c00125{letter-spacing:0.158700px;}
.ls11_c00125{letter-spacing:0.172500px;}
.ls29_c00125{letter-spacing:0.186300px;}
.ls20_c00125{letter-spacing:0.193200px;}
.ls1e_c00125{letter-spacing:0.207000px;}
.ls19_c00125{letter-spacing:0.213900px;}
.ls23_c00125{letter-spacing:0.220800px;}
.ls6_c00125{letter-spacing:0.234600px;}
.lse_c00125{letter-spacing:0.248400px;}
.ls35_c00125{letter-spacing:0.269100px;}
.ls16_c00125{letter-spacing:0.276000px;}
.ls3b_c00125{letter-spacing:0.289800px;}
.ls3c_c00125{letter-spacing:0.303600px;}
.ls56_c00125{letter-spacing:0.310500px;}
.ls25_c00125{letter-spacing:0.324300px;}
.ls5_c00125{letter-spacing:0.331200px;}
.ls12_c00125{letter-spacing:0.338100px;}
.ls17_c00125{letter-spacing:0.345000px;}
.ls3d_c00125{letter-spacing:0.351900px;}
.ls3_c00125{letter-spacing:0.427800px;}
.ls2f_c00125{letter-spacing:0.469200px;}
.ls2d_c00125{letter-spacing:0.510720px;}
.ls13_c00125{letter-spacing:0.558900px;}
.ls2e_c00125{letter-spacing:0.571200px;}
.lsf_c00125{letter-spacing:0.607200px;}
.ls28_c00125{letter-spacing:0.627900px;}
.ls3e_c00125{letter-spacing:0.634800px;}
.lsa_c00125{letter-spacing:0.641700px;}
.ls2_c00125{letter-spacing:0.759000px;}
.ls0_c00125{letter-spacing:0.765900px;}
.ls24_c00125{letter-spacing:0.853440px;}
.ls2a_c00125{letter-spacing:0.873600px;}
.ls32_c00125{letter-spacing:0.883200px;}
.ls2b_c00125{letter-spacing:0.986700px;}
.ls15_c00125{letter-spacing:0.994560px;}
.ls3a_c00125{letter-spacing:1.048320px;}
.lsd_c00125{letter-spacing:1.097100px;}
.ls1_c00125{letter-spacing:1.117800px;}
.ls34_c00125{letter-spacing:1.122240px;}
.ls37_c00125{letter-spacing:1.166100px;}
.ls1d_c00125{letter-spacing:1.169280px;}
.ls1b_c00125{letter-spacing:1.179900px;}
.ls38_c00125{letter-spacing:1.276800px;}
.ls2c_c00125{letter-spacing:1.297200px;}
.ls39_c00125{letter-spacing:1.303680px;}
.ls14_c00125{letter-spacing:1.317120px;}
.ls7_c00125{letter-spacing:1.628400px;}
.ls4_c00125{letter-spacing:1.842300px;}
.ls31_c00125{letter-spacing:2.056200px;}
.ls36_c00125{letter-spacing:2.143680px;}
.ls33_c00125{letter-spacing:2.392320px;}
.ls27_c00125{letter-spacing:2.539200px;}
.ls40_c00125{letter-spacing:2.910000px;}
.ls71_c00125{letter-spacing:3.450000px;}
.ls91_c00125{letter-spacing:3.510000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{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__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00125{word-spacing:0.000000px;}
.ws3_c00125{word-spacing:0.175200px;}
.ws4_c00125{word-spacing:3.540000px;}
.ws0_c00125{word-spacing:5.801760px;}
.ws2_c00125{word-spacing:7.084800px;}
.ws5_c00125{word-spacing:12.892320px;}
.ws1_c00125{word-spacing:27.317280px;}
._b_c00125{margin-left:-4.664400px;}
._14_c00125{margin-left:-3.394800px;}
._7_c00125{margin-left:-2.139000px;}
._8_c00125{width:1.994100px;}
._9_c00125{width:3.225600px;}
._0_c00125{width:4.912800px;}
._3_c00125{width:6.044400px;}
._4_c00125{width:8.176500px;}
._1_c00125{width:9.494400px;}
._5_c00125{width:11.012400px;}
._a_c00125{width:12.458100px;}
._2_c00125{width:13.606800px;}
._6_c00125{width:14.690100px;}
._13_c00125{width:16.525500px;}
._11_c00125{width:17.615700px;}
._16_c00125{width:18.975000px;}
._12_c00125{width:20.389500px;}
._10_c00125{width:21.741900px;}
._15_c00125{width:22.839000px;}
._c_c00125{width:24.702000px;}
._f_c00125{width:26.468400px;}
._d_c00125{width:27.627600px;}
._e_c00125{width:29.173200px;}
.fc0_c00125{color:transparent;}
.fs4_c00125{font-size:51.840000px;}
.fs0_c00125{font-size:58.200000px;}
.fs9_c00125{font-size:66.000000px;}
.fs3_c00125{font-size:67.200000px;}
.fs7_c00125{font-size:67.800000px;}
.fs1_c00125{font-size:69.000000px;}
.fs8_c00125{font-size:70.200000px;}
.fs6_c00125{font-size:76.800000px;}
.fs2_c00125{font-size:78.000000px;}
.fs5_c00125{font-size:78.600000px;}
.y0_c00125{bottom:0.000000px;}
.y1e_c00125{bottom:68.775015px;}
.y1d_c00125{bottom:145.093515px;}
.y1c_c00125{bottom:176.040015px;}
.y1b_c00125{bottom:239.400015px;}
.y1a_c00125{bottom:270.375015px;}
.y19_c00125{bottom:331.920015px;}
.y18_c00125{bottom:363.255015px;}
.y17_c00125{bottom:363.260265px;}
.y16_c00125{bottom:425.895015px;}
.y15_c00125{bottom:457.215015px;}
.y13_c00125{bottom:519.834015px;}
.y14_c00125{bottom:519.840015px;}
.y12_c00125{bottom:550.815015px;}
.y11_c00125{bottom:614.175015px;}
.y20_c00125{bottom:615.600015px;}
.y1f_c00125{bottom:619.215015px;}
.yf_c00125{bottom:645.483015px;}
.y10_c00125{bottom:645.495015px;}
.ye_c00125{bottom:676.809015px;}
.yd_c00125{bottom:708.135015px;}
.yc_c00125{bottom:739.095015px;}
.yb_c00125{bottom:801.375015px;}
.ya_c00125{bottom:833.055015px;}
.y9_c00125{bottom:896.055015px;}
.y8_c00125{bottom:927.375015px;}
.y6_c00125{bottom:989.634015px;}
.y7_c00125{bottom:989.640015px;}
.y4_c00125{bottom:1020.948015px;}
.y5_c00125{bottom:1020.960015px;}
.y3_c00125{bottom:1051.911765px;}
.y2_c00125{bottom:1083.255015px;}
.y1_c00125{bottom:1189.095015px;}
.h5_c00125{height:34.525440px;}
.h2_c00125{height:57.120117px;}
.h6_c00125{height:65.920312px;}
.h3_c00125{height:67.719727px;}
.hc_c00125{height:68.835938px;}
.h9_c00125{height:70.713281px;}
.ha_c00125{height:73.216406px;}
.h8_c00125{height:75.375000px;}
.h4_c00125{height:76.552734px;}
.h7_c00125{height:77.141602px;}
.hb_c00125{height:80.100000px;}
.h1_c00125{height:1263.000000px;}
.h0_c00125{height:1263.240015px;}
.w1_c00125{width:892.500000px;}
.w0_c00125{width:892.800000px;}
.x0_c00125{left:0.000000px;}
.x26_c00125{left:121.510500px;}
.x1_c00125{left:124.845000px;}
.x20_c00125{left:176.895000px;}
.x17_c00125{left:178.005000px;}
.x6_c00125{left:179.085000px;}
.x1b_c00125{left:235.605000px;}
.x18_c00125{left:251.100000px;}
.x4_c00125{left:259.485000px;}
.x1c_c00125{left:263.055000px;}
.x19_c00125{left:267.660000px;}
.x1d_c00125{left:279.630000px;}
.x5_c00125{left:285.015000px;}
.x1a_c00125{left:288.885000px;}
.x2_c00125{left:354.165000px;}
.x3_c00125{left:377.970000px;}
.xf_c00125{left:399.885000px;}
.x15_c00125{left:422.820000px;}
.x27_c00125{left:424.290000px;}
.x24_c00125{left:426.720000px;}
.x1e_c00125{left:428.565000px;}
.x10_c00125{left:430.755000px;}
.x16_c00125{left:439.380000px;}
.xc_c00125{left:448.125000px;}
.x1f_c00125{left:461.280000px;}
.x25_c00125{left:476.310000px;}
.xd_c00125{left:486.210000px;}
.x13_c00125{left:536.655000px;}
.x21_c00125{left:538.680000px;}
.x14_c00125{left:557.970000px;}
.x22_c00125{left:563.565000px;}
.x23_c00125{left:591.960000px;}
.xa_c00125{left:595.230000px;}
.xb_c00125{left:616.590000px;}
.x7_c00125{left:633.975000px;}
.x8_c00125{left:684.915000px;}
.x11_c00125{left:712.365000px;}
.xe_c00125{left:723.165000px;}
.x12_c00125{left:727.905000px;}
.x9_c00125{left:734.235000px;}
.x29_c00125{left:855.495000px;}
.x28_c00125{left:856.545000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls63_c00125{letter-spacing:-2.445333pt;}
.ls51_c00125{letter-spacing:-2.426667pt;}
.ls6a_c00125{letter-spacing:-2.389333pt;}
.ls5d_c00125{letter-spacing:-2.146667pt;}
.ls42_c00125{letter-spacing:-2.122133pt;}
.ls7d_c00125{letter-spacing:-2.109333pt;}
.ls60_c00125{letter-spacing:-2.090667pt;}
.ls7a_c00125{letter-spacing:-1.956533pt;}
.ls93_c00125{letter-spacing:-1.889067pt;}
.ls8f_c00125{letter-spacing:-1.698933pt;}
.ls8b_c00125{letter-spacing:-1.539467pt;}
.ls67_c00125{letter-spacing:-1.472000pt;}
.ls8d_c00125{letter-spacing:-1.447467pt;}
.ls4c_c00125{letter-spacing:-1.367733pt;}
.ls80_c00125{letter-spacing:-1.343200pt;}
.ls8e_c00125{letter-spacing:-1.306400pt;}
.ls92_c00125{letter-spacing:-1.275733pt;}
.ls62_c00125{letter-spacing:-1.140800pt;}
.ls9c_c00125{letter-spacing:-1.112267pt;}
.ls96_c00125{letter-spacing:-1.097867pt;}
.ls98_c00125{letter-spacing:-1.042667pt;}
.ls66_c00125{letter-spacing:-1.005867pt;}
.ls57_c00125{letter-spacing:-0.987467pt;}
.ls44_c00125{letter-spacing:-0.962933pt;}
.ls90_c00125{letter-spacing:-0.932267pt;}
.ls55_c00125{letter-spacing:-0.895467pt;}
.ls8a_c00125{letter-spacing:-0.889333pt;}
.ls70_c00125{letter-spacing:-0.858667pt;}
.ls97_c00125{letter-spacing:-0.760533pt;}
.ls58_c00125{letter-spacing:-0.754400pt;}
.ls53_c00125{letter-spacing:-0.729867pt;}
.ls82_c00125{letter-spacing:-0.711467pt;}
.ls6f_c00125{letter-spacing:-0.686933pt;}
.ls95_c00125{letter-spacing:-0.631733pt;}
.ls7f_c00125{letter-spacing:-0.607200pt;}
.ls52_c00125{letter-spacing:-0.564267pt;}
.ls9b_c00125{letter-spacing:-0.558133pt;}
.ls46_c00125{letter-spacing:-0.527467pt;}
.ls94_c00125{letter-spacing:-0.509067pt;}
.ls88_c00125{letter-spacing:-0.496800pt;}
.ls4b_c00125{letter-spacing:-0.490667pt;}
.ls7e_c00125{letter-spacing:-0.472267pt;}
.ls8c_c00125{letter-spacing:-0.460000pt;}
.ls87_c00125{letter-spacing:-0.435467pt;}
.ls4d_c00125{letter-spacing:-0.417067pt;}
.ls5a_c00125{letter-spacing:-0.404800pt;}
.ls50_c00125{letter-spacing:-0.386400pt;}
.ls83_c00125{letter-spacing:-0.368000pt;}
.ls59_c00125{letter-spacing:-0.361867pt;}
.ls5e_c00125{letter-spacing:-0.343467pt;}
.ls6d_c00125{letter-spacing:-0.337333pt;}
.ls86_c00125{letter-spacing:-0.318933pt;}
.ls73_c00125{letter-spacing:-0.306667pt;}
.ls89_c00125{letter-spacing:-0.294400pt;}
.ls7c_c00125{letter-spacing:-0.282133pt;}
.ls54_c00125{letter-spacing:-0.257600pt;}
.ls76_c00125{letter-spacing:-0.251467pt;}
.ls9a_c00125{letter-spacing:-0.239200pt;}
.ls45_c00125{letter-spacing:-0.220800pt;}
.ls69_c00125{letter-spacing:-0.214667pt;}
.ls77_c00125{letter-spacing:-0.196267pt;}
.ls5b_c00125{letter-spacing:-0.177867pt;}
.ls4f_c00125{letter-spacing:-0.171733pt;}
.ls64_c00125{letter-spacing:-0.159467pt;}
.ls78_c00125{letter-spacing:-0.153333pt;}
.ls72_c00125{letter-spacing:-0.147200pt;}
.ls79_c00125{letter-spacing:-0.141067pt;}
.ls74_c00125{letter-spacing:-0.134933pt;}
.ls49_c00125{letter-spacing:-0.128800pt;}
.ls81_c00125{letter-spacing:-0.122667pt;}
.ls75_c00125{letter-spacing:-0.116533pt;}
.ls7b_c00125{letter-spacing:-0.110400pt;}
.ls6e_c00125{letter-spacing:-0.104267pt;}
.ls48_c00125{letter-spacing:-0.098133pt;}
.ls68_c00125{letter-spacing:-0.092000pt;}
.ls65_c00125{letter-spacing:-0.085867pt;}
.ls99_c00125{letter-spacing:-0.079733pt;}
.ls5f_c00125{letter-spacing:-0.073600pt;}
.ls41_c00125{letter-spacing:-0.067467pt;}
.ls43_c00125{letter-spacing:-0.049067pt;}
.ls6b_c00125{letter-spacing:-0.036800pt;}
.ls85_c00125{letter-spacing:-0.030667pt;}
.ls6c_c00125{letter-spacing:-0.024533pt;}
.ls4a_c00125{letter-spacing:-0.018400pt;}
.ls4e_c00125{letter-spacing:0.000000pt;}
.lsc_c00125{letter-spacing:0.006133pt;}
.ls22_c00125{letter-spacing:0.012267pt;}
.ls26_c00125{letter-spacing:0.018400pt;}
.ls3f_c00125{letter-spacing:0.024533pt;}
.ls1a_c00125{letter-spacing:0.030667pt;}
.ls1f_c00125{letter-spacing:0.036800pt;}
.ls18_c00125{letter-spacing:0.042933pt;}
.ls5c_c00125{letter-spacing:0.049067pt;}
.ls30_c00125{letter-spacing:0.055200pt;}
.ls21_c00125{letter-spacing:0.061333pt;}
.ls61_c00125{letter-spacing:0.077653pt;}
.ls84_c00125{letter-spacing:0.085867pt;}
.ls47_c00125{letter-spacing:0.098133pt;}
.ls1c_c00125{letter-spacing:0.104267pt;}
.ls9_c00125{letter-spacing:0.110400pt;}
.ls8_c00125{letter-spacing:0.116533pt;}
.lsb_c00125{letter-spacing:0.128800pt;}
.ls10_c00125{letter-spacing:0.141067pt;}
.ls11_c00125{letter-spacing:0.153333pt;}
.ls29_c00125{letter-spacing:0.165600pt;}
.ls20_c00125{letter-spacing:0.171733pt;}
.ls1e_c00125{letter-spacing:0.184000pt;}
.ls19_c00125{letter-spacing:0.190133pt;}
.ls23_c00125{letter-spacing:0.196267pt;}
.ls6_c00125{letter-spacing:0.208533pt;}
.lse_c00125{letter-spacing:0.220800pt;}
.ls35_c00125{letter-spacing:0.239200pt;}
.ls16_c00125{letter-spacing:0.245333pt;}
.ls3b_c00125{letter-spacing:0.257600pt;}
.ls3c_c00125{letter-spacing:0.269867pt;}
.ls56_c00125{letter-spacing:0.276000pt;}
.ls25_c00125{letter-spacing:0.288267pt;}
.ls5_c00125{letter-spacing:0.294400pt;}
.ls12_c00125{letter-spacing:0.300533pt;}
.ls17_c00125{letter-spacing:0.306667pt;}
.ls3d_c00125{letter-spacing:0.312800pt;}
.ls3_c00125{letter-spacing:0.380267pt;}
.ls2f_c00125{letter-spacing:0.417067pt;}
.ls2d_c00125{letter-spacing:0.453973pt;}
.ls13_c00125{letter-spacing:0.496800pt;}
.ls2e_c00125{letter-spacing:0.507733pt;}
.lsf_c00125{letter-spacing:0.539733pt;}
.ls28_c00125{letter-spacing:0.558133pt;}
.ls3e_c00125{letter-spacing:0.564267pt;}
.lsa_c00125{letter-spacing:0.570400pt;}
.ls2_c00125{letter-spacing:0.674667pt;}
.ls0_c00125{letter-spacing:0.680800pt;}
.ls24_c00125{letter-spacing:0.758613pt;}
.ls2a_c00125{letter-spacing:0.776533pt;}
.ls32_c00125{letter-spacing:0.785067pt;}
.ls2b_c00125{letter-spacing:0.877067pt;}
.ls15_c00125{letter-spacing:0.884053pt;}
.ls3a_c00125{letter-spacing:0.931840pt;}
.lsd_c00125{letter-spacing:0.975200pt;}
.ls1_c00125{letter-spacing:0.993600pt;}
.ls34_c00125{letter-spacing:0.997547pt;}
.ls37_c00125{letter-spacing:1.036533pt;}
.ls1d_c00125{letter-spacing:1.039360pt;}
.ls1b_c00125{letter-spacing:1.048800pt;}
.ls38_c00125{letter-spacing:1.134933pt;}
.ls2c_c00125{letter-spacing:1.153067pt;}
.ls39_c00125{letter-spacing:1.158827pt;}
.ls14_c00125{letter-spacing:1.170773pt;}
.ls7_c00125{letter-spacing:1.447467pt;}
.ls4_c00125{letter-spacing:1.637600pt;}
.ls31_c00125{letter-spacing:1.827733pt;}
.ls36_c00125{letter-spacing:1.905493pt;}
.ls33_c00125{letter-spacing:2.126507pt;}
.ls27_c00125{letter-spacing:2.257067pt;}
.ls40_c00125{letter-spacing:2.586667pt;}
.ls71_c00125{letter-spacing:3.066667pt;}
.ls91_c00125{letter-spacing:3.120000pt;}
.ws6_c00125{word-spacing:0.000000pt;}
.ws3_c00125{word-spacing:0.155733pt;}
.ws4_c00125{word-spacing:3.146667pt;}
.ws0_c00125{word-spacing:5.157120pt;}
.ws2_c00125{word-spacing:6.297600pt;}
.ws5_c00125{word-spacing:11.459840pt;}
.ws1_c00125{word-spacing:24.282027pt;}
._b_c00125{margin-left:-4.146133pt;}
._14_c00125{margin-left:-3.017600pt;}
._7_c00125{margin-left:-1.901333pt;}
._8_c00125{width:1.772533pt;}
._9_c00125{width:2.867200pt;}
._0_c00125{width:4.366933pt;}
._3_c00125{width:5.372800pt;}
._4_c00125{width:7.268000pt;}
._1_c00125{width:8.439467pt;}
._5_c00125{width:9.788800pt;}
._a_c00125{width:11.073867pt;}
._2_c00125{width:12.094933pt;}
._6_c00125{width:13.057867pt;}
._13_c00125{width:14.689333pt;}
._11_c00125{width:15.658400pt;}
._16_c00125{width:16.866667pt;}
._12_c00125{width:18.124000pt;}
._10_c00125{width:19.326133pt;}
._15_c00125{width:20.301333pt;}
._c_c00125{width:21.957333pt;}
._f_c00125{width:23.527467pt;}
._d_c00125{width:24.557867pt;}
._e_c00125{width:25.931733pt;}
.fs4_c00125{font-size:46.080000pt;}
.fs0_c00125{font-size:51.733333pt;}
.fs9_c00125{font-size:58.666667pt;}
.fs3_c00125{font-size:59.733333pt;}
.fs7_c00125{font-size:60.266667pt;}
.fs1_c00125{font-size:61.333333pt;}
.fs8_c00125{font-size:62.400000pt;}
.fs6_c00125{font-size:68.266667pt;}
.fs2_c00125{font-size:69.333333pt;}
.fs5_c00125{font-size:69.866667pt;}
.y0_c00125{bottom:0.000000pt;}
.y1e_c00125{bottom:61.133347pt;}
.y1d_c00125{bottom:128.972013pt;}
.y1c_c00125{bottom:156.480013pt;}
.y1b_c00125{bottom:212.800013pt;}
.y1a_c00125{bottom:240.333347pt;}
.y19_c00125{bottom:295.040013pt;}
.y18_c00125{bottom:322.893347pt;}
.y17_c00125{bottom:322.898013pt;}
.y16_c00125{bottom:378.573347pt;}
.y15_c00125{bottom:406.413347pt;}
.y13_c00125{bottom:462.074680pt;}
.y14_c00125{bottom:462.080013pt;}
.y12_c00125{bottom:489.613347pt;}
.y11_c00125{bottom:545.933347pt;}
.y20_c00125{bottom:547.200013pt;}
.y1f_c00125{bottom:550.413347pt;}
.yf_c00125{bottom:573.762680pt;}
.y10_c00125{bottom:573.773347pt;}
.ye_c00125{bottom:601.608013pt;}
.yd_c00125{bottom:629.453347pt;}
.yc_c00125{bottom:656.973347pt;}
.yb_c00125{bottom:712.333347pt;}
.ya_c00125{bottom:740.493347pt;}
.y9_c00125{bottom:796.493347pt;}
.y8_c00125{bottom:824.333347pt;}
.y6_c00125{bottom:879.674680pt;}
.y7_c00125{bottom:879.680013pt;}
.y4_c00125{bottom:907.509347pt;}
.y5_c00125{bottom:907.520013pt;}
.y3_c00125{bottom:935.032680pt;}
.y2_c00125{bottom:962.893347pt;}
.y1_c00125{bottom:1056.973347pt;}
.h5_c00125{height:30.689280pt;}
.h2_c00125{height:50.773437pt;}
.h6_c00125{height:58.595833pt;}
.h3_c00125{height:60.195312pt;}
.hc_c00125{height:61.187500pt;}
.h9_c00125{height:62.856250pt;}
.ha_c00125{height:65.081250pt;}
.h8_c00125{height:67.000000pt;}
.h4_c00125{height:68.046875pt;}
.h7_c00125{height:68.570312pt;}
.hb_c00125{height:71.200000pt;}
.h1_c00125{height:1122.666667pt;}
.h0_c00125{height:1122.880013pt;}
.w1_c00125{width:793.333333pt;}
.w0_c00125{width:793.600000pt;}
.x0_c00125{left:0.000000pt;}
.x26_c00125{left:108.009333pt;}
.x1_c00125{left:110.973333pt;}
.x20_c00125{left:157.240000pt;}
.x17_c00125{left:158.226667pt;}
.x6_c00125{left:159.186667pt;}
.x1b_c00125{left:209.426667pt;}
.x18_c00125{left:223.200000pt;}
.x4_c00125{left:230.653333pt;}
.x1c_c00125{left:233.826667pt;}
.x19_c00125{left:237.920000pt;}
.x1d_c00125{left:248.560000pt;}
.x5_c00125{left:253.346667pt;}
.x1a_c00125{left:256.786667pt;}
.x2_c00125{left:314.813333pt;}
.x3_c00125{left:335.973333pt;}
.xf_c00125{left:355.453333pt;}
.x15_c00125{left:375.840000pt;}
.x27_c00125{left:377.146667pt;}
.x24_c00125{left:379.306667pt;}
.x1e_c00125{left:380.946667pt;}
.x10_c00125{left:382.893333pt;}
.x16_c00125{left:390.560000pt;}
.xc_c00125{left:398.333333pt;}
.x1f_c00125{left:410.026667pt;}
.x25_c00125{left:423.386667pt;}
.xd_c00125{left:432.186667pt;}
.x13_c00125{left:477.026667pt;}
.x21_c00125{left:478.826667pt;}
.x14_c00125{left:495.973333pt;}
.x22_c00125{left:500.946667pt;}
.x23_c00125{left:526.186667pt;}
.xa_c00125{left:529.093333pt;}
.xb_c00125{left:548.080000pt;}
.x7_c00125{left:563.533333pt;}
.x8_c00125{left:608.813333pt;}
.x11_c00125{left:633.213333pt;}
.xe_c00125{left:642.813333pt;}
.x12_c00125{left:647.026667pt;}
.x9_c00125{left:652.653333pt;}
.x29_c00125{left:760.440000pt;}
.x28_c00125{left:761.373333pt;}
}





/* 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_c00126 {
    display:none;
  }
  .loading-indicator_c00126.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00126 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_c00126 { 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_c00126" -> "#page-container .classname_c00126")
 */
.pf_c00126 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00126 { /* 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_c00126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00126 { /* 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_c00126 { /* 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_c00126 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00126 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00126 {overflow:visible;}
  }
}
.c_c00126 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00126 { /* 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_c00126:after { /* webkit #35443 */
  content: '';
}
.t_c00126:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00126 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 */
}
.__c00126 { /* 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_c00126 { /* info for Javascript */
  display:none;
}
.l_c00126 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00126 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00126 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00126: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_c00126 {
    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_c00126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00126.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_c00126 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00126;src:url('chunks/assets/font_9d6d194ece61f9ff55559f04.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.284668;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_c00126;src:url('chunks/assets/font_ba58fa880bb7519f3d635fd1.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;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_c00126;src:url('chunks/assets/font_3a9698c44f02cdfe97565054.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.284180;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;}
.mb_c00126{transform:matrix(0.128364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128364,0.000000,0.000000,0.250000,0,0);}
.mf_c00126{transform:matrix(0.132618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132618,0.000000,0.000000,0.250000,0,0);}
.me_c00126{transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);}
.m6_c00126{transform:matrix(0.208354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208354,0.000000,0.000000,0.250000,0,0);}
.m5_c00126{transform:matrix(0.214141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214141,0.000000,0.000000,0.250000,0,0);}
.m4_c00126{transform:matrix(0.217687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217687,0.000000,0.000000,0.250000,0,0);}
.m3_c00126{transform:matrix(0.219833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219833,0.000000,0.000000,0.250000,0,0);}
.m1_c00126{transform:matrix(0.223827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223827,0.000000,0.000000,0.250000,0,0);}
.m7_c00126{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.ma_c00126{transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);}
.m0_c00126{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);}
.m9_c00126{transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);}
.m2_c00126{transform:matrix(0.251393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251393,0.000000,0.000000,0.250000,0,0);}
.m8_c00126{transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);}
.mc_c00126{transform:matrix(0.352602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352602,0.000000,0.000000,0.250000,0,0);}
.md_c00126{transform:matrix(0.495250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495250,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls74_c00126{letter-spacing:-2.730000px;}
.ls7c_c00126{letter-spacing:-2.688000px;}
.ls81_c00126{letter-spacing:-2.415000px;}
.ls71_c00126{letter-spacing:-2.394000px;}
.ls8e_c00126{letter-spacing:-2.168280px;}
.ls8d_c00126{letter-spacing:-2.147760px;}
.ls9a_c00126{letter-spacing:-2.118060px;}
.ls6f_c00126{letter-spacing:-2.113560px;}
.ls89_c00126{letter-spacing:-2.095920px;}
.ls8a_c00126{letter-spacing:-2.088960px;}
.ls88_c00126{letter-spacing:-1.933560px;}
.ls91_c00126{letter-spacing:-1.904040px;}
.ls9c_c00126{letter-spacing:-1.848000px;}
.ls7e_c00126{letter-spacing:-1.815480px;}
.ls8b_c00126{letter-spacing:-1.682640px;}
.ls73_c00126{letter-spacing:-1.634760px;}
.ls93_c00126{letter-spacing:-1.566360px;}
.ls90_c00126{letter-spacing:-1.557180px;}
.ls96_c00126{letter-spacing:-1.549800px;}
.ls84_c00126{letter-spacing:-1.542420px;}
.ls7a_c00126{letter-spacing:-1.512900px;}
.ls9f_c00126{letter-spacing:-1.449021px;}
.lsa0_c00126{letter-spacing:-1.251300px;}
.ls8c_c00126{letter-spacing:-1.080720px;}
.ls98_c00126{letter-spacing:-0.868680px;}
.ls94_c00126{letter-spacing:-0.711360px;}
.ls83_c00126{letter-spacing:-0.697680px;}
.ls82_c00126{letter-spacing:-0.656640px;}
.ls8f_c00126{letter-spacing:-0.636120px;}
.ls7b_c00126{letter-spacing:-0.595080px;}
.ls86_c00126{letter-spacing:-0.526680px;}
.ls75_c00126{letter-spacing:-0.478800px;}
.ls6d_c00126{letter-spacing:-0.458280px;}
.ls76_c00126{letter-spacing:-0.430920px;}
.ls85_c00126{letter-spacing:-0.376200px;}
.ls97_c00126{letter-spacing:-0.355680px;}
.ls80_c00126{letter-spacing:-0.294120px;}
.ls78_c00126{letter-spacing:-0.259920px;}
.ls92_c00126{letter-spacing:-0.171000px;}
.ls95_c00126{letter-spacing:-0.088920px;}
.ls7d_c00126{letter-spacing:-0.068400px;}
.ls6c_c00126{letter-spacing:0.000000px;}
.ls5e_c00126{letter-spacing:0.006840px;}
.ls77_c00126{letter-spacing:0.020520px;}
.ls67_c00126{letter-spacing:0.034200px;}
.ls26_c00126{letter-spacing:0.041040px;}
.ls5c_c00126{letter-spacing:0.068400px;}
.lse_c00126{letter-spacing:0.095760px;}
.ls19_c00126{letter-spacing:0.150480px;}
.ls41_c00126{letter-spacing:0.164160px;}
.ls7f_c00126{letter-spacing:0.191520px;}
.ls16_c00126{letter-spacing:0.212040px;}
.ls37_c00126{letter-spacing:0.218880px;}
.ls45_c00126{letter-spacing:0.225720px;}
.ls3a_c00126{letter-spacing:0.246240px;}
.ls13_c00126{letter-spacing:0.253080px;}
.ls99_c00126{letter-spacing:0.259920px;}
.ls79_c00126{letter-spacing:0.294120px;}
.ls30_c00126{letter-spacing:0.307800px;}
.ls70_c00126{letter-spacing:0.314640px;}
.ls21_c00126{letter-spacing:0.328320px;}
.ls61_c00126{letter-spacing:0.335160px;}
.ls1_c00126{letter-spacing:0.342000px;}
.ls5a_c00126{letter-spacing:0.362520px;}
.ls7_c00126{letter-spacing:0.376200px;}
.ls1b_c00126{letter-spacing:0.396720px;}
.ls5_c00126{letter-spacing:0.403560px;}
.ls3f_c00126{letter-spacing:0.410400px;}
.ls55_c00126{letter-spacing:0.417240px;}
.ls2c_c00126{letter-spacing:0.444600px;}
.ls63_c00126{letter-spacing:0.451440px;}
.ls87_c00126{letter-spacing:0.458280px;}
.ls10_c00126{letter-spacing:0.465120px;}
.ls18_c00126{letter-spacing:0.471960px;}
.ls5b_c00126{letter-spacing:0.485640px;}
.ls42_c00126{letter-spacing:0.492480px;}
.ls46_c00126{letter-spacing:0.506160px;}
.ls39_c00126{letter-spacing:0.513000px;}
.ls3e_c00126{letter-spacing:0.533520px;}
.lsf_c00126{letter-spacing:0.540360px;}
.ls9b_c00126{letter-spacing:0.547200px;}
.ls0_c00126{letter-spacing:0.554040px;}
.ls6e_c00126{letter-spacing:0.567720px;}
.ls3_c00126{letter-spacing:0.574560px;}
.ls6_c00126{letter-spacing:0.588240px;}
.ls3c_c00126{letter-spacing:0.595080px;}
.ls17_c00126{letter-spacing:0.608760px;}
.ls4a_c00126{letter-spacing:0.615600px;}
.ls1d_c00126{letter-spacing:0.622440px;}
.ls5d_c00126{letter-spacing:0.629280px;}
.ls6a_c00126{letter-spacing:0.636120px;}
.ls4e_c00126{letter-spacing:0.642960px;}
.ls15_c00126{letter-spacing:0.670320px;}
.ls8_c00126{letter-spacing:0.677160px;}
.ls3b_c00126{letter-spacing:0.684000px;}
.ls33_c00126{letter-spacing:0.704520px;}
.ls31_c00126{letter-spacing:0.718200px;}
.lsb_c00126{letter-spacing:0.752400px;}
.ls35_c00126{letter-spacing:0.759240px;}
.ls1c_c00126{letter-spacing:0.766080px;}
.ls34_c00126{letter-spacing:0.779760px;}
.lsa_c00126{letter-spacing:0.786600px;}
.ls2b_c00126{letter-spacing:0.800280px;}
.ls32_c00126{letter-spacing:0.807120px;}
.ls22_c00126{letter-spacing:0.813960px;}
.ls9_c00126{letter-spacing:0.834480px;}
.ls57_c00126{letter-spacing:0.855000px;}
.ls25_c00126{letter-spacing:0.875520px;}
.ls23_c00126{letter-spacing:0.889200px;}
.ls47_c00126{letter-spacing:0.909720px;}
.ls1a_c00126{letter-spacing:0.916560px;}
.ls36_c00126{letter-spacing:0.923400px;}
.ls4b_c00126{letter-spacing:0.930240px;}
.ls2f_c00126{letter-spacing:0.937080px;}
.ls24_c00126{letter-spacing:0.943920px;}
.ls2_c00126{letter-spacing:0.978120px;}
.ls44_c00126{letter-spacing:1.012320px;}
.ls5f_c00126{letter-spacing:1.019160px;}
.lsc_c00126{letter-spacing:1.026000px;}
.ls2e_c00126{letter-spacing:1.039680px;}
.ls51_c00126{letter-spacing:1.067040px;}
.ls28_c00126{letter-spacing:1.087560px;}
.ls48_c00126{letter-spacing:1.101240px;}
.ls66_c00126{letter-spacing:1.155960px;}
.ls52_c00126{letter-spacing:1.176480px;}
.ls65_c00126{letter-spacing:1.183320px;}
.lsd_c00126{letter-spacing:1.203840px;}
.ls4c_c00126{letter-spacing:1.224360px;}
.ls49_c00126{letter-spacing:1.238040px;}
.ls59_c00126{letter-spacing:1.251720px;}
.ls43_c00126{letter-spacing:1.279080px;}
.ls1e_c00126{letter-spacing:1.285920px;}
.ls2a_c00126{letter-spacing:1.299600px;}
.ls4f_c00126{letter-spacing:1.320120px;}
.ls50_c00126{letter-spacing:1.347480px;}
.ls1f_c00126{letter-spacing:1.395360px;}
.ls11_c00126{letter-spacing:1.470600px;}
.ls27_c00126{letter-spacing:1.539000px;}
.ls20_c00126{letter-spacing:1.545840px;}
.ls2d_c00126{letter-spacing:1.580040px;}
.ls58_c00126{letter-spacing:1.586880px;}
.ls56_c00126{letter-spacing:1.593720px;}
.ls29_c00126{letter-spacing:1.648440px;}
.ls54_c00126{letter-spacing:1.696320px;}
.ls12_c00126{letter-spacing:1.737360px;}
.ls60_c00126{letter-spacing:1.751040px;}
.ls68_c00126{letter-spacing:1.757880px;}
.ls53_c00126{letter-spacing:1.812600px;}
.ls6b_c00126{letter-spacing:1.878600px;}
.ls64_c00126{letter-spacing:2.004120px;}
.ls62_c00126{letter-spacing:2.010960px;}
.ls14_c00126{letter-spacing:2.113560px;}
.ls4_c00126{letter-spacing:2.202480px;}
.ls4d_c00126{letter-spacing:2.291400px;}
.ls69_c00126{letter-spacing:2.352960px;}
.ls3d_c00126{letter-spacing:2.455560px;}
.ls40_c00126{letter-spacing:3.091680px;}
.ls38_c00126{letter-spacing:3.166920px;}
.ls72_c00126{letter-spacing:3.420000px;}
.ls9d_c00126{letter-spacing:3.660000px;}
.ls9e_c00126{letter-spacing:3.840000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{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__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00126{word-spacing:0.000000px;}
.ws3_c00126{word-spacing:4.945920px;}
.ws4_c00126{word-spacing:6.265980px;}
.ws1_c00126{word-spacing:9.486600px;}
.ws2_c00126{word-spacing:13.388100px;}
.ws0_c00126{word-spacing:20.954400px;}
._c_c00126{margin-left:-5.472000px;}
._a_c00126{margin-left:-4.309200px;}
._2_c00126{margin-left:-2.544480px;}
._5_c00126{margin-left:-1.484280px;}
._3_c00126{width:1.087560px;}
._1_c00126{width:2.537640px;}
._4_c00126{width:3.597840px;}
._0_c00126{width:4.637520px;}
._b_c00126{width:6.203880px;}
._e_c00126{width:7.427160px;}
._9_c00126{width:9.316080px;}
._f_c00126{width:11.012400px;}
._6_c00126{width:12.749760px;}
._8_c00126{width:15.048000px;}
._d_c00126{width:16.887960px;}
._7_c00126{width:19.405080px;}
._10_c00126{width:526.732800px;}
.fc0_c00126{color:transparent;}
.fsa_c00126{font-size:37.200000px;}
.fsb_c00126{font-size:41.400600px;}
.fs7_c00126{font-size:52.800000px;}
.fsc_c00126{font-size:58.200000px;}
.fs0_c00126{font-size:60.600000px;}
.fs6_c00126{font-size:61.200000px;}
.fs1_c00126{font-size:68.400000px;}
.fs5_c00126{font-size:69.000000px;}
.fs9_c00126{font-size:73.200000px;}
.fs3_c00126{font-size:73.800000px;}
.fs4_c00126{font-size:76.800000px;}
.fs2_c00126{font-size:78.000000px;}
.fs8_c00126{font-size:129.600000px;}
.y0_c00126{bottom:0.000000px;}
.y1e_c00126{bottom:67.335000px;}
.y1c_c00126{bottom:143.632800px;}
.y1d_c00126{bottom:143.640000px;}
.y1b_c00126{bottom:174.960000px;}
.y1a_c00126{bottom:201.255000px;}
.y19_c00126{bottom:206.295000px;}
.y18_c00126{bottom:268.575000px;}
.y17_c00126{bottom:299.535000px;}
.y16_c00126{bottom:362.531400px;}
.y15_c00126{bottom:424.450500px;}
.y14_c00126{bottom:456.855000px;}
.y13_c00126{bottom:519.480000px;}
.y12_c00126{bottom:551.175000px;}
.y11_c00126{bottom:614.171700px;}
.y10_c00126{bottom:646.200000px;}
.yf_c00126{bottom:708.480000px;}
.ye_c00126{bottom:740.166900px;}
.yd_c00126{bottom:771.128700px;}
.yc_c00126{bottom:802.815000px;}
.yb_c00126{bottom:865.080000px;}
.ya_c00126{bottom:897.135000px;}
.y8_c00126{bottom:960.481800px;}
.y9_c00126{bottom:960.495000px;}
.y7_c00126{bottom:991.432800px;}
.y5_c00126{bottom:1022.755500px;}
.y6_c00126{bottom:1022.760000px;}
.y4_c00126{bottom:1053.723600px;}
.y3_c00126{bottom:1085.050800px;}
.y2_c00126{bottom:1116.720000px;}
.y1_c00126{bottom:1192.335000px;}
.he_c00126{height:36.509766px;}
.hf_c00126{height:40.632425px;}
.hb_c00126{height:51.820313px;}
.h10_c00126{height:57.120117px;}
.h2_c00126{height:59.475586px;}
.h3_c00126{height:67.130859px;}
.h8_c00126{height:67.156059px;}
.h4_c00126{height:71.339063px;}
.h9_c00126{height:71.964844px;}
.h6_c00126{height:72.394629px;}
.ha_c00126{height:75.337500px;}
.h7_c00126{height:75.375000px;}
.hd_c00126{height:76.345312px;}
.h5_c00126{height:76.552734px;}
.hc_c00126{height:127.195313px;}
.h1_c00126{height:1263.000000px;}
.h0_c00126{height:1263.240000px;}
.w1_c00126{width:892.500000px;}
.w0_c00126{width:892.800000px;}
.x0_c00126{left:0.000000px;}
.x11_c00126{left:120.928500px;}
.x9_c00126{left:121.990500px;}
.x2_c00126{left:123.024000px;}
.x1_c00126{left:124.125000px;}
.x12_c00126{left:137.700000px;}
.x13_c00126{left:174.780000px;}
.xc_c00126{left:175.845000px;}
.x1a_c00126{left:219.825000px;}
.x3_c00126{left:221.685000px;}
.xa_c00126{left:227.085000px;}
.x4_c00126{left:244.095000px;}
.xb_c00126{left:248.955000px;}
.x17_c00126{left:304.740000px;}
.x1b_c00126{left:335.130000px;}
.x21_c00126{left:356.325000px;}
.x5_c00126{left:378.195000px;}
.x1c_c00126{left:383.430000px;}
.x18_c00126{left:390.480000px;}
.x10_c00126{left:395.190000px;}
.x6_c00126{left:403.170000px;}
.x22_c00126{left:426.090000px;}
.x19_c00126{left:435.390000px;}
.x1d_c00126{left:442.365000px;}
.xd_c00126{left:448.470000px;}
.x7_c00126{left:475.845000px;}
.xe_c00126{left:484.770000px;}
.x8_c00126{left:502.380000px;}
.x14_c00126{left:508.860000px;}
.x1e_c00126{left:557.070000px;}
.x1f_c00126{left:629.895000px;}
.x15_c00126{left:641.550000px;}
.x16_c00126{left:669.630000px;}
.x20_c00126{left:717.735000px;}
.xf_c00126{left:727.110000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls74_c00126{letter-spacing:-2.426667pt;}
.ls7c_c00126{letter-spacing:-2.389333pt;}
.ls81_c00126{letter-spacing:-2.146667pt;}
.ls71_c00126{letter-spacing:-2.128000pt;}
.ls8e_c00126{letter-spacing:-1.927360pt;}
.ls8d_c00126{letter-spacing:-1.909120pt;}
.ls9a_c00126{letter-spacing:-1.882720pt;}
.ls6f_c00126{letter-spacing:-1.878720pt;}
.ls89_c00126{letter-spacing:-1.863040pt;}
.ls8a_c00126{letter-spacing:-1.856853pt;}
.ls88_c00126{letter-spacing:-1.718720pt;}
.ls91_c00126{letter-spacing:-1.692480pt;}
.ls9c_c00126{letter-spacing:-1.642667pt;}
.ls7e_c00126{letter-spacing:-1.613760pt;}
.ls8b_c00126{letter-spacing:-1.495680pt;}
.ls73_c00126{letter-spacing:-1.453120pt;}
.ls93_c00126{letter-spacing:-1.392320pt;}
.ls90_c00126{letter-spacing:-1.384160pt;}
.ls96_c00126{letter-spacing:-1.377600pt;}
.ls84_c00126{letter-spacing:-1.371040pt;}
.ls7a_c00126{letter-spacing:-1.344800pt;}
.ls9f_c00126{letter-spacing:-1.288019pt;}
.lsa0_c00126{letter-spacing:-1.112267pt;}
.ls8c_c00126{letter-spacing:-0.960640pt;}
.ls98_c00126{letter-spacing:-0.772160pt;}
.ls94_c00126{letter-spacing:-0.632320pt;}
.ls83_c00126{letter-spacing:-0.620160pt;}
.ls82_c00126{letter-spacing:-0.583680pt;}
.ls8f_c00126{letter-spacing:-0.565440pt;}
.ls7b_c00126{letter-spacing:-0.528960pt;}
.ls86_c00126{letter-spacing:-0.468160pt;}
.ls75_c00126{letter-spacing:-0.425600pt;}
.ls6d_c00126{letter-spacing:-0.407360pt;}
.ls76_c00126{letter-spacing:-0.383040pt;}
.ls85_c00126{letter-spacing:-0.334400pt;}
.ls97_c00126{letter-spacing:-0.316160pt;}
.ls80_c00126{letter-spacing:-0.261440pt;}
.ls78_c00126{letter-spacing:-0.231040pt;}
.ls92_c00126{letter-spacing:-0.152000pt;}
.ls95_c00126{letter-spacing:-0.079040pt;}
.ls7d_c00126{letter-spacing:-0.060800pt;}
.ls6c_c00126{letter-spacing:0.000000pt;}
.ls5e_c00126{letter-spacing:0.006080pt;}
.ls77_c00126{letter-spacing:0.018240pt;}
.ls67_c00126{letter-spacing:0.030400pt;}
.ls26_c00126{letter-spacing:0.036480pt;}
.ls5c_c00126{letter-spacing:0.060800pt;}
.lse_c00126{letter-spacing:0.085120pt;}
.ls19_c00126{letter-spacing:0.133760pt;}
.ls41_c00126{letter-spacing:0.145920pt;}
.ls7f_c00126{letter-spacing:0.170240pt;}
.ls16_c00126{letter-spacing:0.188480pt;}
.ls37_c00126{letter-spacing:0.194560pt;}
.ls45_c00126{letter-spacing:0.200640pt;}
.ls3a_c00126{letter-spacing:0.218880pt;}
.ls13_c00126{letter-spacing:0.224960pt;}
.ls99_c00126{letter-spacing:0.231040pt;}
.ls79_c00126{letter-spacing:0.261440pt;}
.ls30_c00126{letter-spacing:0.273600pt;}
.ls70_c00126{letter-spacing:0.279680pt;}
.ls21_c00126{letter-spacing:0.291840pt;}
.ls61_c00126{letter-spacing:0.297920pt;}
.ls1_c00126{letter-spacing:0.304000pt;}
.ls5a_c00126{letter-spacing:0.322240pt;}
.ls7_c00126{letter-spacing:0.334400pt;}
.ls1b_c00126{letter-spacing:0.352640pt;}
.ls5_c00126{letter-spacing:0.358720pt;}
.ls3f_c00126{letter-spacing:0.364800pt;}
.ls55_c00126{letter-spacing:0.370880pt;}
.ls2c_c00126{letter-spacing:0.395200pt;}
.ls63_c00126{letter-spacing:0.401280pt;}
.ls87_c00126{letter-spacing:0.407360pt;}
.ls10_c00126{letter-spacing:0.413440pt;}
.ls18_c00126{letter-spacing:0.419520pt;}
.ls5b_c00126{letter-spacing:0.431680pt;}
.ls42_c00126{letter-spacing:0.437760pt;}
.ls46_c00126{letter-spacing:0.449920pt;}
.ls39_c00126{letter-spacing:0.456000pt;}
.ls3e_c00126{letter-spacing:0.474240pt;}
.lsf_c00126{letter-spacing:0.480320pt;}
.ls9b_c00126{letter-spacing:0.486400pt;}
.ls0_c00126{letter-spacing:0.492480pt;}
.ls6e_c00126{letter-spacing:0.504640pt;}
.ls3_c00126{letter-spacing:0.510720pt;}
.ls6_c00126{letter-spacing:0.522880pt;}
.ls3c_c00126{letter-spacing:0.528960pt;}
.ls17_c00126{letter-spacing:0.541120pt;}
.ls4a_c00126{letter-spacing:0.547200pt;}
.ls1d_c00126{letter-spacing:0.553280pt;}
.ls5d_c00126{letter-spacing:0.559360pt;}
.ls6a_c00126{letter-spacing:0.565440pt;}
.ls4e_c00126{letter-spacing:0.571520pt;}
.ls15_c00126{letter-spacing:0.595840pt;}
.ls8_c00126{letter-spacing:0.601920pt;}
.ls3b_c00126{letter-spacing:0.608000pt;}
.ls33_c00126{letter-spacing:0.626240pt;}
.ls31_c00126{letter-spacing:0.638400pt;}
.lsb_c00126{letter-spacing:0.668800pt;}
.ls35_c00126{letter-spacing:0.674880pt;}
.ls1c_c00126{letter-spacing:0.680960pt;}
.ls34_c00126{letter-spacing:0.693120pt;}
.lsa_c00126{letter-spacing:0.699200pt;}
.ls2b_c00126{letter-spacing:0.711360pt;}
.ls32_c00126{letter-spacing:0.717440pt;}
.ls22_c00126{letter-spacing:0.723520pt;}
.ls9_c00126{letter-spacing:0.741760pt;}
.ls57_c00126{letter-spacing:0.760000pt;}
.ls25_c00126{letter-spacing:0.778240pt;}
.ls23_c00126{letter-spacing:0.790400pt;}
.ls47_c00126{letter-spacing:0.808640pt;}
.ls1a_c00126{letter-spacing:0.814720pt;}
.ls36_c00126{letter-spacing:0.820800pt;}
.ls4b_c00126{letter-spacing:0.826880pt;}
.ls2f_c00126{letter-spacing:0.832960pt;}
.ls24_c00126{letter-spacing:0.839040pt;}
.ls2_c00126{letter-spacing:0.869440pt;}
.ls44_c00126{letter-spacing:0.899840pt;}
.ls5f_c00126{letter-spacing:0.905920pt;}
.lsc_c00126{letter-spacing:0.912000pt;}
.ls2e_c00126{letter-spacing:0.924160pt;}
.ls51_c00126{letter-spacing:0.948480pt;}
.ls28_c00126{letter-spacing:0.966720pt;}
.ls48_c00126{letter-spacing:0.978880pt;}
.ls66_c00126{letter-spacing:1.027520pt;}
.ls52_c00126{letter-spacing:1.045760pt;}
.ls65_c00126{letter-spacing:1.051840pt;}
.lsd_c00126{letter-spacing:1.070080pt;}
.ls4c_c00126{letter-spacing:1.088320pt;}
.ls49_c00126{letter-spacing:1.100480pt;}
.ls59_c00126{letter-spacing:1.112640pt;}
.ls43_c00126{letter-spacing:1.136960pt;}
.ls1e_c00126{letter-spacing:1.143040pt;}
.ls2a_c00126{letter-spacing:1.155200pt;}
.ls4f_c00126{letter-spacing:1.173440pt;}
.ls50_c00126{letter-spacing:1.197760pt;}
.ls1f_c00126{letter-spacing:1.240320pt;}
.ls11_c00126{letter-spacing:1.307200pt;}
.ls27_c00126{letter-spacing:1.368000pt;}
.ls20_c00126{letter-spacing:1.374080pt;}
.ls2d_c00126{letter-spacing:1.404480pt;}
.ls58_c00126{letter-spacing:1.410560pt;}
.ls56_c00126{letter-spacing:1.416640pt;}
.ls29_c00126{letter-spacing:1.465280pt;}
.ls54_c00126{letter-spacing:1.507840pt;}
.ls12_c00126{letter-spacing:1.544320pt;}
.ls60_c00126{letter-spacing:1.556480pt;}
.ls68_c00126{letter-spacing:1.562560pt;}
.ls53_c00126{letter-spacing:1.611200pt;}
.ls6b_c00126{letter-spacing:1.669867pt;}
.ls64_c00126{letter-spacing:1.781440pt;}
.ls62_c00126{letter-spacing:1.787520pt;}
.ls14_c00126{letter-spacing:1.878720pt;}
.ls4_c00126{letter-spacing:1.957760pt;}
.ls4d_c00126{letter-spacing:2.036800pt;}
.ls69_c00126{letter-spacing:2.091520pt;}
.ls3d_c00126{letter-spacing:2.182720pt;}
.ls40_c00126{letter-spacing:2.748160pt;}
.ls38_c00126{letter-spacing:2.815040pt;}
.ls72_c00126{letter-spacing:3.040000pt;}
.ls9d_c00126{letter-spacing:3.253333pt;}
.ls9e_c00126{letter-spacing:3.413333pt;}
.ws5_c00126{word-spacing:0.000000pt;}
.ws3_c00126{word-spacing:4.396373pt;}
.ws4_c00126{word-spacing:5.569760pt;}
.ws1_c00126{word-spacing:8.432533pt;}
.ws2_c00126{word-spacing:11.900533pt;}
.ws0_c00126{word-spacing:18.626133pt;}
._c_c00126{margin-left:-4.864000pt;}
._a_c00126{margin-left:-3.830400pt;}
._2_c00126{margin-left:-2.261760pt;}
._5_c00126{margin-left:-1.319360pt;}
._3_c00126{width:0.966720pt;}
._1_c00126{width:2.255680pt;}
._4_c00126{width:3.198080pt;}
._0_c00126{width:4.122240pt;}
._b_c00126{width:5.514560pt;}
._e_c00126{width:6.601920pt;}
._9_c00126{width:8.280960pt;}
._f_c00126{width:9.788800pt;}
._6_c00126{width:11.333120pt;}
._8_c00126{width:13.376000pt;}
._d_c00126{width:15.011520pt;}
._7_c00126{width:17.248960pt;}
._10_c00126{width:468.206933pt;}
.fsa_c00126{font-size:33.066667pt;}
.fsb_c00126{font-size:36.800533pt;}
.fs7_c00126{font-size:46.933333pt;}
.fsc_c00126{font-size:51.733333pt;}
.fs0_c00126{font-size:53.866667pt;}
.fs6_c00126{font-size:54.400000pt;}
.fs1_c00126{font-size:60.800000pt;}
.fs5_c00126{font-size:61.333333pt;}
.fs9_c00126{font-size:65.066667pt;}
.fs3_c00126{font-size:65.600000pt;}
.fs4_c00126{font-size:68.266667pt;}
.fs2_c00126{font-size:69.333333pt;}
.fs8_c00126{font-size:115.200000pt;}
.y0_c00126{bottom:0.000000pt;}
.y1e_c00126{bottom:59.853333pt;}
.y1c_c00126{bottom:127.673600pt;}
.y1d_c00126{bottom:127.680000pt;}
.y1b_c00126{bottom:155.520000pt;}
.y1a_c00126{bottom:178.893333pt;}
.y19_c00126{bottom:183.373333pt;}
.y18_c00126{bottom:238.733333pt;}
.y17_c00126{bottom:266.253333pt;}
.y16_c00126{bottom:322.250133pt;}
.y15_c00126{bottom:377.289333pt;}
.y14_c00126{bottom:406.093333pt;}
.y13_c00126{bottom:461.760000pt;}
.y12_c00126{bottom:489.933333pt;}
.y11_c00126{bottom:545.930400pt;}
.y10_c00126{bottom:574.400000pt;}
.yf_c00126{bottom:629.760000pt;}
.ye_c00126{bottom:657.926133pt;}
.yd_c00126{bottom:685.447733pt;}
.yc_c00126{bottom:713.613333pt;}
.yb_c00126{bottom:768.960000pt;}
.ya_c00126{bottom:797.453333pt;}
.y8_c00126{bottom:853.761600pt;}
.y9_c00126{bottom:853.773333pt;}
.y7_c00126{bottom:881.273600pt;}
.y5_c00126{bottom:909.116000pt;}
.y6_c00126{bottom:909.120000pt;}
.y4_c00126{bottom:936.643200pt;}
.y3_c00126{bottom:964.489600pt;}
.y2_c00126{bottom:992.640000pt;}
.y1_c00126{bottom:1059.853333pt;}
.he_c00126{height:32.453125pt;}
.hf_c00126{height:36.117711pt;}
.hb_c00126{height:46.062500pt;}
.h10_c00126{height:50.773437pt;}
.h2_c00126{height:52.867187pt;}
.h3_c00126{height:59.671875pt;}
.h8_c00126{height:59.694275pt;}
.h4_c00126{height:63.412500pt;}
.h9_c00126{height:63.968750pt;}
.h6_c00126{height:64.350781pt;}
.ha_c00126{height:66.966667pt;}
.h7_c00126{height:67.000000pt;}
.hd_c00126{height:67.862500pt;}
.h5_c00126{height:68.046875pt;}
.hc_c00126{height:113.062500pt;}
.h1_c00126{height:1122.666667pt;}
.h0_c00126{height:1122.880000pt;}
.w1_c00126{width:793.333333pt;}
.w0_c00126{width:793.600000pt;}
.x0_c00126{left:0.000000pt;}
.x11_c00126{left:107.492000pt;}
.x9_c00126{left:108.436000pt;}
.x2_c00126{left:109.354667pt;}
.x1_c00126{left:110.333333pt;}
.x12_c00126{left:122.400000pt;}
.x13_c00126{left:155.360000pt;}
.xc_c00126{left:156.306667pt;}
.x1a_c00126{left:195.400000pt;}
.x3_c00126{left:197.053333pt;}
.xa_c00126{left:201.853333pt;}
.x4_c00126{left:216.973333pt;}
.xb_c00126{left:221.293333pt;}
.x17_c00126{left:270.880000pt;}
.x1b_c00126{left:297.893333pt;}
.x21_c00126{left:316.733333pt;}
.x5_c00126{left:336.173333pt;}
.x1c_c00126{left:340.826667pt;}
.x18_c00126{left:347.093333pt;}
.x10_c00126{left:351.280000pt;}
.x6_c00126{left:358.373333pt;}
.x22_c00126{left:378.746667pt;}
.x19_c00126{left:387.013333pt;}
.x1d_c00126{left:393.213333pt;}
.xd_c00126{left:398.640000pt;}
.x7_c00126{left:422.973333pt;}
.xe_c00126{left:430.906667pt;}
.x8_c00126{left:446.560000pt;}
.x14_c00126{left:452.320000pt;}
.x1e_c00126{left:495.173333pt;}
.x1f_c00126{left:559.906667pt;}
.x15_c00126{left:570.266667pt;}
.x16_c00126{left:595.226667pt;}
.x20_c00126{left:637.986667pt;}
.xf_c00126{left:646.320000pt;}
}





/* 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_c00127 {
    display:none;
  }
  .loading-indicator_c00127.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00127 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_c00127 { 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_c00127" -> "#page-container .classname_c00127")
 */
.pf_c00127 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00127 { /* 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_c00127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00127 { /* 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_c00127 { /* 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_c00127 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00127 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00127 {overflow:visible;}
  }
}
.c_c00127 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00127 { /* 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_c00127:after { /* webkit #35443 */
  content: '';
}
.t_c00127:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00127 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 */
}
.__c00127 { /* 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_c00127 { /* info for Javascript */
  display:none;
}
.l_c00127 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00127 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00127 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00127: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_c00127 {
    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_c00127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00127.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_c00127 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00127;src:url('chunks/assets/font_5c31d11cd9551100ff3669e1.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;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:ff2_c00127;src:url('chunks/assets/font_b6634ac5db145c2016863492.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.284668;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_c00127;src:url('chunks/assets/font_f54678d19db55b455bf587bd.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.284180;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_c00127;src:url('chunks/assets/font_07597beb7d966ef98fed78bd.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.311035;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_c00127;src:url('chunks/assets/font_99c627a66cb49844d8274aa2.woff2')format("woff");}.ff5_c00127{font-family:ff5_c00127;line-height:0.666000;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;}
.m17_c00127{transform:matrix(0.088964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088964,0.000000,0.000000,0.250000,0,0);}
.m18_c00127{transform:matrix(0.134293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134293,0.000000,0.000000,0.250000,0,0);}
.m3_c00127{transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);}
.m1a_c00127{transform:matrix(0.204518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204518,0.000000,0.000000,0.250000,0,0);}
.m12_c00127{transform:matrix(0.220682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220682,0.000000,0.000000,0.250000,0,0);}
.me_c00127{transform:matrix(0.229701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229701,0.000000,0.000000,0.250000,0,0);}
.m8_c00127{transform:matrix(0.232195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232195,0.000000,0.000000,0.250000,0,0);}
.m14_c00127{transform:matrix(0.232317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232317,0.000000,0.000000,0.250000,0,0);}
.m13_c00127{transform:matrix(0.236248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236248,0.000000,0.000000,0.250000,0,0);}
.m15_c00127{transform:matrix(0.239358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239358,0.000000,0.000000,0.250000,0,0);}
.m16_c00127{transform:matrix(0.242635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242635,0.000000,0.000000,0.250000,0,0);}
.m11_c00127{transform:matrix(0.244433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244433,0.000000,0.000000,0.250000,0,0);}
.m7_c00127{transform:matrix(0.247167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247167,0.000000,0.000000,0.250000,0,0);}
.mf_c00127{transform:matrix(0.248726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248726,0.000000,0.000000,0.250000,0,0);}
.m1_c00127{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);}
.m19_c00127{transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);}
.m10_c00127{transform:matrix(0.251429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251429,0.000000,0.000000,0.250000,0,0);}
.m6_c00127{transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);}
.m0_c00127{transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);}
.m5_c00127{transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);}
.mb_c00127{transform:matrix(0.252640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252640,0.000000,0.000000,0.250000,0,0);}
.m4_c00127{transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);}
.m2_c00127{transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);}
.md_c00127{transform:matrix(0.254374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254374,0.000000,0.000000,0.250000,0,0);}
.m9_c00127{transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);}
.ma_c00127{transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);}
.mc_c00127{transform:matrix(0.259162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259162,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls78_c00127{letter-spacing:-2.688000px;}
.ls9d_c00127{letter-spacing:-2.604000px;}
.ls8b_c00127{letter-spacing:-2.583000px;}
.ls88_c00127{letter-spacing:-2.565120px;}
.ls98_c00127{letter-spacing:-2.520000px;}
.ls99_c00127{letter-spacing:-2.478000px;}
.ls7c_c00127{letter-spacing:-2.331000px;}
.ls7d_c00127{letter-spacing:-2.310000px;}
.ls8f_c00127{letter-spacing:-1.818180px;}
.ls89_c00127{letter-spacing:-1.520640px;}
.ls93_c00127{letter-spacing:-1.338660px;}
.ls8e_c00127{letter-spacing:-1.085580px;}
.ls8d_c00127{letter-spacing:-1.005660px;}
.ls92_c00127{letter-spacing:-0.859140px;}
.ls9e_c00127{letter-spacing:-0.823680px;}
.ls82_c00127{letter-spacing:-0.526140px;}
.ls90_c00127{letter-spacing:-0.359640px;}
.ls7f_c00127{letter-spacing:-0.333000px;}
.ls81_c00127{letter-spacing:-0.273060px;}
.ls8c_c00127{letter-spacing:-0.166500px;}
.ls79_c00127{letter-spacing:-0.159840px;}
.ls91_c00127{letter-spacing:-0.046620px;}
.ls75_c00127{letter-spacing:0.000000px;}
.ls8a_c00127{letter-spacing:0.026640px;}
.ls54_c00127{letter-spacing:0.033300px;}
.ls4e_c00127{letter-spacing:0.086580px;}
.ls50_c00127{letter-spacing:0.173160px;}
.ls28_c00127{letter-spacing:0.206460px;}
.ls55_c00127{letter-spacing:0.233100px;}
.ls85_c00127{letter-spacing:0.239760px;}
.lsd_c00127{letter-spacing:0.326340px;}
.ls43_c00127{letter-spacing:0.399600px;}
.ls84_c00127{letter-spacing:0.512820px;}
.ls4f_c00127{letter-spacing:0.532800px;}
.ls7b_c00127{letter-spacing:0.559440px;}
.ls5b_c00127{letter-spacing:0.579420px;}
.ls19_c00127{letter-spacing:0.586080px;}
.ls94_c00127{letter-spacing:0.592740px;}
.ls59_c00127{letter-spacing:0.619380px;}
.ls62_c00127{letter-spacing:0.646020px;}
.ls77_c00127{letter-spacing:0.699300px;}
.ls95_c00127{letter-spacing:0.705960px;}
.ls4d_c00127{letter-spacing:0.712620px;}
.ls5a_c00127{letter-spacing:0.719280px;}
.ls9a_c00127{letter-spacing:0.732600px;}
.ls2d_c00127{letter-spacing:0.752580px;}
.ls69_c00127{letter-spacing:0.792540px;}
.ls1d_c00127{letter-spacing:0.799200px;}
.ls7a_c00127{letter-spacing:0.805860px;}
.ls42_c00127{letter-spacing:0.812520px;}
.ls44_c00127{letter-spacing:0.819180px;}
.ls3a_c00127{letter-spacing:0.872460px;}
.ls35_c00127{letter-spacing:0.885780px;}
.ls73_c00127{letter-spacing:0.892440px;}
.ls6e_c00127{letter-spacing:0.905760px;}
.ls6f_c00127{letter-spacing:0.939060px;}
.ls5e_c00127{letter-spacing:0.945720px;}
.ls38_c00127{letter-spacing:0.952380px;}
.ls9c_c00127{letter-spacing:0.959040px;}
.ls1e_c00127{letter-spacing:0.965700px;}
.ls2a_c00127{letter-spacing:0.979020px;}
.ls23_c00127{letter-spacing:0.985680px;}
.ls3_c00127{letter-spacing:0.992340px;}
.ls41_c00127{letter-spacing:1.005660px;}
.ls48_c00127{letter-spacing:1.012320px;}
.ls30_c00127{letter-spacing:1.018980px;}
.ls33_c00127{letter-spacing:1.025640px;}
.ls66_c00127{letter-spacing:1.045620px;}
.ls87_c00127{letter-spacing:1.065600px;}
.ls18_c00127{letter-spacing:1.078920px;}
.ls22_c00127{letter-spacing:1.085580px;}
.ls7e_c00127{letter-spacing:1.118880px;}
.ls2f_c00127{letter-spacing:1.125540px;}
.ls1c_c00127{letter-spacing:1.132200px;}
.ls46_c00127{letter-spacing:1.138860px;}
.ls9_c00127{letter-spacing:1.147500px;}
.ls4_c00127{letter-spacing:1.152180px;}
.ls24_c00127{letter-spacing:1.158840px;}
.ls40_c00127{letter-spacing:1.165500px;}
.ls32_c00127{letter-spacing:1.172160px;}
.ls1b_c00127{letter-spacing:1.185480px;}
.ls56_c00127{letter-spacing:1.205460px;}
.ls3d_c00127{letter-spacing:1.225440px;}
.ls2_c00127{letter-spacing:1.232100px;}
.ls83_c00127{letter-spacing:1.245420px;}
.ls1a_c00127{letter-spacing:1.252080px;}
.ls37_c00127{letter-spacing:1.272060px;}
.ls14_c00127{letter-spacing:1.278720px;}
.lse_c00127{letter-spacing:1.285380px;}
.ls25_c00127{letter-spacing:1.292040px;}
.ls3c_c00127{letter-spacing:1.312020px;}
.ls15_c00127{letter-spacing:1.318680px;}
.ls36_c00127{letter-spacing:1.325340px;}
.ls29_c00127{letter-spacing:1.338660px;}
.ls3f_c00127{letter-spacing:1.345320px;}
.lsb_c00127{letter-spacing:1.365300px;}
.ls17_c00127{letter-spacing:1.378620px;}
.ls86_c00127{letter-spacing:1.398600px;}
.ls64_c00127{letter-spacing:1.405260px;}
.ls26_c00127{letter-spacing:1.411920px;}
.ls52_c00127{letter-spacing:1.418580px;}
.ls63_c00127{letter-spacing:1.431900px;}
.ls76_c00127{letter-spacing:1.451880px;}
.ls51_c00127{letter-spacing:1.465200px;}
.ls5f_c00127{letter-spacing:1.471860px;}
.ls65_c00127{letter-spacing:1.478520px;}
.ls61_c00127{letter-spacing:1.485180px;}
.ls68_c00127{letter-spacing:1.498500px;}
.lsc_c00127{letter-spacing:1.505160px;}
.ls53_c00127{letter-spacing:1.518480px;}
.ls39_c00127{letter-spacing:1.551780px;}
.ls10_c00127{letter-spacing:1.558440px;}
.ls6_c00127{letter-spacing:1.565100px;}
.ls12_c00127{letter-spacing:1.578420px;}
.ls21_c00127{letter-spacing:1.591740px;}
.ls6b_c00127{letter-spacing:1.631700px;}
.lsa_c00127{letter-spacing:1.645020px;}
.ls13_c00127{letter-spacing:1.665000px;}
.ls7_c00127{letter-spacing:1.671660px;}
.ls1f_c00127{letter-spacing:1.678320px;}
.ls58_c00127{letter-spacing:1.698300px;}
.ls5d_c00127{letter-spacing:1.744920px;}
.ls4c_c00127{letter-spacing:1.758240px;}
.ls4a_c00127{letter-spacing:1.764900px;}
.ls3e_c00127{letter-spacing:1.771560px;}
.ls1_c00127{letter-spacing:1.811520px;}
.ls2b_c00127{letter-spacing:1.871460px;}
.ls4b_c00127{letter-spacing:1.891440px;}
.ls6c_c00127{letter-spacing:1.898100px;}
.ls5_c00127{letter-spacing:1.931400px;}
.ls71_c00127{letter-spacing:1.944720px;}
.ls2e_c00127{letter-spacing:1.964700px;}
.ls49_c00127{letter-spacing:1.971360px;}
.ls2c_c00127{letter-spacing:2.004660px;}
.ls6a_c00127{letter-spacing:2.011320px;}
.ls16_c00127{letter-spacing:2.024640px;}
.ls97_c00127{letter-spacing:2.041200px;}
.lsf_c00127{letter-spacing:2.144520px;}
.ls0_c00127{letter-spacing:2.151180px;}
.ls47_c00127{letter-spacing:2.244420px;}
.ls45_c00127{letter-spacing:2.257740px;}
.ls31_c00127{letter-spacing:2.297700px;}
.ls11_c00127{letter-spacing:2.324340px;}
.ls34_c00127{letter-spacing:2.357640px;}
.ls3b_c00127{letter-spacing:2.384280px;}
.ls70_c00127{letter-spacing:2.437560px;}
.ls80_c00127{letter-spacing:2.510820px;}
.ls96_c00127{letter-spacing:2.520000px;}
.ls5c_c00127{letter-spacing:2.524140px;}
.ls67_c00127{letter-spacing:2.530800px;}
.ls8_c00127{letter-spacing:2.597400px;}
.ls57_c00127{letter-spacing:2.710620px;}
.ls6d_c00127{letter-spacing:2.730600px;}
.ls72_c00127{letter-spacing:2.820000px;}
.ls60_c00127{letter-spacing:2.957040px;}
.ls27_c00127{letter-spacing:3.016980px;}
.ls20_c00127{letter-spacing:3.310020px;}
.ls74_c00127{letter-spacing:3.330000px;}
.ls9b_c00127{letter-spacing:3.750000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{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__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00127{word-spacing:0.000000px;}
.ws2_c00127{word-spacing:1.505160px;}
.ws0_c00127{word-spacing:2.211120px;}
.ws1_c00127{word-spacing:7.505820px;}
._f_c00127{margin-left:-6.746580px;}
._e_c00127{margin-left:-5.481180px;}
._8_c00127{margin-left:-3.976020px;}
._4_c00127{margin-left:-2.797200px;}
._5_c00127{margin-left:-1.724940px;}
._9_c00127{width:1.911420px;}
._6_c00127{width:3.463200px;}
._7_c00127{width:4.935060px;}
._d_c00127{width:6.087240px;}
._a_c00127{width:7.472520px;}
._2_c00127{width:8.558100px;}
._0_c00127{width:9.910080px;}
._1_c00127{width:11.188800px;}
._b_c00127{width:12.380940px;}
._c_c00127{width:14.498820px;}
._3_c00127{width:16.298700px;}
.fc0_c00127{color:transparent;}
.fs6_c00127{font-size:50.400000px;}
.fs9_c00127{font-size:53.280000px;}
.fs0_c00127{font-size:56.400000px;}
.fsb_c00127{font-size:57.600000px;}
.fs4_c00127{font-size:66.000000px;}
.fs1_c00127{font-size:66.600000px;}
.fs8_c00127{font-size:70.800000px;}
.fs7_c00127{font-size:72.000000px;}
.fs5_c00127{font-size:73.800000px;}
.fsa_c00127{font-size:74.400000px;}
.fs2_c00127{font-size:75.000000px;}
.fs3_c00127{font-size:76.800000px;}
.y0_c00127{bottom:0.000000px;}
.y22_c00127{bottom:73.815015px;}
.y21_c00127{bottom:150.480015px;}
.y20_c00127{bottom:150.487665px;}
.y1f_c00127{bottom:181.440015px;}
.y1e_c00127{bottom:212.775015px;}
.y1d_c00127{bottom:244.080015px;}
.y1c_c00127{bottom:275.415015px;}
.y1b_c00127{bottom:337.702665px;}
.y1a_c00127{bottom:368.657715px;}
.y19_c00127{bottom:431.295015px;}
.y18_c00127{bottom:462.600015px;}
.y17_c00127{bottom:462.607365px;}
.y16_c00127{bottom:524.895015px;}
.y15_c00127{bottom:556.575015px;}
.y13_c00127{bottom:619.919715px;}
.y14_c00127{bottom:619.920015px;}
.y11_c00127{bottom:651.249015px;}
.y12_c00127{bottom:651.255015px;}
.y10_c00127{bottom:713.520015px;}
.yf_c00127{bottom:776.178015px;}
.yd_c00127{bottom:807.473415px;}
.ye_c00127{bottom:807.480015px;}
.yc_c00127{bottom:839.175015px;}
.yb_c00127{bottom:870.135015px;}
.ya_c00127{bottom:870.142665px;}
.y9_c00127{bottom:901.095015px;}
.y7_c00127{bottom:963.355065px;}
.y8_c00127{bottom:963.360015px;}
.y5_c00127{bottom:995.039115px;}
.y6_c00127{bottom:995.040015px;}
.y4_c00127{bottom:1057.676415px;}
.y3_c00127{bottom:1089.361365px;}
.y2_c00127{bottom:1120.680015px;}
.y1_c00127{bottom:1195.200015px;}
.hf_c00127{height:35.484480px;}
.hc_c00127{height:50.793750px;}
.h11_c00127{height:56.531250px;}
.h2_c00127{height:58.823438px;}
.h6_c00127{height:65.331738px;}
.hb_c00127{height:65.353458px;}
.h3_c00127{height:65.364258px;}
.h8_c00127{height:65.388258px;}
.h7_c00127{height:68.835938px;}
.he_c00127{height:71.353125px;}
.ha_c00127{height:72.430664px;}
.hd_c00127{height:72.562500px;}
.h4_c00127{height:73.608398px;}
.h9_c00127{height:75.337500px;}
.h5_c00127{height:75.375000px;}
.h10_c00127{height:77.596875px;}
.h1_c00127{height:1263.000000px;}
.h0_c00127{height:1263.240015px;}
.w1_c00127{width:892.500000px;}
.w0_c00127{width:892.800015px;}
.x0_c00127{left:0.000000px;}
.x2a_c00127{left:124.417215px;}
.x22_c00127{left:125.835015px;}
.x1_c00127{left:127.110015px;}
.x7_c00127{left:150.405015px;}
.x1a_c00127{left:178.320015px;}
.x20_c00127{left:180.122115px;}
.x4_c00127{left:181.232715px;}
.x23_c00127{left:191.685015px;}
.x1b_c00127{left:198.195015px;}
.x1d_c00127{left:238.845015px;}
.x24_c00127{left:248.310015px;}
.xb_c00127{left:251.565015px;}
.x1e_c00127{left:265.965015px;}
.xc_c00127{left:278.835015px;}
.x16_c00127{left:283.245015px;}
.x2_c00127{left:294.750015px;}
.x1c_c00127{left:298.980015px;}
.x17_c00127{left:316.725015px;}
.x3_c00127{left:320.955015px;}
.x2b_c00127{left:331.350015px;}
.x25_c00127{left:337.860015px;}
.x8_c00127{left:343.275015px;}
.x2c_c00127{left:355.185015px;}
.x9_c00127{left:364.545015px;}
.xf_c00127{left:382.860015px;}
.x10_c00127{left:405.330015px;}
.x5_c00127{left:415.725015px;}
.x2f_c00127{left:426.465015px;}
.x6_c00127{left:448.035015px;}
.xa_c00127{left:478.005015px;}
.x26_c00127{left:492.030015px;}
.x27_c00127{left:558.990015px;}
.x11_c00127{left:563.595015px;}
.xd_c00127{left:584.265015px;}
.x12_c00127{left:608.955015px;}
.xe_c00127{left:620.475015px;}
.x18_c00127{left:626.295015px;}
.x28_c00127{left:629.295015px;}
.x2d_c00127{left:645.495015px;}
.x19_c00127{left:652.500015px;}
.x14_c00127{left:667.980015px;}
.x2e_c00127{left:669.930015px;}
.x15_c00127{left:688.860015px;}
.x1f_c00127{left:690.810015px;}
.x29_c00127{left:693.375015px;}
.x21_c00127{left:732.510015px;}
.x13_c00127{left:735.030015px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls78_c00127{letter-spacing:-2.389333pt;}
.ls9d_c00127{letter-spacing:-2.314667pt;}
.ls8b_c00127{letter-spacing:-2.296000pt;}
.ls88_c00127{letter-spacing:-2.280107pt;}
.ls98_c00127{letter-spacing:-2.240000pt;}
.ls99_c00127{letter-spacing:-2.202667pt;}
.ls7c_c00127{letter-spacing:-2.072000pt;}
.ls7d_c00127{letter-spacing:-2.053333pt;}
.ls8f_c00127{letter-spacing:-1.616160pt;}
.ls89_c00127{letter-spacing:-1.351680pt;}
.ls93_c00127{letter-spacing:-1.189920pt;}
.ls8e_c00127{letter-spacing:-0.964960pt;}
.ls8d_c00127{letter-spacing:-0.893920pt;}
.ls92_c00127{letter-spacing:-0.763680pt;}
.ls9e_c00127{letter-spacing:-0.732160pt;}
.ls82_c00127{letter-spacing:-0.467680pt;}
.ls90_c00127{letter-spacing:-0.319680pt;}
.ls7f_c00127{letter-spacing:-0.296000pt;}
.ls81_c00127{letter-spacing:-0.242720pt;}
.ls8c_c00127{letter-spacing:-0.148000pt;}
.ls79_c00127{letter-spacing:-0.142080pt;}
.ls91_c00127{letter-spacing:-0.041440pt;}
.ls75_c00127{letter-spacing:0.000000pt;}
.ls8a_c00127{letter-spacing:0.023680pt;}
.ls54_c00127{letter-spacing:0.029600pt;}
.ls4e_c00127{letter-spacing:0.076960pt;}
.ls50_c00127{letter-spacing:0.153920pt;}
.ls28_c00127{letter-spacing:0.183520pt;}
.ls55_c00127{letter-spacing:0.207200pt;}
.ls85_c00127{letter-spacing:0.213120pt;}
.lsd_c00127{letter-spacing:0.290080pt;}
.ls43_c00127{letter-spacing:0.355200pt;}
.ls84_c00127{letter-spacing:0.455840pt;}
.ls4f_c00127{letter-spacing:0.473600pt;}
.ls7b_c00127{letter-spacing:0.497280pt;}
.ls5b_c00127{letter-spacing:0.515040pt;}
.ls19_c00127{letter-spacing:0.520960pt;}
.ls94_c00127{letter-spacing:0.526880pt;}
.ls59_c00127{letter-spacing:0.550560pt;}
.ls62_c00127{letter-spacing:0.574240pt;}
.ls77_c00127{letter-spacing:0.621600pt;}
.ls95_c00127{letter-spacing:0.627520pt;}
.ls4d_c00127{letter-spacing:0.633440pt;}
.ls5a_c00127{letter-spacing:0.639360pt;}
.ls9a_c00127{letter-spacing:0.651200pt;}
.ls2d_c00127{letter-spacing:0.668960pt;}
.ls69_c00127{letter-spacing:0.704480pt;}
.ls1d_c00127{letter-spacing:0.710400pt;}
.ls7a_c00127{letter-spacing:0.716320pt;}
.ls42_c00127{letter-spacing:0.722240pt;}
.ls44_c00127{letter-spacing:0.728160pt;}
.ls3a_c00127{letter-spacing:0.775520pt;}
.ls35_c00127{letter-spacing:0.787360pt;}
.ls73_c00127{letter-spacing:0.793280pt;}
.ls6e_c00127{letter-spacing:0.805120pt;}
.ls6f_c00127{letter-spacing:0.834720pt;}
.ls5e_c00127{letter-spacing:0.840640pt;}
.ls38_c00127{letter-spacing:0.846560pt;}
.ls9c_c00127{letter-spacing:0.852480pt;}
.ls1e_c00127{letter-spacing:0.858400pt;}
.ls2a_c00127{letter-spacing:0.870240pt;}
.ls23_c00127{letter-spacing:0.876160pt;}
.ls3_c00127{letter-spacing:0.882080pt;}
.ls41_c00127{letter-spacing:0.893920pt;}
.ls48_c00127{letter-spacing:0.899840pt;}
.ls30_c00127{letter-spacing:0.905760pt;}
.ls33_c00127{letter-spacing:0.911680pt;}
.ls66_c00127{letter-spacing:0.929440pt;}
.ls87_c00127{letter-spacing:0.947200pt;}
.ls18_c00127{letter-spacing:0.959040pt;}
.ls22_c00127{letter-spacing:0.964960pt;}
.ls7e_c00127{letter-spacing:0.994560pt;}
.ls2f_c00127{letter-spacing:1.000480pt;}
.ls1c_c00127{letter-spacing:1.006400pt;}
.ls46_c00127{letter-spacing:1.012320pt;}
.ls9_c00127{letter-spacing:1.020000pt;}
.ls4_c00127{letter-spacing:1.024160pt;}
.ls24_c00127{letter-spacing:1.030080pt;}
.ls40_c00127{letter-spacing:1.036000pt;}
.ls32_c00127{letter-spacing:1.041920pt;}
.ls1b_c00127{letter-spacing:1.053760pt;}
.ls56_c00127{letter-spacing:1.071520pt;}
.ls3d_c00127{letter-spacing:1.089280pt;}
.ls2_c00127{letter-spacing:1.095200pt;}
.ls83_c00127{letter-spacing:1.107040pt;}
.ls1a_c00127{letter-spacing:1.112960pt;}
.ls37_c00127{letter-spacing:1.130720pt;}
.ls14_c00127{letter-spacing:1.136640pt;}
.lse_c00127{letter-spacing:1.142560pt;}
.ls25_c00127{letter-spacing:1.148480pt;}
.ls3c_c00127{letter-spacing:1.166240pt;}
.ls15_c00127{letter-spacing:1.172160pt;}
.ls36_c00127{letter-spacing:1.178080pt;}
.ls29_c00127{letter-spacing:1.189920pt;}
.ls3f_c00127{letter-spacing:1.195840pt;}
.lsb_c00127{letter-spacing:1.213600pt;}
.ls17_c00127{letter-spacing:1.225440pt;}
.ls86_c00127{letter-spacing:1.243200pt;}
.ls64_c00127{letter-spacing:1.249120pt;}
.ls26_c00127{letter-spacing:1.255040pt;}
.ls52_c00127{letter-spacing:1.260960pt;}
.ls63_c00127{letter-spacing:1.272800pt;}
.ls76_c00127{letter-spacing:1.290560pt;}
.ls51_c00127{letter-spacing:1.302400pt;}
.ls5f_c00127{letter-spacing:1.308320pt;}
.ls65_c00127{letter-spacing:1.314240pt;}
.ls61_c00127{letter-spacing:1.320160pt;}
.ls68_c00127{letter-spacing:1.332000pt;}
.lsc_c00127{letter-spacing:1.337920pt;}
.ls53_c00127{letter-spacing:1.349760pt;}
.ls39_c00127{letter-spacing:1.379360pt;}
.ls10_c00127{letter-spacing:1.385280pt;}
.ls6_c00127{letter-spacing:1.391200pt;}
.ls12_c00127{letter-spacing:1.403040pt;}
.ls21_c00127{letter-spacing:1.414880pt;}
.ls6b_c00127{letter-spacing:1.450400pt;}
.lsa_c00127{letter-spacing:1.462240pt;}
.ls13_c00127{letter-spacing:1.480000pt;}
.ls7_c00127{letter-spacing:1.485920pt;}
.ls1f_c00127{letter-spacing:1.491840pt;}
.ls58_c00127{letter-spacing:1.509600pt;}
.ls5d_c00127{letter-spacing:1.551040pt;}
.ls4c_c00127{letter-spacing:1.562880pt;}
.ls4a_c00127{letter-spacing:1.568800pt;}
.ls3e_c00127{letter-spacing:1.574720pt;}
.ls1_c00127{letter-spacing:1.610240pt;}
.ls2b_c00127{letter-spacing:1.663520pt;}
.ls4b_c00127{letter-spacing:1.681280pt;}
.ls6c_c00127{letter-spacing:1.687200pt;}
.ls5_c00127{letter-spacing:1.716800pt;}
.ls71_c00127{letter-spacing:1.728640pt;}
.ls2e_c00127{letter-spacing:1.746400pt;}
.ls49_c00127{letter-spacing:1.752320pt;}
.ls2c_c00127{letter-spacing:1.781920pt;}
.ls6a_c00127{letter-spacing:1.787840pt;}
.ls16_c00127{letter-spacing:1.799680pt;}
.ls97_c00127{letter-spacing:1.814400pt;}
.lsf_c00127{letter-spacing:1.906240pt;}
.ls0_c00127{letter-spacing:1.912160pt;}
.ls47_c00127{letter-spacing:1.995040pt;}
.ls45_c00127{letter-spacing:2.006880pt;}
.ls31_c00127{letter-spacing:2.042400pt;}
.ls11_c00127{letter-spacing:2.066080pt;}
.ls34_c00127{letter-spacing:2.095680pt;}
.ls3b_c00127{letter-spacing:2.119360pt;}
.ls70_c00127{letter-spacing:2.166720pt;}
.ls80_c00127{letter-spacing:2.231840pt;}
.ls96_c00127{letter-spacing:2.240000pt;}
.ls5c_c00127{letter-spacing:2.243680pt;}
.ls67_c00127{letter-spacing:2.249600pt;}
.ls8_c00127{letter-spacing:2.308800pt;}
.ls57_c00127{letter-spacing:2.409440pt;}
.ls6d_c00127{letter-spacing:2.427200pt;}
.ls72_c00127{letter-spacing:2.506667pt;}
.ls60_c00127{letter-spacing:2.628480pt;}
.ls27_c00127{letter-spacing:2.681760pt;}
.ls20_c00127{letter-spacing:2.942240pt;}
.ls74_c00127{letter-spacing:2.960000pt;}
.ls9b_c00127{letter-spacing:3.333333pt;}
.ws3_c00127{word-spacing:0.000000pt;}
.ws2_c00127{word-spacing:1.337920pt;}
.ws0_c00127{word-spacing:1.965440pt;}
.ws1_c00127{word-spacing:6.671840pt;}
._f_c00127{margin-left:-5.996960pt;}
._e_c00127{margin-left:-4.872160pt;}
._8_c00127{margin-left:-3.534240pt;}
._4_c00127{margin-left:-2.486400pt;}
._5_c00127{margin-left:-1.533280pt;}
._9_c00127{width:1.699040pt;}
._6_c00127{width:3.078400pt;}
._7_c00127{width:4.386720pt;}
._d_c00127{width:5.410880pt;}
._a_c00127{width:6.642240pt;}
._2_c00127{width:7.607200pt;}
._0_c00127{width:8.808960pt;}
._1_c00127{width:9.945600pt;}
._b_c00127{width:11.005280pt;}
._c_c00127{width:12.887840pt;}
._3_c00127{width:14.487733pt;}
.fs6_c00127{font-size:44.800000pt;}
.fs9_c00127{font-size:47.360000pt;}
.fs0_c00127{font-size:50.133333pt;}
.fsb_c00127{font-size:51.200000pt;}
.fs4_c00127{font-size:58.666667pt;}
.fs1_c00127{font-size:59.200000pt;}
.fs8_c00127{font-size:62.933333pt;}
.fs7_c00127{font-size:64.000000pt;}
.fs5_c00127{font-size:65.600000pt;}
.fsa_c00127{font-size:66.133333pt;}
.fs2_c00127{font-size:66.666667pt;}
.fs3_c00127{font-size:68.266667pt;}
.y0_c00127{bottom:0.000000pt;}
.y22_c00127{bottom:65.613347pt;}
.y21_c00127{bottom:133.760013pt;}
.y20_c00127{bottom:133.766813pt;}
.y1f_c00127{bottom:161.280013pt;}
.y1e_c00127{bottom:189.133347pt;}
.y1d_c00127{bottom:216.960013pt;}
.y1c_c00127{bottom:244.813347pt;}
.y1b_c00127{bottom:300.180147pt;}
.y1a_c00127{bottom:327.695747pt;}
.y19_c00127{bottom:383.373347pt;}
.y18_c00127{bottom:411.200013pt;}
.y17_c00127{bottom:411.206547pt;}
.y16_c00127{bottom:466.573347pt;}
.y15_c00127{bottom:494.733347pt;}
.y13_c00127{bottom:551.039747pt;}
.y14_c00127{bottom:551.040013pt;}
.y11_c00127{bottom:578.888013pt;}
.y12_c00127{bottom:578.893347pt;}
.y10_c00127{bottom:634.240013pt;}
.yf_c00127{bottom:689.936013pt;}
.yd_c00127{bottom:717.754147pt;}
.ye_c00127{bottom:717.760013pt;}
.yc_c00127{bottom:745.933347pt;}
.yb_c00127{bottom:773.453347pt;}
.ya_c00127{bottom:773.460147pt;}
.y9_c00127{bottom:800.973347pt;}
.y7_c00127{bottom:856.315613pt;}
.y8_c00127{bottom:856.320013pt;}
.y5_c00127{bottom:884.479213pt;}
.y6_c00127{bottom:884.480013pt;}
.y4_c00127{bottom:940.156813pt;}
.y3_c00127{bottom:968.321213pt;}
.y2_c00127{bottom:996.160013pt;}
.y1_c00127{bottom:1062.400013pt;}
.hf_c00127{height:31.541760pt;}
.hc_c00127{height:45.150000pt;}
.h11_c00127{height:50.250000pt;}
.h2_c00127{height:52.287500pt;}
.h6_c00127{height:58.072656pt;}
.hb_c00127{height:58.091963pt;}
.h3_c00127{height:58.101562pt;}
.h8_c00127{height:58.122896pt;}
.h7_c00127{height:61.187500pt;}
.he_c00127{height:63.425000pt;}
.ha_c00127{height:64.382813pt;}
.hd_c00127{height:64.500000pt;}
.h4_c00127{height:65.429688pt;}
.h9_c00127{height:66.966667pt;}
.h5_c00127{height:67.000000pt;}
.h10_c00127{height:68.975000pt;}
.h1_c00127{height:1122.666667pt;}
.h0_c00127{height:1122.880013pt;}
.w1_c00127{width:793.333333pt;}
.w0_c00127{width:793.600013pt;}
.x0_c00127{left:0.000000pt;}
.x2a_c00127{left:110.593080pt;}
.x22_c00127{left:111.853347pt;}
.x1_c00127{left:112.986680pt;}
.x7_c00127{left:133.693347pt;}
.x1a_c00127{left:158.506680pt;}
.x20_c00127{left:160.108547pt;}
.x4_c00127{left:161.095747pt;}
.x23_c00127{left:170.386680pt;}
.x1b_c00127{left:176.173347pt;}
.x1d_c00127{left:212.306680pt;}
.x24_c00127{left:220.720013pt;}
.xb_c00127{left:223.613347pt;}
.x1e_c00127{left:236.413347pt;}
.xc_c00127{left:247.853347pt;}
.x16_c00127{left:251.773347pt;}
.x2_c00127{left:262.000013pt;}
.x1c_c00127{left:265.760013pt;}
.x17_c00127{left:281.533347pt;}
.x3_c00127{left:285.293347pt;}
.x2b_c00127{left:294.533347pt;}
.x25_c00127{left:300.320013pt;}
.x8_c00127{left:305.133347pt;}
.x2c_c00127{left:315.720013pt;}
.x9_c00127{left:324.040013pt;}
.xf_c00127{left:340.320013pt;}
.x10_c00127{left:360.293347pt;}
.x5_c00127{left:369.533347pt;}
.x2f_c00127{left:379.080013pt;}
.x6_c00127{left:398.253347pt;}
.xa_c00127{left:424.893347pt;}
.x26_c00127{left:437.360013pt;}
.x27_c00127{left:496.880013pt;}
.x11_c00127{left:500.973347pt;}
.xd_c00127{left:519.346680pt;}
.x12_c00127{left:541.293347pt;}
.xe_c00127{left:551.533347pt;}
.x18_c00127{left:556.706680pt;}
.x28_c00127{left:559.373347pt;}
.x2d_c00127{left:573.773347pt;}
.x19_c00127{left:580.000013pt;}
.x14_c00127{left:593.760013pt;}
.x2e_c00127{left:595.493347pt;}
.x15_c00127{left:612.320013pt;}
.x1f_c00127{left:614.053347pt;}
.x29_c00127{left:616.333347pt;}
.x21_c00127{left:651.120013pt;}
.x13_c00127{left:653.360013pt;}
}





/* 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_c00128 {
    display:none;
  }
  .loading-indicator_c00128.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00128 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_c00128 { 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_c00128" -> "#page-container .classname_c00128")
 */
.pf_c00128 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00128 { /* 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_c00128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00128 { /* 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_c00128 { /* 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_c00128 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00128 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00128 {overflow:visible;}
  }
}
.c_c00128 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00128 { /* 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_c00128:after { /* webkit #35443 */
  content: '';
}
.t_c00128:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00128 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 */
}
.__c00128 { /* 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_c00128 { /* info for Javascript */
  display:none;
}
.l_c00128 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00128 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00128 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00128: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_c00128 {
    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_c00128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00128.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_c00128 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00128;src:url('chunks/assets/font_12a9e0a40552ad47642920af.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.284668;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_c00128;src:url('chunks/assets/font_44972ba47157695b7b9ab0ea.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.284180;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_c00128;src:url('chunks/assets/font_10d58ca0b27433d73144bb43.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;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;}
.m5_c00128{transform:matrix(0.155199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155199,0.000000,0.000000,0.250000,0,0);}
.m4_c00128{transform:matrix(0.159451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159451,0.000000,0.000000,0.250000,0,0);}
.m2_c00128{transform:matrix(0.210677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210677,0.000000,0.000000,0.250000,0,0);}
.mc_c00128{transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);}
.m0_c00128{transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);}
.mb_c00128{transform:matrix(0.226097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226097,0.000000,0.000000,0.250000,0,0);}
.ma_c00128{transform:matrix(0.233067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233067,0.000000,0.000000,0.250000,0,0);}
.md_c00128{transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);}
.m7_c00128{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m6_c00128{transform:matrix(0.243684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243684,0.000000,0.000000,0.250000,0,0);}
.m3_c00128{transform:matrix(0.244744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244744,0.000000,0.000000,0.250000,0,0);}
.m9_c00128{transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);}
.m8_c00128{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m1_c00128{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);}
.v0_c00128{vertical-align:0.000000px;}
.v1_c00128{vertical-align:24.388800px;}
.ls5a_c00128{letter-spacing:-2.814000px;}
.ls60_c00128{letter-spacing:-2.688000px;}
.ls55_c00128{letter-spacing:-2.562000px;}
.ls5f_c00128{letter-spacing:-2.436000px;}
.ls6d_c00128{letter-spacing:-2.373000px;}
.ls78_c00128{letter-spacing:-2.234160px;}
.ls86_c00128{letter-spacing:-2.136720px;}
.ls7d_c00128{letter-spacing:-2.074080px;}
.ls95_c00128{letter-spacing:-1.995000px;}
.ls6f_c00128{letter-spacing:-1.886160px;}
.ls5b_c00128{letter-spacing:-1.649520px;}
.ls7c_c00128{letter-spacing:-1.503360px;}
.ls7b_c00128{letter-spacing:-1.294560px;}
.ls87_c00128{letter-spacing:-1.238880px;}
.ls8e_c00128{letter-spacing:-1.224960px;}
.ls69_c00128{letter-spacing:-1.218000px;}
.ls89_c00128{letter-spacing:-1.204080px;}
.ls64_c00128{letter-spacing:-1.169280px;}
.ls72_c00128{letter-spacing:-1.106640px;}
.ls6b_c00128{letter-spacing:-1.023120px;}
.ls8b_c00128{letter-spacing:-0.988320px;}
.ls83_c00128{letter-spacing:-0.883920px;}
.ls81_c00128{letter-spacing:-0.828240px;}
.ls8a_c00128{letter-spacing:-0.744720px;}
.ls75_c00128{letter-spacing:-0.737760px;}
.ls88_c00128{letter-spacing:-0.696000px;}
.ls80_c00128{letter-spacing:-0.675120px;}
.ls58_c00128{letter-spacing:-0.619440px;}
.ls8c_c00128{letter-spacing:-0.598560px;}
.ls5d_c00128{letter-spacing:-0.563760px;}
.ls94_c00128{letter-spacing:-0.522000px;}
.ls7f_c00128{letter-spacing:-0.515040px;}
.ls7a_c00128{letter-spacing:-0.494160px;}
.ls77_c00128{letter-spacing:-0.487200px;}
.ls7e_c00128{letter-spacing:-0.466320px;}
.ls82_c00128{letter-spacing:-0.452400px;}
.ls93_c00128{letter-spacing:-0.438480px;}
.ls5e_c00128{letter-spacing:-0.410640px;}
.ls68_c00128{letter-spacing:-0.396720px;}
.ls8f_c00128{letter-spacing:-0.389760px;}
.ls70_c00128{letter-spacing:-0.382800px;}
.ls66_c00128{letter-spacing:-0.313200px;}
.ls79_c00128{letter-spacing:-0.292320px;}
.ls73_c00128{letter-spacing:-0.229680px;}
.ls56_c00128{letter-spacing:-0.208800px;}
.ls57_c00128{letter-spacing:-0.194880px;}
.ls76_c00128{letter-spacing:-0.187920px;}
.ls74_c00128{letter-spacing:-0.180960px;}
.ls5c_c00128{letter-spacing:-0.160080px;}
.ls65_c00128{letter-spacing:-0.153120px;}
.ls62_c00128{letter-spacing:-0.132240px;}
.ls6a_c00128{letter-spacing:-0.125280px;}
.ls90_c00128{letter-spacing:-0.111360px;}
.ls85_c00128{letter-spacing:-0.104400px;}
.ls67_c00128{letter-spacing:-0.090480px;}
.ls6e_c00128{letter-spacing:-0.055680px;}
.ls92_c00128{letter-spacing:-0.048720px;}
.ls8d_c00128{letter-spacing:-0.034800px;}
.ls61_c00128{letter-spacing:-0.027840px;}
.ls59_c00128{letter-spacing:-0.013920px;}
.ls6c_c00128{letter-spacing:0.000000px;}
.ls2_c00128{letter-spacing:0.006960px;}
.ls31_c00128{letter-spacing:0.013920px;}
.ls2f_c00128{letter-spacing:0.027840px;}
.ls3f_c00128{letter-spacing:0.034800px;}
.ls1d_c00128{letter-spacing:0.055680px;}
.ls71_c00128{letter-spacing:0.062640px;}
.lsd_c00128{letter-spacing:0.076560px;}
.ls37_c00128{letter-spacing:0.090480px;}
.ls4_c00128{letter-spacing:0.097440px;}
.ls12_c00128{letter-spacing:0.132240px;}
.lsb_c00128{letter-spacing:0.139200px;}
.ls84_c00128{letter-spacing:0.208800px;}
.lse_c00128{letter-spacing:0.215760px;}
.ls18_c00128{letter-spacing:0.222720px;}
.ls8_c00128{letter-spacing:0.229680px;}
.ls5_c00128{letter-spacing:0.236640px;}
.ls10_c00128{letter-spacing:0.243600px;}
.ls3d_c00128{letter-spacing:0.250560px;}
.ls2b_c00128{letter-spacing:0.257520px;}
.ls1a_c00128{letter-spacing:0.278400px;}
.ls4b_c00128{letter-spacing:0.285360px;}
.ls38_c00128{letter-spacing:0.292320px;}
.ls1c_c00128{letter-spacing:0.299280px;}
.ls32_c00128{letter-spacing:0.306240px;}
.ls1_c00128{letter-spacing:0.320160px;}
.ls3_c00128{letter-spacing:0.327120px;}
.ls1b_c00128{letter-spacing:0.341040px;}
.ls63_c00128{letter-spacing:0.348000px;}
.ls36_c00128{letter-spacing:0.354960px;}
.ls91_c00128{letter-spacing:0.361920px;}
.ls46_c00128{letter-spacing:0.382800px;}
.ls47_c00128{letter-spacing:0.396720px;}
.ls2e_c00128{letter-spacing:0.410640px;}
.ls52_c00128{letter-spacing:0.417600px;}
.ls0_c00128{letter-spacing:0.438480px;}
.ls19_c00128{letter-spacing:0.452400px;}
.ls14_c00128{letter-spacing:0.459360px;}
.ls3c_c00128{letter-spacing:0.466320px;}
.ls42_c00128{letter-spacing:0.473280px;}
.ls13_c00128{letter-spacing:0.480240px;}
.ls25_c00128{letter-spacing:0.501120px;}
.ls1f_c00128{letter-spacing:0.515040px;}
.lsc_c00128{letter-spacing:0.542880px;}
.ls23_c00128{letter-spacing:0.556800px;}
.ls48_c00128{letter-spacing:0.584640px;}
.ls16_c00128{letter-spacing:0.598560px;}
.ls50_c00128{letter-spacing:0.619440px;}
.ls51_c00128{letter-spacing:0.640320px;}
.ls2a_c00128{letter-spacing:0.647280px;}
.ls26_c00128{letter-spacing:0.654240px;}
.ls4f_c00128{letter-spacing:0.668160px;}
.ls4e_c00128{letter-spacing:0.730800px;}
.ls45_c00128{letter-spacing:0.758640px;}
.ls22_c00128{letter-spacing:0.766140px;}
.ls33_c00128{letter-spacing:0.772560px;}
.ls28_c00128{letter-spacing:0.793440px;}
.ls20_c00128{letter-spacing:0.800400px;}
.ls35_c00128{letter-spacing:0.854280px;}
.ls44_c00128{letter-spacing:0.870000px;}
.lsf_c00128{letter-spacing:0.883920px;}
.ls1e_c00128{letter-spacing:0.932640px;}
.ls9_c00128{letter-spacing:0.935640px;}
.ls49_c00128{letter-spacing:0.953520px;}
.ls3b_c00128{letter-spacing:0.962760px;}
.ls15_c00128{letter-spacing:1.057680px;}
.ls30_c00128{letter-spacing:1.078800px;}
.ls54_c00128{letter-spacing:1.092720px;}
.ls43_c00128{letter-spacing:1.139040px;}
.ls41_c00128{letter-spacing:1.145820px;}
.ls3e_c00128{letter-spacing:1.159380px;}
.ls4c_c00128{letter-spacing:1.211040px;}
.ls6_c00128{letter-spacing:1.240740px;}
.ls3a_c00128{letter-spacing:1.281420px;}
.ls40_c00128{letter-spacing:1.294980px;}
.ls21_c00128{letter-spacing:1.301760px;}
.ls24_c00128{letter-spacing:1.398960px;}
.ls4a_c00128{letter-spacing:1.461600px;}
.ls2d_c00128{letter-spacing:1.505160px;}
.ls17_c00128{letter-spacing:1.607760px;}
.ls29_c00128{letter-spacing:1.635600px;}
.ls7_c00128{letter-spacing:1.705200px;}
.ls34_c00128{letter-spacing:1.742460px;}
.ls39_c00128{letter-spacing:1.830600px;}
.ls11_c00128{letter-spacing:1.983600px;}
.ls53_c00128{letter-spacing:2.164560px;}
.ls4d_c00128{letter-spacing:2.442960px;}
.ls2c_c00128{letter-spacing:2.576400px;}
.ls27_c00128{letter-spacing:2.888400px;}
.lsa_c00128{letter-spacing:3.145920px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{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__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00128{word-spacing:-16.376880px;}
.ws6_c00128{word-spacing:0.000000px;}
.ws3_c00128{word-spacing:6.840600px;}
.ws4_c00128{word-spacing:13.018860px;}
.ws1_c00128{word-spacing:17.249400px;}
.ws0_c00128{word-spacing:17.257440px;}
.ws5_c00128{word-spacing:18.569640px;}
._12_c00128{margin-left:-6.590460px;}
._c_c00128{margin-left:-5.533200px;}
._b_c00128{margin-left:-3.306000px;}
._a_c00128{margin-left:-1.336320px;}
._d_c00128{width:1.141440px;}
._4_c00128{width:2.178480px;}
._9_c00128{width:3.751440px;}
._f_c00128{width:5.436000px;}
._11_c00128{width:6.488160px;}
._e_c00128{width:7.940640px;}
._6_c00128{width:9.011040px;}
._8_c00128{width:11.275200px;}
._7_c00128{width:12.298320px;}
._10_c00128{width:13.428600px;}
._0_c00128{width:14.629920px;}
._3_c00128{width:16.042800px;}
._1_c00128{width:18.652800px;}
._2_c00128{width:21.060960px;}
._5_c00128{width:23.464080px;}
._13_c00128{width:50.800320px;}
.fc0_c00128{color:transparent;}
.fs5_c00128{font-size:32.400600px;}
.fs6_c00128{font-size:57.000000px;}
.fs3_c00128{font-size:67.800000px;}
.fs1_c00128{font-size:69.600000px;}
.fs0_c00128{font-size:73.200000px;}
.fs4_c00128{font-size:76.800000px;}
.fs2_c00128{font-size:80.400000px;}
.y0_c00128{bottom:0.000000px;}
.y1f_c00128{bottom:74.880000px;}
.y1e_c00128{bottom:149.754600px;}
.y1c_c00128{bottom:181.425600px;}
.y1d_c00128{bottom:181.440000px;}
.y1b_c00128{bottom:213.128400px;}
.y1a_c00128{bottom:243.735000px;}
.y19_c00128{bottom:275.055000px;}
.y18_c00128{bottom:306.375000px;}
.y17_c00128{bottom:369.375000px;}
.y16_c00128{bottom:400.695000px;}
.y15_c00128{bottom:432.000000px;}
.y14_c00128{bottom:463.335000px;}
.y13_c00128{bottom:495.000000px;}
.y11_c00128{bottom:557.649600px;}
.y12_c00128{bottom:557.655000px;}
.yf_c00128{bottom:620.649600px;}
.y10_c00128{bottom:620.655000px;}
.ye_c00128{bottom:652.335000px;}
.yd_c00128{bottom:715.342800px;}
.yc_c00128{bottom:746.280000px;}
.yb_c00128{bottom:809.295000px;}
.ya_c00128{bottom:840.615000px;}
.y9_c00128{bottom:903.615000px;}
.y8_c00128{bottom:903.622800px;}
.y7_c00128{bottom:934.560000px;}
.y6_c00128{bottom:997.935000px;}
.y5_c00128{bottom:997.942800px;}
.y4_c00128{bottom:1028.880000px;}
.y3_c00128{bottom:1092.245400px;}
.y2_c00128{bottom:1123.200000px;}
.y1_c00128{bottom:1199.520000px;}
.h7_c00128{height:59.449219px;}
.h3_c00128{height:68.308594px;}
.h6_c00128{height:70.713281px;}
.h2_c00128{height:71.841797px;}
.h5_c00128{height:75.375000px;}
.h4_c00128{height:78.908203px;}
.h1_c00128{height:1263.000000px;}
.h0_c00128{height:1263.240000px;}
.w1_c00128{width:892.500000px;}
.w0_c00128{width:892.800000px;}
.x0_c00128{left:0.000000px;}
.x1d_c00128{left:119.925000px;}
.xe_c00128{left:122.712000px;}
.x9_c00128{left:124.887600px;}
.x2_c00128{left:126.195000px;}
.x1_c00128{left:127.365000px;}
.x1c_c00128{left:174.405000px;}
.x14_c00128{left:175.972200px;}
.xd_c00128{left:177.285000px;}
.xc_c00128{left:178.335000px;}
.x5_c00128{left:179.445000px;}
.xa_c00128{left:188.700000px;}
.xb_c00128{left:210.900000px;}
.x11_c00128{left:230.565000px;}
.x12_c00128{left:235.245000px;}
.x13_c00128{left:262.920000px;}
.xf_c00128{left:335.700000px;}
.x10_c00128{left:352.365000px;}
.x15_c00128{left:396.030000px;}
.x1e_c00128{left:414.645000px;}
.x16_c00128{left:418.200000px;}
.x20_c00128{left:425.445000px;}
.x1f_c00128{left:442.005000px;}
.x1a_c00128{left:461.385000px;}
.x1b_c00128{left:488.640000px;}
.x6_c00128{left:530.340000px;}
.x7_c00128{left:557.205000px;}
.x8_c00128{left:593.835000px;}
.x3_c00128{left:636.765000px;}
.x19_c00128{left:651.390000px;}
.x4_c00128{left:667.335000px;}
.x17_c00128{left:688.485000px;}
.x18_c00128{left:716.220000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.v1_c00128{vertical-align:21.678933pt;}
.ls5a_c00128{letter-spacing:-2.501333pt;}
.ls60_c00128{letter-spacing:-2.389333pt;}
.ls55_c00128{letter-spacing:-2.277333pt;}
.ls5f_c00128{letter-spacing:-2.165333pt;}
.ls6d_c00128{letter-spacing:-2.109333pt;}
.ls78_c00128{letter-spacing:-1.985920pt;}
.ls86_c00128{letter-spacing:-1.899307pt;}
.ls7d_c00128{letter-spacing:-1.843627pt;}
.ls95_c00128{letter-spacing:-1.773333pt;}
.ls6f_c00128{letter-spacing:-1.676587pt;}
.ls5b_c00128{letter-spacing:-1.466240pt;}
.ls7c_c00128{letter-spacing:-1.336320pt;}
.ls7b_c00128{letter-spacing:-1.150720pt;}
.ls87_c00128{letter-spacing:-1.101227pt;}
.ls8e_c00128{letter-spacing:-1.088853pt;}
.ls69_c00128{letter-spacing:-1.082667pt;}
.ls89_c00128{letter-spacing:-1.070293pt;}
.ls64_c00128{letter-spacing:-1.039360pt;}
.ls72_c00128{letter-spacing:-0.983680pt;}
.ls6b_c00128{letter-spacing:-0.909440pt;}
.ls8b_c00128{letter-spacing:-0.878507pt;}
.ls83_c00128{letter-spacing:-0.785707pt;}
.ls81_c00128{letter-spacing:-0.736213pt;}
.ls8a_c00128{letter-spacing:-0.661973pt;}
.ls75_c00128{letter-spacing:-0.655787pt;}
.ls88_c00128{letter-spacing:-0.618667pt;}
.ls80_c00128{letter-spacing:-0.600107pt;}
.ls58_c00128{letter-spacing:-0.550613pt;}
.ls8c_c00128{letter-spacing:-0.532053pt;}
.ls5d_c00128{letter-spacing:-0.501120pt;}
.ls94_c00128{letter-spacing:-0.464000pt;}
.ls7f_c00128{letter-spacing:-0.457813pt;}
.ls7a_c00128{letter-spacing:-0.439253pt;}
.ls77_c00128{letter-spacing:-0.433067pt;}
.ls7e_c00128{letter-spacing:-0.414507pt;}
.ls82_c00128{letter-spacing:-0.402133pt;}
.ls93_c00128{letter-spacing:-0.389760pt;}
.ls5e_c00128{letter-spacing:-0.365013pt;}
.ls68_c00128{letter-spacing:-0.352640pt;}
.ls8f_c00128{letter-spacing:-0.346453pt;}
.ls70_c00128{letter-spacing:-0.340267pt;}
.ls66_c00128{letter-spacing:-0.278400pt;}
.ls79_c00128{letter-spacing:-0.259840pt;}
.ls73_c00128{letter-spacing:-0.204160pt;}
.ls56_c00128{letter-spacing:-0.185600pt;}
.ls57_c00128{letter-spacing:-0.173227pt;}
.ls76_c00128{letter-spacing:-0.167040pt;}
.ls74_c00128{letter-spacing:-0.160853pt;}
.ls5c_c00128{letter-spacing:-0.142293pt;}
.ls65_c00128{letter-spacing:-0.136107pt;}
.ls62_c00128{letter-spacing:-0.117547pt;}
.ls6a_c00128{letter-spacing:-0.111360pt;}
.ls90_c00128{letter-spacing:-0.098987pt;}
.ls85_c00128{letter-spacing:-0.092800pt;}
.ls67_c00128{letter-spacing:-0.080427pt;}
.ls6e_c00128{letter-spacing:-0.049493pt;}
.ls92_c00128{letter-spacing:-0.043307pt;}
.ls8d_c00128{letter-spacing:-0.030933pt;}
.ls61_c00128{letter-spacing:-0.024747pt;}
.ls59_c00128{letter-spacing:-0.012373pt;}
.ls6c_c00128{letter-spacing:0.000000pt;}
.ls2_c00128{letter-spacing:0.006187pt;}
.ls31_c00128{letter-spacing:0.012373pt;}
.ls2f_c00128{letter-spacing:0.024747pt;}
.ls3f_c00128{letter-spacing:0.030933pt;}
.ls1d_c00128{letter-spacing:0.049493pt;}
.ls71_c00128{letter-spacing:0.055680pt;}
.lsd_c00128{letter-spacing:0.068053pt;}
.ls37_c00128{letter-spacing:0.080427pt;}
.ls4_c00128{letter-spacing:0.086613pt;}
.ls12_c00128{letter-spacing:0.117547pt;}
.lsb_c00128{letter-spacing:0.123733pt;}
.ls84_c00128{letter-spacing:0.185600pt;}
.lse_c00128{letter-spacing:0.191787pt;}
.ls18_c00128{letter-spacing:0.197973pt;}
.ls8_c00128{letter-spacing:0.204160pt;}
.ls5_c00128{letter-spacing:0.210347pt;}
.ls10_c00128{letter-spacing:0.216533pt;}
.ls3d_c00128{letter-spacing:0.222720pt;}
.ls2b_c00128{letter-spacing:0.228907pt;}
.ls1a_c00128{letter-spacing:0.247467pt;}
.ls4b_c00128{letter-spacing:0.253653pt;}
.ls38_c00128{letter-spacing:0.259840pt;}
.ls1c_c00128{letter-spacing:0.266027pt;}
.ls32_c00128{letter-spacing:0.272213pt;}
.ls1_c00128{letter-spacing:0.284587pt;}
.ls3_c00128{letter-spacing:0.290773pt;}
.ls1b_c00128{letter-spacing:0.303147pt;}
.ls63_c00128{letter-spacing:0.309333pt;}
.ls36_c00128{letter-spacing:0.315520pt;}
.ls91_c00128{letter-spacing:0.321707pt;}
.ls46_c00128{letter-spacing:0.340267pt;}
.ls47_c00128{letter-spacing:0.352640pt;}
.ls2e_c00128{letter-spacing:0.365013pt;}
.ls52_c00128{letter-spacing:0.371200pt;}
.ls0_c00128{letter-spacing:0.389760pt;}
.ls19_c00128{letter-spacing:0.402133pt;}
.ls14_c00128{letter-spacing:0.408320pt;}
.ls3c_c00128{letter-spacing:0.414507pt;}
.ls42_c00128{letter-spacing:0.420693pt;}
.ls13_c00128{letter-spacing:0.426880pt;}
.ls25_c00128{letter-spacing:0.445440pt;}
.ls1f_c00128{letter-spacing:0.457813pt;}
.lsc_c00128{letter-spacing:0.482560pt;}
.ls23_c00128{letter-spacing:0.494933pt;}
.ls48_c00128{letter-spacing:0.519680pt;}
.ls16_c00128{letter-spacing:0.532053pt;}
.ls50_c00128{letter-spacing:0.550613pt;}
.ls51_c00128{letter-spacing:0.569173pt;}
.ls2a_c00128{letter-spacing:0.575360pt;}
.ls26_c00128{letter-spacing:0.581547pt;}
.ls4f_c00128{letter-spacing:0.593920pt;}
.ls4e_c00128{letter-spacing:0.649600pt;}
.ls45_c00128{letter-spacing:0.674347pt;}
.ls22_c00128{letter-spacing:0.681013pt;}
.ls33_c00128{letter-spacing:0.686720pt;}
.ls28_c00128{letter-spacing:0.705280pt;}
.ls20_c00128{letter-spacing:0.711467pt;}
.ls35_c00128{letter-spacing:0.759360pt;}
.ls44_c00128{letter-spacing:0.773333pt;}
.lsf_c00128{letter-spacing:0.785707pt;}
.ls1e_c00128{letter-spacing:0.829013pt;}
.ls9_c00128{letter-spacing:0.831680pt;}
.ls49_c00128{letter-spacing:0.847573pt;}
.ls3b_c00128{letter-spacing:0.855787pt;}
.ls15_c00128{letter-spacing:0.940160pt;}
.ls30_c00128{letter-spacing:0.958933pt;}
.ls54_c00128{letter-spacing:0.971307pt;}
.ls43_c00128{letter-spacing:1.012480pt;}
.ls41_c00128{letter-spacing:1.018507pt;}
.ls3e_c00128{letter-spacing:1.030560pt;}
.ls4c_c00128{letter-spacing:1.076480pt;}
.ls6_c00128{letter-spacing:1.102880pt;}
.ls3a_c00128{letter-spacing:1.139040pt;}
.ls40_c00128{letter-spacing:1.151093pt;}
.ls21_c00128{letter-spacing:1.157120pt;}
.ls24_c00128{letter-spacing:1.243520pt;}
.ls4a_c00128{letter-spacing:1.299200pt;}
.ls2d_c00128{letter-spacing:1.337920pt;}
.ls17_c00128{letter-spacing:1.429120pt;}
.ls29_c00128{letter-spacing:1.453867pt;}
.ls7_c00128{letter-spacing:1.515733pt;}
.ls34_c00128{letter-spacing:1.548853pt;}
.ls39_c00128{letter-spacing:1.627200pt;}
.ls11_c00128{letter-spacing:1.763200pt;}
.ls53_c00128{letter-spacing:1.924053pt;}
.ls4d_c00128{letter-spacing:2.171520pt;}
.ls2c_c00128{letter-spacing:2.290133pt;}
.ls27_c00128{letter-spacing:2.567467pt;}
.lsa_c00128{letter-spacing:2.796373pt;}
.ws2_c00128{word-spacing:-14.557227pt;}
.ws6_c00128{word-spacing:0.000000pt;}
.ws3_c00128{word-spacing:6.080533pt;}
.ws4_c00128{word-spacing:11.572320pt;}
.ws1_c00128{word-spacing:15.332800pt;}
.ws0_c00128{word-spacing:15.339947pt;}
.ws5_c00128{word-spacing:16.506347pt;}
._12_c00128{margin-left:-5.858187pt;}
._c_c00128{margin-left:-4.918400pt;}
._b_c00128{margin-left:-2.938667pt;}
._a_c00128{margin-left:-1.187840pt;}
._d_c00128{width:1.014613pt;}
._4_c00128{width:1.936427pt;}
._9_c00128{width:3.334613pt;}
._f_c00128{width:4.832000pt;}
._11_c00128{width:5.767253pt;}
._e_c00128{width:7.058347pt;}
._6_c00128{width:8.009813pt;}
._8_c00128{width:10.022400pt;}
._7_c00128{width:10.931840pt;}
._10_c00128{width:11.936533pt;}
._0_c00128{width:13.004373pt;}
._3_c00128{width:14.260267pt;}
._1_c00128{width:16.580267pt;}
._2_c00128{width:18.720853pt;}
._5_c00128{width:20.856960pt;}
._13_c00128{width:45.155840pt;}
.fs5_c00128{font-size:28.800533pt;}
.fs6_c00128{font-size:50.666667pt;}
.fs3_c00128{font-size:60.266667pt;}
.fs1_c00128{font-size:61.866667pt;}
.fs0_c00128{font-size:65.066667pt;}
.fs4_c00128{font-size:68.266667pt;}
.fs2_c00128{font-size:71.466667pt;}
.y0_c00128{bottom:0.000000pt;}
.y1f_c00128{bottom:66.560000pt;}
.y1e_c00128{bottom:133.115200pt;}
.y1c_c00128{bottom:161.267200pt;}
.y1d_c00128{bottom:161.280000pt;}
.y1b_c00128{bottom:189.447467pt;}
.y1a_c00128{bottom:216.653333pt;}
.y19_c00128{bottom:244.493333pt;}
.y18_c00128{bottom:272.333333pt;}
.y17_c00128{bottom:328.333333pt;}
.y16_c00128{bottom:356.173333pt;}
.y15_c00128{bottom:384.000000pt;}
.y14_c00128{bottom:411.853333pt;}
.y13_c00128{bottom:440.000000pt;}
.y11_c00128{bottom:495.688533pt;}
.y12_c00128{bottom:495.693333pt;}
.yf_c00128{bottom:551.688533pt;}
.y10_c00128{bottom:551.693333pt;}
.ye_c00128{bottom:579.853333pt;}
.yd_c00128{bottom:635.860267pt;}
.yc_c00128{bottom:663.360000pt;}
.yb_c00128{bottom:719.373333pt;}
.ya_c00128{bottom:747.213333pt;}
.y9_c00128{bottom:803.213333pt;}
.y8_c00128{bottom:803.220267pt;}
.y7_c00128{bottom:830.720000pt;}
.y6_c00128{bottom:887.053333pt;}
.y5_c00128{bottom:887.060267pt;}
.y4_c00128{bottom:914.560000pt;}
.y3_c00128{bottom:970.884800pt;}
.y2_c00128{bottom:998.400000pt;}
.y1_c00128{bottom:1066.240000pt;}
.h7_c00128{height:52.843750pt;}
.h3_c00128{height:60.718750pt;}
.h6_c00128{height:62.856250pt;}
.h2_c00128{height:63.859375pt;}
.h5_c00128{height:67.000000pt;}
.h4_c00128{height:70.140625pt;}
.h1_c00128{height:1122.666667pt;}
.h0_c00128{height:1122.880000pt;}
.w1_c00128{width:793.333333pt;}
.w0_c00128{width:793.600000pt;}
.x0_c00128{left:0.000000pt;}
.x1d_c00128{left:106.600000pt;}
.xe_c00128{left:109.077333pt;}
.x9_c00128{left:111.011200pt;}
.x2_c00128{left:112.173333pt;}
.x1_c00128{left:113.213333pt;}
.x1c_c00128{left:155.026667pt;}
.x14_c00128{left:156.419733pt;}
.xd_c00128{left:157.586667pt;}
.xc_c00128{left:158.520000pt;}
.x5_c00128{left:159.506667pt;}
.xa_c00128{left:167.733333pt;}
.xb_c00128{left:187.466667pt;}
.x11_c00128{left:204.946667pt;}
.x12_c00128{left:209.106667pt;}
.x13_c00128{left:233.706667pt;}
.xf_c00128{left:298.400000pt;}
.x10_c00128{left:313.213333pt;}
.x15_c00128{left:352.026667pt;}
.x1e_c00128{left:368.573333pt;}
.x16_c00128{left:371.733333pt;}
.x20_c00128{left:378.173333pt;}
.x1f_c00128{left:392.893333pt;}
.x1a_c00128{left:410.120000pt;}
.x1b_c00128{left:434.346667pt;}
.x6_c00128{left:471.413333pt;}
.x7_c00128{left:495.293333pt;}
.x8_c00128{left:527.853333pt;}
.x3_c00128{left:566.013333pt;}
.x19_c00128{left:579.013333pt;}
.x4_c00128{left:593.186667pt;}
.x17_c00128{left:611.986667pt;}
.x18_c00128{left:636.640000pt;}
}





/* 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_c00129 {
    display:none;
  }
  .loading-indicator_c00129.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00129 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_c00129 { 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_c00129" -> "#page-container .classname_c00129")
 */
.pf_c00129 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00129 { /* 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_c00129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00129 { /* 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_c00129 { /* 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_c00129 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00129 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00129 {overflow:visible;}
  }
}
.c_c00129 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00129 { /* 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_c00129:after { /* webkit #35443 */
  content: '';
}
.t_c00129:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00129 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 */
}
.__c00129 { /* 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_c00129 { /* info for Javascript */
  display:none;
}
.l_c00129 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00129 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00129 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00129: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_c00129 {
    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_c00129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00129.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_c00129 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00129;src:url('chunks/assets/font_c9adbdfa058104eed261e160.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.284668;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_c00129;src:url('chunks/assets/font_d9514c29d8f374a93de939fd.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.284180;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_c00129;src:url('chunks/assets/font_a0a42e45231d40611b9c8a8c.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;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:ff4_c00129;src:url('chunks/assets/font_cf8da444f19656eda844eddc.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;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:ff5_c00129;src:url('chunks/assets/font_cf7c1f3659a79598e961a1fe.woff2')format("woff");}.ff5_c00129{font-family:ff5_c00129;line-height:0.666000;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;}
.m11_c00129{transform:matrix(0.175245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175245,0.000000,0.000000,0.250000,0,0);}
.m6_c00129{transform:matrix(0.204188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204188,0.000000,0.000000,0.250000,0,0);}
.md_c00129{transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);}
.mb_c00129{transform:matrix(0.228122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228122,0.000000,0.000000,0.250000,0,0);}
.m5_c00129{transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);}
.m17_c00129{transform:matrix(0.239219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239219,0.000000,0.000000,0.250000,0,0);}
.me_c00129{transform:matrix(0.241011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241011,0.000000,0.000000,0.250000,0,0);}
.m16_c00129{transform:matrix(0.242543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242543,0.000000,0.000000,0.250000,0,0);}
.m2_c00129{transform:matrix(0.242732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242732,0.000000,0.000000,0.250000,0,0);}
.ma_c00129{transform:matrix(0.242780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242780,0.000000,0.000000,0.250000,0,0);}
.mf_c00129{transform:matrix(0.243704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243704,0.000000,0.000000,0.250000,0,0);}
.m13_c00129{transform:matrix(0.246063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246063,0.000000,0.000000,0.250000,0,0);}
.m14_c00129{transform:matrix(0.246203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246203,0.000000,0.000000,0.250000,0,0);}
.m4_c00129{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m9_c00129{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m10_c00129{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.mc_c00129{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m3_c00129{transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);}
.m15_c00129{transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);}
.m1_c00129{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);}
.m8_c00129{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m0_c00129{transform:matrix(0.254729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254729,0.000000,0.000000,0.250000,0,0);}
.m7_c00129{transform:matrix(0.257781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257781,0.000000,0.000000,0.250000,0,0);}
.m12_c00129{transform:matrix(0.264651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264651,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls71_c00129{letter-spacing:-2.688000px;}
.lsa8_c00129{letter-spacing:-2.667000px;}
.ls89_c00129{letter-spacing:-2.583000px;}
.ls8b_c00129{letter-spacing:-2.541000px;}
.ls8c_c00129{letter-spacing:-2.511960px;}
.ls84_c00129{letter-spacing:-2.415000px;}
.ls6c_c00129{letter-spacing:-2.394000px;}
.ls64_c00129{letter-spacing:-2.373000px;}
.lsaa_c00129{letter-spacing:-2.352240px;}
.ls6e_c00129{letter-spacing:-2.171280px;}
.ls8f_c00129{letter-spacing:-2.168280px;}
.ls76_c00129{letter-spacing:-2.127240px;}
.ls99_c00129{letter-spacing:-2.099880px;}
.ls95_c00129{letter-spacing:-2.079360px;}
.lsad_c00129{letter-spacing:-2.016000px;}
.lsa9_c00129{letter-spacing:-1.981980px;}
.ls8a_c00129{letter-spacing:-1.800480px;}
.ls97_c00129{letter-spacing:-1.682640px;}
.ls9a_c00129{letter-spacing:-1.566360px;}
.lsa5_c00129{letter-spacing:-1.544400px;}
.ls96_c00129{letter-spacing:-1.477440px;}
.ls90_c00129{letter-spacing:-1.313280px;}
.ls8e_c00129{letter-spacing:-1.292760px;}
.ls94_c00129{letter-spacing:-1.080720px;}
.ls9d_c00129{letter-spacing:-1.067040px;}
.ls72_c00129{letter-spacing:-0.868680px;}
.ls7b_c00129{letter-spacing:-0.800280px;}
.lsa4_c00129{letter-spacing:-0.732600px;}
.ls7c_c00129{letter-spacing:-0.697680px;}
.ls70_c00129{letter-spacing:-0.690840px;}
.ls68_c00129{letter-spacing:-0.684000px;}
.ls85_c00129{letter-spacing:-0.663480px;}
.lsab_c00129{letter-spacing:-0.642960px;}
.ls77_c00129{letter-spacing:-0.615600px;}
.ls91_c00129{letter-spacing:-0.588240px;}
.ls88_c00129{letter-spacing:-0.583020px;}
.lsac_c00129{letter-spacing:-0.560880px;}
.ls98_c00129{letter-spacing:-0.533520px;}
.ls78_c00129{letter-spacing:-0.526680px;}
.ls73_c00129{letter-spacing:-0.478800px;}
.ls9f_c00129{letter-spacing:-0.471960px;}
.ls93_c00129{letter-spacing:-0.465120px;}
.ls6d_c00129{letter-spacing:-0.458280px;}
.ls7a_c00129{letter-spacing:-0.403560px;}
.ls9c_c00129{letter-spacing:-0.396720px;}
.ls86_c00129{letter-spacing:-0.376200px;}
.ls9b_c00129{letter-spacing:-0.342000px;}
.ls92_c00129{letter-spacing:-0.307800px;}
.lsa0_c00129{letter-spacing:-0.191520px;}
.lsa3_c00129{letter-spacing:-0.178200px;}
.ls75_c00129{letter-spacing:-0.177840px;}
.ls9e_c00129{letter-spacing:-0.171000px;}
.ls81_c00129{letter-spacing:-0.143640px;}
.ls82_c00129{letter-spacing:-0.129960px;}
.lsa2_c00129{letter-spacing:-0.118800px;}
.ls8d_c00129{letter-spacing:-0.102600px;}
.ls87_c00129{letter-spacing:-0.068400px;}
.ls67_c00129{letter-spacing:-0.041040px;}
.ls69_c00129{letter-spacing:-0.013680px;}
.ls74_c00129{letter-spacing:0.000000px;}
.ls27_c00129{letter-spacing:0.006840px;}
.ls45_c00129{letter-spacing:0.013680px;}
.ls53_c00129{letter-spacing:0.020520px;}
.ls2c_c00129{letter-spacing:0.027360px;}
.ls37_c00129{letter-spacing:0.041040px;}
.ls60_c00129{letter-spacing:0.047880px;}
.ls50_c00129{letter-spacing:0.082080px;}
.ls14_c00129{letter-spacing:0.095760px;}
.ls2a_c00129{letter-spacing:0.129960px;}
.ls38_c00129{letter-spacing:0.136800px;}
.ls24_c00129{letter-spacing:0.143640px;}
.ls1e_c00129{letter-spacing:0.164160px;}
.ls2b_c00129{letter-spacing:0.184680px;}
.ls79_c00129{letter-spacing:0.191520px;}
.ls65_c00129{letter-spacing:0.191580px;}
.ls7f_c00129{letter-spacing:0.198360px;}
.ls3b_c00129{letter-spacing:0.218880px;}
.ls44_c00129{letter-spacing:0.225720px;}
.ls83_c00129{letter-spacing:0.239400px;}
.ls2d_c00129{letter-spacing:0.246240px;}
.ls19_c00129{letter-spacing:0.250860px;}
.ls10_c00129{letter-spacing:0.253080px;}
.ls23_c00129{letter-spacing:0.266760px;}
.ls7_c00129{letter-spacing:0.273600px;}
.ls7d_c00129{letter-spacing:0.307800px;}
.ls5e_c00129{letter-spacing:0.335160px;}
.ls35_c00129{letter-spacing:0.342000px;}
.ls15_c00129{letter-spacing:0.348840px;}
.ls59_c00129{letter-spacing:0.355680px;}
.ls49_c00129{letter-spacing:0.362520px;}
.ls18_c00129{letter-spacing:0.369360px;}
.ls3c_c00129{letter-spacing:0.376200px;}
.ls39_c00129{letter-spacing:0.396720px;}
.ls16_c00129{letter-spacing:0.403560px;}
.ls36_c00129{letter-spacing:0.410400px;}
.ls3_c00129{letter-spacing:0.430920px;}
.ls25_c00129{letter-spacing:0.437760px;}
.ls80_c00129{letter-spacing:0.447480px;}
.lsd_c00129{letter-spacing:0.451440px;}
.ls2e_c00129{letter-spacing:0.458280px;}
.ls3f_c00129{letter-spacing:0.471960px;}
.ls4b_c00129{letter-spacing:0.478800px;}
.ls4a_c00129{letter-spacing:0.485640px;}
.ls1a_c00129{letter-spacing:0.492480px;}
.ls55_c00129{letter-spacing:0.506160px;}
.ls1f_c00129{letter-spacing:0.519840px;}
.ls17_c00129{letter-spacing:0.526680px;}
.ls5b_c00129{letter-spacing:0.528000px;}
.ls57_c00129{letter-spacing:0.549180px;}
.ls42_c00129{letter-spacing:0.574560px;}
.ls21_c00129{letter-spacing:0.576300px;}
.ls41_c00129{letter-spacing:0.581400px;}
.ls3a_c00129{letter-spacing:0.583080px;}
.lsc_c00129{letter-spacing:0.588240px;}
.ls2f_c00129{letter-spacing:0.595080px;}
.ls62_c00129{letter-spacing:0.608760px;}
.lse_c00129{letter-spacing:0.615600px;}
.ls58_c00129{letter-spacing:0.629280px;}
.ls46_c00129{letter-spacing:0.636120px;}
.ls6f_c00129{letter-spacing:0.649800px;}
.ls48_c00129{letter-spacing:0.677160px;}
.ls5_c00129{letter-spacing:0.690840px;}
.ls2_c00129{letter-spacing:0.697680px;}
.ls52_c00129{letter-spacing:0.705120px;}
.ls43_c00129{letter-spacing:0.711360px;}
.ls20_c00129{letter-spacing:0.718200px;}
.ls31_c00129{letter-spacing:0.725460px;}
.ls1d_c00129{letter-spacing:0.731880px;}
.ls28_c00129{letter-spacing:0.738720px;}
.ls1_c00129{letter-spacing:0.739020px;}
.ls11_c00129{letter-spacing:0.752400px;}
.ls33_c00129{letter-spacing:0.759240px;}
.ls12_c00129{letter-spacing:0.772920px;}
.ls30_c00129{letter-spacing:0.779760px;}
.ls56_c00129{letter-spacing:0.800040px;}
.ls6b_c00129{letter-spacing:0.806820px;}
.ls4e_c00129{letter-spacing:0.813600px;}
.lsa6_c00129{letter-spacing:0.831600px;}
.ls0_c00129{letter-spacing:0.833940px;}
.ls4c_c00129{letter-spacing:0.861840px;}
.ls5d_c00129{letter-spacing:0.894960px;}
.lsb_c00129{letter-spacing:0.896040px;}
.ls13_c00129{letter-spacing:0.916560px;}
.ls32_c00129{letter-spacing:0.930240px;}
.ls4_c00129{letter-spacing:0.962760px;}
.lsf_c00129{letter-spacing:0.964440px;}
.ls4f_c00129{letter-spacing:0.976320px;}
.ls4d_c00129{letter-spacing:0.991800px;}
.ls1c_c00129{letter-spacing:1.003440px;}
.ls26_c00129{letter-spacing:1.012320px;}
.ls54_c00129{letter-spacing:1.032840px;}
.ls51_c00129{letter-spacing:1.098360px;}
.ls3e_c00129{letter-spacing:1.142280px;}
.ls5f_c00129{letter-spacing:1.272240px;}
.ls61_c00129{letter-spacing:1.320120px;}
.ls22_c00129{letter-spacing:1.333800px;}
.ls3d_c00129{letter-spacing:1.347480px;}
.ls5c_c00129{letter-spacing:1.353000px;}
.lsa_c00129{letter-spacing:1.402200px;}
.ls8_c00129{letter-spacing:1.586520px;}
.ls29_c00129{letter-spacing:1.627920px;}
.ls9_c00129{letter-spacing:1.648440px;}
.ls66_c00129{letter-spacing:1.737360px;}
.ls34_c00129{letter-spacing:1.757880px;}
.ls6_c00129{letter-spacing:1.792080px;}
.ls47_c00129{letter-spacing:1.826280px;}
.lsa1_c00129{letter-spacing:2.164320px;}
.ls5a_c00129{letter-spacing:2.313360px;}
.ls1b_c00129{letter-spacing:2.387160px;}
.ls40_c00129{letter-spacing:2.715480px;}
.lsa7_c00129{letter-spacing:2.730000px;}
.ls63_c00129{letter-spacing:2.880000px;}
.ls6a_c00129{letter-spacing:3.091680px;}
.ls7e_c00129{letter-spacing:3.420000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{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__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00129{word-spacing:-1.352160px;}
.ws5_c00129{word-spacing:0.000000px;}
.ws2_c00129{word-spacing:4.762800px;}
.ws3_c00129{word-spacing:6.063900px;}
.ws0_c00129{word-spacing:18.249120px;}
.ws4_c00129{word-spacing:23.426760px;}
._15_c00129{margin-left:-16.552800px;}
._b_c00129{margin-left:-5.451480px;}
._7_c00129{margin-left:-4.309200px;}
._c_c00129{margin-left:-2.770200px;}
._8_c00129{margin-left:-1.641600px;}
._9_c00129{width:1.046520px;}
._a_c00129{width:2.400840px;}
._3_c00129{width:3.556800px;}
._5_c00129{width:4.623840px;}
._6_c00129{width:6.374880px;}
._13_c00129{width:7.407720px;}
._4_c00129{width:9.933000px;}
._14_c00129{width:11.141040px;}
._2_c00129{width:14.299560px;}
._0_c00129{width:16.730580px;}
._1_c00129{width:19.165680px;}
._19_c00129{width:20.567880px;}
._16_c00129{width:21.621240px;}
._1a_c00129{width:23.782680px;}
._17_c00129{width:24.842880px;}
._10_c00129{width:25.937280px;}
._18_c00129{width:27.086400px;}
._f_c00129{width:28.454400px;}
._d_c00129{width:31.381920px;}
._e_c00129{width:33.707520px;}
._12_c00129{width:35.267040px;}
._11_c00129{width:37.920960px;}
.fc0_c00129{color:transparent;}
.fsa_c00129{font-size:48.960000px;}
.fsd_c00129{font-size:54.600000px;}
.fs0_c00129{font-size:57.600000px;}
.fs3_c00129{font-size:61.800000px;}
.fs9_c00129{font-size:64.800000px;}
.fs4_c00129{font-size:65.400000px;}
.fsb_c00129{font-size:66.000000px;}
.fs1_c00129{font-size:67.800000px;}
.fs2_c00129{font-size:68.400000px;}
.fs6_c00129{font-size:69.000000px;}
.fs8_c00129{font-size:72.600000px;}
.fsc_c00129{font-size:73.200000px;}
.fs7_c00129{font-size:73.800000px;}
.fse_c00129{font-size:76.200000px;}
.fs5_c00129{font-size:76.800000px;}
.y0_c00129{bottom:0.000000px;}
.y20_c00129{bottom:74.895015px;}
.y1f_c00129{bottom:151.560015px;}
.y1e_c00129{bottom:213.495015px;}
.y1d_c00129{bottom:245.535015px;}
.y1c_c00129{bottom:275.775015px;}
.y1b_c00129{bottom:307.455015px;}
.y1a_c00129{bottom:338.400015px;}
.y19_c00129{bottom:401.047815px;}
.y18_c00129{bottom:432.375015px;}
.y17_c00129{bottom:432.378615px;}
.y16_c00129{bottom:495.375015px;}
.y15_c00129{bottom:526.335015px;}
.y14_c00129{bottom:589.680015px;}
.y13_c00129{bottom:589.686915px;}
.y22_c00129{bottom:615.255015px;}
.y21_c00129{bottom:618.840015px;}
.y11_c00129{bottom:620.649015px;}
.y12_c00129{bottom:620.655015px;}
.y10_c00129{bottom:651.600015px;}
.yf_c00129{bottom:714.247815px;}
.ye_c00129{bottom:745.575015px;}
.yd_c00129{bottom:808.207815px;}
.yc_c00129{bottom:839.527815px;}
.yb_c00129{bottom:870.855015px;}
.ya_c00129{bottom:932.760015px;}
.y9_c00129{bottom:932.760915px;}
.y7_c00129{bottom:996.112815px;}
.y8_c00129{bottom:996.120015px;}
.y6_c00129{bottom:1027.440015px;}
.y5_c00129{bottom:1058.760015px;}
.y4_c00129{bottom:1058.767815px;}
.y3_c00129{bottom:1090.095015px;}
.y2_c00129{bottom:1121.400015px;}
.y1_c00129{bottom:1195.920015px;}
.he_c00129{height:32.607360px;}
.h11_c00129{height:53.586914px;}
.h2_c00129{height:56.531250px;}
.hd_c00129{height:63.566016px;}
.hf_c00129{height:64.775391px;}
.h4_c00129{height:66.508887px;}
.h7_c00129{height:67.127259px;}
.h3_c00129{height:67.130859px;}
.h9_c00129{height:67.159659px;}
.h5_c00129{height:68.210156px;}
.h14_c00129{height:68.835938px;}
.h6_c00129{height:70.713281px;}
.hc_c00129{height:71.252930px;}
.h10_c00129{height:71.841797px;}
.ha_c00129{height:71.964844px;}
.hb_c00129{height:72.394629px;}
.h12_c00129{height:74.748926px;}
.h8_c00129{height:75.375000px;}
.h13_c00129{height:80.100000px;}
.h1_c00129{height:1263.000000px;}
.h0_c00129{height:1263.240015px;}
.w1_c00129{width:892.500000px;}
.w0_c00129{width:892.800000px;}
.x0_c00129{left:0.000000px;}
.x1_c00129{left:127.365000px;}
.xf_c00129{left:169.365000px;}
.x31_c00129{left:177.285000px;}
.x29_c00129{left:178.695000px;}
.x27_c00129{left:179.798100px;}
.x11_c00129{left:180.892950px;}
.x2_c00129{left:181.965000px;}
.x10_c00129{left:191.385000px;}
.x19_c00129{left:214.845000px;}
.x2c_c00129{left:220.860000px;}
.x5_c00129{left:225.525000px;}
.x6_c00129{left:247.530000px;}
.x9_c00129{left:251.445000px;}
.x1e_c00129{left:257.205000px;}
.xa_c00129{left:273.825000px;}
.x1a_c00129{left:275.940000px;}
.x1b_c00129{left:293.325000px;}
.x1c_c00129{left:296.190000px;}
.x17_c00129{left:300.870000px;}
.x2d_c00129{left:303.390000px;}
.x1d_c00129{left:318.780000px;}
.x18_c00129{left:325.620000px;}
.x2a_c00129{left:338.775000px;}
.x1f_c00129{left:342.495000px;}
.x22_c00129{left:354.045000px;}
.xb_c00129{left:369.480000px;}
.x2e_c00129{left:380.430000px;}
.x23_c00129{left:381.765000px;}
.x2b_c00129{left:396.150000px;}
.x12_c00129{left:398.790000px;}
.xc_c00129{left:417.360000px;}
.x32_c00129{left:426.480000px;}
.x13_c00129{left:430.035000px;}
.x2f_c00129{left:437.850000px;}
.x30_c00129{left:487.110000px;}
.x20_c00129{left:503.910000px;}
.x3_c00129{left:520.710000px;}
.x4_c00129{left:547.425000px;}
.x21_c00129{left:586.890000px;}
.x24_c00129{left:631.740000px;}
.xd_c00129{left:633.030000px;}
.xe_c00129{left:653.250000px;}
.x25_c00129{left:654.510000px;}
.x28_c00129{left:657.540000px;}
.x7_c00129{left:664.710000px;}
.x14_c00129{left:677.070000px;}
.x8_c00129{left:684.930000px;}
.x15_c00129{left:700.635000px;}
.x26_c00129{left:703.725000px;}
.x16_c00129{left:736.755000px;}
.x34_c00129{left:855.495000px;}
.x33_c00129{left:856.545000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls71_c00129{letter-spacing:-2.389333pt;}
.lsa8_c00129{letter-spacing:-2.370667pt;}
.ls89_c00129{letter-spacing:-2.296000pt;}
.ls8b_c00129{letter-spacing:-2.258667pt;}
.ls8c_c00129{letter-spacing:-2.232853pt;}
.ls84_c00129{letter-spacing:-2.146667pt;}
.ls6c_c00129{letter-spacing:-2.128000pt;}
.ls64_c00129{letter-spacing:-2.109333pt;}
.lsaa_c00129{letter-spacing:-2.090880pt;}
.ls6e_c00129{letter-spacing:-1.930027pt;}
.ls8f_c00129{letter-spacing:-1.927360pt;}
.ls76_c00129{letter-spacing:-1.890880pt;}
.ls99_c00129{letter-spacing:-1.866560pt;}
.ls95_c00129{letter-spacing:-1.848320pt;}
.lsad_c00129{letter-spacing:-1.792000pt;}
.lsa9_c00129{letter-spacing:-1.761760pt;}
.ls8a_c00129{letter-spacing:-1.600427pt;}
.ls97_c00129{letter-spacing:-1.495680pt;}
.ls9a_c00129{letter-spacing:-1.392320pt;}
.lsa5_c00129{letter-spacing:-1.372800pt;}
.ls96_c00129{letter-spacing:-1.313280pt;}
.ls90_c00129{letter-spacing:-1.167360pt;}
.ls8e_c00129{letter-spacing:-1.149120pt;}
.ls94_c00129{letter-spacing:-0.960640pt;}
.ls9d_c00129{letter-spacing:-0.948480pt;}
.ls72_c00129{letter-spacing:-0.772160pt;}
.ls7b_c00129{letter-spacing:-0.711360pt;}
.lsa4_c00129{letter-spacing:-0.651200pt;}
.ls7c_c00129{letter-spacing:-0.620160pt;}
.ls70_c00129{letter-spacing:-0.614080pt;}
.ls68_c00129{letter-spacing:-0.608000pt;}
.ls85_c00129{letter-spacing:-0.589760pt;}
.lsab_c00129{letter-spacing:-0.571520pt;}
.ls77_c00129{letter-spacing:-0.547200pt;}
.ls91_c00129{letter-spacing:-0.522880pt;}
.ls88_c00129{letter-spacing:-0.518240pt;}
.lsac_c00129{letter-spacing:-0.498560pt;}
.ls98_c00129{letter-spacing:-0.474240pt;}
.ls78_c00129{letter-spacing:-0.468160pt;}
.ls73_c00129{letter-spacing:-0.425600pt;}
.ls9f_c00129{letter-spacing:-0.419520pt;}
.ls93_c00129{letter-spacing:-0.413440pt;}
.ls6d_c00129{letter-spacing:-0.407360pt;}
.ls7a_c00129{letter-spacing:-0.358720pt;}
.ls9c_c00129{letter-spacing:-0.352640pt;}
.ls86_c00129{letter-spacing:-0.334400pt;}
.ls9b_c00129{letter-spacing:-0.304000pt;}
.ls92_c00129{letter-spacing:-0.273600pt;}
.lsa0_c00129{letter-spacing:-0.170240pt;}
.lsa3_c00129{letter-spacing:-0.158400pt;}
.ls75_c00129{letter-spacing:-0.158080pt;}
.ls9e_c00129{letter-spacing:-0.152000pt;}
.ls81_c00129{letter-spacing:-0.127680pt;}
.ls82_c00129{letter-spacing:-0.115520pt;}
.lsa2_c00129{letter-spacing:-0.105600pt;}
.ls8d_c00129{letter-spacing:-0.091200pt;}
.ls87_c00129{letter-spacing:-0.060800pt;}
.ls67_c00129{letter-spacing:-0.036480pt;}
.ls69_c00129{letter-spacing:-0.012160pt;}
.ls74_c00129{letter-spacing:0.000000pt;}
.ls27_c00129{letter-spacing:0.006080pt;}
.ls45_c00129{letter-spacing:0.012160pt;}
.ls53_c00129{letter-spacing:0.018240pt;}
.ls2c_c00129{letter-spacing:0.024320pt;}
.ls37_c00129{letter-spacing:0.036480pt;}
.ls60_c00129{letter-spacing:0.042560pt;}
.ls50_c00129{letter-spacing:0.072960pt;}
.ls14_c00129{letter-spacing:0.085120pt;}
.ls2a_c00129{letter-spacing:0.115520pt;}
.ls38_c00129{letter-spacing:0.121600pt;}
.ls24_c00129{letter-spacing:0.127680pt;}
.ls1e_c00129{letter-spacing:0.145920pt;}
.ls2b_c00129{letter-spacing:0.164160pt;}
.ls79_c00129{letter-spacing:0.170240pt;}
.ls65_c00129{letter-spacing:0.170293pt;}
.ls7f_c00129{letter-spacing:0.176320pt;}
.ls3b_c00129{letter-spacing:0.194560pt;}
.ls44_c00129{letter-spacing:0.200640pt;}
.ls83_c00129{letter-spacing:0.212800pt;}
.ls2d_c00129{letter-spacing:0.218880pt;}
.ls19_c00129{letter-spacing:0.222987pt;}
.ls10_c00129{letter-spacing:0.224960pt;}
.ls23_c00129{letter-spacing:0.237120pt;}
.ls7_c00129{letter-spacing:0.243200pt;}
.ls7d_c00129{letter-spacing:0.273600pt;}
.ls5e_c00129{letter-spacing:0.297920pt;}
.ls35_c00129{letter-spacing:0.304000pt;}
.ls15_c00129{letter-spacing:0.310080pt;}
.ls59_c00129{letter-spacing:0.316160pt;}
.ls49_c00129{letter-spacing:0.322240pt;}
.ls18_c00129{letter-spacing:0.328320pt;}
.ls3c_c00129{letter-spacing:0.334400pt;}
.ls39_c00129{letter-spacing:0.352640pt;}
.ls16_c00129{letter-spacing:0.358720pt;}
.ls36_c00129{letter-spacing:0.364800pt;}
.ls3_c00129{letter-spacing:0.383040pt;}
.ls25_c00129{letter-spacing:0.389120pt;}
.ls80_c00129{letter-spacing:0.397760pt;}
.lsd_c00129{letter-spacing:0.401280pt;}
.ls2e_c00129{letter-spacing:0.407360pt;}
.ls3f_c00129{letter-spacing:0.419520pt;}
.ls4b_c00129{letter-spacing:0.425600pt;}
.ls4a_c00129{letter-spacing:0.431680pt;}
.ls1a_c00129{letter-spacing:0.437760pt;}
.ls55_c00129{letter-spacing:0.449920pt;}
.ls1f_c00129{letter-spacing:0.462080pt;}
.ls17_c00129{letter-spacing:0.468160pt;}
.ls5b_c00129{letter-spacing:0.469333pt;}
.ls57_c00129{letter-spacing:0.488160pt;}
.ls42_c00129{letter-spacing:0.510720pt;}
.ls21_c00129{letter-spacing:0.512267pt;}
.ls41_c00129{letter-spacing:0.516800pt;}
.ls3a_c00129{letter-spacing:0.518293pt;}
.lsc_c00129{letter-spacing:0.522880pt;}
.ls2f_c00129{letter-spacing:0.528960pt;}
.ls62_c00129{letter-spacing:0.541120pt;}
.lse_c00129{letter-spacing:0.547200pt;}
.ls58_c00129{letter-spacing:0.559360pt;}
.ls46_c00129{letter-spacing:0.565440pt;}
.ls6f_c00129{letter-spacing:0.577600pt;}
.ls48_c00129{letter-spacing:0.601920pt;}
.ls5_c00129{letter-spacing:0.614080pt;}
.ls2_c00129{letter-spacing:0.620160pt;}
.ls52_c00129{letter-spacing:0.626773pt;}
.ls43_c00129{letter-spacing:0.632320pt;}
.ls20_c00129{letter-spacing:0.638400pt;}
.ls31_c00129{letter-spacing:0.644853pt;}
.ls1d_c00129{letter-spacing:0.650560pt;}
.ls28_c00129{letter-spacing:0.656640pt;}
.ls1_c00129{letter-spacing:0.656907pt;}
.ls11_c00129{letter-spacing:0.668800pt;}
.ls33_c00129{letter-spacing:0.674880pt;}
.ls12_c00129{letter-spacing:0.687040pt;}
.ls30_c00129{letter-spacing:0.693120pt;}
.ls56_c00129{letter-spacing:0.711147pt;}
.ls6b_c00129{letter-spacing:0.717173pt;}
.ls4e_c00129{letter-spacing:0.723200pt;}
.lsa6_c00129{letter-spacing:0.739200pt;}
.ls0_c00129{letter-spacing:0.741280pt;}
.ls4c_c00129{letter-spacing:0.766080pt;}
.ls5d_c00129{letter-spacing:0.795520pt;}
.lsb_c00129{letter-spacing:0.796480pt;}
.ls13_c00129{letter-spacing:0.814720pt;}
.ls32_c00129{letter-spacing:0.826880pt;}
.ls4_c00129{letter-spacing:0.855787pt;}
.lsf_c00129{letter-spacing:0.857280pt;}
.ls4f_c00129{letter-spacing:0.867840pt;}
.ls4d_c00129{letter-spacing:0.881600pt;}
.ls1c_c00129{letter-spacing:0.891947pt;}
.ls26_c00129{letter-spacing:0.899840pt;}
.ls54_c00129{letter-spacing:0.918080pt;}
.ls51_c00129{letter-spacing:0.976320pt;}
.ls3e_c00129{letter-spacing:1.015360pt;}
.ls5f_c00129{letter-spacing:1.130880pt;}
.ls61_c00129{letter-spacing:1.173440pt;}
.ls22_c00129{letter-spacing:1.185600pt;}
.ls3d_c00129{letter-spacing:1.197760pt;}
.ls5c_c00129{letter-spacing:1.202667pt;}
.lsa_c00129{letter-spacing:1.246400pt;}
.ls8_c00129{letter-spacing:1.410240pt;}
.ls29_c00129{letter-spacing:1.447040pt;}
.ls9_c00129{letter-spacing:1.465280pt;}
.ls66_c00129{letter-spacing:1.544320pt;}
.ls34_c00129{letter-spacing:1.562560pt;}
.ls6_c00129{letter-spacing:1.592960pt;}
.ls47_c00129{letter-spacing:1.623360pt;}
.lsa1_c00129{letter-spacing:1.923840pt;}
.ls5a_c00129{letter-spacing:2.056320pt;}
.ls1b_c00129{letter-spacing:2.121920pt;}
.ls40_c00129{letter-spacing:2.413760pt;}
.lsa7_c00129{letter-spacing:2.426667pt;}
.ls63_c00129{letter-spacing:2.560000pt;}
.ls6a_c00129{letter-spacing:2.748160pt;}
.ls7e_c00129{letter-spacing:3.040000pt;}
.ws1_c00129{word-spacing:-1.201920pt;}
.ws5_c00129{word-spacing:0.000000pt;}
.ws2_c00129{word-spacing:4.233600pt;}
.ws3_c00129{word-spacing:5.390133pt;}
.ws0_c00129{word-spacing:16.221440pt;}
.ws4_c00129{word-spacing:20.823787pt;}
._15_c00129{margin-left:-14.713600pt;}
._b_c00129{margin-left:-4.845760pt;}
._7_c00129{margin-left:-3.830400pt;}
._c_c00129{margin-left:-2.462400pt;}
._8_c00129{margin-left:-1.459200pt;}
._9_c00129{width:0.930240pt;}
._a_c00129{width:2.134080pt;}
._3_c00129{width:3.161600pt;}
._5_c00129{width:4.110080pt;}
._6_c00129{width:5.666560pt;}
._13_c00129{width:6.584640pt;}
._4_c00129{width:8.829333pt;}
._14_c00129{width:9.903147pt;}
._2_c00129{width:12.710720pt;}
._0_c00129{width:14.871627pt;}
._1_c00129{width:17.036160pt;}
._19_c00129{width:18.282560pt;}
._16_c00129{width:19.218880pt;}
._1a_c00129{width:21.140160pt;}
._17_c00129{width:22.082560pt;}
._10_c00129{width:23.055360pt;}
._18_c00129{width:24.076800pt;}
._f_c00129{width:25.292800pt;}
._d_c00129{width:27.895040pt;}
._e_c00129{width:29.962240pt;}
._12_c00129{width:31.348480pt;}
._11_c00129{width:33.707520pt;}
.fsa_c00129{font-size:43.520000pt;}
.fsd_c00129{font-size:48.533333pt;}
.fs0_c00129{font-size:51.200000pt;}
.fs3_c00129{font-size:54.933333pt;}
.fs9_c00129{font-size:57.600000pt;}
.fs4_c00129{font-size:58.133333pt;}
.fsb_c00129{font-size:58.666667pt;}
.fs1_c00129{font-size:60.266667pt;}
.fs2_c00129{font-size:60.800000pt;}
.fs6_c00129{font-size:61.333333pt;}
.fs8_c00129{font-size:64.533333pt;}
.fsc_c00129{font-size:65.066667pt;}
.fs7_c00129{font-size:65.600000pt;}
.fse_c00129{font-size:67.733333pt;}
.fs5_c00129{font-size:68.266667pt;}
.y0_c00129{bottom:0.000000pt;}
.y20_c00129{bottom:66.573347pt;}
.y1f_c00129{bottom:134.720013pt;}
.y1e_c00129{bottom:189.773347pt;}
.y1d_c00129{bottom:218.253347pt;}
.y1c_c00129{bottom:245.133347pt;}
.y1b_c00129{bottom:273.293347pt;}
.y1a_c00129{bottom:300.800013pt;}
.y19_c00129{bottom:356.486947pt;}
.y18_c00129{bottom:384.333347pt;}
.y17_c00129{bottom:384.336547pt;}
.y16_c00129{bottom:440.333347pt;}
.y15_c00129{bottom:467.853347pt;}
.y14_c00129{bottom:524.160013pt;}
.y13_c00129{bottom:524.166147pt;}
.y22_c00129{bottom:546.893347pt;}
.y21_c00129{bottom:550.080013pt;}
.y11_c00129{bottom:551.688013pt;}
.y12_c00129{bottom:551.693347pt;}
.y10_c00129{bottom:579.200013pt;}
.yf_c00129{bottom:634.886947pt;}
.ye_c00129{bottom:662.733347pt;}
.yd_c00129{bottom:718.406947pt;}
.yc_c00129{bottom:746.246947pt;}
.yb_c00129{bottom:774.093347pt;}
.ya_c00129{bottom:829.120013pt;}
.y9_c00129{bottom:829.120813pt;}
.y7_c00129{bottom:885.433613pt;}
.y8_c00129{bottom:885.440013pt;}
.y6_c00129{bottom:913.280013pt;}
.y5_c00129{bottom:941.120013pt;}
.y4_c00129{bottom:941.126947pt;}
.y3_c00129{bottom:968.973347pt;}
.y2_c00129{bottom:996.800013pt;}
.y1_c00129{bottom:1063.040013pt;}
.he_c00129{height:28.984320pt;}
.h11_c00129{height:47.632812pt;}
.h2_c00129{height:50.250000pt;}
.hd_c00129{height:56.503125pt;}
.hf_c00129{height:57.578125pt;}
.h4_c00129{height:59.119010pt;}
.h7_c00129{height:59.668675pt;}
.h3_c00129{height:59.671875pt;}
.h9_c00129{height:59.697475pt;}
.h5_c00129{height:60.631250pt;}
.h14_c00129{height:61.187500pt;}
.h6_c00129{height:62.856250pt;}
.hc_c00129{height:63.335938pt;}
.h10_c00129{height:63.859375pt;}
.ha_c00129{height:63.968750pt;}
.hb_c00129{height:64.350781pt;}
.h12_c00129{height:66.443490pt;}
.h8_c00129{height:67.000000pt;}
.h13_c00129{height:71.200000pt;}
.h1_c00129{height:1122.666667pt;}
.h0_c00129{height:1122.880013pt;}
.w1_c00129{width:793.333333pt;}
.w0_c00129{width:793.600000pt;}
.x0_c00129{left:0.000000pt;}
.x1_c00129{left:113.213333pt;}
.xf_c00129{left:150.546667pt;}
.x31_c00129{left:157.586667pt;}
.x29_c00129{left:158.840000pt;}
.x27_c00129{left:159.820533pt;}
.x11_c00129{left:160.793733pt;}
.x2_c00129{left:161.746667pt;}
.x10_c00129{left:170.120000pt;}
.x19_c00129{left:190.973333pt;}
.x2c_c00129{left:196.320000pt;}
.x5_c00129{left:200.466667pt;}
.x6_c00129{left:220.026667pt;}
.x9_c00129{left:223.506667pt;}
.x1e_c00129{left:228.626667pt;}
.xa_c00129{left:243.400000pt;}
.x1a_c00129{left:245.280000pt;}
.x1b_c00129{left:260.733333pt;}
.x1c_c00129{left:263.280000pt;}
.x17_c00129{left:267.440000pt;}
.x2d_c00129{left:269.680000pt;}
.x1d_c00129{left:283.360000pt;}
.x18_c00129{left:289.440000pt;}
.x2a_c00129{left:301.133333pt;}
.x1f_c00129{left:304.440000pt;}
.x22_c00129{left:314.706667pt;}
.xb_c00129{left:328.426667pt;}
.x2e_c00129{left:338.160000pt;}
.x23_c00129{left:339.346667pt;}
.x2b_c00129{left:352.133333pt;}
.x12_c00129{left:354.480000pt;}
.xc_c00129{left:370.986667pt;}
.x32_c00129{left:379.093333pt;}
.x13_c00129{left:382.253333pt;}
.x2f_c00129{left:389.200000pt;}
.x30_c00129{left:432.986667pt;}
.x20_c00129{left:447.920000pt;}
.x3_c00129{left:462.853333pt;}
.x4_c00129{left:486.600000pt;}
.x21_c00129{left:521.680000pt;}
.x24_c00129{left:561.546667pt;}
.xd_c00129{left:562.693333pt;}
.xe_c00129{left:580.666667pt;}
.x25_c00129{left:581.786667pt;}
.x28_c00129{left:584.480000pt;}
.x7_c00129{left:590.853333pt;}
.x14_c00129{left:601.840000pt;}
.x8_c00129{left:608.826667pt;}
.x15_c00129{left:622.786667pt;}
.x26_c00129{left:625.533333pt;}
.x16_c00129{left:654.893333pt;}
.x34_c00129{left:760.440000pt;}
.x33_c00129{left:761.373333pt;}
}





/* 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_c00130 {
    display:none;
  }
  .loading-indicator_c00130.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00130 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_c00130 { 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_c00130" -> "#page-container .classname_c00130")
 */
.pf_c00130 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00130 { /* 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_c00130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00130 { /* 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_c00130 { /* 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_c00130 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00130 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00130 {overflow:visible;}
  }
}
.c_c00130 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00130 { /* 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_c00130:after { /* webkit #35443 */
  content: '';
}
.t_c00130:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00130 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 */
}
.__c00130 { /* 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_c00130 { /* info for Javascript */
  display:none;
}
.l_c00130 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00130 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00130 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00130: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_c00130 {
    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_c00130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00130.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_c00130 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00130;src:url('chunks/assets/font_b80cdc6fa2fd0e854878c223.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.284668;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_c00130;src:url('chunks/assets/font_b8b140e3d2453e3f2bcf4c6e.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.284180;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_c00130{transform:matrix(0.239277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239277,0.000000,0.000000,0.250000,0,0);}
.m5_c00130{transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);}
.m7_c00130{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m0_c00130{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);}
.m3_c00130{transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);}
.m1_c00130{transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);}
.md_c00130{transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);}
.m9_c00130{transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);}
.m2_c00130{transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);}
.m6_c00130{transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);}
.m8_c00130{transform:matrix(0.253438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253438,0.000000,0.000000,0.250000,0,0);}
.mb_c00130{transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);}
.ma_c00130{transform:matrix(0.255830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255830,0.000000,0.000000,0.250000,0,0);}
.mc_c00130{transform:matrix(0.256848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256848,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls88_c00130{letter-spacing:-2.688000px;}
.ls8f_c00130{letter-spacing:-2.478000px;}
.ls90_c00130{letter-spacing:-1.996560px;}
.ls9c_c00130{letter-spacing:-1.891620px;}
.ls9a_c00130{letter-spacing:-1.438080px;}
.ls87_c00130{letter-spacing:-1.370880px;}
.ls9e_c00130{letter-spacing:-1.251300px;}
.ls91_c00130{letter-spacing:-0.828360px;}
.ls93_c00130{letter-spacing:-0.566400px;}
.ls8e_c00130{letter-spacing:-0.523920px;}
.ls8a_c00130{letter-spacing:-0.504000px;}
.ls9d_c00130{letter-spacing:-0.365940px;}
.ls8d_c00130{letter-spacing:-0.318600px;}
.ls92_c00130{letter-spacing:-0.247800px;}
.ls80_c00130{letter-spacing:0.000000px;}
.ls73_c00130{letter-spacing:0.026880px;}
.ls8b_c00130{letter-spacing:0.033600px;}
.ls15_c00130{letter-spacing:0.114240px;}
.ls4c_c00130{letter-spacing:0.161280px;}
.ls2d_c00130{letter-spacing:0.215040px;}
.ls43_c00130{letter-spacing:0.228480px;}
.ls4a_c00130{letter-spacing:0.241920px;}
.ls56_c00130{letter-spacing:0.369600px;}
.ls8c_c00130{letter-spacing:0.376320px;}
.ls72_c00130{letter-spacing:0.389760px;}
.ls1e_c00130{letter-spacing:0.427500px;}
.ls36_c00130{letter-spacing:0.430080px;}
.ls20_c00130{letter-spacing:0.443520px;}
.ls2_c00130{letter-spacing:0.463680px;}
.ls30_c00130{letter-spacing:0.504000px;}
.ls5a_c00130{letter-spacing:0.584640px;}
.ls1_c00130{letter-spacing:0.598080px;}
.ls5e_c00130{letter-spacing:0.604800px;}
.ls86_c00130{letter-spacing:0.611520px;}
.lsa_c00130{letter-spacing:0.658560px;}
.ls6e_c00130{letter-spacing:0.672000px;}
.ls48_c00130{letter-spacing:0.692160px;}
.ls7_c00130{letter-spacing:0.719040px;}
.ls77_c00130{letter-spacing:0.725760px;}
.ls53_c00130{letter-spacing:0.759360px;}
.ls7a_c00130{letter-spacing:0.766080px;}
.ls96_c00130{letter-spacing:0.772800px;}
.ls65_c00130{letter-spacing:0.779520px;}
.ls83_c00130{letter-spacing:0.819840px;}
.ls42_c00130{letter-spacing:0.840000px;}
.ls2c_c00130{letter-spacing:0.846720px;}
.lsc_c00130{letter-spacing:0.860160px;}
.ls3f_c00130{letter-spacing:0.873600px;}
.lse_c00130{letter-spacing:0.887040px;}
.ls6f_c00130{letter-spacing:0.913920px;}
.lsd_c00130{letter-spacing:0.927360px;}
.ls57_c00130{letter-spacing:0.934080px;}
.ls71_c00130{letter-spacing:0.947520px;}
.ls37_c00130{letter-spacing:0.954240px;}
.ls10_c00130{letter-spacing:0.960960px;}
.ls3b_c00130{letter-spacing:0.981120px;}
.ls1f_c00130{letter-spacing:1.001280px;}
.ls52_c00130{letter-spacing:1.008000px;}
.ls68_c00130{letter-spacing:1.021440px;}
.ls3e_c00130{letter-spacing:1.028160px;}
.ls5f_c00130{letter-spacing:1.055040px;}
.ls76_c00130{letter-spacing:1.068480px;}
.ls17_c00130{letter-spacing:1.081920px;}
.ls3_c00130{letter-spacing:1.095360px;}
.ls82_c00130{letter-spacing:1.102080px;}
.ls8_c00130{letter-spacing:1.108800px;}
.ls12_c00130{letter-spacing:1.115520px;}
.ls75_c00130{letter-spacing:1.128960px;}
.ls46_c00130{letter-spacing:1.135680px;}
.ls2a_c00130{letter-spacing:1.142400px;}
.ls0_c00130{letter-spacing:1.155840px;}
.ls95_c00130{letter-spacing:1.162560px;}
.ls74_c00130{letter-spacing:1.169280px;}
.ls3c_c00130{letter-spacing:1.176000px;}
.ls4_c00130{letter-spacing:1.182720px;}
.ls6a_c00130{letter-spacing:1.189440px;}
.ls26_c00130{letter-spacing:1.196160px;}
.ls4b_c00130{letter-spacing:1.202880px;}
.ls35_c00130{letter-spacing:1.209600px;}
.ls31_c00130{letter-spacing:1.216320px;}
.ls25_c00130{letter-spacing:1.229760px;}
.ls13_c00130{letter-spacing:1.236480px;}
.ls64_c00130{letter-spacing:1.243200px;}
.ls16_c00130{letter-spacing:1.263360px;}
.ls2b_c00130{letter-spacing:1.270080px;}
.ls79_c00130{letter-spacing:1.283400px;}
.ls18_c00130{letter-spacing:1.290240px;}
.ls2e_c00130{letter-spacing:1.296960px;}
.ls84_c00130{letter-spacing:1.310400px;}
.ls9_c00130{letter-spacing:1.317120px;}
.ls19_c00130{letter-spacing:1.323840px;}
.ls1b_c00130{letter-spacing:1.384320px;}
.ls27_c00130{letter-spacing:1.397760px;}
.ls55_c00130{letter-spacing:1.411200px;}
.ls45_c00130{letter-spacing:1.424640px;}
.ls2f_c00130{letter-spacing:1.451520px;}
.ls5_c00130{letter-spacing:1.458240px;}
.ls54_c00130{letter-spacing:1.464960px;}
.ls4e_c00130{letter-spacing:1.471680px;}
.ls98_c00130{letter-spacing:1.491840px;}
.ls50_c00130{letter-spacing:1.498560px;}
.ls3d_c00130{letter-spacing:1.505280px;}
.ls41_c00130{letter-spacing:1.512000px;}
.ls4d_c00130{letter-spacing:1.525440px;}
.ls49_c00130{letter-spacing:1.532160px;}
.ls58_c00130{letter-spacing:1.538880px;}
.ls14_c00130{letter-spacing:1.552320px;}
.ls7f_c00130{letter-spacing:1.557420px;}
.ls29_c00130{letter-spacing:1.565760px;}
.ls7b_c00130{letter-spacing:1.566480px;}
.ls33_c00130{letter-spacing:1.572480px;}
.ls94_c00130{letter-spacing:1.592640px;}
.ls24_c00130{letter-spacing:1.599360px;}
.ls62_c00130{letter-spacing:1.619520px;}
.ls23_c00130{letter-spacing:1.626240px;}
.ls34_c00130{letter-spacing:1.632960px;}
.ls69_c00130{letter-spacing:1.639680px;}
.ls39_c00130{letter-spacing:1.646400px;}
.ls28_c00130{letter-spacing:1.653120px;}
.ls66_c00130{letter-spacing:1.659840px;}
.ls22_c00130{letter-spacing:1.673280px;}
.lsb_c00130{letter-spacing:1.686720px;}
.ls1c_c00130{letter-spacing:1.693440px;}
.ls1a_c00130{letter-spacing:1.700160px;}
.ls59_c00130{letter-spacing:1.706880px;}
.ls67_c00130{letter-spacing:1.753920px;}
.ls3a_c00130{letter-spacing:1.767360px;}
.ls4f_c00130{letter-spacing:1.774080px;}
.ls6c_c00130{letter-spacing:1.794240px;}
.ls38_c00130{letter-spacing:1.807680px;}
.ls78_c00130{letter-spacing:1.814700px;}
.ls5b_c00130{letter-spacing:1.841280px;}
.ls85_c00130{letter-spacing:1.868160px;}
.ls51_c00130{letter-spacing:1.881600px;}
.ls5d_c00130{letter-spacing:1.901760px;}
.ls89_c00130{letter-spacing:1.915200px;}
.ls32_c00130{letter-spacing:1.948800px;}
.ls60_c00130{letter-spacing:1.995840px;}
.ls11_c00130{letter-spacing:2.036160px;}
.ls97_c00130{letter-spacing:2.063040px;}
.ls44_c00130{letter-spacing:2.123520px;}
.ls70_c00130{letter-spacing:2.143680px;}
.ls6d_c00130{letter-spacing:2.244480px;}
.ls61_c00130{letter-spacing:2.251200px;}
.ls6_c00130{letter-spacing:2.278080px;}
.lsf_c00130{letter-spacing:2.298240px;}
.ls21_c00130{letter-spacing:2.419200px;}
.ls99_c00130{letter-spacing:2.439360px;}
.ls40_c00130{letter-spacing:2.560320px;}
.ls47_c00130{letter-spacing:2.587200px;}
.ls6b_c00130{letter-spacing:2.667840px;}
.ls7d_c00130{letter-spacing:2.734920px;}
.ls1d_c00130{letter-spacing:2.755200px;}
.ls7c_c00130{letter-spacing:2.792700px;}
.ls7e_c00130{letter-spacing:2.916960px;}
.ls5c_c00130{letter-spacing:2.976960px;}
.ls9b_c00130{letter-spacing:3.210000px;}
.ls63_c00130{letter-spacing:3.346560px;}
.ls81_c00130{letter-spacing:3.360000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{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__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00130{word-spacing:-2.419200px;}
.ws0_c00130{word-spacing:-0.161280px;}
.ws5_c00130{word-spacing:0.000000px;}
.ws2_c00130{word-spacing:10.819200px;}
.ws4_c00130{word-spacing:11.511360px;}
.ws3_c00130{word-spacing:27.261600px;}
._8_c00130{margin-left:-6.697920px;}
._6_c00130{margin-left:-4.798080px;}
._5_c00130{margin-left:-3.064320px;}
._7_c00130{margin-left:-1.800960px;}
._4_c00130{width:1.632960px;}
._9_c00130{width:2.882880px;}
._3_c00130{width:4.542720px;}
._0_c00130{width:6.491520px;}
._2_c00130{width:8.440320px;}
._1_c00130{width:10.167360px;}
._a_c00130{width:11.685720px;}
._f_c00130{width:12.801600px;}
._b_c00130{width:13.943880px;}
._15_c00130{width:15.792000px;}
._e_c00130{width:16.840320px;}
._c_c00130{width:19.420800px;}
._d_c00130{width:20.717760px;}
._10_c00130{width:22.982400px;}
._14_c00130{width:27.208320px;}
._11_c00130{width:28.461600px;}
._13_c00130{width:30.473760px;}
._12_c00130{width:32.707440px;}
.fc0_c00130{color:transparent;}
.fs9_c00130{font-size:58.200000px;}
.fs0_c00130{font-size:60.600000px;}
.fs8_c00130{font-size:61.800000px;}
.fs6_c00130{font-size:64.200000px;}
.fs1_c00130{font-size:67.200000px;}
.fs7_c00130{font-size:67.800000px;}
.fs5_c00130{font-size:69.000000px;}
.fs4_c00130{font-size:70.800000px;}
.fs2_c00130{font-size:75.000000px;}
.fs3_c00130{font-size:76.800000px;}
.y0_c00130{bottom:0.000000px;}
.y21_c00130{bottom:69.855000px;}
.y20_c00130{bottom:176.400000px;}
.y1f_c00130{bottom:207.735000px;}
.y1e_c00130{bottom:270.377400px;}
.y1d_c00130{bottom:302.415000px;}
.y1c_c00130{bottom:333.729600px;}
.y1b_c00130{bottom:396.360000px;}
.y1a_c00130{bottom:396.363000px;}
.y19_c00130{bottom:427.695000px;}
.y18_c00130{bottom:459.000000px;}
.y17_c00130{bottom:459.003000px;}
.y16_c00130{bottom:490.335000px;}
.y14_c00130{bottom:521.650200px;}
.y15_c00130{bottom:521.655000px;}
.y13_c00130{bottom:583.575000px;}
.y12_c00130{bottom:615.607800px;}
.y11_c00130{bottom:646.939800px;}
.y10_c00130{bottom:678.255000px;}
.yf_c00130{bottom:709.193400px;}
.ye_c00130{bottom:740.895000px;}
.yc_c00130{bottom:803.169600px;}
.yd_c00130{bottom:803.175000px;}
.yb_c00130{bottom:866.875200px;}
.y9_c00130{bottom:898.557600px;}
.ya_c00130{bottom:898.560000px;}
.y7_c00130{bottom:929.515800px;}
.y8_c00130{bottom:929.520000px;}
.y6_c00130{bottom:960.847800px;}
.y5_c00130{bottom:1023.497400px;}
.y4_c00130{bottom:1054.459800px;}
.y3_c00130{bottom:1085.775000px;}
.y2_c00130{bottom:1117.455000px;}
.y1_c00130{bottom:1193.400000px;}
.he_c00130{height:57.120117px;}
.h2_c00130{height:59.475586px;}
.hc_c00130{height:63.008789px;}
.ha_c00130{height:65.920312px;}
.h3_c00130{height:65.953125px;}
.h7_c00130{height:65.979525px;}
.hd_c00130{height:66.541992px;}
.hb_c00130{height:67.686035px;}
.h9_c00130{height:69.486328px;}
.h8_c00130{height:69.505528px;}
.h4_c00130{height:73.598798px;}
.h5_c00130{height:73.608398px;}
.h6_c00130{height:75.375000px;}
.h1_c00130{height:1263.000000px;}
.h0_c00130{height:1263.240000px;}
.w1_c00130{width:892.500000px;}
.w0_c00130{width:892.800000px;}
.x0_c00130{left:0.000000px;}
.x15_c00130{left:118.470000px;}
.xf_c00130{left:119.499000px;}
.xa_c00130{left:120.804600px;}
.x4_c00130{left:122.278800px;}
.x2_c00130{left:123.315000px;}
.x1_c00130{left:124.485000px;}
.x18_c00130{left:153.195000px;}
.x12_c00130{left:173.318400px;}
.xb_c00130{left:174.413400px;}
.x5_c00130{left:175.851600px;}
.x6_c00130{left:179.760000px;}
.x22_c00130{left:213.615000px;}
.x7_c00130{left:226.995000px;}
.x21_c00130{left:294.285000px;}
.x1d_c00130{left:326.730000px;}
.x1e_c00130{left:347.655000px;}
.xc_c00130{left:371.280000px;}
.xd_c00130{left:403.035000px;}
.x1b_c00130{left:416.955000px;}
.x23_c00130{left:423.570000px;}
.x19_c00130{left:439.125000px;}
.x13_c00130{left:441.195000px;}
.x1c_c00130{left:444.930000px;}
.x14_c00130{left:469.290000px;}
.x1a_c00130{left:473.370000px;}
.x1f_c00130{left:534.855000px;}
.x8_c00130{left:546.840000px;}
.x16_c00130{left:557.205000px;}
.x20_c00130{left:563.220000px;}
.x9_c00130{left:579.075000px;}
.x17_c00130{left:590.835000px;}
.xe_c00130{left:665.025000px;}
.x10_c00130{left:706.950000px;}
.x11_c00130{left:733.890000px;}
.x3_c00130{left:738.000000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls88_c00130{letter-spacing:-2.389333pt;}
.ls8f_c00130{letter-spacing:-2.202667pt;}
.ls90_c00130{letter-spacing:-1.774720pt;}
.ls9c_c00130{letter-spacing:-1.681440pt;}
.ls9a_c00130{letter-spacing:-1.278293pt;}
.ls87_c00130{letter-spacing:-1.218560pt;}
.ls9e_c00130{letter-spacing:-1.112267pt;}
.ls91_c00130{letter-spacing:-0.736320pt;}
.ls93_c00130{letter-spacing:-0.503467pt;}
.ls8e_c00130{letter-spacing:-0.465707pt;}
.ls8a_c00130{letter-spacing:-0.448000pt;}
.ls9d_c00130{letter-spacing:-0.325280pt;}
.ls8d_c00130{letter-spacing:-0.283200pt;}
.ls92_c00130{letter-spacing:-0.220267pt;}
.ls80_c00130{letter-spacing:0.000000pt;}
.ls73_c00130{letter-spacing:0.023893pt;}
.ls8b_c00130{letter-spacing:0.029867pt;}
.ls15_c00130{letter-spacing:0.101547pt;}
.ls4c_c00130{letter-spacing:0.143360pt;}
.ls2d_c00130{letter-spacing:0.191147pt;}
.ls43_c00130{letter-spacing:0.203093pt;}
.ls4a_c00130{letter-spacing:0.215040pt;}
.ls56_c00130{letter-spacing:0.328533pt;}
.ls8c_c00130{letter-spacing:0.334507pt;}
.ls72_c00130{letter-spacing:0.346453pt;}
.ls1e_c00130{letter-spacing:0.380000pt;}
.ls36_c00130{letter-spacing:0.382293pt;}
.ls20_c00130{letter-spacing:0.394240pt;}
.ls2_c00130{letter-spacing:0.412160pt;}
.ls30_c00130{letter-spacing:0.448000pt;}
.ls5a_c00130{letter-spacing:0.519680pt;}
.ls1_c00130{letter-spacing:0.531627pt;}
.ls5e_c00130{letter-spacing:0.537600pt;}
.ls86_c00130{letter-spacing:0.543573pt;}
.lsa_c00130{letter-spacing:0.585387pt;}
.ls6e_c00130{letter-spacing:0.597333pt;}
.ls48_c00130{letter-spacing:0.615253pt;}
.ls7_c00130{letter-spacing:0.639147pt;}
.ls77_c00130{letter-spacing:0.645120pt;}
.ls53_c00130{letter-spacing:0.674987pt;}
.ls7a_c00130{letter-spacing:0.680960pt;}
.ls96_c00130{letter-spacing:0.686933pt;}
.ls65_c00130{letter-spacing:0.692907pt;}
.ls83_c00130{letter-spacing:0.728747pt;}
.ls42_c00130{letter-spacing:0.746667pt;}
.ls2c_c00130{letter-spacing:0.752640pt;}
.lsc_c00130{letter-spacing:0.764587pt;}
.ls3f_c00130{letter-spacing:0.776533pt;}
.lse_c00130{letter-spacing:0.788480pt;}
.ls6f_c00130{letter-spacing:0.812373pt;}
.lsd_c00130{letter-spacing:0.824320pt;}
.ls57_c00130{letter-spacing:0.830293pt;}
.ls71_c00130{letter-spacing:0.842240pt;}
.ls37_c00130{letter-spacing:0.848213pt;}
.ls10_c00130{letter-spacing:0.854187pt;}
.ls3b_c00130{letter-spacing:0.872107pt;}
.ls1f_c00130{letter-spacing:0.890027pt;}
.ls52_c00130{letter-spacing:0.896000pt;}
.ls68_c00130{letter-spacing:0.907947pt;}
.ls3e_c00130{letter-spacing:0.913920pt;}
.ls5f_c00130{letter-spacing:0.937813pt;}
.ls76_c00130{letter-spacing:0.949760pt;}
.ls17_c00130{letter-spacing:0.961707pt;}
.ls3_c00130{letter-spacing:0.973653pt;}
.ls82_c00130{letter-spacing:0.979627pt;}
.ls8_c00130{letter-spacing:0.985600pt;}
.ls12_c00130{letter-spacing:0.991573pt;}
.ls75_c00130{letter-spacing:1.003520pt;}
.ls46_c00130{letter-spacing:1.009493pt;}
.ls2a_c00130{letter-spacing:1.015467pt;}
.ls0_c00130{letter-spacing:1.027413pt;}
.ls95_c00130{letter-spacing:1.033387pt;}
.ls74_c00130{letter-spacing:1.039360pt;}
.ls3c_c00130{letter-spacing:1.045333pt;}
.ls4_c00130{letter-spacing:1.051307pt;}
.ls6a_c00130{letter-spacing:1.057280pt;}
.ls26_c00130{letter-spacing:1.063253pt;}
.ls4b_c00130{letter-spacing:1.069227pt;}
.ls35_c00130{letter-spacing:1.075200pt;}
.ls31_c00130{letter-spacing:1.081173pt;}
.ls25_c00130{letter-spacing:1.093120pt;}
.ls13_c00130{letter-spacing:1.099093pt;}
.ls64_c00130{letter-spacing:1.105067pt;}
.ls16_c00130{letter-spacing:1.122987pt;}
.ls2b_c00130{letter-spacing:1.128960pt;}
.ls79_c00130{letter-spacing:1.140800pt;}
.ls18_c00130{letter-spacing:1.146880pt;}
.ls2e_c00130{letter-spacing:1.152853pt;}
.ls84_c00130{letter-spacing:1.164800pt;}
.ls9_c00130{letter-spacing:1.170773pt;}
.ls19_c00130{letter-spacing:1.176747pt;}
.ls1b_c00130{letter-spacing:1.230507pt;}
.ls27_c00130{letter-spacing:1.242453pt;}
.ls55_c00130{letter-spacing:1.254400pt;}
.ls45_c00130{letter-spacing:1.266347pt;}
.ls2f_c00130{letter-spacing:1.290240pt;}
.ls5_c00130{letter-spacing:1.296213pt;}
.ls54_c00130{letter-spacing:1.302187pt;}
.ls4e_c00130{letter-spacing:1.308160pt;}
.ls98_c00130{letter-spacing:1.326080pt;}
.ls50_c00130{letter-spacing:1.332053pt;}
.ls3d_c00130{letter-spacing:1.338027pt;}
.ls41_c00130{letter-spacing:1.344000pt;}
.ls4d_c00130{letter-spacing:1.355947pt;}
.ls49_c00130{letter-spacing:1.361920pt;}
.ls58_c00130{letter-spacing:1.367893pt;}
.ls14_c00130{letter-spacing:1.379840pt;}
.ls7f_c00130{letter-spacing:1.384373pt;}
.ls29_c00130{letter-spacing:1.391787pt;}
.ls7b_c00130{letter-spacing:1.392427pt;}
.ls33_c00130{letter-spacing:1.397760pt;}
.ls94_c00130{letter-spacing:1.415680pt;}
.ls24_c00130{letter-spacing:1.421653pt;}
.ls62_c00130{letter-spacing:1.439573pt;}
.ls23_c00130{letter-spacing:1.445547pt;}
.ls34_c00130{letter-spacing:1.451520pt;}
.ls69_c00130{letter-spacing:1.457493pt;}
.ls39_c00130{letter-spacing:1.463467pt;}
.ls28_c00130{letter-spacing:1.469440pt;}
.ls66_c00130{letter-spacing:1.475413pt;}
.ls22_c00130{letter-spacing:1.487360pt;}
.lsb_c00130{letter-spacing:1.499307pt;}
.ls1c_c00130{letter-spacing:1.505280pt;}
.ls1a_c00130{letter-spacing:1.511253pt;}
.ls59_c00130{letter-spacing:1.517227pt;}
.ls67_c00130{letter-spacing:1.559040pt;}
.ls3a_c00130{letter-spacing:1.570987pt;}
.ls4f_c00130{letter-spacing:1.576960pt;}
.ls6c_c00130{letter-spacing:1.594880pt;}
.ls38_c00130{letter-spacing:1.606827pt;}
.ls78_c00130{letter-spacing:1.613067pt;}
.ls5b_c00130{letter-spacing:1.636693pt;}
.ls85_c00130{letter-spacing:1.660587pt;}
.ls51_c00130{letter-spacing:1.672533pt;}
.ls5d_c00130{letter-spacing:1.690453pt;}
.ls89_c00130{letter-spacing:1.702400pt;}
.ls32_c00130{letter-spacing:1.732267pt;}
.ls60_c00130{letter-spacing:1.774080pt;}
.ls11_c00130{letter-spacing:1.809920pt;}
.ls97_c00130{letter-spacing:1.833813pt;}
.ls44_c00130{letter-spacing:1.887573pt;}
.ls70_c00130{letter-spacing:1.905493pt;}
.ls6d_c00130{letter-spacing:1.995093pt;}
.ls61_c00130{letter-spacing:2.001067pt;}
.ls6_c00130{letter-spacing:2.024960pt;}
.lsf_c00130{letter-spacing:2.042880pt;}
.ls21_c00130{letter-spacing:2.150400pt;}
.ls99_c00130{letter-spacing:2.168320pt;}
.ls40_c00130{letter-spacing:2.275840pt;}
.ls47_c00130{letter-spacing:2.299733pt;}
.ls6b_c00130{letter-spacing:2.371413pt;}
.ls7d_c00130{letter-spacing:2.431040pt;}
.ls1d_c00130{letter-spacing:2.449067pt;}
.ls7c_c00130{letter-spacing:2.482400pt;}
.ls7e_c00130{letter-spacing:2.592853pt;}
.ls5c_c00130{letter-spacing:2.646187pt;}
.ls9b_c00130{letter-spacing:2.853333pt;}
.ls63_c00130{letter-spacing:2.974720pt;}
.ls81_c00130{letter-spacing:2.986667pt;}
.ws1_c00130{word-spacing:-2.150400pt;}
.ws0_c00130{word-spacing:-0.143360pt;}
.ws5_c00130{word-spacing:0.000000pt;}
.ws2_c00130{word-spacing:9.617067pt;}
.ws4_c00130{word-spacing:10.232320pt;}
.ws3_c00130{word-spacing:24.232533pt;}
._8_c00130{margin-left:-5.953707pt;}
._6_c00130{margin-left:-4.264960pt;}
._5_c00130{margin-left:-2.723840pt;}
._7_c00130{margin-left:-1.600853pt;}
._4_c00130{width:1.451520pt;}
._9_c00130{width:2.562560pt;}
._3_c00130{width:4.037973pt;}
._0_c00130{width:5.770240pt;}
._2_c00130{width:7.502507pt;}
._1_c00130{width:9.037653pt;}
._a_c00130{width:10.387307pt;}
._f_c00130{width:11.379200pt;}
._b_c00130{width:12.394560pt;}
._15_c00130{width:14.037333pt;}
._e_c00130{width:14.969173pt;}
._c_c00130{width:17.262933pt;}
._d_c00130{width:18.415787pt;}
._10_c00130{width:20.428800pt;}
._14_c00130{width:24.185173pt;}
._11_c00130{width:25.299200pt;}
._13_c00130{width:27.087787pt;}
._12_c00130{width:29.073280pt;}
.fs9_c00130{font-size:51.733333pt;}
.fs0_c00130{font-size:53.866667pt;}
.fs8_c00130{font-size:54.933333pt;}
.fs6_c00130{font-size:57.066667pt;}
.fs1_c00130{font-size:59.733333pt;}
.fs7_c00130{font-size:60.266667pt;}
.fs5_c00130{font-size:61.333333pt;}
.fs4_c00130{font-size:62.933333pt;}
.fs2_c00130{font-size:66.666667pt;}
.fs3_c00130{font-size:68.266667pt;}
.y0_c00130{bottom:0.000000pt;}
.y21_c00130{bottom:62.093333pt;}
.y20_c00130{bottom:156.800000pt;}
.y1f_c00130{bottom:184.653333pt;}
.y1e_c00130{bottom:240.335467pt;}
.y1d_c00130{bottom:268.813333pt;}
.y1c_c00130{bottom:296.648533pt;}
.y1b_c00130{bottom:352.320000pt;}
.y1a_c00130{bottom:352.322667pt;}
.y19_c00130{bottom:380.173333pt;}
.y18_c00130{bottom:408.000000pt;}
.y17_c00130{bottom:408.002667pt;}
.y16_c00130{bottom:435.853333pt;}
.y14_c00130{bottom:463.689067pt;}
.y15_c00130{bottom:463.693333pt;}
.y13_c00130{bottom:518.733333pt;}
.y12_c00130{bottom:547.206933pt;}
.y11_c00130{bottom:575.057600pt;}
.y10_c00130{bottom:602.893333pt;}
.yf_c00130{bottom:630.394133pt;}
.ye_c00130{bottom:658.573333pt;}
.yc_c00130{bottom:713.928533pt;}
.yd_c00130{bottom:713.933333pt;}
.yb_c00130{bottom:770.555733pt;}
.y9_c00130{bottom:798.717867pt;}
.ya_c00130{bottom:798.720000pt;}
.y7_c00130{bottom:826.236267pt;}
.y8_c00130{bottom:826.240000pt;}
.y6_c00130{bottom:854.086933pt;}
.y5_c00130{bottom:909.775467pt;}
.y4_c00130{bottom:937.297600pt;}
.y3_c00130{bottom:965.133333pt;}
.y2_c00130{bottom:993.293333pt;}
.y1_c00130{bottom:1060.800000pt;}
.he_c00130{height:50.773437pt;}
.h2_c00130{height:52.867187pt;}
.hc_c00130{height:56.007812pt;}
.ha_c00130{height:58.595833pt;}
.h3_c00130{height:58.625000pt;}
.h7_c00130{height:58.648467pt;}
.hd_c00130{height:59.148438pt;}
.hb_c00130{height:60.165365pt;}
.h9_c00130{height:61.765625pt;}
.h8_c00130{height:61.782692pt;}
.h4_c00130{height:65.421154pt;}
.h5_c00130{height:65.429688pt;}
.h6_c00130{height:67.000000pt;}
.h1_c00130{height:1122.666667pt;}
.h0_c00130{height:1122.880000pt;}
.w1_c00130{width:793.333333pt;}
.w0_c00130{width:793.600000pt;}
.x0_c00130{left:0.000000pt;}
.x15_c00130{left:105.306667pt;}
.xf_c00130{left:106.221333pt;}
.xa_c00130{left:107.381867pt;}
.x4_c00130{left:108.692267pt;}
.x2_c00130{left:109.613333pt;}
.x1_c00130{left:110.653333pt;}
.x18_c00130{left:136.173333pt;}
.x12_c00130{left:154.060800pt;}
.xb_c00130{left:155.034133pt;}
.x5_c00130{left:156.312533pt;}
.x6_c00130{left:159.786667pt;}
.x22_c00130{left:189.880000pt;}
.x7_c00130{left:201.773333pt;}
.x21_c00130{left:261.586667pt;}
.x1d_c00130{left:290.426667pt;}
.x1e_c00130{left:309.026667pt;}
.xc_c00130{left:330.026667pt;}
.xd_c00130{left:358.253333pt;}
.x1b_c00130{left:370.626667pt;}
.x23_c00130{left:376.506667pt;}
.x19_c00130{left:390.333333pt;}
.x13_c00130{left:392.173333pt;}
.x1c_c00130{left:395.493333pt;}
.x14_c00130{left:417.146667pt;}
.x1a_c00130{left:420.773333pt;}
.x1f_c00130{left:475.426667pt;}
.x8_c00130{left:486.080000pt;}
.x16_c00130{left:495.293333pt;}
.x20_c00130{left:500.640000pt;}
.x9_c00130{left:514.733333pt;}
.x17_c00130{left:525.186667pt;}
.xe_c00130{left:591.133333pt;}
.x10_c00130{left:628.400000pt;}
.x11_c00130{left:652.346667pt;}
.x3_c00130{left:656.000000pt;}
}





/* 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_c00131 {
    display:none;
  }
  .loading-indicator_c00131.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00131 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_c00131 { 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_c00131" -> "#page-container .classname_c00131")
 */
.pf_c00131 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00131 { /* 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_c00131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00131 { /* 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_c00131 { /* 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_c00131 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00131 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00131 {overflow:visible;}
  }
}
.c_c00131 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00131 { /* 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_c00131:after { /* webkit #35443 */
  content: '';
}
.t_c00131:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00131 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 */
}
.__c00131 { /* 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_c00131 { /* info for Javascript */
  display:none;
}
.l_c00131 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00131 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00131 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00131: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_c00131 {
    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_c00131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00131.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_c00131 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00131;src:url('chunks/assets/font_07d033e6bfd5cc581a9af1f8.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.284668;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_c00131;src:url('chunks/assets/font_ac00201eb700c3ec8810100d.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.284180;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_c00131;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;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;}
.m9_c00131{transform:matrix(0.138387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138387,0.000000,0.000000,0.250000,0,0);}
.m8_c00131{transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);}
.m5_c00131{transform:matrix(0.219162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219162,0.000000,0.000000,0.250000,0,0);}
.ma_c00131{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);}
.m6_c00131{transform:matrix(0.245888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245888,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);}
.mc_c00131{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.m2_c00131{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m0_c00131{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);}
.mb_c00131{transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);}
.m7_c00131{transform:matrix(0.257216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257216,0.000000,0.000000,0.250000,0,0);}
.m3_c00131{transform:matrix(0.276932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276932,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.lsa2_c00131{letter-spacing:-2.688000px;}
.ls79_c00131{letter-spacing:-2.394000px;}
.lsaa_c00131{letter-spacing:-2.310000px;}
.ls71_c00131{letter-spacing:-2.168280px;}
.lsb2_c00131{letter-spacing:-1.974000px;}
.ls75_c00131{letter-spacing:-1.682640px;}
.ls7b_c00131{letter-spacing:-1.614240px;}
.ls7a_c00131{letter-spacing:-1.580040px;}
.ls78_c00131{letter-spacing:-1.566360px;}
.ls76_c00131{letter-spacing:-1.477440px;}
.ls92_c00131{letter-spacing:-1.282560px;}
.lsa9_c00131{letter-spacing:-1.238040px;}
.ls99_c00131{letter-spacing:-1.162800px;}
.ls8d_c00131{letter-spacing:-0.984960px;}
.lsa1_c00131{letter-spacing:-0.978120px;}
.lsb1_c00131{letter-spacing:-0.964440px;}
.ls7e_c00131{letter-spacing:-0.896040px;}
.ls98_c00131{letter-spacing:-0.684000px;}
.lsab_c00131{letter-spacing:-0.663480px;}
.lsa8_c00131{letter-spacing:-0.656640px;}
.ls8e_c00131{letter-spacing:-0.526680px;}
.ls86_c00131{letter-spacing:-0.519840px;}
.ls7d_c00131{letter-spacing:-0.506160px;}
.ls9b_c00131{letter-spacing:-0.492480px;}
.lsa6_c00131{letter-spacing:-0.478800px;}
.ls77_c00131{letter-spacing:-0.465120px;}
.ls87_c00131{letter-spacing:-0.458280px;}
.lsa3_c00131{letter-spacing:-0.451440px;}
.ls74_c00131{letter-spacing:-0.424080px;}
.ls97_c00131{letter-spacing:-0.396720px;}
.ls84_c00131{letter-spacing:-0.376200px;}
.ls89_c00131{letter-spacing:-0.362520px;}
.ls90_c00131{letter-spacing:-0.348840px;}
.ls7f_c00131{letter-spacing:-0.342000px;}
.lsae_c00131{letter-spacing:-0.321480px;}
.ls7c_c00131{letter-spacing:-0.294120px;}
.ls82_c00131{letter-spacing:-0.266760px;}
.lsa7_c00131{letter-spacing:-0.225720px;}
.ls96_c00131{letter-spacing:-0.198360px;}
.ls8c_c00131{letter-spacing:-0.184680px;}
.ls94_c00131{letter-spacing:-0.164160px;}
.ls91_c00131{letter-spacing:-0.157320px;}
.ls83_c00131{letter-spacing:-0.150480px;}
.lsad_c00131{letter-spacing:-0.143640px;}
.lsa0_c00131{letter-spacing:-0.139860px;}
.ls8a_c00131{letter-spacing:-0.123120px;}
.ls93_c00131{letter-spacing:-0.116280px;}
.ls8b_c00131{letter-spacing:-0.095760px;}
.ls85_c00131{letter-spacing:-0.088920px;}
.ls81_c00131{letter-spacing:-0.082080px;}
.ls9a_c00131{letter-spacing:-0.068400px;}
.ls95_c00131{letter-spacing:-0.041040px;}
.ls73_c00131{letter-spacing:-0.027360px;}
.ls72_c00131{letter-spacing:0.000000px;}
.ls3_c00131{letter-spacing:0.006840px;}
.ls8f_c00131{letter-spacing:0.020520px;}
.ls16_c00131{letter-spacing:0.027360px;}
.ls41_c00131{letter-spacing:0.034200px;}
.ls69_c00131{letter-spacing:0.047880px;}
.ls52_c00131{letter-spacing:0.054720px;}
.ls60_c00131{letter-spacing:0.061560px;}
.ls3f_c00131{letter-spacing:0.068400px;}
.ls31_c00131{letter-spacing:0.082080px;}
.ls6c_c00131{letter-spacing:0.088920px;}
.ls58_c00131{letter-spacing:0.095760px;}
.ls62_c00131{letter-spacing:0.109440px;}
.ls23_c00131{letter-spacing:0.123120px;}
.lsaf_c00131{letter-spacing:0.136800px;}
.ls51_c00131{letter-spacing:0.143640px;}
.ls28_c00131{letter-spacing:0.164160px;}
.ls47_c00131{letter-spacing:0.166500px;}
.ls5e_c00131{letter-spacing:0.184680px;}
.ls4d_c00131{letter-spacing:0.198360px;}
.ls61_c00131{letter-spacing:0.205200px;}
.ls1f_c00131{letter-spacing:0.212040px;}
.lsb0_c00131{letter-spacing:0.232560px;}
.ls4e_c00131{letter-spacing:0.239400px;}
.ls34_c00131{letter-spacing:0.259920px;}
.ls57_c00131{letter-spacing:0.266760px;}
.ls3e_c00131{letter-spacing:0.273600px;}
.ls4a_c00131{letter-spacing:0.280440px;}
.ls6f_c00131{letter-spacing:0.287280px;}
.ls22_c00131{letter-spacing:0.294120px;}
.ls19_c00131{letter-spacing:0.307800px;}
.ls3b_c00131{letter-spacing:0.314640px;}
.ls40_c00131{letter-spacing:0.321480px;}
.ls1a_c00131{letter-spacing:0.328320px;}
.ls4_c00131{letter-spacing:0.335160px;}
.lsf_c00131{letter-spacing:0.355680px;}
.ls8_c00131{letter-spacing:0.362520px;}
.ls25_c00131{letter-spacing:0.369360px;}
.ls63_c00131{letter-spacing:0.376200px;}
.ls6b_c00131{letter-spacing:0.383040px;}
.ls66_c00131{letter-spacing:0.389880px;}
.ls1e_c00131{letter-spacing:0.403560px;}
.ls2d_c00131{letter-spacing:0.417240px;}
.ls6e_c00131{letter-spacing:0.430920px;}
.ls5a_c00131{letter-spacing:0.437760px;}
.ls67_c00131{letter-spacing:0.444600px;}
.ls21_c00131{letter-spacing:0.465120px;}
.ls88_c00131{letter-spacing:0.478800px;}
.ls2_c00131{letter-spacing:0.485640px;}
.ls5d_c00131{letter-spacing:0.492480px;}
.ls59_c00131{letter-spacing:0.499320px;}
.ls17_c00131{letter-spacing:0.513000px;}
.ls5c_c00131{letter-spacing:0.526680px;}
.ls9c_c00131{letter-spacing:0.540360px;}
.ls44_c00131{letter-spacing:0.547200px;}
.ls5b_c00131{letter-spacing:0.554040px;}
.ls37_c00131{letter-spacing:0.560880px;}
.ls27_c00131{letter-spacing:0.567720px;}
.ls24_c00131{letter-spacing:0.574560px;}
.lsa5_c00131{letter-spacing:0.581400px;}
.ls10_c00131{letter-spacing:0.588240px;}
.ls11_c00131{letter-spacing:0.595080px;}
.ls9e_c00131{letter-spacing:0.601920px;}
.ls7_c00131{letter-spacing:0.608760px;}
.ls2e_c00131{letter-spacing:0.615600px;}
.ls4f_c00131{letter-spacing:0.622440px;}
.ls1b_c00131{letter-spacing:0.629280px;}
.ls43_c00131{letter-spacing:0.636120px;}
.lsac_c00131{letter-spacing:0.642960px;}
.ls1_c00131{letter-spacing:0.649800px;}
.ls54_c00131{letter-spacing:0.677160px;}
.lsa4_c00131{letter-spacing:0.684000px;}
.ls39_c00131{letter-spacing:0.690840px;}
.ls65_c00131{letter-spacing:0.697680px;}
.ls29_c00131{letter-spacing:0.704520px;}
.ls42_c00131{letter-spacing:0.718200px;}
.ls49_c00131{letter-spacing:0.731880px;}
.ls14_c00131{letter-spacing:0.752400px;}
.ls35_c00131{letter-spacing:0.759240px;}
.ls2b_c00131{letter-spacing:0.779760px;}
.ls15_c00131{letter-spacing:0.813960px;}
.ls50_c00131{letter-spacing:0.820800px;}
.ls36_c00131{letter-spacing:0.841320px;}
.ls13_c00131{letter-spacing:0.861840px;}
.ls6_c00131{letter-spacing:0.882360px;}
.ls45_c00131{letter-spacing:0.916560px;}
.ls20_c00131{letter-spacing:0.930240px;}
.ls9_c00131{letter-spacing:0.964440px;}
.ls46_c00131{letter-spacing:0.971280px;}
.ls2a_c00131{letter-spacing:0.998640px;}
.ls2f_c00131{letter-spacing:1.012320px;}
.ls30_c00131{letter-spacing:1.026000px;}
.ls3a_c00131{letter-spacing:1.046520px;}
.ls56_c00131{letter-spacing:1.060200px;}
.ls3d_c00131{letter-spacing:1.067040px;}
.ls70_c00131{letter-spacing:1.119960px;}
.ls4b_c00131{letter-spacing:1.125540px;}
.ls4c_c00131{letter-spacing:1.135440px;}
.ls48_c00131{letter-spacing:1.138860px;}
.ls0_c00131{letter-spacing:1.149120px;}
.ls38_c00131{letter-spacing:1.183320px;}
.ls3c_c00131{letter-spacing:1.203840px;}
.ls68_c00131{letter-spacing:1.245420px;}
.ls2c_c00131{letter-spacing:1.272240px;}
.ls33_c00131{letter-spacing:1.279080px;}
.ls53_c00131{letter-spacing:1.299600px;}
.lse_c00131{letter-spacing:1.325340px;}
.ls6a_c00131{letter-spacing:1.333800px;}
.ls32_c00131{letter-spacing:1.477440px;}
.lsc_c00131{letter-spacing:1.578420px;}
.lsb_c00131{letter-spacing:1.605060px;}
.ls5f_c00131{letter-spacing:1.621080px;}
.ls1c_c00131{letter-spacing:1.648440px;}
.lsd_c00131{letter-spacing:1.651680px;}
.ls64_c00131{letter-spacing:1.737360px;}
.lsa_c00131{letter-spacing:1.738260px;}
.ls55_c00131{letter-spacing:1.812600px;}
.ls6d_c00131{letter-spacing:2.072520px;}
.ls1d_c00131{letter-spacing:2.202480px;}
.ls26_c00131{letter-spacing:2.234880px;}
.ls18_c00131{letter-spacing:2.250360px;}
.ls9d_c00131{letter-spacing:2.455560px;}
.ls5_c00131{letter-spacing:2.865960px;}
.ls12_c00131{letter-spacing:2.961720px;}
.ls9f_c00131{letter-spacing:3.330000px;}
.ls80_c00131{letter-spacing:3.420000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{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__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00131{word-spacing:-0.368700px;}
.ws3_c00131{word-spacing:0.000000px;}
.ws0_c00131{word-spacing:4.166640px;}
.ws1_c00131{word-spacing:15.637200px;}
._13_c00131{margin-left:-5.752440px;}
._6_c00131{margin-left:-4.083480px;}
._b_c00131{margin-left:-2.894280px;}
._a_c00131{margin-left:-1.072260px;}
._d_c00131{width:1.429560px;}
._7_c00131{width:2.489760px;}
._8_c00131{width:4.049280px;}
._12_c00131{width:5.067780px;}
._c_c00131{width:6.224400px;}
._9_c00131{width:8.002800px;}
._4_c00131{width:9.237120px;}
._0_c00131{width:10.547280px;}
._11_c00131{width:11.669040px;}
._1_c00131{width:13.461120px;}
._10_c00131{width:14.487120px;}
._2_c00131{width:15.957720px;}
._e_c00131{width:18.700560px;}
._f_c00131{width:20.273760px;}
._3_c00131{width:22.059000px;}
._5_c00131{width:26.894160px;}
.fc0_c00131{color:transparent;}
.fs5_c00131{font-size:56.400000px;}
.fs0_c00131{font-size:61.200000px;}
.fs4_c00131{font-size:66.000000px;}
.fs2_c00131{font-size:66.600000px;}
.fs1_c00131{font-size:68.400000px;}
.fs3_c00131{font-size:76.800000px;}
.y0_c00131{bottom:0.000000px;}
.y24_c00131{bottom:69.840000px;}
.y23_c00131{bottom:147.254100px;}
.y22_c00131{bottom:177.486900px;}
.y20_c00131{bottom:208.449600px;}
.y21_c00131{bottom:208.455000px;}
.y1f_c00131{bottom:240.495000px;}
.y1d_c00131{bottom:303.119700px;}
.y1e_c00131{bottom:303.135000px;}
.y1c_c00131{bottom:334.446900px;}
.y1b_c00131{bottom:365.409900px;}
.y1a_c00131{bottom:396.714300px;}
.y19_c00131{bottom:428.400600px;}
.y18_c00131{bottom:459.727800px;}
.y17_c00131{bottom:491.055000px;}
.y15_c00131{bottom:553.316400px;}
.y16_c00131{bottom:553.320000px;}
.y13_c00131{bottom:616.301100px;}
.y14_c00131{bottom:616.320000px;}
.y12_c00131{bottom:647.269200px;}
.y11_c00131{bottom:678.596400px;}
.y10_c00131{bottom:710.282700px;}
.yf_c00131{bottom:741.609900px;}
.yd_c00131{bottom:772.912800px;}
.ye_c00131{bottom:772.920000px;}
.yb_c00131{bottom:804.207300px;}
.yc_c00131{bottom:804.240000px;}
.ya_c00131{bottom:835.175400px;}
.y9_c00131{bottom:866.878800px;}
.y8_c00131{bottom:897.846900px;}
.y7_c00131{bottom:928.815000px;}
.y6_c00131{bottom:991.440000px;}
.y5_c00131{bottom:1022.760000px;}
.y3_c00131{bottom:1085.752800px;}
.y4_c00131{bottom:1085.760000px;}
.y2_c00131{bottom:1117.080000px;}
.y1_c00131{bottom:1191.975000px;}
.hb_c00131{height:55.353516px;}
.h2_c00131{height:60.064453px;}
.h5_c00131{height:65.331738px;}
.h3_c00131{height:67.130859px;}
.h6_c00131{height:67.145259px;}
.h8_c00131{height:67.151259px;}
.h7_c00131{height:67.153659px;}
.h9_c00131{height:67.192059px;}
.ha_c00131{height:68.835938px;}
.h4_c00131{height:75.375000px;}
.h1_c00131{height:1263.000000px;}
.h0_c00131{height:1263.240000px;}
.w1_c00131{width:892.500000px;}
.w0_c00131{width:892.800000px;}
.x0_c00131{left:0.000000px;}
.x1a_c00131{left:124.674000px;}
.x17_c00131{left:126.660300px;}
.x1_c00131{left:127.725000px;}
.x16_c00131{left:180.135000px;}
.x5_c00131{left:181.230000px;}
.x2_c00131{left:182.445000px;}
.xb_c00131{left:278.205000px;}
.xc_c00131{left:303.450000px;}
.xd_c00131{left:352.005000px;}
.xe_c00131{left:374.370000px;}
.x3_c00131{left:379.500000px;}
.x4_c00131{left:396.165000px;}
.x13_c00131{left:401.700000px;}
.x1b_c00131{left:427.560000px;}
.xf_c00131{left:431.835000px;}
.x14_c00131{left:432.915000px;}
.x6_c00131{left:440.490000px;}
.x10_c00131{left:452.010000px;}
.x7_c00131{left:473.655000px;}
.x8_c00131{left:527.820000px;}
.x18_c00131{left:538.995000px;}
.x11_c00131{left:565.770000px;}
.x19_c00131{left:568.590000px;}
.x9_c00131{left:573.795000px;}
.x12_c00131{left:582.375000px;}
.xa_c00131{left:586.980000px;}
.x15_c00131{left:701.940000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.lsa2_c00131{letter-spacing:-2.389333pt;}
.ls79_c00131{letter-spacing:-2.128000pt;}
.lsaa_c00131{letter-spacing:-2.053333pt;}
.ls71_c00131{letter-spacing:-1.927360pt;}
.lsb2_c00131{letter-spacing:-1.754667pt;}
.ls75_c00131{letter-spacing:-1.495680pt;}
.ls7b_c00131{letter-spacing:-1.434880pt;}
.ls7a_c00131{letter-spacing:-1.404480pt;}
.ls78_c00131{letter-spacing:-1.392320pt;}
.ls76_c00131{letter-spacing:-1.313280pt;}
.ls92_c00131{letter-spacing:-1.140053pt;}
.lsa9_c00131{letter-spacing:-1.100480pt;}
.ls99_c00131{letter-spacing:-1.033600pt;}
.ls8d_c00131{letter-spacing:-0.875520pt;}
.lsa1_c00131{letter-spacing:-0.869440pt;}
.lsb1_c00131{letter-spacing:-0.857280pt;}
.ls7e_c00131{letter-spacing:-0.796480pt;}
.ls98_c00131{letter-spacing:-0.608000pt;}
.lsab_c00131{letter-spacing:-0.589760pt;}
.lsa8_c00131{letter-spacing:-0.583680pt;}
.ls8e_c00131{letter-spacing:-0.468160pt;}
.ls86_c00131{letter-spacing:-0.462080pt;}
.ls7d_c00131{letter-spacing:-0.449920pt;}
.ls9b_c00131{letter-spacing:-0.437760pt;}
.lsa6_c00131{letter-spacing:-0.425600pt;}
.ls77_c00131{letter-spacing:-0.413440pt;}
.ls87_c00131{letter-spacing:-0.407360pt;}
.lsa3_c00131{letter-spacing:-0.401280pt;}
.ls74_c00131{letter-spacing:-0.376960pt;}
.ls97_c00131{letter-spacing:-0.352640pt;}
.ls84_c00131{letter-spacing:-0.334400pt;}
.ls89_c00131{letter-spacing:-0.322240pt;}
.ls90_c00131{letter-spacing:-0.310080pt;}
.ls7f_c00131{letter-spacing:-0.304000pt;}
.lsae_c00131{letter-spacing:-0.285760pt;}
.ls7c_c00131{letter-spacing:-0.261440pt;}
.ls82_c00131{letter-spacing:-0.237120pt;}
.lsa7_c00131{letter-spacing:-0.200640pt;}
.ls96_c00131{letter-spacing:-0.176320pt;}
.ls8c_c00131{letter-spacing:-0.164160pt;}
.ls94_c00131{letter-spacing:-0.145920pt;}
.ls91_c00131{letter-spacing:-0.139840pt;}
.ls83_c00131{letter-spacing:-0.133760pt;}
.lsad_c00131{letter-spacing:-0.127680pt;}
.lsa0_c00131{letter-spacing:-0.124320pt;}
.ls8a_c00131{letter-spacing:-0.109440pt;}
.ls93_c00131{letter-spacing:-0.103360pt;}
.ls8b_c00131{letter-spacing:-0.085120pt;}
.ls85_c00131{letter-spacing:-0.079040pt;}
.ls81_c00131{letter-spacing:-0.072960pt;}
.ls9a_c00131{letter-spacing:-0.060800pt;}
.ls95_c00131{letter-spacing:-0.036480pt;}
.ls73_c00131{letter-spacing:-0.024320pt;}
.ls72_c00131{letter-spacing:0.000000pt;}
.ls3_c00131{letter-spacing:0.006080pt;}
.ls8f_c00131{letter-spacing:0.018240pt;}
.ls16_c00131{letter-spacing:0.024320pt;}
.ls41_c00131{letter-spacing:0.030400pt;}
.ls69_c00131{letter-spacing:0.042560pt;}
.ls52_c00131{letter-spacing:0.048640pt;}
.ls60_c00131{letter-spacing:0.054720pt;}
.ls3f_c00131{letter-spacing:0.060800pt;}
.ls31_c00131{letter-spacing:0.072960pt;}
.ls6c_c00131{letter-spacing:0.079040pt;}
.ls58_c00131{letter-spacing:0.085120pt;}
.ls62_c00131{letter-spacing:0.097280pt;}
.ls23_c00131{letter-spacing:0.109440pt;}
.lsaf_c00131{letter-spacing:0.121600pt;}
.ls51_c00131{letter-spacing:0.127680pt;}
.ls28_c00131{letter-spacing:0.145920pt;}
.ls47_c00131{letter-spacing:0.148000pt;}
.ls5e_c00131{letter-spacing:0.164160pt;}
.ls4d_c00131{letter-spacing:0.176320pt;}
.ls61_c00131{letter-spacing:0.182400pt;}
.ls1f_c00131{letter-spacing:0.188480pt;}
.lsb0_c00131{letter-spacing:0.206720pt;}
.ls4e_c00131{letter-spacing:0.212800pt;}
.ls34_c00131{letter-spacing:0.231040pt;}
.ls57_c00131{letter-spacing:0.237120pt;}
.ls3e_c00131{letter-spacing:0.243200pt;}
.ls4a_c00131{letter-spacing:0.249280pt;}
.ls6f_c00131{letter-spacing:0.255360pt;}
.ls22_c00131{letter-spacing:0.261440pt;}
.ls19_c00131{letter-spacing:0.273600pt;}
.ls3b_c00131{letter-spacing:0.279680pt;}
.ls40_c00131{letter-spacing:0.285760pt;}
.ls1a_c00131{letter-spacing:0.291840pt;}
.ls4_c00131{letter-spacing:0.297920pt;}
.lsf_c00131{letter-spacing:0.316160pt;}
.ls8_c00131{letter-spacing:0.322240pt;}
.ls25_c00131{letter-spacing:0.328320pt;}
.ls63_c00131{letter-spacing:0.334400pt;}
.ls6b_c00131{letter-spacing:0.340480pt;}
.ls66_c00131{letter-spacing:0.346560pt;}
.ls1e_c00131{letter-spacing:0.358720pt;}
.ls2d_c00131{letter-spacing:0.370880pt;}
.ls6e_c00131{letter-spacing:0.383040pt;}
.ls5a_c00131{letter-spacing:0.389120pt;}
.ls67_c00131{letter-spacing:0.395200pt;}
.ls21_c00131{letter-spacing:0.413440pt;}
.ls88_c00131{letter-spacing:0.425600pt;}
.ls2_c00131{letter-spacing:0.431680pt;}
.ls5d_c00131{letter-spacing:0.437760pt;}
.ls59_c00131{letter-spacing:0.443840pt;}
.ls17_c00131{letter-spacing:0.456000pt;}
.ls5c_c00131{letter-spacing:0.468160pt;}
.ls9c_c00131{letter-spacing:0.480320pt;}
.ls44_c00131{letter-spacing:0.486400pt;}
.ls5b_c00131{letter-spacing:0.492480pt;}
.ls37_c00131{letter-spacing:0.498560pt;}
.ls27_c00131{letter-spacing:0.504640pt;}
.ls24_c00131{letter-spacing:0.510720pt;}
.lsa5_c00131{letter-spacing:0.516800pt;}
.ls10_c00131{letter-spacing:0.522880pt;}
.ls11_c00131{letter-spacing:0.528960pt;}
.ls9e_c00131{letter-spacing:0.535040pt;}
.ls7_c00131{letter-spacing:0.541120pt;}
.ls2e_c00131{letter-spacing:0.547200pt;}
.ls4f_c00131{letter-spacing:0.553280pt;}
.ls1b_c00131{letter-spacing:0.559360pt;}
.ls43_c00131{letter-spacing:0.565440pt;}
.lsac_c00131{letter-spacing:0.571520pt;}
.ls1_c00131{letter-spacing:0.577600pt;}
.ls54_c00131{letter-spacing:0.601920pt;}
.lsa4_c00131{letter-spacing:0.608000pt;}
.ls39_c00131{letter-spacing:0.614080pt;}
.ls65_c00131{letter-spacing:0.620160pt;}
.ls29_c00131{letter-spacing:0.626240pt;}
.ls42_c00131{letter-spacing:0.638400pt;}
.ls49_c00131{letter-spacing:0.650560pt;}
.ls14_c00131{letter-spacing:0.668800pt;}
.ls35_c00131{letter-spacing:0.674880pt;}
.ls2b_c00131{letter-spacing:0.693120pt;}
.ls15_c00131{letter-spacing:0.723520pt;}
.ls50_c00131{letter-spacing:0.729600pt;}
.ls36_c00131{letter-spacing:0.747840pt;}
.ls13_c00131{letter-spacing:0.766080pt;}
.ls6_c00131{letter-spacing:0.784320pt;}
.ls45_c00131{letter-spacing:0.814720pt;}
.ls20_c00131{letter-spacing:0.826880pt;}
.ls9_c00131{letter-spacing:0.857280pt;}
.ls46_c00131{letter-spacing:0.863360pt;}
.ls2a_c00131{letter-spacing:0.887680pt;}
.ls2f_c00131{letter-spacing:0.899840pt;}
.ls30_c00131{letter-spacing:0.912000pt;}
.ls3a_c00131{letter-spacing:0.930240pt;}
.ls56_c00131{letter-spacing:0.942400pt;}
.ls3d_c00131{letter-spacing:0.948480pt;}
.ls70_c00131{letter-spacing:0.995520pt;}
.ls4b_c00131{letter-spacing:1.000480pt;}
.ls4c_c00131{letter-spacing:1.009280pt;}
.ls48_c00131{letter-spacing:1.012320pt;}
.ls0_c00131{letter-spacing:1.021440pt;}
.ls38_c00131{letter-spacing:1.051840pt;}
.ls3c_c00131{letter-spacing:1.070080pt;}
.ls68_c00131{letter-spacing:1.107040pt;}
.ls2c_c00131{letter-spacing:1.130880pt;}
.ls33_c00131{letter-spacing:1.136960pt;}
.ls53_c00131{letter-spacing:1.155200pt;}
.lse_c00131{letter-spacing:1.178080pt;}
.ls6a_c00131{letter-spacing:1.185600pt;}
.ls32_c00131{letter-spacing:1.313280pt;}
.lsc_c00131{letter-spacing:1.403040pt;}
.lsb_c00131{letter-spacing:1.426720pt;}
.ls5f_c00131{letter-spacing:1.440960pt;}
.ls1c_c00131{letter-spacing:1.465280pt;}
.lsd_c00131{letter-spacing:1.468160pt;}
.ls64_c00131{letter-spacing:1.544320pt;}
.lsa_c00131{letter-spacing:1.545120pt;}
.ls55_c00131{letter-spacing:1.611200pt;}
.ls6d_c00131{letter-spacing:1.842240pt;}
.ls1d_c00131{letter-spacing:1.957760pt;}
.ls26_c00131{letter-spacing:1.986560pt;}
.ls18_c00131{letter-spacing:2.000320pt;}
.ls9d_c00131{letter-spacing:2.182720pt;}
.ls5_c00131{letter-spacing:2.547520pt;}
.ls12_c00131{letter-spacing:2.632640pt;}
.ls9f_c00131{letter-spacing:2.960000pt;}
.ls80_c00131{letter-spacing:3.040000pt;}
.ws2_c00131{word-spacing:-0.327733pt;}
.ws3_c00131{word-spacing:0.000000pt;}
.ws0_c00131{word-spacing:3.703680pt;}
.ws1_c00131{word-spacing:13.899733pt;}
._13_c00131{margin-left:-5.113280pt;}
._6_c00131{margin-left:-3.629760pt;}
._b_c00131{margin-left:-2.572693pt;}
._a_c00131{margin-left:-0.953120pt;}
._d_c00131{width:1.270720pt;}
._7_c00131{width:2.213120pt;}
._8_c00131{width:3.599360pt;}
._12_c00131{width:4.504693pt;}
._c_c00131{width:5.532800pt;}
._9_c00131{width:7.113600pt;}
._4_c00131{width:8.210773pt;}
._0_c00131{width:9.375360pt;}
._11_c00131{width:10.372480pt;}
._1_c00131{width:11.965440pt;}
._10_c00131{width:12.877440pt;}
._2_c00131{width:14.184640pt;}
._e_c00131{width:16.622720pt;}
._f_c00131{width:18.021120pt;}
._3_c00131{width:19.608000pt;}
._5_c00131{width:23.905920pt;}
.fs5_c00131{font-size:50.133333pt;}
.fs0_c00131{font-size:54.400000pt;}
.fs4_c00131{font-size:58.666667pt;}
.fs2_c00131{font-size:59.200000pt;}
.fs1_c00131{font-size:60.800000pt;}
.fs3_c00131{font-size:68.266667pt;}
.y0_c00131{bottom:0.000000pt;}
.y24_c00131{bottom:62.080000pt;}
.y23_c00131{bottom:130.892533pt;}
.y22_c00131{bottom:157.766133pt;}
.y20_c00131{bottom:185.288533pt;}
.y21_c00131{bottom:185.293333pt;}
.y1f_c00131{bottom:213.773333pt;}
.y1d_c00131{bottom:269.439733pt;}
.y1e_c00131{bottom:269.453333pt;}
.y1c_c00131{bottom:297.286133pt;}
.y1b_c00131{bottom:324.808800pt;}
.y1a_c00131{bottom:352.634933pt;}
.y19_c00131{bottom:380.800533pt;}
.y18_c00131{bottom:408.646933pt;}
.y17_c00131{bottom:436.493333pt;}
.y15_c00131{bottom:491.836800pt;}
.y16_c00131{bottom:491.840000pt;}
.y13_c00131{bottom:547.823200pt;}
.y14_c00131{bottom:547.840000pt;}
.y12_c00131{bottom:575.350400pt;}
.y11_c00131{bottom:603.196800pt;}
.y10_c00131{bottom:631.362400pt;}
.yf_c00131{bottom:659.208800pt;}
.yd_c00131{bottom:687.033600pt;}
.ye_c00131{bottom:687.040000pt;}
.yb_c00131{bottom:714.850933pt;}
.yc_c00131{bottom:714.880000pt;}
.ya_c00131{bottom:742.378133pt;}
.y9_c00131{bottom:770.558933pt;}
.y8_c00131{bottom:798.086133pt;}
.y7_c00131{bottom:825.613333pt;}
.y6_c00131{bottom:881.280000pt;}
.y5_c00131{bottom:909.120000pt;}
.y3_c00131{bottom:965.113600pt;}
.y4_c00131{bottom:965.120000pt;}
.y2_c00131{bottom:992.960000pt;}
.y1_c00131{bottom:1059.533333pt;}
.hb_c00131{height:49.203125pt;}
.h2_c00131{height:53.390625pt;}
.h5_c00131{height:58.072656pt;}
.h3_c00131{height:59.671875pt;}
.h6_c00131{height:59.684675pt;}
.h8_c00131{height:59.690008pt;}
.h7_c00131{height:59.692142pt;}
.h9_c00131{height:59.726275pt;}
.ha_c00131{height:61.187500pt;}
.h4_c00131{height:67.000000pt;}
.h1_c00131{height:1122.666667pt;}
.h0_c00131{height:1122.880000pt;}
.w1_c00131{width:793.333333pt;}
.w0_c00131{width:793.600000pt;}
.x0_c00131{left:0.000000pt;}
.x1a_c00131{left:110.821333pt;}
.x17_c00131{left:112.586933pt;}
.x1_c00131{left:113.533333pt;}
.x16_c00131{left:160.120000pt;}
.x5_c00131{left:161.093333pt;}
.x2_c00131{left:162.173333pt;}
.xb_c00131{left:247.293333pt;}
.xc_c00131{left:269.733333pt;}
.xd_c00131{left:312.893333pt;}
.xe_c00131{left:332.773333pt;}
.x3_c00131{left:337.333333pt;}
.x4_c00131{left:352.146667pt;}
.x13_c00131{left:357.066667pt;}
.x1b_c00131{left:380.053333pt;}
.xf_c00131{left:383.853333pt;}
.x14_c00131{left:384.813333pt;}
.x6_c00131{left:391.546667pt;}
.x10_c00131{left:401.786667pt;}
.x7_c00131{left:421.026667pt;}
.x8_c00131{left:469.173333pt;}
.x18_c00131{left:479.106667pt;}
.x11_c00131{left:502.906667pt;}
.x19_c00131{left:505.413333pt;}
.x9_c00131{left:510.040000pt;}
.x12_c00131{left:517.666667pt;}
.xa_c00131{left:521.760000pt;}
.x15_c00131{left:623.946667pt;}
}





/* 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_c00132 {
    display:none;
  }
  .loading-indicator_c00132.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00132 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_c00132 { 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_c00132" -> "#page-container .classname_c00132")
 */
.pf_c00132 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00132 { /* 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_c00132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00132 { /* 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_c00132 { /* 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_c00132 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00132 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00132 {overflow:visible;}
  }
}
.c_c00132 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00132 { /* 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_c00132:after { /* webkit #35443 */
  content: '';
}
.t_c00132:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00132 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 */
}
.__c00132 { /* 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_c00132 { /* info for Javascript */
  display:none;
}
.l_c00132 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00132 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00132 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00132: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_c00132 {
    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_c00132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00132.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_c00132 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00132;src:url('chunks/assets/font_a50e1d4692fc84e99103accf.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.284668;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_c00132;src:url('chunks/assets/font_0a3d1ca700ce0115da759aaf.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.284180;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_c00132;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;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;}
.mc_c00132{transform:matrix(0.218088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218088,0.000000,0.000000,0.250000,0,0);}
.md_c00132{transform:matrix(0.220904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220904,0.000000,0.000000,0.250000,0,0);}
.me_c00132{transform:matrix(0.221357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221357,0.000000,0.000000,0.250000,0,0);}
.mb_c00132{transform:matrix(0.224479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224479,0.000000,0.000000,0.250000,0,0);}
.m11_c00132{transform:matrix(0.227988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227988,0.000000,0.000000,0.250000,0,0);}
.m8_c00132{transform:matrix(0.228717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228717,0.000000,0.000000,0.250000,0,0);}
.m9_c00132{transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243619,0.000000,0.000000,0.250000,0,0);}
.m0_c00132{transform:matrix(0.244918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244918,0.000000,0.000000,0.250000,0,0);}
.m6_c00132{transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);}
.m5_c00132{transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);}
.mf_c00132{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m2_c00132{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m7_c00132{transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);}
.m3_c00132{transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);}
.ma_c00132{transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);}
.m4_c00132{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m1_c00132{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);}
.m10_c00132{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls8e_c00132{letter-spacing:-2.730000px;}
.ls74_c00132{letter-spacing:-2.562000px;}
.ls4d_c00132{letter-spacing:-2.457000px;}
.ls45_c00132{letter-spacing:-2.415000px;}
.ls94_c00132{letter-spacing:-2.394000px;}
.ls38_c00132{letter-spacing:-2.373000px;}
.ls66_c00132{letter-spacing:-2.295540px;}
.ls92_c00132{letter-spacing:-2.204280px;}
.ls9e_c00132{letter-spacing:-2.142000px;}
.ls58_c00132{letter-spacing:-2.120040px;}
.ls54_c00132{letter-spacing:-2.035800px;}
.ls7d_c00132{letter-spacing:-1.993680px;}
.ls65_c00132{letter-spacing:-1.874340px;}
.ls78_c00132{letter-spacing:-1.866600px;}
.lsa1_c00132{letter-spacing:-1.830000px;}
.ls79_c00132{letter-spacing:-1.815360px;}
.ls76_c00132{letter-spacing:-1.793400px;}
.ls51_c00132{letter-spacing:-1.747980px;}
.ls59_c00132{letter-spacing:-1.684800px;}
.ls5e_c00132{letter-spacing:-1.642680px;}
.ls96_c00132{letter-spacing:-1.628640px;}
.ls42_c00132{letter-spacing:-1.593540px;}
.ls62_c00132{letter-spacing:-1.579500px;}
.ls61_c00132{letter-spacing:-1.516320px;}
.ls9b_c00132{letter-spacing:-1.509300px;}
.ls7a_c00132{letter-spacing:-1.485960px;}
.ls75_c00132{letter-spacing:-1.376160px;}
.ls50_c00132{letter-spacing:-1.361880px;}
.ls77_c00132{letter-spacing:-1.295640px;}
.ls8c_c00132{letter-spacing:-1.235520px;}
.ls91_c00132{letter-spacing:-1.172340px;}
.ls5c_c00132{letter-spacing:-1.151280px;}
.ls9f_c00132{letter-spacing:-1.116180px;}
.ls53_c00132{letter-spacing:-1.003860px;}
.ls3e_c00132{letter-spacing:-0.989820px;}
.ls4b_c00132{letter-spacing:-0.968760px;}
.ls55_c00132{letter-spacing:-0.919620px;}
.ls82_c00132{letter-spacing:-0.877500px;}
.ls57_c00132{letter-spacing:-0.821340px;}
.ls8b_c00132{letter-spacing:-0.807300px;}
.ls9a_c00132{letter-spacing:-0.766080px;}
.ls7c_c00132{letter-spacing:-0.765180px;}
.ls5d_c00132{letter-spacing:-0.751140px;}
.ls80_c00132{letter-spacing:-0.744120px;}
.ls5f_c00132{letter-spacing:-0.730080px;}
.ls3a_c00132{letter-spacing:-0.673920px;}
.ls69_c00132{letter-spacing:-0.666900px;}
.ls85_c00132{letter-spacing:-0.645840px;}
.ls9c_c00132{letter-spacing:-0.617760px;}
.ls8d_c00132{letter-spacing:-0.610740px;}
.ls5b_c00132{letter-spacing:-0.561600px;}
.ls43_c00132{letter-spacing:-0.554580px;}
.ls7f_c00132{letter-spacing:-0.540540px;}
.ls4f_c00132{letter-spacing:-0.526500px;}
.ls7e_c00132{letter-spacing:-0.512460px;}
.ls88_c00132{letter-spacing:-0.484380px;}
.ls41_c00132{letter-spacing:-0.470340px;}
.ls86_c00132{letter-spacing:-0.435240px;}
.ls6a_c00132{letter-spacing:-0.428220px;}
.ls68_c00132{letter-spacing:-0.421200px;}
.ls49_c00132{letter-spacing:-0.414180px;}
.ls46_c00132{letter-spacing:-0.407160px;}
.ls52_c00132{letter-spacing:-0.400140px;}
.lsa3_c00132{letter-spacing:-0.393300px;}
.ls4c_c00132{letter-spacing:-0.386100px;}
.ls4a_c00132{letter-spacing:-0.379080px;}
.ls70_c00132{letter-spacing:-0.365040px;}
.lsa0_c00132{letter-spacing:-0.358020px;}
.ls48_c00132{letter-spacing:-0.351000px;}
.ls83_c00132{letter-spacing:-0.343980px;}
.ls3f_c00132{letter-spacing:-0.336960px;}
.ls47_c00132{letter-spacing:-0.329940px;}
.ls63_c00132{letter-spacing:-0.322920px;}
.ls39_c00132{letter-spacing:-0.315900px;}
.ls71_c00132{letter-spacing:-0.308880px;}
.ls4e_c00132{letter-spacing:-0.301860px;}
.ls8f_c00132{letter-spacing:-0.294840px;}
.ls93_c00132{letter-spacing:-0.280800px;}
.ls97_c00132{letter-spacing:-0.273780px;}
.ls40_c00132{letter-spacing:-0.259740px;}
.ls6e_c00132{letter-spacing:-0.238680px;}
.ls5a_c00132{letter-spacing:-0.231660px;}
.ls72_c00132{letter-spacing:-0.210600px;}
.ls9d_c00132{letter-spacing:-0.203580px;}
.ls60_c00132{letter-spacing:-0.196560px;}
.ls3d_c00132{letter-spacing:-0.182520px;}
.ls84_c00132{letter-spacing:-0.175500px;}
.ls87_c00132{letter-spacing:-0.168480px;}
.ls64_c00132{letter-spacing:-0.140400px;}
.ls6f_c00132{letter-spacing:-0.133380px;}
.ls99_c00132{letter-spacing:-0.116280px;}
.ls67_c00132{letter-spacing:-0.112320px;}
.ls73_c00132{letter-spacing:-0.105300px;}
.ls90_c00132{letter-spacing:-0.098280px;}
.ls3b_c00132{letter-spacing:-0.077220px;}
.ls7b_c00132{letter-spacing:-0.070200px;}
.ls81_c00132{letter-spacing:-0.063180px;}
.ls6b_c00132{letter-spacing:-0.042120px;}
.ls6d_c00132{letter-spacing:-0.028080px;}
.ls8a_c00132{letter-spacing:-0.021060px;}
.ls44_c00132{letter-spacing:-0.014040px;}
.ls6c_c00132{letter-spacing:-0.007020px;}
.ls3c_c00132{letter-spacing:0.000000px;}
.ls17_c00132{letter-spacing:0.007020px;}
.ls23_c00132{letter-spacing:0.014040px;}
.ls1b_c00132{letter-spacing:0.014640px;}
.ls5_c00132{letter-spacing:0.021060px;}
.ls1a_c00132{letter-spacing:0.042120px;}
.ls95_c00132{letter-spacing:0.077220px;}
.ls1d_c00132{letter-spacing:0.084240px;}
.ls20_c00132{letter-spacing:0.105300px;}
.ls15_c00132{letter-spacing:0.119340px;}
.ls89_c00132{letter-spacing:0.154440px;}
.ls24_c00132{letter-spacing:0.203580px;}
.ls6_c00132{letter-spacing:0.217620px;}
.ls1e_c00132{letter-spacing:0.231660px;}
.ls1f_c00132{letter-spacing:0.238680px;}
.ls9_c00132{letter-spacing:0.245700px;}
.ls29_c00132{letter-spacing:0.259740px;}
.ls31_c00132{letter-spacing:0.273780px;}
.ls28_c00132{letter-spacing:0.315900px;}
.ls18_c00132{letter-spacing:0.343980px;}
.ls26_c00132{letter-spacing:0.400140px;}
.ls3_c00132{letter-spacing:0.407160px;}
.ls22_c00132{letter-spacing:0.421200px;}
.ls2b_c00132{letter-spacing:0.456300px;}
.ls2f_c00132{letter-spacing:0.470340px;}
.ls1_c00132{letter-spacing:0.478800px;}
.ls27_c00132{letter-spacing:0.491400px;}
.lsd_c00132{letter-spacing:0.499320px;}
.ls36_c00132{letter-spacing:0.505440px;}
.ls56_c00132{letter-spacing:0.554580px;}
.ls16_c00132{letter-spacing:0.561600px;}
.ls19_c00132{letter-spacing:0.603720px;}
.ls2e_c00132{letter-spacing:0.610740px;}
.ls2_c00132{letter-spacing:0.638820px;}
.ls0_c00132{letter-spacing:0.656640px;}
.ls25_c00132{letter-spacing:0.659880px;}
.ls35_c00132{letter-spacing:0.663480px;}
.ls34_c00132{letter-spacing:0.673920px;}
.ls1c_c00132{letter-spacing:0.680940px;}
.ls14_c00132{letter-spacing:0.737100px;}
.ls2d_c00132{letter-spacing:0.820800px;}
.lsa2_c00132{letter-spacing:0.926640px;}
.ls12_c00132{letter-spacing:0.984960px;}
.ls30_c00132{letter-spacing:1.010880px;}
.ls33_c00132{letter-spacing:1.073880px;}
.ls21_c00132{letter-spacing:1.172340px;}
.lsf_c00132{letter-spacing:1.193400px;}
.lse_c00132{letter-spacing:1.224360px;}
.lsc_c00132{letter-spacing:1.265400px;}
.ls10_c00132{letter-spacing:1.272240px;}
.lsb_c00132{letter-spacing:1.313280px;}
.ls37_c00132{letter-spacing:1.425060px;}
.ls11_c00132{letter-spacing:1.696320px;}
.ls2a_c00132{letter-spacing:1.769040px;}
.ls2c_c00132{letter-spacing:1.839240px;}
.ls13_c00132{letter-spacing:2.162160px;}
.ls4_c00132{letter-spacing:2.183220px;}
.ls7_c00132{letter-spacing:2.277720px;}
.ls8_c00132{letter-spacing:2.523960px;}
.ls32_c00132{letter-spacing:3.392640px;}
.lsa_c00132{letter-spacing:3.404700px;}
.ls98_c00132{letter-spacing:3.420000px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{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__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00132{word-spacing:0.000000px;}
.ws2_c00132{word-spacing:9.852480px;}
.ws1_c00132{word-spacing:10.094160px;}
.ws3_c00132{word-spacing:16.077600px;}
.ws0_c00132{word-spacing:19.851600px;}
._e_c00132{margin-left:-8.950500px;}
._9_c00132{margin-left:-6.928920px;}
._11_c00132{margin-left:-4.569000px;}
._f_c00132{margin-left:-3.502080px;}
._1b_c00132{margin-left:-2.501040px;}
._10_c00132{margin-left:-1.475160px;}
._4_c00132{width:1.242540px;}
._8_c00132{width:2.878200px;}
._19_c00132{width:4.078620px;}
._5_c00132{width:5.194800px;}
._1a_c00132{width:6.219720px;}
._3_c00132{width:7.349940px;}
._7_c00132{width:8.353800px;}
._6_c00132{width:9.638460px;}
._12_c00132{width:11.372400px;}
._16_c00132{width:12.551760px;}
._17_c00132{width:13.632840px;}
._2_c00132{width:14.917500px;}
._a_c00132{width:16.110900px;}
._18_c00132{width:18.216900px;}
._1_c00132{width:19.480500px;}
._c_c00132{width:20.533500px;}
._0_c00132{width:21.983760px;}
._b_c00132{width:23.439780px;}
._14_c00132{width:25.264980px;}
._d_c00132{width:26.668980px;}
._13_c00132{width:28.950480px;}
._15_c00132{width:30.059640px;}
.fc0_c00132{color:transparent;}
.fs7_c00132{font-size:57.000000px;}
.fs6_c00132{font-size:61.200000px;}
.fs0_c00132{font-size:67.800000px;}
.fs1_c00132{font-size:68.400000px;}
.fs3_c00132{font-size:69.000000px;}
.fs2_c00132{font-size:70.200000px;}
.fs4_c00132{font-size:73.200000px;}
.fs5_c00132{font-size:78.000000px;}
.y0_c00132{bottom:0.000000px;}
.y25_c00132{bottom:69.495006px;}
.y24_c00132{bottom:144.360006px;}
.y23_c00132{bottom:206.271606px;}
.y22_c00132{bottom:239.055006px;}
.y21_c00132{bottom:239.060406px;}
.y1f_c00132{bottom:302.768256px;}
.y20_c00132{bottom:302.775006px;}
.y1e_c00132{bottom:334.095006px;}
.y1d_c00132{bottom:334.097256px;}
.y1b_c00132{bottom:365.768256px;}
.y1c_c00132{bottom:365.775006px;}
.y19_c00132{bottom:397.090806px;}
.y1a_c00132{bottom:397.095006px;}
.y18_c00132{bottom:428.400006px;}
.y17_c00132{bottom:428.401506px;}
.y16_c00132{bottom:459.728256px;}
.y15_c00132{bottom:491.055006px;}
.y14_c00132{bottom:522.375006px;}
.y13_c00132{bottom:553.315506px;}
.y12_c00132{bottom:585.010806px;}
.y11_c00132{bottom:616.320006px;}
.y10_c00132{bottom:679.320006px;}
.yf_c00132{bottom:710.640006px;}
.ye_c00132{bottom:741.975006px;}
.yd_c00132{bottom:772.935006px;}
.yc_c00132{bottom:804.255006px;}
.ya_c00132{bottom:867.608256px;}
.yb_c00132{bottom:867.615006px;}
.y8_c00132{bottom:898.930056px;}
.y9_c00132{bottom:898.935006px;}
.y7_c00132{bottom:961.215006px;}
.y6_c00132{bottom:961.217256px;}
.y5_c00132{bottom:992.895006px;}
.y4_c00132{bottom:1055.895006px;}
.y3_c00132{bottom:1087.215006px;}
.y2_c00132{bottom:1118.895006px;}
.y1_c00132{bottom:1194.135006px;}
.hc_c00132{height:55.942383px;}
.ha_c00132{height:60.064453px;}
.h2_c00132{height:66.541992px;}
.h7_c00132{height:67.097461px;}
.h9_c00132{height:68.875861px;}
.h3_c00132{height:68.897461px;}
.h8_c00132{height:68.924461px;}
.hb_c00132{height:68.931061px;}
.h5_c00132{height:71.841797px;}
.h4_c00132{height:71.964844px;}
.h6_c00132{height:76.552734px;}
.h1_c00132{height:1263.000000px;}
.h0_c00132{height:1263.240006px;}
.w1_c00132{width:892.500000px;}
.w0_c00132{width:892.799998px;}
.x0_c00132{left:0.000000px;}
.x28_c00132{left:117.568048px;}
.x1b_c00132{left:118.797448px;}
.x5_c00132{left:121.574999px;}
.x1_c00132{left:123.404999px;}
.x2d_c00132{left:171.530398px;}
.x18_c00132{left:173.324998px;}
.xf_c00132{left:174.404999px;}
.x7_c00132{left:175.923898px;}
.x2_c00132{left:176.924998px;}
.x8_c00132{left:217.559998px;}
.x9_c00132{left:234.884998px;}
.x6_c00132{left:251.444999px;}
.x1c_c00132{left:258.389999px;}
.xa_c00132{left:262.334998px;}
.xd_c00132{left:321.959999px;}
.xe_c00132{left:338.924999px;}
.xb_c00132{left:367.004999px;}
.x1d_c00132{left:380.684999px;}
.xc_c00132{left:398.684999px;}
.x1e_c00132{left:402.434999px;}
.x30_c00132{left:422.504998px;}
.x29_c00132{left:427.604998px;}
.x25_c00132{left:447.404998px;}
.x2a_c00132{left:459.284998px;}
.x19_c00132{left:469.604998px;}
.x11_c00132{left:486.164999px;}
.x3_c00132{left:491.579998px;}
.x1a_c00132{left:497.984998px;}
.x14_c00132{left:502.724999px;}
.x4_c00132{left:509.939999px;}
.x12_c00132{left:514.904998px;}
.x15_c00132{left:531.479999px;}
.x16_c00132{left:551.849999px;}
.x2b_c00132{left:554.924999px;}
.x2c_c00132{left:576.599999px;}
.x13_c00132{left:580.799998px;}
.x21_c00132{left:597.164999px;}
.x2e_c00132{left:599.654998px;}
.x17_c00132{left:601.319999px;}
.x22_c00132{left:625.139998px;}
.x2f_c00132{left:634.874998px;}
.x26_c00132{left:639.644999px;}
.x27_c00132{left:666.689999px;}
.x1f_c00132{left:696.044999px;}
.x23_c00132{left:700.124998px;}
.x10_c00132{left:708.959998px;}
.x20_c00132{left:718.154998px;}
.x24_c00132{left:723.074998px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls8e_c00132{letter-spacing:-2.426667pt;}
.ls74_c00132{letter-spacing:-2.277333pt;}
.ls4d_c00132{letter-spacing:-2.184000pt;}
.ls45_c00132{letter-spacing:-2.146667pt;}
.ls94_c00132{letter-spacing:-2.128000pt;}
.ls38_c00132{letter-spacing:-2.109333pt;}
.ls66_c00132{letter-spacing:-2.040480pt;}
.ls92_c00132{letter-spacing:-1.959360pt;}
.ls9e_c00132{letter-spacing:-1.904000pt;}
.ls58_c00132{letter-spacing:-1.884480pt;}
.ls54_c00132{letter-spacing:-1.809600pt;}
.ls7d_c00132{letter-spacing:-1.772160pt;}
.ls65_c00132{letter-spacing:-1.666080pt;}
.ls78_c00132{letter-spacing:-1.659200pt;}
.lsa1_c00132{letter-spacing:-1.626667pt;}
.ls79_c00132{letter-spacing:-1.613653pt;}
.ls76_c00132{letter-spacing:-1.594133pt;}
.ls51_c00132{letter-spacing:-1.553760pt;}
.ls59_c00132{letter-spacing:-1.497600pt;}
.ls5e_c00132{letter-spacing:-1.460160pt;}
.ls96_c00132{letter-spacing:-1.447680pt;}
.ls42_c00132{letter-spacing:-1.416480pt;}
.ls62_c00132{letter-spacing:-1.404000pt;}
.ls61_c00132{letter-spacing:-1.347840pt;}
.ls9b_c00132{letter-spacing:-1.341600pt;}
.ls7a_c00132{letter-spacing:-1.320853pt;}
.ls75_c00132{letter-spacing:-1.223253pt;}
.ls50_c00132{letter-spacing:-1.210560pt;}
.ls77_c00132{letter-spacing:-1.151680pt;}
.ls8c_c00132{letter-spacing:-1.098240pt;}
.ls91_c00132{letter-spacing:-1.042080pt;}
.ls5c_c00132{letter-spacing:-1.023360pt;}
.ls9f_c00132{letter-spacing:-0.992160pt;}
.ls53_c00132{letter-spacing:-0.892320pt;}
.ls3e_c00132{letter-spacing:-0.879840pt;}
.ls4b_c00132{letter-spacing:-0.861120pt;}
.ls55_c00132{letter-spacing:-0.817440pt;}
.ls82_c00132{letter-spacing:-0.780000pt;}
.ls57_c00132{letter-spacing:-0.730080pt;}
.ls8b_c00132{letter-spacing:-0.717600pt;}
.ls9a_c00132{letter-spacing:-0.680960pt;}
.ls7c_c00132{letter-spacing:-0.680160pt;}
.ls5d_c00132{letter-spacing:-0.667680pt;}
.ls80_c00132{letter-spacing:-0.661440pt;}
.ls5f_c00132{letter-spacing:-0.648960pt;}
.ls3a_c00132{letter-spacing:-0.599040pt;}
.ls69_c00132{letter-spacing:-0.592800pt;}
.ls85_c00132{letter-spacing:-0.574080pt;}
.ls9c_c00132{letter-spacing:-0.549120pt;}
.ls8d_c00132{letter-spacing:-0.542880pt;}
.ls5b_c00132{letter-spacing:-0.499200pt;}
.ls43_c00132{letter-spacing:-0.492960pt;}
.ls7f_c00132{letter-spacing:-0.480480pt;}
.ls4f_c00132{letter-spacing:-0.468000pt;}
.ls7e_c00132{letter-spacing:-0.455520pt;}
.ls88_c00132{letter-spacing:-0.430560pt;}
.ls41_c00132{letter-spacing:-0.418080pt;}
.ls86_c00132{letter-spacing:-0.386880pt;}
.ls6a_c00132{letter-spacing:-0.380640pt;}
.ls68_c00132{letter-spacing:-0.374400pt;}
.ls49_c00132{letter-spacing:-0.368160pt;}
.ls46_c00132{letter-spacing:-0.361920pt;}
.ls52_c00132{letter-spacing:-0.355680pt;}
.lsa3_c00132{letter-spacing:-0.349600pt;}
.ls4c_c00132{letter-spacing:-0.343200pt;}
.ls4a_c00132{letter-spacing:-0.336960pt;}
.ls70_c00132{letter-spacing:-0.324480pt;}
.lsa0_c00132{letter-spacing:-0.318240pt;}
.ls48_c00132{letter-spacing:-0.312000pt;}
.ls83_c00132{letter-spacing:-0.305760pt;}
.ls3f_c00132{letter-spacing:-0.299520pt;}
.ls47_c00132{letter-spacing:-0.293280pt;}
.ls63_c00132{letter-spacing:-0.287040pt;}
.ls39_c00132{letter-spacing:-0.280800pt;}
.ls71_c00132{letter-spacing:-0.274560pt;}
.ls4e_c00132{letter-spacing:-0.268320pt;}
.ls8f_c00132{letter-spacing:-0.262080pt;}
.ls93_c00132{letter-spacing:-0.249600pt;}
.ls97_c00132{letter-spacing:-0.243360pt;}
.ls40_c00132{letter-spacing:-0.230880pt;}
.ls6e_c00132{letter-spacing:-0.212160pt;}
.ls5a_c00132{letter-spacing:-0.205920pt;}
.ls72_c00132{letter-spacing:-0.187200pt;}
.ls9d_c00132{letter-spacing:-0.180960pt;}
.ls60_c00132{letter-spacing:-0.174720pt;}
.ls3d_c00132{letter-spacing:-0.162240pt;}
.ls84_c00132{letter-spacing:-0.156000pt;}
.ls87_c00132{letter-spacing:-0.149760pt;}
.ls64_c00132{letter-spacing:-0.124800pt;}
.ls6f_c00132{letter-spacing:-0.118560pt;}
.ls99_c00132{letter-spacing:-0.103360pt;}
.ls67_c00132{letter-spacing:-0.099840pt;}
.ls73_c00132{letter-spacing:-0.093600pt;}
.ls90_c00132{letter-spacing:-0.087360pt;}
.ls3b_c00132{letter-spacing:-0.068640pt;}
.ls7b_c00132{letter-spacing:-0.062400pt;}
.ls81_c00132{letter-spacing:-0.056160pt;}
.ls6b_c00132{letter-spacing:-0.037440pt;}
.ls6d_c00132{letter-spacing:-0.024960pt;}
.ls8a_c00132{letter-spacing:-0.018720pt;}
.ls44_c00132{letter-spacing:-0.012480pt;}
.ls6c_c00132{letter-spacing:-0.006240pt;}
.ls3c_c00132{letter-spacing:0.000000pt;}
.ls17_c00132{letter-spacing:0.006240pt;}
.ls23_c00132{letter-spacing:0.012480pt;}
.ls1b_c00132{letter-spacing:0.013013pt;}
.ls5_c00132{letter-spacing:0.018720pt;}
.ls1a_c00132{letter-spacing:0.037440pt;}
.ls95_c00132{letter-spacing:0.068640pt;}
.ls1d_c00132{letter-spacing:0.074880pt;}
.ls20_c00132{letter-spacing:0.093600pt;}
.ls15_c00132{letter-spacing:0.106080pt;}
.ls89_c00132{letter-spacing:0.137280pt;}
.ls24_c00132{letter-spacing:0.180960pt;}
.ls6_c00132{letter-spacing:0.193440pt;}
.ls1e_c00132{letter-spacing:0.205920pt;}
.ls1f_c00132{letter-spacing:0.212160pt;}
.ls9_c00132{letter-spacing:0.218400pt;}
.ls29_c00132{letter-spacing:0.230880pt;}
.ls31_c00132{letter-spacing:0.243360pt;}
.ls28_c00132{letter-spacing:0.280800pt;}
.ls18_c00132{letter-spacing:0.305760pt;}
.ls26_c00132{letter-spacing:0.355680pt;}
.ls3_c00132{letter-spacing:0.361920pt;}
.ls22_c00132{letter-spacing:0.374400pt;}
.ls2b_c00132{letter-spacing:0.405600pt;}
.ls2f_c00132{letter-spacing:0.418080pt;}
.ls1_c00132{letter-spacing:0.425600pt;}
.ls27_c00132{letter-spacing:0.436800pt;}
.lsd_c00132{letter-spacing:0.443840pt;}
.ls36_c00132{letter-spacing:0.449280pt;}
.ls56_c00132{letter-spacing:0.492960pt;}
.ls16_c00132{letter-spacing:0.499200pt;}
.ls19_c00132{letter-spacing:0.536640pt;}
.ls2e_c00132{letter-spacing:0.542880pt;}
.ls2_c00132{letter-spacing:0.567840pt;}
.ls0_c00132{letter-spacing:0.583680pt;}
.ls25_c00132{letter-spacing:0.586560pt;}
.ls35_c00132{letter-spacing:0.589760pt;}
.ls34_c00132{letter-spacing:0.599040pt;}
.ls1c_c00132{letter-spacing:0.605280pt;}
.ls14_c00132{letter-spacing:0.655200pt;}
.ls2d_c00132{letter-spacing:0.729600pt;}
.lsa2_c00132{letter-spacing:0.823680pt;}
.ls12_c00132{letter-spacing:0.875520pt;}
.ls30_c00132{letter-spacing:0.898560pt;}
.ls33_c00132{letter-spacing:0.954560pt;}
.ls21_c00132{letter-spacing:1.042080pt;}
.lsf_c00132{letter-spacing:1.060800pt;}
.lse_c00132{letter-spacing:1.088320pt;}
.lsc_c00132{letter-spacing:1.124800pt;}
.ls10_c00132{letter-spacing:1.130880pt;}
.lsb_c00132{letter-spacing:1.167360pt;}
.ls37_c00132{letter-spacing:1.266720pt;}
.ls11_c00132{letter-spacing:1.507840pt;}
.ls2a_c00132{letter-spacing:1.572480pt;}
.ls2c_c00132{letter-spacing:1.634880pt;}
.ls13_c00132{letter-spacing:1.921920pt;}
.ls4_c00132{letter-spacing:1.940640pt;}
.ls7_c00132{letter-spacing:2.024640pt;}
.ls8_c00132{letter-spacing:2.243520pt;}
.ls32_c00132{letter-spacing:3.015680pt;}
.lsa_c00132{letter-spacing:3.026400pt;}
.ls98_c00132{letter-spacing:3.040000pt;}
.ws4_c00132{word-spacing:0.000000pt;}
.ws2_c00132{word-spacing:8.757760pt;}
.ws1_c00132{word-spacing:8.972587pt;}
.ws3_c00132{word-spacing:14.291200pt;}
.ws0_c00132{word-spacing:17.645867pt;}
._e_c00132{margin-left:-7.956000pt;}
._9_c00132{margin-left:-6.159040pt;}
._11_c00132{margin-left:-4.061333pt;}
._f_c00132{margin-left:-3.112960pt;}
._1b_c00132{margin-left:-2.223147pt;}
._10_c00132{margin-left:-1.311253pt;}
._4_c00132{width:1.104480pt;}
._8_c00132{width:2.558400pt;}
._19_c00132{width:3.625440pt;}
._5_c00132{width:4.617600pt;}
._1a_c00132{width:5.528640pt;}
._3_c00132{width:6.533280pt;}
._7_c00132{width:7.425600pt;}
._6_c00132{width:8.567520pt;}
._12_c00132{width:10.108800pt;}
._16_c00132{width:11.157120pt;}
._17_c00132{width:12.118080pt;}
._2_c00132{width:13.260000pt;}
._a_c00132{width:14.320800pt;}
._18_c00132{width:16.192800pt;}
._1_c00132{width:17.316000pt;}
._c_c00132{width:18.252000pt;}
._0_c00132{width:19.541120pt;}
._b_c00132{width:20.835360pt;}
._14_c00132{width:22.457760pt;}
._d_c00132{width:23.705760pt;}
._13_c00132{width:25.733760pt;}
._15_c00132{width:26.719680pt;}
.fs7_c00132{font-size:50.666667pt;}
.fs6_c00132{font-size:54.400000pt;}
.fs0_c00132{font-size:60.266667pt;}
.fs1_c00132{font-size:60.800000pt;}
.fs3_c00132{font-size:61.333333pt;}
.fs2_c00132{font-size:62.400000pt;}
.fs4_c00132{font-size:65.066667pt;}
.fs5_c00132{font-size:69.333333pt;}
.y0_c00132{bottom:0.000000pt;}
.y25_c00132{bottom:61.773339pt;}
.y24_c00132{bottom:128.320005pt;}
.y23_c00132{bottom:183.352539pt;}
.y22_c00132{bottom:212.493339pt;}
.y21_c00132{bottom:212.498139pt;}
.y1f_c00132{bottom:269.127339pt;}
.y20_c00132{bottom:269.133339pt;}
.y1e_c00132{bottom:296.973339pt;}
.y1d_c00132{bottom:296.975339pt;}
.y1b_c00132{bottom:325.127339pt;}
.y1c_c00132{bottom:325.133339pt;}
.y19_c00132{bottom:352.969605pt;}
.y1a_c00132{bottom:352.973339pt;}
.y18_c00132{bottom:380.800005pt;}
.y17_c00132{bottom:380.801339pt;}
.y16_c00132{bottom:408.647339pt;}
.y15_c00132{bottom:436.493339pt;}
.y14_c00132{bottom:464.333339pt;}
.y13_c00132{bottom:491.836005pt;}
.y12_c00132{bottom:520.009605pt;}
.y11_c00132{bottom:547.840005pt;}
.y10_c00132{bottom:603.840005pt;}
.yf_c00132{bottom:631.680005pt;}
.ye_c00132{bottom:659.533339pt;}
.yd_c00132{bottom:687.053339pt;}
.yc_c00132{bottom:714.893339pt;}
.ya_c00132{bottom:771.207339pt;}
.yb_c00132{bottom:771.213339pt;}
.y8_c00132{bottom:799.048939pt;}
.y9_c00132{bottom:799.053339pt;}
.y7_c00132{bottom:854.413339pt;}
.y6_c00132{bottom:854.415339pt;}
.y5_c00132{bottom:882.573339pt;}
.y4_c00132{bottom:938.573339pt;}
.y3_c00132{bottom:966.413339pt;}
.y2_c00132{bottom:994.573339pt;}
.y1_c00132{bottom:1061.453339pt;}
.hc_c00132{height:49.726562pt;}
.ha_c00132{height:53.390625pt;}
.h2_c00132{height:59.148438pt;}
.h7_c00132{height:59.642187pt;}
.h9_c00132{height:61.222987pt;}
.h3_c00132{height:61.242187pt;}
.h8_c00132{height:61.266188pt;}
.hb_c00132{height:61.272054pt;}
.h5_c00132{height:63.859375pt;}
.h4_c00132{height:63.968750pt;}
.h6_c00132{height:68.046875pt;}
.h1_c00132{height:1122.666667pt;}
.h0_c00132{height:1122.880005pt;}
.w1_c00132{width:793.333333pt;}
.w0_c00132{width:793.599999pt;}
.x0_c00132{left:0.000000pt;}
.x28_c00132{left:104.504932pt;}
.x1b_c00132{left:105.597732pt;}
.x5_c00132{left:108.066665pt;}
.x1_c00132{left:109.693332pt;}
.x2d_c00132{left:152.471465pt;}
.x18_c00132{left:154.066665pt;}
.xf_c00132{left:155.026665pt;}
.x7_c00132{left:156.376799pt;}
.x2_c00132{left:157.266665pt;}
.x8_c00132{left:193.386665pt;}
.x9_c00132{left:208.786665pt;}
.x6_c00132{left:223.506665pt;}
.x1c_c00132{left:229.679999pt;}
.xa_c00132{left:233.186665pt;}
.xd_c00132{left:286.186665pt;}
.xe_c00132{left:301.266665pt;}
.xb_c00132{left:326.226665pt;}
.x1d_c00132{left:338.386665pt;}
.xc_c00132{left:354.386665pt;}
.x1e_c00132{left:357.719999pt;}
.x30_c00132{left:375.559999pt;}
.x29_c00132{left:380.093332pt;}
.x25_c00132{left:397.693332pt;}
.x2a_c00132{left:408.253332pt;}
.x19_c00132{left:417.426665pt;}
.x11_c00132{left:432.146665pt;}
.x3_c00132{left:436.959999pt;}
.x1a_c00132{left:442.653332pt;}
.x14_c00132{left:446.866665pt;}
.x4_c00132{left:453.279999pt;}
.x12_c00132{left:457.693332pt;}
.x15_c00132{left:472.426665pt;}
.x16_c00132{left:490.533332pt;}
.x2b_c00132{left:493.266665pt;}
.x2c_c00132{left:512.533332pt;}
.x13_c00132{left:516.266665pt;}
.x21_c00132{left:530.813332pt;}
.x2e_c00132{left:533.026665pt;}
.x17_c00132{left:534.506665pt;}
.x22_c00132{left:555.679999pt;}
.x2f_c00132{left:564.333332pt;}
.x26_c00132{left:568.573332pt;}
.x27_c00132{left:592.613332pt;}
.x1f_c00132{left:618.706665pt;}
.x23_c00132{left:622.333332pt;}
.x10_c00132{left:630.186665pt;}
.x20_c00132{left:638.359999pt;}
.x24_c00132{left:642.733332pt;}
}





/* 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_c00133 {
    display:none;
  }
  .loading-indicator_c00133.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00133 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_c00133 { 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_c00133" -> "#page-container .classname_c00133")
 */
.pf_c00133 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00133 { /* 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_c00133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00133 { /* 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_c00133 { /* 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_c00133 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00133 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00133 {overflow:visible;}
  }
}
.c_c00133 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00133 { /* 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_c00133:after { /* webkit #35443 */
  content: '';
}
.t_c00133:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00133 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 */
}
.__c00133 { /* 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_c00133 { /* info for Javascript */
  display:none;
}
.l_c00133 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00133 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00133 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00133: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_c00133 {
    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_c00133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00133.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_c00133 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00133;src:url('chunks/assets/font_4469b55261e2342922522f90.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.284668;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_c00133;src:url('chunks/assets/font_f1d0bba36c198d97be0ff0bf.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.284180;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_c00133;src:url('chunks/assets/font_e3d2a3d704c295d5b9a8f91d.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;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;}
.m4_c00133{transform:matrix(0.196171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196171,0.000000,0.000000,0.250000,0,0);}
.m3_c00133{transform:matrix(0.224342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224342,0.000000,0.000000,0.250000,0,0);}
.m8_c00133{transform:matrix(0.226348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226348,0.000000,0.000000,0.250000,0,0);}
.m7_c00133{transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);}
.m5_c00133{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m0_c00133{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);}
.m6_c00133{transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);}
.m1_c00133{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.m2_c00133{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls7f_c00133{letter-spacing:-2.604000px;}
.ls81_c00133{letter-spacing:-2.415000px;}
.ls78_c00133{letter-spacing:-2.352000px;}
.ls7e_c00133{letter-spacing:-2.177280px;}
.ls86_c00133{letter-spacing:-2.100000px;}
.ls7c_c00133{letter-spacing:-1.955700px;}
.ls8c_c00133{letter-spacing:-1.835400px;}
.ls76_c00133{letter-spacing:-1.612800px;}
.ls77_c00133{letter-spacing:-1.135680px;}
.ls87_c00133{letter-spacing:-1.128960px;}
.ls6b_c00133{letter-spacing:-1.061760px;}
.ls73_c00133{letter-spacing:-0.987840px;}
.ls74_c00133{letter-spacing:-0.960960px;}
.ls71_c00133{letter-spacing:-0.907740px;}
.ls8a_c00133{letter-spacing:-0.846720px;}
.ls6a_c00133{letter-spacing:-0.638400px;}
.ls75_c00133{letter-spacing:-0.584640px;}
.ls79_c00133{letter-spacing:-0.389760px;}
.ls6c_c00133{letter-spacing:-0.349440px;}
.ls7b_c00133{letter-spacing:-0.322560px;}
.ls72_c00133{letter-spacing:-0.309960px;}
.ls89_c00133{letter-spacing:-0.100800px;}
.ls7a_c00133{letter-spacing:-0.060480px;}
.ls6d_c00133{letter-spacing:-0.026880px;}
.ls68_c00133{letter-spacing:0.000000px;}
.ls4b_c00133{letter-spacing:0.073920px;}
.ls84_c00133{letter-spacing:0.107520px;}
.ls3f_c00133{letter-spacing:0.120960px;}
.ls1b_c00133{letter-spacing:0.161280px;}
.ls2b_c00133{letter-spacing:0.168000px;}
.ls39_c00133{letter-spacing:0.188160px;}
.ls5_c00133{letter-spacing:0.215040px;}
.ls66_c00133{letter-spacing:0.228480px;}
.ls22_c00133{letter-spacing:0.295680px;}
.ls34_c00133{letter-spacing:0.315840px;}
.ls62_c00133{letter-spacing:0.322560px;}
.lsd_c00133{letter-spacing:0.329280px;}
.ls7_c00133{letter-spacing:0.336000px;}
.ls57_c00133{letter-spacing:0.362880px;}
.ls70_c00133{letter-spacing:0.369600px;}
.ls1d_c00133{letter-spacing:0.383040px;}
.ls40_c00133{letter-spacing:0.396480px;}
.ls5e_c00133{letter-spacing:0.409920px;}
.ls15_c00133{letter-spacing:0.416640px;}
.ls13_c00133{letter-spacing:0.450240px;}
.ls42_c00133{letter-spacing:0.477120px;}
.ls2f_c00133{letter-spacing:0.504000px;}
.ls82_c00133{letter-spacing:0.524160px;}
.ls33_c00133{letter-spacing:0.544320px;}
.ls5d_c00133{letter-spacing:0.557760px;}
.ls2a_c00133{letter-spacing:0.571200px;}
.ls21_c00133{letter-spacing:0.577920px;}
.ls2_c00133{letter-spacing:0.598080px;}
.ls64_c00133{letter-spacing:0.618240px;}
.ls3b_c00133{letter-spacing:0.624960px;}
.ls19_c00133{letter-spacing:0.658560px;}
.ls85_c00133{letter-spacing:0.665280px;}
.ls3e_c00133{letter-spacing:0.672000px;}
.ls3a_c00133{letter-spacing:0.678720px;}
.ls28_c00133{letter-spacing:0.692160px;}
.ls37_c00133{letter-spacing:0.712320px;}
.ls26_c00133{letter-spacing:0.719040px;}
.ls27_c00133{letter-spacing:0.732480px;}
.ls2c_c00133{letter-spacing:0.739200px;}
.ls88_c00133{letter-spacing:0.745920px;}
.ls45_c00133{letter-spacing:0.752640px;}
.ls1a_c00133{letter-spacing:0.766080px;}
.ls65_c00133{letter-spacing:0.772800px;}
.ls7d_c00133{letter-spacing:0.799680px;}
.ls18_c00133{letter-spacing:0.806400px;}
.ls58_c00133{letter-spacing:0.813120px;}
.ls1f_c00133{letter-spacing:0.826560px;}
.ls63_c00133{letter-spacing:0.846720px;}
.ls5a_c00133{letter-spacing:0.853440px;}
.ls47_c00133{letter-spacing:0.860160px;}
.ls0_c00133{letter-spacing:0.866880px;}
.ls20_c00133{letter-spacing:0.873600px;}
.ls54_c00133{letter-spacing:0.887040px;}
.ls14_c00133{letter-spacing:0.907200px;}
.ls69_c00133{letter-spacing:0.934080px;}
.ls43_c00133{letter-spacing:0.940800px;}
.lse_c00133{letter-spacing:0.960960px;}
.ls9_c00133{letter-spacing:0.974400px;}
.ls6e_c00133{letter-spacing:0.981120px;}
.ls11_c00133{letter-spacing:0.987840px;}
.ls8_c00133{letter-spacing:0.994560px;}
.ls53_c00133{letter-spacing:1.001280px;}
.ls23_c00133{letter-spacing:1.008000px;}
.ls48_c00133{letter-spacing:1.028160px;}
.ls10_c00133{letter-spacing:1.061760px;}
.ls4d_c00133{letter-spacing:1.068480px;}
.ls59_c00133{letter-spacing:1.095360px;}
.lsb_c00133{letter-spacing:1.108800px;}
.ls3_c00133{letter-spacing:1.142400px;}
.ls56_c00133{letter-spacing:1.149120px;}
.ls38_c00133{letter-spacing:1.155840px;}
.ls55_c00133{letter-spacing:1.169280px;}
.ls49_c00133{letter-spacing:1.176000px;}
.ls6_c00133{letter-spacing:1.182720px;}
.ls35_c00133{letter-spacing:1.189440px;}
.ls4e_c00133{letter-spacing:1.196160px;}
.ls5c_c00133{letter-spacing:1.202880px;}
.ls4c_c00133{letter-spacing:1.216320px;}
.ls5f_c00133{letter-spacing:1.243200px;}
.ls12_c00133{letter-spacing:1.256640px;}
.ls44_c00133{letter-spacing:1.270080px;}
.ls60_c00133{letter-spacing:1.317120px;}
.ls52_c00133{letter-spacing:1.323840px;}
.ls1_c00133{letter-spacing:1.337280px;}
.ls30_c00133{letter-spacing:1.357440px;}
.ls2e_c00133{letter-spacing:1.370880px;}
.ls80_c00133{letter-spacing:1.404480px;}
.ls5b_c00133{letter-spacing:1.411200px;}
.ls61_c00133{letter-spacing:1.417920px;}
.ls3c_c00133{letter-spacing:1.438080px;}
.ls1c_c00133{letter-spacing:1.505280px;}
.ls1e_c00133{letter-spacing:1.525440px;}
.ls16_c00133{letter-spacing:1.552320px;}
.ls46_c00133{letter-spacing:1.579200px;}
.ls4a_c00133{letter-spacing:1.599360px;}
.ls4f_c00133{letter-spacing:1.639680px;}
.ls29_c00133{letter-spacing:1.659840px;}
.ls67_c00133{letter-spacing:1.714980px;}
.ls50_c00133{letter-spacing:1.800960px;}
.ls8b_c00133{letter-spacing:1.841280px;}
.ls32_c00133{letter-spacing:1.901760px;}
.ls51_c00133{letter-spacing:1.935360px;}
.ls36_c00133{letter-spacing:1.948800px;}
.ls3d_c00133{letter-spacing:1.982400px;}
.lsa_c00133{letter-spacing:1.989120px;}
.ls17_c00133{letter-spacing:2.016000px;}
.ls25_c00133{letter-spacing:2.036160px;}
.ls41_c00133{letter-spacing:2.271360px;}
.ls31_c00133{letter-spacing:2.439360px;}
.lsc_c00133{letter-spacing:2.587200px;}
.ls2d_c00133{letter-spacing:2.593920px;}
.ls24_c00133{letter-spacing:2.728320px;}
.ls4_c00133{letter-spacing:2.755200px;}
.ls6f_c00133{letter-spacing:3.360000px;}
.ls83_c00133{letter-spacing:3.780000px;}
.lsf_c00133{letter-spacing:16.989600px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{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__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00133{word-spacing:-0.302400px;}
.ws2_c00133{word-spacing:-0.040320px;}
.ws5_c00133{word-spacing:0.000000px;}
.ws1_c00133{word-spacing:6.457920px;}
.ws0_c00133{word-spacing:18.648000px;}
.ws3_c00133{word-spacing:25.603200px;}
._13_c00133{margin-left:-8.981460px;}
._4_c00133{margin-left:-7.096320px;}
._12_c00133{margin-left:-5.927040px;}
._2_c00133{margin-left:-4.672320px;}
._0_c00133{margin-left:-3.017280px;}
._f_c00133{margin-left:-1.548480px;}
._3_c00133{width:1.868160px;}
._1_c00133{width:3.475200px;}
._e_c00133{width:4.660800px;}
._10_c00133{width:5.866560px;}
._11_c00133{width:7.728000px;}
._b_c00133{width:9.428160px;}
._14_c00133{width:10.959360px;}
._c_c00133{width:12.297600px;}
._5_c00133{width:13.413120px;}
._8_c00133{width:14.481600px;}
._d_c00133{width:16.000320px;}
._a_c00133{width:18.345600px;}
._9_c00133{width:19.461120px;}
._7_c00133{width:21.463680px;}
._6_c00133{width:25.717440px;}
.fc0_c00133{color:transparent;}
.fs2_c00133{font-size:49.800000px;}
.fs8_c00133{font-size:57.000000px;}
.fs7_c00133{font-size:60.000000px;}
.fs0_c00133{font-size:60.600000px;}
.fs1_c00133{font-size:67.200000px;}
.fs5_c00133{font-size:69.000000px;}
.fs3_c00133{font-size:73.800000px;}
.fs4_c00133{font-size:74.400000px;}
.fs6_c00133{font-size:75.600000px;}
.y0_c00133{bottom:0.000000px;}
.y1d_c00133{bottom:73.455000px;}
.y1c_c00133{bottom:150.115800px;}
.y1b_c00133{bottom:244.095000px;}
.y1a_c00133{bottom:244.099800px;}
.y19_c00133{bottom:275.415000px;}
.y18_c00133{bottom:337.695000px;}
.y17_c00133{bottom:400.695000px;}
.y16_c00133{bottom:400.699800px;}
.y15_c00133{bottom:432.015000px;}
.y14_c00133{bottom:463.699800px;}
.y13_c00133{bottom:495.015000px;}
.y12_c00133{bottom:525.975000px;}
.y11_c00133{bottom:588.614400px;}
.y10_c00133{bottom:619.929600px;}
.yf_c00133{bottom:682.560000px;}
.ye_c00133{bottom:682.563000px;}
.yd_c00133{bottom:744.857400px;}
.yc_c00133{bottom:776.895000px;}
.ya_c00133{bottom:839.532000px;}
.yb_c00133{bottom:839.535000px;}
.y9_c00133{bottom:871.200000px;}
.y8_c00133{bottom:932.755200px;}
.y7_c00133{bottom:964.440000px;}
.y6_c00133{bottom:995.400000px;}
.y5_c00133{bottom:995.412600px;}
.y4_c00133{bottom:1026.727800px;}
.y3_c00133{bottom:1089.370200px;}
.y2_c00133{bottom:1121.055000px;}
.y1_c00133{bottom:1195.920000px;}
.ha_c00133{height:55.942383px;}
.h9_c00133{height:58.886719px;}
.h2_c00133{height:59.475586px;}
.h3_c00133{height:65.953125px;}
.h4_c00133{height:65.972325px;}
.h7_c00133{height:71.964844px;}
.h5_c00133{height:72.394629px;}
.h6_c00133{height:77.596875px;}
.h8_c00133{height:78.848437px;}
.h1_c00133{height:1263.000000px;}
.h0_c00133{height:1263.240000px;}
.w1_c00133{width:892.500000px;}
.w0_c00133{width:892.800000px;}
.x0_c00133{left:0.000000px;}
.x19_c00133{left:120.994800px;}
.xc_c00133{left:122.430000px;}
.x1_c00133{left:124.125000px;}
.x1c_c00133{left:174.055800px;}
.x13_c00133{left:175.824600px;}
.xb_c00133{left:176.917800px;}
.x2_c00133{left:178.005600px;}
.x11_c00133{left:184.275000px;}
.x12_c00133{left:206.115000px;}
.x1a_c00133{left:215.820000px;}
.x1b_c00133{left:237.795000px;}
.x8_c00133{left:304.725000px;}
.x17_c00133{left:355.140000px;}
.x9_c00133{left:366.300000px;}
.x18_c00133{left:377.130000px;}
.xa_c00133{left:389.085000px;}
.x14_c00133{left:392.670000px;}
.x1d_c00133{left:423.225000px;}
.x15_c00133{left:424.635000px;}
.xd_c00133{left:460.110000px;}
.xe_c00133{left:482.070000px;}
.x4_c00133{left:619.470000px;}
.x5_c00133{left:643.965000px;}
.x6_c00133{left:654.030000px;}
.x16_c00133{left:669.510000px;}
.xf_c00133{left:673.740000px;}
.x7_c00133{left:676.725000px;}
.x10_c00133{left:691.020000px;}
.x3_c00133{left:733.860000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls7f_c00133{letter-spacing:-2.314667pt;}
.ls81_c00133{letter-spacing:-2.146667pt;}
.ls78_c00133{letter-spacing:-2.090667pt;}
.ls7e_c00133{letter-spacing:-1.935360pt;}
.ls86_c00133{letter-spacing:-1.866667pt;}
.ls7c_c00133{letter-spacing:-1.738400pt;}
.ls8c_c00133{letter-spacing:-1.631467pt;}
.ls76_c00133{letter-spacing:-1.433600pt;}
.ls77_c00133{letter-spacing:-1.009493pt;}
.ls87_c00133{letter-spacing:-1.003520pt;}
.ls6b_c00133{letter-spacing:-0.943787pt;}
.ls73_c00133{letter-spacing:-0.878080pt;}
.ls74_c00133{letter-spacing:-0.854187pt;}
.ls71_c00133{letter-spacing:-0.806880pt;}
.ls8a_c00133{letter-spacing:-0.752640pt;}
.ls6a_c00133{letter-spacing:-0.567467pt;}
.ls75_c00133{letter-spacing:-0.519680pt;}
.ls79_c00133{letter-spacing:-0.346453pt;}
.ls6c_c00133{letter-spacing:-0.310613pt;}
.ls7b_c00133{letter-spacing:-0.286720pt;}
.ls72_c00133{letter-spacing:-0.275520pt;}
.ls89_c00133{letter-spacing:-0.089600pt;}
.ls7a_c00133{letter-spacing:-0.053760pt;}
.ls6d_c00133{letter-spacing:-0.023893pt;}
.ls68_c00133{letter-spacing:0.000000pt;}
.ls4b_c00133{letter-spacing:0.065707pt;}
.ls84_c00133{letter-spacing:0.095573pt;}
.ls3f_c00133{letter-spacing:0.107520pt;}
.ls1b_c00133{letter-spacing:0.143360pt;}
.ls2b_c00133{letter-spacing:0.149333pt;}
.ls39_c00133{letter-spacing:0.167253pt;}
.ls5_c00133{letter-spacing:0.191147pt;}
.ls66_c00133{letter-spacing:0.203093pt;}
.ls22_c00133{letter-spacing:0.262827pt;}
.ls34_c00133{letter-spacing:0.280747pt;}
.ls62_c00133{letter-spacing:0.286720pt;}
.lsd_c00133{letter-spacing:0.292693pt;}
.ls7_c00133{letter-spacing:0.298667pt;}
.ls57_c00133{letter-spacing:0.322560pt;}
.ls70_c00133{letter-spacing:0.328533pt;}
.ls1d_c00133{letter-spacing:0.340480pt;}
.ls40_c00133{letter-spacing:0.352427pt;}
.ls5e_c00133{letter-spacing:0.364373pt;}
.ls15_c00133{letter-spacing:0.370347pt;}
.ls13_c00133{letter-spacing:0.400213pt;}
.ls42_c00133{letter-spacing:0.424107pt;}
.ls2f_c00133{letter-spacing:0.448000pt;}
.ls82_c00133{letter-spacing:0.465920pt;}
.ls33_c00133{letter-spacing:0.483840pt;}
.ls5d_c00133{letter-spacing:0.495787pt;}
.ls2a_c00133{letter-spacing:0.507733pt;}
.ls21_c00133{letter-spacing:0.513707pt;}
.ls2_c00133{letter-spacing:0.531627pt;}
.ls64_c00133{letter-spacing:0.549547pt;}
.ls3b_c00133{letter-spacing:0.555520pt;}
.ls19_c00133{letter-spacing:0.585387pt;}
.ls85_c00133{letter-spacing:0.591360pt;}
.ls3e_c00133{letter-spacing:0.597333pt;}
.ls3a_c00133{letter-spacing:0.603307pt;}
.ls28_c00133{letter-spacing:0.615253pt;}
.ls37_c00133{letter-spacing:0.633173pt;}
.ls26_c00133{letter-spacing:0.639147pt;}
.ls27_c00133{letter-spacing:0.651093pt;}
.ls2c_c00133{letter-spacing:0.657067pt;}
.ls88_c00133{letter-spacing:0.663040pt;}
.ls45_c00133{letter-spacing:0.669013pt;}
.ls1a_c00133{letter-spacing:0.680960pt;}
.ls65_c00133{letter-spacing:0.686933pt;}
.ls7d_c00133{letter-spacing:0.710827pt;}
.ls18_c00133{letter-spacing:0.716800pt;}
.ls58_c00133{letter-spacing:0.722773pt;}
.ls1f_c00133{letter-spacing:0.734720pt;}
.ls63_c00133{letter-spacing:0.752640pt;}
.ls5a_c00133{letter-spacing:0.758613pt;}
.ls47_c00133{letter-spacing:0.764587pt;}
.ls0_c00133{letter-spacing:0.770560pt;}
.ls20_c00133{letter-spacing:0.776533pt;}
.ls54_c00133{letter-spacing:0.788480pt;}
.ls14_c00133{letter-spacing:0.806400pt;}
.ls69_c00133{letter-spacing:0.830293pt;}
.ls43_c00133{letter-spacing:0.836267pt;}
.lse_c00133{letter-spacing:0.854187pt;}
.ls9_c00133{letter-spacing:0.866133pt;}
.ls6e_c00133{letter-spacing:0.872107pt;}
.ls11_c00133{letter-spacing:0.878080pt;}
.ls8_c00133{letter-spacing:0.884053pt;}
.ls53_c00133{letter-spacing:0.890027pt;}
.ls23_c00133{letter-spacing:0.896000pt;}
.ls48_c00133{letter-spacing:0.913920pt;}
.ls10_c00133{letter-spacing:0.943787pt;}
.ls4d_c00133{letter-spacing:0.949760pt;}
.ls59_c00133{letter-spacing:0.973653pt;}
.lsb_c00133{letter-spacing:0.985600pt;}
.ls3_c00133{letter-spacing:1.015467pt;}
.ls56_c00133{letter-spacing:1.021440pt;}
.ls38_c00133{letter-spacing:1.027413pt;}
.ls55_c00133{letter-spacing:1.039360pt;}
.ls49_c00133{letter-spacing:1.045333pt;}
.ls6_c00133{letter-spacing:1.051307pt;}
.ls35_c00133{letter-spacing:1.057280pt;}
.ls4e_c00133{letter-spacing:1.063253pt;}
.ls5c_c00133{letter-spacing:1.069227pt;}
.ls4c_c00133{letter-spacing:1.081173pt;}
.ls5f_c00133{letter-spacing:1.105067pt;}
.ls12_c00133{letter-spacing:1.117013pt;}
.ls44_c00133{letter-spacing:1.128960pt;}
.ls60_c00133{letter-spacing:1.170773pt;}
.ls52_c00133{letter-spacing:1.176747pt;}
.ls1_c00133{letter-spacing:1.188693pt;}
.ls30_c00133{letter-spacing:1.206613pt;}
.ls2e_c00133{letter-spacing:1.218560pt;}
.ls80_c00133{letter-spacing:1.248427pt;}
.ls5b_c00133{letter-spacing:1.254400pt;}
.ls61_c00133{letter-spacing:1.260373pt;}
.ls3c_c00133{letter-spacing:1.278293pt;}
.ls1c_c00133{letter-spacing:1.338027pt;}
.ls1e_c00133{letter-spacing:1.355947pt;}
.ls16_c00133{letter-spacing:1.379840pt;}
.ls46_c00133{letter-spacing:1.403733pt;}
.ls4a_c00133{letter-spacing:1.421653pt;}
.ls4f_c00133{letter-spacing:1.457493pt;}
.ls29_c00133{letter-spacing:1.475413pt;}
.ls67_c00133{letter-spacing:1.524427pt;}
.ls50_c00133{letter-spacing:1.600853pt;}
.ls8b_c00133{letter-spacing:1.636693pt;}
.ls32_c00133{letter-spacing:1.690453pt;}
.ls51_c00133{letter-spacing:1.720320pt;}
.ls36_c00133{letter-spacing:1.732267pt;}
.ls3d_c00133{letter-spacing:1.762133pt;}
.lsa_c00133{letter-spacing:1.768107pt;}
.ls17_c00133{letter-spacing:1.792000pt;}
.ls25_c00133{letter-spacing:1.809920pt;}
.ls41_c00133{letter-spacing:2.018987pt;}
.ls31_c00133{letter-spacing:2.168320pt;}
.lsc_c00133{letter-spacing:2.299733pt;}
.ls2d_c00133{letter-spacing:2.305707pt;}
.ls24_c00133{letter-spacing:2.425173pt;}
.ls4_c00133{letter-spacing:2.449067pt;}
.ls6f_c00133{letter-spacing:2.986667pt;}
.ls83_c00133{letter-spacing:3.360000pt;}
.lsf_c00133{letter-spacing:15.101867pt;}
.ws4_c00133{word-spacing:-0.268800pt;}
.ws2_c00133{word-spacing:-0.035840pt;}
.ws5_c00133{word-spacing:0.000000pt;}
.ws1_c00133{word-spacing:5.740373pt;}
.ws0_c00133{word-spacing:16.576000pt;}
.ws3_c00133{word-spacing:22.758400pt;}
._13_c00133{margin-left:-7.983520pt;}
._4_c00133{margin-left:-6.307840pt;}
._12_c00133{margin-left:-5.268480pt;}
._2_c00133{margin-left:-4.153173pt;}
._0_c00133{margin-left:-2.682027pt;}
._f_c00133{margin-left:-1.376427pt;}
._3_c00133{width:1.660587pt;}
._1_c00133{width:3.089067pt;}
._e_c00133{width:4.142933pt;}
._10_c00133{width:5.214720pt;}
._11_c00133{width:6.869333pt;}
._b_c00133{width:8.380587pt;}
._14_c00133{width:9.741653pt;}
._c_c00133{width:10.931200pt;}
._5_c00133{width:11.922773pt;}
._8_c00133{width:12.872533pt;}
._d_c00133{width:14.222507pt;}
._a_c00133{width:16.307200pt;}
._9_c00133{width:17.298773pt;}
._7_c00133{width:19.078827pt;}
._6_c00133{width:22.859947pt;}
.fs2_c00133{font-size:44.266667pt;}
.fs8_c00133{font-size:50.666667pt;}
.fs7_c00133{font-size:53.333333pt;}
.fs0_c00133{font-size:53.866667pt;}
.fs1_c00133{font-size:59.733333pt;}
.fs5_c00133{font-size:61.333333pt;}
.fs3_c00133{font-size:65.600000pt;}
.fs4_c00133{font-size:66.133333pt;}
.fs6_c00133{font-size:67.200000pt;}
.y0_c00133{bottom:0.000000pt;}
.y1d_c00133{bottom:65.293333pt;}
.y1c_c00133{bottom:133.436267pt;}
.y1b_c00133{bottom:216.973333pt;}
.y1a_c00133{bottom:216.977600pt;}
.y19_c00133{bottom:244.813333pt;}
.y18_c00133{bottom:300.173333pt;}
.y17_c00133{bottom:356.173333pt;}
.y16_c00133{bottom:356.177600pt;}
.y15_c00133{bottom:384.013333pt;}
.y14_c00133{bottom:412.177600pt;}
.y13_c00133{bottom:440.013333pt;}
.y12_c00133{bottom:467.533333pt;}
.y11_c00133{bottom:523.212800pt;}
.y10_c00133{bottom:551.048533pt;}
.yf_c00133{bottom:606.720000pt;}
.ye_c00133{bottom:606.722667pt;}
.yd_c00133{bottom:662.095467pt;}
.yc_c00133{bottom:690.573333pt;}
.ya_c00133{bottom:746.250667pt;}
.yb_c00133{bottom:746.253333pt;}
.y9_c00133{bottom:774.400000pt;}
.y8_c00133{bottom:829.115733pt;}
.y7_c00133{bottom:857.280000pt;}
.y6_c00133{bottom:884.800000pt;}
.y5_c00133{bottom:884.811200pt;}
.y4_c00133{bottom:912.646933pt;}
.y3_c00133{bottom:968.329067pt;}
.y2_c00133{bottom:996.493333pt;}
.y1_c00133{bottom:1063.040000pt;}
.ha_c00133{height:49.726562pt;}
.h9_c00133{height:52.343750pt;}
.h2_c00133{height:52.867187pt;}
.h3_c00133{height:58.625000pt;}
.h4_c00133{height:58.642067pt;}
.h7_c00133{height:63.968750pt;}
.h5_c00133{height:64.350781pt;}
.h6_c00133{height:68.975000pt;}
.h8_c00133{height:70.087500pt;}
.h1_c00133{height:1122.666667pt;}
.h0_c00133{height:1122.880000pt;}
.w1_c00133{width:793.333333pt;}
.w0_c00133{width:793.600000pt;}
.x0_c00133{left:0.000000pt;}
.x19_c00133{left:107.550933pt;}
.xc_c00133{left:108.826667pt;}
.x1_c00133{left:110.333333pt;}
.x1c_c00133{left:154.716267pt;}
.x13_c00133{left:156.288533pt;}
.xb_c00133{left:157.260267pt;}
.x2_c00133{left:158.227200pt;}
.x11_c00133{left:163.800000pt;}
.x12_c00133{left:183.213333pt;}
.x1a_c00133{left:191.840000pt;}
.x1b_c00133{left:211.373333pt;}
.x8_c00133{left:270.866667pt;}
.x17_c00133{left:315.680000pt;}
.x9_c00133{left:325.600000pt;}
.x18_c00133{left:335.226667pt;}
.xa_c00133{left:345.853333pt;}
.x14_c00133{left:349.040000pt;}
.x1d_c00133{left:376.200000pt;}
.x15_c00133{left:377.453333pt;}
.xd_c00133{left:408.986667pt;}
.xe_c00133{left:428.506667pt;}
.x4_c00133{left:550.640000pt;}
.x5_c00133{left:572.413333pt;}
.x6_c00133{left:581.360000pt;}
.x16_c00133{left:595.120000pt;}
.xf_c00133{left:598.880000pt;}
.x7_c00133{left:601.533333pt;}
.x10_c00133{left:614.240000pt;}
.x3_c00133{left:652.320000pt;}
}





/* 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_c00134 {
    display:none;
  }
  .loading-indicator_c00134.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00134 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_c00134 { 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_c00134" -> "#page-container .classname_c00134")
 */
.pf_c00134 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00134 { /* 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_c00134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00134 { /* 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_c00134 { /* 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_c00134 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00134 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00134 {overflow:visible;}
  }
}
.c_c00134 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00134 { /* 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_c00134:after { /* webkit #35443 */
  content: '';
}
.t_c00134:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00134 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 */
}
.__c00134 { /* 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_c00134 { /* info for Javascript */
  display:none;
}
.l_c00134 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00134 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00134 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00134: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_c00134 {
    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_c00134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00134.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_c00134 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00134;src:url('chunks/assets/font_5ed2cdb7c091263d1c35d76a.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.284668;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_c00134;src:url('chunks/assets/font_0eeba4b16f5d38d4ed6328bb.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.284180;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_c00134;src:url('chunks/assets/font_fc0a453ee8b64b7e9dce8322.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.311035;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_c00134;src:url('chunks/assets/font_6af7e7432b6e121de9afede7.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;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:ff5_c00134;src:url('chunks/assets/font_79e3f382a8f7d6f8898842f3.woff2')format("woff");}.ff5_c00134{font-family:ff5_c00134;line-height:0.666000;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;}
.ma_c00134{transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);}
.m6_c00134{transform:matrix(0.200241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200241,0.000000,0.000000,0.250000,0,0);}
.mb_c00134{transform:matrix(0.233441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233441,0.000000,0.000000,0.250000,0,0);}
.m0_c00134{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m1_c00134{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);}
.m2_c00134{transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);}
.m5_c00134{transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);}
.m3_c00134{transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);}
.m7_c00134{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.m9_c00134{transform:matrix(0.253723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253723,0.000000,0.000000,0.250000,0,0);}
.m8_c00134{transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);}
.m4_c00134{transform:matrix(0.267902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267902,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls7a_c00134{letter-spacing:-2.877000px;}
.ls8c_c00134{letter-spacing:-2.688000px;}
.ls69_c00134{letter-spacing:-2.352000px;}
.ls72_c00134{letter-spacing:-2.345280px;}
.ls6e_c00134{letter-spacing:-2.258280px;}
.ls7e_c00134{letter-spacing:-2.169720px;}
.ls8d_c00134{letter-spacing:-2.037000px;}
.ls6d_c00134{letter-spacing:-1.933560px;}
.ls77_c00134{letter-spacing:-1.793340px;}
.ls82_c00134{letter-spacing:-1.760880px;}
.ls7d_c00134{letter-spacing:-1.675260px;}
.ls89_c00134{letter-spacing:-1.630980px;}
.ls83_c00134{letter-spacing:-1.601460px;}
.ls80_c00134{letter-spacing:-1.343160px;}
.ls87_c00134{letter-spacing:-1.276800px;}
.ls81_c00134{letter-spacing:-0.584640px;}
.ls73_c00134{letter-spacing:-0.188160px;}
.ls7c_c00134{letter-spacing:-0.026880px;}
.ls6b_c00134{letter-spacing:0.000000px;}
.ls8b_c00134{letter-spacing:0.067200px;}
.ls1f_c00134{letter-spacing:0.147840px;}
.ls52_c00134{letter-spacing:0.161280px;}
.ls37_c00134{letter-spacing:0.168000px;}
.ls35_c00134{letter-spacing:0.191580px;}
.ls6f_c00134{letter-spacing:0.228480px;}
.ls74_c00134{letter-spacing:0.235200px;}
.ls49_c00134{letter-spacing:0.241920px;}
.ls55_c00134{letter-spacing:0.255360px;}
.ls28_c00134{letter-spacing:0.268800px;}
.ls41_c00134{letter-spacing:0.463680px;}
.ls7f_c00134{letter-spacing:0.477120px;}
.ls13_c00134{letter-spacing:0.504000px;}
.ls19_c00134{letter-spacing:0.517440px;}
.ls57_c00134{letter-spacing:0.544320px;}
.ls5f_c00134{letter-spacing:0.571200px;}
.ls44_c00134{letter-spacing:0.584640px;}
.ls30_c00134{letter-spacing:0.598080px;}
.ls4c_c00134{letter-spacing:0.618240px;}
.ls3_c00134{letter-spacing:0.638400px;}
.ls88_c00134{letter-spacing:0.665280px;}
.ls5_c00134{letter-spacing:0.692160px;}
.ls8_c00134{letter-spacing:0.712320px;}
.ls43_c00134{letter-spacing:0.719040px;}
.ls25_c00134{letter-spacing:0.732480px;}
.ls34_c00134{letter-spacing:0.745920px;}
.ls85_c00134{letter-spacing:0.772800px;}
.ls86_c00134{letter-spacing:0.786240px;}
.ls79_c00134{letter-spacing:0.792960px;}
.ls42_c00134{letter-spacing:0.799680px;}
.ls2_c00134{letter-spacing:0.806400px;}
.ls11_c00134{letter-spacing:0.813120px;}
.ls54_c00134{letter-spacing:0.833280px;}
.ls78_c00134{letter-spacing:0.866880px;}
.ls53_c00134{letter-spacing:0.880320px;}
.ls6c_c00134{letter-spacing:0.900480px;}
.ls2d_c00134{letter-spacing:0.920640px;}
.ls45_c00134{letter-spacing:0.927360px;}
.ls46_c00134{letter-spacing:0.934080px;}
.ls1d_c00134{letter-spacing:0.954240px;}
.ls36_c00134{letter-spacing:0.960960px;}
.ls71_c00134{letter-spacing:0.994560px;}
.ls31_c00134{letter-spacing:1.008000px;}
.ls10_c00134{letter-spacing:1.014720px;}
.ls5e_c00134{letter-spacing:1.021440px;}
.ls27_c00134{letter-spacing:1.048320px;}
.ls18_c00134{letter-spacing:1.068480px;}
.ls3c_c00134{letter-spacing:1.081920px;}
.ls1b_c00134{letter-spacing:1.087560px;}
.ls4f_c00134{letter-spacing:1.108800px;}
.ls4a_c00134{letter-spacing:1.115520px;}
.ls4_c00134{letter-spacing:1.135680px;}
.ls61_c00134{letter-spacing:1.142400px;}
.lsc_c00134{letter-spacing:1.149120px;}
.ls2f_c00134{letter-spacing:1.155840px;}
.ls1_c00134{letter-spacing:1.162560px;}
.ls58_c00134{letter-spacing:1.182720px;}
.ls70_c00134{letter-spacing:1.196160px;}
.ls4b_c00134{letter-spacing:1.202880px;}
.ls3d_c00134{letter-spacing:1.223040px;}
.ls75_c00134{letter-spacing:1.236480px;}
.ls2e_c00134{letter-spacing:1.256640px;}
.ls29_c00134{letter-spacing:1.263360px;}
.ls15_c00134{letter-spacing:1.270080px;}
.ls51_c00134{letter-spacing:1.290240px;}
.ls62_c00134{letter-spacing:1.296960px;}
.ls5a_c00134{letter-spacing:1.310400px;}
.ls21_c00134{letter-spacing:1.317120px;}
.ls23_c00134{letter-spacing:1.350720px;}
.ls50_c00134{letter-spacing:1.357440px;}
.ls12_c00134{letter-spacing:1.370880px;}
.ls84_c00134{letter-spacing:1.377600px;}
.ls5b_c00134{letter-spacing:1.404480px;}
.ls1c_c00134{letter-spacing:1.424640px;}
.ls2c_c00134{letter-spacing:1.438080px;}
.ls59_c00134{letter-spacing:1.458240px;}
.lsf_c00134{letter-spacing:1.464960px;}
.ls68_c00134{letter-spacing:1.498560px;}
.ls4e_c00134{letter-spacing:1.525440px;}
.ls20_c00134{letter-spacing:1.538880px;}
.ls66_c00134{letter-spacing:1.545600px;}
.ls67_c00134{letter-spacing:1.559040px;}
.ls33_c00134{letter-spacing:1.579200px;}
.ls24_c00134{letter-spacing:1.599360px;}
.ls48_c00134{letter-spacing:1.606080px;}
.ls4d_c00134{letter-spacing:1.639680px;}
.lsa_c00134{letter-spacing:1.646400px;}
.ls5d_c00134{letter-spacing:1.686720px;}
.ls7b_c00134{letter-spacing:1.700160px;}
.ls26_c00134{letter-spacing:1.706880px;}
.ls5c_c00134{letter-spacing:1.720320px;}
.ls64_c00134{letter-spacing:1.727040px;}
.ls32_c00134{letter-spacing:1.733760px;}
.ls22_c00134{letter-spacing:1.767360px;}
.ls2a_c00134{letter-spacing:1.780800px;}
.ls7_c00134{letter-spacing:1.787520px;}
.ls8a_c00134{letter-spacing:1.848000px;}
.lsb_c00134{letter-spacing:1.861440px;}
.ls6_c00134{letter-spacing:1.881600px;}
.ls3b_c00134{letter-spacing:1.888320px;}
.ls17_c00134{letter-spacing:1.901760px;}
.ls56_c00134{letter-spacing:1.908480px;}
.ls1e_c00134{letter-spacing:1.935360px;}
.ls76_c00134{letter-spacing:1.948800px;}
.ls47_c00134{letter-spacing:1.995840px;}
.ls65_c00134{letter-spacing:2.009280px;}
.lsd_c00134{letter-spacing:2.036160px;}
.ls39_c00134{letter-spacing:2.063040px;}
.lse_c00134{letter-spacing:2.143680px;}
.ls1a_c00134{letter-spacing:2.150400px;}
.ls63_c00134{letter-spacing:2.244480px;}
.ls60_c00134{letter-spacing:2.298240px;}
.ls38_c00134{letter-spacing:2.432640px;}
.ls14_c00134{letter-spacing:2.439360px;}
.ls3e_c00134{letter-spacing:2.520000px;}
.ls2b_c00134{letter-spacing:2.587200px;}
.ls9_c00134{letter-spacing:2.688000px;}
.ls16_c00134{letter-spacing:2.755200px;}
.ls40_c00134{letter-spacing:2.869440px;}
.ls0_c00134{letter-spacing:2.976960px;}
.ls3a_c00134{letter-spacing:3.084480px;}
.ls3f_c00134{letter-spacing:3.306240px;}
.ls6a_c00134{letter-spacing:3.360000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{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__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00134{word-spacing:0.000000px;}
.ws0_c00134{word-spacing:9.035880px;}
.ws1_c00134{word-spacing:17.990640px;}
._15_c00134{margin-left:-6.458760px;}
._3_c00134{margin-left:-4.784640px;}
._5_c00134{margin-left:-3.218040px;}
._4_c00134{margin-left:-1.921920px;}
._6_c00134{width:1.162560px;}
._2_c00134{width:2.909760px;}
._9_c00134{width:4.183200px;}
._7_c00134{width:5.534160px;}
._0_c00134{width:6.975360px;}
._1_c00134{width:8.077440px;}
._e_c00134{width:9.979200px;}
._a_c00134{width:11.088000px;}
._8_c00134{width:12.202680px;}
._c_c00134{width:14.394240px;}
._d_c00134{width:16.242240px;}
._12_c00134{width:17.472000px;}
._b_c00134{width:18.816000px;}
._10_c00134{width:20.902320px;}
._f_c00134{width:22.162560px;}
._13_c00134{width:24.366720px;}
._11_c00134{width:25.455360px;}
._14_c00134{width:27.195840px;}
._1a_c00134{width:28.341360px;}
._18_c00134{width:34.372800px;}
._16_c00134{width:37.390080px;}
._19_c00134{width:40.454400px;}
._17_c00134{width:42.215040px;}
.fc0_c00134{color:transparent;}
.fs6_c00134{font-size:53.280000px;}
.fs8_c00134{font-size:58.200000px;}
.fs3_c00134{font-size:61.800000px;}
.fs0_c00134{font-size:67.200000px;}
.fs2_c00134{font-size:68.400000px;}
.fs5_c00134{font-size:69.600000px;}
.fs1_c00134{font-size:73.800000px;}
.fs7_c00134{font-size:76.800000px;}
.fs4_c00134{font-size:82.200000px;}
.y0_c00134{bottom:0.000000px;}
.y1e_c00134{bottom:68.055006px;}
.y1d_c00134{bottom:173.535006px;}
.y1c_c00134{bottom:173.542206px;}
.y1b_c00134{bottom:206.655006px;}
.y1a_c00134{bottom:268.915806px;}
.y19_c00134{bottom:301.692606px;}
.y18_c00134{bottom:332.655006px;}
.y17_c00134{bottom:364.335006px;}
.y16_c00134{bottom:364.336806px;}
.y15_c00134{bottom:396.021606px;}
.y14_c00134{bottom:427.320006px;}
.y13_c00134{bottom:489.259206px;}
.y12_c00134{bottom:521.280006px;}
.y11_c00134{bottom:584.292606px;}
.y10_c00134{bottom:646.939806px;}
.yf_c00134{bottom:678.255006px;}
.ye_c00134{bottom:678.261606px;}
.yd_c00134{bottom:709.560006px;}
.yc_c00134{bottom:740.883006px;}
.yb_c00134{bottom:772.215006px;}
.ya_c00134{bottom:803.513406px;}
.y9_c00134{bottom:835.221606px;}
.y7_c00134{bottom:866.512806px;}
.y8_c00134{bottom:866.520006px;}
.y6_c00134{bottom:929.172006px;}
.y5_c00134{bottom:992.524806px;}
.y4_c00134{bottom:1023.840006px;}
.y3_c00134{bottom:1086.844806px;}
.y2_c00134{bottom:1118.160006px;}
.y1_c00134{bottom:1194.135006px;}
.ha_c00134{height:60.700781px;}
.h2_c00134{height:65.953125px;}
.h8_c00134{height:68.291794px;}
.h4_c00134{height:68.886375px;}
.h7_c00134{height:72.344229px;}
.h5_c00134{height:72.382629px;}
.h3_c00134{height:72.394629px;}
.h9_c00134{height:75.375000px;}
.h6_c00134{height:80.674805px;}
.h1_c00134{height:1263.000000px;}
.h0_c00134{height:1263.240006px;}
.w1_c00134{width:892.500000px;}
.w0_c00134{width:892.799998px;}
.x0_c00134{left:0.000000px;}
.x1a_c00134{left:116.249999px;}
.x17_c00134{left:117.320399px;}
.x10_c00134{left:118.641599px;}
.xb_c00134{left:119.726999px;}
.xa_c00134{left:121.106399px;}
.x2_c00134{left:122.429999px;}
.x1_c00134{left:123.764999px;}
.x1b_c00134{left:171.524998px;}
.x13_c00134{left:173.397599px;}
.x5_c00134{left:176.219999px;}
.x3_c00134{left:177.809999px;}
.x1d_c00134{left:202.619999px;}
.x4_c00134{left:211.244999px;}
.x11_c00134{left:242.204998px;}
.x12_c00134{left:264.419999px;}
.x1c_c00134{left:283.664999px;}
.x8_c00134{left:301.139999px;}
.x18_c00134{left:317.129998px;}
.xe_c00134{left:337.709999px;}
.x9_c00134{left:350.039999px;}
.xf_c00134{left:371.699999px;}
.xc_c00134{left:381.269999px;}
.x14_c00134{left:395.429999px;}
.xd_c00134{left:413.819999px;}
.x1e_c00134{left:421.844998px;}
.x15_c00134{left:526.859998px;}
.x16_c00134{left:551.129999px;}
.x6_c00134{left:576.629999px;}
.x7_c00134{left:601.019998px;}
.x19_c00134{left:732.059999px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls7a_c00134{letter-spacing:-2.557333pt;}
.ls8c_c00134{letter-spacing:-2.389333pt;}
.ls69_c00134{letter-spacing:-2.090667pt;}
.ls72_c00134{letter-spacing:-2.084693pt;}
.ls6e_c00134{letter-spacing:-2.007360pt;}
.ls7e_c00134{letter-spacing:-1.928640pt;}
.ls8d_c00134{letter-spacing:-1.810667pt;}
.ls6d_c00134{letter-spacing:-1.718720pt;}
.ls77_c00134{letter-spacing:-1.594080pt;}
.ls82_c00134{letter-spacing:-1.565227pt;}
.ls7d_c00134{letter-spacing:-1.489120pt;}
.ls89_c00134{letter-spacing:-1.449760pt;}
.ls83_c00134{letter-spacing:-1.423520pt;}
.ls80_c00134{letter-spacing:-1.193920pt;}
.ls87_c00134{letter-spacing:-1.134933pt;}
.ls81_c00134{letter-spacing:-0.519680pt;}
.ls73_c00134{letter-spacing:-0.167253pt;}
.ls7c_c00134{letter-spacing:-0.023893pt;}
.ls6b_c00134{letter-spacing:0.000000pt;}
.ls8b_c00134{letter-spacing:0.059733pt;}
.ls1f_c00134{letter-spacing:0.131413pt;}
.ls52_c00134{letter-spacing:0.143360pt;}
.ls37_c00134{letter-spacing:0.149333pt;}
.ls35_c00134{letter-spacing:0.170293pt;}
.ls6f_c00134{letter-spacing:0.203093pt;}
.ls74_c00134{letter-spacing:0.209067pt;}
.ls49_c00134{letter-spacing:0.215040pt;}
.ls55_c00134{letter-spacing:0.226987pt;}
.ls28_c00134{letter-spacing:0.238933pt;}
.ls41_c00134{letter-spacing:0.412160pt;}
.ls7f_c00134{letter-spacing:0.424107pt;}
.ls13_c00134{letter-spacing:0.448000pt;}
.ls19_c00134{letter-spacing:0.459947pt;}
.ls57_c00134{letter-spacing:0.483840pt;}
.ls5f_c00134{letter-spacing:0.507733pt;}
.ls44_c00134{letter-spacing:0.519680pt;}
.ls30_c00134{letter-spacing:0.531627pt;}
.ls4c_c00134{letter-spacing:0.549547pt;}
.ls3_c00134{letter-spacing:0.567467pt;}
.ls88_c00134{letter-spacing:0.591360pt;}
.ls5_c00134{letter-spacing:0.615253pt;}
.ls8_c00134{letter-spacing:0.633173pt;}
.ls43_c00134{letter-spacing:0.639147pt;}
.ls25_c00134{letter-spacing:0.651093pt;}
.ls34_c00134{letter-spacing:0.663040pt;}
.ls85_c00134{letter-spacing:0.686933pt;}
.ls86_c00134{letter-spacing:0.698880pt;}
.ls79_c00134{letter-spacing:0.704853pt;}
.ls42_c00134{letter-spacing:0.710827pt;}
.ls2_c00134{letter-spacing:0.716800pt;}
.ls11_c00134{letter-spacing:0.722773pt;}
.ls54_c00134{letter-spacing:0.740693pt;}
.ls78_c00134{letter-spacing:0.770560pt;}
.ls53_c00134{letter-spacing:0.782507pt;}
.ls6c_c00134{letter-spacing:0.800427pt;}
.ls2d_c00134{letter-spacing:0.818347pt;}
.ls45_c00134{letter-spacing:0.824320pt;}
.ls46_c00134{letter-spacing:0.830293pt;}
.ls1d_c00134{letter-spacing:0.848213pt;}
.ls36_c00134{letter-spacing:0.854187pt;}
.ls71_c00134{letter-spacing:0.884053pt;}
.ls31_c00134{letter-spacing:0.896000pt;}
.ls10_c00134{letter-spacing:0.901973pt;}
.ls5e_c00134{letter-spacing:0.907947pt;}
.ls27_c00134{letter-spacing:0.931840pt;}
.ls18_c00134{letter-spacing:0.949760pt;}
.ls3c_c00134{letter-spacing:0.961707pt;}
.ls1b_c00134{letter-spacing:0.966720pt;}
.ls4f_c00134{letter-spacing:0.985600pt;}
.ls4a_c00134{letter-spacing:0.991573pt;}
.ls4_c00134{letter-spacing:1.009493pt;}
.ls61_c00134{letter-spacing:1.015467pt;}
.lsc_c00134{letter-spacing:1.021440pt;}
.ls2f_c00134{letter-spacing:1.027413pt;}
.ls1_c00134{letter-spacing:1.033387pt;}
.ls58_c00134{letter-spacing:1.051307pt;}
.ls70_c00134{letter-spacing:1.063253pt;}
.ls4b_c00134{letter-spacing:1.069227pt;}
.ls3d_c00134{letter-spacing:1.087147pt;}
.ls75_c00134{letter-spacing:1.099093pt;}
.ls2e_c00134{letter-spacing:1.117013pt;}
.ls29_c00134{letter-spacing:1.122987pt;}
.ls15_c00134{letter-spacing:1.128960pt;}
.ls51_c00134{letter-spacing:1.146880pt;}
.ls62_c00134{letter-spacing:1.152853pt;}
.ls5a_c00134{letter-spacing:1.164800pt;}
.ls21_c00134{letter-spacing:1.170773pt;}
.ls23_c00134{letter-spacing:1.200640pt;}
.ls50_c00134{letter-spacing:1.206613pt;}
.ls12_c00134{letter-spacing:1.218560pt;}
.ls84_c00134{letter-spacing:1.224533pt;}
.ls5b_c00134{letter-spacing:1.248427pt;}
.ls1c_c00134{letter-spacing:1.266347pt;}
.ls2c_c00134{letter-spacing:1.278293pt;}
.ls59_c00134{letter-spacing:1.296213pt;}
.lsf_c00134{letter-spacing:1.302187pt;}
.ls68_c00134{letter-spacing:1.332053pt;}
.ls4e_c00134{letter-spacing:1.355947pt;}
.ls20_c00134{letter-spacing:1.367893pt;}
.ls66_c00134{letter-spacing:1.373867pt;}
.ls67_c00134{letter-spacing:1.385813pt;}
.ls33_c00134{letter-spacing:1.403733pt;}
.ls24_c00134{letter-spacing:1.421653pt;}
.ls48_c00134{letter-spacing:1.427627pt;}
.ls4d_c00134{letter-spacing:1.457493pt;}
.lsa_c00134{letter-spacing:1.463467pt;}
.ls5d_c00134{letter-spacing:1.499307pt;}
.ls7b_c00134{letter-spacing:1.511253pt;}
.ls26_c00134{letter-spacing:1.517227pt;}
.ls5c_c00134{letter-spacing:1.529173pt;}
.ls64_c00134{letter-spacing:1.535147pt;}
.ls32_c00134{letter-spacing:1.541120pt;}
.ls22_c00134{letter-spacing:1.570987pt;}
.ls2a_c00134{letter-spacing:1.582933pt;}
.ls7_c00134{letter-spacing:1.588907pt;}
.ls8a_c00134{letter-spacing:1.642667pt;}
.lsb_c00134{letter-spacing:1.654613pt;}
.ls6_c00134{letter-spacing:1.672533pt;}
.ls3b_c00134{letter-spacing:1.678507pt;}
.ls17_c00134{letter-spacing:1.690453pt;}
.ls56_c00134{letter-spacing:1.696427pt;}
.ls1e_c00134{letter-spacing:1.720320pt;}
.ls76_c00134{letter-spacing:1.732267pt;}
.ls47_c00134{letter-spacing:1.774080pt;}
.ls65_c00134{letter-spacing:1.786027pt;}
.lsd_c00134{letter-spacing:1.809920pt;}
.ls39_c00134{letter-spacing:1.833813pt;}
.lse_c00134{letter-spacing:1.905493pt;}
.ls1a_c00134{letter-spacing:1.911467pt;}
.ls63_c00134{letter-spacing:1.995093pt;}
.ls60_c00134{letter-spacing:2.042880pt;}
.ls38_c00134{letter-spacing:2.162347pt;}
.ls14_c00134{letter-spacing:2.168320pt;}
.ls3e_c00134{letter-spacing:2.240000pt;}
.ls2b_c00134{letter-spacing:2.299733pt;}
.ls9_c00134{letter-spacing:2.389333pt;}
.ls16_c00134{letter-spacing:2.449067pt;}
.ls40_c00134{letter-spacing:2.550613pt;}
.ls0_c00134{letter-spacing:2.646187pt;}
.ls3a_c00134{letter-spacing:2.741760pt;}
.ls3f_c00134{letter-spacing:2.938880pt;}
.ls6a_c00134{letter-spacing:2.986667pt;}
.ws2_c00134{word-spacing:0.000000pt;}
.ws0_c00134{word-spacing:8.031893pt;}
.ws1_c00134{word-spacing:15.991680pt;}
._15_c00134{margin-left:-5.741120pt;}
._3_c00134{margin-left:-4.253013pt;}
._5_c00134{margin-left:-2.860480pt;}
._4_c00134{margin-left:-1.708373pt;}
._6_c00134{width:1.033387pt;}
._2_c00134{width:2.586453pt;}
._9_c00134{width:3.718400pt;}
._7_c00134{width:4.919253pt;}
._0_c00134{width:6.200320pt;}
._1_c00134{width:7.179947pt;}
._e_c00134{width:8.870400pt;}
._a_c00134{width:9.856000pt;}
._8_c00134{width:10.846827pt;}
._c_c00134{width:12.794880pt;}
._d_c00134{width:14.437547pt;}
._12_c00134{width:15.530667pt;}
._b_c00134{width:16.725333pt;}
._10_c00134{width:18.579840pt;}
._f_c00134{width:19.700053pt;}
._13_c00134{width:21.659307pt;}
._11_c00134{width:22.626987pt;}
._14_c00134{width:24.174080pt;}
._1a_c00134{width:25.192320pt;}
._18_c00134{width:30.553600pt;}
._16_c00134{width:33.235627pt;}
._19_c00134{width:35.959467pt;}
._17_c00134{width:37.524480pt;}
.fs6_c00134{font-size:47.360000pt;}
.fs8_c00134{font-size:51.733333pt;}
.fs3_c00134{font-size:54.933333pt;}
.fs0_c00134{font-size:59.733333pt;}
.fs2_c00134{font-size:60.800000pt;}
.fs5_c00134{font-size:61.866667pt;}
.fs1_c00134{font-size:65.600000pt;}
.fs7_c00134{font-size:68.266667pt;}
.fs4_c00134{font-size:73.066667pt;}
.y0_c00134{bottom:0.000000pt;}
.y1e_c00134{bottom:60.493339pt;}
.y1d_c00134{bottom:154.253339pt;}
.y1c_c00134{bottom:154.259739pt;}
.y1b_c00134{bottom:183.693339pt;}
.y1a_c00134{bottom:239.036272pt;}
.y19_c00134{bottom:268.171205pt;}
.y18_c00134{bottom:295.693339pt;}
.y17_c00134{bottom:323.853339pt;}
.y16_c00134{bottom:323.854939pt;}
.y15_c00134{bottom:352.019205pt;}
.y14_c00134{bottom:379.840005pt;}
.y13_c00134{bottom:434.897072pt;}
.y12_c00134{bottom:463.360005pt;}
.y11_c00134{bottom:519.371205pt;}
.y10_c00134{bottom:575.057605pt;}
.yf_c00134{bottom:602.893339pt;}
.ye_c00134{bottom:602.899205pt;}
.yd_c00134{bottom:630.720005pt;}
.yc_c00134{bottom:658.562672pt;}
.yb_c00134{bottom:686.413339pt;}
.ya_c00134{bottom:714.234139pt;}
.y9_c00134{bottom:742.419205pt;}
.y7_c00134{bottom:770.233605pt;}
.y8_c00134{bottom:770.240005pt;}
.y6_c00134{bottom:825.930672pt;}
.y5_c00134{bottom:882.244272pt;}
.y4_c00134{bottom:910.080005pt;}
.y3_c00134{bottom:966.084272pt;}
.y2_c00134{bottom:993.920005pt;}
.y1_c00134{bottom:1061.453339pt;}
.ha_c00134{height:53.956250pt;}
.h2_c00134{height:58.625000pt;}
.h8_c00134{height:60.703817pt;}
.h4_c00134{height:61.232333pt;}
.h7_c00134{height:64.305981pt;}
.h5_c00134{height:64.340115pt;}
.h3_c00134{height:64.350781pt;}
.h9_c00134{height:67.000000pt;}
.h6_c00134{height:71.710937pt;}
.h1_c00134{height:1122.666667pt;}
.h0_c00134{height:1122.880005pt;}
.w1_c00134{width:793.333333pt;}
.w0_c00134{width:793.599999pt;}
.x0_c00134{left:0.000000pt;}
.x1a_c00134{left:103.333332pt;}
.x17_c00134{left:104.284799pt;}
.x10_c00134{left:105.459199pt;}
.xb_c00134{left:106.423999pt;}
.xa_c00134{left:107.650132pt;}
.x2_c00134{left:108.826665pt;}
.x1_c00134{left:110.013332pt;}
.x1b_c00134{left:152.466665pt;}
.x13_c00134{left:154.131199pt;}
.x5_c00134{left:156.639999pt;}
.x3_c00134{left:158.053332pt;}
.x1d_c00134{left:180.106665pt;}
.x4_c00134{left:187.773332pt;}
.x11_c00134{left:215.293332pt;}
.x12_c00134{left:235.039999pt;}
.x1c_c00134{left:252.146665pt;}
.x8_c00134{left:267.679999pt;}
.x18_c00134{left:281.893332pt;}
.xe_c00134{left:300.186665pt;}
.x9_c00134{left:311.146665pt;}
.xf_c00134{left:330.399999pt;}
.xc_c00134{left:338.906665pt;}
.x14_c00134{left:351.493332pt;}
.xd_c00134{left:367.839999pt;}
.x1e_c00134{left:374.973332pt;}
.x15_c00134{left:468.319999pt;}
.x16_c00134{left:489.893332pt;}
.x6_c00134{left:512.559999pt;}
.x7_c00134{left:534.239999pt;}
.x19_c00134{left:650.719999pt;}
}





/* 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_c00135 {
    display:none;
  }
  .loading-indicator_c00135.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00135 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_c00135 { 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_c00135" -> "#page-container .classname_c00135")
 */
.pf_c00135 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00135 { /* 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_c00135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00135 { /* 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_c00135 { /* 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_c00135 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00135 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00135 {overflow:visible;}
  }
}
.c_c00135 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00135 { /* 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_c00135:after { /* webkit #35443 */
  content: '';
}
.t_c00135:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00135 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 */
}
.__c00135 { /* 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_c00135 { /* info for Javascript */
  display:none;
}
.l_c00135 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00135 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00135 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00135: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_c00135 {
    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_c00135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00135.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_c00135 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00135;src:url('chunks/assets/font_dec0cc9b90f4744c1b0f1525.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.284668;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_c00135;src:url('chunks/assets/font_28d80dfdf63be7ed4ee5500c.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:0.666000;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_c00135;src:url('chunks/assets/font_7b7eed30d6108d1608b8802b.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.284180;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_c00135;src:url('chunks/assets/font_fc510bf7272bb1625e071132.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;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;}
.m6_c00135{transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);}
.m4_c00135{transform:matrix(0.061747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061747,0.000000,0.000000,0.250000,0,0);}
.m3_c00135{transform:matrix(0.064759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064759,0.000000,0.000000,0.250000,0,0);}
.m2_c00135{transform:matrix(0.071053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071053,0.000000,0.000000,0.250000,0,0);}
.m0_c00135{transform:matrix(0.115105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115105,0.000000,0.000000,0.250000,0,0);}
.m5_c00135{transform:matrix(0.125833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125833,0.000000,0.000000,0.250000,0,0);}
.m1_c00135{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);}
.v0_c00135{vertical-align:0.000000px;}
.ls7_c00135{letter-spacing:-2.205000px;}
.ls9_c00135{letter-spacing:-1.392840px;}
.lsf_c00135{letter-spacing:-0.508800px;}
.lse_c00135{letter-spacing:-0.057240px;}
.ls8_c00135{letter-spacing:0.000000px;}
.lsd_c00135{letter-spacing:0.356160px;}
.ls4_c00135{letter-spacing:0.546960px;}
.lsa_c00135{letter-spacing:0.559680px;}
.ls1_c00135{letter-spacing:0.566040px;}
.lsc_c00135{letter-spacing:0.814080px;}
.ls3_c00135{letter-spacing:0.871320px;}
.lsb_c00135{letter-spacing:1.062120px;}
.ls5_c00135{letter-spacing:1.316520px;}
.ls0_c00135{letter-spacing:1.634520px;}
.ls2_c00135{letter-spacing:1.793520px;}
.ls6_c00135{letter-spacing:3.065040px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{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__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00135{word-spacing:-2.086080px;}
.ws1_c00135{word-spacing:-1.246560px;}
.ws5_c00135{word-spacing:0.000000px;}
.ws4_c00135{word-spacing:0.228960px;}
.ws3_c00135{word-spacing:0.546960px;}
.ws0_c00135{word-spacing:1.755360px;}
._1_c00135{margin-left:-5.418720px;}
._0_c00135{margin-left:-2.779320px;}
.fc0_c00135{color:transparent;}
.fs1_c00135{font-size:60.000000px;}
.fs0_c00135{font-size:63.000000px;}
.fs4_c00135{font-size:63.600000px;}
.fs7_c00135{font-size:64.800000px;}
.fs2_c00135{font-size:99.000000px;}
.fs6_c00135{font-size:184.200600px;}
.fs5_c00135{font-size:239.040000px;}
.fs8_c00135{font-size:244.800000px;}
.fs3_c00135{font-size:273.600000px;}
.y0_c00135{bottom:0.000000px;}
.y7_c00135{bottom:149.761206px;}
.y6_c00135{bottom:168.491406px;}
.ya_c00135{bottom:169.555506px;}
.y5_c00135{bottom:186.840006px;}
.y9_c00135{bottom:187.920006px;}
.y4_c00135{bottom:462.975006px;}
.y3_c00135{bottom:531.720006px;}
.yc_c00135{bottom:707.400006px;}
.yb_c00135{bottom:767.520006px;}
.y2_c00135{bottom:819.735006px;}
.y8_c00135{bottom:948.975006px;}
.yf_c00135{bottom:1010.895006px;}
.y1_c00135{bottom:1079.280006px;}
.ye_c00135{bottom:1081.095006px;}
.yd_c00135{bottom:1148.775006px;}
.h3_c00135{height:58.886719px;}
.h2_c00135{height:61.831055px;}
.h6_c00135{height:62.388867px;}
.h9_c00135{height:63.597656px;}
.h4_c00135{height:97.163086px;}
.h7_c00135{height:159.200640px;}
.ha_c00135{height:163.036800px;}
.h5_c00135{height:182.217600px;}
.h8_c00135{height:192.115470px;}
.h1_c00135{height:1263.000000px;}
.h0_c00135{height:1263.240006px;}
.w1_c00135{width:892.500000px;}
.w0_c00135{width:892.799998px;}
.x0_c00135{left:0.000000px;}
.x1_c00135{left:114.599998px;}
.x6_c00135{left:116.596799px;}
.x5_c00135{left:118.154999px;}
.x4_c00135{left:134.999998px;}
.x3_c00135{left:149.189998px;}
.x2_c00135{left:216.194999px;}
.x8_c00135{left:329.264998px;}
.x7_c00135{left:417.254998px;}
.x9_c00135{left:598.139998px;}
.xa_c00135{left:599.414999px;}
.xb_c00135{left:677.429999px;}
.xd_c00135{left:741.959998px;}
.xc_c00135{left:789.209998px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls7_c00135{letter-spacing:-1.960000pt;}
.ls9_c00135{letter-spacing:-1.238080pt;}
.lsf_c00135{letter-spacing:-0.452267pt;}
.lse_c00135{letter-spacing:-0.050880pt;}
.ls8_c00135{letter-spacing:0.000000pt;}
.lsd_c00135{letter-spacing:0.316587pt;}
.ls4_c00135{letter-spacing:0.486187pt;}
.lsa_c00135{letter-spacing:0.497493pt;}
.ls1_c00135{letter-spacing:0.503147pt;}
.lsc_c00135{letter-spacing:0.723627pt;}
.ls3_c00135{letter-spacing:0.774507pt;}
.lsb_c00135{letter-spacing:0.944107pt;}
.ls5_c00135{letter-spacing:1.170240pt;}
.ls0_c00135{letter-spacing:1.452907pt;}
.ls2_c00135{letter-spacing:1.594240pt;}
.ls6_c00135{letter-spacing:2.724480pt;}
.ws2_c00135{word-spacing:-1.854293pt;}
.ws1_c00135{word-spacing:-1.108053pt;}
.ws5_c00135{word-spacing:0.000000pt;}
.ws4_c00135{word-spacing:0.203520pt;}
.ws3_c00135{word-spacing:0.486187pt;}
.ws0_c00135{word-spacing:1.560320pt;}
._1_c00135{margin-left:-4.816640pt;}
._0_c00135{margin-left:-2.470507pt;}
.fs1_c00135{font-size:53.333333pt;}
.fs0_c00135{font-size:56.000000pt;}
.fs4_c00135{font-size:56.533333pt;}
.fs7_c00135{font-size:57.600000pt;}
.fs2_c00135{font-size:88.000000pt;}
.fs6_c00135{font-size:163.733867pt;}
.fs5_c00135{font-size:212.480000pt;}
.fs8_c00135{font-size:217.600000pt;}
.fs3_c00135{font-size:243.200000pt;}
.y0_c00135{bottom:0.000000pt;}
.y7_c00135{bottom:133.121072pt;}
.y6_c00135{bottom:149.770139pt;}
.ya_c00135{bottom:150.716005pt;}
.y5_c00135{bottom:166.080005pt;}
.y9_c00135{bottom:167.040005pt;}
.y4_c00135{bottom:411.533339pt;}
.y3_c00135{bottom:472.640005pt;}
.yc_c00135{bottom:628.800005pt;}
.yb_c00135{bottom:682.240005pt;}
.y2_c00135{bottom:728.653339pt;}
.y8_c00135{bottom:843.533339pt;}
.yf_c00135{bottom:898.573339pt;}
.y1_c00135{bottom:959.360005pt;}
.ye_c00135{bottom:960.973339pt;}
.yd_c00135{bottom:1021.133339pt;}
.h3_c00135{height:52.343750pt;}
.h2_c00135{height:54.960938pt;}
.h6_c00135{height:55.456771pt;}
.h9_c00135{height:56.531250pt;}
.h4_c00135{height:86.367188pt;}
.h7_c00135{height:141.511680pt;}
.ha_c00135{height:144.921600pt;}
.h5_c00135{height:161.971200pt;}
.h8_c00135{height:170.769306pt;}
.h1_c00135{height:1122.666667pt;}
.h0_c00135{height:1122.880005pt;}
.w1_c00135{width:793.333333pt;}
.w0_c00135{width:793.599999pt;}
.x0_c00135{left:0.000000pt;}
.x1_c00135{left:101.866665pt;}
.x6_c00135{left:103.641599pt;}
.x5_c00135{left:105.026665pt;}
.x4_c00135{left:119.999999pt;}
.x3_c00135{left:132.613332pt;}
.x2_c00135{left:192.173332pt;}
.x8_c00135{left:292.679999pt;}
.x7_c00135{left:370.893332pt;}
.x9_c00135{left:531.679999pt;}
.xa_c00135{left:532.813332pt;}
.xb_c00135{left:602.159999pt;}
.xd_c00135{left:659.519999pt;}
.xc_c00135{left:701.519999pt;}
}





/* 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_c00136 {
    display:none;
  }
  .loading-indicator_c00136.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00136 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_c00136 { 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_c00136" -> "#page-container .classname_c00136")
 */
.pf_c00136 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00136 { /* 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_c00136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00136 { /* 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_c00136 { /* 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_c00136 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00136 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00136 {overflow:visible;}
  }
}
.c_c00136 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00136 { /* 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_c00136:after { /* webkit #35443 */
  content: '';
}
.t_c00136:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00136 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 */
}
.__c00136 { /* 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_c00136 { /* info for Javascript */
  display:none;
}
.l_c00136 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00136 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00136 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00136: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_c00136 {
    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_c00136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00136.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_c00136 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00136;src:url('chunks/assets/font_a2f3283c051a9f9aaa9cfa5c.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.284668;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_c00136;src:url('chunks/assets/font_e1b002feafaaa20c42448109.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.284180;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_c00136;src:url('chunks/assets/font_2dfaa1f55134366f99186c04.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:0.666000;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_c00136;src:url('chunks/assets/font_ac47258b1a76a08d3d768f53.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;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;}
.m0_c00136{transform:matrix(0.118490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118490,0.000000,0.000000,0.250000,0,0);}
.m3_c00136{transform:matrix(0.127043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127043,0.000000,0.000000,0.250000,0,0);}
.m2_c00136{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m1_c00136{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);}
.v0_c00136{vertical-align:0.000000px;}
.ls12_c00136{letter-spacing:-2.457000px;}
.ls9_c00136{letter-spacing:-2.142000px;}
.lsa_c00136{letter-spacing:-1.392840px;}
.lsf_c00136{letter-spacing:-0.775920px;}
.lse_c00136{letter-spacing:0.000000px;}
.ls11_c00136{letter-spacing:0.298920px;}
.lsb_c00136{letter-spacing:0.318000px;}
.ls10_c00136{letter-spacing:0.387960px;}
.ls7_c00136{letter-spacing:0.483360px;}
.ls4_c00136{letter-spacing:0.546960px;}
.ls1_c00136{letter-spacing:0.566040px;}
.lsc_c00136{letter-spacing:0.769560px;}
.lsd_c00136{letter-spacing:0.788640px;}
.ls6_c00136{letter-spacing:1.157520px;}
.ls5_c00136{letter-spacing:1.316520px;}
.ls0_c00136{letter-spacing:1.475520px;}
.ls2_c00136{letter-spacing:1.596360px;}
.ls3_c00136{letter-spacing:1.634520px;}
.ls8_c00136{letter-spacing:2.105400px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{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__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00136{word-spacing:-4.986240px;}
.ws5_c00136{word-spacing:-1.361040px;}
.ws1_c00136{word-spacing:-1.246560px;}
.ws6_c00136{word-spacing:0.000000px;}
.ws3_c00136{word-spacing:0.546960px;}
.ws0_c00136{word-spacing:1.755360px;}
.ws4_c00136{word-spacing:3.103680px;}
._2_c00136{margin-left:-5.768520px;}
._1_c00136{margin-left:-3.955920px;}
._0_c00136{margin-left:-2.429520px;}
.fc0_c00136{color:transparent;}
.fs5_c00136{font-size:31.200000px;}
.fs4_c00136{font-size:52.800000px;}
.fs3_c00136{font-size:60.480000px;}
.fs0_c00136{font-size:61.200000px;}
.fs2_c00136{font-size:63.000000px;}
.fs1_c00136{font-size:63.600000px;}
.fs6_c00136{font-size:66.000000px;}
.fs7_c00136{font-size:70.200000px;}
.y0_c00136{bottom:0.000000px;}
.y4_c00136{bottom:167.760300px;}
.yb_c00136{bottom:168.846900px;}
.y3_c00136{bottom:186.124800px;}
.ya_c00136{bottom:186.845700px;}
.y2_c00136{bottom:204.855000px;}
.y9_c00136{bottom:205.560000px;}
.y8_c00136{bottom:356.415000px;}
.y7_c00136{bottom:363.975000px;}
.y6_c00136{bottom:371.520000px;}
.y5_c00136{bottom:389.175000px;}
.y1_c00136{bottom:1080.000000px;}
.yd_c00136{bottom:1080.360000px;}
.yc_c00136{bottom:1147.335000px;}
.h7_c00136{height:32.540625px;}
.h5_c00136{height:40.279680px;}
.h6_c00136{height:51.820313px;}
.h2_c00136{height:60.064453px;}
.h4_c00136{height:61.831055px;}
.h3_c00136{height:62.388867px;}
.h8_c00136{height:64.775391px;}
.h9_c00136{height:68.897461px;}
.h1_c00136{height:1263.000000px;}
.h0_c00136{height:1263.240000px;}
.w1_c00136{width:892.500000px;}
.w0_c00136{width:892.800000px;}
.x0_c00136{left:0.000000px;}
.x2_c00136{left:117.925500px;}
.x1_c00136{left:119.280000px;}
.x5_c00136{left:330.345000px;}
.x4_c00136{left:423.240000px;}
.x3_c00136{left:425.790000px;}
.x6_c00136{left:678.510000px;}
.x7_c00136{left:793.140000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls12_c00136{letter-spacing:-2.184000pt;}
.ls9_c00136{letter-spacing:-1.904000pt;}
.lsa_c00136{letter-spacing:-1.238080pt;}
.lsf_c00136{letter-spacing:-0.689707pt;}
.lse_c00136{letter-spacing:0.000000pt;}
.ls11_c00136{letter-spacing:0.265707pt;}
.lsb_c00136{letter-spacing:0.282667pt;}
.ls10_c00136{letter-spacing:0.344853pt;}
.ls7_c00136{letter-spacing:0.429653pt;}
.ls4_c00136{letter-spacing:0.486187pt;}
.ls1_c00136{letter-spacing:0.503147pt;}
.lsc_c00136{letter-spacing:0.684053pt;}
.lsd_c00136{letter-spacing:0.701013pt;}
.ls6_c00136{letter-spacing:1.028907pt;}
.ls5_c00136{letter-spacing:1.170240pt;}
.ls0_c00136{letter-spacing:1.311573pt;}
.ls2_c00136{letter-spacing:1.418987pt;}
.ls3_c00136{letter-spacing:1.452907pt;}
.ls8_c00136{letter-spacing:1.871467pt;}
.ws2_c00136{word-spacing:-4.432213pt;}
.ws5_c00136{word-spacing:-1.209813pt;}
.ws1_c00136{word-spacing:-1.108053pt;}
.ws6_c00136{word-spacing:0.000000pt;}
.ws3_c00136{word-spacing:0.486187pt;}
.ws0_c00136{word-spacing:1.560320pt;}
.ws4_c00136{word-spacing:2.758827pt;}
._2_c00136{margin-left:-5.127573pt;}
._1_c00136{margin-left:-3.516373pt;}
._0_c00136{margin-left:-2.159573pt;}
.fs5_c00136{font-size:27.733333pt;}
.fs4_c00136{font-size:46.933333pt;}
.fs3_c00136{font-size:53.760000pt;}
.fs0_c00136{font-size:54.400000pt;}
.fs2_c00136{font-size:56.000000pt;}
.fs1_c00136{font-size:56.533333pt;}
.fs6_c00136{font-size:58.666667pt;}
.fs7_c00136{font-size:62.400000pt;}
.y0_c00136{bottom:0.000000pt;}
.y4_c00136{bottom:149.120267pt;}
.yb_c00136{bottom:150.086133pt;}
.y3_c00136{bottom:165.444267pt;}
.ya_c00136{bottom:166.085067pt;}
.y2_c00136{bottom:182.093333pt;}
.y9_c00136{bottom:182.720000pt;}
.y8_c00136{bottom:316.813333pt;}
.y7_c00136{bottom:323.533333pt;}
.y6_c00136{bottom:330.240000pt;}
.y5_c00136{bottom:345.933333pt;}
.y1_c00136{bottom:960.000000pt;}
.yd_c00136{bottom:960.320000pt;}
.yc_c00136{bottom:1019.853333pt;}
.h7_c00136{height:28.925000pt;}
.h5_c00136{height:35.804160pt;}
.h6_c00136{height:46.062500pt;}
.h2_c00136{height:53.390625pt;}
.h4_c00136{height:54.960938pt;}
.h3_c00136{height:55.456771pt;}
.h8_c00136{height:57.578125pt;}
.h9_c00136{height:61.242187pt;}
.h1_c00136{height:1122.666667pt;}
.h0_c00136{height:1122.880000pt;}
.w1_c00136{width:793.333333pt;}
.w0_c00136{width:793.600000pt;}
.x0_c00136{left:0.000000pt;}
.x2_c00136{left:104.822667pt;}
.x1_c00136{left:106.026667pt;}
.x5_c00136{left:293.640000pt;}
.x4_c00136{left:376.213333pt;}
.x3_c00136{left:378.480000pt;}
.x6_c00136{left:603.120000pt;}
.x7_c00136{left:705.013333pt;}
}





/* 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_c00137 {
    display:none;
  }
  .loading-indicator_c00137.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00137 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_c00137 { 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_c00137" -> "#page-container .classname_c00137")
 */
.pf_c00137 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00137 { /* 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_c00137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00137 { /* 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_c00137 { /* 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_c00137 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00137 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00137 {overflow:visible;}
  }
}
.c_c00137 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00137 { /* 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_c00137:after { /* webkit #35443 */
  content: '';
}
.t_c00137:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00137 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 */
}
.__c00137 { /* 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_c00137 { /* info for Javascript */
  display:none;
}
.l_c00137 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00137 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00137 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00137: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_c00137 {
    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_c00137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00137.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_c00137 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00137;src:url('chunks/assets/font_11b3da4951dcd6f8c2d09fef.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.284180;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_c00137;src:url('chunks/assets/font_1655f9dbc0021635ed1cbc2f.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;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_c00137;src:url('chunks/assets/font_aedcec4b47f0318cb16fda29.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.284668;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_c00137;src:url('chunks/assets/font_abc00b0aa7dec89b8df153fd.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:0.666000;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_c00137;src:url('chunks/assets/font_ae5d46f445d88fcf74a332f8.woff2')format("woff");}.ff5_c00137{font-family:ff5_c00137;line-height:1.311035;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;}
.m6_c00137{transform:matrix(0.078431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078431,0.000000,0.000000,0.250000,0,0);}
.m1_c00137{transform:matrix(0.097974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097974,0.000000,0.000000,0.250000,0,0);}
.m5_c00137{transform:matrix(0.128138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128138,0.000000,0.000000,0.250000,0,0);}
.m7_c00137{transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);}
.m2_c00137{transform:matrix(0.198119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198119,0.000000,0.000000,0.250000,0,0);}
.m9_c00137{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m3_c00137{transform:matrix(0.233310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233310,0.000000,0.000000,0.250000,0,0);}
.m0_c00137{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);}
.m4_c00137{transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);}
.m8_c00137{transform:matrix(0.306538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306538,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.v1_c00137{vertical-align:131.040000px;}
.lsd_c00137{letter-spacing:-8.463000px;}
.ls14_c00137{letter-spacing:-2.436000px;}
.lsf_c00137{letter-spacing:-2.352000px;}
.ls8_c00137{letter-spacing:-1.410240px;}
.ls10_c00137{letter-spacing:-0.361920px;}
.lsc_c00137{letter-spacing:0.000000px;}
.lsa_c00137{letter-spacing:0.418080px;}
.lse_c00137{letter-spacing:0.792480px;}
.ls5_c00137{letter-spacing:0.829920px;}
.ls12_c00137{letter-spacing:0.936000px;}
.ls9_c00137{letter-spacing:0.954720px;}
.ls7_c00137{letter-spacing:0.960960px;}
.ls11_c00137{letter-spacing:1.135680px;}
.ls3_c00137{letter-spacing:1.160640px;}
.lsb_c00137{letter-spacing:1.173120px;}
.ls6_c00137{letter-spacing:1.235520px;}
.ls0_c00137{letter-spacing:1.291680px;}
.ls15_c00137{letter-spacing:1.560000px;}
.ls4_c00137{letter-spacing:1.572480px;}
.ls2_c00137{letter-spacing:1.616160px;}
.ls1_c00137{letter-spacing:1.684800px;}
.ls13_c00137{letter-spacing:3.210000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{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__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00137{word-spacing:-75.894000px;}
.ws1_c00137{word-spacing:-2.745600px;}
.ws6_c00137{word-spacing:-2.446080px;}
.ws4_c00137{word-spacing:-2.109120px;}
.ws2_c00137{word-spacing:-1.959360px;}
.ws7_c00137{word-spacing:0.000000px;}
.ws5_c00137{word-spacing:2.071680px;}
.ws0_c00137{word-spacing:2.832960px;}
._3_c00137{margin-left:-11.166000px;}
._2_c00137{margin-left:-8.480160px;}
._1_c00137{margin-left:-3.987360px;}
._0_c00137{margin-left:-1.978080px;}
.fc0_c00137{color:transparent;}
.fs9_c00137{font-size:24.480000px;}
.fsc_c00137{font-size:31.200000px;}
.fsa_c00137{font-size:56.400000px;}
.fs6_c00137{font-size:58.200000px;}
.fsd_c00137{font-size:61.200000px;}
.fs0_c00137{font-size:62.400000px;}
.fs7_c00137{font-size:64.200000px;}
.fse_c00137{font-size:65.400000px;}
.fs5_c00137{font-size:67.200000px;}
.fs8_c00137{font-size:69.600000px;}
.fs2_c00137{font-size:73.200000px;}
.fsf_c00137{font-size:90.720000px;}
.fsb_c00137{font-size:97.920000px;}
.fs3_c00137{font-size:106.560000px;}
.fs4_c00137{font-size:241.800000px;}
.fs1_c00137{font-size:273.000000px;}
.y0_c00137{bottom:0.000000px;}
.y3_c00137{bottom:148.317600px;}
.y9_c00137{bottom:149.040000px;}
.y2_c00137{bottom:166.694400px;}
.y8_c00137{bottom:167.760000px;}
.y1_c00137{bottom:185.040000px;}
.y7_c00137{bottom:186.120000px;}
.y6_c00137{bottom:321.855000px;}
.y14_c00137{bottom:346.335000px;}
.y13_c00137{bottom:354.255000px;}
.y12_c00137{bottom:379.815000px;}
.y4_c00137{bottom:532.815000px;}
.y5_c00137{bottom:536.040000px;}
.y11_c00137{bottom:592.200000px;}
.ya_c00137{bottom:613.095000px;}
.y10_c00137{bottom:777.975000px;}
.yf_c00137{bottom:785.880000px;}
.ye_c00137{bottom:812.880000px;}
.yd_c00137{bottom:868.335000px;}
.yc_c00137{bottom:1080.720000px;}
.yb_c00137{bottom:1146.240000px;}
.ha_c00137{height:16.303680px;}
.hd_c00137{height:32.540625px;}
.hb_c00137{height:58.823438px;}
.he_c00137{height:60.064453px;}
.h10_c00137{height:60.419520px;}
.h7_c00137{height:60.700781px;}
.h2_c00137{height:61.211719px;}
.h8_c00137{height:63.008789px;}
.hf_c00137{height:64.186523px;}
.hc_c00137{height:65.214720px;}
.h6_c00137{height:67.725000px;}
.h9_c00137{height:68.308594px;}
.h4_c00137{height:70.968960px;}
.h5_c00137{height:237.313477px;}
.h3_c00137{height:284.730469px;}
.h1_c00137{height:1263.000000px;}
.h0_c00137{height:1263.240000px;}
.w1_c00137{width:892.500000px;}
.w0_c00137{width:892.800000px;}
.x0_c00137{left:0.000000px;}
.x2_c00137{left:116.995800px;}
.x1_c00137{left:119.055000px;}
.x5_c00137{left:319.365000px;}
.x6_c00137{left:330.405000px;}
.x7_c00137{left:455.220000px;}
.x3_c00137{left:501.975000px;}
.x4_c00137{left:509.040000px;}
.x8_c00137{left:568.260000px;}
.xe_c00137{left:660.600000px;}
.xd_c00137{left:663.870000px;}
.x9_c00137{left:678.150000px;}
.xc_c00137{left:725.775000px;}
.x11_c00137{left:730.095000px;}
.x10_c00137{left:733.230000px;}
.xf_c00137{left:743.205000px;}
.xa_c00137{left:751.095000px;}
.xb_c00137{left:790.260000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.v1_c00137{vertical-align:116.480000pt;}
.lsd_c00137{letter-spacing:-7.522667pt;}
.ls14_c00137{letter-spacing:-2.165333pt;}
.lsf_c00137{letter-spacing:-2.090667pt;}
.ls8_c00137{letter-spacing:-1.253547pt;}
.ls10_c00137{letter-spacing:-0.321707pt;}
.lsc_c00137{letter-spacing:0.000000pt;}
.lsa_c00137{letter-spacing:0.371627pt;}
.lse_c00137{letter-spacing:0.704427pt;}
.ls5_c00137{letter-spacing:0.737707pt;}
.ls12_c00137{letter-spacing:0.832000pt;}
.ls9_c00137{letter-spacing:0.848640pt;}
.ls7_c00137{letter-spacing:0.854187pt;}
.ls11_c00137{letter-spacing:1.009493pt;}
.ls3_c00137{letter-spacing:1.031680pt;}
.lsb_c00137{letter-spacing:1.042773pt;}
.ls6_c00137{letter-spacing:1.098240pt;}
.ls0_c00137{letter-spacing:1.148160pt;}
.ls15_c00137{letter-spacing:1.386667pt;}
.ls4_c00137{letter-spacing:1.397760pt;}
.ls2_c00137{letter-spacing:1.436587pt;}
.ls1_c00137{letter-spacing:1.497600pt;}
.ls13_c00137{letter-spacing:2.853333pt;}
.ws3_c00137{word-spacing:-67.461333pt;}
.ws1_c00137{word-spacing:-2.440533pt;}
.ws6_c00137{word-spacing:-2.174293pt;}
.ws4_c00137{word-spacing:-1.874773pt;}
.ws2_c00137{word-spacing:-1.741653pt;}
.ws7_c00137{word-spacing:0.000000pt;}
.ws5_c00137{word-spacing:1.841493pt;}
.ws0_c00137{word-spacing:2.518187pt;}
._3_c00137{margin-left:-9.925333pt;}
._2_c00137{margin-left:-7.537920pt;}
._1_c00137{margin-left:-3.544320pt;}
._0_c00137{margin-left:-1.758293pt;}
.fs9_c00137{font-size:21.760000pt;}
.fsc_c00137{font-size:27.733333pt;}
.fsa_c00137{font-size:50.133333pt;}
.fs6_c00137{font-size:51.733333pt;}
.fsd_c00137{font-size:54.400000pt;}
.fs0_c00137{font-size:55.466667pt;}
.fs7_c00137{font-size:57.066667pt;}
.fse_c00137{font-size:58.133333pt;}
.fs5_c00137{font-size:59.733333pt;}
.fs8_c00137{font-size:61.866667pt;}
.fs2_c00137{font-size:65.066667pt;}
.fsf_c00137{font-size:80.640000pt;}
.fsb_c00137{font-size:87.040000pt;}
.fs3_c00137{font-size:94.720000pt;}
.fs4_c00137{font-size:214.933333pt;}
.fs1_c00137{font-size:242.666667pt;}
.y0_c00137{bottom:0.000000pt;}
.y3_c00137{bottom:131.837867pt;}
.y9_c00137{bottom:132.480000pt;}
.y2_c00137{bottom:148.172800pt;}
.y8_c00137{bottom:149.120000pt;}
.y1_c00137{bottom:164.480000pt;}
.y7_c00137{bottom:165.440000pt;}
.y6_c00137{bottom:286.093333pt;}
.y14_c00137{bottom:307.853333pt;}
.y13_c00137{bottom:314.893333pt;}
.y12_c00137{bottom:337.613333pt;}
.y4_c00137{bottom:473.613333pt;}
.y5_c00137{bottom:476.480000pt;}
.y11_c00137{bottom:526.400000pt;}
.ya_c00137{bottom:544.973333pt;}
.y10_c00137{bottom:691.533333pt;}
.yf_c00137{bottom:698.560000pt;}
.ye_c00137{bottom:722.560000pt;}
.yd_c00137{bottom:771.853333pt;}
.yc_c00137{bottom:960.640000pt;}
.yb_c00137{bottom:1018.880000pt;}
.ha_c00137{height:14.492160pt;}
.hd_c00137{height:28.925000pt;}
.hb_c00137{height:52.287500pt;}
.he_c00137{height:53.390625pt;}
.h10_c00137{height:53.706240pt;}
.h7_c00137{height:53.956250pt;}
.h2_c00137{height:54.410417pt;}
.h8_c00137{height:56.007812pt;}
.hf_c00137{height:57.054688pt;}
.hc_c00137{height:57.968640pt;}
.h6_c00137{height:60.200000pt;}
.h9_c00137{height:60.718750pt;}
.h4_c00137{height:63.083520pt;}
.h5_c00137{height:210.945312pt;}
.h3_c00137{height:253.093750pt;}
.h1_c00137{height:1122.666667pt;}
.h0_c00137{height:1122.880000pt;}
.w1_c00137{width:793.333333pt;}
.w0_c00137{width:793.600000pt;}
.x0_c00137{left:0.000000pt;}
.x2_c00137{left:103.996267pt;}
.x1_c00137{left:105.826667pt;}
.x5_c00137{left:283.880000pt;}
.x6_c00137{left:293.693333pt;}
.x7_c00137{left:404.640000pt;}
.x3_c00137{left:446.200000pt;}
.x4_c00137{left:452.480000pt;}
.x8_c00137{left:505.120000pt;}
.xe_c00137{left:587.200000pt;}
.xd_c00137{left:590.106667pt;}
.x9_c00137{left:602.800000pt;}
.xc_c00137{left:645.133333pt;}
.x11_c00137{left:648.973333pt;}
.x10_c00137{left:651.760000pt;}
.xf_c00137{left:660.626667pt;}
.xa_c00137{left:667.640000pt;}
.xb_c00137{left:702.453333pt;}
}





/* 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_c00138 {
    display:none;
  }
  .loading-indicator_c00138.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00138 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_c00138 { 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_c00138" -> "#page-container .classname_c00138")
 */
.pf_c00138 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00138 { /* 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_c00138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00138 { /* 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_c00138 { /* 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_c00138 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00138 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00138 {overflow:visible;}
  }
}
.c_c00138 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00138 { /* 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_c00138:after { /* webkit #35443 */
  content: '';
}
.t_c00138:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00138 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 */
}
.__c00138 { /* 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_c00138 { /* info for Javascript */
  display:none;
}
.l_c00138 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00138 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00138 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00138: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_c00138 {
    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_c00138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00138.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_c00138 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00138;src:url('chunks/assets/font_77d18faa8d75254055977178.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.284668;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_c00138;src:url('chunks/assets/font_6ee754d0e5b832a989917a33.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.284180;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_c00138;src:url('chunks/assets/font_75e78a25a27479de7fbca1fe.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;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;}
.m10_c00138{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m13_c00138{transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);}
.m12_c00138{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.m8_c00138{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m0_c00138{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);}
.mb_c00138{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.ma_c00138{transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);}
.m11_c00138{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m3_c00138{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m4_c00138{transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);}
.m7_c00138{transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);}
.mf_c00138{transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);}
.m2_c00138{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.mc_c00138{transform:matrix(0.254691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254691,0.000000,0.000000,0.250000,0,0);}
.m5_c00138{transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);}
.m9_c00138{transform:matrix(0.256641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256641,0.000000,0.000000,0.250000,0,0);}
.m6_c00138{transform:matrix(0.256764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256764,0.000000,0.000000,0.250000,0,0);}
.m1_c00138{transform:matrix(0.257807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257807,0.000000,0.000000,0.250000,0,0);}
.me_c00138{transform:matrix(0.259191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259191,0.000000,0.000000,0.250000,0,0);}
.md_c00138{transform:matrix(0.260039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260039,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls87_c00138{letter-spacing:-2.373000px;}
.ls99_c00138{letter-spacing:-2.268000px;}
.ls9a_c00138{letter-spacing:-2.037000px;}
.ls81_c00138{letter-spacing:-1.822680px;}
.ls8d_c00138{letter-spacing:-1.668960px;}
.ls7c_c00138{letter-spacing:-1.295640px;}
.ls92_c00138{letter-spacing:-0.976800px;}
.ls97_c00138{letter-spacing:-0.957600px;}
.ls98_c00138{letter-spacing:-0.580800px;}
.ls7e_c00138{letter-spacing:-0.534600px;}
.ls93_c00138{letter-spacing:-0.323400px;}
.ls7b_c00138{letter-spacing:-0.230520px;}
.ls88_c00138{letter-spacing:-0.191400px;}
.ls82_c00138{letter-spacing:0.000000px;}
.ls3b_c00138{letter-spacing:0.039600px;}
.ls55_c00138{letter-spacing:0.125400px;}
.ls61_c00138{letter-spacing:0.257400px;}
.ls72_c00138{letter-spacing:0.277200px;}
.ls96_c00138{letter-spacing:0.290400px;}
.ls6e_c00138{letter-spacing:0.297000px;}
.ls78_c00138{letter-spacing:0.303600px;}
.ls6b_c00138{letter-spacing:0.429000px;}
.ls1d_c00138{letter-spacing:0.475200px;}
.ls3f_c00138{letter-spacing:0.514800px;}
.ls5d_c00138{letter-spacing:0.541200px;}
.lse_c00138{letter-spacing:0.583080px;}
.ls71_c00138{letter-spacing:0.587400px;}
.ls77_c00138{letter-spacing:0.600600px;}
.lsf_c00138{letter-spacing:0.603420px;}
.ls5b_c00138{letter-spacing:0.686400px;}
.ls79_c00138{letter-spacing:0.706200px;}
.ls80_c00138{letter-spacing:0.732600px;}
.ls89_c00138{letter-spacing:0.772200px;}
.ls75_c00138{letter-spacing:0.805200px;}
.ls95_c00138{letter-spacing:0.831600px;}
.lsd_c00138{letter-spacing:0.851400px;}
.ls18_c00138{letter-spacing:0.871200px;}
.ls6d_c00138{letter-spacing:0.874620px;}
.ls84_c00138{letter-spacing:0.983400px;}
.ls24_c00138{letter-spacing:0.996600px;}
.lsa_c00138{letter-spacing:1.003200px;}
.ls29_c00138{letter-spacing:1.016400px;}
.ls30_c00138{letter-spacing:1.023000px;}
.ls94_c00138{letter-spacing:1.049400px;}
.ls43_c00138{letter-spacing:1.062600px;}
.ls2a_c00138{letter-spacing:1.069200px;}
.lsb_c00138{letter-spacing:1.075800px;}
.ls59_c00138{letter-spacing:1.089000px;}
.ls90_c00138{letter-spacing:1.102200px;}
.ls8f_c00138{letter-spacing:1.108800px;}
.ls60_c00138{letter-spacing:1.155000px;}
.ls1a_c00138{letter-spacing:1.194600px;}
.ls41_c00138{letter-spacing:1.207800px;}
.ls70_c00138{letter-spacing:1.233960px;}
.ls6c_c00138{letter-spacing:1.240740px;}
.ls49_c00138{letter-spacing:1.240800px;}
.ls56_c00138{letter-spacing:1.247400px;}
.ls53_c00138{letter-spacing:1.254000px;}
.ls44_c00138{letter-spacing:1.260600px;}
.ls57_c00138{letter-spacing:1.267200px;}
.ls7a_c00138{letter-spacing:1.285200px;}
.ls69_c00138{letter-spacing:1.287000px;}
.ls52_c00138{letter-spacing:1.294980px;}
.ls42_c00138{letter-spacing:1.300200px;}
.ls1_c00138{letter-spacing:1.306800px;}
.ls8c_c00138{letter-spacing:1.313400px;}
.ls65_c00138{letter-spacing:1.320000px;}
.ls23_c00138{letter-spacing:1.339800px;}
.ls4d_c00138{letter-spacing:1.346400px;}
.ls4_c00138{letter-spacing:1.359600px;}
.ls66_c00138{letter-spacing:1.366200px;}
.ls3e_c00138{letter-spacing:1.379400px;}
.ls51_c00138{letter-spacing:1.386000px;}
.ls4a_c00138{letter-spacing:1.392600px;}
.ls17_c00138{letter-spacing:1.401840px;}
.ls31_c00138{letter-spacing:1.412400px;}
.ls8a_c00138{letter-spacing:1.425600px;}
.ls1f_c00138{letter-spacing:1.432200px;}
.ls11_c00138{letter-spacing:1.445400px;}
.ls5f_c00138{letter-spacing:1.452000px;}
.ls5_c00138{letter-spacing:1.458600px;}
.ls25_c00138{letter-spacing:1.465200px;}
.ls12_c00138{letter-spacing:1.471800px;}
.ls15_c00138{letter-spacing:1.478400px;}
.ls2f_c00138{letter-spacing:1.498200px;}
.ls54_c00138{letter-spacing:1.504800px;}
.ls63_c00138{letter-spacing:1.511400px;}
.ls62_c00138{letter-spacing:1.531200px;}
.ls32_c00138{letter-spacing:1.544400px;}
.ls37_c00138{letter-spacing:1.551000px;}
.ls5c_c00138{letter-spacing:1.557600px;}
.ls34_c00138{letter-spacing:1.564200px;}
.ls5e_c00138{letter-spacing:1.570800px;}
.ls1c_c00138{letter-spacing:1.577400px;}
.ls45_c00138{letter-spacing:1.597200px;}
.ls3a_c00138{letter-spacing:1.617000px;}
.ls47_c00138{letter-spacing:1.623600px;}
.ls67_c00138{letter-spacing:1.630200px;}
.ls83_c00138{letter-spacing:1.650000px;}
.ls36_c00138{letter-spacing:1.656600px;}
.ls4c_c00138{letter-spacing:1.669800px;}
.ls48_c00138{letter-spacing:1.676400px;}
.ls5a_c00138{letter-spacing:1.683000px;}
.ls7_c00138{letter-spacing:1.689600px;}
.ls3_c00138{letter-spacing:1.716000px;}
.ls3c_c00138{letter-spacing:1.729200px;}
.ls8b_c00138{letter-spacing:1.755600px;}
.ls50_c00138{letter-spacing:1.762200px;}
.ls28_c00138{letter-spacing:1.768800px;}
.ls8e_c00138{letter-spacing:1.788600px;}
.ls4e_c00138{letter-spacing:1.821600px;}
.ls74_c00138{letter-spacing:1.834800px;}
.ls9_c00138{letter-spacing:1.841400px;}
.ls35_c00138{letter-spacing:1.867800px;}
.ls2e_c00138{letter-spacing:1.874400px;}
.ls85_c00138{letter-spacing:1.881000px;}
.ls73_c00138{letter-spacing:1.920600px;}
.ls19_c00138{letter-spacing:1.927200px;}
.ls2d_c00138{letter-spacing:1.933800px;}
.ls21_c00138{letter-spacing:1.940400px;}
.ls6a_c00138{letter-spacing:1.986600px;}
.ls76_c00138{letter-spacing:1.999800px;}
.lsc_c00138{letter-spacing:2.006400px;}
.ls20_c00138{letter-spacing:2.013000px;}
.ls1e_c00138{letter-spacing:2.019600px;}
.ls3d_c00138{letter-spacing:2.026200px;}
.ls91_c00138{letter-spacing:2.032800px;}
.ls64_c00138{letter-spacing:2.085600px;}
.ls26_c00138{letter-spacing:2.092200px;}
.ls4f_c00138{letter-spacing:2.118600px;}
.ls2c_c00138{letter-spacing:2.131800px;}
.ls4b_c00138{letter-spacing:2.138400px;}
.ls40_c00138{letter-spacing:2.217600px;}
.ls8_c00138{letter-spacing:2.244000px;}
.ls16_c00138{letter-spacing:2.270400px;}
.ls1b_c00138{letter-spacing:2.283600px;}
.ls68_c00138{letter-spacing:2.343000px;}
.ls38_c00138{letter-spacing:2.395800px;}
.ls13_c00138{letter-spacing:2.415600px;}
.ls58_c00138{letter-spacing:2.448600px;}
.ls33_c00138{letter-spacing:2.488200px;}
.ls27_c00138{letter-spacing:2.514600px;}
.ls39_c00138{letter-spacing:2.541000px;}
.ls2_c00138{letter-spacing:2.560800px;}
.ls46_c00138{letter-spacing:2.574000px;}
.ls14_c00138{letter-spacing:2.686200px;}
.ls86_c00138{letter-spacing:2.699400px;}
.ls22_c00138{letter-spacing:2.706000px;}
.ls7f_c00138{letter-spacing:2.725800px;}
.ls2b_c00138{letter-spacing:2.798400px;}
.ls6f_c00138{letter-spacing:2.813700px;}
.ls10_c00138{letter-spacing:2.937000px;}
.ls6_c00138{letter-spacing:3.154800px;}
.ls7d_c00138{letter-spacing:3.300000px;}
.ls0_c00138{letter-spacing:19.618800px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{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__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00138{word-spacing:0.000000px;}
.ws0_c00138{word-spacing:12.007980px;}
._15_c00138{margin-left:-12.102300px;}
._0_c00138{margin-left:-7.078320px;}
._9_c00138{margin-left:-5.468400px;}
._a_c00138{margin-left:-3.908400px;}
._2_c00138{margin-left:-2.310000px;}
._c_c00138{margin-left:-1.263120px;}
._1_c00138{width:1.095600px;}
._4_c00138{width:2.890800px;}
._6_c00138{width:4.263600px;}
._3_c00138{width:5.504400px;}
._8_c00138{width:7.458000px;}
._5_c00138{width:9.598200px;}
._7_c00138{width:11.550000px;}
._b_c00138{width:13.654920px;}
._d_c00138{width:15.013200px;}
._10_c00138{width:16.863000px;}
._e_c00138{width:18.216000px;}
._f_c00138{width:19.232400px;}
._13_c00138{width:21.634800px;}
._11_c00138{width:24.945840px;}
._12_c00138{width:26.386800px;}
._14_c00138{width:28.974000px;}
.fc0_c00138{color:transparent;}
.fs7_c00138{font-size:58.200000px;}
.fs0_c00138{font-size:61.200000px;}
.fs6_c00138{font-size:64.800000px;}
.fs3_c00138{font-size:66.000000px;}
.fs1_c00138{font-size:67.800000px;}
.fs4_c00138{font-size:70.800000px;}
.fs5_c00138{font-size:72.000000px;}
.fs2_c00138{font-size:73.200000px;}
.fs8_c00138{font-size:76.800000px;}
.y0_c00138{bottom:0.000000px;}
.y21_c00138{bottom:72.375015px;}
.y20_c00138{bottom:149.400015px;}
.y1f_c00138{bottom:211.332015px;}
.y1e_c00138{bottom:243.375015px;}
.y1d_c00138{bottom:306.000015px;}
.y1c_c00138{bottom:368.650515px;}
.y1b_c00138{bottom:398.895015px;}
.y1a_c00138{bottom:430.575015px;}
.y19_c00138{bottom:430.585515px;}
.y18_c00138{bottom:461.902515px;}
.y17_c00138{bottom:493.219515px;}
.y16_c00138{bottom:524.524515px;}
.y15_c00138{bottom:555.495015px;}
.y14_c00138{bottom:587.175015px;}
.y13_c00138{bottom:587.181015px;}
.y23_c00138{bottom:615.255015px;}
.y12_c00138{bottom:618.135015px;}
.y11_c00138{bottom:618.139515px;}
.y22_c00138{bottom:618.840015px;}
.y10_c00138{bottom:649.440015px;}
.yf_c00138{bottom:649.446015px;}
.ye_c00138{bottom:680.401515px;}
.yd_c00138{bottom:711.735015px;}
.yc_c00138{bottom:711.738015px;}
.yb_c00138{bottom:743.055015px;}
.ya_c00138{bottom:743.058015px;}
.y9_c00138{bottom:774.375015px;}
.y8_c00138{bottom:837.372015px;}
.y7_c00138{bottom:899.286015px;}
.y6_c00138{bottom:961.920015px;}
.y5_c00138{bottom:993.255015px;}
.y4_c00138{bottom:1055.175015px;}
.y3_c00138{bottom:1086.855015px;}
.y2_c00138{bottom:1118.535015px;}
.y1_c00138{bottom:1193.760015px;}
.h2_c00138{height:60.064453px;}
.hc_c00138{height:60.700781px;}
.h4_c00138{height:64.775391px;}
.h9_c00138{height:66.490887px;}
.h5_c00138{height:66.508887px;}
.hb_c00138{height:67.584375px;}
.he_c00138{height:68.835938px;}
.h7_c00138{height:69.462328px;}
.ha_c00138{height:70.676062px;}
.h6_c00138{height:70.713281px;}
.h8_c00138{height:71.835797px;}
.h3_c00138{height:71.841797px;}
.hd_c00138{height:80.100000px;}
.h1_c00138{height:1263.000000px;}
.h0_c00138{height:1263.240015px;}
.w1_c00138{width:892.500000px;}
.w0_c00138{width:892.800000px;}
.x0_c00138{left:0.000000px;}
.x24_c00138{left:119.115000px;}
.x1_c00138{left:120.165000px;}
.x20_c00138{left:160.380000px;}
.x2f_c00138{left:170.925000px;}
.x2d_c00138{left:172.354500px;}
.x2_c00138{left:174.735000px;}
.x21_c00138{left:181.305000px;}
.x9_c00138{left:198.480000px;}
.x30_c00138{left:222.285000px;}
.xa_c00138{left:225.930000px;}
.x15_c00138{left:276.870000px;}
.x3_c00138{left:281.340000px;}
.x1c_c00138{left:296.460000px;}
.x4_c00138{left:303.300000px;}
.x2e_c00138{left:304.815000px;}
.x16_c00138{left:307.920000px;}
.x25_c00138{left:309.570000px;}
.x1d_c00138{left:318.405000px;}
.x17_c00138{left:330.660000px;}
.x19_c00138{left:336.795000px;}
.x1a_c00138{left:367.560000px;}
.x1b_c00138{left:390.630000px;}
.xb_c00138{left:401.595000px;}
.x10_c00138{left:404.910000px;}
.x22_c00138{left:410.580000px;}
.x32_c00138{left:420.405000px;}
.xc_c00138{left:423.750000px;}
.x11_c00138{left:431.820000px;}
.x5_c00138{left:435.225000px;}
.x1e_c00138{left:447.870000px;}
.x6_c00138{left:461.850000px;}
.x1f_c00138{left:476.115000px;}
.xd_c00138{left:514.620000px;}
.x7_c00138{left:525.060000px;}
.xe_c00138{left:536.235000px;}
.x8_c00138{left:547.425000px;}
.x2a_c00138{left:556.020000px;}
.x12_c00138{left:574.230000px;}
.x18_c00138{left:575.640000px;}
.x2b_c00138{left:578.010000px;}
.x28_c00138{left:585.165000px;}
.x13_c00138{left:604.470000px;}
.x29_c00138{left:612.540000px;}
.x2c_c00138{left:622.425000px;}
.x31_c00138{left:638.145000px;}
.x26_c00138{left:697.155000px;}
.x23_c00138{left:726.390000px;}
.xf_c00138{left:730.980000px;}
.x27_c00138{left:732.825000px;}
.x14_c00138{left:734.580000px;}
.x34_c00138{left:855.495000px;}
.x33_c00138{left:856.545000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls87_c00138{letter-spacing:-2.109333pt;}
.ls99_c00138{letter-spacing:-2.016000pt;}
.ls9a_c00138{letter-spacing:-1.810667pt;}
.ls81_c00138{letter-spacing:-1.620160pt;}
.ls8d_c00138{letter-spacing:-1.483520pt;}
.ls7c_c00138{letter-spacing:-1.151680pt;}
.ls92_c00138{letter-spacing:-0.868267pt;}
.ls97_c00138{letter-spacing:-0.851200pt;}
.ls98_c00138{letter-spacing:-0.516267pt;}
.ls7e_c00138{letter-spacing:-0.475200pt;}
.ls93_c00138{letter-spacing:-0.287467pt;}
.ls7b_c00138{letter-spacing:-0.204907pt;}
.ls88_c00138{letter-spacing:-0.170133pt;}
.ls82_c00138{letter-spacing:0.000000pt;}
.ls3b_c00138{letter-spacing:0.035200pt;}
.ls55_c00138{letter-spacing:0.111467pt;}
.ls61_c00138{letter-spacing:0.228800pt;}
.ls72_c00138{letter-spacing:0.246400pt;}
.ls96_c00138{letter-spacing:0.258133pt;}
.ls6e_c00138{letter-spacing:0.264000pt;}
.ls78_c00138{letter-spacing:0.269867pt;}
.ls6b_c00138{letter-spacing:0.381333pt;}
.ls1d_c00138{letter-spacing:0.422400pt;}
.ls3f_c00138{letter-spacing:0.457600pt;}
.ls5d_c00138{letter-spacing:0.481067pt;}
.lse_c00138{letter-spacing:0.518293pt;}
.ls71_c00138{letter-spacing:0.522133pt;}
.ls77_c00138{letter-spacing:0.533867pt;}
.lsf_c00138{letter-spacing:0.536373pt;}
.ls5b_c00138{letter-spacing:0.610133pt;}
.ls79_c00138{letter-spacing:0.627733pt;}
.ls80_c00138{letter-spacing:0.651200pt;}
.ls89_c00138{letter-spacing:0.686400pt;}
.ls75_c00138{letter-spacing:0.715733pt;}
.ls95_c00138{letter-spacing:0.739200pt;}
.lsd_c00138{letter-spacing:0.756800pt;}
.ls18_c00138{letter-spacing:0.774400pt;}
.ls6d_c00138{letter-spacing:0.777440pt;}
.ls84_c00138{letter-spacing:0.874133pt;}
.ls24_c00138{letter-spacing:0.885867pt;}
.lsa_c00138{letter-spacing:0.891733pt;}
.ls29_c00138{letter-spacing:0.903467pt;}
.ls30_c00138{letter-spacing:0.909333pt;}
.ls94_c00138{letter-spacing:0.932800pt;}
.ls43_c00138{letter-spacing:0.944533pt;}
.ls2a_c00138{letter-spacing:0.950400pt;}
.lsb_c00138{letter-spacing:0.956267pt;}
.ls59_c00138{letter-spacing:0.968000pt;}
.ls90_c00138{letter-spacing:0.979733pt;}
.ls8f_c00138{letter-spacing:0.985600pt;}
.ls60_c00138{letter-spacing:1.026667pt;}
.ls1a_c00138{letter-spacing:1.061867pt;}
.ls41_c00138{letter-spacing:1.073600pt;}
.ls70_c00138{letter-spacing:1.096853pt;}
.ls6c_c00138{letter-spacing:1.102880pt;}
.ls49_c00138{letter-spacing:1.102933pt;}
.ls56_c00138{letter-spacing:1.108800pt;}
.ls53_c00138{letter-spacing:1.114667pt;}
.ls44_c00138{letter-spacing:1.120533pt;}
.ls57_c00138{letter-spacing:1.126400pt;}
.ls7a_c00138{letter-spacing:1.142400pt;}
.ls69_c00138{letter-spacing:1.144000pt;}
.ls52_c00138{letter-spacing:1.151093pt;}
.ls42_c00138{letter-spacing:1.155733pt;}
.ls1_c00138{letter-spacing:1.161600pt;}
.ls8c_c00138{letter-spacing:1.167467pt;}
.ls65_c00138{letter-spacing:1.173333pt;}
.ls23_c00138{letter-spacing:1.190933pt;}
.ls4d_c00138{letter-spacing:1.196800pt;}
.ls4_c00138{letter-spacing:1.208533pt;}
.ls66_c00138{letter-spacing:1.214400pt;}
.ls3e_c00138{letter-spacing:1.226133pt;}
.ls51_c00138{letter-spacing:1.232000pt;}
.ls4a_c00138{letter-spacing:1.237867pt;}
.ls17_c00138{letter-spacing:1.246080pt;}
.ls31_c00138{letter-spacing:1.255467pt;}
.ls8a_c00138{letter-spacing:1.267200pt;}
.ls1f_c00138{letter-spacing:1.273067pt;}
.ls11_c00138{letter-spacing:1.284800pt;}
.ls5f_c00138{letter-spacing:1.290667pt;}
.ls5_c00138{letter-spacing:1.296533pt;}
.ls25_c00138{letter-spacing:1.302400pt;}
.ls12_c00138{letter-spacing:1.308267pt;}
.ls15_c00138{letter-spacing:1.314133pt;}
.ls2f_c00138{letter-spacing:1.331733pt;}
.ls54_c00138{letter-spacing:1.337600pt;}
.ls63_c00138{letter-spacing:1.343467pt;}
.ls62_c00138{letter-spacing:1.361067pt;}
.ls32_c00138{letter-spacing:1.372800pt;}
.ls37_c00138{letter-spacing:1.378667pt;}
.ls5c_c00138{letter-spacing:1.384533pt;}
.ls34_c00138{letter-spacing:1.390400pt;}
.ls5e_c00138{letter-spacing:1.396267pt;}
.ls1c_c00138{letter-spacing:1.402133pt;}
.ls45_c00138{letter-spacing:1.419733pt;}
.ls3a_c00138{letter-spacing:1.437333pt;}
.ls47_c00138{letter-spacing:1.443200pt;}
.ls67_c00138{letter-spacing:1.449067pt;}
.ls83_c00138{letter-spacing:1.466667pt;}
.ls36_c00138{letter-spacing:1.472533pt;}
.ls4c_c00138{letter-spacing:1.484267pt;}
.ls48_c00138{letter-spacing:1.490133pt;}
.ls5a_c00138{letter-spacing:1.496000pt;}
.ls7_c00138{letter-spacing:1.501867pt;}
.ls3_c00138{letter-spacing:1.525333pt;}
.ls3c_c00138{letter-spacing:1.537067pt;}
.ls8b_c00138{letter-spacing:1.560533pt;}
.ls50_c00138{letter-spacing:1.566400pt;}
.ls28_c00138{letter-spacing:1.572267pt;}
.ls8e_c00138{letter-spacing:1.589867pt;}
.ls4e_c00138{letter-spacing:1.619200pt;}
.ls74_c00138{letter-spacing:1.630933pt;}
.ls9_c00138{letter-spacing:1.636800pt;}
.ls35_c00138{letter-spacing:1.660267pt;}
.ls2e_c00138{letter-spacing:1.666133pt;}
.ls85_c00138{letter-spacing:1.672000pt;}
.ls73_c00138{letter-spacing:1.707200pt;}
.ls19_c00138{letter-spacing:1.713067pt;}
.ls2d_c00138{letter-spacing:1.718933pt;}
.ls21_c00138{letter-spacing:1.724800pt;}
.ls6a_c00138{letter-spacing:1.765867pt;}
.ls76_c00138{letter-spacing:1.777600pt;}
.lsc_c00138{letter-spacing:1.783467pt;}
.ls20_c00138{letter-spacing:1.789333pt;}
.ls1e_c00138{letter-spacing:1.795200pt;}
.ls3d_c00138{letter-spacing:1.801067pt;}
.ls91_c00138{letter-spacing:1.806933pt;}
.ls64_c00138{letter-spacing:1.853867pt;}
.ls26_c00138{letter-spacing:1.859733pt;}
.ls4f_c00138{letter-spacing:1.883200pt;}
.ls2c_c00138{letter-spacing:1.894933pt;}
.ls4b_c00138{letter-spacing:1.900800pt;}
.ls40_c00138{letter-spacing:1.971200pt;}
.ls8_c00138{letter-spacing:1.994667pt;}
.ls16_c00138{letter-spacing:2.018133pt;}
.ls1b_c00138{letter-spacing:2.029867pt;}
.ls68_c00138{letter-spacing:2.082667pt;}
.ls38_c00138{letter-spacing:2.129600pt;}
.ls13_c00138{letter-spacing:2.147200pt;}
.ls58_c00138{letter-spacing:2.176533pt;}
.ls33_c00138{letter-spacing:2.211733pt;}
.ls27_c00138{letter-spacing:2.235200pt;}
.ls39_c00138{letter-spacing:2.258667pt;}
.ls2_c00138{letter-spacing:2.276267pt;}
.ls46_c00138{letter-spacing:2.288000pt;}
.ls14_c00138{letter-spacing:2.387733pt;}
.ls86_c00138{letter-spacing:2.399467pt;}
.ls22_c00138{letter-spacing:2.405333pt;}
.ls7f_c00138{letter-spacing:2.422933pt;}
.ls2b_c00138{letter-spacing:2.487467pt;}
.ls6f_c00138{letter-spacing:2.501067pt;}
.ls10_c00138{letter-spacing:2.610667pt;}
.ls6_c00138{letter-spacing:2.804267pt;}
.ls7d_c00138{letter-spacing:2.933333pt;}
.ls0_c00138{letter-spacing:17.438933pt;}
.ws1_c00138{word-spacing:0.000000pt;}
.ws0_c00138{word-spacing:10.673760pt;}
._15_c00138{margin-left:-10.757600pt;}
._0_c00138{margin-left:-6.291840pt;}
._9_c00138{margin-left:-4.860800pt;}
._a_c00138{margin-left:-3.474133pt;}
._2_c00138{margin-left:-2.053333pt;}
._c_c00138{margin-left:-1.122773pt;}
._1_c00138{width:0.973867pt;}
._4_c00138{width:2.569600pt;}
._6_c00138{width:3.789867pt;}
._3_c00138{width:4.892800pt;}
._8_c00138{width:6.629333pt;}
._5_c00138{width:8.531733pt;}
._7_c00138{width:10.266667pt;}
._b_c00138{width:12.137707pt;}
._d_c00138{width:13.345067pt;}
._10_c00138{width:14.989333pt;}
._e_c00138{width:16.192000pt;}
._f_c00138{width:17.095467pt;}
._13_c00138{width:19.230933pt;}
._11_c00138{width:22.174080pt;}
._12_c00138{width:23.454933pt;}
._14_c00138{width:25.754667pt;}
.fs7_c00138{font-size:51.733333pt;}
.fs0_c00138{font-size:54.400000pt;}
.fs6_c00138{font-size:57.600000pt;}
.fs3_c00138{font-size:58.666667pt;}
.fs1_c00138{font-size:60.266667pt;}
.fs4_c00138{font-size:62.933333pt;}
.fs5_c00138{font-size:64.000000pt;}
.fs2_c00138{font-size:65.066667pt;}
.fs8_c00138{font-size:68.266667pt;}
.y0_c00138{bottom:0.000000pt;}
.y21_c00138{bottom:64.333347pt;}
.y20_c00138{bottom:132.800013pt;}
.y1f_c00138{bottom:187.850680pt;}
.y1e_c00138{bottom:216.333347pt;}
.y1d_c00138{bottom:272.000013pt;}
.y1c_c00138{bottom:327.689347pt;}
.y1b_c00138{bottom:354.573347pt;}
.y1a_c00138{bottom:382.733347pt;}
.y19_c00138{bottom:382.742680pt;}
.y18_c00138{bottom:410.580013pt;}
.y17_c00138{bottom:438.417347pt;}
.y16_c00138{bottom:466.244013pt;}
.y15_c00138{bottom:493.773347pt;}
.y14_c00138{bottom:521.933347pt;}
.y13_c00138{bottom:521.938680pt;}
.y23_c00138{bottom:546.893347pt;}
.y12_c00138{bottom:549.453347pt;}
.y11_c00138{bottom:549.457347pt;}
.y22_c00138{bottom:550.080013pt;}
.y10_c00138{bottom:577.280013pt;}
.yf_c00138{bottom:577.285347pt;}
.ye_c00138{bottom:604.801347pt;}
.yd_c00138{bottom:632.653347pt;}
.yc_c00138{bottom:632.656013pt;}
.yb_c00138{bottom:660.493347pt;}
.ya_c00138{bottom:660.496013pt;}
.y9_c00138{bottom:688.333347pt;}
.y8_c00138{bottom:744.330680pt;}
.y7_c00138{bottom:799.365347pt;}
.y6_c00138{bottom:855.040013pt;}
.y5_c00138{bottom:882.893347pt;}
.y4_c00138{bottom:937.933347pt;}
.y3_c00138{bottom:966.093347pt;}
.y2_c00138{bottom:994.253347pt;}
.y1_c00138{bottom:1061.120013pt;}
.h2_c00138{height:53.390625pt;}
.hc_c00138{height:53.956250pt;}
.h4_c00138{height:57.578125pt;}
.h9_c00138{height:59.103010pt;}
.h5_c00138{height:59.119010pt;}
.hb_c00138{height:60.075000pt;}
.he_c00138{height:61.187500pt;}
.h7_c00138{height:61.744292pt;}
.ha_c00138{height:62.823167pt;}
.h6_c00138{height:62.856250pt;}
.h8_c00138{height:63.854042pt;}
.h3_c00138{height:63.859375pt;}
.hd_c00138{height:71.200000pt;}
.h1_c00138{height:1122.666667pt;}
.h0_c00138{height:1122.880013pt;}
.w1_c00138{width:793.333333pt;}
.w0_c00138{width:793.600000pt;}
.x0_c00138{left:0.000000pt;}
.x24_c00138{left:105.880000pt;}
.x1_c00138{left:106.813333pt;}
.x20_c00138{left:142.560000pt;}
.x2f_c00138{left:151.933333pt;}
.x2d_c00138{left:153.204000pt;}
.x2_c00138{left:155.320000pt;}
.x21_c00138{left:161.160000pt;}
.x9_c00138{left:176.426667pt;}
.x30_c00138{left:197.586667pt;}
.xa_c00138{left:200.826667pt;}
.x15_c00138{left:246.106667pt;}
.x3_c00138{left:250.080000pt;}
.x1c_c00138{left:263.520000pt;}
.x4_c00138{left:269.600000pt;}
.x2e_c00138{left:270.946667pt;}
.x16_c00138{left:273.706667pt;}
.x25_c00138{left:275.173333pt;}
.x1d_c00138{left:283.026667pt;}
.x17_c00138{left:293.920000pt;}
.x19_c00138{left:299.373333pt;}
.x1a_c00138{left:326.720000pt;}
.x1b_c00138{left:347.226667pt;}
.xb_c00138{left:356.973333pt;}
.x10_c00138{left:359.920000pt;}
.x22_c00138{left:364.960000pt;}
.x32_c00138{left:373.693333pt;}
.xc_c00138{left:376.666667pt;}
.x11_c00138{left:383.840000pt;}
.x5_c00138{left:386.866667pt;}
.x1e_c00138{left:398.106667pt;}
.x6_c00138{left:410.533333pt;}
.x1f_c00138{left:423.213333pt;}
.xd_c00138{left:457.440000pt;}
.x7_c00138{left:466.720000pt;}
.xe_c00138{left:476.653333pt;}
.x8_c00138{left:486.600000pt;}
.x2a_c00138{left:494.240000pt;}
.x12_c00138{left:510.426667pt;}
.x18_c00138{left:511.680000pt;}
.x2b_c00138{left:513.786667pt;}
.x28_c00138{left:520.146667pt;}
.x13_c00138{left:537.306667pt;}
.x29_c00138{left:544.480000pt;}
.x2c_c00138{left:553.266667pt;}
.x31_c00138{left:567.240000pt;}
.x26_c00138{left:619.693333pt;}
.x23_c00138{left:645.680000pt;}
.xf_c00138{left:649.760000pt;}
.x27_c00138{left:651.400000pt;}
.x14_c00138{left:652.960000pt;}
.x34_c00138{left:760.440000pt;}
.x33_c00138{left:761.373333pt;}
}





/* 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_c00139 {
    display:none;
  }
  .loading-indicator_c00139.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00139 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_c00139 { 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_c00139" -> "#page-container .classname_c00139")
 */
.pf_c00139 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00139 { /* 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_c00139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00139 { /* 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_c00139 { /* 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_c00139 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00139 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00139 {overflow:visible;}
  }
}
.c_c00139 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00139 { /* 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_c00139:after { /* webkit #35443 */
  content: '';
}
.t_c00139:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00139 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 */
}
.__c00139 { /* 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_c00139 { /* info for Javascript */
  display:none;
}
.l_c00139 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00139 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00139 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00139: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_c00139 {
    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_c00139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00139.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_c00139 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00139;src:url('chunks/assets/font_1d6371de2f66761ea04f125b.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.284668;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_c00139;src:url('chunks/assets/font_e2bf37954c8b4c4f968c9338.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.284180;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_c00139;src:url('chunks/assets/font_1c4e3581c7e042cc41079bbf.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;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;}
.mb_c00139{transform:matrix(0.199209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199209,0.000000,0.000000,0.250000,0,0);}
.m3_c00139{transform:matrix(0.208968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208968,0.000000,0.000000,0.250000,0,0);}
.m2_c00139{transform:matrix(0.212718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212718,0.000000,0.000000,0.250000,0,0);}
.m1_c00139{transform:matrix(0.215633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215633,0.000000,0.000000,0.250000,0,0);}
.ma_c00139{transform:matrix(0.230724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230724,0.000000,0.000000,0.250000,0,0);}
.m9_c00139{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.md_c00139{transform:matrix(0.246384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246384,0.000000,0.000000,0.250000,0,0);}
.me_c00139{transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);}
.m0_c00139{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);}
.m4_c00139{transform:matrix(0.252929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252929,0.000000,0.000000,0.250000,0,0);}
.m6_c00139{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.m12_c00139{transform:matrix(0.254734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254734,0.000000,0.000000,0.250000,0,0);}
.m8_c00139{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mc_c00139{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.mf_c00139{transform:matrix(0.255821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255821,0.000000,0.000000,0.250000,0,0);}
.m7_c00139{transform:matrix(0.256848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256848,0.000000,0.000000,0.250000,0,0);}
.m5_c00139{transform:matrix(0.258708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258708,0.000000,0.000000,0.250000,0,0);}
.m11_c00139{transform:matrix(0.260306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260306,0.000000,0.000000,0.250000,0,0);}
.m10_c00139{transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls87_c00139{letter-spacing:-2.457000px;}
.ls91_c00139{letter-spacing:-2.352000px;}
.ls83_c00139{letter-spacing:-2.310000px;}
.ls77_c00139{letter-spacing:-2.163000px;}
.ls88_c00139{letter-spacing:-1.516320px;}
.ls93_c00139{letter-spacing:-1.438080px;}
.ls9b_c00139{letter-spacing:-1.389960px;}
.ls71_c00139{letter-spacing:-1.337280px;}
.ls8a_c00139{letter-spacing:-1.277640px;}
.ls6d_c00139{letter-spacing:-1.135680px;}
.ls97_c00139{letter-spacing:-1.048320px;}
.ls92_c00139{letter-spacing:-1.041600px;}
.ls94_c00139{letter-spacing:-0.860160px;}
.ls6f_c00139{letter-spacing:-0.719040px;}
.ls90_c00139{letter-spacing:-0.651840px;}
.ls70_c00139{letter-spacing:-0.611520px;}
.ls8f_c00139{letter-spacing:-0.584640px;}
.ls72_c00139{letter-spacing:-0.483840px;}
.ls8d_c00139{letter-spacing:-0.470340px;}
.ls6c_c00139{letter-spacing:-0.389760px;}
.ls8b_c00139{letter-spacing:-0.336960px;}
.ls8c_c00139{letter-spacing:-0.259740px;}
.ls86_c00139{letter-spacing:-0.210600px;}
.ls89_c00139{letter-spacing:-0.182520px;}
.ls81_c00139{letter-spacing:-0.114240px;}
.ls6e_c00139{letter-spacing:0.000000px;}
.ls95_c00139{letter-spacing:0.033600px;}
.ls44_c00139{letter-spacing:0.329280px;}
.ls40_c00139{letter-spacing:0.362880px;}
.ls42_c00139{letter-spacing:0.369600px;}
.ls82_c00139{letter-spacing:0.376320px;}
.ls73_c00139{letter-spacing:0.450240px;}
.ls84_c00139{letter-spacing:0.463680px;}
.ls3_c00139{letter-spacing:0.477120px;}
.ls49_c00139{letter-spacing:0.517440px;}
.ls52_c00139{letter-spacing:0.547560px;}
.ls12_c00139{letter-spacing:0.564480px;}
.ls75_c00139{letter-spacing:0.571200px;}
.ls58_c00139{letter-spacing:0.584640px;}
.ls2c_c00139{letter-spacing:0.598080px;}
.ls2_c00139{letter-spacing:0.618240px;}
.ls7a_c00139{letter-spacing:0.672000px;}
.ls76_c00139{letter-spacing:0.678720px;}
.lsc_c00139{letter-spacing:0.685440px;}
.ls1d_c00139{letter-spacing:0.725760px;}
.ls4d_c00139{letter-spacing:0.737100px;}
.ls22_c00139{letter-spacing:0.739200px;}
.ls4c_c00139{letter-spacing:0.744120px;}
.ls17_c00139{letter-spacing:0.752640px;}
.ls99_c00139{letter-spacing:0.772800px;}
.ls7f_c00139{letter-spacing:0.779520px;}
.ls2b_c00139{letter-spacing:0.833280px;}
.ls5b_c00139{letter-spacing:0.840000px;}
.ls80_c00139{letter-spacing:0.866880px;}
.lsa_c00139{letter-spacing:0.873600px;}
.ls3d_c00139{letter-spacing:0.920640px;}
.ls69_c00139{letter-spacing:0.927360px;}
.ls2e_c00139{letter-spacing:0.934080px;}
.ls7d_c00139{letter-spacing:0.935640px;}
.ls79_c00139{letter-spacing:0.960960px;}
.ls5d_c00139{letter-spacing:1.001280px;}
.ls24_c00139{letter-spacing:1.008000px;}
.ls5_c00139{letter-spacing:1.017000px;}
.ls47_c00139{letter-spacing:1.041600px;}
.ls63_c00139{letter-spacing:1.055040px;}
.ls46_c00139{letter-spacing:1.057680px;}
.ls56_c00139{letter-spacing:1.061760px;}
.ls50_c00139{letter-spacing:1.068480px;}
.ls10_c00139{letter-spacing:1.081920px;}
.ls48_c00139{letter-spacing:1.095360px;}
.ls4_c00139{letter-spacing:1.115520px;}
.ls5a_c00139{letter-spacing:1.132260px;}
.ls8e_c00139{letter-spacing:1.135680px;}
.ls5e_c00139{letter-spacing:1.139040px;}
.ls55_c00139{letter-spacing:1.155840px;}
.ls85_c00139{letter-spacing:1.162560px;}
.lse_c00139{letter-spacing:1.182720px;}
.ls25_c00139{letter-spacing:1.189440px;}
.ls98_c00139{letter-spacing:1.196160px;}
.ls1b_c00139{letter-spacing:1.216320px;}
.ls1_c00139{letter-spacing:1.233960px;}
.ls29_c00139{letter-spacing:1.240740px;}
.ls8_c00139{letter-spacing:1.243200px;}
.ls6_c00139{letter-spacing:1.249920px;}
.ls23_c00139{letter-spacing:1.263360px;}
.ls7_c00139{letter-spacing:1.270080px;}
.ls41_c00139{letter-spacing:1.276800px;}
.ls5f_c00139{letter-spacing:1.283520px;}
.ls6b_c00139{letter-spacing:1.285200px;}
.ls9_c00139{letter-spacing:1.290240px;}
.ls3b_c00139{letter-spacing:1.296960px;}
.ls27_c00139{letter-spacing:1.317120px;}
.ls1e_c00139{letter-spacing:1.350720px;}
.lsb_c00139{letter-spacing:1.364160px;}
.ls43_c00139{letter-spacing:1.370880px;}
.ls45_c00139{letter-spacing:1.377600px;}
.ls37_c00139{letter-spacing:1.397760px;}
.ls4a_c00139{letter-spacing:1.411200px;}
.ls1c_c00139{letter-spacing:1.451520px;}
.ls2d_c00139{letter-spacing:1.458240px;}
.ls2f_c00139{letter-spacing:1.485120px;}
.ls78_c00139{letter-spacing:1.498560px;}
.ls0_c00139{letter-spacing:1.505160px;}
.ls62_c00139{letter-spacing:1.532160px;}
.ls14_c00139{letter-spacing:1.538880px;}
.ls2a_c00139{letter-spacing:1.559040px;}
.ls26_c00139{letter-spacing:1.565760px;}
.ls35_c00139{letter-spacing:1.572480px;}
.ls11_c00139{letter-spacing:1.592640px;}
.ls15_c00139{letter-spacing:1.599360px;}
.ls39_c00139{letter-spacing:1.612800px;}
.ls18_c00139{letter-spacing:1.626240px;}
.ls59_c00139{letter-spacing:1.633980px;}
.ls3a_c00139{letter-spacing:1.646400px;}
.ls74_c00139{letter-spacing:1.666560px;}
.ls53_c00139{letter-spacing:1.680000px;}
.ls3f_c00139{letter-spacing:1.686720px;}
.ls31_c00139{letter-spacing:1.706880px;}
.ls7b_c00139{letter-spacing:1.733760px;}
.ls60_c00139{letter-spacing:1.740480px;}
.ls7c_c00139{letter-spacing:1.760640px;}
.ls16_c00139{letter-spacing:1.787520px;}
.ls9a_c00139{letter-spacing:1.794240px;}
.ls4b_c00139{letter-spacing:1.818180px;}
.ls21_c00139{letter-spacing:1.841280px;}
.ls61_c00139{letter-spacing:1.848000px;}
.ls67_c00139{letter-spacing:1.854720px;}
.ls20_c00139{letter-spacing:1.874880px;}
.ls4f_c00139{letter-spacing:1.901760px;}
.ls57_c00139{letter-spacing:1.915200px;}
.ls33_c00139{letter-spacing:1.928640px;}
.ls65_c00139{letter-spacing:1.948800px;}
.ls28_c00139{letter-spacing:1.955520px;}
.ls32_c00139{letter-spacing:1.968960px;}
.lsf_c00139{letter-spacing:2.036160px;}
.ls30_c00139{letter-spacing:2.136960px;}
.ls51_c00139{letter-spacing:2.141100px;}
.ls13_c00139{letter-spacing:2.184000px;}
.ls96_c00139{letter-spacing:2.244480px;}
.ls36_c00139{letter-spacing:2.284800px;}
.ls38_c00139{letter-spacing:2.304960px;}
.lsd_c00139{letter-spacing:2.365440px;}
.ls4e_c00139{letter-spacing:2.439360px;}
.ls68_c00139{letter-spacing:2.486400px;}
.ls34_c00139{letter-spacing:2.493120px;}
.ls1f_c00139{letter-spacing:2.587200px;}
.ls1a_c00139{letter-spacing:2.654400px;}
.ls66_c00139{letter-spacing:2.741760px;}
.ls19_c00139{letter-spacing:2.755200px;}
.ls54_c00139{letter-spacing:2.795520px;}
.ls3e_c00139{letter-spacing:3.037440px;}
.ls64_c00139{letter-spacing:3.178560px;}
.ls5c_c00139{letter-spacing:3.192000px;}
.ls3c_c00139{letter-spacing:3.306240px;}
.ls6a_c00139{letter-spacing:3.312960px;}
.ls7e_c00139{letter-spacing:3.360000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{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__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00139{word-spacing:0.000000px;}
.ws3_c00139{word-spacing:1.289640px;}
.ws1_c00139{word-spacing:2.557440px;}
.ws2_c00139{word-spacing:2.880600px;}
.ws0_c00139{word-spacing:11.638200px;}
._11_c00139{margin-left:-13.574400px;}
._15_c00139{margin-left:-11.783460px;}
._4_c00139{margin-left:-9.273600px;}
._0_c00139{margin-left:-8.108880px;}
._10_c00139{margin-left:-6.793920px;}
._f_c00139{margin-left:-5.631360px;}
._e_c00139{margin-left:-4.307520px;}
._d_c00139{margin-left:-2.822400px;}
._1_c00139{margin-left:-1.820400px;}
._12_c00139{width:1.014720px;}
._9_c00139{width:2.143680px;}
._a_c00139{width:3.241920px;}
._2_c00139{width:4.269120px;}
._c_c00139{width:5.755200px;}
._b_c00139{width:7.331520px;}
._3_c00139{width:8.801280px;}
._6_c00139{width:10.449120px;}
._5_c00139{width:11.937120px;}
._16_c00139{width:13.127040px;}
._7_c00139{width:14.313600px;}
._13_c00139{width:16.304280px;}
._8_c00139{width:19.219680px;}
._14_c00139{width:21.346980px;}
.fc0_c00139{color:transparent;}
.fs6_c00139{font-size:59.400000px;}
.fs0_c00139{font-size:61.200000px;}
.fs3_c00139{font-size:61.800000px;}
.fs4_c00139{font-size:66.000000px;}
.fs2_c00139{font-size:67.200000px;}
.fs1_c00139{font-size:67.800000px;}
.fs5_c00139{font-size:70.200000px;}
.y0_c00139{bottom:0.000000px;}
.y1f_c00139{bottom:68.775006px;}
.y1e_c00139{bottom:144.360006px;}
.y1d_c00139{bottom:144.364806px;}
.y1c_c00139{bottom:175.680006px;}
.y1b_c00139{bottom:175.683006px;}
.y1a_c00139{bottom:207.015006px;}
.y19_c00139{bottom:269.655006px;}
.y18_c00139{bottom:332.280006px;}
.y17_c00139{bottom:332.282406px;}
.y16_c00139{bottom:394.560006px;}
.y15_c00139{bottom:426.975006px;}
.y14_c00139{bottom:489.255006px;}
.y13_c00139{bottom:520.935006px;}
.y12_c00139{bottom:582.859206px;}
.y11_c00139{bottom:614.880006px;}
.yf_c00139{bottom:677.530206px;}
.y10_c00139{bottom:677.535006px;}
.ye_c00139{bottom:709.215006px;}
.yd_c00139{bottom:740.535006px;}
.yb_c00139{bottom:803.155206px;}
.yc_c00139{bottom:803.160006px;}
.y9_c00139{bottom:834.835206px;}
.ya_c00139{bottom:834.840006px;}
.y8_c00139{bottom:866.520006px;}
.y7_c00139{bottom:929.512806px;}
.y6_c00139{bottom:961.214406px;}
.y5_c00139{bottom:992.160006px;}
.y4_c00139{bottom:1023.840006px;}
.y3_c00139{bottom:1055.160006px;}
.y2_c00139{bottom:1118.160006px;}
.y1_c00139{bottom:1193.415006px;}
.hb_c00139{height:58.297852px;}
.h2_c00139{height:60.064453px;}
.h5_c00139{height:60.653320px;}
.h8_c00139{height:64.455469px;}
.h4_c00139{height:65.953125px;}
.h3_c00139{height:66.508887px;}
.h6_c00139{height:68.835938px;}
.h7_c00139{height:68.863184px;}
.h9_c00139{height:68.897461px;}
.ha_c00139{height:70.087500px;}
.h1_c00139{height:1263.000000px;}
.h0_c00139{height:1263.240006px;}
.w1_c00139{width:892.500000px;}
.w0_c00139{width:892.799998px;}
.x0_c00139{left:0.000000px;}
.x26_c00139{left:112.151999px;}
.x1c_c00139{left:113.386199px;}
.x7_c00139{left:114.451798px;}
.x3_c00139{left:116.654999px;}
.x1_c00139{left:118.004999px;}
.x15_c00139{left:144.719999px;}
.x16_c00139{left:166.649998px;}
.x19_c00139{left:167.924998px;}
.x4_c00139{left:169.004998px;}
.x2_c00139{left:171.254998px;}
.x1d_c00139{left:210.284999px;}
.x17_c00139{left:229.859998px;}
.xf_c00139{left:237.524998px;}
.x18_c00139{left:251.099998px;}
.x27_c00139{left:258.659999px;}
.x8_c00139{left:262.004999px;}
.x10_c00139{left:271.259999px;}
.x28_c00139{left:280.439999px;}
.x20_c00139{left:286.829998px;}
.x9_c00139{left:293.669999px;}
.x29_c00139{left:303.509999px;}
.x1e_c00139{left:337.499999px;}
.x21_c00139{left:384.989999px;}
.xc_c00139{left:408.539999px;}
.x1a_c00139{left:418.154998px;}
.x22_c00139{left:424.724999px;}
.xd_c00139{left:435.914999px;}
.x11_c00139{left:458.849999px;}
.x1b_c00139{left:463.514998px;}
.x1f_c00139{left:487.004998px;}
.xa_c00139{left:574.844998px;}
.x23_c00139{left:583.694999px;}
.x13_c00139{left:593.534999px;}
.x24_c00139{left:599.939999px;}
.x25_c00139{left:602.669999px;}
.xb_c00139{left:606.164999px;}
.x14_c00139{left:619.409999px;}
.xe_c00139{left:635.684999px;}
.x2a_c00139{left:653.294999px;}
.x5_c00139{left:672.764998px;}
.x2b_c00139{left:676.994999px;}
.x6_c00139{left:705.794999px;}
.x2c_c00139{left:729.179999px;}
.x12_c00139{left:730.619999px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls87_c00139{letter-spacing:-2.184000pt;}
.ls91_c00139{letter-spacing:-2.090667pt;}
.ls83_c00139{letter-spacing:-2.053333pt;}
.ls77_c00139{letter-spacing:-1.922667pt;}
.ls88_c00139{letter-spacing:-1.347840pt;}
.ls93_c00139{letter-spacing:-1.278293pt;}
.ls9b_c00139{letter-spacing:-1.235520pt;}
.ls71_c00139{letter-spacing:-1.188693pt;}
.ls8a_c00139{letter-spacing:-1.135680pt;}
.ls6d_c00139{letter-spacing:-1.009493pt;}
.ls97_c00139{letter-spacing:-0.931840pt;}
.ls92_c00139{letter-spacing:-0.925867pt;}
.ls94_c00139{letter-spacing:-0.764587pt;}
.ls6f_c00139{letter-spacing:-0.639147pt;}
.ls90_c00139{letter-spacing:-0.579413pt;}
.ls70_c00139{letter-spacing:-0.543573pt;}
.ls8f_c00139{letter-spacing:-0.519680pt;}
.ls72_c00139{letter-spacing:-0.430080pt;}
.ls8d_c00139{letter-spacing:-0.418080pt;}
.ls6c_c00139{letter-spacing:-0.346453pt;}
.ls8b_c00139{letter-spacing:-0.299520pt;}
.ls8c_c00139{letter-spacing:-0.230880pt;}
.ls86_c00139{letter-spacing:-0.187200pt;}
.ls89_c00139{letter-spacing:-0.162240pt;}
.ls81_c00139{letter-spacing:-0.101547pt;}
.ls6e_c00139{letter-spacing:0.000000pt;}
.ls95_c00139{letter-spacing:0.029867pt;}
.ls44_c00139{letter-spacing:0.292693pt;}
.ls40_c00139{letter-spacing:0.322560pt;}
.ls42_c00139{letter-spacing:0.328533pt;}
.ls82_c00139{letter-spacing:0.334507pt;}
.ls73_c00139{letter-spacing:0.400213pt;}
.ls84_c00139{letter-spacing:0.412160pt;}
.ls3_c00139{letter-spacing:0.424107pt;}
.ls49_c00139{letter-spacing:0.459947pt;}
.ls52_c00139{letter-spacing:0.486720pt;}
.ls12_c00139{letter-spacing:0.501760pt;}
.ls75_c00139{letter-spacing:0.507733pt;}
.ls58_c00139{letter-spacing:0.519680pt;}
.ls2c_c00139{letter-spacing:0.531627pt;}
.ls2_c00139{letter-spacing:0.549547pt;}
.ls7a_c00139{letter-spacing:0.597333pt;}
.ls76_c00139{letter-spacing:0.603307pt;}
.lsc_c00139{letter-spacing:0.609280pt;}
.ls1d_c00139{letter-spacing:0.645120pt;}
.ls4d_c00139{letter-spacing:0.655200pt;}
.ls22_c00139{letter-spacing:0.657067pt;}
.ls4c_c00139{letter-spacing:0.661440pt;}
.ls17_c00139{letter-spacing:0.669013pt;}
.ls99_c00139{letter-spacing:0.686933pt;}
.ls7f_c00139{letter-spacing:0.692907pt;}
.ls2b_c00139{letter-spacing:0.740693pt;}
.ls5b_c00139{letter-spacing:0.746667pt;}
.ls80_c00139{letter-spacing:0.770560pt;}
.lsa_c00139{letter-spacing:0.776533pt;}
.ls3d_c00139{letter-spacing:0.818347pt;}
.ls69_c00139{letter-spacing:0.824320pt;}
.ls2e_c00139{letter-spacing:0.830293pt;}
.ls7d_c00139{letter-spacing:0.831680pt;}
.ls79_c00139{letter-spacing:0.854187pt;}
.ls5d_c00139{letter-spacing:0.890027pt;}
.ls24_c00139{letter-spacing:0.896000pt;}
.ls5_c00139{letter-spacing:0.904000pt;}
.ls47_c00139{letter-spacing:0.925867pt;}
.ls63_c00139{letter-spacing:0.937813pt;}
.ls46_c00139{letter-spacing:0.940160pt;}
.ls56_c00139{letter-spacing:0.943787pt;}
.ls50_c00139{letter-spacing:0.949760pt;}
.ls10_c00139{letter-spacing:0.961707pt;}
.ls48_c00139{letter-spacing:0.973653pt;}
.ls4_c00139{letter-spacing:0.991573pt;}
.ls5a_c00139{letter-spacing:1.006453pt;}
.ls8e_c00139{letter-spacing:1.009493pt;}
.ls5e_c00139{letter-spacing:1.012480pt;}
.ls55_c00139{letter-spacing:1.027413pt;}
.ls85_c00139{letter-spacing:1.033387pt;}
.lse_c00139{letter-spacing:1.051307pt;}
.ls25_c00139{letter-spacing:1.057280pt;}
.ls98_c00139{letter-spacing:1.063253pt;}
.ls1b_c00139{letter-spacing:1.081173pt;}
.ls1_c00139{letter-spacing:1.096853pt;}
.ls29_c00139{letter-spacing:1.102880pt;}
.ls8_c00139{letter-spacing:1.105067pt;}
.ls6_c00139{letter-spacing:1.111040pt;}
.ls23_c00139{letter-spacing:1.122987pt;}
.ls7_c00139{letter-spacing:1.128960pt;}
.ls41_c00139{letter-spacing:1.134933pt;}
.ls5f_c00139{letter-spacing:1.140907pt;}
.ls6b_c00139{letter-spacing:1.142400pt;}
.ls9_c00139{letter-spacing:1.146880pt;}
.ls3b_c00139{letter-spacing:1.152853pt;}
.ls27_c00139{letter-spacing:1.170773pt;}
.ls1e_c00139{letter-spacing:1.200640pt;}
.lsb_c00139{letter-spacing:1.212587pt;}
.ls43_c00139{letter-spacing:1.218560pt;}
.ls45_c00139{letter-spacing:1.224533pt;}
.ls37_c00139{letter-spacing:1.242453pt;}
.ls4a_c00139{letter-spacing:1.254400pt;}
.ls1c_c00139{letter-spacing:1.290240pt;}
.ls2d_c00139{letter-spacing:1.296213pt;}
.ls2f_c00139{letter-spacing:1.320107pt;}
.ls78_c00139{letter-spacing:1.332053pt;}
.ls0_c00139{letter-spacing:1.337920pt;}
.ls62_c00139{letter-spacing:1.361920pt;}
.ls14_c00139{letter-spacing:1.367893pt;}
.ls2a_c00139{letter-spacing:1.385813pt;}
.ls26_c00139{letter-spacing:1.391787pt;}
.ls35_c00139{letter-spacing:1.397760pt;}
.ls11_c00139{letter-spacing:1.415680pt;}
.ls15_c00139{letter-spacing:1.421653pt;}
.ls39_c00139{letter-spacing:1.433600pt;}
.ls18_c00139{letter-spacing:1.445547pt;}
.ls59_c00139{letter-spacing:1.452427pt;}
.ls3a_c00139{letter-spacing:1.463467pt;}
.ls74_c00139{letter-spacing:1.481387pt;}
.ls53_c00139{letter-spacing:1.493333pt;}
.ls3f_c00139{letter-spacing:1.499307pt;}
.ls31_c00139{letter-spacing:1.517227pt;}
.ls7b_c00139{letter-spacing:1.541120pt;}
.ls60_c00139{letter-spacing:1.547093pt;}
.ls7c_c00139{letter-spacing:1.565013pt;}
.ls16_c00139{letter-spacing:1.588907pt;}
.ls9a_c00139{letter-spacing:1.594880pt;}
.ls4b_c00139{letter-spacing:1.616160pt;}
.ls21_c00139{letter-spacing:1.636693pt;}
.ls61_c00139{letter-spacing:1.642667pt;}
.ls67_c00139{letter-spacing:1.648640pt;}
.ls20_c00139{letter-spacing:1.666560pt;}
.ls4f_c00139{letter-spacing:1.690453pt;}
.ls57_c00139{letter-spacing:1.702400pt;}
.ls33_c00139{letter-spacing:1.714347pt;}
.ls65_c00139{letter-spacing:1.732267pt;}
.ls28_c00139{letter-spacing:1.738240pt;}
.ls32_c00139{letter-spacing:1.750187pt;}
.lsf_c00139{letter-spacing:1.809920pt;}
.ls30_c00139{letter-spacing:1.899520pt;}
.ls51_c00139{letter-spacing:1.903200pt;}
.ls13_c00139{letter-spacing:1.941333pt;}
.ls96_c00139{letter-spacing:1.995093pt;}
.ls36_c00139{letter-spacing:2.030933pt;}
.ls38_c00139{letter-spacing:2.048853pt;}
.lsd_c00139{letter-spacing:2.102613pt;}
.ls4e_c00139{letter-spacing:2.168320pt;}
.ls68_c00139{letter-spacing:2.210133pt;}
.ls34_c00139{letter-spacing:2.216107pt;}
.ls1f_c00139{letter-spacing:2.299733pt;}
.ls1a_c00139{letter-spacing:2.359467pt;}
.ls66_c00139{letter-spacing:2.437120pt;}
.ls19_c00139{letter-spacing:2.449067pt;}
.ls54_c00139{letter-spacing:2.484907pt;}
.ls3e_c00139{letter-spacing:2.699947pt;}
.ls64_c00139{letter-spacing:2.825387pt;}
.ls5c_c00139{letter-spacing:2.837333pt;}
.ls3c_c00139{letter-spacing:2.938880pt;}
.ls6a_c00139{letter-spacing:2.944853pt;}
.ls7e_c00139{letter-spacing:2.986667pt;}
.ws4_c00139{word-spacing:0.000000pt;}
.ws3_c00139{word-spacing:1.146347pt;}
.ws1_c00139{word-spacing:2.273280pt;}
.ws2_c00139{word-spacing:2.560533pt;}
.ws0_c00139{word-spacing:10.345067pt;}
._11_c00139{margin-left:-12.066133pt;}
._15_c00139{margin-left:-10.474187pt;}
._4_c00139{margin-left:-8.243200pt;}
._0_c00139{margin-left:-7.207893pt;}
._10_c00139{margin-left:-6.039040pt;}
._f_c00139{margin-left:-5.005653pt;}
._e_c00139{margin-left:-3.828907pt;}
._d_c00139{margin-left:-2.508800pt;}
._1_c00139{margin-left:-1.618133pt;}
._12_c00139{width:0.901973pt;}
._9_c00139{width:1.905493pt;}
._a_c00139{width:2.881707pt;}
._2_c00139{width:3.794773pt;}
._c_c00139{width:5.115733pt;}
._b_c00139{width:6.516907pt;}
._3_c00139{width:7.823360pt;}
._6_c00139{width:9.288107pt;}
._5_c00139{width:10.610773pt;}
._16_c00139{width:11.668480pt;}
._7_c00139{width:12.723200pt;}
._13_c00139{width:14.492693pt;}
._8_c00139{width:17.084160pt;}
._14_c00139{width:18.975093pt;}
.fs6_c00139{font-size:52.800000pt;}
.fs0_c00139{font-size:54.400000pt;}
.fs3_c00139{font-size:54.933333pt;}
.fs4_c00139{font-size:58.666667pt;}
.fs2_c00139{font-size:59.733333pt;}
.fs1_c00139{font-size:60.266667pt;}
.fs5_c00139{font-size:62.400000pt;}
.y0_c00139{bottom:0.000000pt;}
.y1f_c00139{bottom:61.133339pt;}
.y1e_c00139{bottom:128.320005pt;}
.y1d_c00139{bottom:128.324272pt;}
.y1c_c00139{bottom:156.160005pt;}
.y1b_c00139{bottom:156.162672pt;}
.y1a_c00139{bottom:184.013339pt;}
.y19_c00139{bottom:239.693339pt;}
.y18_c00139{bottom:295.360005pt;}
.y17_c00139{bottom:295.362139pt;}
.y16_c00139{bottom:350.720005pt;}
.y15_c00139{bottom:379.533339pt;}
.y14_c00139{bottom:434.893339pt;}
.y13_c00139{bottom:463.053339pt;}
.y12_c00139{bottom:518.097072pt;}
.y11_c00139{bottom:546.560005pt;}
.yf_c00139{bottom:602.249072pt;}
.y10_c00139{bottom:602.253339pt;}
.ye_c00139{bottom:630.413339pt;}
.yd_c00139{bottom:658.253339pt;}
.yb_c00139{bottom:713.915739pt;}
.yc_c00139{bottom:713.920005pt;}
.y9_c00139{bottom:742.075739pt;}
.ya_c00139{bottom:742.080005pt;}
.y8_c00139{bottom:770.240005pt;}
.y7_c00139{bottom:826.233605pt;}
.y6_c00139{bottom:854.412805pt;}
.y5_c00139{bottom:881.920005pt;}
.y4_c00139{bottom:910.080005pt;}
.y3_c00139{bottom:937.920005pt;}
.y2_c00139{bottom:993.920005pt;}
.y1_c00139{bottom:1060.813339pt;}
.hb_c00139{height:51.820312pt;}
.h2_c00139{height:53.390625pt;}
.h5_c00139{height:53.914062pt;}
.h8_c00139{height:57.293750pt;}
.h4_c00139{height:58.625000pt;}
.h3_c00139{height:59.119010pt;}
.h6_c00139{height:61.187500pt;}
.h7_c00139{height:61.211719pt;}
.h9_c00139{height:61.242187pt;}
.ha_c00139{height:62.300000pt;}
.h1_c00139{height:1122.666667pt;}
.h0_c00139{height:1122.880005pt;}
.w1_c00139{width:793.333333pt;}
.w0_c00139{width:793.599999pt;}
.x0_c00139{left:0.000000pt;}
.x26_c00139{left:99.690665pt;}
.x1c_c00139{left:100.787732pt;}
.x7_c00139{left:101.734932pt;}
.x3_c00139{left:103.693332pt;}
.x1_c00139{left:104.893332pt;}
.x15_c00139{left:128.639999pt;}
.x16_c00139{left:148.133332pt;}
.x19_c00139{left:149.266665pt;}
.x4_c00139{left:150.226665pt;}
.x2_c00139{left:152.226665pt;}
.x1d_c00139{left:186.919999pt;}
.x17_c00139{left:204.319999pt;}
.xf_c00139{left:211.133332pt;}
.x18_c00139{left:223.199999pt;}
.x27_c00139{left:229.919999pt;}
.x8_c00139{left:232.893332pt;}
.x10_c00139{left:241.119999pt;}
.x28_c00139{left:249.279999pt;}
.x20_c00139{left:254.959999pt;}
.x9_c00139{left:261.039999pt;}
.x29_c00139{left:269.786665pt;}
.x1e_c00139{left:299.999999pt;}
.x21_c00139{left:342.213332pt;}
.xc_c00139{left:363.146665pt;}
.x1a_c00139{left:371.693332pt;}
.x22_c00139{left:377.533332pt;}
.xd_c00139{left:387.479999pt;}
.x11_c00139{left:407.866665pt;}
.x1b_c00139{left:412.013332pt;}
.x1f_c00139{left:432.893332pt;}
.xa_c00139{left:510.973332pt;}
.x23_c00139{left:518.839999pt;}
.x13_c00139{left:527.586665pt;}
.x24_c00139{left:533.279999pt;}
.x25_c00139{left:535.706665pt;}
.xb_c00139{left:538.813332pt;}
.x14_c00139{left:550.586665pt;}
.xe_c00139{left:565.053332pt;}
.x2a_c00139{left:580.706665pt;}
.x5_c00139{left:598.013332pt;}
.x2b_c00139{left:601.773332pt;}
.x6_c00139{left:627.373332pt;}
.x2c_c00139{left:648.159999pt;}
.x12_c00139{left:649.439999pt;}
}





/* 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_c00140 {
    display:none;
  }
  .loading-indicator_c00140.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00140 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_c00140 { 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_c00140" -> "#page-container .classname_c00140")
 */
.pf_c00140 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00140 { /* 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_c00140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00140 { /* 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_c00140 { /* 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_c00140 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00140 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00140 {overflow:visible;}
  }
}
.c_c00140 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00140 { /* 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_c00140:after { /* webkit #35443 */
  content: '';
}
.t_c00140:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00140 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 */
}
.__c00140 { /* 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_c00140 { /* info for Javascript */
  display:none;
}
.l_c00140 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00140 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00140 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00140: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_c00140 {
    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_c00140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00140.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_c00140 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00140;src:url('chunks/assets/font_0a1b80191966ae0bd6fcd3d5.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.311035;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_c00140;src:url('chunks/assets/font_8e9b52fb4e98689ebce578d1.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.284668;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_c00140;src:url('chunks/assets/font_89776b60c0e741fa0d2b78d2.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.284180;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_c00140;src:url('chunks/assets/font_6d0a0848af0d5e287c6abfa4.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;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:ff5_c00140;src:url('chunks/assets/font_e39f097d38347682d4239f64.woff2')format("woff");}.ff5_c00140{font-family:ff5_c00140;line-height:1.284180;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;}
.m3_c00140{transform:matrix(0.228961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228961,0.000000,0.000000,0.250000,0,0);}
.m2_c00140{transform:matrix(0.232142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232142,0.000000,0.000000,0.250000,0,0);}
.m8_c00140{transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);}
.m0_c00140{transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);}
.m4_c00140{transform:matrix(0.239395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239395,0.000000,0.000000,0.250000,0,0);}
.m6_c00140{transform:matrix(0.241969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241969,0.000000,0.000000,0.250000,0,0);}
.m5_c00140{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m7_c00140{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.m9_c00140{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{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);}
.v0_c00140{vertical-align:0.000000px;}
.ls6e_c00140{letter-spacing:-2.394000px;}
.ls5e_c00140{letter-spacing:-2.373000px;}
.ls4a_c00140{letter-spacing:-2.310000px;}
.ls5c_c00140{letter-spacing:-2.247000px;}
.ls78_c00140{letter-spacing:-2.168280px;}
.ls4f_c00140{letter-spacing:-2.142000px;}
.ls77_c00140{letter-spacing:-2.099880px;}
.ls64_c00140{letter-spacing:-1.730520px;}
.ls75_c00140{letter-spacing:-1.633500px;}
.ls7c_c00140{letter-spacing:-1.566360px;}
.ls76_c00140{letter-spacing:-1.430220px;}
.ls7d_c00140{letter-spacing:-1.429560px;}
.ls4c_c00140{letter-spacing:-1.347480px;}
.ls79_c00140{letter-spacing:-1.258560px;}
.ls7e_c00140{letter-spacing:-1.231200px;}
.ls7a_c00140{letter-spacing:-1.149120px;}
.ls50_c00140{letter-spacing:-1.053360px;}
.ls5b_c00140{letter-spacing:-0.950760px;}
.ls6b_c00140{letter-spacing:-0.943920px;}
.ls71_c00140{letter-spacing:-0.868680px;}
.ls60_c00140{letter-spacing:-0.855000px;}
.ls7f_c00140{letter-spacing:-0.823680px;}
.ls72_c00140{letter-spacing:-0.684000px;}
.ls74_c00140{letter-spacing:-0.670320px;}
.ls53_c00140{letter-spacing:-0.581400px;}
.ls59_c00140{letter-spacing:-0.526680px;}
.ls51_c00140{letter-spacing:-0.478800px;}
.ls61_c00140{letter-spacing:-0.458280px;}
.ls66_c00140{letter-spacing:-0.451440px;}
.ls4e_c00140{letter-spacing:-0.396720px;}
.ls58_c00140{letter-spacing:-0.376200px;}
.ls57_c00140{letter-spacing:-0.266760px;}
.ls52_c00140{letter-spacing:-0.225720px;}
.ls63_c00140{letter-spacing:-0.218880px;}
.ls65_c00140{letter-spacing:-0.212040px;}
.ls69_c00140{letter-spacing:-0.184680px;}
.ls56_c00140{letter-spacing:-0.177840px;}
.ls67_c00140{letter-spacing:-0.157320px;}
.ls6a_c00140{letter-spacing:-0.123120px;}
.ls68_c00140{letter-spacing:-0.116280px;}
.ls6c_c00140{letter-spacing:-0.095760px;}
.ls5f_c00140{letter-spacing:-0.068400px;}
.ls4d_c00140{letter-spacing:-0.054720px;}
.ls4b_c00140{letter-spacing:-0.041040px;}
.ls6f_c00140{letter-spacing:-0.027360px;}
.ls7b_c00140{letter-spacing:-0.020520px;}
.ls5a_c00140{letter-spacing:-0.006840px;}
.ls55_c00140{letter-spacing:0.000000px;}
.ls43_c00140{letter-spacing:0.006840px;}
.ls28_c00140{letter-spacing:0.013680px;}
.ls3b_c00140{letter-spacing:0.020520px;}
.ls32_c00140{letter-spacing:0.047880px;}
.ls7_c00140{letter-spacing:0.068400px;}
.ls38_c00140{letter-spacing:0.075240px;}
.ls37_c00140{letter-spacing:0.082080px;}
.ls3a_c00140{letter-spacing:0.095760px;}
.ls3f_c00140{letter-spacing:0.116280px;}
.ls73_c00140{letter-spacing:0.129960px;}
.lsb_c00140{letter-spacing:0.136800px;}
.ls18_c00140{letter-spacing:0.143640px;}
.ls30_c00140{letter-spacing:0.157320px;}
.ls17_c00140{letter-spacing:0.164160px;}
.ls41_c00140{letter-spacing:0.191520px;}
.lsc_c00140{letter-spacing:0.212040px;}
.ls3d_c00140{letter-spacing:0.218880px;}
.ls1c_c00140{letter-spacing:0.223740px;}
.ls35_c00140{letter-spacing:0.225720px;}
.ls10_c00140{letter-spacing:0.232560px;}
.ls36_c00140{letter-spacing:0.239400px;}
.ls2d_c00140{letter-spacing:0.253080px;}
.ls34_c00140{letter-spacing:0.259920px;}
.ls11_c00140{letter-spacing:0.266760px;}
.ls3e_c00140{letter-spacing:0.280440px;}
.ls33_c00140{letter-spacing:0.294120px;}
.ls19_c00140{letter-spacing:0.307800px;}
.ls3c_c00140{letter-spacing:0.314640px;}
.ls1_c00140{letter-spacing:0.321480px;}
.ls2_c00140{letter-spacing:0.328320px;}
.ls20_c00140{letter-spacing:0.335160px;}
.ls49_c00140{letter-spacing:0.362520px;}
.ls0_c00140{letter-spacing:0.369360px;}
.ls40_c00140{letter-spacing:0.376200px;}
.lsa_c00140{letter-spacing:0.393240px;}
.ls1a_c00140{letter-spacing:0.396720px;}
.ls1d_c00140{letter-spacing:0.447480px;}
.ls2c_c00140{letter-spacing:0.465120px;}
.ls29_c00140{letter-spacing:0.471960px;}
.ls8_c00140{letter-spacing:0.485640px;}
.ls14_c00140{letter-spacing:0.492480px;}
.ls46_c00140{letter-spacing:0.506160px;}
.ls6_c00140{letter-spacing:0.519840px;}
.lsf_c00140{letter-spacing:0.526680px;}
.ls48_c00140{letter-spacing:0.535620px;}
.ls3_c00140{letter-spacing:0.567720px;}
.ls25_c00140{letter-spacing:0.581400px;}
.ls6d_c00140{letter-spacing:0.615600px;}
.ls15_c00140{letter-spacing:0.616980px;}
.ls12_c00140{letter-spacing:0.622440px;}
.ls16_c00140{letter-spacing:0.649800px;}
.ls2a_c00140{letter-spacing:0.677160px;}
.ls4_c00140{letter-spacing:0.684000px;}
.ls2b_c00140{letter-spacing:0.711360px;}
.ls9_c00140{letter-spacing:0.718200px;}
.ls26_c00140{letter-spacing:0.847500px;}
.ls27_c00140{letter-spacing:0.855000px;}
.ls1e_c00140{letter-spacing:0.868680px;}
.ls70_c00140{letter-spacing:0.875520px;}
.ls44_c00140{letter-spacing:0.882360px;}
.ls42_c00140{letter-spacing:0.916560px;}
.ls5d_c00140{letter-spacing:0.930240px;}
.ls31_c00140{letter-spacing:0.943920px;}
.ls2e_c00140{letter-spacing:0.964440px;}
.ls2f_c00140{letter-spacing:0.978120px;}
.ls5_c00140{letter-spacing:1.003440px;}
.lsd_c00140{letter-spacing:1.012320px;}
.ls45_c00140{letter-spacing:1.026000px;}
.ls1b_c00140{letter-spacing:1.039680px;}
.ls62_c00140{letter-spacing:1.060200px;}
.ls22_c00140{letter-spacing:1.176480px;}
.ls13_c00140{letter-spacing:1.238040px;}
.ls24_c00140{letter-spacing:1.333800px;}
.lse_c00140{letter-spacing:1.648440px;}
.ls47_c00140{letter-spacing:1.701780px;}
.ls23_c00140{letter-spacing:1.744200px;}
.ls39_c00140{letter-spacing:1.792080px;}
.ls54_c00140{letter-spacing:1.839960px;}
.ls21_c00140{letter-spacing:2.236680px;}
.ls1f_c00140{letter-spacing:2.715480px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{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__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00140{word-spacing:-1.320360px;}
.ws4_c00140{word-spacing:0.000000px;}
.ws2_c00140{word-spacing:1.931100px;}
.ws1_c00140{word-spacing:6.593400px;}
.ws3_c00140{word-spacing:13.679520px;}
._16_c00140{margin-left:-5.102640px;}
._17_c00140{margin-left:-4.083480px;}
._1_c00140{margin-left:-2.859120px;}
._11_c00140{margin-left:-1.114920px;}
._0_c00140{width:1.067040px;}
._2_c00140{width:2.818080px;}
._4_c00140{width:4.172400px;}
._3_c00140{width:5.663520px;}
._f_c00140{width:6.840000px;}
._10_c00140{width:7.934400px;}
._b_c00140{width:9.056160px;}
._c_c00140{width:10.355220px;}
._12_c00140{width:11.532240px;}
._e_c00140{width:12.749760px;}
._d_c00140{width:14.637600px;}
._6_c00140{width:23.686920px;}
._9_c00140{width:26.026200px;}
._7_c00140{width:27.072720px;}
._a_c00140{width:28.789560px;}
._5_c00140{width:30.232800px;}
._8_c00140{width:31.676040px;}
._15_c00140{width:34.836120px;}
._13_c00140{width:36.806040px;}
._14_c00140{width:37.968840px;}
.fc0_c00140{color:transparent;}
.fs6_c00140{font-size:57.600000px;}
.fs3_c00140{font-size:61.200000px;}
.fs4_c00140{font-size:64.200000px;}
.fs0_c00140{font-size:66.000000px;}
.fs2_c00140{font-size:67.800000px;}
.fs1_c00140{font-size:68.400000px;}
.fs5_c00140{font-size:72.600000px;}
.y0_c00140{bottom:0.000000px;}
.y1d_c00140{bottom:69.120015px;}
.y1c_c00140{bottom:175.695015px;}
.y1b_c00140{bottom:175.697715px;}
.y19_c00140{bottom:238.330815px;}
.y1a_c00140{bottom:238.335015px;}
.y18_c00140{bottom:270.000015px;}
.y17_c00140{bottom:332.999715px;}
.y15_c00140{bottom:395.282715px;}
.y16_c00140{bottom:395.295015px;}
.y14_c00140{bottom:426.969015px;}
.y12_c00140{bottom:457.914615px;}
.y13_c00140{bottom:457.920015px;}
.y11_c00140{bottom:489.241815px;}
.y10_c00140{bottom:520.569015px;}
.yf_c00140{bottom:551.520015px;}
.ye_c00140{bottom:614.176815px;}
.yd_c00140{bottom:676.451415px;}
.yc_c00140{bottom:739.447815px;}
.yb_c00140{bottom:770.775015px;}
.y9_c00140{bottom:832.673715px;}
.ya_c00140{bottom:832.680015px;}
.y8_c00140{bottom:864.360015px;}
.y6_c00140{bottom:926.641515px;}
.y7_c00140{bottom:926.655015px;}
.y5_c00140{bottom:958.327815px;}
.y4_c00140{bottom:989.655015px;}
.y3_c00140{bottom:1051.935015px;}
.y2_c00140{bottom:1114.935015px;}
.y1_c00140{bottom:1189.455015px;}
.hb_c00140{height:56.531250px;}
.h4_c00140{height:63.829687px;}
.h2_c00140{height:66.515625px;}
.h5_c00140{height:66.958594px;}
.h3_c00140{height:67.130859px;}
.h9_c00140{height:67.132059px;}
.h8_c00140{height:67.180059px;}
.h7_c00140{height:68.344088px;}
.h6_c00140{height:70.713281px;}
.ha_c00140{height:71.217480px;}
.h1_c00140{height:1263.000000px;}
.h0_c00140{height:1263.240015px;}
.w1_c00140{width:892.500000px;}
.w0_c00140{width:892.800015px;}
.x0_c00140{left:0.000000px;}
.x9_c00140{left:123.780615px;}
.x1_c00140{left:124.845015px;}
.x7_c00140{left:159.300015px;}
.x8_c00140{left:175.650015px;}
.xe_c00140{left:177.368715px;}
.x2_c00140{left:179.085015px;}
.xf_c00140{left:263.670015px;}
.x10_c00140{left:279.630015px;}
.x6_c00140{left:299.655015px;}
.xc_c00140{left:324.495015px;}
.xd_c00140{left:345.000015px;}
.x11_c00140{left:422.445015px;}
.x13_c00140{left:424.665015px;}
.x3_c00140{left:448.440015px;}
.x12_c00140{left:449.760015px;}
.x4_c00140{left:480.420015px;}
.xa_c00140{left:600.405015px;}
.x5_c00140{left:695.775015px;}
.xb_c00140{left:699.300015px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls6e_c00140{letter-spacing:-2.128000pt;}
.ls5e_c00140{letter-spacing:-2.109333pt;}
.ls4a_c00140{letter-spacing:-2.053333pt;}
.ls5c_c00140{letter-spacing:-1.997333pt;}
.ls78_c00140{letter-spacing:-1.927360pt;}
.ls4f_c00140{letter-spacing:-1.904000pt;}
.ls77_c00140{letter-spacing:-1.866560pt;}
.ls64_c00140{letter-spacing:-1.538240pt;}
.ls75_c00140{letter-spacing:-1.452000pt;}
.ls7c_c00140{letter-spacing:-1.392320pt;}
.ls76_c00140{letter-spacing:-1.271307pt;}
.ls7d_c00140{letter-spacing:-1.270720pt;}
.ls4c_c00140{letter-spacing:-1.197760pt;}
.ls79_c00140{letter-spacing:-1.118720pt;}
.ls7e_c00140{letter-spacing:-1.094400pt;}
.ls7a_c00140{letter-spacing:-1.021440pt;}
.ls50_c00140{letter-spacing:-0.936320pt;}
.ls5b_c00140{letter-spacing:-0.845120pt;}
.ls6b_c00140{letter-spacing:-0.839040pt;}
.ls71_c00140{letter-spacing:-0.772160pt;}
.ls60_c00140{letter-spacing:-0.760000pt;}
.ls7f_c00140{letter-spacing:-0.732160pt;}
.ls72_c00140{letter-spacing:-0.608000pt;}
.ls74_c00140{letter-spacing:-0.595840pt;}
.ls53_c00140{letter-spacing:-0.516800pt;}
.ls59_c00140{letter-spacing:-0.468160pt;}
.ls51_c00140{letter-spacing:-0.425600pt;}
.ls61_c00140{letter-spacing:-0.407360pt;}
.ls66_c00140{letter-spacing:-0.401280pt;}
.ls4e_c00140{letter-spacing:-0.352640pt;}
.ls58_c00140{letter-spacing:-0.334400pt;}
.ls57_c00140{letter-spacing:-0.237120pt;}
.ls52_c00140{letter-spacing:-0.200640pt;}
.ls63_c00140{letter-spacing:-0.194560pt;}
.ls65_c00140{letter-spacing:-0.188480pt;}
.ls69_c00140{letter-spacing:-0.164160pt;}
.ls56_c00140{letter-spacing:-0.158080pt;}
.ls67_c00140{letter-spacing:-0.139840pt;}
.ls6a_c00140{letter-spacing:-0.109440pt;}
.ls68_c00140{letter-spacing:-0.103360pt;}
.ls6c_c00140{letter-spacing:-0.085120pt;}
.ls5f_c00140{letter-spacing:-0.060800pt;}
.ls4d_c00140{letter-spacing:-0.048640pt;}
.ls4b_c00140{letter-spacing:-0.036480pt;}
.ls6f_c00140{letter-spacing:-0.024320pt;}
.ls7b_c00140{letter-spacing:-0.018240pt;}
.ls5a_c00140{letter-spacing:-0.006080pt;}
.ls55_c00140{letter-spacing:0.000000pt;}
.ls43_c00140{letter-spacing:0.006080pt;}
.ls28_c00140{letter-spacing:0.012160pt;}
.ls3b_c00140{letter-spacing:0.018240pt;}
.ls32_c00140{letter-spacing:0.042560pt;}
.ls7_c00140{letter-spacing:0.060800pt;}
.ls38_c00140{letter-spacing:0.066880pt;}
.ls37_c00140{letter-spacing:0.072960pt;}
.ls3a_c00140{letter-spacing:0.085120pt;}
.ls3f_c00140{letter-spacing:0.103360pt;}
.ls73_c00140{letter-spacing:0.115520pt;}
.lsb_c00140{letter-spacing:0.121600pt;}
.ls18_c00140{letter-spacing:0.127680pt;}
.ls30_c00140{letter-spacing:0.139840pt;}
.ls17_c00140{letter-spacing:0.145920pt;}
.ls41_c00140{letter-spacing:0.170240pt;}
.lsc_c00140{letter-spacing:0.188480pt;}
.ls3d_c00140{letter-spacing:0.194560pt;}
.ls1c_c00140{letter-spacing:0.198880pt;}
.ls35_c00140{letter-spacing:0.200640pt;}
.ls10_c00140{letter-spacing:0.206720pt;}
.ls36_c00140{letter-spacing:0.212800pt;}
.ls2d_c00140{letter-spacing:0.224960pt;}
.ls34_c00140{letter-spacing:0.231040pt;}
.ls11_c00140{letter-spacing:0.237120pt;}
.ls3e_c00140{letter-spacing:0.249280pt;}
.ls33_c00140{letter-spacing:0.261440pt;}
.ls19_c00140{letter-spacing:0.273600pt;}
.ls3c_c00140{letter-spacing:0.279680pt;}
.ls1_c00140{letter-spacing:0.285760pt;}
.ls2_c00140{letter-spacing:0.291840pt;}
.ls20_c00140{letter-spacing:0.297920pt;}
.ls49_c00140{letter-spacing:0.322240pt;}
.ls0_c00140{letter-spacing:0.328320pt;}
.ls40_c00140{letter-spacing:0.334400pt;}
.lsa_c00140{letter-spacing:0.349547pt;}
.ls1a_c00140{letter-spacing:0.352640pt;}
.ls1d_c00140{letter-spacing:0.397760pt;}
.ls2c_c00140{letter-spacing:0.413440pt;}
.ls29_c00140{letter-spacing:0.419520pt;}
.ls8_c00140{letter-spacing:0.431680pt;}
.ls14_c00140{letter-spacing:0.437760pt;}
.ls46_c00140{letter-spacing:0.449920pt;}
.ls6_c00140{letter-spacing:0.462080pt;}
.lsf_c00140{letter-spacing:0.468160pt;}
.ls48_c00140{letter-spacing:0.476107pt;}
.ls3_c00140{letter-spacing:0.504640pt;}
.ls25_c00140{letter-spacing:0.516800pt;}
.ls6d_c00140{letter-spacing:0.547200pt;}
.ls15_c00140{letter-spacing:0.548427pt;}
.ls12_c00140{letter-spacing:0.553280pt;}
.ls16_c00140{letter-spacing:0.577600pt;}
.ls2a_c00140{letter-spacing:0.601920pt;}
.ls4_c00140{letter-spacing:0.608000pt;}
.ls2b_c00140{letter-spacing:0.632320pt;}
.ls9_c00140{letter-spacing:0.638400pt;}
.ls26_c00140{letter-spacing:0.753333pt;}
.ls27_c00140{letter-spacing:0.760000pt;}
.ls1e_c00140{letter-spacing:0.772160pt;}
.ls70_c00140{letter-spacing:0.778240pt;}
.ls44_c00140{letter-spacing:0.784320pt;}
.ls42_c00140{letter-spacing:0.814720pt;}
.ls5d_c00140{letter-spacing:0.826880pt;}
.ls31_c00140{letter-spacing:0.839040pt;}
.ls2e_c00140{letter-spacing:0.857280pt;}
.ls2f_c00140{letter-spacing:0.869440pt;}
.ls5_c00140{letter-spacing:0.891947pt;}
.lsd_c00140{letter-spacing:0.899840pt;}
.ls45_c00140{letter-spacing:0.912000pt;}
.ls1b_c00140{letter-spacing:0.924160pt;}
.ls62_c00140{letter-spacing:0.942400pt;}
.ls22_c00140{letter-spacing:1.045760pt;}
.ls13_c00140{letter-spacing:1.100480pt;}
.ls24_c00140{letter-spacing:1.185600pt;}
.lse_c00140{letter-spacing:1.465280pt;}
.ls47_c00140{letter-spacing:1.512693pt;}
.ls23_c00140{letter-spacing:1.550400pt;}
.ls39_c00140{letter-spacing:1.592960pt;}
.ls54_c00140{letter-spacing:1.635520pt;}
.ls21_c00140{letter-spacing:1.988160pt;}
.ls1f_c00140{letter-spacing:2.413760pt;}
.ws0_c00140{word-spacing:-1.173653pt;}
.ws4_c00140{word-spacing:0.000000pt;}
.ws2_c00140{word-spacing:1.716533pt;}
.ws1_c00140{word-spacing:5.860800pt;}
.ws3_c00140{word-spacing:12.159573pt;}
._16_c00140{margin-left:-4.535680pt;}
._17_c00140{margin-left:-3.629760pt;}
._1_c00140{margin-left:-2.541440pt;}
._11_c00140{margin-left:-0.991040pt;}
._0_c00140{width:0.948480pt;}
._2_c00140{width:2.504960pt;}
._4_c00140{width:3.708800pt;}
._3_c00140{width:5.034240pt;}
._f_c00140{width:6.080000pt;}
._10_c00140{width:7.052800pt;}
._b_c00140{width:8.049920pt;}
._c_c00140{width:9.204640pt;}
._12_c00140{width:10.250880pt;}
._e_c00140{width:11.333120pt;}
._d_c00140{width:13.011200pt;}
._6_c00140{width:21.055040pt;}
._9_c00140{width:23.134400pt;}
._7_c00140{width:24.064640pt;}
._a_c00140{width:25.590720pt;}
._5_c00140{width:26.873600pt;}
._8_c00140{width:28.156480pt;}
._15_c00140{width:30.965440pt;}
._13_c00140{width:32.716480pt;}
._14_c00140{width:33.750080pt;}
.fs6_c00140{font-size:51.200000pt;}
.fs3_c00140{font-size:54.400000pt;}
.fs4_c00140{font-size:57.066667pt;}
.fs0_c00140{font-size:58.666667pt;}
.fs2_c00140{font-size:60.266667pt;}
.fs1_c00140{font-size:60.800000pt;}
.fs5_c00140{font-size:64.533333pt;}
.y0_c00140{bottom:0.000000pt;}
.y1d_c00140{bottom:61.440013pt;}
.y1c_c00140{bottom:156.173347pt;}
.y1b_c00140{bottom:156.175747pt;}
.y19_c00140{bottom:211.849613pt;}
.y1a_c00140{bottom:211.853347pt;}
.y18_c00140{bottom:240.000013pt;}
.y17_c00140{bottom:295.999747pt;}
.y15_c00140{bottom:351.362413pt;}
.y16_c00140{bottom:351.373347pt;}
.y14_c00140{bottom:379.528013pt;}
.y12_c00140{bottom:407.035213pt;}
.y13_c00140{bottom:407.040013pt;}
.y11_c00140{bottom:434.881613pt;}
.y10_c00140{bottom:462.728013pt;}
.yf_c00140{bottom:490.240013pt;}
.ye_c00140{bottom:545.934947pt;}
.yd_c00140{bottom:601.290147pt;}
.yc_c00140{bottom:657.286947pt;}
.yb_c00140{bottom:685.133347pt;}
.y9_c00140{bottom:740.154413pt;}
.ya_c00140{bottom:740.160013pt;}
.y8_c00140{bottom:768.320013pt;}
.y6_c00140{bottom:823.681347pt;}
.y7_c00140{bottom:823.693347pt;}
.y5_c00140{bottom:851.846947pt;}
.y4_c00140{bottom:879.693347pt;}
.y3_c00140{bottom:935.053347pt;}
.y2_c00140{bottom:991.053347pt;}
.y1_c00140{bottom:1057.293347pt;}
.hb_c00140{height:50.250000pt;}
.h4_c00140{height:56.737500pt;}
.h2_c00140{height:59.125000pt;}
.h5_c00140{height:59.518750pt;}
.h3_c00140{height:59.671875pt;}
.h9_c00140{height:59.672942pt;}
.h8_c00140{height:59.715608pt;}
.h7_c00140{height:60.750300pt;}
.h6_c00140{height:62.856250pt;}
.ha_c00140{height:63.304427pt;}
.h1_c00140{height:1122.666667pt;}
.h0_c00140{height:1122.880013pt;}
.w1_c00140{width:793.333333pt;}
.w0_c00140{width:793.600013pt;}
.x0_c00140{left:0.000000pt;}
.x9_c00140{left:110.027213pt;}
.x1_c00140{left:110.973347pt;}
.x7_c00140{left:141.600013pt;}
.x8_c00140{left:156.133347pt;}
.xe_c00140{left:157.661080pt;}
.x2_c00140{left:159.186680pt;}
.xf_c00140{left:234.373347pt;}
.x10_c00140{left:248.560013pt;}
.x6_c00140{left:266.360013pt;}
.xc_c00140{left:288.440013pt;}
.xd_c00140{left:306.666680pt;}
.x11_c00140{left:375.506680pt;}
.x13_c00140{left:377.480013pt;}
.x3_c00140{left:398.613347pt;}
.x12_c00140{left:399.786680pt;}
.x4_c00140{left:427.040013pt;}
.xa_c00140{left:533.693347pt;}
.x5_c00140{left:618.466680pt;}
.xb_c00140{left:621.600013pt;}
}





/* 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_c00141 {
    display:none;
  }
  .loading-indicator_c00141.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00141 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_c00141 { 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_c00141" -> "#page-container .classname_c00141")
 */
.pf_c00141 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00141 { /* 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_c00141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00141 { /* 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_c00141 { /* 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_c00141 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00141 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00141 {overflow:visible;}
  }
}
.c_c00141 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00141 { /* 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_c00141:after { /* webkit #35443 */
  content: '';
}
.t_c00141:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00141 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 */
}
.__c00141 { /* 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_c00141 { /* info for Javascript */
  display:none;
}
.l_c00141 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00141 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00141 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00141: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_c00141 {
    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_c00141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00141.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_c00141 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00141;src:url('chunks/assets/font_b91ba589f2d913291bcb2d45.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.284668;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_c00141;src:url('chunks/assets/font_52aa2ecbb41611b5b0f07693.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.284180;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_c00141;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;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:ff4_c00141;src:url('chunks/assets/font_9a604d369cb3e7b742469b9a.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.284180;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;}
.m5_c00141{transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);}
.m4_c00141{transform:matrix(0.144152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144152,0.000000,0.000000,0.250000,0,0);}
.m2_c00141{transform:matrix(0.243093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243093,0.000000,0.000000,0.250000,0,0);}
.mb_c00141{transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);}
.ma_c00141{transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);}
.m6_c00141{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m1_c00141{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m9_c00141{transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);}
.m7_c00141{transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);}
.m3_c00141{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m0_c00141{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);}
.m8_c00141{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls64_c00141{letter-spacing:-2.688000px;}
.ls20_c00141{letter-spacing:-2.478000px;}
.ls8c_c00141{letter-spacing:-2.470920px;}
.ls77_c00141{letter-spacing:-2.373000px;}
.ls8d_c00141{letter-spacing:-2.173560px;}
.ls21_c00141{letter-spacing:-2.074440px;}
.ls8a_c00141{letter-spacing:-1.989480px;}
.ls47_c00141{letter-spacing:-1.854960px;}
.ls1d_c00141{letter-spacing:-1.840800px;}
.ls85_c00141{letter-spacing:-1.833720px;}
.ls57_c00141{letter-spacing:-1.791240px;}
.ls7a_c00141{letter-spacing:-1.607160px;}
.ls24_c00141{letter-spacing:-1.479720px;}
.ls73_c00141{letter-spacing:-1.444320px;}
.ls67_c00141{letter-spacing:-1.380600px;}
.ls88_c00141{letter-spacing:-1.345200px;}
.ls2b_c00141{letter-spacing:-1.323960px;}
.ls23_c00141{letter-spacing:-1.260240px;}
.ls31_c00141{letter-spacing:-1.253160px;}
.ls8e_c00141{letter-spacing:-1.246080px;}
.ls1c_c00141{letter-spacing:-1.224840px;}
.ls26_c00141{letter-spacing:-1.161120px;}
.ls6c_c00141{letter-spacing:-1.146960px;}
.ls71_c00141{letter-spacing:-1.139880px;}
.ls58_c00141{letter-spacing:-1.104480px;}
.ls27_c00141{letter-spacing:-1.097400px;}
.ls29_c00141{letter-spacing:-1.069080px;}
.ls75_c00141{letter-spacing:-1.033680px;}
.ls5f_c00141{letter-spacing:-1.026600px;}
.ls60_c00141{letter-spacing:-0.991200px;}
.ls4c_c00141{letter-spacing:-0.984120px;}
.ls5d_c00141{letter-spacing:-0.955800px;}
.ls42_c00141{letter-spacing:-0.934560px;}
.ls6b_c00141{letter-spacing:-0.920400px;}
.ls89_c00141{letter-spacing:-0.899160px;}
.ls8b_c00141{letter-spacing:-0.885000px;}
.ls56_c00141{letter-spacing:-0.877920px;}
.ls1e_c00141{letter-spacing:-0.863760px;}
.ls4e_c00141{letter-spacing:-0.828360px;}
.ls62_c00141{letter-spacing:-0.821280px;}
.ls82_c00141{letter-spacing:-0.814200px;}
.ls40_c00141{letter-spacing:-0.807120px;}
.ls6f_c00141{letter-spacing:-0.785880px;}
.ls74_c00141{letter-spacing:-0.771720px;}
.ls81_c00141{letter-spacing:-0.766080px;}
.ls2c_c00141{letter-spacing:-0.743400px;}
.ls44_c00141{letter-spacing:-0.736320px;}
.ls61_c00141{letter-spacing:-0.729240px;}
.ls68_c00141{letter-spacing:-0.715080px;}
.ls63_c00141{letter-spacing:-0.700920px;}
.ls79_c00141{letter-spacing:-0.658440px;}
.ls86_c00141{letter-spacing:-0.656640px;}
.ls6e_c00141{letter-spacing:-0.651360px;}
.ls2d_c00141{letter-spacing:-0.644280px;}
.ls4b_c00141{letter-spacing:-0.637200px;}
.ls7e_c00141{letter-spacing:-0.630120px;}
.ls52_c00141{letter-spacing:-0.623040px;}
.ls48_c00141{letter-spacing:-0.615960px;}
.ls37_c00141{letter-spacing:-0.608880px;}
.ls32_c00141{letter-spacing:-0.594720px;}
.ls22_c00141{letter-spacing:-0.573480px;}
.ls51_c00141{letter-spacing:-0.566400px;}
.ls7c_c00141{letter-spacing:-0.559320px;}
.ls4f_c00141{letter-spacing:-0.552240px;}
.ls1f_c00141{letter-spacing:-0.531000px;}
.ls36_c00141{letter-spacing:-0.523920px;}
.ls3f_c00141{letter-spacing:-0.516840px;}
.ls84_c00141{letter-spacing:-0.502680px;}
.ls41_c00141{letter-spacing:-0.488520px;}
.ls69_c00141{letter-spacing:-0.474360px;}
.ls38_c00141{letter-spacing:-0.467280px;}
.ls2a_c00141{letter-spacing:-0.460200px;}
.ls3d_c00141{letter-spacing:-0.453120px;}
.ls45_c00141{letter-spacing:-0.446040px;}
.ls66_c00141{letter-spacing:-0.424800px;}
.ls46_c00141{letter-spacing:-0.417720px;}
.ls28_c00141{letter-spacing:-0.403560px;}
.ls53_c00141{letter-spacing:-0.389400px;}
.ls25_c00141{letter-spacing:-0.382320px;}
.ls5e_c00141{letter-spacing:-0.375240px;}
.ls35_c00141{letter-spacing:-0.368160px;}
.ls34_c00141{letter-spacing:-0.361080px;}
.ls87_c00141{letter-spacing:-0.354000px;}
.ls6d_c00141{letter-spacing:-0.332760px;}
.ls83_c00141{letter-spacing:-0.325680px;}
.ls55_c00141{letter-spacing:-0.318600px;}
.ls50_c00141{letter-spacing:-0.311520px;}
.ls39_c00141{letter-spacing:-0.304440px;}
.ls33_c00141{letter-spacing:-0.290280px;}
.ls30_c00141{letter-spacing:-0.283200px;}
.ls5b_c00141{letter-spacing:-0.276120px;}
.ls5a_c00141{letter-spacing:-0.261960px;}
.ls59_c00141{letter-spacing:-0.247800px;}
.ls8f_c00141{letter-spacing:-0.241080px;}
.ls7d_c00141{letter-spacing:-0.240720px;}
.ls49_c00141{letter-spacing:-0.233640px;}
.ls65_c00141{letter-spacing:-0.226560px;}
.ls3a_c00141{letter-spacing:-0.219480px;}
.ls6a_c00141{letter-spacing:-0.205320px;}
.ls3b_c00141{letter-spacing:-0.198240px;}
.ls5c_c00141{letter-spacing:-0.191160px;}
.ls72_c00141{letter-spacing:-0.169920px;}
.ls70_c00141{letter-spacing:-0.155760px;}
.ls43_c00141{letter-spacing:-0.148680px;}
.ls76_c00141{letter-spacing:-0.141600px;}
.ls3c_c00141{letter-spacing:-0.120360px;}
.ls80_c00141{letter-spacing:-0.116280px;}
.ls54_c00141{letter-spacing:-0.106200px;}
.ls78_c00141{letter-spacing:-0.084960px;}
.ls7b_c00141{letter-spacing:-0.077880px;}
.ls3e_c00141{letter-spacing:-0.035400px;}
.ls4a_c00141{letter-spacing:-0.028320px;}
.ls2f_c00141{letter-spacing:-0.021240px;}
.ls2e_c00141{letter-spacing:0.000000px;}
.ls4_c00141{letter-spacing:0.028320px;}
.lsc_c00141{letter-spacing:0.084960px;}
.ls15_c00141{letter-spacing:0.099120px;}
.ls8_c00141{letter-spacing:0.106200px;}
.ls6_c00141{letter-spacing:0.141600px;}
.lsb_c00141{letter-spacing:0.254880px;}
.ls4d_c00141{letter-spacing:0.290280px;}
.ls13_c00141{letter-spacing:0.339840px;}
.ls10_c00141{letter-spacing:0.431880px;}
.ls14_c00141{letter-spacing:0.656640px;}
.lsd_c00141{letter-spacing:0.663480px;}
.ls7_c00141{letter-spacing:0.750480px;}
.ls3_c00141{letter-spacing:0.771720px;}
.ls5_c00141{letter-spacing:0.778800px;}
.ls11_c00141{letter-spacing:0.800280px;}
.ls18_c00141{letter-spacing:0.855000px;}
.ls2_c00141{letter-spacing:0.861840px;}
.lsf_c00141{letter-spacing:0.870840px;}
.ls19_c00141{letter-spacing:0.916560px;}
.ls12_c00141{letter-spacing:0.927480px;}
.ls1_c00141{letter-spacing:0.984960px;}
.lse_c00141{letter-spacing:0.998280px;}
.ls9_c00141{letter-spacing:1.073880px;}
.ls17_c00141{letter-spacing:1.245840px;}
.ls1b_c00141{letter-spacing:1.285200px;}
.ls1a_c00141{letter-spacing:1.450080px;}
.lsa_c00141{letter-spacing:1.685040px;}
.ls0_c00141{letter-spacing:1.785240px;}
.ls16_c00141{letter-spacing:2.010960px;}
.ls7f_c00141{letter-spacing:3.420000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{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__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00141{word-spacing:-1.546680px;}
.ws5_c00141{word-spacing:0.000000px;}
.ws2_c00141{word-spacing:17.577600px;}
.ws0_c00141{word-spacing:23.277840px;}
.ws3_c00141{word-spacing:28.768200px;}
.ws1_c00141{word-spacing:41.914080px;}
._16_c00141{margin-left:-5.951280px;}
._15_c00141{margin-left:-4.716240px;}
._0_c00141{margin-left:-3.577320px;}
._12_c00141{margin-left:-1.727520px;}
._2_c00141{width:2.194800px;}
._3_c00141{width:4.389600px;}
._4_c00141{width:6.010920px;}
._d_c00141{width:7.547280px;}
._f_c00141{width:8.792280px;}
._1_c00141{width:10.203360px;}
._11_c00141{width:11.726400px;}
._5_c00141{width:12.977640px;}
._10_c00141{width:13.995000px;}
._13_c00141{width:15.714840px;}
._a_c00141{width:19.116000px;}
._c_c00141{width:20.291280px;}
._6_c00141{width:22.209960px;}
._9_c00141{width:23.399400px;}
._b_c00141{width:25.148160px;}
._8_c00141{width:26.188920px;}
._7_c00141{width:27.888120px;}
._e_c00141{width:29.672280px;}
._14_c00141{width:31.760880px;}
.fc0_c00141{color:transparent;}
.fs6_c00141{font-size:58.800000px;}
.fs0_c00141{font-size:61.200000px;}
.fs4_c00141{font-size:67.800000px;}
.fs1_c00141{font-size:68.400000px;}
.fs5_c00141{font-size:69.600000px;}
.fs2_c00141{font-size:70.800000px;}
.fs3_c00141{font-size:76.800000px;}
.y0_c00141{bottom:0.000000px;}
.y1f_c00141{bottom:72.735000px;}
.y1e_c00141{bottom:147.600000px;}
.y1c_c00141{bottom:210.254700px;}
.y1d_c00141{bottom:210.255000px;}
.y1b_c00141{bottom:272.895000px;}
.y1a_c00141{bottom:305.643600px;}
.y19_c00141{bottom:368.640000px;}
.y18_c00141{bottom:430.934700px;}
.y17_c00141{bottom:462.600000px;}
.y15_c00141{bottom:524.888700px;}
.y16_c00141{bottom:524.895000px;}
.y14_c00141{bottom:556.200000px;}
.y13_c00141{bottom:556.205700px;}
.y12_c00141{bottom:587.517000px;}
.y11_c00141{bottom:619.200000px;}
.y10_c00141{bottom:681.495000px;}
.yf_c00141{bottom:681.500700px;}
.ye_c00141{bottom:713.520000px;}
.yd_c00141{bottom:776.522400px;}
.yc_c00141{bottom:807.851400px;}
.yb_c00141{bottom:839.516700px;}
.ya_c00141{bottom:871.199700px;}
.y9_c00141{bottom:902.174700px;}
.y8_c00141{bottom:933.857700px;}
.y7_c00141{bottom:964.815000px;}
.y6_c00141{bottom:964.832400px;}
.y5_c00141{bottom:996.143700px;}
.y4_c00141{bottom:1027.455000px;}
.y3_c00141{bottom:1090.080000px;}
.y2_c00141{bottom:1121.400000px;}
.y1_c00141{bottom:1197.000000px;}
.h9_c00141{height:57.708984px;}
.h2_c00141{height:60.064453px;}
.h6_c00141{height:67.097461px;}
.h8_c00141{height:67.130859px;}
.h7_c00141{height:69.471928px;}
.h3_c00141{height:69.486328px;}
.h5_c00141{height:70.713281px;}
.h4_c00141{height:75.375000px;}
.h1_c00141{height:1263.000000px;}
.h0_c00141{height:1263.240000px;}
.w1_c00141{width:892.500000px;}
.w0_c00141{width:892.800000px;}
.x0_c00141{left:0.000000px;}
.x11_c00141{left:113.522700px;}
.xc_c00141{left:114.606300px;}
.x9_c00141{left:115.886700px;}
.x1_c00141{left:119.085000px;}
.x1e_c00141{left:166.095000px;}
.x15_c00141{left:167.205000px;}
.xd_c00141{left:168.285000px;}
.x8_c00141{left:170.805000px;}
.x2_c00141{left:172.860000px;}
.x18_c00141{left:218.589000px;}
.x6_c00141{left:220.125000px;}
.x19_c00141{left:224.805000px;}
.x7_c00141{left:247.575000px;}
.x1a_c00141{left:252.615000px;}
.x14_c00141{left:289.260000px;}
.x10_c00141{left:297.660000px;}
.x1b_c00141{left:366.585000px;}
.x1c_c00141{left:391.485000px;}
.x21_c00141{left:417.090000px;}
.x1d_c00141{left:418.845000px;}
.x16_c00141{left:441.570000px;}
.x17_c00141{left:458.160000px;}
.x1f_c00141{left:460.245000px;}
.x20_c00141{left:488.280000px;}
.x3_c00141{left:524.685000px;}
.x4_c00141{left:552.645000px;}
.xa_c00141{left:594.555000px;}
.x12_c00141{left:606.780000px;}
.xb_c00141{left:621.375000px;}
.x13_c00141{left:628.020000px;}
.xe_c00141{left:649.740000px;}
.xf_c00141{left:685.275000px;}
.x5_c00141{left:729.840000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls64_c00141{letter-spacing:-2.389333pt;}
.ls20_c00141{letter-spacing:-2.202667pt;}
.ls8c_c00141{letter-spacing:-2.196373pt;}
.ls77_c00141{letter-spacing:-2.109333pt;}
.ls8d_c00141{letter-spacing:-1.932053pt;}
.ls21_c00141{letter-spacing:-1.843947pt;}
.ls8a_c00141{letter-spacing:-1.768427pt;}
.ls47_c00141{letter-spacing:-1.648853pt;}
.ls1d_c00141{letter-spacing:-1.636267pt;}
.ls85_c00141{letter-spacing:-1.629973pt;}
.ls57_c00141{letter-spacing:-1.592213pt;}
.ls7a_c00141{letter-spacing:-1.428587pt;}
.ls24_c00141{letter-spacing:-1.315307pt;}
.ls73_c00141{letter-spacing:-1.283840pt;}
.ls67_c00141{letter-spacing:-1.227200pt;}
.ls88_c00141{letter-spacing:-1.195733pt;}
.ls2b_c00141{letter-spacing:-1.176853pt;}
.ls23_c00141{letter-spacing:-1.120213pt;}
.ls31_c00141{letter-spacing:-1.113920pt;}
.ls8e_c00141{letter-spacing:-1.107627pt;}
.ls1c_c00141{letter-spacing:-1.088747pt;}
.ls26_c00141{letter-spacing:-1.032107pt;}
.ls6c_c00141{letter-spacing:-1.019520pt;}
.ls71_c00141{letter-spacing:-1.013227pt;}
.ls58_c00141{letter-spacing:-0.981760pt;}
.ls27_c00141{letter-spacing:-0.975467pt;}
.ls29_c00141{letter-spacing:-0.950293pt;}
.ls75_c00141{letter-spacing:-0.918827pt;}
.ls5f_c00141{letter-spacing:-0.912533pt;}
.ls60_c00141{letter-spacing:-0.881067pt;}
.ls4c_c00141{letter-spacing:-0.874773pt;}
.ls5d_c00141{letter-spacing:-0.849600pt;}
.ls42_c00141{letter-spacing:-0.830720pt;}
.ls6b_c00141{letter-spacing:-0.818133pt;}
.ls89_c00141{letter-spacing:-0.799253pt;}
.ls8b_c00141{letter-spacing:-0.786667pt;}
.ls56_c00141{letter-spacing:-0.780373pt;}
.ls1e_c00141{letter-spacing:-0.767787pt;}
.ls4e_c00141{letter-spacing:-0.736320pt;}
.ls62_c00141{letter-spacing:-0.730027pt;}
.ls82_c00141{letter-spacing:-0.723733pt;}
.ls40_c00141{letter-spacing:-0.717440pt;}
.ls6f_c00141{letter-spacing:-0.698560pt;}
.ls74_c00141{letter-spacing:-0.685973pt;}
.ls81_c00141{letter-spacing:-0.680960pt;}
.ls2c_c00141{letter-spacing:-0.660800pt;}
.ls44_c00141{letter-spacing:-0.654507pt;}
.ls61_c00141{letter-spacing:-0.648213pt;}
.ls68_c00141{letter-spacing:-0.635627pt;}
.ls63_c00141{letter-spacing:-0.623040pt;}
.ls79_c00141{letter-spacing:-0.585280pt;}
.ls86_c00141{letter-spacing:-0.583680pt;}
.ls6e_c00141{letter-spacing:-0.578987pt;}
.ls2d_c00141{letter-spacing:-0.572693pt;}
.ls4b_c00141{letter-spacing:-0.566400pt;}
.ls7e_c00141{letter-spacing:-0.560107pt;}
.ls52_c00141{letter-spacing:-0.553813pt;}
.ls48_c00141{letter-spacing:-0.547520pt;}
.ls37_c00141{letter-spacing:-0.541227pt;}
.ls32_c00141{letter-spacing:-0.528640pt;}
.ls22_c00141{letter-spacing:-0.509760pt;}
.ls51_c00141{letter-spacing:-0.503467pt;}
.ls7c_c00141{letter-spacing:-0.497173pt;}
.ls4f_c00141{letter-spacing:-0.490880pt;}
.ls1f_c00141{letter-spacing:-0.472000pt;}
.ls36_c00141{letter-spacing:-0.465707pt;}
.ls3f_c00141{letter-spacing:-0.459413pt;}
.ls84_c00141{letter-spacing:-0.446827pt;}
.ls41_c00141{letter-spacing:-0.434240pt;}
.ls69_c00141{letter-spacing:-0.421653pt;}
.ls38_c00141{letter-spacing:-0.415360pt;}
.ls2a_c00141{letter-spacing:-0.409067pt;}
.ls3d_c00141{letter-spacing:-0.402773pt;}
.ls45_c00141{letter-spacing:-0.396480pt;}
.ls66_c00141{letter-spacing:-0.377600pt;}
.ls46_c00141{letter-spacing:-0.371307pt;}
.ls28_c00141{letter-spacing:-0.358720pt;}
.ls53_c00141{letter-spacing:-0.346133pt;}
.ls25_c00141{letter-spacing:-0.339840pt;}
.ls5e_c00141{letter-spacing:-0.333547pt;}
.ls35_c00141{letter-spacing:-0.327253pt;}
.ls34_c00141{letter-spacing:-0.320960pt;}
.ls87_c00141{letter-spacing:-0.314667pt;}
.ls6d_c00141{letter-spacing:-0.295787pt;}
.ls83_c00141{letter-spacing:-0.289493pt;}
.ls55_c00141{letter-spacing:-0.283200pt;}
.ls50_c00141{letter-spacing:-0.276907pt;}
.ls39_c00141{letter-spacing:-0.270613pt;}
.ls33_c00141{letter-spacing:-0.258027pt;}
.ls30_c00141{letter-spacing:-0.251733pt;}
.ls5b_c00141{letter-spacing:-0.245440pt;}
.ls5a_c00141{letter-spacing:-0.232853pt;}
.ls59_c00141{letter-spacing:-0.220267pt;}
.ls8f_c00141{letter-spacing:-0.214293pt;}
.ls7d_c00141{letter-spacing:-0.213973pt;}
.ls49_c00141{letter-spacing:-0.207680pt;}
.ls65_c00141{letter-spacing:-0.201387pt;}
.ls3a_c00141{letter-spacing:-0.195093pt;}
.ls6a_c00141{letter-spacing:-0.182507pt;}
.ls3b_c00141{letter-spacing:-0.176213pt;}
.ls5c_c00141{letter-spacing:-0.169920pt;}
.ls72_c00141{letter-spacing:-0.151040pt;}
.ls70_c00141{letter-spacing:-0.138453pt;}
.ls43_c00141{letter-spacing:-0.132160pt;}
.ls76_c00141{letter-spacing:-0.125867pt;}
.ls3c_c00141{letter-spacing:-0.106987pt;}
.ls80_c00141{letter-spacing:-0.103360pt;}
.ls54_c00141{letter-spacing:-0.094400pt;}
.ls78_c00141{letter-spacing:-0.075520pt;}
.ls7b_c00141{letter-spacing:-0.069227pt;}
.ls3e_c00141{letter-spacing:-0.031467pt;}
.ls4a_c00141{letter-spacing:-0.025173pt;}
.ls2f_c00141{letter-spacing:-0.018880pt;}
.ls2e_c00141{letter-spacing:0.000000pt;}
.ls4_c00141{letter-spacing:0.025173pt;}
.lsc_c00141{letter-spacing:0.075520pt;}
.ls15_c00141{letter-spacing:0.088107pt;}
.ls8_c00141{letter-spacing:0.094400pt;}
.ls6_c00141{letter-spacing:0.125867pt;}
.lsb_c00141{letter-spacing:0.226560pt;}
.ls4d_c00141{letter-spacing:0.258027pt;}
.ls13_c00141{letter-spacing:0.302080pt;}
.ls10_c00141{letter-spacing:0.383893pt;}
.ls14_c00141{letter-spacing:0.583680pt;}
.lsd_c00141{letter-spacing:0.589760pt;}
.ls7_c00141{letter-spacing:0.667093pt;}
.ls3_c00141{letter-spacing:0.685973pt;}
.ls5_c00141{letter-spacing:0.692267pt;}
.ls11_c00141{letter-spacing:0.711360pt;}
.ls18_c00141{letter-spacing:0.760000pt;}
.ls2_c00141{letter-spacing:0.766080pt;}
.lsf_c00141{letter-spacing:0.774080pt;}
.ls19_c00141{letter-spacing:0.814720pt;}
.ls12_c00141{letter-spacing:0.824427pt;}
.ls1_c00141{letter-spacing:0.875520pt;}
.lse_c00141{letter-spacing:0.887360pt;}
.ls9_c00141{letter-spacing:0.954560pt;}
.ls17_c00141{letter-spacing:1.107413pt;}
.ls1b_c00141{letter-spacing:1.142400pt;}
.ls1a_c00141{letter-spacing:1.288960pt;}
.lsa_c00141{letter-spacing:1.497813pt;}
.ls0_c00141{letter-spacing:1.586880pt;}
.ls16_c00141{letter-spacing:1.787520pt;}
.ls7f_c00141{letter-spacing:3.040000pt;}
.ws4_c00141{word-spacing:-1.374827pt;}
.ws5_c00141{word-spacing:0.000000pt;}
.ws2_c00141{word-spacing:15.624533pt;}
.ws0_c00141{word-spacing:20.691413pt;}
.ws3_c00141{word-spacing:25.571733pt;}
.ws1_c00141{word-spacing:37.256960pt;}
._16_c00141{margin-left:-5.290027pt;}
._15_c00141{margin-left:-4.192213pt;}
._0_c00141{margin-left:-3.179840pt;}
._12_c00141{margin-left:-1.535573pt;}
._2_c00141{width:1.950933pt;}
._3_c00141{width:3.901867pt;}
._4_c00141{width:5.343040pt;}
._d_c00141{width:6.708693pt;}
._f_c00141{width:7.815360pt;}
._1_c00141{width:9.069653pt;}
._11_c00141{width:10.423467pt;}
._5_c00141{width:11.535680pt;}
._10_c00141{width:12.440000pt;}
._13_c00141{width:13.968747pt;}
._a_c00141{width:16.992000pt;}
._c_c00141{width:18.036693pt;}
._6_c00141{width:19.742187pt;}
._9_c00141{width:20.799467pt;}
._b_c00141{width:22.353920pt;}
._8_c00141{width:23.279040pt;}
._7_c00141{width:24.789440pt;}
._e_c00141{width:26.375360pt;}
._14_c00141{width:28.231893pt;}
.fs6_c00141{font-size:52.266667pt;}
.fs0_c00141{font-size:54.400000pt;}
.fs4_c00141{font-size:60.266667pt;}
.fs1_c00141{font-size:60.800000pt;}
.fs5_c00141{font-size:61.866667pt;}
.fs2_c00141{font-size:62.933333pt;}
.fs3_c00141{font-size:68.266667pt;}
.y0_c00141{bottom:0.000000pt;}
.y1f_c00141{bottom:64.653333pt;}
.y1e_c00141{bottom:131.200000pt;}
.y1c_c00141{bottom:186.893067pt;}
.y1d_c00141{bottom:186.893333pt;}
.y1b_c00141{bottom:242.573333pt;}
.y1a_c00141{bottom:271.683200pt;}
.y19_c00141{bottom:327.680000pt;}
.y18_c00141{bottom:383.053067pt;}
.y17_c00141{bottom:411.200000pt;}
.y15_c00141{bottom:466.567733pt;}
.y16_c00141{bottom:466.573333pt;}
.y14_c00141{bottom:494.400000pt;}
.y13_c00141{bottom:494.405067pt;}
.y12_c00141{bottom:522.237333pt;}
.y11_c00141{bottom:550.400000pt;}
.y10_c00141{bottom:605.773333pt;}
.yf_c00141{bottom:605.778400pt;}
.ye_c00141{bottom:634.240000pt;}
.yd_c00141{bottom:690.242133pt;}
.yc_c00141{bottom:718.090133pt;}
.yb_c00141{bottom:746.237067pt;}
.ya_c00141{bottom:774.399733pt;}
.y9_c00141{bottom:801.933067pt;}
.y8_c00141{bottom:830.095733pt;}
.y7_c00141{bottom:857.613333pt;}
.y6_c00141{bottom:857.628800pt;}
.y5_c00141{bottom:885.461067pt;}
.y4_c00141{bottom:913.293333pt;}
.y3_c00141{bottom:968.960000pt;}
.y2_c00141{bottom:996.800000pt;}
.y1_c00141{bottom:1064.000000pt;}
.h9_c00141{height:51.296875pt;}
.h2_c00141{height:53.390625pt;}
.h6_c00141{height:59.642187pt;}
.h8_c00141{height:59.671875pt;}
.h7_c00141{height:61.752825pt;}
.h3_c00141{height:61.765625pt;}
.h5_c00141{height:62.856250pt;}
.h4_c00141{height:67.000000pt;}
.h1_c00141{height:1122.666667pt;}
.h0_c00141{height:1122.880000pt;}
.w1_c00141{width:793.333333pt;}
.w0_c00141{width:793.600000pt;}
.x0_c00141{left:0.000000pt;}
.x11_c00141{left:100.909067pt;}
.xc_c00141{left:101.872267pt;}
.x9_c00141{left:103.010400pt;}
.x1_c00141{left:105.853333pt;}
.x1e_c00141{left:147.640000pt;}
.x15_c00141{left:148.626667pt;}
.xd_c00141{left:149.586667pt;}
.x8_c00141{left:151.826667pt;}
.x2_c00141{left:153.653333pt;}
.x18_c00141{left:194.301333pt;}
.x6_c00141{left:195.666667pt;}
.x19_c00141{left:199.826667pt;}
.x7_c00141{left:220.066667pt;}
.x1a_c00141{left:224.546667pt;}
.x14_c00141{left:257.120000pt;}
.x10_c00141{left:264.586667pt;}
.x1b_c00141{left:325.853333pt;}
.x1c_c00141{left:347.986667pt;}
.x21_c00141{left:370.746667pt;}
.x1d_c00141{left:372.306667pt;}
.x16_c00141{left:392.506667pt;}
.x17_c00141{left:407.253333pt;}
.x1f_c00141{left:409.106667pt;}
.x20_c00141{left:434.026667pt;}
.x3_c00141{left:466.386667pt;}
.x4_c00141{left:491.240000pt;}
.xa_c00141{left:528.493333pt;}
.x12_c00141{left:539.360000pt;}
.xb_c00141{left:552.333333pt;}
.x13_c00141{left:558.240000pt;}
.xe_c00141{left:577.546667pt;}
.xf_c00141{left:609.133333pt;}
.x5_c00141{left:648.746667pt;}
}





/* 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_c00142 {
    display:none;
  }
  .loading-indicator_c00142.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00142 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_c00142 { 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_c00142" -> "#page-container .classname_c00142")
 */
.pf_c00142 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00142 { /* 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_c00142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00142 { /* 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_c00142 { /* 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_c00142 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00142 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00142 {overflow:visible;}
  }
}
.c_c00142 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00142 { /* 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_c00142:after { /* webkit #35443 */
  content: '';
}
.t_c00142:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00142 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 */
}
.__c00142 { /* 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_c00142 { /* info for Javascript */
  display:none;
}
.l_c00142 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00142 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00142 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00142: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_c00142 {
    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_c00142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00142.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_c00142 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00142;src:url('chunks/assets/font_7ec8cfdfd6f0d5dff201dcff.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.284668;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_c00142;src:url('chunks/assets/font_6f7bc29288b2e9714c994797.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.284180;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_c00142;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;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;}
.m6_c00142{transform:matrix(0.151766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151766,0.000000,0.000000,0.250000,0,0);}
.m5_c00142{transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);}
.mb_c00142{transform:matrix(0.220817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220817,0.000000,0.000000,0.250000,0,0);}
.m2_c00142{transform:matrix(0.225808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225808,0.000000,0.000000,0.250000,0,0);}
.m7_c00142{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m9_c00142{transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);}
.ma_c00142{transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);}
.m4_c00142{transform:matrix(0.248436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248436,0.000000,0.000000,0.250000,0,0);}
.m0_c00142{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);}
.m3_c00142{transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);}
.m1_c00142{transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);}
.m8_c00142{transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls7c_c00142{letter-spacing:-2.688000px;}
.ls76_c00142{letter-spacing:-2.373000px;}
.ls85_c00142{letter-spacing:-2.310000px;}
.ls9b_c00142{letter-spacing:-2.184000px;}
.ls6b_c00142{letter-spacing:-1.891620px;}
.ls93_c00142{letter-spacing:-1.796700px;}
.ls91_c00142{letter-spacing:-1.695000px;}
.ls97_c00142{letter-spacing:-1.525500px;}
.ls8b_c00142{letter-spacing:-1.349220px;}
.ls87_c00142{letter-spacing:-1.328880px;}
.ls8e_c00142{letter-spacing:-1.301760px;}
.ls81_c00142{letter-spacing:-1.078020px;}
.ls6d_c00142{letter-spacing:-1.071240px;}
.ls6c_c00142{letter-spacing:-0.739020px;}
.ls96_c00142{letter-spacing:-0.569520px;}
.ls83_c00142{letter-spacing:-0.562740px;}
.ls92_c00142{letter-spacing:-0.515280px;}
.ls90_c00142{letter-spacing:-0.501720px;}
.ls84_c00142{letter-spacing:-0.467820px;}
.ls73_c00142{letter-spacing:-0.461040px;}
.ls6e_c00142{letter-spacing:-0.393240px;}
.ls94_c00142{letter-spacing:-0.311880px;}
.ls70_c00142{letter-spacing:-0.264420px;}
.ls95_c00142{letter-spacing:-0.230520px;}
.ls77_c00142{letter-spacing:-0.223740px;}
.ls6a_c00142{letter-spacing:-0.210180px;}
.ls88_c00142{letter-spacing:-0.196620px;}
.ls8d_c00142{letter-spacing:-0.176280px;}
.ls8c_c00142{letter-spacing:-0.169500px;}
.ls8f_c00142{letter-spacing:-0.135600px;}
.ls99_c00142{letter-spacing:-0.115260px;}
.ls98_c00142{letter-spacing:-0.088140px;}
.ls89_c00142{letter-spacing:-0.067800px;}
.ls6f_c00142{letter-spacing:-0.040680px;}
.ls78_c00142{letter-spacing:-0.013560px;}
.ls69_c00142{letter-spacing:0.000000px;}
.ls4d_c00142{letter-spacing:0.020340px;}
.ls5d_c00142{letter-spacing:0.027120px;}
.ls30_c00142{letter-spacing:0.033900px;}
.ls22_c00142{letter-spacing:0.040680px;}
.ls53_c00142{letter-spacing:0.054240px;}
.ls86_c00142{letter-spacing:0.061020px;}
.ls34_c00142{letter-spacing:0.081360px;}
.ls40_c00142{letter-spacing:0.088140px;}
.ls5f_c00142{letter-spacing:0.094920px;}
.ls5a_c00142{letter-spacing:0.108480px;}
.ls23_c00142{letter-spacing:0.135600px;}
.ls80_c00142{letter-spacing:0.142380px;}
.ls29_c00142{letter-spacing:0.155940px;}
.ls57_c00142{letter-spacing:0.176280px;}
.ls56_c00142{letter-spacing:0.203400px;}
.lsa_c00142{letter-spacing:0.216960px;}
.ls49_c00142{letter-spacing:0.223740px;}
.ls1b_c00142{letter-spacing:0.237300px;}
.ls27_c00142{letter-spacing:0.250860px;}
.ls39_c00142{letter-spacing:0.264420px;}
.ls17_c00142{letter-spacing:0.271200px;}
.ls25_c00142{letter-spacing:0.277980px;}
.ls13_c00142{letter-spacing:0.284760px;}
.ls2_c00142{letter-spacing:0.311880px;}
.ls7a_c00142{letter-spacing:0.325440px;}
.ls5_c00142{letter-spacing:0.339000px;}
.ls38_c00142{letter-spacing:0.352560px;}
.ls3b_c00142{letter-spacing:0.359340px;}
.ls4c_c00142{letter-spacing:0.372900px;}
.ls1a_c00142{letter-spacing:0.393240px;}
.ls2d_c00142{letter-spacing:0.406800px;}
.ls3d_c00142{letter-spacing:0.413580px;}
.ls65_c00142{letter-spacing:0.420360px;}
.ls46_c00142{letter-spacing:0.433920px;}
.ls19_c00142{letter-spacing:0.440700px;}
.ls62_c00142{letter-spacing:0.447480px;}
.ls7d_c00142{letter-spacing:0.467820px;}
.ls4_c00142{letter-spacing:0.501720px;}
.ls82_c00142{letter-spacing:0.508500px;}
.ls2f_c00142{letter-spacing:0.515280px;}
.ls14_c00142{letter-spacing:0.522060px;}
.ls50_c00142{letter-spacing:0.535620px;}
.ls6_c00142{letter-spacing:0.542400px;}
.ls63_c00142{letter-spacing:0.549180px;}
.ls1d_c00142{letter-spacing:0.555960px;}
.ls33_c00142{letter-spacing:0.569520px;}
.ls21_c00142{letter-spacing:0.576300px;}
.ls1f_c00142{letter-spacing:0.583080px;}
.ls3c_c00142{letter-spacing:0.596640px;}
.ls3a_c00142{letter-spacing:0.610200px;}
.ls5b_c00142{letter-spacing:0.616980px;}
.ls48_c00142{letter-spacing:0.623760px;}
.ls35_c00142{letter-spacing:0.630540px;}
.lsb_c00142{letter-spacing:0.644100px;}
.ls7_c00142{letter-spacing:0.650880px;}
.ls43_c00142{letter-spacing:0.657660px;}
.ls36_c00142{letter-spacing:0.664440px;}
.ls28_c00142{letter-spacing:0.671220px;}
.ls2b_c00142{letter-spacing:0.678000px;}
.ls5c_c00142{letter-spacing:0.698340px;}
.lsf_c00142{letter-spacing:0.705120px;}
.ls2c_c00142{letter-spacing:0.711900px;}
.ls1e_c00142{letter-spacing:0.725460px;}
.ls0_c00142{letter-spacing:0.732240px;}
.ls7b_c00142{letter-spacing:0.739020px;}
.ls18_c00142{letter-spacing:0.745800px;}
.ls20_c00142{letter-spacing:0.759360px;}
.ls60_c00142{letter-spacing:0.766140px;}
.ls5e_c00142{letter-spacing:0.779700px;}
.ls3_c00142{letter-spacing:0.793260px;}
.ls7e_c00142{letter-spacing:0.800040px;}
.lsd_c00142{letter-spacing:0.840720px;}
.ls64_c00142{letter-spacing:0.847500px;}
.ls9_c00142{letter-spacing:0.854280px;}
.ls10_c00142{letter-spacing:0.874620px;}
.ls16_c00142{letter-spacing:0.881400px;}
.ls61_c00142{letter-spacing:0.888180px;}
.ls8_c00142{letter-spacing:0.894960px;}
.ls79_c00142{letter-spacing:0.901740px;}
.ls41_c00142{letter-spacing:0.928860px;}
.ls2e_c00142{letter-spacing:0.935640px;}
.ls24_c00142{letter-spacing:0.949200px;}
.ls44_c00142{letter-spacing:0.955980px;}
.ls55_c00142{letter-spacing:0.962760px;}
.lsc_c00142{letter-spacing:1.003440px;}
.ls12_c00142{letter-spacing:1.010220px;}
.ls75_c00142{letter-spacing:1.023780px;}
.ls8a_c00142{letter-spacing:1.030560px;}
.ls59_c00142{letter-spacing:1.057680px;}
.ls42_c00142{letter-spacing:1.091580px;}
.ls71_c00142{letter-spacing:1.152600px;}
.ls47_c00142{letter-spacing:1.159380px;}
.ls52_c00142{letter-spacing:1.161120px;}
.ls1_c00142{letter-spacing:1.172940px;}
.ls31_c00142{letter-spacing:1.179720px;}
.ls4a_c00142{letter-spacing:1.182720px;}
.ls72_c00142{letter-spacing:1.186500px;}
.ls32_c00142{letter-spacing:1.200060px;}
.ls37_c00142{letter-spacing:1.213620px;}
.ls3f_c00142{letter-spacing:1.227180px;}
.ls2a_c00142{letter-spacing:1.254300px;}
.ls1c_c00142{letter-spacing:1.281420px;}
.ls58_c00142{letter-spacing:1.294980px;}
.ls9a_c00142{letter-spacing:1.410240px;}
.lse_c00142{letter-spacing:1.444140px;}
.ls3e_c00142{letter-spacing:1.471260px;}
.ls26_c00142{letter-spacing:1.505160px;}
.ls51_c00142{letter-spacing:1.695000px;}
.ls68_c00142{letter-spacing:1.714980px;}
.ls66_c00142{letter-spacing:1.722120px;}
.ls11_c00142{letter-spacing:1.830600px;}
.ls4e_c00142{letter-spacing:1.966200px;}
.ls45_c00142{letter-spacing:2.156040px;}
.ls4f_c00142{letter-spacing:2.162820px;}
.ls15_c00142{letter-spacing:2.203500px;}
.ls7f_c00142{letter-spacing:2.637420px;}
.ls67_c00142{letter-spacing:2.800140px;}
.ls54_c00142{letter-spacing:2.820480px;}
.ls4b_c00142{letter-spacing:3.376440px;}
.ls74_c00142{letter-spacing:3.390000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{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__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00142{word-spacing:0.000000px;}
.ws1_c00142{word-spacing:0.305100px;}
.ws3_c00142{word-spacing:1.695000px;}
.ws0_c00142{word-spacing:1.844160px;}
.ws2_c00142{word-spacing:20.099160px;}
._11_c00142{margin-left:-6.895260px;}
._10_c00142{margin-left:-5.593500px;}
._f_c00142{margin-left:-4.386660px;}
._d_c00142{margin-left:-3.037440px;}
._5_c00142{margin-left:-1.952640px;}
._1_c00142{width:1.688220px;}
._e_c00142{width:3.234060px;}
._0_c00142{width:4.868040px;}
._12_c00142{width:6.003840px;}
._2_c00142{width:7.891920px;}
._4_c00142{width:8.915700px;}
._3_c00142{width:10.210680px;}
._7_c00142{width:11.837880px;}
._6_c00142{width:13.492200px;}
._c_c00142{width:14.949900px;}
._8_c00142{width:19.323000px;}
._a_c00142{width:20.645100px;}
._9_c00142{width:23.119800px;}
._b_c00142{width:25.228380px;}
.fc0_c00142{color:transparent;}
.fs0_c00142{font-size:60.600000px;}
.fs6_c00142{font-size:62.400000px;}
.fs3_c00142{font-size:66.000000px;}
.fs4_c00142{font-size:67.200000px;}
.fs1_c00142{font-size:67.800000px;}
.fs5_c00142{font-size:70.800000px;}
.fs2_c00142{font-size:76.800000px;}
.y0_c00142{bottom:0.000000px;}
.y22_c00142{bottom:71.295015px;}
.y21_c00142{bottom:147.960165px;}
.y20_c00142{bottom:178.554915px;}
.y1f_c00142{bottom:241.575015px;}
.y1e_c00142{bottom:303.855015px;}
.y1d_c00142{bottom:303.865965px;}
.y1c_c00142{bottom:334.460715px;}
.y1b_c00142{bottom:396.735015px;}
.y1a_c00142{bottom:396.741465px;}
.y19_c00142{bottom:428.767815px;}
.y18_c00142{bottom:491.415015px;}
.y16_c00142{bottom:522.731865px;}
.y17_c00142{bottom:522.735015px;}
.y15_c00142{bottom:585.735015px;}
.y13_c00142{bottom:647.651415px;}
.y14_c00142{bottom:647.655015px;}
.y11_c00142{bottom:678.964215px;}
.y12_c00142{bottom:678.975015px;}
.y10_c00142{bottom:741.594465px;}
.yf_c00142{bottom:772.935015px;}
.ye_c00142{bottom:772.935465px;}
.yc_c00142{bottom:804.612315px;}
.yd_c00142{bottom:804.615015px;}
.yb_c00142{bottom:867.971415px;}
.y9_c00142{bottom:899.287365px;}
.ya_c00142{bottom:899.295015px;}
.y7_c00142{bottom:930.235665px;}
.y8_c00142{bottom:930.255015px;}
.y6_c00142{bottom:961.542315px;}
.y5_c00142{bottom:992.509965px;}
.y4_c00142{bottom:1023.477615px;}
.y3_c00142{bottom:1085.040015px;}
.y2_c00142{bottom:1117.095015px;}
.y1_c00142{bottom:1191.975015px;}
.h2_c00142{height:59.475586px;}
.ha_c00142{height:61.242188px;}
.h4_c00142{height:66.508887px;}
.h3_c00142{height:66.541992px;}
.h8_c00142{height:66.554592px;}
.h6_c00142{height:66.556392px;}
.h7_c00142{height:68.835938px;}
.h9_c00142{height:69.420558px;}
.h5_c00142{height:75.375000px;}
.h1_c00142{height:1263.000000px;}
.h0_c00142{height:1263.240015px;}
.w1_c00142{width:892.500000px;}
.w0_c00142{width:892.800015px;}
.x0_c00142{left:0.000000px;}
.x1a_c00142{left:116.120265px;}
.x1_c00142{left:119.085015px;}
.x19_c00142{left:170.784015px;}
.x17_c00142{left:171.899865px;}
.x7_c00142{left:172.966365px;}
.x2_c00142{left:174.300015px;}
.x15_c00142{left:212.940015px;}
.x5_c00142{left:225.645015px;}
.x16_c00142{left:229.845015px;}
.xf_c00142{left:246.225015px;}
.x6_c00142{left:247.665015px;}
.x10_c00142{left:278.610015px;}
.x8_c00142{left:281.505015px;}
.x14_c00142{left:296.336715px;}
.xd_c00142{left:303.780015px;}
.x9_c00142{left:310.860015px;}
.xe_c00142{left:335.430015px;}
.x1b_c00142{left:418.920015px;}
.x3_c00142{left:499.590015px;}
.x18_c00142{left:507.795015px;}
.x4_c00142{left:526.140015px;}
.x12_c00142{left:570.630015px;}
.x11_c00142{left:584.055015px;}
.x13_c00142{left:601.230015px;}
.xa_c00142{left:623.310015px;}
.xb_c00142{left:649.380015px;}
.xc_c00142{left:684.555015px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls7c_c00142{letter-spacing:-2.389333pt;}
.ls76_c00142{letter-spacing:-2.109333pt;}
.ls85_c00142{letter-spacing:-2.053333pt;}
.ls9b_c00142{letter-spacing:-1.941333pt;}
.ls6b_c00142{letter-spacing:-1.681440pt;}
.ls93_c00142{letter-spacing:-1.597067pt;}
.ls91_c00142{letter-spacing:-1.506667pt;}
.ls97_c00142{letter-spacing:-1.356000pt;}
.ls8b_c00142{letter-spacing:-1.199307pt;}
.ls87_c00142{letter-spacing:-1.181227pt;}
.ls8e_c00142{letter-spacing:-1.157120pt;}
.ls81_c00142{letter-spacing:-0.958240pt;}
.ls6d_c00142{letter-spacing:-0.952213pt;}
.ls6c_c00142{letter-spacing:-0.656907pt;}
.ls96_c00142{letter-spacing:-0.506240pt;}
.ls83_c00142{letter-spacing:-0.500213pt;}
.ls92_c00142{letter-spacing:-0.458027pt;}
.ls90_c00142{letter-spacing:-0.445973pt;}
.ls84_c00142{letter-spacing:-0.415840pt;}
.ls73_c00142{letter-spacing:-0.409813pt;}
.ls6e_c00142{letter-spacing:-0.349547pt;}
.ls94_c00142{letter-spacing:-0.277227pt;}
.ls70_c00142{letter-spacing:-0.235040pt;}
.ls95_c00142{letter-spacing:-0.204907pt;}
.ls77_c00142{letter-spacing:-0.198880pt;}
.ls6a_c00142{letter-spacing:-0.186827pt;}
.ls88_c00142{letter-spacing:-0.174773pt;}
.ls8d_c00142{letter-spacing:-0.156693pt;}
.ls8c_c00142{letter-spacing:-0.150667pt;}
.ls8f_c00142{letter-spacing:-0.120533pt;}
.ls99_c00142{letter-spacing:-0.102453pt;}
.ls98_c00142{letter-spacing:-0.078347pt;}
.ls89_c00142{letter-spacing:-0.060267pt;}
.ls6f_c00142{letter-spacing:-0.036160pt;}
.ls78_c00142{letter-spacing:-0.012053pt;}
.ls69_c00142{letter-spacing:0.000000pt;}
.ls4d_c00142{letter-spacing:0.018080pt;}
.ls5d_c00142{letter-spacing:0.024107pt;}
.ls30_c00142{letter-spacing:0.030133pt;}
.ls22_c00142{letter-spacing:0.036160pt;}
.ls53_c00142{letter-spacing:0.048213pt;}
.ls86_c00142{letter-spacing:0.054240pt;}
.ls34_c00142{letter-spacing:0.072320pt;}
.ls40_c00142{letter-spacing:0.078347pt;}
.ls5f_c00142{letter-spacing:0.084373pt;}
.ls5a_c00142{letter-spacing:0.096427pt;}
.ls23_c00142{letter-spacing:0.120533pt;}
.ls80_c00142{letter-spacing:0.126560pt;}
.ls29_c00142{letter-spacing:0.138613pt;}
.ls57_c00142{letter-spacing:0.156693pt;}
.ls56_c00142{letter-spacing:0.180800pt;}
.lsa_c00142{letter-spacing:0.192853pt;}
.ls49_c00142{letter-spacing:0.198880pt;}
.ls1b_c00142{letter-spacing:0.210933pt;}
.ls27_c00142{letter-spacing:0.222987pt;}
.ls39_c00142{letter-spacing:0.235040pt;}
.ls17_c00142{letter-spacing:0.241067pt;}
.ls25_c00142{letter-spacing:0.247093pt;}
.ls13_c00142{letter-spacing:0.253120pt;}
.ls2_c00142{letter-spacing:0.277227pt;}
.ls7a_c00142{letter-spacing:0.289280pt;}
.ls5_c00142{letter-spacing:0.301333pt;}
.ls38_c00142{letter-spacing:0.313387pt;}
.ls3b_c00142{letter-spacing:0.319413pt;}
.ls4c_c00142{letter-spacing:0.331467pt;}
.ls1a_c00142{letter-spacing:0.349547pt;}
.ls2d_c00142{letter-spacing:0.361600pt;}
.ls3d_c00142{letter-spacing:0.367627pt;}
.ls65_c00142{letter-spacing:0.373653pt;}
.ls46_c00142{letter-spacing:0.385707pt;}
.ls19_c00142{letter-spacing:0.391733pt;}
.ls62_c00142{letter-spacing:0.397760pt;}
.ls7d_c00142{letter-spacing:0.415840pt;}
.ls4_c00142{letter-spacing:0.445973pt;}
.ls82_c00142{letter-spacing:0.452000pt;}
.ls2f_c00142{letter-spacing:0.458027pt;}
.ls14_c00142{letter-spacing:0.464053pt;}
.ls50_c00142{letter-spacing:0.476107pt;}
.ls6_c00142{letter-spacing:0.482133pt;}
.ls63_c00142{letter-spacing:0.488160pt;}
.ls1d_c00142{letter-spacing:0.494187pt;}
.ls33_c00142{letter-spacing:0.506240pt;}
.ls21_c00142{letter-spacing:0.512267pt;}
.ls1f_c00142{letter-spacing:0.518293pt;}
.ls3c_c00142{letter-spacing:0.530347pt;}
.ls3a_c00142{letter-spacing:0.542400pt;}
.ls5b_c00142{letter-spacing:0.548427pt;}
.ls48_c00142{letter-spacing:0.554453pt;}
.ls35_c00142{letter-spacing:0.560480pt;}
.lsb_c00142{letter-spacing:0.572533pt;}
.ls7_c00142{letter-spacing:0.578560pt;}
.ls43_c00142{letter-spacing:0.584587pt;}
.ls36_c00142{letter-spacing:0.590613pt;}
.ls28_c00142{letter-spacing:0.596640pt;}
.ls2b_c00142{letter-spacing:0.602667pt;}
.ls5c_c00142{letter-spacing:0.620747pt;}
.lsf_c00142{letter-spacing:0.626773pt;}
.ls2c_c00142{letter-spacing:0.632800pt;}
.ls1e_c00142{letter-spacing:0.644853pt;}
.ls0_c00142{letter-spacing:0.650880pt;}
.ls7b_c00142{letter-spacing:0.656907pt;}
.ls18_c00142{letter-spacing:0.662933pt;}
.ls20_c00142{letter-spacing:0.674987pt;}
.ls60_c00142{letter-spacing:0.681013pt;}
.ls5e_c00142{letter-spacing:0.693067pt;}
.ls3_c00142{letter-spacing:0.705120pt;}
.ls7e_c00142{letter-spacing:0.711147pt;}
.lsd_c00142{letter-spacing:0.747307pt;}
.ls64_c00142{letter-spacing:0.753333pt;}
.ls9_c00142{letter-spacing:0.759360pt;}
.ls10_c00142{letter-spacing:0.777440pt;}
.ls16_c00142{letter-spacing:0.783467pt;}
.ls61_c00142{letter-spacing:0.789493pt;}
.ls8_c00142{letter-spacing:0.795520pt;}
.ls79_c00142{letter-spacing:0.801547pt;}
.ls41_c00142{letter-spacing:0.825653pt;}
.ls2e_c00142{letter-spacing:0.831680pt;}
.ls24_c00142{letter-spacing:0.843733pt;}
.ls44_c00142{letter-spacing:0.849760pt;}
.ls55_c00142{letter-spacing:0.855787pt;}
.lsc_c00142{letter-spacing:0.891947pt;}
.ls12_c00142{letter-spacing:0.897973pt;}
.ls75_c00142{letter-spacing:0.910027pt;}
.ls8a_c00142{letter-spacing:0.916053pt;}
.ls59_c00142{letter-spacing:0.940160pt;}
.ls42_c00142{letter-spacing:0.970293pt;}
.ls71_c00142{letter-spacing:1.024533pt;}
.ls47_c00142{letter-spacing:1.030560pt;}
.ls52_c00142{letter-spacing:1.032107pt;}
.ls1_c00142{letter-spacing:1.042613pt;}
.ls31_c00142{letter-spacing:1.048640pt;}
.ls4a_c00142{letter-spacing:1.051307pt;}
.ls72_c00142{letter-spacing:1.054667pt;}
.ls32_c00142{letter-spacing:1.066720pt;}
.ls37_c00142{letter-spacing:1.078773pt;}
.ls3f_c00142{letter-spacing:1.090827pt;}
.ls2a_c00142{letter-spacing:1.114933pt;}
.ls1c_c00142{letter-spacing:1.139040pt;}
.ls58_c00142{letter-spacing:1.151093pt;}
.ls9a_c00142{letter-spacing:1.253547pt;}
.lse_c00142{letter-spacing:1.283680pt;}
.ls3e_c00142{letter-spacing:1.307787pt;}
.ls26_c00142{letter-spacing:1.337920pt;}
.ls51_c00142{letter-spacing:1.506667pt;}
.ls68_c00142{letter-spacing:1.524427pt;}
.ls66_c00142{letter-spacing:1.530773pt;}
.ls11_c00142{letter-spacing:1.627200pt;}
.ls4e_c00142{letter-spacing:1.747733pt;}
.ls45_c00142{letter-spacing:1.916480pt;}
.ls4f_c00142{letter-spacing:1.922507pt;}
.ls15_c00142{letter-spacing:1.958667pt;}
.ls7f_c00142{letter-spacing:2.344373pt;}
.ls67_c00142{letter-spacing:2.489013pt;}
.ls54_c00142{letter-spacing:2.507093pt;}
.ls4b_c00142{letter-spacing:3.001280pt;}
.ls74_c00142{letter-spacing:3.013333pt;}
.ws4_c00142{word-spacing:0.000000pt;}
.ws1_c00142{word-spacing:0.271200pt;}
.ws3_c00142{word-spacing:1.506667pt;}
.ws0_c00142{word-spacing:1.639253pt;}
.ws2_c00142{word-spacing:17.865920pt;}
._11_c00142{margin-left:-6.129120pt;}
._10_c00142{margin-left:-4.972000pt;}
._f_c00142{margin-left:-3.899253pt;}
._d_c00142{margin-left:-2.699947pt;}
._5_c00142{margin-left:-1.735680pt;}
._1_c00142{width:1.500640pt;}
._e_c00142{width:2.874720pt;}
._0_c00142{width:4.327147pt;}
._12_c00142{width:5.336747pt;}
._2_c00142{width:7.015040pt;}
._4_c00142{width:7.925067pt;}
._3_c00142{width:9.076160pt;}
._7_c00142{width:10.522560pt;}
._6_c00142{width:11.993067pt;}
._c_c00142{width:13.288800pt;}
._8_c00142{width:17.176000pt;}
._a_c00142{width:18.351200pt;}
._9_c00142{width:20.550933pt;}
._b_c00142{width:22.425227pt;}
.fs0_c00142{font-size:53.866667pt;}
.fs6_c00142{font-size:55.466667pt;}
.fs3_c00142{font-size:58.666667pt;}
.fs4_c00142{font-size:59.733333pt;}
.fs1_c00142{font-size:60.266667pt;}
.fs5_c00142{font-size:62.933333pt;}
.fs2_c00142{font-size:68.266667pt;}
.y0_c00142{bottom:0.000000pt;}
.y22_c00142{bottom:63.373347pt;}
.y21_c00142{bottom:131.520147pt;}
.y20_c00142{bottom:158.715480pt;}
.y1f_c00142{bottom:214.733347pt;}
.y1e_c00142{bottom:270.093347pt;}
.y1d_c00142{bottom:270.103080pt;}
.y1c_c00142{bottom:297.298413pt;}
.y1b_c00142{bottom:352.653347pt;}
.y1a_c00142{bottom:352.659080pt;}
.y19_c00142{bottom:381.126947pt;}
.y18_c00142{bottom:436.813347pt;}
.y16_c00142{bottom:464.650547pt;}
.y17_c00142{bottom:464.653347pt;}
.y15_c00142{bottom:520.653347pt;}
.y13_c00142{bottom:575.690147pt;}
.y14_c00142{bottom:575.693347pt;}
.y11_c00142{bottom:603.523747pt;}
.y12_c00142{bottom:603.533347pt;}
.y10_c00142{bottom:659.195080pt;}
.yf_c00142{bottom:687.053347pt;}
.ye_c00142{bottom:687.053747pt;}
.yc_c00142{bottom:715.210947pt;}
.yd_c00142{bottom:715.213347pt;}
.yb_c00142{bottom:771.530147pt;}
.y9_c00142{bottom:799.366547pt;}
.ya_c00142{bottom:799.373347pt;}
.y7_c00142{bottom:826.876147pt;}
.y8_c00142{bottom:826.893347pt;}
.y6_c00142{bottom:854.704280pt;}
.y5_c00142{bottom:882.231080pt;}
.y4_c00142{bottom:909.757880pt;}
.y3_c00142{bottom:964.480013pt;}
.y2_c00142{bottom:992.973347pt;}
.y1_c00142{bottom:1059.533347pt;}
.h2_c00142{height:52.867187pt;}
.ha_c00142{height:54.437500pt;}
.h4_c00142{height:59.119010pt;}
.h3_c00142{height:59.148438pt;}
.h8_c00142{height:59.159638pt;}
.h6_c00142{height:59.161238pt;}
.h7_c00142{height:61.187500pt;}
.h9_c00142{height:61.707163pt;}
.h5_c00142{height:67.000000pt;}
.h1_c00142{height:1122.666667pt;}
.h0_c00142{height:1122.880013pt;}
.w1_c00142{width:793.333333pt;}
.w0_c00142{width:793.600013pt;}
.x0_c00142{left:0.000000pt;}
.x1a_c00142{left:103.218013pt;}
.x1_c00142{left:105.853347pt;}
.x19_c00142{left:151.808013pt;}
.x17_c00142{left:152.799880pt;}
.x7_c00142{left:153.747880pt;}
.x2_c00142{left:154.933347pt;}
.x15_c00142{left:189.280013pt;}
.x5_c00142{left:200.573347pt;}
.x16_c00142{left:204.306680pt;}
.xf_c00142{left:218.866680pt;}
.x6_c00142{left:220.146680pt;}
.x10_c00142{left:247.653347pt;}
.x8_c00142{left:250.226680pt;}
.x14_c00142{left:263.410413pt;}
.xd_c00142{left:270.026680pt;}
.x9_c00142{left:276.320013pt;}
.xe_c00142{left:298.160013pt;}
.x1b_c00142{left:372.373347pt;}
.x3_c00142{left:444.080013pt;}
.x18_c00142{left:451.373347pt;}
.x4_c00142{left:467.680013pt;}
.x12_c00142{left:507.226680pt;}
.x11_c00142{left:519.160013pt;}
.x13_c00142{left:534.426680pt;}
.xa_c00142{left:554.053347pt;}
.xb_c00142{left:577.226680pt;}
.xc_c00142{left:608.493347pt;}
}





/* 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_c00143 {
    display:none;
  }
  .loading-indicator_c00143.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00143 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_c00143 { 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_c00143" -> "#page-container .classname_c00143")
 */
.pf_c00143 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00143 { /* 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_c00143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00143 { /* 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_c00143 { /* 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_c00143 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00143 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00143 {overflow:visible;}
  }
}
.c_c00143 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00143 { /* 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_c00143:after { /* webkit #35443 */
  content: '';
}
.t_c00143:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00143 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 */
}
.__c00143 { /* 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_c00143 { /* info for Javascript */
  display:none;
}
.l_c00143 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00143 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00143 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00143: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_c00143 {
    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_c00143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00143.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_c00143 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00143;src:url('chunks/assets/font_5dd316f05853b6e78c26cdce.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.284668;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_c00143;src:url('chunks/assets/font_d7d953dd5eff26f4f4c3f542.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;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_c00143;src:url('chunks/assets/font_10ee87e69a76ee17148f3880.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.284180;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_c00143;src:url('chunks/assets/font_8f9de0c4cd3bc858a16353f0.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;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;}
.me_c00143{transform:matrix(0.148674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148674,0.000000,0.000000,0.250000,0,0);}
.md_c00143{transform:matrix(0.155352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155352,0.000000,0.000000,0.250000,0,0);}
.m7_c00143{transform:matrix(0.210208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210208,0.000000,0.000000,0.250000,0,0);}
.m11_c00143{transform:matrix(0.214914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214914,0.000000,0.000000,0.250000,0,0);}
.m5_c00143{transform:matrix(0.236829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236829,0.000000,0.000000,0.250000,0,0);}
.m0_c00143{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{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);}
.m8_c00143{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.ma_c00143{transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);}
.m6_c00143{transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);}
.m3_c00143{transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);}
.m4_c00143{transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);}
.m2_c00143{transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);}
.m10_c00143{transform:matrix(0.256418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256418,0.000000,0.000000,0.250000,0,0);}
.mf_c00143{transform:matrix(0.256971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256971,0.000000,0.000000,0.250000,0,0);}
.mc_c00143{transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);}
.m9_c00143{transform:matrix(0.258002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258002,0.000000,0.000000,0.250000,0,0);}
.mb_c00143{transform:matrix(0.299418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299418,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls9a_c00143{letter-spacing:-3.234000px;}
.lsab_c00143{letter-spacing:-2.793000px;}
.lsa2_c00143{letter-spacing:-2.688000px;}
.lsa8_c00143{letter-spacing:-2.531340px;}
.ls8f_c00143{letter-spacing:-2.331000px;}
.ls9d_c00143{letter-spacing:-1.265400px;}
.lsb1_c00143{letter-spacing:-0.958440px;}
.lsaa_c00143{letter-spacing:-0.705120px;}
.lsad_c00143{letter-spacing:-0.386460px;}
.ls93_c00143{letter-spacing:-0.264420px;}
.lsae_c00143{letter-spacing:-0.162720px;}
.ls92_c00143{letter-spacing:-0.128820px;}
.lsaf_c00143{letter-spacing:-0.074580px;}
.ls91_c00143{letter-spacing:0.000000px;}
.ls3d_c00143{letter-spacing:0.020340px;}
.ls1d_c00143{letter-spacing:0.027120px;}
.ls45_c00143{letter-spacing:0.033900px;}
.ls28_c00143{letter-spacing:0.040680px;}
.ls8e_c00143{letter-spacing:0.054240px;}
.ls77_c00143{letter-spacing:0.088140px;}
.ls7a_c00143{letter-spacing:0.169500px;}
.ls99_c00143{letter-spacing:0.210180px;}
.ls8_c00143{letter-spacing:0.250860px;}
.ls8c_c00143{letter-spacing:0.321480px;}
.ls2f_c00143{letter-spacing:0.339000px;}
.ls36_c00143{letter-spacing:0.359340px;}
.ls81_c00143{letter-spacing:0.366120px;}
.lsa0_c00143{letter-spacing:0.379680px;}
.ls74_c00143{letter-spacing:0.386460px;}
.ls87_c00143{letter-spacing:0.393240px;}
.ls5_c00143{letter-spacing:0.420360px;}
.ls6c_c00143{letter-spacing:0.467820px;}
.ls9c_c00143{letter-spacing:0.474600px;}
.lsa5_c00143{letter-spacing:0.478800px;}
.ls50_c00143{letter-spacing:0.481380px;}
.ls9f_c00143{letter-spacing:0.508500px;}
.ls37_c00143{letter-spacing:0.522060px;}
.ls71_c00143{letter-spacing:0.528840px;}
.lsa6_c00143{letter-spacing:0.542400px;}
.ls63_c00143{letter-spacing:0.562740px;}
.ls61_c00143{letter-spacing:0.567720px;}
.ls54_c00143{letter-spacing:0.583080px;}
.lsd_c00143{letter-spacing:0.589860px;}
.ls10_c00143{letter-spacing:0.603420px;}
.ls6f_c00143{letter-spacing:0.616980px;}
.ls53_c00143{letter-spacing:0.630540px;}
.ls85_c00143{letter-spacing:0.650880px;}
.ls8b_c00143{letter-spacing:0.656640px;}
.lsa4_c00143{letter-spacing:0.657660px;}
.ls11_c00143{letter-spacing:0.664440px;}
.lsa3_c00143{letter-spacing:0.678000px;}
.ls83_c00143{letter-spacing:0.690840px;}
.ls6b_c00143{letter-spacing:0.691560px;}
.lsf_c00143{letter-spacing:0.698340px;}
.ls22_c00143{letter-spacing:0.705120px;}
.lsb0_c00143{letter-spacing:0.725460px;}
.ls3c_c00143{letter-spacing:0.731880px;}
.ls24_c00143{letter-spacing:0.732240px;}
.ls5e_c00143{letter-spacing:0.739020px;}
.ls68_c00143{letter-spacing:0.752580px;}
.ls5c_c00143{letter-spacing:0.772920px;}
.ls94_c00143{letter-spacing:0.779700px;}
.ls5b_c00143{letter-spacing:0.786480px;}
.ls6_c00143{letter-spacing:0.793260px;}
.ls16_c00143{letter-spacing:0.800040px;}
.ls98_c00143{letter-spacing:0.806820px;}
.ls70_c00143{letter-spacing:0.833940px;}
.ls44_c00143{letter-spacing:0.847500px;}
.ls14_c00143{letter-spacing:0.854280px;}
.ls25_c00143{letter-spacing:0.861060px;}
.ls72_c00143{letter-spacing:0.867840px;}
.ls3e_c00143{letter-spacing:0.874620px;}
.ls4f_c00143{letter-spacing:0.881400px;}
.ls80_c00143{letter-spacing:0.888180px;}
.ls1b_c00143{letter-spacing:0.894960px;}
.ls6a_c00143{letter-spacing:0.901740px;}
.ls43_c00143{letter-spacing:0.915300px;}
.ls42_c00143{letter-spacing:0.928860px;}
.ls66_c00143{letter-spacing:0.935640px;}
.ls41_c00143{letter-spacing:0.942420px;}
.ls35_c00143{letter-spacing:0.955980px;}
.ls7e_c00143{letter-spacing:0.969540px;}
.ls9e_c00143{letter-spacing:0.976320px;}
.lsa9_c00143{letter-spacing:0.983100px;}
.ls27_c00143{letter-spacing:0.996660px;}
.ls12_c00143{letter-spacing:1.003440px;}
.ls96_c00143{letter-spacing:1.010220px;}
.lsa7_c00143{letter-spacing:1.017000px;}
.lsac_c00143{letter-spacing:1.023780px;}
.ls2_c00143{letter-spacing:1.030560px;}
.ls1a_c00143{letter-spacing:1.037340px;}
.lsa1_c00143{letter-spacing:1.044120px;}
.lsc_c00143{letter-spacing:1.064460px;}
.ls8a_c00143{letter-spacing:1.071240px;}
.ls58_c00143{letter-spacing:1.073880px;}
.ls76_c00143{letter-spacing:1.078020px;}
.ls4_c00143{letter-spacing:1.084800px;}
.ls4b_c00143{letter-spacing:1.091580px;}
.ls2b_c00143{letter-spacing:1.098360px;}
.ls34_c00143{letter-spacing:1.105140px;}
.ls13_c00143{letter-spacing:1.111920px;}
.ls60_c00143{letter-spacing:1.118700px;}
.ls48_c00143{letter-spacing:1.125480px;}
.lse_c00143{letter-spacing:1.132260px;}
.ls9b_c00143{letter-spacing:1.145820px;}
.ls3f_c00143{letter-spacing:1.155960px;}
.lsb_c00143{letter-spacing:1.159380px;}
.ls6e_c00143{letter-spacing:1.166160px;}
.ls89_c00143{letter-spacing:1.172940px;}
.ls0_c00143{letter-spacing:1.179720px;}
.ls21_c00143{letter-spacing:1.186500px;}
.ls30_c00143{letter-spacing:1.193280px;}
.ls3_c00143{letter-spacing:1.200060px;}
.ls15_c00143{letter-spacing:1.213620px;}
.ls82_c00143{letter-spacing:1.233960px;}
.ls59_c00143{letter-spacing:1.247520px;}
.ls3b_c00143{letter-spacing:1.251720px;}
.ls64_c00143{letter-spacing:1.254300px;}
.ls33_c00143{letter-spacing:1.294980px;}
.ls32_c00143{letter-spacing:1.301760px;}
.ls20_c00143{letter-spacing:1.308540px;}
.ls39_c00143{letter-spacing:1.322100px;}
.ls47_c00143{letter-spacing:1.328880px;}
.ls46_c00143{letter-spacing:1.356000px;}
.ls31_c00143{letter-spacing:1.362780px;}
.ls2a_c00143{letter-spacing:1.369560px;}
.ls1_c00143{letter-spacing:1.376340px;}
.ls84_c00143{letter-spacing:1.383120px;}
.ls69_c00143{letter-spacing:1.410240px;}
.ls5a_c00143{letter-spacing:1.417020px;}
.ls29_c00143{letter-spacing:1.423800px;}
.ls73_c00143{letter-spacing:1.430580px;}
.ls2e_c00143{letter-spacing:1.457700px;}
.ls7_c00143{letter-spacing:1.464480px;}
.ls19_c00143{letter-spacing:1.471260px;}
.lsa_c00143{letter-spacing:1.478040px;}
.ls2d_c00143{letter-spacing:1.484820px;}
.ls1c_c00143{letter-spacing:1.498380px;}
.ls1f_c00143{letter-spacing:1.511940px;}
.ls4d_c00143{letter-spacing:1.518720px;}
.ls17_c00143{letter-spacing:1.539060px;}
.ls97_c00143{letter-spacing:1.545840px;}
.ls7d_c00143{letter-spacing:1.566180px;}
.ls3a_c00143{letter-spacing:1.572960px;}
.ls9_c00143{letter-spacing:1.586520px;}
.ls23_c00143{letter-spacing:1.613640px;}
.ls55_c00143{letter-spacing:1.627200px;}
.ls49_c00143{letter-spacing:1.640760px;}
.ls1e_c00143{letter-spacing:1.667880px;}
.ls62_c00143{letter-spacing:1.681440px;}
.ls8d_c00143{letter-spacing:1.742460px;}
.ls57_c00143{letter-spacing:1.776360px;}
.ls18_c00143{letter-spacing:1.830600px;}
.ls38_c00143{letter-spacing:1.884840px;}
.ls7b_c00143{letter-spacing:1.891620px;}
.ls5d_c00143{letter-spacing:1.918740px;}
.ls6d_c00143{letter-spacing:1.932300px;}
.ls7f_c00143{letter-spacing:1.939080px;}
.ls56_c00143{letter-spacing:2.040780px;}
.ls79_c00143{letter-spacing:2.115360px;}
.ls5f_c00143{letter-spacing:2.122140px;}
.ls95_c00143{letter-spacing:2.156040px;}
.ls26_c00143{letter-spacing:2.162820px;}
.ls75_c00143{letter-spacing:2.203500px;}
.ls4e_c00143{letter-spacing:2.223840px;}
.ls51_c00143{letter-spacing:2.305200px;}
.ls7c_c00143{letter-spacing:2.373000px;}
.ls67_c00143{letter-spacing:2.488260px;}
.ls86_c00143{letter-spacing:2.562840px;}
.ls65_c00143{letter-spacing:2.617080px;}
.ls40_c00143{letter-spacing:2.637420px;}
.ls4a_c00143{letter-spacing:2.901840px;}
.ls4c_c00143{letter-spacing:2.915400px;}
.ls88_c00143{letter-spacing:2.942520px;}
.ls52_c00143{letter-spacing:2.983200px;}
.ls2c_c00143{letter-spacing:3.356100px;}
.ls78_c00143{letter-spacing:3.376440px;}
.ls90_c00143{letter-spacing:3.390000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{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__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00143{word-spacing:-1.585920px;}
.ws4_c00143{word-spacing:0.000000px;}
.ws3_c00143{word-spacing:2.343720px;}
.ws2_c00143{word-spacing:4.489800px;}
.ws0_c00143{word-spacing:18.670080px;}
._11_c00143{margin-left:-9.207120px;}
._d_c00143{margin-left:-6.271500px;}
._c_c00143{margin-left:-4.644300px;}
._b_c00143{margin-left:-2.800140px;}
._f_c00143{margin-left:-1.037340px;}
._10_c00143{width:1.728780px;}
._0_c00143{width:3.037440px;}
._2_c00143{width:4.800240px;}
._1_c00143{width:5.864700px;}
._5_c00143{width:6.874920px;}
._3_c00143{width:8.169900px;}
._4_c00143{width:9.593700px;}
._a_c00143{width:11.329380px;}
._7_c00143{width:13.159980px;}
._6_c00143{width:14.488860px;}
._8_c00143{width:15.987240px;}
._e_c00143{width:19.159260px;}
._12_c00143{width:20.251860px;}
._9_c00143{width:21.533280px;}
.fc0_c00143{color:transparent;}
.fs7_c00143{font-size:58.800000px;}
.fs0_c00143{font-size:66.600000px;}
.fs1_c00143{font-size:67.800000px;}
.fs2_c00143{font-size:68.400000px;}
.fs5_c00143{font-size:73.800000px;}
.fs4_c00143{font-size:76.800000px;}
.fs6_c00143{font-size:79.800000px;}
.fs3_c00143{font-size:92.400000px;}
.y0_c00143{bottom:0.000000px;}
.y26_c00143{bottom:66.975006px;}
.y25_c00143{bottom:143.280006px;}
.y24_c00143{bottom:205.573356px;}
.y23_c00143{bottom:236.880006px;}
.y21_c00143{bottom:299.171406px;}
.y22_c00143{bottom:299.175006px;}
.y20_c00143{bottom:330.495006px;}
.y1e_c00143{bottom:362.531406px;}
.y1f_c00143{bottom:362.535006px;}
.y1d_c00143{bottom:393.855006px;}
.y1b_c00143{bottom:425.173356px;}
.y1c_c00143{bottom:425.175006px;}
.y19_c00143{bottom:456.476406px;}
.y1a_c00143{bottom:456.480006px;}
.y18_c00143{bottom:487.800006px;}
.y17_c00143{bottom:550.095006px;}
.y16_c00143{bottom:612.720006px;}
.y15_c00143{bottom:612.726606px;}
.y14_c00143{bottom:645.135006px;}
.y13_c00143{bottom:708.131856px;}
.y12_c00143{bottom:739.455456px;}
.y11_c00143{bottom:771.135006px;}
.y10_c00143{bottom:802.455006px;}
.yf_c00143{bottom:802.455456px;}
.ye_c00143{bottom:834.135006px;}
.yd_c00143{bottom:834.137406px;}
.yc_c00143{bottom:865.800006px;}
.ya_c00143{bottom:928.087356px;}
.yb_c00143{bottom:928.095006px;}
.y8_c00143{bottom:959.045706px;}
.y9_c00143{bottom:959.055006px;}
.y7_c00143{bottom:990.352356px;}
.y6_c00143{bottom:1021.320006px;}
.y5_c00143{bottom:1052.640006px;}
.y4_c00143{bottom:1083.975006px;}
.y3_c00143{bottom:1083.977406px;}
.y2_c00143{bottom:1115.640006px;}
.y1_c00143{bottom:1191.975006px;}
.hd_c00143{height:57.708984px;}
.h2_c00143{height:65.364258px;}
.h3_c00143{height:66.541992px;}
.h9_c00143{height:66.548592px;}
.h5_c00143{height:67.097461px;}
.h4_c00143{height:69.461719px;}
.h7_c00143{height:71.339063px;}
.ha_c00143{height:72.430664px;}
.hc_c00143{height:72.437264px;}
.h8_c00143{height:75.375000px;}
.hb_c00143{height:78.319336px;}
.h6_c00143{height:96.370313px;}
.h1_c00143{height:1263.000000px;}
.h0_c00143{height:1263.240006px;}
.w1_c00143{width:892.500000px;}
.w0_c00143{width:892.799998px;}
.x0_c00143{left:0.000000px;}
.x2e_c00143{left:113.789999px;}
.x29_c00143{left:115.049999px;}
.x1e_c00143{left:116.069848px;}
.x7_c00143{left:117.389999px;}
.x2_c00143{left:119.354999px;}
.x1_c00143{left:120.524998px;}
.x1b_c00143{left:145.619998px;}
.x2f_c00143{left:146.849998px;}
.x22_c00143{left:161.579999px;}
.x35_c00143{left:168.284999px;}
.x1f_c00143{left:169.364998px;}
.x10_c00143{left:170.444998px;}
.x30_c00143{left:174.794998px;}
.x3_c00143{left:187.454998px;}
.x23_c00143{left:188.804998px;}
.x4_c00143{left:213.329998px;}
.x17_c00143{left:223.169998px;}
.x24_c00143{left:237.524998px;}
.x18_c00143{left:244.274998px;}
.x1c_c00143{left:250.049999px;}
.x25_c00143{left:263.009999px;}
.xc_c00143{left:267.149999px;}
.x1d_c00143{left:275.009999px;}
.x8_c00143{left:282.629998px;}
.x33_c00143{left:287.819998px;}
.xd_c00143{left:299.519999px;}
.x34_c00143{left:308.699999px;}
.x9_c00143{left:313.379998px;}
.x13_c00143{left:323.819998px;}
.x14_c00143{left:345.794999px;}
.xa_c00143{left:378.059999px;}
.x2c_c00143{left:388.979999px;}
.x2d_c00143{left:411.299998px;}
.xb_c00143{left:413.654998px;}
.x36_c00143{left:419.249998px;}
.x20_c00143{left:493.139998px;}
.xe_c00143{left:500.099999px;}
.x31_c00143{left:511.379999px;}
.x21_c00143{left:524.714998px;}
.xf_c00143{left:532.994999px;}
.x32_c00143{left:537.299998px;}
.x19_c00143{left:603.179999px;}
.x26_c00143{left:609.659999px;}
.x11_c00143{left:620.729999px;}
.x1a_c00143{left:624.809999px;}
.x27_c00143{left:630.929999px;}
.x12_c00143{left:646.709998px;}
.x15_c00143{left:667.694999px;}
.x16_c00143{left:691.529999px;}
.x2a_c00143{left:701.099999px;}
.x6_c00143{left:725.789999px;}
.x2b_c00143{left:729.539999px;}
.x28_c00143{left:730.769998px;}
.x5_c00143{left:732.239998px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls9a_c00143{letter-spacing:-2.874667pt;}
.lsab_c00143{letter-spacing:-2.482667pt;}
.lsa2_c00143{letter-spacing:-2.389333pt;}
.lsa8_c00143{letter-spacing:-2.250080pt;}
.ls8f_c00143{letter-spacing:-2.072000pt;}
.ls9d_c00143{letter-spacing:-1.124800pt;}
.lsb1_c00143{letter-spacing:-0.851947pt;}
.lsaa_c00143{letter-spacing:-0.626773pt;}
.lsad_c00143{letter-spacing:-0.343520pt;}
.ls93_c00143{letter-spacing:-0.235040pt;}
.lsae_c00143{letter-spacing:-0.144640pt;}
.ls92_c00143{letter-spacing:-0.114507pt;}
.lsaf_c00143{letter-spacing:-0.066293pt;}
.ls91_c00143{letter-spacing:0.000000pt;}
.ls3d_c00143{letter-spacing:0.018080pt;}
.ls1d_c00143{letter-spacing:0.024107pt;}
.ls45_c00143{letter-spacing:0.030133pt;}
.ls28_c00143{letter-spacing:0.036160pt;}
.ls8e_c00143{letter-spacing:0.048213pt;}
.ls77_c00143{letter-spacing:0.078347pt;}
.ls7a_c00143{letter-spacing:0.150667pt;}
.ls99_c00143{letter-spacing:0.186827pt;}
.ls8_c00143{letter-spacing:0.222987pt;}
.ls8c_c00143{letter-spacing:0.285760pt;}
.ls2f_c00143{letter-spacing:0.301333pt;}
.ls36_c00143{letter-spacing:0.319413pt;}
.ls81_c00143{letter-spacing:0.325440pt;}
.lsa0_c00143{letter-spacing:0.337493pt;}
.ls74_c00143{letter-spacing:0.343520pt;}
.ls87_c00143{letter-spacing:0.349547pt;}
.ls5_c00143{letter-spacing:0.373653pt;}
.ls6c_c00143{letter-spacing:0.415840pt;}
.ls9c_c00143{letter-spacing:0.421867pt;}
.lsa5_c00143{letter-spacing:0.425600pt;}
.ls50_c00143{letter-spacing:0.427893pt;}
.ls9f_c00143{letter-spacing:0.452000pt;}
.ls37_c00143{letter-spacing:0.464053pt;}
.ls71_c00143{letter-spacing:0.470080pt;}
.lsa6_c00143{letter-spacing:0.482133pt;}
.ls63_c00143{letter-spacing:0.500213pt;}
.ls61_c00143{letter-spacing:0.504640pt;}
.ls54_c00143{letter-spacing:0.518293pt;}
.lsd_c00143{letter-spacing:0.524320pt;}
.ls10_c00143{letter-spacing:0.536373pt;}
.ls6f_c00143{letter-spacing:0.548427pt;}
.ls53_c00143{letter-spacing:0.560480pt;}
.ls85_c00143{letter-spacing:0.578560pt;}
.ls8b_c00143{letter-spacing:0.583680pt;}
.lsa4_c00143{letter-spacing:0.584587pt;}
.ls11_c00143{letter-spacing:0.590613pt;}
.lsa3_c00143{letter-spacing:0.602667pt;}
.ls83_c00143{letter-spacing:0.614080pt;}
.ls6b_c00143{letter-spacing:0.614720pt;}
.lsf_c00143{letter-spacing:0.620747pt;}
.ls22_c00143{letter-spacing:0.626773pt;}
.lsb0_c00143{letter-spacing:0.644853pt;}
.ls3c_c00143{letter-spacing:0.650560pt;}
.ls24_c00143{letter-spacing:0.650880pt;}
.ls5e_c00143{letter-spacing:0.656907pt;}
.ls68_c00143{letter-spacing:0.668960pt;}
.ls5c_c00143{letter-spacing:0.687040pt;}
.ls94_c00143{letter-spacing:0.693067pt;}
.ls5b_c00143{letter-spacing:0.699093pt;}
.ls6_c00143{letter-spacing:0.705120pt;}
.ls16_c00143{letter-spacing:0.711147pt;}
.ls98_c00143{letter-spacing:0.717173pt;}
.ls70_c00143{letter-spacing:0.741280pt;}
.ls44_c00143{letter-spacing:0.753333pt;}
.ls14_c00143{letter-spacing:0.759360pt;}
.ls25_c00143{letter-spacing:0.765387pt;}
.ls72_c00143{letter-spacing:0.771413pt;}
.ls3e_c00143{letter-spacing:0.777440pt;}
.ls4f_c00143{letter-spacing:0.783467pt;}
.ls80_c00143{letter-spacing:0.789493pt;}
.ls1b_c00143{letter-spacing:0.795520pt;}
.ls6a_c00143{letter-spacing:0.801547pt;}
.ls43_c00143{letter-spacing:0.813600pt;}
.ls42_c00143{letter-spacing:0.825653pt;}
.ls66_c00143{letter-spacing:0.831680pt;}
.ls41_c00143{letter-spacing:0.837707pt;}
.ls35_c00143{letter-spacing:0.849760pt;}
.ls7e_c00143{letter-spacing:0.861813pt;}
.ls9e_c00143{letter-spacing:0.867840pt;}
.lsa9_c00143{letter-spacing:0.873867pt;}
.ls27_c00143{letter-spacing:0.885920pt;}
.ls12_c00143{letter-spacing:0.891947pt;}
.ls96_c00143{letter-spacing:0.897973pt;}
.lsa7_c00143{letter-spacing:0.904000pt;}
.lsac_c00143{letter-spacing:0.910027pt;}
.ls2_c00143{letter-spacing:0.916053pt;}
.ls1a_c00143{letter-spacing:0.922080pt;}
.lsa1_c00143{letter-spacing:0.928107pt;}
.lsc_c00143{letter-spacing:0.946187pt;}
.ls8a_c00143{letter-spacing:0.952213pt;}
.ls58_c00143{letter-spacing:0.954560pt;}
.ls76_c00143{letter-spacing:0.958240pt;}
.ls4_c00143{letter-spacing:0.964267pt;}
.ls4b_c00143{letter-spacing:0.970293pt;}
.ls2b_c00143{letter-spacing:0.976320pt;}
.ls34_c00143{letter-spacing:0.982347pt;}
.ls13_c00143{letter-spacing:0.988373pt;}
.ls60_c00143{letter-spacing:0.994400pt;}
.ls48_c00143{letter-spacing:1.000427pt;}
.lse_c00143{letter-spacing:1.006453pt;}
.ls9b_c00143{letter-spacing:1.018507pt;}
.ls3f_c00143{letter-spacing:1.027520pt;}
.lsb_c00143{letter-spacing:1.030560pt;}
.ls6e_c00143{letter-spacing:1.036587pt;}
.ls89_c00143{letter-spacing:1.042613pt;}
.ls0_c00143{letter-spacing:1.048640pt;}
.ls21_c00143{letter-spacing:1.054667pt;}
.ls30_c00143{letter-spacing:1.060693pt;}
.ls3_c00143{letter-spacing:1.066720pt;}
.ls15_c00143{letter-spacing:1.078773pt;}
.ls82_c00143{letter-spacing:1.096853pt;}
.ls59_c00143{letter-spacing:1.108907pt;}
.ls3b_c00143{letter-spacing:1.112640pt;}
.ls64_c00143{letter-spacing:1.114933pt;}
.ls33_c00143{letter-spacing:1.151093pt;}
.ls32_c00143{letter-spacing:1.157120pt;}
.ls20_c00143{letter-spacing:1.163147pt;}
.ls39_c00143{letter-spacing:1.175200pt;}
.ls47_c00143{letter-spacing:1.181227pt;}
.ls46_c00143{letter-spacing:1.205333pt;}
.ls31_c00143{letter-spacing:1.211360pt;}
.ls2a_c00143{letter-spacing:1.217387pt;}
.ls1_c00143{letter-spacing:1.223413pt;}
.ls84_c00143{letter-spacing:1.229440pt;}
.ls69_c00143{letter-spacing:1.253547pt;}
.ls5a_c00143{letter-spacing:1.259573pt;}
.ls29_c00143{letter-spacing:1.265600pt;}
.ls73_c00143{letter-spacing:1.271627pt;}
.ls2e_c00143{letter-spacing:1.295733pt;}
.ls7_c00143{letter-spacing:1.301760pt;}
.ls19_c00143{letter-spacing:1.307787pt;}
.lsa_c00143{letter-spacing:1.313813pt;}
.ls2d_c00143{letter-spacing:1.319840pt;}
.ls1c_c00143{letter-spacing:1.331893pt;}
.ls1f_c00143{letter-spacing:1.343947pt;}
.ls4d_c00143{letter-spacing:1.349973pt;}
.ls17_c00143{letter-spacing:1.368053pt;}
.ls97_c00143{letter-spacing:1.374080pt;}
.ls7d_c00143{letter-spacing:1.392160pt;}
.ls3a_c00143{letter-spacing:1.398187pt;}
.ls9_c00143{letter-spacing:1.410240pt;}
.ls23_c00143{letter-spacing:1.434347pt;}
.ls55_c00143{letter-spacing:1.446400pt;}
.ls49_c00143{letter-spacing:1.458453pt;}
.ls1e_c00143{letter-spacing:1.482560pt;}
.ls62_c00143{letter-spacing:1.494613pt;}
.ls8d_c00143{letter-spacing:1.548853pt;}
.ls57_c00143{letter-spacing:1.578987pt;}
.ls18_c00143{letter-spacing:1.627200pt;}
.ls38_c00143{letter-spacing:1.675413pt;}
.ls7b_c00143{letter-spacing:1.681440pt;}
.ls5d_c00143{letter-spacing:1.705547pt;}
.ls6d_c00143{letter-spacing:1.717600pt;}
.ls7f_c00143{letter-spacing:1.723627pt;}
.ls56_c00143{letter-spacing:1.814027pt;}
.ls79_c00143{letter-spacing:1.880320pt;}
.ls5f_c00143{letter-spacing:1.886347pt;}
.ls95_c00143{letter-spacing:1.916480pt;}
.ls26_c00143{letter-spacing:1.922507pt;}
.ls75_c00143{letter-spacing:1.958667pt;}
.ls4e_c00143{letter-spacing:1.976747pt;}
.ls51_c00143{letter-spacing:2.049067pt;}
.ls7c_c00143{letter-spacing:2.109333pt;}
.ls67_c00143{letter-spacing:2.211787pt;}
.ls86_c00143{letter-spacing:2.278080pt;}
.ls65_c00143{letter-spacing:2.326293pt;}
.ls40_c00143{letter-spacing:2.344373pt;}
.ls4a_c00143{letter-spacing:2.579413pt;}
.ls4c_c00143{letter-spacing:2.591467pt;}
.ls88_c00143{letter-spacing:2.615573pt;}
.ls52_c00143{letter-spacing:2.651733pt;}
.ls2c_c00143{letter-spacing:2.983200pt;}
.ls78_c00143{letter-spacing:3.001280pt;}
.ls90_c00143{letter-spacing:3.013333pt;}
.ws1_c00143{word-spacing:-1.409707pt;}
.ws4_c00143{word-spacing:0.000000pt;}
.ws3_c00143{word-spacing:2.083307pt;}
.ws2_c00143{word-spacing:3.990933pt;}
.ws0_c00143{word-spacing:16.595627pt;}
._11_c00143{margin-left:-8.184107pt;}
._d_c00143{margin-left:-5.574667pt;}
._c_c00143{margin-left:-4.128267pt;}
._b_c00143{margin-left:-2.489013pt;}
._f_c00143{margin-left:-0.922080pt;}
._10_c00143{width:1.536693pt;}
._0_c00143{width:2.699947pt;}
._2_c00143{width:4.266880pt;}
._1_c00143{width:5.213067pt;}
._5_c00143{width:6.111040pt;}
._3_c00143{width:7.262133pt;}
._4_c00143{width:8.527733pt;}
._a_c00143{width:10.070560pt;}
._7_c00143{width:11.697760pt;}
._6_c00143{width:12.878987pt;}
._8_c00143{width:14.210880pt;}
._e_c00143{width:17.030453pt;}
._12_c00143{width:18.001653pt;}
._9_c00143{width:19.140693pt;}
.fs7_c00143{font-size:52.266667pt;}
.fs0_c00143{font-size:59.200000pt;}
.fs1_c00143{font-size:60.266667pt;}
.fs2_c00143{font-size:60.800000pt;}
.fs5_c00143{font-size:65.600000pt;}
.fs4_c00143{font-size:68.266667pt;}
.fs6_c00143{font-size:70.933333pt;}
.fs3_c00143{font-size:82.133333pt;}
.y0_c00143{bottom:0.000000pt;}
.y26_c00143{bottom:59.533339pt;}
.y25_c00143{bottom:127.360005pt;}
.y24_c00143{bottom:182.731872pt;}
.y23_c00143{bottom:210.560005pt;}
.y21_c00143{bottom:265.930139pt;}
.y22_c00143{bottom:265.933339pt;}
.y20_c00143{bottom:293.773339pt;}
.y1e_c00143{bottom:322.250139pt;}
.y1f_c00143{bottom:322.253339pt;}
.y1d_c00143{bottom:350.093339pt;}
.y1b_c00143{bottom:377.931872pt;}
.y1c_c00143{bottom:377.933339pt;}
.y19_c00143{bottom:405.756805pt;}
.y1a_c00143{bottom:405.760005pt;}
.y18_c00143{bottom:433.600005pt;}
.y17_c00143{bottom:488.973339pt;}
.y16_c00143{bottom:544.640005pt;}
.y15_c00143{bottom:544.645872pt;}
.y14_c00143{bottom:573.453339pt;}
.y13_c00143{bottom:629.450539pt;}
.y12_c00143{bottom:657.293739pt;}
.y11_c00143{bottom:685.453339pt;}
.y10_c00143{bottom:713.293339pt;}
.yf_c00143{bottom:713.293739pt;}
.ye_c00143{bottom:741.453339pt;}
.yd_c00143{bottom:741.455472pt;}
.yc_c00143{bottom:769.600005pt;}
.ya_c00143{bottom:824.966539pt;}
.yb_c00143{bottom:824.973339pt;}
.y8_c00143{bottom:852.485072pt;}
.y9_c00143{bottom:852.493339pt;}
.y7_c00143{bottom:880.313205pt;}
.y6_c00143{bottom:907.840005pt;}
.y5_c00143{bottom:935.680005pt;}
.y4_c00143{bottom:963.533339pt;}
.y3_c00143{bottom:963.535472pt;}
.y2_c00143{bottom:991.680005pt;}
.y1_c00143{bottom:1059.533339pt;}
.hd_c00143{height:51.296875pt;}
.h2_c00143{height:58.101562pt;}
.h3_c00143{height:59.148438pt;}
.h9_c00143{height:59.154304pt;}
.h5_c00143{height:59.642187pt;}
.h4_c00143{height:61.743750pt;}
.h7_c00143{height:63.412500pt;}
.ha_c00143{height:64.382813pt;}
.hc_c00143{height:64.388679pt;}
.h8_c00143{height:67.000000pt;}
.hb_c00143{height:69.617188pt;}
.h6_c00143{height:85.662500pt;}
.h1_c00143{height:1122.666667pt;}
.h0_c00143{height:1122.880005pt;}
.w1_c00143{width:793.333333pt;}
.w0_c00143{width:793.599999pt;}
.x0_c00143{left:0.000000pt;}
.x2e_c00143{left:101.146665pt;}
.x29_c00143{left:102.266665pt;}
.x1e_c00143{left:103.173199pt;}
.x7_c00143{left:104.346665pt;}
.x2_c00143{left:106.093332pt;}
.x1_c00143{left:107.133332pt;}
.x1b_c00143{left:129.439999pt;}
.x2f_c00143{left:130.533332pt;}
.x22_c00143{left:143.626665pt;}
.x35_c00143{left:149.586665pt;}
.x1f_c00143{left:150.546665pt;}
.x10_c00143{left:151.506665pt;}
.x30_c00143{left:155.373332pt;}
.x3_c00143{left:166.626665pt;}
.x23_c00143{left:167.826665pt;}
.x4_c00143{left:189.626665pt;}
.x17_c00143{left:198.373332pt;}
.x24_c00143{left:211.133332pt;}
.x18_c00143{left:217.133332pt;}
.x1c_c00143{left:222.266665pt;}
.x25_c00143{left:233.786665pt;}
.xc_c00143{left:237.466665pt;}
.x1d_c00143{left:244.453332pt;}
.x8_c00143{left:251.226665pt;}
.x33_c00143{left:255.839999pt;}
.xd_c00143{left:266.239999pt;}
.x34_c00143{left:274.399999pt;}
.x9_c00143{left:278.559999pt;}
.x13_c00143{left:287.839999pt;}
.x14_c00143{left:307.373332pt;}
.xa_c00143{left:336.053332pt;}
.x2c_c00143{left:345.759999pt;}
.x2d_c00143{left:365.599999pt;}
.xb_c00143{left:367.693332pt;}
.x36_c00143{left:372.666665pt;}
.x20_c00143{left:438.346665pt;}
.xe_c00143{left:444.533332pt;}
.x31_c00143{left:454.559999pt;}
.x21_c00143{left:466.413332pt;}
.xf_c00143{left:473.773332pt;}
.x32_c00143{left:477.599999pt;}
.x19_c00143{left:536.159999pt;}
.x26_c00143{left:541.919999pt;}
.x11_c00143{left:551.759999pt;}
.x1a_c00143{left:555.386665pt;}
.x27_c00143{left:560.826665pt;}
.x12_c00143{left:574.853332pt;}
.x15_c00143{left:593.506665pt;}
.x16_c00143{left:614.693332pt;}
.x2a_c00143{left:623.199999pt;}
.x6_c00143{left:645.146665pt;}
.x2b_c00143{left:648.479999pt;}
.x28_c00143{left:649.573332pt;}
.x5_c00143{left:650.879999pt;}
}





/* 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_c00144 {
    display:none;
  }
  .loading-indicator_c00144.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00144 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_c00144 { 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_c00144" -> "#page-container .classname_c00144")
 */
.pf_c00144 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00144 { /* 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_c00144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00144 { /* 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_c00144 { /* 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_c00144 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00144 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00144 {overflow:visible;}
  }
}
.c_c00144 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00144 { /* 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_c00144:after { /* webkit #35443 */
  content: '';
}
.t_c00144:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00144 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 */
}
.__c00144 { /* 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_c00144 { /* info for Javascript */
  display:none;
}
.l_c00144 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00144 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00144 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00144: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_c00144 {
    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_c00144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00144.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_c00144 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00144;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.311035;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_c00144;src:url('chunks/assets/font_a4f68e2c30dc9f29d9e70777.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.284180;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_c00144;src:url('chunks/assets/font_18b43625d0379a162d47aaf9.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.284668;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_c00144;src:url('chunks/assets/font_e1e65f1bd459184b2553a740.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:1.284180;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_c00144;src:url('chunks/assets/font_8e9d6b1061cf64e3d7c511f0.woff2')format("woff");}.ff5_c00144{font-family:ff5_c00144;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:ff6_c00144;src:url('chunks/assets/font_1fdf9f6d20df9f94daaf6a47.woff2')format("woff");}.ff6_c00144{font-family:ff6_c00144;line-height:0.666000;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;}
.m6_c00144{transform:matrix(0.173651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173651,0.000000,0.000000,0.250000,0,0);}
.m7_c00144{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m3_c00144{transform:matrix(0.228270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228270,0.000000,0.000000,0.250000,0,0);}
.m9_c00144{transform:matrix(0.229992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229992,0.000000,0.000000,0.250000,0,0);}
.m4_c00144{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m5_c00144{transform:matrix(0.244781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244781,0.000000,0.000000,0.250000,0,0);}
.m8_c00144{transform:matrix(0.245888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245888,0.000000,0.000000,0.250000,0,0);}
.m2_c00144{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.m0_c00144{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_c00144{transform:matrix(0.256724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256724,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls70_c00144{letter-spacing:-2.562000px;}
.ls5b_c00144{letter-spacing:-2.394000px;}
.ls68_c00144{letter-spacing:-2.373000px;}
.ls5c_c00144{letter-spacing:-2.331000px;}
.ls4f_c00144{letter-spacing:-2.168280px;}
.ls56_c00144{letter-spacing:-2.147760px;}
.ls7e_c00144{letter-spacing:-2.134080px;}
.ls63_c00144{letter-spacing:-2.127240px;}
.ls4e_c00144{letter-spacing:-2.099880px;}
.ls86_c00144{letter-spacing:-1.995000px;}
.ls71_c00144{letter-spacing:-1.819440px;}
.ls54_c00144{letter-spacing:-1.566360px;}
.ls59_c00144{letter-spacing:-1.443240px;}
.ls55_c00144{letter-spacing:-1.429560px;}
.ls7a_c00144{letter-spacing:-1.197000px;}
.ls7d_c00144{letter-spacing:-0.950760px;}
.ls52_c00144{letter-spacing:-0.855000px;}
.ls51_c00144{letter-spacing:-0.834480px;}
.ls62_c00144{letter-spacing:-0.759240px;}
.ls5f_c00144{letter-spacing:-0.684000px;}
.ls7f_c00144{letter-spacing:-0.663480px;}
.ls82_c00144{letter-spacing:-0.636120px;}
.ls73_c00144{letter-spacing:-0.615600px;}
.ls4d_c00144{letter-spacing:-0.581400px;}
.ls80_c00144{letter-spacing:-0.567720px;}
.ls69_c00144{letter-spacing:-0.526680px;}
.ls79_c00144{letter-spacing:-0.499320px;}
.ls76_c00144{letter-spacing:-0.478800px;}
.ls84_c00144{letter-spacing:-0.443520px;}
.ls78_c00144{letter-spacing:-0.403560px;}
.ls66_c00144{letter-spacing:-0.376200px;}
.ls6b_c00144{letter-spacing:-0.369360px;}
.ls57_c00144{letter-spacing:-0.362520px;}
.ls64_c00144{letter-spacing:-0.328320px;}
.ls4c_c00144{letter-spacing:-0.294120px;}
.ls6c_c00144{letter-spacing:-0.280440px;}
.ls7b_c00144{letter-spacing:-0.212040px;}
.ls5e_c00144{letter-spacing:-0.198360px;}
.ls58_c00144{letter-spacing:-0.171000px;}
.ls61_c00144{letter-spacing:-0.157320px;}
.ls53_c00144{letter-spacing:-0.150480px;}
.ls77_c00144{letter-spacing:-0.143640px;}
.ls74_c00144{letter-spacing:-0.129960px;}
.ls4b_c00144{letter-spacing:-0.123120px;}
.ls6e_c00144{letter-spacing:-0.088920px;}
.ls83_c00144{letter-spacing:-0.087360px;}
.ls72_c00144{letter-spacing:-0.082080px;}
.ls6a_c00144{letter-spacing:-0.068400px;}
.ls5d_c00144{letter-spacing:-0.041040px;}
.ls60_c00144{letter-spacing:-0.027360px;}
.ls81_c00144{letter-spacing:-0.020520px;}
.ls6d_c00144{letter-spacing:-0.013680px;}
.ls50_c00144{letter-spacing:0.000000px;}
.ls3_c00144{letter-spacing:0.006840px;}
.ls3e_c00144{letter-spacing:0.068400px;}
.ls17_c00144{letter-spacing:0.075240px;}
.ls44_c00144{letter-spacing:0.088920px;}
.ls16_c00144{letter-spacing:0.102600px;}
.ls11_c00144{letter-spacing:0.123120px;}
.lsd_c00144{letter-spacing:0.129960px;}
.ls32_c00144{letter-spacing:0.143640px;}
.ls65_c00144{letter-spacing:0.157320px;}
.ls3d_c00144{letter-spacing:0.164160px;}
.ls6f_c00144{letter-spacing:0.171000px;}
.ls14_c00144{letter-spacing:0.198360px;}
.ls29_c00144{letter-spacing:0.205200px;}
.ls10_c00144{letter-spacing:0.212040px;}
.ls2f_c00144{letter-spacing:0.225720px;}
.ls2e_c00144{letter-spacing:0.232560px;}
.ls41_c00144{letter-spacing:0.239400px;}
.ls39_c00144{letter-spacing:0.266760px;}
.ls25_c00144{letter-spacing:0.273600px;}
.ls33_c00144{letter-spacing:0.280440px;}
.ls42_c00144{letter-spacing:0.287280px;}
.ls34_c00144{letter-spacing:0.294120px;}
.ls18_c00144{letter-spacing:0.307800px;}
.ls37_c00144{letter-spacing:0.321480px;}
.ls75_c00144{letter-spacing:0.328320px;}
.ls24_c00144{letter-spacing:0.335160px;}
.ls35_c00144{letter-spacing:0.348840px;}
.ls5_c00144{letter-spacing:0.362520px;}
.ls1c_c00144{letter-spacing:0.369360px;}
.ls13_c00144{letter-spacing:0.383040px;}
.ls4_c00144{letter-spacing:0.389880px;}
.ls27_c00144{letter-spacing:0.396720px;}
.ls1e_c00144{letter-spacing:0.403560px;}
.ls23_c00144{letter-spacing:0.410400px;}
.ls3a_c00144{letter-spacing:0.444600px;}
.ls30_c00144{letter-spacing:0.490560px;}
.ls36_c00144{letter-spacing:0.492480px;}
.ls12_c00144{letter-spacing:0.499320px;}
.lsc_c00144{letter-spacing:0.506160px;}
.ls21_c00144{letter-spacing:0.513000px;}
.ls67_c00144{letter-spacing:0.519840px;}
.ls22_c00144{letter-spacing:0.581400px;}
.ls9_c00144{letter-spacing:0.588240px;}
.ls1a_c00144{letter-spacing:0.622440px;}
.ls7c_c00144{letter-spacing:0.636120px;}
.ls3f_c00144{letter-spacing:0.642960px;}
.lse_c00144{letter-spacing:0.649800px;}
.ls15_c00144{letter-spacing:0.656640px;}
.ls1b_c00144{letter-spacing:0.697680px;}
.ls43_c00144{letter-spacing:0.718200px;}
.lsf_c00144{letter-spacing:0.725040px;}
.ls2d_c00144{letter-spacing:0.731880px;}
.ls45_c00144{letter-spacing:0.732480px;}
.ls47_c00144{letter-spacing:0.738720px;}
.ls19_c00144{letter-spacing:0.752400px;}
.ls3b_c00144{letter-spacing:0.759240px;}
.ls2b_c00144{letter-spacing:0.786600px;}
.lsa_c00144{letter-spacing:0.793440px;}
.ls26_c00144{letter-spacing:0.834480px;}
.ls1f_c00144{letter-spacing:0.848160px;}
.ls40_c00144{letter-spacing:0.855000px;}
.ls46_c00144{letter-spacing:0.868680px;}
.ls3c_c00144{letter-spacing:0.873600px;}
.ls6_c00144{letter-spacing:0.900480px;}
.ls8_c00144{letter-spacing:0.927360px;}
.ls1d_c00144{letter-spacing:0.930240px;}
.ls2a_c00144{letter-spacing:1.012320px;}
.lsb_c00144{letter-spacing:1.135440px;}
.ls7_c00144{letter-spacing:1.162560px;}
.ls2c_c00144{letter-spacing:1.169280px;}
.ls1_c00144{letter-spacing:1.411920px;}
.ls0_c00144{letter-spacing:1.445220px;}
.ls38_c00144{letter-spacing:1.477440px;}
.ls49_c00144{letter-spacing:1.485180px;}
.ls28_c00144{letter-spacing:1.648440px;}
.ls31_c00144{letter-spacing:1.730520px;}
.ls20_c00144{letter-spacing:1.737360px;}
.ls2_c00144{letter-spacing:1.771560px;}
.ls4a_c00144{letter-spacing:1.779840px;}
.ls48_c00144{letter-spacing:2.923200px;}
.ls85_c00144{letter-spacing:3.351600px;}
.ls5a_c00144{letter-spacing:3.420000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{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__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00144{word-spacing:-0.042720px;}
.ws5_c00144{word-spacing:0.000000px;}
.ws4_c00144{word-spacing:0.297120px;}
.ws3_c00144{word-spacing:17.455200px;}
.ws0_c00144{word-spacing:30.605760px;}
.ws2_c00144{word-spacing:31.233600px;}
._14_c00144{margin-left:-9.982200px;}
._15_c00144{margin-left:-4.382280px;}
._0_c00144{margin-left:-3.050280px;}
._1_c00144{margin-left:-1.087800px;}
._5_c00144{width:1.853280px;}
._6_c00144{width:3.900600px;}
._3_c00144{width:5.711400px;}
._2_c00144{width:6.814560px;}
._12_c00144{width:7.946280px;}
._13_c00144{width:8.999880px;}
._4_c00144{width:10.600080px;}
._11_c00144{width:12.845520px;}
._f_c00144{width:15.102720px;}
._e_c00144{width:19.008360px;}
._10_c00144{width:20.212200px;}
._c_c00144{width:22.469400px;}
._a_c00144{width:24.842880px;}
._7_c00144{width:26.210880px;}
._d_c00144{width:27.346320px;}
._b_c00144{width:28.550160px;}
._9_c00144{width:30.513240px;}
._8_c00144{width:31.600800px;}
.fc0_c00144{color:transparent;}
.fs6_c00144{font-size:53.280000px;}
.fs7_c00144{font-size:56.160000px;}
.fs8_c00144{font-size:57.000000px;}
.fs0_c00144{font-size:57.600000px;}
.fsa_c00144{font-size:66.000000px;}
.fs1_c00144{font-size:66.600000px;}
.fs3_c00144{font-size:67.200000px;}
.fs4_c00144{font-size:67.800000px;}
.fs2_c00144{font-size:68.400000px;}
.fs5_c00144{font-size:73.200000px;}
.fs9_c00144{font-size:76.800000px;}
.y0_c00144{bottom:0.000000px;}
.y1c_c00144{bottom:70.560015px;}
.y1b_c00144{bottom:177.840015px;}
.y1a_c00144{bottom:209.175015px;}
.y19_c00144{bottom:271.455015px;}
.y18_c00144{bottom:333.366915px;}
.y16_c00144{bottom:364.327815px;}
.y17_c00144{bottom:364.335015px;}
.y15_c00144{bottom:395.655015px;}
.y14_c00144{bottom:459.375015px;}
.y13_c00144{bottom:490.327815px;}
.y12_c00144{bottom:521.649015px;}
.y11_c00144{bottom:552.600015px;}
.y10_c00144{bottom:614.175015px;}
.y1e_c00144{bottom:615.255015px;}
.y1d_c00144{bottom:618.840015px;}
.yf_c00144{bottom:646.575015px;}
.ye_c00144{bottom:709.927815px;}
.yc_c00144{bottom:741.240615px;}
.yd_c00144{bottom:741.255015px;}
.yb_c00144{bottom:772.567815px;}
.y9_c00144{bottom:803.874615px;}
.ya_c00144{bottom:803.895015px;}
.y8_c00144{bottom:835.201815px;}
.y7_c00144{bottom:866.529015px;}
.y6_c00144{bottom:897.480015px;}
.y5_c00144{bottom:959.400015px;}
.y4_c00144{bottom:1021.338915px;}
.y3_c00144{bottom:1083.600015px;}
.y2_c00144{bottom:1115.640015px;}
.y1_c00144{bottom:1191.255015px;}
.h7_c00144{height:35.484480px;}
.h8_c00144{height:37.402560px;}
.h2_c00144{height:58.050000px;}
.ha_c00144{height:59.449219px;}
.h3_c00144{height:67.130859px;}
.h9_c00144{height:67.154859px;}
.hc_c00144{height:68.835938px;}
.h4_c00144{height:69.461719px;}
.h5_c00144{height:70.713281px;}
.h6_c00144{height:71.841797px;}
.hb_c00144{height:80.100000px;}
.h1_c00144{height:1263.000000px;}
.h0_c00144{height:1263.240015px;}
.w1_c00144{width:892.500000px;}
.w0_c00144{width:892.800000px;}
.x0_c00144{left:0.000000px;}
.x10_c00144{left:118.713600px;}
.xc_c00144{left:120.206400px;}
.x1_c00144{left:121.245000px;}
.x13_c00144{left:171.885000px;}
.xd_c00144{left:173.325000px;}
.x3_c00144{left:175.590000px;}
.x14_c00144{left:282.345000px;}
.x2_c00144{left:299.265000px;}
.x8_c00144{left:353.340000px;}
.x9_c00144{left:373.875000px;}
.x15_c00144{left:419.700000px;}
.x11_c00144{left:430.035000px;}
.x12_c00144{left:453.165000px;}
.xe_c00144{left:493.920000px;}
.x4_c00144{left:529.665000px;}
.x5_c00144{left:564.255000px;}
.x6_c00144{left:584.640000px;}
.xa_c00144{left:586.080000px;}
.xf_c00144{left:591.315000px;}
.x7_c00144{left:598.545000px;}
.xb_c00144{left:611.250000px;}
.x17_c00144{left:855.495000px;}
.x16_c00144{left:856.545000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls70_c00144{letter-spacing:-2.277333pt;}
.ls5b_c00144{letter-spacing:-2.128000pt;}
.ls68_c00144{letter-spacing:-2.109333pt;}
.ls5c_c00144{letter-spacing:-2.072000pt;}
.ls4f_c00144{letter-spacing:-1.927360pt;}
.ls56_c00144{letter-spacing:-1.909120pt;}
.ls7e_c00144{letter-spacing:-1.896960pt;}
.ls63_c00144{letter-spacing:-1.890880pt;}
.ls4e_c00144{letter-spacing:-1.866560pt;}
.ls86_c00144{letter-spacing:-1.773333pt;}
.ls71_c00144{letter-spacing:-1.617280pt;}
.ls54_c00144{letter-spacing:-1.392320pt;}
.ls59_c00144{letter-spacing:-1.282880pt;}
.ls55_c00144{letter-spacing:-1.270720pt;}
.ls7a_c00144{letter-spacing:-1.064000pt;}
.ls7d_c00144{letter-spacing:-0.845120pt;}
.ls52_c00144{letter-spacing:-0.760000pt;}
.ls51_c00144{letter-spacing:-0.741760pt;}
.ls62_c00144{letter-spacing:-0.674880pt;}
.ls5f_c00144{letter-spacing:-0.608000pt;}
.ls7f_c00144{letter-spacing:-0.589760pt;}
.ls82_c00144{letter-spacing:-0.565440pt;}
.ls73_c00144{letter-spacing:-0.547200pt;}
.ls4d_c00144{letter-spacing:-0.516800pt;}
.ls80_c00144{letter-spacing:-0.504640pt;}
.ls69_c00144{letter-spacing:-0.468160pt;}
.ls79_c00144{letter-spacing:-0.443840pt;}
.ls76_c00144{letter-spacing:-0.425600pt;}
.ls84_c00144{letter-spacing:-0.394240pt;}
.ls78_c00144{letter-spacing:-0.358720pt;}
.ls66_c00144{letter-spacing:-0.334400pt;}
.ls6b_c00144{letter-spacing:-0.328320pt;}
.ls57_c00144{letter-spacing:-0.322240pt;}
.ls64_c00144{letter-spacing:-0.291840pt;}
.ls4c_c00144{letter-spacing:-0.261440pt;}
.ls6c_c00144{letter-spacing:-0.249280pt;}
.ls7b_c00144{letter-spacing:-0.188480pt;}
.ls5e_c00144{letter-spacing:-0.176320pt;}
.ls58_c00144{letter-spacing:-0.152000pt;}
.ls61_c00144{letter-spacing:-0.139840pt;}
.ls53_c00144{letter-spacing:-0.133760pt;}
.ls77_c00144{letter-spacing:-0.127680pt;}
.ls74_c00144{letter-spacing:-0.115520pt;}
.ls4b_c00144{letter-spacing:-0.109440pt;}
.ls6e_c00144{letter-spacing:-0.079040pt;}
.ls83_c00144{letter-spacing:-0.077653pt;}
.ls72_c00144{letter-spacing:-0.072960pt;}
.ls6a_c00144{letter-spacing:-0.060800pt;}
.ls5d_c00144{letter-spacing:-0.036480pt;}
.ls60_c00144{letter-spacing:-0.024320pt;}
.ls81_c00144{letter-spacing:-0.018240pt;}
.ls6d_c00144{letter-spacing:-0.012160pt;}
.ls50_c00144{letter-spacing:0.000000pt;}
.ls3_c00144{letter-spacing:0.006080pt;}
.ls3e_c00144{letter-spacing:0.060800pt;}
.ls17_c00144{letter-spacing:0.066880pt;}
.ls44_c00144{letter-spacing:0.079040pt;}
.ls16_c00144{letter-spacing:0.091200pt;}
.ls11_c00144{letter-spacing:0.109440pt;}
.lsd_c00144{letter-spacing:0.115520pt;}
.ls32_c00144{letter-spacing:0.127680pt;}
.ls65_c00144{letter-spacing:0.139840pt;}
.ls3d_c00144{letter-spacing:0.145920pt;}
.ls6f_c00144{letter-spacing:0.152000pt;}
.ls14_c00144{letter-spacing:0.176320pt;}
.ls29_c00144{letter-spacing:0.182400pt;}
.ls10_c00144{letter-spacing:0.188480pt;}
.ls2f_c00144{letter-spacing:0.200640pt;}
.ls2e_c00144{letter-spacing:0.206720pt;}
.ls41_c00144{letter-spacing:0.212800pt;}
.ls39_c00144{letter-spacing:0.237120pt;}
.ls25_c00144{letter-spacing:0.243200pt;}
.ls33_c00144{letter-spacing:0.249280pt;}
.ls42_c00144{letter-spacing:0.255360pt;}
.ls34_c00144{letter-spacing:0.261440pt;}
.ls18_c00144{letter-spacing:0.273600pt;}
.ls37_c00144{letter-spacing:0.285760pt;}
.ls75_c00144{letter-spacing:0.291840pt;}
.ls24_c00144{letter-spacing:0.297920pt;}
.ls35_c00144{letter-spacing:0.310080pt;}
.ls5_c00144{letter-spacing:0.322240pt;}
.ls1c_c00144{letter-spacing:0.328320pt;}
.ls13_c00144{letter-spacing:0.340480pt;}
.ls4_c00144{letter-spacing:0.346560pt;}
.ls27_c00144{letter-spacing:0.352640pt;}
.ls1e_c00144{letter-spacing:0.358720pt;}
.ls23_c00144{letter-spacing:0.364800pt;}
.ls3a_c00144{letter-spacing:0.395200pt;}
.ls30_c00144{letter-spacing:0.436053pt;}
.ls36_c00144{letter-spacing:0.437760pt;}
.ls12_c00144{letter-spacing:0.443840pt;}
.lsc_c00144{letter-spacing:0.449920pt;}
.ls21_c00144{letter-spacing:0.456000pt;}
.ls67_c00144{letter-spacing:0.462080pt;}
.ls22_c00144{letter-spacing:0.516800pt;}
.ls9_c00144{letter-spacing:0.522880pt;}
.ls1a_c00144{letter-spacing:0.553280pt;}
.ls7c_c00144{letter-spacing:0.565440pt;}
.ls3f_c00144{letter-spacing:0.571520pt;}
.lse_c00144{letter-spacing:0.577600pt;}
.ls15_c00144{letter-spacing:0.583680pt;}
.ls1b_c00144{letter-spacing:0.620160pt;}
.ls43_c00144{letter-spacing:0.638400pt;}
.lsf_c00144{letter-spacing:0.644480pt;}
.ls2d_c00144{letter-spacing:0.650560pt;}
.ls45_c00144{letter-spacing:0.651093pt;}
.ls47_c00144{letter-spacing:0.656640pt;}
.ls19_c00144{letter-spacing:0.668800pt;}
.ls3b_c00144{letter-spacing:0.674880pt;}
.ls2b_c00144{letter-spacing:0.699200pt;}
.lsa_c00144{letter-spacing:0.705280pt;}
.ls26_c00144{letter-spacing:0.741760pt;}
.ls1f_c00144{letter-spacing:0.753920pt;}
.ls40_c00144{letter-spacing:0.760000pt;}
.ls46_c00144{letter-spacing:0.772160pt;}
.ls3c_c00144{letter-spacing:0.776533pt;}
.ls6_c00144{letter-spacing:0.800427pt;}
.ls8_c00144{letter-spacing:0.824320pt;}
.ls1d_c00144{letter-spacing:0.826880pt;}
.ls2a_c00144{letter-spacing:0.899840pt;}
.lsb_c00144{letter-spacing:1.009280pt;}
.ls7_c00144{letter-spacing:1.033387pt;}
.ls2c_c00144{letter-spacing:1.039360pt;}
.ls1_c00144{letter-spacing:1.255040pt;}
.ls0_c00144{letter-spacing:1.284640pt;}
.ls38_c00144{letter-spacing:1.313280pt;}
.ls49_c00144{letter-spacing:1.320160pt;}
.ls28_c00144{letter-spacing:1.465280pt;}
.ls31_c00144{letter-spacing:1.538240pt;}
.ls20_c00144{letter-spacing:1.544320pt;}
.ls2_c00144{letter-spacing:1.574720pt;}
.ls4a_c00144{letter-spacing:1.582080pt;}
.ls48_c00144{letter-spacing:2.598400pt;}
.ls85_c00144{letter-spacing:2.979200pt;}
.ls5a_c00144{letter-spacing:3.040000pt;}
.ws1_c00144{word-spacing:-0.037973pt;}
.ws5_c00144{word-spacing:0.000000pt;}
.ws4_c00144{word-spacing:0.264107pt;}
.ws3_c00144{word-spacing:15.515733pt;}
.ws0_c00144{word-spacing:27.205120pt;}
.ws2_c00144{word-spacing:27.763200pt;}
._14_c00144{margin-left:-8.873067pt;}
._15_c00144{margin-left:-3.895360pt;}
._0_c00144{margin-left:-2.711360pt;}
._1_c00144{margin-left:-0.966933pt;}
._5_c00144{width:1.647360pt;}
._6_c00144{width:3.467200pt;}
._3_c00144{width:5.076800pt;}
._2_c00144{width:6.057387pt;}
._12_c00144{width:7.063360pt;}
._13_c00144{width:7.999893pt;}
._4_c00144{width:9.422293pt;}
._11_c00144{width:11.418240pt;}
._f_c00144{width:13.424640pt;}
._e_c00144{width:16.896320pt;}
._10_c00144{width:17.966400pt;}
._c_c00144{width:19.972800pt;}
._a_c00144{width:22.082560pt;}
._7_c00144{width:23.298560pt;}
._d_c00144{width:24.307840pt;}
._b_c00144{width:25.377920pt;}
._9_c00144{width:27.122880pt;}
._8_c00144{width:28.089600pt;}
.fs6_c00144{font-size:47.360000pt;}
.fs7_c00144{font-size:49.920000pt;}
.fs8_c00144{font-size:50.666667pt;}
.fs0_c00144{font-size:51.200000pt;}
.fsa_c00144{font-size:58.666667pt;}
.fs1_c00144{font-size:59.200000pt;}
.fs3_c00144{font-size:59.733333pt;}
.fs4_c00144{font-size:60.266667pt;}
.fs2_c00144{font-size:60.800000pt;}
.fs5_c00144{font-size:65.066667pt;}
.fs9_c00144{font-size:68.266667pt;}
.y0_c00144{bottom:0.000000pt;}
.y1c_c00144{bottom:62.720013pt;}
.y1b_c00144{bottom:158.080013pt;}
.y1a_c00144{bottom:185.933347pt;}
.y19_c00144{bottom:241.293347pt;}
.y18_c00144{bottom:296.326147pt;}
.y16_c00144{bottom:323.846947pt;}
.y17_c00144{bottom:323.853347pt;}
.y15_c00144{bottom:351.693347pt;}
.y14_c00144{bottom:408.333347pt;}
.y13_c00144{bottom:435.846947pt;}
.y12_c00144{bottom:463.688013pt;}
.y11_c00144{bottom:491.200013pt;}
.y10_c00144{bottom:545.933347pt;}
.y1e_c00144{bottom:546.893347pt;}
.y1d_c00144{bottom:550.080013pt;}
.yf_c00144{bottom:574.733347pt;}
.ye_c00144{bottom:631.046947pt;}
.yc_c00144{bottom:658.880547pt;}
.yd_c00144{bottom:658.893347pt;}
.yb_c00144{bottom:686.726947pt;}
.y9_c00144{bottom:714.555213pt;}
.ya_c00144{bottom:714.573347pt;}
.y8_c00144{bottom:742.401613pt;}
.y7_c00144{bottom:770.248013pt;}
.y6_c00144{bottom:797.760013pt;}
.y5_c00144{bottom:852.800013pt;}
.y4_c00144{bottom:907.856813pt;}
.y3_c00144{bottom:963.200013pt;}
.y2_c00144{bottom:991.680013pt;}
.y1_c00144{bottom:1058.893347pt;}
.h7_c00144{height:31.541760pt;}
.h8_c00144{height:33.246720pt;}
.h2_c00144{height:51.600000pt;}
.ha_c00144{height:52.843750pt;}
.h3_c00144{height:59.671875pt;}
.h9_c00144{height:59.693208pt;}
.hc_c00144{height:61.187500pt;}
.h4_c00144{height:61.743750pt;}
.h5_c00144{height:62.856250pt;}
.h6_c00144{height:63.859375pt;}
.hb_c00144{height:71.200000pt;}
.h1_c00144{height:1122.666667pt;}
.h0_c00144{height:1122.880013pt;}
.w1_c00144{width:793.333333pt;}
.w0_c00144{width:793.600000pt;}
.x0_c00144{left:0.000000pt;}
.x10_c00144{left:105.523200pt;}
.xc_c00144{left:106.850133pt;}
.x1_c00144{left:107.773333pt;}
.x13_c00144{left:152.786667pt;}
.xd_c00144{left:154.066667pt;}
.x3_c00144{left:156.080000pt;}
.x14_c00144{left:250.973333pt;}
.x2_c00144{left:266.013333pt;}
.x8_c00144{left:314.080000pt;}
.x9_c00144{left:332.333333pt;}
.x15_c00144{left:373.066667pt;}
.x11_c00144{left:382.253333pt;}
.x12_c00144{left:402.813333pt;}
.xe_c00144{left:439.040000pt;}
.x4_c00144{left:470.813333pt;}
.x5_c00144{left:501.560000pt;}
.x6_c00144{left:519.680000pt;}
.xa_c00144{left:520.960000pt;}
.xf_c00144{left:525.613333pt;}
.x7_c00144{left:532.040000pt;}
.xb_c00144{left:543.333333pt;}
.x17_c00144{left:760.440000pt;}
.x16_c00144{left:761.373333pt;}
}





/* 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_c00145 {
    display:none;
  }
  .loading-indicator_c00145.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00145 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_c00145 { 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_c00145" -> "#page-container .classname_c00145")
 */
.pf_c00145 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00145 { /* 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_c00145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00145 { /* 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_c00145 { /* 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_c00145 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00145 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00145 {overflow:visible;}
  }
}
.c_c00145 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00145 { /* 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_c00145:after { /* webkit #35443 */
  content: '';
}
.t_c00145:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00145 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 */
}
.__c00145 { /* 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_c00145 { /* info for Javascript */
  display:none;
}
.l_c00145 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00145 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00145 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00145: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_c00145 {
    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_c00145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00145.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_c00145 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00145;src:url('chunks/assets/font_8d41395b877b8585fc3ee962.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.311035;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_c00145;src:url('chunks/assets/font_61f00817182281203d2976d1.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.284668;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_c00145;src:url('chunks/assets/font_3f32c3ff2f18efcb8d0cba22.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:1.284180;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_c00145;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;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;}
.m6_c00145{transform:matrix(0.206362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206362,0.000000,0.000000,0.250000,0,0);}
.m4_c00145{transform:matrix(0.229396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229396,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);}
.m7_c00145{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m5_c00145{transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);}
.m2_c00145{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m3_c00145{transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{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);}
.v0_c00145{vertical-align:0.000000px;}
.ls4a_c00145{letter-spacing:-2.583000px;}
.ls45_c00145{letter-spacing:-2.436000px;}
.ls77_c00145{letter-spacing:-2.373000px;}
.ls63_c00145{letter-spacing:-2.352000px;}
.ls40_c00145{letter-spacing:-2.331000px;}
.ls49_c00145{letter-spacing:-2.234160px;}
.ls8a_c00145{letter-spacing:-2.066640px;}
.ls84_c00145{letter-spacing:-2.025360px;}
.ls70_c00145{letter-spacing:-1.886160px;}
.ls43_c00145{letter-spacing:-1.774800px;}
.ls73_c00145{letter-spacing:-1.649520px;}
.ls4f_c00145{letter-spacing:-1.600800px;}
.ls5f_c00145{letter-spacing:-1.454640px;}
.ls7e_c00145{letter-spacing:-1.426800px;}
.ls44_c00145{letter-spacing:-1.412880px;}
.ls76_c00145{letter-spacing:-1.350240px;}
.ls48_c00145{letter-spacing:-1.294560px;}
.ls59_c00145{letter-spacing:-1.218000px;}
.ls65_c00145{letter-spacing:-1.169280px;}
.ls88_c00145{letter-spacing:-1.064880px;}
.ls8d_c00145{letter-spacing:-1.044000px;}
.ls79_c00145{letter-spacing:-0.974400px;}
.ls8c_c00145{letter-spacing:-0.904800px;}
.ls71_c00145{letter-spacing:-0.835200px;}
.ls4e_c00145{letter-spacing:-0.800400px;}
.ls74_c00145{letter-spacing:-0.765600px;}
.ls83_c00145{letter-spacing:-0.758640px;}
.ls6d_c00145{letter-spacing:-0.682080px;}
.ls4d_c00145{letter-spacing:-0.668160px;}
.ls72_c00145{letter-spacing:-0.570720px;}
.ls60_c00145{letter-spacing:-0.563760px;}
.ls85_c00145{letter-spacing:-0.556800px;}
.ls42_c00145{letter-spacing:-0.549840px;}
.ls92_c00145{letter-spacing:-0.529620px;}
.ls7d_c00145{letter-spacing:-0.508080px;}
.ls4c_c00145{letter-spacing:-0.494160px;}
.ls86_c00145{letter-spacing:-0.487200px;}
.ls61_c00145{letter-spacing:-0.473280px;}
.ls89_c00145{letter-spacing:-0.470880px;}
.ls5c_c00145{letter-spacing:-0.459360px;}
.ls90_c00145{letter-spacing:-0.452400px;}
.ls5b_c00145{letter-spacing:-0.438480px;}
.ls8b_c00145{letter-spacing:-0.396720px;}
.ls57_c00145{letter-spacing:-0.389760px;}
.ls6c_c00145{letter-spacing:-0.375840px;}
.ls50_c00145{letter-spacing:-0.361920px;}
.ls78_c00145{letter-spacing:-0.354960px;}
.ls52_c00145{letter-spacing:-0.348000px;}
.ls8e_c00145{letter-spacing:-0.341040px;}
.ls75_c00145{letter-spacing:-0.334080px;}
.ls7c_c00145{letter-spacing:-0.320160px;}
.ls53_c00145{letter-spacing:-0.306240px;}
.ls7f_c00145{letter-spacing:-0.299280px;}
.ls51_c00145{letter-spacing:-0.285360px;}
.ls47_c00145{letter-spacing:-0.271440px;}
.ls66_c00145{letter-spacing:-0.264480px;}
.ls55_c00145{letter-spacing:-0.250560px;}
.ls87_c00145{letter-spacing:-0.229680px;}
.ls5d_c00145{letter-spacing:-0.222720px;}
.ls4b_c00145{letter-spacing:-0.208800px;}
.ls41_c00145{letter-spacing:-0.187920px;}
.ls82_c00145{letter-spacing:-0.180960px;}
.ls5e_c00145{letter-spacing:-0.174000px;}
.ls68_c00145{letter-spacing:-0.153120px;}
.ls58_c00145{letter-spacing:-0.146160px;}
.ls8f_c00145{letter-spacing:-0.139200px;}
.ls67_c00145{letter-spacing:-0.132240px;}
.ls6b_c00145{letter-spacing:-0.090480px;}
.ls69_c00145{letter-spacing:-0.083520px;}
.ls56_c00145{letter-spacing:-0.076560px;}
.ls6f_c00145{letter-spacing:-0.069600px;}
.ls6e_c00145{letter-spacing:-0.048720px;}
.ls6a_c00145{letter-spacing:-0.034800px;}
.ls64_c00145{letter-spacing:-0.027840px;}
.ls7b_c00145{letter-spacing:-0.013920px;}
.ls81_c00145{letter-spacing:-0.006960px;}
.ls46_c00145{letter-spacing:0.000000px;}
.ls7_c00145{letter-spacing:0.006960px;}
.ls1_c00145{letter-spacing:0.013920px;}
.ls2c_c00145{letter-spacing:0.020880px;}
.ls14_c00145{letter-spacing:0.034800px;}
.lsd_c00145{letter-spacing:0.048720px;}
.ls1b_c00145{letter-spacing:0.076560px;}
.ls3f_c00145{letter-spacing:0.083520px;}
.lsa_c00145{letter-spacing:0.090480px;}
.ls20_c00145{letter-spacing:0.097440px;}
.ls1e_c00145{letter-spacing:0.132240px;}
.ls17_c00145{letter-spacing:0.139200px;}
.ls1c_c00145{letter-spacing:0.160080px;}
.ls30_c00145{letter-spacing:0.167040px;}
.ls3c_c00145{letter-spacing:0.174000px;}
.ls2_c00145{letter-spacing:0.194880px;}
.ls80_c00145{letter-spacing:0.201840px;}
.ls24_c00145{letter-spacing:0.222720px;}
.ls54_c00145{letter-spacing:0.229680px;}
.ls9_c00145{letter-spacing:0.236640px;}
.ls8_c00145{letter-spacing:0.243600px;}
.ls13_c00145{letter-spacing:0.257520px;}
.ls5a_c00145{letter-spacing:0.264480px;}
.lsc_c00145{letter-spacing:0.285360px;}
.ls25_c00145{letter-spacing:0.299280px;}
.ls16_c00145{letter-spacing:0.306240px;}
.ls21_c00145{letter-spacing:0.313200px;}
.ls7a_c00145{letter-spacing:0.320160px;}
.ls10_c00145{letter-spacing:0.327120px;}
.ls33_c00145{letter-spacing:0.354960px;}
.ls3e_c00145{letter-spacing:0.361920px;}
.ls3_c00145{letter-spacing:0.375840px;}
.lsb_c00145{letter-spacing:0.382800px;}
.ls62_c00145{letter-spacing:0.417600px;}
.ls23_c00145{letter-spacing:0.466320px;}
.ls29_c00145{letter-spacing:0.473280px;}
.ls1f_c00145{letter-spacing:0.480240px;}
.lsf_c00145{letter-spacing:0.494160px;}
.ls1d_c00145{letter-spacing:0.542880px;}
.ls2e_c00145{letter-spacing:0.556800px;}
.ls0_c00145{letter-spacing:0.591600px;}
.ls35_c00145{letter-spacing:0.640320px;}
.ls31_c00145{letter-spacing:0.670320px;}
.lse_c00145{letter-spacing:0.723840px;}
.ls12_c00145{letter-spacing:0.883920px;}
.ls3d_c00145{letter-spacing:0.890880px;}
.ls91_c00145{letter-spacing:1.002240px;}
.ls2f_c00145{letter-spacing:1.127520px;}
.ls32_c00145{letter-spacing:1.183200px;}
.ls11_c00145{letter-spacing:1.211040px;}
.ls2b_c00145{letter-spacing:1.398960px;}
.ls27_c00145{letter-spacing:1.445400px;}
.ls3a_c00145{letter-spacing:1.589220px;}
.ls28_c00145{letter-spacing:1.623600px;}
.ls19_c00145{letter-spacing:1.705200px;}
.ls34_c00145{letter-spacing:1.709400px;}
.ls4_c00145{letter-spacing:1.716000px;}
.ls22_c00145{letter-spacing:1.729200px;}
.ls18_c00145{letter-spacing:1.762200px;}
.ls6_c00145{letter-spacing:1.834800px;}
.ls1a_c00145{letter-spacing:1.983600px;}
.ls5_c00145{letter-spacing:2.072400px;}
.ls2d_c00145{letter-spacing:2.164560px;}
.ls26_c00145{letter-spacing:2.185440px;}
.ls15_c00145{letter-spacing:2.224200px;}
.ls37_c00145{letter-spacing:2.275920px;}
.ls38_c00145{letter-spacing:2.432880px;}
.ls2a_c00145{letter-spacing:2.442960px;}
.ls3b_c00145{letter-spacing:2.472120px;}
.ls36_c00145{letter-spacing:2.982240px;}
.ls39_c00145{letter-spacing:3.237300px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{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__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00145{word-spacing:-3.232800px;}
.ws5_c00145{word-spacing:-1.333200px;}
.ws6_c00145{word-spacing:0.000000px;}
.ws4_c00145{word-spacing:3.188400px;}
.ws0_c00145{word-spacing:4.786800px;}
.ws3_c00145{word-spacing:21.828000px;}
.ws2_c00145{word-spacing:30.384000px;}
._18_c00145{margin-left:-7.533480px;}
._17_c00145{margin-left:-5.804640px;}
._e_c00145{margin-left:-4.176000px;}
._0_c00145{margin-left:-2.262000px;}
._16_c00145{margin-left:-1.211040px;}
._f_c00145{width:1.851360px;}
._1_c00145{width:3.695760px;}
._2_c00145{width:4.704960px;}
._4_c00145{width:5.929920px;}
._6_c00145{width:7.871760px;}
._5_c00145{width:9.681360px;}
._7_c00145{width:10.781040px;}
._3_c00145{width:11.866800px;}
._8_c00145{width:13.669440px;}
._15_c00145{width:14.755200px;}
._9_c00145{width:15.868800px;}
._14_c00145{width:19.251360px;}
._b_c00145{width:20.511120px;}
._a_c00145{width:21.826560px;}
._c_c00145{width:23.503920px;}
._10_c00145{width:26.293200px;}
._d_c00145{width:28.612560px;}
._11_c00145{width:30.067200px;}
._13_c00145{width:31.389600px;}
._12_c00145{width:32.405760px;}
.fc0_c00145{color:transparent;}
.fs8_c00145{font-size:58.200000px;}
.fs7_c00145{font-size:65.400000px;}
.fs3_c00145{font-size:66.000000px;}
.fs0_c00145{font-size:66.600000px;}
.fs4_c00145{font-size:67.200000px;}
.fs5_c00145{font-size:67.800000px;}
.fs6_c00145{font-size:68.400000px;}
.fs1_c00145{font-size:69.600000px;}
.fs2_c00145{font-size:73.800000px;}
.y0_c00145{bottom:0.000000px;}
.y19_c00145{bottom:65.160006px;}
.y18_c00145{bottom:140.765406px;}
.y17_c00145{bottom:171.720006px;}
.y16_c00145{bottom:203.055006px;}
.y15_c00145{bottom:264.615006px;}
.y14_c00145{bottom:327.975006px;}
.y13_c00145{bottom:390.618606px;}
.y12_c00145{bottom:453.972006px;}
.y11_c00145{bottom:485.640006px;}
.y10_c00145{bottom:547.929606px;}
.yf_c00145{bottom:579.615006px;}
.yd_c00145{bottom:641.872206px;}
.ye_c00145{bottom:641.880006px;}
.yc_c00145{bottom:673.557606px;}
.yb_c00145{bottom:704.877606px;}
.ya_c00145{bottom:736.215006px;}
.y9_c00145{bottom:798.840006px;}
.y8_c00145{bottom:862.225806px;}
.y7_c00145{bottom:893.528406px;}
.y6_c00145{bottom:924.483006px;}
.y5_c00145{bottom:955.455006px;}
.y4_c00145{bottom:1017.735006px;}
.y3_c00145{bottom:1080.735006px;}
.y2_c00145{bottom:1112.415006px;}
.y1_c00145{bottom:1188.735006px;}
.ha_c00145{height:57.120117px;}
.h9_c00145{height:64.743164px;}
.h5_c00145{height:65.953125px;}
.h2_c00145{height:67.120312px;}
.h3_c00145{height:68.308594px;}
.h6_c00145{height:68.339794px;}
.h8_c00145{height:68.919975px;}
.h7_c00145{height:70.713281px;}
.h4_c00145{height:72.430664px;}
.h1_c00145{height:1263.000000px;}
.h0_c00145{height:1263.240006px;}
.w1_c00145{width:892.500000px;}
.w0_c00145{width:892.799998px;}
.x0_c00145{left:0.000000px;}
.x12_c00145{left:114.887999px;}
.xf_c00145{left:116.054999px;}
.xa_c00145{left:117.679799px;}
.x1_c00145{left:120.164999px;}
.x13_c00145{left:168.629998px;}
.x11_c00145{left:169.724998px;}
.xb_c00145{left:170.789998px;}
.x9_c00145{left:172.229998px;}
.x2_c00145{left:173.804998px;}
.x10_c00145{left:292.079998px;}
.xc_c00145{left:391.229999px;}
.x3_c00145{left:400.124998px;}
.x14_c00145{left:419.969998px;}
.xd_c00145{left:422.834999px;}
.x4_c00145{left:427.604998px;}
.x5_c00145{left:445.964998px;}
.x6_c00145{left:581.519998px;}
.x7_c00145{left:606.404998px;}
.x8_c00145{left:634.139998px;}
.xe_c00145{left:694.709998px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls4a_c00145{letter-spacing:-2.296000pt;}
.ls45_c00145{letter-spacing:-2.165333pt;}
.ls77_c00145{letter-spacing:-2.109333pt;}
.ls63_c00145{letter-spacing:-2.090667pt;}
.ls40_c00145{letter-spacing:-2.072000pt;}
.ls49_c00145{letter-spacing:-1.985920pt;}
.ls8a_c00145{letter-spacing:-1.837013pt;}
.ls84_c00145{letter-spacing:-1.800320pt;}
.ls70_c00145{letter-spacing:-1.676587pt;}
.ls43_c00145{letter-spacing:-1.577600pt;}
.ls73_c00145{letter-spacing:-1.466240pt;}
.ls4f_c00145{letter-spacing:-1.422933pt;}
.ls5f_c00145{letter-spacing:-1.293013pt;}
.ls7e_c00145{letter-spacing:-1.268267pt;}
.ls44_c00145{letter-spacing:-1.255893pt;}
.ls76_c00145{letter-spacing:-1.200213pt;}
.ls48_c00145{letter-spacing:-1.150720pt;}
.ls59_c00145{letter-spacing:-1.082667pt;}
.ls65_c00145{letter-spacing:-1.039360pt;}
.ls88_c00145{letter-spacing:-0.946560pt;}
.ls8d_c00145{letter-spacing:-0.928000pt;}
.ls79_c00145{letter-spacing:-0.866133pt;}
.ls8c_c00145{letter-spacing:-0.804267pt;}
.ls71_c00145{letter-spacing:-0.742400pt;}
.ls4e_c00145{letter-spacing:-0.711467pt;}
.ls74_c00145{letter-spacing:-0.680533pt;}
.ls83_c00145{letter-spacing:-0.674347pt;}
.ls6d_c00145{letter-spacing:-0.606293pt;}
.ls4d_c00145{letter-spacing:-0.593920pt;}
.ls72_c00145{letter-spacing:-0.507307pt;}
.ls60_c00145{letter-spacing:-0.501120pt;}
.ls85_c00145{letter-spacing:-0.494933pt;}
.ls42_c00145{letter-spacing:-0.488747pt;}
.ls92_c00145{letter-spacing:-0.470773pt;}
.ls7d_c00145{letter-spacing:-0.451627pt;}
.ls4c_c00145{letter-spacing:-0.439253pt;}
.ls86_c00145{letter-spacing:-0.433067pt;}
.ls61_c00145{letter-spacing:-0.420693pt;}
.ls89_c00145{letter-spacing:-0.418560pt;}
.ls5c_c00145{letter-spacing:-0.408320pt;}
.ls90_c00145{letter-spacing:-0.402133pt;}
.ls5b_c00145{letter-spacing:-0.389760pt;}
.ls8b_c00145{letter-spacing:-0.352640pt;}
.ls57_c00145{letter-spacing:-0.346453pt;}
.ls6c_c00145{letter-spacing:-0.334080pt;}
.ls50_c00145{letter-spacing:-0.321707pt;}
.ls78_c00145{letter-spacing:-0.315520pt;}
.ls52_c00145{letter-spacing:-0.309333pt;}
.ls8e_c00145{letter-spacing:-0.303147pt;}
.ls75_c00145{letter-spacing:-0.296960pt;}
.ls7c_c00145{letter-spacing:-0.284587pt;}
.ls53_c00145{letter-spacing:-0.272213pt;}
.ls7f_c00145{letter-spacing:-0.266027pt;}
.ls51_c00145{letter-spacing:-0.253653pt;}
.ls47_c00145{letter-spacing:-0.241280pt;}
.ls66_c00145{letter-spacing:-0.235093pt;}
.ls55_c00145{letter-spacing:-0.222720pt;}
.ls87_c00145{letter-spacing:-0.204160pt;}
.ls5d_c00145{letter-spacing:-0.197973pt;}
.ls4b_c00145{letter-spacing:-0.185600pt;}
.ls41_c00145{letter-spacing:-0.167040pt;}
.ls82_c00145{letter-spacing:-0.160853pt;}
.ls5e_c00145{letter-spacing:-0.154667pt;}
.ls68_c00145{letter-spacing:-0.136107pt;}
.ls58_c00145{letter-spacing:-0.129920pt;}
.ls8f_c00145{letter-spacing:-0.123733pt;}
.ls67_c00145{letter-spacing:-0.117547pt;}
.ls6b_c00145{letter-spacing:-0.080427pt;}
.ls69_c00145{letter-spacing:-0.074240pt;}
.ls56_c00145{letter-spacing:-0.068053pt;}
.ls6f_c00145{letter-spacing:-0.061867pt;}
.ls6e_c00145{letter-spacing:-0.043307pt;}
.ls6a_c00145{letter-spacing:-0.030933pt;}
.ls64_c00145{letter-spacing:-0.024747pt;}
.ls7b_c00145{letter-spacing:-0.012373pt;}
.ls81_c00145{letter-spacing:-0.006187pt;}
.ls46_c00145{letter-spacing:0.000000pt;}
.ls7_c00145{letter-spacing:0.006187pt;}
.ls1_c00145{letter-spacing:0.012373pt;}
.ls2c_c00145{letter-spacing:0.018560pt;}
.ls14_c00145{letter-spacing:0.030933pt;}
.lsd_c00145{letter-spacing:0.043307pt;}
.ls1b_c00145{letter-spacing:0.068053pt;}
.ls3f_c00145{letter-spacing:0.074240pt;}
.lsa_c00145{letter-spacing:0.080427pt;}
.ls20_c00145{letter-spacing:0.086613pt;}
.ls1e_c00145{letter-spacing:0.117547pt;}
.ls17_c00145{letter-spacing:0.123733pt;}
.ls1c_c00145{letter-spacing:0.142293pt;}
.ls30_c00145{letter-spacing:0.148480pt;}
.ls3c_c00145{letter-spacing:0.154667pt;}
.ls2_c00145{letter-spacing:0.173227pt;}
.ls80_c00145{letter-spacing:0.179413pt;}
.ls24_c00145{letter-spacing:0.197973pt;}
.ls54_c00145{letter-spacing:0.204160pt;}
.ls9_c00145{letter-spacing:0.210347pt;}
.ls8_c00145{letter-spacing:0.216533pt;}
.ls13_c00145{letter-spacing:0.228907pt;}
.ls5a_c00145{letter-spacing:0.235093pt;}
.lsc_c00145{letter-spacing:0.253653pt;}
.ls25_c00145{letter-spacing:0.266027pt;}
.ls16_c00145{letter-spacing:0.272213pt;}
.ls21_c00145{letter-spacing:0.278400pt;}
.ls7a_c00145{letter-spacing:0.284587pt;}
.ls10_c00145{letter-spacing:0.290773pt;}
.ls33_c00145{letter-spacing:0.315520pt;}
.ls3e_c00145{letter-spacing:0.321707pt;}
.ls3_c00145{letter-spacing:0.334080pt;}
.lsb_c00145{letter-spacing:0.340267pt;}
.ls62_c00145{letter-spacing:0.371200pt;}
.ls23_c00145{letter-spacing:0.414507pt;}
.ls29_c00145{letter-spacing:0.420693pt;}
.ls1f_c00145{letter-spacing:0.426880pt;}
.lsf_c00145{letter-spacing:0.439253pt;}
.ls1d_c00145{letter-spacing:0.482560pt;}
.ls2e_c00145{letter-spacing:0.494933pt;}
.ls0_c00145{letter-spacing:0.525867pt;}
.ls35_c00145{letter-spacing:0.569173pt;}
.ls31_c00145{letter-spacing:0.595840pt;}
.lse_c00145{letter-spacing:0.643413pt;}
.ls12_c00145{letter-spacing:0.785707pt;}
.ls3d_c00145{letter-spacing:0.791893pt;}
.ls91_c00145{letter-spacing:0.890880pt;}
.ls2f_c00145{letter-spacing:1.002240pt;}
.ls32_c00145{letter-spacing:1.051733pt;}
.ls11_c00145{letter-spacing:1.076480pt;}
.ls2b_c00145{letter-spacing:1.243520pt;}
.ls27_c00145{letter-spacing:1.284800pt;}
.ls3a_c00145{letter-spacing:1.412640pt;}
.ls28_c00145{letter-spacing:1.443200pt;}
.ls19_c00145{letter-spacing:1.515733pt;}
.ls34_c00145{letter-spacing:1.519467pt;}
.ls4_c00145{letter-spacing:1.525333pt;}
.ls22_c00145{letter-spacing:1.537067pt;}
.ls18_c00145{letter-spacing:1.566400pt;}
.ls6_c00145{letter-spacing:1.630933pt;}
.ls1a_c00145{letter-spacing:1.763200pt;}
.ls5_c00145{letter-spacing:1.842133pt;}
.ls2d_c00145{letter-spacing:1.924053pt;}
.ls26_c00145{letter-spacing:1.942613pt;}
.ls15_c00145{letter-spacing:1.977067pt;}
.ls37_c00145{letter-spacing:2.023040pt;}
.ls38_c00145{letter-spacing:2.162560pt;}
.ls2a_c00145{letter-spacing:2.171520pt;}
.ls3b_c00145{letter-spacing:2.197440pt;}
.ls36_c00145{letter-spacing:2.650880pt;}
.ls39_c00145{letter-spacing:2.877600pt;}
.ws1_c00145{word-spacing:-2.873600pt;}
.ws5_c00145{word-spacing:-1.185067pt;}
.ws6_c00145{word-spacing:0.000000pt;}
.ws4_c00145{word-spacing:2.834133pt;}
.ws0_c00145{word-spacing:4.254933pt;}
.ws3_c00145{word-spacing:19.402667pt;}
.ws2_c00145{word-spacing:27.008000pt;}
._18_c00145{margin-left:-6.696427pt;}
._17_c00145{margin-left:-5.159680pt;}
._e_c00145{margin-left:-3.712000pt;}
._0_c00145{margin-left:-2.010667pt;}
._16_c00145{margin-left:-1.076480pt;}
._f_c00145{width:1.645653pt;}
._1_c00145{width:3.285120pt;}
._2_c00145{width:4.182187pt;}
._4_c00145{width:5.271040pt;}
._6_c00145{width:6.997120pt;}
._5_c00145{width:8.605653pt;}
._7_c00145{width:9.583147pt;}
._3_c00145{width:10.548267pt;}
._8_c00145{width:12.150613pt;}
._15_c00145{width:13.115733pt;}
._9_c00145{width:14.105600pt;}
._14_c00145{width:17.112320pt;}
._b_c00145{width:18.232107pt;}
._a_c00145{width:19.401387pt;}
._c_c00145{width:20.892373pt;}
._10_c00145{width:23.371733pt;}
._d_c00145{width:25.433387pt;}
._11_c00145{width:26.726400pt;}
._13_c00145{width:27.901867pt;}
._12_c00145{width:28.805120pt;}
.fs8_c00145{font-size:51.733333pt;}
.fs7_c00145{font-size:58.133333pt;}
.fs3_c00145{font-size:58.666667pt;}
.fs0_c00145{font-size:59.200000pt;}
.fs4_c00145{font-size:59.733333pt;}
.fs5_c00145{font-size:60.266667pt;}
.fs6_c00145{font-size:60.800000pt;}
.fs1_c00145{font-size:61.866667pt;}
.fs2_c00145{font-size:65.600000pt;}
.y0_c00145{bottom:0.000000pt;}
.y19_c00145{bottom:57.920005pt;}
.y18_c00145{bottom:125.124805pt;}
.y17_c00145{bottom:152.640005pt;}
.y16_c00145{bottom:180.493339pt;}
.y15_c00145{bottom:235.213339pt;}
.y14_c00145{bottom:291.533339pt;}
.y13_c00145{bottom:347.216539pt;}
.y12_c00145{bottom:403.530672pt;}
.y11_c00145{bottom:431.680005pt;}
.y10_c00145{bottom:487.048539pt;}
.yf_c00145{bottom:515.213339pt;}
.yd_c00145{bottom:570.553072pt;}
.ye_c00145{bottom:570.560005pt;}
.yc_c00145{bottom:598.717872pt;}
.yb_c00145{bottom:626.557872pt;}
.ya_c00145{bottom:654.413339pt;}
.y9_c00145{bottom:710.080005pt;}
.y8_c00145{bottom:766.422939pt;}
.y7_c00145{bottom:794.247472pt;}
.y6_c00145{bottom:821.762672pt;}
.y5_c00145{bottom:849.293339pt;}
.y4_c00145{bottom:904.653339pt;}
.y3_c00145{bottom:960.653339pt;}
.y2_c00145{bottom:988.813339pt;}
.y1_c00145{bottom:1056.653339pt;}
.ha_c00145{height:50.773437pt;}
.h9_c00145{height:57.549479pt;}
.h5_c00145{height:58.625000pt;}
.h2_c00145{height:59.662500pt;}
.h3_c00145{height:60.718750pt;}
.h6_c00145{height:60.746483pt;}
.h8_c00145{height:61.262200pt;}
.h7_c00145{height:62.856250pt;}
.h4_c00145{height:64.382813pt;}
.h1_c00145{height:1122.666667pt;}
.h0_c00145{height:1122.880005pt;}
.w1_c00145{width:793.333333pt;}
.w0_c00145{width:793.599999pt;}
.x0_c00145{left:0.000000pt;}
.x12_c00145{left:102.122665pt;}
.xf_c00145{left:103.159999pt;}
.xa_c00145{left:104.604265pt;}
.x1_c00145{left:106.813332pt;}
.x13_c00145{left:149.893332pt;}
.x11_c00145{left:150.866665pt;}
.xb_c00145{left:151.813332pt;}
.x9_c00145{left:153.093332pt;}
.x2_c00145{left:154.493332pt;}
.x10_c00145{left:259.626665pt;}
.xc_c00145{left:347.759999pt;}
.x3_c00145{left:355.666665pt;}
.x14_c00145{left:373.306665pt;}
.xd_c00145{left:375.853332pt;}
.x4_c00145{left:380.093332pt;}
.x5_c00145{left:396.413332pt;}
.x6_c00145{left:516.906665pt;}
.x7_c00145{left:539.026665pt;}
.x8_c00145{left:563.679999pt;}
.xe_c00145{left:617.519999pt;}
}





/* 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_c00146 {
    display:none;
  }
  .loading-indicator_c00146.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00146 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_c00146 { 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_c00146" -> "#page-container .classname_c00146")
 */
.pf_c00146 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00146 { /* 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_c00146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00146 { /* 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_c00146 { /* 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_c00146 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00146 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00146 {overflow:visible;}
  }
}
.c_c00146 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00146 { /* 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_c00146:after { /* webkit #35443 */
  content: '';
}
.t_c00146:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00146 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 */
}
.__c00146 { /* 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_c00146 { /* info for Javascript */
  display:none;
}
.l_c00146 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00146 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00146 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00146: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_c00146 {
    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_c00146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00146.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_c00146 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00146;src:url('chunks/assets/font_baa27ac427b787c37fc86df4.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.311035;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_c00146;src:url('chunks/assets/font_78a0e52914f817df81d96a1c.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.284180;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_c00146;src:url('chunks/assets/font_d7225c8672235c84bfa3b89e.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.284668;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_c00146{transform:matrix(0.132047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132047,0.000000,0.000000,0.250000,0,0);}
.m3_c00146{transform:matrix(0.137126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137126,0.000000,0.000000,0.250000,0,0);}
.m0_c00146{transform:matrix(0.139314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139314,0.000000,0.000000,0.250000,0,0);}
.m1_c00146{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.m2_c00146{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);}
.v0_c00146{vertical-align:0.000000px;}
.ls8_c00146{letter-spacing:-5.229000px;}
.ls4_c00146{letter-spacing:-2.457000px;}
.lsa_c00146{letter-spacing:-2.352000px;}
.ls5_c00146{letter-spacing:-2.289000px;}
.ls7_c00146{letter-spacing:-0.248520px;}
.ls9_c00146{letter-spacing:0.000000px;}
.ls6_c00146{letter-spacing:0.248520px;}
.ls1_c00146{letter-spacing:0.327000px;}
.ls0_c00146{letter-spacing:1.216440px;}
.ls2_c00146{letter-spacing:1.608840px;}
.ls3_c00146{letter-spacing:3.065040px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{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__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00146{word-spacing:-1.510200px;}
.ws1_c00146{word-spacing:0.000000px;}
._2_c00146{margin-left:-6.356880px;}
._0_c00146{margin-left:-4.564920px;}
._1_c00146{margin-left:-3.478920px;}
.fc0_c00146{color:transparent;}
.fs3_c00146{font-size:64.800000px;}
.fs1_c00146{font-size:65.400000px;}
.fs4_c00146{font-size:67.200000px;}
.fs0_c00146{font-size:70.200000px;}
.fs2_c00146{font-size:149.400000px;}
.y0_c00146{bottom:0.000000px;}
.y3_c00146{bottom:147.958950px;}
.y2_c00146{bottom:166.320000px;}
.y4_c00146{bottom:471.240000px;}
.y6_c00146{bottom:1077.495000px;}
.y1_c00146{bottom:1080.375000px;}
.y5_c00146{bottom:1145.535000px;}
.h6_c00146{height:63.597656px;}
.h3_c00146{height:64.154590px;}
.h4_c00146{height:64.158790px;}
.h7_c00146{height:67.725000px;}
.h2_c00146{height:70.748437px;}
.h5_c00146{height:146.627930px;}
.h1_c00146{height:1263.000000px;}
.h0_c00146{height:1263.240000px;}
.w1_c00146{width:892.500000px;}
.w0_c00146{width:892.800000px;}
.x0_c00146{left:0.000000px;}
.x1_c00146{left:116.820000px;}
.x4_c00146{left:123.771000px;}
.x2_c00146{left:126.075000px;}
.x3_c00146{left:147.315000px;}
.x5_c00146{left:611.640000px;}
.x6_c00146{left:684.630000px;}
.x7_c00146{left:791.475000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls8_c00146{letter-spacing:-4.648000pt;}
.ls4_c00146{letter-spacing:-2.184000pt;}
.lsa_c00146{letter-spacing:-2.090667pt;}
.ls5_c00146{letter-spacing:-2.034667pt;}
.ls7_c00146{letter-spacing:-0.220907pt;}
.ls9_c00146{letter-spacing:0.000000pt;}
.ls6_c00146{letter-spacing:0.220907pt;}
.ls1_c00146{letter-spacing:0.290667pt;}
.ls0_c00146{letter-spacing:1.081280pt;}
.ls2_c00146{letter-spacing:1.430080pt;}
.ls3_c00146{letter-spacing:2.724480pt;}
.ws0_c00146{word-spacing:-1.342400pt;}
.ws1_c00146{word-spacing:0.000000pt;}
._2_c00146{margin-left:-5.650560pt;}
._0_c00146{margin-left:-4.057707pt;}
._1_c00146{margin-left:-3.092373pt;}
.fs3_c00146{font-size:57.600000pt;}
.fs1_c00146{font-size:58.133333pt;}
.fs4_c00146{font-size:59.733333pt;}
.fs0_c00146{font-size:62.400000pt;}
.fs2_c00146{font-size:132.800000pt;}
.y0_c00146{bottom:0.000000pt;}
.y3_c00146{bottom:131.519067pt;}
.y2_c00146{bottom:147.840000pt;}
.y4_c00146{bottom:418.880000pt;}
.y6_c00146{bottom:957.773333pt;}
.y1_c00146{bottom:960.333333pt;}
.y5_c00146{bottom:1018.253333pt;}
.h6_c00146{height:56.531250pt;}
.h3_c00146{height:57.026302pt;}
.h4_c00146{height:57.030035pt;}
.h7_c00146{height:60.200000pt;}
.h2_c00146{height:62.887500pt;}
.h5_c00146{height:130.335937pt;}
.h1_c00146{height:1122.666667pt;}
.h0_c00146{height:1122.880000pt;}
.w1_c00146{width:793.333333pt;}
.w0_c00146{width:793.600000pt;}
.x0_c00146{left:0.000000pt;}
.x1_c00146{left:103.840000pt;}
.x4_c00146{left:110.018667pt;}
.x2_c00146{left:112.066667pt;}
.x3_c00146{left:130.946667pt;}
.x5_c00146{left:543.680000pt;}
.x6_c00146{left:608.560000pt;}
.x7_c00146{left:703.533333pt;}
}





/* 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_c00147 {
    display:none;
  }
  .loading-indicator_c00147.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00147 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_c00147 { 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_c00147" -> "#page-container .classname_c00147")
 */
.pf_c00147 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00147 { /* 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_c00147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00147 { /* 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_c00147 { /* 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_c00147 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00147 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00147 {overflow:visible;}
  }
}
.c_c00147 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00147 { /* 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_c00147:after { /* webkit #35443 */
  content: '';
}
.t_c00147:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00147 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 */
}
.__c00147 { /* 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_c00147 { /* info for Javascript */
  display:none;
}
.l_c00147 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00147 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00147 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00147: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_c00147 {
    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_c00147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00147.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_c00147 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00147;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;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:ff2_c00147;src:url('chunks/assets/font_01b78db8c1acfc6f0e8d765a.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.284668;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_c00147;src:url('chunks/assets/font_10e490e5463d16e7d2eaf496.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.284180;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_c00147;src:url('chunks/assets/font_3186ad7337f59ada0290c138.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:1.311035;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_c00147;src:url('chunks/assets/font_5b98d0af843615eecdfb4af6.woff2')format("woff");}.ff5_c00147{font-family:ff5_c00147;line-height:0.666000;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_c00147;src:url('chunks/assets/font_6cc618913a3f9f34e36bde87.woff2')format("woff");}.ff6_c00147{font-family:ff6_c00147;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;}
.m2_c00147{transform:matrix(0.064516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064516,0.000000,0.000000,0.250000,0,0);}
.m4_c00147{transform:matrix(0.123867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123867,0.000000,0.000000,0.250000,0,0);}
.m0_c00147{transform:matrix(0.128358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128358,0.000000,0.000000,0.250000,0,0);}
.m3_c00147{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m1_c00147{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);}
.v0_c00147{vertical-align:0.000000px;}
.v1_c00147{vertical-align:203.040000px;}
.lse_c00147{letter-spacing:-2.520000px;}
.ls8_c00147{letter-spacing:-2.436000px;}
.lsb_c00147{letter-spacing:-0.071280px;}
.ls9_c00147{letter-spacing:0.000000px;}
.ls7_c00147{letter-spacing:0.239760px;}
.ls4_c00147{letter-spacing:0.317520px;}
.ls2_c00147{letter-spacing:0.349440px;}
.lsc_c00147{letter-spacing:0.466560px;}
.ls1_c00147{letter-spacing:0.492480px;}
.lsd_c00147{letter-spacing:0.544320px;}
.ls3_c00147{letter-spacing:0.615600px;}
.lsa_c00147{letter-spacing:1.123200px;}
.ls5_c00147{letter-spacing:1.634880px;}
.ls6_c00147{letter-spacing:1.752660px;}
.ls0_c00147{letter-spacing:2.903040px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{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__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00147{word-spacing:-112.756967px;}
.ws0_c00147{word-spacing:-2.138400px;}
.ws5_c00147{word-spacing:0.000000px;}
.ws4_c00147{word-spacing:2.864160px;}
.ws1_c00147{word-spacing:3.510240px;}
.ws3_c00147{word-spacing:5.209920px;}
._3_c00147{margin-left:-25.123333px;}
._0_c00147{margin-left:-15.787200px;}
._2_c00147{margin-left:-1.946880px;}
._1_c00147{width:2.134560px;}
.fc0_c00147{color:transparent;}
.fs8_c00147{font-size:35.400600px;}
.fs9_c00147{font-size:58.200000px;}
.fs3_c00147{font-size:62.400000px;}
.fs1_c00147{font-size:64.200000px;}
.fs2_c00147{font-size:64.800000px;}
.fs0_c00147{font-size:69.600000px;}
.fsa_c00147{font-size:72.000000px;}
.fs6_c00147{font-size:73.200000px;}
.fs7_c00147{font-size:89.280000px;}
.fs4_c00147{font-size:223.200600px;}
.fs5_c00147{font-size:405.600600px;}
.y0_c00147{bottom:0.000000px;}
.y4_c00147{bottom:150.120000px;}
.yc_c00147{bottom:150.832800px;}
.y3_c00147{bottom:168.480000px;}
.yb_c00147{bottom:169.560000px;}
.y2_c00147{bottom:281.175000px;}
.ya_c00147{bottom:286.560000px;}
.y7_c00147{bottom:397.815000px;}
.y9_c00147{bottom:414.360000px;}
.y8_c00147{bottom:423.735000px;}
.y6_c00147{bottom:883.080000px;}
.y1_c00147{bottom:1078.935000px;}
.y5_c00147{bottom:1147.695000px;}
.ha_c00147{height:36.921720px;}
.hb_c00147{height:57.120117px;}
.h9_c00147{height:59.460480px;}
.h3_c00147{height:63.008789px;}
.h5_c00147{height:63.566016px;}
.h4_c00147{height:63.597656px;}
.h6_c00147{height:64.701562px;}
.hc_c00147{height:70.664062px;}
.h2_c00147{height:72.590625px;}
.h7_c00147{height:148.651600px;}
.h8_c00147{height:423.028751px;}
.h1_c00147{height:1263.000000px;}
.h0_c00147{height:1263.240000px;}
.w1_c00147{width:892.500000px;}
.w0_c00147{width:892.800000px;}
.x0_c00147{left:0.000000px;}
.x1_c00147{left:118.590000px;}
.x4_c00147{left:122.580000px;}
.x3_c00147{left:123.705000px;}
.x2_c00147{left:348.750000px;}
.xa_c00147{left:547.125000px;}
.x5_c00147{left:684.645000px;}
.x9_c00147{left:691.755000px;}
.x7_c00147{left:741.105000px;}
.x8_c00147{left:754.575000px;}
.x6_c00147{left:757.440000px;}
.xb_c00147{left:796.740000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.v1_c00147{vertical-align:180.480000pt;}
.lse_c00147{letter-spacing:-2.240000pt;}
.ls8_c00147{letter-spacing:-2.165333pt;}
.lsb_c00147{letter-spacing:-0.063360pt;}
.ls9_c00147{letter-spacing:0.000000pt;}
.ls7_c00147{letter-spacing:0.213120pt;}
.ls4_c00147{letter-spacing:0.282240pt;}
.ls2_c00147{letter-spacing:0.310613pt;}
.lsc_c00147{letter-spacing:0.414720pt;}
.ls1_c00147{letter-spacing:0.437760pt;}
.lsd_c00147{letter-spacing:0.483840pt;}
.ls3_c00147{letter-spacing:0.547200pt;}
.lsa_c00147{letter-spacing:0.998400pt;}
.ls5_c00147{letter-spacing:1.453227pt;}
.ls6_c00147{letter-spacing:1.557920pt;}
.ls0_c00147{letter-spacing:2.580480pt;}
.ws2_c00147{word-spacing:-100.228415pt;}
.ws0_c00147{word-spacing:-1.900800pt;}
.ws5_c00147{word-spacing:0.000000pt;}
.ws4_c00147{word-spacing:2.545920pt;}
.ws1_c00147{word-spacing:3.120213pt;}
.ws3_c00147{word-spacing:4.631040pt;}
._3_c00147{margin-left:-22.331852pt;}
._0_c00147{margin-left:-14.033067pt;}
._2_c00147{margin-left:-1.730560pt;}
._1_c00147{width:1.897387pt;}
.fs8_c00147{font-size:31.467200pt;}
.fs9_c00147{font-size:51.733333pt;}
.fs3_c00147{font-size:55.466667pt;}
.fs1_c00147{font-size:57.066667pt;}
.fs2_c00147{font-size:57.600000pt;}
.fs0_c00147{font-size:61.866667pt;}
.fsa_c00147{font-size:64.000000pt;}
.fs6_c00147{font-size:65.066667pt;}
.fs7_c00147{font-size:79.360000pt;}
.fs4_c00147{font-size:198.400533pt;}
.fs5_c00147{font-size:360.533867pt;}
.y0_c00147{bottom:0.000000pt;}
.y4_c00147{bottom:133.440000pt;}
.yc_c00147{bottom:134.073600pt;}
.y3_c00147{bottom:149.760000pt;}
.yb_c00147{bottom:150.720000pt;}
.y2_c00147{bottom:249.933333pt;}
.ya_c00147{bottom:254.720000pt;}
.y7_c00147{bottom:353.613333pt;}
.y9_c00147{bottom:368.320000pt;}
.y8_c00147{bottom:376.653333pt;}
.y6_c00147{bottom:784.960000pt;}
.y1_c00147{bottom:959.053333pt;}
.y5_c00147{bottom:1020.173333pt;}
.ha_c00147{height:32.819306pt;}
.hb_c00147{height:50.773437pt;}
.h9_c00147{height:52.853760pt;}
.h3_c00147{height:56.007812pt;}
.h5_c00147{height:56.503125pt;}
.h4_c00147{height:56.531250pt;}
.h6_c00147{height:57.512500pt;}
.hc_c00147{height:62.812500pt;}
.h2_c00147{height:64.525000pt;}
.h7_c00147{height:132.134755pt;}
.h8_c00147{height:376.025556pt;}
.h1_c00147{height:1122.666667pt;}
.h0_c00147{height:1122.880000pt;}
.w1_c00147{width:793.333333pt;}
.w0_c00147{width:793.600000pt;}
.x0_c00147{left:0.000000pt;}
.x1_c00147{left:105.413333pt;}
.x4_c00147{left:108.960000pt;}
.x3_c00147{left:109.960000pt;}
.x2_c00147{left:310.000000pt;}
.xa_c00147{left:486.333333pt;}
.x5_c00147{left:608.573333pt;}
.x9_c00147{left:614.893333pt;}
.x7_c00147{left:658.760000pt;}
.x8_c00147{left:670.733333pt;}
.x6_c00147{left:673.280000pt;}
.xb_c00147{left:708.213333pt;}
}





/* 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_c00148 {
    display:none;
  }
  .loading-indicator_c00148.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00148 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_c00148 { 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_c00148" -> "#page-container .classname_c00148")
 */
.pf_c00148 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00148 { /* 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_c00148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00148 { /* 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_c00148 { /* 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_c00148 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00148 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00148 {overflow:visible;}
  }
}
.c_c00148 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00148 { /* 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_c00148:after { /* webkit #35443 */
  content: '';
}
.t_c00148:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00148 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 */
}
.__c00148 { /* 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_c00148 { /* info for Javascript */
  display:none;
}
.l_c00148 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00148 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00148 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00148: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_c00148 {
    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_c00148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00148.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_c00148 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00148;src:url('chunks/assets/font_ceac47e444daa87f4fae0ee4.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.284668;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_c00148;src:url('chunks/assets/font_85b03891cb82a4f39d08c836.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;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_c00148;src:url('chunks/assets/font_d61c67bdb8329bbd5dabba83.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.284180;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;}
.mb_c00148{transform:matrix(0.234938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234938,0.000000,0.000000,0.250000,0,0);}
.m8_c00148{transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);}
.ma_c00148{transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);}
.m5_c00148{transform:matrix(0.243444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243444,0.000000,0.000000,0.250000,0,0);}
.m9_c00148{transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);}
.m4_c00148{transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);}
.m3_c00148{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);}
.m7_c00148{transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);}
.m6_c00148{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m2_c00148{transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);}
.m0_c00148{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);}
.v0_c00148{vertical-align:0.000000px;}
.ls2f_c00148{letter-spacing:-2.436000px;}
.ls81_c00148{letter-spacing:-2.255040px;}
.ls61_c00148{letter-spacing:-2.192400px;}
.ls75_c00148{letter-spacing:-2.060160px;}
.ls8c_c00148{letter-spacing:-1.953000px;}
.ls85_c00148{letter-spacing:-1.774800px;}
.ls31_c00148{letter-spacing:-1.649520px;}
.ls2d_c00148{letter-spacing:-1.531200px;}
.ls7d_c00148{letter-spacing:-1.455000px;}
.ls3d_c00148{letter-spacing:-1.426800px;}
.ls8b_c00148{letter-spacing:-1.405920px;}
.ls7c_c00148{letter-spacing:-1.402500px;}
.ls3b_c00148{letter-spacing:-1.343280px;}
.ls7a_c00148{letter-spacing:-1.301520px;}
.ls60_c00148{letter-spacing:-1.266720px;}
.ls68_c00148{letter-spacing:-1.218000px;}
.ls56_c00148{letter-spacing:-1.204080px;}
.ls83_c00148{letter-spacing:-1.190160px;}
.ls39_c00148{letter-spacing:-1.120560px;}
.ls4d_c00148{letter-spacing:-1.099680px;}
.ls86_c00148{letter-spacing:-1.078800px;}
.ls4e_c00148{letter-spacing:-1.023120px;}
.ls7e_c00148{letter-spacing:-0.932640px;}
.ls2b_c00148{letter-spacing:-0.904800px;}
.ls29_c00148{letter-spacing:-0.897840px;}
.ls80_c00148{letter-spacing:-0.883920px;}
.ls84_c00148{letter-spacing:-0.870000px;}
.ls65_c00148{letter-spacing:-0.807360px;}
.ls66_c00148{letter-spacing:-0.793440px;}
.ls67_c00148{letter-spacing:-0.765600px;}
.ls7b_c00148{letter-spacing:-0.758640px;}
.ls3f_c00148{letter-spacing:-0.702960px;}
.ls74_c00148{letter-spacing:-0.696000px;}
.ls33_c00148{letter-spacing:-0.689040px;}
.ls7f_c00148{letter-spacing:-0.668160px;}
.ls6b_c00148{letter-spacing:-0.661200px;}
.ls82_c00148{letter-spacing:-0.647280px;}
.ls32_c00148{letter-spacing:-0.640320px;}
.ls36_c00148{letter-spacing:-0.626400px;}
.ls5a_c00148{letter-spacing:-0.605520px;}
.ls43_c00148{letter-spacing:-0.591600px;}
.ls30_c00148{letter-spacing:-0.556800px;}
.ls48_c00148{letter-spacing:-0.549840px;}
.ls6e_c00148{letter-spacing:-0.542880px;}
.ls5d_c00148{letter-spacing:-0.522000px;}
.ls63_c00148{letter-spacing:-0.515040px;}
.ls4f_c00148{letter-spacing:-0.508080px;}
.ls35_c00148{letter-spacing:-0.501120px;}
.ls28_c00148{letter-spacing:-0.487200px;}
.ls50_c00148{letter-spacing:-0.480240px;}
.ls79_c00148{letter-spacing:-0.466320px;}
.ls78_c00148{letter-spacing:-0.459360px;}
.ls89_c00148{letter-spacing:-0.445440px;}
.ls4b_c00148{letter-spacing:-0.438480px;}
.ls53_c00148{letter-spacing:-0.431520px;}
.ls71_c00148{letter-spacing:-0.417600px;}
.ls62_c00148{letter-spacing:-0.403680px;}
.ls4c_c00148{letter-spacing:-0.396720px;}
.ls54_c00148{letter-spacing:-0.389760px;}
.ls52_c00148{letter-spacing:-0.382800px;}
.ls5f_c00148{letter-spacing:-0.368880px;}
.ls51_c00148{letter-spacing:-0.361920px;}
.ls2a_c00148{letter-spacing:-0.354960px;}
.ls88_c00148{letter-spacing:-0.348000px;}
.ls3e_c00148{letter-spacing:-0.341040px;}
.ls3a_c00148{letter-spacing:-0.334080px;}
.ls77_c00148{letter-spacing:-0.327120px;}
.ls2e_c00148{letter-spacing:-0.320160px;}
.ls70_c00148{letter-spacing:-0.306240px;}
.ls64_c00148{letter-spacing:-0.299280px;}
.ls46_c00148{letter-spacing:-0.292320px;}
.ls87_c00148{letter-spacing:-0.285360px;}
.ls42_c00148{letter-spacing:-0.271440px;}
.ls6d_c00148{letter-spacing:-0.257520px;}
.ls40_c00148{letter-spacing:-0.250560px;}
.ls41_c00148{letter-spacing:-0.236640px;}
.ls6f_c00148{letter-spacing:-0.229680px;}
.ls76_c00148{letter-spacing:-0.222720px;}
.ls69_c00148{letter-spacing:-0.201840px;}
.ls59_c00148{letter-spacing:-0.194880px;}
.ls8a_c00148{letter-spacing:-0.180960px;}
.ls4a_c00148{letter-spacing:-0.174000px;}
.ls5c_c00148{letter-spacing:-0.153120px;}
.ls55_c00148{letter-spacing:-0.146160px;}
.ls73_c00148{letter-spacing:-0.132240px;}
.ls6c_c00148{letter-spacing:-0.118320px;}
.ls38_c00148{letter-spacing:-0.111360px;}
.ls5e_c00148{letter-spacing:-0.104400px;}
.ls2c_c00148{letter-spacing:-0.097440px;}
.ls72_c00148{letter-spacing:-0.090480px;}
.ls45_c00148{letter-spacing:-0.083520px;}
.ls57_c00148{letter-spacing:-0.076560px;}
.ls3c_c00148{letter-spacing:-0.069600px;}
.ls27_c00148{letter-spacing:-0.062640px;}
.ls47_c00148{letter-spacing:-0.055680px;}
.ls49_c00148{letter-spacing:-0.041760px;}
.ls34_c00148{letter-spacing:-0.034800px;}
.ls44_c00148{letter-spacing:-0.027840px;}
.ls37_c00148{letter-spacing:-0.013920px;}
.ls26_c00148{letter-spacing:0.000000px;}
.ls19_c00148{letter-spacing:0.006960px;}
.ls2_c00148{letter-spacing:0.020880px;}
.ls21_c00148{letter-spacing:0.027360px;}
.ls1_c00148{letter-spacing:0.041760px;}
.lsb_c00148{letter-spacing:0.062640px;}
.lse_c00148{letter-spacing:0.069600px;}
.ls1b_c00148{letter-spacing:0.076560px;}
.ls12_c00148{letter-spacing:0.090480px;}
.ls58_c00148{letter-spacing:0.111360px;}
.ls18_c00148{letter-spacing:0.118320px;}
.ls6_c00148{letter-spacing:0.139200px;}
.ls8_c00148{letter-spacing:0.146160px;}
.ls20_c00148{letter-spacing:0.150480px;}
.lsd_c00148{letter-spacing:0.153120px;}
.ls5_c00148{letter-spacing:0.160080px;}
.ls11_c00148{letter-spacing:0.167040px;}
.ls24_c00148{letter-spacing:0.180960px;}
.lsc_c00148{letter-spacing:0.194880px;}
.lsa_c00148{letter-spacing:0.201840px;}
.ls14_c00148{letter-spacing:0.250560px;}
.ls7_c00148{letter-spacing:0.257520px;}
.ls4_c00148{letter-spacing:0.271440px;}
.ls5b_c00148{letter-spacing:0.285360px;}
.ls1a_c00148{letter-spacing:0.299280px;}
.ls17_c00148{letter-spacing:0.306240px;}
.ls1c_c00148{letter-spacing:0.313200px;}
.ls3_c00148{letter-spacing:0.348000px;}
.ls22_c00148{letter-spacing:0.354960px;}
.ls16_c00148{letter-spacing:0.369360px;}
.ls6a_c00148{letter-spacing:0.389880px;}
.ls10_c00148{letter-spacing:0.438480px;}
.ls1e_c00148{letter-spacing:0.471960px;}
.ls23_c00148{letter-spacing:0.506160px;}
.ls9_c00148{letter-spacing:0.542880px;}
.ls0_c00148{letter-spacing:0.584640px;}
.ls15_c00148{letter-spacing:0.711360px;}
.ls1d_c00148{letter-spacing:0.779520px;}
.ls1f_c00148{letter-spacing:0.943920px;}
.ls13_c00148{letter-spacing:1.002240px;}
.lsf_c00148{letter-spacing:1.447680px;}
.ls25_c00148{letter-spacing:1.557420px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{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__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00148{word-spacing:0.000000px;}
.ws0_c00148{word-spacing:16.894560px;}
.ws1_c00148{word-spacing:67.197360px;}
._12_c00148{margin-left:-3.252240px;}
._16_c00148{margin-left:-1.691280px;}
._2_c00148{width:1.938480px;}
._0_c00148{width:3.948000px;}
._3_c00148{width:5.025120px;}
._5_c00148{width:6.227520px;}
._1_c00148{width:7.497600px;}
._4_c00148{width:8.637360px;}
._13_c00148{width:9.742320px;}
._17_c00148{width:10.767120px;}
._18_c00148{width:11.812800px;}
._14_c00148{width:12.884640px;}
._19_c00148{width:14.395200px;}
._10_c00148{width:15.743520px;}
._15_c00148{width:17.212080px;}
._1a_c00148{width:18.521280px;}
._f_c00148{width:19.571520px;}
._11_c00148{width:21.450720px;}
._d_c00148{width:22.787040px;}
._c_c00148{width:24.186000px;}
._e_c00148{width:25.578000px;}
._8_c00148{width:28.904880px;}
._7_c00148{width:31.104240px;}
._a_c00148{width:33.268800px;}
._b_c00148{width:34.396320px;}
._6_c00148{width:35.635200px;}
._9_c00148{width:37.082880px;}
._1c_c00148{width:65.709360px;}
._1e_c00148{width:68.013120px;}
._1b_c00148{width:69.892320px;}
._1d_c00148{width:72.551040px;}
.fc0_c00148{color:transparent;}
.fs2_c00148{font-size:49.200000px;}
.fs6_c00148{font-size:55.800000px;}
.fs0_c00148{font-size:60.600000px;}
.fs4_c00148{font-size:68.400000px;}
.fs3_c00148{font-size:69.000000px;}
.fs1_c00148{font-size:69.600000px;}
.fs5_c00148{font-size:75.000000px;}
.y0_c00148{bottom:0.000000px;}
.y20_c00148{bottom:71.655006px;}
.y1f_c00148{bottom:148.673406px;}
.y1e_c00148{bottom:179.280006px;}
.y1d_c00148{bottom:241.575006px;}
.y1c_c00148{bottom:241.577406px;}
.y1b_c00148{bottom:272.880006px;}
.y19_c00148{bottom:334.793406px;}
.y1a_c00148{bottom:334.800006px;}
.y18_c00148{bottom:396.720006px;}
.y17_c00148{bottom:429.480006px;}
.y16_c00148{bottom:491.775006px;}
.y15_c00148{bottom:491.780406px;}
.y14_c00148{bottom:554.403006px;}
.y13_c00148{bottom:585.723006px;}
.y12_c00148{bottom:616.689606px;}
.y11_c00148{bottom:648.009606px;}
.y10_c00148{bottom:679.695006px;}
.yf_c00148{bottom:711.015006px;}
.ye_c00148{bottom:773.634606px;}
.yd_c00148{bottom:805.320006px;}
.yc_c00148{bottom:836.643006px;}
.yb_c00148{bottom:867.615006px;}
.ya_c00148{bottom:867.624606px;}
.y9_c00148{bottom:898.231206px;}
.y8_c00148{bottom:929.533806px;}
.y7_c00148{bottom:960.488406px;}
.y6_c00148{bottom:991.460406px;}
.y5_c00148{bottom:1022.780406px;}
.y4_c00148{bottom:1053.735006px;}
.y3_c00148{bottom:1085.055006px;}
.y2_c00148{bottom:1116.735006px;}
.y1_c00148{bottom:1191.615006px;}
.h7_c00148{height:58.197656px;}
.h2_c00148{height:59.475586px;}
.h3_c00148{height:68.308594px;}
.h5_c00148{height:68.330194px;}
.h4_c00148{height:71.952844px;}
.h6_c00148{height:73.571777px;}
.h1_c00148{height:1263.000000px;}
.h0_c00148{height:1263.240006px;}
.w1_c00148{width:892.500000px;}
.w0_c00148{width:892.799998px;}
.x0_c00148{left:0.000000px;}
.x14_c00148{left:118.276199px;}
.x1_c00148{left:119.444998px;}
.x5_c00148{left:173.324998px;}
.xf_c00148{left:174.396598px;}
.x9_c00148{left:214.259998px;}
.xa_c00148{left:230.924998px;}
.xb_c00148{left:259.679999px;}
.x7_c00148{left:271.949999px;}
.x10_c00148{left:284.924999px;}
.x11_c00148{left:312.284999px;}
.x3_c00148{left:356.219998px;}
.xc_c00148{left:371.279998px;}
.x4_c00148{left:372.614999px;}
.xd_c00148{left:396.164999px;}
.x12_c00148{left:398.684999px;}
.x15_c00148{left:421.499998px;}
.xe_c00148{left:423.539999px;}
.x13_c00148{left:425.999998px;}
.x6_c00148{left:442.199998px;}
.x8_c00148{left:558.494999px;}
.x2_c00148{left:736.769998px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls2f_c00148{letter-spacing:-2.165333pt;}
.ls81_c00148{letter-spacing:-2.004480pt;}
.ls61_c00148{letter-spacing:-1.948800pt;}
.ls75_c00148{letter-spacing:-1.831253pt;}
.ls8c_c00148{letter-spacing:-1.736000pt;}
.ls85_c00148{letter-spacing:-1.577600pt;}
.ls31_c00148{letter-spacing:-1.466240pt;}
.ls2d_c00148{letter-spacing:-1.361067pt;}
.ls7d_c00148{letter-spacing:-1.293333pt;}
.ls3d_c00148{letter-spacing:-1.268267pt;}
.ls8b_c00148{letter-spacing:-1.249707pt;}
.ls7c_c00148{letter-spacing:-1.246667pt;}
.ls3b_c00148{letter-spacing:-1.194027pt;}
.ls7a_c00148{letter-spacing:-1.156907pt;}
.ls60_c00148{letter-spacing:-1.125973pt;}
.ls68_c00148{letter-spacing:-1.082667pt;}
.ls56_c00148{letter-spacing:-1.070293pt;}
.ls83_c00148{letter-spacing:-1.057920pt;}
.ls39_c00148{letter-spacing:-0.996053pt;}
.ls4d_c00148{letter-spacing:-0.977493pt;}
.ls86_c00148{letter-spacing:-0.958933pt;}
.ls4e_c00148{letter-spacing:-0.909440pt;}
.ls7e_c00148{letter-spacing:-0.829013pt;}
.ls2b_c00148{letter-spacing:-0.804267pt;}
.ls29_c00148{letter-spacing:-0.798080pt;}
.ls80_c00148{letter-spacing:-0.785707pt;}
.ls84_c00148{letter-spacing:-0.773333pt;}
.ls65_c00148{letter-spacing:-0.717653pt;}
.ls66_c00148{letter-spacing:-0.705280pt;}
.ls67_c00148{letter-spacing:-0.680533pt;}
.ls7b_c00148{letter-spacing:-0.674347pt;}
.ls3f_c00148{letter-spacing:-0.624853pt;}
.ls74_c00148{letter-spacing:-0.618667pt;}
.ls33_c00148{letter-spacing:-0.612480pt;}
.ls7f_c00148{letter-spacing:-0.593920pt;}
.ls6b_c00148{letter-spacing:-0.587733pt;}
.ls82_c00148{letter-spacing:-0.575360pt;}
.ls32_c00148{letter-spacing:-0.569173pt;}
.ls36_c00148{letter-spacing:-0.556800pt;}
.ls5a_c00148{letter-spacing:-0.538240pt;}
.ls43_c00148{letter-spacing:-0.525867pt;}
.ls30_c00148{letter-spacing:-0.494933pt;}
.ls48_c00148{letter-spacing:-0.488747pt;}
.ls6e_c00148{letter-spacing:-0.482560pt;}
.ls5d_c00148{letter-spacing:-0.464000pt;}
.ls63_c00148{letter-spacing:-0.457813pt;}
.ls4f_c00148{letter-spacing:-0.451627pt;}
.ls35_c00148{letter-spacing:-0.445440pt;}
.ls28_c00148{letter-spacing:-0.433067pt;}
.ls50_c00148{letter-spacing:-0.426880pt;}
.ls79_c00148{letter-spacing:-0.414507pt;}
.ls78_c00148{letter-spacing:-0.408320pt;}
.ls89_c00148{letter-spacing:-0.395947pt;}
.ls4b_c00148{letter-spacing:-0.389760pt;}
.ls53_c00148{letter-spacing:-0.383573pt;}
.ls71_c00148{letter-spacing:-0.371200pt;}
.ls62_c00148{letter-spacing:-0.358827pt;}
.ls4c_c00148{letter-spacing:-0.352640pt;}
.ls54_c00148{letter-spacing:-0.346453pt;}
.ls52_c00148{letter-spacing:-0.340267pt;}
.ls5f_c00148{letter-spacing:-0.327893pt;}
.ls51_c00148{letter-spacing:-0.321707pt;}
.ls2a_c00148{letter-spacing:-0.315520pt;}
.ls88_c00148{letter-spacing:-0.309333pt;}
.ls3e_c00148{letter-spacing:-0.303147pt;}
.ls3a_c00148{letter-spacing:-0.296960pt;}
.ls77_c00148{letter-spacing:-0.290773pt;}
.ls2e_c00148{letter-spacing:-0.284587pt;}
.ls70_c00148{letter-spacing:-0.272213pt;}
.ls64_c00148{letter-spacing:-0.266027pt;}
.ls46_c00148{letter-spacing:-0.259840pt;}
.ls87_c00148{letter-spacing:-0.253653pt;}
.ls42_c00148{letter-spacing:-0.241280pt;}
.ls6d_c00148{letter-spacing:-0.228907pt;}
.ls40_c00148{letter-spacing:-0.222720pt;}
.ls41_c00148{letter-spacing:-0.210347pt;}
.ls6f_c00148{letter-spacing:-0.204160pt;}
.ls76_c00148{letter-spacing:-0.197973pt;}
.ls69_c00148{letter-spacing:-0.179413pt;}
.ls59_c00148{letter-spacing:-0.173227pt;}
.ls8a_c00148{letter-spacing:-0.160853pt;}
.ls4a_c00148{letter-spacing:-0.154667pt;}
.ls5c_c00148{letter-spacing:-0.136107pt;}
.ls55_c00148{letter-spacing:-0.129920pt;}
.ls73_c00148{letter-spacing:-0.117547pt;}
.ls6c_c00148{letter-spacing:-0.105173pt;}
.ls38_c00148{letter-spacing:-0.098987pt;}
.ls5e_c00148{letter-spacing:-0.092800pt;}
.ls2c_c00148{letter-spacing:-0.086613pt;}
.ls72_c00148{letter-spacing:-0.080427pt;}
.ls45_c00148{letter-spacing:-0.074240pt;}
.ls57_c00148{letter-spacing:-0.068053pt;}
.ls3c_c00148{letter-spacing:-0.061867pt;}
.ls27_c00148{letter-spacing:-0.055680pt;}
.ls47_c00148{letter-spacing:-0.049493pt;}
.ls49_c00148{letter-spacing:-0.037120pt;}
.ls34_c00148{letter-spacing:-0.030933pt;}
.ls44_c00148{letter-spacing:-0.024747pt;}
.ls37_c00148{letter-spacing:-0.012373pt;}
.ls26_c00148{letter-spacing:0.000000pt;}
.ls19_c00148{letter-spacing:0.006187pt;}
.ls2_c00148{letter-spacing:0.018560pt;}
.ls21_c00148{letter-spacing:0.024320pt;}
.ls1_c00148{letter-spacing:0.037120pt;}
.lsb_c00148{letter-spacing:0.055680pt;}
.lse_c00148{letter-spacing:0.061867pt;}
.ls1b_c00148{letter-spacing:0.068053pt;}
.ls12_c00148{letter-spacing:0.080427pt;}
.ls58_c00148{letter-spacing:0.098987pt;}
.ls18_c00148{letter-spacing:0.105173pt;}
.ls6_c00148{letter-spacing:0.123733pt;}
.ls8_c00148{letter-spacing:0.129920pt;}
.ls20_c00148{letter-spacing:0.133760pt;}
.lsd_c00148{letter-spacing:0.136107pt;}
.ls5_c00148{letter-spacing:0.142293pt;}
.ls11_c00148{letter-spacing:0.148480pt;}
.ls24_c00148{letter-spacing:0.160853pt;}
.lsc_c00148{letter-spacing:0.173227pt;}
.lsa_c00148{letter-spacing:0.179413pt;}
.ls14_c00148{letter-spacing:0.222720pt;}
.ls7_c00148{letter-spacing:0.228907pt;}
.ls4_c00148{letter-spacing:0.241280pt;}
.ls5b_c00148{letter-spacing:0.253653pt;}
.ls1a_c00148{letter-spacing:0.266027pt;}
.ls17_c00148{letter-spacing:0.272213pt;}
.ls1c_c00148{letter-spacing:0.278400pt;}
.ls3_c00148{letter-spacing:0.309333pt;}
.ls22_c00148{letter-spacing:0.315520pt;}
.ls16_c00148{letter-spacing:0.328320pt;}
.ls6a_c00148{letter-spacing:0.346560pt;}
.ls10_c00148{letter-spacing:0.389760pt;}
.ls1e_c00148{letter-spacing:0.419520pt;}
.ls23_c00148{letter-spacing:0.449920pt;}
.ls9_c00148{letter-spacing:0.482560pt;}
.ls0_c00148{letter-spacing:0.519680pt;}
.ls15_c00148{letter-spacing:0.632320pt;}
.ls1d_c00148{letter-spacing:0.692907pt;}
.ls1f_c00148{letter-spacing:0.839040pt;}
.ls13_c00148{letter-spacing:0.890880pt;}
.lsf_c00148{letter-spacing:1.286827pt;}
.ls25_c00148{letter-spacing:1.384373pt;}
.ws2_c00148{word-spacing:0.000000pt;}
.ws0_c00148{word-spacing:15.017387pt;}
.ws1_c00148{word-spacing:59.730987pt;}
._12_c00148{margin-left:-2.890880pt;}
._16_c00148{margin-left:-1.503360pt;}
._2_c00148{width:1.723093pt;}
._0_c00148{width:3.509333pt;}
._3_c00148{width:4.466773pt;}
._5_c00148{width:5.535573pt;}
._1_c00148{width:6.664533pt;}
._4_c00148{width:7.677653pt;}
._13_c00148{width:8.659840pt;}
._17_c00148{width:9.570773pt;}
._18_c00148{width:10.500267pt;}
._14_c00148{width:11.453013pt;}
._19_c00148{width:12.795733pt;}
._10_c00148{width:13.994240pt;}
._15_c00148{width:15.299627pt;}
._1a_c00148{width:16.463360pt;}
._f_c00148{width:17.396907pt;}
._11_c00148{width:19.067307pt;}
._d_c00148{width:20.255147pt;}
._c_c00148{width:21.498667pt;}
._e_c00148{width:22.736000pt;}
._8_c00148{width:25.693227pt;}
._7_c00148{width:27.648213pt;}
._a_c00148{width:29.572267pt;}
._b_c00148{width:30.574507pt;}
._6_c00148{width:31.675733pt;}
._9_c00148{width:32.962560pt;}
._1c_c00148{width:58.408320pt;}
._1e_c00148{width:60.456107pt;}
._1b_c00148{width:62.126507pt;}
._1d_c00148{width:64.489813pt;}
.fs2_c00148{font-size:43.733333pt;}
.fs6_c00148{font-size:49.600000pt;}
.fs0_c00148{font-size:53.866667pt;}
.fs4_c00148{font-size:60.800000pt;}
.fs3_c00148{font-size:61.333333pt;}
.fs1_c00148{font-size:61.866667pt;}
.fs5_c00148{font-size:66.666667pt;}
.y0_c00148{bottom:0.000000pt;}
.y20_c00148{bottom:63.693339pt;}
.y1f_c00148{bottom:132.154139pt;}
.y1e_c00148{bottom:159.360005pt;}
.y1d_c00148{bottom:214.733339pt;}
.y1c_c00148{bottom:214.735472pt;}
.y1b_c00148{bottom:242.560005pt;}
.y19_c00148{bottom:297.594139pt;}
.y1a_c00148{bottom:297.600005pt;}
.y18_c00148{bottom:352.640005pt;}
.y17_c00148{bottom:381.760005pt;}
.y16_c00148{bottom:437.133339pt;}
.y15_c00148{bottom:437.138139pt;}
.y14_c00148{bottom:492.802672pt;}
.y13_c00148{bottom:520.642672pt;}
.y12_c00148{bottom:548.168539pt;}
.y11_c00148{bottom:576.008539pt;}
.y10_c00148{bottom:604.173339pt;}
.yf_c00148{bottom:632.013339pt;}
.ye_c00148{bottom:687.675205pt;}
.yd_c00148{bottom:715.840005pt;}
.yc_c00148{bottom:743.682672pt;}
.yb_c00148{bottom:771.213339pt;}
.ya_c00148{bottom:771.221872pt;}
.y9_c00148{bottom:798.427739pt;}
.y8_c00148{bottom:826.252272pt;}
.y7_c00148{bottom:853.767472pt;}
.y6_c00148{bottom:881.298139pt;}
.y5_c00148{bottom:909.138139pt;}
.y4_c00148{bottom:936.653339pt;}
.y3_c00148{bottom:964.493339pt;}
.y2_c00148{bottom:992.653339pt;}
.y1_c00148{bottom:1059.213339pt;}
.h7_c00148{height:51.731250pt;}
.h2_c00148{height:52.867187pt;}
.h3_c00148{height:60.718750pt;}
.h5_c00148{height:60.737950pt;}
.h4_c00148{height:63.958083pt;}
.h6_c00148{height:65.397135pt;}
.h1_c00148{height:1122.666667pt;}
.h0_c00148{height:1122.880005pt;}
.w1_c00148{width:793.333333pt;}
.w0_c00148{width:793.599999pt;}
.x0_c00148{left:0.000000pt;}
.x14_c00148{left:105.134399pt;}
.x1_c00148{left:106.173332pt;}
.x5_c00148{left:154.066665pt;}
.xf_c00148{left:155.019199pt;}
.x9_c00148{left:190.453332pt;}
.xa_c00148{left:205.266665pt;}
.xb_c00148{left:230.826665pt;}
.x7_c00148{left:241.733332pt;}
.x10_c00148{left:253.266665pt;}
.x11_c00148{left:277.586665pt;}
.x3_c00148{left:316.639999pt;}
.xc_c00148{left:330.026665pt;}
.x4_c00148{left:331.213332pt;}
.xd_c00148{left:352.146665pt;}
.x12_c00148{left:354.386665pt;}
.x15_c00148{left:374.666665pt;}
.xe_c00148{left:376.479999pt;}
.x13_c00148{left:378.666665pt;}
.x6_c00148{left:393.066665pt;}
.x8_c00148{left:496.439999pt;}
.x2_c00148{left:654.906665pt;}
}





/* 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_c00149 {
    display:none;
  }
  .loading-indicator_c00149.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00149 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_c00149 { 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_c00149" -> "#page-container .classname_c00149")
 */
.pf_c00149 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00149 { /* 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_c00149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00149 { /* 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_c00149 { /* 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_c00149 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00149 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00149 {overflow:visible;}
  }
}
.c_c00149 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00149 { /* 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_c00149:after { /* webkit #35443 */
  content: '';
}
.t_c00149:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00149 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 */
}
.__c00149 { /* 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_c00149 { /* info for Javascript */
  display:none;
}
.l_c00149 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00149 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00149 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00149: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_c00149 {
    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_c00149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00149.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_c00149 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00149;src:url('chunks/assets/font_cb5c83ed487dae74fa404580.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.284668;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_c00149;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;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_c00149;src:url('chunks/assets/font_faec6e9f79b0aa2447218b8a.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.284180;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_c00149{transform:matrix(0.200884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200884,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{transform:matrix(0.209188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209188,0.000000,0.000000,0.250000,0,0);}
.ma_c00149{transform:matrix(0.219968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219968,0.000000,0.000000,0.250000,0,0);}
.m9_c00149{transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);}
.m0_c00149{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m2_c00149{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m6_c00149{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m8_c00149{transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);}
.m7_c00149{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m1_c00149{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);}
.mb_c00149{transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);}
.m5_c00149{transform:matrix(0.324032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324032,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls7e_c00149{letter-spacing:-2.436000px;}
.ls63_c00149{letter-spacing:-2.415000px;}
.ls54_c00149{letter-spacing:-2.352000px;}
.ls88_c00149{letter-spacing:-2.234160px;}
.ls8c_c00149{letter-spacing:-2.136720px;}
.ls6c_c00149{letter-spacing:-2.046240px;}
.ls79_c00149{letter-spacing:-1.872240px;}
.ls8a_c00149{letter-spacing:-1.774800px;}
.ls9c_c00149{letter-spacing:-1.753920px;}
.ls56_c00149{letter-spacing:-1.649520px;}
.ls66_c00149{letter-spacing:-1.531200px;}
.ls75_c00149{letter-spacing:-1.475520px;}
.ls85_c00149{letter-spacing:-1.426800px;}
.ls7b_c00149{letter-spacing:-1.315440px;}
.ls8b_c00149{letter-spacing:-1.294560px;}
.ls90_c00149{letter-spacing:-1.252800px;}
.ls7c_c00149{letter-spacing:-1.218000px;}
.ls9a_c00149{letter-spacing:-1.211040px;}
.ls7d_c00149{letter-spacing:-1.204080px;}
.ls8f_c00149{letter-spacing:-1.176240px;}
.ls72_c00149{letter-spacing:-1.169280px;}
.ls81_c00149{letter-spacing:-1.106640px;}
.ls9d_c00149{letter-spacing:-1.078800px;}
.ls9f_c00149{letter-spacing:-1.050960px;}
.ls92_c00149{letter-spacing:-0.772560px;}
.ls83_c00149{letter-spacing:-0.689040px;}
.ls6e_c00149{letter-spacing:-0.626400px;}
.ls6b_c00149{letter-spacing:-0.584640px;}
.ls95_c00149{letter-spacing:-0.549840px;}
.lsa0_c00149{letter-spacing:-0.529620px;}
.ls93_c00149{letter-spacing:-0.522000px;}
.ls61_c00149{letter-spacing:-0.480240px;}
.ls6d_c00149{letter-spacing:-0.473280px;}
.ls8e_c00149{letter-spacing:-0.466320px;}
.ls5d_c00149{letter-spacing:-0.459360px;}
.ls55_c00149{letter-spacing:-0.452400px;}
.ls7a_c00149{letter-spacing:-0.445440px;}
.ls6a_c00149{letter-spacing:-0.438480px;}
.ls8d_c00149{letter-spacing:-0.431520px;}
.ls68_c00149{letter-spacing:-0.417600px;}
.ls59_c00149{letter-spacing:-0.410640px;}
.ls98_c00149{letter-spacing:-0.403680px;}
.ls97_c00149{letter-spacing:-0.389760px;}
.ls64_c00149{letter-spacing:-0.382800px;}
.ls77_c00149{letter-spacing:-0.375840px;}
.ls5b_c00149{letter-spacing:-0.341040px;}
.ls70_c00149{letter-spacing:-0.334080px;}
.ls9e_c00149{letter-spacing:-0.320160px;}
.ls73_c00149{letter-spacing:-0.313200px;}
.ls71_c00149{letter-spacing:-0.306240px;}
.ls94_c00149{letter-spacing:-0.292320px;}
.ls57_c00149{letter-spacing:-0.264480px;}
.ls6f_c00149{letter-spacing:-0.257520px;}
.ls86_c00149{letter-spacing:-0.250560px;}
.ls5e_c00149{letter-spacing:-0.229680px;}
.ls91_c00149{letter-spacing:-0.222720px;}
.ls5f_c00149{letter-spacing:-0.215760px;}
.ls69_c00149{letter-spacing:-0.208800px;}
.ls58_c00149{letter-spacing:-0.201840px;}
.ls89_c00149{letter-spacing:-0.187920px;}
.ls67_c00149{letter-spacing:-0.174000px;}
.ls96_c00149{letter-spacing:-0.160080px;}
.ls99_c00149{letter-spacing:-0.146160px;}
.ls82_c00149{letter-spacing:-0.132240px;}
.ls65_c00149{letter-spacing:-0.125280px;}
.ls87_c00149{letter-spacing:-0.104400px;}
.ls5c_c00149{letter-spacing:-0.097440px;}
.ls76_c00149{letter-spacing:-0.090480px;}
.ls7f_c00149{letter-spacing:-0.055680px;}
.ls84_c00149{letter-spacing:-0.027840px;}
.ls62_c00149{letter-spacing:-0.020880px;}
.ls80_c00149{letter-spacing:-0.013920px;}
.ls5a_c00149{letter-spacing:-0.006960px;}
.ls60_c00149{letter-spacing:0.000000px;}
.ls13_c00149{letter-spacing:0.006960px;}
.ls3a_c00149{letter-spacing:0.013920px;}
.ls21_c00149{letter-spacing:0.027840px;}
.ls4c_c00149{letter-spacing:0.034800px;}
.ls1e_c00149{letter-spacing:0.041760px;}
.ls43_c00149{letter-spacing:0.048720px;}
.ls20_c00149{letter-spacing:0.055680px;}
.ls6_c00149{letter-spacing:0.062640px;}
.ls25_c00149{letter-spacing:0.076560px;}
.ls2_c00149{letter-spacing:0.083520px;}
.ls36_c00149{letter-spacing:0.097440px;}
.ls23_c00149{letter-spacing:0.104400px;}
.ls42_c00149{letter-spacing:0.111360px;}
.ls26_c00149{letter-spacing:0.132240px;}
.ls32_c00149{letter-spacing:0.139200px;}
.ls7_c00149{letter-spacing:0.146160px;}
.ls1_c00149{letter-spacing:0.160080px;}
.ls10_c00149{letter-spacing:0.167040px;}
.lsd_c00149{letter-spacing:0.174000px;}
.ls4f_c00149{letter-spacing:0.187920px;}
.ls4_c00149{letter-spacing:0.208800px;}
.ls2d_c00149{letter-spacing:0.215760px;}
.ls2c_c00149{letter-spacing:0.222720px;}
.lse_c00149{letter-spacing:0.229680px;}
.ls4b_c00149{letter-spacing:0.236640px;}
.ls3f_c00149{letter-spacing:0.243600px;}
.ls34_c00149{letter-spacing:0.257520px;}
.ls40_c00149{letter-spacing:0.271440px;}
.ls41_c00149{letter-spacing:0.292320px;}
.ls17_c00149{letter-spacing:0.306240px;}
.ls2a_c00149{letter-spacing:0.313200px;}
.ls4e_c00149{letter-spacing:0.320160px;}
.ls18_c00149{letter-spacing:0.348000px;}
.ls35_c00149{letter-spacing:0.361920px;}
.ls15_c00149{letter-spacing:0.375840px;}
.ls12_c00149{letter-spacing:0.382800px;}
.ls49_c00149{letter-spacing:0.389760px;}
.ls24_c00149{letter-spacing:0.396720px;}
.lsf_c00149{letter-spacing:0.410640px;}
.ls14_c00149{letter-spacing:0.417600px;}
.ls1f_c00149{letter-spacing:0.438480px;}
.ls47_c00149{letter-spacing:0.445440px;}
.ls51_c00149{letter-spacing:0.452400px;}
.ls1b_c00149{letter-spacing:0.459360px;}
.ls4a_c00149{letter-spacing:0.473280px;}
.ls27_c00149{letter-spacing:0.480240px;}
.ls11_c00149{letter-spacing:0.494160px;}
.ls4d_c00149{letter-spacing:0.501120px;}
.ls5_c00149{letter-spacing:0.508080px;}
.lsb_c00149{letter-spacing:0.542880px;}
.ls19_c00149{letter-spacing:0.549840px;}
.ls31_c00149{letter-spacing:0.556800px;}
.ls39_c00149{letter-spacing:0.591600px;}
.ls30_c00149{letter-spacing:0.603420px;}
.lsa_c00149{letter-spacing:0.640320px;}
.ls0_c00149{letter-spacing:0.682080px;}
.ls53_c00149{letter-spacing:0.737760px;}
.ls3b_c00149{letter-spacing:0.745800px;}
.ls22_c00149{letter-spacing:0.758640px;}
.ls1c_c00149{letter-spacing:0.759360px;}
.ls50_c00149{letter-spacing:0.765600px;}
.ls2e_c00149{letter-spacing:0.800400px;}
.ls3e_c00149{letter-spacing:0.870000px;}
.ls8_c00149{letter-spacing:0.883920px;}
.ls48_c00149{letter-spacing:0.925680px;}
.ls2f_c00149{letter-spacing:0.942420px;}
.ls52_c00149{letter-spacing:0.995280px;}
.ls45_c00149{letter-spacing:1.002240px;}
.ls37_c00149{letter-spacing:1.050960px;}
.ls29_c00149{letter-spacing:1.057680px;}
.ls28_c00149{letter-spacing:1.057920px;}
.ls46_c00149{letter-spacing:1.120560px;}
.ls3d_c00149{letter-spacing:1.139040px;}
.ls9_c00149{letter-spacing:1.211040px;}
.ls16_c00149{letter-spacing:1.240740px;}
.ls1d_c00149{letter-spacing:1.392000px;}
.ls33_c00149{letter-spacing:1.398960px;}
.ls2b_c00149{letter-spacing:1.607760px;}
.ls3c_c00149{letter-spacing:1.674660px;}
.lsc_c00149{letter-spacing:1.712160px;}
.ls3_c00149{letter-spacing:1.983600px;}
.ls38_c00149{letter-spacing:2.255040px;}
.ls1a_c00149{letter-spacing:2.672640px;}
.ls78_c00149{letter-spacing:2.784000px;}
.ls44_c00149{letter-spacing:2.888400px;}
.ls74_c00149{letter-spacing:3.480000px;}
.ls9b_c00149{letter-spacing:3.750000px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{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__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00149{word-spacing:-0.359400px;}
.ws5_c00149{word-spacing:0.000000px;}
.ws3_c00149{word-spacing:1.854780px;}
.ws0_c00149{word-spacing:6.877440px;}
.ws1_c00149{word-spacing:7.252200px;}
.ws4_c00149{word-spacing:22.889640px;}
._13_c00149{margin-left:-8.686080px;}
._11_c00149{margin-left:-7.085280px;}
._e_c00149{margin-left:-5.373120px;}
._12_c00149{margin-left:-3.051600px;}
._d_c00149{margin-left:-1.426800px;}
._f_c00149{width:1.392000px;}
._9_c00149{width:3.271200px;}
._8_c00149{width:4.691040px;}
._a_c00149{width:6.131760px;}
._b_c00149{width:7.147920px;}
._c_c00149{width:8.706960px;}
._6_c00149{width:10.286880px;}
._0_c00149{width:11.539680px;}
._10_c00149{width:12.973440px;}
._7_c00149{width:14.560320px;}
._1_c00149{width:16.557840px;}
._3_c00149{width:18.680640px;}
._2_c00149{width:19.773360px;}
._4_c00149{width:21.304560px;}
._5_c00149{width:23.817120px;}
._15_c00149{width:25.090800px;}
._14_c00149{width:28.570800px;}
.fc0_c00149{color:transparent;}
.fs5_c00149{font-size:58.200000px;}
.fs0_c00149{font-size:67.200000px;}
.fs3_c00149{font-size:67.800000px;}
.fs2_c00149{font-size:69.000000px;}
.fs1_c00149{font-size:69.600000px;}
.fs4_c00149{font-size:75.000000px;}
.y0_c00149{bottom:0.000000px;}
.y1e_c00149{bottom:73.815006px;}
.y1d_c00149{bottom:149.760006px;}
.y1b_c00149{bottom:181.072206px;}
.y1c_c00149{bottom:181.080006px;}
.y1a_c00149{bottom:212.409606px;}
.y19_c00149{bottom:243.364206px;}
.y18_c00149{bottom:275.049606px;}
.y17_c00149{bottom:306.735006px;}
.y16_c00149{bottom:369.375006px;}
.y14_c00149{bottom:431.633406px;}
.y15_c00149{bottom:431.640006px;}
.y12_c00149{bottom:493.555806px;}
.y13_c00149{bottom:493.560006px;}
.y11_c00149{bottom:525.606606px;}
.y10_c00149{bottom:588.612006px;}
.yf_c00149{bottom:620.280006px;}
.ye_c00149{bottom:683.280006px;}
.yd_c00149{bottom:745.935006px;}
.yc_c00149{bottom:777.255006px;}
.yb_c00149{bottom:808.575006px;}
.ya_c00149{bottom:839.895006px;}
.y9_c00149{bottom:901.800006px;}
.y8_c00149{bottom:932.775006px;}
.y7_c00149{bottom:995.409606px;}
.y6_c00149{bottom:1027.095006px;}
.y5_c00149{bottom:1058.415006px;}
.y4_c00149{bottom:1058.421606px;}
.y3_c00149{bottom:1089.741606px;}
.y2_c00149{bottom:1121.775006px;}
.y1_c00149{bottom:1197.360006px;}
.h7_c00149{height:57.120117px;}
.h2_c00149{height:65.953125px;}
.h5_c00149{height:67.719727px;}
.h3_c00149{height:68.308594px;}
.h4_c00149{height:71.964844px;}
.h6_c00149{height:73.608398px;}
.h1_c00149{height:1263.000000px;}
.h0_c00149{height:1263.240006px;}
.w1_c00149{width:892.500000px;}
.w0_c00149{width:892.799998px;}
.x0_c00149{left:0.000000px;}
.x16_c00149{left:117.568199px;}
.xe_c00149{left:119.264398px;}
.x9_c00149{left:120.424798px;}
.x2_c00149{left:121.501798px;}
.x1_c00149{left:123.044999px;}
.x15_c00149{left:172.214999px;}
.xd_c00149{left:173.324998px;}
.x5_c00149{left:175.124998px;}
.xc_c00149{left:202.499998px;}
.xa_c00149{left:216.329998px;}
.x10_c00149{left:231.644999px;}
.xb_c00149{left:245.279998px;}
.x11_c00149{left:259.094999px;}
.xf_c00149{left:280.231798px;}
.x17_c00149{left:281.804999px;}
.x18_c00149{left:305.114999px;}
.x12_c00149{left:396.119999px;}
.x6_c00149{left:414.614999px;}
.x13_c00149{left:421.004998px;}
.x1a_c00149{left:422.489999px;}
.x7_c00149{left:448.754998px;}
.x14_c00149{left:556.739998px;}
.x3_c00149{left:593.099999px;}
.x4_c00149{left:614.534999px;}
.x19_c00149{left:615.929999px;}
.x8_c00149{left:732.149999px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls7e_c00149{letter-spacing:-2.165333pt;}
.ls63_c00149{letter-spacing:-2.146667pt;}
.ls54_c00149{letter-spacing:-2.090667pt;}
.ls88_c00149{letter-spacing:-1.985920pt;}
.ls8c_c00149{letter-spacing:-1.899307pt;}
.ls6c_c00149{letter-spacing:-1.818880pt;}
.ls79_c00149{letter-spacing:-1.664213pt;}
.ls8a_c00149{letter-spacing:-1.577600pt;}
.ls9c_c00149{letter-spacing:-1.559040pt;}
.ls56_c00149{letter-spacing:-1.466240pt;}
.ls66_c00149{letter-spacing:-1.361067pt;}
.ls75_c00149{letter-spacing:-1.311573pt;}
.ls85_c00149{letter-spacing:-1.268267pt;}
.ls7b_c00149{letter-spacing:-1.169280pt;}
.ls8b_c00149{letter-spacing:-1.150720pt;}
.ls90_c00149{letter-spacing:-1.113600pt;}
.ls7c_c00149{letter-spacing:-1.082667pt;}
.ls9a_c00149{letter-spacing:-1.076480pt;}
.ls7d_c00149{letter-spacing:-1.070293pt;}
.ls8f_c00149{letter-spacing:-1.045547pt;}
.ls72_c00149{letter-spacing:-1.039360pt;}
.ls81_c00149{letter-spacing:-0.983680pt;}
.ls9d_c00149{letter-spacing:-0.958933pt;}
.ls9f_c00149{letter-spacing:-0.934187pt;}
.ls92_c00149{letter-spacing:-0.686720pt;}
.ls83_c00149{letter-spacing:-0.612480pt;}
.ls6e_c00149{letter-spacing:-0.556800pt;}
.ls6b_c00149{letter-spacing:-0.519680pt;}
.ls95_c00149{letter-spacing:-0.488747pt;}
.lsa0_c00149{letter-spacing:-0.470773pt;}
.ls93_c00149{letter-spacing:-0.464000pt;}
.ls61_c00149{letter-spacing:-0.426880pt;}
.ls6d_c00149{letter-spacing:-0.420693pt;}
.ls8e_c00149{letter-spacing:-0.414507pt;}
.ls5d_c00149{letter-spacing:-0.408320pt;}
.ls55_c00149{letter-spacing:-0.402133pt;}
.ls7a_c00149{letter-spacing:-0.395947pt;}
.ls6a_c00149{letter-spacing:-0.389760pt;}
.ls8d_c00149{letter-spacing:-0.383573pt;}
.ls68_c00149{letter-spacing:-0.371200pt;}
.ls59_c00149{letter-spacing:-0.365013pt;}
.ls98_c00149{letter-spacing:-0.358827pt;}
.ls97_c00149{letter-spacing:-0.346453pt;}
.ls64_c00149{letter-spacing:-0.340267pt;}
.ls77_c00149{letter-spacing:-0.334080pt;}
.ls5b_c00149{letter-spacing:-0.303147pt;}
.ls70_c00149{letter-spacing:-0.296960pt;}
.ls9e_c00149{letter-spacing:-0.284587pt;}
.ls73_c00149{letter-spacing:-0.278400pt;}
.ls71_c00149{letter-spacing:-0.272213pt;}
.ls94_c00149{letter-spacing:-0.259840pt;}
.ls57_c00149{letter-spacing:-0.235093pt;}
.ls6f_c00149{letter-spacing:-0.228907pt;}
.ls86_c00149{letter-spacing:-0.222720pt;}
.ls5e_c00149{letter-spacing:-0.204160pt;}
.ls91_c00149{letter-spacing:-0.197973pt;}
.ls5f_c00149{letter-spacing:-0.191787pt;}
.ls69_c00149{letter-spacing:-0.185600pt;}
.ls58_c00149{letter-spacing:-0.179413pt;}
.ls89_c00149{letter-spacing:-0.167040pt;}
.ls67_c00149{letter-spacing:-0.154667pt;}
.ls96_c00149{letter-spacing:-0.142293pt;}
.ls99_c00149{letter-spacing:-0.129920pt;}
.ls82_c00149{letter-spacing:-0.117547pt;}
.ls65_c00149{letter-spacing:-0.111360pt;}
.ls87_c00149{letter-spacing:-0.092800pt;}
.ls5c_c00149{letter-spacing:-0.086613pt;}
.ls76_c00149{letter-spacing:-0.080427pt;}
.ls7f_c00149{letter-spacing:-0.049493pt;}
.ls84_c00149{letter-spacing:-0.024747pt;}
.ls62_c00149{letter-spacing:-0.018560pt;}
.ls80_c00149{letter-spacing:-0.012373pt;}
.ls5a_c00149{letter-spacing:-0.006187pt;}
.ls60_c00149{letter-spacing:0.000000pt;}
.ls13_c00149{letter-spacing:0.006187pt;}
.ls3a_c00149{letter-spacing:0.012373pt;}
.ls21_c00149{letter-spacing:0.024747pt;}
.ls4c_c00149{letter-spacing:0.030933pt;}
.ls1e_c00149{letter-spacing:0.037120pt;}
.ls43_c00149{letter-spacing:0.043307pt;}
.ls20_c00149{letter-spacing:0.049493pt;}
.ls6_c00149{letter-spacing:0.055680pt;}
.ls25_c00149{letter-spacing:0.068053pt;}
.ls2_c00149{letter-spacing:0.074240pt;}
.ls36_c00149{letter-spacing:0.086613pt;}
.ls23_c00149{letter-spacing:0.092800pt;}
.ls42_c00149{letter-spacing:0.098987pt;}
.ls26_c00149{letter-spacing:0.117547pt;}
.ls32_c00149{letter-spacing:0.123733pt;}
.ls7_c00149{letter-spacing:0.129920pt;}
.ls1_c00149{letter-spacing:0.142293pt;}
.ls10_c00149{letter-spacing:0.148480pt;}
.lsd_c00149{letter-spacing:0.154667pt;}
.ls4f_c00149{letter-spacing:0.167040pt;}
.ls4_c00149{letter-spacing:0.185600pt;}
.ls2d_c00149{letter-spacing:0.191787pt;}
.ls2c_c00149{letter-spacing:0.197973pt;}
.lse_c00149{letter-spacing:0.204160pt;}
.ls4b_c00149{letter-spacing:0.210347pt;}
.ls3f_c00149{letter-spacing:0.216533pt;}
.ls34_c00149{letter-spacing:0.228907pt;}
.ls40_c00149{letter-spacing:0.241280pt;}
.ls41_c00149{letter-spacing:0.259840pt;}
.ls17_c00149{letter-spacing:0.272213pt;}
.ls2a_c00149{letter-spacing:0.278400pt;}
.ls4e_c00149{letter-spacing:0.284587pt;}
.ls18_c00149{letter-spacing:0.309333pt;}
.ls35_c00149{letter-spacing:0.321707pt;}
.ls15_c00149{letter-spacing:0.334080pt;}
.ls12_c00149{letter-spacing:0.340267pt;}
.ls49_c00149{letter-spacing:0.346453pt;}
.ls24_c00149{letter-spacing:0.352640pt;}
.lsf_c00149{letter-spacing:0.365013pt;}
.ls14_c00149{letter-spacing:0.371200pt;}
.ls1f_c00149{letter-spacing:0.389760pt;}
.ls47_c00149{letter-spacing:0.395947pt;}
.ls51_c00149{letter-spacing:0.402133pt;}
.ls1b_c00149{letter-spacing:0.408320pt;}
.ls4a_c00149{letter-spacing:0.420693pt;}
.ls27_c00149{letter-spacing:0.426880pt;}
.ls11_c00149{letter-spacing:0.439253pt;}
.ls4d_c00149{letter-spacing:0.445440pt;}
.ls5_c00149{letter-spacing:0.451627pt;}
.lsb_c00149{letter-spacing:0.482560pt;}
.ls19_c00149{letter-spacing:0.488747pt;}
.ls31_c00149{letter-spacing:0.494933pt;}
.ls39_c00149{letter-spacing:0.525867pt;}
.ls30_c00149{letter-spacing:0.536373pt;}
.lsa_c00149{letter-spacing:0.569173pt;}
.ls0_c00149{letter-spacing:0.606293pt;}
.ls53_c00149{letter-spacing:0.655787pt;}
.ls3b_c00149{letter-spacing:0.662933pt;}
.ls22_c00149{letter-spacing:0.674347pt;}
.ls1c_c00149{letter-spacing:0.674987pt;}
.ls50_c00149{letter-spacing:0.680533pt;}
.ls2e_c00149{letter-spacing:0.711467pt;}
.ls3e_c00149{letter-spacing:0.773333pt;}
.ls8_c00149{letter-spacing:0.785707pt;}
.ls48_c00149{letter-spacing:0.822827pt;}
.ls2f_c00149{letter-spacing:0.837707pt;}
.ls52_c00149{letter-spacing:0.884693pt;}
.ls45_c00149{letter-spacing:0.890880pt;}
.ls37_c00149{letter-spacing:0.934187pt;}
.ls29_c00149{letter-spacing:0.940160pt;}
.ls28_c00149{letter-spacing:0.940373pt;}
.ls46_c00149{letter-spacing:0.996053pt;}
.ls3d_c00149{letter-spacing:1.012480pt;}
.ls9_c00149{letter-spacing:1.076480pt;}
.ls16_c00149{letter-spacing:1.102880pt;}
.ls1d_c00149{letter-spacing:1.237333pt;}
.ls33_c00149{letter-spacing:1.243520pt;}
.ls2b_c00149{letter-spacing:1.429120pt;}
.ls3c_c00149{letter-spacing:1.488587pt;}
.lsc_c00149{letter-spacing:1.521920pt;}
.ls3_c00149{letter-spacing:1.763200pt;}
.ls38_c00149{letter-spacing:2.004480pt;}
.ls1a_c00149{letter-spacing:2.375680pt;}
.ls78_c00149{letter-spacing:2.474667pt;}
.ls44_c00149{letter-spacing:2.567467pt;}
.ls74_c00149{letter-spacing:3.093333pt;}
.ls9b_c00149{letter-spacing:3.333333pt;}
.ws2_c00149{word-spacing:-0.319467pt;}
.ws5_c00149{word-spacing:0.000000pt;}
.ws3_c00149{word-spacing:1.648693pt;}
.ws0_c00149{word-spacing:6.113280pt;}
.ws1_c00149{word-spacing:6.446400pt;}
.ws4_c00149{word-spacing:20.346347pt;}
._13_c00149{margin-left:-7.720960pt;}
._11_c00149{margin-left:-6.298027pt;}
._e_c00149{margin-left:-4.776107pt;}
._12_c00149{margin-left:-2.712533pt;}
._d_c00149{margin-left:-1.268267pt;}
._f_c00149{width:1.237333pt;}
._9_c00149{width:2.907733pt;}
._8_c00149{width:4.169813pt;}
._a_c00149{width:5.450453pt;}
._b_c00149{width:6.353707pt;}
._c_c00149{width:7.739520pt;}
._6_c00149{width:9.143893pt;}
._0_c00149{width:10.257493pt;}
._10_c00149{width:11.531947pt;}
._7_c00149{width:12.942507pt;}
._1_c00149{width:14.718080pt;}
._3_c00149{width:16.605013pt;}
._2_c00149{width:17.576320pt;}
._4_c00149{width:18.937387pt;}
._5_c00149{width:21.170773pt;}
._15_c00149{width:22.302933pt;}
._14_c00149{width:25.396267pt;}
.fs5_c00149{font-size:51.733333pt;}
.fs0_c00149{font-size:59.733333pt;}
.fs3_c00149{font-size:60.266667pt;}
.fs2_c00149{font-size:61.333333pt;}
.fs1_c00149{font-size:61.866667pt;}
.fs4_c00149{font-size:66.666667pt;}
.y0_c00149{bottom:0.000000pt;}
.y1e_c00149{bottom:65.613339pt;}
.y1d_c00149{bottom:133.120005pt;}
.y1b_c00149{bottom:160.953072pt;}
.y1c_c00149{bottom:160.960005pt;}
.y1a_c00149{bottom:188.808539pt;}
.y19_c00149{bottom:216.323739pt;}
.y18_c00149{bottom:244.488539pt;}
.y17_c00149{bottom:272.653339pt;}
.y16_c00149{bottom:328.333339pt;}
.y14_c00149{bottom:383.674139pt;}
.y15_c00149{bottom:383.680005pt;}
.y12_c00149{bottom:438.716272pt;}
.y13_c00149{bottom:438.720005pt;}
.y11_c00149{bottom:467.205872pt;}
.y10_c00149{bottom:523.210672pt;}
.yf_c00149{bottom:551.360005pt;}
.ye_c00149{bottom:607.360005pt;}
.yd_c00149{bottom:663.053339pt;}
.yc_c00149{bottom:690.893339pt;}
.yb_c00149{bottom:718.733339pt;}
.ya_c00149{bottom:746.573339pt;}
.y9_c00149{bottom:801.600005pt;}
.y8_c00149{bottom:829.133339pt;}
.y7_c00149{bottom:884.808539pt;}
.y6_c00149{bottom:912.973339pt;}
.y5_c00149{bottom:940.813339pt;}
.y4_c00149{bottom:940.819205pt;}
.y3_c00149{bottom:968.659205pt;}
.y2_c00149{bottom:997.133339pt;}
.y1_c00149{bottom:1064.320005pt;}
.h7_c00149{height:50.773437pt;}
.h2_c00149{height:58.625000pt;}
.h5_c00149{height:60.195312pt;}
.h3_c00149{height:60.718750pt;}
.h4_c00149{height:63.968750pt;}
.h6_c00149{height:65.429688pt;}
.h1_c00149{height:1122.666667pt;}
.h0_c00149{height:1122.880005pt;}
.w1_c00149{width:793.333333pt;}
.w0_c00149{width:793.599999pt;}
.x0_c00149{left:0.000000pt;}
.x16_c00149{left:104.505065pt;}
.xe_c00149{left:106.012799pt;}
.x9_c00149{left:107.044265pt;}
.x2_c00149{left:108.001599pt;}
.x1_c00149{left:109.373332pt;}
.x15_c00149{left:153.079999pt;}
.xd_c00149{left:154.066665pt;}
.x5_c00149{left:155.666665pt;}
.xc_c00149{left:179.999999pt;}
.xa_c00149{left:192.293332pt;}
.x10_c00149{left:205.906665pt;}
.xb_c00149{left:218.026665pt;}
.x11_c00149{left:230.306665pt;}
.xf_c00149{left:249.094932pt;}
.x17_c00149{left:250.493332pt;}
.x18_c00149{left:271.213332pt;}
.x12_c00149{left:352.106665pt;}
.x6_c00149{left:368.546665pt;}
.x13_c00149{left:374.226665pt;}
.x1a_c00149{left:375.546665pt;}
.x7_c00149{left:398.893332pt;}
.x14_c00149{left:494.879999pt;}
.x3_c00149{left:527.199999pt;}
.x4_c00149{left:546.253332pt;}
.x19_c00149{left:547.493332pt;}
.x8_c00149{left:650.799999pt;}
}





/* 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_c00150 {
    display:none;
  }
  .loading-indicator_c00150.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00150 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_c00150 { 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_c00150" -> "#page-container .classname_c00150")
 */
.pf_c00150 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00150 { /* 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_c00150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00150 { /* 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_c00150 { /* 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_c00150 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00150 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00150 {overflow:visible;}
  }
}
.c_c00150 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00150 { /* 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_c00150:after { /* webkit #35443 */
  content: '';
}
.t_c00150:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00150 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 */
}
.__c00150 { /* 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_c00150 { /* info for Javascript */
  display:none;
}
.l_c00150 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00150 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00150 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00150: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_c00150 {
    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_c00150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00150.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_c00150 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00150;src:url('chunks/assets/font_eef4bf8468847694ed57eec1.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.284668;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_c00150;src:url('chunks/assets/font_bfec9fb8a92e0d717d71404e.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.284180;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_c00150{transform:matrix(0.136217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136217,0.000000,0.000000,0.250000,0,0);}
.m4_c00150{transform:matrix(0.246002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246002,0.000000,0.000000,0.250000,0,0);}
.m3_c00150{transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);}
.ma_c00150{transform:matrix(0.246106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246106,0.000000,0.000000,0.250000,0,0);}
.m6_c00150{transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);}
.m1_c00150{transform:matrix(0.248462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248462,0.000000,0.000000,0.250000,0,0);}
.m8_c00150{transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);}
.m9_c00150{transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);}
.m0_c00150{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);}
.mb_c00150{transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);}
.m7_c00150{transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);}
.m5_c00150{transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls87_c00150{letter-spacing:-2.667000px;}
.ls7a_c00150{letter-spacing:-2.520000px;}
.ls75_c00150{letter-spacing:-2.373000px;}
.ls86_c00150{letter-spacing:-2.110740px;}
.ls8a_c00150{letter-spacing:-1.891620px;}
.ls88_c00150{letter-spacing:-1.823820px;}
.ls73_c00150{letter-spacing:-1.796700px;}
.ls83_c00150{letter-spacing:-1.600080px;}
.ls76_c00150{letter-spacing:-1.403460px;}
.ls90_c00150{letter-spacing:-1.220400px;}
.ls9a_c00150{letter-spacing:-1.117200px;}
.ls78_c00150{letter-spacing:-1.078020px;}
.ls96_c00150{letter-spacing:-0.969540px;}
.ls89_c00150{letter-spacing:-0.949200px;}
.ls95_c00150{letter-spacing:-0.928860px;}
.ls7f_c00150{letter-spacing:-0.908520px;}
.ls94_c00150{letter-spacing:-0.867840px;}
.ls71_c00150{letter-spacing:-0.847500px;}
.ls8b_c00150{letter-spacing:-0.827160px;}
.ls8e_c00150{letter-spacing:-0.820380px;}
.ls82_c00150{letter-spacing:-0.671220px;}
.ls6e_c00150{letter-spacing:-0.657660px;}
.ls98_c00150{letter-spacing:-0.616980px;}
.ls91_c00150{letter-spacing:-0.569520px;}
.ls6b_c00150{letter-spacing:-0.549180px;}
.ls80_c00150{letter-spacing:-0.413580px;}
.ls81_c00150{letter-spacing:-0.400020px;}
.ls69_c00150{letter-spacing:-0.352560px;}
.ls68_c00150{letter-spacing:-0.264420px;}
.ls97_c00150{letter-spacing:-0.250860px;}
.ls99_c00150{letter-spacing:-0.244080px;}
.ls7d_c00150{letter-spacing:-0.237300px;}
.ls93_c00150{letter-spacing:-0.210180px;}
.ls8c_c00150{letter-spacing:-0.169500px;}
.ls6c_c00150{letter-spacing:-0.162720px;}
.ls8f_c00150{letter-spacing:-0.135600px;}
.ls7b_c00150{letter-spacing:-0.128820px;}
.ls92_c00150{letter-spacing:-0.115260px;}
.ls74_c00150{letter-spacing:-0.067800px;}
.ls67_c00150{letter-spacing:-0.033900px;}
.ls6d_c00150{letter-spacing:-0.013560px;}
.ls6f_c00150{letter-spacing:-0.006780px;}
.ls6a_c00150{letter-spacing:0.000000px;}
.ls2c_c00150{letter-spacing:0.013560px;}
.ls15_c00150{letter-spacing:0.020340px;}
.ls5f_c00150{letter-spacing:0.027120px;}
.ls14_c00150{letter-spacing:0.033900px;}
.ls84_c00150{letter-spacing:0.040680px;}
.ls48_c00150{letter-spacing:0.054240px;}
.ls40_c00150{letter-spacing:0.081360px;}
.ls7c_c00150{letter-spacing:0.108480px;}
.ls1d_c00150{letter-spacing:0.115260px;}
.ls5e_c00150{letter-spacing:0.128820px;}
.ls70_c00150{letter-spacing:0.176280px;}
.ls38_c00150{letter-spacing:0.183060px;}
.ls2f_c00150{letter-spacing:0.196620px;}
.ls77_c00150{letter-spacing:0.210180px;}
.ls5_c00150{letter-spacing:0.244080px;}
.ls44_c00150{letter-spacing:0.264420px;}
.ls25_c00150{letter-spacing:0.271200px;}
.ls0_c00150{letter-spacing:0.277980px;}
.ls85_c00150{letter-spacing:0.284760px;}
.ls20_c00150{letter-spacing:0.291540px;}
.lsd_c00150{letter-spacing:0.298320px;}
.ls58_c00150{letter-spacing:0.311880px;}
.ls35_c00150{letter-spacing:0.325440px;}
.ls5d_c00150{letter-spacing:0.339000px;}
.ls52_c00150{letter-spacing:0.372900px;}
.lsb_c00150{letter-spacing:0.386460px;}
.ls1c_c00150{letter-spacing:0.393240px;}
.ls1a_c00150{letter-spacing:0.400020px;}
.ls42_c00150{letter-spacing:0.413580px;}
.ls36_c00150{letter-spacing:0.427140px;}
.ls4b_c00150{letter-spacing:0.433920px;}
.ls2b_c00150{letter-spacing:0.440700px;}
.ls3e_c00150{letter-spacing:0.447480px;}
.ls72_c00150{letter-spacing:0.474600px;}
.ls4e_c00150{letter-spacing:0.488160px;}
.ls4c_c00150{letter-spacing:0.494940px;}
.ls5c_c00150{letter-spacing:0.501720px;}
.ls57_c00150{letter-spacing:0.508500px;}
.ls56_c00150{letter-spacing:0.535620px;}
.ls8d_c00150{letter-spacing:0.542400px;}
.ls53_c00150{letter-spacing:0.549180px;}
.ls33_c00150{letter-spacing:0.569520px;}
.ls45_c00150{letter-spacing:0.576300px;}
.ls65_c00150{letter-spacing:0.584640px;}
.ls26_c00150{letter-spacing:0.603420px;}
.ls24_c00150{letter-spacing:0.630540px;}
.ls79_c00150{letter-spacing:0.650880px;}
.lsf_c00150{letter-spacing:0.657660px;}
.ls4d_c00150{letter-spacing:0.678000px;}
.ls7_c00150{letter-spacing:0.684780px;}
.ls28_c00150{letter-spacing:0.698880px;}
.ls29_c00150{letter-spacing:0.712320px;}
.ls64_c00150{letter-spacing:0.718680px;}
.ls27_c00150{letter-spacing:0.725460px;}
.ls2a_c00150{letter-spacing:0.732240px;}
.ls4f_c00150{letter-spacing:0.732480px;}
.ls39_c00150{letter-spacing:0.739020px;}
.ls2_c00150{letter-spacing:0.752580px;}
.ls43_c00150{letter-spacing:0.766140px;}
.ls3c_c00150{letter-spacing:0.772920px;}
.ls21_c00150{letter-spacing:0.806820px;}
.ls8_c00150{letter-spacing:0.820380px;}
.ls16_c00150{letter-spacing:0.833940px;}
.ls23_c00150{letter-spacing:0.847500px;}
.ls3a_c00150{letter-spacing:0.853440px;}
.ls60_c00150{letter-spacing:0.860160px;}
.ls12_c00150{letter-spacing:0.873600px;}
.ls37_c00150{letter-spacing:0.881400px;}
.ls18_c00150{letter-spacing:0.888180px;}
.ls30_c00150{letter-spacing:0.922080px;}
.ls46_c00150{letter-spacing:0.928860px;}
.ls49_c00150{letter-spacing:0.942420px;}
.ls9_c00150{letter-spacing:0.949200px;}
.ls4a_c00150{letter-spacing:0.955980px;}
.ls54_c00150{letter-spacing:1.003440px;}
.ls1f_c00150{letter-spacing:1.010220px;}
.ls4_c00150{letter-spacing:1.044120px;}
.ls63_c00150{letter-spacing:1.048320px;}
.ls5a_c00150{letter-spacing:1.075200px;}
.ls5b_c00150{letter-spacing:1.084800px;}
.ls1b_c00150{letter-spacing:1.091580px;}
.lse_c00150{letter-spacing:1.105140px;}
.ls3_c00150{letter-spacing:1.111920px;}
.ls2e_c00150{letter-spacing:1.132260px;}
.ls22_c00150{letter-spacing:1.159380px;}
.ls41_c00150{letter-spacing:1.179720px;}
.lsa_c00150{letter-spacing:1.186500px;}
.ls61_c00150{letter-spacing:1.236480px;}
.ls50_c00150{letter-spacing:1.267860px;}
.ls2d_c00150{letter-spacing:1.288200px;}
.ls31_c00150{letter-spacing:1.290240px;}
.ls59_c00150{letter-spacing:1.294980px;}
.ls6_c00150{letter-spacing:1.362780px;}
.ls32_c00150{letter-spacing:1.389900px;}
.ls19_c00150{letter-spacing:1.444140px;}
.lsc_c00150{letter-spacing:1.450920px;}
.ls10_c00150{letter-spacing:1.464480px;}
.ls47_c00150{letter-spacing:1.484820px;}
.ls11_c00150{letter-spacing:1.491840px;}
.ls17_c00150{letter-spacing:1.545840px;}
.ls55_c00150{letter-spacing:1.674660px;}
.ls34_c00150{letter-spacing:1.932300px;}
.ls3b_c00150{letter-spacing:2.108580px;}
.ls3f_c00150{letter-spacing:2.162820px;}
.ls3d_c00150{letter-spacing:2.203500px;}
.ls1_c00150{letter-spacing:2.223840px;}
.ls13_c00150{letter-spacing:2.278080px;}
.ls62_c00150{letter-spacing:2.553600px;}
.ls66_c00150{letter-spacing:2.583900px;}
.ls1e_c00150{letter-spacing:2.637420px;}
.ls51_c00150{letter-spacing:2.874720px;}
.ls7e_c00150{letter-spacing:3.390000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{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__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00150{word-spacing:-17.673600px;}
.ws5_c00150{word-spacing:0.000000px;}
.ws3_c00150{word-spacing:0.175200px;}
.ws4_c00150{word-spacing:3.256320px;}
.ws1_c00150{word-spacing:4.083840px;}
.ws2_c00150{word-spacing:28.804800px;}
._a_c00150{margin-left:-5.193480px;}
._c_c00150{margin-left:-4.115460px;}
._6_c00150{margin-left:-2.535720px;}
._7_c00150{margin-left:-1.247520px;}
._5_c00150{width:1.722120px;}
._3_c00150{width:2.840820px;}
._1_c00150{width:4.325640px;}
._4_c00150{width:5.668080px;}
._0_c00150{width:6.739320px;}
._8_c00150{width:7.973280px;}
._2_c00150{width:9.593700px;}
._b_c00150{width:11.041020px;}
._9_c00150{width:13.282020px;}
.fc0_c00150{color:transparent;}
.fs5_c00150{font-size:57.000000px;}
.fs0_c00150{font-size:59.400000px;}
.fs2_c00150{font-size:67.200000px;}
.fs1_c00150{font-size:67.800000px;}
.fs3_c00150{font-size:72.000000px;}
.fs4_c00150{font-size:76.200000px;}
.y0_c00150{bottom:0.000000px;}
.y1f_c00150{bottom:68.415006px;}
.y1e_c00150{bottom:175.320006px;}
.y1d_c00150{bottom:206.280006px;}
.y1c_c00150{bottom:237.975006px;}
.y1a_c00150{bottom:268.912356px;}
.y1b_c00150{bottom:268.920006px;}
.y19_c00150{bottom:299.880006px;}
.y17_c00150{bottom:362.170206px;}
.y18_c00150{bottom:362.175006px;}
.y16_c00150{bottom:425.173356px;}
.y15_c00150{bottom:456.480006px;}
.y14_c00150{bottom:519.137406px;}
.y13_c00150{bottom:550.800006px;}
.y12_c00150{bottom:613.455006px;}
.y11_c00150{bottom:675.720456px;}
.y10_c00150{bottom:707.400006px;}
.yf_c00150{bottom:707.407356px;}
.yd_c00150{bottom:738.373356px;}
.ye_c00150{bottom:738.375006px;}
.yc_c00150{bottom:769.680006px;}
.yb_c00150{bottom:831.975006px;}
.ya_c00150{bottom:831.981456px;}
.y9_c00150{bottom:864.000006px;}
.y8_c00150{bottom:926.996406px;}
.y7_c00150{bottom:958.320006px;}
.y6_c00150{bottom:989.280006px;}
.y5_c00150{bottom:989.287356px;}
.y4_c00150{bottom:1020.255006px;}
.y3_c00150{bottom:1082.518506px;}
.y2_c00150{bottom:1114.215006px;}
.y1_c00150{bottom:1188.735006px;}
.h7_c00150{height:55.942383px;}
.h2_c00150{height:58.297852px;}
.h3_c00150{height:66.541992px;}
.h6_c00150{height:66.572592px;}
.h4_c00150{height:70.664062px;}
.h5_c00150{height:74.748926px;}
.h1_c00150{height:1263.000000px;}
.h0_c00150{height:1263.240006px;}
.w1_c00150{width:892.500000px;}
.w0_c00150{width:892.799998px;}
.x0_c00150{left:0.000000px;}
.x1_c00150{left:120.884999px;}
.x16_c00150{left:173.654999px;}
.x2_c00150{left:174.764998px;}
.xb_c00150{left:190.349998px;}
.xc_c00150{left:214.484998px;}
.xf_c00150{left:266.744999px;}
.x11_c00150{left:282.764998px;}
.x10_c00150{left:293.729999px;}
.x12_c00150{left:359.339999px;}
.x6_c00150{left:375.284999px;}
.x15_c00150{left:392.189999px;}
.x7_c00150{left:397.379999px;}
.x13_c00150{left:408.884999px;}
.x18_c00150{left:422.504998px;}
.x8_c00150{left:428.609998px;}
.xd_c00150{left:441.554999px;}
.x14_c00150{left:448.694999px;}
.xe_c00150{left:462.269998px;}
.x17_c00150{left:481.244999px;}
.x4_c00150{left:615.539999px;}
.x5_c00150{left:648.269998px;}
.x9_c00150{left:691.124998px;}
.xa_c00150{left:713.099999px;}
.x3_c00150{left:734.894999px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls87_c00150{letter-spacing:-2.370667pt;}
.ls7a_c00150{letter-spacing:-2.240000pt;}
.ls75_c00150{letter-spacing:-2.109333pt;}
.ls86_c00150{letter-spacing:-1.876213pt;}
.ls8a_c00150{letter-spacing:-1.681440pt;}
.ls88_c00150{letter-spacing:-1.621173pt;}
.ls73_c00150{letter-spacing:-1.597067pt;}
.ls83_c00150{letter-spacing:-1.422293pt;}
.ls76_c00150{letter-spacing:-1.247520pt;}
.ls90_c00150{letter-spacing:-1.084800pt;}
.ls9a_c00150{letter-spacing:-0.993067pt;}
.ls78_c00150{letter-spacing:-0.958240pt;}
.ls96_c00150{letter-spacing:-0.861813pt;}
.ls89_c00150{letter-spacing:-0.843733pt;}
.ls95_c00150{letter-spacing:-0.825653pt;}
.ls7f_c00150{letter-spacing:-0.807573pt;}
.ls94_c00150{letter-spacing:-0.771413pt;}
.ls71_c00150{letter-spacing:-0.753333pt;}
.ls8b_c00150{letter-spacing:-0.735253pt;}
.ls8e_c00150{letter-spacing:-0.729227pt;}
.ls82_c00150{letter-spacing:-0.596640pt;}
.ls6e_c00150{letter-spacing:-0.584587pt;}
.ls98_c00150{letter-spacing:-0.548427pt;}
.ls91_c00150{letter-spacing:-0.506240pt;}
.ls6b_c00150{letter-spacing:-0.488160pt;}
.ls80_c00150{letter-spacing:-0.367627pt;}
.ls81_c00150{letter-spacing:-0.355573pt;}
.ls69_c00150{letter-spacing:-0.313387pt;}
.ls68_c00150{letter-spacing:-0.235040pt;}
.ls97_c00150{letter-spacing:-0.222987pt;}
.ls99_c00150{letter-spacing:-0.216960pt;}
.ls7d_c00150{letter-spacing:-0.210933pt;}
.ls93_c00150{letter-spacing:-0.186827pt;}
.ls8c_c00150{letter-spacing:-0.150667pt;}
.ls6c_c00150{letter-spacing:-0.144640pt;}
.ls8f_c00150{letter-spacing:-0.120533pt;}
.ls7b_c00150{letter-spacing:-0.114507pt;}
.ls92_c00150{letter-spacing:-0.102453pt;}
.ls74_c00150{letter-spacing:-0.060267pt;}
.ls67_c00150{letter-spacing:-0.030133pt;}
.ls6d_c00150{letter-spacing:-0.012053pt;}
.ls6f_c00150{letter-spacing:-0.006027pt;}
.ls6a_c00150{letter-spacing:0.000000pt;}
.ls2c_c00150{letter-spacing:0.012053pt;}
.ls15_c00150{letter-spacing:0.018080pt;}
.ls5f_c00150{letter-spacing:0.024107pt;}
.ls14_c00150{letter-spacing:0.030133pt;}
.ls84_c00150{letter-spacing:0.036160pt;}
.ls48_c00150{letter-spacing:0.048213pt;}
.ls40_c00150{letter-spacing:0.072320pt;}
.ls7c_c00150{letter-spacing:0.096427pt;}
.ls1d_c00150{letter-spacing:0.102453pt;}
.ls5e_c00150{letter-spacing:0.114507pt;}
.ls70_c00150{letter-spacing:0.156693pt;}
.ls38_c00150{letter-spacing:0.162720pt;}
.ls2f_c00150{letter-spacing:0.174773pt;}
.ls77_c00150{letter-spacing:0.186827pt;}
.ls5_c00150{letter-spacing:0.216960pt;}
.ls44_c00150{letter-spacing:0.235040pt;}
.ls25_c00150{letter-spacing:0.241067pt;}
.ls0_c00150{letter-spacing:0.247093pt;}
.ls85_c00150{letter-spacing:0.253120pt;}
.ls20_c00150{letter-spacing:0.259147pt;}
.lsd_c00150{letter-spacing:0.265173pt;}
.ls58_c00150{letter-spacing:0.277227pt;}
.ls35_c00150{letter-spacing:0.289280pt;}
.ls5d_c00150{letter-spacing:0.301333pt;}
.ls52_c00150{letter-spacing:0.331467pt;}
.lsb_c00150{letter-spacing:0.343520pt;}
.ls1c_c00150{letter-spacing:0.349547pt;}
.ls1a_c00150{letter-spacing:0.355573pt;}
.ls42_c00150{letter-spacing:0.367627pt;}
.ls36_c00150{letter-spacing:0.379680pt;}
.ls4b_c00150{letter-spacing:0.385707pt;}
.ls2b_c00150{letter-spacing:0.391733pt;}
.ls3e_c00150{letter-spacing:0.397760pt;}
.ls72_c00150{letter-spacing:0.421867pt;}
.ls4e_c00150{letter-spacing:0.433920pt;}
.ls4c_c00150{letter-spacing:0.439947pt;}
.ls5c_c00150{letter-spacing:0.445973pt;}
.ls57_c00150{letter-spacing:0.452000pt;}
.ls56_c00150{letter-spacing:0.476107pt;}
.ls8d_c00150{letter-spacing:0.482133pt;}
.ls53_c00150{letter-spacing:0.488160pt;}
.ls33_c00150{letter-spacing:0.506240pt;}
.ls45_c00150{letter-spacing:0.512267pt;}
.ls65_c00150{letter-spacing:0.519680pt;}
.ls26_c00150{letter-spacing:0.536373pt;}
.ls24_c00150{letter-spacing:0.560480pt;}
.ls79_c00150{letter-spacing:0.578560pt;}
.lsf_c00150{letter-spacing:0.584587pt;}
.ls4d_c00150{letter-spacing:0.602667pt;}
.ls7_c00150{letter-spacing:0.608693pt;}
.ls28_c00150{letter-spacing:0.621227pt;}
.ls29_c00150{letter-spacing:0.633173pt;}
.ls64_c00150{letter-spacing:0.638827pt;}
.ls27_c00150{letter-spacing:0.644853pt;}
.ls2a_c00150{letter-spacing:0.650880pt;}
.ls4f_c00150{letter-spacing:0.651093pt;}
.ls39_c00150{letter-spacing:0.656907pt;}
.ls2_c00150{letter-spacing:0.668960pt;}
.ls43_c00150{letter-spacing:0.681013pt;}
.ls3c_c00150{letter-spacing:0.687040pt;}
.ls21_c00150{letter-spacing:0.717173pt;}
.ls8_c00150{letter-spacing:0.729227pt;}
.ls16_c00150{letter-spacing:0.741280pt;}
.ls23_c00150{letter-spacing:0.753333pt;}
.ls3a_c00150{letter-spacing:0.758613pt;}
.ls60_c00150{letter-spacing:0.764587pt;}
.ls12_c00150{letter-spacing:0.776533pt;}
.ls37_c00150{letter-spacing:0.783467pt;}
.ls18_c00150{letter-spacing:0.789493pt;}
.ls30_c00150{letter-spacing:0.819627pt;}
.ls46_c00150{letter-spacing:0.825653pt;}
.ls49_c00150{letter-spacing:0.837707pt;}
.ls9_c00150{letter-spacing:0.843733pt;}
.ls4a_c00150{letter-spacing:0.849760pt;}
.ls54_c00150{letter-spacing:0.891947pt;}
.ls1f_c00150{letter-spacing:0.897973pt;}
.ls4_c00150{letter-spacing:0.928107pt;}
.ls63_c00150{letter-spacing:0.931840pt;}
.ls5a_c00150{letter-spacing:0.955733pt;}
.ls5b_c00150{letter-spacing:0.964267pt;}
.ls1b_c00150{letter-spacing:0.970293pt;}
.lse_c00150{letter-spacing:0.982347pt;}
.ls3_c00150{letter-spacing:0.988373pt;}
.ls2e_c00150{letter-spacing:1.006453pt;}
.ls22_c00150{letter-spacing:1.030560pt;}
.ls41_c00150{letter-spacing:1.048640pt;}
.lsa_c00150{letter-spacing:1.054667pt;}
.ls61_c00150{letter-spacing:1.099093pt;}
.ls50_c00150{letter-spacing:1.126987pt;}
.ls2d_c00150{letter-spacing:1.145067pt;}
.ls31_c00150{letter-spacing:1.146880pt;}
.ls59_c00150{letter-spacing:1.151093pt;}
.ls6_c00150{letter-spacing:1.211360pt;}
.ls32_c00150{letter-spacing:1.235467pt;}
.ls19_c00150{letter-spacing:1.283680pt;}
.lsc_c00150{letter-spacing:1.289707pt;}
.ls10_c00150{letter-spacing:1.301760pt;}
.ls47_c00150{letter-spacing:1.319840pt;}
.ls11_c00150{letter-spacing:1.326080pt;}
.ls17_c00150{letter-spacing:1.374080pt;}
.ls55_c00150{letter-spacing:1.488587pt;}
.ls34_c00150{letter-spacing:1.717600pt;}
.ls3b_c00150{letter-spacing:1.874293pt;}
.ls3f_c00150{letter-spacing:1.922507pt;}
.ls3d_c00150{letter-spacing:1.958667pt;}
.ls1_c00150{letter-spacing:1.976747pt;}
.ls13_c00150{letter-spacing:2.024960pt;}
.ls62_c00150{letter-spacing:2.269867pt;}
.ls66_c00150{letter-spacing:2.296800pt;}
.ls1e_c00150{letter-spacing:2.344373pt;}
.ls51_c00150{letter-spacing:2.555307pt;}
.ls7e_c00150{letter-spacing:3.013333pt;}
.ws0_c00150{word-spacing:-15.709867pt;}
.ws5_c00150{word-spacing:0.000000pt;}
.ws3_c00150{word-spacing:0.155733pt;}
.ws4_c00150{word-spacing:2.894507pt;}
.ws1_c00150{word-spacing:3.630080pt;}
.ws2_c00150{word-spacing:25.604267pt;}
._a_c00150{margin-left:-4.616427pt;}
._c_c00150{margin-left:-3.658187pt;}
._6_c00150{margin-left:-2.253973pt;}
._7_c00150{margin-left:-1.108907pt;}
._5_c00150{width:1.530773pt;}
._3_c00150{width:2.525173pt;}
._1_c00150{width:3.845013pt;}
._4_c00150{width:5.038293pt;}
._0_c00150{width:5.990507pt;}
._8_c00150{width:7.087360pt;}
._2_c00150{width:8.527733pt;}
._b_c00150{width:9.814240pt;}
._9_c00150{width:11.806240pt;}
.fs5_c00150{font-size:50.666667pt;}
.fs0_c00150{font-size:52.800000pt;}
.fs2_c00150{font-size:59.733333pt;}
.fs1_c00150{font-size:60.266667pt;}
.fs3_c00150{font-size:64.000000pt;}
.fs4_c00150{font-size:67.733333pt;}
.y0_c00150{bottom:0.000000pt;}
.y1f_c00150{bottom:60.813339pt;}
.y1e_c00150{bottom:155.840005pt;}
.y1d_c00150{bottom:183.360005pt;}
.y1c_c00150{bottom:211.533339pt;}
.y1a_c00150{bottom:239.033205pt;}
.y1b_c00150{bottom:239.040005pt;}
.y19_c00150{bottom:266.560005pt;}
.y17_c00150{bottom:321.929072pt;}
.y18_c00150{bottom:321.933339pt;}
.y16_c00150{bottom:377.931872pt;}
.y15_c00150{bottom:405.760005pt;}
.y14_c00150{bottom:461.455472pt;}
.y13_c00150{bottom:489.600005pt;}
.y12_c00150{bottom:545.293339pt;}
.y11_c00150{bottom:600.640405pt;}
.y10_c00150{bottom:628.800005pt;}
.yf_c00150{bottom:628.806539pt;}
.yd_c00150{bottom:656.331872pt;}
.ye_c00150{bottom:656.333339pt;}
.yc_c00150{bottom:684.160005pt;}
.yb_c00150{bottom:739.533339pt;}
.ya_c00150{bottom:739.539072pt;}
.y9_c00150{bottom:768.000005pt;}
.y8_c00150{bottom:823.996805pt;}
.y7_c00150{bottom:851.840005pt;}
.y6_c00150{bottom:879.360005pt;}
.y5_c00150{bottom:879.366539pt;}
.y4_c00150{bottom:906.893339pt;}
.y3_c00150{bottom:962.238672pt;}
.y2_c00150{bottom:990.413339pt;}
.y1_c00150{bottom:1056.653339pt;}
.h7_c00150{height:49.726562pt;}
.h2_c00150{height:51.820312pt;}
.h3_c00150{height:59.148438pt;}
.h6_c00150{height:59.175637pt;}
.h4_c00150{height:62.812500pt;}
.h5_c00150{height:66.443490pt;}
.h1_c00150{height:1122.666667pt;}
.h0_c00150{height:1122.880005pt;}
.w1_c00150{width:793.333333pt;}
.w0_c00150{width:793.599999pt;}
.x0_c00150{left:0.000000pt;}
.x1_c00150{left:107.453332pt;}
.x16_c00150{left:154.359999pt;}
.x2_c00150{left:155.346665pt;}
.xb_c00150{left:169.199999pt;}
.xc_c00150{left:190.653332pt;}
.xf_c00150{left:237.106665pt;}
.x11_c00150{left:251.346665pt;}
.x10_c00150{left:261.093332pt;}
.x12_c00150{left:319.413332pt;}
.x6_c00150{left:333.586665pt;}
.x15_c00150{left:348.613332pt;}
.x7_c00150{left:353.226665pt;}
.x13_c00150{left:363.453332pt;}
.x18_c00150{left:375.559999pt;}
.x8_c00150{left:380.986665pt;}
.xd_c00150{left:392.493332pt;}
.x14_c00150{left:398.839999pt;}
.xe_c00150{left:410.906665pt;}
.x17_c00150{left:427.773332pt;}
.x4_c00150{left:547.146665pt;}
.x5_c00150{left:576.239999pt;}
.x9_c00150{left:614.333332pt;}
.xa_c00150{left:633.866665pt;}
.x3_c00150{left:653.239999pt;}
}





/* 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_c00151 {
    display:none;
  }
  .loading-indicator_c00151.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00151 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_c00151 { 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_c00151" -> "#page-container .classname_c00151")
 */
.pf_c00151 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00151 { /* 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_c00151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00151 { /* 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_c00151 { /* 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_c00151 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00151 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00151 {overflow:visible;}
  }
}
.c_c00151 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00151 { /* 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_c00151:after { /* webkit #35443 */
  content: '';
}
.t_c00151:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00151 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 */
}
.__c00151 { /* 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_c00151 { /* info for Javascript */
  display:none;
}
.l_c00151 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00151 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00151 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00151: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_c00151 {
    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_c00151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00151.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_c00151 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00151;src:url('chunks/assets/font_97d2618a501abbca56889665.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.284668;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_c00151;src:url('chunks/assets/font_faec6e9f79b0aa2447218b8a.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.284180;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;}
.m3_c00151{transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);}
.m7_c00151{transform:matrix(0.245563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245563,0.000000,0.000000,0.250000,0,0);}
.m2_c00151{transform:matrix(0.246257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246257,0.000000,0.000000,0.250000,0,0);}
.m0_c00151{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m4_c00151{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m9_c00151{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m6_c00151{transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);}
.m8_c00151{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m1_c00151{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);}
.m5_c00151{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls81_c00151{letter-spacing:-2.688000px;}
.ls61_c00151{letter-spacing:-2.415000px;}
.ls59_c00151{letter-spacing:-2.331000px;}
.ls70_c00151{letter-spacing:-2.100000px;}
.ls80_c00151{letter-spacing:-2.058240px;}
.ls88_c00151{letter-spacing:-1.593900px;}
.ls84_c00151{letter-spacing:-1.428300px;}
.ls67_c00151{letter-spacing:-1.393800px;}
.ls90_c00151{letter-spacing:-1.251300px;}
.ls66_c00151{letter-spacing:-1.110900px;}
.ls6c_c00151{letter-spacing:-1.083300px;}
.ls7d_c00151{letter-spacing:-0.945300px;}
.ls5f_c00151{letter-spacing:-0.883200px;}
.ls72_c00151{letter-spacing:-0.821100px;}
.ls78_c00151{letter-spacing:-0.800400px;}
.ls7a_c00151{letter-spacing:-0.786600px;}
.ls75_c00151{letter-spacing:-0.772800px;}
.ls65_c00151{letter-spacing:-0.703800px;}
.ls77_c00151{letter-spacing:-0.614100px;}
.ls85_c00151{letter-spacing:-0.579600px;}
.ls62_c00151{letter-spacing:-0.558900px;}
.ls76_c00151{letter-spacing:-0.531300px;}
.ls68_c00151{letter-spacing:-0.524400px;}
.ls83_c00151{letter-spacing:-0.517500px;}
.ls71_c00151{letter-spacing:-0.489900px;}
.ls86_c00151{letter-spacing:-0.469200px;}
.ls8b_c00151{letter-spacing:-0.434700px;}
.ls6b_c00151{letter-spacing:-0.372600px;}
.ls6d_c00151{letter-spacing:-0.360000px;}
.ls8e_c00151{letter-spacing:-0.345000px;}
.ls87_c00151{letter-spacing:-0.331200px;}
.ls8a_c00151{letter-spacing:-0.317400px;}
.ls69_c00151{letter-spacing:-0.303600px;}
.ls79_c00151{letter-spacing:-0.269100px;}
.ls74_c00151{letter-spacing:-0.262200px;}
.ls5b_c00151{letter-spacing:-0.234600px;}
.ls8c_c00151{letter-spacing:-0.207000px;}
.ls89_c00151{letter-spacing:-0.186300px;}
.ls8d_c00151{letter-spacing:-0.172500px;}
.ls5a_c00151{letter-spacing:-0.151800px;}
.ls8f_c00151{letter-spacing:-0.144900px;}
.ls6f_c00151{letter-spacing:-0.131100px;}
.ls5d_c00151{letter-spacing:-0.110400px;}
.ls7f_c00151{letter-spacing:-0.096600px;}
.ls64_c00151{letter-spacing:-0.075900px;}
.ls73_c00151{letter-spacing:-0.062100px;}
.ls6a_c00151{letter-spacing:-0.027600px;}
.ls63_c00151{letter-spacing:-0.020700px;}
.ls5c_c00151{letter-spacing:0.000000px;}
.ls7b_c00151{letter-spacing:0.006900px;}
.ls4c_c00151{letter-spacing:0.020700px;}
.ls2a_c00151{letter-spacing:0.041400px;}
.ls3_c00151{letter-spacing:0.048300px;}
.ls4e_c00151{letter-spacing:0.055200px;}
.ls10_c00151{letter-spacing:0.069000px;}
.ls50_c00151{letter-spacing:0.082800px;}
.ls57_c00151{letter-spacing:0.089700px;}
.ls20_c00151{letter-spacing:0.096600px;}
.ls1_c00151{letter-spacing:0.117300px;}
.ls46_c00151{letter-spacing:0.144900px;}
.ls31_c00151{letter-spacing:0.151800px;}
.ls21_c00151{letter-spacing:0.158700px;}
.ls30_c00151{letter-spacing:0.165600px;}
.ls1b_c00151{letter-spacing:0.172500px;}
.lsf_c00151{letter-spacing:0.179400px;}
.ls34_c00151{letter-spacing:0.186300px;}
.ls35_c00151{letter-spacing:0.220800px;}
.ls4b_c00151{letter-spacing:0.234600px;}
.ls32_c00151{letter-spacing:0.241500px;}
.ls1e_c00151{letter-spacing:0.248400px;}
.ls2b_c00151{letter-spacing:0.255300px;}
.ls24_c00151{letter-spacing:0.262200px;}
.ls12_c00151{letter-spacing:0.276000px;}
.ls15_c00151{letter-spacing:0.282900px;}
.ls53_c00151{letter-spacing:0.289800px;}
.ls42_c00151{letter-spacing:0.296700px;}
.lsc_c00151{letter-spacing:0.310500px;}
.ls22_c00151{letter-spacing:0.317400px;}
.ls51_c00151{letter-spacing:0.324300px;}
.lse_c00151{letter-spacing:0.331200px;}
.ls44_c00151{letter-spacing:0.345000px;}
.ls6_c00151{letter-spacing:0.351900px;}
.ls55_c00151{letter-spacing:0.358800px;}
.ls4_c00151{letter-spacing:0.372600px;}
.ls2f_c00151{letter-spacing:0.379500px;}
.ls3c_c00151{letter-spacing:0.400200px;}
.ls54_c00151{letter-spacing:0.414000px;}
.ls5_c00151{letter-spacing:0.434700px;}
.ls38_c00151{letter-spacing:0.441600px;}
.ls17_c00151{letter-spacing:0.448500px;}
.ls8_c00151{letter-spacing:0.462300px;}
.ls1d_c00151{letter-spacing:0.476100px;}
.ls82_c00151{letter-spacing:0.489900px;}
.ls13_c00151{letter-spacing:0.503700px;}
.ls25_c00151{letter-spacing:0.517500px;}
.ls2_c00151{letter-spacing:0.531300px;}
.ls26_c00151{letter-spacing:0.558900px;}
.ls27_c00151{letter-spacing:0.572700px;}
.ls5e_c00151{letter-spacing:0.579600px;}
.ls4a_c00151{letter-spacing:0.593400px;}
.ls39_c00151{letter-spacing:0.621000px;}
.ls2c_c00151{letter-spacing:0.634800px;}
.lsb_c00151{letter-spacing:0.641700px;}
.ls11_c00151{letter-spacing:0.648600px;}
.ls37_c00151{letter-spacing:0.669300px;}
.ls23_c00151{letter-spacing:0.683100px;}
.ls52_c00151{letter-spacing:0.696900px;}
.ls14_c00151{letter-spacing:0.759000px;}
.ls2d_c00151{letter-spacing:0.759360px;}
.ls9_c00151{letter-spacing:0.765900px;}
.ls3e_c00151{letter-spacing:0.766140px;}
.ls1a_c00151{letter-spacing:0.772800px;}
.ls40_c00151{letter-spacing:0.779700px;}
.ls18_c00151{letter-spacing:0.800400px;}
.ls58_c00151{letter-spacing:0.821100px;}
.ls29_c00151{letter-spacing:0.828000px;}
.ls2e_c00151{letter-spacing:0.834900px;}
.lsa_c00151{letter-spacing:0.848700px;}
.ls56_c00151{letter-spacing:0.855600px;}
.ls1f_c00151{letter-spacing:0.862500px;}
.ls47_c00151{letter-spacing:0.908520px;}
.ls33_c00151{letter-spacing:0.910800px;}
.ls45_c00151{letter-spacing:0.924600px;}
.ls19_c00151{letter-spacing:0.931500px;}
.ls3d_c00151{letter-spacing:0.942420px;}
.ls3f_c00151{letter-spacing:0.952200px;}
.ls60_c00151{letter-spacing:0.966000px;}
.lsd_c00151{letter-spacing:0.979800px;}
.ls48_c00151{letter-spacing:0.996660px;}
.ls49_c00151{letter-spacing:1.017000px;}
.ls3a_c00151{letter-spacing:1.057680px;}
.ls6e_c00151{letter-spacing:1.062600px;}
.ls1c_c00151{letter-spacing:1.097100px;}
.ls4d_c00151{letter-spacing:1.117800px;}
.ls0_c00151{letter-spacing:1.139040px;}
.ls28_c00151{letter-spacing:1.240740px;}
.ls4f_c00151{letter-spacing:1.262700px;}
.ls7_c00151{letter-spacing:1.311000px;}
.ls7e_c00151{letter-spacing:1.331700px;}
.ls41_c00151{letter-spacing:1.628400px;}
.ls36_c00151{letter-spacing:1.773300px;}
.ls3b_c00151{letter-spacing:1.952700px;}
.ls16_c00151{letter-spacing:2.539200px;}
.ls43_c00151{letter-spacing:2.559900px;}
.ls7c_c00151{letter-spacing:3.450000px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{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__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00151{word-spacing:-1.799400px;}
.ws6_c00151{word-spacing:0.000000px;}
.ws4_c00151{word-spacing:4.384860px;}
.ws0_c00151{word-spacing:5.609640px;}
.ws5_c00151{word-spacing:5.878200px;}
.ws1_c00151{word-spacing:11.197440px;}
.ws2_c00151{word-spacing:25.672200px;}
._14_c00151{margin-left:-5.685600px;}
._6_c00151{margin-left:-2.829000px;}
._7_c00151{margin-left:-1.683600px;}
._9_c00151{width:1.055700px;}
._8_c00151{width:2.249400px;}
._1_c00151{width:3.684600px;}
._2_c00151{width:5.313000px;}
._13_c00151{width:6.451200px;}
._4_c00151{width:7.541700px;}
._a_c00151{width:8.753100px;}
._0_c00151{width:9.912300px;}
._3_c00151{width:10.984800px;}
._5_c00151{width:13.047000px;}
._d_c00151{width:14.086500px;}
._b_c00151{width:15.559500px;}
._e_c00151{width:17.663100px;}
._c_c00151{width:19.596000px;}
._11_c00151{width:21.562500px;}
._f_c00151{width:23.494500px;}
._10_c00151{width:25.668000px;}
._12_c00151{width:27.255000px;}
._16_c00151{width:29.007600px;}
._15_c00151{width:30.442800px;}
._17_c00151{width:33.741000px;}
.fc0_c00151{color:transparent;}
.fs3_c00151{font-size:48.000000px;}
.fs6_c00151{font-size:58.200000px;}
.fs4_c00151{font-size:60.000000px;}
.fs0_c00151{font-size:66.600000px;}
.fs1_c00151{font-size:67.800000px;}
.fs2_c00151{font-size:69.000000px;}
.fs5_c00151{font-size:76.800000px;}
.y0_c00151{bottom:0.000000px;}
.y1c_c00151{bottom:73.095006px;}
.y1b_c00151{bottom:148.664256px;}
.y1a_c00151{bottom:180.007506px;}
.y19_c00151{bottom:211.333506px;}
.y18_c00151{bottom:242.280006px;}
.y17_c00151{bottom:305.280006px;}
.y16_c00151{bottom:368.280006px;}
.y15_c00151{bottom:368.283006px;}
.y14_c00151{bottom:430.935006px;}
.y13_c00151{bottom:462.975006px;}
.y12_c00151{bottom:525.613506px;}
.y11_c00151{bottom:556.560006px;}
.y10_c00151{bottom:619.935006px;}
.yf_c00151{bottom:682.560006px;}
.ye_c00151{bottom:713.529006px;}
.yd_c00151{bottom:744.851256px;}
.yc_c00151{bottom:776.160006px;}
.yb_c00151{bottom:838.800006px;}
.ya_c00151{bottom:870.840006px;}
.y9_c00151{bottom:934.573506px;}
.y8_c00151{bottom:965.502006px;}
.y7_c00151{bottom:996.465756px;}
.y6_c00151{bottom:1027.791756px;}
.y4_c00151{bottom:1059.123006px;}
.y5_c00151{bottom:1059.135006px;}
.y3_c00151{bottom:1090.086756px;}
.y2_c00151{bottom:1121.775006px;}
.y1_c00151{bottom:1197.735006px;}
.h9_c00151{height:57.120117px;}
.h5_c00151{height:58.886719px;}
.h2_c00151{height:65.364258px;}
.h3_c00151{height:67.719727px;}
.h6_c00151{height:67.734727px;}
.h7_c00151{height:67.743727px;}
.h4_c00151{height:67.791727px;}
.h8_c00151{height:75.337500px;}
.h1_c00151{height:1263.000000px;}
.h0_c00151{height:1263.240006px;}
.w1_c00151{width:892.500000px;}
.w0_c00151{width:892.799998px;}
.x0_c00151{left:0.000000px;}
.x1c_c00151{left:115.911748px;}
.xf_c00151{left:117.016499px;}
.xb_c00151{left:118.979999px;}
.xa_c00151{left:120.149998px;}
.x6_c00151{left:121.634248px;}
.x3_c00151{left:122.964748px;}
.x1_c00151{left:124.124999px;}
.x19_c00151{left:170.414998px;}
.xc_c00151{left:172.604998px;}
.x7_c00151{left:174.404999px;}
.x2_c00151{left:176.924998px;}
.x4_c00151{left:197.759998px;}
.x13_c00151{left:213.179998px;}
.x14_c00151{left:230.204998px;}
.x5_c00151{left:242.849998px;}
.x15_c00151{left:257.684999px;}
.x10_c00151{left:307.604999px;}
.x11_c00151{left:385.454998px;}
.x16_c00151{left:395.399999px;}
.x17_c00151{left:420.284998px;}
.x1d_c00151{left:421.409999px;}
.x8_c00151{left:441.629999px;}
.x18_c00151{left:447.959999px;}
.x12_c00151{left:458.204998px;}
.x9_c00151{left:476.834999px;}
.xd_c00151{left:480.134999px;}
.x1a_c00151{left:497.324998px;}
.xe_c00151{left:504.899999px;}
.x1b_c00151{left:524.939999px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls81_c00151{letter-spacing:-2.389333pt;}
.ls61_c00151{letter-spacing:-2.146667pt;}
.ls59_c00151{letter-spacing:-2.072000pt;}
.ls70_c00151{letter-spacing:-1.866667pt;}
.ls80_c00151{letter-spacing:-1.829547pt;}
.ls88_c00151{letter-spacing:-1.416800pt;}
.ls84_c00151{letter-spacing:-1.269600pt;}
.ls67_c00151{letter-spacing:-1.238933pt;}
.ls90_c00151{letter-spacing:-1.112267pt;}
.ls66_c00151{letter-spacing:-0.987467pt;}
.ls6c_c00151{letter-spacing:-0.962933pt;}
.ls7d_c00151{letter-spacing:-0.840267pt;}
.ls5f_c00151{letter-spacing:-0.785067pt;}
.ls72_c00151{letter-spacing:-0.729867pt;}
.ls78_c00151{letter-spacing:-0.711467pt;}
.ls7a_c00151{letter-spacing:-0.699200pt;}
.ls75_c00151{letter-spacing:-0.686933pt;}
.ls65_c00151{letter-spacing:-0.625600pt;}
.ls77_c00151{letter-spacing:-0.545867pt;}
.ls85_c00151{letter-spacing:-0.515200pt;}
.ls62_c00151{letter-spacing:-0.496800pt;}
.ls76_c00151{letter-spacing:-0.472267pt;}
.ls68_c00151{letter-spacing:-0.466133pt;}
.ls83_c00151{letter-spacing:-0.460000pt;}
.ls71_c00151{letter-spacing:-0.435467pt;}
.ls86_c00151{letter-spacing:-0.417067pt;}
.ls8b_c00151{letter-spacing:-0.386400pt;}
.ls6b_c00151{letter-spacing:-0.331200pt;}
.ls6d_c00151{letter-spacing:-0.320000pt;}
.ls8e_c00151{letter-spacing:-0.306667pt;}
.ls87_c00151{letter-spacing:-0.294400pt;}
.ls8a_c00151{letter-spacing:-0.282133pt;}
.ls69_c00151{letter-spacing:-0.269867pt;}
.ls79_c00151{letter-spacing:-0.239200pt;}
.ls74_c00151{letter-spacing:-0.233067pt;}
.ls5b_c00151{letter-spacing:-0.208533pt;}
.ls8c_c00151{letter-spacing:-0.184000pt;}
.ls89_c00151{letter-spacing:-0.165600pt;}
.ls8d_c00151{letter-spacing:-0.153333pt;}
.ls5a_c00151{letter-spacing:-0.134933pt;}
.ls8f_c00151{letter-spacing:-0.128800pt;}
.ls6f_c00151{letter-spacing:-0.116533pt;}
.ls5d_c00151{letter-spacing:-0.098133pt;}
.ls7f_c00151{letter-spacing:-0.085867pt;}
.ls64_c00151{letter-spacing:-0.067467pt;}
.ls73_c00151{letter-spacing:-0.055200pt;}
.ls6a_c00151{letter-spacing:-0.024533pt;}
.ls63_c00151{letter-spacing:-0.018400pt;}
.ls5c_c00151{letter-spacing:0.000000pt;}
.ls7b_c00151{letter-spacing:0.006133pt;}
.ls4c_c00151{letter-spacing:0.018400pt;}
.ls2a_c00151{letter-spacing:0.036800pt;}
.ls3_c00151{letter-spacing:0.042933pt;}
.ls4e_c00151{letter-spacing:0.049067pt;}
.ls10_c00151{letter-spacing:0.061333pt;}
.ls50_c00151{letter-spacing:0.073600pt;}
.ls57_c00151{letter-spacing:0.079733pt;}
.ls20_c00151{letter-spacing:0.085867pt;}
.ls1_c00151{letter-spacing:0.104267pt;}
.ls46_c00151{letter-spacing:0.128800pt;}
.ls31_c00151{letter-spacing:0.134933pt;}
.ls21_c00151{letter-spacing:0.141067pt;}
.ls30_c00151{letter-spacing:0.147200pt;}
.ls1b_c00151{letter-spacing:0.153333pt;}
.lsf_c00151{letter-spacing:0.159467pt;}
.ls34_c00151{letter-spacing:0.165600pt;}
.ls35_c00151{letter-spacing:0.196267pt;}
.ls4b_c00151{letter-spacing:0.208533pt;}
.ls32_c00151{letter-spacing:0.214667pt;}
.ls1e_c00151{letter-spacing:0.220800pt;}
.ls2b_c00151{letter-spacing:0.226933pt;}
.ls24_c00151{letter-spacing:0.233067pt;}
.ls12_c00151{letter-spacing:0.245333pt;}
.ls15_c00151{letter-spacing:0.251467pt;}
.ls53_c00151{letter-spacing:0.257600pt;}
.ls42_c00151{letter-spacing:0.263733pt;}
.lsc_c00151{letter-spacing:0.276000pt;}
.ls22_c00151{letter-spacing:0.282133pt;}
.ls51_c00151{letter-spacing:0.288267pt;}
.lse_c00151{letter-spacing:0.294400pt;}
.ls44_c00151{letter-spacing:0.306667pt;}
.ls6_c00151{letter-spacing:0.312800pt;}
.ls55_c00151{letter-spacing:0.318933pt;}
.ls4_c00151{letter-spacing:0.331200pt;}
.ls2f_c00151{letter-spacing:0.337333pt;}
.ls3c_c00151{letter-spacing:0.355733pt;}
.ls54_c00151{letter-spacing:0.368000pt;}
.ls5_c00151{letter-spacing:0.386400pt;}
.ls38_c00151{letter-spacing:0.392533pt;}
.ls17_c00151{letter-spacing:0.398667pt;}
.ls8_c00151{letter-spacing:0.410933pt;}
.ls1d_c00151{letter-spacing:0.423200pt;}
.ls82_c00151{letter-spacing:0.435467pt;}
.ls13_c00151{letter-spacing:0.447733pt;}
.ls25_c00151{letter-spacing:0.460000pt;}
.ls2_c00151{letter-spacing:0.472267pt;}
.ls26_c00151{letter-spacing:0.496800pt;}
.ls27_c00151{letter-spacing:0.509067pt;}
.ls5e_c00151{letter-spacing:0.515200pt;}
.ls4a_c00151{letter-spacing:0.527467pt;}
.ls39_c00151{letter-spacing:0.552000pt;}
.ls2c_c00151{letter-spacing:0.564267pt;}
.lsb_c00151{letter-spacing:0.570400pt;}
.ls11_c00151{letter-spacing:0.576533pt;}
.ls37_c00151{letter-spacing:0.594933pt;}
.ls23_c00151{letter-spacing:0.607200pt;}
.ls52_c00151{letter-spacing:0.619467pt;}
.ls14_c00151{letter-spacing:0.674667pt;}
.ls2d_c00151{letter-spacing:0.674987pt;}
.ls9_c00151{letter-spacing:0.680800pt;}
.ls3e_c00151{letter-spacing:0.681013pt;}
.ls1a_c00151{letter-spacing:0.686933pt;}
.ls40_c00151{letter-spacing:0.693067pt;}
.ls18_c00151{letter-spacing:0.711467pt;}
.ls58_c00151{letter-spacing:0.729867pt;}
.ls29_c00151{letter-spacing:0.736000pt;}
.ls2e_c00151{letter-spacing:0.742133pt;}
.lsa_c00151{letter-spacing:0.754400pt;}
.ls56_c00151{letter-spacing:0.760533pt;}
.ls1f_c00151{letter-spacing:0.766667pt;}
.ls47_c00151{letter-spacing:0.807573pt;}
.ls33_c00151{letter-spacing:0.809600pt;}
.ls45_c00151{letter-spacing:0.821867pt;}
.ls19_c00151{letter-spacing:0.828000pt;}
.ls3d_c00151{letter-spacing:0.837707pt;}
.ls3f_c00151{letter-spacing:0.846400pt;}
.ls60_c00151{letter-spacing:0.858667pt;}
.lsd_c00151{letter-spacing:0.870933pt;}
.ls48_c00151{letter-spacing:0.885920pt;}
.ls49_c00151{letter-spacing:0.904000pt;}
.ls3a_c00151{letter-spacing:0.940160pt;}
.ls6e_c00151{letter-spacing:0.944533pt;}
.ls1c_c00151{letter-spacing:0.975200pt;}
.ls4d_c00151{letter-spacing:0.993600pt;}
.ls0_c00151{letter-spacing:1.012480pt;}
.ls28_c00151{letter-spacing:1.102880pt;}
.ls4f_c00151{letter-spacing:1.122400pt;}
.ls7_c00151{letter-spacing:1.165333pt;}
.ls7e_c00151{letter-spacing:1.183733pt;}
.ls41_c00151{letter-spacing:1.447467pt;}
.ls36_c00151{letter-spacing:1.576267pt;}
.ls3b_c00151{letter-spacing:1.735733pt;}
.ls16_c00151{letter-spacing:2.257067pt;}
.ls43_c00151{letter-spacing:2.275467pt;}
.ls7c_c00151{letter-spacing:3.066667pt;}
.ws3_c00151{word-spacing:-1.599467pt;}
.ws6_c00151{word-spacing:0.000000pt;}
.ws4_c00151{word-spacing:3.897653pt;}
.ws0_c00151{word-spacing:4.986347pt;}
.ws5_c00151{word-spacing:5.225067pt;}
.ws1_c00151{word-spacing:9.953280pt;}
.ws2_c00151{word-spacing:22.819733pt;}
._14_c00151{margin-left:-5.053867pt;}
._6_c00151{margin-left:-2.514667pt;}
._7_c00151{margin-left:-1.496533pt;}
._9_c00151{width:0.938400pt;}
._8_c00151{width:1.999467pt;}
._1_c00151{width:3.275200pt;}
._2_c00151{width:4.722667pt;}
._13_c00151{width:5.734400pt;}
._4_c00151{width:6.703733pt;}
._a_c00151{width:7.780533pt;}
._0_c00151{width:8.810933pt;}
._3_c00151{width:9.764267pt;}
._5_c00151{width:11.597333pt;}
._d_c00151{width:12.521333pt;}
._b_c00151{width:13.830667pt;}
._e_c00151{width:15.700533pt;}
._c_c00151{width:17.418667pt;}
._11_c00151{width:19.166667pt;}
._f_c00151{width:20.884000pt;}
._10_c00151{width:22.816000pt;}
._12_c00151{width:24.226667pt;}
._16_c00151{width:25.784533pt;}
._15_c00151{width:27.060267pt;}
._17_c00151{width:29.992000pt;}
.fs3_c00151{font-size:42.666667pt;}
.fs6_c00151{font-size:51.733333pt;}
.fs4_c00151{font-size:53.333333pt;}
.fs0_c00151{font-size:59.200000pt;}
.fs1_c00151{font-size:60.266667pt;}
.fs2_c00151{font-size:61.333333pt;}
.fs5_c00151{font-size:68.266667pt;}
.y0_c00151{bottom:0.000000pt;}
.y1c_c00151{bottom:64.973339pt;}
.y1b_c00151{bottom:132.146005pt;}
.y1a_c00151{bottom:160.006672pt;}
.y19_c00151{bottom:187.852005pt;}
.y18_c00151{bottom:215.360005pt;}
.y17_c00151{bottom:271.360005pt;}
.y16_c00151{bottom:327.360005pt;}
.y15_c00151{bottom:327.362672pt;}
.y14_c00151{bottom:383.053339pt;}
.y13_c00151{bottom:411.533339pt;}
.y12_c00151{bottom:467.212005pt;}
.y11_c00151{bottom:494.720005pt;}
.y10_c00151{bottom:551.053339pt;}
.yf_c00151{bottom:606.720005pt;}
.ye_c00151{bottom:634.248005pt;}
.yd_c00151{bottom:662.090005pt;}
.yc_c00151{bottom:689.920005pt;}
.yb_c00151{bottom:745.600005pt;}
.ya_c00151{bottom:774.080005pt;}
.y9_c00151{bottom:830.732005pt;}
.y8_c00151{bottom:858.224005pt;}
.y7_c00151{bottom:885.747339pt;}
.y6_c00151{bottom:913.592672pt;}
.y4_c00151{bottom:941.442672pt;}
.y5_c00151{bottom:941.453339pt;}
.y3_c00151{bottom:968.966005pt;}
.y2_c00151{bottom:997.133339pt;}
.y1_c00151{bottom:1064.653339pt;}
.h9_c00151{height:50.773437pt;}
.h5_c00151{height:52.343750pt;}
.h2_c00151{height:58.101562pt;}
.h3_c00151{height:60.195312pt;}
.h6_c00151{height:60.208646pt;}
.h7_c00151{height:60.216646pt;}
.h4_c00151{height:60.259313pt;}
.h8_c00151{height:66.966667pt;}
.h1_c00151{height:1122.666667pt;}
.h0_c00151{height:1122.880005pt;}
.w1_c00151{width:793.333333pt;}
.w0_c00151{width:793.599999pt;}
.x0_c00151{left:0.000000pt;}
.x1c_c00151{left:103.032665pt;}
.xf_c00151{left:104.014665pt;}
.xb_c00151{left:105.759999pt;}
.xa_c00151{left:106.799999pt;}
.x6_c00151{left:108.119332pt;}
.x3_c00151{left:109.301999pt;}
.x1_c00151{left:110.333332pt;}
.x19_c00151{left:151.479999pt;}
.xc_c00151{left:153.426665pt;}
.x7_c00151{left:155.026665pt;}
.x2_c00151{left:157.266665pt;}
.x4_c00151{left:175.786665pt;}
.x13_c00151{left:189.493332pt;}
.x14_c00151{left:204.626665pt;}
.x5_c00151{left:215.866665pt;}
.x15_c00151{left:229.053332pt;}
.x10_c00151{left:273.426665pt;}
.x11_c00151{left:342.626665pt;}
.x16_c00151{left:351.466665pt;}
.x17_c00151{left:373.586665pt;}
.x1d_c00151{left:374.586665pt;}
.x8_c00151{left:392.559999pt;}
.x18_c00151{left:398.186665pt;}
.x12_c00151{left:407.293332pt;}
.x9_c00151{left:423.853332pt;}
.xd_c00151{left:426.786665pt;}
.x1a_c00151{left:442.066665pt;}
.xe_c00151{left:448.799999pt;}
.x1b_c00151{left:466.613332pt;}
}





/* 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_c00152 {
    display:none;
  }
  .loading-indicator_c00152.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00152 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_c00152 { 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_c00152" -> "#page-container .classname_c00152")
 */
.pf_c00152 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00152 { /* 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_c00152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00152 { /* 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_c00152 { /* 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_c00152 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00152 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00152 {overflow:visible;}
  }
}
.c_c00152 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00152 { /* 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_c00152:after { /* webkit #35443 */
  content: '';
}
.t_c00152:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00152 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 */
}
.__c00152 { /* 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_c00152 { /* info for Javascript */
  display:none;
}
.l_c00152 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00152 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00152 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00152: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_c00152 {
    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_c00152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00152.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_c00152 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00152;src:url('chunks/assets/font_40b0f65f2d97d607228dc38b.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.284668;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_c00152;src:url('chunks/assets/font_d43531cd9badbada1f1bcfb0.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.284180;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_c00152;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;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;}
.m3_c00152{transform:matrix(0.138387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138387,0.000000,0.000000,0.250000,0,0);}
.ma_c00152{transform:matrix(0.207449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207449,0.000000,0.000000,0.250000,0,0);}
.mb_c00152{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4_c00152{transform:matrix(0.232509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232509,0.000000,0.000000,0.250000,0,0);}
.m9_c00152{transform:matrix(0.234390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234390,0.000000,0.000000,0.250000,0,0);}
.m5_c00152{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m6_c00152{transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);}
.m7_c00152{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m0_c00152{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.m8_c00152{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m1_c00152{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);}
.m2_c00152{transform:matrix(0.319127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319127,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls6e_c00152{letter-spacing:-2.688000px;}
.ls94_c00152{letter-spacing:-2.583000px;}
.ls81_c00152{letter-spacing:-2.520000px;}
.ls70_c00152{letter-spacing:-2.394000px;}
.ls62_c00152{letter-spacing:-2.331000px;}
.ls79_c00152{letter-spacing:-2.310000px;}
.ls7c_c00152{letter-spacing:-2.209320px;}
.ls7f_c00152{letter-spacing:-2.168280px;}
.ls87_c00152{letter-spacing:-2.147760px;}
.ls7e_c00152{letter-spacing:-2.079360px;}
.ls95_c00152{letter-spacing:-1.963080px;}
.ls80_c00152{letter-spacing:-1.586880px;}
.ls71_c00152{letter-spacing:-1.197000px;}
.ls9b_c00152{letter-spacing:-1.117200px;}
.ls86_c00152{letter-spacing:-1.080720px;}
.ls83_c00152{letter-spacing:-0.896040px;}
.ls65_c00152{letter-spacing:-0.834480px;}
.ls78_c00152{letter-spacing:-0.786600px;}
.ls88_c00152{letter-spacing:-0.731880px;}
.ls75_c00152{letter-spacing:-0.704520px;}
.ls89_c00152{letter-spacing:-0.684000px;}
.ls77_c00152{letter-spacing:-0.574560px;}
.ls93_c00152{letter-spacing:-0.567720px;}
.ls82_c00152{letter-spacing:-0.533520px;}
.ls74_c00152{letter-spacing:-0.526680px;}
.ls92_c00152{letter-spacing:-0.492480px;}
.ls8d_c00152{letter-spacing:-0.485640px;}
.ls73_c00152{letter-spacing:-0.478800px;}
.ls7b_c00152{letter-spacing:-0.458280px;}
.ls8e_c00152{letter-spacing:-0.396720px;}
.ls7a_c00152{letter-spacing:-0.376200px;}
.ls67_c00152{letter-spacing:-0.273600px;}
.ls8a_c00152{letter-spacing:-0.246240px;}
.ls84_c00152{letter-spacing:-0.239400px;}
.ls97_c00152{letter-spacing:-0.191520px;}
.ls68_c00152{letter-spacing:-0.150480px;}
.ls8b_c00152{letter-spacing:-0.143640px;}
.ls85_c00152{letter-spacing:-0.136800px;}
.ls8c_c00152{letter-spacing:-0.129960px;}
.ls91_c00152{letter-spacing:-0.123120px;}
.ls7d_c00152{letter-spacing:-0.102600px;}
.ls90_c00152{letter-spacing:-0.095760px;}
.ls99_c00152{letter-spacing:-0.082080px;}
.ls96_c00152{letter-spacing:-0.068400px;}
.ls6d_c00152{letter-spacing:-0.054720px;}
.ls72_c00152{letter-spacing:-0.047880px;}
.ls69_c00152{letter-spacing:-0.041040px;}
.ls9a_c00152{letter-spacing:-0.027360px;}
.ls66_c00152{letter-spacing:-0.020520px;}
.ls76_c00152{letter-spacing:-0.006840px;}
.ls6b_c00152{letter-spacing:0.000000px;}
.ls3d_c00152{letter-spacing:0.006840px;}
.ls4f_c00152{letter-spacing:0.013680px;}
.ls24_c00152{letter-spacing:0.027360px;}
.ls98_c00152{letter-spacing:0.047880px;}
.ls48_c00152{letter-spacing:0.054720px;}
.ls55_c00152{letter-spacing:0.068400px;}
.ls5f_c00152{letter-spacing:0.075240px;}
.ls33_c00152{letter-spacing:0.102600px;}
.ls5e_c00152{letter-spacing:0.109440px;}
.ls31_c00152{letter-spacing:0.136800px;}
.ls26_c00152{letter-spacing:0.143640px;}
.ls42_c00152{letter-spacing:0.150480px;}
.ls5c_c00152{letter-spacing:0.157320px;}
.ls1f_c00152{letter-spacing:0.164160px;}
.ls63_c00152{letter-spacing:0.184680px;}
.ls7_c00152{letter-spacing:0.205200px;}
.ls1e_c00152{letter-spacing:0.212040px;}
.ls19_c00152{letter-spacing:0.218880px;}
.ls20_c00152{letter-spacing:0.232560px;}
.ls51_c00152{letter-spacing:0.239400px;}
.ls25_c00152{letter-spacing:0.266760px;}
.ls4d_c00152{letter-spacing:0.273600px;}
.ls2f_c00152{letter-spacing:0.284760px;}
.ls1d_c00152{letter-spacing:0.287280px;}
.ls50_c00152{letter-spacing:0.294120px;}
.ls22_c00152{letter-spacing:0.307800px;}
.ls2d_c00152{letter-spacing:0.314640px;}
.ls23_c00152{letter-spacing:0.321480px;}
.ls58_c00152{letter-spacing:0.328320px;}
.ls34_c00152{letter-spacing:0.335160px;}
.ls6_c00152{letter-spacing:0.355680px;}
.ls3c_c00152{letter-spacing:0.362520px;}
.ls14_c00152{letter-spacing:0.369360px;}
.lse_c00152{letter-spacing:0.376200px;}
.lsa_c00152{letter-spacing:0.389880px;}
.ls16_c00152{letter-spacing:0.393240px;}
.ls18_c00152{letter-spacing:0.396720px;}
.ls57_c00152{letter-spacing:0.403560px;}
.ls12_c00152{letter-spacing:0.406800px;}
.lsf_c00152{letter-spacing:0.410400px;}
.ls3e_c00152{letter-spacing:0.427140px;}
.ls1c_c00152{letter-spacing:0.437760px;}
.ls44_c00152{letter-spacing:0.451440px;}
.ls3a_c00152{letter-spacing:0.458280px;}
.ls4c_c00152{letter-spacing:0.513000px;}
.ls8_c00152{letter-spacing:0.526680px;}
.ls11_c00152{letter-spacing:0.528840px;}
.ls56_c00152{letter-spacing:0.567720px;}
.ls40_c00152{letter-spacing:0.569520px;}
.ls4_c00152{letter-spacing:0.581400px;}
.ls2e_c00152{letter-spacing:0.583080px;}
.ls54_c00152{letter-spacing:0.588240px;}
.ls4b_c00152{letter-spacing:0.601920px;}
.ls17_c00152{letter-spacing:0.608760px;}
.ls2b_c00152{letter-spacing:0.616980px;}
.ls61_c00152{letter-spacing:0.622440px;}
.ls30_c00152{letter-spacing:0.636120px;}
.ls15_c00152{letter-spacing:0.642960px;}
.ls8f_c00152{letter-spacing:0.670320px;}
.ls3b_c00152{letter-spacing:0.677160px;}
.ls3_c00152{letter-spacing:0.678000px;}
.ls2_c00152{letter-spacing:0.690840px;}
.ls46_c00152{letter-spacing:0.697680px;}
.ls45_c00152{letter-spacing:0.704520px;}
.ls53_c00152{letter-spacing:0.718200px;}
.ls13_c00152{letter-spacing:0.731880px;}
.ls1_c00152{letter-spacing:0.739020px;}
.ls35_c00152{letter-spacing:0.745560px;}
.ls5d_c00152{letter-spacing:0.752400px;}
.ls28_c00152{letter-spacing:0.759240px;}
.ls43_c00152{letter-spacing:0.779700px;}
.ls3f_c00152{letter-spacing:0.793260px;}
.ls4a_c00152{letter-spacing:0.800280px;}
.ls6c_c00152{letter-spacing:0.833940px;}
.ls5b_c00152{letter-spacing:0.834480px;}
.ls41_c00152{letter-spacing:0.855000px;}
.ls1b_c00152{letter-spacing:0.861840px;}
.ls47_c00152{letter-spacing:0.882360px;}
.ls29_c00152{letter-spacing:0.916560px;}
.ls6f_c00152{letter-spacing:0.923400px;}
.ls2a_c00152{letter-spacing:0.930240px;}
.ls6a_c00152{letter-spacing:0.971280px;}
.ls10_c00152{letter-spacing:1.012320px;}
.ls27_c00152{letter-spacing:1.060200px;}
.ls5_c00152{letter-spacing:1.128600px;}
.ls4e_c00152{letter-spacing:1.149120px;}
.ls38_c00152{letter-spacing:1.159200px;}
.ls0_c00152{letter-spacing:1.193280px;}
.ls60_c00152{letter-spacing:1.203840px;}
.ls52_c00152{letter-spacing:1.217520px;}
.lsb_c00152{letter-spacing:1.251720px;}
.ls39_c00152{letter-spacing:1.283400px;}
.ls5a_c00152{letter-spacing:1.299600px;}
.lsd_c00152{letter-spacing:1.320120px;}
.ls2c_c00152{letter-spacing:1.333800px;}
.ls9_c00152{letter-spacing:1.402200px;}
.ls59_c00152{letter-spacing:1.470600px;}
.ls49_c00152{letter-spacing:1.504800px;}
.ls1a_c00152{letter-spacing:1.648440px;}
.ls37_c00152{letter-spacing:1.744200px;}
.ls32_c00152{letter-spacing:2.715480px;}
.ls36_c00152{letter-spacing:2.961720px;}
.lsc_c00152{letter-spacing:3.091680px;}
.ls21_c00152{letter-spacing:3.166920px;}
.ls64_c00152{letter-spacing:3.420000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{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__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00152{word-spacing:0.000000px;}
.ws2_c00152{word-spacing:0.491100px;}
.ws0_c00152{word-spacing:0.978120px;}
.ws3_c00152{word-spacing:2.935440px;}
.ws1_c00152{word-spacing:10.493400px;}
.ws4_c00152{word-spacing:16.400400px;}
._f_c00152{margin-left:-8.585880px;}
._8_c00152{margin-left:-5.734080px;}
._0_c00152{margin-left:-3.864600px;}
._c_c00152{margin-left:-2.848560px;}
._1_c00152{margin-left:-1.593720px;}
._a_c00152{width:1.257240px;}
._e_c00152{width:2.408400px;}
._6_c00152{width:3.517440px;}
._2_c00152{width:4.937640px;}
._3_c00152{width:6.785280px;}
._7_c00152{width:8.508960px;}
._d_c00152{width:10.286520px;}
._5_c00152{width:11.381760px;}
._4_c00152{width:12.818160px;}
._10_c00152{width:14.754360px;}
._b_c00152{width:15.819600px;}
._12_c00152{width:18.590880px;}
._9_c00152{width:22.306200px;}
._11_c00152{width:32.719440px;}
.fc0_c00152{color:transparent;}
.fs8_c00152{font-size:57.000000px;}
.fs4_c00152{font-size:66.000000px;}
.fs0_c00152{font-size:66.600000px;}
.fs1_c00152{font-size:67.800000px;}
.fs2_c00152{font-size:68.400000px;}
.fs5_c00152{font-size:69.000000px;}
.fs6_c00152{font-size:72.000000px;}
.fs7_c00152{font-size:73.800000px;}
.fs3_c00152{font-size:76.800000px;}
.y0_c00152{bottom:0.000000px;}
.y1f_c00152{bottom:70.200000px;}
.y1e_c00152{bottom:147.247200px;}
.y1c_c00152{bottom:177.472800px;}
.y1d_c00152{bottom:177.480000px;}
.y1b_c00152{bottom:208.800000px;}
.y1a_c00152{bottom:208.803300px;}
.y19_c00152{bottom:240.130500px;}
.y18_c00152{bottom:271.457700px;}
.y17_c00152{bottom:302.767800px;}
.y16_c00152{bottom:334.095000px;}
.y14_c00152{bottom:395.632500px;}
.y15_c00152{bottom:395.640000px;}
.y13_c00152{bottom:427.695000px;}
.y12_c00152{bottom:459.015000px;}
.y10_c00152{bottom:521.292600px;}
.y11_c00152{bottom:521.295000px;}
.yf_c00152{bottom:583.929900px;}
.ye_c00152{bottom:615.240000px;}
.yd_c00152{bottom:677.889900px;}
.yc_c00152{bottom:709.200000px;}
.yb_c00152{bottom:772.200000px;}
.ya_c00152{bottom:834.855000px;}
.y9_c00152{bottom:866.166900px;}
.y8_c00152{bottom:897.129900px;}
.y7_c00152{bottom:928.440000px;}
.y5_c00152{bottom:990.367800px;}
.y6_c00152{bottom:990.375000px;}
.y4_c00152{bottom:1053.002400px;}
.y3_c00152{bottom:1084.688700px;}
.y2_c00152{bottom:1116.375000px;}
.y1_c00152{bottom:1191.240000px;}
.hd_c00152{height:55.942383px;}
.h2_c00152{height:65.364258px;}
.h3_c00152{height:67.130859px;}
.h7_c00152{height:67.151259px;}
.h5_c00152{height:67.159659px;}
.h8_c00152{height:67.163259px;}
.h4_c00152{height:67.181259px;}
.ha_c00152{height:67.686035px;}
.h9_c00152{height:68.835938px;}
.hb_c00152{height:70.664062px;}
.hc_c00152{height:72.430664px;}
.h6_c00152{height:75.375000px;}
.h1_c00152{height:1263.000000px;}
.h0_c00152{height:1263.240000px;}
.w1_c00152{width:892.500000px;}
.w0_c00152{width:892.800000px;}
.x0_c00152{left:0.000000px;}
.x17_c00152{left:120.067800px;}
.x12_c00152{left:121.494600px;}
.x1_c00152{left:122.685000px;}
.x9_c00152{left:162.855000px;}
.xf_c00152{left:175.455000px;}
.x2_c00152{left:176.565000px;}
.x10_c00152{left:210.765000px;}
.x11_c00152{left:237.765000px;}
.xa_c00152{left:269.430000px;}
.xb_c00152{left:339.330000px;}
.xc_c00152{left:374.175000px;}
.xd_c00152{left:399.045000px;}
.x15_c00152{left:407.805000px;}
.x18_c00152{left:423.225000px;}
.x5_c00152{left:424.380000px;}
.xe_c00152{left:426.510000px;}
.x16_c00152{left:431.835000px;}
.x3_c00152{left:440.415000px;}
.x6_c00152{left:455.595000px;}
.x4_c00152{left:473.310000px;}
.x7_c00152{left:682.380000px;}
.x8_c00152{left:704.460000px;}
.x13_c00152{left:717.765000px;}
.x14_c00152{left:740.340000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls6e_c00152{letter-spacing:-2.389333pt;}
.ls94_c00152{letter-spacing:-2.296000pt;}
.ls81_c00152{letter-spacing:-2.240000pt;}
.ls70_c00152{letter-spacing:-2.128000pt;}
.ls62_c00152{letter-spacing:-2.072000pt;}
.ls79_c00152{letter-spacing:-2.053333pt;}
.ls7c_c00152{letter-spacing:-1.963840pt;}
.ls7f_c00152{letter-spacing:-1.927360pt;}
.ls87_c00152{letter-spacing:-1.909120pt;}
.ls7e_c00152{letter-spacing:-1.848320pt;}
.ls95_c00152{letter-spacing:-1.744960pt;}
.ls80_c00152{letter-spacing:-1.410560pt;}
.ls71_c00152{letter-spacing:-1.064000pt;}
.ls9b_c00152{letter-spacing:-0.993067pt;}
.ls86_c00152{letter-spacing:-0.960640pt;}
.ls83_c00152{letter-spacing:-0.796480pt;}
.ls65_c00152{letter-spacing:-0.741760pt;}
.ls78_c00152{letter-spacing:-0.699200pt;}
.ls88_c00152{letter-spacing:-0.650560pt;}
.ls75_c00152{letter-spacing:-0.626240pt;}
.ls89_c00152{letter-spacing:-0.608000pt;}
.ls77_c00152{letter-spacing:-0.510720pt;}
.ls93_c00152{letter-spacing:-0.504640pt;}
.ls82_c00152{letter-spacing:-0.474240pt;}
.ls74_c00152{letter-spacing:-0.468160pt;}
.ls92_c00152{letter-spacing:-0.437760pt;}
.ls8d_c00152{letter-spacing:-0.431680pt;}
.ls73_c00152{letter-spacing:-0.425600pt;}
.ls7b_c00152{letter-spacing:-0.407360pt;}
.ls8e_c00152{letter-spacing:-0.352640pt;}
.ls7a_c00152{letter-spacing:-0.334400pt;}
.ls67_c00152{letter-spacing:-0.243200pt;}
.ls8a_c00152{letter-spacing:-0.218880pt;}
.ls84_c00152{letter-spacing:-0.212800pt;}
.ls97_c00152{letter-spacing:-0.170240pt;}
.ls68_c00152{letter-spacing:-0.133760pt;}
.ls8b_c00152{letter-spacing:-0.127680pt;}
.ls85_c00152{letter-spacing:-0.121600pt;}
.ls8c_c00152{letter-spacing:-0.115520pt;}
.ls91_c00152{letter-spacing:-0.109440pt;}
.ls7d_c00152{letter-spacing:-0.091200pt;}
.ls90_c00152{letter-spacing:-0.085120pt;}
.ls99_c00152{letter-spacing:-0.072960pt;}
.ls96_c00152{letter-spacing:-0.060800pt;}
.ls6d_c00152{letter-spacing:-0.048640pt;}
.ls72_c00152{letter-spacing:-0.042560pt;}
.ls69_c00152{letter-spacing:-0.036480pt;}
.ls9a_c00152{letter-spacing:-0.024320pt;}
.ls66_c00152{letter-spacing:-0.018240pt;}
.ls76_c00152{letter-spacing:-0.006080pt;}
.ls6b_c00152{letter-spacing:0.000000pt;}
.ls3d_c00152{letter-spacing:0.006080pt;}
.ls4f_c00152{letter-spacing:0.012160pt;}
.ls24_c00152{letter-spacing:0.024320pt;}
.ls98_c00152{letter-spacing:0.042560pt;}
.ls48_c00152{letter-spacing:0.048640pt;}
.ls55_c00152{letter-spacing:0.060800pt;}
.ls5f_c00152{letter-spacing:0.066880pt;}
.ls33_c00152{letter-spacing:0.091200pt;}
.ls5e_c00152{letter-spacing:0.097280pt;}
.ls31_c00152{letter-spacing:0.121600pt;}
.ls26_c00152{letter-spacing:0.127680pt;}
.ls42_c00152{letter-spacing:0.133760pt;}
.ls5c_c00152{letter-spacing:0.139840pt;}
.ls1f_c00152{letter-spacing:0.145920pt;}
.ls63_c00152{letter-spacing:0.164160pt;}
.ls7_c00152{letter-spacing:0.182400pt;}
.ls1e_c00152{letter-spacing:0.188480pt;}
.ls19_c00152{letter-spacing:0.194560pt;}
.ls20_c00152{letter-spacing:0.206720pt;}
.ls51_c00152{letter-spacing:0.212800pt;}
.ls25_c00152{letter-spacing:0.237120pt;}
.ls4d_c00152{letter-spacing:0.243200pt;}
.ls2f_c00152{letter-spacing:0.253120pt;}
.ls1d_c00152{letter-spacing:0.255360pt;}
.ls50_c00152{letter-spacing:0.261440pt;}
.ls22_c00152{letter-spacing:0.273600pt;}
.ls2d_c00152{letter-spacing:0.279680pt;}
.ls23_c00152{letter-spacing:0.285760pt;}
.ls58_c00152{letter-spacing:0.291840pt;}
.ls34_c00152{letter-spacing:0.297920pt;}
.ls6_c00152{letter-spacing:0.316160pt;}
.ls3c_c00152{letter-spacing:0.322240pt;}
.ls14_c00152{letter-spacing:0.328320pt;}
.lse_c00152{letter-spacing:0.334400pt;}
.lsa_c00152{letter-spacing:0.346560pt;}
.ls16_c00152{letter-spacing:0.349547pt;}
.ls18_c00152{letter-spacing:0.352640pt;}
.ls57_c00152{letter-spacing:0.358720pt;}
.ls12_c00152{letter-spacing:0.361600pt;}
.lsf_c00152{letter-spacing:0.364800pt;}
.ls3e_c00152{letter-spacing:0.379680pt;}
.ls1c_c00152{letter-spacing:0.389120pt;}
.ls44_c00152{letter-spacing:0.401280pt;}
.ls3a_c00152{letter-spacing:0.407360pt;}
.ls4c_c00152{letter-spacing:0.456000pt;}
.ls8_c00152{letter-spacing:0.468160pt;}
.ls11_c00152{letter-spacing:0.470080pt;}
.ls56_c00152{letter-spacing:0.504640pt;}
.ls40_c00152{letter-spacing:0.506240pt;}
.ls4_c00152{letter-spacing:0.516800pt;}
.ls2e_c00152{letter-spacing:0.518293pt;}
.ls54_c00152{letter-spacing:0.522880pt;}
.ls4b_c00152{letter-spacing:0.535040pt;}
.ls17_c00152{letter-spacing:0.541120pt;}
.ls2b_c00152{letter-spacing:0.548427pt;}
.ls61_c00152{letter-spacing:0.553280pt;}
.ls30_c00152{letter-spacing:0.565440pt;}
.ls15_c00152{letter-spacing:0.571520pt;}
.ls8f_c00152{letter-spacing:0.595840pt;}
.ls3b_c00152{letter-spacing:0.601920pt;}
.ls3_c00152{letter-spacing:0.602667pt;}
.ls2_c00152{letter-spacing:0.614080pt;}
.ls46_c00152{letter-spacing:0.620160pt;}
.ls45_c00152{letter-spacing:0.626240pt;}
.ls53_c00152{letter-spacing:0.638400pt;}
.ls13_c00152{letter-spacing:0.650560pt;}
.ls1_c00152{letter-spacing:0.656907pt;}
.ls35_c00152{letter-spacing:0.662720pt;}
.ls5d_c00152{letter-spacing:0.668800pt;}
.ls28_c00152{letter-spacing:0.674880pt;}
.ls43_c00152{letter-spacing:0.693067pt;}
.ls3f_c00152{letter-spacing:0.705120pt;}
.ls4a_c00152{letter-spacing:0.711360pt;}
.ls6c_c00152{letter-spacing:0.741280pt;}
.ls5b_c00152{letter-spacing:0.741760pt;}
.ls41_c00152{letter-spacing:0.760000pt;}
.ls1b_c00152{letter-spacing:0.766080pt;}
.ls47_c00152{letter-spacing:0.784320pt;}
.ls29_c00152{letter-spacing:0.814720pt;}
.ls6f_c00152{letter-spacing:0.820800pt;}
.ls2a_c00152{letter-spacing:0.826880pt;}
.ls6a_c00152{letter-spacing:0.863360pt;}
.ls10_c00152{letter-spacing:0.899840pt;}
.ls27_c00152{letter-spacing:0.942400pt;}
.ls5_c00152{letter-spacing:1.003200pt;}
.ls4e_c00152{letter-spacing:1.021440pt;}
.ls38_c00152{letter-spacing:1.030400pt;}
.ls0_c00152{letter-spacing:1.060693pt;}
.ls60_c00152{letter-spacing:1.070080pt;}
.ls52_c00152{letter-spacing:1.082240pt;}
.lsb_c00152{letter-spacing:1.112640pt;}
.ls39_c00152{letter-spacing:1.140800pt;}
.ls5a_c00152{letter-spacing:1.155200pt;}
.lsd_c00152{letter-spacing:1.173440pt;}
.ls2c_c00152{letter-spacing:1.185600pt;}
.ls9_c00152{letter-spacing:1.246400pt;}
.ls59_c00152{letter-spacing:1.307200pt;}
.ls49_c00152{letter-spacing:1.337600pt;}
.ls1a_c00152{letter-spacing:1.465280pt;}
.ls37_c00152{letter-spacing:1.550400pt;}
.ls32_c00152{letter-spacing:2.413760pt;}
.ls36_c00152{letter-spacing:2.632640pt;}
.lsc_c00152{letter-spacing:2.748160pt;}
.ls21_c00152{letter-spacing:2.815040pt;}
.ls64_c00152{letter-spacing:3.040000pt;}
.ws5_c00152{word-spacing:0.000000pt;}
.ws2_c00152{word-spacing:0.436533pt;}
.ws0_c00152{word-spacing:0.869440pt;}
.ws3_c00152{word-spacing:2.609280pt;}
.ws1_c00152{word-spacing:9.327467pt;}
.ws4_c00152{word-spacing:14.578133pt;}
._f_c00152{margin-left:-7.631893pt;}
._8_c00152{margin-left:-5.096960pt;}
._0_c00152{margin-left:-3.435200pt;}
._c_c00152{margin-left:-2.532053pt;}
._1_c00152{margin-left:-1.416640pt;}
._a_c00152{width:1.117547pt;}
._e_c00152{width:2.140800pt;}
._6_c00152{width:3.126613pt;}
._2_c00152{width:4.389013pt;}
._3_c00152{width:6.031360pt;}
._7_c00152{width:7.563520pt;}
._d_c00152{width:9.143573pt;}
._5_c00152{width:10.117120pt;}
._4_c00152{width:11.393920pt;}
._10_c00152{width:13.114987pt;}
._b_c00152{width:14.061867pt;}
._12_c00152{width:16.525227pt;}
._9_c00152{width:19.827733pt;}
._11_c00152{width:29.083947pt;}
.fs8_c00152{font-size:50.666667pt;}
.fs4_c00152{font-size:58.666667pt;}
.fs0_c00152{font-size:59.200000pt;}
.fs1_c00152{font-size:60.266667pt;}
.fs2_c00152{font-size:60.800000pt;}
.fs5_c00152{font-size:61.333333pt;}
.fs6_c00152{font-size:64.000000pt;}
.fs7_c00152{font-size:65.600000pt;}
.fs3_c00152{font-size:68.266667pt;}
.y0_c00152{bottom:0.000000pt;}
.y1f_c00152{bottom:62.400000pt;}
.y1e_c00152{bottom:130.886400pt;}
.y1c_c00152{bottom:157.753600pt;}
.y1d_c00152{bottom:157.760000pt;}
.y1b_c00152{bottom:185.600000pt;}
.y1a_c00152{bottom:185.602933pt;}
.y19_c00152{bottom:213.449333pt;}
.y18_c00152{bottom:241.295733pt;}
.y17_c00152{bottom:269.126933pt;}
.y16_c00152{bottom:296.973333pt;}
.y14_c00152{bottom:351.673333pt;}
.y15_c00152{bottom:351.680000pt;}
.y13_c00152{bottom:380.173333pt;}
.y12_c00152{bottom:408.013333pt;}
.y10_c00152{bottom:463.371200pt;}
.y11_c00152{bottom:463.373333pt;}
.yf_c00152{bottom:519.048800pt;}
.ye_c00152{bottom:546.880000pt;}
.yd_c00152{bottom:602.568800pt;}
.yc_c00152{bottom:630.400000pt;}
.yb_c00152{bottom:686.400000pt;}
.ya_c00152{bottom:742.093333pt;}
.y9_c00152{bottom:769.926133pt;}
.y8_c00152{bottom:797.448800pt;}
.y7_c00152{bottom:825.280000pt;}
.y5_c00152{bottom:880.326933pt;}
.y6_c00152{bottom:880.333333pt;}
.y4_c00152{bottom:936.002133pt;}
.y3_c00152{bottom:964.167733pt;}
.y2_c00152{bottom:992.333333pt;}
.y1_c00152{bottom:1058.880000pt;}
.hd_c00152{height:49.726562pt;}
.h2_c00152{height:58.101562pt;}
.h3_c00152{height:59.671875pt;}
.h7_c00152{height:59.690008pt;}
.h5_c00152{height:59.697475pt;}
.h8_c00152{height:59.700675pt;}
.h4_c00152{height:59.716675pt;}
.ha_c00152{height:60.165365pt;}
.h9_c00152{height:61.187500pt;}
.hb_c00152{height:62.812500pt;}
.hc_c00152{height:64.382813pt;}
.h6_c00152{height:67.000000pt;}
.h1_c00152{height:1122.666667pt;}
.h0_c00152{height:1122.880000pt;}
.w1_c00152{width:793.333333pt;}
.w0_c00152{width:793.600000pt;}
.x0_c00152{left:0.000000pt;}
.x17_c00152{left:106.726933pt;}
.x12_c00152{left:107.995200pt;}
.x1_c00152{left:109.053333pt;}
.x9_c00152{left:144.760000pt;}
.xf_c00152{left:155.960000pt;}
.x2_c00152{left:156.946667pt;}
.x10_c00152{left:187.346667pt;}
.x11_c00152{left:211.346667pt;}
.xa_c00152{left:239.493333pt;}
.xb_c00152{left:301.626667pt;}
.xc_c00152{left:332.600000pt;}
.xd_c00152{left:354.706667pt;}
.x15_c00152{left:362.493333pt;}
.x18_c00152{left:376.200000pt;}
.x5_c00152{left:377.226667pt;}
.xe_c00152{left:379.120000pt;}
.x16_c00152{left:383.853333pt;}
.x3_c00152{left:391.480000pt;}
.x6_c00152{left:404.973333pt;}
.x4_c00152{left:420.720000pt;}
.x7_c00152{left:606.560000pt;}
.x8_c00152{left:626.186667pt;}
.x13_c00152{left:638.013333pt;}
.x14_c00152{left:658.080000pt;}
}





/* 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_c00153 {
    display:none;
  }
  .loading-indicator_c00153.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00153 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_c00153 { 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_c00153" -> "#page-container .classname_c00153")
 */
.pf_c00153 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00153 { /* 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_c00153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00153 { /* 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_c00153 { /* 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_c00153 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00153 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00153 {overflow:visible;}
  }
}
.c_c00153 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00153 { /* 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_c00153:after { /* webkit #35443 */
  content: '';
}
.t_c00153:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00153 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 */
}
.__c00153 { /* 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_c00153 { /* info for Javascript */
  display:none;
}
.l_c00153 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00153 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00153 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00153: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_c00153 {
    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_c00153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00153.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_c00153 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00153;src:url('chunks/assets/font_72e5125846e74cef6e621869.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.284668;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_c00153;src:url('chunks/assets/font_d89d14b86cce9f06f212191a.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.284180;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_c00153;src:url('chunks/assets/font_964e2bff27ddc81ef51a6ce8.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;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;}
.m9_c00153{transform:matrix(0.201391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201391,0.000000,0.000000,0.250000,0,0);}
.m4_c00153{transform:matrix(0.204188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204188,0.000000,0.000000,0.250000,0,0);}
.m2_c00153{transform:matrix(0.206984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206984,0.000000,0.000000,0.250000,0,0);}
.ma_c00153{transform:matrix(0.236665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236665,0.000000,0.000000,0.250000,0,0);}
.m6_c00153{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.m8_c00153{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m0_c00153{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m7_c00153{transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{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);}
.m5_c00153{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.v2_c00153{vertical-align:-25.920000px;}
.v0_c00153{vertical-align:0.000000px;}
.v1_c00153{vertical-align:25.920000px;}
.ls6a_c00153{letter-spacing:-2.688000px;}
.ls7d_c00153{letter-spacing:-2.667000px;}
.ls6c_c00153{letter-spacing:-2.394000px;}
.ls67_c00153{letter-spacing:-2.331000px;}
.ls98_c00153{letter-spacing:-2.305080px;}
.ls84_c00153{letter-spacing:-2.168280px;}
.ls78_c00153{letter-spacing:-2.134080px;}
.ls94_c00153{letter-spacing:-2.127240px;}
.ls88_c00153{letter-spacing:-2.099880px;}
.ls80_c00153{letter-spacing:-2.079360px;}
.ls9b_c00153{letter-spacing:-1.974000px;}
.ls7c_c00153{letter-spacing:-1.950720px;}
.ls83_c00153{letter-spacing:-1.429560px;}
.ls73_c00153{letter-spacing:-1.375920px;}
.ls6d_c00153{letter-spacing:-1.313280px;}
.ls87_c00153{letter-spacing:-1.080720px;}
.ls89_c00153{letter-spacing:-0.896040px;}
.ls99_c00153{letter-spacing:-0.893040px;}
.ls7e_c00153{letter-spacing:-0.772920px;}
.ls97_c00153{letter-spacing:-0.684000px;}
.ls91_c00153{letter-spacing:-0.629280px;}
.ls82_c00153{letter-spacing:-0.601920px;}
.ls86_c00153{letter-spacing:-0.533520px;}
.ls72_c00153{letter-spacing:-0.526680px;}
.ls8a_c00153{letter-spacing:-0.506160px;}
.ls6e_c00153{letter-spacing:-0.478800px;}
.ls8b_c00153{letter-spacing:-0.465120px;}
.ls7a_c00153{letter-spacing:-0.458280px;}
.ls75_c00153{letter-spacing:-0.376200px;}
.ls77_c00153{letter-spacing:-0.348840px;}
.ls90_c00153{letter-spacing:-0.273600px;}
.ls92_c00153{letter-spacing:-0.253080px;}
.ls68_c00153{letter-spacing:-0.246240px;}
.ls85_c00153{letter-spacing:-0.218880px;}
.ls81_c00153{letter-spacing:-0.150480px;}
.ls8e_c00153{letter-spacing:-0.116280px;}
.ls7f_c00153{letter-spacing:-0.102600px;}
.ls95_c00153{letter-spacing:-0.075240px;}
.ls93_c00153{letter-spacing:-0.054720px;}
.ls74_c00153{letter-spacing:-0.041040px;}
.ls6f_c00153{letter-spacing:-0.034200px;}
.ls76_c00153{letter-spacing:-0.006840px;}
.ls71_c00153{letter-spacing:0.000000px;}
.ls2e_c00153{letter-spacing:0.006840px;}
.ls54_c00153{letter-spacing:0.034200px;}
.ls2d_c00153{letter-spacing:0.041040px;}
.ls25_c00153{letter-spacing:0.068400px;}
.ls41_c00153{letter-spacing:0.075240px;}
.ls1d_c00153{letter-spacing:0.082080px;}
.ls36_c00153{letter-spacing:0.088920px;}
.ls13_c00153{letter-spacing:0.102600px;}
.ls58_c00153{letter-spacing:0.109440px;}
.ls5d_c00153{letter-spacing:0.116280px;}
.ls39_c00153{letter-spacing:0.123120px;}
.ls3b_c00153{letter-spacing:0.136800px;}
.ls44_c00153{letter-spacing:0.198360px;}
.ls4e_c00153{letter-spacing:0.212040px;}
.ls57_c00153{letter-spacing:0.273600px;}
.ls96_c00153{letter-spacing:0.287280px;}
.ls4_c00153{letter-spacing:0.307800px;}
.ls1b_c00153{letter-spacing:0.314640px;}
.ls8d_c00153{letter-spacing:0.342000px;}
.ls69_c00153{letter-spacing:0.362520px;}
.ls5a_c00153{letter-spacing:0.369360px;}
.ls2a_c00153{letter-spacing:0.376200px;}
.ls3e_c00153{letter-spacing:0.396720px;}
.ls7b_c00153{letter-spacing:0.403560px;}
.ls4f_c00153{letter-spacing:0.410400px;}
.ls32_c00153{letter-spacing:0.424080px;}
.ls31_c00153{letter-spacing:0.430920px;}
.ls47_c00153{letter-spacing:0.444600px;}
.ls50_c00153{letter-spacing:0.451440px;}
.lsf_c00153{letter-spacing:0.465120px;}
.ls42_c00153{letter-spacing:0.471960px;}
.ls65_c00153{letter-spacing:0.478800px;}
.ls0_c00153{letter-spacing:0.499320px;}
.lsa_c00153{letter-spacing:0.513000px;}
.ls24_c00153{letter-spacing:0.533520px;}
.ls7_c00153{letter-spacing:0.574560px;}
.ls48_c00153{letter-spacing:0.581400px;}
.lsc_c00153{letter-spacing:0.595080px;}
.lse_c00153{letter-spacing:0.601920px;}
.ls64_c00153{letter-spacing:0.615600px;}
.ls40_c00153{letter-spacing:0.629280px;}
.ls17_c00153{letter-spacing:0.636120px;}
.ls79_c00153{letter-spacing:0.642960px;}
.ls27_c00153{letter-spacing:0.649800px;}
.ls1c_c00153{letter-spacing:0.656640px;}
.ls9_c00153{letter-spacing:0.663480px;}
.ls59_c00153{letter-spacing:0.677160px;}
.ls3a_c00153{letter-spacing:0.690840px;}
.ls5_c00153{letter-spacing:0.718200px;}
.ls4a_c00153{letter-spacing:0.725040px;}
.ls3_c00153{letter-spacing:0.731880px;}
.ls37_c00153{letter-spacing:0.738720px;}
.ls1f_c00153{letter-spacing:0.745560px;}
.ls12_c00153{letter-spacing:0.752400px;}
.ls8_c00153{letter-spacing:0.759240px;}
.ls51_c00153{letter-spacing:0.766080px;}
.ls53_c00153{letter-spacing:0.772920px;}
.ls2b_c00153{letter-spacing:0.793440px;}
.ls18_c00153{letter-spacing:0.800280px;}
.ls3d_c00153{letter-spacing:0.807120px;}
.ls33_c00153{letter-spacing:0.820800px;}
.ls2_c00153{letter-spacing:0.827640px;}
.ls30_c00153{letter-spacing:0.834480px;}
.ls45_c00153{letter-spacing:0.841320px;}
.ls9a_c00153{letter-spacing:0.848160px;}
.ls49_c00153{letter-spacing:0.855000px;}
.ls11_c00153{letter-spacing:0.916560px;}
.ls4c_c00153{letter-spacing:0.923400px;}
.ls43_c00153{letter-spacing:0.943920px;}
.ls5e_c00153{letter-spacing:0.950760px;}
.ls28_c00153{letter-spacing:0.964440px;}
.ls2f_c00153{letter-spacing:0.984960px;}
.ls46_c00153{letter-spacing:1.012320px;}
.ls4d_c00153{letter-spacing:1.026000px;}
.ls29_c00153{letter-spacing:1.032840px;}
.ls14_c00153{letter-spacing:1.060200px;}
.ls66_c00153{letter-spacing:1.067040px;}
.ls16_c00153{letter-spacing:1.101240px;}
.ls2c_c00153{letter-spacing:1.121760px;}
.ls63_c00153{letter-spacing:1.128600px;}
.ls5f_c00153{letter-spacing:1.142280px;}
.ls6b_c00153{letter-spacing:1.183320px;}
.ls8c_c00153{letter-spacing:1.203840px;}
.ls56_c00153{letter-spacing:1.210680px;}
.ls3f_c00153{letter-spacing:1.217520px;}
.ls19_c00153{letter-spacing:1.224360px;}
.ls26_c00153{letter-spacing:1.251720px;}
.ls1e_c00153{letter-spacing:1.272240px;}
.ls61_c00153{letter-spacing:1.279080px;}
.ls8f_c00153{letter-spacing:1.285920px;}
.ls52_c00153{letter-spacing:1.299600px;}
.ls35_c00153{letter-spacing:1.368000px;}
.ls6_c00153{letter-spacing:1.381680px;}
.ls3c_c00153{letter-spacing:1.388520px;}
.ls62_c00153{letter-spacing:1.429560px;}
.ls38_c00153{letter-spacing:1.525320px;}
.ls4b_c00153{letter-spacing:1.627920px;}
.lsb_c00153{letter-spacing:1.648440px;}
.ls21_c00153{letter-spacing:1.655280px;}
.lsd_c00153{letter-spacing:1.737360px;}
.ls22_c00153{letter-spacing:1.744200px;}
.ls5b_c00153{letter-spacing:1.792080px;}
.ls1a_c00153{letter-spacing:1.812600px;}
.ls5c_c00153{letter-spacing:2.004120px;}
.ls34_c00153{letter-spacing:2.017800px;}
.ls55_c00153{letter-spacing:2.202480px;}
.ls20_c00153{letter-spacing:2.236680px;}
.ls10_c00153{letter-spacing:2.270880px;}
.ls23_c00153{letter-spacing:2.291400px;}
.ls60_c00153{letter-spacing:2.715480px;}
.ls15_c00153{letter-spacing:3.091680px;}
.ls1_c00153{letter-spacing:3.166920px;}
.ls70_c00153{letter-spacing:3.420000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{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__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00153{word-spacing:-16.751160px;}
.ws2_c00153{word-spacing:-0.034200px;}
.ws5_c00153{word-spacing:0.000000px;}
.ws4_c00153{word-spacing:0.164160px;}
.ws3_c00153{word-spacing:1.463760px;}
.ws0_c00153{word-spacing:1.737600px;}
._a_c00153{margin-left:-6.176520px;}
._6_c00153{margin-left:-4.525560px;}
._1_c00153{margin-left:-2.845560px;}
._2_c00153{margin-left:-1.224360px;}
._5_c00153{width:1.744200px;}
._4_c00153{width:3.604680px;}
._0_c00153{width:5.637240px;}
._3_c00153{width:7.099920px;}
._8_c00153{width:8.395560px;}
._12_c00153{width:9.918000px;}
._11_c00153{width:11.360160px;}
._7_c00153{width:12.846120px;}
._f_c00153{width:14.302440px;}
._9_c00153{width:15.377310px;}
._10_c00153{width:17.332560px;}
._13_c00153{width:19.117440px;}
._d_c00153{width:20.184840px;}
._e_c00153{width:22.284720px;}
._b_c00153{width:23.420160px;}
._c_c00153{width:24.505440px;}
.fc0_c00153{color:transparent;}
.fs4_c00153{font-size:32.400600px;}
.fs7_c00153{font-size:56.400000px;}
.fs0_c00153{font-size:66.600000px;}
.fs1_c00153{font-size:68.400000px;}
.fs3_c00153{font-size:70.200000px;}
.fs6_c00153{font-size:73.200000px;}
.fs5_c00153{font-size:76.200000px;}
.fs2_c00153{font-size:76.800000px;}
.y0_c00153{bottom:0.000000px;}
.y1e_c00153{bottom:69.855006px;}
.y1d_c00153{bottom:137.880006px;}
.y1c_c00153{bottom:175.311606px;}
.y1a_c00153{bottom:207.008106px;}
.y1b_c00153{bottom:207.015006px;}
.y19_c00153{bottom:270.722706px;}
.y18_c00153{bottom:302.409006px;}
.y17_c00153{bottom:333.000906px;}
.y16_c00153{bottom:364.687206px;}
.y15_c00153{bottom:396.014406px;}
.y14_c00153{bottom:427.324506px;}
.y13_c00153{bottom:458.651706px;}
.y12_c00153{bottom:489.978906px;}
.y11_c00153{bottom:552.257106px;}
.y10_c00153{bottom:583.943406px;}
.yf_c00153{bottom:646.939806px;}
.yd_c00153{bottom:709.551606px;}
.ye_c00153{bottom:709.560006px;}
.yc_c00153{bottom:741.255006px;}
.yb_c00153{bottom:804.246906px;}
.ya_c00153{bottom:835.215006px;}
.y9_c00153{bottom:835.219506px;}
.y8_c00153{bottom:898.575006px;}
.y7_c00153{bottom:960.846006px;}
.y5_c00153{bottom:991.447806px;}
.y6_c00153{bottom:991.455006px;}
.y4_c00153{bottom:1022.775006px;}
.y3_c00153{bottom:1085.415006px;}
.y2_c00153{bottom:1117.455006px;}
.y1_c00153{bottom:1194.135006px;}
.hb_c00153{height:58.823438px;}
.h2_c00153{height:65.364258px;}
.h6_c00153{height:67.097461px;}
.h3_c00153{height:67.130859px;}
.h8_c00153{height:67.158459px;}
.h5_c00153{height:73.216406px;}
.h7_c00153{height:74.748926px;}
.h4_c00153{height:75.375000px;}
.ha_c00153{height:76.345312px;}
.h9_c00153{height:76.378912px;}
.h1_c00153{height:1263.000000px;}
.h0_c00153{height:1263.240006px;}
.w1_c00153{width:892.500000px;}
.w0_c00153{width:892.799998px;}
.x0_c00153{left:0.000000px;}
.x18_c00153{left:114.084298px;}
.x17_c00153{left:115.178698px;}
.x10_c00153{left:117.893998px;}
.x8_c00153{left:119.739898px;}
.x1_c00153{left:122.684999px;}
.x9_c00153{left:142.109998px;}
.x5_c00153{left:143.549998px;}
.xa_c00153{left:166.964999px;}
.x19_c00153{left:168.616198px;}
.x16_c00153{left:170.428798px;}
.xd_c00153{left:172.247698px;}
.x7_c00153{left:174.029999px;}
.x2_c00153{left:175.484998px;}
.x14_c00153{left:230.564999px;}
.x15_c00153{left:258.014998px;}
.xe_c00153{left:300.869999px;}
.x11_c00153{left:313.004999px;}
.xf_c00153{left:328.964999px;}
.x12_c00153{left:390.449998px;}
.x1c_c00153{left:419.684999px;}
.x1a_c00153{left:424.709999px;}
.x6_c00153{left:437.309999px;}
.x1b_c00153{left:456.374998px;}
.x13_c00153{left:475.604998px;}
.x3_c00153{left:558.269998px;}
.xb_c00153{left:562.094998px;}
.xc_c00153{left:588.254999px;}
.x4_c00153{left:590.969998px;}
@media print{
.v2_c00153{vertical-align:-23.040000pt;}
.v0_c00153{vertical-align:0.000000pt;}
.v1_c00153{vertical-align:23.040000pt;}
.ls6a_c00153{letter-spacing:-2.389333pt;}
.ls7d_c00153{letter-spacing:-2.370667pt;}
.ls6c_c00153{letter-spacing:-2.128000pt;}
.ls67_c00153{letter-spacing:-2.072000pt;}
.ls98_c00153{letter-spacing:-2.048960pt;}
.ls84_c00153{letter-spacing:-1.927360pt;}
.ls78_c00153{letter-spacing:-1.896960pt;}
.ls94_c00153{letter-spacing:-1.890880pt;}
.ls88_c00153{letter-spacing:-1.866560pt;}
.ls80_c00153{letter-spacing:-1.848320pt;}
.ls9b_c00153{letter-spacing:-1.754667pt;}
.ls7c_c00153{letter-spacing:-1.733973pt;}
.ls83_c00153{letter-spacing:-1.270720pt;}
.ls73_c00153{letter-spacing:-1.223040pt;}
.ls6d_c00153{letter-spacing:-1.167360pt;}
.ls87_c00153{letter-spacing:-0.960640pt;}
.ls89_c00153{letter-spacing:-0.796480pt;}
.ls99_c00153{letter-spacing:-0.793813pt;}
.ls7e_c00153{letter-spacing:-0.687040pt;}
.ls97_c00153{letter-spacing:-0.608000pt;}
.ls91_c00153{letter-spacing:-0.559360pt;}
.ls82_c00153{letter-spacing:-0.535040pt;}
.ls86_c00153{letter-spacing:-0.474240pt;}
.ls72_c00153{letter-spacing:-0.468160pt;}
.ls8a_c00153{letter-spacing:-0.449920pt;}
.ls6e_c00153{letter-spacing:-0.425600pt;}
.ls8b_c00153{letter-spacing:-0.413440pt;}
.ls7a_c00153{letter-spacing:-0.407360pt;}
.ls75_c00153{letter-spacing:-0.334400pt;}
.ls77_c00153{letter-spacing:-0.310080pt;}
.ls90_c00153{letter-spacing:-0.243200pt;}
.ls92_c00153{letter-spacing:-0.224960pt;}
.ls68_c00153{letter-spacing:-0.218880pt;}
.ls85_c00153{letter-spacing:-0.194560pt;}
.ls81_c00153{letter-spacing:-0.133760pt;}
.ls8e_c00153{letter-spacing:-0.103360pt;}
.ls7f_c00153{letter-spacing:-0.091200pt;}
.ls95_c00153{letter-spacing:-0.066880pt;}
.ls93_c00153{letter-spacing:-0.048640pt;}
.ls74_c00153{letter-spacing:-0.036480pt;}
.ls6f_c00153{letter-spacing:-0.030400pt;}
.ls76_c00153{letter-spacing:-0.006080pt;}
.ls71_c00153{letter-spacing:0.000000pt;}
.ls2e_c00153{letter-spacing:0.006080pt;}
.ls54_c00153{letter-spacing:0.030400pt;}
.ls2d_c00153{letter-spacing:0.036480pt;}
.ls25_c00153{letter-spacing:0.060800pt;}
.ls41_c00153{letter-spacing:0.066880pt;}
.ls1d_c00153{letter-spacing:0.072960pt;}
.ls36_c00153{letter-spacing:0.079040pt;}
.ls13_c00153{letter-spacing:0.091200pt;}
.ls58_c00153{letter-spacing:0.097280pt;}
.ls5d_c00153{letter-spacing:0.103360pt;}
.ls39_c00153{letter-spacing:0.109440pt;}
.ls3b_c00153{letter-spacing:0.121600pt;}
.ls44_c00153{letter-spacing:0.176320pt;}
.ls4e_c00153{letter-spacing:0.188480pt;}
.ls57_c00153{letter-spacing:0.243200pt;}
.ls96_c00153{letter-spacing:0.255360pt;}
.ls4_c00153{letter-spacing:0.273600pt;}
.ls1b_c00153{letter-spacing:0.279680pt;}
.ls8d_c00153{letter-spacing:0.304000pt;}
.ls69_c00153{letter-spacing:0.322240pt;}
.ls5a_c00153{letter-spacing:0.328320pt;}
.ls2a_c00153{letter-spacing:0.334400pt;}
.ls3e_c00153{letter-spacing:0.352640pt;}
.ls7b_c00153{letter-spacing:0.358720pt;}
.ls4f_c00153{letter-spacing:0.364800pt;}
.ls32_c00153{letter-spacing:0.376960pt;}
.ls31_c00153{letter-spacing:0.383040pt;}
.ls47_c00153{letter-spacing:0.395200pt;}
.ls50_c00153{letter-spacing:0.401280pt;}
.lsf_c00153{letter-spacing:0.413440pt;}
.ls42_c00153{letter-spacing:0.419520pt;}
.ls65_c00153{letter-spacing:0.425600pt;}
.ls0_c00153{letter-spacing:0.443840pt;}
.lsa_c00153{letter-spacing:0.456000pt;}
.ls24_c00153{letter-spacing:0.474240pt;}
.ls7_c00153{letter-spacing:0.510720pt;}
.ls48_c00153{letter-spacing:0.516800pt;}
.lsc_c00153{letter-spacing:0.528960pt;}
.lse_c00153{letter-spacing:0.535040pt;}
.ls64_c00153{letter-spacing:0.547200pt;}
.ls40_c00153{letter-spacing:0.559360pt;}
.ls17_c00153{letter-spacing:0.565440pt;}
.ls79_c00153{letter-spacing:0.571520pt;}
.ls27_c00153{letter-spacing:0.577600pt;}
.ls1c_c00153{letter-spacing:0.583680pt;}
.ls9_c00153{letter-spacing:0.589760pt;}
.ls59_c00153{letter-spacing:0.601920pt;}
.ls3a_c00153{letter-spacing:0.614080pt;}
.ls5_c00153{letter-spacing:0.638400pt;}
.ls4a_c00153{letter-spacing:0.644480pt;}
.ls3_c00153{letter-spacing:0.650560pt;}
.ls37_c00153{letter-spacing:0.656640pt;}
.ls1f_c00153{letter-spacing:0.662720pt;}
.ls12_c00153{letter-spacing:0.668800pt;}
.ls8_c00153{letter-spacing:0.674880pt;}
.ls51_c00153{letter-spacing:0.680960pt;}
.ls53_c00153{letter-spacing:0.687040pt;}
.ls2b_c00153{letter-spacing:0.705280pt;}
.ls18_c00153{letter-spacing:0.711360pt;}
.ls3d_c00153{letter-spacing:0.717440pt;}
.ls33_c00153{letter-spacing:0.729600pt;}
.ls2_c00153{letter-spacing:0.735680pt;}
.ls30_c00153{letter-spacing:0.741760pt;}
.ls45_c00153{letter-spacing:0.747840pt;}
.ls9a_c00153{letter-spacing:0.753920pt;}
.ls49_c00153{letter-spacing:0.760000pt;}
.ls11_c00153{letter-spacing:0.814720pt;}
.ls4c_c00153{letter-spacing:0.820800pt;}
.ls43_c00153{letter-spacing:0.839040pt;}
.ls5e_c00153{letter-spacing:0.845120pt;}
.ls28_c00153{letter-spacing:0.857280pt;}
.ls2f_c00153{letter-spacing:0.875520pt;}
.ls46_c00153{letter-spacing:0.899840pt;}
.ls4d_c00153{letter-spacing:0.912000pt;}
.ls29_c00153{letter-spacing:0.918080pt;}
.ls14_c00153{letter-spacing:0.942400pt;}
.ls66_c00153{letter-spacing:0.948480pt;}
.ls16_c00153{letter-spacing:0.978880pt;}
.ls2c_c00153{letter-spacing:0.997120pt;}
.ls63_c00153{letter-spacing:1.003200pt;}
.ls5f_c00153{letter-spacing:1.015360pt;}
.ls6b_c00153{letter-spacing:1.051840pt;}
.ls8c_c00153{letter-spacing:1.070080pt;}
.ls56_c00153{letter-spacing:1.076160pt;}
.ls3f_c00153{letter-spacing:1.082240pt;}
.ls19_c00153{letter-spacing:1.088320pt;}
.ls26_c00153{letter-spacing:1.112640pt;}
.ls1e_c00153{letter-spacing:1.130880pt;}
.ls61_c00153{letter-spacing:1.136960pt;}
.ls8f_c00153{letter-spacing:1.143040pt;}
.ls52_c00153{letter-spacing:1.155200pt;}
.ls35_c00153{letter-spacing:1.216000pt;}
.ls6_c00153{letter-spacing:1.228160pt;}
.ls3c_c00153{letter-spacing:1.234240pt;}
.ls62_c00153{letter-spacing:1.270720pt;}
.ls38_c00153{letter-spacing:1.355840pt;}
.ls4b_c00153{letter-spacing:1.447040pt;}
.lsb_c00153{letter-spacing:1.465280pt;}
.ls21_c00153{letter-spacing:1.471360pt;}
.lsd_c00153{letter-spacing:1.544320pt;}
.ls22_c00153{letter-spacing:1.550400pt;}
.ls5b_c00153{letter-spacing:1.592960pt;}
.ls1a_c00153{letter-spacing:1.611200pt;}
.ls5c_c00153{letter-spacing:1.781440pt;}
.ls34_c00153{letter-spacing:1.793600pt;}
.ls55_c00153{letter-spacing:1.957760pt;}
.ls20_c00153{letter-spacing:1.988160pt;}
.ls10_c00153{letter-spacing:2.018560pt;}
.ls23_c00153{letter-spacing:2.036800pt;}
.ls60_c00153{letter-spacing:2.413760pt;}
.ls15_c00153{letter-spacing:2.748160pt;}
.ls1_c00153{letter-spacing:2.815040pt;}
.ls70_c00153{letter-spacing:3.040000pt;}
.ws1_c00153{word-spacing:-14.889920pt;}
.ws2_c00153{word-spacing:-0.030400pt;}
.ws5_c00153{word-spacing:0.000000pt;}
.ws4_c00153{word-spacing:0.145920pt;}
.ws3_c00153{word-spacing:1.301120pt;}
.ws0_c00153{word-spacing:1.544533pt;}
._a_c00153{margin-left:-5.490240pt;}
._6_c00153{margin-left:-4.022720pt;}
._1_c00153{margin-left:-2.529387pt;}
._2_c00153{margin-left:-1.088320pt;}
._5_c00153{width:1.550400pt;}
._4_c00153{width:3.204160pt;}
._0_c00153{width:5.010880pt;}
._3_c00153{width:6.311040pt;}
._8_c00153{width:7.462720pt;}
._12_c00153{width:8.816000pt;}
._11_c00153{width:10.097920pt;}
._7_c00153{width:11.418773pt;}
._f_c00153{width:12.713280pt;}
._9_c00153{width:13.668720pt;}
._10_c00153{width:15.406720pt;}
._13_c00153{width:16.993280pt;}
._d_c00153{width:17.942080pt;}
._e_c00153{width:19.808640pt;}
._b_c00153{width:20.817920pt;}
._c_c00153{width:21.782613pt;}
.fs4_c00153{font-size:28.800533pt;}
.fs7_c00153{font-size:50.133333pt;}
.fs0_c00153{font-size:59.200000pt;}
.fs1_c00153{font-size:60.800000pt;}
.fs3_c00153{font-size:62.400000pt;}
.fs6_c00153{font-size:65.066667pt;}
.fs5_c00153{font-size:67.733333pt;}
.fs2_c00153{font-size:68.266667pt;}
.y0_c00153{bottom:0.000000pt;}
.y1e_c00153{bottom:62.093339pt;}
.y1d_c00153{bottom:122.560005pt;}
.y1c_c00153{bottom:155.832539pt;}
.y1a_c00153{bottom:184.007205pt;}
.y1b_c00153{bottom:184.013339pt;}
.y19_c00153{bottom:240.642405pt;}
.y18_c00153{bottom:268.808005pt;}
.y17_c00153{bottom:296.000805pt;}
.y16_c00153{bottom:324.166405pt;}
.y15_c00153{bottom:352.012805pt;}
.y14_c00153{bottom:379.844005pt;}
.y13_c00153{bottom:407.690405pt;}
.y12_c00153{bottom:435.536805pt;}
.y11_c00153{bottom:490.895205pt;}
.y10_c00153{bottom:519.060805pt;}
.yf_c00153{bottom:575.057605pt;}
.yd_c00153{bottom:630.712539pt;}
.ye_c00153{bottom:630.720005pt;}
.yc_c00153{bottom:658.893339pt;}
.yb_c00153{bottom:714.886139pt;}
.ya_c00153{bottom:742.413339pt;}
.y9_c00153{bottom:742.417339pt;}
.y8_c00153{bottom:798.733339pt;}
.y7_c00153{bottom:854.085339pt;}
.y5_c00153{bottom:881.286939pt;}
.y6_c00153{bottom:881.293339pt;}
.y4_c00153{bottom:909.133339pt;}
.y3_c00153{bottom:964.813339pt;}
.y2_c00153{bottom:993.293339pt;}
.y1_c00153{bottom:1061.453339pt;}
.hb_c00153{height:52.287500pt;}
.h2_c00153{height:58.101562pt;}
.h6_c00153{height:59.642187pt;}
.h3_c00153{height:59.671875pt;}
.h8_c00153{height:59.696408pt;}
.h5_c00153{height:65.081250pt;}
.h7_c00153{height:66.443490pt;}
.h4_c00153{height:67.000000pt;}
.ha_c00153{height:67.862500pt;}
.h9_c00153{height:67.892367pt;}
.h1_c00153{height:1122.666667pt;}
.h0_c00153{height:1122.880005pt;}
.w1_c00153{width:793.333333pt;}
.w0_c00153{width:793.599999pt;}
.x0_c00153{left:0.000000pt;}
.x18_c00153{left:101.408265pt;}
.x17_c00153{left:102.381065pt;}
.x10_c00153{left:104.794665pt;}
.x8_c00153{left:106.435465pt;}
.x1_c00153{left:109.053332pt;}
.x9_c00153{left:126.319999pt;}
.x5_c00153{left:127.599999pt;}
.xa_c00153{left:148.413332pt;}
.x19_c00153{left:149.881065pt;}
.x16_c00153{left:151.492265pt;}
.xd_c00153{left:153.109065pt;}
.x7_c00153{left:154.693332pt;}
.x2_c00153{left:155.986665pt;}
.x14_c00153{left:204.946665pt;}
.x15_c00153{left:229.346665pt;}
.xe_c00153{left:267.439999pt;}
.x11_c00153{left:278.226665pt;}
.xf_c00153{left:292.413332pt;}
.x12_c00153{left:347.066665pt;}
.x1c_c00153{left:373.053332pt;}
.x1a_c00153{left:377.519999pt;}
.x6_c00153{left:388.719999pt;}
.x1b_c00153{left:405.666665pt;}
.x13_c00153{left:422.759999pt;}
.x3_c00153{left:496.239999pt;}
.xb_c00153{left:499.639999pt;}
.xc_c00153{left:522.893332pt;}
.x4_c00153{left:525.306665pt;}
}





/* 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_c00154 {
    display:none;
  }
  .loading-indicator_c00154.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00154 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_c00154 { 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_c00154" -> "#page-container .classname_c00154")
 */
.pf_c00154 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00154 { /* 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_c00154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00154 { /* 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_c00154 { /* 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_c00154 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00154 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00154 {overflow:visible;}
  }
}
.c_c00154 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00154 { /* 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_c00154:after { /* webkit #35443 */
  content: '';
}
.t_c00154:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00154 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 */
}
.__c00154 { /* 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_c00154 { /* info for Javascript */
  display:none;
}
.l_c00154 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00154 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00154 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00154: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_c00154 {
    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_c00154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00154.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_c00154 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00154;src:url('chunks/assets/font_d975359fb9a7f5fc064ed3ec.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.284668;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_c00154;src:url('chunks/assets/font_c7609ffe4b0b9bad29489d83.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.284180;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_c00154;src:url('chunks/assets/font_24c18b5ef7a8eae7d151ab3e.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;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;}
.md_c00154{transform:matrix(0.149227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149227,0.000000,0.000000,0.250000,0,0);}
.me_c00154{transform:matrix(0.191289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191289,0.000000,0.000000,0.250000,0,0);}
.mf_c00154{transform:matrix(0.193946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193946,0.000000,0.000000,0.250000,0,0);}
.m9_c00154{transform:matrix(0.221561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221561,0.000000,0.000000,0.250000,0,0);}
.ma_c00154{transform:matrix(0.232146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232146,0.000000,0.000000,0.250000,0,0);}
.mc_c00154{transform:matrix(0.239434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239434,0.000000,0.000000,0.250000,0,0);}
.m11_c00154{transform:matrix(0.241304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241304,0.000000,0.000000,0.250000,0,0);}
.m2_c00154{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.mb_c00154{transform:matrix(0.244378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244378,0.000000,0.000000,0.250000,0,0);}
.m7_c00154{transform:matrix(0.246070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246070,0.000000,0.000000,0.250000,0,0);}
.m0_c00154{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m10_c00154{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m3_c00154{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m6_c00154{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m5_c00154{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m1_c00154{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);}
.m4_c00154{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m8_c00154{transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls93_c00154{letter-spacing:-2.772000px;}
.ls7b_c00154{letter-spacing:-2.499000px;}
.ls7c_c00154{letter-spacing:-2.478000px;}
.ls5a_c00154{letter-spacing:-2.415000px;}
.ls56_c00154{letter-spacing:-2.373000px;}
.ls3e_c00154{letter-spacing:-2.352000px;}
.ls81_c00154{letter-spacing:-2.311500px;}
.ls7f_c00154{letter-spacing:-2.170560px;}
.ls9a_c00154{letter-spacing:-2.142000px;}
.ls9d_c00154{letter-spacing:-2.037000px;}
.ls66_c00154{letter-spacing:-2.001000px;}
.ls71_c00154{letter-spacing:-1.952700px;}
.ls72_c00154{letter-spacing:-1.911300px;}
.ls49_c00154{letter-spacing:-1.766400px;}
.ls6e_c00154{letter-spacing:-1.683600px;}
.ls76_c00154{letter-spacing:-1.580100px;}
.ls9b_c00154{letter-spacing:-1.449000px;}
.ls77_c00154{letter-spacing:-1.428300px;}
.ls5b_c00154{letter-spacing:-1.359300px;}
.ls8e_c00154{letter-spacing:-1.235100px;}
.ls59_c00154{letter-spacing:-1.221300px;}
.ls40_c00154{letter-spacing:-1.110900px;}
.ls4d_c00154{letter-spacing:-1.083300px;}
.ls6d_c00154{letter-spacing:-1.069500px;}
.ls6f_c00154{letter-spacing:-1.000500px;}
.ls7e_c00154{letter-spacing:-0.977040px;}
.ls64_c00154{letter-spacing:-0.966000px;}
.ls65_c00154{letter-spacing:-0.945300px;}
.ls70_c00154{letter-spacing:-0.903900px;}
.ls80_c00154{letter-spacing:-0.863760px;}
.ls51_c00154{letter-spacing:-0.821100px;}
.ls5c_c00154{letter-spacing:-0.800400px;}
.ls89_c00154{letter-spacing:-0.772800px;}
.ls97_c00154{letter-spacing:-0.759000px;}
.ls4e_c00154{letter-spacing:-0.738300px;}
.ls85_c00154{letter-spacing:-0.724500px;}
.ls6b_c00154{letter-spacing:-0.676200px;}
.ls42_c00154{letter-spacing:-0.634800px;}
.ls82_c00154{letter-spacing:-0.558900px;}
.ls52_c00154{letter-spacing:-0.531300px;}
.ls6c_c00154{letter-spacing:-0.517500px;}
.ls75_c00154{letter-spacing:-0.503700px;}
.ls79_c00154{letter-spacing:-0.483000px;}
.ls91_c00154{letter-spacing:-0.469200px;}
.ls78_c00154{letter-spacing:-0.444600px;}
.ls96_c00154{letter-spacing:-0.441600px;}
.ls90_c00154{letter-spacing:-0.434700px;}
.ls95_c00154{letter-spacing:-0.427800px;}
.ls48_c00154{letter-spacing:-0.407100px;}
.ls54_c00154{letter-spacing:-0.400200px;}
.ls55_c00154{letter-spacing:-0.393300px;}
.ls67_c00154{letter-spacing:-0.358800px;}
.ls68_c00154{letter-spacing:-0.351900px;}
.ls4b_c00154{letter-spacing:-0.345000px;}
.ls69_c00154{letter-spacing:-0.331200px;}
.ls7d_c00154{letter-spacing:-0.325680px;}
.ls6a_c00154{letter-spacing:-0.324300px;}
.ls50_c00154{letter-spacing:-0.317400px;}
.ls3f_c00154{letter-spacing:-0.296700px;}
.ls5e_c00154{letter-spacing:-0.289800px;}
.ls58_c00154{letter-spacing:-0.269100px;}
.ls87_c00154{letter-spacing:-0.262200px;}
.ls99_c00154{letter-spacing:-0.248400px;}
.ls45_c00154{letter-spacing:-0.241500px;}
.ls47_c00154{letter-spacing:-0.234600px;}
.ls62_c00154{letter-spacing:-0.220800px;}
.ls83_c00154{letter-spacing:-0.213900px;}
.ls46_c00154{letter-spacing:-0.207000px;}
.ls41_c00154{letter-spacing:-0.200100px;}
.ls86_c00154{letter-spacing:-0.179400px;}
.ls4c_c00154{letter-spacing:-0.172500px;}
.ls8a_c00154{letter-spacing:-0.165600px;}
.ls84_c00154{letter-spacing:-0.158700px;}
.ls4f_c00154{letter-spacing:-0.151800px;}
.ls94_c00154{letter-spacing:-0.138000px;}
.ls8c_c00154{letter-spacing:-0.110400px;}
.ls43_c00154{letter-spacing:-0.103500px;}
.ls98_c00154{letter-spacing:-0.082800px;}
.ls63_c00154{letter-spacing:-0.075900px;}
.ls8f_c00154{letter-spacing:-0.069000px;}
.ls61_c00154{letter-spacing:-0.055200px;}
.ls57_c00154{letter-spacing:-0.048300px;}
.ls53_c00154{letter-spacing:-0.041400px;}
.ls8b_c00154{letter-spacing:-0.020700px;}
.ls60_c00154{letter-spacing:-0.013800px;}
.ls5d_c00154{letter-spacing:-0.006900px;}
.ls4a_c00154{letter-spacing:0.000000px;}
.ls6_c00154{letter-spacing:0.006900px;}
.ls10_c00154{letter-spacing:0.020700px;}
.ls16_c00154{letter-spacing:0.041400px;}
.ls2d_c00154{letter-spacing:0.048300px;}
.ls1d_c00154{letter-spacing:0.055200px;}
.ls2c_c00154{letter-spacing:0.082800px;}
.ls1e_c00154{letter-spacing:0.096600px;}
.ls1f_c00154{letter-spacing:0.131100px;}
.ls15_c00154{letter-spacing:0.138000px;}
.ls32_c00154{letter-spacing:0.144900px;}
.ls9_c00154{letter-spacing:0.151800px;}
.ls37_c00154{letter-spacing:0.158700px;}
.lse_c00154{letter-spacing:0.179400px;}
.ls13_c00154{letter-spacing:0.186300px;}
.ls36_c00154{letter-spacing:0.193200px;}
.ls11_c00154{letter-spacing:0.200100px;}
.ls3a_c00154{letter-spacing:0.207000px;}
.ls35_c00154{letter-spacing:0.213900px;}
.ls9c_c00154{letter-spacing:0.220800px;}
.ls3b_c00154{letter-spacing:0.227700px;}
.ls8d_c00154{letter-spacing:0.234600px;}
.ls33_c00154{letter-spacing:0.241500px;}
.ls24_c00154{letter-spacing:0.248400px;}
.lsc_c00154{letter-spacing:0.282900px;}
.ls25_c00154{letter-spacing:0.300960px;}
.ls8_c00154{letter-spacing:0.303600px;}
.ls29_c00154{letter-spacing:0.324300px;}
.lsa_c00154{letter-spacing:0.331200px;}
.ls2_c00154{letter-spacing:0.338100px;}
.ls3_c00154{letter-spacing:0.351900px;}
.ls20_c00154{letter-spacing:0.358800px;}
.ls30_c00154{letter-spacing:0.365700px;}
.ls27_c00154{letter-spacing:0.372600px;}
.ls44_c00154{letter-spacing:0.379500px;}
.ls3d_c00154{letter-spacing:0.386400px;}
.ls34_c00154{letter-spacing:0.400200px;}
.ls4_c00154{letter-spacing:0.407100px;}
.ls28_c00154{letter-spacing:0.420900px;}
.lsf_c00154{letter-spacing:0.427800px;}
.ls3c_c00154{letter-spacing:0.434700px;}
.ls88_c00154{letter-spacing:0.455400px;}
.ls19_c00154{letter-spacing:0.469200px;}
.lsb_c00154{letter-spacing:0.503700px;}
.ls17_c00154{letter-spacing:0.510720px;}
.ls18_c00154{letter-spacing:0.571200px;}
.ls2b_c00154{letter-spacing:0.579600px;}
.ls2a_c00154{letter-spacing:0.586500px;}
.ls92_c00154{letter-spacing:0.607200px;}
.ls1c_c00154{letter-spacing:0.614100px;}
.ls23_c00154{letter-spacing:0.634800px;}
.ls0_c00154{letter-spacing:0.672000px;}
.ls12_c00154{letter-spacing:0.793500px;}
.ls73_c00154{letter-spacing:0.860160px;}
.ls26_c00154{letter-spacing:0.927360px;}
.ls7a_c00154{letter-spacing:0.947520px;}
.ls14_c00154{letter-spacing:0.987840px;}
.lsd_c00154{letter-spacing:1.000500px;}
.ls1a_c00154{letter-spacing:1.014300px;}
.ls31_c00154{letter-spacing:1.055700px;}
.ls38_c00154{letter-spacing:1.081920px;}
.ls5_c00154{letter-spacing:1.097100px;}
.ls21_c00154{letter-spacing:1.272240px;}
.ls2e_c00154{letter-spacing:1.311000px;}
.ls2f_c00154{letter-spacing:1.600800px;}
.ls1_c00154{letter-spacing:2.463300px;}
.ls7_c00154{letter-spacing:2.746200px;}
.ls22_c00154{letter-spacing:2.920680px;}
.ls1b_c00154{letter-spacing:3.070500px;}
.ls74_c00154{letter-spacing:3.360000px;}
.ls5f_c00154{letter-spacing:3.450000px;}
.ls39_c00154{letter-spacing:34.212000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{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__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00154{word-spacing:0.000000px;}
.ws1_c00154{word-spacing:2.781600px;}
.ws3_c00154{word-spacing:19.205760px;}
.ws0_c00154{word-spacing:20.539200px;}
.ws2_c00154{word-spacing:21.211200px;}
._13_c00154{margin-left:-14.669760px;}
._6_c00154{margin-left:-9.052800px;}
._10_c00154{margin-left:-7.291440px;}
._f_c00154{margin-left:-5.023200px;}
._11_c00154{margin-left:-2.166600px;}
._e_c00154{margin-left:-1.112700px;}
._12_c00154{width:1.025400px;}
._d_c00154{width:2.050200px;}
._5_c00154{width:3.374100px;}
._7_c00154{width:5.250900px;}
._8_c00154{width:6.923700px;}
._c_c00154{width:8.621100px;}
._0_c00154{width:10.895100px;}
._b_c00154{width:12.824100px;}
._3_c00154{width:14.241600px;}
._4_c00154{width:16.083900px;}
._2_c00154{width:18.236700px;}
._1_c00154{width:19.354500px;}
._9_c00154{width:22.086900px;}
._a_c00154{width:23.673900px;}
.fc0_c00154{color:transparent;}
.fs8_c00154{font-size:58.200000px;}
.fs7_c00154{font-size:61.200000px;}
.fs0_c00154{font-size:67.200000px;}
.fs2_c00154{font-size:67.800000px;}
.fs3_c00154{font-size:68.400000px;}
.fs1_c00154{font-size:69.000000px;}
.fs5_c00154{font-size:70.800000px;}
.fs4_c00154{font-size:71.400000px;}
.fs6_c00154{font-size:79.200000px;}
.y0_c00154{bottom:0.000000px;}
.y20_c00154{bottom:72.735006px;}
.y1f_c00154{bottom:149.400006px;}
.y1e_c00154{bottom:180.360006px;}
.y1d_c00154{bottom:244.089006px;}
.y1b_c00154{bottom:275.396256px;}
.y1c_c00154{bottom:275.415006px;}
.y1a_c00154{bottom:306.722256px;}
.y19_c00154{bottom:337.686006px;}
.y18_c00154{bottom:369.012006px;}
.y17_c00154{bottom:399.251256px;}
.y16_c00154{bottom:430.560006px;}
.y15_c00154{bottom:493.215006px;}
.y14_c00154{bottom:524.535006px;}
.y13_c00154{bottom:555.855006px;}
.y12_c00154{bottom:618.135006px;}
.y10_c00154{bottom:681.129006px;}
.y11_c00154{bottom:681.135006px;}
.yf_c00154{bottom:712.800006px;}
.ye_c00154{bottom:775.449006px;}
.yd_c00154{bottom:806.769006px;}
.yc_c00154{bottom:838.095006px;}
.ya_c00154{bottom:900.354006px;}
.yb_c00154{bottom:900.360006px;}
.y9_c00154{bottom:931.680006px;}
.y7_c00154{bottom:993.609006px;}
.y8_c00154{bottom:993.615006px;}
.y5_c00154{bottom:1024.931256px;}
.y6_c00154{bottom:1024.935006px;}
.y4_c00154{bottom:1055.889006px;}
.y3_c00154{bottom:1087.211256px;}
.y2_c00154{bottom:1118.520006px;}
.y1_c00154{bottom:1193.415006px;}
.hc_c00154{height:57.120117px;}
.hb_c00154{height:60.064453px;}
.h7_c00154{height:65.920312px;}
.h2_c00154{height:65.953125px;}
.h3_c00154{height:67.719727px;}
.h4_c00154{height:67.734727px;}
.h5_c00154{height:67.743727px;}
.h9_c00154{height:69.486328px;}
.h8_c00154{height:70.075195px;}
.h6_c00154{height:70.713281px;}
.ha_c00154{height:77.730469px;}
.h1_c00154{height:1263.000000px;}
.h0_c00154{height:1263.240006px;}
.w1_c00154{width:892.500000px;}
.w0_c00154{width:892.799998px;}
.x0_c00154{left:0.000000px;}
.x20_c00154{left:114.659999px;}
.x19_c00154{left:116.629498px;}
.x1_c00154{left:118.004999px;}
.x1c_c00154{left:169.364998px;}
.xe_c00154{left:170.774998px;}
.x2_c00154{left:172.214999px;}
.x9_c00154{left:229.124998px;}
.xf_c00154{left:243.929998px;}
.xa_c00154{left:256.844999px;}
.x13_c00154{left:275.609999px;}
.x10_c00154{left:282.884999px;}
.x21_c00154{left:284.564999px;}
.x8_c00154{left:287.069998px;}
.x22_c00154{left:306.329998px;}
.x14_c00154{left:315.179999px;}
.x1a_c00154{left:343.739999px;}
.x5_c00154{left:351.179999px;}
.x1b_c00154{left:365.729999px;}
.xb_c00154{left:369.119999px;}
.x15_c00154{left:377.609999px;}
.x16_c00154{left:391.649999px;}
.xc_c00154{left:394.004998px;}
.x23_c00154{left:417.479999px;}
.xd_c00154{left:421.124998px;}
.x1d_c00154{left:451.049998px;}
.x17_c00154{left:462.884999px;}
.x6_c00154{left:480.419999px;}
.x1e_c00154{left:486.929999px;}
.x7_c00154{left:517.874998px;}
.x11_c00154{left:593.084998px;}
.x12_c00154{left:620.564999px;}
.x3_c00154{left:674.459998px;}
.x4_c00154{left:693.899999px;}
.x1f_c00154{left:715.289999px;}
.x18_c00154{left:721.244999px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls93_c00154{letter-spacing:-2.464000pt;}
.ls7b_c00154{letter-spacing:-2.221333pt;}
.ls7c_c00154{letter-spacing:-2.202667pt;}
.ls5a_c00154{letter-spacing:-2.146667pt;}
.ls56_c00154{letter-spacing:-2.109333pt;}
.ls3e_c00154{letter-spacing:-2.090667pt;}
.ls81_c00154{letter-spacing:-2.054667pt;}
.ls7f_c00154{letter-spacing:-1.929387pt;}
.ls9a_c00154{letter-spacing:-1.904000pt;}
.ls9d_c00154{letter-spacing:-1.810667pt;}
.ls66_c00154{letter-spacing:-1.778667pt;}
.ls71_c00154{letter-spacing:-1.735733pt;}
.ls72_c00154{letter-spacing:-1.698933pt;}
.ls49_c00154{letter-spacing:-1.570133pt;}
.ls6e_c00154{letter-spacing:-1.496533pt;}
.ls76_c00154{letter-spacing:-1.404533pt;}
.ls9b_c00154{letter-spacing:-1.288000pt;}
.ls77_c00154{letter-spacing:-1.269600pt;}
.ls5b_c00154{letter-spacing:-1.208267pt;}
.ls8e_c00154{letter-spacing:-1.097867pt;}
.ls59_c00154{letter-spacing:-1.085600pt;}
.ls40_c00154{letter-spacing:-0.987467pt;}
.ls4d_c00154{letter-spacing:-0.962933pt;}
.ls6d_c00154{letter-spacing:-0.950667pt;}
.ls6f_c00154{letter-spacing:-0.889333pt;}
.ls7e_c00154{letter-spacing:-0.868480pt;}
.ls64_c00154{letter-spacing:-0.858667pt;}
.ls65_c00154{letter-spacing:-0.840267pt;}
.ls70_c00154{letter-spacing:-0.803467pt;}
.ls80_c00154{letter-spacing:-0.767787pt;}
.ls51_c00154{letter-spacing:-0.729867pt;}
.ls5c_c00154{letter-spacing:-0.711467pt;}
.ls89_c00154{letter-spacing:-0.686933pt;}
.ls97_c00154{letter-spacing:-0.674667pt;}
.ls4e_c00154{letter-spacing:-0.656267pt;}
.ls85_c00154{letter-spacing:-0.644000pt;}
.ls6b_c00154{letter-spacing:-0.601067pt;}
.ls42_c00154{letter-spacing:-0.564267pt;}
.ls82_c00154{letter-spacing:-0.496800pt;}
.ls52_c00154{letter-spacing:-0.472267pt;}
.ls6c_c00154{letter-spacing:-0.460000pt;}
.ls75_c00154{letter-spacing:-0.447733pt;}
.ls79_c00154{letter-spacing:-0.429333pt;}
.ls91_c00154{letter-spacing:-0.417067pt;}
.ls78_c00154{letter-spacing:-0.395200pt;}
.ls96_c00154{letter-spacing:-0.392533pt;}
.ls90_c00154{letter-spacing:-0.386400pt;}
.ls95_c00154{letter-spacing:-0.380267pt;}
.ls48_c00154{letter-spacing:-0.361867pt;}
.ls54_c00154{letter-spacing:-0.355733pt;}
.ls55_c00154{letter-spacing:-0.349600pt;}
.ls67_c00154{letter-spacing:-0.318933pt;}
.ls68_c00154{letter-spacing:-0.312800pt;}
.ls4b_c00154{letter-spacing:-0.306667pt;}
.ls69_c00154{letter-spacing:-0.294400pt;}
.ls7d_c00154{letter-spacing:-0.289493pt;}
.ls6a_c00154{letter-spacing:-0.288267pt;}
.ls50_c00154{letter-spacing:-0.282133pt;}
.ls3f_c00154{letter-spacing:-0.263733pt;}
.ls5e_c00154{letter-spacing:-0.257600pt;}
.ls58_c00154{letter-spacing:-0.239200pt;}
.ls87_c00154{letter-spacing:-0.233067pt;}
.ls99_c00154{letter-spacing:-0.220800pt;}
.ls45_c00154{letter-spacing:-0.214667pt;}
.ls47_c00154{letter-spacing:-0.208533pt;}
.ls62_c00154{letter-spacing:-0.196267pt;}
.ls83_c00154{letter-spacing:-0.190133pt;}
.ls46_c00154{letter-spacing:-0.184000pt;}
.ls41_c00154{letter-spacing:-0.177867pt;}
.ls86_c00154{letter-spacing:-0.159467pt;}
.ls4c_c00154{letter-spacing:-0.153333pt;}
.ls8a_c00154{letter-spacing:-0.147200pt;}
.ls84_c00154{letter-spacing:-0.141067pt;}
.ls4f_c00154{letter-spacing:-0.134933pt;}
.ls94_c00154{letter-spacing:-0.122667pt;}
.ls8c_c00154{letter-spacing:-0.098133pt;}
.ls43_c00154{letter-spacing:-0.092000pt;}
.ls98_c00154{letter-spacing:-0.073600pt;}
.ls63_c00154{letter-spacing:-0.067467pt;}
.ls8f_c00154{letter-spacing:-0.061333pt;}
.ls61_c00154{letter-spacing:-0.049067pt;}
.ls57_c00154{letter-spacing:-0.042933pt;}
.ls53_c00154{letter-spacing:-0.036800pt;}
.ls8b_c00154{letter-spacing:-0.018400pt;}
.ls60_c00154{letter-spacing:-0.012267pt;}
.ls5d_c00154{letter-spacing:-0.006133pt;}
.ls4a_c00154{letter-spacing:0.000000pt;}
.ls6_c00154{letter-spacing:0.006133pt;}
.ls10_c00154{letter-spacing:0.018400pt;}
.ls16_c00154{letter-spacing:0.036800pt;}
.ls2d_c00154{letter-spacing:0.042933pt;}
.ls1d_c00154{letter-spacing:0.049067pt;}
.ls2c_c00154{letter-spacing:0.073600pt;}
.ls1e_c00154{letter-spacing:0.085867pt;}
.ls1f_c00154{letter-spacing:0.116533pt;}
.ls15_c00154{letter-spacing:0.122667pt;}
.ls32_c00154{letter-spacing:0.128800pt;}
.ls9_c00154{letter-spacing:0.134933pt;}
.ls37_c00154{letter-spacing:0.141067pt;}
.lse_c00154{letter-spacing:0.159467pt;}
.ls13_c00154{letter-spacing:0.165600pt;}
.ls36_c00154{letter-spacing:0.171733pt;}
.ls11_c00154{letter-spacing:0.177867pt;}
.ls3a_c00154{letter-spacing:0.184000pt;}
.ls35_c00154{letter-spacing:0.190133pt;}
.ls9c_c00154{letter-spacing:0.196267pt;}
.ls3b_c00154{letter-spacing:0.202400pt;}
.ls8d_c00154{letter-spacing:0.208533pt;}
.ls33_c00154{letter-spacing:0.214667pt;}
.ls24_c00154{letter-spacing:0.220800pt;}
.lsc_c00154{letter-spacing:0.251467pt;}
.ls25_c00154{letter-spacing:0.267520pt;}
.ls8_c00154{letter-spacing:0.269867pt;}
.ls29_c00154{letter-spacing:0.288267pt;}
.lsa_c00154{letter-spacing:0.294400pt;}
.ls2_c00154{letter-spacing:0.300533pt;}
.ls3_c00154{letter-spacing:0.312800pt;}
.ls20_c00154{letter-spacing:0.318933pt;}
.ls30_c00154{letter-spacing:0.325067pt;}
.ls27_c00154{letter-spacing:0.331200pt;}
.ls44_c00154{letter-spacing:0.337333pt;}
.ls3d_c00154{letter-spacing:0.343467pt;}
.ls34_c00154{letter-spacing:0.355733pt;}
.ls4_c00154{letter-spacing:0.361867pt;}
.ls28_c00154{letter-spacing:0.374133pt;}
.lsf_c00154{letter-spacing:0.380267pt;}
.ls3c_c00154{letter-spacing:0.386400pt;}
.ls88_c00154{letter-spacing:0.404800pt;}
.ls19_c00154{letter-spacing:0.417067pt;}
.lsb_c00154{letter-spacing:0.447733pt;}
.ls17_c00154{letter-spacing:0.453973pt;}
.ls18_c00154{letter-spacing:0.507733pt;}
.ls2b_c00154{letter-spacing:0.515200pt;}
.ls2a_c00154{letter-spacing:0.521333pt;}
.ls92_c00154{letter-spacing:0.539733pt;}
.ls1c_c00154{letter-spacing:0.545867pt;}
.ls23_c00154{letter-spacing:0.564267pt;}
.ls0_c00154{letter-spacing:0.597333pt;}
.ls12_c00154{letter-spacing:0.705333pt;}
.ls73_c00154{letter-spacing:0.764587pt;}
.ls26_c00154{letter-spacing:0.824320pt;}
.ls7a_c00154{letter-spacing:0.842240pt;}
.ls14_c00154{letter-spacing:0.878080pt;}
.lsd_c00154{letter-spacing:0.889333pt;}
.ls1a_c00154{letter-spacing:0.901600pt;}
.ls31_c00154{letter-spacing:0.938400pt;}
.ls38_c00154{letter-spacing:0.961707pt;}
.ls5_c00154{letter-spacing:0.975200pt;}
.ls21_c00154{letter-spacing:1.130880pt;}
.ls2e_c00154{letter-spacing:1.165333pt;}
.ls2f_c00154{letter-spacing:1.422933pt;}
.ls1_c00154{letter-spacing:2.189600pt;}
.ls7_c00154{letter-spacing:2.441067pt;}
.ls22_c00154{letter-spacing:2.596160pt;}
.ls1b_c00154{letter-spacing:2.729333pt;}
.ls74_c00154{letter-spacing:2.986667pt;}
.ls5f_c00154{letter-spacing:3.066667pt;}
.ls39_c00154{letter-spacing:30.410667pt;}
.ws4_c00154{word-spacing:0.000000pt;}
.ws1_c00154{word-spacing:2.472533pt;}
.ws3_c00154{word-spacing:17.071787pt;}
.ws0_c00154{word-spacing:18.257067pt;}
.ws2_c00154{word-spacing:18.854400pt;}
._13_c00154{margin-left:-13.039787pt;}
._6_c00154{margin-left:-8.046933pt;}
._10_c00154{margin-left:-6.481280pt;}
._f_c00154{margin-left:-4.465067pt;}
._11_c00154{margin-left:-1.925867pt;}
._e_c00154{margin-left:-0.989067pt;}
._12_c00154{width:0.911467pt;}
._d_c00154{width:1.822400pt;}
._5_c00154{width:2.999200pt;}
._7_c00154{width:4.667467pt;}
._8_c00154{width:6.154400pt;}
._c_c00154{width:7.663200pt;}
._0_c00154{width:9.684533pt;}
._b_c00154{width:11.399200pt;}
._3_c00154{width:12.659200pt;}
._4_c00154{width:14.296800pt;}
._2_c00154{width:16.210400pt;}
._1_c00154{width:17.204000pt;}
._9_c00154{width:19.632800pt;}
._a_c00154{width:21.043467pt;}
.fs8_c00154{font-size:51.733333pt;}
.fs7_c00154{font-size:54.400000pt;}
.fs0_c00154{font-size:59.733333pt;}
.fs2_c00154{font-size:60.266667pt;}
.fs3_c00154{font-size:60.800000pt;}
.fs1_c00154{font-size:61.333333pt;}
.fs5_c00154{font-size:62.933333pt;}
.fs4_c00154{font-size:63.466667pt;}
.fs6_c00154{font-size:70.400000pt;}
.y0_c00154{bottom:0.000000pt;}
.y20_c00154{bottom:64.653339pt;}
.y1f_c00154{bottom:132.800005pt;}
.y1e_c00154{bottom:160.320005pt;}
.y1d_c00154{bottom:216.968005pt;}
.y1b_c00154{bottom:244.796672pt;}
.y1c_c00154{bottom:244.813339pt;}
.y1a_c00154{bottom:272.642005pt;}
.y19_c00154{bottom:300.165339pt;}
.y18_c00154{bottom:328.010672pt;}
.y17_c00154{bottom:354.890005pt;}
.y16_c00154{bottom:382.720005pt;}
.y15_c00154{bottom:438.413339pt;}
.y14_c00154{bottom:466.253339pt;}
.y13_c00154{bottom:494.093339pt;}
.y12_c00154{bottom:549.453339pt;}
.y10_c00154{bottom:605.448005pt;}
.y11_c00154{bottom:605.453339pt;}
.yf_c00154{bottom:633.600005pt;}
.ye_c00154{bottom:689.288005pt;}
.yd_c00154{bottom:717.128005pt;}
.yc_c00154{bottom:744.973339pt;}
.ya_c00154{bottom:800.314672pt;}
.yb_c00154{bottom:800.320005pt;}
.y9_c00154{bottom:828.160005pt;}
.y7_c00154{bottom:883.208005pt;}
.y8_c00154{bottom:883.213339pt;}
.y5_c00154{bottom:911.050005pt;}
.y6_c00154{bottom:911.053339pt;}
.y4_c00154{bottom:938.568005pt;}
.y3_c00154{bottom:966.410005pt;}
.y2_c00154{bottom:994.240005pt;}
.y1_c00154{bottom:1060.813339pt;}
.hc_c00154{height:50.773437pt;}
.hb_c00154{height:53.390625pt;}
.h7_c00154{height:58.595833pt;}
.h2_c00154{height:58.625000pt;}
.h3_c00154{height:60.195312pt;}
.h4_c00154{height:60.208646pt;}
.h5_c00154{height:60.216646pt;}
.h9_c00154{height:61.765625pt;}
.h8_c00154{height:62.289062pt;}
.h6_c00154{height:62.856250pt;}
.ha_c00154{height:69.093750pt;}
.h1_c00154{height:1122.666667pt;}
.h0_c00154{height:1122.880005pt;}
.w1_c00154{width:793.333333pt;}
.w0_c00154{width:793.599999pt;}
.x0_c00154{left:0.000000pt;}
.x20_c00154{left:101.919999pt;}
.x19_c00154{left:103.670665pt;}
.x1_c00154{left:104.893332pt;}
.x1c_c00154{left:150.546665pt;}
.xe_c00154{left:151.799999pt;}
.x2_c00154{left:153.079999pt;}
.x9_c00154{left:203.666665pt;}
.xf_c00154{left:216.826665pt;}
.xa_c00154{left:228.306665pt;}
.x13_c00154{left:244.986665pt;}
.x10_c00154{left:251.453332pt;}
.x21_c00154{left:252.946665pt;}
.x8_c00154{left:255.173332pt;}
.x22_c00154{left:272.293332pt;}
.x14_c00154{left:280.159999pt;}
.x1a_c00154{left:305.546665pt;}
.x5_c00154{left:312.159999pt;}
.x1b_c00154{left:325.093332pt;}
.xb_c00154{left:328.106665pt;}
.x15_c00154{left:335.653332pt;}
.x16_c00154{left:348.133332pt;}
.xc_c00154{left:350.226665pt;}
.x23_c00154{left:371.093332pt;}
.xd_c00154{left:374.333332pt;}
.x1d_c00154{left:400.933332pt;}
.x17_c00154{left:411.453332pt;}
.x6_c00154{left:427.039999pt;}
.x1e_c00154{left:432.826665pt;}
.x7_c00154{left:460.333332pt;}
.x11_c00154{left:527.186665pt;}
.x12_c00154{left:551.613332pt;}
.x3_c00154{left:599.519999pt;}
.x4_c00154{left:616.799999pt;}
.x1f_c00154{left:635.813332pt;}
.x18_c00154{left:641.106665pt;}
}





/* 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_c00155 {
    display:none;
  }
  .loading-indicator_c00155.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00155 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_c00155 { 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_c00155" -> "#page-container .classname_c00155")
 */
.pf_c00155 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00155 { /* 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_c00155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00155 { /* 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_c00155 { /* 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_c00155 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00155 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00155 {overflow:visible;}
  }
}
.c_c00155 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00155 { /* 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_c00155:after { /* webkit #35443 */
  content: '';
}
.t_c00155:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00155 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 */
}
.__c00155 { /* 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_c00155 { /* info for Javascript */
  display:none;
}
.l_c00155 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00155 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00155 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00155: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_c00155 {
    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_c00155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00155.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_c00155 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00155;src:url('chunks/assets/font_ee263aafbaa2c303732f5990.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.284668;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_c00155;src:url('chunks/assets/font_0aadb25d7d97e72451c34b6b.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.284180;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_c00155;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;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;}
.m8_c00155{transform:matrix(0.179795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179795,0.000000,0.000000,0.250000,0,0);}
.m7_c00155{transform:matrix(0.182258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182258,0.000000,0.000000,0.250000,0,0);}
.m4_c00155{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3_c00155{transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);}
.m2_c00155{transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);}
.m0_c00155{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m6_c00155{transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);}
.m1_c00155{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);}
.m5_c00155{transform:matrix(0.253428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253428,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls8e_c00155{letter-spacing:-2.667000px;}
.ls7b_c00155{letter-spacing:-2.394000px;}
.ls64_c00155{letter-spacing:-2.331000px;}
.ls90_c00155{letter-spacing:-2.305080px;}
.ls7a_c00155{letter-spacing:-2.168280px;}
.ls95_c00155{letter-spacing:-2.134080px;}
.ls75_c00155{letter-spacing:-2.079360px;}
.ls70_c00155{letter-spacing:-2.010960px;}
.ls76_c00155{letter-spacing:-1.682640px;}
.ls79_c00155{letter-spacing:-1.429560px;}
.ls94_c00155{letter-spacing:-1.326960px;}
.ls7f_c00155{letter-spacing:-1.258560px;}
.ls7e_c00155{letter-spacing:-1.080720px;}
.ls87_c00155{letter-spacing:-0.998640px;}
.ls96_c00155{letter-spacing:-0.823680px;}
.ls6d_c00155{letter-spacing:-0.697680px;}
.ls6c_c00155{letter-spacing:-0.656640px;}
.ls78_c00155{letter-spacing:-0.601920px;}
.ls88_c00155{letter-spacing:-0.567720px;}
.ls7c_c00155{letter-spacing:-0.533520px;}
.ls68_c00155{letter-spacing:-0.526680px;}
.ls7d_c00155{letter-spacing:-0.506160px;}
.ls65_c00155{letter-spacing:-0.478800px;}
.ls71_c00155{letter-spacing:-0.458280px;}
.ls92_c00155{letter-spacing:-0.403560px;}
.ls6e_c00155{letter-spacing:-0.376200px;}
.ls81_c00155{letter-spacing:-0.321480px;}
.ls74_c00155{letter-spacing:-0.294120px;}
.ls84_c00155{letter-spacing:-0.253080px;}
.ls69_c00155{letter-spacing:-0.225720px;}
.ls8a_c00155{letter-spacing:-0.157320px;}
.ls77_c00155{letter-spacing:-0.150480px;}
.ls73_c00155{letter-spacing:-0.136800px;}
.ls91_c00155{letter-spacing:-0.109440px;}
.ls89_c00155{letter-spacing:-0.075240px;}
.ls82_c00155{letter-spacing:-0.034200px;}
.ls67_c00155{letter-spacing:-0.020520px;}
.ls93_c00155{letter-spacing:-0.006840px;}
.ls66_c00155{letter-spacing:0.000000px;}
.ls3d_c00155{letter-spacing:0.006840px;}
.ls41_c00155{letter-spacing:0.013680px;}
.ls37_c00155{letter-spacing:0.088920px;}
.ls20_c00155{letter-spacing:0.136800px;}
.ls45_c00155{letter-spacing:0.143640px;}
.ls6f_c00155{letter-spacing:0.191520px;}
.ls15_c00155{letter-spacing:0.198360px;}
.ls46_c00155{letter-spacing:0.212040px;}
.ls2e_c00155{letter-spacing:0.218880px;}
.ls5d_c00155{letter-spacing:0.232560px;}
.ls59_c00155{letter-spacing:0.239400px;}
.ls62_c00155{letter-spacing:0.280440px;}
.ls9_c00155{letter-spacing:0.287280px;}
.ls58_c00155{letter-spacing:0.307800px;}
.ls51_c00155{letter-spacing:0.328320px;}
.lsf_c00155{letter-spacing:0.342000px;}
.ls7_c00155{letter-spacing:0.369360px;}
.ls29_c00155{letter-spacing:0.376200px;}
.ls4e_c00155{letter-spacing:0.396720px;}
.ls35_c00155{letter-spacing:0.403560px;}
.ls4b_c00155{letter-spacing:0.410400px;}
.ls5b_c00155{letter-spacing:0.417240px;}
.ls31_c00155{letter-spacing:0.424080px;}
.ls5_c00155{letter-spacing:0.437760px;}
.ls1a_c00155{letter-spacing:0.458280px;}
.ls2f_c00155{letter-spacing:0.485640px;}
.ls4_c00155{letter-spacing:0.499320px;}
.ls11_c00155{letter-spacing:0.506160px;}
.ls5e_c00155{letter-spacing:0.513000px;}
.lse_c00155{letter-spacing:0.533520px;}
.ls5f_c00155{letter-spacing:0.574560px;}
.ls22_c00155{letter-spacing:0.581400px;}
.ls3a_c00155{letter-spacing:0.588240px;}
.ls48_c00155{letter-spacing:0.595080px;}
.ls2_c00155{letter-spacing:0.615600px;}
.ls12_c00155{letter-spacing:0.622440px;}
.ls3f_c00155{letter-spacing:0.629280px;}
.lsa_c00155{letter-spacing:0.636120px;}
.ls33_c00155{letter-spacing:0.642960px;}
.ls8_c00155{letter-spacing:0.649800px;}
.ls8d_c00155{letter-spacing:0.663480px;}
.ls19_c00155{letter-spacing:0.677160px;}
.ls53_c00155{letter-spacing:0.704520px;}
.ls1d_c00155{letter-spacing:0.711360px;}
.ls60_c00155{letter-spacing:0.718200px;}
.ls1e_c00155{letter-spacing:0.752400px;}
.ls14_c00155{letter-spacing:0.759240px;}
.ls0_c00155{letter-spacing:0.759360px;}
.ls42_c00155{letter-spacing:0.779760px;}
.ls5a_c00155{letter-spacing:0.807120px;}
.ls2d_c00155{letter-spacing:0.820380px;}
.ls43_c00155{letter-spacing:0.820800px;}
.ls4d_c00155{letter-spacing:0.841320px;}
.ls63_c00155{letter-spacing:0.889200px;}
.ls2c_c00155{letter-spacing:0.908520px;}
.ls52_c00155{letter-spacing:0.916560px;}
.ls3e_c00155{letter-spacing:0.923400px;}
.ls1c_c00155{letter-spacing:0.928860px;}
.ls17_c00155{letter-spacing:0.930240px;}
.ls56_c00155{letter-spacing:0.937080px;}
.ls1b_c00155{letter-spacing:0.942420px;}
.ls8f_c00155{letter-spacing:0.943920px;}
.ls86_c00155{letter-spacing:0.950760px;}
.ls2b_c00155{letter-spacing:0.964440px;}
.ls1_c00155{letter-spacing:0.971280px;}
.lsc_c00155{letter-spacing:0.978120px;}
.ls4f_c00155{letter-spacing:0.984960px;}
.ls47_c00155{letter-spacing:0.998640px;}
.ls39_c00155{letter-spacing:1.005480px;}
.ls54_c00155{letter-spacing:1.012320px;}
.ls44_c00155{letter-spacing:1.026000px;}
.ls5c_c00155{letter-spacing:1.032840px;}
.ls16_c00155{letter-spacing:1.057680px;}
.ls13_c00155{letter-spacing:1.060200px;}
.ls32_c00155{letter-spacing:1.067040px;}
.ls34_c00155{letter-spacing:1.073880px;}
.ls38_c00155{letter-spacing:1.087560px;}
.ls36_c00155{letter-spacing:1.094400px;}
.ls10_c00155{letter-spacing:1.101240px;}
.lsd_c00155{letter-spacing:1.114920px;}
.ls30_c00155{letter-spacing:1.139040px;}
.ls40_c00155{letter-spacing:1.149120px;}
.ls6a_c00155{letter-spacing:1.203840px;}
.ls6b_c00155{letter-spacing:1.217520px;}
.ls72_c00155{letter-spacing:1.224360px;}
.ls2a_c00155{letter-spacing:1.251720px;}
.lsb_c00155{letter-spacing:1.272240px;}
.ls4c_c00155{letter-spacing:1.285920px;}
.ls4a_c00155{letter-spacing:1.320120px;}
.ls1f_c00155{letter-spacing:1.347480px;}
.ls8b_c00155{letter-spacing:1.362780px;}
.ls24_c00155{letter-spacing:1.415880px;}
.ls49_c00155{letter-spacing:1.470600px;}
.ls28_c00155{letter-spacing:1.545840px;}
.ls3b_c00155{letter-spacing:1.559520px;}
.ls83_c00155{letter-spacing:1.627920px;}
.ls3_c00155{letter-spacing:1.648440px;}
.ls3c_c00155{letter-spacing:1.682640px;}
.ls6_c00155{letter-spacing:1.737360px;}
.ls25_c00155{letter-spacing:1.744200px;}
.ls26_c00155{letter-spacing:1.812600px;}
.ls85_c00155{letter-spacing:1.833120px;}
.ls27_c00155{letter-spacing:2.027220px;}
.ls80_c00155{letter-spacing:2.093040px;}
.ls50_c00155{letter-spacing:2.236680px;}
.ls18_c00155{letter-spacing:2.291400px;}
.ls57_c00155{letter-spacing:2.387160px;}
.ls55_c00155{letter-spacing:2.510280px;}
.ls21_c00155{letter-spacing:2.715480px;}
.ls23_c00155{letter-spacing:2.961720px;}
.ls61_c00155{letter-spacing:3.166920px;}
.ls8c_c00155{letter-spacing:3.420000px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{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__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00155{word-spacing:-0.359400px;}
.ws5_c00155{word-spacing:0.000000px;}
.ws2_c00155{word-spacing:3.211140px;}
.ws0_c00155{word-spacing:6.832200px;}
.ws3_c00155{word-spacing:9.929640px;}
.ws4_c00155{word-spacing:23.332200px;}
._9_c00155{margin-left:-9.247680px;}
._7_c00155{margin-left:-5.554080px;}
._a_c00155{margin-left:-4.151880px;}
._4_c00155{margin-left:-3.084840px;}
._5_c00155{margin-left:-1.778400px;}
._6_c00155{width:1.696320px;}
._3_c00155{width:2.804400px;}
._0_c00155{width:3.816720px;}
._1_c00155{width:5.752440px;}
._2_c00155{width:7.633440px;}
._b_c00155{width:9.528120px;}
._c_c00155{width:10.549920px;}
._8_c00155{width:12.083640px;}
._f_c00155{width:13.317480px;}
._12_c00155{width:14.334000px;}
._e_c00155{width:15.358440px;}
._d_c00155{width:18.898920px;}
._10_c00155{width:20.427360px;}
._13_c00155{width:21.665040px;}
._14_c00155{width:23.191320px;}
._16_c00155{width:24.213600px;}
._15_c00155{width:31.197000px;}
._11_c00155{width:36.510720px;}
.fc0_c00155{color:transparent;}
.fs5_c00155{font-size:57.600000px;}
.fs0_c00155{font-size:66.600000px;}
.fs1_c00155{font-size:67.800000px;}
.fs2_c00155{font-size:68.400000px;}
.fs3_c00155{font-size:71.400000px;}
.fs4_c00155{font-size:76.200000px;}
.y0_c00155{bottom:0.000000px;}
.y1c_c00155{bottom:71.655006px;}
.y1b_c00155{bottom:178.560006px;}
.y1a_c00155{bottom:210.247806px;}
.y19_c00155{bottom:241.575006px;}
.y18_c00155{bottom:303.840006px;}
.y17_c00155{bottom:303.847806px;}
.y16_c00155{bottom:335.175006px;}
.y15_c00155{bottom:398.886906px;}
.y13_c00155{bottom:429.820806px;}
.y14_c00155{bottom:429.855006px;}
.y12_c00155{bottom:461.507106px;}
.y11_c00155{bottom:492.834306px;}
.y10_c00155{bottom:524.161506px;}
.yf_c00155{bottom:555.129606px;}
.ye_c00155{bottom:587.175006px;}
.yd_c00155{bottom:650.175006px;}
.yb_c00155{bottom:712.794306px;}
.yc_c00155{bottom:712.800006px;}
.ya_c00155{bottom:775.089606px;}
.y9_c00155{bottom:807.135006px;}
.y8_c00155{bottom:870.143106px;}
.y7_c00155{bottom:900.735006px;}
.y6_c00155{bottom:963.000006px;}
.y5_c00155{bottom:1026.000006px;}
.y4_c00155{bottom:1056.977706px;}
.y3_c00155{bottom:1088.287806px;}
.y2_c00155{bottom:1119.615006px;}
.y1_c00155{bottom:1195.575006px;}
.h7_c00155{height:56.531250px;}
.h2_c00155{height:65.364258px;}
.h5_c00155{height:66.508887px;}
.h3_c00155{height:67.130859px;}
.h4_c00155{height:74.604769px;}
.h6_c00155{height:74.786133px;}
.h1_c00155{height:1263.000000px;}
.h0_c00155{height:1263.240006px;}
.w1_c00155{width:892.500000px;}
.w0_c00155{width:892.799998px;}
.x0_c00155{left:0.000000px;}
.x13_c00155{left:112.939498px;}
.xa_c00155{left:114.655798px;}
.x5_c00155{left:115.940998px;}
.x3_c00155{left:118.981799px;}
.x1_c00155{left:120.164999px;}
.x14_c00155{left:135.569998px;}
.xd_c00155{left:167.204998px;}
.x8_c00155{left:169.334998px;}
.x4_c00155{left:171.524998px;}
.x2_c00155{left:173.294998px;}
.xe_c00155{left:273.224999px;}
.xf_c00155{left:299.699999px;}
.x6_c00155{left:310.094999px;}
.x16_c00155{left:418.184999px;}
.x7_c00155{left:423.524999px;}
.x15_c00155{left:429.329998px;}
.xb_c00155{left:516.164999px;}
.x10_c00155{left:529.844998px;}
.xc_c00155{left:542.354998px;}
.x11_c00155{left:551.729999px;}
.x12_c00155{left:584.129999px;}
.x9_c00155{left:607.139998px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls8e_c00155{letter-spacing:-2.370667pt;}
.ls7b_c00155{letter-spacing:-2.128000pt;}
.ls64_c00155{letter-spacing:-2.072000pt;}
.ls90_c00155{letter-spacing:-2.048960pt;}
.ls7a_c00155{letter-spacing:-1.927360pt;}
.ls95_c00155{letter-spacing:-1.896960pt;}
.ls75_c00155{letter-spacing:-1.848320pt;}
.ls70_c00155{letter-spacing:-1.787520pt;}
.ls76_c00155{letter-spacing:-1.495680pt;}
.ls79_c00155{letter-spacing:-1.270720pt;}
.ls94_c00155{letter-spacing:-1.179520pt;}
.ls7f_c00155{letter-spacing:-1.118720pt;}
.ls7e_c00155{letter-spacing:-0.960640pt;}
.ls87_c00155{letter-spacing:-0.887680pt;}
.ls96_c00155{letter-spacing:-0.732160pt;}
.ls6d_c00155{letter-spacing:-0.620160pt;}
.ls6c_c00155{letter-spacing:-0.583680pt;}
.ls78_c00155{letter-spacing:-0.535040pt;}
.ls88_c00155{letter-spacing:-0.504640pt;}
.ls7c_c00155{letter-spacing:-0.474240pt;}
.ls68_c00155{letter-spacing:-0.468160pt;}
.ls7d_c00155{letter-spacing:-0.449920pt;}
.ls65_c00155{letter-spacing:-0.425600pt;}
.ls71_c00155{letter-spacing:-0.407360pt;}
.ls92_c00155{letter-spacing:-0.358720pt;}
.ls6e_c00155{letter-spacing:-0.334400pt;}
.ls81_c00155{letter-spacing:-0.285760pt;}
.ls74_c00155{letter-spacing:-0.261440pt;}
.ls84_c00155{letter-spacing:-0.224960pt;}
.ls69_c00155{letter-spacing:-0.200640pt;}
.ls8a_c00155{letter-spacing:-0.139840pt;}
.ls77_c00155{letter-spacing:-0.133760pt;}
.ls73_c00155{letter-spacing:-0.121600pt;}
.ls91_c00155{letter-spacing:-0.097280pt;}
.ls89_c00155{letter-spacing:-0.066880pt;}
.ls82_c00155{letter-spacing:-0.030400pt;}
.ls67_c00155{letter-spacing:-0.018240pt;}
.ls93_c00155{letter-spacing:-0.006080pt;}
.ls66_c00155{letter-spacing:0.000000pt;}
.ls3d_c00155{letter-spacing:0.006080pt;}
.ls41_c00155{letter-spacing:0.012160pt;}
.ls37_c00155{letter-spacing:0.079040pt;}
.ls20_c00155{letter-spacing:0.121600pt;}
.ls45_c00155{letter-spacing:0.127680pt;}
.ls6f_c00155{letter-spacing:0.170240pt;}
.ls15_c00155{letter-spacing:0.176320pt;}
.ls46_c00155{letter-spacing:0.188480pt;}
.ls2e_c00155{letter-spacing:0.194560pt;}
.ls5d_c00155{letter-spacing:0.206720pt;}
.ls59_c00155{letter-spacing:0.212800pt;}
.ls62_c00155{letter-spacing:0.249280pt;}
.ls9_c00155{letter-spacing:0.255360pt;}
.ls58_c00155{letter-spacing:0.273600pt;}
.ls51_c00155{letter-spacing:0.291840pt;}
.lsf_c00155{letter-spacing:0.304000pt;}
.ls7_c00155{letter-spacing:0.328320pt;}
.ls29_c00155{letter-spacing:0.334400pt;}
.ls4e_c00155{letter-spacing:0.352640pt;}
.ls35_c00155{letter-spacing:0.358720pt;}
.ls4b_c00155{letter-spacing:0.364800pt;}
.ls5b_c00155{letter-spacing:0.370880pt;}
.ls31_c00155{letter-spacing:0.376960pt;}
.ls5_c00155{letter-spacing:0.389120pt;}
.ls1a_c00155{letter-spacing:0.407360pt;}
.ls2f_c00155{letter-spacing:0.431680pt;}
.ls4_c00155{letter-spacing:0.443840pt;}
.ls11_c00155{letter-spacing:0.449920pt;}
.ls5e_c00155{letter-spacing:0.456000pt;}
.lse_c00155{letter-spacing:0.474240pt;}
.ls5f_c00155{letter-spacing:0.510720pt;}
.ls22_c00155{letter-spacing:0.516800pt;}
.ls3a_c00155{letter-spacing:0.522880pt;}
.ls48_c00155{letter-spacing:0.528960pt;}
.ls2_c00155{letter-spacing:0.547200pt;}
.ls12_c00155{letter-spacing:0.553280pt;}
.ls3f_c00155{letter-spacing:0.559360pt;}
.lsa_c00155{letter-spacing:0.565440pt;}
.ls33_c00155{letter-spacing:0.571520pt;}
.ls8_c00155{letter-spacing:0.577600pt;}
.ls8d_c00155{letter-spacing:0.589760pt;}
.ls19_c00155{letter-spacing:0.601920pt;}
.ls53_c00155{letter-spacing:0.626240pt;}
.ls1d_c00155{letter-spacing:0.632320pt;}
.ls60_c00155{letter-spacing:0.638400pt;}
.ls1e_c00155{letter-spacing:0.668800pt;}
.ls14_c00155{letter-spacing:0.674880pt;}
.ls0_c00155{letter-spacing:0.674987pt;}
.ls42_c00155{letter-spacing:0.693120pt;}
.ls5a_c00155{letter-spacing:0.717440pt;}
.ls2d_c00155{letter-spacing:0.729227pt;}
.ls43_c00155{letter-spacing:0.729600pt;}
.ls4d_c00155{letter-spacing:0.747840pt;}
.ls63_c00155{letter-spacing:0.790400pt;}
.ls2c_c00155{letter-spacing:0.807573pt;}
.ls52_c00155{letter-spacing:0.814720pt;}
.ls3e_c00155{letter-spacing:0.820800pt;}
.ls1c_c00155{letter-spacing:0.825653pt;}
.ls17_c00155{letter-spacing:0.826880pt;}
.ls56_c00155{letter-spacing:0.832960pt;}
.ls1b_c00155{letter-spacing:0.837707pt;}
.ls8f_c00155{letter-spacing:0.839040pt;}
.ls86_c00155{letter-spacing:0.845120pt;}
.ls2b_c00155{letter-spacing:0.857280pt;}
.ls1_c00155{letter-spacing:0.863360pt;}
.lsc_c00155{letter-spacing:0.869440pt;}
.ls4f_c00155{letter-spacing:0.875520pt;}
.ls47_c00155{letter-spacing:0.887680pt;}
.ls39_c00155{letter-spacing:0.893760pt;}
.ls54_c00155{letter-spacing:0.899840pt;}
.ls44_c00155{letter-spacing:0.912000pt;}
.ls5c_c00155{letter-spacing:0.918080pt;}
.ls16_c00155{letter-spacing:0.940160pt;}
.ls13_c00155{letter-spacing:0.942400pt;}
.ls32_c00155{letter-spacing:0.948480pt;}
.ls34_c00155{letter-spacing:0.954560pt;}
.ls38_c00155{letter-spacing:0.966720pt;}
.ls36_c00155{letter-spacing:0.972800pt;}
.ls10_c00155{letter-spacing:0.978880pt;}
.lsd_c00155{letter-spacing:0.991040pt;}
.ls30_c00155{letter-spacing:1.012480pt;}
.ls40_c00155{letter-spacing:1.021440pt;}
.ls6a_c00155{letter-spacing:1.070080pt;}
.ls6b_c00155{letter-spacing:1.082240pt;}
.ls72_c00155{letter-spacing:1.088320pt;}
.ls2a_c00155{letter-spacing:1.112640pt;}
.lsb_c00155{letter-spacing:1.130880pt;}
.ls4c_c00155{letter-spacing:1.143040pt;}
.ls4a_c00155{letter-spacing:1.173440pt;}
.ls1f_c00155{letter-spacing:1.197760pt;}
.ls8b_c00155{letter-spacing:1.211360pt;}
.ls24_c00155{letter-spacing:1.258560pt;}
.ls49_c00155{letter-spacing:1.307200pt;}
.ls28_c00155{letter-spacing:1.374080pt;}
.ls3b_c00155{letter-spacing:1.386240pt;}
.ls83_c00155{letter-spacing:1.447040pt;}
.ls3_c00155{letter-spacing:1.465280pt;}
.ls3c_c00155{letter-spacing:1.495680pt;}
.ls6_c00155{letter-spacing:1.544320pt;}
.ls25_c00155{letter-spacing:1.550400pt;}
.ls26_c00155{letter-spacing:1.611200pt;}
.ls85_c00155{letter-spacing:1.629440pt;}
.ls27_c00155{letter-spacing:1.801973pt;}
.ls80_c00155{letter-spacing:1.860480pt;}
.ls50_c00155{letter-spacing:1.988160pt;}
.ls18_c00155{letter-spacing:2.036800pt;}
.ls57_c00155{letter-spacing:2.121920pt;}
.ls55_c00155{letter-spacing:2.231360pt;}
.ls21_c00155{letter-spacing:2.413760pt;}
.ls23_c00155{letter-spacing:2.632640pt;}
.ls61_c00155{letter-spacing:2.815040pt;}
.ls8c_c00155{letter-spacing:3.040000pt;}
.ws1_c00155{word-spacing:-0.319467pt;}
.ws5_c00155{word-spacing:0.000000pt;}
.ws2_c00155{word-spacing:2.854347pt;}
.ws0_c00155{word-spacing:6.073067pt;}
.ws3_c00155{word-spacing:8.826347pt;}
.ws4_c00155{word-spacing:20.739733pt;}
._9_c00155{margin-left:-8.220160pt;}
._7_c00155{margin-left:-4.936960pt;}
._a_c00155{margin-left:-3.690560pt;}
._4_c00155{margin-left:-2.742080pt;}
._5_c00155{margin-left:-1.580800pt;}
._6_c00155{width:1.507840pt;}
._3_c00155{width:2.492800pt;}
._0_c00155{width:3.392640pt;}
._1_c00155{width:5.113280pt;}
._2_c00155{width:6.785280pt;}
._b_c00155{width:8.469440pt;}
._c_c00155{width:9.377707pt;}
._8_c00155{width:10.741013pt;}
._f_c00155{width:11.837760pt;}
._12_c00155{width:12.741333pt;}
._e_c00155{width:13.651947pt;}
._d_c00155{width:16.799040pt;}
._10_c00155{width:18.157653pt;}
._13_c00155{width:19.257813pt;}
._14_c00155{width:20.614507pt;}
._16_c00155{width:21.523200pt;}
._15_c00155{width:27.730667pt;}
._11_c00155{width:32.453973pt;}
.fs5_c00155{font-size:51.200000pt;}
.fs0_c00155{font-size:59.200000pt;}
.fs1_c00155{font-size:60.266667pt;}
.fs2_c00155{font-size:60.800000pt;}
.fs3_c00155{font-size:63.466667pt;}
.fs4_c00155{font-size:67.733333pt;}
.y0_c00155{bottom:0.000000pt;}
.y1c_c00155{bottom:63.693339pt;}
.y1b_c00155{bottom:158.720005pt;}
.y1a_c00155{bottom:186.886939pt;}
.y19_c00155{bottom:214.733339pt;}
.y18_c00155{bottom:270.080005pt;}
.y17_c00155{bottom:270.086939pt;}
.y16_c00155{bottom:297.933339pt;}
.y15_c00155{bottom:354.566139pt;}
.y13_c00155{bottom:382.062939pt;}
.y14_c00155{bottom:382.093339pt;}
.y12_c00155{bottom:410.228539pt;}
.y11_c00155{bottom:438.074939pt;}
.y10_c00155{bottom:465.921339pt;}
.yf_c00155{bottom:493.448539pt;}
.ye_c00155{bottom:521.933339pt;}
.yd_c00155{bottom:577.933339pt;}
.yb_c00155{bottom:633.594939pt;}
.yc_c00155{bottom:633.600005pt;}
.ya_c00155{bottom:688.968539pt;}
.y9_c00155{bottom:717.453339pt;}
.y8_c00155{bottom:773.460539pt;}
.y7_c00155{bottom:800.653339pt;}
.y6_c00155{bottom:856.000005pt;}
.y5_c00155{bottom:912.000005pt;}
.y4_c00155{bottom:939.535739pt;}
.y3_c00155{bottom:967.366939pt;}
.y2_c00155{bottom:995.213339pt;}
.y1_c00155{bottom:1062.733339pt;}
.h7_c00155{height:50.250000pt;}
.h2_c00155{height:58.101562pt;}
.h5_c00155{height:59.119010pt;}
.h3_c00155{height:59.671875pt;}
.h4_c00155{height:66.315350pt;}
.h6_c00155{height:66.476562pt;}
.h1_c00155{height:1122.666667pt;}
.h0_c00155{height:1122.880005pt;}
.w1_c00155{width:793.333333pt;}
.w0_c00155{width:793.599999pt;}
.x0_c00155{left:0.000000pt;}
.x13_c00155{left:100.390665pt;}
.xa_c00155{left:101.916265pt;}
.x5_c00155{left:103.058665pt;}
.x3_c00155{left:105.761599pt;}
.x1_c00155{left:106.813332pt;}
.x14_c00155{left:120.506665pt;}
.xd_c00155{left:148.626665pt;}
.x8_c00155{left:150.519999pt;}
.x4_c00155{left:152.466665pt;}
.x2_c00155{left:154.039999pt;}
.xe_c00155{left:242.866665pt;}
.xf_c00155{left:266.399999pt;}
.x6_c00155{left:275.639999pt;}
.x16_c00155{left:371.719999pt;}
.x7_c00155{left:376.466665pt;}
.x15_c00155{left:381.626665pt;}
.xb_c00155{left:458.813332pt;}
.x10_c00155{left:470.973332pt;}
.xc_c00155{left:482.093332pt;}
.x11_c00155{left:490.426665pt;}
.x12_c00155{left:519.226665pt;}
.x9_c00155{left:539.679999pt;}
}





/* 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_c00156 {
    display:none;
  }
  .loading-indicator_c00156.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00156 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_c00156 { 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_c00156" -> "#page-container .classname_c00156")
 */
.pf_c00156 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00156 { /* 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_c00156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00156 { /* 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_c00156 { /* 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_c00156 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00156 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00156 {overflow:visible;}
  }
}
.c_c00156 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00156 { /* 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_c00156:after { /* webkit #35443 */
  content: '';
}
.t_c00156:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00156 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 */
}
.__c00156 { /* 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_c00156 { /* info for Javascript */
  display:none;
}
.l_c00156 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00156 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00156 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00156: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_c00156 {
    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_c00156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00156.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_c00156 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00156;src:url('chunks/assets/font_e2660c8684bae7428fc2be9f.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.284668;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_c00156;src:url('chunks/assets/font_1bbf5da848c3dab10dcc8712.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.284180;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_c00156;src:url('chunks/assets/font_9068f334e2601c83b4c07bd3.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:0.666000;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;}
.m7_c00156{transform:matrix(0.134172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134172,0.000000,0.000000,0.250000,0,0);}
.m5_c00156{transform:matrix(0.168596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168596,0.000000,0.000000,0.250000,0,0);}
.m2_c00156{transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);}
.m6_c00156{transform:matrix(0.243143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243143,0.000000,0.000000,0.250000,0,0);}
.m4_c00156{transform:matrix(0.243564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243564,0.000000,0.000000,0.250000,0,0);}
.m0_c00156{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.m3_c00156{transform:matrix(0.248228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248228,0.000000,0.000000,0.250000,0,0);}
.m8_c00156{transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);}
.m1_c00156{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);}
.v0_c00156{vertical-align:0.000000px;}
.ls90_c00156{letter-spacing:-2.688000px;}
.ls88_c00156{letter-spacing:-2.478000px;}
.ls87_c00156{letter-spacing:-2.400120px;}
.ls65_c00156{letter-spacing:-2.394000px;}
.ls5c_c00156{letter-spacing:-2.331000px;}
.ls64_c00156{letter-spacing:-2.168280px;}
.ls63_c00156{letter-spacing:-2.147760px;}
.ls98_c00156{letter-spacing:-2.134080px;}
.ls9a_c00156{letter-spacing:-2.016000px;}
.ls95_c00156{letter-spacing:-1.819440px;}
.ls6f_c00156{letter-spacing:-1.682640px;}
.ls86_c00156{letter-spacing:-1.600080px;}
.ls6a_c00156{letter-spacing:-1.566360px;}
.ls85_c00156{letter-spacing:-1.463760px;}
.ls8d_c00156{letter-spacing:-1.458480px;}
.ls70_c00156{letter-spacing:-1.258560px;}
.ls75_c00156{letter-spacing:-1.197000px;}
.ls67_c00156{letter-spacing:-1.149120px;}
.ls84_c00156{letter-spacing:-1.019160px;}
.ls7f_c00156{letter-spacing:-0.991800px;}
.ls8c_c00156{letter-spacing:-0.920400px;}
.ls97_c00156{letter-spacing:-0.875520px;}
.ls69_c00156{letter-spacing:-0.868680px;}
.ls82_c00156{letter-spacing:-0.772920px;}
.ls77_c00156{letter-spacing:-0.738720px;}
.ls60_c00156{letter-spacing:-0.663480px;}
.ls89_c00156{letter-spacing:-0.658440px;}
.ls62_c00156{letter-spacing:-0.581400px;}
.ls99_c00156{letter-spacing:-0.567720px;}
.ls71_c00156{letter-spacing:-0.554040px;}
.ls66_c00156{letter-spacing:-0.540360px;}
.ls6c_c00156{letter-spacing:-0.533520px;}
.ls74_c00156{letter-spacing:-0.526680px;}
.ls5f_c00156{letter-spacing:-0.519840px;}
.ls91_c00156{letter-spacing:-0.478800px;}
.ls68_c00156{letter-spacing:-0.471960px;}
.ls8f_c00156{letter-spacing:-0.465120px;}
.ls6e_c00156{letter-spacing:-0.444600px;}
.ls8a_c00156{letter-spacing:-0.431880px;}
.ls79_c00156{letter-spacing:-0.430920px;}
.ls96_c00156{letter-spacing:-0.417240px;}
.ls7b_c00156{letter-spacing:-0.376200px;}
.ls92_c00156{letter-spacing:-0.369360px;}
.ls7c_c00156{letter-spacing:-0.355680px;}
.ls8b_c00156{letter-spacing:-0.318600px;}
.ls61_c00156{letter-spacing:-0.294120px;}
.ls7a_c00156{letter-spacing:-0.280440px;}
.ls6b_c00156{letter-spacing:-0.218880px;}
.ls73_c00156{letter-spacing:-0.198360px;}
.ls6d_c00156{letter-spacing:-0.177840px;}
.ls94_c00156{letter-spacing:-0.171000px;}
.ls72_c00156{letter-spacing:-0.157320px;}
.ls76_c00156{letter-spacing:-0.136800px;}
.ls80_c00156{letter-spacing:-0.123120px;}
.ls81_c00156{letter-spacing:-0.116280px;}
.ls83_c00156{letter-spacing:-0.109440px;}
.ls78_c00156{letter-spacing:-0.088920px;}
.ls8e_c00156{letter-spacing:-0.054720px;}
.ls7e_c00156{letter-spacing:-0.041040px;}
.ls5d_c00156{letter-spacing:0.000000px;}
.ls17_c00156{letter-spacing:0.006840px;}
.ls26_c00156{letter-spacing:0.020520px;}
.ls19_c00156{letter-spacing:0.034200px;}
.ls47_c00156{letter-spacing:0.041040px;}
.ls25_c00156{letter-spacing:0.047880px;}
.ls13_c00156{letter-spacing:0.075240px;}
.ls3b_c00156{letter-spacing:0.082080px;}
.ls5e_c00156{letter-spacing:0.088920px;}
.ls35_c00156{letter-spacing:0.116280px;}
.ls27_c00156{letter-spacing:0.123120px;}
.ls38_c00156{letter-spacing:0.129960px;}
.ls5b_c00156{letter-spacing:0.136800px;}
.ls2e_c00156{letter-spacing:0.143640px;}
.ls3f_c00156{letter-spacing:0.157320px;}
.ls7d_c00156{letter-spacing:0.164160px;}
.ls3e_c00156{letter-spacing:0.177840px;}
.ls5_c00156{letter-spacing:0.198360px;}
.ls36_c00156{letter-spacing:0.212040px;}
.lsd_c00156{letter-spacing:0.218880px;}
.ls3a_c00156{letter-spacing:0.225720px;}
.ls20_c00156{letter-spacing:0.232560px;}
.ls4f_c00156{letter-spacing:0.239400px;}
.ls55_c00156{letter-spacing:0.253080px;}
.ls3d_c00156{letter-spacing:0.273600px;}
.ls54_c00156{letter-spacing:0.280440px;}
.ls21_c00156{letter-spacing:0.294120px;}
.ls93_c00156{letter-spacing:0.307800px;}
.ls10_c00156{letter-spacing:0.314640px;}
.ls11_c00156{letter-spacing:0.321480px;}
.ls58_c00156{letter-spacing:0.348840px;}
.ls30_c00156{letter-spacing:0.362520px;}
.ls1f_c00156{letter-spacing:0.369360px;}
.ls53_c00156{letter-spacing:0.383040px;}
.ls12_c00156{letter-spacing:0.389880px;}
.ls7_c00156{letter-spacing:0.396720px;}
.ls2c_c00156{letter-spacing:0.410400px;}
.ls34_c00156{letter-spacing:0.417240px;}
.ls50_c00156{letter-spacing:0.430920px;}
.ls33_c00156{letter-spacing:0.437760px;}
.ls24_c00156{letter-spacing:0.451440px;}
.ls29_c00156{letter-spacing:0.458280px;}
.lsc_c00156{letter-spacing:0.471960px;}
.ls45_c00156{letter-spacing:0.485640px;}
.ls6_c00156{letter-spacing:0.499320px;}
.ls1c_c00156{letter-spacing:0.513000px;}
.ls4c_c00156{letter-spacing:0.519840px;}
.ls48_c00156{letter-spacing:0.567720px;}
.ls2d_c00156{letter-spacing:0.574560px;}
.ls4a_c00156{letter-spacing:0.581400px;}
.ls16_c00156{letter-spacing:0.601920px;}
.ls23_c00156{letter-spacing:0.608760px;}
.ls40_c00156{letter-spacing:0.622440px;}
.ls2_c00156{letter-spacing:0.642960px;}
.ls28_c00156{letter-spacing:0.670320px;}
.ls0_c00156{letter-spacing:0.679320px;}
.ls49_c00156{letter-spacing:0.684000px;}
.ls22_c00156{letter-spacing:0.697680px;}
.ls1a_c00156{letter-spacing:0.704520px;}
.ls57_c00156{letter-spacing:0.752400px;}
.ls3c_c00156{letter-spacing:0.759240px;}
.ls43_c00156{letter-spacing:0.779760px;}
.lsa_c00156{letter-spacing:0.799200px;}
.ls14_c00156{letter-spacing:0.812520px;}
.ls32_c00156{letter-spacing:0.848160px;}
.ls5a_c00156{letter-spacing:0.855000px;}
.lsb_c00156{letter-spacing:0.859140px;}
.ls41_c00156{letter-spacing:0.889200px;}
.ls51_c00156{letter-spacing:0.945720px;}
.ls1e_c00156{letter-spacing:0.998640px;}
.lse_c00156{letter-spacing:1.000500px;}
.ls2f_c00156{letter-spacing:1.012320px;}
.ls59_c00156{letter-spacing:1.025640px;}
.ls9_c00156{letter-spacing:1.026000px;}
.ls4_c00156{letter-spacing:1.060200px;}
.ls37_c00156{letter-spacing:1.169640px;}
.ls8_c00156{letter-spacing:1.203840px;}
.ls18_c00156{letter-spacing:1.205460px;}
.ls2b_c00156{letter-spacing:1.224360px;}
.ls46_c00156{letter-spacing:1.258560px;}
.ls4d_c00156{letter-spacing:1.272240px;}
.ls4e_c00156{letter-spacing:1.279080px;}
.ls39_c00156{letter-spacing:1.285920px;}
.ls4b_c00156{letter-spacing:1.332000px;}
.ls3_c00156{letter-spacing:1.333800px;}
.ls15_c00156{letter-spacing:1.391940px;}
.ls1d_c00156{letter-spacing:1.402200px;}
.lsf_c00156{letter-spacing:1.421400px;}
.ls31_c00156{letter-spacing:1.422720px;}
.ls1b_c00156{letter-spacing:1.625040px;}
.ls44_c00156{letter-spacing:1.648440px;}
.ls42_c00156{letter-spacing:1.792080px;}
.ls2a_c00156{letter-spacing:2.250360px;}
.ls52_c00156{letter-spacing:2.270880px;}
.ls56_c00156{letter-spacing:3.091680px;}
.ls1_c00156{letter-spacing:28.259400px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{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__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00156{word-spacing:0.000000px;}
.ws4_c00156{word-spacing:0.048000px;}
.ws0_c00156{word-spacing:0.630660px;}
.ws1_c00156{word-spacing:1.104960px;}
.ws2_c00156{word-spacing:9.978600px;}
.ws3_c00156{word-spacing:16.055400px;}
._0_c00156{margin-left:-9.377280px;}
._17_c00156{margin-left:-4.979520px;}
._7_c00156{margin-left:-3.864300px;}
._8_c00156{margin-left:-2.476080px;}
._c_c00156{margin-left:-1.324080px;}
._9_c00156{width:1.846800px;}
._5_c00156{width:3.396600px;}
._a_c00156{width:4.548600px;}
._6_c00156{width:6.026040px;}
._1_c00156{width:8.016480px;}
._b_c00156{width:9.237960px;}
._2_c00156{width:10.711440px;}
._3_c00156{width:12.038400px;}
._4_c00156{width:13.338000px;}
._13_c00156{width:14.394240px;}
._16_c00156{width:15.645240px;}
._15_c00156{width:18.373800px;}
._12_c00156{width:20.048040px;}
._e_c00156{width:21.491280px;}
._f_c00156{width:23.488560px;}
._10_c00156{width:25.390080px;}
._11_c00156{width:27.106920px;}
._d_c00156{width:29.049480px;}
._14_c00156{width:31.253520px;}
.fc0_c00156{color:transparent;}
.fs5_c00156{font-size:53.280000px;}
.fs6_c00156{font-size:57.600000px;}
.fs0_c00156{font-size:66.600000px;}
.fs1_c00156{font-size:68.400000px;}
.fs2_c00156{font-size:69.000000px;}
.fs3_c00156{font-size:70.800000px;}
.fs4_c00156{font-size:76.800000px;}
.y0_c00156{bottom:0.000000px;}
.y1d_c00156{bottom:72.735006px;}
.y1c_c00156{bottom:179.640006px;}
.y1b_c00156{bottom:242.288706px;}
.y1a_c00156{bottom:273.615906px;}
.y19_c00156{bottom:304.926006px;}
.y18_c00156{bottom:335.535006px;}
.y16_c00156{bottom:396.716406px;}
.y17_c00156{bottom:396.720006px;}
.y15_c00156{bottom:429.480006px;}
.y14_c00156{bottom:492.480006px;}
.y12_c00156{bottom:524.139906px;}
.y13_c00156{bottom:524.175006px;}
.y11_c00156{bottom:555.450006px;}
.y10_c00156{bottom:587.153406px;}
.yf_c00156{bottom:618.121506px;}
.ye_c00156{bottom:649.089606px;}
.yd_c00156{bottom:680.399706px;}
.yc_c00156{bottom:711.726906px;}
.yb_c00156{bottom:742.695006px;}
.ya_c00156{bottom:805.680006px;}
.y9_c00156{bottom:867.975006px;}
.y8_c00156{bottom:867.975906px;}
.y6_c00156{bottom:929.888706px;}
.y7_c00156{bottom:929.895006px;}
.y5_c00156{bottom:961.575006px;}
.y4_c00156{bottom:1023.840006px;}
.y3_c00156{bottom:1086.130806px;}
.y2_c00156{bottom:1117.800006px;}
.y1_c00156{bottom:1192.680006px;}
.h8_c00156{height:35.484480px;}
.h9_c00156{height:56.531250px;}
.h2_c00156{height:65.364258px;}
.h3_c00156{height:67.130859px;}
.h4_c00156{height:67.686035px;}
.h6_c00156{height:69.486328px;}
.h5_c00156{height:69.626728px;}
.h7_c00156{height:75.375000px;}
.h1_c00156{height:1263.000000px;}
.h0_c00156{height:1263.240006px;}
.w1_c00156{width:892.500000px;}
.w0_c00156{width:892.799998px;}
.x0_c00156{left:0.000000px;}
.xe_c00156{left:119.333398px;}
.x1_c00156{left:120.524998px;}
.x9_c00156{left:173.669998px;}
.x2_c00156{left:174.749998px;}
.x3_c00156{left:264.029998px;}
.x4_c00156{left:269.789999px;}
.x5_c00156{left:285.749999px;}
.xc_c00156{left:289.214999px;}
.xd_c00156{left:311.324998px;}
.x7_c00156{left:388.259999px;}
.x11_c00156{left:421.064998px;}
.x6_c00156{left:424.364999px;}
.xa_c00156{left:454.604998px;}
.x8_c00156{left:456.479999px;}
.xb_c00156{left:488.774999px;}
.xf_c00156{left:585.014998px;}
.x10_c00156{left:639.689999px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls90_c00156{letter-spacing:-2.389333pt;}
.ls88_c00156{letter-spacing:-2.202667pt;}
.ls87_c00156{letter-spacing:-2.133440pt;}
.ls65_c00156{letter-spacing:-2.128000pt;}
.ls5c_c00156{letter-spacing:-2.072000pt;}
.ls64_c00156{letter-spacing:-1.927360pt;}
.ls63_c00156{letter-spacing:-1.909120pt;}
.ls98_c00156{letter-spacing:-1.896960pt;}
.ls9a_c00156{letter-spacing:-1.792000pt;}
.ls95_c00156{letter-spacing:-1.617280pt;}
.ls6f_c00156{letter-spacing:-1.495680pt;}
.ls86_c00156{letter-spacing:-1.422293pt;}
.ls6a_c00156{letter-spacing:-1.392320pt;}
.ls85_c00156{letter-spacing:-1.301120pt;}
.ls8d_c00156{letter-spacing:-1.296427pt;}
.ls70_c00156{letter-spacing:-1.118720pt;}
.ls75_c00156{letter-spacing:-1.064000pt;}
.ls67_c00156{letter-spacing:-1.021440pt;}
.ls84_c00156{letter-spacing:-0.905920pt;}
.ls7f_c00156{letter-spacing:-0.881600pt;}
.ls8c_c00156{letter-spacing:-0.818133pt;}
.ls97_c00156{letter-spacing:-0.778240pt;}
.ls69_c00156{letter-spacing:-0.772160pt;}
.ls82_c00156{letter-spacing:-0.687040pt;}
.ls77_c00156{letter-spacing:-0.656640pt;}
.ls60_c00156{letter-spacing:-0.589760pt;}
.ls89_c00156{letter-spacing:-0.585280pt;}
.ls62_c00156{letter-spacing:-0.516800pt;}
.ls99_c00156{letter-spacing:-0.504640pt;}
.ls71_c00156{letter-spacing:-0.492480pt;}
.ls66_c00156{letter-spacing:-0.480320pt;}
.ls6c_c00156{letter-spacing:-0.474240pt;}
.ls74_c00156{letter-spacing:-0.468160pt;}
.ls5f_c00156{letter-spacing:-0.462080pt;}
.ls91_c00156{letter-spacing:-0.425600pt;}
.ls68_c00156{letter-spacing:-0.419520pt;}
.ls8f_c00156{letter-spacing:-0.413440pt;}
.ls6e_c00156{letter-spacing:-0.395200pt;}
.ls8a_c00156{letter-spacing:-0.383893pt;}
.ls79_c00156{letter-spacing:-0.383040pt;}
.ls96_c00156{letter-spacing:-0.370880pt;}
.ls7b_c00156{letter-spacing:-0.334400pt;}
.ls92_c00156{letter-spacing:-0.328320pt;}
.ls7c_c00156{letter-spacing:-0.316160pt;}
.ls8b_c00156{letter-spacing:-0.283200pt;}
.ls61_c00156{letter-spacing:-0.261440pt;}
.ls7a_c00156{letter-spacing:-0.249280pt;}
.ls6b_c00156{letter-spacing:-0.194560pt;}
.ls73_c00156{letter-spacing:-0.176320pt;}
.ls6d_c00156{letter-spacing:-0.158080pt;}
.ls94_c00156{letter-spacing:-0.152000pt;}
.ls72_c00156{letter-spacing:-0.139840pt;}
.ls76_c00156{letter-spacing:-0.121600pt;}
.ls80_c00156{letter-spacing:-0.109440pt;}
.ls81_c00156{letter-spacing:-0.103360pt;}
.ls83_c00156{letter-spacing:-0.097280pt;}
.ls78_c00156{letter-spacing:-0.079040pt;}
.ls8e_c00156{letter-spacing:-0.048640pt;}
.ls7e_c00156{letter-spacing:-0.036480pt;}
.ls5d_c00156{letter-spacing:0.000000pt;}
.ls17_c00156{letter-spacing:0.006080pt;}
.ls26_c00156{letter-spacing:0.018240pt;}
.ls19_c00156{letter-spacing:0.030400pt;}
.ls47_c00156{letter-spacing:0.036480pt;}
.ls25_c00156{letter-spacing:0.042560pt;}
.ls13_c00156{letter-spacing:0.066880pt;}
.ls3b_c00156{letter-spacing:0.072960pt;}
.ls5e_c00156{letter-spacing:0.079040pt;}
.ls35_c00156{letter-spacing:0.103360pt;}
.ls27_c00156{letter-spacing:0.109440pt;}
.ls38_c00156{letter-spacing:0.115520pt;}
.ls5b_c00156{letter-spacing:0.121600pt;}
.ls2e_c00156{letter-spacing:0.127680pt;}
.ls3f_c00156{letter-spacing:0.139840pt;}
.ls7d_c00156{letter-spacing:0.145920pt;}
.ls3e_c00156{letter-spacing:0.158080pt;}
.ls5_c00156{letter-spacing:0.176320pt;}
.ls36_c00156{letter-spacing:0.188480pt;}
.lsd_c00156{letter-spacing:0.194560pt;}
.ls3a_c00156{letter-spacing:0.200640pt;}
.ls20_c00156{letter-spacing:0.206720pt;}
.ls4f_c00156{letter-spacing:0.212800pt;}
.ls55_c00156{letter-spacing:0.224960pt;}
.ls3d_c00156{letter-spacing:0.243200pt;}
.ls54_c00156{letter-spacing:0.249280pt;}
.ls21_c00156{letter-spacing:0.261440pt;}
.ls93_c00156{letter-spacing:0.273600pt;}
.ls10_c00156{letter-spacing:0.279680pt;}
.ls11_c00156{letter-spacing:0.285760pt;}
.ls58_c00156{letter-spacing:0.310080pt;}
.ls30_c00156{letter-spacing:0.322240pt;}
.ls1f_c00156{letter-spacing:0.328320pt;}
.ls53_c00156{letter-spacing:0.340480pt;}
.ls12_c00156{letter-spacing:0.346560pt;}
.ls7_c00156{letter-spacing:0.352640pt;}
.ls2c_c00156{letter-spacing:0.364800pt;}
.ls34_c00156{letter-spacing:0.370880pt;}
.ls50_c00156{letter-spacing:0.383040pt;}
.ls33_c00156{letter-spacing:0.389120pt;}
.ls24_c00156{letter-spacing:0.401280pt;}
.ls29_c00156{letter-spacing:0.407360pt;}
.lsc_c00156{letter-spacing:0.419520pt;}
.ls45_c00156{letter-spacing:0.431680pt;}
.ls6_c00156{letter-spacing:0.443840pt;}
.ls1c_c00156{letter-spacing:0.456000pt;}
.ls4c_c00156{letter-spacing:0.462080pt;}
.ls48_c00156{letter-spacing:0.504640pt;}
.ls2d_c00156{letter-spacing:0.510720pt;}
.ls4a_c00156{letter-spacing:0.516800pt;}
.ls16_c00156{letter-spacing:0.535040pt;}
.ls23_c00156{letter-spacing:0.541120pt;}
.ls40_c00156{letter-spacing:0.553280pt;}
.ls2_c00156{letter-spacing:0.571520pt;}
.ls28_c00156{letter-spacing:0.595840pt;}
.ls0_c00156{letter-spacing:0.603840pt;}
.ls49_c00156{letter-spacing:0.608000pt;}
.ls22_c00156{letter-spacing:0.620160pt;}
.ls1a_c00156{letter-spacing:0.626240pt;}
.ls57_c00156{letter-spacing:0.668800pt;}
.ls3c_c00156{letter-spacing:0.674880pt;}
.ls43_c00156{letter-spacing:0.693120pt;}
.lsa_c00156{letter-spacing:0.710400pt;}
.ls14_c00156{letter-spacing:0.722240pt;}
.ls32_c00156{letter-spacing:0.753920pt;}
.ls5a_c00156{letter-spacing:0.760000pt;}
.lsb_c00156{letter-spacing:0.763680pt;}
.ls41_c00156{letter-spacing:0.790400pt;}
.ls51_c00156{letter-spacing:0.840640pt;}
.ls1e_c00156{letter-spacing:0.887680pt;}
.lse_c00156{letter-spacing:0.889333pt;}
.ls2f_c00156{letter-spacing:0.899840pt;}
.ls59_c00156{letter-spacing:0.911680pt;}
.ls9_c00156{letter-spacing:0.912000pt;}
.ls4_c00156{letter-spacing:0.942400pt;}
.ls37_c00156{letter-spacing:1.039680pt;}
.ls8_c00156{letter-spacing:1.070080pt;}
.ls18_c00156{letter-spacing:1.071520pt;}
.ls2b_c00156{letter-spacing:1.088320pt;}
.ls46_c00156{letter-spacing:1.118720pt;}
.ls4d_c00156{letter-spacing:1.130880pt;}
.ls4e_c00156{letter-spacing:1.136960pt;}
.ls39_c00156{letter-spacing:1.143040pt;}
.ls4b_c00156{letter-spacing:1.184000pt;}
.ls3_c00156{letter-spacing:1.185600pt;}
.ls15_c00156{letter-spacing:1.237280pt;}
.ls1d_c00156{letter-spacing:1.246400pt;}
.lsf_c00156{letter-spacing:1.263467pt;}
.ls31_c00156{letter-spacing:1.264640pt;}
.ls1b_c00156{letter-spacing:1.444480pt;}
.ls44_c00156{letter-spacing:1.465280pt;}
.ls42_c00156{letter-spacing:1.592960pt;}
.ls2a_c00156{letter-spacing:2.000320pt;}
.ls52_c00156{letter-spacing:2.018560pt;}
.ls56_c00156{letter-spacing:2.748160pt;}
.ls1_c00156{letter-spacing:25.119467pt;}
.ws5_c00156{word-spacing:0.000000pt;}
.ws4_c00156{word-spacing:0.042667pt;}
.ws0_c00156{word-spacing:0.560587pt;}
.ws1_c00156{word-spacing:0.982187pt;}
.ws2_c00156{word-spacing:8.869867pt;}
.ws3_c00156{word-spacing:14.271467pt;}
._0_c00156{margin-left:-8.335360pt;}
._17_c00156{margin-left:-4.426240pt;}
._7_c00156{margin-left:-3.434933pt;}
._8_c00156{margin-left:-2.200960pt;}
._c_c00156{margin-left:-1.176960pt;}
._9_c00156{width:1.641600pt;}
._5_c00156{width:3.019200pt;}
._a_c00156{width:4.043200pt;}
._6_c00156{width:5.356480pt;}
._1_c00156{width:7.125760pt;}
._b_c00156{width:8.211520pt;}
._2_c00156{width:9.521280pt;}
._3_c00156{width:10.700800pt;}
._4_c00156{width:11.856000pt;}
._13_c00156{width:12.794880pt;}
._16_c00156{width:13.906880pt;}
._15_c00156{width:16.332267pt;}
._12_c00156{width:17.820480pt;}
._e_c00156{width:19.103360pt;}
._f_c00156{width:20.878720pt;}
._10_c00156{width:22.568960pt;}
._11_c00156{width:24.095040pt;}
._d_c00156{width:25.821760pt;}
._14_c00156{width:27.780907pt;}
.fs5_c00156{font-size:47.360000pt;}
.fs6_c00156{font-size:51.200000pt;}
.fs0_c00156{font-size:59.200000pt;}
.fs1_c00156{font-size:60.800000pt;}
.fs2_c00156{font-size:61.333333pt;}
.fs3_c00156{font-size:62.933333pt;}
.fs4_c00156{font-size:68.266667pt;}
.y0_c00156{bottom:0.000000pt;}
.y1d_c00156{bottom:64.653339pt;}
.y1c_c00156{bottom:159.680005pt;}
.y1b_c00156{bottom:215.367739pt;}
.y1a_c00156{bottom:243.214139pt;}
.y19_c00156{bottom:271.045339pt;}
.y18_c00156{bottom:298.253339pt;}
.y16_c00156{bottom:352.636805pt;}
.y17_c00156{bottom:352.640005pt;}
.y15_c00156{bottom:381.760005pt;}
.y14_c00156{bottom:437.760005pt;}
.y12_c00156{bottom:465.902139pt;}
.y13_c00156{bottom:465.933339pt;}
.y11_c00156{bottom:493.733339pt;}
.y10_c00156{bottom:521.914139pt;}
.yf_c00156{bottom:549.441339pt;}
.ye_c00156{bottom:576.968539pt;}
.yd_c00156{bottom:604.799739pt;}
.yc_c00156{bottom:632.646139pt;}
.yb_c00156{bottom:660.173339pt;}
.ya_c00156{bottom:716.160005pt;}
.y9_c00156{bottom:771.533339pt;}
.y8_c00156{bottom:771.534139pt;}
.y6_c00156{bottom:826.567739pt;}
.y7_c00156{bottom:826.573339pt;}
.y5_c00156{bottom:854.733339pt;}
.y4_c00156{bottom:910.080005pt;}
.y3_c00156{bottom:965.449605pt;}
.y2_c00156{bottom:993.600005pt;}
.y1_c00156{bottom:1060.160005pt;}
.h8_c00156{height:31.541760pt;}
.h9_c00156{height:50.250000pt;}
.h2_c00156{height:58.101562pt;}
.h3_c00156{height:59.671875pt;}
.h4_c00156{height:60.165365pt;}
.h6_c00156{height:61.765625pt;}
.h5_c00156{height:61.890425pt;}
.h7_c00156{height:67.000000pt;}
.h1_c00156{height:1122.666667pt;}
.h0_c00156{height:1122.880005pt;}
.w1_c00156{width:793.333333pt;}
.w0_c00156{width:793.599999pt;}
.x0_c00156{left:0.000000pt;}
.xe_c00156{left:106.074132pt;}
.x1_c00156{left:107.133332pt;}
.x9_c00156{left:154.373332pt;}
.x2_c00156{left:155.333332pt;}
.x3_c00156{left:234.693332pt;}
.x4_c00156{left:239.813332pt;}
.x5_c00156{left:253.999999pt;}
.xc_c00156{left:257.079999pt;}
.xd_c00156{left:276.733332pt;}
.x7_c00156{left:345.119999pt;}
.x11_c00156{left:374.279999pt;}
.x6_c00156{left:377.213332pt;}
.xa_c00156{left:404.093332pt;}
.x8_c00156{left:405.759999pt;}
.xb_c00156{left:434.466665pt;}
.xf_c00156{left:520.013332pt;}
.x10_c00156{left:568.613332pt;}
}





/* 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_c00157 {
    display:none;
  }
  .loading-indicator_c00157.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00157 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_c00157 { 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_c00157" -> "#page-container .classname_c00157")
 */
.pf_c00157 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00157 { /* 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_c00157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00157 { /* 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_c00157 { /* 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_c00157 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00157 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00157 {overflow:visible;}
  }
}
.c_c00157 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00157 { /* 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_c00157:after { /* webkit #35443 */
  content: '';
}
.t_c00157:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00157 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 */
}
.__c00157 { /* 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_c00157 { /* info for Javascript */
  display:none;
}
.l_c00157 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00157 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00157 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00157: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_c00157 {
    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_c00157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00157.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_c00157 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00157;src:url('chunks/assets/font_c7710a4adb34568c19deb3de.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.284668;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_c00157;src:url('chunks/assets/font_cfebc1f5f90783dff610abe5.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.284180;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_c00157;src:url('chunks/assets/font_a1764d071781574a3b16524e.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;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;}
.md_c00157{transform:matrix(0.138982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138982,0.000000,0.000000,0.250000,0,0);}
.mc_c00157{transform:matrix(0.140859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140859,0.000000,0.000000,0.250000,0,0);}
.m4_c00157{transform:matrix(0.191998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191998,0.000000,0.000000,0.250000,0,0);}
.m8_c00157{transform:matrix(0.214039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214039,0.000000,0.000000,0.250000,0,0);}
.me_c00157{transform:matrix(0.230274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230274,0.000000,0.000000,0.250000,0,0);}
.m6_c00157{transform:matrix(0.232027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232027,0.000000,0.000000,0.250000,0,0);}
.ma_c00157{transform:matrix(0.233474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233474,0.000000,0.000000,0.250000,0,0);}
.m7_c00157{transform:matrix(0.237184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237184,0.000000,0.000000,0.250000,0,0);}
.mf_c00157{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.mb_c00157{transform:matrix(0.242011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242011,0.000000,0.000000,0.250000,0,0);}
.m9_c00157{transform:matrix(0.244028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244028,0.000000,0.000000,0.250000,0,0);}
.m0_c00157{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m2_c00157{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m3_c00157{transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{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);}
.m5_c00157{transform:matrix(0.268339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268339,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls8c_c00157{letter-spacing:-2.688000px;}
.ls77_c00157{letter-spacing:-2.604000px;}
.ls80_c00157{letter-spacing:-2.541000px;}
.ls55_c00157{letter-spacing:-2.436000px;}
.ls49_c00157{letter-spacing:-2.352000px;}
.ls93_c00157{letter-spacing:-2.310720px;}
.ls94_c00157{letter-spacing:-2.310000px;}
.ls8e_c00157{letter-spacing:-2.296800px;}
.ls8b_c00157{letter-spacing:-2.192400px;}
.ls54_c00157{letter-spacing:-2.136720px;}
.ls52_c00157{letter-spacing:-2.039280px;}
.ls8f_c00157{letter-spacing:-1.886160px;}
.ls57_c00157{letter-spacing:-1.649520px;}
.ls98_c00157{letter-spacing:-1.633500px;}
.ls60_c00157{letter-spacing:-1.531200px;}
.ls4e_c00157{letter-spacing:-1.426800px;}
.ls8d_c00157{letter-spacing:-1.405920px;}
.ls97_c00157{letter-spacing:-1.350360px;}
.ls4f_c00157{letter-spacing:-1.218000px;}
.ls70_c00157{letter-spacing:-1.134480px;}
.ls87_c00157{letter-spacing:-1.099680px;}
.ls5e_c00157{letter-spacing:-1.044000px;}
.ls78_c00157{letter-spacing:-1.009200px;}
.ls59_c00157{letter-spacing:-0.995280px;}
.ls95_c00157{letter-spacing:-0.988320px;}
.ls53_c00157{letter-spacing:-0.932640px;}
.ls91_c00157{letter-spacing:-0.918720px;}
.ls89_c00157{letter-spacing:-0.911760px;}
.ls90_c00157{letter-spacing:-0.835200px;}
.ls73_c00157{letter-spacing:-0.765600px;}
.ls92_c00157{letter-spacing:-0.751680px;}
.ls79_c00157{letter-spacing:-0.744720px;}
.ls74_c00157{letter-spacing:-0.737760px;}
.ls7e_c00157{letter-spacing:-0.675120px;}
.ls69_c00157{letter-spacing:-0.661200px;}
.ls4b_c00157{letter-spacing:-0.640320px;}
.ls85_c00157{letter-spacing:-0.619440px;}
.ls7c_c00157{letter-spacing:-0.612480px;}
.ls86_c00157{letter-spacing:-0.563760px;}
.ls99_c00157{letter-spacing:-0.529620px;}
.ls4d_c00157{letter-spacing:-0.508080px;}
.ls6e_c00157{letter-spacing:-0.501120px;}
.ls72_c00157{letter-spacing:-0.480240px;}
.ls76_c00157{letter-spacing:-0.431520px;}
.ls5b_c00157{letter-spacing:-0.396720px;}
.ls75_c00157{letter-spacing:-0.389760px;}
.ls51_c00157{letter-spacing:-0.382800px;}
.ls82_c00157{letter-spacing:-0.375840px;}
.ls6b_c00157{letter-spacing:-0.368880px;}
.ls81_c00157{letter-spacing:-0.361920px;}
.ls6d_c00157{letter-spacing:-0.320160px;}
.ls5c_c00157{letter-spacing:-0.285360px;}
.ls8a_c00157{letter-spacing:-0.229680px;}
.ls67_c00157{letter-spacing:-0.222720px;}
.ls6a_c00157{letter-spacing:-0.208800px;}
.ls84_c00157{letter-spacing:-0.187920px;}
.ls5d_c00157{letter-spacing:-0.180960px;}
.ls64_c00157{letter-spacing:-0.174000px;}
.ls61_c00157{letter-spacing:-0.160080px;}
.ls7f_c00157{letter-spacing:-0.153120px;}
.ls5a_c00157{letter-spacing:-0.139200px;}
.ls7b_c00157{letter-spacing:-0.125280px;}
.ls56_c00157{letter-spacing:-0.118320px;}
.ls6c_c00157{letter-spacing:-0.111360px;}
.ls66_c00157{letter-spacing:-0.104400px;}
.ls58_c00157{letter-spacing:-0.090480px;}
.ls96_c00157{letter-spacing:-0.083520px;}
.ls88_c00157{letter-spacing:-0.076560px;}
.ls5f_c00157{letter-spacing:-0.069600px;}
.ls63_c00157{letter-spacing:-0.055680px;}
.ls71_c00157{letter-spacing:-0.048720px;}
.ls4c_c00157{letter-spacing:-0.041760px;}
.ls62_c00157{letter-spacing:-0.034800px;}
.ls83_c00157{letter-spacing:-0.027840px;}
.ls68_c00157{letter-spacing:-0.020880px;}
.ls50_c00157{letter-spacing:-0.006960px;}
.ls4a_c00157{letter-spacing:0.000000px;}
.ls2c_c00157{letter-spacing:0.013920px;}
.ls4_c00157{letter-spacing:0.020880px;}
.ls2e_c00157{letter-spacing:0.027840px;}
.ls15_c00157{letter-spacing:0.034800px;}
.ls33_c00157{letter-spacing:0.048720px;}
.ls1d_c00157{letter-spacing:0.055680px;}
.ls25_c00157{letter-spacing:0.062640px;}
.ls24_c00157{letter-spacing:0.069600px;}
.ls3d_c00157{letter-spacing:0.076560px;}
.ls1f_c00157{letter-spacing:0.083520px;}
.ls17_c00157{letter-spacing:0.090480px;}
.ls40_c00157{letter-spacing:0.104400px;}
.ls44_c00157{letter-spacing:0.111360px;}
.ls11_c00157{letter-spacing:0.118320px;}
.ls37_c00157{letter-spacing:0.132240px;}
.ls31_c00157{letter-spacing:0.146160px;}
.ls20_c00157{letter-spacing:0.153120px;}
.ls1c_c00157{letter-spacing:0.160080px;}
.ls36_c00157{letter-spacing:0.167040px;}
.ls5_c00157{letter-spacing:0.174000px;}
.ls30_c00157{letter-spacing:0.177840px;}
.ls2a_c00157{letter-spacing:0.180960px;}
.ls2_c00157{letter-spacing:0.201840px;}
.ls39_c00157{letter-spacing:0.208800px;}
.ls3c_c00157{letter-spacing:0.215760px;}
.ls3a_c00157{letter-spacing:0.222720px;}
.ls1a_c00157{letter-spacing:0.229680px;}
.ls35_c00157{letter-spacing:0.236640px;}
.lsb_c00157{letter-spacing:0.243600px;}
.ls16_c00157{letter-spacing:0.257520px;}
.ls28_c00157{letter-spacing:0.271440px;}
.ls46_c00157{letter-spacing:0.294120px;}
.ls2b_c00157{letter-spacing:0.313200px;}
.ls7a_c00157{letter-spacing:0.320160px;}
.ls23_c00157{letter-spacing:0.348000px;}
.ls3e_c00157{letter-spacing:0.354960px;}
.ls6f_c00157{letter-spacing:0.361920px;}
.ls2f_c00157{letter-spacing:0.382800px;}
.ls41_c00157{letter-spacing:0.417600px;}
.ls3f_c00157{letter-spacing:0.438480px;}
.ls18_c00157{letter-spacing:0.459360px;}
.ls1_c00157{letter-spacing:0.478800px;}
.ls1e_c00157{letter-spacing:0.480240px;}
.ls12_c00157{letter-spacing:0.494160px;}
.ls43_c00157{letter-spacing:0.515040px;}
.ls19_c00157{letter-spacing:0.522000px;}
.lsc_c00157{letter-spacing:0.542880px;}
.ls2d_c00157{letter-spacing:0.549840px;}
.ls3_c00157{letter-spacing:0.556800px;}
.ls3b_c00157{letter-spacing:0.612480px;}
.ls22_c00157{letter-spacing:0.640320px;}
.lse_c00157{letter-spacing:0.647280px;}
.ls0_c00157{letter-spacing:0.656640px;}
.ls27_c00157{letter-spacing:0.675120px;}
.ls34_c00157{letter-spacing:0.737760px;}
.lsf_c00157{letter-spacing:0.758640px;}
.ls14_c00157{letter-spacing:0.786480px;}
.ls38_c00157{letter-spacing:0.835200px;}
.lsa_c00157{letter-spacing:0.861840px;}
.ls29_c00157{letter-spacing:0.883920px;}
.ls7_c00157{letter-spacing:0.918720px;}
.ls42_c00157{letter-spacing:0.950760px;}
.ls1b_c00157{letter-spacing:0.953520px;}
.ls21_c00157{letter-spacing:1.044000px;}
.lsd_c00157{letter-spacing:1.106640px;}
.ls8_c00157{letter-spacing:1.127520px;}
.ls65_c00157{letter-spacing:1.204080px;}
.ls32_c00157{letter-spacing:1.224960px;}
.ls26_c00157{letter-spacing:1.364160px;}
.ls48_c00157{letter-spacing:1.635600px;}
.ls9_c00157{letter-spacing:1.894680px;}
.ls13_c00157{letter-spacing:1.983600px;}
.ls47_c00157{letter-spacing:2.164560px;}
.ls10_c00157{letter-spacing:2.442960px;}
.ls6_c00157{letter-spacing:2.888400px;}
.ls45_c00157{letter-spacing:3.145920px;}
.ls7d_c00157{letter-spacing:3.540000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{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__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00157{word-spacing:0.000000px;}
.ws4_c00157{word-spacing:3.436800px;}
.ws0_c00157{word-spacing:3.856800px;}
.ws3_c00157{word-spacing:7.904400px;}
.ws2_c00157{word-spacing:8.777760px;}
.ws1_c00157{word-spacing:22.917840px;}
._3_c00157{margin-left:-7.147920px;}
._18_c00157{margin-left:-4.858080px;}
._4_c00157{margin-left:-3.674880px;}
._6_c00157{margin-left:-1.606800px;}
._5_c00157{width:1.969680px;}
._2_c00157{width:3.048480px;}
._0_c00157{width:4.678560px;}
._16_c00157{width:6.257520px;}
._1_c00157{width:7.321920px;}
._17_c00157{width:8.338080px;}
._7_c00157{width:10.149600px;}
._d_c00157{width:11.692800px;}
._15_c00157{width:13.253040px;}
._e_c00157{width:14.672880px;}
._10_c00157{width:16.231920px;}
._f_c00157{width:18.533280px;}
._11_c00157{width:19.564560px;}
._b_c00157{width:20.671200px;}
._9_c00157{width:22.237200px;}
._13_c00157{width:23.350800px;}
._a_c00157{width:24.478320px;}
._8_c00157{width:26.280960px;}
._c_c00157{width:28.584720px;}
._12_c00157{width:30.415200px;}
._14_c00157{width:31.897680px;}
.fc0_c00157{color:transparent;}
.fs8_c00157{font-size:58.200000px;}
.fs7_c00157{font-size:66.000000px;}
.fs0_c00157{font-size:67.200000px;}
.fs1_c00157{font-size:68.400000px;}
.fs2_c00157{font-size:69.600000px;}
.fs4_c00157{font-size:70.800000px;}
.fs5_c00157{font-size:72.600000px;}
.fs3_c00157{font-size:74.400000px;}
.fs6_c00157{font-size:76.800000px;}
.y0_c00157{bottom:0.000000px;}
.y22_c00157{bottom:67.680006px;}
.y21_c00157{bottom:204.840006px;}
.y20_c00157{bottom:236.535006px;}
.y1f_c00157{bottom:298.800006px;}
.y1e_c00157{bottom:298.803006px;}
.y1d_c00157{bottom:329.775006px;}
.y1b_c00157{bottom:392.766606px;}
.y1c_c00157{bottom:392.775006px;}
.y1a_c00157{bottom:424.800006px;}
.y19_c00157{bottom:488.177406px;}
.y17_c00157{bottom:519.477606px;}
.y18_c00157{bottom:519.480006px;}
.y16_c00157{bottom:550.797606px;}
.y14_c00157{bottom:582.132006px;}
.y15_c00157{bottom:582.135006px;}
.y13_c00157{bottom:613.800006px;}
.y12_c00157{bottom:644.055006px;}
.y11_c00157{bottom:644.061606px;}
.yf_c00157{bottom:676.092006px;}
.y10_c00157{bottom:676.095006px;}
.ye_c00157{bottom:707.394606px;}
.yd_c00157{bottom:738.714606px;}
.yc_c00157{bottom:770.417406px;}
.yb_c00157{bottom:801.354606px;}
.ya_c00157{bottom:833.057406px;}
.y9_c00157{bottom:864.360006px;}
.y8_c00157{bottom:895.680006px;}
.y7_c00157{bottom:927.000006px;}
.y5_c00157{bottom:989.637606px;}
.y6_c00157{bottom:989.640006px;}
.y4_c00157{bottom:1020.975006px;}
.y3_c00157{bottom:1083.255006px;}
.y2_c00157{bottom:1114.575006px;}
.y1_c00157{bottom:1191.615006px;}
.hb_c00157{height:57.120117px;}
.h2_c00157{height:65.953125px;}
.h3_c00157{height:68.308594px;}
.h4_c00157{height:68.318194px;}
.h5_c00157{height:68.320594px;}
.ha_c00157{height:68.835938px;}
.h8_c00157{height:71.252930px;}
.h7_c00157{height:73.842188px;}
.h9_c00157{height:75.375000px;}
.h6_c00157{height:77.596875px;}
.h1_c00157{height:1263.000000px;}
.h0_c00157{height:1263.240006px;}
.w1_c00157{width:892.500000px;}
.w0_c00157{width:892.799998px;}
.x0_c00157{left:0.000000px;}
.x18_c00157{left:116.656198px;}
.xc_c00157{left:117.772198px;}
.xb_c00157{left:119.007599px;}
.x8_c00157{left:120.273598px;}
.x3_c00157{left:121.321798px;}
.x1_c00157{left:122.684999px;}
.x11_c00157{left:139.859998px;}
.x1b_c00157{left:170.804998px;}
.x7_c00157{left:174.404999px;}
.x2_c00157{left:175.844999px;}
.x5_c00157{left:242.444999px;}
.x6_c00157{left:270.254999px;}
.x21_c00157{left:313.139999px;}
.x22_c00157{left:344.549999px;}
.x23_c00157{left:366.404999px;}
.x4_c00157{left:388.229999px;}
.x16_c00157{left:402.074998px;}
.x1c_c00157{left:420.704998px;}
.xf_c00157{left:421.874998px;}
.x17_c00157{left:425.279999px;}
.x24_c00157{left:435.734998px;}
.x10_c00157{left:444.929999px;}
.x1d_c00157{left:454.889998px;}
.xd_c00157{left:470.189999px;}
.x12_c00157{left:484.124998px;}
.xe_c00157{left:493.004998px;}
.x13_c00157{left:505.769998px;}
.x14_c00157{left:518.684999px;}
.x9_c00157{left:522.539999px;}
.xa_c00157{left:540.539999px;}
.x15_c00157{left:544.874998px;}
.x19_c00157{left:557.609998px;}
.x1e_c00157{left:627.989998px;}
.x1a_c00157{left:650.339998px;}
.x1f_c00157{left:652.979999px;}
.x20_c00157{left:687.794999px;}
.x25_c00157{left:736.379999px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls8c_c00157{letter-spacing:-2.389333pt;}
.ls77_c00157{letter-spacing:-2.314667pt;}
.ls80_c00157{letter-spacing:-2.258667pt;}
.ls55_c00157{letter-spacing:-2.165333pt;}
.ls49_c00157{letter-spacing:-2.090667pt;}
.ls93_c00157{letter-spacing:-2.053973pt;}
.ls94_c00157{letter-spacing:-2.053333pt;}
.ls8e_c00157{letter-spacing:-2.041600pt;}
.ls8b_c00157{letter-spacing:-1.948800pt;}
.ls54_c00157{letter-spacing:-1.899307pt;}
.ls52_c00157{letter-spacing:-1.812693pt;}
.ls8f_c00157{letter-spacing:-1.676587pt;}
.ls57_c00157{letter-spacing:-1.466240pt;}
.ls98_c00157{letter-spacing:-1.452000pt;}
.ls60_c00157{letter-spacing:-1.361067pt;}
.ls4e_c00157{letter-spacing:-1.268267pt;}
.ls8d_c00157{letter-spacing:-1.249707pt;}
.ls97_c00157{letter-spacing:-1.200320pt;}
.ls4f_c00157{letter-spacing:-1.082667pt;}
.ls70_c00157{letter-spacing:-1.008427pt;}
.ls87_c00157{letter-spacing:-0.977493pt;}
.ls5e_c00157{letter-spacing:-0.928000pt;}
.ls78_c00157{letter-spacing:-0.897067pt;}
.ls59_c00157{letter-spacing:-0.884693pt;}
.ls95_c00157{letter-spacing:-0.878507pt;}
.ls53_c00157{letter-spacing:-0.829013pt;}
.ls91_c00157{letter-spacing:-0.816640pt;}
.ls89_c00157{letter-spacing:-0.810453pt;}
.ls90_c00157{letter-spacing:-0.742400pt;}
.ls73_c00157{letter-spacing:-0.680533pt;}
.ls92_c00157{letter-spacing:-0.668160pt;}
.ls79_c00157{letter-spacing:-0.661973pt;}
.ls74_c00157{letter-spacing:-0.655787pt;}
.ls7e_c00157{letter-spacing:-0.600107pt;}
.ls69_c00157{letter-spacing:-0.587733pt;}
.ls4b_c00157{letter-spacing:-0.569173pt;}
.ls85_c00157{letter-spacing:-0.550613pt;}
.ls7c_c00157{letter-spacing:-0.544427pt;}
.ls86_c00157{letter-spacing:-0.501120pt;}
.ls99_c00157{letter-spacing:-0.470773pt;}
.ls4d_c00157{letter-spacing:-0.451627pt;}
.ls6e_c00157{letter-spacing:-0.445440pt;}
.ls72_c00157{letter-spacing:-0.426880pt;}
.ls76_c00157{letter-spacing:-0.383573pt;}
.ls5b_c00157{letter-spacing:-0.352640pt;}
.ls75_c00157{letter-spacing:-0.346453pt;}
.ls51_c00157{letter-spacing:-0.340267pt;}
.ls82_c00157{letter-spacing:-0.334080pt;}
.ls6b_c00157{letter-spacing:-0.327893pt;}
.ls81_c00157{letter-spacing:-0.321707pt;}
.ls6d_c00157{letter-spacing:-0.284587pt;}
.ls5c_c00157{letter-spacing:-0.253653pt;}
.ls8a_c00157{letter-spacing:-0.204160pt;}
.ls67_c00157{letter-spacing:-0.197973pt;}
.ls6a_c00157{letter-spacing:-0.185600pt;}
.ls84_c00157{letter-spacing:-0.167040pt;}
.ls5d_c00157{letter-spacing:-0.160853pt;}
.ls64_c00157{letter-spacing:-0.154667pt;}
.ls61_c00157{letter-spacing:-0.142293pt;}
.ls7f_c00157{letter-spacing:-0.136107pt;}
.ls5a_c00157{letter-spacing:-0.123733pt;}
.ls7b_c00157{letter-spacing:-0.111360pt;}
.ls56_c00157{letter-spacing:-0.105173pt;}
.ls6c_c00157{letter-spacing:-0.098987pt;}
.ls66_c00157{letter-spacing:-0.092800pt;}
.ls58_c00157{letter-spacing:-0.080427pt;}
.ls96_c00157{letter-spacing:-0.074240pt;}
.ls88_c00157{letter-spacing:-0.068053pt;}
.ls5f_c00157{letter-spacing:-0.061867pt;}
.ls63_c00157{letter-spacing:-0.049493pt;}
.ls71_c00157{letter-spacing:-0.043307pt;}
.ls4c_c00157{letter-spacing:-0.037120pt;}
.ls62_c00157{letter-spacing:-0.030933pt;}
.ls83_c00157{letter-spacing:-0.024747pt;}
.ls68_c00157{letter-spacing:-0.018560pt;}
.ls50_c00157{letter-spacing:-0.006187pt;}
.ls4a_c00157{letter-spacing:0.000000pt;}
.ls2c_c00157{letter-spacing:0.012373pt;}
.ls4_c00157{letter-spacing:0.018560pt;}
.ls2e_c00157{letter-spacing:0.024747pt;}
.ls15_c00157{letter-spacing:0.030933pt;}
.ls33_c00157{letter-spacing:0.043307pt;}
.ls1d_c00157{letter-spacing:0.049493pt;}
.ls25_c00157{letter-spacing:0.055680pt;}
.ls24_c00157{letter-spacing:0.061867pt;}
.ls3d_c00157{letter-spacing:0.068053pt;}
.ls1f_c00157{letter-spacing:0.074240pt;}
.ls17_c00157{letter-spacing:0.080427pt;}
.ls40_c00157{letter-spacing:0.092800pt;}
.ls44_c00157{letter-spacing:0.098987pt;}
.ls11_c00157{letter-spacing:0.105173pt;}
.ls37_c00157{letter-spacing:0.117547pt;}
.ls31_c00157{letter-spacing:0.129920pt;}
.ls20_c00157{letter-spacing:0.136107pt;}
.ls1c_c00157{letter-spacing:0.142293pt;}
.ls36_c00157{letter-spacing:0.148480pt;}
.ls5_c00157{letter-spacing:0.154667pt;}
.ls30_c00157{letter-spacing:0.158080pt;}
.ls2a_c00157{letter-spacing:0.160853pt;}
.ls2_c00157{letter-spacing:0.179413pt;}
.ls39_c00157{letter-spacing:0.185600pt;}
.ls3c_c00157{letter-spacing:0.191787pt;}
.ls3a_c00157{letter-spacing:0.197973pt;}
.ls1a_c00157{letter-spacing:0.204160pt;}
.ls35_c00157{letter-spacing:0.210347pt;}
.lsb_c00157{letter-spacing:0.216533pt;}
.ls16_c00157{letter-spacing:0.228907pt;}
.ls28_c00157{letter-spacing:0.241280pt;}
.ls46_c00157{letter-spacing:0.261440pt;}
.ls2b_c00157{letter-spacing:0.278400pt;}
.ls7a_c00157{letter-spacing:0.284587pt;}
.ls23_c00157{letter-spacing:0.309333pt;}
.ls3e_c00157{letter-spacing:0.315520pt;}
.ls6f_c00157{letter-spacing:0.321707pt;}
.ls2f_c00157{letter-spacing:0.340267pt;}
.ls41_c00157{letter-spacing:0.371200pt;}
.ls3f_c00157{letter-spacing:0.389760pt;}
.ls18_c00157{letter-spacing:0.408320pt;}
.ls1_c00157{letter-spacing:0.425600pt;}
.ls1e_c00157{letter-spacing:0.426880pt;}
.ls12_c00157{letter-spacing:0.439253pt;}
.ls43_c00157{letter-spacing:0.457813pt;}
.ls19_c00157{letter-spacing:0.464000pt;}
.lsc_c00157{letter-spacing:0.482560pt;}
.ls2d_c00157{letter-spacing:0.488747pt;}
.ls3_c00157{letter-spacing:0.494933pt;}
.ls3b_c00157{letter-spacing:0.544427pt;}
.ls22_c00157{letter-spacing:0.569173pt;}
.lse_c00157{letter-spacing:0.575360pt;}
.ls0_c00157{letter-spacing:0.583680pt;}
.ls27_c00157{letter-spacing:0.600107pt;}
.ls34_c00157{letter-spacing:0.655787pt;}
.lsf_c00157{letter-spacing:0.674347pt;}
.ls14_c00157{letter-spacing:0.699093pt;}
.ls38_c00157{letter-spacing:0.742400pt;}
.lsa_c00157{letter-spacing:0.766080pt;}
.ls29_c00157{letter-spacing:0.785707pt;}
.ls7_c00157{letter-spacing:0.816640pt;}
.ls42_c00157{letter-spacing:0.845120pt;}
.ls1b_c00157{letter-spacing:0.847573pt;}
.ls21_c00157{letter-spacing:0.928000pt;}
.lsd_c00157{letter-spacing:0.983680pt;}
.ls8_c00157{letter-spacing:1.002240pt;}
.ls65_c00157{letter-spacing:1.070293pt;}
.ls32_c00157{letter-spacing:1.088853pt;}
.ls26_c00157{letter-spacing:1.212587pt;}
.ls48_c00157{letter-spacing:1.453867pt;}
.ls9_c00157{letter-spacing:1.684160pt;}
.ls13_c00157{letter-spacing:1.763200pt;}
.ls47_c00157{letter-spacing:1.924053pt;}
.ls10_c00157{letter-spacing:2.171520pt;}
.ls6_c00157{letter-spacing:2.567467pt;}
.ls45_c00157{letter-spacing:2.796373pt;}
.ls7d_c00157{letter-spacing:3.146667pt;}
.ws5_c00157{word-spacing:0.000000pt;}
.ws4_c00157{word-spacing:3.054933pt;}
.ws0_c00157{word-spacing:3.428267pt;}
.ws3_c00157{word-spacing:7.026133pt;}
.ws2_c00157{word-spacing:7.802453pt;}
.ws1_c00157{word-spacing:20.371413pt;}
._3_c00157{margin-left:-6.353707pt;}
._18_c00157{margin-left:-4.318293pt;}
._4_c00157{margin-left:-3.266560pt;}
._6_c00157{margin-left:-1.428267pt;}
._5_c00157{width:1.750827pt;}
._2_c00157{width:2.709760pt;}
._0_c00157{width:4.158720pt;}
._16_c00157{width:5.562240pt;}
._1_c00157{width:6.508373pt;}
._17_c00157{width:7.411627pt;}
._7_c00157{width:9.021867pt;}
._d_c00157{width:10.393600pt;}
._15_c00157{width:11.780480pt;}
._e_c00157{width:13.042560pt;}
._10_c00157{width:14.428373pt;}
._f_c00157{width:16.474027pt;}
._11_c00157{width:17.390720pt;}
._b_c00157{width:18.374400pt;}
._9_c00157{width:19.766400pt;}
._13_c00157{width:20.756267pt;}
._a_c00157{width:21.758507pt;}
._8_c00157{width:23.360853pt;}
._c_c00157{width:25.408640pt;}
._12_c00157{width:27.035733pt;}
._14_c00157{width:28.353493pt;}
.fs8_c00157{font-size:51.733333pt;}
.fs7_c00157{font-size:58.666667pt;}
.fs0_c00157{font-size:59.733333pt;}
.fs1_c00157{font-size:60.800000pt;}
.fs2_c00157{font-size:61.866667pt;}
.fs4_c00157{font-size:62.933333pt;}
.fs5_c00157{font-size:64.533333pt;}
.fs3_c00157{font-size:66.133333pt;}
.fs6_c00157{font-size:68.266667pt;}
.y0_c00157{bottom:0.000000pt;}
.y22_c00157{bottom:60.160005pt;}
.y21_c00157{bottom:182.080005pt;}
.y20_c00157{bottom:210.253339pt;}
.y1f_c00157{bottom:265.600005pt;}
.y1e_c00157{bottom:265.602672pt;}
.y1d_c00157{bottom:293.133339pt;}
.y1b_c00157{bottom:349.125872pt;}
.y1c_c00157{bottom:349.133339pt;}
.y1a_c00157{bottom:377.600005pt;}
.y19_c00157{bottom:433.935472pt;}
.y17_c00157{bottom:461.757872pt;}
.y18_c00157{bottom:461.760005pt;}
.y16_c00157{bottom:489.597872pt;}
.y14_c00157{bottom:517.450672pt;}
.y15_c00157{bottom:517.453339pt;}
.y13_c00157{bottom:545.600005pt;}
.y12_c00157{bottom:572.493339pt;}
.y11_c00157{bottom:572.499205pt;}
.yf_c00157{bottom:600.970672pt;}
.y10_c00157{bottom:600.973339pt;}
.ye_c00157{bottom:628.795205pt;}
.yd_c00157{bottom:656.635205pt;}
.yc_c00157{bottom:684.815472pt;}
.yb_c00157{bottom:712.315205pt;}
.ya_c00157{bottom:740.495472pt;}
.y9_c00157{bottom:768.320005pt;}
.y8_c00157{bottom:796.160005pt;}
.y7_c00157{bottom:824.000005pt;}
.y5_c00157{bottom:879.677872pt;}
.y6_c00157{bottom:879.680005pt;}
.y4_c00157{bottom:907.533339pt;}
.y3_c00157{bottom:962.893339pt;}
.y2_c00157{bottom:990.733339pt;}
.y1_c00157{bottom:1059.213339pt;}
.hb_c00157{height:50.773437pt;}
.h2_c00157{height:58.625000pt;}
.h3_c00157{height:60.718750pt;}
.h4_c00157{height:60.727283pt;}
.h5_c00157{height:60.729417pt;}
.ha_c00157{height:61.187500pt;}
.h8_c00157{height:63.335938pt;}
.h7_c00157{height:65.637500pt;}
.h9_c00157{height:67.000000pt;}
.h6_c00157{height:68.975000pt;}
.h1_c00157{height:1122.666667pt;}
.h0_c00157{height:1122.880005pt;}
.w1_c00157{width:793.333333pt;}
.w0_c00157{width:793.599999pt;}
.x0_c00157{left:0.000000pt;}
.x18_c00157{left:103.694399pt;}
.xc_c00157{left:104.686399pt;}
.xb_c00157{left:105.784532pt;}
.x8_c00157{left:106.909865pt;}
.x3_c00157{left:107.841599pt;}
.x1_c00157{left:109.053332pt;}
.x11_c00157{left:124.319999pt;}
.x1b_c00157{left:151.826665pt;}
.x7_c00157{left:155.026665pt;}
.x2_c00157{left:156.306665pt;}
.x5_c00157{left:215.506665pt;}
.x6_c00157{left:240.226665pt;}
.x21_c00157{left:278.346665pt;}
.x22_c00157{left:306.266665pt;}
.x23_c00157{left:325.693332pt;}
.x4_c00157{left:345.093332pt;}
.x16_c00157{left:357.399999pt;}
.x1c_c00157{left:373.959999pt;}
.xf_c00157{left:374.999999pt;}
.x17_c00157{left:378.026665pt;}
.x24_c00157{left:387.319999pt;}
.x10_c00157{left:395.493332pt;}
.x1d_c00157{left:404.346665pt;}
.xd_c00157{left:417.946665pt;}
.x12_c00157{left:430.333332pt;}
.xe_c00157{left:438.226665pt;}
.x13_c00157{left:449.573332pt;}
.x14_c00157{left:461.053332pt;}
.x9_c00157{left:464.479999pt;}
.xa_c00157{left:480.479999pt;}
.x15_c00157{left:484.333332pt;}
.x19_c00157{left:495.653332pt;}
.x1e_c00157{left:558.213332pt;}
.x1a_c00157{left:578.079999pt;}
.x1f_c00157{left:580.426665pt;}
.x20_c00157{left:611.373332pt;}
.x25_c00157{left:654.559999pt;}
}





/* 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_c00158 {
    display:none;
  }
  .loading-indicator_c00158.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00158 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_c00158 { 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_c00158" -> "#page-container .classname_c00158")
 */
.pf_c00158 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00158 { /* 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_c00158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00158 { /* 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_c00158 { /* 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_c00158 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00158 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00158 {overflow:visible;}
  }
}
.c_c00158 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00158 { /* 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_c00158:after { /* webkit #35443 */
  content: '';
}
.t_c00158:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00158 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 */
}
.__c00158 { /* 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_c00158 { /* info for Javascript */
  display:none;
}
.l_c00158 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00158 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00158 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00158: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_c00158 {
    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_c00158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00158.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_c00158 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00158;src:url('chunks/assets/font_2ae00335734877b026015dec.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.284668;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_c00158;src:url('chunks/assets/font_8bd956329b28dcaf5d22cd36.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.284180;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_c00158;src:url('chunks/assets/font_182f9ba067a71ba99ee1c8df.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:0.666000;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_c00158;src:url('chunks/assets/font_439a1508ffa8d3c1c5d69e9c.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;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;}
.m6_c00158{transform:matrix(0.155408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155408,0.000000,0.000000,0.250000,0,0);}
.md_c00158{transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);}
.mc_c00158{transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);}
.m7_c00158{transform:matrix(0.191998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191998,0.000000,0.000000,0.250000,0,0);}
.ma_c00158{transform:matrix(0.196171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196171,0.000000,0.000000,0.250000,0,0);}
.m9_c00158{transform:matrix(0.212285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212285,0.000000,0.000000,0.250000,0,0);}
.me_c00158{transform:matrix(0.223288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223288,0.000000,0.000000,0.250000,0,0);}
.m8_c00158{transform:matrix(0.225012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225012,0.000000,0.000000,0.250000,0,0);}
.m2_c00158{transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);}
.mf_c00158{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m3_c00158{transform:matrix(0.241779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241779,0.000000,0.000000,0.250000,0,0);}
.m5_c00158{transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);}
.m0_c00158{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m1_c00158{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);}
.m4_c00158{transform:matrix(0.258973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258973,0.000000,0.000000,0.250000,0,0);}
.mb_c00158{transform:matrix(0.303588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303588,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls84_c00158{letter-spacing:-2.604000px;}
.ls8c_c00158{letter-spacing:-2.562000px;}
.ls76_c00158{letter-spacing:-2.415000px;}
.ls75_c00158{letter-spacing:-2.373000px;}
.ls6a_c00158{letter-spacing:-2.352000px;}
.lsa6_c00158{letter-spacing:-1.972980px;}
.ls6e_c00158{letter-spacing:-1.891620px;}
.ls6d_c00158{letter-spacing:-1.796700px;}
.ls9d_c00158{letter-spacing:-1.572960px;}
.ls9a_c00158{letter-spacing:-1.417020px;}
.ls86_c00158{letter-spacing:-1.403460px;}
.lsa0_c00158{letter-spacing:-1.396680px;}
.ls71_c00158{letter-spacing:-1.301760px;}
.ls73_c00158{letter-spacing:-1.220400px;}
.ls74_c00158{letter-spacing:-1.071240px;}
.ls94_c00158{letter-spacing:-0.908520px;}
.ls6f_c00158{letter-spacing:-0.827160px;}
.ls78_c00158{letter-spacing:-0.806820px;}
.ls8e_c00158{letter-spacing:-0.739020px;}
.ls96_c00158{letter-spacing:-0.596640px;}
.ls77_c00158{letter-spacing:-0.569520px;}
.lsa4_c00158{letter-spacing:-0.549180px;}
.lsa2_c00158{letter-spacing:-0.528840px;}
.ls9f_c00158{letter-spacing:-0.515280px;}
.ls7d_c00158{letter-spacing:-0.501720px;}
.ls8f_c00158{letter-spacing:-0.447480px;}
.ls92_c00158{letter-spacing:-0.393240px;}
.ls6c_c00158{letter-spacing:-0.386460px;}
.lsa3_c00158{letter-spacing:-0.366120px;}
.ls99_c00158{letter-spacing:-0.359340px;}
.lsa1_c00158{letter-spacing:-0.352560px;}
.ls82_c00158{letter-spacing:-0.250860px;}
.ls88_c00158{letter-spacing:-0.223740px;}
.ls7e_c00158{letter-spacing:-0.216960px;}
.ls79_c00158{letter-spacing:-0.210180px;}
.ls85_c00158{letter-spacing:-0.203400px;}
.ls70_c00158{letter-spacing:-0.176280px;}
.ls72_c00158{letter-spacing:-0.135600px;}
.ls7a_c00158{letter-spacing:-0.115260px;}
.ls9c_c00158{letter-spacing:-0.094920px;}
.ls80_c00158{letter-spacing:-0.088140px;}
.ls81_c00158{letter-spacing:-0.067800px;}
.ls89_c00158{letter-spacing:-0.027120px;}
.ls87_c00158{letter-spacing:-0.013560px;}
.ls6b_c00158{letter-spacing:0.000000px;}
.ls23_c00158{letter-spacing:0.006780px;}
.ls1f_c00158{letter-spacing:0.020340px;}
.ls16_c00158{letter-spacing:0.033900px;}
.ls35_c00158{letter-spacing:0.040680px;}
.ls3_c00158{letter-spacing:0.061020px;}
.ls24_c00158{letter-spacing:0.081360px;}
.ls29_c00158{letter-spacing:0.115260px;}
.ls56_c00158{letter-spacing:0.135600px;}
.ls8_c00158{letter-spacing:0.155940px;}
.lsd_c00158{letter-spacing:0.162720px;}
.ls48_c00158{letter-spacing:0.210180px;}
.ls12_c00158{letter-spacing:0.216960px;}
.ls55_c00158{letter-spacing:0.223740px;}
.ls30_c00158{letter-spacing:0.244080px;}
.ls28_c00158{letter-spacing:0.264420px;}
.ls2f_c00158{letter-spacing:0.277980px;}
.ls4d_c00158{letter-spacing:0.298320px;}
.ls50_c00158{letter-spacing:0.305100px;}
.ls4_c00158{letter-spacing:0.311880px;}
.ls47_c00158{letter-spacing:0.318660px;}
.ls45_c00158{letter-spacing:0.325440px;}
.lsc_c00158{letter-spacing:0.339000px;}
.ls8b_c00158{letter-spacing:0.345780px;}
.ls59_c00158{letter-spacing:0.366120px;}
.ls4e_c00158{letter-spacing:0.379680px;}
.ls51_c00158{letter-spacing:0.386460px;}
.ls7_c00158{letter-spacing:0.393240px;}
.ls1b_c00158{letter-spacing:0.406800px;}
.ls1d_c00158{letter-spacing:0.413580px;}
.ls57_c00158{letter-spacing:0.420360px;}
.ls4a_c00158{letter-spacing:0.427140px;}
.ls3e_c00158{letter-spacing:0.433920px;}
.ls39_c00158{letter-spacing:0.440700px;}
.ls5c_c00158{letter-spacing:0.447480px;}
.ls22_c00158{letter-spacing:0.461040px;}
.ls21_c00158{letter-spacing:0.467820px;}
.ls3d_c00158{letter-spacing:0.474600px;}
.ls43_c00158{letter-spacing:0.481380px;}
.ls5a_c00158{letter-spacing:0.494940px;}
.ls33_c00158{letter-spacing:0.501720px;}
.ls4f_c00158{letter-spacing:0.508500px;}
.ls36_c00158{letter-spacing:0.522060px;}
.ls17_c00158{letter-spacing:0.528840px;}
.ls5d_c00158{letter-spacing:0.535620px;}
.ls7c_c00158{letter-spacing:0.542400px;}
.ls67_c00158{letter-spacing:0.549180px;}
.ls2d_c00158{letter-spacing:0.555960px;}
.ls32_c00158{letter-spacing:0.562740px;}
.ls98_c00158{letter-spacing:0.569520px;}
.ls5e_c00158{letter-spacing:0.576300px;}
.ls1a_c00158{letter-spacing:0.583080px;}
.ls26_c00158{letter-spacing:0.589860px;}
.ls97_c00158{letter-spacing:0.596640px;}
.ls2e_c00158{letter-spacing:0.610200px;}
.ls11_c00158{letter-spacing:0.644100px;}
.ls2_c00158{letter-spacing:0.671220px;}
.ls58_c00158{letter-spacing:0.678000px;}
.ls31_c00158{letter-spacing:0.691560px;}
.ls4c_c00158{letter-spacing:0.698340px;}
.ls7f_c00158{letter-spacing:0.705120px;}
.ls46_c00158{letter-spacing:0.711900px;}
.ls13_c00158{letter-spacing:0.718680px;}
.ls27_c00158{letter-spacing:0.732240px;}
.ls49_c00158{letter-spacing:0.739020px;}
.ls2a_c00158{letter-spacing:0.752580px;}
.ls3a_c00158{letter-spacing:0.766140px;}
.ls3b_c00158{letter-spacing:0.779700px;}
.lsf_c00158{letter-spacing:0.793260px;}
.ls95_c00158{letter-spacing:0.840720px;}
.ls64_c00158{letter-spacing:0.859140px;}
.ls9b_c00158{letter-spacing:0.867840px;}
.ls2c_c00158{letter-spacing:0.928860px;}
.ls90_c00158{letter-spacing:0.935640px;}
.ls2b_c00158{letter-spacing:0.942420px;}
.ls4b_c00158{letter-spacing:0.945720px;}
.ls61_c00158{letter-spacing:0.955980px;}
.lsb_c00158{letter-spacing:0.962760px;}
.ls9_c00158{letter-spacing:0.972360px;}
.ls0_c00158{letter-spacing:1.000500px;}
.ls8a_c00158{letter-spacing:1.010220px;}
.ls1e_c00158{letter-spacing:1.044120px;}
.ls19_c00158{letter-spacing:1.091580px;}
.ls1c_c00158{letter-spacing:1.111920px;}
.ls60_c00158{letter-spacing:1.138860px;}
.ls53_c00158{letter-spacing:1.179720px;}
.ls68_c00158{letter-spacing:1.240740px;}
.ls18_c00158{letter-spacing:1.247520px;}
.ls83_c00158{letter-spacing:1.254300px;}
.ls65_c00158{letter-spacing:1.267860px;}
.ls37_c00158{letter-spacing:1.281420px;}
.ls6_c00158{letter-spacing:1.294980px;}
.ls40_c00158{letter-spacing:1.301760px;}
.ls10_c00158{letter-spacing:1.325340px;}
.ls8d_c00158{letter-spacing:1.349220px;}
.ls3f_c00158{letter-spacing:1.369560px;}
.lsa_c00158{letter-spacing:1.371960px;}
.ls5b_c00158{letter-spacing:1.389900px;}
.lse_c00158{letter-spacing:1.438560px;}
.ls25_c00158{letter-spacing:1.444140px;}
.ls93_c00158{letter-spacing:1.451880px;}
.ls41_c00158{letter-spacing:1.471260px;}
.ls52_c00158{letter-spacing:1.478040px;}
.lsa5_c00158{letter-spacing:1.484820px;}
.ls63_c00158{letter-spacing:1.518480px;}
.ls3c_c00158{letter-spacing:1.566180px;}
.ls20_c00158{letter-spacing:1.586520px;}
.ls62_c00158{letter-spacing:1.674660px;}
.ls91_c00158{letter-spacing:1.695000px;}
.ls5_c00158{letter-spacing:1.735680px;}
.ls1_c00158{letter-spacing:1.780200px;}
.ls66_c00158{letter-spacing:1.932300px;}
.ls38_c00158{letter-spacing:2.081460px;}
.ls15_c00158{letter-spacing:2.135700px;}
.ls69_c00158{letter-spacing:2.156040px;}
.ls9e_c00158{letter-spacing:2.162820px;}
.ls44_c00158{letter-spacing:2.183160px;}
.ls14_c00158{letter-spacing:2.203500px;}
.ls54_c00158{letter-spacing:2.569620px;}
.ls34_c00158{letter-spacing:2.637420px;}
.ls42_c00158{letter-spacing:2.800140px;}
.ls5f_c00158{letter-spacing:2.969640px;}
.ls7b_c00158{letter-spacing:3.390000px;}
.sc__c00158{text-shadow:none;}
.sc0_c00158{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__c00158{-webkit-text-stroke:0px transparent;}
.sc0_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00158{word-spacing:-1.650300px;}
.ws4_c00158{word-spacing:0.000000px;}
.ws0_c00158{word-spacing:1.286640px;}
.ws1_c00158{word-spacing:2.855400px;}
.ws3_c00158{word-spacing:13.203660px;}
._1_c00158{margin-left:-7.828800px;}
._8_c00158{margin-left:-6.401640px;}
._9_c00158{margin-left:-5.044320px;}
._c_c00158{margin-left:-3.430680px;}
._0_c00158{margin-left:-2.380500px;}
._d_c00158{margin-left:-1.274640px;}
._7_c00158{width:1.158840px;}
._5_c00158{width:2.752680px;}
._3_c00158{width:4.148640px;}
._6_c00158{width:5.554260px;}
._2_c00158{width:7.580760px;}
._f_c00158{width:8.658060px;}
._4_c00158{width:9.661500px;}
._b_c00158{width:11.372940px;}
._a_c00158{width:12.392400px;}
._e_c00158{width:13.981800px;}
._10_c00158{width:15.572940px;}
._11_c00158{width:17.594100px;}
._19_c00158{width:19.747260px;}
._13_c00158{width:21.017280px;}
._12_c00158{width:24.752280px;}
._18_c00158{width:26.035200px;}
._15_c00158{width:29.289600px;}
._16_c00158{width:30.672720px;}
._17_c00158{width:31.716840px;}
._14_c00158{width:32.950800px;}
.fc0_c00158{color:transparent;}
.fs4_c00158{font-size:53.280000px;}
.fs7_c00158{font-size:58.200000px;}
.fs3_c00158{font-size:66.600000px;}
.fs0_c00158{font-size:67.200000px;}
.fs2_c00158{font-size:67.800000px;}
.fs1_c00158{font-size:69.000000px;}
.fs6_c00158{font-size:73.200000px;}
.fs5_c00158{font-size:74.400000px;}
.y0_c00158{bottom:0.000000px;}
.y1f_c00158{bottom:70.215000px;}
.y1e_c00158{bottom:146.880000px;}
.y1d_c00158{bottom:209.175000px;}
.y1c_c00158{bottom:271.455000px;}
.y1b_c00158{bottom:303.130950px;}
.y1a_c00158{bottom:334.454550px;}
.y19_c00158{bottom:365.422200px;}
.y18_c00158{bottom:395.998500px;}
.y17_c00158{bottom:427.695000px;}
.y16_c00158{bottom:489.975000px;}
.y15_c00158{bottom:489.975450px;}
.y14_c00158{bottom:521.655000px;}
.y13_c00158{bottom:585.358050px;}
.y12_c00158{bottom:616.325700px;}
.y11_c00158{bottom:647.649300px;}
.yf_c00158{bottom:678.586800px;}
.y10_c00158{bottom:678.600000px;}
.ye_c00158{bottom:709.927350px;}
.yc_c00158{bottom:740.884200px;}
.yd_c00158{bottom:740.895000px;}
.yb_c00158{bottom:772.190850px;}
.ya_c00158{bottom:803.514450px;}
.y9_c00158{bottom:834.857400px;}
.y8_c00158{bottom:866.520000px;}
.y7_c00158{bottom:929.175000px;}
.y6_c00158{bottom:960.495000px;}
.y4_c00158{bottom:1022.396100px;}
.y5_c00158{bottom:1022.400000px;}
.y3_c00158{bottom:1083.975450px;}
.y2_c00158{bottom:1115.655000px;}
.y1_c00158{bottom:1190.880000px;}
.h6_c00158{height:35.484480px;}
.he_c00158{height:57.120117px;}
.ha_c00158{height:65.331738px;}
.h2_c00158{height:65.953125px;}
.h4_c00158{height:66.541992px;}
.hb_c00158{height:66.547992px;}
.h9_c00158{height:66.549792px;}
.hc_c00158{height:66.558192px;}
.h3_c00158{height:67.686035px;}
.h5_c00158{height:67.719727px;}
.hd_c00158{height:70.713281px;}
.h8_c00158{height:71.841797px;}
.h7_c00158{height:77.596875px;}
.h1_c00158{height:1263.000000px;}
.h0_c00158{height:1263.240000px;}
.w1_c00158{width:892.500000px;}
.w0_c00158{width:892.800000px;}
.x0_c00158{left:0.000000px;}
.x1_c00158{left:116.205000px;}
.x8_c00158{left:117.219900px;}
.xe_c00158{left:158.685000px;}
.x1a_c00158{left:170.070000px;}
.x3_c00158{left:171.252600px;}
.xf_c00158{left:182.865000px;}
.x10_c00158{left:198.645000px;}
.x17_c00158{left:203.295000px;}
.x11_c00158{left:226.995000px;}
.x18_c00158{left:234.195000px;}
.x2_c00158{left:274.110000px;}
.x14_c00158{left:279.360000px;}
.x15_c00158{left:310.140000px;}
.x1b_c00158{left:418.170000px;}
.x4_c00158{left:444.780000px;}
.x19_c00158{left:457.860000px;}
.x9_c00158{left:514.920000px;}
.xa_c00158{left:560.025000px;}
.x16_c00158{left:591.375000px;}
.xb_c00158{left:628.575000px;}
.x12_c00158{left:631.830000px;}
.x6_c00158{left:637.590000px;}
.x5_c00158{left:638.775000px;}
.x13_c00158{left:656.760000px;}
.xc_c00158{left:658.110000px;}
.x7_c00158{left:671.580000px;}
.xd_c00158{left:681.330000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls84_c00158{letter-spacing:-2.314667pt;}
.ls8c_c00158{letter-spacing:-2.277333pt;}
.ls76_c00158{letter-spacing:-2.146667pt;}
.ls75_c00158{letter-spacing:-2.109333pt;}
.ls6a_c00158{letter-spacing:-2.090667pt;}
.lsa6_c00158{letter-spacing:-1.753760pt;}
.ls6e_c00158{letter-spacing:-1.681440pt;}
.ls6d_c00158{letter-spacing:-1.597067pt;}
.ls9d_c00158{letter-spacing:-1.398187pt;}
.ls9a_c00158{letter-spacing:-1.259573pt;}
.ls86_c00158{letter-spacing:-1.247520pt;}
.lsa0_c00158{letter-spacing:-1.241493pt;}
.ls71_c00158{letter-spacing:-1.157120pt;}
.ls73_c00158{letter-spacing:-1.084800pt;}
.ls74_c00158{letter-spacing:-0.952213pt;}
.ls94_c00158{letter-spacing:-0.807573pt;}
.ls6f_c00158{letter-spacing:-0.735253pt;}
.ls78_c00158{letter-spacing:-0.717173pt;}
.ls8e_c00158{letter-spacing:-0.656907pt;}
.ls96_c00158{letter-spacing:-0.530347pt;}
.ls77_c00158{letter-spacing:-0.506240pt;}
.lsa4_c00158{letter-spacing:-0.488160pt;}
.lsa2_c00158{letter-spacing:-0.470080pt;}
.ls9f_c00158{letter-spacing:-0.458027pt;}
.ls7d_c00158{letter-spacing:-0.445973pt;}
.ls8f_c00158{letter-spacing:-0.397760pt;}
.ls92_c00158{letter-spacing:-0.349547pt;}
.ls6c_c00158{letter-spacing:-0.343520pt;}
.lsa3_c00158{letter-spacing:-0.325440pt;}
.ls99_c00158{letter-spacing:-0.319413pt;}
.lsa1_c00158{letter-spacing:-0.313387pt;}
.ls82_c00158{letter-spacing:-0.222987pt;}
.ls88_c00158{letter-spacing:-0.198880pt;}
.ls7e_c00158{letter-spacing:-0.192853pt;}
.ls79_c00158{letter-spacing:-0.186827pt;}
.ls85_c00158{letter-spacing:-0.180800pt;}
.ls70_c00158{letter-spacing:-0.156693pt;}
.ls72_c00158{letter-spacing:-0.120533pt;}
.ls7a_c00158{letter-spacing:-0.102453pt;}
.ls9c_c00158{letter-spacing:-0.084373pt;}
.ls80_c00158{letter-spacing:-0.078347pt;}
.ls81_c00158{letter-spacing:-0.060267pt;}
.ls89_c00158{letter-spacing:-0.024107pt;}
.ls87_c00158{letter-spacing:-0.012053pt;}
.ls6b_c00158{letter-spacing:0.000000pt;}
.ls23_c00158{letter-spacing:0.006027pt;}
.ls1f_c00158{letter-spacing:0.018080pt;}
.ls16_c00158{letter-spacing:0.030133pt;}
.ls35_c00158{letter-spacing:0.036160pt;}
.ls3_c00158{letter-spacing:0.054240pt;}
.ls24_c00158{letter-spacing:0.072320pt;}
.ls29_c00158{letter-spacing:0.102453pt;}
.ls56_c00158{letter-spacing:0.120533pt;}
.ls8_c00158{letter-spacing:0.138613pt;}
.lsd_c00158{letter-spacing:0.144640pt;}
.ls48_c00158{letter-spacing:0.186827pt;}
.ls12_c00158{letter-spacing:0.192853pt;}
.ls55_c00158{letter-spacing:0.198880pt;}
.ls30_c00158{letter-spacing:0.216960pt;}
.ls28_c00158{letter-spacing:0.235040pt;}
.ls2f_c00158{letter-spacing:0.247093pt;}
.ls4d_c00158{letter-spacing:0.265173pt;}
.ls50_c00158{letter-spacing:0.271200pt;}
.ls4_c00158{letter-spacing:0.277227pt;}
.ls47_c00158{letter-spacing:0.283253pt;}
.ls45_c00158{letter-spacing:0.289280pt;}
.lsc_c00158{letter-spacing:0.301333pt;}
.ls8b_c00158{letter-spacing:0.307360pt;}
.ls59_c00158{letter-spacing:0.325440pt;}
.ls4e_c00158{letter-spacing:0.337493pt;}
.ls51_c00158{letter-spacing:0.343520pt;}
.ls7_c00158{letter-spacing:0.349547pt;}
.ls1b_c00158{letter-spacing:0.361600pt;}
.ls1d_c00158{letter-spacing:0.367627pt;}
.ls57_c00158{letter-spacing:0.373653pt;}
.ls4a_c00158{letter-spacing:0.379680pt;}
.ls3e_c00158{letter-spacing:0.385707pt;}
.ls39_c00158{letter-spacing:0.391733pt;}
.ls5c_c00158{letter-spacing:0.397760pt;}
.ls22_c00158{letter-spacing:0.409813pt;}
.ls21_c00158{letter-spacing:0.415840pt;}
.ls3d_c00158{letter-spacing:0.421867pt;}
.ls43_c00158{letter-spacing:0.427893pt;}
.ls5a_c00158{letter-spacing:0.439947pt;}
.ls33_c00158{letter-spacing:0.445973pt;}
.ls4f_c00158{letter-spacing:0.452000pt;}
.ls36_c00158{letter-spacing:0.464053pt;}
.ls17_c00158{letter-spacing:0.470080pt;}
.ls5d_c00158{letter-spacing:0.476107pt;}
.ls7c_c00158{letter-spacing:0.482133pt;}
.ls67_c00158{letter-spacing:0.488160pt;}
.ls2d_c00158{letter-spacing:0.494187pt;}
.ls32_c00158{letter-spacing:0.500213pt;}
.ls98_c00158{letter-spacing:0.506240pt;}
.ls5e_c00158{letter-spacing:0.512267pt;}
.ls1a_c00158{letter-spacing:0.518293pt;}
.ls26_c00158{letter-spacing:0.524320pt;}
.ls97_c00158{letter-spacing:0.530347pt;}
.ls2e_c00158{letter-spacing:0.542400pt;}
.ls11_c00158{letter-spacing:0.572533pt;}
.ls2_c00158{letter-spacing:0.596640pt;}
.ls58_c00158{letter-spacing:0.602667pt;}
.ls31_c00158{letter-spacing:0.614720pt;}
.ls4c_c00158{letter-spacing:0.620747pt;}
.ls7f_c00158{letter-spacing:0.626773pt;}
.ls46_c00158{letter-spacing:0.632800pt;}
.ls13_c00158{letter-spacing:0.638827pt;}
.ls27_c00158{letter-spacing:0.650880pt;}
.ls49_c00158{letter-spacing:0.656907pt;}
.ls2a_c00158{letter-spacing:0.668960pt;}
.ls3a_c00158{letter-spacing:0.681013pt;}
.ls3b_c00158{letter-spacing:0.693067pt;}
.lsf_c00158{letter-spacing:0.705120pt;}
.ls95_c00158{letter-spacing:0.747307pt;}
.ls64_c00158{letter-spacing:0.763680pt;}
.ls9b_c00158{letter-spacing:0.771413pt;}
.ls2c_c00158{letter-spacing:0.825653pt;}
.ls90_c00158{letter-spacing:0.831680pt;}
.ls2b_c00158{letter-spacing:0.837707pt;}
.ls4b_c00158{letter-spacing:0.840640pt;}
.ls61_c00158{letter-spacing:0.849760pt;}
.lsb_c00158{letter-spacing:0.855787pt;}
.ls9_c00158{letter-spacing:0.864320pt;}
.ls0_c00158{letter-spacing:0.889333pt;}
.ls8a_c00158{letter-spacing:0.897973pt;}
.ls1e_c00158{letter-spacing:0.928107pt;}
.ls19_c00158{letter-spacing:0.970293pt;}
.ls1c_c00158{letter-spacing:0.988373pt;}
.ls60_c00158{letter-spacing:1.012320pt;}
.ls53_c00158{letter-spacing:1.048640pt;}
.ls68_c00158{letter-spacing:1.102880pt;}
.ls18_c00158{letter-spacing:1.108907pt;}
.ls83_c00158{letter-spacing:1.114933pt;}
.ls65_c00158{letter-spacing:1.126987pt;}
.ls37_c00158{letter-spacing:1.139040pt;}
.ls6_c00158{letter-spacing:1.151093pt;}
.ls40_c00158{letter-spacing:1.157120pt;}
.ls10_c00158{letter-spacing:1.178080pt;}
.ls8d_c00158{letter-spacing:1.199307pt;}
.ls3f_c00158{letter-spacing:1.217387pt;}
.lsa_c00158{letter-spacing:1.219520pt;}
.ls5b_c00158{letter-spacing:1.235467pt;}
.lse_c00158{letter-spacing:1.278720pt;}
.ls25_c00158{letter-spacing:1.283680pt;}
.ls93_c00158{letter-spacing:1.290560pt;}
.ls41_c00158{letter-spacing:1.307787pt;}
.ls52_c00158{letter-spacing:1.313813pt;}
.lsa5_c00158{letter-spacing:1.319840pt;}
.ls63_c00158{letter-spacing:1.349760pt;}
.ls3c_c00158{letter-spacing:1.392160pt;}
.ls20_c00158{letter-spacing:1.410240pt;}
.ls62_c00158{letter-spacing:1.488587pt;}
.ls91_c00158{letter-spacing:1.506667pt;}
.ls5_c00158{letter-spacing:1.542827pt;}
.ls1_c00158{letter-spacing:1.582400pt;}
.ls66_c00158{letter-spacing:1.717600pt;}
.ls38_c00158{letter-spacing:1.850187pt;}
.ls15_c00158{letter-spacing:1.898400pt;}
.ls69_c00158{letter-spacing:1.916480pt;}
.ls9e_c00158{letter-spacing:1.922507pt;}
.ls44_c00158{letter-spacing:1.940587pt;}
.ls14_c00158{letter-spacing:1.958667pt;}
.ls54_c00158{letter-spacing:2.284107pt;}
.ls34_c00158{letter-spacing:2.344373pt;}
.ls42_c00158{letter-spacing:2.489013pt;}
.ls5f_c00158{letter-spacing:2.639680pt;}
.ls7b_c00158{letter-spacing:3.013333pt;}
.ws2_c00158{word-spacing:-1.466933pt;}
.ws4_c00158{word-spacing:0.000000pt;}
.ws0_c00158{word-spacing:1.143680pt;}
.ws1_c00158{word-spacing:2.538133pt;}
.ws3_c00158{word-spacing:11.736587pt;}
._1_c00158{margin-left:-6.958933pt;}
._8_c00158{margin-left:-5.690347pt;}
._9_c00158{margin-left:-4.483840pt;}
._c_c00158{margin-left:-3.049493pt;}
._0_c00158{margin-left:-2.116000pt;}
._d_c00158{margin-left:-1.133013pt;}
._7_c00158{width:1.030080pt;}
._5_c00158{width:2.446827pt;}
._3_c00158{width:3.687680pt;}
._6_c00158{width:4.937120pt;}
._2_c00158{width:6.738453pt;}
._f_c00158{width:7.696053pt;}
._4_c00158{width:8.588000pt;}
._b_c00158{width:10.109280pt;}
._a_c00158{width:11.015467pt;}
._e_c00158{width:12.428267pt;}
._10_c00158{width:13.842613pt;}
._11_c00158{width:15.639200pt;}
._19_c00158{width:17.553120pt;}
._13_c00158{width:18.682027pt;}
._12_c00158{width:22.002027pt;}
._18_c00158{width:23.142400pt;}
._15_c00158{width:26.035200pt;}
._16_c00158{width:27.264640pt;}
._17_c00158{width:28.192747pt;}
._14_c00158{width:29.289600pt;}
.fs4_c00158{font-size:47.360000pt;}
.fs7_c00158{font-size:51.733333pt;}
.fs3_c00158{font-size:59.200000pt;}
.fs0_c00158{font-size:59.733333pt;}
.fs2_c00158{font-size:60.266667pt;}
.fs1_c00158{font-size:61.333333pt;}
.fs6_c00158{font-size:65.066667pt;}
.fs5_c00158{font-size:66.133333pt;}
.y0_c00158{bottom:0.000000pt;}
.y1f_c00158{bottom:62.413333pt;}
.y1e_c00158{bottom:130.560000pt;}
.y1d_c00158{bottom:185.933333pt;}
.y1c_c00158{bottom:241.293333pt;}
.y1b_c00158{bottom:269.449733pt;}
.y1a_c00158{bottom:297.292933pt;}
.y19_c00158{bottom:324.819733pt;}
.y18_c00158{bottom:351.998667pt;}
.y17_c00158{bottom:380.173333pt;}
.y16_c00158{bottom:435.533333pt;}
.y15_c00158{bottom:435.533733pt;}
.y14_c00158{bottom:463.693333pt;}
.y13_c00158{bottom:520.318267pt;}
.y12_c00158{bottom:547.845067pt;}
.y11_c00158{bottom:575.688267pt;}
.yf_c00158{bottom:603.188267pt;}
.y10_c00158{bottom:603.200000pt;}
.ye_c00158{bottom:631.046533pt;}
.yc_c00158{bottom:658.563733pt;}
.yd_c00158{bottom:658.573333pt;}
.yb_c00158{bottom:686.391867pt;}
.ya_c00158{bottom:714.235067pt;}
.y9_c00158{bottom:742.095467pt;}
.y8_c00158{bottom:770.240000pt;}
.y7_c00158{bottom:825.933333pt;}
.y6_c00158{bottom:853.773333pt;}
.y4_c00158{bottom:908.796533pt;}
.y5_c00158{bottom:908.800000pt;}
.y3_c00158{bottom:963.533733pt;}
.y2_c00158{bottom:991.693333pt;}
.y1_c00158{bottom:1058.560000pt;}
.h6_c00158{height:31.541760pt;}
.he_c00158{height:50.773437pt;}
.ha_c00158{height:58.072656pt;}
.h2_c00158{height:58.625000pt;}
.h4_c00158{height:59.148438pt;}
.hb_c00158{height:59.153771pt;}
.h9_c00158{height:59.155371pt;}
.hc_c00158{height:59.162838pt;}
.h3_c00158{height:60.165365pt;}
.h5_c00158{height:60.195312pt;}
.hd_c00158{height:62.856250pt;}
.h8_c00158{height:63.859375pt;}
.h7_c00158{height:68.975000pt;}
.h1_c00158{height:1122.666667pt;}
.h0_c00158{height:1122.880000pt;}
.w1_c00158{width:793.333333pt;}
.w0_c00158{width:793.600000pt;}
.x0_c00158{left:0.000000pt;}
.x1_c00158{left:103.293333pt;}
.x8_c00158{left:104.195467pt;}
.xe_c00158{left:141.053333pt;}
.x1a_c00158{left:151.173333pt;}
.x3_c00158{left:152.224533pt;}
.xf_c00158{left:162.546667pt;}
.x10_c00158{left:176.573333pt;}
.x17_c00158{left:180.706667pt;}
.x11_c00158{left:201.773333pt;}
.x18_c00158{left:208.173333pt;}
.x2_c00158{left:243.653333pt;}
.x14_c00158{left:248.320000pt;}
.x15_c00158{left:275.680000pt;}
.x1b_c00158{left:371.706667pt;}
.x4_c00158{left:395.360000pt;}
.x19_c00158{left:406.986667pt;}
.x9_c00158{left:457.706667pt;}
.xa_c00158{left:497.800000pt;}
.x16_c00158{left:525.666667pt;}
.xb_c00158{left:558.733333pt;}
.x12_c00158{left:561.626667pt;}
.x6_c00158{left:566.746667pt;}
.x5_c00158{left:567.800000pt;}
.x13_c00158{left:583.786667pt;}
.xc_c00158{left:584.986667pt;}
.x7_c00158{left:596.960000pt;}
.xd_c00158{left:605.626667pt;}
}





/* 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_c00159 {
    display:none;
  }
  .loading-indicator_c00159.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00159 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_c00159 { 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_c00159" -> "#page-container .classname_c00159")
 */
.pf_c00159 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00159 { /* 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_c00159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00159 { /* 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_c00159 { /* 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_c00159 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00159 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00159 {overflow:visible;}
  }
}
.c_c00159 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00159 { /* 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_c00159:after { /* webkit #35443 */
  content: '';
}
.t_c00159:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00159 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 */
}
.__c00159 { /* 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_c00159 { /* info for Javascript */
  display:none;
}
.l_c00159 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00159 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00159 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00159: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_c00159 {
    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_c00159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00159.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_c00159 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00159;src:url('chunks/assets/font_de0726dde6fb2d9d90b66ad1.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.284668;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_c00159;src:url('chunks/assets/font_548a13cb9349d61da85bcebb.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;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_c00159;src:url('chunks/assets/font_5535fb261387f593aedf0cb7.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.284180;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;}
.m9_c00159{transform:matrix(0.235526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235526,0.000000,0.000000,0.250000,0,0);}
.m2_c00159{transform:matrix(0.238657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238657,0.000000,0.000000,0.250000,0,0);}
.m4_c00159{transform:matrix(0.241933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241933,0.000000,0.000000,0.250000,0,0);}
.m3_c00159{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m0_c00159{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m7_c00159{transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);}
.m8_c00159{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m5_c00159{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m6_c00159{transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{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);}
.v0_c00159{vertical-align:0.000000px;}
.ls4c_c00159{letter-spacing:-3.234000px;}
.ls7b_c00159{letter-spacing:-2.688000px;}
.ls68_c00159{letter-spacing:-2.436000px;}
.ls59_c00159{letter-spacing:-2.373000px;}
.ls42_c00159{letter-spacing:-2.352000px;}
.ls7c_c00159{letter-spacing:-2.350080px;}
.ls87_c00159{letter-spacing:-2.255040px;}
.ls80_c00159{letter-spacing:-2.234160px;}
.ls85_c00159{letter-spacing:-2.136720px;}
.ls61_c00159{letter-spacing:-2.025360px;}
.ls89_c00159{letter-spacing:-1.948800px;}
.ls56_c00159{letter-spacing:-1.823520px;}
.ls84_c00159{letter-spacing:-1.774800px;}
.ls4b_c00159{letter-spacing:-1.649520px;}
.ls83_c00159{letter-spacing:-1.600800px;}
.ls7e_c00159{letter-spacing:-1.545120px;}
.ls55_c00159{letter-spacing:-1.531200px;}
.ls76_c00159{letter-spacing:-1.426800px;}
.ls5c_c00159{letter-spacing:-1.343280px;}
.ls71_c00159{letter-spacing:-1.169280px;}
.ls88_c00159{letter-spacing:-1.078800px;}
.ls48_c00159{letter-spacing:-1.064880px;}
.ls7a_c00159{letter-spacing:-0.974400px;}
.ls8a_c00159{letter-spacing:-0.958440px;}
.ls7f_c00159{letter-spacing:-0.932640px;}
.ls75_c00159{letter-spacing:-0.904800px;}
.ls86_c00159{letter-spacing:-0.828240px;}
.ls4d_c00159{letter-spacing:-0.793440px;}
.ls63_c00159{letter-spacing:-0.779520px;}
.ls60_c00159{letter-spacing:-0.758640px;}
.ls5e_c00159{letter-spacing:-0.626400px;}
.ls5b_c00159{letter-spacing:-0.570720px;}
.ls64_c00159{letter-spacing:-0.556800px;}
.ls79_c00159{letter-spacing:-0.549840px;}
.ls6e_c00159{letter-spacing:-0.508080px;}
.ls4e_c00159{letter-spacing:-0.501120px;}
.ls69_c00159{letter-spacing:-0.480240px;}
.ls7d_c00159{letter-spacing:-0.473280px;}
.ls4a_c00159{letter-spacing:-0.452400px;}
.ls5f_c00159{letter-spacing:-0.431520px;}
.ls54_c00159{letter-spacing:-0.424560px;}
.ls73_c00159{letter-spacing:-0.396720px;}
.ls44_c00159{letter-spacing:-0.382800px;}
.ls5d_c00159{letter-spacing:-0.375840px;}
.ls6b_c00159{letter-spacing:-0.361920px;}
.ls77_c00159{letter-spacing:-0.334080px;}
.ls70_c00159{letter-spacing:-0.278400px;}
.ls81_c00159{letter-spacing:-0.271440px;}
.ls74_c00159{letter-spacing:-0.264480px;}
.ls58_c00159{letter-spacing:-0.250560px;}
.ls65_c00159{letter-spacing:-0.243600px;}
.ls50_c00159{letter-spacing:-0.236640px;}
.ls47_c00159{letter-spacing:-0.229680px;}
.ls49_c00159{letter-spacing:-0.208800px;}
.ls78_c00159{letter-spacing:-0.194880px;}
.ls82_c00159{letter-spacing:-0.187920px;}
.ls4f_c00159{letter-spacing:-0.180960px;}
.ls6d_c00159{letter-spacing:-0.174000px;}
.ls57_c00159{letter-spacing:-0.167040px;}
.ls52_c00159{letter-spacing:-0.160080px;}
.ls67_c00159{letter-spacing:-0.104400px;}
.ls53_c00159{letter-spacing:-0.097440px;}
.ls51_c00159{letter-spacing:-0.090480px;}
.ls62_c00159{letter-spacing:-0.083520px;}
.ls72_c00159{letter-spacing:-0.069600px;}
.ls6c_c00159{letter-spacing:-0.055680px;}
.ls66_c00159{letter-spacing:-0.048720px;}
.ls45_c00159{letter-spacing:-0.027840px;}
.ls6f_c00159{letter-spacing:-0.020880px;}
.ls43_c00159{letter-spacing:-0.006960px;}
.ls46_c00159{letter-spacing:0.000000px;}
.ls18_c00159{letter-spacing:0.013920px;}
.ls38_c00159{letter-spacing:0.020880px;}
.ls2c_c00159{letter-spacing:0.027840px;}
.ls3e_c00159{letter-spacing:0.034800px;}
.ls3a_c00159{letter-spacing:0.055680px;}
.ls1_c00159{letter-spacing:0.062640px;}
.lsc_c00159{letter-spacing:0.069600px;}
.ls5a_c00159{letter-spacing:0.076560px;}
.ls37_c00159{letter-spacing:0.083520px;}
.ls2a_c00159{letter-spacing:0.090480px;}
.ls24_c00159{letter-spacing:0.097440px;}
.ls3f_c00159{letter-spacing:0.104400px;}
.ls11_c00159{letter-spacing:0.118320px;}
.ls6a_c00159{letter-spacing:0.125280px;}
.ls4_c00159{letter-spacing:0.132240px;}
.ls10_c00159{letter-spacing:0.153120px;}
.ls8_c00159{letter-spacing:0.160080px;}
.ls9_c00159{letter-spacing:0.167040px;}
.ls15_c00159{letter-spacing:0.174000px;}
.ls13_c00159{letter-spacing:0.194880px;}
.ls35_c00159{letter-spacing:0.222720px;}
.ls36_c00159{letter-spacing:0.236640px;}
.ls14_c00159{letter-spacing:0.257520px;}
.ls2b_c00159{letter-spacing:0.271440px;}
.ls1b_c00159{letter-spacing:0.278400px;}
.lse_c00159{letter-spacing:0.292320px;}
.lsf_c00159{letter-spacing:0.306240px;}
.ls1d_c00159{letter-spacing:0.320160px;}
.ls1c_c00159{letter-spacing:0.334080px;}
.ls0_c00159{letter-spacing:0.341040px;}
.ls19_c00159{letter-spacing:0.348000px;}
.ls16_c00159{letter-spacing:0.354960px;}
.ls33_c00159{letter-spacing:0.361920px;}
.ls2e_c00159{letter-spacing:0.382800px;}
.ls7_c00159{letter-spacing:0.389760px;}
.ls6_c00159{letter-spacing:0.396720px;}
.ls3_c00159{letter-spacing:0.403680px;}
.ls1a_c00159{letter-spacing:0.452400px;}
.ls27_c00159{letter-spacing:0.473280px;}
.ls17_c00159{letter-spacing:0.480240px;}
.ls34_c00159{letter-spacing:0.501120px;}
.ls3b_c00159{letter-spacing:0.515040px;}
.ls2_c00159{letter-spacing:0.528960px;}
.ls1f_c00159{letter-spacing:0.535920px;}
.ls40_c00159{letter-spacing:0.576300px;}
.ls26_c00159{letter-spacing:0.577680px;}
.ls23_c00159{letter-spacing:0.591600px;}
.ls25_c00159{letter-spacing:0.640320px;}
.ls31_c00159{letter-spacing:0.709920px;}
.ls28_c00159{letter-spacing:0.730800px;}
.ls21_c00159{letter-spacing:0.744720px;}
.lsb_c00159{letter-spacing:0.765600px;}
.ls3c_c00159{letter-spacing:0.779520px;}
.ls29_c00159{letter-spacing:0.814320px;}
.ls2d_c00159{letter-spacing:0.870000px;}
.ls12_c00159{letter-spacing:0.925680px;}
.ls41_c00159{letter-spacing:0.989880px;}
.ls2f_c00159{letter-spacing:1.002240px;}
.lsa_c00159{letter-spacing:1.057680px;}
.ls30_c00159{letter-spacing:1.211040px;}
.ls3d_c00159{letter-spacing:1.392000px;}
.ls1e_c00159{letter-spacing:1.447680px;}
.ls20_c00159{letter-spacing:1.705200px;}
.lsd_c00159{letter-spacing:1.733040px;}
.ls5_c00159{letter-spacing:1.983600px;}
.ls32_c00159{letter-spacing:2.164560px;}
.ls22_c00159{letter-spacing:2.679600px;}
.ls39_c00159{letter-spacing:2.888400px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{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__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00159{word-spacing:0.000000px;}
._15_c00159{margin-left:-7.617600px;}
._10_c00159{margin-left:-4.732800px;}
._0_c00159{margin-left:-2.867520px;}
._11_c00159{margin-left:-1.459920px;}
._1_c00159{width:2.150640px;}
._e_c00159{width:3.751440px;}
._d_c00159{width:5.380800px;}
._2_c00159{width:6.841680px;}
._f_c00159{width:8.079840px;}
._7_c00159{width:9.361200px;}
._9_c00159{width:10.557600px;}
._a_c00159{width:11.616720px;}
._12_c00159{width:12.750720px;}
._8_c00159{width:13.968720px;}
._13_c00159{width:15.618240px;}
._14_c00159{width:17.353200px;}
._16_c00159{width:18.972960px;}
._b_c00159{width:20.142240px;}
._c_c00159{width:22.202400px;}
._18_c00159{width:23.476080px;}
._17_c00159{width:25.619760px;}
._4_c00159{width:28.995360px;}
._6_c00159{width:30.380400px;}
._3_c00159{width:31.793280px;}
._5_c00159{width:35.920560px;}
.fc0_c00159{color:transparent;}
.fs5_c00159{font-size:58.800000px;}
.fs0_c00159{font-size:67.200000px;}
.fs3_c00159{font-size:67.800000px;}
.fs1_c00159{font-size:69.600000px;}
.fs4_c00159{font-size:76.800000px;}
.fs2_c00159{font-size:92.400000px;}
.y0_c00159{bottom:0.000000px;}
.y1e_c00159{bottom:73.455000px;}
.y1d_c00159{bottom:181.440000px;}
.y1b_c00159{bottom:243.729600px;}
.y1c_c00159{bottom:243.735000px;}
.y1a_c00159{bottom:306.735000px;}
.y19_c00159{bottom:306.740400px;}
.y18_c00159{bottom:337.695000px;}
.y17_c00159{bottom:401.415000px;}
.y16_c00159{bottom:432.735000px;}
.y15_c00159{bottom:464.037600px;}
.y14_c00159{bottom:495.357600px;}
.y13_c00159{bottom:526.695000px;}
.y12_c00159{bottom:557.997600px;}
.y11_c00159{bottom:589.335000px;}
.y10_c00159{bottom:589.337400px;}
.yf_c00159{bottom:620.657400px;}
.ye_c00159{bottom:683.284200px;}
.yd_c00159{bottom:745.941600px;}
.yc_c00159{bottom:809.284200px;}
.yb_c00159{bottom:840.969600px;}
.ya_c00159{bottom:872.655000px;}
.y9_c00159{bottom:872.668200px;}
.y8_c00159{bottom:903.622800px;}
.y7_c00159{bottom:934.942800px;}
.y6_c00159{bottom:965.883000px;}
.y5_c00159{bottom:996.855000px;}
.y4_c00159{bottom:996.867000px;}
.y3_c00159{bottom:1059.141600px;}
.y2_c00159{bottom:1122.495000px;}
.y1_c00159{bottom:1197.720000px;}
.h8_c00159{height:57.708984px;}
.h2_c00159{height:65.953125px;}
.h3_c00159{height:68.308594px;}
.h6_c00159{height:68.351794px;}
.h5_c00159{height:70.713281px;}
.h7_c00159{height:75.337500px;}
.h4_c00159{height:96.370313px;}
.h1_c00159{height:1263.000000px;}
.h0_c00159{height:1263.240000px;}
.w1_c00159{width:892.500000px;}
.w0_c00159{width:892.800000px;}
.x0_c00159{left:0.000000px;}
.x9_c00159{left:119.128800px;}
.x5_c00159{left:120.762600px;}
.x1_c00159{left:123.045000px;}
.x11_c00159{left:173.086200px;}
.x8_c00159{left:174.420000px;}
.x2_c00159{left:176.316600px;}
.xa_c00159{left:214.680000px;}
.x10_c00159{left:240.285000px;}
.xb_c00159{left:260.490000px;}
.xe_c00159{left:329.745000px;}
.xc_c00159{left:356.610000px;}
.xd_c00159{left:378.555000px;}
.x12_c00159{left:397.605000px;}
.xf_c00159{left:411.015000px;}
.x16_c00159{left:423.570000px;}
.x13_c00159{left:425.655000px;}
.x14_c00159{left:450.525000px;}
.x15_c00159{left:478.920000px;}
.x3_c00159{left:594.060000px;}
.x4_c00159{left:632.340000px;}
.x6_c00159{left:646.020000px;}
.x7_c00159{left:663.300000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls4c_c00159{letter-spacing:-2.874667pt;}
.ls7b_c00159{letter-spacing:-2.389333pt;}
.ls68_c00159{letter-spacing:-2.165333pt;}
.ls59_c00159{letter-spacing:-2.109333pt;}
.ls42_c00159{letter-spacing:-2.090667pt;}
.ls7c_c00159{letter-spacing:-2.088960pt;}
.ls87_c00159{letter-spacing:-2.004480pt;}
.ls80_c00159{letter-spacing:-1.985920pt;}
.ls85_c00159{letter-spacing:-1.899307pt;}
.ls61_c00159{letter-spacing:-1.800320pt;}
.ls89_c00159{letter-spacing:-1.732267pt;}
.ls56_c00159{letter-spacing:-1.620907pt;}
.ls84_c00159{letter-spacing:-1.577600pt;}
.ls4b_c00159{letter-spacing:-1.466240pt;}
.ls83_c00159{letter-spacing:-1.422933pt;}
.ls7e_c00159{letter-spacing:-1.373440pt;}
.ls55_c00159{letter-spacing:-1.361067pt;}
.ls76_c00159{letter-spacing:-1.268267pt;}
.ls5c_c00159{letter-spacing:-1.194027pt;}
.ls71_c00159{letter-spacing:-1.039360pt;}
.ls88_c00159{letter-spacing:-0.958933pt;}
.ls48_c00159{letter-spacing:-0.946560pt;}
.ls7a_c00159{letter-spacing:-0.866133pt;}
.ls8a_c00159{letter-spacing:-0.851947pt;}
.ls7f_c00159{letter-spacing:-0.829013pt;}
.ls75_c00159{letter-spacing:-0.804267pt;}
.ls86_c00159{letter-spacing:-0.736213pt;}
.ls4d_c00159{letter-spacing:-0.705280pt;}
.ls63_c00159{letter-spacing:-0.692907pt;}
.ls60_c00159{letter-spacing:-0.674347pt;}
.ls5e_c00159{letter-spacing:-0.556800pt;}
.ls5b_c00159{letter-spacing:-0.507307pt;}
.ls64_c00159{letter-spacing:-0.494933pt;}
.ls79_c00159{letter-spacing:-0.488747pt;}
.ls6e_c00159{letter-spacing:-0.451627pt;}
.ls4e_c00159{letter-spacing:-0.445440pt;}
.ls69_c00159{letter-spacing:-0.426880pt;}
.ls7d_c00159{letter-spacing:-0.420693pt;}
.ls4a_c00159{letter-spacing:-0.402133pt;}
.ls5f_c00159{letter-spacing:-0.383573pt;}
.ls54_c00159{letter-spacing:-0.377387pt;}
.ls73_c00159{letter-spacing:-0.352640pt;}
.ls44_c00159{letter-spacing:-0.340267pt;}
.ls5d_c00159{letter-spacing:-0.334080pt;}
.ls6b_c00159{letter-spacing:-0.321707pt;}
.ls77_c00159{letter-spacing:-0.296960pt;}
.ls70_c00159{letter-spacing:-0.247467pt;}
.ls81_c00159{letter-spacing:-0.241280pt;}
.ls74_c00159{letter-spacing:-0.235093pt;}
.ls58_c00159{letter-spacing:-0.222720pt;}
.ls65_c00159{letter-spacing:-0.216533pt;}
.ls50_c00159{letter-spacing:-0.210347pt;}
.ls47_c00159{letter-spacing:-0.204160pt;}
.ls49_c00159{letter-spacing:-0.185600pt;}
.ls78_c00159{letter-spacing:-0.173227pt;}
.ls82_c00159{letter-spacing:-0.167040pt;}
.ls4f_c00159{letter-spacing:-0.160853pt;}
.ls6d_c00159{letter-spacing:-0.154667pt;}
.ls57_c00159{letter-spacing:-0.148480pt;}
.ls52_c00159{letter-spacing:-0.142293pt;}
.ls67_c00159{letter-spacing:-0.092800pt;}
.ls53_c00159{letter-spacing:-0.086613pt;}
.ls51_c00159{letter-spacing:-0.080427pt;}
.ls62_c00159{letter-spacing:-0.074240pt;}
.ls72_c00159{letter-spacing:-0.061867pt;}
.ls6c_c00159{letter-spacing:-0.049493pt;}
.ls66_c00159{letter-spacing:-0.043307pt;}
.ls45_c00159{letter-spacing:-0.024747pt;}
.ls6f_c00159{letter-spacing:-0.018560pt;}
.ls43_c00159{letter-spacing:-0.006187pt;}
.ls46_c00159{letter-spacing:0.000000pt;}
.ls18_c00159{letter-spacing:0.012373pt;}
.ls38_c00159{letter-spacing:0.018560pt;}
.ls2c_c00159{letter-spacing:0.024747pt;}
.ls3e_c00159{letter-spacing:0.030933pt;}
.ls3a_c00159{letter-spacing:0.049493pt;}
.ls1_c00159{letter-spacing:0.055680pt;}
.lsc_c00159{letter-spacing:0.061867pt;}
.ls5a_c00159{letter-spacing:0.068053pt;}
.ls37_c00159{letter-spacing:0.074240pt;}
.ls2a_c00159{letter-spacing:0.080427pt;}
.ls24_c00159{letter-spacing:0.086613pt;}
.ls3f_c00159{letter-spacing:0.092800pt;}
.ls11_c00159{letter-spacing:0.105173pt;}
.ls6a_c00159{letter-spacing:0.111360pt;}
.ls4_c00159{letter-spacing:0.117547pt;}
.ls10_c00159{letter-spacing:0.136107pt;}
.ls8_c00159{letter-spacing:0.142293pt;}
.ls9_c00159{letter-spacing:0.148480pt;}
.ls15_c00159{letter-spacing:0.154667pt;}
.ls13_c00159{letter-spacing:0.173227pt;}
.ls35_c00159{letter-spacing:0.197973pt;}
.ls36_c00159{letter-spacing:0.210347pt;}
.ls14_c00159{letter-spacing:0.228907pt;}
.ls2b_c00159{letter-spacing:0.241280pt;}
.ls1b_c00159{letter-spacing:0.247467pt;}
.lse_c00159{letter-spacing:0.259840pt;}
.lsf_c00159{letter-spacing:0.272213pt;}
.ls1d_c00159{letter-spacing:0.284587pt;}
.ls1c_c00159{letter-spacing:0.296960pt;}
.ls0_c00159{letter-spacing:0.303147pt;}
.ls19_c00159{letter-spacing:0.309333pt;}
.ls16_c00159{letter-spacing:0.315520pt;}
.ls33_c00159{letter-spacing:0.321707pt;}
.ls2e_c00159{letter-spacing:0.340267pt;}
.ls7_c00159{letter-spacing:0.346453pt;}
.ls6_c00159{letter-spacing:0.352640pt;}
.ls3_c00159{letter-spacing:0.358827pt;}
.ls1a_c00159{letter-spacing:0.402133pt;}
.ls27_c00159{letter-spacing:0.420693pt;}
.ls17_c00159{letter-spacing:0.426880pt;}
.ls34_c00159{letter-spacing:0.445440pt;}
.ls3b_c00159{letter-spacing:0.457813pt;}
.ls2_c00159{letter-spacing:0.470187pt;}
.ls1f_c00159{letter-spacing:0.476373pt;}
.ls40_c00159{letter-spacing:0.512267pt;}
.ls26_c00159{letter-spacing:0.513493pt;}
.ls23_c00159{letter-spacing:0.525867pt;}
.ls25_c00159{letter-spacing:0.569173pt;}
.ls31_c00159{letter-spacing:0.631040pt;}
.ls28_c00159{letter-spacing:0.649600pt;}
.ls21_c00159{letter-spacing:0.661973pt;}
.lsb_c00159{letter-spacing:0.680533pt;}
.ls3c_c00159{letter-spacing:0.692907pt;}
.ls29_c00159{letter-spacing:0.723840pt;}
.ls2d_c00159{letter-spacing:0.773333pt;}
.ls12_c00159{letter-spacing:0.822827pt;}
.ls41_c00159{letter-spacing:0.879893pt;}
.ls2f_c00159{letter-spacing:0.890880pt;}
.lsa_c00159{letter-spacing:0.940160pt;}
.ls30_c00159{letter-spacing:1.076480pt;}
.ls3d_c00159{letter-spacing:1.237333pt;}
.ls1e_c00159{letter-spacing:1.286827pt;}
.ls20_c00159{letter-spacing:1.515733pt;}
.lsd_c00159{letter-spacing:1.540480pt;}
.ls5_c00159{letter-spacing:1.763200pt;}
.ls32_c00159{letter-spacing:1.924053pt;}
.ls22_c00159{letter-spacing:2.381867pt;}
.ls39_c00159{letter-spacing:2.567467pt;}
.ws0_c00159{word-spacing:0.000000pt;}
._15_c00159{margin-left:-6.771200pt;}
._10_c00159{margin-left:-4.206933pt;}
._0_c00159{margin-left:-2.548907pt;}
._11_c00159{margin-left:-1.297707pt;}
._1_c00159{width:1.911680pt;}
._e_c00159{width:3.334613pt;}
._d_c00159{width:4.782933pt;}
._2_c00159{width:6.081493pt;}
._f_c00159{width:7.182080pt;}
._7_c00159{width:8.321067pt;}
._9_c00159{width:9.384533pt;}
._a_c00159{width:10.325973pt;}
._12_c00159{width:11.333973pt;}
._8_c00159{width:12.416640pt;}
._13_c00159{width:13.882880pt;}
._14_c00159{width:15.425067pt;}
._16_c00159{width:16.864853pt;}
._b_c00159{width:17.904213pt;}
._c_c00159{width:19.735467pt;}
._18_c00159{width:20.867627pt;}
._17_c00159{width:22.773120pt;}
._4_c00159{width:25.773653pt;}
._6_c00159{width:27.004800pt;}
._3_c00159{width:28.260693pt;}
._5_c00159{width:31.929387pt;}
.fs5_c00159{font-size:52.266667pt;}
.fs0_c00159{font-size:59.733333pt;}
.fs3_c00159{font-size:60.266667pt;}
.fs1_c00159{font-size:61.866667pt;}
.fs4_c00159{font-size:68.266667pt;}
.fs2_c00159{font-size:82.133333pt;}
.y0_c00159{bottom:0.000000pt;}
.y1e_c00159{bottom:65.293333pt;}
.y1d_c00159{bottom:161.280000pt;}
.y1b_c00159{bottom:216.648533pt;}
.y1c_c00159{bottom:216.653333pt;}
.y1a_c00159{bottom:272.653333pt;}
.y19_c00159{bottom:272.658133pt;}
.y18_c00159{bottom:300.173333pt;}
.y17_c00159{bottom:356.813333pt;}
.y16_c00159{bottom:384.653333pt;}
.y15_c00159{bottom:412.477867pt;}
.y14_c00159{bottom:440.317867pt;}
.y13_c00159{bottom:468.173333pt;}
.y12_c00159{bottom:495.997867pt;}
.y11_c00159{bottom:523.853333pt;}
.y10_c00159{bottom:523.855467pt;}
.yf_c00159{bottom:551.695467pt;}
.ye_c00159{bottom:607.363733pt;}
.yd_c00159{bottom:663.059200pt;}
.yc_c00159{bottom:719.363733pt;}
.yb_c00159{bottom:747.528533pt;}
.ya_c00159{bottom:775.693333pt;}
.y9_c00159{bottom:775.705067pt;}
.y8_c00159{bottom:803.220267pt;}
.y7_c00159{bottom:831.060267pt;}
.y6_c00159{bottom:858.562667pt;}
.y5_c00159{bottom:886.093333pt;}
.y4_c00159{bottom:886.104000pt;}
.y3_c00159{bottom:941.459200pt;}
.y2_c00159{bottom:997.773333pt;}
.y1_c00159{bottom:1064.640000pt;}
.h8_c00159{height:51.296875pt;}
.h2_c00159{height:58.625000pt;}
.h3_c00159{height:60.718750pt;}
.h6_c00159{height:60.757150pt;}
.h5_c00159{height:62.856250pt;}
.h7_c00159{height:66.966667pt;}
.h4_c00159{height:85.662500pt;}
.h1_c00159{height:1122.666667pt;}
.h0_c00159{height:1122.880000pt;}
.w1_c00159{width:793.333333pt;}
.w0_c00159{width:793.600000pt;}
.x0_c00159{left:0.000000pt;}
.x9_c00159{left:105.892267pt;}
.x5_c00159{left:107.344533pt;}
.x1_c00159{left:109.373333pt;}
.x11_c00159{left:153.854400pt;}
.x8_c00159{left:155.040000pt;}
.x2_c00159{left:156.725867pt;}
.xa_c00159{left:190.826667pt;}
.x10_c00159{left:213.586667pt;}
.xb_c00159{left:231.546667pt;}
.xe_c00159{left:293.106667pt;}
.xc_c00159{left:316.986667pt;}
.xd_c00159{left:336.493333pt;}
.x12_c00159{left:353.426667pt;}
.xf_c00159{left:365.346667pt;}
.x16_c00159{left:376.506667pt;}
.x13_c00159{left:378.360000pt;}
.x14_c00159{left:400.466667pt;}
.x15_c00159{left:425.706667pt;}
.x3_c00159{left:528.053333pt;}
.x4_c00159{left:562.080000pt;}
.x6_c00159{left:574.240000pt;}
.x7_c00159{left:589.600000pt;}
}





/* 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_c00160 {
    display:none;
  }
  .loading-indicator_c00160.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00160 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_c00160 { 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_c00160" -> "#page-container .classname_c00160")
 */
.pf_c00160 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00160 { /* 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_c00160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00160 { /* 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_c00160 { /* 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_c00160 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00160 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00160 {overflow:visible;}
  }
}
.c_c00160 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00160 { /* 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_c00160:after { /* webkit #35443 */
  content: '';
}
.t_c00160:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00160 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 */
}
.__c00160 { /* 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_c00160 { /* info for Javascript */
  display:none;
}
.l_c00160 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00160 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00160 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00160: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_c00160 {
    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_c00160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00160.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_c00160 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00160;src:url('chunks/assets/font_8f4a1c15780c90ce31597ad5.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.284668;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_c00160;src:url('chunks/assets/font_bd4d1040e0bd5d8358c33946.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:0.666000;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_c00160;src:url('chunks/assets/font_ac47258b1a76a08d3d768f53.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;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:ff4_c00160;src:url('chunks/assets/font_777095c5bc1d10130ef05fb4.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:1.284180;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_c00160;src:url('chunks/assets/font_7dc83c4fe385d83278e269ad.woff2')format("woff");}.ff5_c00160{font-family:ff5_c00160;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00160{transform:matrix(0.110881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110881,0.000000,0.000000,0.250000,0,0);}
.m4_c00160{transform:matrix(0.123867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123867,0.000000,0.000000,0.250000,0,0);}
.m2_c00160{transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);}
.m5_c00160{transform:matrix(0.248129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248129,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{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);}
.m3_c00160{transform:matrix(0.259435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259435,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.lsf_c00160{letter-spacing:-2.520000px;}
.ls6_c00160{letter-spacing:-2.289000px;}
.ls10_c00160{letter-spacing:-2.247000px;}
.ls8_c00160{letter-spacing:-2.111520px;}
.lsb_c00160{letter-spacing:-0.073440px;}
.ls7_c00160{letter-spacing:0.000000px;}
.ls9_c00160{letter-spacing:0.616920px;}
.lsa_c00160{letter-spacing:0.680520px;}
.ls5_c00160{letter-spacing:0.731400px;}
.lsd_c00160{letter-spacing:0.795000px;}
.lsc_c00160{letter-spacing:0.807720px;}
.ls2_c00160{letter-spacing:0.871320px;}
.ls3_c00160{letter-spacing:0.890400px;}
.ls0_c00160{letter-spacing:1.049400px;}
.ls4_c00160{letter-spacing:1.265640px;}
.ls1_c00160{letter-spacing:1.291080px;}
.lse_c00160{letter-spacing:3.120000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{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__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00160{word-spacing:-2.747520px;}
.ws2_c00160{word-spacing:-2.149680px;}
.ws3_c00160{word-spacing:-0.928560px;}
.ws4_c00160{word-spacing:0.000000px;}
.ws0_c00160{word-spacing:4.566480px;}
._0_c00160{margin-left:-1.762560px;}
.fc0_c00160{color:transparent;}
.fs3_c00160{font-size:37.200000px;}
.fs2_c00160{font-size:49.800000px;}
.fs5_c00160{font-size:60.000000px;}
.fs1_c00160{font-size:60.480000px;}
.fs6_c00160{font-size:61.200000px;}
.fs7_c00160{font-size:62.400000px;}
.fs4_c00160{font-size:63.600000px;}
.fsa_c00160{font-size:64.200000px;}
.fs0_c00160{font-size:65.400000px;}
.fs8_c00160{font-size:72.000000px;}
.fs9_c00160{font-size:111.600000px;}
.y0_c00160{bottom:0.000000px;}
.y7_c00160{bottom:149.035506px;}
.yb_c00160{bottom:150.120006px;}
.y6_c00160{bottom:167.400006px;}
.ya_c00160{bottom:168.489606px;}
.y5_c00160{bottom:417.615006px;}
.y4_c00160{bottom:426.255006px;}
.y3_c00160{bottom:433.800006px;}
.y2_c00160{bottom:453.615006px;}
.yf_c00160{bottom:489.255006px;}
.ye_c00160{bottom:531.015006px;}
.y8_c00160{bottom:756.720006px;}
.y9_c00160{bottom:907.935006px;}
.yd_c00160{bottom:1078.215006px;}
.y1_c00160{bottom:1079.640006px;}
.yc_c00160{bottom:1145.520006px;}
.h5_c00160{height:38.798438px;}
.h3_c00160{height:40.279680px;}
.h4_c00160{height:48.875977px;}
.h7_c00160{height:58.886719px;}
.h6_c00160{height:62.388867px;}
.h9_c00160{height:62.410467px;}
.h8_c00160{height:62.419922px;}
.ha_c00160{height:62.887500px;}
.hd_c00160{height:63.008789px;}
.h2_c00160{height:64.186523px;}
.hb_c00160{height:70.664062px;}
.hc_c00160{height:109.529297px;}
.h1_c00160{height:1263.000000px;}
.h0_c00160{height:1263.240006px;}
.w1_c00160{width:892.500000px;}
.w0_c00160{width:892.799998px;}
.x0_c00160{left:0.000000px;}
.x1_c00160{left:116.759999px;}
.x5_c00160{left:118.385398px;}
.x4_c00160{left:120.674998px;}
.x3_c00160{left:146.399998px;}
.x2_c00160{left:149.309999px;}
.x6_c00160{left:303.314999px;}
.x7_c00160{left:359.834998px;}
.x8_c00160{left:384.684598px;}
.x9_c00160{left:680.309999px;}
.xb_c00160{left:727.679999px;}
.xc_c00160{left:740.789999px;}
.xa_c00160{left:793.499999px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.lsf_c00160{letter-spacing:-2.240000pt;}
.ls6_c00160{letter-spacing:-2.034667pt;}
.ls10_c00160{letter-spacing:-1.997333pt;}
.ls8_c00160{letter-spacing:-1.876907pt;}
.lsb_c00160{letter-spacing:-0.065280pt;}
.ls7_c00160{letter-spacing:0.000000pt;}
.ls9_c00160{letter-spacing:0.548373pt;}
.lsa_c00160{letter-spacing:0.604907pt;}
.ls5_c00160{letter-spacing:0.650133pt;}
.lsd_c00160{letter-spacing:0.706667pt;}
.lsc_c00160{letter-spacing:0.717973pt;}
.ls2_c00160{letter-spacing:0.774507pt;}
.ls3_c00160{letter-spacing:0.791467pt;}
.ls0_c00160{letter-spacing:0.932800pt;}
.ls4_c00160{letter-spacing:1.125013pt;}
.ls1_c00160{letter-spacing:1.147627pt;}
.lse_c00160{letter-spacing:2.773333pt;}
.ws1_c00160{word-spacing:-2.442240pt;}
.ws2_c00160{word-spacing:-1.910827pt;}
.ws3_c00160{word-spacing:-0.825387pt;}
.ws4_c00160{word-spacing:0.000000pt;}
.ws0_c00160{word-spacing:4.059093pt;}
._0_c00160{margin-left:-1.566720pt;}
.fs3_c00160{font-size:33.066667pt;}
.fs2_c00160{font-size:44.266667pt;}
.fs5_c00160{font-size:53.333333pt;}
.fs1_c00160{font-size:53.760000pt;}
.fs6_c00160{font-size:54.400000pt;}
.fs7_c00160{font-size:55.466667pt;}
.fs4_c00160{font-size:56.533333pt;}
.fsa_c00160{font-size:57.066667pt;}
.fs0_c00160{font-size:58.133333pt;}
.fs8_c00160{font-size:64.000000pt;}
.fs9_c00160{font-size:99.200000pt;}
.y0_c00160{bottom:0.000000pt;}
.y7_c00160{bottom:132.476005pt;}
.yb_c00160{bottom:133.440005pt;}
.y6_c00160{bottom:148.800005pt;}
.ya_c00160{bottom:149.768539pt;}
.y5_c00160{bottom:371.213339pt;}
.y4_c00160{bottom:378.893339pt;}
.y3_c00160{bottom:385.600005pt;}
.y2_c00160{bottom:403.213339pt;}
.yf_c00160{bottom:434.893339pt;}
.ye_c00160{bottom:472.013339pt;}
.y8_c00160{bottom:672.640005pt;}
.y9_c00160{bottom:807.053339pt;}
.yd_c00160{bottom:958.413339pt;}
.y1_c00160{bottom:959.680005pt;}
.yc_c00160{bottom:1018.240005pt;}
.h5_c00160{height:34.487500pt;}
.h3_c00160{height:35.804160pt;}
.h4_c00160{height:43.445313pt;}
.h7_c00160{height:52.343750pt;}
.h6_c00160{height:55.456771pt;}
.h9_c00160{height:55.475971pt;}
.h8_c00160{height:55.484375pt;}
.ha_c00160{height:55.900000pt;}
.hd_c00160{height:56.007812pt;}
.h2_c00160{height:57.054688pt;}
.hb_c00160{height:62.812500pt;}
.hc_c00160{height:97.359375pt;}
.h1_c00160{height:1122.666667pt;}
.h0_c00160{height:1122.880005pt;}
.w1_c00160{width:793.333333pt;}
.w0_c00160{width:793.599999pt;}
.x0_c00160{left:0.000000pt;}
.x1_c00160{left:103.786665pt;}
.x5_c00160{left:105.231465pt;}
.x4_c00160{left:107.266665pt;}
.x3_c00160{left:130.133332pt;}
.x2_c00160{left:132.719999pt;}
.x6_c00160{left:269.613332pt;}
.x7_c00160{left:319.853332pt;}
.x8_c00160{left:341.941865pt;}
.x9_c00160{left:604.719999pt;}
.xb_c00160{left:646.826665pt;}
.xc_c00160{left:658.479999pt;}
.xa_c00160{left:705.333332pt;}
}





/* 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_c00161 {
    display:none;
  }
  .loading-indicator_c00161.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00161 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_c00161 { 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_c00161" -> "#page-container .classname_c00161")
 */
.pf_c00161 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00161 { /* 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_c00161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00161 { /* 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_c00161 { /* 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_c00161 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00161 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00161 {overflow:visible;}
  }
}
.c_c00161 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00161 { /* 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_c00161:after { /* webkit #35443 */
  content: '';
}
.t_c00161:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00161 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 */
}
.__c00161 { /* 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_c00161 { /* info for Javascript */
  display:none;
}
.l_c00161 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00161 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00161 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00161: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_c00161 {
    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_c00161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00161.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_c00161 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00161;src:url('chunks/assets/font_5a3ee389f30f03b5d4ac0f4a.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.284668;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_c00161;src:url('chunks/assets/font_38fa0feb3695f896f2d65176.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:0.666000;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_c00161;src:url('chunks/assets/font_9186ca139ab30736ded990e0.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;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:ff4_c00161;src:url('chunks/assets/font_2790c79d4ffbb2c480357f7e.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:1.284180;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_c00161{transform:matrix(0.129252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129252,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);}
.m2_c00161{transform:matrix(0.221116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221116,0.000000,0.000000,0.250000,0,0);}
.m0_c00161{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);}
.m3_c00161{transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);}
.m5_c00161{transform:matrix(0.358807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358807,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.v1_c00161{vertical-align:74.857200px;}
.ls8_c00161{letter-spacing:-3.612021px;}
.lse_c00161{letter-spacing:-2.415000px;}
.ls9_c00161{letter-spacing:-1.392840px;}
.ls7_c00161{letter-spacing:0.000000px;}
.ls6_c00161{letter-spacing:0.546960px;}
.lsa_c00161{letter-spacing:0.616920px;}
.ls4_c00161{letter-spacing:0.871320px;}
.ls5_c00161{letter-spacing:0.890400px;}
.ls3_c00161{letter-spacing:0.941280px;}
.lsc_c00161{letter-spacing:0.985800px;}
.ls2_c00161{letter-spacing:1.049400px;}
.ls0_c00161{letter-spacing:1.214760px;}
.ls1_c00161{letter-spacing:1.291080px;}
.lsb_c00161{letter-spacing:1.952520px;}
.lsd_c00161{letter-spacing:3.210000px;}
.lsf_c00161{letter-spacing:4.320000px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{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__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00161{word-spacing:-2.149680px;}
.ws1_c00161{word-spacing:-1.348320px;}
.ws4_c00161{word-spacing:0.000000px;}
.ws3_c00161{word-spacing:0.483360px;}
.ws0_c00161{word-spacing:1.691760px;}
._1_c00161{margin-left:-4.134000px;}
._0_c00161{width:362.768040px;}
.fc0_c00161{color:transparent;}
.fs2_c00161{font-size:31.200000px;}
.fs4_c00161{font-size:35.400600px;}
.fs9_c00161{font-size:58.800000px;}
.fs0_c00161{font-size:63.000000px;}
.fs5_c00161{font-size:63.600000px;}
.fs6_c00161{font-size:64.200000px;}
.fs7_c00161{font-size:69.000000px;}
.fs1_c00161{font-size:80.640000px;}
.fs8_c00161{font-size:86.400000px;}
.fs3_c00161{font-size:103.200600px;}
.y0_c00161{bottom:0.000000px;}
.y8_c00161{bottom:149.395506px;}
.y7_c00161{bottom:167.760006px;}
.y6_c00161{bottom:416.535006px;}
.y5_c00161{bottom:424.455006px;}
.y4_c00161{bottom:447.135006px;}
.y3_c00161{bottom:867.255006px;}
.y2_c00161{bottom:875.160006px;}
.yd_c00161{bottom:883.095006px;}
.y1_c00161{bottom:898.575006px;}
.yc_c00161{bottom:901.800006px;}
.yb_c00161{bottom:919.800006px;}
.ya_c00161{bottom:1077.480006px;}
.y9_c00161{bottom:1145.520006px;}
.h4_c00161{height:32.540625px;}
.h6_c00161{height:36.921720px;}
.h3_c00161{height:53.706240px;}
.hc_c00161{height:57.708984px;}
.h2_c00161{height:61.831055px;}
.h7_c00161{height:62.388867px;}
.h9_c00161{height:63.008789px;}
.ha_c00161{height:67.719727px;}
.hb_c00161{height:90.112500px;}
.h5_c00161{height:107.635001px;}
.h8_c00161{height:137.246067px;}
.h1_c00161{height:1263.000000px;}
.h0_c00161{height:1263.240006px;}
.w1_c00161{width:892.500000px;}
.w0_c00161{width:892.799998px;}
.x0_c00161{left:0.000000px;}
.x6_c00161{left:116.225398px;}
.x5_c00161{left:118.514999px;}
.x4_c00161{left:154.619998px;}
.x3_c00161{left:157.949998px;}
.x2_c00161{left:167.039998px;}
.x1_c00161{left:170.189998px;}
.x7_c00161{left:382.916098px;}
.x8_c00161{left:682.109998px;}
.xc_c00161{left:735.944999px;}
.xb_c00161{left:741.794999px;}
.x9_c00161{left:755.099999px;}
.xa_c00161{left:795.659999px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.v1_c00161{vertical-align:66.539733pt;}
.ls8_c00161{letter-spacing:-3.210685pt;}
.lse_c00161{letter-spacing:-2.146667pt;}
.ls9_c00161{letter-spacing:-1.238080pt;}
.ls7_c00161{letter-spacing:0.000000pt;}
.ls6_c00161{letter-spacing:0.486187pt;}
.lsa_c00161{letter-spacing:0.548373pt;}
.ls4_c00161{letter-spacing:0.774507pt;}
.ls5_c00161{letter-spacing:0.791467pt;}
.ls3_c00161{letter-spacing:0.836693pt;}
.lsc_c00161{letter-spacing:0.876267pt;}
.ls2_c00161{letter-spacing:0.932800pt;}
.ls0_c00161{letter-spacing:1.079787pt;}
.ls1_c00161{letter-spacing:1.147627pt;}
.lsb_c00161{letter-spacing:1.735573pt;}
.lsd_c00161{letter-spacing:2.853333pt;}
.lsf_c00161{letter-spacing:3.840000pt;}
.ws2_c00161{word-spacing:-1.910827pt;}
.ws1_c00161{word-spacing:-1.198507pt;}
.ws4_c00161{word-spacing:0.000000pt;}
.ws3_c00161{word-spacing:0.429653pt;}
.ws0_c00161{word-spacing:1.503787pt;}
._1_c00161{margin-left:-3.674667pt;}
._0_c00161{width:322.460480pt;}
.fs2_c00161{font-size:27.733333pt;}
.fs4_c00161{font-size:31.467200pt;}
.fs9_c00161{font-size:52.266667pt;}
.fs0_c00161{font-size:56.000000pt;}
.fs5_c00161{font-size:56.533333pt;}
.fs6_c00161{font-size:57.066667pt;}
.fs7_c00161{font-size:61.333333pt;}
.fs1_c00161{font-size:71.680000pt;}
.fs8_c00161{font-size:76.800000pt;}
.fs3_c00161{font-size:91.733867pt;}
.y0_c00161{bottom:0.000000pt;}
.y8_c00161{bottom:132.796005pt;}
.y7_c00161{bottom:149.120005pt;}
.y6_c00161{bottom:370.253339pt;}
.y5_c00161{bottom:377.293339pt;}
.y4_c00161{bottom:397.453339pt;}
.y3_c00161{bottom:770.893339pt;}
.y2_c00161{bottom:777.920005pt;}
.yd_c00161{bottom:784.973339pt;}
.y1_c00161{bottom:798.733339pt;}
.yc_c00161{bottom:801.600005pt;}
.yb_c00161{bottom:817.600005pt;}
.ya_c00161{bottom:957.760005pt;}
.y9_c00161{bottom:1018.240005pt;}
.h4_c00161{height:28.925000pt;}
.h6_c00161{height:32.819306pt;}
.h3_c00161{height:47.738880pt;}
.hc_c00161{height:51.296875pt;}
.h2_c00161{height:54.960938pt;}
.h7_c00161{height:55.456771pt;}
.h9_c00161{height:56.007812pt;}
.ha_c00161{height:60.195312pt;}
.hb_c00161{height:80.100000pt;}
.h5_c00161{height:95.675556pt;}
.h8_c00161{height:121.996504pt;}
.h1_c00161{height:1122.666667pt;}
.h0_c00161{height:1122.880005pt;}
.w1_c00161{width:793.333333pt;}
.w0_c00161{width:793.599999pt;}
.x0_c00161{left:0.000000pt;}
.x6_c00161{left:103.311465pt;}
.x5_c00161{left:105.346665pt;}
.x4_c00161{left:137.439999pt;}
.x3_c00161{left:140.399999pt;}
.x2_c00161{left:148.479999pt;}
.x1_c00161{left:151.279999pt;}
.x7_c00161{left:340.369865pt;}
.x8_c00161{left:606.319999pt;}
.xc_c00161{left:654.173332pt;}
.xb_c00161{left:659.373332pt;}
.x9_c00161{left:671.199999pt;}
.xa_c00161{left:707.253332pt;}
}





/* 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_c00162 {
    display:none;
  }
  .loading-indicator_c00162.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00162 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_c00162 { 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_c00162" -> "#page-container .classname_c00162")
 */
.pf_c00162 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00162 { /* 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_c00162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00162 { /* 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_c00162 { /* 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_c00162 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00162 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00162 {overflow:visible;}
  }
}
.c_c00162 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00162 { /* 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_c00162:after { /* webkit #35443 */
  content: '';
}
.t_c00162:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00162 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 */
}
.__c00162 { /* 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_c00162 { /* info for Javascript */
  display:none;
}
.l_c00162 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00162 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00162 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00162: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_c00162 {
    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_c00162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00162.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_c00162 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00162;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;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:ff2_c00162;src:url('chunks/assets/font_5db8df7a4abc6105140cb452.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.284180;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_c00162;src:url('chunks/assets/font_4e71ebfda5aa2c1cff76a9ef.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.311035;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_c00162;src:url('chunks/assets/font_d8f2a6b38c2f971973b5b08d.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;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:ff5_c00162;src:url('chunks/assets/font_2e7f00bbc411d1273f0de048.woff2')format("woff");}.ff5_c00162{font-family:ff5_c00162;line-height:1.284668;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;}
.m5_c00162{transform:matrix(0.113012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113012,0.000000,0.000000,0.250000,0,0);}
.m4_c00162{transform:matrix(0.119663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119663,0.000000,0.000000,0.250000,0,0);}
.m0_c00162{transform:matrix(0.130610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130610,0.000000,0.000000,0.250000,0,0);}
.m2_c00162{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m1_c00162{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);}
.m3_c00162{transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls10_c00162{letter-spacing:-13.902021px;}
.lsa_c00162{letter-spacing:-11.046000px;}
.ls6_c00162{letter-spacing:-2.394000px;}
.lsf_c00162{letter-spacing:-2.121000px;}
.ls7_c00162{letter-spacing:-1.087680px;}
.ls9_c00162{letter-spacing:-0.222480px;}
.lsb_c00162{letter-spacing:0.580920px;}
.ls2_c00162{letter-spacing:0.766320px;}
.ls3_c00162{letter-spacing:0.784860px;}
.ls8_c00162{letter-spacing:0.828120px;}
.lsc_c00162{letter-spacing:0.889920px;}
.ls5_c00162{letter-spacing:0.951720px;}
.ls4_c00162{letter-spacing:1.180380px;}
.ls0_c00162{letter-spacing:1.266900px;}
.ls1_c00162{letter-spacing:2.008500px;}
.lse_c00162{letter-spacing:2.750100px;}
.lsd_c00162{letter-spacing:3.090000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{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__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00162{word-spacing:-3.337200px;}
.ws4_c00162{word-spacing:0.000000px;}
.ws2_c00162{word-spacing:0.271920px;}
.ws3_c00162{word-spacing:2.694480px;}
.ws0_c00162{word-spacing:3.609120px;}
._0_c00162{margin-left:-1.205100px;}
._1_c00162{width:1.254540px;}
.fc0_c00162{color:transparent;}
.fs3_c00162{font-size:60.600000px;}
.fs1_c00162{font-size:61.800000px;}
.fs0_c00162{font-size:68.400000px;}
.fs2_c00162{font-size:315.600000px;}
.fs4_c00162{font-size:397.200600px;}
.y0_c00162{bottom:0.000000px;}
.y3_c00162{bottom:145.445400px;}
.y6_c00162{bottom:146.525400px;}
.y2_c00162{bottom:163.800000px;}
.y5_c00162{bottom:164.880000px;}
.y4_c00162{bottom:909.720000px;}
.y9_c00162{bottom:983.520000px;}
.y8_c00162{bottom:1077.135000px;}
.y1_c00162{bottom:1079.295000px;}
.y7_c00162{bottom:1143.720000px;}
.h6_c00162{height:59.475586px;}
.h3_c00162{height:60.623145px;}
.h4_c00162{height:62.282813px;}
.h2_c00162{height:71.339063px;}
.h5_c00162{height:329.160938px;}
.h7_c00162{height:389.830667px;}
.h1_c00162{height:1263.000000px;}
.h0_c00162{height:1263.240000px;}
.w1_c00162{width:892.500000px;}
.w0_c00162{width:892.800000px;}
.x0_c00162{left:0.000000px;}
.x2_c00162{left:115.169250px;}
.x1_c00162{left:116.430000px;}
.x4_c00162{left:382.275000px;}
.x3_c00162{left:387.300000px;}
.x5_c00162{left:667.725000px;}
.x6_c00162{left:741.300000px;}
.x7_c00162{left:789.600000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls10_c00162{letter-spacing:-12.357352pt;}
.lsa_c00162{letter-spacing:-9.818667pt;}
.ls6_c00162{letter-spacing:-2.128000pt;}
.lsf_c00162{letter-spacing:-1.885333pt;}
.ls7_c00162{letter-spacing:-0.966827pt;}
.ls9_c00162{letter-spacing:-0.197760pt;}
.lsb_c00162{letter-spacing:0.516373pt;}
.ls2_c00162{letter-spacing:0.681173pt;}
.ls3_c00162{letter-spacing:0.697653pt;}
.ls8_c00162{letter-spacing:0.736107pt;}
.lsc_c00162{letter-spacing:0.791040pt;}
.ls5_c00162{letter-spacing:0.845973pt;}
.ls4_c00162{letter-spacing:1.049227pt;}
.ls0_c00162{letter-spacing:1.126133pt;}
.ls1_c00162{letter-spacing:1.785333pt;}
.lse_c00162{letter-spacing:2.444533pt;}
.lsd_c00162{letter-spacing:2.746667pt;}
.ws1_c00162{word-spacing:-2.966400pt;}
.ws4_c00162{word-spacing:0.000000pt;}
.ws2_c00162{word-spacing:0.241707pt;}
.ws3_c00162{word-spacing:2.395093pt;}
.ws0_c00162{word-spacing:3.208107pt;}
._0_c00162{margin-left:-1.071200pt;}
._1_c00162{width:1.115147pt;}
.fs3_c00162{font-size:53.866667pt;}
.fs1_c00162{font-size:54.933333pt;}
.fs0_c00162{font-size:60.800000pt;}
.fs2_c00162{font-size:280.533333pt;}
.fs4_c00162{font-size:353.067200pt;}
.y0_c00162{bottom:0.000000pt;}
.y3_c00162{bottom:129.284800pt;}
.y6_c00162{bottom:130.244800pt;}
.y2_c00162{bottom:145.600000pt;}
.y5_c00162{bottom:146.560000pt;}
.y4_c00162{bottom:808.640000pt;}
.y9_c00162{bottom:874.240000pt;}
.y8_c00162{bottom:957.453333pt;}
.y1_c00162{bottom:959.373333pt;}
.y7_c00162{bottom:1016.640000pt;}
.h6_c00162{height:52.867187pt;}
.h3_c00162{height:53.887240pt;}
.h4_c00162{height:55.362500pt;}
.h2_c00162{height:63.412500pt;}
.h5_c00162{height:292.587500pt;}
.h7_c00162{height:346.516148pt;}
.h1_c00162{height:1122.666667pt;}
.h0_c00162{height:1122.880000pt;}
.w1_c00162{width:793.333333pt;}
.w0_c00162{width:793.600000pt;}
.x0_c00162{left:0.000000pt;}
.x2_c00162{left:102.372667pt;}
.x1_c00162{left:103.493333pt;}
.x4_c00162{left:339.800000pt;}
.x3_c00162{left:344.266667pt;}
.x5_c00162{left:593.533333pt;}
.x6_c00162{left:658.933333pt;}
.x7_c00162{left:701.866667pt;}
}





/* 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_c00163 {
    display:none;
  }
  .loading-indicator_c00163.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00163 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_c00163 { 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_c00163" -> "#page-container .classname_c00163")
 */
.pf_c00163 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00163 { /* 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_c00163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00163 { /* 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_c00163 { /* 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_c00163 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00163 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00163 {overflow:visible;}
  }
}
.c_c00163 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00163 { /* 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_c00163:after { /* webkit #35443 */
  content: '';
}
.t_c00163:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00163 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 */
}
.__c00163 { /* 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_c00163 { /* info for Javascript */
  display:none;
}
.l_c00163 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00163 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00163 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00163: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_c00163 {
    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_c00163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00163.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_c00163 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00163;src:url('chunks/assets/font_d57c75cd64b45e679c84ea0b.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.284668;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_c00163;src:url('chunks/assets/font_faec6e9f79b0aa2447218b8a.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.284180;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_c00163;src:url('chunks/assets/font_d087e78ff75973e801295b93.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;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:ff4_c00163;src:url('chunks/assets/font_0d174ad65b82bb1b8bbd2043.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:0.666000;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;}
.m5_c00163{transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);}
.m4_c00163{transform:matrix(0.230737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230737,0.000000,0.000000,0.250000,0,0);}
.m2_c00163{transform:matrix(0.235148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235148,0.000000,0.000000,0.250000,0,0);}
.m6_c00163{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m8_c00163{transform:matrix(0.244520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244520,0.000000,0.000000,0.250000,0,0);}
.m0_c00163{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m7_c00163{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m3_c00163{transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);}
.m1_c00163{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);}
.v0_c00163{vertical-align:0.000000px;}
.v1_c00163{vertical-align:27.408000px;}
.ls39_c00163{letter-spacing:-3.234000px;}
.ls47_c00163{letter-spacing:-2.415000px;}
.ls2d_c00163{letter-spacing:-2.352000px;}
.ls45_c00163{letter-spacing:-2.346000px;}
.ls61_c00163{letter-spacing:-2.235600px;}
.ls57_c00163{letter-spacing:-2.100000px;}
.ls34_c00163{letter-spacing:-1.731900px;}
.ls5c_c00163{letter-spacing:-1.538700px;}
.ls4d_c00163{letter-spacing:-1.476600px;}
.ls6c_c00163{letter-spacing:-1.251300px;}
.ls31_c00163{letter-spacing:-1.124700px;}
.ls44_c00163{letter-spacing:-1.117800px;}
.ls2f_c00163{letter-spacing:-1.110900px;}
.ls48_c00163{letter-spacing:-1.090200px;}
.ls32_c00163{letter-spacing:-1.083300px;}
.ls4a_c00163{letter-spacing:-1.014300px;}
.ls5b_c00163{letter-spacing:-0.966000px;}
.ls4e_c00163{letter-spacing:-0.945300px;}
.ls65_c00163{letter-spacing:-0.841800px;}
.ls4f_c00163{letter-spacing:-0.828000px;}
.ls68_c00163{letter-spacing:-0.821100px;}
.ls35_c00163{letter-spacing:-0.807300px;}
.ls41_c00163{letter-spacing:-0.800400px;}
.ls63_c00163{letter-spacing:-0.690000px;}
.ls60_c00163{letter-spacing:-0.676200px;}
.ls3f_c00163{letter-spacing:-0.579600px;}
.ls67_c00163{letter-spacing:-0.558900px;}
.ls54_c00163{letter-spacing:-0.538200px;}
.ls6b_c00163{letter-spacing:-0.503700px;}
.ls4c_c00163{letter-spacing:-0.476100px;}
.ls40_c00163{letter-spacing:-0.469200px;}
.ls58_c00163{letter-spacing:-0.455400px;}
.ls38_c00163{letter-spacing:-0.448500px;}
.ls42_c00163{letter-spacing:-0.407100px;}
.ls33_c00163{letter-spacing:-0.372600px;}
.ls37_c00163{letter-spacing:-0.345000px;}
.ls50_c00163{letter-spacing:-0.331200px;}
.ls53_c00163{letter-spacing:-0.324300px;}
.ls64_c00163{letter-spacing:-0.317400px;}
.ls52_c00163{letter-spacing:-0.296700px;}
.ls3b_c00163{letter-spacing:-0.289800px;}
.ls36_c00163{letter-spacing:-0.262200px;}
.ls5f_c00163{letter-spacing:-0.207000px;}
.ls30_c00163{letter-spacing:-0.200100px;}
.ls5e_c00163{letter-spacing:-0.193200px;}
.ls5a_c00163{letter-spacing:-0.172500px;}
.ls5d_c00163{letter-spacing:-0.151800px;}
.ls4b_c00163{letter-spacing:-0.144900px;}
.ls49_c00163{letter-spacing:-0.138000px;}
.ls6a_c00163{letter-spacing:-0.131100px;}
.ls3c_c00163{letter-spacing:-0.110400px;}
.ls55_c00163{letter-spacing:-0.096600px;}
.ls43_c00163{letter-spacing:-0.089700px;}
.ls3d_c00163{letter-spacing:-0.069000px;}
.ls2e_c00163{letter-spacing:-0.062100px;}
.ls62_c00163{letter-spacing:-0.048300px;}
.ls59_c00163{letter-spacing:-0.041400px;}
.ls69_c00163{letter-spacing:-0.020700px;}
.ls51_c00163{letter-spacing:-0.013800px;}
.ls66_c00163{letter-spacing:-0.006900px;}
.ls3a_c00163{letter-spacing:0.000000px;}
.ls18_c00163{letter-spacing:0.013800px;}
.ls1d_c00163{letter-spacing:0.020700px;}
.ls3e_c00163{letter-spacing:0.027600px;}
.ls6_c00163{letter-spacing:0.069000px;}
.ls3_c00163{letter-spacing:0.082800px;}
.ls11_c00163{letter-spacing:0.110400px;}
.ls8_c00163{letter-spacing:0.117300px;}
.ls13_c00163{letter-spacing:0.131100px;}
.ls12_c00163{letter-spacing:0.179400px;}
.ls56_c00163{letter-spacing:0.193200px;}
.lse_c00163{letter-spacing:0.207000px;}
.ls19_c00163{letter-spacing:0.220800px;}
.ls26_c00163{letter-spacing:0.223740px;}
.ls17_c00163{letter-spacing:0.227700px;}
.ls24_c00163{letter-spacing:0.248400px;}
.ls1_c00163{letter-spacing:0.276000px;}
.ls27_c00163{letter-spacing:0.284760px;}
.ls28_c00163{letter-spacing:0.296700px;}
.ls5_c00163{letter-spacing:0.303600px;}
.lsd_c00163{letter-spacing:0.324300px;}
.ls20_c00163{letter-spacing:0.331200px;}
.ls22_c00163{letter-spacing:0.338100px;}
.ls1a_c00163{letter-spacing:0.393240px;}
.ls7_c00163{letter-spacing:0.400200px;}
.ls16_c00163{letter-spacing:0.414000px;}
.lsa_c00163{letter-spacing:0.434700px;}
.ls1e_c00163{letter-spacing:0.441600px;}
.ls14_c00163{letter-spacing:0.496800px;}
.ls10_c00163{letter-spacing:0.531300px;}
.lsf_c00163{letter-spacing:0.558900px;}
.lsc_c00163{letter-spacing:0.586500px;}
.ls46_c00163{letter-spacing:0.614100px;}
.ls21_c00163{letter-spacing:0.616980px;}
.lsb_c00163{letter-spacing:0.641700px;}
.ls0_c00163{letter-spacing:0.779700px;}
.ls1f_c00163{letter-spacing:0.793500px;}
.ls9_c00163{letter-spacing:0.800400px;}
.ls15_c00163{letter-spacing:0.881400px;}
.ls23_c00163{letter-spacing:0.986700px;}
.ls1c_c00163{letter-spacing:1.097100px;}
.ls2a_c00163{letter-spacing:1.104000px;}
.ls4_c00163{letter-spacing:1.179900px;}
.ls25_c00163{letter-spacing:1.297200px;}
.ls2b_c00163{letter-spacing:1.331700px;}
.ls2c_c00163{letter-spacing:1.469700px;}
.ls2_c00163{letter-spacing:1.628400px;}
.ls1b_c00163{letter-spacing:2.435700px;}
.ls29_c00163{letter-spacing:2.559900px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{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__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00163{word-spacing:-16.560000px;}
.ws6_c00163{word-spacing:0.000000px;}
.ws0_c00163{word-spacing:0.140400px;}
.ws1_c00163{word-spacing:7.588200px;}
.ws4_c00163{word-spacing:10.571100px;}
.ws5_c00163{word-spacing:16.909440px;}
.ws2_c00163{word-spacing:22.313400px;}
._11_c00163{margin-left:-23.565000px;}
._3_c00163{margin-left:-6.065100px;}
._4_c00163{margin-left:-4.250400px;}
._f_c00163{margin-left:-1.117800px;}
._1_c00163{width:1.621500px;}
._0_c00163{width:2.753100px;}
._2_c00163{width:4.381500px;}
._5_c00163{width:5.871900px;}
._10_c00163{width:7.079400px;}
._12_c00163{width:8.079900px;}
._8_c00163{width:9.108000px;}
._9_c00163{width:10.867500px;}
._6_c00163{width:12.834000px;}
._a_c00163{width:14.010900px;}
._7_c00163{width:15.042000px;}
._b_c00163{width:19.251000px;}
._c_c00163{width:20.831100px;}
._13_c00163{width:22.159800px;}
._e_c00163{width:26.268300px;}
._d_c00163{width:28.842000px;}
.fc0_c00163{color:transparent;}
.fs7_c00163{font-size:32.400600px;}
.fs4_c00163{font-size:51.840000px;}
.fs6_c00163{font-size:53.280000px;}
.fs8_c00163{font-size:58.200000px;}
.fs5_c00163{font-size:60.000000px;}
.fs0_c00163{font-size:67.200000px;}
.fs1_c00163{font-size:67.800000px;}
.fs2_c00163{font-size:69.000000px;}
.fs3_c00163{font-size:92.400000px;}
.y0_c00163{bottom:0.000000px;}
.y15_c00163{bottom:69.480015px;}
.y14_c00163{bottom:551.514015px;}
.y13_c00163{bottom:582.840015px;}
.y12_c00163{bottom:645.480015px;}
.y11_c00163{bottom:676.455015px;}
.yf_c00163{bottom:739.068015px;}
.y10_c00163{bottom:739.080015px;}
.ye_c00163{bottom:770.411265px;}
.yd_c00163{bottom:801.720015px;}
.yb_c00163{bottom:863.991765px;}
.yc_c00163{bottom:864.000015px;}
.ya_c00163{bottom:895.680015px;}
.y9_c00163{bottom:958.325265px;}
.y8_c00163{bottom:989.289015px;}
.y6_c00163{bottom:1020.609015px;}
.y7_c00163{bottom:1020.615015px;}
.y5_c00163{bottom:1051.929015px;}
.y3_c00163{bottom:1083.246765px;}
.y4_c00163{bottom:1083.255015px;}
.y2_c00163{bottom:1114.935015px;}
.y1_c00163{bottom:1190.880015px;}
.h7_c00163{height:35.484480px;}
.h8_c00163{height:57.120117px;}
.h6_c00163{height:58.886719px;}
.h2_c00163{height:65.953125px;}
.h3_c00163{height:67.719727px;}
.h5_c00163{height:67.743727px;}
.h4_c00163{height:96.370313px;}
.h1_c00163{height:1263.000000px;}
.h0_c00163{height:1263.240015px;}
.w1_c00163{width:892.500000px;}
.w0_c00163{width:892.800015px;}
.x0_c00163{left:0.000000px;}
.xd_c00163{left:121.500015px;}
.x1_c00163{left:122.685015px;}
.xb_c00163{left:175.815015px;}
.x2_c00163{left:176.925015px;}
.xa_c00163{left:317.175015px;}
.x3_c00163{left:349.275015px;}
.xc_c00163{left:367.020015px;}
.x4_c00163{left:381.930015px;}
.xe_c00163{left:422.130015px;}
.x5_c00163{left:435.090015px;}
.x6_c00163{left:456.300015px;}
.x7_c00163{left:631.020015px;}
.x8_c00163{left:655.185015px;}
.x9_c00163{left:689.235015px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.v1_c00163{vertical-align:24.362667pt;}
.ls39_c00163{letter-spacing:-2.874667pt;}
.ls47_c00163{letter-spacing:-2.146667pt;}
.ls2d_c00163{letter-spacing:-2.090667pt;}
.ls45_c00163{letter-spacing:-2.085333pt;}
.ls61_c00163{letter-spacing:-1.987200pt;}
.ls57_c00163{letter-spacing:-1.866667pt;}
.ls34_c00163{letter-spacing:-1.539467pt;}
.ls5c_c00163{letter-spacing:-1.367733pt;}
.ls4d_c00163{letter-spacing:-1.312533pt;}
.ls6c_c00163{letter-spacing:-1.112267pt;}
.ls31_c00163{letter-spacing:-0.999733pt;}
.ls44_c00163{letter-spacing:-0.993600pt;}
.ls2f_c00163{letter-spacing:-0.987467pt;}
.ls48_c00163{letter-spacing:-0.969067pt;}
.ls32_c00163{letter-spacing:-0.962933pt;}
.ls4a_c00163{letter-spacing:-0.901600pt;}
.ls5b_c00163{letter-spacing:-0.858667pt;}
.ls4e_c00163{letter-spacing:-0.840267pt;}
.ls65_c00163{letter-spacing:-0.748267pt;}
.ls4f_c00163{letter-spacing:-0.736000pt;}
.ls68_c00163{letter-spacing:-0.729867pt;}
.ls35_c00163{letter-spacing:-0.717600pt;}
.ls41_c00163{letter-spacing:-0.711467pt;}
.ls63_c00163{letter-spacing:-0.613333pt;}
.ls60_c00163{letter-spacing:-0.601067pt;}
.ls3f_c00163{letter-spacing:-0.515200pt;}
.ls67_c00163{letter-spacing:-0.496800pt;}
.ls54_c00163{letter-spacing:-0.478400pt;}
.ls6b_c00163{letter-spacing:-0.447733pt;}
.ls4c_c00163{letter-spacing:-0.423200pt;}
.ls40_c00163{letter-spacing:-0.417067pt;}
.ls58_c00163{letter-spacing:-0.404800pt;}
.ls38_c00163{letter-spacing:-0.398667pt;}
.ls42_c00163{letter-spacing:-0.361867pt;}
.ls33_c00163{letter-spacing:-0.331200pt;}
.ls37_c00163{letter-spacing:-0.306667pt;}
.ls50_c00163{letter-spacing:-0.294400pt;}
.ls53_c00163{letter-spacing:-0.288267pt;}
.ls64_c00163{letter-spacing:-0.282133pt;}
.ls52_c00163{letter-spacing:-0.263733pt;}
.ls3b_c00163{letter-spacing:-0.257600pt;}
.ls36_c00163{letter-spacing:-0.233067pt;}
.ls5f_c00163{letter-spacing:-0.184000pt;}
.ls30_c00163{letter-spacing:-0.177867pt;}
.ls5e_c00163{letter-spacing:-0.171733pt;}
.ls5a_c00163{letter-spacing:-0.153333pt;}
.ls5d_c00163{letter-spacing:-0.134933pt;}
.ls4b_c00163{letter-spacing:-0.128800pt;}
.ls49_c00163{letter-spacing:-0.122667pt;}
.ls6a_c00163{letter-spacing:-0.116533pt;}
.ls3c_c00163{letter-spacing:-0.098133pt;}
.ls55_c00163{letter-spacing:-0.085867pt;}
.ls43_c00163{letter-spacing:-0.079733pt;}
.ls3d_c00163{letter-spacing:-0.061333pt;}
.ls2e_c00163{letter-spacing:-0.055200pt;}
.ls62_c00163{letter-spacing:-0.042933pt;}
.ls59_c00163{letter-spacing:-0.036800pt;}
.ls69_c00163{letter-spacing:-0.018400pt;}
.ls51_c00163{letter-spacing:-0.012267pt;}
.ls66_c00163{letter-spacing:-0.006133pt;}
.ls3a_c00163{letter-spacing:0.000000pt;}
.ls18_c00163{letter-spacing:0.012267pt;}
.ls1d_c00163{letter-spacing:0.018400pt;}
.ls3e_c00163{letter-spacing:0.024533pt;}
.ls6_c00163{letter-spacing:0.061333pt;}
.ls3_c00163{letter-spacing:0.073600pt;}
.ls11_c00163{letter-spacing:0.098133pt;}
.ls8_c00163{letter-spacing:0.104267pt;}
.ls13_c00163{letter-spacing:0.116533pt;}
.ls12_c00163{letter-spacing:0.159467pt;}
.ls56_c00163{letter-spacing:0.171733pt;}
.lse_c00163{letter-spacing:0.184000pt;}
.ls19_c00163{letter-spacing:0.196267pt;}
.ls26_c00163{letter-spacing:0.198880pt;}
.ls17_c00163{letter-spacing:0.202400pt;}
.ls24_c00163{letter-spacing:0.220800pt;}
.ls1_c00163{letter-spacing:0.245333pt;}
.ls27_c00163{letter-spacing:0.253120pt;}
.ls28_c00163{letter-spacing:0.263733pt;}
.ls5_c00163{letter-spacing:0.269867pt;}
.lsd_c00163{letter-spacing:0.288267pt;}
.ls20_c00163{letter-spacing:0.294400pt;}
.ls22_c00163{letter-spacing:0.300533pt;}
.ls1a_c00163{letter-spacing:0.349547pt;}
.ls7_c00163{letter-spacing:0.355733pt;}
.ls16_c00163{letter-spacing:0.368000pt;}
.lsa_c00163{letter-spacing:0.386400pt;}
.ls1e_c00163{letter-spacing:0.392533pt;}
.ls14_c00163{letter-spacing:0.441600pt;}
.ls10_c00163{letter-spacing:0.472267pt;}
.lsf_c00163{letter-spacing:0.496800pt;}
.lsc_c00163{letter-spacing:0.521333pt;}
.ls46_c00163{letter-spacing:0.545867pt;}
.ls21_c00163{letter-spacing:0.548427pt;}
.lsb_c00163{letter-spacing:0.570400pt;}
.ls0_c00163{letter-spacing:0.693067pt;}
.ls1f_c00163{letter-spacing:0.705333pt;}
.ls9_c00163{letter-spacing:0.711467pt;}
.ls15_c00163{letter-spacing:0.783467pt;}
.ls23_c00163{letter-spacing:0.877067pt;}
.ls1c_c00163{letter-spacing:0.975200pt;}
.ls2a_c00163{letter-spacing:0.981333pt;}
.ls4_c00163{letter-spacing:1.048800pt;}
.ls25_c00163{letter-spacing:1.153067pt;}
.ls2b_c00163{letter-spacing:1.183733pt;}
.ls2c_c00163{letter-spacing:1.306400pt;}
.ls2_c00163{letter-spacing:1.447467pt;}
.ls1b_c00163{letter-spacing:2.165067pt;}
.ls29_c00163{letter-spacing:2.275467pt;}
.ws3_c00163{word-spacing:-14.720000pt;}
.ws6_c00163{word-spacing:0.000000pt;}
.ws0_c00163{word-spacing:0.124800pt;}
.ws1_c00163{word-spacing:6.745067pt;}
.ws4_c00163{word-spacing:9.396533pt;}
.ws5_c00163{word-spacing:15.030613pt;}
.ws2_c00163{word-spacing:19.834133pt;}
._11_c00163{margin-left:-20.946667pt;}
._3_c00163{margin-left:-5.391200pt;}
._4_c00163{margin-left:-3.778133pt;}
._f_c00163{margin-left:-0.993600pt;}
._1_c00163{width:1.441333pt;}
._0_c00163{width:2.447200pt;}
._2_c00163{width:3.894667pt;}
._5_c00163{width:5.219467pt;}
._10_c00163{width:6.292800pt;}
._12_c00163{width:7.182133pt;}
._8_c00163{width:8.096000pt;}
._9_c00163{width:9.660000pt;}
._6_c00163{width:11.408000pt;}
._a_c00163{width:12.454133pt;}
._7_c00163{width:13.370667pt;}
._b_c00163{width:17.112000pt;}
._c_c00163{width:18.516533pt;}
._13_c00163{width:19.697600pt;}
._e_c00163{width:23.349600pt;}
._d_c00163{width:25.637333pt;}
.fs7_c00163{font-size:28.800533pt;}
.fs4_c00163{font-size:46.080000pt;}
.fs6_c00163{font-size:47.360000pt;}
.fs8_c00163{font-size:51.733333pt;}
.fs5_c00163{font-size:53.333333pt;}
.fs0_c00163{font-size:59.733333pt;}
.fs1_c00163{font-size:60.266667pt;}
.fs2_c00163{font-size:61.333333pt;}
.fs3_c00163{font-size:82.133333pt;}
.y0_c00163{bottom:0.000000pt;}
.y15_c00163{bottom:61.760013pt;}
.y14_c00163{bottom:490.234680pt;}
.y13_c00163{bottom:518.080013pt;}
.y12_c00163{bottom:573.760013pt;}
.y11_c00163{bottom:601.293347pt;}
.yf_c00163{bottom:656.949347pt;}
.y10_c00163{bottom:656.960013pt;}
.ye_c00163{bottom:684.810013pt;}
.yd_c00163{bottom:712.640013pt;}
.yb_c00163{bottom:767.992680pt;}
.yc_c00163{bottom:768.000013pt;}
.ya_c00163{bottom:796.160013pt;}
.y9_c00163{bottom:851.844680pt;}
.y8_c00163{bottom:879.368013pt;}
.y6_c00163{bottom:907.208013pt;}
.y7_c00163{bottom:907.213347pt;}
.y5_c00163{bottom:935.048013pt;}
.y3_c00163{bottom:962.886013pt;}
.y4_c00163{bottom:962.893347pt;}
.y2_c00163{bottom:991.053347pt;}
.y1_c00163{bottom:1058.560013pt;}
.h7_c00163{height:31.541760pt;}
.h8_c00163{height:50.773437pt;}
.h6_c00163{height:52.343750pt;}
.h2_c00163{height:58.625000pt;}
.h3_c00163{height:60.195312pt;}
.h5_c00163{height:60.216646pt;}
.h4_c00163{height:85.662500pt;}
.h1_c00163{height:1122.666667pt;}
.h0_c00163{height:1122.880013pt;}
.w1_c00163{width:793.333333pt;}
.w0_c00163{width:793.600013pt;}
.x0_c00163{left:0.000000pt;}
.xd_c00163{left:108.000013pt;}
.x1_c00163{left:109.053347pt;}
.xb_c00163{left:156.280013pt;}
.x2_c00163{left:157.266680pt;}
.xa_c00163{left:281.933347pt;}
.x3_c00163{left:310.466680pt;}
.xc_c00163{left:326.240013pt;}
.x4_c00163{left:339.493347pt;}
.xe_c00163{left:375.226680pt;}
.x5_c00163{left:386.746680pt;}
.x6_c00163{left:405.600013pt;}
.x7_c00163{left:560.906680pt;}
.x8_c00163{left:582.386680pt;}
.x9_c00163{left:612.653347pt;}
}





/* 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_c00164 {
    display:none;
  }
  .loading-indicator_c00164.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00164 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_c00164 { 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_c00164" -> "#page-container .classname_c00164")
 */
.pf_c00164 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00164 { /* 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_c00164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00164 { /* 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_c00164 { /* 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_c00164 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00164 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00164 {overflow:visible;}
  }
}
.c_c00164 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00164 { /* 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_c00164:after { /* webkit #35443 */
  content: '';
}
.t_c00164:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00164 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 */
}
.__c00164 { /* 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_c00164 { /* info for Javascript */
  display:none;
}
.l_c00164 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00164 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00164 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00164: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_c00164 {
    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_c00164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00164.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_c00164 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00164;src:url('chunks/assets/font_2367d35c6fc155eff7fa9616.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.284668;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_c00164;src:url('chunks/assets/font_bb4d439705236e3bd9c1d672.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;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_c00164;src:url('chunks/assets/font_b99d36abc68a792d15a567bb.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.284180;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;}
.m1_c00164{transform:matrix(0.240026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240026,0.000000,0.000000,0.250000,0,0);}
.m4_c00164{transform:matrix(0.241269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241269,0.000000,0.000000,0.250000,0,0);}
.m0_c00164{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);}
.m2_c00164{transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);}
.m3_c00164{transform:matrix(0.263339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263339,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls77_c00164{letter-spacing:-2.772000px;}
.ls48_c00164{letter-spacing:-2.436000px;}
.ls5a_c00164{letter-spacing:-2.234160px;}
.ls6c_c00164{letter-spacing:-2.176380px;}
.ls7a_c00164{letter-spacing:-2.136720px;}
.ls78_c00164{letter-spacing:-2.122560px;}
.ls7f_c00164{letter-spacing:-1.938840px;}
.ls42_c00164{letter-spacing:-1.649520px;}
.ls5b_c00164{letter-spacing:-1.593840px;}
.ls4a_c00164{letter-spacing:-1.531200px;}
.ls7e_c00164{letter-spacing:-1.503360px;}
.ls49_c00164{letter-spacing:-1.426800px;}
.ls67_c00164{letter-spacing:-1.398960px;}
.ls51_c00164{letter-spacing:-1.218000px;}
.ls43_c00164{letter-spacing:-1.169280px;}
.ls5d_c00164{letter-spacing:-1.141440px;}
.ls3e_c00164{letter-spacing:-1.064880px;}
.ls52_c00164{letter-spacing:-0.939600px;}
.ls3c_c00164{letter-spacing:-0.890880px;}
.ls6a_c00164{letter-spacing:-0.863040px;}
.ls45_c00164{letter-spacing:-0.689040px;}
.ls71_c00164{letter-spacing:-0.633360px;}
.ls54_c00164{letter-spacing:-0.626400px;}
.ls64_c00164{letter-spacing:-0.598560px;}
.ls58_c00164{letter-spacing:-0.584640px;}
.ls6f_c00164{letter-spacing:-0.556800px;}
.ls59_c00164{letter-spacing:-0.487200px;}
.ls7d_c00164{letter-spacing:-0.466320px;}
.ls3f_c00164{letter-spacing:-0.459360px;}
.ls79_c00164{letter-spacing:-0.452400px;}
.ls7c_c00164{letter-spacing:-0.375840px;}
.ls69_c00164{letter-spacing:-0.368880px;}
.ls76_c00164{letter-spacing:-0.361920px;}
.ls3d_c00164{letter-spacing:-0.313200px;}
.ls6d_c00164{letter-spacing:-0.285360px;}
.ls41_c00164{letter-spacing:-0.278400px;}
.ls50_c00164{letter-spacing:-0.250560px;}
.ls72_c00164{letter-spacing:-0.236640px;}
.ls61_c00164{letter-spacing:-0.229680px;}
.ls60_c00164{letter-spacing:-0.208800px;}
.ls57_c00164{letter-spacing:-0.194880px;}
.ls55_c00164{letter-spacing:-0.187920px;}
.ls4e_c00164{letter-spacing:-0.180960px;}
.ls4c_c00164{letter-spacing:-0.167040px;}
.ls65_c00164{letter-spacing:-0.153120px;}
.ls40_c00164{letter-spacing:-0.146160px;}
.ls4d_c00164{letter-spacing:-0.139200px;}
.ls5e_c00164{letter-spacing:-0.132240px;}
.ls70_c00164{letter-spacing:-0.111360px;}
.ls66_c00164{letter-spacing:-0.104400px;}
.ls68_c00164{letter-spacing:-0.090480px;}
.ls7b_c00164{letter-spacing:-0.069600px;}
.ls63_c00164{letter-spacing:-0.041760px;}
.ls6b_c00164{letter-spacing:-0.034800px;}
.ls5c_c00164{letter-spacing:-0.013920px;}
.ls44_c00164{letter-spacing:0.000000px;}
.ls26_c00164{letter-spacing:0.006960px;}
.lsc_c00164{letter-spacing:0.013920px;}
.ls16_c00164{letter-spacing:0.020880px;}
.ls14_c00164{letter-spacing:0.034800px;}
.ls4_c00164{letter-spacing:0.048720px;}
.ls31_c00164{letter-spacing:0.055200px;}
.ls9_c00164{letter-spacing:0.055680px;}
.ls11_c00164{letter-spacing:0.069600px;}
.lsf_c00164{letter-spacing:0.083520px;}
.ls1f_c00164{letter-spacing:0.111360px;}
.ls10_c00164{letter-spacing:0.132240px;}
.ls5_c00164{letter-spacing:0.139200px;}
.ls75_c00164{letter-spacing:0.146160px;}
.ls4b_c00164{letter-spacing:0.160080px;}
.ls22_c00164{letter-spacing:0.167040px;}
.ls4f_c00164{letter-spacing:0.174000px;}
.ls1e_c00164{letter-spacing:0.187920px;}
.ls19_c00164{letter-spacing:0.201840px;}
.lsb_c00164{letter-spacing:0.208800px;}
.ls13_c00164{letter-spacing:0.222720px;}
.ls12_c00164{letter-spacing:0.229680px;}
.ls3_c00164{letter-spacing:0.236640px;}
.ls62_c00164{letter-spacing:0.250560px;}
.ls8_c00164{letter-spacing:0.264480px;}
.ls7_c00164{letter-spacing:0.271440px;}
.ls24_c00164{letter-spacing:0.299280px;}
.ls39_c00164{letter-spacing:0.331200px;}
.ls15_c00164{letter-spacing:0.334080px;}
.ls6e_c00164{letter-spacing:0.341040px;}
.ls27_c00164{letter-spacing:0.361920px;}
.ls36_c00164{letter-spacing:0.368880px;}
.ls23_c00164{letter-spacing:0.372600px;}
.ls2d_c00164{letter-spacing:0.389760px;}
.ls37_c00164{letter-spacing:0.441600px;}
.ls2c_c00164{letter-spacing:0.445440px;}
.ls17_c00164{letter-spacing:0.452400px;}
.lse_c00164{letter-spacing:0.466320px;}
.ls1d_c00164{letter-spacing:0.515040px;}
.ls18_c00164{letter-spacing:0.542880px;}
.lsd_c00164{letter-spacing:0.570720px;}
.ls2_c00164{letter-spacing:0.577680px;}
.ls1b_c00164{letter-spacing:0.598560px;}
.ls53_c00164{letter-spacing:0.709920px;}
.ls25_c00164{letter-spacing:0.716880px;}
.ls5f_c00164{letter-spacing:0.737760px;}
.ls33_c00164{letter-spacing:0.751680px;}
.ls1_c00164{letter-spacing:0.758640px;}
.ls34_c00164{letter-spacing:0.932640px;}
.ls21_c00164{letter-spacing:1.002240px;}
.ls6_c00164{letter-spacing:1.030080px;}
.ls1c_c00164{letter-spacing:1.085760px;}
.ls2e_c00164{letter-spacing:1.162320px;}
.ls0_c00164{letter-spacing:1.204080px;}
.ls3a_c00164{letter-spacing:1.207500px;}
.ls2a_c00164{letter-spacing:1.211040px;}
.ls38_c00164{letter-spacing:1.228200px;}
.ls73_c00164{letter-spacing:1.280640px;}
.ls2f_c00164{letter-spacing:1.378080px;}
.ls46_c00164{letter-spacing:1.398960px;}
.lsa_c00164{letter-spacing:1.447680px;}
.ls29_c00164{letter-spacing:1.642560px;}
.ls1a_c00164{letter-spacing:1.705200px;}
.ls20_c00164{letter-spacing:1.823520px;}
.ls3b_c00164{letter-spacing:1.878600px;}
.ls30_c00164{letter-spacing:1.983600px;}
.ls28_c00164{letter-spacing:2.164560px;}
.ls32_c00164{letter-spacing:2.442960px;}
.ls2b_c00164{letter-spacing:2.596080px;}
.ls47_c00164{letter-spacing:2.665680px;}
.ls35_c00164{letter-spacing:2.888400px;}
.ls74_c00164{letter-spacing:3.450000px;}
.ls56_c00164{letter-spacing:3.480000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{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__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00164{word-spacing:0.000000px;}
._16_c00164{margin-left:-6.639840px;}
._18_c00164{margin-left:-5.242320px;}
._1_c00164{margin-left:-3.720480px;}
._15_c00164{margin-left:-2.594880px;}
._c_c00164{margin-left:-1.191600px;}
._2_c00164{width:1.204080px;}
._d_c00164{width:2.575200px;}
._0_c00164{width:4.370880px;}
._3_c00164{width:5.785200px;}
._4_c00164{width:7.339680px;}
._6_c00164{width:8.459520px;}
._5_c00164{width:10.311840px;}
._7_c00164{width:11.386560px;}
._17_c00164{width:12.668880px;}
._8_c00164{width:13.885200px;}
._b_c00164{width:15.799200px;}
._9_c00164{width:18.736320px;}
._f_c00164{width:20.545920px;}
._a_c00164{width:21.847440px;}
._e_c00164{width:23.792160px;}
._10_c00164{width:24.986400px;}
._13_c00164{width:28.185120px;}
._11_c00164{width:29.580000px;}
._12_c00164{width:31.187760px;}
._14_c00164{width:34.751280px;}
.fc0_c00164{color:transparent;}
.fs0_c00164{font-size:60.600000px;}
.fs6_c00164{font-size:64.200000px;}
.fs2_c00164{font-size:67.200000px;}
.fs4_c00164{font-size:67.800000px;}
.fs3_c00164{font-size:69.000000px;}
.fs1_c00164{font-size:69.600000px;}
.fs5_c00164{font-size:79.200000px;}
.y0_c00164{bottom:0.000000px;}
.y1a_c00164{bottom:73.095000px;}
.y19_c00164{bottom:178.920000px;}
.y18_c00164{bottom:240.498600px;}
.y17_c00164{bottom:303.852000px;}
.y16_c00164{bottom:335.520000px;}
.y15_c00164{bottom:398.895000px;}
.y14_c00164{bottom:461.517600px;}
.y13_c00164{bottom:492.855000px;}
.y12_c00164{bottom:524.523000px;}
.y11_c00164{bottom:555.489600px;}
.y10_c00164{bottom:587.175000px;}
.yf_c00164{bottom:618.497400px;}
.ye_c00164{bottom:649.817400px;}
.yd_c00164{bottom:681.120000px;}
.yc_c00164{bottom:743.412000px;}
.ya_c00164{bottom:806.394600px;}
.yb_c00164{bottom:806.400000px;}
.y9_c00164{bottom:869.405400px;}
.y8_c00164{bottom:900.725400px;}
.y7_c00164{bottom:931.697400px;}
.y5_c00164{bottom:962.997600px;}
.y6_c00164{bottom:963.000000px;}
.y4_c00164{bottom:994.341600px;}
.y3_c00164{bottom:1056.981600px;}
.y2_c00164{bottom:1120.335000px;}
.y1_c00164{bottom:1196.655000px;}
.h2_c00164{height:59.475586px;}
.h9_c00164{height:63.008789px;}
.h7_c00164{height:67.686035px;}
.h5_c00164{height:68.274609px;}
.h3_c00164{height:68.308594px;}
.h4_c00164{height:70.061100px;}
.h6_c00164{height:70.734881px;}
.h8_c00164{height:77.691797px;}
.h1_c00164{height:1263.000000px;}
.h0_c00164{height:1263.240000px;}
.w1_c00164{width:892.500000px;}
.w0_c00164{width:892.800000px;}
.x0_c00164{left:0.000000px;}
.xa_c00164{left:120.066000px;}
.x6_c00164{left:121.864200px;}
.x2_c00164{left:123.049800px;}
.x1_c00164{left:124.485000px;}
.xd_c00164{left:173.773800px;}
.x7_c00164{left:176.214600px;}
.x3_c00164{left:177.772800px;}
.x8_c00164{left:232.410000px;}
.xe_c00164{left:250.890000px;}
.x9_c00164{left:359.925000px;}
.xf_c00164{left:373.575000px;}
.x10_c00164{left:422.805000px;}
.xb_c00164{left:455.040000px;}
.xc_c00164{left:480.510000px;}
.x4_c00164{left:498.495000px;}
.x5_c00164{left:523.230000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls77_c00164{letter-spacing:-2.464000pt;}
.ls48_c00164{letter-spacing:-2.165333pt;}
.ls5a_c00164{letter-spacing:-1.985920pt;}
.ls6c_c00164{letter-spacing:-1.934560pt;}
.ls7a_c00164{letter-spacing:-1.899307pt;}
.ls78_c00164{letter-spacing:-1.886720pt;}
.ls7f_c00164{letter-spacing:-1.723413pt;}
.ls42_c00164{letter-spacing:-1.466240pt;}
.ls5b_c00164{letter-spacing:-1.416747pt;}
.ls4a_c00164{letter-spacing:-1.361067pt;}
.ls7e_c00164{letter-spacing:-1.336320pt;}
.ls49_c00164{letter-spacing:-1.268267pt;}
.ls67_c00164{letter-spacing:-1.243520pt;}
.ls51_c00164{letter-spacing:-1.082667pt;}
.ls43_c00164{letter-spacing:-1.039360pt;}
.ls5d_c00164{letter-spacing:-1.014613pt;}
.ls3e_c00164{letter-spacing:-0.946560pt;}
.ls52_c00164{letter-spacing:-0.835200pt;}
.ls3c_c00164{letter-spacing:-0.791893pt;}
.ls6a_c00164{letter-spacing:-0.767147pt;}
.ls45_c00164{letter-spacing:-0.612480pt;}
.ls71_c00164{letter-spacing:-0.562987pt;}
.ls54_c00164{letter-spacing:-0.556800pt;}
.ls64_c00164{letter-spacing:-0.532053pt;}
.ls58_c00164{letter-spacing:-0.519680pt;}
.ls6f_c00164{letter-spacing:-0.494933pt;}
.ls59_c00164{letter-spacing:-0.433067pt;}
.ls7d_c00164{letter-spacing:-0.414507pt;}
.ls3f_c00164{letter-spacing:-0.408320pt;}
.ls79_c00164{letter-spacing:-0.402133pt;}
.ls7c_c00164{letter-spacing:-0.334080pt;}
.ls69_c00164{letter-spacing:-0.327893pt;}
.ls76_c00164{letter-spacing:-0.321707pt;}
.ls3d_c00164{letter-spacing:-0.278400pt;}
.ls6d_c00164{letter-spacing:-0.253653pt;}
.ls41_c00164{letter-spacing:-0.247467pt;}
.ls50_c00164{letter-spacing:-0.222720pt;}
.ls72_c00164{letter-spacing:-0.210347pt;}
.ls61_c00164{letter-spacing:-0.204160pt;}
.ls60_c00164{letter-spacing:-0.185600pt;}
.ls57_c00164{letter-spacing:-0.173227pt;}
.ls55_c00164{letter-spacing:-0.167040pt;}
.ls4e_c00164{letter-spacing:-0.160853pt;}
.ls4c_c00164{letter-spacing:-0.148480pt;}
.ls65_c00164{letter-spacing:-0.136107pt;}
.ls40_c00164{letter-spacing:-0.129920pt;}
.ls4d_c00164{letter-spacing:-0.123733pt;}
.ls5e_c00164{letter-spacing:-0.117547pt;}
.ls70_c00164{letter-spacing:-0.098987pt;}
.ls66_c00164{letter-spacing:-0.092800pt;}
.ls68_c00164{letter-spacing:-0.080427pt;}
.ls7b_c00164{letter-spacing:-0.061867pt;}
.ls63_c00164{letter-spacing:-0.037120pt;}
.ls6b_c00164{letter-spacing:-0.030933pt;}
.ls5c_c00164{letter-spacing:-0.012373pt;}
.ls44_c00164{letter-spacing:0.000000pt;}
.ls26_c00164{letter-spacing:0.006187pt;}
.lsc_c00164{letter-spacing:0.012373pt;}
.ls16_c00164{letter-spacing:0.018560pt;}
.ls14_c00164{letter-spacing:0.030933pt;}
.ls4_c00164{letter-spacing:0.043307pt;}
.ls31_c00164{letter-spacing:0.049067pt;}
.ls9_c00164{letter-spacing:0.049493pt;}
.ls11_c00164{letter-spacing:0.061867pt;}
.lsf_c00164{letter-spacing:0.074240pt;}
.ls1f_c00164{letter-spacing:0.098987pt;}
.ls10_c00164{letter-spacing:0.117547pt;}
.ls5_c00164{letter-spacing:0.123733pt;}
.ls75_c00164{letter-spacing:0.129920pt;}
.ls4b_c00164{letter-spacing:0.142293pt;}
.ls22_c00164{letter-spacing:0.148480pt;}
.ls4f_c00164{letter-spacing:0.154667pt;}
.ls1e_c00164{letter-spacing:0.167040pt;}
.ls19_c00164{letter-spacing:0.179413pt;}
.lsb_c00164{letter-spacing:0.185600pt;}
.ls13_c00164{letter-spacing:0.197973pt;}
.ls12_c00164{letter-spacing:0.204160pt;}
.ls3_c00164{letter-spacing:0.210347pt;}
.ls62_c00164{letter-spacing:0.222720pt;}
.ls8_c00164{letter-spacing:0.235093pt;}
.ls7_c00164{letter-spacing:0.241280pt;}
.ls24_c00164{letter-spacing:0.266027pt;}
.ls39_c00164{letter-spacing:0.294400pt;}
.ls15_c00164{letter-spacing:0.296960pt;}
.ls6e_c00164{letter-spacing:0.303147pt;}
.ls27_c00164{letter-spacing:0.321707pt;}
.ls36_c00164{letter-spacing:0.327893pt;}
.ls23_c00164{letter-spacing:0.331200pt;}
.ls2d_c00164{letter-spacing:0.346453pt;}
.ls37_c00164{letter-spacing:0.392533pt;}
.ls2c_c00164{letter-spacing:0.395947pt;}
.ls17_c00164{letter-spacing:0.402133pt;}
.lse_c00164{letter-spacing:0.414507pt;}
.ls1d_c00164{letter-spacing:0.457813pt;}
.ls18_c00164{letter-spacing:0.482560pt;}
.lsd_c00164{letter-spacing:0.507307pt;}
.ls2_c00164{letter-spacing:0.513493pt;}
.ls1b_c00164{letter-spacing:0.532053pt;}
.ls53_c00164{letter-spacing:0.631040pt;}
.ls25_c00164{letter-spacing:0.637227pt;}
.ls5f_c00164{letter-spacing:0.655787pt;}
.ls33_c00164{letter-spacing:0.668160pt;}
.ls1_c00164{letter-spacing:0.674347pt;}
.ls34_c00164{letter-spacing:0.829013pt;}
.ls21_c00164{letter-spacing:0.890880pt;}
.ls6_c00164{letter-spacing:0.915627pt;}
.ls1c_c00164{letter-spacing:0.965120pt;}
.ls2e_c00164{letter-spacing:1.033173pt;}
.ls0_c00164{letter-spacing:1.070293pt;}
.ls3a_c00164{letter-spacing:1.073333pt;}
.ls2a_c00164{letter-spacing:1.076480pt;}
.ls38_c00164{letter-spacing:1.091733pt;}
.ls73_c00164{letter-spacing:1.138347pt;}
.ls2f_c00164{letter-spacing:1.224960pt;}
.ls46_c00164{letter-spacing:1.243520pt;}
.lsa_c00164{letter-spacing:1.286827pt;}
.ls29_c00164{letter-spacing:1.460053pt;}
.ls1a_c00164{letter-spacing:1.515733pt;}
.ls20_c00164{letter-spacing:1.620907pt;}
.ls3b_c00164{letter-spacing:1.669867pt;}
.ls30_c00164{letter-spacing:1.763200pt;}
.ls28_c00164{letter-spacing:1.924053pt;}
.ls32_c00164{letter-spacing:2.171520pt;}
.ls2b_c00164{letter-spacing:2.307627pt;}
.ls47_c00164{letter-spacing:2.369493pt;}
.ls35_c00164{letter-spacing:2.567467pt;}
.ls74_c00164{letter-spacing:3.066667pt;}
.ls56_c00164{letter-spacing:3.093333pt;}
.ws0_c00164{word-spacing:0.000000pt;}
._16_c00164{margin-left:-5.902080pt;}
._18_c00164{margin-left:-4.659840pt;}
._1_c00164{margin-left:-3.307093pt;}
._15_c00164{margin-left:-2.306560pt;}
._c_c00164{margin-left:-1.059200pt;}
._2_c00164{width:1.070293pt;}
._d_c00164{width:2.289067pt;}
._0_c00164{width:3.885227pt;}
._3_c00164{width:5.142400pt;}
._4_c00164{width:6.524160pt;}
._6_c00164{width:7.519573pt;}
._5_c00164{width:9.166080pt;}
._7_c00164{width:10.121387pt;}
._17_c00164{width:11.261227pt;}
._8_c00164{width:12.342400pt;}
._b_c00164{width:14.043733pt;}
._9_c00164{width:16.654507pt;}
._f_c00164{width:18.263040pt;}
._a_c00164{width:19.419947pt;}
._e_c00164{width:21.148587pt;}
._10_c00164{width:22.210133pt;}
._13_c00164{width:25.053440pt;}
._11_c00164{width:26.293333pt;}
._12_c00164{width:27.722453pt;}
._14_c00164{width:30.890027pt;}
.fs0_c00164{font-size:53.866667pt;}
.fs6_c00164{font-size:57.066667pt;}
.fs2_c00164{font-size:59.733333pt;}
.fs4_c00164{font-size:60.266667pt;}
.fs3_c00164{font-size:61.333333pt;}
.fs1_c00164{font-size:61.866667pt;}
.fs5_c00164{font-size:70.400000pt;}
.y0_c00164{bottom:0.000000pt;}
.y1a_c00164{bottom:64.973333pt;}
.y19_c00164{bottom:159.040000pt;}
.y18_c00164{bottom:213.776533pt;}
.y17_c00164{bottom:270.090667pt;}
.y16_c00164{bottom:298.240000pt;}
.y15_c00164{bottom:354.573333pt;}
.y14_c00164{bottom:410.237867pt;}
.y13_c00164{bottom:438.093333pt;}
.y12_c00164{bottom:466.242667pt;}
.y11_c00164{bottom:493.768533pt;}
.y10_c00164{bottom:521.933333pt;}
.yf_c00164{bottom:549.775467pt;}
.ye_c00164{bottom:577.615467pt;}
.yd_c00164{bottom:605.440000pt;}
.yc_c00164{bottom:660.810667pt;}
.ya_c00164{bottom:716.795200pt;}
.yb_c00164{bottom:716.800000pt;}
.y9_c00164{bottom:772.804800pt;}
.y8_c00164{bottom:800.644800pt;}
.y7_c00164{bottom:828.175467pt;}
.y5_c00164{bottom:855.997867pt;}
.y6_c00164{bottom:856.000000pt;}
.y4_c00164{bottom:883.859200pt;}
.y3_c00164{bottom:939.539200pt;}
.y2_c00164{bottom:995.853333pt;}
.y1_c00164{bottom:1063.693333pt;}
.h2_c00164{height:52.867187pt;}
.h9_c00164{height:56.007812pt;}
.h7_c00164{height:60.165365pt;}
.h5_c00164{height:60.688542pt;}
.h3_c00164{height:60.718750pt;}
.h4_c00164{height:62.276533pt;}
.h6_c00164{height:62.875450pt;}
.h8_c00164{height:69.059375pt;}
.h1_c00164{height:1122.666667pt;}
.h0_c00164{height:1122.880000pt;}
.w1_c00164{width:793.333333pt;}
.w0_c00164{width:793.600000pt;}
.x0_c00164{left:0.000000pt;}
.xa_c00164{left:106.725333pt;}
.x6_c00164{left:108.323733pt;}
.x2_c00164{left:109.377600pt;}
.x1_c00164{left:110.653333pt;}
.xd_c00164{left:154.465600pt;}
.x7_c00164{left:156.635200pt;}
.x3_c00164{left:158.020267pt;}
.x8_c00164{left:206.586667pt;}
.xe_c00164{left:223.013333pt;}
.x9_c00164{left:319.933333pt;}
.xf_c00164{left:332.066667pt;}
.x10_c00164{left:375.826667pt;}
.xb_c00164{left:404.480000pt;}
.xc_c00164{left:427.120000pt;}
.x4_c00164{left:443.106667pt;}
.x5_c00164{left:465.093333pt;}
}





/* 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_c00165 {
    display:none;
  }
  .loading-indicator_c00165.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00165 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_c00165 { 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_c00165" -> "#page-container .classname_c00165")
 */
.pf_c00165 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00165 { /* 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_c00165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00165 { /* 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_c00165 { /* 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_c00165 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00165 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00165 {overflow:visible;}
  }
}
.c_c00165 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00165 { /* 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_c00165:after { /* webkit #35443 */
  content: '';
}
.t_c00165:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00165 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 */
}
.__c00165 { /* 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_c00165 { /* info for Javascript */
  display:none;
}
.l_c00165 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00165 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00165 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00165: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_c00165 {
    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_c00165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00165.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_c00165 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00165;src:url('chunks/assets/font_7d1fc3ca606462c37232c401.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.284668;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_c00165;src:url('chunks/assets/font_faec6e9f79b0aa2447218b8a.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.284180;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;}
.m1_c00165{transform:matrix(0.183141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183141,0.000000,0.000000,0.250000,0,0);}
.m0_c00165{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);}
.m2_c00165{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls3c_c00165{letter-spacing:-2.688000px;}
.ls47_c00165{letter-spacing:-2.134080px;}
.ls41_c00165{letter-spacing:-1.963080px;}
.ls43_c00165{letter-spacing:-1.812600px;}
.ls46_c00165{letter-spacing:-1.381680px;}
.ls44_c00165{letter-spacing:-1.197000px;}
.ls34_c00165{letter-spacing:-1.094400px;}
.ls4f_c00165{letter-spacing:-1.083600px;}
.ls33_c00165{letter-spacing:-0.684000px;}
.ls45_c00165{letter-spacing:-0.581400px;}
.ls36_c00165{letter-spacing:-0.526680px;}
.ls3d_c00165{letter-spacing:-0.478800px;}
.ls4c_c00165{letter-spacing:-0.458280px;}
.ls4d_c00165{letter-spacing:-0.376200px;}
.ls3a_c00165{letter-spacing:-0.362520px;}
.ls3b_c00165{letter-spacing:-0.253080px;}
.ls4e_c00165{letter-spacing:-0.212040px;}
.ls48_c00165{letter-spacing:-0.123120px;}
.ls42_c00165{letter-spacing:-0.116280px;}
.ls35_c00165{letter-spacing:-0.082080px;}
.ls49_c00165{letter-spacing:-0.068400px;}
.ls39_c00165{letter-spacing:-0.054720px;}
.ls3e_c00165{letter-spacing:-0.041040px;}
.ls38_c00165{letter-spacing:-0.027360px;}
.ls40_c00165{letter-spacing:0.000000px;}
.ls17_c00165{letter-spacing:0.027360px;}
.ls21_c00165{letter-spacing:0.034200px;}
.ls2_c00165{letter-spacing:0.047880px;}
.ls4b_c00165{letter-spacing:0.102600px;}
.lsf_c00165{letter-spacing:0.116280px;}
.ls12_c00165{letter-spacing:0.129960px;}
.ls25_c00165{letter-spacing:0.164160px;}
.ls28_c00165{letter-spacing:0.171000px;}
.ls14_c00165{letter-spacing:0.184680px;}
.ls16_c00165{letter-spacing:0.191520px;}
.lse_c00165{letter-spacing:0.212040px;}
.ls3_c00165{letter-spacing:0.218880px;}
.ls1b_c00165{letter-spacing:0.253080px;}
.ls2d_c00165{letter-spacing:0.266760px;}
.ls1c_c00165{letter-spacing:0.280440px;}
.ls15_c00165{letter-spacing:0.328320px;}
.ls2c_c00165{letter-spacing:0.335160px;}
.ls11_c00165{letter-spacing:0.369360px;}
.lsd_c00165{letter-spacing:0.451440px;}
.ls8_c00165{letter-spacing:0.465120px;}
.ls7_c00165{letter-spacing:0.471960px;}
.ls22_c00165{letter-spacing:0.492480px;}
.ls1e_c00165{letter-spacing:0.499320px;}
.ls5_c00165{letter-spacing:0.526680px;}
.lsb_c00165{letter-spacing:0.576300px;}
.ls26_c00165{letter-spacing:0.583080px;}
.ls19_c00165{letter-spacing:0.588240px;}
.ls27_c00165{letter-spacing:0.603420px;}
.ls20_c00165{letter-spacing:0.642960px;}
.ls24_c00165{letter-spacing:0.649800px;}
.ls6_c00165{letter-spacing:0.711360px;}
.lsa_c00165{letter-spacing:0.745560px;}
.ls13_c00165{letter-spacing:0.752400px;}
.ls23_c00165{letter-spacing:0.840720px;}
.ls2a_c00165{letter-spacing:0.848160px;}
.lsc_c00165{letter-spacing:0.855000px;}
.ls1a_c00165{letter-spacing:0.861840px;}
.ls29_c00165{letter-spacing:0.868680px;}
.ls37_c00165{letter-spacing:0.875520px;}
.ls0_c00165{letter-spacing:0.894960px;}
.ls1f_c00165{letter-spacing:0.916560px;}
.ls2f_c00165{letter-spacing:0.937080px;}
.ls4_c00165{letter-spacing:0.943920px;}
.ls30_c00165{letter-spacing:1.026000px;}
.ls3f_c00165{letter-spacing:1.053360px;}
.ls9_c00165{letter-spacing:1.118700px;}
.ls18_c00165{letter-spacing:1.190160px;}
.ls1_c00165{letter-spacing:1.361160px;}
.ls1d_c00165{letter-spacing:1.648440px;}
.ls10_c00165{letter-spacing:1.737360px;}
.ls31_c00165{letter-spacing:1.812600px;}
.ls32_c00165{letter-spacing:2.148000px;}
.ls2b_c00165{letter-spacing:2.715480px;}
.ls2e_c00165{letter-spacing:2.961720px;}
.ls4a_c00165{letter-spacing:3.420000px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{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__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00165{word-spacing:-1.434000px;}
.ws0_c00165{word-spacing:-0.033240px;}
.ws5_c00165{word-spacing:0.000000px;}
.ws3_c00165{word-spacing:0.015000px;}
.ws4_c00165{word-spacing:16.608780px;}
.ws2_c00165{word-spacing:20.602800px;}
._e_c00165{margin-left:-10.020600px;}
._f_c00165{margin-left:-5.013720px;}
._3_c00165{margin-left:-2.824920px;}
._0_c00165{margin-left:-1.067040px;}
._1_c00165{width:1.710000px;}
._2_c00165{width:3.172560px;}
._8_c00165{width:5.745600px;}
._c_c00165{width:6.819480px;}
._9_c00165{width:8.023320px;}
._a_c00165{width:9.140400px;}
._7_c00165{width:10.779840px;}
._b_c00165{width:11.929320px;}
._6_c00165{width:14.733360px;}
._4_c00165{width:18.969600px;}
._5_c00165{width:21.340800px;}
._d_c00165{width:23.946840px;}
.fc0_c00165{color:transparent;}
.fs0_c00165{font-size:60.000000px;}
.fs5_c00165{font-size:63.000000px;}
.fs1_c00165{font-size:67.800000px;}
.fs2_c00165{font-size:68.400000px;}
.fs4_c00165{font-size:71.400000px;}
.fs3_c00165{font-size:76.800000px;}
.y0_c00165{bottom:0.000000px;}
.yc_c00165{bottom:69.480015px;}
.yb_c00165{bottom:707.766915px;}
.ya_c00165{bottom:738.735015px;}
.y9_c00165{bottom:801.720015px;}
.y8_c00165{bottom:864.359715px;}
.y7_c00165{bottom:895.327815px;}
.y6_c00165{bottom:926.655015px;}
.y5_c00165{bottom:957.975015px;}
.y4_c00165{bottom:1020.255015px;}
.y3_c00165{bottom:1083.248715px;}
.y2_c00165{bottom:1114.935015px;}
.y1_c00165{bottom:1190.175015px;}
.h2_c00165{height:58.886719px;}
.h7_c00165{height:61.831055px;}
.h3_c00165{height:67.130859px;}
.h5_c00165{height:67.132059px;}
.h6_c00165{height:70.075195px;}
.h4_c00165{height:75.375000px;}
.h1_c00165{height:1263.000000px;}
.h0_c00165{height:1263.240015px;}
.w1_c00165{width:892.500000px;}
.w0_c00165{width:892.800015px;}
.x0_c00165{left:0.000000px;}
.x1_c00165{left:124.485015px;}
.x4_c00165{left:177.645015px;}
.x2_c00165{left:179.085015px;}
.x3_c00165{left:412.125015px;}
.x7_c00165{left:422.100015px;}
.x5_c00165{left:613.710015px;}
.x6_c00165{left:640.725015px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls3c_c00165{letter-spacing:-2.389333pt;}
.ls47_c00165{letter-spacing:-1.896960pt;}
.ls41_c00165{letter-spacing:-1.744960pt;}
.ls43_c00165{letter-spacing:-1.611200pt;}
.ls46_c00165{letter-spacing:-1.228160pt;}
.ls44_c00165{letter-spacing:-1.064000pt;}
.ls34_c00165{letter-spacing:-0.972800pt;}
.ls4f_c00165{letter-spacing:-0.963200pt;}
.ls33_c00165{letter-spacing:-0.608000pt;}
.ls45_c00165{letter-spacing:-0.516800pt;}
.ls36_c00165{letter-spacing:-0.468160pt;}
.ls3d_c00165{letter-spacing:-0.425600pt;}
.ls4c_c00165{letter-spacing:-0.407360pt;}
.ls4d_c00165{letter-spacing:-0.334400pt;}
.ls3a_c00165{letter-spacing:-0.322240pt;}
.ls3b_c00165{letter-spacing:-0.224960pt;}
.ls4e_c00165{letter-spacing:-0.188480pt;}
.ls48_c00165{letter-spacing:-0.109440pt;}
.ls42_c00165{letter-spacing:-0.103360pt;}
.ls35_c00165{letter-spacing:-0.072960pt;}
.ls49_c00165{letter-spacing:-0.060800pt;}
.ls39_c00165{letter-spacing:-0.048640pt;}
.ls3e_c00165{letter-spacing:-0.036480pt;}
.ls38_c00165{letter-spacing:-0.024320pt;}
.ls40_c00165{letter-spacing:0.000000pt;}
.ls17_c00165{letter-spacing:0.024320pt;}
.ls21_c00165{letter-spacing:0.030400pt;}
.ls2_c00165{letter-spacing:0.042560pt;}
.ls4b_c00165{letter-spacing:0.091200pt;}
.lsf_c00165{letter-spacing:0.103360pt;}
.ls12_c00165{letter-spacing:0.115520pt;}
.ls25_c00165{letter-spacing:0.145920pt;}
.ls28_c00165{letter-spacing:0.152000pt;}
.ls14_c00165{letter-spacing:0.164160pt;}
.ls16_c00165{letter-spacing:0.170240pt;}
.lse_c00165{letter-spacing:0.188480pt;}
.ls3_c00165{letter-spacing:0.194560pt;}
.ls1b_c00165{letter-spacing:0.224960pt;}
.ls2d_c00165{letter-spacing:0.237120pt;}
.ls1c_c00165{letter-spacing:0.249280pt;}
.ls15_c00165{letter-spacing:0.291840pt;}
.ls2c_c00165{letter-spacing:0.297920pt;}
.ls11_c00165{letter-spacing:0.328320pt;}
.lsd_c00165{letter-spacing:0.401280pt;}
.ls8_c00165{letter-spacing:0.413440pt;}
.ls7_c00165{letter-spacing:0.419520pt;}
.ls22_c00165{letter-spacing:0.437760pt;}
.ls1e_c00165{letter-spacing:0.443840pt;}
.ls5_c00165{letter-spacing:0.468160pt;}
.lsb_c00165{letter-spacing:0.512267pt;}
.ls26_c00165{letter-spacing:0.518293pt;}
.ls19_c00165{letter-spacing:0.522880pt;}
.ls27_c00165{letter-spacing:0.536373pt;}
.ls20_c00165{letter-spacing:0.571520pt;}
.ls24_c00165{letter-spacing:0.577600pt;}
.ls6_c00165{letter-spacing:0.632320pt;}
.lsa_c00165{letter-spacing:0.662720pt;}
.ls13_c00165{letter-spacing:0.668800pt;}
.ls23_c00165{letter-spacing:0.747307pt;}
.ls2a_c00165{letter-spacing:0.753920pt;}
.lsc_c00165{letter-spacing:0.760000pt;}
.ls1a_c00165{letter-spacing:0.766080pt;}
.ls29_c00165{letter-spacing:0.772160pt;}
.ls37_c00165{letter-spacing:0.778240pt;}
.ls0_c00165{letter-spacing:0.795520pt;}
.ls1f_c00165{letter-spacing:0.814720pt;}
.ls2f_c00165{letter-spacing:0.832960pt;}
.ls4_c00165{letter-spacing:0.839040pt;}
.ls30_c00165{letter-spacing:0.912000pt;}
.ls3f_c00165{letter-spacing:0.936320pt;}
.ls9_c00165{letter-spacing:0.994400pt;}
.ls18_c00165{letter-spacing:1.057920pt;}
.ls1_c00165{letter-spacing:1.209920pt;}
.ls1d_c00165{letter-spacing:1.465280pt;}
.ls10_c00165{letter-spacing:1.544320pt;}
.ls31_c00165{letter-spacing:1.611200pt;}
.ls32_c00165{letter-spacing:1.909333pt;}
.ls2b_c00165{letter-spacing:2.413760pt;}
.ls2e_c00165{letter-spacing:2.632640pt;}
.ls4a_c00165{letter-spacing:3.040000pt;}
.ws1_c00165{word-spacing:-1.274667pt;}
.ws0_c00165{word-spacing:-0.029547pt;}
.ws5_c00165{word-spacing:0.000000pt;}
.ws3_c00165{word-spacing:0.013333pt;}
.ws4_c00165{word-spacing:14.763360pt;}
.ws2_c00165{word-spacing:18.313600pt;}
._e_c00165{margin-left:-8.907200pt;}
._f_c00165{margin-left:-4.456640pt;}
._3_c00165{margin-left:-2.511040pt;}
._0_c00165{margin-left:-0.948480pt;}
._1_c00165{width:1.520000pt;}
._2_c00165{width:2.820053pt;}
._8_c00165{width:5.107200pt;}
._c_c00165{width:6.061760pt;}
._9_c00165{width:7.131840pt;}
._a_c00165{width:8.124800pt;}
._7_c00165{width:9.582080pt;}
._b_c00165{width:10.603840pt;}
._6_c00165{width:13.096320pt;}
._4_c00165{width:16.861867pt;}
._5_c00165{width:18.969600pt;}
._d_c00165{width:21.286080pt;}
.fs0_c00165{font-size:53.333333pt;}
.fs5_c00165{font-size:56.000000pt;}
.fs1_c00165{font-size:60.266667pt;}
.fs2_c00165{font-size:60.800000pt;}
.fs4_c00165{font-size:63.466667pt;}
.fs3_c00165{font-size:68.266667pt;}
.y0_c00165{bottom:0.000000pt;}
.yc_c00165{bottom:61.760013pt;}
.yb_c00165{bottom:629.126147pt;}
.ya_c00165{bottom:656.653347pt;}
.y9_c00165{bottom:712.640013pt;}
.y8_c00165{bottom:768.319747pt;}
.y7_c00165{bottom:795.846947pt;}
.y6_c00165{bottom:823.693347pt;}
.y5_c00165{bottom:851.533347pt;}
.y4_c00165{bottom:906.893347pt;}
.y3_c00165{bottom:962.887747pt;}
.y2_c00165{bottom:991.053347pt;}
.y1_c00165{bottom:1057.933347pt;}
.h2_c00165{height:52.343750pt;}
.h7_c00165{height:54.960938pt;}
.h3_c00165{height:59.671875pt;}
.h5_c00165{height:59.672942pt;}
.h6_c00165{height:62.289062pt;}
.h4_c00165{height:67.000000pt;}
.h1_c00165{height:1122.666667pt;}
.h0_c00165{height:1122.880013pt;}
.w1_c00165{width:793.333333pt;}
.w0_c00165{width:793.600013pt;}
.x0_c00165{left:0.000000pt;}
.x1_c00165{left:110.653347pt;}
.x4_c00165{left:157.906680pt;}
.x2_c00165{left:159.186680pt;}
.x3_c00165{left:366.333347pt;}
.x7_c00165{left:375.200013pt;}
.x5_c00165{left:545.520013pt;}
.x6_c00165{left:569.533347pt;}
}





/* 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_c00166 {
    display:none;
  }
  .loading-indicator_c00166.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00166 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_c00166 { 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_c00166" -> "#page-container .classname_c00166")
 */
.pf_c00166 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00166 { /* 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_c00166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00166 { /* 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_c00166 { /* 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_c00166 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00166 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00166 {overflow:visible;}
  }
}
.c_c00166 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00166 { /* 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_c00166:after { /* webkit #35443 */
  content: '';
}
.t_c00166:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00166 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 */
}
.__c00166 { /* 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_c00166 { /* info for Javascript */
  display:none;
}
.l_c00166 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00166 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00166 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00166: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_c00166 {
    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_c00166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00166.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_c00166 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00166;src:url('chunks/assets/font_2a19ae18e15e7e9df37c4cd3.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.284668;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_c00166;src:url('chunks/assets/font_06ce3d25c1ddb5a39969fcd5.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.284180;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_c00166;src:url('chunks/assets/font_7101714d4ab5a235c7ee3d12.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:0.666000;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_c00166;src:url('chunks/assets/font_8ada199f4946b3171d18cf1a.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;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:ff5_c00166;src:url('chunks/assets/font_f11f9dcd165fcd1fafdda655.woff2')format("woff");}.ff5_c00166{font-family:ff5_c00166;line-height:1.311035;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_c00166{transform:matrix(0.125003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125003,0.000000,0.000000,0.250000,0,0);}
.m3_c00166{transform:matrix(0.217134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217134,0.000000,0.000000,0.250000,0,0);}
.mb_c00166{transform:matrix(0.234856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234856,0.000000,0.000000,0.250000,0,0);}
.m7_c00166{transform:matrix(0.235581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235581,0.000000,0.000000,0.250000,0,0);}
.m8_c00166{transform:matrix(0.242017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242017,0.000000,0.000000,0.250000,0,0);}
.m9_c00166{transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);}
.m6_c00166{transform:matrix(0.242926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242926,0.000000,0.000000,0.250000,0,0);}
.ma_c00166{transform:matrix(0.244890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244890,0.000000,0.000000,0.250000,0,0);}
.m4_c00166{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);}
.m5_c00166{transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);}
.m0_c00166{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);}
.v0_c00166{vertical-align:0.000000px;}
.ls88_c00166{letter-spacing:-2.478000px;}
.ls5e_c00166{letter-spacing:-2.436000px;}
.ls81_c00166{letter-spacing:-2.352000px;}
.ls8b_c00166{letter-spacing:-2.131080px;}
.ls8a_c00166{letter-spacing:-2.095680px;}
.ls89_c00166{letter-spacing:-1.915200px;}
.ls87_c00166{letter-spacing:-1.777080px;}
.ls79_c00166{letter-spacing:-1.649520px;}
.ls4c_c00166{letter-spacing:-1.545120px;}
.ls74_c00166{letter-spacing:-1.531200px;}
.ls6f_c00166{letter-spacing:-1.426800px;}
.ls75_c00166{letter-spacing:-1.343280px;}
.ls57_c00166{letter-spacing:-1.273680px;}
.ls64_c00166{letter-spacing:-1.266720px;}
.ls93_c00166{letter-spacing:-1.169280px;}
.ls55_c00166{letter-spacing:-1.106640px;}
.ls4f_c00166{letter-spacing:-1.064880px;}
.ls69_c00166{letter-spacing:-1.002240px;}
.ls95_c00166{letter-spacing:-0.926640px;}
.ls65_c00166{letter-spacing:-0.883920px;}
.ls86_c00166{letter-spacing:-0.828240px;}
.ls71_c00166{letter-spacing:-0.765600px;}
.ls76_c00166{letter-spacing:-0.675120px;}
.ls91_c00166{letter-spacing:-0.647280px;}
.ls78_c00166{letter-spacing:-0.619440px;}
.ls5f_c00166{letter-spacing:-0.591600px;}
.ls5c_c00166{letter-spacing:-0.570720px;}
.ls53_c00166{letter-spacing:-0.556800px;}
.ls54_c00166{letter-spacing:-0.501120px;}
.ls83_c00166{letter-spacing:-0.487200px;}
.ls92_c00166{letter-spacing:-0.480240px;}
.ls85_c00166{letter-spacing:-0.473280px;}
.ls7d_c00166{letter-spacing:-0.459360px;}
.ls7a_c00166{letter-spacing:-0.452400px;}
.ls7f_c00166{letter-spacing:-0.445440px;}
.ls77_c00166{letter-spacing:-0.438480px;}
.ls68_c00166{letter-spacing:-0.403680px;}
.ls8e_c00166{letter-spacing:-0.382800px;}
.ls6d_c00166{letter-spacing:-0.375840px;}
.ls8d_c00166{letter-spacing:-0.361920px;}
.ls70_c00166{letter-spacing:-0.341040px;}
.ls8c_c00166{letter-spacing:-0.327120px;}
.ls62_c00166{letter-spacing:-0.320160px;}
.ls5a_c00166{letter-spacing:-0.313200px;}
.ls66_c00166{letter-spacing:-0.292320px;}
.ls50_c00166{letter-spacing:-0.285360px;}
.ls59_c00166{letter-spacing:-0.271440px;}
.ls4e_c00166{letter-spacing:-0.264480px;}
.ls6c_c00166{letter-spacing:-0.250560px;}
.ls5d_c00166{letter-spacing:-0.243600px;}
.ls7b_c00166{letter-spacing:-0.229680px;}
.ls4b_c00166{letter-spacing:-0.208800px;}
.ls7c_c00166{letter-spacing:-0.201840px;}
.ls6b_c00166{letter-spacing:-0.187920px;}
.ls52_c00166{letter-spacing:-0.180960px;}
.ls4a_c00166{letter-spacing:-0.174000px;}
.ls51_c00166{letter-spacing:-0.167040px;}
.ls6a_c00166{letter-spacing:-0.160080px;}
.ls67_c00166{letter-spacing:-0.153120px;}
.ls6e_c00166{letter-spacing:-0.146160px;}
.ls7e_c00166{letter-spacing:-0.139200px;}
.ls84_c00166{letter-spacing:-0.132240px;}
.ls72_c00166{letter-spacing:-0.125280px;}
.ls73_c00166{letter-spacing:-0.111360px;}
.ls5b_c00166{letter-spacing:-0.097440px;}
.ls58_c00166{letter-spacing:-0.076560px;}
.ls4d_c00166{letter-spacing:-0.048720px;}
.ls60_c00166{letter-spacing:-0.027840px;}
.ls94_c00166{letter-spacing:-0.020880px;}
.ls63_c00166{letter-spacing:-0.013920px;}
.ls8f_c00166{letter-spacing:-0.006960px;}
.ls61_c00166{letter-spacing:0.000000px;}
.ls1f_c00166{letter-spacing:0.013920px;}
.ls1e_c00166{letter-spacing:0.020880px;}
.ls16_c00166{letter-spacing:0.041760px;}
.ls4_c00166{letter-spacing:0.069600px;}
.lsc_c00166{letter-spacing:0.076560px;}
.ls24_c00166{letter-spacing:0.083520px;}
.ls42_c00166{letter-spacing:0.097440px;}
.ls26_c00166{letter-spacing:0.104400px;}
.lsa_c00166{letter-spacing:0.118320px;}
.ls2c_c00166{letter-spacing:0.125280px;}
.ls44_c00166{letter-spacing:0.132240px;}
.ls10_c00166{letter-spacing:0.146160px;}
.lsb_c00166{letter-spacing:0.153120px;}
.ls2d_c00166{letter-spacing:0.160080px;}
.ls2e_c00166{letter-spacing:0.180960px;}
.ls2b_c00166{letter-spacing:0.194880px;}
.ls2f_c00166{letter-spacing:0.222720px;}
.ls33_c00166{letter-spacing:0.236640px;}
.ls30_c00166{letter-spacing:0.243600px;}
.ls11_c00166{letter-spacing:0.257520px;}
.ls2_c00166{letter-spacing:0.264480px;}
.ls9_c00166{letter-spacing:0.271440px;}
.lsf_c00166{letter-spacing:0.278400px;}
.ls29_c00166{letter-spacing:0.285360px;}
.ls1b_c00166{letter-spacing:0.320160px;}
.ls34_c00166{letter-spacing:0.334080px;}
.ls5_c00166{letter-spacing:0.341040px;}
.ls20_c00166{letter-spacing:0.354960px;}
.ls1d_c00166{letter-spacing:0.361920px;}
.ls18_c00166{letter-spacing:0.368880px;}
.ls23_c00166{letter-spacing:0.382800px;}
.ls45_c00166{letter-spacing:0.389760px;}
.ls46_c00166{letter-spacing:0.403680px;}
.ls2a_c00166{letter-spacing:0.424560px;}
.lsd_c00166{letter-spacing:0.445440px;}
.ls31_c00166{letter-spacing:0.452400px;}
.ls25_c00166{letter-spacing:0.459360px;}
.ls82_c00166{letter-spacing:0.477120px;}
.ls0_c00166{letter-spacing:0.480240px;}
.ls37_c00166{letter-spacing:0.487200px;}
.ls15_c00166{letter-spacing:0.542880px;}
.ls22_c00166{letter-spacing:0.549840px;}
.ls38_c00166{letter-spacing:0.556800px;}
.ls3_c00166{letter-spacing:0.577680px;}
.ls7_c00166{letter-spacing:0.591600px;}
.ls35_c00166{letter-spacing:0.654240px;}
.ls1c_c00166{letter-spacing:0.800400px;}
.ls27_c00166{letter-spacing:0.847500px;}
.ls13_c00166{letter-spacing:0.861060px;}
.ls14_c00166{letter-spacing:0.876960px;}
.ls48_c00166{letter-spacing:0.883920px;}
.ls3e_c00166{letter-spacing:0.901740px;}
.ls90_c00166{letter-spacing:0.911760px;}
.ls36_c00166{letter-spacing:0.918720px;}
.ls56_c00166{letter-spacing:0.925680px;}
.ls3f_c00166{letter-spacing:0.976320px;}
.ls47_c00166{letter-spacing:0.989880px;}
.ls8_c00166{letter-spacing:1.002240px;}
.ls80_c00166{letter-spacing:1.034280px;}
.ls19_c00166{letter-spacing:1.064460px;}
.ls3d_c00166{letter-spacing:1.068480px;}
.ls28_c00166{letter-spacing:1.127520px;}
.ls40_c00166{letter-spacing:1.145820px;}
.ls21_c00166{letter-spacing:1.190160px;}
.ls43_c00166{letter-spacing:1.193280px;}
.ls1a_c00166{letter-spacing:1.200060px;}
.ls41_c00166{letter-spacing:1.281420px;}
.ls1_c00166{letter-spacing:1.322400px;}
.ls12_c00166{letter-spacing:1.376340px;}
.ls3a_c00166{letter-spacing:1.447680px;}
.ls49_c00166{letter-spacing:1.714980px;}
.ls3b_c00166{letter-spacing:1.861440px;}
.ls32_c00166{letter-spacing:1.983600px;}
.ls3c_c00166{letter-spacing:2.056320px;}
.ls6_c00166{letter-spacing:2.164560px;}
.ls39_c00166{letter-spacing:2.317680px;}
.ls17_c00166{letter-spacing:2.442960px;}
.lse_c00166{letter-spacing:2.888400px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{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__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00166{word-spacing:0.000000px;}
.ws0_c00166{word-spacing:2.181960px;}
._2_c00166{margin-left:-21.122400px;}
._4_c00166{margin-left:-4.343040px;}
._11_c00166{margin-left:-3.340800px;}
._1_c00166{margin-left:-2.279040px;}
._10_c00166{margin-left:-1.141440px;}
._0_c00166{width:1.531200px;}
._7_c00166{width:3.243360px;}
._5_c00166{width:5.233920px;}
._6_c00166{width:6.500640px;}
._3_c00166{width:7.620000px;}
._9_c00166{width:9.283440px;}
._8_c00166{width:11.311200px;}
._b_c00166{width:12.458400px;}
._a_c00166{width:13.947840px;}
._15_c00166{width:17.897760px;}
._c_c00166{width:18.979920px;}
._e_c00166{width:20.030880px;}
._d_c00166{width:21.283680px;}
._13_c00166{width:22.327680px;}
._12_c00166{width:24.527040px;}
._f_c00166{width:26.315760px;}
._14_c00166{width:34.692000px;}
.fc0_c00166{color:transparent;}
.fs3_c00166{font-size:54.720000px;}
.fs0_c00166{font-size:60.600000px;}
.fs5_c00166{font-size:61.200000px;}
.fs8_c00166{font-size:64.800000px;}
.fs4_c00166{font-size:67.200000px;}
.fs2_c00166{font-size:67.800000px;}
.fs1_c00166{font-size:69.600000px;}
.fs6_c00166{font-size:70.800000px;}
.fs7_c00166{font-size:72.000000px;}
.y0_c00166{bottom:0.000000px;}
.y1c_c00166{bottom:65.880000px;}
.y1b_c00166{bottom:140.040000px;}
.y1a_c00166{bottom:171.360000px;}
.y19_c00166{bottom:202.695000px;}
.y18_c00166{bottom:264.600000px;}
.y17_c00166{bottom:295.560000px;}
.y16_c00166{bottom:327.255000px;}
.y15_c00166{bottom:359.295000px;}
.y14_c00166{bottom:390.600000px;}
.y13_c00166{bottom:453.600000px;}
.y12_c00166{bottom:516.255000px;}
.y11_c00166{bottom:579.249600px;}
.y10_c00166{bottom:610.569600px;}
.yf_c00166{bottom:642.255000px;}
.ye_c00166{bottom:673.575000px;}
.yd_c00166{bottom:704.897400px;}
.yc_c00166{bottom:736.197600px;}
.yb_c00166{bottom:767.169600px;}
.ya_c00166{bottom:798.855000px;}
.y9_c00166{bottom:830.175000px;}
.y8_c00166{bottom:893.180400px;}
.y7_c00166{bottom:924.500400px;}
.y6_c00166{bottom:955.455000px;}
.y5_c00166{bottom:955.457400px;}
.y4_c00166{bottom:986.777400px;}
.y3_c00166{bottom:1049.400000px;}
.y2_c00166{bottom:1112.400000px;}
.y1_c00166{bottom:1188.360000px;}
.h4_c00166{height:36.443520px;}
.h2_c00166{height:59.475586px;}
.h9_c00166{height:63.597656px;}
.h6_c00166{height:65.953125px;}
.h3_c00166{height:68.308594px;}
.h5_c00166{height:68.318194px;}
.h7_c00166{height:71.353125px;}
.h8_c00166{height:72.562500px;}
.h1_c00166{height:1263.000000px;}
.h0_c00166{height:1263.240000px;}
.w1_c00166{width:892.500000px;}
.w0_c00166{width:892.800000px;}
.x0_c00166{left:0.000000px;}
.xa_c00166{left:119.875800px;}
.x6_c00166{left:120.922200px;}
.x2_c00166{left:122.325000px;}
.x1_c00166{left:124.485000px;}
.xe_c00166{left:173.340000px;}
.xb_c00166{left:174.435000px;}
.x7_c00166{left:175.485000px;}
.x3_c00166{left:176.578200px;}
.x11_c00166{left:238.860000px;}
.x12_c00166{left:283.275000px;}
.x10_c00166{left:312.690000px;}
.xf_c00166{left:329.880000px;}
.x13_c00166{left:359.475000px;}
.xc_c00166{left:368.850000px;}
.xd_c00166{left:389.445000px;}
.x1a_c00166{left:423.165000px;}
.x14_c00166{left:450.525000px;}
.x15_c00166{left:480.435000px;}
.x8_c00166{left:497.520000px;}
.x9_c00166{left:529.380000px;}
.x16_c00166{left:534.765000px;}
.x17_c00166{left:564.660000px;}
.x18_c00166{left:620.910000px;}
.x4_c00166{left:630.840000px;}
.x19_c00166{left:663.660000px;}
.x5_c00166{left:684.195000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls88_c00166{letter-spacing:-2.202667pt;}
.ls5e_c00166{letter-spacing:-2.165333pt;}
.ls81_c00166{letter-spacing:-2.090667pt;}
.ls8b_c00166{letter-spacing:-1.894293pt;}
.ls8a_c00166{letter-spacing:-1.862827pt;}
.ls89_c00166{letter-spacing:-1.702400pt;}
.ls87_c00166{letter-spacing:-1.579627pt;}
.ls79_c00166{letter-spacing:-1.466240pt;}
.ls4c_c00166{letter-spacing:-1.373440pt;}
.ls74_c00166{letter-spacing:-1.361067pt;}
.ls6f_c00166{letter-spacing:-1.268267pt;}
.ls75_c00166{letter-spacing:-1.194027pt;}
.ls57_c00166{letter-spacing:-1.132160pt;}
.ls64_c00166{letter-spacing:-1.125973pt;}
.ls93_c00166{letter-spacing:-1.039360pt;}
.ls55_c00166{letter-spacing:-0.983680pt;}
.ls4f_c00166{letter-spacing:-0.946560pt;}
.ls69_c00166{letter-spacing:-0.890880pt;}
.ls95_c00166{letter-spacing:-0.823680pt;}
.ls65_c00166{letter-spacing:-0.785707pt;}
.ls86_c00166{letter-spacing:-0.736213pt;}
.ls71_c00166{letter-spacing:-0.680533pt;}
.ls76_c00166{letter-spacing:-0.600107pt;}
.ls91_c00166{letter-spacing:-0.575360pt;}
.ls78_c00166{letter-spacing:-0.550613pt;}
.ls5f_c00166{letter-spacing:-0.525867pt;}
.ls5c_c00166{letter-spacing:-0.507307pt;}
.ls53_c00166{letter-spacing:-0.494933pt;}
.ls54_c00166{letter-spacing:-0.445440pt;}
.ls83_c00166{letter-spacing:-0.433067pt;}
.ls92_c00166{letter-spacing:-0.426880pt;}
.ls85_c00166{letter-spacing:-0.420693pt;}
.ls7d_c00166{letter-spacing:-0.408320pt;}
.ls7a_c00166{letter-spacing:-0.402133pt;}
.ls7f_c00166{letter-spacing:-0.395947pt;}
.ls77_c00166{letter-spacing:-0.389760pt;}
.ls68_c00166{letter-spacing:-0.358827pt;}
.ls8e_c00166{letter-spacing:-0.340267pt;}
.ls6d_c00166{letter-spacing:-0.334080pt;}
.ls8d_c00166{letter-spacing:-0.321707pt;}
.ls70_c00166{letter-spacing:-0.303147pt;}
.ls8c_c00166{letter-spacing:-0.290773pt;}
.ls62_c00166{letter-spacing:-0.284587pt;}
.ls5a_c00166{letter-spacing:-0.278400pt;}
.ls66_c00166{letter-spacing:-0.259840pt;}
.ls50_c00166{letter-spacing:-0.253653pt;}
.ls59_c00166{letter-spacing:-0.241280pt;}
.ls4e_c00166{letter-spacing:-0.235093pt;}
.ls6c_c00166{letter-spacing:-0.222720pt;}
.ls5d_c00166{letter-spacing:-0.216533pt;}
.ls7b_c00166{letter-spacing:-0.204160pt;}
.ls4b_c00166{letter-spacing:-0.185600pt;}
.ls7c_c00166{letter-spacing:-0.179413pt;}
.ls6b_c00166{letter-spacing:-0.167040pt;}
.ls52_c00166{letter-spacing:-0.160853pt;}
.ls4a_c00166{letter-spacing:-0.154667pt;}
.ls51_c00166{letter-spacing:-0.148480pt;}
.ls6a_c00166{letter-spacing:-0.142293pt;}
.ls67_c00166{letter-spacing:-0.136107pt;}
.ls6e_c00166{letter-spacing:-0.129920pt;}
.ls7e_c00166{letter-spacing:-0.123733pt;}
.ls84_c00166{letter-spacing:-0.117547pt;}
.ls72_c00166{letter-spacing:-0.111360pt;}
.ls73_c00166{letter-spacing:-0.098987pt;}
.ls5b_c00166{letter-spacing:-0.086613pt;}
.ls58_c00166{letter-spacing:-0.068053pt;}
.ls4d_c00166{letter-spacing:-0.043307pt;}
.ls60_c00166{letter-spacing:-0.024747pt;}
.ls94_c00166{letter-spacing:-0.018560pt;}
.ls63_c00166{letter-spacing:-0.012373pt;}
.ls8f_c00166{letter-spacing:-0.006187pt;}
.ls61_c00166{letter-spacing:0.000000pt;}
.ls1f_c00166{letter-spacing:0.012373pt;}
.ls1e_c00166{letter-spacing:0.018560pt;}
.ls16_c00166{letter-spacing:0.037120pt;}
.ls4_c00166{letter-spacing:0.061867pt;}
.lsc_c00166{letter-spacing:0.068053pt;}
.ls24_c00166{letter-spacing:0.074240pt;}
.ls42_c00166{letter-spacing:0.086613pt;}
.ls26_c00166{letter-spacing:0.092800pt;}
.lsa_c00166{letter-spacing:0.105173pt;}
.ls2c_c00166{letter-spacing:0.111360pt;}
.ls44_c00166{letter-spacing:0.117547pt;}
.ls10_c00166{letter-spacing:0.129920pt;}
.lsb_c00166{letter-spacing:0.136107pt;}
.ls2d_c00166{letter-spacing:0.142293pt;}
.ls2e_c00166{letter-spacing:0.160853pt;}
.ls2b_c00166{letter-spacing:0.173227pt;}
.ls2f_c00166{letter-spacing:0.197973pt;}
.ls33_c00166{letter-spacing:0.210347pt;}
.ls30_c00166{letter-spacing:0.216533pt;}
.ls11_c00166{letter-spacing:0.228907pt;}
.ls2_c00166{letter-spacing:0.235093pt;}
.ls9_c00166{letter-spacing:0.241280pt;}
.lsf_c00166{letter-spacing:0.247467pt;}
.ls29_c00166{letter-spacing:0.253653pt;}
.ls1b_c00166{letter-spacing:0.284587pt;}
.ls34_c00166{letter-spacing:0.296960pt;}
.ls5_c00166{letter-spacing:0.303147pt;}
.ls20_c00166{letter-spacing:0.315520pt;}
.ls1d_c00166{letter-spacing:0.321707pt;}
.ls18_c00166{letter-spacing:0.327893pt;}
.ls23_c00166{letter-spacing:0.340267pt;}
.ls45_c00166{letter-spacing:0.346453pt;}
.ls46_c00166{letter-spacing:0.358827pt;}
.ls2a_c00166{letter-spacing:0.377387pt;}
.lsd_c00166{letter-spacing:0.395947pt;}
.ls31_c00166{letter-spacing:0.402133pt;}
.ls25_c00166{letter-spacing:0.408320pt;}
.ls82_c00166{letter-spacing:0.424107pt;}
.ls0_c00166{letter-spacing:0.426880pt;}
.ls37_c00166{letter-spacing:0.433067pt;}
.ls15_c00166{letter-spacing:0.482560pt;}
.ls22_c00166{letter-spacing:0.488747pt;}
.ls38_c00166{letter-spacing:0.494933pt;}
.ls3_c00166{letter-spacing:0.513493pt;}
.ls7_c00166{letter-spacing:0.525867pt;}
.ls35_c00166{letter-spacing:0.581547pt;}
.ls1c_c00166{letter-spacing:0.711467pt;}
.ls27_c00166{letter-spacing:0.753333pt;}
.ls13_c00166{letter-spacing:0.765387pt;}
.ls14_c00166{letter-spacing:0.779520pt;}
.ls48_c00166{letter-spacing:0.785707pt;}
.ls3e_c00166{letter-spacing:0.801547pt;}
.ls90_c00166{letter-spacing:0.810453pt;}
.ls36_c00166{letter-spacing:0.816640pt;}
.ls56_c00166{letter-spacing:0.822827pt;}
.ls3f_c00166{letter-spacing:0.867840pt;}
.ls47_c00166{letter-spacing:0.879893pt;}
.ls8_c00166{letter-spacing:0.890880pt;}
.ls80_c00166{letter-spacing:0.919360pt;}
.ls19_c00166{letter-spacing:0.946187pt;}
.ls3d_c00166{letter-spacing:0.949760pt;}
.ls28_c00166{letter-spacing:1.002240pt;}
.ls40_c00166{letter-spacing:1.018507pt;}
.ls21_c00166{letter-spacing:1.057920pt;}
.ls43_c00166{letter-spacing:1.060693pt;}
.ls1a_c00166{letter-spacing:1.066720pt;}
.ls41_c00166{letter-spacing:1.139040pt;}
.ls1_c00166{letter-spacing:1.175467pt;}
.ls12_c00166{letter-spacing:1.223413pt;}
.ls3a_c00166{letter-spacing:1.286827pt;}
.ls49_c00166{letter-spacing:1.524427pt;}
.ls3b_c00166{letter-spacing:1.654613pt;}
.ls32_c00166{letter-spacing:1.763200pt;}
.ls3c_c00166{letter-spacing:1.827840pt;}
.ls6_c00166{letter-spacing:1.924053pt;}
.ls39_c00166{letter-spacing:2.060160pt;}
.ls17_c00166{letter-spacing:2.171520pt;}
.lse_c00166{letter-spacing:2.567467pt;}
.ws1_c00166{word-spacing:0.000000pt;}
.ws0_c00166{word-spacing:1.939520pt;}
._2_c00166{margin-left:-18.775467pt;}
._4_c00166{margin-left:-3.860480pt;}
._11_c00166{margin-left:-2.969600pt;}
._1_c00166{margin-left:-2.025813pt;}
._10_c00166{margin-left:-1.014613pt;}
._0_c00166{width:1.361067pt;}
._7_c00166{width:2.882987pt;}
._5_c00166{width:4.652373pt;}
._6_c00166{width:5.778347pt;}
._3_c00166{width:6.773333pt;}
._9_c00166{width:8.251947pt;}
._8_c00166{width:10.054400pt;}
._b_c00166{width:11.074133pt;}
._a_c00166{width:12.398080pt;}
._15_c00166{width:15.909120pt;}
._c_c00166{width:16.871040pt;}
._e_c00166{width:17.805227pt;}
._d_c00166{width:18.918827pt;}
._13_c00166{width:19.846827pt;}
._12_c00166{width:21.801813pt;}
._f_c00166{width:23.391787pt;}
._14_c00166{width:30.837333pt;}
.fs3_c00166{font-size:48.640000pt;}
.fs0_c00166{font-size:53.866667pt;}
.fs5_c00166{font-size:54.400000pt;}
.fs8_c00166{font-size:57.600000pt;}
.fs4_c00166{font-size:59.733333pt;}
.fs2_c00166{font-size:60.266667pt;}
.fs1_c00166{font-size:61.866667pt;}
.fs6_c00166{font-size:62.933333pt;}
.fs7_c00166{font-size:64.000000pt;}
.y0_c00166{bottom:0.000000pt;}
.y1c_c00166{bottom:58.560000pt;}
.y1b_c00166{bottom:124.480000pt;}
.y1a_c00166{bottom:152.320000pt;}
.y19_c00166{bottom:180.173333pt;}
.y18_c00166{bottom:235.200000pt;}
.y17_c00166{bottom:262.720000pt;}
.y16_c00166{bottom:290.893333pt;}
.y15_c00166{bottom:319.373333pt;}
.y14_c00166{bottom:347.200000pt;}
.y13_c00166{bottom:403.200000pt;}
.y12_c00166{bottom:458.893333pt;}
.y11_c00166{bottom:514.888533pt;}
.y10_c00166{bottom:542.728533pt;}
.yf_c00166{bottom:570.893333pt;}
.ye_c00166{bottom:598.733333pt;}
.yd_c00166{bottom:626.575467pt;}
.yc_c00166{bottom:654.397867pt;}
.yb_c00166{bottom:681.928533pt;}
.ya_c00166{bottom:710.093333pt;}
.y9_c00166{bottom:737.933333pt;}
.y8_c00166{bottom:793.938133pt;}
.y7_c00166{bottom:821.778133pt;}
.y6_c00166{bottom:849.293333pt;}
.y5_c00166{bottom:849.295467pt;}
.y4_c00166{bottom:877.135467pt;}
.y3_c00166{bottom:932.800000pt;}
.y2_c00166{bottom:988.800000pt;}
.y1_c00166{bottom:1056.320000pt;}
.h4_c00166{height:32.394240pt;}
.h2_c00166{height:52.867187pt;}
.h9_c00166{height:56.531250pt;}
.h6_c00166{height:58.625000pt;}
.h3_c00166{height:60.718750pt;}
.h5_c00166{height:60.727283pt;}
.h7_c00166{height:63.425000pt;}
.h8_c00166{height:64.500000pt;}
.h1_c00166{height:1122.666667pt;}
.h0_c00166{height:1122.880000pt;}
.w1_c00166{width:793.333333pt;}
.w0_c00166{width:793.600000pt;}
.x0_c00166{left:0.000000pt;}
.xa_c00166{left:106.556267pt;}
.x6_c00166{left:107.486400pt;}
.x2_c00166{left:108.733333pt;}
.x1_c00166{left:110.653333pt;}
.xe_c00166{left:154.080000pt;}
.xb_c00166{left:155.053333pt;}
.x7_c00166{left:155.986667pt;}
.x3_c00166{left:156.958400pt;}
.x11_c00166{left:212.320000pt;}
.x12_c00166{left:251.800000pt;}
.x10_c00166{left:277.946667pt;}
.xf_c00166{left:293.226667pt;}
.x13_c00166{left:319.533333pt;}
.xc_c00166{left:327.866667pt;}
.xd_c00166{left:346.173333pt;}
.x1a_c00166{left:376.146667pt;}
.x14_c00166{left:400.466667pt;}
.x15_c00166{left:427.053333pt;}
.x8_c00166{left:442.240000pt;}
.x9_c00166{left:470.560000pt;}
.x16_c00166{left:475.346667pt;}
.x17_c00166{left:501.920000pt;}
.x18_c00166{left:551.920000pt;}
.x4_c00166{left:560.746667pt;}
.x19_c00166{left:589.920000pt;}
.x5_c00166{left:608.173333pt;}
}





/* 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_c00167 {
    display:none;
  }
  .loading-indicator_c00167.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00167 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_c00167 { 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_c00167" -> "#page-container .classname_c00167")
 */
.pf_c00167 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00167 { /* 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_c00167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00167 { /* 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_c00167 { /* 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_c00167 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00167 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00167 {overflow:visible;}
  }
}
.c_c00167 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00167 { /* 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_c00167:after { /* webkit #35443 */
  content: '';
}
.t_c00167:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00167 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 */
}
.__c00167 { /* 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_c00167 { /* info for Javascript */
  display:none;
}
.l_c00167 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00167 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00167 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00167: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_c00167 {
    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_c00167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00167.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_c00167 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00167;src:url('chunks/assets/font_b4c9e1bc688c09c303a538a9.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.284668;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_c00167;src:url('chunks/assets/font_fc2ebd23cd4c34b99930c155.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.284180;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;}
.m5_c00167{transform:matrix(0.181532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181532,0.000000,0.000000,0.250000,0,0);}
.m4_c00167{transform:matrix(0.234432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234432,0.000000,0.000000,0.250000,0,0);}
.m7_c00167{transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);}
.m3_c00167{transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);}
.m6_c00167{transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);}
.m0_c00167{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m2_c00167{transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);}
.m1_c00167{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);}
.v0_c00167{vertical-align:0.000000px;}
.ls71_c00167{letter-spacing:-2.625000px;}
.ls60_c00167{letter-spacing:-2.394000px;}
.ls52_c00167{letter-spacing:-2.310000px;}
.ls88_c00167{letter-spacing:-2.184000px;}
.ls5d_c00167{letter-spacing:-2.168280px;}
.ls5c_c00167{letter-spacing:-2.147760px;}
.ls75_c00167{letter-spacing:-2.142000px;}
.ls84_c00167{letter-spacing:-2.134080px;}
.ls70_c00167{letter-spacing:-1.963080px;}
.ls7b_c00167{letter-spacing:-1.812600px;}
.ls62_c00167{letter-spacing:-1.641600px;}
.ls5f_c00167{letter-spacing:-1.566360px;}
.ls6f_c00167{letter-spacing:-1.409040px;}
.ls67_c00167{letter-spacing:-1.313280px;}
.ls66_c00167{letter-spacing:-1.251720px;}
.ls76_c00167{letter-spacing:-1.197000px;}
.ls6d_c00167{letter-spacing:-1.169640px;}
.ls78_c00167{letter-spacing:-1.114920px;}
.ls5e_c00167{letter-spacing:-1.060200px;}
.ls57_c00167{letter-spacing:-1.032840px;}
.ls61_c00167{letter-spacing:-0.991800px;}
.ls7c_c00167{letter-spacing:-0.971280px;}
.ls85_c00167{letter-spacing:-0.950760px;}
.ls63_c00167{letter-spacing:-0.896040px;}
.ls83_c00167{letter-spacing:-0.800280px;}
.ls5a_c00167{letter-spacing:-0.772920px;}
.ls77_c00167{letter-spacing:-0.684000px;}
.ls64_c00167{letter-spacing:-0.656640px;}
.ls58_c00167{letter-spacing:-0.533520px;}
.ls55_c00167{letter-spacing:-0.526680px;}
.ls79_c00167{letter-spacing:-0.478800px;}
.ls86_c00167{letter-spacing:-0.458280px;}
.ls82_c00167{letter-spacing:-0.430920px;}
.ls54_c00167{letter-spacing:-0.410400px;}
.ls73_c00167{letter-spacing:-0.376200px;}
.ls80_c00167{letter-spacing:-0.369360px;}
.ls56_c00167{letter-spacing:-0.342000px;}
.ls68_c00167{letter-spacing:-0.321480px;}
.ls7f_c00167{letter-spacing:-0.287280px;}
.ls59_c00167{letter-spacing:-0.266760px;}
.ls7a_c00167{letter-spacing:-0.225720px;}
.ls69_c00167{letter-spacing:-0.191520px;}
.ls81_c00167{letter-spacing:-0.143640px;}
.ls7e_c00167{letter-spacing:-0.136800px;}
.ls5b_c00167{letter-spacing:-0.102600px;}
.ls6e_c00167{letter-spacing:-0.088920px;}
.ls6a_c00167{letter-spacing:-0.082080px;}
.ls72_c00167{letter-spacing:-0.075240px;}
.ls65_c00167{letter-spacing:-0.054720px;}
.ls6b_c00167{letter-spacing:-0.020520px;}
.ls53_c00167{letter-spacing:0.000000px;}
.ls1c_c00167{letter-spacing:0.006840px;}
.ls3a_c00167{letter-spacing:0.020520px;}
.ls7d_c00167{letter-spacing:0.027360px;}
.ls1a_c00167{letter-spacing:0.041040px;}
.ls3c_c00167{letter-spacing:0.047880px;}
.ls1b_c00167{letter-spacing:0.054720px;}
.ls2d_c00167{letter-spacing:0.068400px;}
.ls17_c00167{letter-spacing:0.075240px;}
.ls87_c00167{letter-spacing:0.082080px;}
.ls3f_c00167{letter-spacing:0.088920px;}
.ls4e_c00167{letter-spacing:0.102600px;}
.ls2f_c00167{letter-spacing:0.109440px;}
.ls74_c00167{letter-spacing:0.123120px;}
.ls39_c00167{letter-spacing:0.129960px;}
.ls51_c00167{letter-spacing:0.136800px;}
.ls1f_c00167{letter-spacing:0.150480px;}
.ls6c_c00167{letter-spacing:0.157320px;}
.ls3b_c00167{letter-spacing:0.164160px;}
.ls35_c00167{letter-spacing:0.212040px;}
.ls34_c00167{letter-spacing:0.218880px;}
.ls49_c00167{letter-spacing:0.223740px;}
.ls6_c00167{letter-spacing:0.225720px;}
.ls0_c00167{letter-spacing:0.239400px;}
.lse_c00167{letter-spacing:0.266760px;}
.ls37_c00167{letter-spacing:0.280440px;}
.ls4a_c00167{letter-spacing:0.284760px;}
.ls23_c00167{letter-spacing:0.287280px;}
.ls44_c00167{letter-spacing:0.294120px;}
.ls11_c00167{letter-spacing:0.314640px;}
.ls2a_c00167{letter-spacing:0.321480px;}
.ls4f_c00167{letter-spacing:0.335160px;}
.ls5_c00167{letter-spacing:0.362520px;}
.ls32_c00167{letter-spacing:0.393240px;}
.lsd_c00167{letter-spacing:0.396720px;}
.ls43_c00167{letter-spacing:0.410400px;}
.ls2b_c00167{letter-spacing:0.417240px;}
.ls50_c00167{letter-spacing:0.424080px;}
.ls9_c00167{letter-spacing:0.433920px;}
.ls7_c00167{letter-spacing:0.444600px;}
.ls18_c00167{letter-spacing:0.485640px;}
.lsa_c00167{letter-spacing:0.492480px;}
.ls36_c00167{letter-spacing:0.499320px;}
.ls1d_c00167{letter-spacing:0.506160px;}
.ls15_c00167{letter-spacing:0.526680px;}
.ls41_c00167{letter-spacing:0.540360px;}
.ls21_c00167{letter-spacing:0.560880px;}
.ls2_c00167{letter-spacing:0.588240px;}
.ls4c_c00167{letter-spacing:0.608760px;}
.ls22_c00167{letter-spacing:0.615600px;}
.ls45_c00167{letter-spacing:0.616980px;}
.ls25_c00167{letter-spacing:0.623760px;}
.ls46_c00167{letter-spacing:0.649800px;}
.ls10_c00167{letter-spacing:0.678000px;}
.ls33_c00167{letter-spacing:0.704520px;}
.ls8_c00167{letter-spacing:0.725040px;}
.lsf_c00167{letter-spacing:0.745800px;}
.ls20_c00167{letter-spacing:0.779700px;}
.ls2e_c00167{letter-spacing:0.779760px;}
.ls3_c00167{letter-spacing:0.841320px;}
.ls30_c00167{letter-spacing:0.881400px;}
.ls29_c00167{letter-spacing:0.916560px;}
.ls47_c00167{letter-spacing:0.930240px;}
.ls31_c00167{letter-spacing:0.937080px;}
.ls16_c00167{letter-spacing:0.964440px;}
.ls4_c00167{letter-spacing:0.978120px;}
.ls38_c00167{letter-spacing:1.012320px;}
.ls24_c00167{letter-spacing:1.017000px;}
.ls13_c00167{letter-spacing:1.064460px;}
.ls3e_c00167{letter-spacing:1.067040px;}
.ls40_c00167{letter-spacing:1.101240px;}
.ls2c_c00167{letter-spacing:1.251720px;}
.ls3d_c00167{letter-spacing:1.272240px;}
.lsc_c00167{letter-spacing:1.340640px;}
.ls4b_c00167{letter-spacing:1.347480px;}
.ls27_c00167{letter-spacing:1.402200px;}
.lsb_c00167{letter-spacing:1.539000px;}
.ls28_c00167{letter-spacing:1.545840px;}
.ls19_c00167{letter-spacing:1.552620px;}
.ls1e_c00167{letter-spacing:1.627200px;}
.ls12_c00167{letter-spacing:1.648440px;}
.ls1_c00167{letter-spacing:1.737360px;}
.ls48_c00167{letter-spacing:1.812600px;}
.ls26_c00167{letter-spacing:2.236680px;}
.ls4d_c00167{letter-spacing:2.250360px;}
.ls42_c00167{letter-spacing:2.961720px;}
.ls14_c00167{letter-spacing:3.139140px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{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__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00167{word-spacing:-16.833240px;}
.ws3_c00167{word-spacing:-1.051800px;}
.ws7_c00167{word-spacing:0.000000px;}
.ws4_c00167{word-spacing:13.493400px;}
.ws2_c00167{word-spacing:15.545760px;}
.ws5_c00167{word-spacing:17.771100px;}
.ws6_c00167{word-spacing:18.314040px;}
.ws1_c00167{word-spacing:19.280400px;}
._9_c00167{margin-left:-11.437860px;}
._16_c00167{margin-left:-6.289740px;}
._6_c00167{margin-left:-4.637520px;}
._7_c00167{margin-left:-3.317400px;}
._c_c00167{margin-left:-2.263800px;}
._8_c00167{margin-left:-1.242120px;}
._a_c00167{width:1.313940px;}
._5_c00167{width:3.180480px;}
._b_c00167{width:4.655880px;}
._4_c00167{width:5.779800px;}
._1_c00167{width:6.798960px;}
._3_c00167{width:8.242200px;}
._2_c00167{width:9.548640px;}
._0_c00167{width:11.149200px;}
._14_c00167{width:12.900240px;}
._13_c00167{width:14.104080px;}
._10_c00167{width:15.730200px;}
._11_c00167{width:17.040240px;}
._15_c00167{width:18.397800px;}
._12_c00167{width:19.475280px;}
._f_c00167{width:20.492640px;}
._e_c00167{width:23.037120px;}
._d_c00167{width:25.280640px;}
.fc0_c00167{color:transparent;}
.fs4_c00167{font-size:61.200000px;}
.fs5_c00167{font-size:62.400000px;}
.fs0_c00167{font-size:66.000000px;}
.fs2_c00167{font-size:67.800000px;}
.fs1_c00167{font-size:68.400000px;}
.fs3_c00167{font-size:75.000000px;}
.y0_c00167{bottom:0.000000px;}
.y1b_c00167{bottom:68.400015px;}
.y1a_c00167{bottom:146.168115px;}
.y19_c00167{bottom:176.760015px;}
.y18_c00167{bottom:239.766915px;}
.y17_c00167{bottom:270.735015px;}
.y15_c00167{bottom:333.360015px;}
.y16_c00167{bottom:333.375015px;}
.y14_c00167{bottom:364.328115px;}
.y13_c00167{bottom:394.913715px;}
.y12_c00167{bottom:426.600015px;}
.y11_c00167{bottom:489.600015px;}
.y10_c00167{bottom:552.969015px;}
.yf_c00167{bottom:583.920015px;}
.ye_c00167{bottom:583.926915px;}
.yd_c00167{bottom:614.895015px;}
.yc_c00167{bottom:677.166915px;}
.yb_c00167{bottom:708.135015px;}
.ya_c00167{bottom:770.775015px;}
.y9_c00167{bottom:802.095015px;}
.y8_c00167{bottom:865.095015px;}
.y7_c00167{bottom:865.099815px;}
.y6_c00167{bottom:927.720015px;}
.y5_c00167{bottom:959.040015px;}
.y4_c00167{bottom:1020.976815px;}
.y3_c00167{bottom:1083.255015px;}
.y2_c00167{bottom:1114.560015px;}
.y1_c00167{bottom:1189.815015px;}
.h5_c00167{height:60.064453px;}
.h8_c00167{height:61.242188px;}
.h2_c00167{height:64.775391px;}
.h3_c00167{height:67.130859px;}
.h6_c00167{height:67.156059px;}
.h7_c00167{height:67.158459px;}
.h4_c00167{height:73.608398px;}
.h1_c00167{height:1263.000000px;}
.h0_c00167{height:1263.240015px;}
.w1_c00167{width:892.500000px;}
.w0_c00167{width:892.800015px;}
.x0_c00167{left:0.000000px;}
.x10_c00167{left:122.004915px;}
.x8_c00167{left:123.447315px;}
.x1_c00167{left:125.565015px;}
.xf_c00167{left:175.845015px;}
.xb_c00167{left:176.925015px;}
.x6_c00167{left:178.335015px;}
.x2_c00167{left:179.526915px;}
.x3_c00167{left:275.895015px;}
.x9_c00167{left:297.930015px;}
.xa_c00167{left:324.555015px;}
.xd_c00167{left:344.010015px;}
.xe_c00167{left:361.650015px;}
.x4_c00167{left:376.095015px;}
.x5_c00167{left:393.285015px;}
.x11_c00167{left:422.835015px;}
.xc_c00167{left:455.040015px;}
.x7_c00167{left:682.005015px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls71_c00167{letter-spacing:-2.333333pt;}
.ls60_c00167{letter-spacing:-2.128000pt;}
.ls52_c00167{letter-spacing:-2.053333pt;}
.ls88_c00167{letter-spacing:-1.941333pt;}
.ls5d_c00167{letter-spacing:-1.927360pt;}
.ls5c_c00167{letter-spacing:-1.909120pt;}
.ls75_c00167{letter-spacing:-1.904000pt;}
.ls84_c00167{letter-spacing:-1.896960pt;}
.ls70_c00167{letter-spacing:-1.744960pt;}
.ls7b_c00167{letter-spacing:-1.611200pt;}
.ls62_c00167{letter-spacing:-1.459200pt;}
.ls5f_c00167{letter-spacing:-1.392320pt;}
.ls6f_c00167{letter-spacing:-1.252480pt;}
.ls67_c00167{letter-spacing:-1.167360pt;}
.ls66_c00167{letter-spacing:-1.112640pt;}
.ls76_c00167{letter-spacing:-1.064000pt;}
.ls6d_c00167{letter-spacing:-1.039680pt;}
.ls78_c00167{letter-spacing:-0.991040pt;}
.ls5e_c00167{letter-spacing:-0.942400pt;}
.ls57_c00167{letter-spacing:-0.918080pt;}
.ls61_c00167{letter-spacing:-0.881600pt;}
.ls7c_c00167{letter-spacing:-0.863360pt;}
.ls85_c00167{letter-spacing:-0.845120pt;}
.ls63_c00167{letter-spacing:-0.796480pt;}
.ls83_c00167{letter-spacing:-0.711360pt;}
.ls5a_c00167{letter-spacing:-0.687040pt;}
.ls77_c00167{letter-spacing:-0.608000pt;}
.ls64_c00167{letter-spacing:-0.583680pt;}
.ls58_c00167{letter-spacing:-0.474240pt;}
.ls55_c00167{letter-spacing:-0.468160pt;}
.ls79_c00167{letter-spacing:-0.425600pt;}
.ls86_c00167{letter-spacing:-0.407360pt;}
.ls82_c00167{letter-spacing:-0.383040pt;}
.ls54_c00167{letter-spacing:-0.364800pt;}
.ls73_c00167{letter-spacing:-0.334400pt;}
.ls80_c00167{letter-spacing:-0.328320pt;}
.ls56_c00167{letter-spacing:-0.304000pt;}
.ls68_c00167{letter-spacing:-0.285760pt;}
.ls7f_c00167{letter-spacing:-0.255360pt;}
.ls59_c00167{letter-spacing:-0.237120pt;}
.ls7a_c00167{letter-spacing:-0.200640pt;}
.ls69_c00167{letter-spacing:-0.170240pt;}
.ls81_c00167{letter-spacing:-0.127680pt;}
.ls7e_c00167{letter-spacing:-0.121600pt;}
.ls5b_c00167{letter-spacing:-0.091200pt;}
.ls6e_c00167{letter-spacing:-0.079040pt;}
.ls6a_c00167{letter-spacing:-0.072960pt;}
.ls72_c00167{letter-spacing:-0.066880pt;}
.ls65_c00167{letter-spacing:-0.048640pt;}
.ls6b_c00167{letter-spacing:-0.018240pt;}
.ls53_c00167{letter-spacing:0.000000pt;}
.ls1c_c00167{letter-spacing:0.006080pt;}
.ls3a_c00167{letter-spacing:0.018240pt;}
.ls7d_c00167{letter-spacing:0.024320pt;}
.ls1a_c00167{letter-spacing:0.036480pt;}
.ls3c_c00167{letter-spacing:0.042560pt;}
.ls1b_c00167{letter-spacing:0.048640pt;}
.ls2d_c00167{letter-spacing:0.060800pt;}
.ls17_c00167{letter-spacing:0.066880pt;}
.ls87_c00167{letter-spacing:0.072960pt;}
.ls3f_c00167{letter-spacing:0.079040pt;}
.ls4e_c00167{letter-spacing:0.091200pt;}
.ls2f_c00167{letter-spacing:0.097280pt;}
.ls74_c00167{letter-spacing:0.109440pt;}
.ls39_c00167{letter-spacing:0.115520pt;}
.ls51_c00167{letter-spacing:0.121600pt;}
.ls1f_c00167{letter-spacing:0.133760pt;}
.ls6c_c00167{letter-spacing:0.139840pt;}
.ls3b_c00167{letter-spacing:0.145920pt;}
.ls35_c00167{letter-spacing:0.188480pt;}
.ls34_c00167{letter-spacing:0.194560pt;}
.ls49_c00167{letter-spacing:0.198880pt;}
.ls6_c00167{letter-spacing:0.200640pt;}
.ls0_c00167{letter-spacing:0.212800pt;}
.lse_c00167{letter-spacing:0.237120pt;}
.ls37_c00167{letter-spacing:0.249280pt;}
.ls4a_c00167{letter-spacing:0.253120pt;}
.ls23_c00167{letter-spacing:0.255360pt;}
.ls44_c00167{letter-spacing:0.261440pt;}
.ls11_c00167{letter-spacing:0.279680pt;}
.ls2a_c00167{letter-spacing:0.285760pt;}
.ls4f_c00167{letter-spacing:0.297920pt;}
.ls5_c00167{letter-spacing:0.322240pt;}
.ls32_c00167{letter-spacing:0.349547pt;}
.lsd_c00167{letter-spacing:0.352640pt;}
.ls43_c00167{letter-spacing:0.364800pt;}
.ls2b_c00167{letter-spacing:0.370880pt;}
.ls50_c00167{letter-spacing:0.376960pt;}
.ls9_c00167{letter-spacing:0.385707pt;}
.ls7_c00167{letter-spacing:0.395200pt;}
.ls18_c00167{letter-spacing:0.431680pt;}
.lsa_c00167{letter-spacing:0.437760pt;}
.ls36_c00167{letter-spacing:0.443840pt;}
.ls1d_c00167{letter-spacing:0.449920pt;}
.ls15_c00167{letter-spacing:0.468160pt;}
.ls41_c00167{letter-spacing:0.480320pt;}
.ls21_c00167{letter-spacing:0.498560pt;}
.ls2_c00167{letter-spacing:0.522880pt;}
.ls4c_c00167{letter-spacing:0.541120pt;}
.ls22_c00167{letter-spacing:0.547200pt;}
.ls45_c00167{letter-spacing:0.548427pt;}
.ls25_c00167{letter-spacing:0.554453pt;}
.ls46_c00167{letter-spacing:0.577600pt;}
.ls10_c00167{letter-spacing:0.602667pt;}
.ls33_c00167{letter-spacing:0.626240pt;}
.ls8_c00167{letter-spacing:0.644480pt;}
.lsf_c00167{letter-spacing:0.662933pt;}
.ls20_c00167{letter-spacing:0.693067pt;}
.ls2e_c00167{letter-spacing:0.693120pt;}
.ls3_c00167{letter-spacing:0.747840pt;}
.ls30_c00167{letter-spacing:0.783467pt;}
.ls29_c00167{letter-spacing:0.814720pt;}
.ls47_c00167{letter-spacing:0.826880pt;}
.ls31_c00167{letter-spacing:0.832960pt;}
.ls16_c00167{letter-spacing:0.857280pt;}
.ls4_c00167{letter-spacing:0.869440pt;}
.ls38_c00167{letter-spacing:0.899840pt;}
.ls24_c00167{letter-spacing:0.904000pt;}
.ls13_c00167{letter-spacing:0.946187pt;}
.ls3e_c00167{letter-spacing:0.948480pt;}
.ls40_c00167{letter-spacing:0.978880pt;}
.ls2c_c00167{letter-spacing:1.112640pt;}
.ls3d_c00167{letter-spacing:1.130880pt;}
.lsc_c00167{letter-spacing:1.191680pt;}
.ls4b_c00167{letter-spacing:1.197760pt;}
.ls27_c00167{letter-spacing:1.246400pt;}
.lsb_c00167{letter-spacing:1.368000pt;}
.ls28_c00167{letter-spacing:1.374080pt;}
.ls19_c00167{letter-spacing:1.380107pt;}
.ls1e_c00167{letter-spacing:1.446400pt;}
.ls12_c00167{letter-spacing:1.465280pt;}
.ls1_c00167{letter-spacing:1.544320pt;}
.ls48_c00167{letter-spacing:1.611200pt;}
.ls26_c00167{letter-spacing:1.988160pt;}
.ls4d_c00167{letter-spacing:2.000320pt;}
.ls42_c00167{letter-spacing:2.632640pt;}
.ls14_c00167{letter-spacing:2.790347pt;}
.ws0_c00167{word-spacing:-14.962880pt;}
.ws3_c00167{word-spacing:-0.934933pt;}
.ws7_c00167{word-spacing:0.000000pt;}
.ws4_c00167{word-spacing:11.994133pt;}
.ws2_c00167{word-spacing:13.818453pt;}
.ws5_c00167{word-spacing:15.796533pt;}
.ws6_c00167{word-spacing:16.279147pt;}
.ws1_c00167{word-spacing:17.138133pt;}
._9_c00167{margin-left:-10.166987pt;}
._16_c00167{margin-left:-5.590880pt;}
._6_c00167{margin-left:-4.122240pt;}
._7_c00167{margin-left:-2.948800pt;}
._c_c00167{margin-left:-2.012267pt;}
._8_c00167{margin-left:-1.104107pt;}
._a_c00167{width:1.167947pt;}
._5_c00167{width:2.827093pt;}
._b_c00167{width:4.138560pt;}
._4_c00167{width:5.137600pt;}
._1_c00167{width:6.043520pt;}
._3_c00167{width:7.326400pt;}
._2_c00167{width:8.487680pt;}
._0_c00167{width:9.910400pt;}
._14_c00167{width:11.466880pt;}
._13_c00167{width:12.536960pt;}
._10_c00167{width:13.982400pt;}
._11_c00167{width:15.146880pt;}
._15_c00167{width:16.353600pt;}
._12_c00167{width:17.311360pt;}
._f_c00167{width:18.215680pt;}
._e_c00167{width:20.477440pt;}
._d_c00167{width:22.471680pt;}
.fs4_c00167{font-size:54.400000pt;}
.fs5_c00167{font-size:55.466667pt;}
.fs0_c00167{font-size:58.666667pt;}
.fs2_c00167{font-size:60.266667pt;}
.fs1_c00167{font-size:60.800000pt;}
.fs3_c00167{font-size:66.666667pt;}
.y0_c00167{bottom:0.000000pt;}
.y1b_c00167{bottom:60.800013pt;}
.y1a_c00167{bottom:129.927213pt;}
.y19_c00167{bottom:157.120013pt;}
.y18_c00167{bottom:213.126147pt;}
.y17_c00167{bottom:240.653347pt;}
.y15_c00167{bottom:296.320013pt;}
.y16_c00167{bottom:296.333347pt;}
.y14_c00167{bottom:323.847213pt;}
.y13_c00167{bottom:351.034413pt;}
.y12_c00167{bottom:379.200013pt;}
.y11_c00167{bottom:435.200013pt;}
.y10_c00167{bottom:491.528013pt;}
.yf_c00167{bottom:519.040013pt;}
.ye_c00167{bottom:519.046147pt;}
.yd_c00167{bottom:546.573347pt;}
.yc_c00167{bottom:601.926147pt;}
.yb_c00167{bottom:629.453347pt;}
.ya_c00167{bottom:685.133347pt;}
.y9_c00167{bottom:712.973347pt;}
.y8_c00167{bottom:768.973347pt;}
.y7_c00167{bottom:768.977613pt;}
.y6_c00167{bottom:824.640013pt;}
.y5_c00167{bottom:852.480013pt;}
.y4_c00167{bottom:907.534947pt;}
.y3_c00167{bottom:962.893347pt;}
.y2_c00167{bottom:990.720013pt;}
.y1_c00167{bottom:1057.613347pt;}
.h5_c00167{height:53.390625pt;}
.h8_c00167{height:54.437500pt;}
.h2_c00167{height:57.578125pt;}
.h3_c00167{height:59.671875pt;}
.h6_c00167{height:59.694275pt;}
.h7_c00167{height:59.696408pt;}
.h4_c00167{height:65.429688pt;}
.h1_c00167{height:1122.666667pt;}
.h0_c00167{height:1122.880013pt;}
.w1_c00167{width:793.333333pt;}
.w0_c00167{width:793.600013pt;}
.x0_c00167{left:0.000000pt;}
.x10_c00167{left:108.448813pt;}
.x8_c00167{left:109.730947pt;}
.x1_c00167{left:111.613347pt;}
.xf_c00167{left:156.306680pt;}
.xb_c00167{left:157.266680pt;}
.x6_c00167{left:158.520013pt;}
.x2_c00167{left:159.579480pt;}
.x3_c00167{left:245.240013pt;}
.x9_c00167{left:264.826680pt;}
.xa_c00167{left:288.493347pt;}
.xd_c00167{left:305.786680pt;}
.xe_c00167{left:321.466680pt;}
.x4_c00167{left:334.306680pt;}
.x5_c00167{left:349.586680pt;}
.x11_c00167{left:375.853347pt;}
.xc_c00167{left:404.480013pt;}
.x7_c00167{left:606.226680pt;}
}





/* 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_c00168 {
    display:none;
  }
  .loading-indicator_c00168.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00168 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_c00168 { 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_c00168" -> "#page-container .classname_c00168")
 */
.pf_c00168 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00168 { /* 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_c00168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00168 { /* 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_c00168 { /* 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_c00168 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00168 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00168 {overflow:visible;}
  }
}
.c_c00168 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00168 { /* 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_c00168:after { /* webkit #35443 */
  content: '';
}
.t_c00168:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00168 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 */
}
.__c00168 { /* 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_c00168 { /* info for Javascript */
  display:none;
}
.l_c00168 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00168 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00168 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00168: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_c00168 {
    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_c00168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00168.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_c00168 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00168;src:url('chunks/assets/font_b87076f4e563f1c81fdfc274.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.284668;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_c00168;src:url('chunks/assets/font_461cb1e658ae595b6ded6823.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.284180;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_c00168;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;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;}
.ma_c00168{transform:matrix(0.188207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188207,0.000000,0.000000,0.250000,0,0);}
.m9_c00168{transform:matrix(0.189172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189172,0.000000,0.000000,0.250000,0,0);}
.m7_c00168{transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);}
.mb_c00168{transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);}
.m6_c00168{transform:matrix(0.241134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241134,0.000000,0.000000,0.250000,0,0);}
.m5_c00168{transform:matrix(0.241826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241826,0.000000,0.000000,0.250000,0,0);}
.m2_c00168{transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);}
.m0_c00168{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m8_c00168{transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);}
.m3_c00168{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m1_c00168{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);}
.mc_c00168{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m4_c00168{transform:matrix(0.265237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265237,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls68_c00168{letter-spacing:-2.688000px;}
.ls50_c00168{letter-spacing:-2.415000px;}
.ls63_c00168{letter-spacing:-2.394000px;}
.ls4c_c00168{letter-spacing:-2.352000px;}
.ls6d_c00168{letter-spacing:-2.159700px;}
.ls56_c00168{letter-spacing:-1.959600px;}
.ls54_c00168{letter-spacing:-1.911300px;}
.ls4f_c00168{letter-spacing:-1.780200px;}
.ls55_c00168{letter-spacing:-1.483500px;}
.ls7f_c00168{letter-spacing:-1.435200px;}
.ls7c_c00168{letter-spacing:-1.428300px;}
.ls81_c00168{letter-spacing:-1.219800px;}
.ls52_c00168{letter-spacing:-1.166100px;}
.ls5a_c00168{letter-spacing:-1.083300px;}
.ls70_c00168{letter-spacing:-1.014300px;}
.ls7d_c00168{letter-spacing:-1.000500px;}
.ls6c_c00168{letter-spacing:-0.945300px;}
.ls6f_c00168{letter-spacing:-0.931500px;}
.ls7e_c00168{letter-spacing:-0.862500px;}
.ls62_c00168{letter-spacing:-0.821100px;}
.ls74_c00168{letter-spacing:-0.800400px;}
.ls53_c00168{letter-spacing:-0.710700px;}
.ls66_c00168{letter-spacing:-0.696900px;}
.ls6a_c00168{letter-spacing:-0.676200px;}
.ls79_c00168{letter-spacing:-0.538200px;}
.ls6e_c00168{letter-spacing:-0.496800px;}
.ls59_c00168{letter-spacing:-0.469200px;}
.ls5b_c00168{letter-spacing:-0.448500px;}
.ls4d_c00168{letter-spacing:-0.441600px;}
.ls60_c00168{letter-spacing:-0.420900px;}
.ls77_c00168{letter-spacing:-0.331200px;}
.ls7b_c00168{letter-spacing:-0.303600px;}
.ls65_c00168{letter-spacing:-0.241500px;}
.ls5c_c00168{letter-spacing:-0.234600px;}
.ls73_c00168{letter-spacing:-0.200100px;}
.ls5f_c00168{letter-spacing:-0.165600px;}
.ls58_c00168{letter-spacing:-0.158700px;}
.ls72_c00168{letter-spacing:-0.151800px;}
.ls5e_c00168{letter-spacing:-0.082800px;}
.ls76_c00168{letter-spacing:-0.069000px;}
.ls78_c00168{letter-spacing:-0.055200px;}
.ls6b_c00168{letter-spacing:-0.048300px;}
.ls4e_c00168{letter-spacing:-0.041400px;}
.ls64_c00168{letter-spacing:-0.034500px;}
.ls80_c00168{letter-spacing:-0.027600px;}
.ls5d_c00168{letter-spacing:-0.020700px;}
.ls71_c00168{letter-spacing:-0.013800px;}
.ls51_c00168{letter-spacing:0.000000px;}
.ls2c_c00168{letter-spacing:0.027600px;}
.ls6_c00168{letter-spacing:0.048300px;}
.ls40_c00168{letter-spacing:0.055200px;}
.ls32_c00168{letter-spacing:0.069000px;}
.ls75_c00168{letter-spacing:0.110400px;}
.ls13_c00168{letter-spacing:0.124200px;}
.lse_c00168{letter-spacing:0.131100px;}
.ls4_c00168{letter-spacing:0.144900px;}
.ls29_c00168{letter-spacing:0.158700px;}
.ls15_c00168{letter-spacing:0.165600px;}
.ls23_c00168{letter-spacing:0.172500px;}
.lsc_c00168{letter-spacing:0.179400px;}
.ls34_c00168{letter-spacing:0.186300px;}
.ls33_c00168{letter-spacing:0.227700px;}
.ls0_c00168{letter-spacing:0.229680px;}
.ls1c_c00168{letter-spacing:0.248400px;}
.ls44_c00168{letter-spacing:0.262200px;}
.ls31_c00168{letter-spacing:0.276000px;}
.ls14_c00168{letter-spacing:0.282900px;}
.ls3_c00168{letter-spacing:0.331200px;}
.ls1b_c00168{letter-spacing:0.345000px;}
.ls28_c00168{letter-spacing:0.351900px;}
.ls21_c00168{letter-spacing:0.358800px;}
.ls2f_c00168{letter-spacing:0.379500px;}
.ls67_c00168{letter-spacing:0.386400px;}
.ls45_c00168{letter-spacing:0.389760px;}
.ls1d_c00168{letter-spacing:0.400200px;}
.ls11_c00168{letter-spacing:0.427800px;}
.lsa_c00168{letter-spacing:0.434700px;}
.ls7a_c00168{letter-spacing:0.455400px;}
.ls39_c00168{letter-spacing:0.469200px;}
.ls3e_c00168{letter-spacing:0.478800px;}
.ls30_c00168{letter-spacing:0.489900px;}
.ls25_c00168{letter-spacing:0.492480px;}
.ls16_c00168{letter-spacing:0.496800px;}
.lsb_c00168{letter-spacing:0.503700px;}
.ls1f_c00168{letter-spacing:0.510600px;}
.ls38_c00168{letter-spacing:0.517500px;}
.ls4b_c00168{letter-spacing:0.540360px;}
.ls20_c00168{letter-spacing:0.572700px;}
.ls3a_c00168{letter-spacing:0.621000px;}
.ls10_c00168{letter-spacing:0.627900px;}
.ls49_c00168{letter-spacing:0.634800px;}
.ls3d_c00168{letter-spacing:0.656640px;}
.ls2a_c00168{letter-spacing:0.663480px;}
.lsd_c00168{letter-spacing:0.669300px;}
.ls2b_c00168{letter-spacing:0.683100px;}
.ls19_c00168{letter-spacing:0.717600px;}
.ls69_c00168{letter-spacing:0.724500px;}
.ls36_c00168{letter-spacing:0.752100px;}
.ls12_c00168{letter-spacing:0.765900px;}
.ls7_c00168{letter-spacing:0.786600px;}
.ls3b_c00168{letter-spacing:0.800280px;}
.ls27_c00168{letter-spacing:0.828000px;}
.ls4a_c00168{letter-spacing:0.855000px;}
.ls2d_c00168{letter-spacing:0.855600px;}
.ls9_c00168{letter-spacing:0.861840px;}
.ls3c_c00168{letter-spacing:0.910800px;}
.ls47_c00168{letter-spacing:0.917700px;}
.ls41_c00168{letter-spacing:0.938400px;}
.ls26_c00168{letter-spacing:0.950760px;}
.ls3f_c00168{letter-spacing:0.952200px;}
.ls61_c00168{letter-spacing:0.971280px;}
.ls1e_c00168{letter-spacing:1.000500px;}
.ls17_c00168{letter-spacing:1.083300px;}
.ls22_c00168{letter-spacing:1.097100px;}
.lsf_c00168{letter-spacing:1.104000px;}
.ls48_c00168{letter-spacing:1.110900px;}
.ls8_c00168{letter-spacing:1.169640px;}
.ls18_c00168{letter-spacing:1.311000px;}
.ls42_c00168{letter-spacing:1.331700px;}
.ls37_c00168{letter-spacing:1.359300px;}
.ls24_c00168{letter-spacing:1.409040px;}
.ls43_c00168{letter-spacing:1.469700px;}
.ls2_c00168{letter-spacing:1.476600px;}
.ls1a_c00168{letter-spacing:1.600800px;}
.ls5_c00168{letter-spacing:1.994100px;}
.ls2e_c00168{letter-spacing:2.539200px;}
.ls35_c00168{letter-spacing:2.559900px;}
.ls46_c00168{letter-spacing:2.811840px;}
.ls1_c00168{letter-spacing:3.375600px;}
.ls57_c00168{letter-spacing:3.450000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{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__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00168{word-spacing:-1.471800px;}
.ws0_c00168{word-spacing:-0.122160px;}
.ws5_c00168{word-spacing:0.000000px;}
.ws1_c00168{word-spacing:3.017760px;}
.ws2_c00168{word-spacing:4.257600px;}
.ws4_c00168{word-spacing:14.982000px;}
._1_c00168{margin-left:-7.015200px;}
._13_c00168{margin-left:-4.322820px;}
._4_c00168{margin-left:-3.270600px;}
._7_c00168{margin-left:-2.259540px;}
._0_c00168{margin-left:-1.204080px;}
._12_c00168{width:1.311000px;}
._8_c00168{width:2.387400px;}
._6_c00168{width:3.503100px;}
._10_c00168{width:4.621500px;}
._5_c00168{width:5.651100px;}
._2_c00168{width:7.534200px;}
._3_c00168{width:8.556000px;}
._a_c00168{width:9.846300px;}
._11_c00168{width:11.482200px;}
._9_c00168{width:13.063500px;}
._b_c00168{width:14.490000px;}
._c_c00168{width:16.380600px;}
._d_c00168{width:19.251000px;}
._e_c00168{width:20.893200px;}
._f_c00168{width:22.209600px;}
.fc0_c00168{color:transparent;}
.fs6_c00168{font-size:64.200000px;}
.fs0_c00168{font-size:67.200000px;}
.fs3_c00168{font-size:68.400000px;}
.fs2_c00168{font-size:69.000000px;}
.fs1_c00168{font-size:69.600000px;}
.fs5_c00168{font-size:76.800000px;}
.fs4_c00168{font-size:90.000000px;}
.y0_c00168{bottom:0.000000px;}
.y1e_c00168{bottom:68.415006px;}
.y1d_c00168{bottom:143.640006px;}
.y1c_c00168{bottom:206.280006px;}
.y1b_c00168{bottom:206.286756px;}
.y1a_c00168{bottom:237.975006px;}
.y19_c00168{bottom:237.982506px;}
.y17_c00168{bottom:300.249006px;}
.y18_c00168{bottom:300.255006px;}
.y16_c00168{bottom:331.920006px;}
.y15_c00168{bottom:394.941756px;}
.y14_c00168{bottom:426.975006px;}
.y13_c00168{bottom:489.255006px;}
.y11_c00168{bottom:551.523006px;}
.y12_c00168{bottom:551.535006px;}
.y10_c00168{bottom:582.849006px;}
.yf_c00168{bottom:614.175006px;}
.yd_c00168{bottom:676.446756px;}
.ye_c00168{bottom:676.455006px;}
.yc_c00168{bottom:708.480006px;}
.yb_c00168{bottom:771.840006px;}
.ya_c00168{bottom:803.520006px;}
.y9_c00168{bottom:834.828006px;}
.y8_c00168{bottom:866.516256px;}
.y7_c00168{bottom:897.480006px;}
.y6_c00168{bottom:959.775006px;}
.y4_c00168{bottom:1022.047506px;}
.y5_c00168{bottom:1022.055006px;}
.y3_c00168{bottom:1084.320006px;}
.y2_c00168{bottom:1116.000006px;}
.y1_c00168{bottom:1192.320006px;}
.hb_c00168{height:63.008789px;}
.h2_c00168{height:65.953125px;}
.h5_c00168{height:67.097461px;}
.h4_c00168{height:67.719727px;}
.h8_c00168{height:67.752727px;}
.h9_c00168{height:67.767727px;}
.h3_c00168{height:68.274609px;}
.ha_c00168{height:70.087500px;}
.h7_c00168{height:75.375000px;}
.h6_c00168{height:88.330078px;}
.h1_c00168{height:1263.000000px;}
.h0_c00168{height:1263.240006px;}
.w1_c00168{width:892.500000px;}
.w0_c00168{width:892.799998px;}
.x0_c00168{left:0.000000px;}
.x17_c00168{left:122.435249px;}
.xe_c00168{left:124.048498px;}
.x1_c00168{left:127.364998px;}
.x10_c00168{left:154.349998px;}
.x18_c00168{left:176.909999px;}
.x13_c00168{left:178.004998px;}
.xb_c00168{left:179.414998px;}
.x3_c00168{left:180.989998px;}
.x11_c00168{left:232.889999px;}
.x1d_c00168{left:243.524998px;}
.x4_c00168{left:248.564999px;}
.x12_c00168{left:264.029998px;}
.x1e_c00168{left:271.004999px;}
.x5_c00168{left:275.924999px;}
.x1c_c00168{left:298.574998px;}
.x2_c00168{left:323.774999px;}
.x6_c00168{left:351.884999px;}
.x7_c00168{left:380.639999px;}
.x1f_c00168{left:390.404998px;}
.x1a_c00168{left:408.494999px;}
.x20_c00168{left:421.319999px;}
.x25_c00168{left:425.324998px;}
.x1b_c00168{left:435.779999px;}
.x21_c00168{left:446.204998px;}
.x22_c00168{left:473.564998px;}
.xc_c00168{left:481.844998px;}
.x23_c00168{left:485.804999px;}
.xd_c00168{left:508.934999px;}
.x24_c00168{left:513.419999px;}
.x14_c00168{left:586.919999px;}
.x15_c00168{left:617.999998px;}
.x16_c00168{left:651.509999px;}
.x8_c00168{left:655.289999px;}
.xf_c00168{left:669.989998px;}
.x9_c00168{left:684.314999px;}
.x19_c00168{left:692.759999px;}
.xa_c00168{left:697.829998px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls68_c00168{letter-spacing:-2.389333pt;}
.ls50_c00168{letter-spacing:-2.146667pt;}
.ls63_c00168{letter-spacing:-2.128000pt;}
.ls4c_c00168{letter-spacing:-2.090667pt;}
.ls6d_c00168{letter-spacing:-1.919733pt;}
.ls56_c00168{letter-spacing:-1.741867pt;}
.ls54_c00168{letter-spacing:-1.698933pt;}
.ls4f_c00168{letter-spacing:-1.582400pt;}
.ls55_c00168{letter-spacing:-1.318667pt;}
.ls7f_c00168{letter-spacing:-1.275733pt;}
.ls7c_c00168{letter-spacing:-1.269600pt;}
.ls81_c00168{letter-spacing:-1.084267pt;}
.ls52_c00168{letter-spacing:-1.036533pt;}
.ls5a_c00168{letter-spacing:-0.962933pt;}
.ls70_c00168{letter-spacing:-0.901600pt;}
.ls7d_c00168{letter-spacing:-0.889333pt;}
.ls6c_c00168{letter-spacing:-0.840267pt;}
.ls6f_c00168{letter-spacing:-0.828000pt;}
.ls7e_c00168{letter-spacing:-0.766667pt;}
.ls62_c00168{letter-spacing:-0.729867pt;}
.ls74_c00168{letter-spacing:-0.711467pt;}
.ls53_c00168{letter-spacing:-0.631733pt;}
.ls66_c00168{letter-spacing:-0.619467pt;}
.ls6a_c00168{letter-spacing:-0.601067pt;}
.ls79_c00168{letter-spacing:-0.478400pt;}
.ls6e_c00168{letter-spacing:-0.441600pt;}
.ls59_c00168{letter-spacing:-0.417067pt;}
.ls5b_c00168{letter-spacing:-0.398667pt;}
.ls4d_c00168{letter-spacing:-0.392533pt;}
.ls60_c00168{letter-spacing:-0.374133pt;}
.ls77_c00168{letter-spacing:-0.294400pt;}
.ls7b_c00168{letter-spacing:-0.269867pt;}
.ls65_c00168{letter-spacing:-0.214667pt;}
.ls5c_c00168{letter-spacing:-0.208533pt;}
.ls73_c00168{letter-spacing:-0.177867pt;}
.ls5f_c00168{letter-spacing:-0.147200pt;}
.ls58_c00168{letter-spacing:-0.141067pt;}
.ls72_c00168{letter-spacing:-0.134933pt;}
.ls5e_c00168{letter-spacing:-0.073600pt;}
.ls76_c00168{letter-spacing:-0.061333pt;}
.ls78_c00168{letter-spacing:-0.049067pt;}
.ls6b_c00168{letter-spacing:-0.042933pt;}
.ls4e_c00168{letter-spacing:-0.036800pt;}
.ls64_c00168{letter-spacing:-0.030667pt;}
.ls80_c00168{letter-spacing:-0.024533pt;}
.ls5d_c00168{letter-spacing:-0.018400pt;}
.ls71_c00168{letter-spacing:-0.012267pt;}
.ls51_c00168{letter-spacing:0.000000pt;}
.ls2c_c00168{letter-spacing:0.024533pt;}
.ls6_c00168{letter-spacing:0.042933pt;}
.ls40_c00168{letter-spacing:0.049067pt;}
.ls32_c00168{letter-spacing:0.061333pt;}
.ls75_c00168{letter-spacing:0.098133pt;}
.ls13_c00168{letter-spacing:0.110400pt;}
.lse_c00168{letter-spacing:0.116533pt;}
.ls4_c00168{letter-spacing:0.128800pt;}
.ls29_c00168{letter-spacing:0.141067pt;}
.ls15_c00168{letter-spacing:0.147200pt;}
.ls23_c00168{letter-spacing:0.153333pt;}
.lsc_c00168{letter-spacing:0.159467pt;}
.ls34_c00168{letter-spacing:0.165600pt;}
.ls33_c00168{letter-spacing:0.202400pt;}
.ls0_c00168{letter-spacing:0.204160pt;}
.ls1c_c00168{letter-spacing:0.220800pt;}
.ls44_c00168{letter-spacing:0.233067pt;}
.ls31_c00168{letter-spacing:0.245333pt;}
.ls14_c00168{letter-spacing:0.251467pt;}
.ls3_c00168{letter-spacing:0.294400pt;}
.ls1b_c00168{letter-spacing:0.306667pt;}
.ls28_c00168{letter-spacing:0.312800pt;}
.ls21_c00168{letter-spacing:0.318933pt;}
.ls2f_c00168{letter-spacing:0.337333pt;}
.ls67_c00168{letter-spacing:0.343467pt;}
.ls45_c00168{letter-spacing:0.346453pt;}
.ls1d_c00168{letter-spacing:0.355733pt;}
.ls11_c00168{letter-spacing:0.380267pt;}
.lsa_c00168{letter-spacing:0.386400pt;}
.ls7a_c00168{letter-spacing:0.404800pt;}
.ls39_c00168{letter-spacing:0.417067pt;}
.ls3e_c00168{letter-spacing:0.425600pt;}
.ls30_c00168{letter-spacing:0.435467pt;}
.ls25_c00168{letter-spacing:0.437760pt;}
.ls16_c00168{letter-spacing:0.441600pt;}
.lsb_c00168{letter-spacing:0.447733pt;}
.ls1f_c00168{letter-spacing:0.453867pt;}
.ls38_c00168{letter-spacing:0.460000pt;}
.ls4b_c00168{letter-spacing:0.480320pt;}
.ls20_c00168{letter-spacing:0.509067pt;}
.ls3a_c00168{letter-spacing:0.552000pt;}
.ls10_c00168{letter-spacing:0.558133pt;}
.ls49_c00168{letter-spacing:0.564267pt;}
.ls3d_c00168{letter-spacing:0.583680pt;}
.ls2a_c00168{letter-spacing:0.589760pt;}
.lsd_c00168{letter-spacing:0.594933pt;}
.ls2b_c00168{letter-spacing:0.607200pt;}
.ls19_c00168{letter-spacing:0.637867pt;}
.ls69_c00168{letter-spacing:0.644000pt;}
.ls36_c00168{letter-spacing:0.668533pt;}
.ls12_c00168{letter-spacing:0.680800pt;}
.ls7_c00168{letter-spacing:0.699200pt;}
.ls3b_c00168{letter-spacing:0.711360pt;}
.ls27_c00168{letter-spacing:0.736000pt;}
.ls4a_c00168{letter-spacing:0.760000pt;}
.ls2d_c00168{letter-spacing:0.760533pt;}
.ls9_c00168{letter-spacing:0.766080pt;}
.ls3c_c00168{letter-spacing:0.809600pt;}
.ls47_c00168{letter-spacing:0.815733pt;}
.ls41_c00168{letter-spacing:0.834133pt;}
.ls26_c00168{letter-spacing:0.845120pt;}
.ls3f_c00168{letter-spacing:0.846400pt;}
.ls61_c00168{letter-spacing:0.863360pt;}
.ls1e_c00168{letter-spacing:0.889333pt;}
.ls17_c00168{letter-spacing:0.962933pt;}
.ls22_c00168{letter-spacing:0.975200pt;}
.lsf_c00168{letter-spacing:0.981333pt;}
.ls48_c00168{letter-spacing:0.987467pt;}
.ls8_c00168{letter-spacing:1.039680pt;}
.ls18_c00168{letter-spacing:1.165333pt;}
.ls42_c00168{letter-spacing:1.183733pt;}
.ls37_c00168{letter-spacing:1.208267pt;}
.ls24_c00168{letter-spacing:1.252480pt;}
.ls43_c00168{letter-spacing:1.306400pt;}
.ls2_c00168{letter-spacing:1.312533pt;}
.ls1a_c00168{letter-spacing:1.422933pt;}
.ls5_c00168{letter-spacing:1.772533pt;}
.ls2e_c00168{letter-spacing:2.257067pt;}
.ls35_c00168{letter-spacing:2.275467pt;}
.ls46_c00168{letter-spacing:2.499413pt;}
.ls1_c00168{letter-spacing:3.000533pt;}
.ls57_c00168{letter-spacing:3.066667pt;}
.ws3_c00168{word-spacing:-1.308267pt;}
.ws0_c00168{word-spacing:-0.108587pt;}
.ws5_c00168{word-spacing:0.000000pt;}
.ws1_c00168{word-spacing:2.682453pt;}
.ws2_c00168{word-spacing:3.784533pt;}
.ws4_c00168{word-spacing:13.317333pt;}
._1_c00168{margin-left:-6.235733pt;}
._13_c00168{margin-left:-3.842507pt;}
._4_c00168{margin-left:-2.907200pt;}
._7_c00168{margin-left:-2.008480pt;}
._0_c00168{margin-left:-1.070293pt;}
._12_c00168{width:1.165333pt;}
._8_c00168{width:2.122133pt;}
._6_c00168{width:3.113867pt;}
._10_c00168{width:4.108000pt;}
._5_c00168{width:5.023200pt;}
._2_c00168{width:6.697067pt;}
._3_c00168{width:7.605333pt;}
._a_c00168{width:8.752267pt;}
._11_c00168{width:10.206400pt;}
._9_c00168{width:11.612000pt;}
._b_c00168{width:12.880000pt;}
._c_c00168{width:14.560533pt;}
._d_c00168{width:17.112000pt;}
._e_c00168{width:18.571733pt;}
._f_c00168{width:19.741867pt;}
.fs6_c00168{font-size:57.066667pt;}
.fs0_c00168{font-size:59.733333pt;}
.fs3_c00168{font-size:60.800000pt;}
.fs2_c00168{font-size:61.333333pt;}
.fs1_c00168{font-size:61.866667pt;}
.fs5_c00168{font-size:68.266667pt;}
.fs4_c00168{font-size:80.000000pt;}
.y0_c00168{bottom:0.000000pt;}
.y1e_c00168{bottom:60.813339pt;}
.y1d_c00168{bottom:127.680005pt;}
.y1c_c00168{bottom:183.360005pt;}
.y1b_c00168{bottom:183.366005pt;}
.y1a_c00168{bottom:211.533339pt;}
.y19_c00168{bottom:211.540005pt;}
.y17_c00168{bottom:266.888005pt;}
.y18_c00168{bottom:266.893339pt;}
.y16_c00168{bottom:295.040005pt;}
.y15_c00168{bottom:351.059339pt;}
.y14_c00168{bottom:379.533339pt;}
.y13_c00168{bottom:434.893339pt;}
.y11_c00168{bottom:490.242672pt;}
.y12_c00168{bottom:490.253339pt;}
.y10_c00168{bottom:518.088005pt;}
.yf_c00168{bottom:545.933339pt;}
.yd_c00168{bottom:601.286005pt;}
.ye_c00168{bottom:601.293339pt;}
.yc_c00168{bottom:629.760005pt;}
.yb_c00168{bottom:686.080005pt;}
.ya_c00168{bottom:714.240005pt;}
.y9_c00168{bottom:742.069339pt;}
.y8_c00168{bottom:770.236672pt;}
.y7_c00168{bottom:797.760005pt;}
.y6_c00168{bottom:853.133339pt;}
.y4_c00168{bottom:908.486672pt;}
.y5_c00168{bottom:908.493339pt;}
.y3_c00168{bottom:963.840005pt;}
.y2_c00168{bottom:992.000005pt;}
.y1_c00168{bottom:1059.840005pt;}
.hb_c00168{height:56.007812pt;}
.h2_c00168{height:58.625000pt;}
.h5_c00168{height:59.642187pt;}
.h4_c00168{height:60.195312pt;}
.h8_c00168{height:60.224646pt;}
.h9_c00168{height:60.237979pt;}
.h3_c00168{height:60.688542pt;}
.ha_c00168{height:62.300000pt;}
.h7_c00168{height:67.000000pt;}
.h6_c00168{height:78.515625pt;}
.h1_c00168{height:1122.666667pt;}
.h0_c00168{height:1122.880005pt;}
.w1_c00168{width:793.333333pt;}
.w0_c00168{width:793.599999pt;}
.x0_c00168{left:0.000000pt;}
.x17_c00168{left:108.831332pt;}
.xe_c00168{left:110.265332pt;}
.x1_c00168{left:113.213332pt;}
.x10_c00168{left:137.199999pt;}
.x18_c00168{left:157.253332pt;}
.x13_c00168{left:158.226665pt;}
.xb_c00168{left:159.479999pt;}
.x3_c00168{left:160.879999pt;}
.x11_c00168{left:207.013332pt;}
.x1d_c00168{left:216.466665pt;}
.x4_c00168{left:220.946665pt;}
.x12_c00168{left:234.693332pt;}
.x1e_c00168{left:240.893332pt;}
.x5_c00168{left:245.266665pt;}
.x1c_c00168{left:265.399999pt;}
.x2_c00168{left:287.799999pt;}
.x6_c00168{left:312.786665pt;}
.x7_c00168{left:338.346665pt;}
.x1f_c00168{left:347.026665pt;}
.x1a_c00168{left:363.106665pt;}
.x20_c00168{left:374.506665pt;}
.x25_c00168{left:378.066665pt;}
.x1b_c00168{left:387.359999pt;}
.x21_c00168{left:396.626665pt;}
.x22_c00168{left:420.946665pt;}
.xc_c00168{left:428.306665pt;}
.x23_c00168{left:431.826665pt;}
.xd_c00168{left:452.386665pt;}
.x24_c00168{left:456.373332pt;}
.x14_c00168{left:521.706665pt;}
.x15_c00168{left:549.333332pt;}
.x16_c00168{left:579.119999pt;}
.x8_c00168{left:582.479999pt;}
.xf_c00168{left:595.546665pt;}
.x9_c00168{left:608.279999pt;}
.x19_c00168{left:615.786665pt;}
.xa_c00168{left:620.293332pt;}
}





/* 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_c00169 {
    display:none;
  }
  .loading-indicator_c00169.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00169 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_c00169 { 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_c00169" -> "#page-container .classname_c00169")
 */
.pf_c00169 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00169 { /* 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_c00169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00169 { /* 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_c00169 { /* 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_c00169 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00169 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00169 {overflow:visible;}
  }
}
.c_c00169 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00169 { /* 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_c00169:after { /* webkit #35443 */
  content: '';
}
.t_c00169:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00169 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 */
}
.__c00169 { /* 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_c00169 { /* info for Javascript */
  display:none;
}
.l_c00169 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00169 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00169 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00169: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_c00169 {
    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_c00169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00169.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_c00169 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00169;src:url('chunks/assets/font_dcbef5dfd16d538189b0dccb.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.284668;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_c00169;src:url('chunks/assets/font_e5f1b0eb05f9caf65dbe1bce.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.284180;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_c00169;src:url('chunks/assets/font_dce892a51328409b6cd46482.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:0.666000;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_c00169;src:url('chunks/assets/font_e5cc58055fcca96b297ee0ca.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;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;}
.m5_c00169{transform:matrix(0.220821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220821,0.000000,0.000000,0.250000,0,0);}
.m2_c00169{transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);}
.m9_c00169{transform:matrix(0.242645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242645,0.000000,0.000000,0.250000,0,0);}
.m3_c00169{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m6_c00169{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m0_c00169{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m4_c00169{transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);}
.mb_c00169{transform:matrix(0.248687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248687,0.000000,0.000000,0.250000,0,0);}
.ma_c00169{transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{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);}
.m7_c00169{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m8_c00169{transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls8e_c00169{letter-spacing:-2.604000px;}
.ls83_c00169{letter-spacing:-2.436000px;}
.ls66_c00169{letter-spacing:-2.373000px;}
.ls62_c00169{letter-spacing:-2.352000px;}
.ls6b_c00169{letter-spacing:-2.291640px;}
.ls65_c00169{letter-spacing:-2.271300px;}
.ls99_c00169{letter-spacing:-2.163000px;}
.ls8c_c00169{letter-spacing:-2.157600px;}
.ls94_c00169{letter-spacing:-2.047560px;}
.ls6a_c00169{letter-spacing:-1.891620px;}
.ls91_c00169{letter-spacing:-1.796700px;}
.ls8d_c00169{letter-spacing:-1.473120px;}
.ls8f_c00169{letter-spacing:-1.349220px;}
.ls75_c00169{letter-spacing:-1.254300px;}
.ls92_c00169{letter-spacing:-1.220400px;}
.ls85_c00169{letter-spacing:-1.078020px;}
.ls77_c00169{letter-spacing:-0.989880px;}
.ls6d_c00169{letter-spacing:-0.976320px;}
.ls69_c00169{letter-spacing:-0.928860px;}
.ls79_c00169{letter-spacing:-0.847500px;}
.ls82_c00169{letter-spacing:-0.820380px;}
.ls64_c00169{letter-spacing:-0.739020px;}
.ls96_c00169{letter-spacing:-0.691560px;}
.ls95_c00169{letter-spacing:-0.672000px;}
.ls93_c00169{letter-spacing:-0.610200px;}
.ls6c_c00169{letter-spacing:-0.569520px;}
.ls7c_c00169{letter-spacing:-0.494940px;}
.ls67_c00169{letter-spacing:-0.474600px;}
.ls7d_c00169{letter-spacing:-0.413580px;}
.ls70_c00169{letter-spacing:-0.372900px;}
.ls80_c00169{letter-spacing:-0.359340px;}
.ls74_c00169{letter-spacing:-0.339000px;}
.ls68_c00169{letter-spacing:-0.305100px;}
.ls71_c00169{letter-spacing:-0.264420px;}
.ls84_c00169{letter-spacing:-0.216960px;}
.ls63_c00169{letter-spacing:-0.210180px;}
.ls90_c00169{letter-spacing:-0.169500px;}
.ls73_c00169{letter-spacing:-0.162720px;}
.ls97_c00169{letter-spacing:-0.135600px;}
.ls7e_c00169{letter-spacing:-0.128820px;}
.ls88_c00169{letter-spacing:-0.088140px;}
.ls6e_c00169{letter-spacing:-0.081360px;}
.ls7b_c00169{letter-spacing:-0.033900px;}
.ls6f_c00169{letter-spacing:0.000000px;}
.ls2d_c00169{letter-spacing:0.020340px;}
.ls5d_c00169{letter-spacing:0.027120px;}
.ls15_c00169{letter-spacing:0.033900px;}
.ls28_c00169{letter-spacing:0.040680px;}
.ls55_c00169{letter-spacing:0.047040px;}
.ls7f_c00169{letter-spacing:0.081360px;}
.ls38_c00169{letter-spacing:0.101700px;}
.ls12_c00169{letter-spacing:0.108480px;}
.ls2b_c00169{letter-spacing:0.128820px;}
.ls5c_c00169{letter-spacing:0.155940px;}
.ls6_c00169{letter-spacing:0.162720px;}
.ls4c_c00169{letter-spacing:0.176280px;}
.ls42_c00169{letter-spacing:0.203400px;}
.ls32_c00169{letter-spacing:0.210180px;}
.ls5a_c00169{letter-spacing:0.223740px;}
.ls61_c00169{letter-spacing:0.235200px;}
.ls20_c00169{letter-spacing:0.257640px;}
.ls35_c00169{letter-spacing:0.264420px;}
.ls8_c00169{letter-spacing:0.271200px;}
.ls8b_c00169{letter-spacing:0.298320px;}
.ls41_c00169{letter-spacing:0.305100px;}
.ls2e_c00169{letter-spacing:0.311880px;}
.lsf_c00169{letter-spacing:0.339000px;}
.ls2f_c00169{letter-spacing:0.345780px;}
.ls37_c00169{letter-spacing:0.352560px;}
.ls4d_c00169{letter-spacing:0.379680px;}
.ls1d_c00169{letter-spacing:0.386460px;}
.ls2_c00169{letter-spacing:0.393240px;}
.ls5b_c00169{letter-spacing:0.406800px;}
.ls40_c00169{letter-spacing:0.413580px;}
.ls3c_c00169{letter-spacing:0.433920px;}
.ls36_c00169{letter-spacing:0.440700px;}
.ls53_c00169{letter-spacing:0.454260px;}
.ls13_c00169{letter-spacing:0.461040px;}
.ls1b_c00169{letter-spacing:0.467820px;}
.ls39_c00169{letter-spacing:0.474600px;}
.ls4_c00169{letter-spacing:0.481380px;}
.ls46_c00169{letter-spacing:0.508500px;}
.ls51_c00169{letter-spacing:0.510720px;}
.ls1f_c00169{letter-spacing:0.522060px;}
.ls9_c00169{letter-spacing:0.549180px;}
.ls8a_c00169{letter-spacing:0.569520px;}
.ls50_c00169{letter-spacing:0.596640px;}
.lsd_c00169{letter-spacing:0.603420px;}
.ls5f_c00169{letter-spacing:0.616980px;}
.ls3e_c00169{letter-spacing:0.623760px;}
.ls10_c00169{letter-spacing:0.644100px;}
.ls49_c00169{letter-spacing:0.650880px;}
.ls2c_c00169{letter-spacing:0.657660px;}
.lse_c00169{letter-spacing:0.664440px;}
.ls86_c00169{letter-spacing:0.671220px;}
.ls33_c00169{letter-spacing:0.672000px;}
.ls24_c00169{letter-spacing:0.678000px;}
.ls4f_c00169{letter-spacing:0.691560px;}
.ls4b_c00169{letter-spacing:0.705120px;}
.ls19_c00169{letter-spacing:0.725460px;}
.ls52_c00169{letter-spacing:0.732480px;}
.ls25_c00169{letter-spacing:0.739020px;}
.ls58_c00169{letter-spacing:0.745800px;}
.ls76_c00169{letter-spacing:0.759360px;}
.lsc_c00169{letter-spacing:0.766140px;}
.ls78_c00169{letter-spacing:0.786240px;}
.ls45_c00169{letter-spacing:0.786480px;}
.ls81_c00169{letter-spacing:0.806820px;}
.ls5_c00169{letter-spacing:0.820380px;}
.ls57_c00169{letter-spacing:0.854280px;}
.ls1_c00169{letter-spacing:0.866880px;}
.ls3b_c00169{letter-spacing:0.867840px;}
.ls26_c00169{letter-spacing:0.881400px;}
.ls3d_c00169{letter-spacing:0.888180px;}
.ls27_c00169{letter-spacing:0.922080px;}
.ls98_c00169{letter-spacing:0.927360px;}
.ls34_c00169{letter-spacing:0.928860px;}
.ls1c_c00169{letter-spacing:0.942420px;}
.ls48_c00169{letter-spacing:0.949200px;}
.ls17_c00169{letter-spacing:0.962760px;}
.lsb_c00169{letter-spacing:0.969540px;}
.ls47_c00169{letter-spacing:0.987840px;}
.ls29_c00169{letter-spacing:1.017000px;}
.ls0_c00169{letter-spacing:1.021440px;}
.ls31_c00169{letter-spacing:1.044120px;}
.ls44_c00169{letter-spacing:1.078020px;}
.ls72_c00169{letter-spacing:1.091580px;}
.ls21_c00169{letter-spacing:1.105140px;}
.ls60_c00169{letter-spacing:1.135680px;}
.ls11_c00169{letter-spacing:1.169280px;}
.ls1a_c00169{letter-spacing:1.186500px;}
.ls16_c00169{letter-spacing:1.200060px;}
.ls54_c00169{letter-spacing:1.267860px;}
.ls30_c00169{letter-spacing:1.290240px;}
.ls7_c00169{letter-spacing:1.296960px;}
.ls7a_c00169{letter-spacing:1.301760px;}
.ls3_c00169{letter-spacing:1.310400px;}
.ls22_c00169{letter-spacing:1.410240px;}
.ls14_c00169{letter-spacing:1.417020px;}
.ls43_c00169{letter-spacing:1.444140px;}
.ls3a_c00169{letter-spacing:1.478040px;}
.ls5e_c00169{letter-spacing:1.565760px;}
.ls18_c00169{letter-spacing:1.593300px;}
.ls4e_c00169{letter-spacing:1.674660px;}
.lsa_c00169{letter-spacing:1.767360px;}
.ls23_c00169{letter-spacing:1.837380px;}
.ls59_c00169{letter-spacing:1.918740px;}
.ls56_c00169{letter-spacing:1.932300px;}
.ls4a_c00169{letter-spacing:1.959420px;}
.ls3f_c00169{letter-spacing:2.162820px;}
.ls1e_c00169{letter-spacing:2.203500px;}
.ls89_c00169{letter-spacing:3.360000px;}
.ls2a_c00169{letter-spacing:3.376440px;}
.ls87_c00169{letter-spacing:3.390000px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{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__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00169{word-spacing:-1.731360px;}
.ws5_c00169{word-spacing:0.000000px;}
.ws4_c00169{word-spacing:4.967520px;}
.ws0_c00169{word-spacing:5.378880px;}
.ws3_c00169{word-spacing:25.821600px;}
.ws2_c00169{word-spacing:29.119200px;}
._7_c00169{margin-left:-6.155520px;}
._a_c00169{margin-left:-4.682160px;}
._9_c00169{margin-left:-3.579840px;}
._8_c00169{margin-left:-2.287680px;}
._4_c00169{margin-left:-1.128780px;}
._0_c00169{width:1.017600px;}
._5_c00169{width:2.430540px;}
._1_c00169{width:4.583280px;}
._b_c00169{width:5.783940px;}
._2_c00169{width:7.322400px;}
._c_c00169{width:8.425320px;}
._6_c00169{width:9.525300px;}
._3_c00169{width:10.983600px;}
._11_c00169{width:22.577400px;}
._e_c00169{width:23.628300px;}
._f_c00169{width:24.848700px;}
._d_c00169{width:26.523360px;}
._10_c00169{width:28.747200px;}
._12_c00169{width:31.594800px;}
.fc0_c00169{color:transparent;}
.fs2_c00169{font-size:51.840000px;}
.fs5_c00169{font-size:61.800000px;}
.fs0_c00169{font-size:67.200000px;}
.fs1_c00169{font-size:67.800000px;}
.fs3_c00169{font-size:69.600000px;}
.fs4_c00169{font-size:74.400000px;}
.y0_c00169{bottom:0.000000px;}
.y1f_c00169{bottom:66.600000px;}
.y1e_c00169{bottom:144.360000px;}
.y1d_c00169{bottom:174.600000px;}
.y1c_c00169{bottom:237.255000px;}
.y1b_c00169{bottom:237.259050px;}
.y1a_c00169{bottom:299.533350px;}
.y19_c00169{bottom:330.840000px;}
.y18_c00169{bottom:393.480000px;}
.y17_c00169{bottom:425.175000px;}
.y16_c00169{bottom:487.800000px;}
.y15_c00169{bottom:487.801650px;}
.y14_c00169{bottom:518.769300px;}
.y13_c00169{bottom:549.720000px;}
.y11_c00169{bottom:612.010200px;}
.y12_c00169{bottom:612.015000px;}
.y10_c00169{bottom:643.316850px;}
.yf_c00169{bottom:674.640450px;}
.yd_c00169{bottom:706.316400px;}
.ye_c00169{bottom:706.320000px;}
.yc_c00169{bottom:737.640000px;}
.yb_c00169{bottom:800.280000px;}
.ya_c00169{bottom:800.285400px;}
.y9_c00169{bottom:863.654550px;}
.y8_c00169{bottom:894.605250px;}
.y7_c00169{bottom:925.207350px;}
.y6_c00169{bottom:956.175000px;}
.y5_c00169{bottom:1018.815000px;}
.y4_c00169{bottom:1049.760000px;}
.y3_c00169{bottom:1081.080000px;}
.y2_c00169{bottom:1112.400000px;}
.y1_c00169{bottom:1188.015000px;}
.h5_c00169{height:34.525440px;}
.hb_c00169{height:60.653320px;}
.h9_c00169{height:65.920312px;}
.h2_c00169{height:65.953125px;}
.h4_c00169{height:66.520392px;}
.h3_c00169{height:66.541992px;}
.h6_c00169{height:66.561192px;}
.h8_c00169{height:70.713281px;}
.h7_c00169{height:72.590625px;}
.ha_c00169{height:72.983203px;}
.h1_c00169{height:1263.000000px;}
.h0_c00169{height:1263.240000px;}
.w1_c00169{width:892.500000px;}
.w0_c00169{width:892.800000px;}
.x0_c00169{left:0.000000px;}
.x5_c00169{left:124.563900px;}
.x1_c00169{left:125.565000px;}
.xa_c00169{left:145.260000px;}
.xb_c00169{left:161.610000px;}
.x17_c00169{left:177.255000px;}
.x9_c00169{left:178.365000px;}
.x2_c00169{left:179.775000px;}
.x13_c00169{left:282.015000px;}
.xc_c00169{left:329.580000px;}
.x6_c00169{left:334.635000px;}
.xd_c00169{left:350.460000px;}
.x7_c00169{left:354.930000px;}
.x15_c00169{left:376.335000px;}
.x16_c00169{left:396.555000px;}
.x18_c00169{left:424.980000px;}
.x4_c00169{left:449.280000px;}
.x8_c00169{left:475.695000px;}
.x14_c00169{left:484.395000px;}
.xe_c00169{left:486.540000px;}
.x12_c00169{left:492.660000px;}
.xf_c00169{left:503.925000px;}
.x10_c00169{left:614.370000px;}
.x11_c00169{left:632.055000px;}
.x3_c00169{left:719.070000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls8e_c00169{letter-spacing:-2.314667pt;}
.ls83_c00169{letter-spacing:-2.165333pt;}
.ls66_c00169{letter-spacing:-2.109333pt;}
.ls62_c00169{letter-spacing:-2.090667pt;}
.ls6b_c00169{letter-spacing:-2.037013pt;}
.ls65_c00169{letter-spacing:-2.018933pt;}
.ls99_c00169{letter-spacing:-1.922667pt;}
.ls8c_c00169{letter-spacing:-1.917867pt;}
.ls94_c00169{letter-spacing:-1.820053pt;}
.ls6a_c00169{letter-spacing:-1.681440pt;}
.ls91_c00169{letter-spacing:-1.597067pt;}
.ls8d_c00169{letter-spacing:-1.309440pt;}
.ls8f_c00169{letter-spacing:-1.199307pt;}
.ls75_c00169{letter-spacing:-1.114933pt;}
.ls92_c00169{letter-spacing:-1.084800pt;}
.ls85_c00169{letter-spacing:-0.958240pt;}
.ls77_c00169{letter-spacing:-0.879893pt;}
.ls6d_c00169{letter-spacing:-0.867840pt;}
.ls69_c00169{letter-spacing:-0.825653pt;}
.ls79_c00169{letter-spacing:-0.753333pt;}
.ls82_c00169{letter-spacing:-0.729227pt;}
.ls64_c00169{letter-spacing:-0.656907pt;}
.ls96_c00169{letter-spacing:-0.614720pt;}
.ls95_c00169{letter-spacing:-0.597333pt;}
.ls93_c00169{letter-spacing:-0.542400pt;}
.ls6c_c00169{letter-spacing:-0.506240pt;}
.ls7c_c00169{letter-spacing:-0.439947pt;}
.ls67_c00169{letter-spacing:-0.421867pt;}
.ls7d_c00169{letter-spacing:-0.367627pt;}
.ls70_c00169{letter-spacing:-0.331467pt;}
.ls80_c00169{letter-spacing:-0.319413pt;}
.ls74_c00169{letter-spacing:-0.301333pt;}
.ls68_c00169{letter-spacing:-0.271200pt;}
.ls71_c00169{letter-spacing:-0.235040pt;}
.ls84_c00169{letter-spacing:-0.192853pt;}
.ls63_c00169{letter-spacing:-0.186827pt;}
.ls90_c00169{letter-spacing:-0.150667pt;}
.ls73_c00169{letter-spacing:-0.144640pt;}
.ls97_c00169{letter-spacing:-0.120533pt;}
.ls7e_c00169{letter-spacing:-0.114507pt;}
.ls88_c00169{letter-spacing:-0.078347pt;}
.ls6e_c00169{letter-spacing:-0.072320pt;}
.ls7b_c00169{letter-spacing:-0.030133pt;}
.ls6f_c00169{letter-spacing:0.000000pt;}
.ls2d_c00169{letter-spacing:0.018080pt;}
.ls5d_c00169{letter-spacing:0.024107pt;}
.ls15_c00169{letter-spacing:0.030133pt;}
.ls28_c00169{letter-spacing:0.036160pt;}
.ls55_c00169{letter-spacing:0.041813pt;}
.ls7f_c00169{letter-spacing:0.072320pt;}
.ls38_c00169{letter-spacing:0.090400pt;}
.ls12_c00169{letter-spacing:0.096427pt;}
.ls2b_c00169{letter-spacing:0.114507pt;}
.ls5c_c00169{letter-spacing:0.138613pt;}
.ls6_c00169{letter-spacing:0.144640pt;}
.ls4c_c00169{letter-spacing:0.156693pt;}
.ls42_c00169{letter-spacing:0.180800pt;}
.ls32_c00169{letter-spacing:0.186827pt;}
.ls5a_c00169{letter-spacing:0.198880pt;}
.ls61_c00169{letter-spacing:0.209067pt;}
.ls20_c00169{letter-spacing:0.229013pt;}
.ls35_c00169{letter-spacing:0.235040pt;}
.ls8_c00169{letter-spacing:0.241067pt;}
.ls8b_c00169{letter-spacing:0.265173pt;}
.ls41_c00169{letter-spacing:0.271200pt;}
.ls2e_c00169{letter-spacing:0.277227pt;}
.lsf_c00169{letter-spacing:0.301333pt;}
.ls2f_c00169{letter-spacing:0.307360pt;}
.ls37_c00169{letter-spacing:0.313387pt;}
.ls4d_c00169{letter-spacing:0.337493pt;}
.ls1d_c00169{letter-spacing:0.343520pt;}
.ls2_c00169{letter-spacing:0.349547pt;}
.ls5b_c00169{letter-spacing:0.361600pt;}
.ls40_c00169{letter-spacing:0.367627pt;}
.ls3c_c00169{letter-spacing:0.385707pt;}
.ls36_c00169{letter-spacing:0.391733pt;}
.ls53_c00169{letter-spacing:0.403787pt;}
.ls13_c00169{letter-spacing:0.409813pt;}
.ls1b_c00169{letter-spacing:0.415840pt;}
.ls39_c00169{letter-spacing:0.421867pt;}
.ls4_c00169{letter-spacing:0.427893pt;}
.ls46_c00169{letter-spacing:0.452000pt;}
.ls51_c00169{letter-spacing:0.453973pt;}
.ls1f_c00169{letter-spacing:0.464053pt;}
.ls9_c00169{letter-spacing:0.488160pt;}
.ls8a_c00169{letter-spacing:0.506240pt;}
.ls50_c00169{letter-spacing:0.530347pt;}
.lsd_c00169{letter-spacing:0.536373pt;}
.ls5f_c00169{letter-spacing:0.548427pt;}
.ls3e_c00169{letter-spacing:0.554453pt;}
.ls10_c00169{letter-spacing:0.572533pt;}
.ls49_c00169{letter-spacing:0.578560pt;}
.ls2c_c00169{letter-spacing:0.584587pt;}
.lse_c00169{letter-spacing:0.590613pt;}
.ls86_c00169{letter-spacing:0.596640pt;}
.ls33_c00169{letter-spacing:0.597333pt;}
.ls24_c00169{letter-spacing:0.602667pt;}
.ls4f_c00169{letter-spacing:0.614720pt;}
.ls4b_c00169{letter-spacing:0.626773pt;}
.ls19_c00169{letter-spacing:0.644853pt;}
.ls52_c00169{letter-spacing:0.651093pt;}
.ls25_c00169{letter-spacing:0.656907pt;}
.ls58_c00169{letter-spacing:0.662933pt;}
.ls76_c00169{letter-spacing:0.674987pt;}
.lsc_c00169{letter-spacing:0.681013pt;}
.ls78_c00169{letter-spacing:0.698880pt;}
.ls45_c00169{letter-spacing:0.699093pt;}
.ls81_c00169{letter-spacing:0.717173pt;}
.ls5_c00169{letter-spacing:0.729227pt;}
.ls57_c00169{letter-spacing:0.759360pt;}
.ls1_c00169{letter-spacing:0.770560pt;}
.ls3b_c00169{letter-spacing:0.771413pt;}
.ls26_c00169{letter-spacing:0.783467pt;}
.ls3d_c00169{letter-spacing:0.789493pt;}
.ls27_c00169{letter-spacing:0.819627pt;}
.ls98_c00169{letter-spacing:0.824320pt;}
.ls34_c00169{letter-spacing:0.825653pt;}
.ls1c_c00169{letter-spacing:0.837707pt;}
.ls48_c00169{letter-spacing:0.843733pt;}
.ls17_c00169{letter-spacing:0.855787pt;}
.lsb_c00169{letter-spacing:0.861813pt;}
.ls47_c00169{letter-spacing:0.878080pt;}
.ls29_c00169{letter-spacing:0.904000pt;}
.ls0_c00169{letter-spacing:0.907947pt;}
.ls31_c00169{letter-spacing:0.928107pt;}
.ls44_c00169{letter-spacing:0.958240pt;}
.ls72_c00169{letter-spacing:0.970293pt;}
.ls21_c00169{letter-spacing:0.982347pt;}
.ls60_c00169{letter-spacing:1.009493pt;}
.ls11_c00169{letter-spacing:1.039360pt;}
.ls1a_c00169{letter-spacing:1.054667pt;}
.ls16_c00169{letter-spacing:1.066720pt;}
.ls54_c00169{letter-spacing:1.126987pt;}
.ls30_c00169{letter-spacing:1.146880pt;}
.ls7_c00169{letter-spacing:1.152853pt;}
.ls7a_c00169{letter-spacing:1.157120pt;}
.ls3_c00169{letter-spacing:1.164800pt;}
.ls22_c00169{letter-spacing:1.253547pt;}
.ls14_c00169{letter-spacing:1.259573pt;}
.ls43_c00169{letter-spacing:1.283680pt;}
.ls3a_c00169{letter-spacing:1.313813pt;}
.ls5e_c00169{letter-spacing:1.391787pt;}
.ls18_c00169{letter-spacing:1.416267pt;}
.ls4e_c00169{letter-spacing:1.488587pt;}
.lsa_c00169{letter-spacing:1.570987pt;}
.ls23_c00169{letter-spacing:1.633227pt;}
.ls59_c00169{letter-spacing:1.705547pt;}
.ls56_c00169{letter-spacing:1.717600pt;}
.ls4a_c00169{letter-spacing:1.741707pt;}
.ls3f_c00169{letter-spacing:1.922507pt;}
.ls1e_c00169{letter-spacing:1.958667pt;}
.ls89_c00169{letter-spacing:2.986667pt;}
.ls2a_c00169{letter-spacing:3.001280pt;}
.ls87_c00169{letter-spacing:3.013333pt;}
.ws1_c00169{word-spacing:-1.538987pt;}
.ws5_c00169{word-spacing:0.000000pt;}
.ws4_c00169{word-spacing:4.415573pt;}
.ws0_c00169{word-spacing:4.781227pt;}
.ws3_c00169{word-spacing:22.952533pt;}
.ws2_c00169{word-spacing:25.883733pt;}
._7_c00169{margin-left:-5.471573pt;}
._a_c00169{margin-left:-4.161920pt;}
._9_c00169{margin-left:-3.182080pt;}
._8_c00169{margin-left:-2.033493pt;}
._4_c00169{margin-left:-1.003360pt;}
._0_c00169{width:0.904533pt;}
._5_c00169{width:2.160480pt;}
._1_c00169{width:4.074027pt;}
._b_c00169{width:5.141280pt;}
._2_c00169{width:6.508800pt;}
._c_c00169{width:7.489173pt;}
._6_c00169{width:8.466933pt;}
._3_c00169{width:9.763200pt;}
._11_c00169{width:20.068800pt;}
._e_c00169{width:21.002933pt;}
._f_c00169{width:22.087733pt;}
._d_c00169{width:23.576320pt;}
._10_c00169{width:25.553067pt;}
._12_c00169{width:28.084267pt;}
.fs2_c00169{font-size:46.080000pt;}
.fs5_c00169{font-size:54.933333pt;}
.fs0_c00169{font-size:59.733333pt;}
.fs1_c00169{font-size:60.266667pt;}
.fs3_c00169{font-size:61.866667pt;}
.fs4_c00169{font-size:66.133333pt;}
.y0_c00169{bottom:0.000000pt;}
.y1f_c00169{bottom:59.200000pt;}
.y1e_c00169{bottom:128.320000pt;}
.y1d_c00169{bottom:155.200000pt;}
.y1c_c00169{bottom:210.893333pt;}
.y1b_c00169{bottom:210.896933pt;}
.y1a_c00169{bottom:266.251867pt;}
.y19_c00169{bottom:294.080000pt;}
.y18_c00169{bottom:349.760000pt;}
.y17_c00169{bottom:377.933333pt;}
.y16_c00169{bottom:433.600000pt;}
.y15_c00169{bottom:433.601467pt;}
.y14_c00169{bottom:461.128267pt;}
.y13_c00169{bottom:488.640000pt;}
.y11_c00169{bottom:544.009067pt;}
.y12_c00169{bottom:544.013333pt;}
.y10_c00169{bottom:571.837200pt;}
.yf_c00169{bottom:599.680400pt;}
.yd_c00169{bottom:627.836800pt;}
.ye_c00169{bottom:627.840000pt;}
.yc_c00169{bottom:655.680000pt;}
.yb_c00169{bottom:711.360000pt;}
.ya_c00169{bottom:711.364800pt;}
.y9_c00169{bottom:767.692933pt;}
.y8_c00169{bottom:795.204667pt;}
.y7_c00169{bottom:822.406533pt;}
.y6_c00169{bottom:849.933333pt;}
.y5_c00169{bottom:905.613333pt;}
.y4_c00169{bottom:933.120000pt;}
.y3_c00169{bottom:960.960000pt;}
.y2_c00169{bottom:988.800000pt;}
.y1_c00169{bottom:1056.013333pt;}
.h5_c00169{height:30.689280pt;}
.hb_c00169{height:53.914062pt;}
.h9_c00169{height:58.595833pt;}
.h2_c00169{height:58.625000pt;}
.h4_c00169{height:59.129237pt;}
.h3_c00169{height:59.148438pt;}
.h6_c00169{height:59.165504pt;}
.h8_c00169{height:62.856250pt;}
.h7_c00169{height:64.525000pt;}
.ha_c00169{height:64.873958pt;}
.h1_c00169{height:1122.666667pt;}
.h0_c00169{height:1122.880000pt;}
.w1_c00169{width:793.333333pt;}
.w0_c00169{width:793.600000pt;}
.x0_c00169{left:0.000000pt;}
.x5_c00169{left:110.723467pt;}
.x1_c00169{left:111.613333pt;}
.xa_c00169{left:129.120000pt;}
.xb_c00169{left:143.653333pt;}
.x17_c00169{left:157.560000pt;}
.x9_c00169{left:158.546667pt;}
.x2_c00169{left:159.800000pt;}
.x13_c00169{left:250.680000pt;}
.xc_c00169{left:292.960000pt;}
.x6_c00169{left:297.453333pt;}
.xd_c00169{left:311.520000pt;}
.x7_c00169{left:315.493333pt;}
.x15_c00169{left:334.520000pt;}
.x16_c00169{left:352.493333pt;}
.x18_c00169{left:377.760000pt;}
.x4_c00169{left:399.360000pt;}
.x8_c00169{left:422.840000pt;}
.x14_c00169{left:430.573333pt;}
.xe_c00169{left:432.480000pt;}
.x12_c00169{left:437.920000pt;}
.xf_c00169{left:447.933333pt;}
.x10_c00169{left:546.106667pt;}
.x11_c00169{left:561.826667pt;}
.x3_c00169{left:639.173333pt;}
}





/* 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_c00170 {
    display:none;
  }
  .loading-indicator_c00170.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00170 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_c00170 { 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_c00170" -> "#page-container .classname_c00170")
 */
.pf_c00170 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00170 { /* 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_c00170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00170 { /* 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_c00170 { /* 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_c00170 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00170 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00170 {overflow:visible;}
  }
}
.c_c00170 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00170 { /* 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_c00170:after { /* webkit #35443 */
  content: '';
}
.t_c00170:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00170 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 */
}
.__c00170 { /* 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_c00170 { /* info for Javascript */
  display:none;
}
.l_c00170 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00170 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00170 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00170: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_c00170 {
    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_c00170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00170.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_c00170 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00170;src:url('chunks/assets/font_b324bd44e3749f7358aeb105.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.284668;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_c00170;src:url('chunks/assets/font_471702f72d917f7da3f1d605.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.284180;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_c00170;src:url('chunks/assets/font_3a2c6ebdab7cfd1e8fc80238.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;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:ff4_c00170;src:url('chunks/assets/font_218cb07c859a014d7d775f2b.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:0.666000;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;}
.m3_c00170{transform:matrix(0.143615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143615,0.000000,0.000000,0.250000,0,0);}
.m5_c00170{transform:matrix(0.151319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151319,0.000000,0.000000,0.250000,0,0);}
.m4_c00170{transform:matrix(0.178026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178026,0.000000,0.000000,0.250000,0,0);}
.m7_c00170{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.me_c00170{transform:matrix(0.235526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235526,0.000000,0.000000,0.250000,0,0);}
.m9_c00170{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.mc_c00170{transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);}
.md_c00170{transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);}
.m2_c00170{transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);}
.ma_c00170{transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);}
.m0_c00170{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.mb_c00170{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m8_c00170{transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);}
.m6_c00170{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m1_c00170{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);}
.v0_c00170{vertical-align:0.000000px;}
.ls5e_c00170{letter-spacing:-3.486000px;}
.ls5d_c00170{letter-spacing:-2.646000px;}
.ls6e_c00170{letter-spacing:-2.436000px;}
.ls52_c00170{letter-spacing:-2.373000px;}
.ls40_c00170{letter-spacing:-2.331000px;}
.ls76_c00170{letter-spacing:-2.310000px;}
.ls83_c00170{letter-spacing:-2.234160px;}
.ls82_c00170{letter-spacing:-1.927920px;}
.ls78_c00170{letter-spacing:-1.823520px;}
.ls81_c00170{letter-spacing:-1.774800px;}
.ls48_c00170{letter-spacing:-1.649520px;}
.ls49_c00170{letter-spacing:-1.531200px;}
.ls85_c00170{letter-spacing:-1.503360px;}
.ls73_c00170{letter-spacing:-1.426800px;}
.ls5b_c00170{letter-spacing:-1.343280px;}
.ls80_c00170{letter-spacing:-1.315440px;}
.ls46_c00170{letter-spacing:-1.218000px;}
.ls75_c00170{letter-spacing:-1.204080px;}
.ls4f_c00170{letter-spacing:-1.169280px;}
.ls5c_c00170{letter-spacing:-1.141440px;}
.ls8b_c00170{letter-spacing:-1.099680px;}
.ls69_c00170{letter-spacing:-1.064880px;}
.ls7d_c00170{letter-spacing:-0.932640px;}
.ls6c_c00170{letter-spacing:-0.835200px;}
.ls84_c00170{letter-spacing:-0.779520px;}
.ls62_c00170{letter-spacing:-0.758640px;}
.ls86_c00170{letter-spacing:-0.744720px;}
.ls65_c00170{letter-spacing:-0.675120px;}
.ls56_c00170{letter-spacing:-0.654240px;}
.ls7a_c00170{letter-spacing:-0.640320px;}
.ls72_c00170{letter-spacing:-0.619440px;}
.ls68_c00170{letter-spacing:-0.612480px;}
.ls5f_c00170{letter-spacing:-0.584640px;}
.ls45_c00170{letter-spacing:-0.556800px;}
.ls7f_c00170{letter-spacing:-0.549840px;}
.ls74_c00170{letter-spacing:-0.508080px;}
.ls7e_c00170{letter-spacing:-0.452400px;}
.ls63_c00170{letter-spacing:-0.445440px;}
.ls42_c00170{letter-spacing:-0.431520px;}
.ls88_c00170{letter-spacing:-0.396720px;}
.ls4b_c00170{letter-spacing:-0.382800px;}
.ls71_c00170{letter-spacing:-0.368880px;}
.ls67_c00170{letter-spacing:-0.361920px;}
.ls5a_c00170{letter-spacing:-0.348000px;}
.ls60_c00170{letter-spacing:-0.327120px;}
.ls89_c00170{letter-spacing:-0.299280px;}
.ls6d_c00170{letter-spacing:-0.278400px;}
.ls6b_c00170{letter-spacing:-0.264480px;}
.ls59_c00170{letter-spacing:-0.250560px;}
.ls53_c00170{letter-spacing:-0.229680px;}
.ls61_c00170{letter-spacing:-0.222720px;}
.ls51_c00170{letter-spacing:-0.208800px;}
.ls6a_c00170{letter-spacing:-0.187920px;}
.ls44_c00170{letter-spacing:-0.180960px;}
.ls6f_c00170{letter-spacing:-0.174000px;}
.ls47_c00170{letter-spacing:-0.153120px;}
.ls43_c00170{letter-spacing:-0.146160px;}
.ls87_c00170{letter-spacing:-0.139200px;}
.ls4e_c00170{letter-spacing:-0.132240px;}
.ls64_c00170{letter-spacing:-0.104400px;}
.ls54_c00170{letter-spacing:-0.097440px;}
.ls4a_c00170{letter-spacing:-0.083520px;}
.ls58_c00170{letter-spacing:-0.076560px;}
.ls79_c00170{letter-spacing:-0.069600px;}
.ls8a_c00170{letter-spacing:-0.062640px;}
.ls77_c00170{letter-spacing:-0.055680px;}
.ls66_c00170{letter-spacing:-0.048720px;}
.ls57_c00170{letter-spacing:-0.027840px;}
.ls70_c00170{letter-spacing:-0.020880px;}
.ls4c_c00170{letter-spacing:-0.013920px;}
.ls7c_c00170{letter-spacing:-0.006960px;}
.ls41_c00170{letter-spacing:0.000000px;}
.ls12_c00170{letter-spacing:0.006960px;}
.ls2d_c00170{letter-spacing:0.013920px;}
.ls2c_c00170{letter-spacing:0.020880px;}
.ls27_c00170{letter-spacing:0.041760px;}
.ls20_c00170{letter-spacing:0.048720px;}
.ls22_c00170{letter-spacing:0.062640px;}
.ls3e_c00170{letter-spacing:0.069600px;}
.ls1d_c00170{letter-spacing:0.076560px;}
.ls18_c00170{letter-spacing:0.111360px;}
.ls2e_c00170{letter-spacing:0.118320px;}
.ls28_c00170{letter-spacing:0.125280px;}
.lsd_c00170{letter-spacing:0.160080px;}
.ls11_c00170{letter-spacing:0.174000px;}
.ls2_c00170{letter-spacing:0.187920px;}
.ls23_c00170{letter-spacing:0.194880px;}
.ls4_c00170{letter-spacing:0.201840px;}
.ls1e_c00170{letter-spacing:0.208800px;}
.ls1f_c00170{letter-spacing:0.215760px;}
.ls26_c00170{letter-spacing:0.222720px;}
.ls14_c00170{letter-spacing:0.229680px;}
.ls3d_c00170{letter-spacing:0.243600px;}
.ls16_c00170{letter-spacing:0.271440px;}
.ls15_c00170{letter-spacing:0.292320px;}
.ls38_c00170{letter-spacing:0.306240px;}
.ls1_c00170{letter-spacing:0.313200px;}
.ls31_c00170{letter-spacing:0.320160px;}
.ls25_c00170{letter-spacing:0.327120px;}
.ls4d_c00170{letter-spacing:0.361920px;}
.lsf_c00170{letter-spacing:0.389760px;}
.lsc_c00170{letter-spacing:0.403680px;}
.ls21_c00170{letter-spacing:0.417600px;}
.ls50_c00170{letter-spacing:0.424560px;}
.ls3c_c00170{letter-spacing:0.459360px;}
.ls1c_c00170{letter-spacing:0.480240px;}
.ls5_c00170{letter-spacing:0.494160px;}
.ls3f_c00170{letter-spacing:0.501120px;}
.ls7_c00170{letter-spacing:0.515040px;}
.ls3_c00170{letter-spacing:0.542880px;}
.ls32_c00170{letter-spacing:0.556800px;}
.ls2f_c00170{letter-spacing:0.583080px;}
.ls2a_c00170{letter-spacing:0.598560px;}
.ls30_c00170{letter-spacing:0.603420px;}
.lsb_c00170{letter-spacing:0.737760px;}
.ls1b_c00170{letter-spacing:0.759360px;}
.ls10_c00170{letter-spacing:0.779520px;}
.ls8c_c00170{letter-spacing:0.786240px;}
.ls7b_c00170{letter-spacing:0.793440px;}
.ls2b_c00170{letter-spacing:0.800400px;}
.ls17_c00170{letter-spacing:0.835200px;}
.lsa_c00170{letter-spacing:0.861060px;}
.ls24_c00170{letter-spacing:0.883920px;}
.ls39_c00170{letter-spacing:0.901740px;}
.ls34_c00170{letter-spacing:0.918720px;}
.ls29_c00170{letter-spacing:0.949200px;}
.ls0_c00170{letter-spacing:1.017000px;}
.ls6_c00170{letter-spacing:1.085760px;}
.ls36_c00170{letter-spacing:1.108080px;}
.ls19_c00170{letter-spacing:1.118700px;}
.ls9_c00170{letter-spacing:1.193280px;}
.ls3a_c00170{letter-spacing:1.254300px;}
.ls3b_c00170{letter-spacing:1.398960px;}
.ls35_c00170{letter-spacing:1.607760px;}
.ls37_c00170{letter-spacing:1.668960px;}
.lse_c00170{letter-spacing:1.728900px;}
.ls8_c00170{letter-spacing:1.983600px;}
.ls13_c00170{letter-spacing:2.164560px;}
.ls55_c00170{letter-spacing:2.442960px;}
.ls33_c00170{letter-spacing:2.839680px;}
.ls1a_c00170{letter-spacing:15.703200px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{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__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00170{word-spacing:0.000000px;}
.ws2_c00170{word-spacing:0.126000px;}
.ws5_c00170{word-spacing:3.714780px;}
.ws0_c00170{word-spacing:5.758200px;}
.ws1_c00170{word-spacing:5.882760px;}
.ws6_c00170{word-spacing:8.638200px;}
.ws4_c00170{word-spacing:11.347800px;}
.ws3_c00170{word-spacing:40.372200px;}
._12_c00170{margin-left:-5.475240px;}
._c_c00170{margin-left:-3.433560px;}
._11_c00170{margin-left:-2.178720px;}
._b_c00170{margin-left:-1.071840px;}
._a_c00170{width:1.117200px;}
._d_c00170{width:2.255040px;}
._7_c00170{width:3.322200px;}
._9_c00170{width:4.487220px;}
._0_c00170{width:5.533200px;}
._3_c00170{width:6.723360px;}
._2_c00170{width:7.916880px;}
._e_c00170{width:9.056400px;}
._8_c00170{width:10.574640px;}
._5_c00170{width:11.964000px;}
._1_c00170{width:13.655760px;}
._4_c00170{width:14.817600px;}
._f_c00170{width:17.022000px;}
._6_c00170{width:18.458160px;}
._15_c00170{width:19.968240px;}
._14_c00170{width:21.297600px;}
._16_c00170{width:22.689600px;}
._13_c00170{width:24.680160px;}
._18_c00170{width:26.684640px;}
._17_c00170{width:27.909600px;}
._10_c00170{width:32.874240px;}
.fc0_c00170{color:transparent;}
.fs6_c00170{font-size:51.600000px;}
.fs5_c00170{font-size:54.720000px;}
.fs9_c00170{font-size:62.400000px;}
.fs7_c00170{font-size:66.000000px;}
.fs0_c00170{font-size:66.600000px;}
.fs1_c00170{font-size:67.800000px;}
.fs8_c00170{font-size:68.400000px;}
.fs2_c00170{font-size:69.600000px;}
.fs3_c00170{font-size:75.600000px;}
.fs4_c00170{font-size:99.600000px;}
.y0_c00170{bottom:0.000000px;}
.y1d_c00170{bottom:73.815000px;}
.y1c_c00170{bottom:149.397600px;}
.y1b_c00170{bottom:180.735000px;}
.y1a_c00170{bottom:243.375000px;}
.y18_c00170{bottom:305.994600px;}
.y19_c00170{bottom:306.000000px;}
.y17_c00170{bottom:369.000000px;}
.y16_c00170{bottom:401.040000px;}
.y15_c00170{bottom:463.335000px;}
.y14_c00170{bottom:494.655000px;}
.y13_c00170{bottom:556.566600px;}
.y12_c00170{bottom:588.600000px;}
.y11_c00170{bottom:651.600000px;}
.yf_c00170{bottom:682.932000px;}
.y10_c00170{bottom:682.935000px;}
.yd_c00170{bottom:714.597600px;}
.ye_c00170{bottom:714.600000px;}
.yc_c00170{bottom:745.935000px;}
.yb_c00170{bottom:764.655000px;}
.ya_c00170{bottom:776.880000px;}
.y9_c00170{bottom:839.520000px;}
.y7_c00170{bottom:902.169600px;}
.y8_c00170{bottom:902.175000px;}
.y6_c00170{bottom:933.855000px;}
.y5_c00170{bottom:965.175000px;}
.y4_c00170{bottom:1027.815000px;}
.y3_c00170{bottom:1059.135000px;}
.y2_c00170{bottom:1090.455000px;}
.y1_c00170{bottom:1198.455000px;}
.h8_c00170{height:36.443520px;}
.h9_c00170{height:53.817187px;}
.hc_c00170{height:61.242188px;}
.h2_c00170{height:65.364258px;}
.h4_c00170{height:66.508887px;}
.h3_c00170{height:68.308594px;}
.ha_c00170{height:68.318194px;}
.h5_c00170{height:68.330194px;}
.hb_c00170{height:68.835938px;}
.h6_c00170{height:78.848437px;}
.h7_c00170{height:97.703320px;}
.h1_c00170{height:1263.000000px;}
.h0_c00170{height:1263.240000px;}
.w1_c00170{width:892.500000px;}
.w0_c00170{width:892.800000px;}
.x0_c00170{left:0.000000px;}
.x18_c00170{left:116.250600px;}
.x10_c00170{left:117.900000px;}
.x7_c00170{left:119.112000px;}
.x3_c00170{left:120.273000px;}
.x1_c00170{left:122.685000px;}
.x5_c00170{left:141.240000px;}
.x6_c00170{left:161.130000px;}
.x1e_c00170{left:169.695000px;}
.x17_c00170{left:171.165000px;}
.xd_c00170{left:172.215000px;}
.x4_c00170{left:174.045000px;}
.x2_c00170{left:175.485000px;}
.x1a_c00170{left:212.520000px;}
.x1b_c00170{left:237.405000px;}
.x1c_c00170{left:265.110000px;}
.x19_c00170{left:312.975000px;}
.x16_c00170{left:352.215000px;}
.x22_c00170{left:419.580000px;}
.xb_c00170{left:426.885000px;}
.x1d_c00170{left:437.580000px;}
.x13_c00170{left:446.025000px;}
.xc_c00170{left:454.155000px;}
.x14_c00170{left:460.995000px;}
.xe_c00170{left:496.095000px;}
.x1f_c00170{left:518.535000px;}
.xf_c00170{left:527.775000px;}
.x20_c00170{left:534.765000px;}
.x21_c00170{left:562.815000px;}
.x8_c00170{left:604.725000px;}
.x9_c00170{left:632.415000px;}
.xa_c00170{left:653.235000px;}
.x11_c00170{left:695.370000px;}
.x12_c00170{left:714.450000px;}
.x15_c00170{left:733.440000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls5e_c00170{letter-spacing:-3.098667pt;}
.ls5d_c00170{letter-spacing:-2.352000pt;}
.ls6e_c00170{letter-spacing:-2.165333pt;}
.ls52_c00170{letter-spacing:-2.109333pt;}
.ls40_c00170{letter-spacing:-2.072000pt;}
.ls76_c00170{letter-spacing:-2.053333pt;}
.ls83_c00170{letter-spacing:-1.985920pt;}
.ls82_c00170{letter-spacing:-1.713707pt;}
.ls78_c00170{letter-spacing:-1.620907pt;}
.ls81_c00170{letter-spacing:-1.577600pt;}
.ls48_c00170{letter-spacing:-1.466240pt;}
.ls49_c00170{letter-spacing:-1.361067pt;}
.ls85_c00170{letter-spacing:-1.336320pt;}
.ls73_c00170{letter-spacing:-1.268267pt;}
.ls5b_c00170{letter-spacing:-1.194027pt;}
.ls80_c00170{letter-spacing:-1.169280pt;}
.ls46_c00170{letter-spacing:-1.082667pt;}
.ls75_c00170{letter-spacing:-1.070293pt;}
.ls4f_c00170{letter-spacing:-1.039360pt;}
.ls5c_c00170{letter-spacing:-1.014613pt;}
.ls8b_c00170{letter-spacing:-0.977493pt;}
.ls69_c00170{letter-spacing:-0.946560pt;}
.ls7d_c00170{letter-spacing:-0.829013pt;}
.ls6c_c00170{letter-spacing:-0.742400pt;}
.ls84_c00170{letter-spacing:-0.692907pt;}
.ls62_c00170{letter-spacing:-0.674347pt;}
.ls86_c00170{letter-spacing:-0.661973pt;}
.ls65_c00170{letter-spacing:-0.600107pt;}
.ls56_c00170{letter-spacing:-0.581547pt;}
.ls7a_c00170{letter-spacing:-0.569173pt;}
.ls72_c00170{letter-spacing:-0.550613pt;}
.ls68_c00170{letter-spacing:-0.544427pt;}
.ls5f_c00170{letter-spacing:-0.519680pt;}
.ls45_c00170{letter-spacing:-0.494933pt;}
.ls7f_c00170{letter-spacing:-0.488747pt;}
.ls74_c00170{letter-spacing:-0.451627pt;}
.ls7e_c00170{letter-spacing:-0.402133pt;}
.ls63_c00170{letter-spacing:-0.395947pt;}
.ls42_c00170{letter-spacing:-0.383573pt;}
.ls88_c00170{letter-spacing:-0.352640pt;}
.ls4b_c00170{letter-spacing:-0.340267pt;}
.ls71_c00170{letter-spacing:-0.327893pt;}
.ls67_c00170{letter-spacing:-0.321707pt;}
.ls5a_c00170{letter-spacing:-0.309333pt;}
.ls60_c00170{letter-spacing:-0.290773pt;}
.ls89_c00170{letter-spacing:-0.266027pt;}
.ls6d_c00170{letter-spacing:-0.247467pt;}
.ls6b_c00170{letter-spacing:-0.235093pt;}
.ls59_c00170{letter-spacing:-0.222720pt;}
.ls53_c00170{letter-spacing:-0.204160pt;}
.ls61_c00170{letter-spacing:-0.197973pt;}
.ls51_c00170{letter-spacing:-0.185600pt;}
.ls6a_c00170{letter-spacing:-0.167040pt;}
.ls44_c00170{letter-spacing:-0.160853pt;}
.ls6f_c00170{letter-spacing:-0.154667pt;}
.ls47_c00170{letter-spacing:-0.136107pt;}
.ls43_c00170{letter-spacing:-0.129920pt;}
.ls87_c00170{letter-spacing:-0.123733pt;}
.ls4e_c00170{letter-spacing:-0.117547pt;}
.ls64_c00170{letter-spacing:-0.092800pt;}
.ls54_c00170{letter-spacing:-0.086613pt;}
.ls4a_c00170{letter-spacing:-0.074240pt;}
.ls58_c00170{letter-spacing:-0.068053pt;}
.ls79_c00170{letter-spacing:-0.061867pt;}
.ls8a_c00170{letter-spacing:-0.055680pt;}
.ls77_c00170{letter-spacing:-0.049493pt;}
.ls66_c00170{letter-spacing:-0.043307pt;}
.ls57_c00170{letter-spacing:-0.024747pt;}
.ls70_c00170{letter-spacing:-0.018560pt;}
.ls4c_c00170{letter-spacing:-0.012373pt;}
.ls7c_c00170{letter-spacing:-0.006187pt;}
.ls41_c00170{letter-spacing:0.000000pt;}
.ls12_c00170{letter-spacing:0.006187pt;}
.ls2d_c00170{letter-spacing:0.012373pt;}
.ls2c_c00170{letter-spacing:0.018560pt;}
.ls27_c00170{letter-spacing:0.037120pt;}
.ls20_c00170{letter-spacing:0.043307pt;}
.ls22_c00170{letter-spacing:0.055680pt;}
.ls3e_c00170{letter-spacing:0.061867pt;}
.ls1d_c00170{letter-spacing:0.068053pt;}
.ls18_c00170{letter-spacing:0.098987pt;}
.ls2e_c00170{letter-spacing:0.105173pt;}
.ls28_c00170{letter-spacing:0.111360pt;}
.lsd_c00170{letter-spacing:0.142293pt;}
.ls11_c00170{letter-spacing:0.154667pt;}
.ls2_c00170{letter-spacing:0.167040pt;}
.ls23_c00170{letter-spacing:0.173227pt;}
.ls4_c00170{letter-spacing:0.179413pt;}
.ls1e_c00170{letter-spacing:0.185600pt;}
.ls1f_c00170{letter-spacing:0.191787pt;}
.ls26_c00170{letter-spacing:0.197973pt;}
.ls14_c00170{letter-spacing:0.204160pt;}
.ls3d_c00170{letter-spacing:0.216533pt;}
.ls16_c00170{letter-spacing:0.241280pt;}
.ls15_c00170{letter-spacing:0.259840pt;}
.ls38_c00170{letter-spacing:0.272213pt;}
.ls1_c00170{letter-spacing:0.278400pt;}
.ls31_c00170{letter-spacing:0.284587pt;}
.ls25_c00170{letter-spacing:0.290773pt;}
.ls4d_c00170{letter-spacing:0.321707pt;}
.lsf_c00170{letter-spacing:0.346453pt;}
.lsc_c00170{letter-spacing:0.358827pt;}
.ls21_c00170{letter-spacing:0.371200pt;}
.ls50_c00170{letter-spacing:0.377387pt;}
.ls3c_c00170{letter-spacing:0.408320pt;}
.ls1c_c00170{letter-spacing:0.426880pt;}
.ls5_c00170{letter-spacing:0.439253pt;}
.ls3f_c00170{letter-spacing:0.445440pt;}
.ls7_c00170{letter-spacing:0.457813pt;}
.ls3_c00170{letter-spacing:0.482560pt;}
.ls32_c00170{letter-spacing:0.494933pt;}
.ls2f_c00170{letter-spacing:0.518293pt;}
.ls2a_c00170{letter-spacing:0.532053pt;}
.ls30_c00170{letter-spacing:0.536373pt;}
.lsb_c00170{letter-spacing:0.655787pt;}
.ls1b_c00170{letter-spacing:0.674987pt;}
.ls10_c00170{letter-spacing:0.692907pt;}
.ls8c_c00170{letter-spacing:0.698880pt;}
.ls7b_c00170{letter-spacing:0.705280pt;}
.ls2b_c00170{letter-spacing:0.711467pt;}
.ls17_c00170{letter-spacing:0.742400pt;}
.lsa_c00170{letter-spacing:0.765387pt;}
.ls24_c00170{letter-spacing:0.785707pt;}
.ls39_c00170{letter-spacing:0.801547pt;}
.ls34_c00170{letter-spacing:0.816640pt;}
.ls29_c00170{letter-spacing:0.843733pt;}
.ls0_c00170{letter-spacing:0.904000pt;}
.ls6_c00170{letter-spacing:0.965120pt;}
.ls36_c00170{letter-spacing:0.984960pt;}
.ls19_c00170{letter-spacing:0.994400pt;}
.ls9_c00170{letter-spacing:1.060693pt;}
.ls3a_c00170{letter-spacing:1.114933pt;}
.ls3b_c00170{letter-spacing:1.243520pt;}
.ls35_c00170{letter-spacing:1.429120pt;}
.ls37_c00170{letter-spacing:1.483520pt;}
.lse_c00170{letter-spacing:1.536800pt;}
.ls8_c00170{letter-spacing:1.763200pt;}
.ls13_c00170{letter-spacing:1.924053pt;}
.ls55_c00170{letter-spacing:2.171520pt;}
.ls33_c00170{letter-spacing:2.524160pt;}
.ls1a_c00170{letter-spacing:13.958400pt;}
.ws7_c00170{word-spacing:0.000000pt;}
.ws2_c00170{word-spacing:0.112000pt;}
.ws5_c00170{word-spacing:3.302027pt;}
.ws0_c00170{word-spacing:5.118400pt;}
.ws1_c00170{word-spacing:5.229120pt;}
.ws6_c00170{word-spacing:7.678400pt;}
.ws4_c00170{word-spacing:10.086933pt;}
.ws3_c00170{word-spacing:35.886400pt;}
._12_c00170{margin-left:-4.866880pt;}
._c_c00170{margin-left:-3.052053pt;}
._11_c00170{margin-left:-1.936640pt;}
._b_c00170{margin-left:-0.952747pt;}
._a_c00170{width:0.993067pt;}
._d_c00170{width:2.004480pt;}
._7_c00170{width:2.953067pt;}
._9_c00170{width:3.988640pt;}
._0_c00170{width:4.918400pt;}
._3_c00170{width:5.976320pt;}
._2_c00170{width:7.037227pt;}
._e_c00170{width:8.050133pt;}
._8_c00170{width:9.399680pt;}
._5_c00170{width:10.634667pt;}
._1_c00170{width:12.138453pt;}
._4_c00170{width:13.171200pt;}
._f_c00170{width:15.130667pt;}
._6_c00170{width:16.407253pt;}
._15_c00170{width:17.749547pt;}
._14_c00170{width:18.931200pt;}
._16_c00170{width:20.168533pt;}
._13_c00170{width:21.937920pt;}
._18_c00170{width:23.719680pt;}
._17_c00170{width:24.808533pt;}
._10_c00170{width:29.221547pt;}
.fs6_c00170{font-size:45.866667pt;}
.fs5_c00170{font-size:48.640000pt;}
.fs9_c00170{font-size:55.466667pt;}
.fs7_c00170{font-size:58.666667pt;}
.fs0_c00170{font-size:59.200000pt;}
.fs1_c00170{font-size:60.266667pt;}
.fs8_c00170{font-size:60.800000pt;}
.fs2_c00170{font-size:61.866667pt;}
.fs3_c00170{font-size:67.200000pt;}
.fs4_c00170{font-size:88.533333pt;}
.y0_c00170{bottom:0.000000pt;}
.y1d_c00170{bottom:65.613333pt;}
.y1c_c00170{bottom:132.797867pt;}
.y1b_c00170{bottom:160.653333pt;}
.y1a_c00170{bottom:216.333333pt;}
.y18_c00170{bottom:271.995200pt;}
.y19_c00170{bottom:272.000000pt;}
.y17_c00170{bottom:328.000000pt;}
.y16_c00170{bottom:356.480000pt;}
.y15_c00170{bottom:411.853333pt;}
.y14_c00170{bottom:439.693333pt;}
.y13_c00170{bottom:494.725867pt;}
.y12_c00170{bottom:523.200000pt;}
.y11_c00170{bottom:579.200000pt;}
.yf_c00170{bottom:607.050667pt;}
.y10_c00170{bottom:607.053333pt;}
.yd_c00170{bottom:635.197867pt;}
.ye_c00170{bottom:635.200000pt;}
.yc_c00170{bottom:663.053333pt;}
.yb_c00170{bottom:679.693333pt;}
.ya_c00170{bottom:690.560000pt;}
.y9_c00170{bottom:746.240000pt;}
.y7_c00170{bottom:801.928533pt;}
.y8_c00170{bottom:801.933333pt;}
.y6_c00170{bottom:830.093333pt;}
.y5_c00170{bottom:857.933333pt;}
.y4_c00170{bottom:913.613333pt;}
.y3_c00170{bottom:941.453333pt;}
.y2_c00170{bottom:969.293333pt;}
.y1_c00170{bottom:1065.293333pt;}
.h8_c00170{height:32.394240pt;}
.h9_c00170{height:47.837500pt;}
.hc_c00170{height:54.437500pt;}
.h2_c00170{height:58.101562pt;}
.h4_c00170{height:59.119010pt;}
.h3_c00170{height:60.718750pt;}
.ha_c00170{height:60.727283pt;}
.h5_c00170{height:60.737950pt;}
.hb_c00170{height:61.187500pt;}
.h6_c00170{height:70.087500pt;}
.h7_c00170{height:86.847396pt;}
.h1_c00170{height:1122.666667pt;}
.h0_c00170{height:1122.880000pt;}
.w1_c00170{width:793.333333pt;}
.w0_c00170{width:793.600000pt;}
.x0_c00170{left:0.000000pt;}
.x18_c00170{left:103.333867pt;}
.x10_c00170{left:104.800000pt;}
.x7_c00170{left:105.877333pt;}
.x3_c00170{left:106.909333pt;}
.x1_c00170{left:109.053333pt;}
.x5_c00170{left:125.546667pt;}
.x6_c00170{left:143.226667pt;}
.x1e_c00170{left:150.840000pt;}
.x17_c00170{left:152.146667pt;}
.xd_c00170{left:153.080000pt;}
.x4_c00170{left:154.706667pt;}
.x2_c00170{left:155.986667pt;}
.x1a_c00170{left:188.906667pt;}
.x1b_c00170{left:211.026667pt;}
.x1c_c00170{left:235.653333pt;}
.x19_c00170{left:278.200000pt;}
.x16_c00170{left:313.080000pt;}
.x22_c00170{left:372.960000pt;}
.xb_c00170{left:379.453333pt;}
.x1d_c00170{left:388.960000pt;}
.x13_c00170{left:396.466667pt;}
.xc_c00170{left:403.693333pt;}
.x14_c00170{left:409.773333pt;}
.xe_c00170{left:440.973333pt;}
.x1f_c00170{left:460.920000pt;}
.xf_c00170{left:469.133333pt;}
.x20_c00170{left:475.346667pt;}
.x21_c00170{left:500.280000pt;}
.x8_c00170{left:537.533333pt;}
.x9_c00170{left:562.146667pt;}
.xa_c00170{left:580.653333pt;}
.x11_c00170{left:618.106667pt;}
.x12_c00170{left:635.066667pt;}
.x15_c00170{left:651.946667pt;}
}





/* 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_c00171 {
    display:none;
  }
  .loading-indicator_c00171.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00171 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_c00171 { 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_c00171" -> "#page-container .classname_c00171")
 */
.pf_c00171 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00171 { /* 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_c00171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00171 { /* 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_c00171 { /* 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_c00171 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00171 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00171 {overflow:visible;}
  }
}
.c_c00171 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00171 { /* 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_c00171:after { /* webkit #35443 */
  content: '';
}
.t_c00171:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00171 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 */
}
.__c00171 { /* 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_c00171 { /* info for Javascript */
  display:none;
}
.l_c00171 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00171 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00171 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00171: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_c00171 {
    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_c00171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00171.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_c00171 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00171;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;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:ff2_c00171;src:url('chunks/assets/font_08e79436275e2a3546ef17d2.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;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_c00171;src:url('chunks/assets/font_1d585a53a04c104051a223da.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:0.666000;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_c00171;src:url('chunks/assets/font_cb8ab8c11a9fb933b253794e.woff2')format("woff");}.ff4_c00171{font-family:ff4_c00171;line-height:1.284180;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_c00171;src:url('chunks/assets/font_fd4516d2d8600a23a94170a9.woff2')format("woff");}.ff5_c00171{font-family:ff5_c00171;line-height:1.284668;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_c00171;src:url('chunks/assets/font_7bf179467df6eed9d553aa5d.woff2')format("woff");}.ff6_c00171{font-family:ff6_c00171;line-height:1.311035;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;}
.m8_c00171{transform:matrix(0.029545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029545,0.000000,0.000000,0.250000,0,0);}
.m10_c00171{transform:matrix(0.086806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086806,0.000000,0.000000,0.250000,0,0);}
.m7_c00171{transform:matrix(0.096983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096983,0.000000,0.000000,0.250000,0,0);}
.md_c00171{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.mf_c00171{transform:matrix(0.106816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106816,0.000000,0.000000,0.250000,0,0);}
.m0_c00171{transform:matrix(0.125331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125331,0.000000,0.000000,0.250000,0,0);}
.m5_c00171{transform:matrix(0.126837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126837,0.000000,0.000000,0.250000,0,0);}
.mc_c00171{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.mb_c00171{transform:matrix(0.137815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137815,0.000000,0.000000,0.250000,0,0);}
.m4_c00171{transform:matrix(0.147718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147718,0.000000,0.000000,0.250000,0,0);}
.m6_c00171{transform:matrix(0.156753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156753,0.000000,0.000000,0.250000,0,0);}
.ma_c00171{transform:matrix(0.167298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167298,0.000000,0.000000,0.250000,0,0);}
.me_c00171{transform:matrix(0.243171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243171,0.000000,0.000000,0.250000,0,0);}
.m1_c00171{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);}
.m9_c00171{transform:matrix(0.271102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271102,0.000000,0.000000,0.250000,0,0);}
.m2_c00171{transform:matrix(0.414474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414474,0.000000,0.000000,0.250000,0,0);}
.m3_c00171{transform:matrix(0.826271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.826271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.826271,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls19_c00171{letter-spacing:-3.423000px;}
.ls7_c00171{letter-spacing:-2.772000px;}
.ls18_c00171{letter-spacing:-2.247000px;}
.lsf_c00171{letter-spacing:-2.058000px;}
.ls11_c00171{letter-spacing:-1.764000px;}
.ls9_c00171{letter-spacing:-1.272000px;}
.lse_c00171{letter-spacing:-1.239021px;}
.ls12_c00171{letter-spacing:-1.008021px;}
.lsd_c00171{letter-spacing:-0.924021px;}
.ls14_c00171{letter-spacing:-0.057240px;}
.ls8_c00171{letter-spacing:0.000000px;}
.ls13_c00171{letter-spacing:0.082680px;}
.ls2_c00171{letter-spacing:0.152640px;}
.ls6_c00171{letter-spacing:0.483360px;}
.ls1_c00171{letter-spacing:0.566040px;}
.lsa_c00171{letter-spacing:0.591480px;}
.ls16_c00171{letter-spacing:0.636000px;}
.ls15_c00171{letter-spacing:0.718680px;}
.ls0_c00171{letter-spacing:0.756840px;}
.lsc_c00171{letter-spacing:0.833160px;}
.ls5_c00171{letter-spacing:0.928560px;}
.ls10_c00171{letter-spacing:1.020030px;}
.lsb_c00171{letter-spacing:1.036680px;}
.ls3_c00171{letter-spacing:1.252920px;}
.ls4_c00171{letter-spacing:1.265640px;}
.ls17_c00171{letter-spacing:2.041560px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{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__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00171{word-spacing:-1.362960px;}
.ws3_c00171{word-spacing:-0.992160px;}
.ws6_c00171{word-spacing:0.000000px;}
.ws2_c00171{word-spacing:0.661440px;}
.ws5_c00171{word-spacing:1.373760px;}
.ws4_c00171{word-spacing:1.564560px;}
.ws0_c00171{word-spacing:6.108000px;}
._1_c00171{margin-left:-3.160920px;}
._2_c00171{margin-left:-1.055760px;}
._0_c00171{width:1.087800px;}
.fc0_c00171{color:transparent;}
.fsb_c00171{font-size:20.400600px;}
.fsf_c00171{font-size:25.920000px;}
.fs7_c00171{font-size:26.400600px;}
.fse_c00171{font-size:28.800000px;}
.fsd_c00171{font-size:28.800600px;}
.fs8_c00171{font-size:35.400600px;}
.fsc_c00171{font-size:50.400000px;}
.fs2_c00171{font-size:54.720000px;}
.fs1_c00171{font-size:58.800000px;}
.fs4_c00171{font-size:60.000000px;}
.fs5_c00171{font-size:63.600000px;}
.fs10_c00171{font-size:64.200000px;}
.fs0_c00171{font-size:79.200000px;}
.fs3_c00171{font-size:84.960000px;}
.fs6_c00171{font-size:94.200000px;}
.fs11_c00171{font-size:97.800000px;}
.fs12_c00171{font-size:155.520000px;}
.fsa_c00171{font-size:158.400000px;}
.fs9_c00171{font-size:334.080000px;}
.y0_c00171{bottom:0.000000px;}
.y7_c00171{bottom:148.320000px;}
.y14_c00171{bottom:148.326900px;}
.y6_c00171{bottom:167.040000px;}
.y13_c00171{bottom:167.041200px;}
.y5_c00171{bottom:185.040000px;}
.y8_c00171{bottom:301.695000px;}
.y4_c00171{bottom:498.240000px;}
.y3_c00171{bottom:518.055000px;}
.y2_c00171{bottom:546.480000px;}
.y12_c00171{bottom:808.920000px;}
.y11_c00171{bottom:816.855000px;}
.y10_c00171{bottom:829.440000px;}
.yc_c00171{bottom:837.720000px;}
.yf_c00171{bottom:852.135000px;}
.ye_c00171{bottom:875.535000px;}
.yd_c00171{bottom:881.655000px;}
.yb_c00171{bottom:921.600000px;}
.ya_c00171{bottom:933.855000px;}
.y9_c00171{bottom:939.975000px;}
.y17_c00171{bottom:959.055000px;}
.y16_c00171{bottom:1077.495000px;}
.y1_c00171{bottom:1080.015000px;}
.y15_c00171{bottom:1144.080000px;}
.h11_c00171{height:17.262720px;}
.h10_c00171{height:19.180800px;}
.hd_c00171{height:20.022073px;}
.h9_c00171{height:25.910745px;}
.hf_c00171{height:28.266214px;}
.ha_c00171{height:34.743753px;}
.h4_c00171{height:36.443520px;}
.he_c00171{height:49.464844px;}
.h5_c00171{height:56.583360px;}
.h3_c00171{height:61.326563px;}
.h7_c00171{height:62.388867px;}
.h6_c00171{height:62.578125px;}
.h12_c00171{height:64.701562px;}
.h2_c00171{height:82.603125px;}
.h8_c00171{height:92.452148px;}
.h13_c00171{height:102.002344px;}
.h14_c00171{height:103.576320px;}
.hc_c00171{height:105.494400px;}
.hb_c00171{height:222.497280px;}
.h1_c00171{height:1263.000000px;}
.h0_c00171{height:1263.240000px;}
.w1_c00171{width:892.500000px;}
.w0_c00171{width:892.800000px;}
.x0_c00171{left:0.000000px;}
.x1_c00171{left:119.655000px;}
.x6_c00171{left:121.980000px;}
.x5_c00171{left:123.180000px;}
.x3_c00171{left:248.055000px;}
.x4_c00171{left:281.535000px;}
.x2_c00171{left:315.885000px;}
.x7_c00171{left:380.550000px;}
.xe_c00171{left:387.225000px;}
.xa_c00171{left:411.120000px;}
.xb_c00171{left:418.695000px;}
.xc_c00171{left:419.700000px;}
.x8_c00171{left:420.810000px;}
.xd_c00171{left:422.280000px;}
.x9_c00171{left:423.675000px;}
.xf_c00171{left:676.725000px;}
.x12_c00171{left:743.415000px;}
.x10_c00171{left:751.020000px;}
.x11_c00171{left:789.990000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls19_c00171{letter-spacing:-3.042667pt;}
.ls7_c00171{letter-spacing:-2.464000pt;}
.ls18_c00171{letter-spacing:-1.997333pt;}
.lsf_c00171{letter-spacing:-1.829333pt;}
.ls11_c00171{letter-spacing:-1.568000pt;}
.ls9_c00171{letter-spacing:-1.130667pt;}
.lse_c00171{letter-spacing:-1.101352pt;}
.ls12_c00171{letter-spacing:-0.896019pt;}
.lsd_c00171{letter-spacing:-0.821352pt;}
.ls14_c00171{letter-spacing:-0.050880pt;}
.ls8_c00171{letter-spacing:0.000000pt;}
.ls13_c00171{letter-spacing:0.073493pt;}
.ls2_c00171{letter-spacing:0.135680pt;}
.ls6_c00171{letter-spacing:0.429653pt;}
.ls1_c00171{letter-spacing:0.503147pt;}
.lsa_c00171{letter-spacing:0.525760pt;}
.ls16_c00171{letter-spacing:0.565333pt;}
.ls15_c00171{letter-spacing:0.638827pt;}
.ls0_c00171{letter-spacing:0.672747pt;}
.lsc_c00171{letter-spacing:0.740587pt;}
.ls5_c00171{letter-spacing:0.825387pt;}
.ls10_c00171{letter-spacing:0.906693pt;}
.lsb_c00171{letter-spacing:0.921493pt;}
.ls3_c00171{letter-spacing:1.113707pt;}
.ls4_c00171{letter-spacing:1.125013pt;}
.ls17_c00171{letter-spacing:1.814720pt;}
.ws1_c00171{word-spacing:-1.211520pt;}
.ws3_c00171{word-spacing:-0.881920pt;}
.ws6_c00171{word-spacing:0.000000pt;}
.ws2_c00171{word-spacing:0.587947pt;}
.ws5_c00171{word-spacing:1.221120pt;}
.ws4_c00171{word-spacing:1.390720pt;}
.ws0_c00171{word-spacing:5.429333pt;}
._1_c00171{margin-left:-2.809707pt;}
._2_c00171{margin-left:-0.938453pt;}
._0_c00171{width:0.966933pt;}
.fsb_c00171{font-size:18.133867pt;}
.fsf_c00171{font-size:23.040000pt;}
.fs7_c00171{font-size:23.467200pt;}
.fse_c00171{font-size:25.600000pt;}
.fsd_c00171{font-size:25.600533pt;}
.fs8_c00171{font-size:31.467200pt;}
.fsc_c00171{font-size:44.800000pt;}
.fs2_c00171{font-size:48.640000pt;}
.fs1_c00171{font-size:52.266667pt;}
.fs4_c00171{font-size:53.333333pt;}
.fs5_c00171{font-size:56.533333pt;}
.fs10_c00171{font-size:57.066667pt;}
.fs0_c00171{font-size:70.400000pt;}
.fs3_c00171{font-size:75.520000pt;}
.fs6_c00171{font-size:83.733333pt;}
.fs11_c00171{font-size:86.933333pt;}
.fs12_c00171{font-size:138.240000pt;}
.fsa_c00171{font-size:140.800000pt;}
.fs9_c00171{font-size:296.960000pt;}
.y0_c00171{bottom:0.000000pt;}
.y7_c00171{bottom:131.840000pt;}
.y14_c00171{bottom:131.846133pt;}
.y6_c00171{bottom:148.480000pt;}
.y13_c00171{bottom:148.481067pt;}
.y5_c00171{bottom:164.480000pt;}
.y8_c00171{bottom:268.173333pt;}
.y4_c00171{bottom:442.880000pt;}
.y3_c00171{bottom:460.493333pt;}
.y2_c00171{bottom:485.760000pt;}
.y12_c00171{bottom:719.040000pt;}
.y11_c00171{bottom:726.093333pt;}
.y10_c00171{bottom:737.280000pt;}
.yc_c00171{bottom:744.640000pt;}
.yf_c00171{bottom:757.453333pt;}
.ye_c00171{bottom:778.253333pt;}
.yd_c00171{bottom:783.693333pt;}
.yb_c00171{bottom:819.200000pt;}
.ya_c00171{bottom:830.093333pt;}
.y9_c00171{bottom:835.533333pt;}
.y17_c00171{bottom:852.493333pt;}
.y16_c00171{bottom:957.773333pt;}
.y1_c00171{bottom:960.013333pt;}
.y15_c00171{bottom:1016.960000pt;}
.h11_c00171{height:15.344640pt;}
.h10_c00171{height:17.049600pt;}
.hd_c00171{height:17.797398pt;}
.h9_c00171{height:23.031773pt;}
.hf_c00171{height:25.125523pt;}
.ha_c00171{height:30.883336pt;}
.h4_c00171{height:32.394240pt;}
.he_c00171{height:43.968750pt;}
.h5_c00171{height:50.296320pt;}
.h3_c00171{height:54.512500pt;}
.h7_c00171{height:55.456771pt;}
.h6_c00171{height:55.625000pt;}
.h12_c00171{height:57.512500pt;}
.h2_c00171{height:73.425000pt;}
.h8_c00171{height:82.179687pt;}
.h13_c00171{height:90.668750pt;}
.h14_c00171{height:92.067840pt;}
.hc_c00171{height:93.772800pt;}
.hb_c00171{height:197.775360pt;}
.h1_c00171{height:1122.666667pt;}
.h0_c00171{height:1122.880000pt;}
.w1_c00171{width:793.333333pt;}
.w0_c00171{width:793.600000pt;}
.x0_c00171{left:0.000000pt;}
.x1_c00171{left:106.360000pt;}
.x6_c00171{left:108.426667pt;}
.x5_c00171{left:109.493333pt;}
.x3_c00171{left:220.493333pt;}
.x4_c00171{left:250.253333pt;}
.x2_c00171{left:280.786667pt;}
.x7_c00171{left:338.266667pt;}
.xe_c00171{left:344.200000pt;}
.xa_c00171{left:365.440000pt;}
.xb_c00171{left:372.173333pt;}
.xc_c00171{left:373.066667pt;}
.x8_c00171{left:374.053333pt;}
.xd_c00171{left:375.360000pt;}
.x9_c00171{left:376.600000pt;}
.xf_c00171{left:601.533333pt;}
.x12_c00171{left:660.813333pt;}
.x10_c00171{left:667.573333pt;}
.x11_c00171{left:702.213333pt;}
}





/* 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_c00172 {
    display:none;
  }
  .loading-indicator_c00172.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00172 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_c00172 { 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_c00172" -> "#page-container .classname_c00172")
 */
.pf_c00172 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00172 { /* 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_c00172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00172 { /* 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_c00172 { /* 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_c00172 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00172 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00172 {overflow:visible;}
  }
}
.c_c00172 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00172 { /* 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_c00172:after { /* webkit #35443 */
  content: '';
}
.t_c00172:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00172 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 */
}
.__c00172 { /* 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_c00172 { /* info for Javascript */
  display:none;
}
.l_c00172 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00172 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00172 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00172: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_c00172 {
    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_c00172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00172.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_c00172 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00172;src:url('chunks/assets/font_f091f8d6bb278a732dd738a7.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.284668;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_c00172;src:url('chunks/assets/font_7e4f4ca7d902302006781ac1.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.284180;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_c00172;src:url('chunks/assets/font_53d8768063a4b24083d0bd0d.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;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:ff4_c00172;src:url('chunks/assets/font_45f00a68d75fb701bd8484ec.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.311035;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_c00172;src:url('chunks/assets/font_3c7b9981a8976aaddfff8afc.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;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:ff6_c00172;src:url('chunks/assets/font_0e88912d2dd675b13d80c427.woff2')format("woff");}.ff6_c00172{font-family:ff6_c00172;line-height:0.666000;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;}
.m10_c00172{transform:matrix(0.156649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156649,0.000000,0.000000,0.250000,0,0);}
.m15_c00172{transform:matrix(0.186906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186906,0.000000,0.000000,0.250000,0,0);}
.m3_c00172{transform:matrix(0.200708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200708,0.000000,0.000000,0.250000,0,0);}
.m13_c00172{transform:matrix(0.205187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205187,0.000000,0.000000,0.250000,0,0);}
.m2_c00172{transform:matrix(0.206362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206362,0.000000,0.000000,0.250000,0,0);}
.m11_c00172{transform:matrix(0.209439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209439,0.000000,0.000000,0.250000,0,0);}
.m12_c00172{transform:matrix(0.223019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223019,0.000000,0.000000,0.250000,0,0);}
.ma_c00172{transform:matrix(0.227464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227464,0.000000,0.000000,0.250000,0,0);}
.m9_c00172{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m0_c00172{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m1_c00172{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);}
.m5_c00172{transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);}
.m4_c00172{transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);}
.m8_c00172{transform:matrix(0.256984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256984,0.000000,0.000000,0.250000,0,0);}
.m7_c00172{transform:matrix(0.258135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258135,0.000000,0.000000,0.250000,0,0);}
.m6_c00172{transform:matrix(0.284883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284883,0.000000,0.000000,0.250000,0,0);}
.mb_c00172{transform:matrix(0.376835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376835,0.000000,0.000000,0.250000,0,0);}
.m14_c00172{transform:matrix(0.382979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382979,0.000000,0.000000,0.250000,0,0);}
.mc_c00172{transform:matrix(0.396746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396746,0.000000,0.000000,0.250000,0,0);}
.mf_c00172{transform:matrix(0.651987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651987,0.000000,0.000000,0.250000,0,0);}
.md_c00172{transform:matrix(0.694452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694452,0.000000,0.000000,0.250000,0,0);}
.me_c00172{transform:matrix(0.883468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.883468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.883468,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls6a_c00172{letter-spacing:-2.373000px;}
.ls54_c00172{letter-spacing:-2.352000px;}
.ls74_c00172{letter-spacing:-2.331000px;}
.ls59_c00172{letter-spacing:-2.224440px;}
.ls76_c00172{letter-spacing:-1.662420px;}
.ls65_c00172{letter-spacing:-1.631700px;}
.ls70_c00172{letter-spacing:-1.470000px;}
.ls71_c00172{letter-spacing:-1.155021px;}
.ls6f_c00172{letter-spacing:-0.987000px;}
.ls5c_c00172{letter-spacing:-0.859140px;}
.ls72_c00172{letter-spacing:-0.719280px;}
.ls6b_c00172{letter-spacing:-0.714021px;}
.ls67_c00172{letter-spacing:-0.526140px;}
.ls5b_c00172{letter-spacing:-0.419580px;}
.ls66_c00172{letter-spacing:-0.412920px;}
.ls62_c00172{letter-spacing:-0.286380px;}
.ls5a_c00172{letter-spacing:-0.159840px;}
.ls5f_c00172{letter-spacing:-0.053280px;}
.ls68_c00172{letter-spacing:-0.046620px;}
.ls5e_c00172{letter-spacing:0.000000px;}
.ls5d_c00172{letter-spacing:0.053280px;}
.ls39_c00172{letter-spacing:0.206460px;}
.ls4b_c00172{letter-spacing:0.284760px;}
.ls42_c00172{letter-spacing:0.306360px;}
.ls57_c00172{letter-spacing:0.379620px;}
.ls22_c00172{letter-spacing:0.393240px;}
.ls46_c00172{letter-spacing:0.412920px;}
.ls11_c00172{letter-spacing:0.461040px;}
.ls37_c00172{letter-spacing:0.532800px;}
.ls28_c00172{letter-spacing:0.546120px;}
.ls5_c00172{letter-spacing:0.559440px;}
.ls3d_c00172{letter-spacing:0.572760px;}
.ls4a_c00172{letter-spacing:0.583080px;}
.ls1f_c00172{letter-spacing:0.586080px;}
.ls10_c00172{letter-spacing:0.592740px;}
.ls24_c00172{letter-spacing:0.599400px;}
.ls69_c00172{letter-spacing:0.612720px;}
.ls44_c00172{letter-spacing:0.616980px;}
.ls3_c00172{letter-spacing:0.623760px;}
.ls4f_c00172{letter-spacing:0.626040px;}
.ls3e_c00172{letter-spacing:0.699300px;}
.ls32_c00172{letter-spacing:0.712620px;}
.ls26_c00172{letter-spacing:0.725940px;}
.ls47_c00172{letter-spacing:0.732600px;}
.ls51_c00172{letter-spacing:0.752580px;}
.ls2e_c00172{letter-spacing:0.759240px;}
.ls1e_c00172{letter-spacing:0.779220px;}
.ls35_c00172{letter-spacing:0.785880px;}
.ls4e_c00172{letter-spacing:0.832500px;}
.ls1c_c00172{letter-spacing:0.881400px;}
.lsa_c00172{letter-spacing:0.885780px;}
.lsf_c00172{letter-spacing:0.892440px;}
.lsc_c00172{letter-spacing:0.899100px;}
.ls7_c00172{letter-spacing:0.919080px;}
.ls2c_c00172{letter-spacing:0.925740px;}
.ls6_c00172{letter-spacing:0.939060px;}
.ls3a_c00172{letter-spacing:0.959040px;}
.ls25_c00172{letter-spacing:0.965700px;}
.ls2f_c00172{letter-spacing:0.979020px;}
.ls9_c00172{letter-spacing:0.992340px;}
.ls12_c00172{letter-spacing:1.012320px;}
.ls2_c00172{letter-spacing:1.017000px;}
.ls6c_c00172{letter-spacing:1.020030px;}
.ls60_c00172{letter-spacing:1.032300px;}
.ls6d_c00172{letter-spacing:1.050030px;}
.ls40_c00172{letter-spacing:1.072260px;}
.ls41_c00172{letter-spacing:1.085580px;}
.ls20_c00172{letter-spacing:1.118880px;}
.ls29_c00172{letter-spacing:1.132200px;}
.ls27_c00172{letter-spacing:1.158840px;}
.ls58_c00172{letter-spacing:1.165500px;}
.ls30_c00172{letter-spacing:1.172160px;}
.ls38_c00172{letter-spacing:1.178820px;}
.ls45_c00172{letter-spacing:1.185480px;}
.ls55_c00172{letter-spacing:1.205460px;}
.ls8_c00172{letter-spacing:1.212120px;}
.ls3c_c00172{letter-spacing:1.238760px;}
.ls43_c00172{letter-spacing:1.265400px;}
.ls2a_c00172{letter-spacing:1.285380px;}
.ls4d_c00172{letter-spacing:1.292040px;}
.ls15_c00172{letter-spacing:1.332000px;}
.ls19_c00172{letter-spacing:1.358640px;}
.ls64_c00172{letter-spacing:1.365300px;}
.ls56_c00172{letter-spacing:1.371960px;}
.ls33_c00172{letter-spacing:1.391940px;}
.ls34_c00172{letter-spacing:1.405260px;}
.ls0_c00172{letter-spacing:1.411920px;}
.ls49_c00172{letter-spacing:1.431900px;}
.ls6e_c00172{letter-spacing:1.470030px;}
.ls52_c00172{letter-spacing:1.505160px;}
.ls2b_c00172{letter-spacing:1.545120px;}
.ls31_c00172{letter-spacing:1.558440px;}
.ls21_c00172{letter-spacing:1.565100px;}
.ls1d_c00172{letter-spacing:1.665000px;}
.ls63_c00172{letter-spacing:1.711620px;}
.lsb_c00172{letter-spacing:1.724940px;}
.lse_c00172{letter-spacing:1.738260px;}
.ls18_c00172{letter-spacing:1.798200px;}
.ls1b_c00172{letter-spacing:1.844820px;}
.ls1_c00172{letter-spacing:1.871460px;}
.ls23_c00172{letter-spacing:1.984680px;}
.ls3f_c00172{letter-spacing:2.037960px;}
.ls4c_c00172{letter-spacing:2.057940px;}
.ls3b_c00172{letter-spacing:2.164500px;}
.ls53_c00172{letter-spacing:2.251080px;}
.ls50_c00172{letter-spacing:2.284380px;}
.ls16_c00172{letter-spacing:2.297700px;}
.ls75_c00172{letter-spacing:2.340030px;}
.ls48_c00172{letter-spacing:2.357640px;}
.ls13_c00172{letter-spacing:2.370960px;}
.ls14_c00172{letter-spacing:2.430900px;}
.ls36_c00172{letter-spacing:2.557440px;}
.ls1a_c00172{letter-spacing:2.597400px;}
.ls73_c00172{letter-spacing:2.957040px;}
.ls2d_c00172{letter-spacing:3.016980px;}
.ls17_c00172{letter-spacing:3.090240px;}
.ls4_c00172{letter-spacing:3.250080px;}
.lsd_c00172{letter-spacing:3.310020px;}
.ls61_c00172{letter-spacing:3.330000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{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__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00172{word-spacing:-1.051800px;}
.ws5_c00172{word-spacing:0.000000px;}
.ws3_c00172{word-spacing:4.811100px;}
.ws0_c00172{word-spacing:6.368760px;}
.ws2_c00172{word-spacing:6.773400px;}
.ws4_c00172{word-spacing:8.640840px;}
._8_c00172{margin-left:-6.660000px;}
._0_c00172{margin-left:-5.427900px;}
._7_c00172{margin-left:-4.229100px;}
._5_c00172{margin-left:-2.291040px;}
._9_c00172{margin-left:-1.177200px;}
._2_c00172{width:1.638360px;}
._a_c00172{width:2.650680px;}
._1_c00172{width:3.661200px;}
._4_c00172{width:5.720940px;}
._3_c00172{width:6.886440px;}
._6_c00172{width:8.487240px;}
._b_c00172{width:9.885240px;}
._c_c00172{width:14.071020px;}
._f_c00172{width:22.510800px;}
._d_c00172{width:24.575400px;}
._11_c00172{width:25.993980px;}
._e_c00172{width:28.045260px;}
._10_c00172{width:31.002300px;}
.fc0_c00172{color:transparent;}
.fs3_c00172{font-size:20.400600px;}
.fs4_c00172{font-size:21.000600px;}
.fs5_c00172{font-size:23.400600px;}
.fs7_c00172{font-size:28.200000px;}
.fs6_c00172{font-size:29.400600px;}
.fs9_c00172{font-size:33.000600px;}
.fs8_c00172{font-size:42.000000px;}
.fsb_c00172{font-size:43.200000px;}
.fsa_c00172{font-size:46.800600px;}
.fsc_c00172{font-size:61.800000px;}
.fs1_c00172{font-size:66.600000px;}
.fs0_c00172{font-size:67.200000px;}
.fs2_c00172{font-size:67.800000px;}
.y0_c00172{bottom:0.000000px;}
.y14_c00172{bottom:71.295015px;}
.y13_c00172{bottom:523.455015px;}
.y12_c00172{bottom:532.815015px;}
.y11_c00172{bottom:554.760015px;}
.y10_c00172{bottom:617.760015px;}
.yf_c00172{bottom:648.735015px;}
.ye_c00172{bottom:711.375015px;}
.yd_c00172{bottom:711.385365px;}
.yc_c00172{bottom:742.687365px;}
.yb_c00172{bottom:774.006015px;}
.y9_c00172{bottom:804.971415px;}
.ya_c00172{bottom:804.975015px;}
.y8_c00172{bottom:836.656365px;}
.y7_c00172{bottom:867.975015px;}
.y6_c00172{bottom:929.880015px;}
.y5_c00172{bottom:992.527665px;}
.y4_c00172{bottom:1023.486015px;}
.y3_c00172{bottom:1054.455015px;}
.y2_c00172{bottom:1117.095015px;}
.y1_c00172{bottom:1192.335015px;}
.h8_c00172{height:20.022073px;}
.h9_c00172{height:20.559980px;}
.ha_c00172{height:21.164667px;}
.hb_c00172{height:24.406095px;}
.hd_c00172{height:28.420313px;}
.h11_c00172{height:28.771200px;}
.hc_c00172{height:29.630292px;}
.hf_c00172{height:33.258417px;}
.he_c00172{height:43.804688px;}
.h10_c00172{height:48.811563px;}
.h12_c00172{height:60.653320px;}
.h3_c00172{height:65.364258px;}
.h6_c00172{height:65.378658px;}
.h2_c00172{height:65.953125px;}
.h5_c00172{height:66.484887px;}
.h4_c00172{height:66.508887px;}
.h7_c00172{height:70.713281px;}
.h1_c00172{height:1263.000000px;}
.h0_c00172{height:1263.240015px;}
.w1_c00172{width:892.500000px;}
.w0_c00172{width:892.800015px;}
.x0_c00172{left:0.000000px;}
.xd_c00172{left:121.305015px;}
.x1_c00172{left:122.325015px;}
.xe_c00172{left:134.685015px;}
.x15_c00172{left:139.635015px;}
.x16_c00172{left:157.275015px;}
.xf_c00172{left:165.075015px;}
.x10_c00172{left:175.125015px;}
.x2_c00172{left:176.565015px;}
.x17_c00172{left:223.110015px;}
.x20_c00172{left:264.105015px;}
.x18_c00172{left:268.755015px;}
.x8_c00172{left:285.870015px;}
.x9_c00172{left:313.530015px;}
.x19_c00172{left:325.560015px;}
.x21_c00172{left:350.820015px;}
.x1a_c00172{left:379.980015px;}
.x3_c00172{left:394.470015px;}
.x1b_c00172{left:409.305015px;}
.x22_c00172{left:421.380015px;}
.x4_c00172{left:426.075015px;}
.x11_c00172{left:516.780015px;}
.x12_c00172{left:535.245015px;}
.x1c_c00172{left:537.045015px;}
.x5_c00172{left:614.430015px;}
.xa_c00172{left:620.460015px;}
.x1d_c00172{left:649.725015px;}
.xb_c00172{left:670.350015px;}
.x1e_c00172{left:688.605015px;}
.x13_c00172{left:693.990015px;}
.x6_c00172{left:701.190015px;}
.x14_c00172{left:719.820015px;}
.xc_c00172{left:722.955015px;}
.x7_c00172{left:727.785015px;}
.x1f_c00172{left:731.070015px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls6a_c00172{letter-spacing:-2.109333pt;}
.ls54_c00172{letter-spacing:-2.090667pt;}
.ls74_c00172{letter-spacing:-2.072000pt;}
.ls59_c00172{letter-spacing:-1.977280pt;}
.ls76_c00172{letter-spacing:-1.477707pt;}
.ls65_c00172{letter-spacing:-1.450400pt;}
.ls70_c00172{letter-spacing:-1.306667pt;}
.ls71_c00172{letter-spacing:-1.026685pt;}
.ls6f_c00172{letter-spacing:-0.877333pt;}
.ls5c_c00172{letter-spacing:-0.763680pt;}
.ls72_c00172{letter-spacing:-0.639360pt;}
.ls6b_c00172{letter-spacing:-0.634685pt;}
.ls67_c00172{letter-spacing:-0.467680pt;}
.ls5b_c00172{letter-spacing:-0.372960pt;}
.ls66_c00172{letter-spacing:-0.367040pt;}
.ls62_c00172{letter-spacing:-0.254560pt;}
.ls5a_c00172{letter-spacing:-0.142080pt;}
.ls5f_c00172{letter-spacing:-0.047360pt;}
.ls68_c00172{letter-spacing:-0.041440pt;}
.ls5e_c00172{letter-spacing:0.000000pt;}
.ls5d_c00172{letter-spacing:0.047360pt;}
.ls39_c00172{letter-spacing:0.183520pt;}
.ls4b_c00172{letter-spacing:0.253120pt;}
.ls42_c00172{letter-spacing:0.272320pt;}
.ls57_c00172{letter-spacing:0.337440pt;}
.ls22_c00172{letter-spacing:0.349547pt;}
.ls46_c00172{letter-spacing:0.367040pt;}
.ls11_c00172{letter-spacing:0.409813pt;}
.ls37_c00172{letter-spacing:0.473600pt;}
.ls28_c00172{letter-spacing:0.485440pt;}
.ls5_c00172{letter-spacing:0.497280pt;}
.ls3d_c00172{letter-spacing:0.509120pt;}
.ls4a_c00172{letter-spacing:0.518293pt;}
.ls1f_c00172{letter-spacing:0.520960pt;}
.ls10_c00172{letter-spacing:0.526880pt;}
.ls24_c00172{letter-spacing:0.532800pt;}
.ls69_c00172{letter-spacing:0.544640pt;}
.ls44_c00172{letter-spacing:0.548427pt;}
.ls3_c00172{letter-spacing:0.554453pt;}
.ls4f_c00172{letter-spacing:0.556480pt;}
.ls3e_c00172{letter-spacing:0.621600pt;}
.ls32_c00172{letter-spacing:0.633440pt;}
.ls26_c00172{letter-spacing:0.645280pt;}
.ls47_c00172{letter-spacing:0.651200pt;}
.ls51_c00172{letter-spacing:0.668960pt;}
.ls2e_c00172{letter-spacing:0.674880pt;}
.ls1e_c00172{letter-spacing:0.692640pt;}
.ls35_c00172{letter-spacing:0.698560pt;}
.ls4e_c00172{letter-spacing:0.740000pt;}
.ls1c_c00172{letter-spacing:0.783467pt;}
.lsa_c00172{letter-spacing:0.787360pt;}
.lsf_c00172{letter-spacing:0.793280pt;}
.lsc_c00172{letter-spacing:0.799200pt;}
.ls7_c00172{letter-spacing:0.816960pt;}
.ls2c_c00172{letter-spacing:0.822880pt;}
.ls6_c00172{letter-spacing:0.834720pt;}
.ls3a_c00172{letter-spacing:0.852480pt;}
.ls25_c00172{letter-spacing:0.858400pt;}
.ls2f_c00172{letter-spacing:0.870240pt;}
.ls9_c00172{letter-spacing:0.882080pt;}
.ls12_c00172{letter-spacing:0.899840pt;}
.ls2_c00172{letter-spacing:0.904000pt;}
.ls6c_c00172{letter-spacing:0.906693pt;}
.ls60_c00172{letter-spacing:0.917600pt;}
.ls6d_c00172{letter-spacing:0.933360pt;}
.ls40_c00172{letter-spacing:0.953120pt;}
.ls41_c00172{letter-spacing:0.964960pt;}
.ls20_c00172{letter-spacing:0.994560pt;}
.ls29_c00172{letter-spacing:1.006400pt;}
.ls27_c00172{letter-spacing:1.030080pt;}
.ls58_c00172{letter-spacing:1.036000pt;}
.ls30_c00172{letter-spacing:1.041920pt;}
.ls38_c00172{letter-spacing:1.047840pt;}
.ls45_c00172{letter-spacing:1.053760pt;}
.ls55_c00172{letter-spacing:1.071520pt;}
.ls8_c00172{letter-spacing:1.077440pt;}
.ls3c_c00172{letter-spacing:1.101120pt;}
.ls43_c00172{letter-spacing:1.124800pt;}
.ls2a_c00172{letter-spacing:1.142560pt;}
.ls4d_c00172{letter-spacing:1.148480pt;}
.ls15_c00172{letter-spacing:1.184000pt;}
.ls19_c00172{letter-spacing:1.207680pt;}
.ls64_c00172{letter-spacing:1.213600pt;}
.ls56_c00172{letter-spacing:1.219520pt;}
.ls33_c00172{letter-spacing:1.237280pt;}
.ls34_c00172{letter-spacing:1.249120pt;}
.ls0_c00172{letter-spacing:1.255040pt;}
.ls49_c00172{letter-spacing:1.272800pt;}
.ls6e_c00172{letter-spacing:1.306693pt;}
.ls52_c00172{letter-spacing:1.337920pt;}
.ls2b_c00172{letter-spacing:1.373440pt;}
.ls31_c00172{letter-spacing:1.385280pt;}
.ls21_c00172{letter-spacing:1.391200pt;}
.ls1d_c00172{letter-spacing:1.480000pt;}
.ls63_c00172{letter-spacing:1.521440pt;}
.lsb_c00172{letter-spacing:1.533280pt;}
.lse_c00172{letter-spacing:1.545120pt;}
.ls18_c00172{letter-spacing:1.598400pt;}
.ls1b_c00172{letter-spacing:1.639840pt;}
.ls1_c00172{letter-spacing:1.663520pt;}
.ls23_c00172{letter-spacing:1.764160pt;}
.ls3f_c00172{letter-spacing:1.811520pt;}
.ls4c_c00172{letter-spacing:1.829280pt;}
.ls3b_c00172{letter-spacing:1.924000pt;}
.ls53_c00172{letter-spacing:2.000960pt;}
.ls50_c00172{letter-spacing:2.030560pt;}
.ls16_c00172{letter-spacing:2.042400pt;}
.ls75_c00172{letter-spacing:2.080027pt;}
.ls48_c00172{letter-spacing:2.095680pt;}
.ls13_c00172{letter-spacing:2.107520pt;}
.ls14_c00172{letter-spacing:2.160800pt;}
.ls36_c00172{letter-spacing:2.273280pt;}
.ls1a_c00172{letter-spacing:2.308800pt;}
.ls73_c00172{letter-spacing:2.628480pt;}
.ls2d_c00172{letter-spacing:2.681760pt;}
.ls17_c00172{letter-spacing:2.746880pt;}
.ls4_c00172{letter-spacing:2.888960pt;}
.lsd_c00172{letter-spacing:2.942240pt;}
.ls61_c00172{letter-spacing:2.960000pt;}
.ws1_c00172{word-spacing:-0.934933pt;}
.ws5_c00172{word-spacing:0.000000pt;}
.ws3_c00172{word-spacing:4.276533pt;}
.ws0_c00172{word-spacing:5.661120pt;}
.ws2_c00172{word-spacing:6.020800pt;}
.ws4_c00172{word-spacing:7.680747pt;}
._8_c00172{margin-left:-5.920000pt;}
._0_c00172{margin-left:-4.824800pt;}
._7_c00172{margin-left:-3.759200pt;}
._5_c00172{margin-left:-2.036480pt;}
._9_c00172{margin-left:-1.046400pt;}
._2_c00172{width:1.456320pt;}
._a_c00172{width:2.356160pt;}
._1_c00172{width:3.254400pt;}
._4_c00172{width:5.085280pt;}
._3_c00172{width:6.121280pt;}
._6_c00172{width:7.544213pt;}
._b_c00172{width:8.786880pt;}
._c_c00172{width:12.507573pt;}
._f_c00172{width:20.009600pt;}
._d_c00172{width:21.844800pt;}
._11_c00172{width:23.105760pt;}
._e_c00172{width:24.929120pt;}
._10_c00172{width:27.557600pt;}
.fs3_c00172{font-size:18.133867pt;}
.fs4_c00172{font-size:18.667200pt;}
.fs5_c00172{font-size:20.800533pt;}
.fs7_c00172{font-size:25.066667pt;}
.fs6_c00172{font-size:26.133867pt;}
.fs9_c00172{font-size:29.333867pt;}
.fs8_c00172{font-size:37.333333pt;}
.fsb_c00172{font-size:38.400000pt;}
.fsa_c00172{font-size:41.600533pt;}
.fsc_c00172{font-size:54.933333pt;}
.fs1_c00172{font-size:59.200000pt;}
.fs0_c00172{font-size:59.733333pt;}
.fs2_c00172{font-size:60.266667pt;}
.y0_c00172{bottom:0.000000pt;}
.y14_c00172{bottom:63.373347pt;}
.y13_c00172{bottom:465.293347pt;}
.y12_c00172{bottom:473.613347pt;}
.y11_c00172{bottom:493.120013pt;}
.y10_c00172{bottom:549.120013pt;}
.yf_c00172{bottom:576.653347pt;}
.ye_c00172{bottom:632.333347pt;}
.yd_c00172{bottom:632.342547pt;}
.yc_c00172{bottom:660.166547pt;}
.yb_c00172{bottom:688.005347pt;}
.y9_c00172{bottom:715.530147pt;}
.ya_c00172{bottom:715.533347pt;}
.y8_c00172{bottom:743.694547pt;}
.y7_c00172{bottom:771.533347pt;}
.y6_c00172{bottom:826.560013pt;}
.y5_c00172{bottom:882.246813pt;}
.y4_c00172{bottom:909.765347pt;}
.y3_c00172{bottom:937.293347pt;}
.y2_c00172{bottom:992.973347pt;}
.y1_c00172{bottom:1059.853347pt;}
.h8_c00172{height:17.797398pt;}
.h9_c00172{height:18.275537pt;}
.ha_c00172{height:18.813038pt;}
.hb_c00172{height:21.694306pt;}
.hd_c00172{height:25.262500pt;}
.h11_c00172{height:25.574400pt;}
.hc_c00172{height:26.338037pt;}
.hf_c00172{height:29.563038pt;}
.he_c00172{height:38.937500pt;}
.h10_c00172{height:43.388056pt;}
.h12_c00172{height:53.914062pt;}
.h3_c00172{height:58.101562pt;}
.h6_c00172{height:58.114363pt;}
.h2_c00172{height:58.625000pt;}
.h5_c00172{height:59.097677pt;}
.h4_c00172{height:59.119010pt;}
.h7_c00172{height:62.856250pt;}
.h1_c00172{height:1122.666667pt;}
.h0_c00172{height:1122.880013pt;}
.w1_c00172{width:793.333333pt;}
.w0_c00172{width:793.600013pt;}
.x0_c00172{left:0.000000pt;}
.xd_c00172{left:107.826680pt;}
.x1_c00172{left:108.733347pt;}
.xe_c00172{left:119.720013pt;}
.x15_c00172{left:124.120013pt;}
.x16_c00172{left:139.800013pt;}
.xf_c00172{left:146.733347pt;}
.x10_c00172{left:155.666680pt;}
.x2_c00172{left:156.946680pt;}
.x17_c00172{left:198.320013pt;}
.x20_c00172{left:234.760013pt;}
.x18_c00172{left:238.893347pt;}
.x8_c00172{left:254.106680pt;}
.x9_c00172{left:278.693347pt;}
.x19_c00172{left:289.386680pt;}
.x21_c00172{left:311.840013pt;}
.x1a_c00172{left:337.760013pt;}
.x3_c00172{left:350.640013pt;}
.x1b_c00172{left:363.826680pt;}
.x22_c00172{left:374.560013pt;}
.x4_c00172{left:378.733347pt;}
.x11_c00172{left:459.360013pt;}
.x12_c00172{left:475.773347pt;}
.x1c_c00172{left:477.373347pt;}
.x5_c00172{left:546.160013pt;}
.xa_c00172{left:551.520013pt;}
.x1d_c00172{left:577.533347pt;}
.xb_c00172{left:595.866680pt;}
.x1e_c00172{left:612.093347pt;}
.x13_c00172{left:616.880013pt;}
.x6_c00172{left:623.280013pt;}
.x14_c00172{left:639.840013pt;}
.xc_c00172{left:642.626680pt;}
.x7_c00172{left:646.920013pt;}
.x1f_c00172{left:649.840013pt;}
}





/* 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_c00173 {
    display:none;
  }
  .loading-indicator_c00173.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00173 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_c00173 { 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_c00173" -> "#page-container .classname_c00173")
 */
.pf_c00173 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00173 { /* 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_c00173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00173 { /* 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_c00173 { /* 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_c00173 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00173 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00173 {overflow:visible;}
  }
}
.c_c00173 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00173 { /* 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_c00173:after { /* webkit #35443 */
  content: '';
}
.t_c00173:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00173 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 */
}
.__c00173 { /* 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_c00173 { /* info for Javascript */
  display:none;
}
.l_c00173 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00173 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00173 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00173: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_c00173 {
    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_c00173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00173.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_c00173 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00173;src:url('chunks/assets/font_205f8c614ea78b739e3dcce3.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.284668;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_c00173;src:url('chunks/assets/font_6faf22798a5b8385d2f46c9f.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.311035;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_c00173;src:url('chunks/assets/font_2d1236a599f0dd0616a9a9c6.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;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:ff4_c00173;src:url('chunks/assets/font_ae946e6ce60aaae81d95eec5.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;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:ff5_c00173;src:url('chunks/assets/font_80a43092f8c94e16605ac1c2.woff2')format("woff");}.ff5_c00173{font-family:ff5_c00173;line-height:1.284180;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;}
.m3_c00173{transform:matrix(0.171661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171661,0.000000,0.000000,0.250000,0,0);}
.m6_c00173{transform:matrix(0.230971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230971,0.000000,0.000000,0.250000,0,0);}
.m4_c00173{transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);}
.m1_c00173{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m7_c00173{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.m5_c00173{transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);}
.m2_c00173{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m0_c00173{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);}
.v0_c00173{vertical-align:0.000000px;}
.ls94_c00173{letter-spacing:-2.541000px;}
.ls36_c00173{letter-spacing:-2.478000px;}
.ls6f_c00173{letter-spacing:-2.400120px;}
.ls4e_c00173{letter-spacing:-2.378880px;}
.ls5f_c00173{letter-spacing:-2.289000px;}
.ls6b_c00173{letter-spacing:-2.138160px;}
.ls59_c00173{letter-spacing:-2.088600px;}
.ls45_c00173{letter-spacing:-2.060280px;}
.ls41_c00173{letter-spacing:-2.046120px;}
.ls92_c00173{letter-spacing:-1.873080px;}
.ls89_c00173{letter-spacing:-1.854960px;}
.ls60_c00173{letter-spacing:-1.596000px;}
.ls6e_c00173{letter-spacing:-1.444320px;}
.ls34_c00173{letter-spacing:-1.352280px;}
.ls7d_c00173{letter-spacing:-1.345200px;}
.ls48_c00173{letter-spacing:-1.323960px;}
.ls8c_c00173{letter-spacing:-1.295640px;}
.ls8e_c00173{letter-spacing:-1.239000px;}
.ls88_c00173{letter-spacing:-1.231920px;}
.ls77_c00173{letter-spacing:-1.111560px;}
.ls8a_c00173{letter-spacing:-1.040760px;}
.ls3a_c00173{letter-spacing:-1.026600px;}
.ls6c_c00173{letter-spacing:-0.962880px;}
.ls78_c00173{letter-spacing:-0.955800px;}
.ls91_c00173{letter-spacing:-0.936540px;}
.ls68_c00173{letter-spacing:-0.934560px;}
.ls44_c00173{letter-spacing:-0.913320px;}
.ls3d_c00173{letter-spacing:-0.899160px;}
.ls84_c00173{letter-spacing:-0.856680px;}
.ls51_c00173{letter-spacing:-0.828360px;}
.ls90_c00173{letter-spacing:-0.814200px;}
.ls43_c00173{letter-spacing:-0.792960px;}
.ls81_c00173{letter-spacing:-0.785880px;}
.ls83_c00173{letter-spacing:-0.771720px;}
.ls8f_c00173{letter-spacing:-0.693840px;}
.ls7a_c00173{letter-spacing:-0.679680px;}
.ls3b_c00173{letter-spacing:-0.672600px;}
.ls64_c00173{letter-spacing:-0.665520px;}
.ls7c_c00173{letter-spacing:-0.630120px;}
.ls4b_c00173{letter-spacing:-0.615960px;}
.ls35_c00173{letter-spacing:-0.601800px;}
.ls6d_c00173{letter-spacing:-0.566400px;}
.ls8d_c00173{letter-spacing:-0.559320px;}
.ls66_c00173{letter-spacing:-0.538080px;}
.ls33_c00173{letter-spacing:-0.531000px;}
.ls95_c00173{letter-spacing:-0.529620px;}
.ls52_c00173{letter-spacing:-0.523920px;}
.ls56_c00173{letter-spacing:-0.509760px;}
.ls37_c00173{letter-spacing:-0.502680px;}
.ls42_c00173{letter-spacing:-0.488520px;}
.ls70_c00173{letter-spacing:-0.481440px;}
.ls4a_c00173{letter-spacing:-0.453120px;}
.ls40_c00173{letter-spacing:-0.446040px;}
.ls82_c00173{letter-spacing:-0.438960px;}
.ls46_c00173{letter-spacing:-0.431880px;}
.ls62_c00173{letter-spacing:-0.424800px;}
.ls5c_c00173{letter-spacing:-0.417720px;}
.ls73_c00173{letter-spacing:-0.410640px;}
.ls32_c00173{letter-spacing:-0.403560px;}
.ls5a_c00173{letter-spacing:-0.389400px;}
.ls3e_c00173{letter-spacing:-0.382320px;}
.ls76_c00173{letter-spacing:-0.375240px;}
.ls4f_c00173{letter-spacing:-0.354000px;}
.ls65_c00173{letter-spacing:-0.346920px;}
.ls8b_c00173{letter-spacing:-0.339840px;}
.ls54_c00173{letter-spacing:-0.318600px;}
.ls87_c00173{letter-spacing:-0.297360px;}
.ls79_c00173{letter-spacing:-0.283200px;}
.ls86_c00173{letter-spacing:-0.276120px;}
.ls69_c00173{letter-spacing:-0.269040px;}
.ls6a_c00173{letter-spacing:-0.254880px;}
.ls71_c00173{letter-spacing:-0.233640px;}
.ls58_c00173{letter-spacing:-0.226560px;}
.ls38_c00173{letter-spacing:-0.219480px;}
.ls67_c00173{letter-spacing:-0.198240px;}
.ls75_c00173{letter-spacing:-0.177000px;}
.ls53_c00173{letter-spacing:-0.169920px;}
.ls7b_c00173{letter-spacing:-0.162840px;}
.ls49_c00173{letter-spacing:-0.155760px;}
.ls74_c00173{letter-spacing:-0.148680px;}
.ls4d_c00173{letter-spacing:-0.141600px;}
.ls47_c00173{letter-spacing:-0.120360px;}
.ls80_c00173{letter-spacing:-0.113280px;}
.ls4c_c00173{letter-spacing:-0.106200px;}
.ls5b_c00173{letter-spacing:-0.099120px;}
.ls3f_c00173{letter-spacing:-0.092040px;}
.ls55_c00173{letter-spacing:-0.084960px;}
.ls63_c00173{letter-spacing:-0.077880px;}
.ls5d_c00173{letter-spacing:-0.066000px;}
.ls57_c00173{letter-spacing:-0.063720px;}
.ls85_c00173{letter-spacing:-0.049560px;}
.ls3c_c00173{letter-spacing:-0.035400px;}
.ls72_c00173{letter-spacing:-0.021240px;}
.ls50_c00173{letter-spacing:-0.014160px;}
.ls7f_c00173{letter-spacing:-0.007080px;}
.ls39_c00173{letter-spacing:0.000000px;}
.ls2e_c00173{letter-spacing:0.007080px;}
.ls19_c00173{letter-spacing:0.014160px;}
.lsf_c00173{letter-spacing:0.028320px;}
.ls26_c00173{letter-spacing:0.035400px;}
.ls11_c00173{letter-spacing:0.056640px;}
.lsd_c00173{letter-spacing:0.070800px;}
.ls1b_c00173{letter-spacing:0.077880px;}
.ls15_c00173{letter-spacing:0.084960px;}
.ls28_c00173{letter-spacing:0.092040px;}
.ls9_c00173{letter-spacing:0.106200px;}
.ls5_c00173{letter-spacing:0.113280px;}
.ls3_c00173{letter-spacing:0.120360px;}
.ls27_c00173{letter-spacing:0.127440px;}
.ls2c_c00173{letter-spacing:0.141600px;}
.ls23_c00173{letter-spacing:0.148680px;}
.ls30_c00173{letter-spacing:0.189840px;}
.ls21_c00173{letter-spacing:0.198240px;}
.ls16_c00173{letter-spacing:0.205320px;}
.ls17_c00173{letter-spacing:0.212400px;}
.ls6_c00173{letter-spacing:0.219480px;}
.ls7e_c00173{letter-spacing:0.226560px;}
.lsa_c00173{letter-spacing:0.233640px;}
.ls13_c00173{letter-spacing:0.254880px;}
.ls7_c00173{letter-spacing:0.276120px;}
.lsb_c00173{letter-spacing:0.318600px;}
.ls24_c00173{letter-spacing:0.346920px;}
.ls18_c00173{letter-spacing:0.354000px;}
.ls1e_c00173{letter-spacing:0.375240px;}
.ls1d_c00173{letter-spacing:0.431880px;}
.ls2_c00173{letter-spacing:0.453120px;}
.ls0_c00173{letter-spacing:0.460200px;}
.ls12_c00173{letter-spacing:0.481440px;}
.ls1_c00173{letter-spacing:0.502680px;}
.ls1c_c00173{letter-spacing:0.516840px;}
.ls2b_c00173{letter-spacing:0.545160px;}
.ls1f_c00173{letter-spacing:0.559320px;}
.ls4_c00173{letter-spacing:0.566400px;}
.ls29_c00173{letter-spacing:0.573480px;}
.ls61_c00173{letter-spacing:0.620400px;}
.ls2f_c00173{letter-spacing:0.672600px;}
.ls10_c00173{letter-spacing:0.778800px;}
.ls14_c00173{letter-spacing:0.800040px;}
.ls8_c00173{letter-spacing:0.870840px;}
.ls2a_c00173{letter-spacing:0.998280px;}
.ls93_c00173{letter-spacing:1.125480px;}
.ls31_c00173{letter-spacing:1.168020px;}
.ls25_c00173{letter-spacing:1.189440px;}
.ls22_c00173{letter-spacing:1.196520px;}
.lse_c00173{letter-spacing:1.239000px;}
.ls2d_c00173{letter-spacing:1.281420px;}
.lsc_c00173{letter-spacing:1.373520px;}
.ls1a_c00173{letter-spacing:1.472640px;}
.ls20_c00173{letter-spacing:1.522200px;}
.ls5e_c00173{letter-spacing:2.488200px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{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__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00173{word-spacing:0.000000px;}
._1_c00173{margin-left:-4.885200px;}
._15_c00173{margin-left:-2.973600px;}
._f_c00173{margin-left:-1.529280px;}
._0_c00173{width:1.713360px;}
._11_c00173{width:3.313440px;}
._10_c00173{width:4.956000px;}
._12_c00173{width:6.195000px;}
._2_c00173{width:7.575600px;}
._13_c00173{width:9.607560px;}
._14_c00173{width:11.094360px;}
._e_c00173{width:12.751080px;}
._a_c00173{width:14.683920px;}
._9_c00173{width:15.930000px;}
._19_c00173{width:17.194320px;}
._d_c00173{width:18.315960px;}
._b_c00173{width:19.759200px;}
._8_c00173{width:20.914320px;}
._c_c00173{width:21.918360px;}
._16_c00173{width:24.597240px;}
._17_c00173{width:27.433680px;}
._18_c00173{width:28.624440px;}
._3_c00173{width:34.196400px;}
._6_c00173{width:36.108000px;}
._5_c00173{width:37.800120px;}
._4_c00173{width:39.640920px;}
._7_c00173{width:44.646600px;}
.fc0_c00173{color:transparent;}
.fs7_c00173{font-size:58.200000px;}
.fs4_c00173{font-size:60.000000px;}
.fs0_c00173{font-size:61.800000px;}
.fs3_c00173{font-size:65.400000px;}
.fs2_c00173{font-size:66.000000px;}
.fs5_c00173{font-size:67.800000px;}
.fs1_c00173{font-size:70.800000px;}
.fs6_c00173{font-size:72.600000px;}
.y0_c00173{bottom:0.000000px;}
.y1f_c00173{bottom:70.920006px;}
.y1e_c00173{bottom:198.015006px;}
.y1d_c00173{bottom:260.280006px;}
.y1c_c00173{bottom:291.257706px;}
.y1b_c00173{bottom:322.214406px;}
.y1a_c00173{bottom:353.171706px;}
.y19_c00173{bottom:383.775006px;}
.y18_c00173{bottom:383.779806px;}
.y17_c00173{bottom:414.719406px;}
.y16_c00173{bottom:445.694406px;}
.y15_c00173{bottom:476.273706px;}
.y14_c00173{bottom:507.248706px;}
.y13_c00173{bottom:537.852006px;}
.y12_c00173{bottom:569.535006px;}
.y11_c00173{bottom:569.540406px;}
.y10_c00173{bottom:600.474006px;}
.yf_c00173{bottom:631.095006px;}
.ye_c00173{bottom:631.100406px;}
.yd_c00173{bottom:693.015006px;}
.yc_c00173{bottom:754.560006px;}
.yb_c00173{bottom:816.135006px;}
.ya_c00173{bottom:816.145806px;}
.y9_c00173{bottom:847.457106px;}
.y8_c00173{bottom:878.414406px;}
.y7_c00173{bottom:909.000006px;}
.y6_c00173{bottom:939.971706px;}
.y5_c00173{bottom:970.575006px;}
.y3_c00173{bottom:1032.473406px;}
.y4_c00173{bottom:1032.480006px;}
.y2_c00173{bottom:1093.680006px;}
.y1_c00173{bottom:1196.280006px;}
.hd_c00173{height:57.120117px;}
.h2_c00173{height:60.653320px;}
.h7_c00173{height:62.578125px;}
.h5_c00173{height:66.515625px;}
.h6_c00173{height:68.210156px;}
.h3_c00173{height:69.486328px;}
.hb_c00173{height:69.488728px;}
.h4_c00173{height:69.499528px;}
.h9_c00173{height:69.510328px;}
.ha_c00173{height:69.511528px;}
.hc_c00173{height:71.252930px;}
.h8_c00173{height:71.353125px;}
.h1_c00173{height:1263.000000px;}
.h0_c00173{height:1263.240006px;}
.w1_c00173{width:892.500000px;}
.w0_c00173{width:892.799998px;}
.x0_c00173{left:0.000000px;}
.x13_c00173{left:112.848299px;}
.x10_c00173{left:113.964898px;}
.x6_c00173{left:114.998998px;}
.x5_c00173{left:116.096398px;}
.x2_c00173{left:117.276898px;}
.x1_c00173{left:119.084998px;}
.x16_c00173{left:165.854998px;}
.x9_c00173{left:169.004998px;}
.x4_c00173{left:170.564999px;}
.x7_c00173{left:259.034999px;}
.x8_c00173{left:279.914999px;}
.xa_c00173{left:302.639999px;}
.x3_c00173{left:324.839999px;}
.x14_c00173{left:351.914999px;}
.xb_c00173{left:358.739999px;}
.xe_c00173{left:372.044999px;}
.x15_c00173{left:373.874999px;}
.xc_c00173{left:376.469998px;}
.xf_c00173{left:392.969998px;}
.x17_c00173{left:394.469998px;}
.x19_c00173{left:417.809999px;}
.xd_c00173{left:463.724999px;}
.x18_c00173{left:467.369999px;}
.x11_c00173{left:524.714998px;}
.x12_c00173{left:546.689999px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls94_c00173{letter-spacing:-2.258667pt;}
.ls36_c00173{letter-spacing:-2.202667pt;}
.ls6f_c00173{letter-spacing:-2.133440pt;}
.ls4e_c00173{letter-spacing:-2.114560pt;}
.ls5f_c00173{letter-spacing:-2.034667pt;}
.ls6b_c00173{letter-spacing:-1.900587pt;}
.ls59_c00173{letter-spacing:-1.856533pt;}
.ls45_c00173{letter-spacing:-1.831360pt;}
.ls41_c00173{letter-spacing:-1.818773pt;}
.ls92_c00173{letter-spacing:-1.664960pt;}
.ls89_c00173{letter-spacing:-1.648853pt;}
.ls60_c00173{letter-spacing:-1.418667pt;}
.ls6e_c00173{letter-spacing:-1.283840pt;}
.ls34_c00173{letter-spacing:-1.202027pt;}
.ls7d_c00173{letter-spacing:-1.195733pt;}
.ls48_c00173{letter-spacing:-1.176853pt;}
.ls8c_c00173{letter-spacing:-1.151680pt;}
.ls8e_c00173{letter-spacing:-1.101333pt;}
.ls88_c00173{letter-spacing:-1.095040pt;}
.ls77_c00173{letter-spacing:-0.988053pt;}
.ls8a_c00173{letter-spacing:-0.925120pt;}
.ls3a_c00173{letter-spacing:-0.912533pt;}
.ls6c_c00173{letter-spacing:-0.855893pt;}
.ls78_c00173{letter-spacing:-0.849600pt;}
.ls91_c00173{letter-spacing:-0.832480pt;}
.ls68_c00173{letter-spacing:-0.830720pt;}
.ls44_c00173{letter-spacing:-0.811840pt;}
.ls3d_c00173{letter-spacing:-0.799253pt;}
.ls84_c00173{letter-spacing:-0.761493pt;}
.ls51_c00173{letter-spacing:-0.736320pt;}
.ls90_c00173{letter-spacing:-0.723733pt;}
.ls43_c00173{letter-spacing:-0.704853pt;}
.ls81_c00173{letter-spacing:-0.698560pt;}
.ls83_c00173{letter-spacing:-0.685973pt;}
.ls8f_c00173{letter-spacing:-0.616747pt;}
.ls7a_c00173{letter-spacing:-0.604160pt;}
.ls3b_c00173{letter-spacing:-0.597867pt;}
.ls64_c00173{letter-spacing:-0.591573pt;}
.ls7c_c00173{letter-spacing:-0.560107pt;}
.ls4b_c00173{letter-spacing:-0.547520pt;}
.ls35_c00173{letter-spacing:-0.534933pt;}
.ls6d_c00173{letter-spacing:-0.503467pt;}
.ls8d_c00173{letter-spacing:-0.497173pt;}
.ls66_c00173{letter-spacing:-0.478293pt;}
.ls33_c00173{letter-spacing:-0.472000pt;}
.ls95_c00173{letter-spacing:-0.470773pt;}
.ls52_c00173{letter-spacing:-0.465707pt;}
.ls56_c00173{letter-spacing:-0.453120pt;}
.ls37_c00173{letter-spacing:-0.446827pt;}
.ls42_c00173{letter-spacing:-0.434240pt;}
.ls70_c00173{letter-spacing:-0.427947pt;}
.ls4a_c00173{letter-spacing:-0.402773pt;}
.ls40_c00173{letter-spacing:-0.396480pt;}
.ls82_c00173{letter-spacing:-0.390187pt;}
.ls46_c00173{letter-spacing:-0.383893pt;}
.ls62_c00173{letter-spacing:-0.377600pt;}
.ls5c_c00173{letter-spacing:-0.371307pt;}
.ls73_c00173{letter-spacing:-0.365013pt;}
.ls32_c00173{letter-spacing:-0.358720pt;}
.ls5a_c00173{letter-spacing:-0.346133pt;}
.ls3e_c00173{letter-spacing:-0.339840pt;}
.ls76_c00173{letter-spacing:-0.333547pt;}
.ls4f_c00173{letter-spacing:-0.314667pt;}
.ls65_c00173{letter-spacing:-0.308373pt;}
.ls8b_c00173{letter-spacing:-0.302080pt;}
.ls54_c00173{letter-spacing:-0.283200pt;}
.ls87_c00173{letter-spacing:-0.264320pt;}
.ls79_c00173{letter-spacing:-0.251733pt;}
.ls86_c00173{letter-spacing:-0.245440pt;}
.ls69_c00173{letter-spacing:-0.239147pt;}
.ls6a_c00173{letter-spacing:-0.226560pt;}
.ls71_c00173{letter-spacing:-0.207680pt;}
.ls58_c00173{letter-spacing:-0.201387pt;}
.ls38_c00173{letter-spacing:-0.195093pt;}
.ls67_c00173{letter-spacing:-0.176213pt;}
.ls75_c00173{letter-spacing:-0.157333pt;}
.ls53_c00173{letter-spacing:-0.151040pt;}
.ls7b_c00173{letter-spacing:-0.144747pt;}
.ls49_c00173{letter-spacing:-0.138453pt;}
.ls74_c00173{letter-spacing:-0.132160pt;}
.ls4d_c00173{letter-spacing:-0.125867pt;}
.ls47_c00173{letter-spacing:-0.106987pt;}
.ls80_c00173{letter-spacing:-0.100693pt;}
.ls4c_c00173{letter-spacing:-0.094400pt;}
.ls5b_c00173{letter-spacing:-0.088107pt;}
.ls3f_c00173{letter-spacing:-0.081813pt;}
.ls55_c00173{letter-spacing:-0.075520pt;}
.ls63_c00173{letter-spacing:-0.069227pt;}
.ls5d_c00173{letter-spacing:-0.058667pt;}
.ls57_c00173{letter-spacing:-0.056640pt;}
.ls85_c00173{letter-spacing:-0.044053pt;}
.ls3c_c00173{letter-spacing:-0.031467pt;}
.ls72_c00173{letter-spacing:-0.018880pt;}
.ls50_c00173{letter-spacing:-0.012587pt;}
.ls7f_c00173{letter-spacing:-0.006293pt;}
.ls39_c00173{letter-spacing:0.000000pt;}
.ls2e_c00173{letter-spacing:0.006293pt;}
.ls19_c00173{letter-spacing:0.012587pt;}
.lsf_c00173{letter-spacing:0.025173pt;}
.ls26_c00173{letter-spacing:0.031467pt;}
.ls11_c00173{letter-spacing:0.050347pt;}
.lsd_c00173{letter-spacing:0.062933pt;}
.ls1b_c00173{letter-spacing:0.069227pt;}
.ls15_c00173{letter-spacing:0.075520pt;}
.ls28_c00173{letter-spacing:0.081813pt;}
.ls9_c00173{letter-spacing:0.094400pt;}
.ls5_c00173{letter-spacing:0.100693pt;}
.ls3_c00173{letter-spacing:0.106987pt;}
.ls27_c00173{letter-spacing:0.113280pt;}
.ls2c_c00173{letter-spacing:0.125867pt;}
.ls23_c00173{letter-spacing:0.132160pt;}
.ls30_c00173{letter-spacing:0.168747pt;}
.ls21_c00173{letter-spacing:0.176213pt;}
.ls16_c00173{letter-spacing:0.182507pt;}
.ls17_c00173{letter-spacing:0.188800pt;}
.ls6_c00173{letter-spacing:0.195093pt;}
.ls7e_c00173{letter-spacing:0.201387pt;}
.lsa_c00173{letter-spacing:0.207680pt;}
.ls13_c00173{letter-spacing:0.226560pt;}
.ls7_c00173{letter-spacing:0.245440pt;}
.lsb_c00173{letter-spacing:0.283200pt;}
.ls24_c00173{letter-spacing:0.308373pt;}
.ls18_c00173{letter-spacing:0.314667pt;}
.ls1e_c00173{letter-spacing:0.333547pt;}
.ls1d_c00173{letter-spacing:0.383893pt;}
.ls2_c00173{letter-spacing:0.402773pt;}
.ls0_c00173{letter-spacing:0.409067pt;}
.ls12_c00173{letter-spacing:0.427947pt;}
.ls1_c00173{letter-spacing:0.446827pt;}
.ls1c_c00173{letter-spacing:0.459413pt;}
.ls2b_c00173{letter-spacing:0.484587pt;}
.ls1f_c00173{letter-spacing:0.497173pt;}
.ls4_c00173{letter-spacing:0.503467pt;}
.ls29_c00173{letter-spacing:0.509760pt;}
.ls61_c00173{letter-spacing:0.551467pt;}
.ls2f_c00173{letter-spacing:0.597867pt;}
.ls10_c00173{letter-spacing:0.692267pt;}
.ls14_c00173{letter-spacing:0.711147pt;}
.ls8_c00173{letter-spacing:0.774080pt;}
.ls2a_c00173{letter-spacing:0.887360pt;}
.ls93_c00173{letter-spacing:1.000427pt;}
.ls31_c00173{letter-spacing:1.038240pt;}
.ls25_c00173{letter-spacing:1.057280pt;}
.ls22_c00173{letter-spacing:1.063573pt;}
.lse_c00173{letter-spacing:1.101333pt;}
.ls2d_c00173{letter-spacing:1.139040pt;}
.lsc_c00173{letter-spacing:1.220907pt;}
.ls1a_c00173{letter-spacing:1.309013pt;}
.ls20_c00173{letter-spacing:1.353067pt;}
.ls5e_c00173{letter-spacing:2.211733pt;}
.ws0_c00173{word-spacing:0.000000pt;}
._1_c00173{margin-left:-4.342400pt;}
._15_c00173{margin-left:-2.643200pt;}
._f_c00173{margin-left:-1.359360pt;}
._0_c00173{width:1.522987pt;}
._11_c00173{width:2.945280pt;}
._10_c00173{width:4.405333pt;}
._12_c00173{width:5.506667pt;}
._2_c00173{width:6.733867pt;}
._13_c00173{width:8.540053pt;}
._14_c00173{width:9.861653pt;}
._e_c00173{width:11.334293pt;}
._a_c00173{width:13.052373pt;}
._9_c00173{width:14.160000pt;}
._19_c00173{width:15.283840pt;}
._d_c00173{width:16.280853pt;}
._b_c00173{width:17.563733pt;}
._8_c00173{width:18.590507pt;}
._c_c00173{width:19.482987pt;}
._16_c00173{width:21.864213pt;}
._17_c00173{width:24.385493pt;}
._18_c00173{width:25.443947pt;}
._3_c00173{width:30.396800pt;}
._6_c00173{width:32.096000pt;}
._5_c00173{width:33.600107pt;}
._4_c00173{width:35.236373pt;}
._7_c00173{width:39.685867pt;}
.fs7_c00173{font-size:51.733333pt;}
.fs4_c00173{font-size:53.333333pt;}
.fs0_c00173{font-size:54.933333pt;}
.fs3_c00173{font-size:58.133333pt;}
.fs2_c00173{font-size:58.666667pt;}
.fs5_c00173{font-size:60.266667pt;}
.fs1_c00173{font-size:62.933333pt;}
.fs6_c00173{font-size:64.533333pt;}
.y0_c00173{bottom:0.000000pt;}
.y1f_c00173{bottom:63.040005pt;}
.y1e_c00173{bottom:176.013339pt;}
.y1d_c00173{bottom:231.360005pt;}
.y1c_c00173{bottom:258.895739pt;}
.y1b_c00173{bottom:286.412805pt;}
.y1a_c00173{bottom:313.930405pt;}
.y19_c00173{bottom:341.133339pt;}
.y18_c00173{bottom:341.137605pt;}
.y17_c00173{bottom:368.639472pt;}
.y16_c00173{bottom:396.172805pt;}
.y15_c00173{bottom:423.354405pt;}
.y14_c00173{bottom:450.887739pt;}
.y13_c00173{bottom:478.090672pt;}
.y12_c00173{bottom:506.253339pt;}
.y11_c00173{bottom:506.258139pt;}
.y10_c00173{bottom:533.754672pt;}
.yf_c00173{bottom:560.973339pt;}
.ye_c00173{bottom:560.978139pt;}
.yd_c00173{bottom:616.013339pt;}
.yc_c00173{bottom:670.720005pt;}
.yb_c00173{bottom:725.453339pt;}
.ya_c00173{bottom:725.462939pt;}
.y9_c00173{bottom:753.295205pt;}
.y8_c00173{bottom:780.812805pt;}
.y7_c00173{bottom:808.000005pt;}
.y6_c00173{bottom:835.530405pt;}
.y5_c00173{bottom:862.733339pt;}
.y3_c00173{bottom:917.754139pt;}
.y4_c00173{bottom:917.760005pt;}
.y2_c00173{bottom:972.160005pt;}
.y1_c00173{bottom:1063.360005pt;}
.hd_c00173{height:50.773437pt;}
.h2_c00173{height:53.914062pt;}
.h7_c00173{height:55.625000pt;}
.h5_c00173{height:59.125000pt;}
.h6_c00173{height:60.631250pt;}
.h3_c00173{height:61.765625pt;}
.hb_c00173{height:61.767758pt;}
.h4_c00173{height:61.777358pt;}
.h9_c00173{height:61.786958pt;}
.ha_c00173{height:61.788025pt;}
.hc_c00173{height:63.335938pt;}
.h8_c00173{height:63.425000pt;}
.h1_c00173{height:1122.666667pt;}
.h0_c00173{height:1122.880005pt;}
.w1_c00173{width:793.333333pt;}
.w0_c00173{width:793.599999pt;}
.x0_c00173{left:0.000000pt;}
.x13_c00173{left:100.309599pt;}
.x10_c00173{left:101.302132pt;}
.x6_c00173{left:102.221332pt;}
.x5_c00173{left:103.196799pt;}
.x2_c00173{left:104.246132pt;}
.x1_c00173{left:105.853332pt;}
.x16_c00173{left:147.426665pt;}
.x9_c00173{left:150.226665pt;}
.x4_c00173{left:151.613332pt;}
.x7_c00173{left:230.253332pt;}
.x8_c00173{left:248.813332pt;}
.xa_c00173{left:269.013332pt;}
.x3_c00173{left:288.746665pt;}
.x14_c00173{left:312.813332pt;}
.xb_c00173{left:318.879999pt;}
.xe_c00173{left:330.706665pt;}
.x15_c00173{left:332.333332pt;}
.xc_c00173{left:334.639999pt;}
.xf_c00173{left:349.306665pt;}
.x17_c00173{left:350.639999pt;}
.x19_c00173{left:371.386665pt;}
.xd_c00173{left:412.199999pt;}
.x18_c00173{left:415.439999pt;}
.x11_c00173{left:466.413332pt;}
.x12_c00173{left:485.946665pt;}
}





/* 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_c00174 {
    display:none;
  }
  .loading-indicator_c00174.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00174 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_c00174 { 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_c00174" -> "#page-container .classname_c00174")
 */
.pf_c00174 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00174 { /* 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_c00174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00174 { /* 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_c00174 { /* 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_c00174 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00174 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00174 {overflow:visible;}
  }
}
.c_c00174 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00174 { /* 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_c00174:after { /* webkit #35443 */
  content: '';
}
.t_c00174:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00174 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 */
}
.__c00174 { /* 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_c00174 { /* info for Javascript */
  display:none;
}
.l_c00174 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00174 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00174 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00174: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_c00174 {
    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_c00174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00174.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_c00174 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00174;src:url('chunks/assets/font_7bf5865d3e4d46fe80078873.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.311035;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_c00174;src:url('chunks/assets/font_9eb93fe10b7ca110b2b77c1f.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.284180;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_c00174;src:url('chunks/assets/font_45841d4d9ec71305c258fb16.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.284668;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_c00174;src:url('chunks/assets/font_e16a586c20a00aad9c056008.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:1.284180;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;}
.m6_c00174{transform:matrix(0.191904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191904,0.000000,0.000000,0.250000,0,0);}
.m8_c00174{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.mb_c00174{transform:matrix(0.242689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242689,0.000000,0.000000,0.250000,0,0);}
.m2_c00174{transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);}
.m9_c00174{transform:matrix(0.244447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244447,0.000000,0.000000,0.250000,0,0);}
.mc_c00174{transform:matrix(0.246947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246947,0.000000,0.000000,0.250000,0,0);}
.ma_c00174{transform:matrix(0.246966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246966,0.000000,0.000000,0.250000,0,0);}
.md_c00174{transform:matrix(0.247996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247996,0.000000,0.000000,0.250000,0,0);}
.m7_c00174{transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);}
.me_c00174{transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m4_c00174{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m5_c00174{transform:matrix(0.249574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249574,0.000000,0.000000,0.250000,0,0);}
.m3_c00174{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m0_c00174{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);}
.v0_c00174{vertical-align:0.000000px;}
.ls79_c00174{letter-spacing:-2.457000px;}
.ls56_c00174{letter-spacing:-2.415000px;}
.ls75_c00174{letter-spacing:-2.352000px;}
.ls7a_c00174{letter-spacing:-2.302560px;}
.ls87_c00174{letter-spacing:-2.159700px;}
.ls6d_c00174{letter-spacing:-2.125200px;}
.ls59_c00174{letter-spacing:-1.959600px;}
.ls63_c00174{letter-spacing:-1.807800px;}
.ls5f_c00174{letter-spacing:-1.766400px;}
.ls60_c00174{letter-spacing:-1.649100px;}
.ls64_c00174{letter-spacing:-1.497300px;}
.ls62_c00174{letter-spacing:-1.428300px;}
.ls8a_c00174{letter-spacing:-1.373100px;}
.ls5e_c00174{letter-spacing:-1.276500px;}
.ls8d_c00174{letter-spacing:-1.193700px;}
.ls89_c00174{letter-spacing:-1.166100px;}
.ls5b_c00174{letter-spacing:-1.131600px;}
.ls8e_c00174{letter-spacing:-1.110900px;}
.ls82_c00174{letter-spacing:-1.083300px;}
.ls58_c00174{letter-spacing:-1.062600px;}
.ls84_c00174{letter-spacing:-1.048800px;}
.ls6f_c00174{letter-spacing:-1.014300px;}
.ls90_c00174{letter-spacing:-0.966000px;}
.ls5d_c00174{letter-spacing:-0.952200px;}
.ls77_c00174{letter-spacing:-0.945300px;}
.ls65_c00174{letter-spacing:-0.862500px;}
.ls91_c00174{letter-spacing:-0.823680px;}
.ls80_c00174{letter-spacing:-0.821100px;}
.ls66_c00174{letter-spacing:-0.814200px;}
.ls86_c00174{letter-spacing:-0.800400px;}
.ls8f_c00174{letter-spacing:-0.676200px;}
.ls69_c00174{letter-spacing:-0.586500px;}
.ls8b_c00174{letter-spacing:-0.531300px;}
.ls61_c00174{letter-spacing:-0.503700px;}
.ls88_c00174{letter-spacing:-0.496800px;}
.ls67_c00174{letter-spacing:-0.455400px;}
.ls81_c00174{letter-spacing:-0.441600px;}
.ls8c_c00174{letter-spacing:-0.386400px;}
.ls7f_c00174{letter-spacing:-0.345000px;}
.ls5c_c00174{letter-spacing:-0.331200px;}
.ls6e_c00174{letter-spacing:-0.269100px;}
.ls85_c00174{letter-spacing:-0.234600px;}
.ls68_c00174{letter-spacing:-0.220800px;}
.ls73_c00174{letter-spacing:-0.179400px;}
.ls6a_c00174{letter-spacing:-0.117300px;}
.ls7b_c00174{letter-spacing:-0.103500px;}
.ls7e_c00174{letter-spacing:-0.096600px;}
.ls7c_c00174{letter-spacing:-0.075900px;}
.ls72_c00174{letter-spacing:-0.069000px;}
.ls5a_c00174{letter-spacing:-0.055200px;}
.ls6c_c00174{letter-spacing:-0.048300px;}
.ls57_c00174{letter-spacing:-0.041400px;}
.ls55_c00174{letter-spacing:0.000000px;}
.ls17_c00174{letter-spacing:0.006900px;}
.ls4b_c00174{letter-spacing:0.034500px;}
.ls9_c00174{letter-spacing:0.041400px;}
.ls8_c00174{letter-spacing:0.048300px;}
.ls47_c00174{letter-spacing:0.055200px;}
.ls1b_c00174{letter-spacing:0.069000px;}
.lsd_c00174{letter-spacing:0.089700px;}
.ls71_c00174{letter-spacing:0.103500px;}
.ls6_c00174{letter-spacing:0.144900px;}
.ls1d_c00174{letter-spacing:0.151800px;}
.ls30_c00174{letter-spacing:0.165600px;}
.ls4f_c00174{letter-spacing:0.179400px;}
.ls2a_c00174{letter-spacing:0.186300px;}
.ls2_c00174{letter-spacing:0.193200px;}
.ls45_c00174{letter-spacing:0.200100px;}
.ls41_c00174{letter-spacing:0.220800px;}
.ls25_c00174{letter-spacing:0.241500px;}
.ls42_c00174{letter-spacing:0.248400px;}
.ls38_c00174{letter-spacing:0.276000px;}
.ls4c_c00174{letter-spacing:0.289800px;}
.ls6b_c00174{letter-spacing:0.303600px;}
.ls70_c00174{letter-spacing:0.317400px;}
.ls29_c00174{letter-spacing:0.324300px;}
.ls5_c00174{letter-spacing:0.331200px;}
.ls16_c00174{letter-spacing:0.338100px;}
.ls40_c00174{letter-spacing:0.345000px;}
.ls35_c00174{letter-spacing:0.351900px;}
.ls2f_c00174{letter-spacing:0.379500px;}
.ls2c_c00174{letter-spacing:0.386400px;}
.ls3_c00174{letter-spacing:0.407100px;}
.ls74_c00174{letter-spacing:0.427800px;}
.ls4d_c00174{letter-spacing:0.434700px;}
.ls3e_c00174{letter-spacing:0.448500px;}
.ls4e_c00174{letter-spacing:0.455400px;}
.ls10_c00174{letter-spacing:0.462300px;}
.ls3b_c00174{letter-spacing:0.496800px;}
.ls44_c00174{letter-spacing:0.503700px;}
.ls12_c00174{letter-spacing:0.510600px;}
.ls43_c00174{letter-spacing:0.517500px;}
.ls26_c00174{letter-spacing:0.524400px;}
.ls36_c00174{letter-spacing:0.552000px;}
.ls28_c00174{letter-spacing:0.558900px;}
.ls3f_c00174{letter-spacing:0.579600px;}
.ls22_c00174{letter-spacing:0.586500px;}
.ls34_c00174{letter-spacing:0.614100px;}
.ls2e_c00174{letter-spacing:0.621000px;}
.ls1f_c00174{letter-spacing:0.641700px;}
.ls78_c00174{letter-spacing:0.644280px;}
.ls3d_c00174{letter-spacing:0.648600px;}
.ls2b_c00174{letter-spacing:0.662400px;}
.ls3a_c00174{letter-spacing:0.676200px;}
.ls15_c00174{letter-spacing:0.690000px;}
.ls4_c00174{letter-spacing:0.752100px;}
.ls24_c00174{letter-spacing:0.759000px;}
.ls51_c00174{letter-spacing:0.766140px;}
.ls4a_c00174{letter-spacing:0.772800px;}
.ls53_c00174{letter-spacing:0.779700px;}
.ls46_c00174{letter-spacing:0.793500px;}
.ls1a_c00174{letter-spacing:0.800400px;}
.ls32_c00174{letter-spacing:0.862500px;}
.ls1c_c00174{letter-spacing:0.869400px;}
.ls19_c00174{letter-spacing:0.883200px;}
.ls48_c00174{letter-spacing:0.910800px;}
.lsa_c00174{letter-spacing:0.917700px;}
.ls14_c00174{letter-spacing:0.922080px;}
.ls7_c00174{letter-spacing:0.924600px;}
.ls76_c00174{letter-spacing:0.931500px;}
.ls50_c00174{letter-spacing:0.942420px;}
.ls52_c00174{letter-spacing:0.952200px;}
.lsf_c00174{letter-spacing:0.996660px;}
.ls49_c00174{letter-spacing:1.057680px;}
.ls27_c00174{letter-spacing:1.097100px;}
.ls2d_c00174{letter-spacing:1.152300px;}
.ls11_c00174{letter-spacing:1.159380px;}
.ls23_c00174{letter-spacing:1.193700px;}
.ls1_c00174{letter-spacing:1.247520px;}
.ls18_c00174{letter-spacing:1.254300px;}
.ls83_c00174{letter-spacing:1.262700px;}
.ls0_c00174{letter-spacing:1.308540px;}
.ls31_c00174{letter-spacing:1.311000px;}
.ls33_c00174{letter-spacing:1.359300px;}
.ls20_c00174{letter-spacing:1.362780px;}
.ls39_c00174{letter-spacing:1.435200px;}
.lse_c00174{letter-spacing:1.478040px;}
.ls13_c00174{letter-spacing:1.640760px;}
.ls54_c00174{letter-spacing:1.647060px;}
.lsc_c00174{letter-spacing:1.681440px;}
.lsb_c00174{letter-spacing:1.769580px;}
.ls7d_c00174{letter-spacing:1.773300px;}
.ls3c_c00174{letter-spacing:1.842300px;}
.ls1e_c00174{letter-spacing:1.952700px;}
.ls21_c00174{letter-spacing:2.152800px;}
.ls37_c00174{letter-spacing:3.070500px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{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__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00174{word-spacing:-0.531120px;}
.ws4_c00174{word-spacing:0.000000px;}
.ws3_c00174{word-spacing:1.488660px;}
.ws0_c00174{word-spacing:17.976000px;}
.ws2_c00174{word-spacing:54.360600px;}
._11_c00174{margin-left:-31.647600px;}
._10_c00174{margin-left:-12.534660px;}
._9_c00174{margin-left:-11.071800px;}
._19_c00174{margin-left:-6.382500px;}
._f_c00174{margin-left:-4.850100px;}
._1a_c00174{margin-left:-3.804720px;}
._0_c00174{margin-left:-2.305200px;}
._b_c00174{margin-left:-1.228200px;}
._1_c00174{width:1.295160px;}
._3_c00174{width:3.146400px;}
._a_c00174{width:4.237860px;}
._5_c00174{width:5.616600px;}
._2_c00174{width:7.107000px;}
._8_c00174{width:8.507700px;}
._14_c00174{width:9.591000px;}
._6_c00174{width:10.936500px;}
._18_c00174{width:12.213000px;}
._4_c00174{width:13.662000px;}
._12_c00174{width:15.193800px;}
._15_c00174{width:16.656600px;}
._7_c00174{width:17.857200px;}
._d_c00174{width:19.872000px;}
._c_c00174{width:21.500400px;}
._e_c00174{width:22.990800px;}
._16_c00174{width:24.722700px;}
._17_c00174{width:26.254500px;}
._13_c00174{width:43.428600px;}
.fc0_c00174{color:transparent;}
.fs6_c00174{font-size:57.600000px;}
.fs0_c00174{font-size:58.200000px;}
.fs3_c00174{font-size:67.200000px;}
.fs1_c00174{font-size:67.800000px;}
.fs2_c00174{font-size:69.000000px;}
.fs5_c00174{font-size:70.200000px;}
.fs4_c00174{font-size:70.800000px;}
.y0_c00174{bottom:0.000000px;}
.y1f_c00174{bottom:68.775015px;}
.y1e_c00174{bottom:158.760015px;}
.y1d_c00174{bottom:219.609015px;}
.y1c_c00174{bottom:250.935015px;}
.y1a_c00174{bottom:312.473265px;}
.y1b_c00174{bottom:312.480015px;}
.y19_c00174{bottom:343.074765px;}
.y18_c00174{bottom:374.038515px;}
.y16_c00174{bottom:404.286015px;}
.y17_c00174{bottom:404.295015px;}
.y15_c00174{bottom:435.594765px;}
.y14_c00174{bottom:466.213515px;}
.y13_c00174{bottom:496.815015px;}
.y12_c00174{bottom:527.760015px;}
.y11_c00174{bottom:589.674015px;}
.y10_c00174{bottom:620.655015px;}
.yf_c00174{bottom:683.994015px;}
.ye_c00174{bottom:714.975015px;}
.yd_c00174{bottom:776.880015px;}
.yc_c00174{bottom:807.480015px;}
.yb_c00174{bottom:838.455015px;}
.ya_c00174{bottom:869.040015px;}
.y9_c00174{bottom:899.655015px;}
.y8_c00174{bottom:930.615015px;}
.y6_c00174{bottom:991.811265px;}
.y7_c00174{bottom:991.815015px;}
.y4_c00174{bottom:1022.772015px;}
.y5_c00174{bottom:1022.775015px;}
.y3_c00174{bottom:1083.975015px;}
.y2_c00174{bottom:1115.295015px;}
.y1_c00174{bottom:1190.520015px;}
.h9_c00174{height:56.531250px;}
.h2_c00174{height:58.654687px;}
.h4_c00174{height:65.953125px;}
.h3_c00174{height:67.719727px;}
.h8_c00174{height:67.755727px;}
.h5_c00174{height:69.451758px;}
.h7_c00174{height:69.539062px;}
.h6_c00174{height:70.748437px;}
.h1_c00174{height:1263.000000px;}
.h0_c00174{height:1263.240015px;}
.w1_c00174{width:892.500000px;}
.w0_c00174{width:892.800015px;}
.x0_c00174{left:0.000000px;}
.x1e_c00174{left:117.996765px;}
.x1_c00174{left:119.445015px;}
.x22_c00174{left:170.445015px;}
.x13_c00174{left:171.525015px;}
.x9_c00174{left:172.620015px;}
.x4_c00174{left:173.790015px;}
.x2_c00174{left:232.725015px;}
.x16_c00174{left:247.920015px;}
.x17_c00174{left:375.660015px;}
.x7_c00174{left:385.005015px;}
.x18_c00174{left:404.055015px;}
.x8_c00174{left:413.760015px;}
.x23_c00174{left:419.985015px;}
.x19_c00174{left:455.925015px;}
.x21_c00174{left:477.540015px;}
.xa_c00174{left:507.045015px;}
.x1a_c00174{left:524.325015px;}
.xf_c00174{left:525.360015px;}
.xb_c00174{left:534.885015px;}
.xc_c00174{left:541.920015px;}
.x10_c00174{left:551.670015px;}
.x1b_c00174{left:561.510015px;}
.xd_c00174{left:567.165015px;}
.xe_c00174{left:594.525015px;}
.x1f_c00174{left:596.490015px;}
.x3_c00174{left:600.240015px;}
.x20_c00174{left:620.475015px;}
.x11_c00174{left:647.805015px;}
.x1c_c00174{left:657.165015px;}
.x14_c00174{left:661.965015px;}
.x12_c00174{left:675.285015px;}
.x5_c00174{left:678.375015px;}
.x15_c00174{left:694.260015px;}
.x6_c00174{left:696.045015px;}
.x1d_c00174{left:715.200015px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls79_c00174{letter-spacing:-2.184000pt;}
.ls56_c00174{letter-spacing:-2.146667pt;}
.ls75_c00174{letter-spacing:-2.090667pt;}
.ls7a_c00174{letter-spacing:-2.046720pt;}
.ls87_c00174{letter-spacing:-1.919733pt;}
.ls6d_c00174{letter-spacing:-1.889067pt;}
.ls59_c00174{letter-spacing:-1.741867pt;}
.ls63_c00174{letter-spacing:-1.606933pt;}
.ls5f_c00174{letter-spacing:-1.570133pt;}
.ls60_c00174{letter-spacing:-1.465867pt;}
.ls64_c00174{letter-spacing:-1.330933pt;}
.ls62_c00174{letter-spacing:-1.269600pt;}
.ls8a_c00174{letter-spacing:-1.220533pt;}
.ls5e_c00174{letter-spacing:-1.134667pt;}
.ls8d_c00174{letter-spacing:-1.061067pt;}
.ls89_c00174{letter-spacing:-1.036533pt;}
.ls5b_c00174{letter-spacing:-1.005867pt;}
.ls8e_c00174{letter-spacing:-0.987467pt;}
.ls82_c00174{letter-spacing:-0.962933pt;}
.ls58_c00174{letter-spacing:-0.944533pt;}
.ls84_c00174{letter-spacing:-0.932267pt;}
.ls6f_c00174{letter-spacing:-0.901600pt;}
.ls90_c00174{letter-spacing:-0.858667pt;}
.ls5d_c00174{letter-spacing:-0.846400pt;}
.ls77_c00174{letter-spacing:-0.840267pt;}
.ls65_c00174{letter-spacing:-0.766667pt;}
.ls91_c00174{letter-spacing:-0.732160pt;}
.ls80_c00174{letter-spacing:-0.729867pt;}
.ls66_c00174{letter-spacing:-0.723733pt;}
.ls86_c00174{letter-spacing:-0.711467pt;}
.ls8f_c00174{letter-spacing:-0.601067pt;}
.ls69_c00174{letter-spacing:-0.521333pt;}
.ls8b_c00174{letter-spacing:-0.472267pt;}
.ls61_c00174{letter-spacing:-0.447733pt;}
.ls88_c00174{letter-spacing:-0.441600pt;}
.ls67_c00174{letter-spacing:-0.404800pt;}
.ls81_c00174{letter-spacing:-0.392533pt;}
.ls8c_c00174{letter-spacing:-0.343467pt;}
.ls7f_c00174{letter-spacing:-0.306667pt;}
.ls5c_c00174{letter-spacing:-0.294400pt;}
.ls6e_c00174{letter-spacing:-0.239200pt;}
.ls85_c00174{letter-spacing:-0.208533pt;}
.ls68_c00174{letter-spacing:-0.196267pt;}
.ls73_c00174{letter-spacing:-0.159467pt;}
.ls6a_c00174{letter-spacing:-0.104267pt;}
.ls7b_c00174{letter-spacing:-0.092000pt;}
.ls7e_c00174{letter-spacing:-0.085867pt;}
.ls7c_c00174{letter-spacing:-0.067467pt;}
.ls72_c00174{letter-spacing:-0.061333pt;}
.ls5a_c00174{letter-spacing:-0.049067pt;}
.ls6c_c00174{letter-spacing:-0.042933pt;}
.ls57_c00174{letter-spacing:-0.036800pt;}
.ls55_c00174{letter-spacing:0.000000pt;}
.ls17_c00174{letter-spacing:0.006133pt;}
.ls4b_c00174{letter-spacing:0.030667pt;}
.ls9_c00174{letter-spacing:0.036800pt;}
.ls8_c00174{letter-spacing:0.042933pt;}
.ls47_c00174{letter-spacing:0.049067pt;}
.ls1b_c00174{letter-spacing:0.061333pt;}
.lsd_c00174{letter-spacing:0.079733pt;}
.ls71_c00174{letter-spacing:0.092000pt;}
.ls6_c00174{letter-spacing:0.128800pt;}
.ls1d_c00174{letter-spacing:0.134933pt;}
.ls30_c00174{letter-spacing:0.147200pt;}
.ls4f_c00174{letter-spacing:0.159467pt;}
.ls2a_c00174{letter-spacing:0.165600pt;}
.ls2_c00174{letter-spacing:0.171733pt;}
.ls45_c00174{letter-spacing:0.177867pt;}
.ls41_c00174{letter-spacing:0.196267pt;}
.ls25_c00174{letter-spacing:0.214667pt;}
.ls42_c00174{letter-spacing:0.220800pt;}
.ls38_c00174{letter-spacing:0.245333pt;}
.ls4c_c00174{letter-spacing:0.257600pt;}
.ls6b_c00174{letter-spacing:0.269867pt;}
.ls70_c00174{letter-spacing:0.282133pt;}
.ls29_c00174{letter-spacing:0.288267pt;}
.ls5_c00174{letter-spacing:0.294400pt;}
.ls16_c00174{letter-spacing:0.300533pt;}
.ls40_c00174{letter-spacing:0.306667pt;}
.ls35_c00174{letter-spacing:0.312800pt;}
.ls2f_c00174{letter-spacing:0.337333pt;}
.ls2c_c00174{letter-spacing:0.343467pt;}
.ls3_c00174{letter-spacing:0.361867pt;}
.ls74_c00174{letter-spacing:0.380267pt;}
.ls4d_c00174{letter-spacing:0.386400pt;}
.ls3e_c00174{letter-spacing:0.398667pt;}
.ls4e_c00174{letter-spacing:0.404800pt;}
.ls10_c00174{letter-spacing:0.410933pt;}
.ls3b_c00174{letter-spacing:0.441600pt;}
.ls44_c00174{letter-spacing:0.447733pt;}
.ls12_c00174{letter-spacing:0.453867pt;}
.ls43_c00174{letter-spacing:0.460000pt;}
.ls26_c00174{letter-spacing:0.466133pt;}
.ls36_c00174{letter-spacing:0.490667pt;}
.ls28_c00174{letter-spacing:0.496800pt;}
.ls3f_c00174{letter-spacing:0.515200pt;}
.ls22_c00174{letter-spacing:0.521333pt;}
.ls34_c00174{letter-spacing:0.545867pt;}
.ls2e_c00174{letter-spacing:0.552000pt;}
.ls1f_c00174{letter-spacing:0.570400pt;}
.ls78_c00174{letter-spacing:0.572693pt;}
.ls3d_c00174{letter-spacing:0.576533pt;}
.ls2b_c00174{letter-spacing:0.588800pt;}
.ls3a_c00174{letter-spacing:0.601067pt;}
.ls15_c00174{letter-spacing:0.613333pt;}
.ls4_c00174{letter-spacing:0.668533pt;}
.ls24_c00174{letter-spacing:0.674667pt;}
.ls51_c00174{letter-spacing:0.681013pt;}
.ls4a_c00174{letter-spacing:0.686933pt;}
.ls53_c00174{letter-spacing:0.693067pt;}
.ls46_c00174{letter-spacing:0.705333pt;}
.ls1a_c00174{letter-spacing:0.711467pt;}
.ls32_c00174{letter-spacing:0.766667pt;}
.ls1c_c00174{letter-spacing:0.772800pt;}
.ls19_c00174{letter-spacing:0.785067pt;}
.ls48_c00174{letter-spacing:0.809600pt;}
.lsa_c00174{letter-spacing:0.815733pt;}
.ls14_c00174{letter-spacing:0.819627pt;}
.ls7_c00174{letter-spacing:0.821867pt;}
.ls76_c00174{letter-spacing:0.828000pt;}
.ls50_c00174{letter-spacing:0.837707pt;}
.ls52_c00174{letter-spacing:0.846400pt;}
.lsf_c00174{letter-spacing:0.885920pt;}
.ls49_c00174{letter-spacing:0.940160pt;}
.ls27_c00174{letter-spacing:0.975200pt;}
.ls2d_c00174{letter-spacing:1.024267pt;}
.ls11_c00174{letter-spacing:1.030560pt;}
.ls23_c00174{letter-spacing:1.061067pt;}
.ls1_c00174{letter-spacing:1.108907pt;}
.ls18_c00174{letter-spacing:1.114933pt;}
.ls83_c00174{letter-spacing:1.122400pt;}
.ls0_c00174{letter-spacing:1.163147pt;}
.ls31_c00174{letter-spacing:1.165333pt;}
.ls33_c00174{letter-spacing:1.208267pt;}
.ls20_c00174{letter-spacing:1.211360pt;}
.ls39_c00174{letter-spacing:1.275733pt;}
.lse_c00174{letter-spacing:1.313813pt;}
.ls13_c00174{letter-spacing:1.458453pt;}
.ls54_c00174{letter-spacing:1.464053pt;}
.lsc_c00174{letter-spacing:1.494613pt;}
.lsb_c00174{letter-spacing:1.572960pt;}
.ls7d_c00174{letter-spacing:1.576267pt;}
.ls3c_c00174{letter-spacing:1.637600pt;}
.ls1e_c00174{letter-spacing:1.735733pt;}
.ls21_c00174{letter-spacing:1.913600pt;}
.ls37_c00174{letter-spacing:2.729333pt;}
.ws1_c00174{word-spacing:-0.472107pt;}
.ws4_c00174{word-spacing:0.000000pt;}
.ws3_c00174{word-spacing:1.323253pt;}
.ws0_c00174{word-spacing:15.978667pt;}
.ws2_c00174{word-spacing:48.320533pt;}
._11_c00174{margin-left:-28.131200pt;}
._10_c00174{margin-left:-11.141920pt;}
._9_c00174{margin-left:-9.841600pt;}
._19_c00174{margin-left:-5.673333pt;}
._f_c00174{margin-left:-4.311200pt;}
._1a_c00174{margin-left:-3.381973pt;}
._0_c00174{margin-left:-2.049067pt;}
._b_c00174{margin-left:-1.091733pt;}
._1_c00174{width:1.151253pt;}
._3_c00174{width:2.796800pt;}
._a_c00174{width:3.766987pt;}
._5_c00174{width:4.992533pt;}
._2_c00174{width:6.317333pt;}
._8_c00174{width:7.562400pt;}
._14_c00174{width:8.525333pt;}
._6_c00174{width:9.721333pt;}
._18_c00174{width:10.856000pt;}
._4_c00174{width:12.144000pt;}
._12_c00174{width:13.505600pt;}
._15_c00174{width:14.805867pt;}
._7_c00174{width:15.873067pt;}
._d_c00174{width:17.664000pt;}
._c_c00174{width:19.111467pt;}
._e_c00174{width:20.436267pt;}
._16_c00174{width:21.975733pt;}
._17_c00174{width:23.337333pt;}
._13_c00174{width:38.603200pt;}
.fs6_c00174{font-size:51.200000pt;}
.fs0_c00174{font-size:51.733333pt;}
.fs3_c00174{font-size:59.733333pt;}
.fs1_c00174{font-size:60.266667pt;}
.fs2_c00174{font-size:61.333333pt;}
.fs5_c00174{font-size:62.400000pt;}
.fs4_c00174{font-size:62.933333pt;}
.y0_c00174{bottom:0.000000pt;}
.y1f_c00174{bottom:61.133347pt;}
.y1e_c00174{bottom:141.120013pt;}
.y1d_c00174{bottom:195.208013pt;}
.y1c_c00174{bottom:223.053347pt;}
.y1a_c00174{bottom:277.754013pt;}
.y1b_c00174{bottom:277.760013pt;}
.y19_c00174{bottom:304.955347pt;}
.y18_c00174{bottom:332.478680pt;}
.y16_c00174{bottom:359.365347pt;}
.y17_c00174{bottom:359.373347pt;}
.y15_c00174{bottom:387.195347pt;}
.y14_c00174{bottom:414.412013pt;}
.y13_c00174{bottom:441.613347pt;}
.y12_c00174{bottom:469.120013pt;}
.y11_c00174{bottom:524.154680pt;}
.y10_c00174{bottom:551.693347pt;}
.yf_c00174{bottom:607.994680pt;}
.ye_c00174{bottom:635.533347pt;}
.yd_c00174{bottom:690.560013pt;}
.yc_c00174{bottom:717.760013pt;}
.yb_c00174{bottom:745.293347pt;}
.ya_c00174{bottom:772.480013pt;}
.y9_c00174{bottom:799.693347pt;}
.y8_c00174{bottom:827.213347pt;}
.y6_c00174{bottom:881.610013pt;}
.y7_c00174{bottom:881.613347pt;}
.y4_c00174{bottom:909.130680pt;}
.y5_c00174{bottom:909.133347pt;}
.y3_c00174{bottom:963.533347pt;}
.y2_c00174{bottom:991.373347pt;}
.y1_c00174{bottom:1058.240013pt;}
.h9_c00174{height:50.250000pt;}
.h2_c00174{height:52.137500pt;}
.h4_c00174{height:58.625000pt;}
.h3_c00174{height:60.195312pt;}
.h8_c00174{height:60.227312pt;}
.h5_c00174{height:61.734896pt;}
.h7_c00174{height:61.812500pt;}
.h6_c00174{height:62.887500pt;}
.h1_c00174{height:1122.666667pt;}
.h0_c00174{height:1122.880013pt;}
.w1_c00174{width:793.333333pt;}
.w0_c00174{width:793.600013pt;}
.x0_c00174{left:0.000000pt;}
.x1e_c00174{left:104.886013pt;}
.x1_c00174{left:106.173347pt;}
.x22_c00174{left:151.506680pt;}
.x13_c00174{left:152.466680pt;}
.x9_c00174{left:153.440013pt;}
.x4_c00174{left:154.480013pt;}
.x2_c00174{left:206.866680pt;}
.x16_c00174{left:220.373347pt;}
.x17_c00174{left:333.920013pt;}
.x7_c00174{left:342.226680pt;}
.x18_c00174{left:359.160013pt;}
.x8_c00174{left:367.786680pt;}
.x23_c00174{left:373.320013pt;}
.x19_c00174{left:405.266680pt;}
.x21_c00174{left:424.480013pt;}
.xa_c00174{left:450.706680pt;}
.x1a_c00174{left:466.066680pt;}
.xf_c00174{left:466.986680pt;}
.xb_c00174{left:475.453347pt;}
.xc_c00174{left:481.706680pt;}
.x10_c00174{left:490.373347pt;}
.x1b_c00174{left:499.120013pt;}
.xd_c00174{left:504.146680pt;}
.xe_c00174{left:528.466680pt;}
.x1f_c00174{left:530.213347pt;}
.x3_c00174{left:533.546680pt;}
.x20_c00174{left:551.533347pt;}
.x11_c00174{left:575.826680pt;}
.x1c_c00174{left:584.146680pt;}
.x14_c00174{left:588.413347pt;}
.x12_c00174{left:600.253347pt;}
.x5_c00174{left:603.000013pt;}
.x15_c00174{left:617.120013pt;}
.x6_c00174{left:618.706680pt;}
.x1d_c00174{left:635.733347pt;}
}





/* 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_c00175 {
    display:none;
  }
  .loading-indicator_c00175.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00175 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_c00175 { 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_c00175" -> "#page-container .classname_c00175")
 */
.pf_c00175 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00175 { /* 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_c00175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00175 { /* 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_c00175 { /* 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_c00175 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00175 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00175 {overflow:visible;}
  }
}
.c_c00175 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00175 { /* 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_c00175:after { /* webkit #35443 */
  content: '';
}
.t_c00175:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00175 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 */
}
.__c00175 { /* 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_c00175 { /* info for Javascript */
  display:none;
}
.l_c00175 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00175 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00175 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00175: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_c00175 {
    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_c00175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00175.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_c00175 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00175;src:url('chunks/assets/font_7eba840f320626b847020d82.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.311035;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_c00175;src:url('chunks/assets/font_b50ca094a91b7dfe3181bc2b.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.284668;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_c00175;src:url('chunks/assets/font_db3987ed2cc312221275456a.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.284180;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_c00175{transform:matrix(0.233899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233899,0.000000,0.000000,0.250000,0,0);}
.m0_c00175{transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);}
.m1_c00175{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);}
.m5_c00175{transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);}
.m3_c00175{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m4_c00175{transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls71_c00175{letter-spacing:-2.394000px;}
.ls68_c00175{letter-spacing:-2.331000px;}
.ls6a_c00175{letter-spacing:-2.209320px;}
.ls73_c00175{letter-spacing:-1.730520px;}
.ls83_c00175{letter-spacing:-1.389960px;}
.ls80_c00175{letter-spacing:-1.197000px;}
.ls7c_c00175{letter-spacing:-0.875520px;}
.ls70_c00175{letter-spacing:-0.383040px;}
.ls7e_c00175{letter-spacing:-0.376200px;}
.ls72_c00175{letter-spacing:-0.294120px;}
.ls81_c00175{letter-spacing:-0.218880px;}
.ls6c_c00175{letter-spacing:-0.191520px;}
.ls82_c00175{letter-spacing:-0.171000px;}
.ls77_c00175{letter-spacing:-0.116280px;}
.ls78_c00175{letter-spacing:-0.088920px;}
.ls69_c00175{letter-spacing:0.000000px;}
.ls65_c00175{letter-spacing:0.047880px;}
.ls24_c00175{letter-spacing:0.109440px;}
.ls6d_c00175{letter-spacing:0.184680px;}
.ls7b_c00175{letter-spacing:0.239400px;}
.ls3f_c00175{letter-spacing:0.266760px;}
.ls5d_c00175{letter-spacing:0.294120px;}
.ls6b_c00175{letter-spacing:0.321480px;}
.ls6e_c00175{letter-spacing:0.335160px;}
.ls16_c00175{letter-spacing:0.342000px;}
.ls3d_c00175{letter-spacing:0.369360px;}
.ls46_c00175{letter-spacing:0.389880px;}
.ls45_c00175{letter-spacing:0.437760px;}
.ls42_c00175{letter-spacing:0.451440px;}
.ls7d_c00175{letter-spacing:0.458280px;}
.ls58_c00175{letter-spacing:0.465120px;}
.ls6f_c00175{letter-spacing:0.499320px;}
.ls2c_c00175{letter-spacing:0.506160px;}
.ls27_c00175{letter-spacing:0.513000px;}
.ls47_c00175{letter-spacing:0.533520px;}
.ls13_c00175{letter-spacing:0.540360px;}
.ls64_c00175{letter-spacing:0.547200px;}
.lse_c00175{letter-spacing:0.567720px;}
.ls4a_c00175{letter-spacing:0.574560px;}
.ls10_c00175{letter-spacing:0.588240px;}
.ls74_c00175{letter-spacing:0.601920px;}
.ls3_c00175{letter-spacing:0.642960px;}
.ls41_c00175{letter-spacing:0.670320px;}
.lsc_c00175{letter-spacing:0.677160px;}
.ls52_c00175{letter-spacing:0.690840px;}
.ls43_c00175{letter-spacing:0.697680px;}
.ls25_c00175{letter-spacing:0.704520px;}
.ls1e_c00175{letter-spacing:0.718200px;}
.ls32_c00175{letter-spacing:0.731880px;}
.ls22_c00175{letter-spacing:0.745560px;}
.ls4f_c00175{letter-spacing:0.752400px;}
.ls5a_c00175{letter-spacing:0.759240px;}
.ls4_c00175{letter-spacing:0.766080px;}
.ls19_c00175{letter-spacing:0.800280px;}
.ls59_c00175{letter-spacing:0.820800px;}
.ls18_c00175{letter-spacing:0.855000px;}
.ls63_c00175{letter-spacing:0.868680px;}
.ls4b_c00175{letter-spacing:0.875520px;}
.ls15_c00175{letter-spacing:0.889200px;}
.ls7a_c00175{letter-spacing:0.896040px;}
.ls9_c00175{letter-spacing:0.909720px;}
.ls7_c00175{letter-spacing:0.916560px;}
.ls34_c00175{letter-spacing:0.930240px;}
.ls23_c00175{letter-spacing:0.943920px;}
.ls79_c00175{letter-spacing:0.957600px;}
.ls48_c00175{letter-spacing:0.971280px;}
.ls1_c00175{letter-spacing:1.005480px;}
.ls1a_c00175{letter-spacing:1.019160px;}
.ls5b_c00175{letter-spacing:1.032840px;}
.ls55_c00175{letter-spacing:1.053360px;}
.ls1b_c00175{letter-spacing:1.060200px;}
.ls1d_c00175{letter-spacing:1.067040px;}
.ls30_c00175{letter-spacing:1.073880px;}
.ls21_c00175{letter-spacing:1.101240px;}
.ls29_c00175{letter-spacing:1.108080px;}
.ls36_c00175{letter-spacing:1.142280px;}
.ls5e_c00175{letter-spacing:1.149120px;}
.ls38_c00175{letter-spacing:1.169640px;}
.ls53_c00175{letter-spacing:1.197000px;}
.ls12_c00175{letter-spacing:1.203840px;}
.ls3b_c00175{letter-spacing:1.224360px;}
.lsa_c00175{letter-spacing:1.231200px;}
.ls61_c00175{letter-spacing:1.238040px;}
.ls4d_c00175{letter-spacing:1.244880px;}
.ls14_c00175{letter-spacing:1.265400px;}
.ls62_c00175{letter-spacing:1.272240px;}
.ls1c_c00175{letter-spacing:1.279080px;}
.lsb_c00175{letter-spacing:1.285920px;}
.ls3e_c00175{letter-spacing:1.299600px;}
.ls11_c00175{letter-spacing:1.306440px;}
.ls2_c00175{letter-spacing:1.320120px;}
.ls31_c00175{letter-spacing:1.333800px;}
.ls57_c00175{letter-spacing:1.340640px;}
.ls3a_c00175{letter-spacing:1.354320px;}
.ls5_c00175{letter-spacing:1.381680px;}
.ls20_c00175{letter-spacing:1.402200px;}
.ls2e_c00175{letter-spacing:1.409040px;}
.ls0_c00175{letter-spacing:1.422720px;}
.ls2b_c00175{letter-spacing:1.429560px;}
.ls28_c00175{letter-spacing:1.443240px;}
.ls7f_c00175{letter-spacing:1.456920px;}
.ls44_c00175{letter-spacing:1.470600px;}
.ls67_c00175{letter-spacing:1.477440px;}
.lsf_c00175{letter-spacing:1.539000px;}
.ls2d_c00175{letter-spacing:1.545840px;}
.ls51_c00175{letter-spacing:1.566360px;}
.ls33_c00175{letter-spacing:1.607400px;}
.ls75_c00175{letter-spacing:1.621080px;}
.ls4c_c00175{letter-spacing:1.648440px;}
.ls50_c00175{letter-spacing:1.662120px;}
.ls60_c00175{letter-spacing:1.675800px;}
.ls2f_c00175{letter-spacing:1.710000px;}
.ls8_c00175{letter-spacing:1.805760px;}
.ls2a_c00175{letter-spacing:1.812600px;}
.ls4e_c00175{letter-spacing:1.853640px;}
.ls37_c00175{letter-spacing:1.983600px;}
.ls5c_c00175{letter-spacing:2.004120px;}
.ls35_c00175{letter-spacing:2.017800px;}
.ls5f_c00175{letter-spacing:2.031480px;}
.ls66_c00175{letter-spacing:2.072520px;}
.ls39_c00175{letter-spacing:2.093040px;}
.ls56_c00175{letter-spacing:2.127240px;}
.ls54_c00175{letter-spacing:2.195640px;}
.ls40_c00175{letter-spacing:2.202480px;}
.lsd_c00175{letter-spacing:2.243520px;}
.ls6_c00175{letter-spacing:2.352960px;}
.ls3c_c00175{letter-spacing:2.387160px;}
.ls1f_c00175{letter-spacing:2.961720px;}
.ls17_c00175{letter-spacing:3.071160px;}
.ls49_c00175{letter-spacing:3.091680px;}
.ls26_c00175{letter-spacing:3.166920px;}
.ls76_c00175{letter-spacing:3.420000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{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__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00175{word-spacing:0.000000px;}
._15_c00175{margin-left:-5.759280px;}
._0_c00175{margin-left:-4.199760px;}
._1_c00175{margin-left:-3.125880px;}
._b_c00175{margin-left:-1.251720px;}
._5_c00175{width:1.710000px;}
._2_c00175{width:3.693600px;}
._6_c00175{width:5.710920px;}
._3_c00175{width:6.785280px;}
._7_c00175{width:8.468400px;}
._9_c00175{width:10.000080px;}
._8_c00175{width:11.080800px;}
._4_c00175{width:12.756600px;}
._a_c00175{width:15.273720px;}
._12_c00175{width:17.161560px;}
._13_c00175{width:20.595240px;}
._14_c00175{width:21.853800px;}
._11_c00175{width:22.982400px;}
._d_c00175{width:38.290320px;}
._c_c00175{width:39.836160px;}
._f_c00175{width:43.218840px;}
._10_c00175{width:48.646320px;}
._e_c00175{width:49.692600px;}
.fc0_c00175{color:transparent;}
.fs2_c00175{font-size:59.400000px;}
.fs0_c00175{font-size:66.600000px;}
.fs1_c00175{font-size:68.400000px;}
.y0_c00175{bottom:0.000000px;}
.y1b_c00175{bottom:70.575006px;}
.y1a_c00175{bottom:285.495906px;}
.y19_c00175{bottom:347.415906px;}
.y18_c00175{bottom:378.384006px;}
.y17_c00175{bottom:409.335006px;}
.y16_c00175{bottom:439.944006px;}
.y15_c00175{bottom:470.895006px;}
.y14_c00175{bottom:501.863106px;}
.y12_c00175{bottom:532.449006px;}
.y13_c00175{bottom:532.455006px;}
.y11_c00175{bottom:563.406906px;}
.yf_c00175{bottom:594.362706px;}
.y10_c00175{bottom:594.375006px;}
.ye_c00175{bottom:625.313706px;}
.yd_c00175{bottom:687.609006px;}
.yc_c00175{bottom:718.560006px;}
.yb_c00175{bottom:749.175006px;}
.ya_c00175{bottom:749.187006px;}
.y9_c00175{bottom:779.778906px;}
.y8_c00175{bottom:842.057106px;}
.y7_c00175{bottom:903.617106px;}
.y6_c00175{bottom:965.160006px;}
.y5_c00175{bottom:995.760006px;}
.y4_c00175{bottom:1026.728106px;}
.y3_c00175{bottom:1057.320006px;}
.y2_c00175{bottom:1119.615006px;}
.y1_c00175{bottom:1196.280006px;}
.h7_c00175{height:58.297852px;}
.h6_c00175{height:67.097461px;}
.h2_c00175{height:67.120312px;}
.h3_c00175{height:67.130859px;}
.h4_c00175{height:67.190859px;}
.h5_c00175{height:68.934375px;}
.h1_c00175{height:1263.000000px;}
.h0_c00175{height:1263.240006px;}
.w1_c00175{width:892.500000px;}
.w0_c00175{width:892.799998px;}
.x0_c00175{left:0.000000px;}
.x10_c00175{left:114.670498px;}
.xa_c00175{left:115.744498px;}
.x4_c00175{left:118.416298px;}
.x2_c00175{left:119.804999px;}
.x1_c00175{left:120.884999px;}
.x11_c00175{left:167.309098px;}
.x9_c00175{left:168.959698px;}
.x6_c00175{left:170.049899px;}
.x5_c00175{left:171.537598px;}
.x3_c00175{left:172.619998px;}
.xd_c00175{left:253.439999px;}
.xe_c00175{left:276.149999px;}
.xf_c00175{left:304.394999px;}
.xb_c00175{left:309.809999px;}
.xc_c00175{left:337.199999px;}
.x7_c00175{left:344.924999px;}
.x8_c00175{left:376.829998px;}
.x12_c00175{left:418.889998px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls71_c00175{letter-spacing:-2.128000pt;}
.ls68_c00175{letter-spacing:-2.072000pt;}
.ls6a_c00175{letter-spacing:-1.963840pt;}
.ls73_c00175{letter-spacing:-1.538240pt;}
.ls83_c00175{letter-spacing:-1.235520pt;}
.ls80_c00175{letter-spacing:-1.064000pt;}
.ls7c_c00175{letter-spacing:-0.778240pt;}
.ls70_c00175{letter-spacing:-0.340480pt;}
.ls7e_c00175{letter-spacing:-0.334400pt;}
.ls72_c00175{letter-spacing:-0.261440pt;}
.ls81_c00175{letter-spacing:-0.194560pt;}
.ls6c_c00175{letter-spacing:-0.170240pt;}
.ls82_c00175{letter-spacing:-0.152000pt;}
.ls77_c00175{letter-spacing:-0.103360pt;}
.ls78_c00175{letter-spacing:-0.079040pt;}
.ls69_c00175{letter-spacing:0.000000pt;}
.ls65_c00175{letter-spacing:0.042560pt;}
.ls24_c00175{letter-spacing:0.097280pt;}
.ls6d_c00175{letter-spacing:0.164160pt;}
.ls7b_c00175{letter-spacing:0.212800pt;}
.ls3f_c00175{letter-spacing:0.237120pt;}
.ls5d_c00175{letter-spacing:0.261440pt;}
.ls6b_c00175{letter-spacing:0.285760pt;}
.ls6e_c00175{letter-spacing:0.297920pt;}
.ls16_c00175{letter-spacing:0.304000pt;}
.ls3d_c00175{letter-spacing:0.328320pt;}
.ls46_c00175{letter-spacing:0.346560pt;}
.ls45_c00175{letter-spacing:0.389120pt;}
.ls42_c00175{letter-spacing:0.401280pt;}
.ls7d_c00175{letter-spacing:0.407360pt;}
.ls58_c00175{letter-spacing:0.413440pt;}
.ls6f_c00175{letter-spacing:0.443840pt;}
.ls2c_c00175{letter-spacing:0.449920pt;}
.ls27_c00175{letter-spacing:0.456000pt;}
.ls47_c00175{letter-spacing:0.474240pt;}
.ls13_c00175{letter-spacing:0.480320pt;}
.ls64_c00175{letter-spacing:0.486400pt;}
.lse_c00175{letter-spacing:0.504640pt;}
.ls4a_c00175{letter-spacing:0.510720pt;}
.ls10_c00175{letter-spacing:0.522880pt;}
.ls74_c00175{letter-spacing:0.535040pt;}
.ls3_c00175{letter-spacing:0.571520pt;}
.ls41_c00175{letter-spacing:0.595840pt;}
.lsc_c00175{letter-spacing:0.601920pt;}
.ls52_c00175{letter-spacing:0.614080pt;}
.ls43_c00175{letter-spacing:0.620160pt;}
.ls25_c00175{letter-spacing:0.626240pt;}
.ls1e_c00175{letter-spacing:0.638400pt;}
.ls32_c00175{letter-spacing:0.650560pt;}
.ls22_c00175{letter-spacing:0.662720pt;}
.ls4f_c00175{letter-spacing:0.668800pt;}
.ls5a_c00175{letter-spacing:0.674880pt;}
.ls4_c00175{letter-spacing:0.680960pt;}
.ls19_c00175{letter-spacing:0.711360pt;}
.ls59_c00175{letter-spacing:0.729600pt;}
.ls18_c00175{letter-spacing:0.760000pt;}
.ls63_c00175{letter-spacing:0.772160pt;}
.ls4b_c00175{letter-spacing:0.778240pt;}
.ls15_c00175{letter-spacing:0.790400pt;}
.ls7a_c00175{letter-spacing:0.796480pt;}
.ls9_c00175{letter-spacing:0.808640pt;}
.ls7_c00175{letter-spacing:0.814720pt;}
.ls34_c00175{letter-spacing:0.826880pt;}
.ls23_c00175{letter-spacing:0.839040pt;}
.ls79_c00175{letter-spacing:0.851200pt;}
.ls48_c00175{letter-spacing:0.863360pt;}
.ls1_c00175{letter-spacing:0.893760pt;}
.ls1a_c00175{letter-spacing:0.905920pt;}
.ls5b_c00175{letter-spacing:0.918080pt;}
.ls55_c00175{letter-spacing:0.936320pt;}
.ls1b_c00175{letter-spacing:0.942400pt;}
.ls1d_c00175{letter-spacing:0.948480pt;}
.ls30_c00175{letter-spacing:0.954560pt;}
.ls21_c00175{letter-spacing:0.978880pt;}
.ls29_c00175{letter-spacing:0.984960pt;}
.ls36_c00175{letter-spacing:1.015360pt;}
.ls5e_c00175{letter-spacing:1.021440pt;}
.ls38_c00175{letter-spacing:1.039680pt;}
.ls53_c00175{letter-spacing:1.064000pt;}
.ls12_c00175{letter-spacing:1.070080pt;}
.ls3b_c00175{letter-spacing:1.088320pt;}
.lsa_c00175{letter-spacing:1.094400pt;}
.ls61_c00175{letter-spacing:1.100480pt;}
.ls4d_c00175{letter-spacing:1.106560pt;}
.ls14_c00175{letter-spacing:1.124800pt;}
.ls62_c00175{letter-spacing:1.130880pt;}
.ls1c_c00175{letter-spacing:1.136960pt;}
.lsb_c00175{letter-spacing:1.143040pt;}
.ls3e_c00175{letter-spacing:1.155200pt;}
.ls11_c00175{letter-spacing:1.161280pt;}
.ls2_c00175{letter-spacing:1.173440pt;}
.ls31_c00175{letter-spacing:1.185600pt;}
.ls57_c00175{letter-spacing:1.191680pt;}
.ls3a_c00175{letter-spacing:1.203840pt;}
.ls5_c00175{letter-spacing:1.228160pt;}
.ls20_c00175{letter-spacing:1.246400pt;}
.ls2e_c00175{letter-spacing:1.252480pt;}
.ls0_c00175{letter-spacing:1.264640pt;}
.ls2b_c00175{letter-spacing:1.270720pt;}
.ls28_c00175{letter-spacing:1.282880pt;}
.ls7f_c00175{letter-spacing:1.295040pt;}
.ls44_c00175{letter-spacing:1.307200pt;}
.ls67_c00175{letter-spacing:1.313280pt;}
.lsf_c00175{letter-spacing:1.368000pt;}
.ls2d_c00175{letter-spacing:1.374080pt;}
.ls51_c00175{letter-spacing:1.392320pt;}
.ls33_c00175{letter-spacing:1.428800pt;}
.ls75_c00175{letter-spacing:1.440960pt;}
.ls4c_c00175{letter-spacing:1.465280pt;}
.ls50_c00175{letter-spacing:1.477440pt;}
.ls60_c00175{letter-spacing:1.489600pt;}
.ls2f_c00175{letter-spacing:1.520000pt;}
.ls8_c00175{letter-spacing:1.605120pt;}
.ls2a_c00175{letter-spacing:1.611200pt;}
.ls4e_c00175{letter-spacing:1.647680pt;}
.ls37_c00175{letter-spacing:1.763200pt;}
.ls5c_c00175{letter-spacing:1.781440pt;}
.ls35_c00175{letter-spacing:1.793600pt;}
.ls5f_c00175{letter-spacing:1.805760pt;}
.ls66_c00175{letter-spacing:1.842240pt;}
.ls39_c00175{letter-spacing:1.860480pt;}
.ls56_c00175{letter-spacing:1.890880pt;}
.ls54_c00175{letter-spacing:1.951680pt;}
.ls40_c00175{letter-spacing:1.957760pt;}
.lsd_c00175{letter-spacing:1.994240pt;}
.ls6_c00175{letter-spacing:2.091520pt;}
.ls3c_c00175{letter-spacing:2.121920pt;}
.ls1f_c00175{letter-spacing:2.632640pt;}
.ls17_c00175{letter-spacing:2.729920pt;}
.ls49_c00175{letter-spacing:2.748160pt;}
.ls26_c00175{letter-spacing:2.815040pt;}
.ls76_c00175{letter-spacing:3.040000pt;}
.ws0_c00175{word-spacing:0.000000pt;}
._15_c00175{margin-left:-5.119360pt;}
._0_c00175{margin-left:-3.733120pt;}
._1_c00175{margin-left:-2.778560pt;}
._b_c00175{margin-left:-1.112640pt;}
._5_c00175{width:1.520000pt;}
._2_c00175{width:3.283200pt;}
._6_c00175{width:5.076373pt;}
._3_c00175{width:6.031360pt;}
._7_c00175{width:7.527467pt;}
._9_c00175{width:8.888960pt;}
._8_c00175{width:9.849600pt;}
._4_c00175{width:11.339200pt;}
._a_c00175{width:13.576640pt;}
._12_c00175{width:15.254720pt;}
._13_c00175{width:18.306880pt;}
._14_c00175{width:19.425600pt;}
._11_c00175{width:20.428800pt;}
._d_c00175{width:34.035840pt;}
._c_c00175{width:35.409920pt;}
._f_c00175{width:38.416747pt;}
._10_c00175{width:43.241173pt;}
._e_c00175{width:44.171200pt;}
.fs2_c00175{font-size:52.800000pt;}
.fs0_c00175{font-size:59.200000pt;}
.fs1_c00175{font-size:60.800000pt;}
.y0_c00175{bottom:0.000000pt;}
.y1b_c00175{bottom:62.733339pt;}
.y1a_c00175{bottom:253.774139pt;}
.y19_c00175{bottom:308.814139pt;}
.y18_c00175{bottom:336.341339pt;}
.y17_c00175{bottom:363.853339pt;}
.y16_c00175{bottom:391.061339pt;}
.y15_c00175{bottom:418.573339pt;}
.y14_c00175{bottom:446.100539pt;}
.y12_c00175{bottom:473.288005pt;}
.y13_c00175{bottom:473.293339pt;}
.y11_c00175{bottom:500.806139pt;}
.yf_c00175{bottom:528.322405pt;}
.y10_c00175{bottom:528.333339pt;}
.ye_c00175{bottom:555.834405pt;}
.yd_c00175{bottom:611.208005pt;}
.yc_c00175{bottom:638.720005pt;}
.yb_c00175{bottom:665.933339pt;}
.ya_c00175{bottom:665.944005pt;}
.y9_c00175{bottom:693.136805pt;}
.y8_c00175{bottom:748.495205pt;}
.y7_c00175{bottom:803.215205pt;}
.y6_c00175{bottom:857.920005pt;}
.y5_c00175{bottom:885.120005pt;}
.y4_c00175{bottom:912.647205pt;}
.y3_c00175{bottom:939.840005pt;}
.y2_c00175{bottom:995.213339pt;}
.y1_c00175{bottom:1063.360005pt;}
.h7_c00175{height:51.820312pt;}
.h6_c00175{height:59.642187pt;}
.h2_c00175{height:59.662500pt;}
.h3_c00175{height:59.671875pt;}
.h4_c00175{height:59.725208pt;}
.h5_c00175{height:61.275000pt;}
.h1_c00175{height:1122.666667pt;}
.h0_c00175{height:1122.880005pt;}
.w1_c00175{width:793.333333pt;}
.w0_c00175{width:793.599999pt;}
.x0_c00175{left:0.000000pt;}
.x10_c00175{left:101.929332pt;}
.xa_c00175{left:102.883999pt;}
.x4_c00175{left:105.258932pt;}
.x2_c00175{left:106.493332pt;}
.x1_c00175{left:107.453332pt;}
.x11_c00175{left:148.719199pt;}
.x9_c00175{left:150.186399pt;}
.x6_c00175{left:151.155465pt;}
.x5_c00175{left:152.477865pt;}
.x3_c00175{left:153.439999pt;}
.xd_c00175{left:225.279999pt;}
.xe_c00175{left:245.466665pt;}
.xf_c00175{left:270.573332pt;}
.xb_c00175{left:275.386665pt;}
.xc_c00175{left:299.733332pt;}
.x7_c00175{left:306.599999pt;}
.x8_c00175{left:334.959999pt;}
.x12_c00175{left:372.346665pt;}
}





/* 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_c00176 {
    display:none;
  }
  .loading-indicator_c00176.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00176 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_c00176 { 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_c00176" -> "#page-container .classname_c00176")
 */
.pf_c00176 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00176 { /* 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_c00176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00176 { /* 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_c00176 { /* 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_c00176 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00176 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00176 {overflow:visible;}
  }
}
.c_c00176 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00176 { /* 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_c00176:after { /* webkit #35443 */
  content: '';
}
.t_c00176:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00176 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 */
}
.__c00176 { /* 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_c00176 { /* info for Javascript */
  display:none;
}
.l_c00176 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00176 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00176 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00176: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_c00176 {
    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_c00176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00176.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_c00176 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00176;src:url('chunks/assets/font_0490e14aa6f0b6a25ca05bea.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.284668;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_c00176;src:url('chunks/assets/font_edecde2546ad7cac3d85430e.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.284180;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_c00176;src:url('chunks/assets/font_f67f1f94e9a845d358c823aa.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:0.666000;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_c00176{transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);}
.m4_c00176{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m3_c00176{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m6_c00176{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m5_c00176{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m1_c00176{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);}
.m0_c00176{transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls59_c00176{letter-spacing:-2.436000px;}
.ls65_c00176{letter-spacing:-2.296800px;}
.ls4e_c00176{letter-spacing:-2.234160px;}
.ls4d_c00176{letter-spacing:-2.136720px;}
.ls60_c00176{letter-spacing:-1.948800px;}
.ls5d_c00176{letter-spacing:-1.927920px;}
.ls89_c00176{letter-spacing:-1.886160px;}
.ls97_c00176{letter-spacing:-1.872240px;}
.ls53_c00176{letter-spacing:-1.774800px;}
.ls67_c00176{letter-spacing:-1.767840px;}
.ls66_c00176{letter-spacing:-1.760880px;}
.ls81_c00176{letter-spacing:-1.649520px;}
.ls7f_c00176{letter-spacing:-1.621680px;}
.ls61_c00176{letter-spacing:-1.600800px;}
.ls5e_c00176{letter-spacing:-1.545120px;}
.ls80_c00176{letter-spacing:-1.531200px;}
.ls90_c00176{letter-spacing:-1.475520px;}
.ls54_c00176{letter-spacing:-1.392000px;}
.ls5c_c00176{letter-spacing:-1.294560px;}
.ls7a_c00176{letter-spacing:-1.218000px;}
.ls5b_c00176{letter-spacing:-1.211040px;}
.ls5a_c00176{letter-spacing:-1.190160px;}
.ls71_c00176{letter-spacing:-1.176240px;}
.ls93_c00176{letter-spacing:-1.099680px;}
.ls7b_c00176{letter-spacing:-1.030080px;}
.ls52_c00176{letter-spacing:-1.023120px;}
.ls76_c00176{letter-spacing:-0.897840px;}
.ls72_c00176{letter-spacing:-0.883920px;}
.ls92_c00176{letter-spacing:-0.849120px;}
.ls6a_c00176{letter-spacing:-0.828240px;}
.ls98_c00176{letter-spacing:-0.823680px;}
.ls5f_c00176{letter-spacing:-0.800400px;}
.ls51_c00176{letter-spacing:-0.668160px;}
.ls6f_c00176{letter-spacing:-0.633360px;}
.ls94_c00176{letter-spacing:-0.619440px;}
.ls6b_c00176{letter-spacing:-0.598560px;}
.ls57_c00176{letter-spacing:-0.556800px;}
.ls83_c00176{letter-spacing:-0.549840px;}
.ls70_c00176{letter-spacing:-0.542880px;}
.ls74_c00176{letter-spacing:-0.501120px;}
.ls6d_c00176{letter-spacing:-0.494160px;}
.ls64_c00176{letter-spacing:-0.466320px;}
.ls69_c00176{letter-spacing:-0.459360px;}
.ls4c_c00176{letter-spacing:-0.452400px;}
.ls63_c00176{letter-spacing:-0.445440px;}
.ls73_c00176{letter-spacing:-0.438480px;}
.ls7e_c00176{letter-spacing:-0.396720px;}
.ls8e_c00176{letter-spacing:-0.382800px;}
.ls78_c00176{letter-spacing:-0.375840px;}
.ls55_c00176{letter-spacing:-0.361920px;}
.ls8f_c00176{letter-spacing:-0.341040px;}
.ls7c_c00176{letter-spacing:-0.327120px;}
.ls58_c00176{letter-spacing:-0.320160px;}
.ls50_c00176{letter-spacing:-0.271440px;}
.ls87_c00176{letter-spacing:-0.250560px;}
.ls88_c00176{letter-spacing:-0.229680px;}
.ls8b_c00176{letter-spacing:-0.222720px;}
.ls79_c00176{letter-spacing:-0.208800px;}
.ls56_c00176{letter-spacing:-0.187920px;}
.ls75_c00176{letter-spacing:-0.180960px;}
.ls68_c00176{letter-spacing:-0.174000px;}
.ls84_c00176{letter-spacing:-0.139200px;}
.ls91_c00176{letter-spacing:-0.132240px;}
.ls85_c00176{letter-spacing:-0.118320px;}
.ls4b_c00176{letter-spacing:-0.104400px;}
.ls4a_c00176{letter-spacing:-0.097440px;}
.ls82_c00176{letter-spacing:-0.090480px;}
.ls6e_c00176{letter-spacing:-0.069600px;}
.ls8c_c00176{letter-spacing:-0.055680px;}
.ls77_c00176{letter-spacing:-0.048720px;}
.ls7d_c00176{letter-spacing:-0.027840px;}
.ls62_c00176{letter-spacing:-0.020880px;}
.ls8a_c00176{letter-spacing:-0.013920px;}
.ls6c_c00176{letter-spacing:-0.006960px;}
.ls4f_c00176{letter-spacing:0.000000px;}
.ls39_c00176{letter-spacing:0.013920px;}
.ls3e_c00176{letter-spacing:0.020880px;}
.ls2e_c00176{letter-spacing:0.034800px;}
.ls1d_c00176{letter-spacing:0.041760px;}
.ls13_c00176{letter-spacing:0.048720px;}
.ls8d_c00176{letter-spacing:0.055680px;}
.ls31_c00176{letter-spacing:0.076560px;}
.ls8_c00176{letter-spacing:0.083520px;}
.ls18_c00176{letter-spacing:0.097440px;}
.ls43_c00176{letter-spacing:0.118320px;}
.ls1a_c00176{letter-spacing:0.125280px;}
.ls3c_c00176{letter-spacing:0.132240px;}
.ls26_c00176{letter-spacing:0.153120px;}
.ls3a_c00176{letter-spacing:0.160080px;}
.ls44_c00176{letter-spacing:0.174000px;}
.ls20_c00176{letter-spacing:0.180960px;}
.ls42_c00176{letter-spacing:0.208800px;}
.ls22_c00176{letter-spacing:0.222720px;}
.ls3d_c00176{letter-spacing:0.257520px;}
.ls3f_c00176{letter-spacing:0.264420px;}
.ls30_c00176{letter-spacing:0.271440px;}
.ls2_c00176{letter-spacing:0.292320px;}
.ls28_c00176{letter-spacing:0.299280px;}
.ls35_c00176{letter-spacing:0.306240px;}
.ls14_c00176{letter-spacing:0.320160px;}
.ls95_c00176{letter-spacing:0.327120px;}
.ls2b_c00176{letter-spacing:0.334080px;}
.ls45_c00176{letter-spacing:0.348000px;}
.ls33_c00176{letter-spacing:0.361920px;}
.ls86_c00176{letter-spacing:0.368880px;}
.ls36_c00176{letter-spacing:0.375840px;}
.ls16_c00176{letter-spacing:0.382800px;}
.ls32_c00176{letter-spacing:0.389760px;}
.ls96_c00176{letter-spacing:0.396720px;}
.ls23_c00176{letter-spacing:0.410640px;}
.ls41_c00176{letter-spacing:0.417600px;}
.ls2a_c00176{letter-spacing:0.438480px;}
.ls12_c00176{letter-spacing:0.459360px;}
.ls47_c00176{letter-spacing:0.473280px;}
.ls25_c00176{letter-spacing:0.494160px;}
.ls5_c00176{letter-spacing:0.522000px;}
.ls24_c00176{letter-spacing:0.542880px;}
.ls46_c00176{letter-spacing:0.556800px;}
.lsf_c00176{letter-spacing:0.583080px;}
.ls15_c00176{letter-spacing:0.584640px;}
.ls1e_c00176{letter-spacing:0.619440px;}
.ls40_c00176{letter-spacing:0.640320px;}
.ls27_c00176{letter-spacing:0.654240px;}
.ls29_c00176{letter-spacing:0.737760px;}
.ls37_c00176{letter-spacing:0.751680px;}
.ls2d_c00176{letter-spacing:0.758640px;}
.ls10_c00176{letter-spacing:0.806820px;}
.ls4_c00176{letter-spacing:0.883920px;}
.ls3_c00176{letter-spacing:0.890880px;}
.ls3b_c00176{letter-spacing:0.925680px;}
.ls1c_c00176{letter-spacing:0.932640px;}
.ls2c_c00176{letter-spacing:1.078800px;}
.lsc_c00176{letter-spacing:1.139040px;}
.ls17_c00176{letter-spacing:1.183200px;}
.ls34_c00176{letter-spacing:1.240740px;}
.ls11_c00176{letter-spacing:1.261080px;}
.ls19_c00176{letter-spacing:1.280640px;}
.lsd_c00176{letter-spacing:1.301760px;}
.ls1b_c00176{letter-spacing:1.350240px;}
.ls7_c00176{letter-spacing:1.396680px;}
.ls21_c00176{letter-spacing:1.398960px;}
.ls9_c00176{letter-spacing:1.410240px;}
.ls2f_c00176{letter-spacing:1.447680px;}
.ls1_c00176{letter-spacing:1.449000px;}
.ls0_c00176{letter-spacing:1.518000px;}
.lsb_c00176{letter-spacing:1.518720px;}
.ls6_c00176{letter-spacing:1.647540px;}
.lsa_c00176{letter-spacing:1.681440px;}
.ls38_c00176{letter-spacing:1.760880px;}
.ls1f_c00176{letter-spacing:1.983600px;}
.lse_c00176{letter-spacing:2.027220px;}
.ls48_c00176{letter-spacing:2.442960px;}
.ls49_c00176{letter-spacing:2.940000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{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__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00176{word-spacing:0.000000px;}
.ws2_c00176{word-spacing:7.720380px;}
.ws1_c00176{word-spacing:11.197440px;}
.ws0_c00176{word-spacing:12.509640px;}
._e_c00176{margin-left:-14.728440px;}
._c_c00176{margin-left:-9.654480px;}
._0_c00176{margin-left:-4.485000px;}
._d_c00176{margin-left:-3.420180px;}
._1_c00176{margin-left:-1.701000px;}
._2_c00176{width:1.670400px;}
._7_c00176{width:2.763120px;}
._3_c00176{width:4.802400px;}
._a_c00176{width:5.898660px;}
._9_c00176{width:7.602060px;}
._4_c00176{width:9.222000px;}
._6_c00176{width:10.449720px;}
._5_c00176{width:12.061680px;}
._b_c00176{width:14.094000px;}
._8_c00176{width:16.188960px;}
._14_c00176{width:17.532960px;}
._10_c00176{width:18.812880px;}
._f_c00176{width:19.982160px;}
._12_c00176{width:21.784800px;}
._11_c00176{width:23.204640px;}
._13_c00176{width:24.909840px;}
._18_c00176{width:26.211360px;}
._17_c00176{width:27.324960px;}
._16_c00176{width:29.301600px;}
._15_c00176{width:30.554400px;}
._19_c00176{width:35.148000px;}
._1a_c00176{width:39.324000px;}
.fc0_c00176{color:transparent;}
.fs4_c00176{font-size:53.280000px;}
.fs5_c00176{font-size:57.600000px;}
.fs0_c00176{font-size:58.800000px;}
.fs3_c00176{font-size:67.800000px;}
.fs1_c00176{font-size:69.000000px;}
.fs2_c00176{font-size:69.600000px;}
.y0_c00176{bottom:0.000000px;}
.y1e_c00176{bottom:67.335015px;}
.y1c_c00176{bottom:154.078815px;}
.y1d_c00176{bottom:154.080015px;}
.y1b_c00176{bottom:184.320015px;}
.y1a_c00176{bottom:184.328415px;}
.y19_c00176{bottom:246.255015px;}
.y18_c00176{bottom:308.895015px;}
.y17_c00176{bottom:340.935015px;}
.y16_c00176{bottom:340.941615px;}
.y15_c00176{bottom:372.975015px;}
.y14_c00176{bottom:436.341615px;}
.y13_c00176{bottom:467.296215px;}
.y12_c00176{bottom:498.250815px;}
.y11_c00176{bottom:560.177415px;}
.y10_c00176{bottom:591.473415px;}
.yf_c00176{bottom:622.080015px;}
.ye_c00176{bottom:683.993415px;}
.yd_c00176{bottom:714.600015px;}
.yc_c00176{bottom:745.215015px;}
.yb_c00176{bottom:776.168415px;}
.ya_c00176{bottom:806.782815px;}
.y9_c00176{bottom:837.720015px;}
.y8_c00176{bottom:868.680015px;}
.y7_c00176{bottom:899.295015px;}
.y6_c00176{bottom:960.480015px;}
.y5_c00176{bottom:960.480615px;}
.y4_c00176{bottom:991.452615px;}
.y3_c00176{bottom:1052.648415px;}
.y2_c00176{bottom:1083.255015px;}
.y1_c00176{bottom:1189.815015px;}
.h5_c00176{height:35.484480px;}
.h6_c00176{height:56.531250px;}
.h2_c00176{height:57.708984px;}
.h3_c00176{height:68.308594px;}
.h4_c00176{height:68.334994px;}
.h1_c00176{height:1263.000000px;}
.h0_c00176{height:1263.240015px;}
.w1_c00176{width:892.500000px;}
.w0_c00176{width:892.800015px;}
.x0_c00176{left:0.000000px;}
.xe_c00176{left:120.790815px;}
.x6_c00176{left:122.104815px;}
.x1_c00176{left:123.765015px;}
.xb_c00176{left:175.095015px;}
.x5_c00176{left:176.205015px;}
.x3_c00176{left:177.754815px;}
.xf_c00176{left:278.835015px;}
.x2_c00176{left:289.935015px;}
.x10_c00176{left:306.900015px;}
.xc_c00176{left:323.490015px;}
.x4_c00176{left:332.400015px;}
.xd_c00176{left:343.650015px;}
.x11_c00176{left:423.585015px;}
.xa_c00176{left:559.095015px;}
.x7_c00176{left:644.760015px;}
.x8_c00176{left:679.965015px;}
.x9_c00176{left:723.255015px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls59_c00176{letter-spacing:-2.165333pt;}
.ls65_c00176{letter-spacing:-2.041600pt;}
.ls4e_c00176{letter-spacing:-1.985920pt;}
.ls4d_c00176{letter-spacing:-1.899307pt;}
.ls60_c00176{letter-spacing:-1.732267pt;}
.ls5d_c00176{letter-spacing:-1.713707pt;}
.ls89_c00176{letter-spacing:-1.676587pt;}
.ls97_c00176{letter-spacing:-1.664213pt;}
.ls53_c00176{letter-spacing:-1.577600pt;}
.ls67_c00176{letter-spacing:-1.571413pt;}
.ls66_c00176{letter-spacing:-1.565227pt;}
.ls81_c00176{letter-spacing:-1.466240pt;}
.ls7f_c00176{letter-spacing:-1.441493pt;}
.ls61_c00176{letter-spacing:-1.422933pt;}
.ls5e_c00176{letter-spacing:-1.373440pt;}
.ls80_c00176{letter-spacing:-1.361067pt;}
.ls90_c00176{letter-spacing:-1.311573pt;}
.ls54_c00176{letter-spacing:-1.237333pt;}
.ls5c_c00176{letter-spacing:-1.150720pt;}
.ls7a_c00176{letter-spacing:-1.082667pt;}
.ls5b_c00176{letter-spacing:-1.076480pt;}
.ls5a_c00176{letter-spacing:-1.057920pt;}
.ls71_c00176{letter-spacing:-1.045547pt;}
.ls93_c00176{letter-spacing:-0.977493pt;}
.ls7b_c00176{letter-spacing:-0.915627pt;}
.ls52_c00176{letter-spacing:-0.909440pt;}
.ls76_c00176{letter-spacing:-0.798080pt;}
.ls72_c00176{letter-spacing:-0.785707pt;}
.ls92_c00176{letter-spacing:-0.754773pt;}
.ls6a_c00176{letter-spacing:-0.736213pt;}
.ls98_c00176{letter-spacing:-0.732160pt;}
.ls5f_c00176{letter-spacing:-0.711467pt;}
.ls51_c00176{letter-spacing:-0.593920pt;}
.ls6f_c00176{letter-spacing:-0.562987pt;}
.ls94_c00176{letter-spacing:-0.550613pt;}
.ls6b_c00176{letter-spacing:-0.532053pt;}
.ls57_c00176{letter-spacing:-0.494933pt;}
.ls83_c00176{letter-spacing:-0.488747pt;}
.ls70_c00176{letter-spacing:-0.482560pt;}
.ls74_c00176{letter-spacing:-0.445440pt;}
.ls6d_c00176{letter-spacing:-0.439253pt;}
.ls64_c00176{letter-spacing:-0.414507pt;}
.ls69_c00176{letter-spacing:-0.408320pt;}
.ls4c_c00176{letter-spacing:-0.402133pt;}
.ls63_c00176{letter-spacing:-0.395947pt;}
.ls73_c00176{letter-spacing:-0.389760pt;}
.ls7e_c00176{letter-spacing:-0.352640pt;}
.ls8e_c00176{letter-spacing:-0.340267pt;}
.ls78_c00176{letter-spacing:-0.334080pt;}
.ls55_c00176{letter-spacing:-0.321707pt;}
.ls8f_c00176{letter-spacing:-0.303147pt;}
.ls7c_c00176{letter-spacing:-0.290773pt;}
.ls58_c00176{letter-spacing:-0.284587pt;}
.ls50_c00176{letter-spacing:-0.241280pt;}
.ls87_c00176{letter-spacing:-0.222720pt;}
.ls88_c00176{letter-spacing:-0.204160pt;}
.ls8b_c00176{letter-spacing:-0.197973pt;}
.ls79_c00176{letter-spacing:-0.185600pt;}
.ls56_c00176{letter-spacing:-0.167040pt;}
.ls75_c00176{letter-spacing:-0.160853pt;}
.ls68_c00176{letter-spacing:-0.154667pt;}
.ls84_c00176{letter-spacing:-0.123733pt;}
.ls91_c00176{letter-spacing:-0.117547pt;}
.ls85_c00176{letter-spacing:-0.105173pt;}
.ls4b_c00176{letter-spacing:-0.092800pt;}
.ls4a_c00176{letter-spacing:-0.086613pt;}
.ls82_c00176{letter-spacing:-0.080427pt;}
.ls6e_c00176{letter-spacing:-0.061867pt;}
.ls8c_c00176{letter-spacing:-0.049493pt;}
.ls77_c00176{letter-spacing:-0.043307pt;}
.ls7d_c00176{letter-spacing:-0.024747pt;}
.ls62_c00176{letter-spacing:-0.018560pt;}
.ls8a_c00176{letter-spacing:-0.012373pt;}
.ls6c_c00176{letter-spacing:-0.006187pt;}
.ls4f_c00176{letter-spacing:0.000000pt;}
.ls39_c00176{letter-spacing:0.012373pt;}
.ls3e_c00176{letter-spacing:0.018560pt;}
.ls2e_c00176{letter-spacing:0.030933pt;}
.ls1d_c00176{letter-spacing:0.037120pt;}
.ls13_c00176{letter-spacing:0.043307pt;}
.ls8d_c00176{letter-spacing:0.049493pt;}
.ls31_c00176{letter-spacing:0.068053pt;}
.ls8_c00176{letter-spacing:0.074240pt;}
.ls18_c00176{letter-spacing:0.086613pt;}
.ls43_c00176{letter-spacing:0.105173pt;}
.ls1a_c00176{letter-spacing:0.111360pt;}
.ls3c_c00176{letter-spacing:0.117547pt;}
.ls26_c00176{letter-spacing:0.136107pt;}
.ls3a_c00176{letter-spacing:0.142293pt;}
.ls44_c00176{letter-spacing:0.154667pt;}
.ls20_c00176{letter-spacing:0.160853pt;}
.ls42_c00176{letter-spacing:0.185600pt;}
.ls22_c00176{letter-spacing:0.197973pt;}
.ls3d_c00176{letter-spacing:0.228907pt;}
.ls3f_c00176{letter-spacing:0.235040pt;}
.ls30_c00176{letter-spacing:0.241280pt;}
.ls2_c00176{letter-spacing:0.259840pt;}
.ls28_c00176{letter-spacing:0.266027pt;}
.ls35_c00176{letter-spacing:0.272213pt;}
.ls14_c00176{letter-spacing:0.284587pt;}
.ls95_c00176{letter-spacing:0.290773pt;}
.ls2b_c00176{letter-spacing:0.296960pt;}
.ls45_c00176{letter-spacing:0.309333pt;}
.ls33_c00176{letter-spacing:0.321707pt;}
.ls86_c00176{letter-spacing:0.327893pt;}
.ls36_c00176{letter-spacing:0.334080pt;}
.ls16_c00176{letter-spacing:0.340267pt;}
.ls32_c00176{letter-spacing:0.346453pt;}
.ls96_c00176{letter-spacing:0.352640pt;}
.ls23_c00176{letter-spacing:0.365013pt;}
.ls41_c00176{letter-spacing:0.371200pt;}
.ls2a_c00176{letter-spacing:0.389760pt;}
.ls12_c00176{letter-spacing:0.408320pt;}
.ls47_c00176{letter-spacing:0.420693pt;}
.ls25_c00176{letter-spacing:0.439253pt;}
.ls5_c00176{letter-spacing:0.464000pt;}
.ls24_c00176{letter-spacing:0.482560pt;}
.ls46_c00176{letter-spacing:0.494933pt;}
.lsf_c00176{letter-spacing:0.518293pt;}
.ls15_c00176{letter-spacing:0.519680pt;}
.ls1e_c00176{letter-spacing:0.550613pt;}
.ls40_c00176{letter-spacing:0.569173pt;}
.ls27_c00176{letter-spacing:0.581547pt;}
.ls29_c00176{letter-spacing:0.655787pt;}
.ls37_c00176{letter-spacing:0.668160pt;}
.ls2d_c00176{letter-spacing:0.674347pt;}
.ls10_c00176{letter-spacing:0.717173pt;}
.ls4_c00176{letter-spacing:0.785707pt;}
.ls3_c00176{letter-spacing:0.791893pt;}
.ls3b_c00176{letter-spacing:0.822827pt;}
.ls1c_c00176{letter-spacing:0.829013pt;}
.ls2c_c00176{letter-spacing:0.958933pt;}
.lsc_c00176{letter-spacing:1.012480pt;}
.ls17_c00176{letter-spacing:1.051733pt;}
.ls34_c00176{letter-spacing:1.102880pt;}
.ls11_c00176{letter-spacing:1.120960pt;}
.ls19_c00176{letter-spacing:1.138347pt;}
.lsd_c00176{letter-spacing:1.157120pt;}
.ls1b_c00176{letter-spacing:1.200213pt;}
.ls7_c00176{letter-spacing:1.241493pt;}
.ls21_c00176{letter-spacing:1.243520pt;}
.ls9_c00176{letter-spacing:1.253547pt;}
.ls2f_c00176{letter-spacing:1.286827pt;}
.ls1_c00176{letter-spacing:1.288000pt;}
.ls0_c00176{letter-spacing:1.349333pt;}
.lsb_c00176{letter-spacing:1.349973pt;}
.ls6_c00176{letter-spacing:1.464480pt;}
.lsa_c00176{letter-spacing:1.494613pt;}
.ls38_c00176{letter-spacing:1.565227pt;}
.ls1f_c00176{letter-spacing:1.763200pt;}
.lse_c00176{letter-spacing:1.801973pt;}
.ls48_c00176{letter-spacing:2.171520pt;}
.ls49_c00176{letter-spacing:2.613333pt;}
.ws3_c00176{word-spacing:0.000000pt;}
.ws2_c00176{word-spacing:6.862560pt;}
.ws1_c00176{word-spacing:9.953280pt;}
.ws0_c00176{word-spacing:11.119680pt;}
._e_c00176{margin-left:-13.091947pt;}
._c_c00176{margin-left:-8.581760pt;}
._0_c00176{margin-left:-3.986667pt;}
._d_c00176{margin-left:-3.040160pt;}
._1_c00176{margin-left:-1.512000pt;}
._2_c00176{width:1.484800pt;}
._7_c00176{width:2.456107pt;}
._3_c00176{width:4.268800pt;}
._a_c00176{width:5.243253pt;}
._9_c00176{width:6.757387pt;}
._4_c00176{width:8.197333pt;}
._6_c00176{width:9.288640pt;}
._5_c00176{width:10.721493pt;}
._b_c00176{width:12.528000pt;}
._8_c00176{width:14.390187pt;}
._14_c00176{width:15.584853pt;}
._10_c00176{width:16.722560pt;}
._f_c00176{width:17.761920pt;}
._12_c00176{width:19.364267pt;}
._11_c00176{width:20.626347pt;}
._13_c00176{width:22.142080pt;}
._18_c00176{width:23.298987pt;}
._17_c00176{width:24.288853pt;}
._16_c00176{width:26.045867pt;}
._15_c00176{width:27.159467pt;}
._19_c00176{width:31.242667pt;}
._1a_c00176{width:34.954667pt;}
.fs4_c00176{font-size:47.360000pt;}
.fs5_c00176{font-size:51.200000pt;}
.fs0_c00176{font-size:52.266667pt;}
.fs3_c00176{font-size:60.266667pt;}
.fs1_c00176{font-size:61.333333pt;}
.fs2_c00176{font-size:61.866667pt;}
.y0_c00176{bottom:0.000000pt;}
.y1e_c00176{bottom:59.853347pt;}
.y1c_c00176{bottom:136.958947pt;}
.y1d_c00176{bottom:136.960013pt;}
.y1b_c00176{bottom:163.840013pt;}
.y1a_c00176{bottom:163.847480pt;}
.y19_c00176{bottom:218.893347pt;}
.y18_c00176{bottom:274.573347pt;}
.y17_c00176{bottom:303.053347pt;}
.y16_c00176{bottom:303.059213pt;}
.y15_c00176{bottom:331.533347pt;}
.y14_c00176{bottom:387.859213pt;}
.y13_c00176{bottom:415.374413pt;}
.y12_c00176{bottom:442.889613pt;}
.y11_c00176{bottom:497.935480pt;}
.y10_c00176{bottom:525.754147pt;}
.yf_c00176{bottom:552.960013pt;}
.ye_c00176{bottom:607.994147pt;}
.yd_c00176{bottom:635.200013pt;}
.yc_c00176{bottom:662.413347pt;}
.yb_c00176{bottom:689.927480pt;}
.ya_c00176{bottom:717.140280pt;}
.y9_c00176{bottom:744.640013pt;}
.y8_c00176{bottom:772.160013pt;}
.y7_c00176{bottom:799.373347pt;}
.y6_c00176{bottom:853.760013pt;}
.y5_c00176{bottom:853.760547pt;}
.y4_c00176{bottom:881.291213pt;}
.y3_c00176{bottom:935.687480pt;}
.y2_c00176{bottom:962.893347pt;}
.y1_c00176{bottom:1057.613347pt;}
.h5_c00176{height:31.541760pt;}
.h6_c00176{height:50.250000pt;}
.h2_c00176{height:51.296875pt;}
.h3_c00176{height:60.718750pt;}
.h4_c00176{height:60.742217pt;}
.h1_c00176{height:1122.666667pt;}
.h0_c00176{height:1122.880013pt;}
.w1_c00176{width:793.333333pt;}
.w0_c00176{width:793.600013pt;}
.x0_c00176{left:0.000000pt;}
.xe_c00176{left:107.369613pt;}
.x6_c00176{left:108.537613pt;}
.x1_c00176{left:110.013347pt;}
.xb_c00176{left:155.640013pt;}
.x5_c00176{left:156.626680pt;}
.x3_c00176{left:158.004280pt;}
.xf_c00176{left:247.853347pt;}
.x2_c00176{left:257.720013pt;}
.x10_c00176{left:272.800013pt;}
.xc_c00176{left:287.546680pt;}
.x4_c00176{left:295.466680pt;}
.xd_c00176{left:305.466680pt;}
.x11_c00176{left:376.520013pt;}
.xa_c00176{left:496.973347pt;}
.x7_c00176{left:573.120013pt;}
.x8_c00176{left:604.413347pt;}
.x9_c00176{left:642.893347pt;}
}





/* 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_c00177 {
    display:none;
  }
  .loading-indicator_c00177.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00177 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_c00177 { 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_c00177" -> "#page-container .classname_c00177")
 */
.pf_c00177 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00177 { /* 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_c00177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00177 { /* 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_c00177 { /* 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_c00177 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00177 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00177 {overflow:visible;}
  }
}
.c_c00177 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00177 { /* 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_c00177:after { /* webkit #35443 */
  content: '';
}
.t_c00177:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00177 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 */
}
.__c00177 { /* 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_c00177 { /* info for Javascript */
  display:none;
}
.l_c00177 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00177 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00177 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00177: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_c00177 {
    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_c00177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00177.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_c00177 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00177;src:url('chunks/assets/font_cd91794c8616ab823490151f.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.284668;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_c00177;src:url('chunks/assets/font_c6ed565d68f4d3e40326b6aa.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.284180;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;}
.m1_c00177{transform:matrix(0.218534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218534,0.000000,0.000000,0.250000,0,0);}
.m0_c00177{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);}
.v0_c00177{vertical-align:0.000000px;}
.ls2b_c00177{letter-spacing:-2.457000px;}
.ls25_c00177{letter-spacing:-2.260440px;}
.ls31_c00177{letter-spacing:-1.635660px;}
.ls22_c00177{letter-spacing:-1.509300px;}
.ls35_c00177{letter-spacing:-1.172340px;}
.ls24_c00177{letter-spacing:-1.144260px;}
.ls30_c00177{letter-spacing:-0.989820px;}
.ls3c_c00177{letter-spacing:-0.958440px;}
.ls34_c00177{letter-spacing:-0.848700px;}
.ls2a_c00177{letter-spacing:-0.772200px;}
.ls2c_c00177{letter-spacing:-0.765180px;}
.ls21_c00177{letter-spacing:-0.673920px;}
.ls27_c00177{letter-spacing:-0.617760px;}
.ls38_c00177{letter-spacing:-0.470340px;}
.ls29_c00177{letter-spacing:-0.428220px;}
.ls32_c00177{letter-spacing:-0.329940px;}
.ls2e_c00177{letter-spacing:-0.280800px;}
.ls33_c00177{letter-spacing:-0.224640px;}
.ls36_c00177{letter-spacing:-0.196560px;}
.ls37_c00177{letter-spacing:-0.182520px;}
.ls39_c00177{letter-spacing:-0.161460px;}
.ls2f_c00177{letter-spacing:-0.154440px;}
.ls2d_c00177{letter-spacing:-0.133380px;}
.ls3b_c00177{letter-spacing:-0.126360px;}
.ls23_c00177{letter-spacing:-0.049140px;}
.ls26_c00177{letter-spacing:-0.014040px;}
.ls28_c00177{letter-spacing:0.000000px;}
.ls6_c00177{letter-spacing:0.007020px;}
.lsf_c00177{letter-spacing:0.035100px;}
.ls1a_c00177{letter-spacing:0.119340px;}
.ls5_c00177{letter-spacing:0.126360px;}
.ls3_c00177{letter-spacing:0.133380px;}
.ls0_c00177{letter-spacing:0.140400px;}
.ls1c_c00177{letter-spacing:0.147420px;}
.ls11_c00177{letter-spacing:0.154440px;}
.ls16_c00177{letter-spacing:0.161460px;}
.lse_c00177{letter-spacing:0.203580px;}
.ls1d_c00177{letter-spacing:0.224640px;}
.ls3a_c00177{letter-spacing:0.252720px;}
.lsb_c00177{letter-spacing:0.308880px;}
.ls13_c00177{letter-spacing:0.351900px;}
.ls12_c00177{letter-spacing:0.365700px;}
.ls15_c00177{letter-spacing:0.407160px;}
.ls8_c00177{letter-spacing:0.442260px;}
.ls7_c00177{letter-spacing:0.449280px;}
.ls4_c00177{letter-spacing:0.456300px;}
.lsc_c00177{letter-spacing:0.575640px;}
.ls1_c00177{letter-spacing:0.582660px;}
.lsa_c00177{letter-spacing:0.596700px;}
.ls1e_c00177{letter-spacing:0.603720px;}
.ls14_c00177{letter-spacing:0.638820px;}
.ls9_c00177{letter-spacing:0.759000px;}
.ls10_c00177{letter-spacing:1.088100px;}
.ls19_c00177{letter-spacing:1.102140px;}
.lsd_c00177{letter-spacing:1.263600px;}
.ls1f_c00177{letter-spacing:1.284660px;}
.ls2_c00177{letter-spacing:1.425060px;}
.ls20_c00177{letter-spacing:1.444320px;}
.ls18_c00177{letter-spacing:1.818180px;}
.ls1b_c00177{letter-spacing:2.183220px;}
.ls17_c00177{letter-spacing:3.091200px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{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__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00177{word-spacing:0.000000px;}
.ws1_c00177{word-spacing:6.851100px;}
.ws0_c00177{word-spacing:22.974000px;}
._d_c00177{margin-left:-5.293080px;}
._e_c00177{margin-left:-3.018600px;}
._4_c00177{margin-left:-1.474200px;}
._5_c00177{width:1.165320px;}
._6_c00177{width:2.836080px;}
._8_c00177{width:4.011480px;}
._7_c00177{width:6.247800px;}
._3_c00177{width:9.568260px;}
._2_c00177{width:10.705500px;}
._0_c00177{width:13.899600px;}
._11_c00177{width:15.633540px;}
._12_c00177{width:17.290260px;}
._1_c00177{width:18.364320px;}
._9_c00177{width:19.656000px;}
._f_c00177{width:21.067020px;}
._b_c00177{width:22.632480px;}
._10_c00177{width:23.924160px;}
._a_c00177{width:26.444340px;}
._c_c00177{width:31.639140px;}
.fc0_c00177{color:transparent;}
.fs3_c00177{font-size:58.800000px;}
.fs0_c00177{font-size:61.200000px;}
.fs2_c00177{font-size:69.000000px;}
.fs1_c00177{font-size:70.200000px;}
.y0_c00177{bottom:0.000000px;}
.ya_c00177{bottom:69.855000px;}
.y9_c00177{bottom:871.201050px;}
.y8_c00177{bottom:902.176800px;}
.y7_c00177{bottom:933.135000px;}
.y6_c00177{bottom:994.696800px;}
.y5_c00177{bottom:1025.655000px;}
.y4_c00177{bottom:1086.855000px;}
.y3_c00177{bottom:1086.856800px;}
.y2_c00177{bottom:1117.815000px;}
.y1_c00177{bottom:1194.495000px;}
.h4_c00177{height:57.708984px;}
.h2_c00177{height:60.064453px;}
.h3_c00177{height:68.897461px;}
.h1_c00177{height:1263.000000px;}
.h0_c00177{height:1263.240000px;}
.w1_c00177{width:892.500000px;}
.w0_c00177{width:892.800000px;}
.x0_c00177{left:0.000000px;}
.x6_c00177{left:119.465250px;}
.x2_c00177{left:121.290000px;}
.x1_c00177{left:122.325000px;}
.x5_c00177{left:172.965000px;}
.x4_c00177{left:174.045000px;}
.x7_c00177{left:422.490000px;}
.x3_c00177{left:520.245000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls2b_c00177{letter-spacing:-2.184000pt;}
.ls25_c00177{letter-spacing:-2.009280pt;}
.ls31_c00177{letter-spacing:-1.453920pt;}
.ls22_c00177{letter-spacing:-1.341600pt;}
.ls35_c00177{letter-spacing:-1.042080pt;}
.ls24_c00177{letter-spacing:-1.017120pt;}
.ls30_c00177{letter-spacing:-0.879840pt;}
.ls3c_c00177{letter-spacing:-0.851947pt;}
.ls34_c00177{letter-spacing:-0.754400pt;}
.ls2a_c00177{letter-spacing:-0.686400pt;}
.ls2c_c00177{letter-spacing:-0.680160pt;}
.ls21_c00177{letter-spacing:-0.599040pt;}
.ls27_c00177{letter-spacing:-0.549120pt;}
.ls38_c00177{letter-spacing:-0.418080pt;}
.ls29_c00177{letter-spacing:-0.380640pt;}
.ls32_c00177{letter-spacing:-0.293280pt;}
.ls2e_c00177{letter-spacing:-0.249600pt;}
.ls33_c00177{letter-spacing:-0.199680pt;}
.ls36_c00177{letter-spacing:-0.174720pt;}
.ls37_c00177{letter-spacing:-0.162240pt;}
.ls39_c00177{letter-spacing:-0.143520pt;}
.ls2f_c00177{letter-spacing:-0.137280pt;}
.ls2d_c00177{letter-spacing:-0.118560pt;}
.ls3b_c00177{letter-spacing:-0.112320pt;}
.ls23_c00177{letter-spacing:-0.043680pt;}
.ls26_c00177{letter-spacing:-0.012480pt;}
.ls28_c00177{letter-spacing:0.000000pt;}
.ls6_c00177{letter-spacing:0.006240pt;}
.lsf_c00177{letter-spacing:0.031200pt;}
.ls1a_c00177{letter-spacing:0.106080pt;}
.ls5_c00177{letter-spacing:0.112320pt;}
.ls3_c00177{letter-spacing:0.118560pt;}
.ls0_c00177{letter-spacing:0.124800pt;}
.ls1c_c00177{letter-spacing:0.131040pt;}
.ls11_c00177{letter-spacing:0.137280pt;}
.ls16_c00177{letter-spacing:0.143520pt;}
.lse_c00177{letter-spacing:0.180960pt;}
.ls1d_c00177{letter-spacing:0.199680pt;}
.ls3a_c00177{letter-spacing:0.224640pt;}
.lsb_c00177{letter-spacing:0.274560pt;}
.ls13_c00177{letter-spacing:0.312800pt;}
.ls12_c00177{letter-spacing:0.325067pt;}
.ls15_c00177{letter-spacing:0.361920pt;}
.ls8_c00177{letter-spacing:0.393120pt;}
.ls7_c00177{letter-spacing:0.399360pt;}
.ls4_c00177{letter-spacing:0.405600pt;}
.lsc_c00177{letter-spacing:0.511680pt;}
.ls1_c00177{letter-spacing:0.517920pt;}
.lsa_c00177{letter-spacing:0.530400pt;}
.ls1e_c00177{letter-spacing:0.536640pt;}
.ls14_c00177{letter-spacing:0.567840pt;}
.ls9_c00177{letter-spacing:0.674667pt;}
.ls10_c00177{letter-spacing:0.967200pt;}
.ls19_c00177{letter-spacing:0.979680pt;}
.lsd_c00177{letter-spacing:1.123200pt;}
.ls1f_c00177{letter-spacing:1.141920pt;}
.ls2_c00177{letter-spacing:1.266720pt;}
.ls20_c00177{letter-spacing:1.283840pt;}
.ls18_c00177{letter-spacing:1.616160pt;}
.ls1b_c00177{letter-spacing:1.940640pt;}
.ls17_c00177{letter-spacing:2.747733pt;}
.ws2_c00177{word-spacing:0.000000pt;}
.ws1_c00177{word-spacing:6.089867pt;}
.ws0_c00177{word-spacing:20.421333pt;}
._d_c00177{margin-left:-4.704960pt;}
._e_c00177{margin-left:-2.683200pt;}
._4_c00177{margin-left:-1.310400pt;}
._5_c00177{width:1.035840pt;}
._6_c00177{width:2.520960pt;}
._8_c00177{width:3.565760pt;}
._7_c00177{width:5.553600pt;}
._3_c00177{width:8.505120pt;}
._2_c00177{width:9.516000pt;}
._0_c00177{width:12.355200pt;}
._11_c00177{width:13.896480pt;}
._12_c00177{width:15.369120pt;}
._1_c00177{width:16.323840pt;}
._9_c00177{width:17.472000pt;}
._f_c00177{width:18.726240pt;}
._b_c00177{width:20.117760pt;}
._10_c00177{width:21.265920pt;}
._a_c00177{width:23.506080pt;}
._c_c00177{width:28.123680pt;}
.fs3_c00177{font-size:52.266667pt;}
.fs0_c00177{font-size:54.400000pt;}
.fs2_c00177{font-size:61.333333pt;}
.fs1_c00177{font-size:62.400000pt;}
.y0_c00177{bottom:0.000000pt;}
.ya_c00177{bottom:62.093333pt;}
.y9_c00177{bottom:774.400933pt;}
.y8_c00177{bottom:801.934933pt;}
.y7_c00177{bottom:829.453333pt;}
.y6_c00177{bottom:884.174933pt;}
.y5_c00177{bottom:911.693333pt;}
.y4_c00177{bottom:966.093333pt;}
.y3_c00177{bottom:966.094933pt;}
.y2_c00177{bottom:993.613333pt;}
.y1_c00177{bottom:1061.773333pt;}
.h4_c00177{height:51.296875pt;}
.h2_c00177{height:53.390625pt;}
.h3_c00177{height:61.242187pt;}
.h1_c00177{height:1122.666667pt;}
.h0_c00177{height:1122.880000pt;}
.w1_c00177{width:793.333333pt;}
.w0_c00177{width:793.600000pt;}
.x0_c00177{left:0.000000pt;}
.x6_c00177{left:106.191333pt;}
.x2_c00177{left:107.813333pt;}
.x1_c00177{left:108.733333pt;}
.x5_c00177{left:153.746667pt;}
.x4_c00177{left:154.706667pt;}
.x7_c00177{left:375.546667pt;}
.x3_c00177{left:462.440000pt;}
}





/* 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_c00178 {
    display:none;
  }
  .loading-indicator_c00178.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00178 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_c00178 { 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_c00178" -> "#page-container .classname_c00178")
 */
.pf_c00178 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00178 { /* 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_c00178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00178 { /* 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_c00178 { /* 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_c00178 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00178 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00178 {overflow:visible;}
  }
}
.c_c00178 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00178 { /* 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_c00178:after { /* webkit #35443 */
  content: '';
}
.t_c00178:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00178 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 */
}
.__c00178 { /* 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_c00178 { /* info for Javascript */
  display:none;
}
.l_c00178 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00178 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00178 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00178: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_c00178 {
    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_c00178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00178.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_c00178 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00178;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;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:ff2_c00178;src:url('chunks/assets/font_7b78b02a108503b045dd464e.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.284180;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_c00178;src:url('chunks/assets/font_62be6e66db4fa87c60be9281.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00178{transform:matrix(0.123752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123752,0.000000,0.000000,0.250000,0,0);}
.m3_c00178{transform:matrix(0.128138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128138,0.000000,0.000000,0.250000,0,0);}
.m1_c00178{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);}
.m2_c00178{transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls3_c00178{letter-spacing:-2.667000px;}
.ls9_c00178{letter-spacing:-2.436000px;}
.ls4_c00178{letter-spacing:-0.674160px;}
.ls8_c00178{letter-spacing:-0.577800px;}
.ls6_c00178{letter-spacing:0.604200px;}
.ls5_c00178{letter-spacing:0.890400px;}
.ls1_c00178{letter-spacing:1.291080px;}
.ls0_c00178{letter-spacing:1.418280px;}
.ls2_c00178{letter-spacing:1.462800px;}
.ls7_c00178{letter-spacing:3.210000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{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__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00178{word-spacing:-2.811120px;}
.ws0_c00178{word-spacing:-1.182960px;}
.ws2_c00178{word-spacing:0.000000px;}
._1_c00178{margin-left:-4.452000px;}
._0_c00178{margin-left:-2.734800px;}
.fc0_c00178{color:transparent;}
.fs1_c00178{font-size:63.600000px;}
.fs2_c00178{font-size:64.200000px;}
.fs3_c00178{font-size:69.600000px;}
.fs0_c00178{font-size:76.200000px;}
.y0_c00178{bottom:0.000000px;}
.y3_c00178{bottom:147.235500px;}
.y2_c00178{bottom:165.600000px;}
.y5_c00178{bottom:1078.200000px;}
.y1_c00178{bottom:1080.720000px;}
.y4_c00178{bottom:1143.375000px;}
.h3_c00178{height:62.388867px;}
.h4_c00178{height:63.008789px;}
.h5_c00178{height:68.308594px;}
.h2_c00178{height:79.474219px;}
.h1_c00178{height:1263.000000px;}
.h0_c00178{height:1263.240000px;}
.w1_c00178{width:892.500000px;}
.w0_c00178{width:892.800000px;}
.x0_c00178{left:0.000000px;}
.x2_c00178{left:118.385400px;}
.x1_c00178{left:120.030000px;}
.x3_c00178{left:673.470000px;}
.x4_c00178{left:746.445000px;}
.x5_c00178{left:793.140000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls3_c00178{letter-spacing:-2.370667pt;}
.ls9_c00178{letter-spacing:-2.165333pt;}
.ls4_c00178{letter-spacing:-0.599253pt;}
.ls8_c00178{letter-spacing:-0.513600pt;}
.ls6_c00178{letter-spacing:0.537067pt;}
.ls5_c00178{letter-spacing:0.791467pt;}
.ls1_c00178{letter-spacing:1.147627pt;}
.ls0_c00178{letter-spacing:1.260693pt;}
.ls2_c00178{letter-spacing:1.300267pt;}
.ls7_c00178{letter-spacing:2.853333pt;}
.ws1_c00178{word-spacing:-2.498773pt;}
.ws0_c00178{word-spacing:-1.051520pt;}
.ws2_c00178{word-spacing:0.000000pt;}
._1_c00178{margin-left:-3.957333pt;}
._0_c00178{margin-left:-2.430933pt;}
.fs1_c00178{font-size:56.533333pt;}
.fs2_c00178{font-size:57.066667pt;}
.fs3_c00178{font-size:61.866667pt;}
.fs0_c00178{font-size:67.733333pt;}
.y0_c00178{bottom:0.000000pt;}
.y3_c00178{bottom:130.876000pt;}
.y2_c00178{bottom:147.200000pt;}
.y5_c00178{bottom:958.400000pt;}
.y1_c00178{bottom:960.640000pt;}
.y4_c00178{bottom:1016.333333pt;}
.h3_c00178{height:55.456771pt;}
.h4_c00178{height:56.007812pt;}
.h5_c00178{height:60.718750pt;}
.h2_c00178{height:70.643750pt;}
.h1_c00178{height:1122.666667pt;}
.h0_c00178{height:1122.880000pt;}
.w1_c00178{width:793.333333pt;}
.w0_c00178{width:793.600000pt;}
.x0_c00178{left:0.000000pt;}
.x2_c00178{left:105.231467pt;}
.x1_c00178{left:106.693333pt;}
.x3_c00178{left:598.640000pt;}
.x4_c00178{left:663.506667pt;}
.x5_c00178{left:705.013333pt;}
}





/* 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_c00179 {
    display:none;
  }
  .loading-indicator_c00179.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00179 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_c00179 { 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_c00179" -> "#page-container .classname_c00179")
 */
.pf_c00179 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00179 { /* 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_c00179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00179 { /* 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_c00179 { /* 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_c00179 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00179 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00179 {overflow:visible;}
  }
}
.c_c00179 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00179 { /* 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_c00179:after { /* webkit #35443 */
  content: '';
}
.t_c00179:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00179 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 */
}
.__c00179 { /* 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_c00179 { /* info for Javascript */
  display:none;
}
.l_c00179 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00179 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00179 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00179: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_c00179 {
    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_c00179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00179.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_c00179 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00179;src:url('chunks/assets/font_61016570bac79252b7db2565.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.284668;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_c00179;src:url('chunks/assets/font_892edbbb750fb2a6c1e28640.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.284180;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_c00179;src:url('chunks/assets/font_94183a85a7544fa5659261b9.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.311035;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_c00179;src:url('chunks/assets/font_618a18cb0adb11c2055b6712.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;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;}
.m8_c00179{transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);}
.m4_c00179{transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);}
.m11_c00179{transform:matrix(0.238356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238356,0.000000,0.000000,0.250000,0,0);}
.mb_c00179{transform:matrix(0.239758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239758,0.000000,0.000000,0.250000,0,0);}
.ma_c00179{transform:matrix(0.242795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242795,0.000000,0.000000,0.250000,0,0);}
.me_c00179{transform:matrix(0.243124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243124,0.000000,0.000000,0.250000,0,0);}
.m10_c00179{transform:matrix(0.244101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244101,0.000000,0.000000,0.250000,0,0);}
.mf_c00179{transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);}
.m2_c00179{transform:matrix(0.246076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246076,0.000000,0.000000,0.250000,0,0);}
.m6_c00179{transform:matrix(0.246414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246414,0.000000,0.000000,0.250000,0,0);}
.m3_c00179{transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);}
.md_c00179{transform:matrix(0.247261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247261,0.000000,0.000000,0.250000,0,0);}
.m7_c00179{transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);}
.m5_c00179{transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);}
.m0_c00179{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m9_c00179{transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);}
.mc_c00179{transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);}
.m1_c00179{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);}
.v0_c00179{vertical-align:0.000000px;}
.ls64_c00179{letter-spacing:-2.688000px;}
.ls19_c00179{letter-spacing:-2.499000px;}
.ls70_c00179{letter-spacing:-2.477580px;}
.ls11_c00179{letter-spacing:-2.331000px;}
.ls1e_c00179{letter-spacing:-2.327640px;}
.ls2a_c00179{letter-spacing:-2.234820px;}
.ls15_c00179{letter-spacing:-2.220540px;}
.ls25_c00179{letter-spacing:-2.199120px;}
.ls6c_c00179{letter-spacing:-2.042040px;}
.ls7a_c00179{letter-spacing:-2.034900px;}
.ls5c_c00179{letter-spacing:-1.934940px;}
.ls75_c00179{letter-spacing:-1.906380px;}
.ls20_c00179{letter-spacing:-1.884960px;}
.ls66_c00179{letter-spacing:-1.842120px;}
.ls97_c00179{letter-spacing:-1.785000px;}
.ls4c_c00179{letter-spacing:-1.742160px;}
.ls85_c00179{letter-spacing:-1.685040px;}
.ls76_c00179{letter-spacing:-1.656480px;}
.ls87_c00179{letter-spacing:-1.606500px;}
.ls46_c00179{letter-spacing:-1.577940px;}
.ls50_c00179{letter-spacing:-1.549380px;}
.ls8f_c00179{letter-spacing:-1.542240px;}
.ls6e_c00179{letter-spacing:-1.492260px;}
.ls33_c00179{letter-spacing:-1.470840px;}
.ls49_c00179{letter-spacing:-1.435140px;}
.ls60_c00179{letter-spacing:-1.428000px;}
.ls12_c00179{letter-spacing:-1.420860px;}
.ls57_c00179{letter-spacing:-1.406580px;}
.ls69_c00179{letter-spacing:-1.399440px;}
.ls8d_c00179{letter-spacing:-1.392300px;}
.ls2b_c00179{letter-spacing:-1.363740px;}
.ls1b_c00179{letter-spacing:-1.356600px;}
.ls34_c00179{letter-spacing:-1.349460px;}
.ls58_c00179{letter-spacing:-1.342320px;}
.ls68_c00179{letter-spacing:-1.335180px;}
.ls90_c00179{letter-spacing:-1.328040px;}
.ls2f_c00179{letter-spacing:-1.320900px;}
.ls96_c00179{letter-spacing:-1.292340px;}
.ls1f_c00179{letter-spacing:-1.228080px;}
.ls80_c00179{letter-spacing:-1.220940px;}
.ls7e_c00179{letter-spacing:-1.213800px;}
.ls95_c00179{letter-spacing:-1.206660px;}
.ls48_c00179{letter-spacing:-1.199520px;}
.ls26_c00179{letter-spacing:-1.192380px;}
.ls5e_c00179{letter-spacing:-1.185240px;}
.ls56_c00179{letter-spacing:-1.178100px;}
.ls6f_c00179{letter-spacing:-1.163820px;}
.ls3b_c00179{letter-spacing:-1.156680px;}
.ls61_c00179{letter-spacing:-1.142400px;}
.ls88_c00179{letter-spacing:-1.128120px;}
.ls35_c00179{letter-spacing:-1.120980px;}
.ls44_c00179{letter-spacing:-1.092420px;}
.ls84_c00179{letter-spacing:-1.042440px;}
.ls55_c00179{letter-spacing:-1.035300px;}
.ls42_c00179{letter-spacing:-1.028160px;}
.ls41_c00179{letter-spacing:-1.021020px;}
.ls3e_c00179{letter-spacing:-1.013880px;}
.ls37_c00179{letter-spacing:-1.006740px;}
.ls21_c00179{letter-spacing:-0.999600px;}
.ls18_c00179{letter-spacing:-0.971040px;}
.ls8a_c00179{letter-spacing:-0.963900px;}
.ls5f_c00179{letter-spacing:-0.956760px;}
.ls36_c00179{letter-spacing:-0.949620px;}
.ls8b_c00179{letter-spacing:-0.942480px;}
.ls52_c00179{letter-spacing:-0.935340px;}
.ls78_c00179{letter-spacing:-0.928200px;}
.ls2c_c00179{letter-spacing:-0.921060px;}
.ls43_c00179{letter-spacing:-0.913920px;}
.ls1d_c00179{letter-spacing:-0.906780px;}
.ls45_c00179{letter-spacing:-0.885360px;}
.ls89_c00179{letter-spacing:-0.871080px;}
.ls8c_c00179{letter-spacing:-0.856800px;}
.ls5d_c00179{letter-spacing:-0.849660px;}
.ls4f_c00179{letter-spacing:-0.821100px;}
.ls79_c00179{letter-spacing:-0.813960px;}
.ls53_c00179{letter-spacing:-0.792540px;}
.ls17_c00179{letter-spacing:-0.785400px;}
.ls5b_c00179{letter-spacing:-0.778260px;}
.ls4a_c00179{letter-spacing:-0.771120px;}
.ls74_c00179{letter-spacing:-0.763980px;}
.ls7b_c00179{letter-spacing:-0.749700px;}
.ls24_c00179{letter-spacing:-0.742560px;}
.ls54_c00179{letter-spacing:-0.735420px;}
.ls81_c00179{letter-spacing:-0.721140px;}
.ls28_c00179{letter-spacing:-0.714000px;}
.ls3c_c00179{letter-spacing:-0.706860px;}
.ls31_c00179{letter-spacing:-0.699720px;}
.ls51_c00179{letter-spacing:-0.692580px;}
.ls73_c00179{letter-spacing:-0.671160px;}
.ls6d_c00179{letter-spacing:-0.664020px;}
.ls23_c00179{letter-spacing:-0.649740px;}
.ls14_c00179{letter-spacing:-0.642600px;}
.ls2e_c00179{letter-spacing:-0.628320px;}
.ls91_c00179{letter-spacing:-0.621180px;}
.ls86_c00179{letter-spacing:-0.614040px;}
.ls7c_c00179{letter-spacing:-0.606900px;}
.ls29_c00179{letter-spacing:-0.599760px;}
.ls77_c00179{letter-spacing:-0.592620px;}
.ls32_c00179{letter-spacing:-0.585480px;}
.ls38_c00179{letter-spacing:-0.578340px;}
.ls62_c00179{letter-spacing:-0.535500px;}
.ls39_c00179{letter-spacing:-0.528360px;}
.ls40_c00179{letter-spacing:-0.514080px;}
.ls71_c00179{letter-spacing:-0.506940px;}
.ls6a_c00179{letter-spacing:-0.499800px;}
.ls4b_c00179{letter-spacing:-0.492660px;}
.ls3f_c00179{letter-spacing:-0.485520px;}
.ls13_c00179{letter-spacing:-0.478380px;}
.ls47_c00179{letter-spacing:-0.471240px;}
.ls92_c00179{letter-spacing:-0.464100px;}
.ls94_c00179{letter-spacing:-0.456960px;}
.ls67_c00179{letter-spacing:-0.449820px;}
.ls8e_c00179{letter-spacing:-0.421260px;}
.ls83_c00179{letter-spacing:-0.406980px;}
.ls82_c00179{letter-spacing:-0.399840px;}
.ls2d_c00179{letter-spacing:-0.378420px;}
.ls3a_c00179{letter-spacing:-0.371280px;}
.ls7d_c00179{letter-spacing:-0.357000px;}
.ls3d_c00179{letter-spacing:-0.335580px;}
.ls63_c00179{letter-spacing:-0.307020px;}
.ls72_c00179{letter-spacing:-0.299880px;}
.ls4d_c00179{letter-spacing:-0.292740px;}
.ls6b_c00179{letter-spacing:-0.285600px;}
.ls22_c00179{letter-spacing:-0.278460px;}
.ls30_c00179{letter-spacing:-0.271320px;}
.ls5a_c00179{letter-spacing:-0.228480px;}
.ls65_c00179{letter-spacing:-0.207060px;}
.ls4e_c00179{letter-spacing:-0.192780px;}
.ls93_c00179{letter-spacing:-0.171360px;}
.ls1c_c00179{letter-spacing:-0.128520px;}
.ls1a_c00179{letter-spacing:-0.107100px;}
.ls7f_c00179{letter-spacing:-0.099960px;}
.ls16_c00179{letter-spacing:-0.092820px;}
.ls59_c00179{letter-spacing:-0.028560px;}
.ls27_c00179{letter-spacing:0.000000px;}
.lsc_c00179{letter-spacing:0.035700px;}
.lsd_c00179{letter-spacing:0.042840px;}
.lsb_c00179{letter-spacing:0.049980px;}
.ls0_c00179{letter-spacing:0.085680px;}
.ls2_c00179{letter-spacing:0.099960px;}
.lsf_c00179{letter-spacing:0.249900px;}
.ls9_c00179{letter-spacing:0.321300px;}
.lsa_c00179{letter-spacing:0.349860px;}
.ls10_c00179{letter-spacing:0.514080px;}
.ls4_c00179{letter-spacing:0.528840px;}
.lse_c00179{letter-spacing:0.571200px;}
.ls5_c00179{letter-spacing:0.793260px;}
.ls8_c00179{letter-spacing:0.871080px;}
.ls3_c00179{letter-spacing:1.183320px;}
.ls1_c00179{letter-spacing:1.193280px;}
.ls6_c00179{letter-spacing:1.518720px;}
.ls7_c00179{letter-spacing:1.667880px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{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__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00179{word-spacing:0.000000px;}
._15_c00179{margin-left:-4.177800px;}
._4_c00179{margin-left:-2.470440px;}
._16_c00179{margin-left:-1.220940px;}
._13_c00179{width:1.470840px;}
._5_c00179{width:2.641800px;}
._2_c00179{width:3.769920px;}
._0_c00179{width:5.015160px;}
._14_c00179{width:6.326220px;}
._3_c00179{width:7.497000px;}
._19_c00179{width:8.717940px;}
._18_c00179{width:10.588620px;}
._17_c00179{width:12.209400px;}
._11_c00179{width:13.700040px;}
._1_c00179{width:14.887320px;}
._12_c00179{width:16.379160px;}
._6_c00179{width:18.885300px;}
._7_c00179{width:20.134800px;}
._9_c00179{width:21.834120px;}
._a_c00179{width:23.162160px;}
._8_c00179{width:24.304560px;}
._10_c00179{width:25.689720px;}
._e_c00179{width:26.960640px;}
._1a_c00179{width:28.945560px;}
._f_c00179{width:30.552060px;}
._b_c00179{width:32.172840px;}
._d_c00179{width:33.629400px;}
._c_c00179{width:37.142280px;}
.fc0_c00179{color:transparent;}
.fs5_c00179{font-size:51.000000px;}
.fs0_c00179{font-size:66.600000px;}
.fs2_c00179{font-size:67.800000px;}
.fs3_c00179{font-size:68.400000px;}
.fs1_c00179{font-size:71.400000px;}
.fs4_c00179{font-size:76.800000px;}
.y0_c00179{bottom:0.000000px;}
.y27_c00179{bottom:70.215015px;}
.y26_c00179{bottom:131.040015px;}
.y25_c00179{bottom:131.050365px;}
.y24_c00179{bottom:161.645265px;}
.y23_c00179{bottom:192.615015px;}
.y22_c00179{bottom:192.620115px;}
.y21_c00179{bottom:223.215015px;}
.y1f_c00179{bottom:254.532465px;}
.y20_c00179{bottom:254.535015px;}
.y1e_c00179{bottom:285.484365px;}
.y1d_c00179{bottom:316.454115px;}
.y1c_c00179{bottom:346.335015px;}
.y1b_c00179{bottom:376.935015px;}
.y1a_c00179{bottom:376.943115px;}
.y19_c00179{bottom:407.895015px;}
.y18_c00179{bottom:439.220115px;}
.y17_c00179{bottom:469.815015px;}
.y16_c00179{bottom:469.820115px;}
.y15_c00179{bottom:500.415015px;}
.y14_c00179{bottom:561.975015px;}
.y13_c00179{bottom:592.920015px;}
.y12_c00179{bottom:623.520015px;}
.y11_c00179{bottom:654.480015px;}
.y10_c00179{bottom:716.055015px;}
.yf_c00179{bottom:777.975015px;}
.ye_c00179{bottom:777.986565px;}
.yd_c00179{bottom:839.890365px;}
.yc_c00179{bottom:870.842265px;}
.ya_c00179{bottom:901.448265px;}
.yb_c00179{bottom:901.455015px;}
.y8_c00179{bottom:932.768115px;}
.y9_c00179{bottom:932.775015px;}
.y7_c00179{bottom:963.720015px;}
.y6_c00179{bottom:963.722265px;}
.y5_c00179{bottom:994.335015px;}
.y4_c00179{bottom:1055.880015px;}
.y3_c00179{bottom:1055.887365px;}
.y2_c00179{bottom:1117.095015px;}
.y1_c00179{bottom:1192.680015px;}
.h6_c00179{height:53.191406px;}
.h2_c00179{height:65.364258px;}
.h3_c00179{height:70.075195px;}
.h4_c00179{height:70.102195px;}
.h5_c00179{height:75.375000px;}
.h1_c00179{height:1263.000000px;}
.h0_c00179{height:1263.240015px;}
.w1_c00179{width:892.500000px;}
.w0_c00179{width:892.800015px;}
.x0_c00179{left:0.000000px;}
.x2a_c00179{left:122.547315px;}
.x17_c00179{left:123.785715px;}
.x1_c00179{left:125.205015px;}
.x1c_c00179{left:151.560015px;}
.x20_c00179{left:158.595015px;}
.x15_c00179{left:177.015015px;}
.x3_c00179{left:178.530015px;}
.x21_c00179{left:183.000015px;}
.x25_c00179{left:206.760015px;}
.x22_c00179{left:210.795015px;}
.x23_c00179{left:234.210015px;}
.x26_c00179{left:260.670015px;}
.x5_c00179{left:295.395015px;}
.x6_c00179{left:324.930015px;}
.x14_c00179{left:341.745015px;}
.x1d_c00179{left:350.115015px;}
.x4_c00179{left:360.915015px;}
.x1e_c00179{left:372.450015px;}
.xd_c00179{left:377.610015px;}
.x2_c00179{left:386.385015px;}
.x1f_c00179{left:389.700015px;}
.x12_c00179{left:394.665015px;}
.xe_c00179{left:403.305015px;}
.x2c_c00179{left:408.810015px;}
.x13_c00179{left:417.375015px;}
.x30_c00179{left:424.410015px;}
.xf_c00179{left:425.715015px;}
.x18_c00179{left:427.155015px;}
.x2d_c00179{left:430.035015px;}
.x9_c00179{left:431.490015px;}
.x16_c00179{left:442.905015px;}
.x19_c00179{left:451.965015px;}
.xa_c00179{left:453.435015px;}
.x2e_c00179{left:462.765015px;}
.x2f_c00179{left:518.970015px;}
.x1a_c00179{left:550.635015px;}
.x1b_c00179{left:575.805015px;}
.x7_c00179{left:580.440015px;}
.x27_c00179{left:607.710015px;}
.x10_c00179{left:631.275015px;}
.x8_c00179{left:636.450015px;}
.x11_c00179{left:656.250015px;}
.xb_c00179{left:675.915015px;}
.x2b_c00179{left:702.195015px;}
.xc_c00179{left:703.260015px;}
.x28_c00179{left:706.155015px;}
.x29_c00179{left:729.210015px;}
.x24_c00179{left:737.850015px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls64_c00179{letter-spacing:-2.389333pt;}
.ls19_c00179{letter-spacing:-2.221333pt;}
.ls70_c00179{letter-spacing:-2.202293pt;}
.ls11_c00179{letter-spacing:-2.072000pt;}
.ls1e_c00179{letter-spacing:-2.069013pt;}
.ls2a_c00179{letter-spacing:-1.986507pt;}
.ls15_c00179{letter-spacing:-1.973813pt;}
.ls25_c00179{letter-spacing:-1.954773pt;}
.ls6c_c00179{letter-spacing:-1.815147pt;}
.ls7a_c00179{letter-spacing:-1.808800pt;}
.ls5c_c00179{letter-spacing:-1.719947pt;}
.ls75_c00179{letter-spacing:-1.694560pt;}
.ls20_c00179{letter-spacing:-1.675520pt;}
.ls66_c00179{letter-spacing:-1.637440pt;}
.ls97_c00179{letter-spacing:-1.586667pt;}
.ls4c_c00179{letter-spacing:-1.548587pt;}
.ls85_c00179{letter-spacing:-1.497813pt;}
.ls76_c00179{letter-spacing:-1.472427pt;}
.ls87_c00179{letter-spacing:-1.428000pt;}
.ls46_c00179{letter-spacing:-1.402613pt;}
.ls50_c00179{letter-spacing:-1.377227pt;}
.ls8f_c00179{letter-spacing:-1.370880pt;}
.ls6e_c00179{letter-spacing:-1.326453pt;}
.ls33_c00179{letter-spacing:-1.307413pt;}
.ls49_c00179{letter-spacing:-1.275680pt;}
.ls60_c00179{letter-spacing:-1.269333pt;}
.ls12_c00179{letter-spacing:-1.262987pt;}
.ls57_c00179{letter-spacing:-1.250293pt;}
.ls69_c00179{letter-spacing:-1.243947pt;}
.ls8d_c00179{letter-spacing:-1.237600pt;}
.ls2b_c00179{letter-spacing:-1.212213pt;}
.ls1b_c00179{letter-spacing:-1.205867pt;}
.ls34_c00179{letter-spacing:-1.199520pt;}
.ls58_c00179{letter-spacing:-1.193173pt;}
.ls68_c00179{letter-spacing:-1.186827pt;}
.ls90_c00179{letter-spacing:-1.180480pt;}
.ls2f_c00179{letter-spacing:-1.174133pt;}
.ls96_c00179{letter-spacing:-1.148747pt;}
.ls1f_c00179{letter-spacing:-1.091627pt;}
.ls80_c00179{letter-spacing:-1.085280pt;}
.ls7e_c00179{letter-spacing:-1.078933pt;}
.ls95_c00179{letter-spacing:-1.072587pt;}
.ls48_c00179{letter-spacing:-1.066240pt;}
.ls26_c00179{letter-spacing:-1.059893pt;}
.ls5e_c00179{letter-spacing:-1.053547pt;}
.ls56_c00179{letter-spacing:-1.047200pt;}
.ls6f_c00179{letter-spacing:-1.034507pt;}
.ls3b_c00179{letter-spacing:-1.028160pt;}
.ls61_c00179{letter-spacing:-1.015467pt;}
.ls88_c00179{letter-spacing:-1.002773pt;}
.ls35_c00179{letter-spacing:-0.996427pt;}
.ls44_c00179{letter-spacing:-0.971040pt;}
.ls84_c00179{letter-spacing:-0.926613pt;}
.ls55_c00179{letter-spacing:-0.920267pt;}
.ls42_c00179{letter-spacing:-0.913920pt;}
.ls41_c00179{letter-spacing:-0.907573pt;}
.ls3e_c00179{letter-spacing:-0.901227pt;}
.ls37_c00179{letter-spacing:-0.894880pt;}
.ls21_c00179{letter-spacing:-0.888533pt;}
.ls18_c00179{letter-spacing:-0.863147pt;}
.ls8a_c00179{letter-spacing:-0.856800pt;}
.ls5f_c00179{letter-spacing:-0.850453pt;}
.ls36_c00179{letter-spacing:-0.844107pt;}
.ls8b_c00179{letter-spacing:-0.837760pt;}
.ls52_c00179{letter-spacing:-0.831413pt;}
.ls78_c00179{letter-spacing:-0.825067pt;}
.ls2c_c00179{letter-spacing:-0.818720pt;}
.ls43_c00179{letter-spacing:-0.812373pt;}
.ls1d_c00179{letter-spacing:-0.806027pt;}
.ls45_c00179{letter-spacing:-0.786987pt;}
.ls89_c00179{letter-spacing:-0.774293pt;}
.ls8c_c00179{letter-spacing:-0.761600pt;}
.ls5d_c00179{letter-spacing:-0.755253pt;}
.ls4f_c00179{letter-spacing:-0.729867pt;}
.ls79_c00179{letter-spacing:-0.723520pt;}
.ls53_c00179{letter-spacing:-0.704480pt;}
.ls17_c00179{letter-spacing:-0.698133pt;}
.ls5b_c00179{letter-spacing:-0.691787pt;}
.ls4a_c00179{letter-spacing:-0.685440pt;}
.ls74_c00179{letter-spacing:-0.679093pt;}
.ls7b_c00179{letter-spacing:-0.666400pt;}
.ls24_c00179{letter-spacing:-0.660053pt;}
.ls54_c00179{letter-spacing:-0.653707pt;}
.ls81_c00179{letter-spacing:-0.641013pt;}
.ls28_c00179{letter-spacing:-0.634667pt;}
.ls3c_c00179{letter-spacing:-0.628320pt;}
.ls31_c00179{letter-spacing:-0.621973pt;}
.ls51_c00179{letter-spacing:-0.615627pt;}
.ls73_c00179{letter-spacing:-0.596587pt;}
.ls6d_c00179{letter-spacing:-0.590240pt;}
.ls23_c00179{letter-spacing:-0.577547pt;}
.ls14_c00179{letter-spacing:-0.571200pt;}
.ls2e_c00179{letter-spacing:-0.558507pt;}
.ls91_c00179{letter-spacing:-0.552160pt;}
.ls86_c00179{letter-spacing:-0.545813pt;}
.ls7c_c00179{letter-spacing:-0.539467pt;}
.ls29_c00179{letter-spacing:-0.533120pt;}
.ls77_c00179{letter-spacing:-0.526773pt;}
.ls32_c00179{letter-spacing:-0.520427pt;}
.ls38_c00179{letter-spacing:-0.514080pt;}
.ls62_c00179{letter-spacing:-0.476000pt;}
.ls39_c00179{letter-spacing:-0.469653pt;}
.ls40_c00179{letter-spacing:-0.456960pt;}
.ls71_c00179{letter-spacing:-0.450613pt;}
.ls6a_c00179{letter-spacing:-0.444267pt;}
.ls4b_c00179{letter-spacing:-0.437920pt;}
.ls3f_c00179{letter-spacing:-0.431573pt;}
.ls13_c00179{letter-spacing:-0.425227pt;}
.ls47_c00179{letter-spacing:-0.418880pt;}
.ls92_c00179{letter-spacing:-0.412533pt;}
.ls94_c00179{letter-spacing:-0.406187pt;}
.ls67_c00179{letter-spacing:-0.399840pt;}
.ls8e_c00179{letter-spacing:-0.374453pt;}
.ls83_c00179{letter-spacing:-0.361760pt;}
.ls82_c00179{letter-spacing:-0.355413pt;}
.ls2d_c00179{letter-spacing:-0.336373pt;}
.ls3a_c00179{letter-spacing:-0.330027pt;}
.ls7d_c00179{letter-spacing:-0.317333pt;}
.ls3d_c00179{letter-spacing:-0.298293pt;}
.ls63_c00179{letter-spacing:-0.272907pt;}
.ls72_c00179{letter-spacing:-0.266560pt;}
.ls4d_c00179{letter-spacing:-0.260213pt;}
.ls6b_c00179{letter-spacing:-0.253867pt;}
.ls22_c00179{letter-spacing:-0.247520pt;}
.ls30_c00179{letter-spacing:-0.241173pt;}
.ls5a_c00179{letter-spacing:-0.203093pt;}
.ls65_c00179{letter-spacing:-0.184053pt;}
.ls4e_c00179{letter-spacing:-0.171360pt;}
.ls93_c00179{letter-spacing:-0.152320pt;}
.ls1c_c00179{letter-spacing:-0.114240pt;}
.ls1a_c00179{letter-spacing:-0.095200pt;}
.ls7f_c00179{letter-spacing:-0.088853pt;}
.ls16_c00179{letter-spacing:-0.082507pt;}
.ls59_c00179{letter-spacing:-0.025387pt;}
.ls27_c00179{letter-spacing:0.000000pt;}
.lsc_c00179{letter-spacing:0.031733pt;}
.lsd_c00179{letter-spacing:0.038080pt;}
.lsb_c00179{letter-spacing:0.044427pt;}
.ls0_c00179{letter-spacing:0.076160pt;}
.ls2_c00179{letter-spacing:0.088853pt;}
.lsf_c00179{letter-spacing:0.222133pt;}
.ls9_c00179{letter-spacing:0.285600pt;}
.lsa_c00179{letter-spacing:0.310987pt;}
.ls10_c00179{letter-spacing:0.456960pt;}
.ls4_c00179{letter-spacing:0.470080pt;}
.lse_c00179{letter-spacing:0.507733pt;}
.ls5_c00179{letter-spacing:0.705120pt;}
.ls8_c00179{letter-spacing:0.774293pt;}
.ls3_c00179{letter-spacing:1.051840pt;}
.ls1_c00179{letter-spacing:1.060693pt;}
.ls6_c00179{letter-spacing:1.349973pt;}
.ls7_c00179{letter-spacing:1.482560pt;}
.ws0_c00179{word-spacing:0.000000pt;}
._15_c00179{margin-left:-3.713600pt;}
._4_c00179{margin-left:-2.195947pt;}
._16_c00179{margin-left:-1.085280pt;}
._13_c00179{width:1.307413pt;}
._5_c00179{width:2.348267pt;}
._2_c00179{width:3.351040pt;}
._0_c00179{width:4.457920pt;}
._14_c00179{width:5.623307pt;}
._3_c00179{width:6.664000pt;}
._19_c00179{width:7.749280pt;}
._18_c00179{width:9.412107pt;}
._17_c00179{width:10.852800pt;}
._11_c00179{width:12.177813pt;}
._1_c00179{width:13.233173pt;}
._12_c00179{width:14.559253pt;}
._6_c00179{width:16.786933pt;}
._7_c00179{width:17.897600pt;}
._9_c00179{width:19.408107pt;}
._a_c00179{width:20.588587pt;}
._8_c00179{width:21.604053pt;}
._10_c00179{width:22.835307pt;}
._e_c00179{width:23.965013pt;}
._1a_c00179{width:25.729387pt;}
._f_c00179{width:27.157387pt;}
._b_c00179{width:28.598080pt;}
._d_c00179{width:29.892800pt;}
._c_c00179{width:33.015360pt;}
.fs5_c00179{font-size:45.333333pt;}
.fs0_c00179{font-size:59.200000pt;}
.fs2_c00179{font-size:60.266667pt;}
.fs3_c00179{font-size:60.800000pt;}
.fs1_c00179{font-size:63.466667pt;}
.fs4_c00179{font-size:68.266667pt;}
.y0_c00179{bottom:0.000000pt;}
.y27_c00179{bottom:62.413347pt;}
.y26_c00179{bottom:116.480013pt;}
.y25_c00179{bottom:116.489213pt;}
.y24_c00179{bottom:143.684680pt;}
.y23_c00179{bottom:171.213347pt;}
.y22_c00179{bottom:171.217880pt;}
.y21_c00179{bottom:198.413347pt;}
.y1f_c00179{bottom:226.251080pt;}
.y20_c00179{bottom:226.253347pt;}
.y1e_c00179{bottom:253.763880pt;}
.y1d_c00179{bottom:281.292547pt;}
.y1c_c00179{bottom:307.853347pt;}
.y1b_c00179{bottom:335.053347pt;}
.y1a_c00179{bottom:335.060547pt;}
.y19_c00179{bottom:362.573347pt;}
.y18_c00179{bottom:390.417880pt;}
.y17_c00179{bottom:417.613347pt;}
.y16_c00179{bottom:417.617880pt;}
.y15_c00179{bottom:444.813347pt;}
.y14_c00179{bottom:499.533347pt;}
.y13_c00179{bottom:527.040013pt;}
.y12_c00179{bottom:554.240013pt;}
.y11_c00179{bottom:581.760013pt;}
.y10_c00179{bottom:636.493347pt;}
.yf_c00179{bottom:691.533347pt;}
.ye_c00179{bottom:691.543613pt;}
.yd_c00179{bottom:746.569213pt;}
.yc_c00179{bottom:774.082013pt;}
.ya_c00179{bottom:801.287347pt;}
.yb_c00179{bottom:801.293347pt;}
.y8_c00179{bottom:829.127213pt;}
.y9_c00179{bottom:829.133347pt;}
.y7_c00179{bottom:856.640013pt;}
.y6_c00179{bottom:856.642013pt;}
.y5_c00179{bottom:883.853347pt;}
.y4_c00179{bottom:938.560013pt;}
.y3_c00179{bottom:938.566547pt;}
.y2_c00179{bottom:992.973347pt;}
.y1_c00179{bottom:1060.160013pt;}
.h6_c00179{height:47.281250pt;}
.h2_c00179{height:58.101562pt;}
.h3_c00179{height:62.289062pt;}
.h4_c00179{height:62.313063pt;}
.h5_c00179{height:67.000000pt;}
.h1_c00179{height:1122.666667pt;}
.h0_c00179{height:1122.880013pt;}
.w1_c00179{width:793.333333pt;}
.w0_c00179{width:793.600013pt;}
.x0_c00179{left:0.000000pt;}
.x2a_c00179{left:108.930947pt;}
.x17_c00179{left:110.031747pt;}
.x1_c00179{left:111.293347pt;}
.x1c_c00179{left:134.720013pt;}
.x20_c00179{left:140.973347pt;}
.x15_c00179{left:157.346680pt;}
.x3_c00179{left:158.693347pt;}
.x21_c00179{left:162.666680pt;}
.x25_c00179{left:183.786680pt;}
.x22_c00179{left:187.373347pt;}
.x23_c00179{left:208.186680pt;}
.x26_c00179{left:231.706680pt;}
.x5_c00179{left:262.573347pt;}
.x6_c00179{left:288.826680pt;}
.x14_c00179{left:303.773347pt;}
.x1d_c00179{left:311.213347pt;}
.x4_c00179{left:320.813347pt;}
.x1e_c00179{left:331.066680pt;}
.xd_c00179{left:335.653347pt;}
.x2_c00179{left:343.453347pt;}
.x1f_c00179{left:346.400013pt;}
.x12_c00179{left:350.813347pt;}
.xe_c00179{left:358.493347pt;}
.x2c_c00179{left:363.386680pt;}
.x13_c00179{left:371.000013pt;}
.x30_c00179{left:377.253347pt;}
.xf_c00179{left:378.413347pt;}
.x18_c00179{left:379.693347pt;}
.x2d_c00179{left:382.253347pt;}
.x9_c00179{left:383.546680pt;}
.x16_c00179{left:393.693347pt;}
.x19_c00179{left:401.746680pt;}
.xa_c00179{left:403.053347pt;}
.x2e_c00179{left:411.346680pt;}
.x2f_c00179{left:461.306680pt;}
.x1a_c00179{left:489.453347pt;}
.x1b_c00179{left:511.826680pt;}
.x7_c00179{left:515.946680pt;}
.x27_c00179{left:540.186680pt;}
.x10_c00179{left:561.133347pt;}
.x8_c00179{left:565.733347pt;}
.x11_c00179{left:583.333347pt;}
.xb_c00179{left:600.813347pt;}
.x2b_c00179{left:624.173347pt;}
.xc_c00179{left:625.120013pt;}
.x28_c00179{left:627.693347pt;}
.x29_c00179{left:648.186680pt;}
.x24_c00179{left:655.866680pt;}
}





/* 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_c00180 {
    display:none;
  }
  .loading-indicator_c00180.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00180 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_c00180 { 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_c00180" -> "#page-container .classname_c00180")
 */
.pf_c00180 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00180 { /* 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_c00180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00180 { /* 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_c00180 { /* 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_c00180 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00180 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00180 {overflow:visible;}
  }
}
.c_c00180 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00180 { /* 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_c00180:after { /* webkit #35443 */
  content: '';
}
.t_c00180:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00180 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 */
}
.__c00180 { /* 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_c00180 { /* info for Javascript */
  display:none;
}
.l_c00180 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00180 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00180 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00180: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_c00180 {
    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_c00180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00180.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_c00180 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00180;src:url('chunks/assets/font_b6aebbe535b1cf7b2757ba5b.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.284668;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_c00180;src:url('chunks/assets/font_e037972ddb811ad4e3bb871f.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.284180;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;}
.m5_c00180{transform:matrix(0.175109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175109,0.000000,0.000000,0.250000,0,0);}
.m7_c00180{transform:matrix(0.217481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217481,0.000000,0.000000,0.250000,0,0);}
.m3_c00180{transform:matrix(0.222496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222496,0.000000,0.000000,0.250000,0,0);}
.mb_c00180{transform:matrix(0.224774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224774,0.000000,0.000000,0.250000,0,0);}
.m6_c00180{transform:matrix(0.227576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227576,0.000000,0.000000,0.250000,0,0);}
.m2_c00180{transform:matrix(0.228058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228058,0.000000,0.000000,0.250000,0,0);}
.m8_c00180{transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);}
.m4_c00180{transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);}
.m0_c00180{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.mc_c00180{transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);}
.md_c00180{transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);}
.ma_c00180{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m9_c00180{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m1_c00180{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);}
.v0_c00180{vertical-align:0.000000px;}
.ls55_c00180{letter-spacing:-2.457000px;}
.ls64_c00180{letter-spacing:-2.415000px;}
.ls50_c00180{letter-spacing:-2.386800px;}
.ls79_c00180{letter-spacing:-2.365740px;}
.ls35_c00180{letter-spacing:-2.331000px;}
.ls7a_c00180{letter-spacing:-2.035800px;}
.ls81_c00180{letter-spacing:-1.965600px;}
.ls4a_c00180{letter-spacing:-1.930500px;}
.ls78_c00180{letter-spacing:-1.642680px;}
.ls68_c00180{letter-spacing:-1.635660px;}
.ls6b_c00180{letter-spacing:-1.593540px;}
.ls7e_c00180{letter-spacing:-1.551420px;}
.ls6e_c00180{letter-spacing:-1.537380px;}
.ls67_c00180{letter-spacing:-1.333800px;}
.ls85_c00180{letter-spacing:-1.270620px;}
.ls8a_c00180{letter-spacing:-1.251300px;}
.ls75_c00180{letter-spacing:-1.151280px;}
.ls72_c00180{letter-spacing:-1.130220px;}
.ls4d_c00180{letter-spacing:-0.947700px;}
.ls7b_c00180{letter-spacing:-0.933660px;}
.ls80_c00180{letter-spacing:-0.856440px;}
.ls77_c00180{letter-spacing:-0.821340px;}
.ls47_c00180{letter-spacing:-0.772200px;}
.ls37_c00180{letter-spacing:-0.765180px;}
.ls63_c00180{letter-spacing:-0.758160px;}
.ls5e_c00180{letter-spacing:-0.744120px;}
.ls5b_c00180{letter-spacing:-0.716040px;}
.ls84_c00180{letter-spacing:-0.709020px;}
.ls7c_c00180{letter-spacing:-0.680940px;}
.ls52_c00180{letter-spacing:-0.631800px;}
.ls5d_c00180{letter-spacing:-0.610740px;}
.ls54_c00180{letter-spacing:-0.596700px;}
.ls3b_c00180{letter-spacing:-0.568620px;}
.ls76_c00180{letter-spacing:-0.526500px;}
.ls44_c00180{letter-spacing:-0.512460px;}
.ls59_c00180{letter-spacing:-0.505440px;}
.ls39_c00180{letter-spacing:-0.491400px;}
.ls60_c00180{letter-spacing:-0.484380px;}
.ls41_c00180{letter-spacing:-0.470340px;}
.ls49_c00180{letter-spacing:-0.456300px;}
.ls65_c00180{letter-spacing:-0.442260px;}
.ls87_c00180{letter-spacing:-0.421200px;}
.ls6a_c00180{letter-spacing:-0.407160px;}
.ls45_c00180{letter-spacing:-0.400140px;}
.ls6c_c00180{letter-spacing:-0.393120px;}
.ls62_c00180{letter-spacing:-0.386100px;}
.ls51_c00180{letter-spacing:-0.351000px;}
.ls4c_c00180{letter-spacing:-0.343980px;}
.ls42_c00180{letter-spacing:-0.336960px;}
.ls36_c00180{letter-spacing:-0.329940px;}
.ls43_c00180{letter-spacing:-0.308880px;}
.ls70_c00180{letter-spacing:-0.301860px;}
.ls46_c00180{letter-spacing:-0.273780px;}
.ls4f_c00180{letter-spacing:-0.266760px;}
.ls71_c00180{letter-spacing:-0.245700px;}
.ls53_c00180{letter-spacing:-0.238680px;}
.ls74_c00180{letter-spacing:-0.224640px;}
.ls86_c00180{letter-spacing:-0.217620px;}
.ls48_c00180{letter-spacing:-0.210600px;}
.ls5f_c00180{letter-spacing:-0.203580px;}
.ls7f_c00180{letter-spacing:-0.196560px;}
.ls5c_c00180{letter-spacing:-0.175500px;}
.ls88_c00180{letter-spacing:-0.161460px;}
.ls38_c00180{letter-spacing:-0.147420px;}
.ls3f_c00180{letter-spacing:-0.140400px;}
.ls40_c00180{letter-spacing:-0.112320px;}
.ls57_c00180{letter-spacing:-0.077220px;}
.ls3e_c00180{letter-spacing:-0.070200px;}
.ls69_c00180{letter-spacing:-0.063180px;}
.ls58_c00180{letter-spacing:-0.056160px;}
.ls3c_c00180{letter-spacing:-0.049140px;}
.ls6f_c00180{letter-spacing:-0.042120px;}
.ls6d_c00180{letter-spacing:-0.021060px;}
.ls4e_c00180{letter-spacing:-0.014040px;}
.ls3a_c00180{letter-spacing:0.000000px;}
.ls25_c00180{letter-spacing:0.014040px;}
.ls14_c00180{letter-spacing:0.021060px;}
.ls3d_c00180{letter-spacing:0.028080px;}
.ls15_c00180{letter-spacing:0.042120px;}
.ls32_c00180{letter-spacing:0.070200px;}
.lse_c00180{letter-spacing:0.084240px;}
.ls11_c00180{letter-spacing:0.105300px;}
.ls10_c00180{letter-spacing:0.119340px;}
.ls1c_c00180{letter-spacing:0.140400px;}
.ls1a_c00180{letter-spacing:0.147420px;}
.ls1_c00180{letter-spacing:0.161460px;}
.ls1b_c00180{letter-spacing:0.175500px;}
.lsb_c00180{letter-spacing:0.182520px;}
.ls2_c00180{letter-spacing:0.196560px;}
.ls17_c00180{letter-spacing:0.210600px;}
.ls2f_c00180{letter-spacing:0.227700px;}
.ls21_c00180{letter-spacing:0.231660px;}
.lsf_c00180{letter-spacing:0.238680px;}
.ls1e_c00180{letter-spacing:0.280800px;}
.ls89_c00180{letter-spacing:0.294840px;}
.ls8_c00180{letter-spacing:0.301860px;}
.ls26_c00180{letter-spacing:0.322920px;}
.ls16_c00180{letter-spacing:0.336960px;}
.ls5_c00180{letter-spacing:0.351000px;}
.ls7_c00180{letter-spacing:0.365040px;}
.ls4_c00180{letter-spacing:0.372060px;}
.ls13_c00180{letter-spacing:0.386100px;}
.ls12_c00180{letter-spacing:0.400140px;}
.ls1d_c00180{letter-spacing:0.435240px;}
.ls3_c00180{letter-spacing:0.456300px;}
.ls0_c00180{letter-spacing:0.505440px;}
.lsd_c00180{letter-spacing:0.517500px;}
.ls24_c00180{letter-spacing:0.571200px;}
.ls19_c00180{letter-spacing:0.610740px;}
.ls28_c00180{letter-spacing:0.627900px;}
.ls20_c00180{letter-spacing:0.631800px;}
.ls18_c00180{letter-spacing:0.652860px;}
.ls56_c00180{letter-spacing:0.655500px;}
.ls22_c00180{letter-spacing:0.662400px;}
.ls7d_c00180{letter-spacing:0.709020px;}
.ls31_c00180{letter-spacing:0.710700px;}
.ls30_c00180{letter-spacing:0.738300px;}
.ls34_c00180{letter-spacing:0.758160px;}
.ls4b_c00180{letter-spacing:0.765180px;}
.ls2d_c00180{letter-spacing:0.772200px;}
.ls27_c00180{letter-spacing:0.807300px;}
.ls2b_c00180{letter-spacing:0.877500px;}
.ls2c_c00180{letter-spacing:0.912600px;}
.ls1f_c00180{letter-spacing:0.933660px;}
.ls2e_c00180{letter-spacing:0.945300px;}
.ls9_c00180{letter-spacing:0.952200px;}
.ls61_c00180{letter-spacing:0.972900px;}
.ls33_c00180{letter-spacing:0.989820px;}
.ls83_c00180{letter-spacing:1.260240px;}
.ls73_c00180{letter-spacing:1.262700px;}
.lsc_c00180{letter-spacing:1.263600px;}
.ls82_c00180{letter-spacing:1.305720px;}
.ls6_c00180{letter-spacing:1.425060px;}
.ls5a_c00180{letter-spacing:1.442100px;}
.lsa_c00180{letter-spacing:1.455900px;}
.ls2a_c00180{letter-spacing:1.538700px;}
.ls23_c00180{letter-spacing:1.613640px;}
.ls29_c00180{letter-spacing:1.669800px;}
.ls66_c00180{letter-spacing:1.690500px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{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__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00180{word-spacing:-17.142840px;}
.ws4_c00180{word-spacing:-17.107740px;}
.ws7_c00180{word-spacing:0.000000px;}
.ws6_c00180{word-spacing:11.941200px;}
.ws3_c00180{word-spacing:121.740840px;}
.ws2_c00180{word-spacing:124.380360px;}
.ws1_c00180{word-spacing:125.096400px;}
.ws0_c00180{word-spacing:126.500400px;}
._14_c00180{margin-left:-19.425600px;}
._12_c00180{margin-left:-16.950480px;}
._10_c00180{margin-left:-14.987700px;}
._11_c00180{margin-left:-13.541580px;}
._13_c00180{margin-left:-11.602800px;}
._d_c00180{margin-left:-2.808000px;}
._c_c00180{margin-left:-1.586520px;}
._e_c00180{width:1.109160px;}
._8_c00180{width:2.632500px;}
._f_c00180{width:4.045140px;}
._9_c00180{width:5.371980px;}
._16_c00180{width:6.633900px;}
._18_c00180{width:7.687500px;}
._15_c00180{width:8.941800px;}
._6_c00180{width:10.094760px;}
._17_c00180{width:11.126700px;}
._4_c00180{width:12.144600px;}
._7_c00180{width:13.667940px;}
._5_c00180{width:14.861340px;}
._a_c00180{width:16.425240px;}
._b_c00180{width:17.809740px;}
._1_c00180{width:19.164600px;}
._2_c00180{width:21.562440px;}
._3_c00180{width:23.180040px;}
._0_c00180{width:25.103520px;}
.fc0_c00180{color:transparent;}
.fs5_c00180{font-size:58.200000px;}
.fs0_c00180{font-size:66.600000px;}
.fs2_c00180{font-size:69.000000px;}
.fs1_c00180{font-size:70.200000px;}
.fs4_c00180{font-size:70.800000px;}
.fs3_c00180{font-size:71.400000px;}
.y0_c00180{bottom:0.000000px;}
.y21_c00180{bottom:70.920006px;}
.y20_c00180{bottom:141.499356px;}
.y1f_c00180{bottom:172.440006px;}
.y1e_c00180{bottom:234.015006px;}
.y1d_c00180{bottom:264.615006px;}
.y1b_c00180{bottom:294.839706px;}
.y1c_c00180{bottom:294.840006px;}
.y1a_c00180{bottom:326.535006px;}
.y19_c00180{bottom:357.840006px;}
.y18_c00180{bottom:405.720006px;}
.y17_c00180{bottom:405.720606px;}
.y16_c00180{bottom:466.935006px;}
.y15_c00180{bottom:498.255006px;}
.y14_c00180{bottom:559.808706px;}
.y13_c00180{bottom:591.855006px;}
.y12_c00180{bottom:623.880006px;}
.y11_c00180{bottom:623.882256px;}
.y10_c00180{bottom:655.560006px;}
.yf_c00180{bottom:655.568706px;}
.ye_c00180{bottom:687.615006px;}
.yd_c00180{bottom:718.560006px;}
.yc_c00180{bottom:749.535006px;}
.ya_c00180{bottom:780.467556px;}
.yb_c00180{bottom:780.480006px;}
.y9_c00180{bottom:811.443306px;}
.y8_c00180{bottom:842.770056px;}
.y7_c00180{bottom:905.059956px;}
.y6_c00180{bottom:967.678356px;}
.y5_c00180{bottom:997.206756px;}
.y4_c00180{bottom:1059.123156px;}
.y3_c00180{bottom:1088.993256px;}
.y2_c00180{bottom:1120.320006px;}
.y1_c00180{bottom:1196.640006px;}
.h9_c00180{height:57.120117px;}
.h2_c00180{height:65.364258px;}
.h5_c00180{height:67.686035px;}
.h6_c00180{height:67.719727px;}
.h3_c00180{height:68.897461px;}
.h4_c00180{height:68.930461px;}
.h8_c00180{height:69.486328px;}
.h7_c00180{height:70.040332px;}
.h1_c00180{height:1263.000000px;}
.h0_c00180{height:1263.240006px;}
.w1_c00180{width:892.500000px;}
.w0_c00180{width:892.799998px;}
.x0_c00180{left:0.000000px;}
.x2e_c00180{left:116.865599px;}
.xe_c00180{left:118.722598px;}
.x6_c00180{left:119.757299px;}
.x4_c00180{left:121.172098px;}
.x2_c00180{left:123.314999px;}
.x1_c00180{left:124.844999px;}
.x19_c00180{left:165.494998px;}
.x2d_c00180{left:170.444998px;}
.x1d_c00180{left:171.653548px;}
.xd_c00180{left:172.724998px;}
.x5_c00180{left:174.056999px;}
.x3_c00180{left:175.227148px;}
.x25_c00180{left:183.449998px;}
.x26_c00180{left:204.374998px;}
.x1a_c00180{left:208.184998px;}
.x17_c00180{left:219.599998px;}
.x24_c00180{left:225.524998px;}
.x1b_c00180{left:233.444999px;}
.x14_c00180{left:251.759998px;}
.x1c_c00180{left:262.544999px;}
.x15_c00180{left:275.624999px;}
.x2b_c00180{left:286.394999px;}
.x2c_c00180{left:307.709999px;}
.x16_c00180{left:311.204998px;}
.x22_c00180{left:323.249999px;}
.xf_c00180{left:351.119999px;}
.x23_c00180{left:354.809999px;}
.x1e_c00180{left:366.284999px;}
.x10_c00180{left:374.699999px;}
.x1f_c00180{left:394.364999px;}
.x11_c00180{left:408.764998px;}
.x2f_c00180{left:421.769998px;}
.x27_c00180{left:457.409999px;}
.x28_c00180{left:491.534998px;}
.x29_c00180{left:509.204998px;}
.x2a_c00180{left:538.769998px;}
.x18_c00180{left:564.959998px;}
.x9_c00180{left:609.314999px;}
.x7_c00180{left:621.914999px;}
.xa_c00180{left:628.784999px;}
.x20_c00180{left:638.084998px;}
.x8_c00180{left:643.229999px;}
.xb_c00180{left:656.129999px;}
.x21_c00180{left:666.164999px;}
.x12_c00180{left:674.324998px;}
.xc_c00180{left:676.859998px;}
.x13_c00180{left:695.219998px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls55_c00180{letter-spacing:-2.184000pt;}
.ls64_c00180{letter-spacing:-2.146667pt;}
.ls50_c00180{letter-spacing:-2.121600pt;}
.ls79_c00180{letter-spacing:-2.102880pt;}
.ls35_c00180{letter-spacing:-2.072000pt;}
.ls7a_c00180{letter-spacing:-1.809600pt;}
.ls81_c00180{letter-spacing:-1.747200pt;}
.ls4a_c00180{letter-spacing:-1.716000pt;}
.ls78_c00180{letter-spacing:-1.460160pt;}
.ls68_c00180{letter-spacing:-1.453920pt;}
.ls6b_c00180{letter-spacing:-1.416480pt;}
.ls7e_c00180{letter-spacing:-1.379040pt;}
.ls6e_c00180{letter-spacing:-1.366560pt;}
.ls67_c00180{letter-spacing:-1.185600pt;}
.ls85_c00180{letter-spacing:-1.129440pt;}
.ls8a_c00180{letter-spacing:-1.112267pt;}
.ls75_c00180{letter-spacing:-1.023360pt;}
.ls72_c00180{letter-spacing:-1.004640pt;}
.ls4d_c00180{letter-spacing:-0.842400pt;}
.ls7b_c00180{letter-spacing:-0.829920pt;}
.ls80_c00180{letter-spacing:-0.761280pt;}
.ls77_c00180{letter-spacing:-0.730080pt;}
.ls47_c00180{letter-spacing:-0.686400pt;}
.ls37_c00180{letter-spacing:-0.680160pt;}
.ls63_c00180{letter-spacing:-0.673920pt;}
.ls5e_c00180{letter-spacing:-0.661440pt;}
.ls5b_c00180{letter-spacing:-0.636480pt;}
.ls84_c00180{letter-spacing:-0.630240pt;}
.ls7c_c00180{letter-spacing:-0.605280pt;}
.ls52_c00180{letter-spacing:-0.561600pt;}
.ls5d_c00180{letter-spacing:-0.542880pt;}
.ls54_c00180{letter-spacing:-0.530400pt;}
.ls3b_c00180{letter-spacing:-0.505440pt;}
.ls76_c00180{letter-spacing:-0.468000pt;}
.ls44_c00180{letter-spacing:-0.455520pt;}
.ls59_c00180{letter-spacing:-0.449280pt;}
.ls39_c00180{letter-spacing:-0.436800pt;}
.ls60_c00180{letter-spacing:-0.430560pt;}
.ls41_c00180{letter-spacing:-0.418080pt;}
.ls49_c00180{letter-spacing:-0.405600pt;}
.ls65_c00180{letter-spacing:-0.393120pt;}
.ls87_c00180{letter-spacing:-0.374400pt;}
.ls6a_c00180{letter-spacing:-0.361920pt;}
.ls45_c00180{letter-spacing:-0.355680pt;}
.ls6c_c00180{letter-spacing:-0.349440pt;}
.ls62_c00180{letter-spacing:-0.343200pt;}
.ls51_c00180{letter-spacing:-0.312000pt;}
.ls4c_c00180{letter-spacing:-0.305760pt;}
.ls42_c00180{letter-spacing:-0.299520pt;}
.ls36_c00180{letter-spacing:-0.293280pt;}
.ls43_c00180{letter-spacing:-0.274560pt;}
.ls70_c00180{letter-spacing:-0.268320pt;}
.ls46_c00180{letter-spacing:-0.243360pt;}
.ls4f_c00180{letter-spacing:-0.237120pt;}
.ls71_c00180{letter-spacing:-0.218400pt;}
.ls53_c00180{letter-spacing:-0.212160pt;}
.ls74_c00180{letter-spacing:-0.199680pt;}
.ls86_c00180{letter-spacing:-0.193440pt;}
.ls48_c00180{letter-spacing:-0.187200pt;}
.ls5f_c00180{letter-spacing:-0.180960pt;}
.ls7f_c00180{letter-spacing:-0.174720pt;}
.ls5c_c00180{letter-spacing:-0.156000pt;}
.ls88_c00180{letter-spacing:-0.143520pt;}
.ls38_c00180{letter-spacing:-0.131040pt;}
.ls3f_c00180{letter-spacing:-0.124800pt;}
.ls40_c00180{letter-spacing:-0.099840pt;}
.ls57_c00180{letter-spacing:-0.068640pt;}
.ls3e_c00180{letter-spacing:-0.062400pt;}
.ls69_c00180{letter-spacing:-0.056160pt;}
.ls58_c00180{letter-spacing:-0.049920pt;}
.ls3c_c00180{letter-spacing:-0.043680pt;}
.ls6f_c00180{letter-spacing:-0.037440pt;}
.ls6d_c00180{letter-spacing:-0.018720pt;}
.ls4e_c00180{letter-spacing:-0.012480pt;}
.ls3a_c00180{letter-spacing:0.000000pt;}
.ls25_c00180{letter-spacing:0.012480pt;}
.ls14_c00180{letter-spacing:0.018720pt;}
.ls3d_c00180{letter-spacing:0.024960pt;}
.ls15_c00180{letter-spacing:0.037440pt;}
.ls32_c00180{letter-spacing:0.062400pt;}
.lse_c00180{letter-spacing:0.074880pt;}
.ls11_c00180{letter-spacing:0.093600pt;}
.ls10_c00180{letter-spacing:0.106080pt;}
.ls1c_c00180{letter-spacing:0.124800pt;}
.ls1a_c00180{letter-spacing:0.131040pt;}
.ls1_c00180{letter-spacing:0.143520pt;}
.ls1b_c00180{letter-spacing:0.156000pt;}
.lsb_c00180{letter-spacing:0.162240pt;}
.ls2_c00180{letter-spacing:0.174720pt;}
.ls17_c00180{letter-spacing:0.187200pt;}
.ls2f_c00180{letter-spacing:0.202400pt;}
.ls21_c00180{letter-spacing:0.205920pt;}
.lsf_c00180{letter-spacing:0.212160pt;}
.ls1e_c00180{letter-spacing:0.249600pt;}
.ls89_c00180{letter-spacing:0.262080pt;}
.ls8_c00180{letter-spacing:0.268320pt;}
.ls26_c00180{letter-spacing:0.287040pt;}
.ls16_c00180{letter-spacing:0.299520pt;}
.ls5_c00180{letter-spacing:0.312000pt;}
.ls7_c00180{letter-spacing:0.324480pt;}
.ls4_c00180{letter-spacing:0.330720pt;}
.ls13_c00180{letter-spacing:0.343200pt;}
.ls12_c00180{letter-spacing:0.355680pt;}
.ls1d_c00180{letter-spacing:0.386880pt;}
.ls3_c00180{letter-spacing:0.405600pt;}
.ls0_c00180{letter-spacing:0.449280pt;}
.lsd_c00180{letter-spacing:0.460000pt;}
.ls24_c00180{letter-spacing:0.507733pt;}
.ls19_c00180{letter-spacing:0.542880pt;}
.ls28_c00180{letter-spacing:0.558133pt;}
.ls20_c00180{letter-spacing:0.561600pt;}
.ls18_c00180{letter-spacing:0.580320pt;}
.ls56_c00180{letter-spacing:0.582667pt;}
.ls22_c00180{letter-spacing:0.588800pt;}
.ls7d_c00180{letter-spacing:0.630240pt;}
.ls31_c00180{letter-spacing:0.631733pt;}
.ls30_c00180{letter-spacing:0.656267pt;}
.ls34_c00180{letter-spacing:0.673920pt;}
.ls4b_c00180{letter-spacing:0.680160pt;}
.ls2d_c00180{letter-spacing:0.686400pt;}
.ls27_c00180{letter-spacing:0.717600pt;}
.ls2b_c00180{letter-spacing:0.780000pt;}
.ls2c_c00180{letter-spacing:0.811200pt;}
.ls1f_c00180{letter-spacing:0.829920pt;}
.ls2e_c00180{letter-spacing:0.840267pt;}
.ls9_c00180{letter-spacing:0.846400pt;}
.ls61_c00180{letter-spacing:0.864800pt;}
.ls33_c00180{letter-spacing:0.879840pt;}
.ls83_c00180{letter-spacing:1.120213pt;}
.ls73_c00180{letter-spacing:1.122400pt;}
.lsc_c00180{letter-spacing:1.123200pt;}
.ls82_c00180{letter-spacing:1.160640pt;}
.ls6_c00180{letter-spacing:1.266720pt;}
.ls5a_c00180{letter-spacing:1.281867pt;}
.lsa_c00180{letter-spacing:1.294133pt;}
.ls2a_c00180{letter-spacing:1.367733pt;}
.ls23_c00180{letter-spacing:1.434347pt;}
.ls29_c00180{letter-spacing:1.484267pt;}
.ls66_c00180{letter-spacing:1.502667pt;}
.ws5_c00180{word-spacing:-15.238080pt;}
.ws4_c00180{word-spacing:-15.206880pt;}
.ws7_c00180{word-spacing:0.000000pt;}
.ws6_c00180{word-spacing:10.614400pt;}
.ws3_c00180{word-spacing:108.214080pt;}
.ws2_c00180{word-spacing:110.560320pt;}
.ws1_c00180{word-spacing:111.196800pt;}
.ws0_c00180{word-spacing:112.444800pt;}
._14_c00180{margin-left:-17.267200pt;}
._12_c00180{margin-left:-15.067093pt;}
._10_c00180{margin-left:-13.322400pt;}
._11_c00180{margin-left:-12.036960pt;}
._13_c00180{margin-left:-10.313600pt;}
._d_c00180{margin-left:-2.496000pt;}
._c_c00180{margin-left:-1.410240pt;}
._e_c00180{width:0.985920pt;}
._8_c00180{width:2.340000pt;}
._f_c00180{width:3.595680pt;}
._9_c00180{width:4.775093pt;}
._16_c00180{width:5.896800pt;}
._18_c00180{width:6.833333pt;}
._15_c00180{width:7.948267pt;}
._6_c00180{width:8.973120pt;}
._17_c00180{width:9.890400pt;}
._4_c00180{width:10.795200pt;}
._7_c00180{width:12.149280pt;}
._5_c00180{width:13.210080pt;}
._a_c00180{width:14.600213pt;}
._b_c00180{width:15.830880pt;}
._1_c00180{width:17.035200pt;}
._2_c00180{width:19.166613pt;}
._3_c00180{width:20.604480pt;}
._0_c00180{width:22.314240pt;}
.fs5_c00180{font-size:51.733333pt;}
.fs0_c00180{font-size:59.200000pt;}
.fs2_c00180{font-size:61.333333pt;}
.fs1_c00180{font-size:62.400000pt;}
.fs4_c00180{font-size:62.933333pt;}
.fs3_c00180{font-size:63.466667pt;}
.y0_c00180{bottom:0.000000pt;}
.y21_c00180{bottom:63.040005pt;}
.y20_c00180{bottom:125.777205pt;}
.y1f_c00180{bottom:153.280005pt;}
.y1e_c00180{bottom:208.013339pt;}
.y1d_c00180{bottom:235.213339pt;}
.y1b_c00180{bottom:262.079739pt;}
.y1c_c00180{bottom:262.080005pt;}
.y1a_c00180{bottom:290.253339pt;}
.y19_c00180{bottom:318.080005pt;}
.y18_c00180{bottom:360.640005pt;}
.y17_c00180{bottom:360.640539pt;}
.y16_c00180{bottom:415.053339pt;}
.y15_c00180{bottom:442.893339pt;}
.y14_c00180{bottom:497.607739pt;}
.y13_c00180{bottom:526.093339pt;}
.y12_c00180{bottom:554.560005pt;}
.y11_c00180{bottom:554.562005pt;}
.y10_c00180{bottom:582.720005pt;}
.yf_c00180{bottom:582.727739pt;}
.ye_c00180{bottom:611.213339pt;}
.yd_c00180{bottom:638.720005pt;}
.yc_c00180{bottom:666.253339pt;}
.ya_c00180{bottom:693.748939pt;}
.yb_c00180{bottom:693.760005pt;}
.y9_c00180{bottom:721.282939pt;}
.y8_c00180{bottom:749.128939pt;}
.y7_c00180{bottom:804.497739pt;}
.y6_c00180{bottom:860.158539pt;}
.y5_c00180{bottom:886.406005pt;}
.y4_c00180{bottom:941.442805pt;}
.y3_c00180{bottom:967.994005pt;}
.y2_c00180{bottom:995.840005pt;}
.y1_c00180{bottom:1063.680005pt;}
.h9_c00180{height:50.773437pt;}
.h2_c00180{height:58.101562pt;}
.h5_c00180{height:60.165365pt;}
.h6_c00180{height:60.195312pt;}
.h3_c00180{height:61.242187pt;}
.h4_c00180{height:61.271521pt;}
.h8_c00180{height:61.765625pt;}
.h7_c00180{height:62.258073pt;}
.h1_c00180{height:1122.666667pt;}
.h0_c00180{height:1122.880005pt;}
.w1_c00180{width:793.333333pt;}
.w0_c00180{width:793.599999pt;}
.x0_c00180{left:0.000000pt;}
.x2e_c00180{left:103.880532pt;}
.xe_c00180{left:105.531199pt;}
.x6_c00180{left:106.450932pt;}
.x4_c00180{left:107.708532pt;}
.x2_c00180{left:109.613332pt;}
.x1_c00180{left:110.973332pt;}
.x19_c00180{left:147.106665pt;}
.x2d_c00180{left:151.506665pt;}
.x1d_c00180{left:152.580932pt;}
.xd_c00180{left:153.533332pt;}
.x5_c00180{left:154.717332pt;}
.x3_c00180{left:155.757465pt;}
.x25_c00180{left:163.066665pt;}
.x26_c00180{left:181.666665pt;}
.x1a_c00180{left:185.053332pt;}
.x17_c00180{left:195.199999pt;}
.x24_c00180{left:200.466665pt;}
.x1b_c00180{left:207.506665pt;}
.x14_c00180{left:223.786665pt;}
.x1c_c00180{left:233.373332pt;}
.x15_c00180{left:244.999999pt;}
.x2b_c00180{left:254.573332pt;}
.x2c_c00180{left:273.519999pt;}
.x16_c00180{left:276.626665pt;}
.x22_c00180{left:287.333332pt;}
.xf_c00180{left:312.106665pt;}
.x23_c00180{left:315.386665pt;}
.x1e_c00180{left:325.586665pt;}
.x10_c00180{left:333.066665pt;}
.x1f_c00180{left:350.546665pt;}
.x11_c00180{left:363.346665pt;}
.x2f_c00180{left:374.906665pt;}
.x27_c00180{left:406.586665pt;}
.x28_c00180{left:436.919999pt;}
.x29_c00180{left:452.626665pt;}
.x2a_c00180{left:478.906665pt;}
.x18_c00180{left:502.186665pt;}
.x9_c00180{left:541.613332pt;}
.x7_c00180{left:552.813332pt;}
.xa_c00180{left:558.919999pt;}
.x20_c00180{left:567.186665pt;}
.x8_c00180{left:571.759999pt;}
.xb_c00180{left:583.226665pt;}
.x21_c00180{left:592.146665pt;}
.x12_c00180{left:599.399999pt;}
.xc_c00180{left:601.653332pt;}
.x13_c00180{left:617.973332pt;}
}





/* 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_c00181 {
    display:none;
  }
  .loading-indicator_c00181.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00181 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_c00181 { 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_c00181" -> "#page-container .classname_c00181")
 */
.pf_c00181 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00181 { /* 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_c00181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00181 { /* 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_c00181 { /* 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_c00181 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00181 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00181 {overflow:visible;}
  }
}
.c_c00181 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00181 { /* 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_c00181:after { /* webkit #35443 */
  content: '';
}
.t_c00181:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00181 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 */
}
.__c00181 { /* 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_c00181 { /* info for Javascript */
  display:none;
}
.l_c00181 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00181 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00181 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00181: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_c00181 {
    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_c00181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00181.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_c00181 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00181;src:url('chunks/assets/font_efce6ce1436cfaefaee5cabb.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.284668;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_c00181;src:url('chunks/assets/font_bd61776f21dd3242b41859ff.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:0.666000;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_c00181;src:url('chunks/assets/font_abf9d31a5fda58b4494ca938.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.284180;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_c00181;src:url('chunks/assets/font_6923c10a3b84a06c8d38ead0.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;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;}
.m1_c00181{transform:matrix(0.145836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145836,0.000000,0.000000,0.250000,0,0);}
.m7_c00181{transform:matrix(0.167389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167389,0.000000,0.000000,0.250000,0,0);}
.m8_c00181{transform:matrix(0.169713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169713,0.000000,0.000000,0.250000,0,0);}
.ma_c00181{transform:matrix(0.172039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172039,0.000000,0.000000,0.250000,0,0);}
.md_c00181{transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);}
.m6_c00181{transform:matrix(0.220707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220707,0.000000,0.000000,0.250000,0,0);}
.m4_c00181{transform:matrix(0.226365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226365,0.000000,0.000000,0.250000,0,0);}
.m11_c00181{transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);}
.m9_c00181{transform:matrix(0.230487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230487,0.000000,0.000000,0.250000,0,0);}
.m5_c00181{transform:matrix(0.232024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232024,0.000000,0.000000,0.250000,0,0);}
.mf_c00181{transform:matrix(0.238896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238896,0.000000,0.000000,0.250000,0,0);}
.m12_c00181{transform:matrix(0.244728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244728,0.000000,0.000000,0.250000,0,0);}
.m10_c00181{transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);}
.m2_c00181{transform:matrix(0.246304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246304,0.000000,0.000000,0.250000,0,0);}
.me_c00181{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.mb_c00181{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.mc_c00181{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m13_c00181{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.m0_c00181{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);}
.m3_c00181{transform:matrix(0.253607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253607,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.v1_c00181{vertical-align:24.495000px;}
.ls90_c00181{letter-spacing:-2.688000px;}
.ls64_c00181{letter-spacing:-2.415000px;}
.ls7c_c00181{letter-spacing:-2.387400px;}
.ls97_c00181{letter-spacing:-2.097600px;}
.ls99_c00181{letter-spacing:-1.974000px;}
.ls96_c00181{letter-spacing:-1.780200px;}
.ls7b_c00181{letter-spacing:-1.704300px;}
.ls94_c00181{letter-spacing:-1.635300px;}
.ls76_c00181{letter-spacing:-1.538700px;}
.ls81_c00181{letter-spacing:-1.393800px;}
.ls6b_c00181{letter-spacing:-1.324800px;}
.ls6e_c00181{letter-spacing:-1.110900px;}
.ls8b_c00181{letter-spacing:-1.099680px;}
.ls6c_c00181{letter-spacing:-1.083300px;}
.ls7a_c00181{letter-spacing:-1.062600px;}
.ls84_c00181{letter-spacing:-1.048800px;}
.ls78_c00181{letter-spacing:-1.014300px;}
.ls66_c00181{letter-spacing:-0.945300px;}
.ls83_c00181{letter-spacing:-0.862500px;}
.ls89_c00181{letter-spacing:-0.855600px;}
.ls7f_c00181{letter-spacing:-0.821100px;}
.ls68_c00181{letter-spacing:-0.800400px;}
.ls8f_c00181{letter-spacing:-0.676200px;}
.ls93_c00181{letter-spacing:-0.565800px;}
.ls95_c00181{letter-spacing:-0.517500px;}
.ls8d_c00181{letter-spacing:-0.489900px;}
.ls6d_c00181{letter-spacing:-0.469200px;}
.ls87_c00181{letter-spacing:-0.455400px;}
.ls85_c00181{letter-spacing:-0.386400px;}
.ls77_c00181{letter-spacing:-0.379500px;}
.ls82_c00181{letter-spacing:-0.345000px;}
.ls74_c00181{letter-spacing:-0.324300px;}
.ls6a_c00181{letter-spacing:-0.303600px;}
.ls98_c00181{letter-spacing:-0.248400px;}
.ls70_c00181{letter-spacing:-0.241500px;}
.ls65_c00181{letter-spacing:-0.234600px;}
.ls80_c00181{letter-spacing:-0.220800px;}
.ls63_c00181{letter-spacing:-0.186300px;}
.ls79_c00181{letter-spacing:-0.179400px;}
.ls7e_c00181{letter-spacing:-0.172500px;}
.ls6f_c00181{letter-spacing:-0.151800px;}
.ls86_c00181{letter-spacing:-0.138000px;}
.ls8c_c00181{letter-spacing:-0.131100px;}
.ls7d_c00181{letter-spacing:-0.082800px;}
.ls8e_c00181{letter-spacing:-0.075900px;}
.ls69_c00181{letter-spacing:-0.062100px;}
.ls72_c00181{letter-spacing:-0.041400px;}
.ls75_c00181{letter-spacing:-0.020700px;}
.ls62_c00181{letter-spacing:0.000000px;}
.ls4c_c00181{letter-spacing:0.013800px;}
.ls30_c00181{letter-spacing:0.041400px;}
.ls5f_c00181{letter-spacing:0.048300px;}
.ls59_c00181{letter-spacing:0.055200px;}
.lsd_c00181{letter-spacing:0.069000px;}
.ls4d_c00181{letter-spacing:0.075900px;}
.ls29_c00181{letter-spacing:0.082800px;}
.ls2f_c00181{letter-spacing:0.089700px;}
.ls1e_c00181{letter-spacing:0.096600px;}
.ls0_c00181{letter-spacing:0.103500px;}
.ls1d_c00181{letter-spacing:0.117300px;}
.ls46_c00181{letter-spacing:0.124200px;}
.ls92_c00181{letter-spacing:0.131100px;}
.ls54_c00181{letter-spacing:0.165600px;}
.ls1f_c00181{letter-spacing:0.172500px;}
.ls50_c00181{letter-spacing:0.179400px;}
.ls38_c00181{letter-spacing:0.186300px;}
.ls25_c00181{letter-spacing:0.193200px;}
.ls43_c00181{letter-spacing:0.200100px;}
.ls1_c00181{letter-spacing:0.220800px;}
.ls19_c00181{letter-spacing:0.227700px;}
.ls6_c00181{letter-spacing:0.241500px;}
.ls4f_c00181{letter-spacing:0.248400px;}
.ls42_c00181{letter-spacing:0.255300px;}
.lsf_c00181{letter-spacing:0.269100px;}
.ls58_c00181{letter-spacing:0.276000px;}
.ls37_c00181{letter-spacing:0.282900px;}
.ls20_c00181{letter-spacing:0.289800px;}
.ls52_c00181{letter-spacing:0.294120px;}
.lse_c00181{letter-spacing:0.296700px;}
.ls45_c00181{letter-spacing:0.303600px;}
.ls56_c00181{letter-spacing:0.310500px;}
.ls73_c00181{letter-spacing:0.317400px;}
.ls2_c00181{letter-spacing:0.324300px;}
.ls40_c00181{letter-spacing:0.331200px;}
.ls23_c00181{letter-spacing:0.345000px;}
.ls5_c00181{letter-spacing:0.351900px;}
.ls16_c00181{letter-spacing:0.358800px;}
.ls24_c00181{letter-spacing:0.372600px;}
.ls5e_c00181{letter-spacing:0.393300px;}
.ls57_c00181{letter-spacing:0.407100px;}
.ls5b_c00181{letter-spacing:0.414000px;}
.ls31_c00181{letter-spacing:0.434700px;}
.ls1b_c00181{letter-spacing:0.441600px;}
.ls15_c00181{letter-spacing:0.448500px;}
.ls18_c00181{letter-spacing:0.455400px;}
.ls53_c00181{letter-spacing:0.478800px;}
.ls3b_c00181{letter-spacing:0.489900px;}
.ls14_c00181{letter-spacing:0.503700px;}
.ls1c_c00181{letter-spacing:0.510600px;}
.ls8_c00181{letter-spacing:0.517500px;}
.ls2d_c00181{letter-spacing:0.531300px;}
.ls27_c00181{letter-spacing:0.547200px;}
.ls3c_c00181{letter-spacing:0.552000px;}
.ls3a_c00181{letter-spacing:0.558900px;}
.ls51_c00181{letter-spacing:0.572700px;}
.ls17_c00181{letter-spacing:0.586500px;}
.ls13_c00181{letter-spacing:0.600300px;}
.ls32_c00181{letter-spacing:0.607200px;}
.ls2c_c00181{letter-spacing:0.621000px;}
.ls11_c00181{letter-spacing:0.634800px;}
.lsb_c00181{letter-spacing:0.641700px;}
.ls28_c00181{letter-spacing:0.649800px;}
.ls36_c00181{letter-spacing:0.663480px;}
.ls3_c00181{letter-spacing:0.669300px;}
.ls33_c00181{letter-spacing:0.676200px;}
.ls9_c00181{letter-spacing:0.703800px;}
.ls61_c00181{letter-spacing:0.724500px;}
.ls22_c00181{letter-spacing:0.731880px;}
.ls26_c00181{letter-spacing:0.759000px;}
.ls2e_c00181{letter-spacing:0.765900px;}
.ls3f_c00181{letter-spacing:0.779700px;}
.ls2a_c00181{letter-spacing:0.779760px;}
.lsc_c00181{letter-spacing:0.793500px;}
.ls49_c00181{letter-spacing:0.800280px;}
.ls35_c00181{letter-spacing:0.807300px;}
.ls10_c00181{letter-spacing:0.814200px;}
.ls4_c00181{letter-spacing:0.821100px;}
.ls47_c00181{letter-spacing:0.869400px;}
.ls4e_c00181{letter-spacing:0.876300px;}
.ls5a_c00181{letter-spacing:0.883200px;}
.ls48_c00181{letter-spacing:0.910800px;}
.ls44_c00181{letter-spacing:0.917700px;}
.ls39_c00181{letter-spacing:0.938400px;}
.ls2b_c00181{letter-spacing:0.950760px;}
.ls3e_c00181{letter-spacing:0.952200px;}
.ls55_c00181{letter-spacing:1.021200px;}
.ls21_c00181{letter-spacing:1.073880px;}
.ls7_c00181{letter-spacing:1.083300px;}
.lsa_c00181{letter-spacing:1.097100px;}
.ls5d_c00181{letter-spacing:1.155360px;}
.ls41_c00181{letter-spacing:1.179900px;}
.ls3d_c00181{letter-spacing:1.193700px;}
.ls1a_c00181{letter-spacing:1.276500px;}
.ls71_c00181{letter-spacing:1.297200px;}
.ls34_c00181{letter-spacing:1.400700px;}
.ls4a_c00181{letter-spacing:1.469700px;}
.ls4b_c00181{letter-spacing:1.628400px;}
.ls60_c00181{letter-spacing:1.714980px;}
.ls8a_c00181{letter-spacing:2.072520px;}
.ls5c_c00181{letter-spacing:2.199360px;}
.ls91_c00181{letter-spacing:2.428800px;}
.ls12_c00181{letter-spacing:3.070500px;}
.ls88_c00181{letter-spacing:3.125700px;}
.ls67_c00181{letter-spacing:3.450000px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{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__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00181{word-spacing:-16.794600px;}
.ws3_c00181{word-spacing:-1.128000px;}
.ws7_c00181{word-spacing:0.000000px;}
.ws2_c00181{word-spacing:1.497600px;}
.ws6_c00181{word-spacing:3.793200px;}
.ws0_c00181{word-spacing:16.146480px;}
.ws1_c00181{word-spacing:21.737760px;}
.ws5_c00181{word-spacing:28.768200px;}
._1b_c00181{margin-left:-9.549120px;}
._d_c00181{margin-left:-5.996100px;}
._14_c00181{margin-left:-4.809300px;}
._e_c00181{margin-left:-3.760500px;}
._19_c00181{margin-left:-2.677200px;}
._4_c00181{margin-left:-1.283400px;}
._5_c00181{width:1.166100px;}
._3_c00181{width:2.352900px;}
._2_c00181{width:3.657000px;}
._7_c00181{width:5.175000px;}
._8_c00181{width:6.506700px;}
._16_c00181{width:7.590000px;}
._6_c00181{width:8.866500px;}
._1a_c00181{width:10.989600px;}
._15_c00181{width:12.709800px;}
._f_c00181{width:14.911200px;}
._1_c00181{width:18.519600px;}
._0_c00181{width:20.389500px;}
._10_c00181{width:21.500100px;}
._12_c00181{width:22.763700px;}
._13_c00181{width:24.439800px;}
._18_c00181{width:25.726800px;}
._11_c00181{width:27.006600px;}
._17_c00181{width:30.149700px;}
._9_c00181{width:42.124500px;}
._c_c00181{width:48.244800px;}
._a_c00181{width:49.542000px;}
._b_c00181{width:52.274400px;}
.fc0_c00181{color:transparent;}
.fs4_c00181{font-size:32.400600px;}
.fs2_c00181{font-size:51.840000px;}
.fs7_c00181{font-size:56.400000px;}
.fs0_c00181{font-size:60.600000px;}
.fs8_c00181{font-size:66.000000px;}
.fs3_c00181{font-size:68.400000px;}
.fs1_c00181{font-size:69.000000px;}
.fs5_c00181{font-size:69.600000px;}
.fs6_c00181{font-size:76.800000px;}
.y0_c00181{bottom:0.000000px;}
.y1f_c00181{bottom:68.400015px;}
.y1e_c00181{bottom:199.095015px;}
.y1d_c00181{bottom:199.101765px;}
.y1b_c00181{bottom:247.693515px;}
.y1c_c00181{bottom:247.695015px;}
.y1a_c00181{bottom:278.295015px;}
.y19_c00181{bottom:339.495015px;}
.y18_c00181{bottom:339.495765px;}
.y17_c00181{bottom:369.735015px;}
.y16_c00181{bottom:400.335015px;}
.y15_c00181{bottom:462.596265px;}
.y14_c00181{bottom:493.215015px;}
.y12_c00181{bottom:555.131265px;}
.y13_c00181{bottom:555.135015px;}
.y11_c00181{bottom:586.090515px;}
.y21_c00181{bottom:615.255015px;}
.y10_c00181{bottom:616.329765px;}
.y20_c00181{bottom:618.840015px;}
.yf_c00181{bottom:647.293515px;}
.ye_c00181{bottom:677.895015px;}
.yd_c00181{bottom:740.175015px;}
.yc_c00181{bottom:773.280015px;}
.yb_c00181{bottom:806.055015px;}
.y9_c00181{bottom:869.758515px;}
.ya_c00181{bottom:869.760015px;}
.y8_c00181{bottom:900.015015px;}
.y7_c00181{bottom:961.571265px;}
.y6_c00181{bottom:992.172765px;}
.y5_c00181{bottom:1022.757015px;}
.y4_c00181{bottom:1053.013515px;}
.y3_c00181{bottom:1083.960015px;}
.y2_c00181{bottom:1114.920015px;}
.y1_c00181{bottom:1190.895015px;}
.h4_c00181{height:34.525440px;}
.ha_c00181{height:55.353516px;}
.h2_c00181{height:59.475586px;}
.h3_c00181{height:67.719727px;}
.h6_c00181{height:67.734727px;}
.h5_c00181{height:67.737727px;}
.h7_c00181{height:68.274609px;}
.hc_c00181{height:68.835938px;}
.h9_c00181{height:71.964844px;}
.h8_c00181{height:75.375000px;}
.hb_c00181{height:80.100000px;}
.h1_c00181{height:1263.000000px;}
.h0_c00181{height:1263.240015px;}
.w1_c00181{width:892.500000px;}
.w0_c00181{width:892.800000px;}
.x0_c00181{left:0.000000px;}
.x1e_c00181{left:124.440000px;}
.x1b_c00181{left:125.822250px;}
.x1_c00181{left:127.005000px;}
.x24_c00181{left:175.594500px;}
.x1d_c00181{left:177.645000px;}
.x1a_c00181{left:178.710000px;}
.x7_c00181{left:179.805000px;}
.x8_c00181{left:195.330000px;}
.x9_c00181{left:216.165000px;}
.x25_c00181{left:243.165000px;}
.x26_c00181{left:270.615000px;}
.x23_c00181{left:272.160000px;}
.x14_c00181{left:281.025000px;}
.x2_c00181{left:294.495000px;}
.xa_c00181{left:297.555000px;}
.x1c_c00181{left:300.780000px;}
.x15_c00181{left:313.380000px;}
.xb_c00181{left:318.510000px;}
.x3_c00181{left:333.540000px;}
.x21_c00181{left:336.060000px;}
.x27_c00181{left:387.525000px;}
.x28_c00181{left:415.920000px;}
.x2b_c00181{left:425.400000px;}
.xe_c00181{left:455.280000px;}
.xc_c00181{left:461.730000px;}
.x16_c00181{left:467.805000px;}
.xd_c00181{left:482.295000px;}
.x17_c00181{left:489.825000px;}
.xf_c00181{left:492.105000px;}
.x18_c00181{left:521.820000px;}
.x10_c00181{left:527.265000px;}
.x4_c00181{left:533.640000px;}
.x11_c00181{left:564.690000px;}
.x5_c00181{left:585.930000px;}
.x22_c00181{left:599.790000px;}
.x1f_c00181{left:624.870000px;}
.x20_c00181{left:649.620000px;}
.x29_c00181{left:679.860000px;}
.x2a_c00181{left:696.405000px;}
.x12_c00181{left:698.220000px;}
.x19_c00181{left:709.800000px;}
.x13_c00181{left:725.625000px;}
.x6_c00181{left:737.970000px;}
.x2d_c00181{left:855.495000px;}
.x2c_c00181{left:856.545000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.v1_c00181{vertical-align:21.773333pt;}
.ls90_c00181{letter-spacing:-2.389333pt;}
.ls64_c00181{letter-spacing:-2.146667pt;}
.ls7c_c00181{letter-spacing:-2.122133pt;}
.ls97_c00181{letter-spacing:-1.864533pt;}
.ls99_c00181{letter-spacing:-1.754667pt;}
.ls96_c00181{letter-spacing:-1.582400pt;}
.ls7b_c00181{letter-spacing:-1.514933pt;}
.ls94_c00181{letter-spacing:-1.453600pt;}
.ls76_c00181{letter-spacing:-1.367733pt;}
.ls81_c00181{letter-spacing:-1.238933pt;}
.ls6b_c00181{letter-spacing:-1.177600pt;}
.ls6e_c00181{letter-spacing:-0.987467pt;}
.ls8b_c00181{letter-spacing:-0.977493pt;}
.ls6c_c00181{letter-spacing:-0.962933pt;}
.ls7a_c00181{letter-spacing:-0.944533pt;}
.ls84_c00181{letter-spacing:-0.932267pt;}
.ls78_c00181{letter-spacing:-0.901600pt;}
.ls66_c00181{letter-spacing:-0.840267pt;}
.ls83_c00181{letter-spacing:-0.766667pt;}
.ls89_c00181{letter-spacing:-0.760533pt;}
.ls7f_c00181{letter-spacing:-0.729867pt;}
.ls68_c00181{letter-spacing:-0.711467pt;}
.ls8f_c00181{letter-spacing:-0.601067pt;}
.ls93_c00181{letter-spacing:-0.502933pt;}
.ls95_c00181{letter-spacing:-0.460000pt;}
.ls8d_c00181{letter-spacing:-0.435467pt;}
.ls6d_c00181{letter-spacing:-0.417067pt;}
.ls87_c00181{letter-spacing:-0.404800pt;}
.ls85_c00181{letter-spacing:-0.343467pt;}
.ls77_c00181{letter-spacing:-0.337333pt;}
.ls82_c00181{letter-spacing:-0.306667pt;}
.ls74_c00181{letter-spacing:-0.288267pt;}
.ls6a_c00181{letter-spacing:-0.269867pt;}
.ls98_c00181{letter-spacing:-0.220800pt;}
.ls70_c00181{letter-spacing:-0.214667pt;}
.ls65_c00181{letter-spacing:-0.208533pt;}
.ls80_c00181{letter-spacing:-0.196267pt;}
.ls63_c00181{letter-spacing:-0.165600pt;}
.ls79_c00181{letter-spacing:-0.159467pt;}
.ls7e_c00181{letter-spacing:-0.153333pt;}
.ls6f_c00181{letter-spacing:-0.134933pt;}
.ls86_c00181{letter-spacing:-0.122667pt;}
.ls8c_c00181{letter-spacing:-0.116533pt;}
.ls7d_c00181{letter-spacing:-0.073600pt;}
.ls8e_c00181{letter-spacing:-0.067467pt;}
.ls69_c00181{letter-spacing:-0.055200pt;}
.ls72_c00181{letter-spacing:-0.036800pt;}
.ls75_c00181{letter-spacing:-0.018400pt;}
.ls62_c00181{letter-spacing:0.000000pt;}
.ls4c_c00181{letter-spacing:0.012267pt;}
.ls30_c00181{letter-spacing:0.036800pt;}
.ls5f_c00181{letter-spacing:0.042933pt;}
.ls59_c00181{letter-spacing:0.049067pt;}
.lsd_c00181{letter-spacing:0.061333pt;}
.ls4d_c00181{letter-spacing:0.067467pt;}
.ls29_c00181{letter-spacing:0.073600pt;}
.ls2f_c00181{letter-spacing:0.079733pt;}
.ls1e_c00181{letter-spacing:0.085867pt;}
.ls0_c00181{letter-spacing:0.092000pt;}
.ls1d_c00181{letter-spacing:0.104267pt;}
.ls46_c00181{letter-spacing:0.110400pt;}
.ls92_c00181{letter-spacing:0.116533pt;}
.ls54_c00181{letter-spacing:0.147200pt;}
.ls1f_c00181{letter-spacing:0.153333pt;}
.ls50_c00181{letter-spacing:0.159467pt;}
.ls38_c00181{letter-spacing:0.165600pt;}
.ls25_c00181{letter-spacing:0.171733pt;}
.ls43_c00181{letter-spacing:0.177867pt;}
.ls1_c00181{letter-spacing:0.196267pt;}
.ls19_c00181{letter-spacing:0.202400pt;}
.ls6_c00181{letter-spacing:0.214667pt;}
.ls4f_c00181{letter-spacing:0.220800pt;}
.ls42_c00181{letter-spacing:0.226933pt;}
.lsf_c00181{letter-spacing:0.239200pt;}
.ls58_c00181{letter-spacing:0.245333pt;}
.ls37_c00181{letter-spacing:0.251467pt;}
.ls20_c00181{letter-spacing:0.257600pt;}
.ls52_c00181{letter-spacing:0.261440pt;}
.lse_c00181{letter-spacing:0.263733pt;}
.ls45_c00181{letter-spacing:0.269867pt;}
.ls56_c00181{letter-spacing:0.276000pt;}
.ls73_c00181{letter-spacing:0.282133pt;}
.ls2_c00181{letter-spacing:0.288267pt;}
.ls40_c00181{letter-spacing:0.294400pt;}
.ls23_c00181{letter-spacing:0.306667pt;}
.ls5_c00181{letter-spacing:0.312800pt;}
.ls16_c00181{letter-spacing:0.318933pt;}
.ls24_c00181{letter-spacing:0.331200pt;}
.ls5e_c00181{letter-spacing:0.349600pt;}
.ls57_c00181{letter-spacing:0.361867pt;}
.ls5b_c00181{letter-spacing:0.368000pt;}
.ls31_c00181{letter-spacing:0.386400pt;}
.ls1b_c00181{letter-spacing:0.392533pt;}
.ls15_c00181{letter-spacing:0.398667pt;}
.ls18_c00181{letter-spacing:0.404800pt;}
.ls53_c00181{letter-spacing:0.425600pt;}
.ls3b_c00181{letter-spacing:0.435467pt;}
.ls14_c00181{letter-spacing:0.447733pt;}
.ls1c_c00181{letter-spacing:0.453867pt;}
.ls8_c00181{letter-spacing:0.460000pt;}
.ls2d_c00181{letter-spacing:0.472267pt;}
.ls27_c00181{letter-spacing:0.486400pt;}
.ls3c_c00181{letter-spacing:0.490667pt;}
.ls3a_c00181{letter-spacing:0.496800pt;}
.ls51_c00181{letter-spacing:0.509067pt;}
.ls17_c00181{letter-spacing:0.521333pt;}
.ls13_c00181{letter-spacing:0.533600pt;}
.ls32_c00181{letter-spacing:0.539733pt;}
.ls2c_c00181{letter-spacing:0.552000pt;}
.ls11_c00181{letter-spacing:0.564267pt;}
.lsb_c00181{letter-spacing:0.570400pt;}
.ls28_c00181{letter-spacing:0.577600pt;}
.ls36_c00181{letter-spacing:0.589760pt;}
.ls3_c00181{letter-spacing:0.594933pt;}
.ls33_c00181{letter-spacing:0.601067pt;}
.ls9_c00181{letter-spacing:0.625600pt;}
.ls61_c00181{letter-spacing:0.644000pt;}
.ls22_c00181{letter-spacing:0.650560pt;}
.ls26_c00181{letter-spacing:0.674667pt;}
.ls2e_c00181{letter-spacing:0.680800pt;}
.ls3f_c00181{letter-spacing:0.693067pt;}
.ls2a_c00181{letter-spacing:0.693120pt;}
.lsc_c00181{letter-spacing:0.705333pt;}
.ls49_c00181{letter-spacing:0.711360pt;}
.ls35_c00181{letter-spacing:0.717600pt;}
.ls10_c00181{letter-spacing:0.723733pt;}
.ls4_c00181{letter-spacing:0.729867pt;}
.ls47_c00181{letter-spacing:0.772800pt;}
.ls4e_c00181{letter-spacing:0.778933pt;}
.ls5a_c00181{letter-spacing:0.785067pt;}
.ls48_c00181{letter-spacing:0.809600pt;}
.ls44_c00181{letter-spacing:0.815733pt;}
.ls39_c00181{letter-spacing:0.834133pt;}
.ls2b_c00181{letter-spacing:0.845120pt;}
.ls3e_c00181{letter-spacing:0.846400pt;}
.ls55_c00181{letter-spacing:0.907733pt;}
.ls21_c00181{letter-spacing:0.954560pt;}
.ls7_c00181{letter-spacing:0.962933pt;}
.lsa_c00181{letter-spacing:0.975200pt;}
.ls5d_c00181{letter-spacing:1.026987pt;}
.ls41_c00181{letter-spacing:1.048800pt;}
.ls3d_c00181{letter-spacing:1.061067pt;}
.ls1a_c00181{letter-spacing:1.134667pt;}
.ls71_c00181{letter-spacing:1.153067pt;}
.ls34_c00181{letter-spacing:1.245067pt;}
.ls4a_c00181{letter-spacing:1.306400pt;}
.ls4b_c00181{letter-spacing:1.447467pt;}
.ls60_c00181{letter-spacing:1.524427pt;}
.ls8a_c00181{letter-spacing:1.842240pt;}
.ls5c_c00181{letter-spacing:1.954987pt;}
.ls91_c00181{letter-spacing:2.158933pt;}
.ls12_c00181{letter-spacing:2.729333pt;}
.ls88_c00181{letter-spacing:2.778400pt;}
.ls67_c00181{letter-spacing:3.066667pt;}
.ws4_c00181{word-spacing:-14.928533pt;}
.ws3_c00181{word-spacing:-1.002667pt;}
.ws7_c00181{word-spacing:0.000000pt;}
.ws2_c00181{word-spacing:1.331200pt;}
.ws6_c00181{word-spacing:3.371733pt;}
.ws0_c00181{word-spacing:14.352427pt;}
.ws1_c00181{word-spacing:19.322453pt;}
.ws5_c00181{word-spacing:25.571733pt;}
._1b_c00181{margin-left:-8.488107pt;}
._d_c00181{margin-left:-5.329867pt;}
._14_c00181{margin-left:-4.274933pt;}
._e_c00181{margin-left:-3.342667pt;}
._19_c00181{margin-left:-2.379733pt;}
._4_c00181{margin-left:-1.140800pt;}
._5_c00181{width:1.036533pt;}
._3_c00181{width:2.091467pt;}
._2_c00181{width:3.250667pt;}
._7_c00181{width:4.600000pt;}
._8_c00181{width:5.783733pt;}
._16_c00181{width:6.746667pt;}
._6_c00181{width:7.881333pt;}
._1a_c00181{width:9.768533pt;}
._15_c00181{width:11.297600pt;}
._f_c00181{width:13.254400pt;}
._1_c00181{width:16.461867pt;}
._0_c00181{width:18.124000pt;}
._10_c00181{width:19.111200pt;}
._12_c00181{width:20.234400pt;}
._13_c00181{width:21.724267pt;}
._18_c00181{width:22.868267pt;}
._11_c00181{width:24.005867pt;}
._17_c00181{width:26.799733pt;}
._9_c00181{width:37.444000pt;}
._c_c00181{width:42.884267pt;}
._a_c00181{width:44.037333pt;}
._b_c00181{width:46.466133pt;}
.fs4_c00181{font-size:28.800533pt;}
.fs2_c00181{font-size:46.080000pt;}
.fs7_c00181{font-size:50.133333pt;}
.fs0_c00181{font-size:53.866667pt;}
.fs8_c00181{font-size:58.666667pt;}
.fs3_c00181{font-size:60.800000pt;}
.fs1_c00181{font-size:61.333333pt;}
.fs5_c00181{font-size:61.866667pt;}
.fs6_c00181{font-size:68.266667pt;}
.y0_c00181{bottom:0.000000pt;}
.y1f_c00181{bottom:60.800013pt;}
.y1e_c00181{bottom:176.973347pt;}
.y1d_c00181{bottom:176.979347pt;}
.y1b_c00181{bottom:220.172013pt;}
.y1c_c00181{bottom:220.173347pt;}
.y1a_c00181{bottom:247.373347pt;}
.y19_c00181{bottom:301.773347pt;}
.y18_c00181{bottom:301.774013pt;}
.y17_c00181{bottom:328.653347pt;}
.y16_c00181{bottom:355.853347pt;}
.y15_c00181{bottom:411.196680pt;}
.y14_c00181{bottom:438.413347pt;}
.y12_c00181{bottom:493.450013pt;}
.y13_c00181{bottom:493.453347pt;}
.y11_c00181{bottom:520.969347pt;}
.y21_c00181{bottom:546.893347pt;}
.y10_c00181{bottom:547.848680pt;}
.y20_c00181{bottom:550.080013pt;}
.yf_c00181{bottom:575.372013pt;}
.ye_c00181{bottom:602.573347pt;}
.yd_c00181{bottom:657.933347pt;}
.yc_c00181{bottom:687.360013pt;}
.yb_c00181{bottom:716.493347pt;}
.y9_c00181{bottom:773.118680pt;}
.ya_c00181{bottom:773.120013pt;}
.y8_c00181{bottom:800.013347pt;}
.y7_c00181{bottom:854.730013pt;}
.y6_c00181{bottom:881.931347pt;}
.y5_c00181{bottom:909.117347pt;}
.y4_c00181{bottom:936.012013pt;}
.y3_c00181{bottom:963.520013pt;}
.y2_c00181{bottom:991.040013pt;}
.y1_c00181{bottom:1058.573347pt;}
.h4_c00181{height:30.689280pt;}
.ha_c00181{height:49.203125pt;}
.h2_c00181{height:52.867187pt;}
.h3_c00181{height:60.195312pt;}
.h6_c00181{height:60.208646pt;}
.h5_c00181{height:60.211313pt;}
.h7_c00181{height:60.688542pt;}
.hc_c00181{height:61.187500pt;}
.h9_c00181{height:63.968750pt;}
.h8_c00181{height:67.000000pt;}
.hb_c00181{height:71.200000pt;}
.h1_c00181{height:1122.666667pt;}
.h0_c00181{height:1122.880013pt;}
.w1_c00181{width:793.333333pt;}
.w0_c00181{width:793.600000pt;}
.x0_c00181{left:0.000000pt;}
.x1e_c00181{left:110.613333pt;}
.x1b_c00181{left:111.842000pt;}
.x1_c00181{left:112.893333pt;}
.x24_c00181{left:156.084000pt;}
.x1d_c00181{left:157.906667pt;}
.x1a_c00181{left:158.853333pt;}
.x7_c00181{left:159.826667pt;}
.x8_c00181{left:173.626667pt;}
.x9_c00181{left:192.146667pt;}
.x25_c00181{left:216.146667pt;}
.x26_c00181{left:240.546667pt;}
.x23_c00181{left:241.920000pt;}
.x14_c00181{left:249.800000pt;}
.x2_c00181{left:261.773333pt;}
.xa_c00181{left:264.493333pt;}
.x1c_c00181{left:267.360000pt;}
.x15_c00181{left:278.560000pt;}
.xb_c00181{left:283.120000pt;}
.x3_c00181{left:296.480000pt;}
.x21_c00181{left:298.720000pt;}
.x27_c00181{left:344.466667pt;}
.x28_c00181{left:369.706667pt;}
.x2b_c00181{left:378.133333pt;}
.xe_c00181{left:404.693333pt;}
.xc_c00181{left:410.426667pt;}
.x16_c00181{left:415.826667pt;}
.xd_c00181{left:428.706667pt;}
.x17_c00181{left:435.400000pt;}
.xf_c00181{left:437.426667pt;}
.x18_c00181{left:463.840000pt;}
.x10_c00181{left:468.680000pt;}
.x4_c00181{left:474.346667pt;}
.x11_c00181{left:501.946667pt;}
.x5_c00181{left:520.826667pt;}
.x22_c00181{left:533.146667pt;}
.x1f_c00181{left:555.440000pt;}
.x20_c00181{left:577.440000pt;}
.x29_c00181{left:604.320000pt;}
.x2a_c00181{left:619.026667pt;}
.x12_c00181{left:620.640000pt;}
.x19_c00181{left:630.933333pt;}
.x13_c00181{left:645.000000pt;}
.x6_c00181{left:655.973333pt;}
.x2d_c00181{left:760.440000pt;}
.x2c_c00181{left:761.373333pt;}
}





/* 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_c00182 {
    display:none;
  }
  .loading-indicator_c00182.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00182 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_c00182 { 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_c00182" -> "#page-container .classname_c00182")
 */
.pf_c00182 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00182 { /* 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_c00182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00182 { /* 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_c00182 { /* 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_c00182 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00182 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00182 {overflow:visible;}
  }
}
.c_c00182 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00182 { /* 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_c00182:after { /* webkit #35443 */
  content: '';
}
.t_c00182:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00182 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 */
}
.__c00182 { /* 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_c00182 { /* info for Javascript */
  display:none;
}
.l_c00182 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00182 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00182 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00182: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_c00182 {
    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_c00182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00182.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_c00182 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00182;src:url('chunks/assets/font_6281d4bb2395ebd73b86a74f.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.284668;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_c00182;src:url('chunks/assets/font_749bb497f730c8ea1269d91d.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.284180;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_c00182;src:url('chunks/assets/font_b816abf325c3fc9d70c20b37.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;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;}
.m9_c00182{transform:matrix(0.196428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196428,0.000000,0.000000,0.250000,0,0);}
.ma_c00182{transform:matrix(0.196614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196614,0.000000,0.000000,0.250000,0,0);}
.m0_c00182{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.mb_c00182{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m3_c00182{transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);}
.m8_c00182{transform:matrix(0.245863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245863,0.000000,0.000000,0.250000,0,0);}
.m6_c00182{transform:matrix(0.247026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247026,0.000000,0.000000,0.250000,0,0);}
.m7_c00182{transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);}
.m5_c00182{transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);}
.m2_c00182{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m4_c00182{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{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);}
.mc_c00182{transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.v1_c00182{vertical-align:25.980000px;}
.ls55_c00182{letter-spacing:-2.562000px;}
.ls9a_c00182{letter-spacing:-2.541000px;}
.ls5c_c00182{letter-spacing:-2.457000px;}
.lsa1_c00182{letter-spacing:-2.310000px;}
.lsa5_c00182{letter-spacing:-2.204280px;}
.ls64_c00182{letter-spacing:-2.120040px;}
.ls7e_c00182{letter-spacing:-1.951560px;}
.ls8b_c00182{letter-spacing:-1.916460px;}
.ls9e_c00182{letter-spacing:-1.825200px;}
.ls65_c00182{letter-spacing:-1.769040px;}
.ls6c_c00182{letter-spacing:-1.635660px;}
.ls96_c00182{letter-spacing:-1.509300px;}
.ls5d_c00182{letter-spacing:-1.446120px;}
.ls5b_c00182{letter-spacing:-1.291680px;}
.ls63_c00182{letter-spacing:-1.235520px;}
.ls66_c00182{letter-spacing:-1.165320px;}
.ls57_c00182{letter-spacing:-1.151280px;}
.lsa0_c00182{letter-spacing:-1.144260px;}
.ls79_c00182{letter-spacing:-1.038960px;}
.lsaa_c00182{letter-spacing:-1.017900px;}
.ls8e_c00182{letter-spacing:-0.989820px;}
.lsa3_c00182{letter-spacing:-0.947700px;}
.ls97_c00182{letter-spacing:-0.919620px;}
.ls77_c00182{letter-spacing:-0.884520px;}
.ls60_c00182{letter-spacing:-0.856440px;}
.ls73_c00182{letter-spacing:-0.849420px;}
.ls71_c00182{letter-spacing:-0.814320px;}
.ls7f_c00182{letter-spacing:-0.807300px;}
.ls8d_c00182{letter-spacing:-0.793260px;}
.ls85_c00182{letter-spacing:-0.772200px;}
.ls6f_c00182{letter-spacing:-0.765180px;}
.ls9f_c00182{letter-spacing:-0.645840px;}
.ls6b_c00182{letter-spacing:-0.610740px;}
.ls61_c00182{letter-spacing:-0.568620px;}
.ls9d_c00182{letter-spacing:-0.561600px;}
.ls89_c00182{letter-spacing:-0.533520px;}
.lsab_c00182{letter-spacing:-0.529620px;}
.ls5f_c00182{letter-spacing:-0.526500px;}
.ls7d_c00182{letter-spacing:-0.512460px;}
.ls95_c00182{letter-spacing:-0.484380px;}
.ls99_c00182{letter-spacing:-0.477360px;}
.ls94_c00182{letter-spacing:-0.449280px;}
.ls6d_c00182{letter-spacing:-0.421200px;}
.ls6a_c00182{letter-spacing:-0.400140px;}
.ls58_c00182{letter-spacing:-0.393120px;}
.ls80_c00182{letter-spacing:-0.379080px;}
.ls83_c00182{letter-spacing:-0.365040px;}
.ls59_c00182{letter-spacing:-0.358020px;}
.ls91_c00182{letter-spacing:-0.343980px;}
.ls8c_c00182{letter-spacing:-0.336960px;}
.ls76_c00182{letter-spacing:-0.329940px;}
.ls6e_c00182{letter-spacing:-0.322920px;}
.ls7b_c00182{letter-spacing:-0.301860px;}
.lsa4_c00182{letter-spacing:-0.294840px;}
.ls7c_c00182{letter-spacing:-0.287820px;}
.ls9b_c00182{letter-spacing:-0.280800px;}
.ls8f_c00182{letter-spacing:-0.273780px;}
.ls98_c00182{letter-spacing:-0.259740px;}
.ls75_c00182{letter-spacing:-0.224640px;}
.ls92_c00182{letter-spacing:-0.217620px;}
.ls9c_c00182{letter-spacing:-0.210600px;}
.ls67_c00182{letter-spacing:-0.196560px;}
.lsa6_c00182{letter-spacing:-0.189540px;}
.ls90_c00182{letter-spacing:-0.168480px;}
.ls69_c00182{letter-spacing:-0.161460px;}
.ls84_c00182{letter-spacing:-0.154440px;}
.ls68_c00182{letter-spacing:-0.140400px;}
.ls72_c00182{letter-spacing:-0.133380px;}
.ls82_c00182{letter-spacing:-0.126360px;}
.lsa8_c00182{letter-spacing:-0.119340px;}
.ls87_c00182{letter-spacing:-0.098280px;}
.ls70_c00182{letter-spacing:-0.091260px;}
.ls74_c00182{letter-spacing:-0.084240px;}
.ls56_c00182{letter-spacing:-0.077220px;}
.ls5e_c00182{letter-spacing:-0.070200px;}
.lsa9_c00182{letter-spacing:-0.063180px;}
.ls86_c00182{letter-spacing:-0.056160px;}
.ls88_c00182{letter-spacing:-0.049140px;}
.ls7a_c00182{letter-spacing:-0.035100px;}
.ls8a_c00182{letter-spacing:-0.028080px;}
.ls5a_c00182{letter-spacing:-0.021060px;}
.ls78_c00182{letter-spacing:-0.014040px;}
.ls62_c00182{letter-spacing:0.000000px;}
.ls43_c00182{letter-spacing:0.007020px;}
.ls6_c00182{letter-spacing:0.021060px;}
.ls23_c00182{letter-spacing:0.035100px;}
.ls31_c00182{letter-spacing:0.049140px;}
.ls3c_c00182{letter-spacing:0.070200px;}
.ls1e_c00182{letter-spacing:0.098280px;}
.lsa_c00182{letter-spacing:0.105300px;}
.ls13_c00182{letter-spacing:0.119340px;}
.ls26_c00182{letter-spacing:0.126360px;}
.ls46_c00182{letter-spacing:0.133380px;}
.ls17_c00182{letter-spacing:0.140400px;}
.ls2a_c00182{letter-spacing:0.147420px;}
.ls2b_c00182{letter-spacing:0.161460px;}
.ls10_c00182{letter-spacing:0.175500px;}
.ls14_c00182{letter-spacing:0.182520px;}
.ls4c_c00182{letter-spacing:0.196560px;}
.ls3d_c00182{letter-spacing:0.203580px;}
.lsf_c00182{letter-spacing:0.217620px;}
.ls3a_c00182{letter-spacing:0.224640px;}
.ls4d_c00182{letter-spacing:0.231660px;}
.lsd_c00182{letter-spacing:0.245700px;}
.ls1f_c00182{letter-spacing:0.259740px;}
.ls35_c00182{letter-spacing:0.273780px;}
.ls39_c00182{letter-spacing:0.280800px;}
.lse_c00182{letter-spacing:0.294840px;}
.ls4a_c00182{letter-spacing:0.301860px;}
.ls8_c00182{letter-spacing:0.308880px;}
.ls2c_c00182{letter-spacing:0.358020px;}
.ls5_c00182{letter-spacing:0.365040px;}
.ls54_c00182{letter-spacing:0.386100px;}
.ls49_c00182{letter-spacing:0.386400px;}
.ls12_c00182{letter-spacing:0.400140px;}
.ls18_c00182{letter-spacing:0.407160px;}
.ls53_c00182{letter-spacing:0.414180px;}
.ls32_c00182{letter-spacing:0.420900px;}
.ls36_c00182{letter-spacing:0.421200px;}
.ls1c_c00182{letter-spacing:0.428220px;}
.ls29_c00182{letter-spacing:0.435240px;}
.ls4b_c00182{letter-spacing:0.456300px;}
.ls81_c00182{letter-spacing:0.463320px;}
.lsc_c00182{letter-spacing:0.477360px;}
.ls16_c00182{letter-spacing:0.491400px;}
.ls24_c00182{letter-spacing:0.505440px;}
.ls30_c00182{letter-spacing:0.519480px;}
.ls21_c00182{letter-spacing:0.540540px;}
.ls1d_c00182{letter-spacing:0.547560px;}
.ls50_c00182{letter-spacing:0.575640px;}
.ls4e_c00182{letter-spacing:0.589680px;}
.ls1b_c00182{letter-spacing:0.610740px;}
.ls34_c00182{letter-spacing:0.617760px;}
.ls9_c00182{letter-spacing:0.624780px;}
.ls2f_c00182{letter-spacing:0.638820px;}
.ls1a_c00182{letter-spacing:0.645840px;}
.ls38_c00182{letter-spacing:0.652860px;}
.ls0_c00182{letter-spacing:0.662400px;}
.ls41_c00182{letter-spacing:0.673920px;}
.ls93_c00182{letter-spacing:0.738300px;}
.ls45_c00182{letter-spacing:0.758160px;}
.ls4f_c00182{letter-spacing:0.759000px;}
.ls3_c00182{letter-spacing:0.765900px;}
.ls3e_c00182{letter-spacing:0.807300px;}
.ls3f_c00182{letter-spacing:0.814320px;}
.ls2d_c00182{letter-spacing:0.821340px;}
.ls7_c00182{letter-spacing:0.828000px;}
.ls28_c00182{letter-spacing:0.834900px;}
.ls48_c00182{letter-spacing:0.903900px;}
.ls25_c00182{letter-spacing:0.926640px;}
.ls37_c00182{letter-spacing:0.940680px;}
.ls22_c00182{letter-spacing:1.024920px;}
.ls2_c00182{letter-spacing:1.045980px;}
.ls15_c00182{letter-spacing:1.081080px;}
.lsa7_c00182{letter-spacing:1.088100px;}
.ls40_c00182{letter-spacing:1.144260px;}
.ls42_c00182{letter-spacing:1.152300px;}
.ls47_c00182{letter-spacing:1.172340px;}
.ls3b_c00182{letter-spacing:1.221480px;}
.ls51_c00182{letter-spacing:1.263600px;}
.ls20_c00182{letter-spacing:1.298700px;}
.ls27_c00182{letter-spacing:1.317900px;}
.ls1_c00182{letter-spacing:1.338600px;}
.lsb_c00182{letter-spacing:1.425060px;}
.ls44_c00182{letter-spacing:1.442100px;}
.ls2e_c00182{letter-spacing:1.467180px;}
.ls52_c00182{letter-spacing:1.530360px;}
.ls19_c00182{letter-spacing:1.607580px;}
.ls4_c00182{letter-spacing:1.759500px;}
.ls33_c00182{letter-spacing:1.769040px;}
.ls11_c00182{letter-spacing:2.485080px;}
.lsa2_c00182{letter-spacing:3.510000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{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__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00182{word-spacing:-16.405740px;}
.ws6_c00182{word-spacing:0.000000px;}
.ws2_c00182{word-spacing:0.014400px;}
.ws0_c00182{word-spacing:2.679000px;}
.ws3_c00182{word-spacing:10.455000px;}
.ws5_c00182{word-spacing:18.654000px;}
.ws1_c00182{word-spacing:19.964400px;}
._8_c00182{margin-left:-5.152500px;}
._1d_c00182{margin-left:-3.889080px;}
._7_c00182{margin-left:-2.566800px;}
._c_c00182{margin-left:-1.329240px;}
._6_c00182{width:1.123200px;}
._b_c00182{width:2.364240px;}
._5_c00182{width:3.931200px;}
._0_c00182{width:5.161200px;}
._9_c00182{width:6.679020px;}
._2_c00182{width:8.241480px;}
._4_c00182{width:9.448920px;}
._3_c00182{width:11.237520px;}
._a_c00182{width:12.355200px;}
._16_c00182{width:13.398000px;}
._1_c00182{width:14.638380px;}
._d_c00182{width:17.181000px;}
._15_c00182{width:19.206540px;}
._e_c00182{width:20.989800px;}
._f_c00182{width:22.836060px;}
._14_c00182{width:24.481440px;}
._12_c00182{width:26.633880px;}
._11_c00182{width:28.585440px;}
._13_c00182{width:30.424680px;}
._10_c00182{width:31.983120px;}
._1c_c00182{width:39.747240px;}
._18_c00182{width:42.120000px;}
._17_c00182{width:43.538040px;}
._1b_c00182{width:44.605080px;}
._1a_c00182{width:46.212660px;}
._19_c00182{width:48.353760px;}
.fc0_c00182{color:transparent;}
.fs5_c00182{font-size:32.400600px;}
.fs7_c00182{font-size:58.200000px;}
.fs3_c00182{font-size:62.400000px;}
.fs6_c00182{font-size:66.000000px;}
.fs1_c00182{font-size:69.000000px;}
.fs2_c00182{font-size:70.200000px;}
.fs4_c00182{font-size:72.600000px;}
.fs0_c00182{font-size:73.200000px;}
.y0_c00182{bottom:0.000000px;}
.y21_c00182{bottom:73.440006px;}
.y20_c00182{bottom:131.753256px;}
.y1f_c00182{bottom:163.080006px;}
.y1d_c00182{bottom:224.279256px;}
.y1e_c00182{bottom:224.280006px;}
.y1c_c00182{bottom:255.256806px;}
.y1b_c00182{bottom:286.215006px;}
.y1a_c00182{bottom:348.495006px;}
.y19_c00182{bottom:412.220706px;}
.y18_c00182{bottom:442.459356px;}
.y17_c00182{bottom:473.394006px;}
.y16_c00182{bottom:504.375006px;}
.y15_c00182{bottom:535.321806px;}
.y14_c00182{bottom:566.272806px;}
.y13_c00182{bottom:596.880006px;}
.y12_c00182{bottom:627.859356px;}
.y11_c00182{bottom:658.803606px;}
.y10_c00182{bottom:689.779356px;}
.yf_c00182{bottom:720.720006px;}
.ye_c00182{bottom:782.639256px;}
.yc_c00182{bottom:813.605406px;}
.yd_c00182{bottom:813.615006px;}
.yb_c00182{bottom:844.932156px;}
.ya_c00182{bottom:875.890356px;}
.y9_c00182{bottom:906.480006px;}
.y8_c00182{bottom:937.447806px;}
.y7_c00182{bottom:968.055006px;}
.y6_c00182{bottom:1030.320006px;}
.y5_c00182{bottom:1059.840006px;}
.y3_c00182{bottom:1090.799256px;}
.y4_c00182{bottom:1090.800006px;}
.y2_c00182{bottom:1121.775006px;}
.y1_c00182{bottom:1199.160006px;}
.ha_c00182{height:57.120117px;}
.h8_c00182{height:68.835938px;}
.h3_c00182{height:68.897461px;}
.h7_c00182{height:68.900461px;}
.h5_c00182{height:68.921461px;}
.h4_c00182{height:68.926261px;}
.h6_c00182{height:71.252930px;}
.h2_c00182{height:71.841797px;}
.h9_c00182{height:71.991844px;}
.h1_c00182{height:1263.000000px;}
.h0_c00182{height:1263.240006px;}
.w1_c00182{width:892.500000px;}
.w0_c00182{width:892.799998px;}
.x0_c00182{left:0.000000px;}
.x12_c00182{left:115.788749px;}
.x11_c00182{left:117.869998px;}
.x10_c00182{left:118.964548px;}
.xc_c00182{left:120.228899px;}
.xb_c00182{left:121.465798px;}
.x1_c00182{left:124.124999px;}
.x18_c00182{left:169.724998px;}
.x13_c00182{left:170.804998px;}
.xf_c00182{left:172.604998px;}
.x7_c00182{left:175.469999px;}
.x2_c00182{left:177.494998px;}
.x3_c00182{left:209.684998px;}
.x4_c00182{left:238.424998px;}
.x17_c00182{left:252.494999px;}
.x19_c00182{left:421.994999px;}
.x1a_c00182{left:457.034998px;}
.x5_c00182{left:483.284998px;}
.x6_c00182{left:510.989998px;}
.x14_c00182{left:514.694999px;}
.x15_c00182{left:547.379999px;}
.xd_c00182{left:559.199998px;}
.xe_c00182{left:578.849999px;}
.x16_c00182{left:648.254999px;}
.x8_c00182{left:692.564999px;}
.x9_c00182{left:710.444999px;}
.xa_c00182{left:739.559999px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.v1_c00182{vertical-align:23.093333pt;}
.ls55_c00182{letter-spacing:-2.277333pt;}
.ls9a_c00182{letter-spacing:-2.258667pt;}
.ls5c_c00182{letter-spacing:-2.184000pt;}
.lsa1_c00182{letter-spacing:-2.053333pt;}
.lsa5_c00182{letter-spacing:-1.959360pt;}
.ls64_c00182{letter-spacing:-1.884480pt;}
.ls7e_c00182{letter-spacing:-1.734720pt;}
.ls8b_c00182{letter-spacing:-1.703520pt;}
.ls9e_c00182{letter-spacing:-1.622400pt;}
.ls65_c00182{letter-spacing:-1.572480pt;}
.ls6c_c00182{letter-spacing:-1.453920pt;}
.ls96_c00182{letter-spacing:-1.341600pt;}
.ls5d_c00182{letter-spacing:-1.285440pt;}
.ls5b_c00182{letter-spacing:-1.148160pt;}
.ls63_c00182{letter-spacing:-1.098240pt;}
.ls66_c00182{letter-spacing:-1.035840pt;}
.ls57_c00182{letter-spacing:-1.023360pt;}
.lsa0_c00182{letter-spacing:-1.017120pt;}
.ls79_c00182{letter-spacing:-0.923520pt;}
.lsaa_c00182{letter-spacing:-0.904800pt;}
.ls8e_c00182{letter-spacing:-0.879840pt;}
.lsa3_c00182{letter-spacing:-0.842400pt;}
.ls97_c00182{letter-spacing:-0.817440pt;}
.ls77_c00182{letter-spacing:-0.786240pt;}
.ls60_c00182{letter-spacing:-0.761280pt;}
.ls73_c00182{letter-spacing:-0.755040pt;}
.ls71_c00182{letter-spacing:-0.723840pt;}
.ls7f_c00182{letter-spacing:-0.717600pt;}
.ls8d_c00182{letter-spacing:-0.705120pt;}
.ls85_c00182{letter-spacing:-0.686400pt;}
.ls6f_c00182{letter-spacing:-0.680160pt;}
.ls9f_c00182{letter-spacing:-0.574080pt;}
.ls6b_c00182{letter-spacing:-0.542880pt;}
.ls61_c00182{letter-spacing:-0.505440pt;}
.ls9d_c00182{letter-spacing:-0.499200pt;}
.ls89_c00182{letter-spacing:-0.474240pt;}
.lsab_c00182{letter-spacing:-0.470773pt;}
.ls5f_c00182{letter-spacing:-0.468000pt;}
.ls7d_c00182{letter-spacing:-0.455520pt;}
.ls95_c00182{letter-spacing:-0.430560pt;}
.ls99_c00182{letter-spacing:-0.424320pt;}
.ls94_c00182{letter-spacing:-0.399360pt;}
.ls6d_c00182{letter-spacing:-0.374400pt;}
.ls6a_c00182{letter-spacing:-0.355680pt;}
.ls58_c00182{letter-spacing:-0.349440pt;}
.ls80_c00182{letter-spacing:-0.336960pt;}
.ls83_c00182{letter-spacing:-0.324480pt;}
.ls59_c00182{letter-spacing:-0.318240pt;}
.ls91_c00182{letter-spacing:-0.305760pt;}
.ls8c_c00182{letter-spacing:-0.299520pt;}
.ls76_c00182{letter-spacing:-0.293280pt;}
.ls6e_c00182{letter-spacing:-0.287040pt;}
.ls7b_c00182{letter-spacing:-0.268320pt;}
.lsa4_c00182{letter-spacing:-0.262080pt;}
.ls7c_c00182{letter-spacing:-0.255840pt;}
.ls9b_c00182{letter-spacing:-0.249600pt;}
.ls8f_c00182{letter-spacing:-0.243360pt;}
.ls98_c00182{letter-spacing:-0.230880pt;}
.ls75_c00182{letter-spacing:-0.199680pt;}
.ls92_c00182{letter-spacing:-0.193440pt;}
.ls9c_c00182{letter-spacing:-0.187200pt;}
.ls67_c00182{letter-spacing:-0.174720pt;}
.lsa6_c00182{letter-spacing:-0.168480pt;}
.ls90_c00182{letter-spacing:-0.149760pt;}
.ls69_c00182{letter-spacing:-0.143520pt;}
.ls84_c00182{letter-spacing:-0.137280pt;}
.ls68_c00182{letter-spacing:-0.124800pt;}
.ls72_c00182{letter-spacing:-0.118560pt;}
.ls82_c00182{letter-spacing:-0.112320pt;}
.lsa8_c00182{letter-spacing:-0.106080pt;}
.ls87_c00182{letter-spacing:-0.087360pt;}
.ls70_c00182{letter-spacing:-0.081120pt;}
.ls74_c00182{letter-spacing:-0.074880pt;}
.ls56_c00182{letter-spacing:-0.068640pt;}
.ls5e_c00182{letter-spacing:-0.062400pt;}
.lsa9_c00182{letter-spacing:-0.056160pt;}
.ls86_c00182{letter-spacing:-0.049920pt;}
.ls88_c00182{letter-spacing:-0.043680pt;}
.ls7a_c00182{letter-spacing:-0.031200pt;}
.ls8a_c00182{letter-spacing:-0.024960pt;}
.ls5a_c00182{letter-spacing:-0.018720pt;}
.ls78_c00182{letter-spacing:-0.012480pt;}
.ls62_c00182{letter-spacing:0.000000pt;}
.ls43_c00182{letter-spacing:0.006240pt;}
.ls6_c00182{letter-spacing:0.018720pt;}
.ls23_c00182{letter-spacing:0.031200pt;}
.ls31_c00182{letter-spacing:0.043680pt;}
.ls3c_c00182{letter-spacing:0.062400pt;}
.ls1e_c00182{letter-spacing:0.087360pt;}
.lsa_c00182{letter-spacing:0.093600pt;}
.ls13_c00182{letter-spacing:0.106080pt;}
.ls26_c00182{letter-spacing:0.112320pt;}
.ls46_c00182{letter-spacing:0.118560pt;}
.ls17_c00182{letter-spacing:0.124800pt;}
.ls2a_c00182{letter-spacing:0.131040pt;}
.ls2b_c00182{letter-spacing:0.143520pt;}
.ls10_c00182{letter-spacing:0.156000pt;}
.ls14_c00182{letter-spacing:0.162240pt;}
.ls4c_c00182{letter-spacing:0.174720pt;}
.ls3d_c00182{letter-spacing:0.180960pt;}
.lsf_c00182{letter-spacing:0.193440pt;}
.ls3a_c00182{letter-spacing:0.199680pt;}
.ls4d_c00182{letter-spacing:0.205920pt;}
.lsd_c00182{letter-spacing:0.218400pt;}
.ls1f_c00182{letter-spacing:0.230880pt;}
.ls35_c00182{letter-spacing:0.243360pt;}
.ls39_c00182{letter-spacing:0.249600pt;}
.lse_c00182{letter-spacing:0.262080pt;}
.ls4a_c00182{letter-spacing:0.268320pt;}
.ls8_c00182{letter-spacing:0.274560pt;}
.ls2c_c00182{letter-spacing:0.318240pt;}
.ls5_c00182{letter-spacing:0.324480pt;}
.ls54_c00182{letter-spacing:0.343200pt;}
.ls49_c00182{letter-spacing:0.343467pt;}
.ls12_c00182{letter-spacing:0.355680pt;}
.ls18_c00182{letter-spacing:0.361920pt;}
.ls53_c00182{letter-spacing:0.368160pt;}
.ls32_c00182{letter-spacing:0.374133pt;}
.ls36_c00182{letter-spacing:0.374400pt;}
.ls1c_c00182{letter-spacing:0.380640pt;}
.ls29_c00182{letter-spacing:0.386880pt;}
.ls4b_c00182{letter-spacing:0.405600pt;}
.ls81_c00182{letter-spacing:0.411840pt;}
.lsc_c00182{letter-spacing:0.424320pt;}
.ls16_c00182{letter-spacing:0.436800pt;}
.ls24_c00182{letter-spacing:0.449280pt;}
.ls30_c00182{letter-spacing:0.461760pt;}
.ls21_c00182{letter-spacing:0.480480pt;}
.ls1d_c00182{letter-spacing:0.486720pt;}
.ls50_c00182{letter-spacing:0.511680pt;}
.ls4e_c00182{letter-spacing:0.524160pt;}
.ls1b_c00182{letter-spacing:0.542880pt;}
.ls34_c00182{letter-spacing:0.549120pt;}
.ls9_c00182{letter-spacing:0.555360pt;}
.ls2f_c00182{letter-spacing:0.567840pt;}
.ls1a_c00182{letter-spacing:0.574080pt;}
.ls38_c00182{letter-spacing:0.580320pt;}
.ls0_c00182{letter-spacing:0.588800pt;}
.ls41_c00182{letter-spacing:0.599040pt;}
.ls93_c00182{letter-spacing:0.656267pt;}
.ls45_c00182{letter-spacing:0.673920pt;}
.ls4f_c00182{letter-spacing:0.674667pt;}
.ls3_c00182{letter-spacing:0.680800pt;}
.ls3e_c00182{letter-spacing:0.717600pt;}
.ls3f_c00182{letter-spacing:0.723840pt;}
.ls2d_c00182{letter-spacing:0.730080pt;}
.ls7_c00182{letter-spacing:0.736000pt;}
.ls28_c00182{letter-spacing:0.742133pt;}
.ls48_c00182{letter-spacing:0.803467pt;}
.ls25_c00182{letter-spacing:0.823680pt;}
.ls37_c00182{letter-spacing:0.836160pt;}
.ls22_c00182{letter-spacing:0.911040pt;}
.ls2_c00182{letter-spacing:0.929760pt;}
.ls15_c00182{letter-spacing:0.960960pt;}
.lsa7_c00182{letter-spacing:0.967200pt;}
.ls40_c00182{letter-spacing:1.017120pt;}
.ls42_c00182{letter-spacing:1.024267pt;}
.ls47_c00182{letter-spacing:1.042080pt;}
.ls3b_c00182{letter-spacing:1.085760pt;}
.ls51_c00182{letter-spacing:1.123200pt;}
.ls20_c00182{letter-spacing:1.154400pt;}
.ls27_c00182{letter-spacing:1.171467pt;}
.ls1_c00182{letter-spacing:1.189867pt;}
.lsb_c00182{letter-spacing:1.266720pt;}
.ls44_c00182{letter-spacing:1.281867pt;}
.ls2e_c00182{letter-spacing:1.304160pt;}
.ls52_c00182{letter-spacing:1.360320pt;}
.ls19_c00182{letter-spacing:1.428960pt;}
.ls4_c00182{letter-spacing:1.564000pt;}
.ls33_c00182{letter-spacing:1.572480pt;}
.ls11_c00182{letter-spacing:2.208960pt;}
.lsa2_c00182{letter-spacing:3.120000pt;}
.ws4_c00182{word-spacing:-14.582880pt;}
.ws6_c00182{word-spacing:0.000000pt;}
.ws2_c00182{word-spacing:0.012800pt;}
.ws0_c00182{word-spacing:2.381333pt;}
.ws3_c00182{word-spacing:9.293333pt;}
.ws5_c00182{word-spacing:16.581333pt;}
.ws1_c00182{word-spacing:17.746133pt;}
._8_c00182{margin-left:-4.580000pt;}
._1d_c00182{margin-left:-3.456960pt;}
._7_c00182{margin-left:-2.281600pt;}
._c_c00182{margin-left:-1.181547pt;}
._6_c00182{width:0.998400pt;}
._b_c00182{width:2.101547pt;}
._5_c00182{width:3.494400pt;}
._0_c00182{width:4.587733pt;}
._9_c00182{width:5.936907pt;}
._2_c00182{width:7.325760pt;}
._4_c00182{width:8.399040pt;}
._3_c00182{width:9.988907pt;}
._a_c00182{width:10.982400pt;}
._16_c00182{width:11.909333pt;}
._1_c00182{width:13.011893pt;}
._d_c00182{width:15.272000pt;}
._15_c00182{width:17.072480pt;}
._e_c00182{width:18.657600pt;}
._f_c00182{width:20.298720pt;}
._14_c00182{width:21.761280pt;}
._12_c00182{width:23.674560pt;}
._11_c00182{width:25.409280pt;}
._13_c00182{width:27.044160pt;}
._10_c00182{width:28.429440pt;}
._1c_c00182{width:35.330880pt;}
._18_c00182{width:37.440000pt;}
._17_c00182{width:38.700480pt;}
._1b_c00182{width:39.648960pt;}
._1a_c00182{width:41.077920pt;}
._19_c00182{width:42.981120pt;}
.fs5_c00182{font-size:28.800533pt;}
.fs7_c00182{font-size:51.733333pt;}
.fs3_c00182{font-size:55.466667pt;}
.fs6_c00182{font-size:58.666667pt;}
.fs1_c00182{font-size:61.333333pt;}
.fs2_c00182{font-size:62.400000pt;}
.fs4_c00182{font-size:64.533333pt;}
.fs0_c00182{font-size:65.066667pt;}
.y0_c00182{bottom:0.000000pt;}
.y21_c00182{bottom:65.280005pt;}
.y20_c00182{bottom:117.114005pt;}
.y1f_c00182{bottom:144.960005pt;}
.y1d_c00182{bottom:199.359339pt;}
.y1e_c00182{bottom:199.360005pt;}
.y1c_c00182{bottom:226.894939pt;}
.y1b_c00182{bottom:254.413339pt;}
.y1a_c00182{bottom:309.773339pt;}
.y19_c00182{bottom:366.418405pt;}
.y18_c00182{bottom:393.297205pt;}
.y17_c00182{bottom:420.794672pt;}
.y16_c00182{bottom:448.333339pt;}
.y15_c00182{bottom:475.841605pt;}
.y14_c00182{bottom:503.353605pt;}
.y13_c00182{bottom:530.560005pt;}
.y12_c00182{bottom:558.097205pt;}
.y11_c00182{bottom:585.603205pt;}
.y10_c00182{bottom:613.137205pt;}
.yf_c00182{bottom:640.640005pt;}
.ye_c00182{bottom:695.679339pt;}
.yc_c00182{bottom:723.204805pt;}
.yd_c00182{bottom:723.213339pt;}
.yb_c00182{bottom:751.050805pt;}
.ya_c00182{bottom:778.569205pt;}
.y9_c00182{bottom:805.760005pt;}
.y8_c00182{bottom:833.286939pt;}
.y7_c00182{bottom:860.493339pt;}
.y6_c00182{bottom:915.840005pt;}
.y5_c00182{bottom:942.080005pt;}
.y3_c00182{bottom:969.599339pt;}
.y4_c00182{bottom:969.600005pt;}
.y2_c00182{bottom:997.133339pt;}
.y1_c00182{bottom:1065.920005pt;}
.ha_c00182{height:50.773437pt;}
.h8_c00182{height:61.187500pt;}
.h3_c00182{height:61.242187pt;}
.h7_c00182{height:61.244854pt;}
.h5_c00182{height:61.263521pt;}
.h4_c00182{height:61.267788pt;}
.h6_c00182{height:63.335938pt;}
.h2_c00182{height:63.859375pt;}
.h9_c00182{height:63.992750pt;}
.h1_c00182{height:1122.666667pt;}
.h0_c00182{height:1122.880005pt;}
.w1_c00182{width:793.333333pt;}
.w0_c00182{width:793.599999pt;}
.x0_c00182{left:0.000000pt;}
.x12_c00182{left:102.923332pt;}
.x11_c00182{left:104.773332pt;}
.x10_c00182{left:105.746265pt;}
.xc_c00182{left:106.870132pt;}
.xb_c00182{left:107.969599pt;}
.x1_c00182{left:110.333332pt;}
.x18_c00182{left:150.866665pt;}
.x13_c00182{left:151.826665pt;}
.xf_c00182{left:153.426665pt;}
.x7_c00182{left:155.973332pt;}
.x2_c00182{left:157.773332pt;}
.x3_c00182{left:186.386665pt;}
.x4_c00182{left:211.933332pt;}
.x17_c00182{left:224.439999pt;}
.x19_c00182{left:375.106665pt;}
.x1a_c00182{left:406.253332pt;}
.x5_c00182{left:429.586665pt;}
.x6_c00182{left:454.213332pt;}
.x14_c00182{left:457.506665pt;}
.x15_c00182{left:486.559999pt;}
.xd_c00182{left:497.066665pt;}
.xe_c00182{left:514.533332pt;}
.x16_c00182{left:576.226665pt;}
.x8_c00182{left:615.613332pt;}
.x9_c00182{left:631.506665pt;}
.xa_c00182{left:657.386665pt;}
}





/* 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_c00183 {
    display:none;
  }
  .loading-indicator_c00183.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00183 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_c00183 { 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_c00183" -> "#page-container .classname_c00183")
 */
.pf_c00183 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00183 { /* 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_c00183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00183 { /* 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_c00183 { /* 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_c00183 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00183 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00183 {overflow:visible;}
  }
}
.c_c00183 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00183 { /* 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_c00183:after { /* webkit #35443 */
  content: '';
}
.t_c00183:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00183 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 */
}
.__c00183 { /* 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_c00183 { /* info for Javascript */
  display:none;
}
.l_c00183 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00183 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00183 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00183: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_c00183 {
    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_c00183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00183.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_c00183 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00183;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.311035;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_c00183;src:url('chunks/assets/font_02f7b6ffce65c4443e0df803.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.284180;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_c00183;src:url('chunks/assets/font_3e61b93fa8838d576a826b07.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.284668;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_c00183;src:url('chunks/assets/font_d13d97d851e5390f3712298c.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.284180;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_c00183;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff5_c00183{font-family:ff5_c00183;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;}
.m5_c00183{transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);}
.m1_c00183{transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);}
.m3_c00183{transform:matrix(0.169941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169941,0.000000,0.000000,0.250000,0,0);}
.m4_c00183{transform:matrix(0.200969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200969,0.000000,0.000000,0.250000,0,0);}
.mb_c00183{transform:matrix(0.231002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231002,0.000000,0.000000,0.250000,0,0);}
.mc_c00183{transform:matrix(0.236329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236329,0.000000,0.000000,0.250000,0,0);}
.ma_c00183{transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);}
.mf_c00183{transform:matrix(0.243327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243327,0.000000,0.000000,0.250000,0,0);}
.md_c00183{transform:matrix(0.243552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243552,0.000000,0.000000,0.250000,0,0);}
.m9_c00183{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m6_c00183{transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);}
.me_c00183{transform:matrix(0.248963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248963,0.000000,0.000000,0.250000,0,0);}
.m2_c00183{transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);}
.m0_c00183{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);}
.m7_c00183{transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);}
.m8_c00183{transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.v1_c00183{vertical-align:27.360000px;}
.ls7a_c00183{letter-spacing:-2.520000px;}
.ls96_c00183{letter-spacing:-2.491200px;}
.ls7c_c00183{letter-spacing:-2.478000px;}
.ls77_c00183{letter-spacing:-2.394000px;}
.ls79_c00183{letter-spacing:-2.373000px;}
.ls9a_c00183{letter-spacing:-1.835400px;}
.ls99_c00183{letter-spacing:-1.785600px;}
.ls85_c00183{letter-spacing:-1.701780px;}
.ls88_c00183{letter-spacing:-1.600080px;}
.ls71_c00183{letter-spacing:-1.410240px;}
.ls7e_c00183{letter-spacing:-1.403460px;}
.ls81_c00183{letter-spacing:-1.247520px;}
.ls8e_c00183{letter-spacing:-1.071240px;}
.ls92_c00183{letter-spacing:-1.044120px;}
.ls6f_c00183{letter-spacing:-1.037340px;}
.ls94_c00183{letter-spacing:-1.010220px;}
.ls98_c00183{letter-spacing:-0.928860px;}
.ls8d_c00183{letter-spacing:-0.867840px;}
.ls90_c00183{letter-spacing:-0.813600px;}
.ls80_c00183{letter-spacing:-0.589860px;}
.ls93_c00183{letter-spacing:-0.569520px;}
.ls70_c00183{letter-spacing:-0.352560px;}
.ls8a_c00183{letter-spacing:-0.298320px;}
.ls7d_c00183{letter-spacing:-0.264420px;}
.ls91_c00183{letter-spacing:-0.257640px;}
.ls87_c00183{letter-spacing:-0.244080px;}
.ls83_c00183{letter-spacing:-0.189840px;}
.ls76_c00183{letter-spacing:-0.176280px;}
.ls8f_c00183{letter-spacing:-0.142380px;}
.ls97_c00183{letter-spacing:-0.135600px;}
.ls78_c00183{letter-spacing:-0.128820px;}
.ls73_c00183{letter-spacing:-0.081360px;}
.ls6d_c00183{letter-spacing:-0.067800px;}
.ls72_c00183{letter-spacing:0.000000px;}
.ls6_c00183{letter-spacing:0.020340px;}
.ls4c_c00183{letter-spacing:0.033900px;}
.ls49_c00183{letter-spacing:0.040680px;}
.ls75_c00183{letter-spacing:0.061020px;}
.ls4d_c00183{letter-spacing:0.088140px;}
.ls86_c00183{letter-spacing:0.101700px;}
.ls62_c00183{letter-spacing:0.128820px;}
.ls51_c00183{letter-spacing:0.142380px;}
.ls1b_c00183{letter-spacing:0.149160px;}
.ls63_c00183{letter-spacing:0.189840px;}
.ls54_c00183{letter-spacing:0.230520px;}
.ls1c_c00183{letter-spacing:0.257640px;}
.ls7b_c00183{letter-spacing:0.291540px;}
.ls5e_c00183{letter-spacing:0.311880px;}
.ls6a_c00183{letter-spacing:0.339000px;}
.ls14_c00183{letter-spacing:0.379680px;}
.ls3a_c00183{letter-spacing:0.386460px;}
.ls65_c00183{letter-spacing:0.393240px;}
.ls55_c00183{letter-spacing:0.413580px;}
.ls3_c00183{letter-spacing:0.420360px;}
.ls28_c00183{letter-spacing:0.433920px;}
.ls40_c00183{letter-spacing:0.440700px;}
.ls61_c00183{letter-spacing:0.461040px;}
.ls8c_c00183{letter-spacing:0.467820px;}
.ls59_c00183{letter-spacing:0.474600px;}
.ls5b_c00183{letter-spacing:0.494940px;}
.ls22_c00183{letter-spacing:0.501720px;}
.ls84_c00183{letter-spacing:0.508500px;}
.ls46_c00183{letter-spacing:0.528840px;}
.ls2a_c00183{letter-spacing:0.535620px;}
.ls2f_c00183{letter-spacing:0.569520px;}
.ls0_c00183{letter-spacing:0.583080px;}
.ls1_c00183{letter-spacing:0.603420px;}
.ls56_c00183{letter-spacing:0.610200px;}
.ls6b_c00183{letter-spacing:0.623760px;}
.ls1a_c00183{letter-spacing:0.630540px;}
.ls5a_c00183{letter-spacing:0.637320px;}
.ls52_c00183{letter-spacing:0.678000px;}
.ls6e_c00183{letter-spacing:0.691560px;}
.ls5d_c00183{letter-spacing:0.698340px;}
.ls27_c00183{letter-spacing:0.705120px;}
.ls67_c00183{letter-spacing:0.745800px;}
.ls31_c00183{letter-spacing:0.752580px;}
.ls4b_c00183{letter-spacing:0.766140px;}
.ls4f_c00183{letter-spacing:0.772920px;}
.ls24_c00183{letter-spacing:0.779700px;}
.ls1d_c00183{letter-spacing:0.800040px;}
.ls60_c00183{letter-spacing:0.820380px;}
.ls64_c00183{letter-spacing:0.827160px;}
.ls4a_c00183{letter-spacing:0.833940px;}
.ls5_c00183{letter-spacing:0.854280px;}
.ls3e_c00183{letter-spacing:0.867840px;}
.ls1f_c00183{letter-spacing:0.881400px;}
.ls47_c00183{letter-spacing:0.894960px;}
.ls11_c00183{letter-spacing:0.915300px;}
.lsc_c00183{letter-spacing:0.928860px;}
.ls37_c00183{letter-spacing:0.935640px;}
.ls10_c00183{letter-spacing:0.942420px;}
.ls18_c00183{letter-spacing:0.949200px;}
.ls36_c00183{letter-spacing:0.962760px;}
.ls21_c00183{letter-spacing:0.969540px;}
.ls41_c00183{letter-spacing:0.976320px;}
.ls3d_c00183{letter-spacing:0.983100px;}
.ls38_c00183{letter-spacing:0.989880px;}
.lsd_c00183{letter-spacing:0.996660px;}
.ls33_c00183{letter-spacing:1.010220px;}
.ls6c_c00183{letter-spacing:1.034880px;}
.ls34_c00183{letter-spacing:1.037340px;}
.ls3c_c00183{letter-spacing:1.044120px;}
.ls68_c00183{letter-spacing:1.050900px;}
.ls8b_c00183{letter-spacing:1.064460px;}
.ls17_c00183{letter-spacing:1.105140px;}
.ls42_c00183{letter-spacing:1.125480px;}
.ls26_c00183{letter-spacing:1.132260px;}
.lsf_c00183{letter-spacing:1.139040px;}
.ls35_c00183{letter-spacing:1.145820px;}
.ls5c_c00183{letter-spacing:1.152600px;}
.ls32_c00183{letter-spacing:1.166160px;}
.ls48_c00183{letter-spacing:1.172940px;}
.ls82_c00183{letter-spacing:1.179720px;}
.ls3b_c00183{letter-spacing:1.193280px;}
.ls39_c00183{letter-spacing:1.200060px;}
.ls15_c00183{letter-spacing:1.213620px;}
.ls43_c00183{letter-spacing:1.220400px;}
.ls7f_c00183{letter-spacing:1.227180px;}
.ls2d_c00183{letter-spacing:1.240740px;}
.lse_c00183{letter-spacing:1.267860px;}
.ls25_c00183{letter-spacing:1.294980px;}
.ls58_c00183{letter-spacing:1.322100px;}
.ls69_c00183{letter-spacing:1.383120px;}
.ls1e_c00183{letter-spacing:1.396680px;}
.ls74_c00183{letter-spacing:1.403460px;}
.ls95_c00183{letter-spacing:1.410240px;}
.ls20_c00183{letter-spacing:1.423800px;}
.ls2c_c00183{letter-spacing:1.437360px;}
.ls3f_c00183{letter-spacing:1.444140px;}
.ls2e_c00183{letter-spacing:1.450920px;}
.ls57_c00183{letter-spacing:1.464480px;}
.ls19_c00183{letter-spacing:1.478040px;}
.ls29_c00183{letter-spacing:1.484820px;}
.ls16_c00183{letter-spacing:1.505160px;}
.ls7_c00183{letter-spacing:1.511940px;}
.ls5f_c00183{letter-spacing:1.593300px;}
.ls45_c00183{letter-spacing:1.613640px;}
.ls44_c00183{letter-spacing:1.640760px;}
.ls4e_c00183{letter-spacing:1.661100px;}
.lsb_c00183{letter-spacing:1.674660px;}
.ls50_c00183{letter-spacing:1.742460px;}
.ls13_c00183{letter-spacing:1.762800px;}
.ls66_c00183{letter-spacing:1.871280px;}
.ls4_c00183{letter-spacing:1.932300px;}
.ls9_c00183{letter-spacing:1.966200px;}
.ls23_c00183{letter-spacing:2.162820px;}
.ls2b_c00183{letter-spacing:2.203500px;}
.ls2_c00183{letter-spacing:2.223840px;}
.ls53_c00183{letter-spacing:2.230620px;}
.ls12_c00183{letter-spacing:2.800140px;}
.lsa_c00183{letter-spacing:2.881500px;}
.ls8_c00183{letter-spacing:3.356100px;}
.ls30_c00183{letter-spacing:3.376440px;}
.ls89_c00183{letter-spacing:3.390000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{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__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00183{word-spacing:-16.705920px;}
.ws1_c00183{word-spacing:-0.228960px;}
.ws6_c00183{word-spacing:0.000000px;}
.ws3_c00183{word-spacing:5.085000px;}
.ws2_c00183{word-spacing:5.410440px;}
.ws0_c00183{word-spacing:13.445580px;}
.ws5_c00183{word-spacing:16.625580px;}
._12_c00183{margin-left:-6.230820px;}
._15_c00183{margin-left:-5.193720px;}
._f_c00183{margin-left:-2.576400px;}
._11_c00183{margin-left:-1.125480px;}
._10_c00183{width:1.172940px;}
._6_c00183{width:2.678100px;}
._5_c00183{width:4.257840px;}
._1_c00183{width:6.237600px;}
._3_c00183{width:8.102100px;}
._14_c00183{width:9.668280px;}
._4_c00183{width:10.983600px;}
._13_c00183{width:12.515880px;}
._2_c00183{width:13.912560px;}
._0_c00183{width:15.097320px;}
._9_c00183{width:16.414380px;}
._e_c00183{width:20.710440px;}
._8_c00183{width:22.238400px;}
._a_c00183{width:23.436000px;}
._7_c00183{width:24.491820px;}
._c_c00183{width:26.821680px;}
._b_c00183{width:29.154000px;}
._d_c00183{width:31.097400px;}
.fc0_c00183{color:transparent;}
.fs5_c00183{font-size:32.400600px;}
.fs6_c00183{font-size:57.000000px;}
.fs0_c00183{font-size:58.800000px;}
.fs1_c00183{font-size:67.800000px;}
.fs2_c00183{font-size:68.400000px;}
.fs4_c00183{font-size:70.800000px;}
.fs3_c00183{font-size:72.000000px;}
.y0_c00183{bottom:0.000000px;}
.y24_c00183{bottom:70.575015px;}
.y23_c00183{bottom:139.695015px;}
.y21_c00183{bottom:169.913565px;}
.y22_c00183{bottom:169.920015px;}
.y20_c00183{bottom:231.120015px;}
.y1f_c00183{bottom:231.123765px;}
.y1e_c00183{bottom:261.735465px;}
.y1d_c00183{bottom:323.297865px;}
.y1c_c00183{bottom:353.892615px;}
.y1b_c00183{bottom:415.455015px;}
.y1a_c00183{bottom:415.460265px;}
.y18_c00183{bottom:446.049315px;}
.y19_c00183{bottom:446.055015px;}
.y17_c00183{bottom:477.000015px;}
.y16_c00183{bottom:477.003765px;}
.y15_c00183{bottom:539.295015px;}
.y14_c00183{bottom:569.895015px;}
.y13_c00183{bottom:569.914815px;}
.y12_c00183{bottom:600.492615px;}
.y11_c00183{bottom:631.087365px;}
.y10_c00183{bottom:662.055015px;}
.ye_c00183{bottom:724.677765px;}
.yf_c00183{bottom:724.680015px;}
.yc_c00183{bottom:757.812615px;}
.yd_c00183{bottom:757.815015px;}
.yb_c00183{bottom:790.560015px;}
.ya_c00183{bottom:790.571265px;}
.y9_c00183{bottom:839.895765px;}
.y8_c00183{bottom:870.490515px;}
.y7_c00183{bottom:901.102215px;}
.y6_c00183{bottom:931.676865px;}
.y5_c00183{bottom:993.256215px;}
.y4_c00183{bottom:1023.834015px;}
.y3_c00183{bottom:1085.769315px;}
.y2_c00183{bottom:1116.720015px;}
.y1_c00183{bottom:1192.335015px;}
.hc_c00183{height:55.942383px;}
.h2_c00183{height:59.259375px;}
.ha_c00183{height:66.508887px;}
.h9_c00183{height:66.526992px;}
.h3_c00183{height:66.541992px;}
.h7_c00183{height:66.550992px;}
.h4_c00183{height:66.554592px;}
.h5_c00183{height:67.130859px;}
.h8_c00183{height:69.486328px;}
.h6_c00183{height:70.664062px;}
.hb_c00183{height:70.713281px;}
.h1_c00183{height:1263.000000px;}
.h0_c00183{height:1263.240015px;}
.w1_c00183{width:892.500000px;}
.w0_c00183{width:892.800015px;}
.x0_c00183{left:0.000000px;}
.xf_c00183{left:122.981865px;}
.x1_c00183{left:124.125015px;}
.x1b_c00183{left:174.498765px;}
.x4_c00183{left:175.619265px;}
.x2_c00183{left:177.645015px;}
.x7_c00183{left:249.615015px;}
.x14_c00183{left:258.030015px;}
.x8_c00183{left:272.100015px;}
.x15_c00183{left:281.805015px;}
.x1c_c00183{left:287.445015px;}
.x1a_c00183{left:296.284515px;}
.xe_c00183{left:301.980015px;}
.x9_c00183{left:305.145015px;}
.x1d_c00183{left:332.565015px;}
.x16_c00183{left:346.140015px;}
.x17_c00183{left:363.885015px;}
.x1e_c00183{left:389.970015px;}
.x3_c00183{left:400.003365px;}
.x23_c00183{left:422.865015px;}
.x5_c00183{left:437.340015px;}
.x10_c00183{left:441.195015px;}
.xa_c00183{left:453.540015px;}
.x11_c00183{left:462.450015px;}
.x1f_c00183{left:466.665015px;}
.x6_c00183{left:469.710015px;}
.xb_c00183{left:485.820015px;}
.x20_c00183{left:491.970015px;}
.x21_c00183{left:526.830015px;}
.x22_c00183{left:544.125015px;}
.x18_c00183{left:594.270015px;}
.x19_c00183{left:616.965015px;}
.x12_c00183{left:657.570015px;}
.xc_c00183{left:674.160015px;}
.x13_c00183{left:677.775015px;}
.xd_c00183{left:707.940015px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.v1_c00183{vertical-align:24.320000pt;}
.ls7a_c00183{letter-spacing:-2.240000pt;}
.ls96_c00183{letter-spacing:-2.214400pt;}
.ls7c_c00183{letter-spacing:-2.202667pt;}
.ls77_c00183{letter-spacing:-2.128000pt;}
.ls79_c00183{letter-spacing:-2.109333pt;}
.ls9a_c00183{letter-spacing:-1.631467pt;}
.ls99_c00183{letter-spacing:-1.587200pt;}
.ls85_c00183{letter-spacing:-1.512693pt;}
.ls88_c00183{letter-spacing:-1.422293pt;}
.ls71_c00183{letter-spacing:-1.253547pt;}
.ls7e_c00183{letter-spacing:-1.247520pt;}
.ls81_c00183{letter-spacing:-1.108907pt;}
.ls8e_c00183{letter-spacing:-0.952213pt;}
.ls92_c00183{letter-spacing:-0.928107pt;}
.ls6f_c00183{letter-spacing:-0.922080pt;}
.ls94_c00183{letter-spacing:-0.897973pt;}
.ls98_c00183{letter-spacing:-0.825653pt;}
.ls8d_c00183{letter-spacing:-0.771413pt;}
.ls90_c00183{letter-spacing:-0.723200pt;}
.ls80_c00183{letter-spacing:-0.524320pt;}
.ls93_c00183{letter-spacing:-0.506240pt;}
.ls70_c00183{letter-spacing:-0.313387pt;}
.ls8a_c00183{letter-spacing:-0.265173pt;}
.ls7d_c00183{letter-spacing:-0.235040pt;}
.ls91_c00183{letter-spacing:-0.229013pt;}
.ls87_c00183{letter-spacing:-0.216960pt;}
.ls83_c00183{letter-spacing:-0.168747pt;}
.ls76_c00183{letter-spacing:-0.156693pt;}
.ls8f_c00183{letter-spacing:-0.126560pt;}
.ls97_c00183{letter-spacing:-0.120533pt;}
.ls78_c00183{letter-spacing:-0.114507pt;}
.ls73_c00183{letter-spacing:-0.072320pt;}
.ls6d_c00183{letter-spacing:-0.060267pt;}
.ls72_c00183{letter-spacing:0.000000pt;}
.ls6_c00183{letter-spacing:0.018080pt;}
.ls4c_c00183{letter-spacing:0.030133pt;}
.ls49_c00183{letter-spacing:0.036160pt;}
.ls75_c00183{letter-spacing:0.054240pt;}
.ls4d_c00183{letter-spacing:0.078347pt;}
.ls86_c00183{letter-spacing:0.090400pt;}
.ls62_c00183{letter-spacing:0.114507pt;}
.ls51_c00183{letter-spacing:0.126560pt;}
.ls1b_c00183{letter-spacing:0.132587pt;}
.ls63_c00183{letter-spacing:0.168747pt;}
.ls54_c00183{letter-spacing:0.204907pt;}
.ls1c_c00183{letter-spacing:0.229013pt;}
.ls7b_c00183{letter-spacing:0.259147pt;}
.ls5e_c00183{letter-spacing:0.277227pt;}
.ls6a_c00183{letter-spacing:0.301333pt;}
.ls14_c00183{letter-spacing:0.337493pt;}
.ls3a_c00183{letter-spacing:0.343520pt;}
.ls65_c00183{letter-spacing:0.349547pt;}
.ls55_c00183{letter-spacing:0.367627pt;}
.ls3_c00183{letter-spacing:0.373653pt;}
.ls28_c00183{letter-spacing:0.385707pt;}
.ls40_c00183{letter-spacing:0.391733pt;}
.ls61_c00183{letter-spacing:0.409813pt;}
.ls8c_c00183{letter-spacing:0.415840pt;}
.ls59_c00183{letter-spacing:0.421867pt;}
.ls5b_c00183{letter-spacing:0.439947pt;}
.ls22_c00183{letter-spacing:0.445973pt;}
.ls84_c00183{letter-spacing:0.452000pt;}
.ls46_c00183{letter-spacing:0.470080pt;}
.ls2a_c00183{letter-spacing:0.476107pt;}
.ls2f_c00183{letter-spacing:0.506240pt;}
.ls0_c00183{letter-spacing:0.518293pt;}
.ls1_c00183{letter-spacing:0.536373pt;}
.ls56_c00183{letter-spacing:0.542400pt;}
.ls6b_c00183{letter-spacing:0.554453pt;}
.ls1a_c00183{letter-spacing:0.560480pt;}
.ls5a_c00183{letter-spacing:0.566507pt;}
.ls52_c00183{letter-spacing:0.602667pt;}
.ls6e_c00183{letter-spacing:0.614720pt;}
.ls5d_c00183{letter-spacing:0.620747pt;}
.ls27_c00183{letter-spacing:0.626773pt;}
.ls67_c00183{letter-spacing:0.662933pt;}
.ls31_c00183{letter-spacing:0.668960pt;}
.ls4b_c00183{letter-spacing:0.681013pt;}
.ls4f_c00183{letter-spacing:0.687040pt;}
.ls24_c00183{letter-spacing:0.693067pt;}
.ls1d_c00183{letter-spacing:0.711147pt;}
.ls60_c00183{letter-spacing:0.729227pt;}
.ls64_c00183{letter-spacing:0.735253pt;}
.ls4a_c00183{letter-spacing:0.741280pt;}
.ls5_c00183{letter-spacing:0.759360pt;}
.ls3e_c00183{letter-spacing:0.771413pt;}
.ls1f_c00183{letter-spacing:0.783467pt;}
.ls47_c00183{letter-spacing:0.795520pt;}
.ls11_c00183{letter-spacing:0.813600pt;}
.lsc_c00183{letter-spacing:0.825653pt;}
.ls37_c00183{letter-spacing:0.831680pt;}
.ls10_c00183{letter-spacing:0.837707pt;}
.ls18_c00183{letter-spacing:0.843733pt;}
.ls36_c00183{letter-spacing:0.855787pt;}
.ls21_c00183{letter-spacing:0.861813pt;}
.ls41_c00183{letter-spacing:0.867840pt;}
.ls3d_c00183{letter-spacing:0.873867pt;}
.ls38_c00183{letter-spacing:0.879893pt;}
.lsd_c00183{letter-spacing:0.885920pt;}
.ls33_c00183{letter-spacing:0.897973pt;}
.ls6c_c00183{letter-spacing:0.919893pt;}
.ls34_c00183{letter-spacing:0.922080pt;}
.ls3c_c00183{letter-spacing:0.928107pt;}
.ls68_c00183{letter-spacing:0.934133pt;}
.ls8b_c00183{letter-spacing:0.946187pt;}
.ls17_c00183{letter-spacing:0.982347pt;}
.ls42_c00183{letter-spacing:1.000427pt;}
.ls26_c00183{letter-spacing:1.006453pt;}
.lsf_c00183{letter-spacing:1.012480pt;}
.ls35_c00183{letter-spacing:1.018507pt;}
.ls5c_c00183{letter-spacing:1.024533pt;}
.ls32_c00183{letter-spacing:1.036587pt;}
.ls48_c00183{letter-spacing:1.042613pt;}
.ls82_c00183{letter-spacing:1.048640pt;}
.ls3b_c00183{letter-spacing:1.060693pt;}
.ls39_c00183{letter-spacing:1.066720pt;}
.ls15_c00183{letter-spacing:1.078773pt;}
.ls43_c00183{letter-spacing:1.084800pt;}
.ls7f_c00183{letter-spacing:1.090827pt;}
.ls2d_c00183{letter-spacing:1.102880pt;}
.lse_c00183{letter-spacing:1.126987pt;}
.ls25_c00183{letter-spacing:1.151093pt;}
.ls58_c00183{letter-spacing:1.175200pt;}
.ls69_c00183{letter-spacing:1.229440pt;}
.ls1e_c00183{letter-spacing:1.241493pt;}
.ls74_c00183{letter-spacing:1.247520pt;}
.ls95_c00183{letter-spacing:1.253547pt;}
.ls20_c00183{letter-spacing:1.265600pt;}
.ls2c_c00183{letter-spacing:1.277653pt;}
.ls3f_c00183{letter-spacing:1.283680pt;}
.ls2e_c00183{letter-spacing:1.289707pt;}
.ls57_c00183{letter-spacing:1.301760pt;}
.ls19_c00183{letter-spacing:1.313813pt;}
.ls29_c00183{letter-spacing:1.319840pt;}
.ls16_c00183{letter-spacing:1.337920pt;}
.ls7_c00183{letter-spacing:1.343947pt;}
.ls5f_c00183{letter-spacing:1.416267pt;}
.ls45_c00183{letter-spacing:1.434347pt;}
.ls44_c00183{letter-spacing:1.458453pt;}
.ls4e_c00183{letter-spacing:1.476533pt;}
.lsb_c00183{letter-spacing:1.488587pt;}
.ls50_c00183{letter-spacing:1.548853pt;}
.ls13_c00183{letter-spacing:1.566933pt;}
.ls66_c00183{letter-spacing:1.663360pt;}
.ls4_c00183{letter-spacing:1.717600pt;}
.ls9_c00183{letter-spacing:1.747733pt;}
.ls23_c00183{letter-spacing:1.922507pt;}
.ls2b_c00183{letter-spacing:1.958667pt;}
.ls2_c00183{letter-spacing:1.976747pt;}
.ls53_c00183{letter-spacing:1.982773pt;}
.ls12_c00183{letter-spacing:2.489013pt;}
.lsa_c00183{letter-spacing:2.561333pt;}
.ls8_c00183{letter-spacing:2.983200pt;}
.ls30_c00183{letter-spacing:3.001280pt;}
.ls89_c00183{letter-spacing:3.013333pt;}
.ws4_c00183{word-spacing:-14.849707pt;}
.ws1_c00183{word-spacing:-0.203520pt;}
.ws6_c00183{word-spacing:0.000000pt;}
.ws3_c00183{word-spacing:4.520000pt;}
.ws2_c00183{word-spacing:4.809280pt;}
.ws0_c00183{word-spacing:11.951627pt;}
.ws5_c00183{word-spacing:14.778293pt;}
._12_c00183{margin-left:-5.538507pt;}
._15_c00183{margin-left:-4.616640pt;}
._f_c00183{margin-left:-2.290133pt;}
._11_c00183{margin-left:-1.000427pt;}
._10_c00183{width:1.042613pt;}
._6_c00183{width:2.380533pt;}
._5_c00183{width:3.784747pt;}
._1_c00183{width:5.544533pt;}
._3_c00183{width:7.201867pt;}
._14_c00183{width:8.594027pt;}
._4_c00183{width:9.763200pt;}
._13_c00183{width:11.125227pt;}
._2_c00183{width:12.366720pt;}
._0_c00183{width:13.419840pt;}
._9_c00183{width:14.590560pt;}
._e_c00183{width:18.409280pt;}
._8_c00183{width:19.767467pt;}
._a_c00183{width:20.832000pt;}
._7_c00183{width:21.770507pt;}
._c_c00183{width:23.841493pt;}
._b_c00183{width:25.914667pt;}
._d_c00183{width:27.642133pt;}
.fs5_c00183{font-size:28.800533pt;}
.fs6_c00183{font-size:50.666667pt;}
.fs0_c00183{font-size:52.266667pt;}
.fs1_c00183{font-size:60.266667pt;}
.fs2_c00183{font-size:60.800000pt;}
.fs4_c00183{font-size:62.933333pt;}
.fs3_c00183{font-size:64.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y24_c00183{bottom:62.733347pt;}
.y23_c00183{bottom:124.173347pt;}
.y21_c00183{bottom:151.034280pt;}
.y22_c00183{bottom:151.040013pt;}
.y20_c00183{bottom:205.440013pt;}
.y1f_c00183{bottom:205.443347pt;}
.y1e_c00183{bottom:232.653747pt;}
.y1d_c00183{bottom:287.375880pt;}
.y1c_c00183{bottom:314.571213pt;}
.y1b_c00183{bottom:369.293347pt;}
.y1a_c00183{bottom:369.298013pt;}
.y18_c00183{bottom:396.488280pt;}
.y19_c00183{bottom:396.493347pt;}
.y17_c00183{bottom:424.000013pt;}
.y16_c00183{bottom:424.003347pt;}
.y15_c00183{bottom:479.373347pt;}
.y14_c00183{bottom:506.573347pt;}
.y13_c00183{bottom:506.590947pt;}
.y12_c00183{bottom:533.771213pt;}
.y11_c00183{bottom:560.966547pt;}
.y10_c00183{bottom:588.493347pt;}
.ye_c00183{bottom:644.158013pt;}
.yf_c00183{bottom:644.160013pt;}
.yc_c00183{bottom:673.611213pt;}
.yd_c00183{bottom:673.613347pt;}
.yb_c00183{bottom:702.720013pt;}
.ya_c00183{bottom:702.730013pt;}
.y9_c00183{bottom:746.574013pt;}
.y8_c00183{bottom:773.769347pt;}
.y7_c00183{bottom:800.979747pt;}
.y6_c00183{bottom:828.157213pt;}
.y5_c00183{bottom:882.894413pt;}
.y4_c00183{bottom:910.074680pt;}
.y3_c00183{bottom:965.128280pt;}
.y2_c00183{bottom:992.640013pt;}
.y1_c00183{bottom:1059.853347pt;}
.hc_c00183{height:49.726562pt;}
.h2_c00183{height:52.675000pt;}
.ha_c00183{height:59.119010pt;}
.h9_c00183{height:59.135104pt;}
.h3_c00183{height:59.148438pt;}
.h7_c00183{height:59.156438pt;}
.h4_c00183{height:59.159637pt;}
.h5_c00183{height:59.671875pt;}
.h8_c00183{height:61.765625pt;}
.h6_c00183{height:62.812500pt;}
.hb_c00183{height:62.856250pt;}
.h1_c00183{height:1122.666667pt;}
.h0_c00183{height:1122.880013pt;}
.w1_c00183{width:793.333333pt;}
.w0_c00183{width:793.600013pt;}
.x0_c00183{left:0.000000pt;}
.xf_c00183{left:109.317213pt;}
.x1_c00183{left:110.333347pt;}
.x1b_c00183{left:155.110013pt;}
.x4_c00183{left:156.106013pt;}
.x2_c00183{left:157.906680pt;}
.x7_c00183{left:221.880013pt;}
.x14_c00183{left:229.360013pt;}
.x8_c00183{left:241.866680pt;}
.x15_c00183{left:250.493347pt;}
.x1c_c00183{left:255.506680pt;}
.x1a_c00183{left:263.364013pt;}
.xe_c00183{left:268.426680pt;}
.x9_c00183{left:271.240013pt;}
.x1d_c00183{left:295.613347pt;}
.x16_c00183{left:307.680013pt;}
.x17_c00183{left:323.453347pt;}
.x1e_c00183{left:346.640013pt;}
.x3_c00183{left:355.558547pt;}
.x23_c00183{left:375.880013pt;}
.x5_c00183{left:388.746680pt;}
.x10_c00183{left:392.173347pt;}
.xa_c00183{left:403.146680pt;}
.x11_c00183{left:411.066680pt;}
.x1f_c00183{left:414.813347pt;}
.x6_c00183{left:417.520013pt;}
.xb_c00183{left:431.840013pt;}
.x20_c00183{left:437.306680pt;}
.x21_c00183{left:468.293347pt;}
.x22_c00183{left:483.666680pt;}
.x18_c00183{left:528.240013pt;}
.x19_c00183{left:548.413347pt;}
.x12_c00183{left:584.506680pt;}
.xc_c00183{left:599.253347pt;}
.x13_c00183{left:602.466680pt;}
.xd_c00183{left:629.280013pt;}
}





/* 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_c00184 {
    display:none;
  }
  .loading-indicator_c00184.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00184 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_c00184 { 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_c00184" -> "#page-container .classname_c00184")
 */
.pf_c00184 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00184 { /* 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_c00184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00184 { /* 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_c00184 { /* 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_c00184 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00184 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00184 {overflow:visible;}
  }
}
.c_c00184 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00184 { /* 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_c00184:after { /* webkit #35443 */
  content: '';
}
.t_c00184:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00184 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 */
}
.__c00184 { /* 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_c00184 { /* info for Javascript */
  display:none;
}
.l_c00184 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00184 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00184 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00184: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_c00184 {
    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_c00184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00184.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_c00184 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00184;src:url('chunks/assets/font_31241ad77640ffde16dec0db.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.284668;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_c00184;src:url('chunks/assets/font_ba09d10086a57e1f23e87073.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.284180;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_c00184;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;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:ff4_c00184;src:url('chunks/assets/font_c19d2fc78d4a82d90d7782e3.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;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:ff5_c00184;src:url('chunks/assets/font_a86061b2a9d1c966aecd58d7.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;line-height:0.666000;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_c00184;src:url('chunks/assets/font_d772a1260cdfb8ef819a4adb.woff2')format("woff");}.ff6_c00184{font-family:ff6_c00184;line-height:1.284180;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_c00184;src:url('chunks/assets/font_e2e79d3c13b43d97b30a7379.woff2')format("woff");}.ff7_c00184{font-family:ff7_c00184;line-height:1.311035;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;}
.me_c00184{transform:matrix(0.135526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135526,0.000000,0.000000,0.250000,0,0);}
.m10_c00184{transform:matrix(0.165092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165092,0.000000,0.000000,0.250000,0,0);}
.m5_c00184{transform:matrix(0.175689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175689,0.000000,0.000000,0.250000,0,0);}
.m11_c00184{transform:matrix(0.217658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217658,0.000000,0.000000,0.250000,0,0);}
.mf_c00184{transform:matrix(0.221485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221485,0.000000,0.000000,0.250000,0,0);}
.m6_c00184{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m7_c00184{transform:matrix(0.231532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231532,0.000000,0.000000,0.250000,0,0);}
.mc_c00184{transform:matrix(0.233877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233877,0.000000,0.000000,0.250000,0,0);}
.m12_c00184{transform:matrix(0.235971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235971,0.000000,0.000000,0.250000,0,0);}
.m2_c00184{transform:matrix(0.239378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239378,0.000000,0.000000,0.250000,0,0);}
.md_c00184{transform:matrix(0.240459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240459,0.000000,0.000000,0.250000,0,0);}
.mb_c00184{transform:matrix(0.244292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244292,0.000000,0.000000,0.250000,0,0);}
.m1_c00184{transform:matrix(0.245209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245209,0.000000,0.000000,0.250000,0,0);}
.m8_c00184{transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);}
.m3_c00184{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m9_c00184{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m0_c00184{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);}
.ma_c00184{transform:matrix(0.256351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256351,0.000000,0.000000,0.250000,0,0);}
.m4_c00184{transform:matrix(0.282287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282287,0.000000,0.000000,0.250000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls9e_c00184{letter-spacing:-2.562000px;}
.ls9d_c00184{letter-spacing:-2.520000px;}
.ls68_c00184{letter-spacing:-2.436000px;}
.ls76_c00184{letter-spacing:-2.415000px;}
.ls89_c00184{letter-spacing:-2.394000px;}
.ls8a_c00184{letter-spacing:-2.317680px;}
.ls69_c00184{letter-spacing:-2.234160px;}
.ls95_c00184{letter-spacing:-2.192400px;}
.ls9c_c00184{letter-spacing:-2.116800px;}
.ls7f_c00184{letter-spacing:-1.976640px;}
.ls77_c00184{letter-spacing:-1.823520px;}
.ls67_c00184{letter-spacing:-1.774800px;}
.ls75_c00184{letter-spacing:-1.649520px;}
.ls82_c00184{letter-spacing:-1.531200px;}
.ls80_c00184{letter-spacing:-1.475520px;}
.ls6a_c00184{letter-spacing:-1.468560px;}
.ls7a_c00184{letter-spacing:-1.218000px;}
.ls64_c00184{letter-spacing:-1.190160px;}
.ls87_c00184{letter-spacing:-1.176240px;}
.ls8d_c00184{letter-spacing:-1.169280px;}
.ls83_c00184{letter-spacing:-0.939600px;}
.ls96_c00184{letter-spacing:-0.800400px;}
.ls8f_c00184{letter-spacing:-0.758640px;}
.ls97_c00184{letter-spacing:-0.702960px;}
.ls8c_c00184{letter-spacing:-0.689040px;}
.ls98_c00184{letter-spacing:-0.619440px;}
.lsa0_c00184{letter-spacing:-0.529620px;}
.ls7b_c00184{letter-spacing:-0.452400px;}
.ls72_c00184{letter-spacing:-0.396720px;}
.ls92_c00184{letter-spacing:-0.382800px;}
.ls88_c00184{letter-spacing:-0.368880px;}
.ls91_c00184{letter-spacing:-0.361920px;}
.ls71_c00184{letter-spacing:-0.341040px;}
.ls99_c00184{letter-spacing:-0.334080px;}
.ls66_c00184{letter-spacing:-0.320160px;}
.ls8b_c00184{letter-spacing:-0.257520px;}
.ls70_c00184{letter-spacing:-0.208800px;}
.ls65_c00184{letter-spacing:-0.187920px;}
.ls79_c00184{letter-spacing:-0.180960px;}
.ls7c_c00184{letter-spacing:-0.167040px;}
.ls90_c00184{letter-spacing:-0.139200px;}
.ls7e_c00184{letter-spacing:-0.104400px;}
.ls6e_c00184{letter-spacing:-0.090480px;}
.ls7d_c00184{letter-spacing:-0.062640px;}
.ls6f_c00184{letter-spacing:-0.055680px;}
.ls6b_c00184{letter-spacing:-0.027840px;}
.ls8e_c00184{letter-spacing:-0.020880px;}
.ls6d_c00184{letter-spacing:-0.013920px;}
.ls6c_c00184{letter-spacing:0.000000px;}
.ls21_c00184{letter-spacing:0.006960px;}
.ls9f_c00184{letter-spacing:0.027840px;}
.ls3_c00184{letter-spacing:0.041760px;}
.ls51_c00184{letter-spacing:0.062640px;}
.ls18_c00184{letter-spacing:0.083520px;}
.ls23_c00184{letter-spacing:0.097440px;}
.ls8_c00184{letter-spacing:0.104400px;}
.lsd_c00184{letter-spacing:0.118320px;}
.ls78_c00184{letter-spacing:0.125280px;}
.ls9a_c00184{letter-spacing:0.146160px;}
.ls47_c00184{letter-spacing:0.153120px;}
.ls4a_c00184{letter-spacing:0.174000px;}
.ls17_c00184{letter-spacing:0.180960px;}
.ls74_c00184{letter-spacing:0.187920px;}
.ls1e_c00184{letter-spacing:0.194880px;}
.ls54_c00184{letter-spacing:0.201840px;}
.ls1d_c00184{letter-spacing:0.208800px;}
.ls2b_c00184{letter-spacing:0.215760px;}
.ls36_c00184{letter-spacing:0.222720px;}
.ls49_c00184{letter-spacing:0.229680px;}
.ls6_c00184{letter-spacing:0.236640px;}
.ls5b_c00184{letter-spacing:0.257520px;}
.ls50_c00184{letter-spacing:0.264480px;}
.ls2_c00184{letter-spacing:0.271440px;}
.ls2e_c00184{letter-spacing:0.278400px;}
.ls22_c00184{letter-spacing:0.285360px;}
.lsc_c00184{letter-spacing:0.299280px;}
.ls1b_c00184{letter-spacing:0.306240px;}
.ls93_c00184{letter-spacing:0.320160px;}
.ls5a_c00184{letter-spacing:0.327120px;}
.ls20_c00184{letter-spacing:0.334080px;}
.ls32_c00184{letter-spacing:0.348000px;}
.ls34_c00184{letter-spacing:0.354960px;}
.ls16_c00184{letter-spacing:0.361920px;}
.ls2c_c00184{letter-spacing:0.368880px;}
.ls19_c00184{letter-spacing:0.375840px;}
.ls35_c00184{letter-spacing:0.382800px;}
.ls7_c00184{letter-spacing:0.403680px;}
.ls4d_c00184{letter-spacing:0.410640px;}
.ls2a_c00184{letter-spacing:0.424560px;}
.ls42_c00184{letter-spacing:0.438480px;}
.ls38_c00184{letter-spacing:0.452400px;}
.ls11_c00184{letter-spacing:0.459360px;}
.ls94_c00184{letter-spacing:0.466320px;}
.ls2f_c00184{letter-spacing:0.494160px;}
.ls5f_c00184{letter-spacing:0.501120px;}
.ls59_c00184{letter-spacing:0.508080px;}
.ls3b_c00184{letter-spacing:0.522000px;}
.lsf_c00184{letter-spacing:0.535920px;}
.ls29_c00184{letter-spacing:0.542880px;}
.ls4b_c00184{letter-spacing:0.549840px;}
.ls9_c00184{letter-spacing:0.563760px;}
.ls37_c00184{letter-spacing:0.570720px;}
.ls31_c00184{letter-spacing:0.605520px;}
.ls33_c00184{letter-spacing:0.612480px;}
.ls3d_c00184{letter-spacing:0.619440px;}
.ls3f_c00184{letter-spacing:0.626400px;}
.ls10_c00184{letter-spacing:0.640320px;}
.ls58_c00184{letter-spacing:0.647280px;}
.lsa_c00184{letter-spacing:0.696000px;}
.ls39_c00184{letter-spacing:0.709920px;}
.ls5c_c00184{letter-spacing:0.723840px;}
.ls15_c00184{letter-spacing:0.730800px;}
.lse_c00184{letter-spacing:0.737760px;}
.ls86_c00184{letter-spacing:0.745800px;}
.ls5_c00184{letter-spacing:0.751680px;}
.ls14_c00184{letter-spacing:0.758640px;}
.ls73_c00184{letter-spacing:0.793440px;}
.ls27_c00184{letter-spacing:0.821280px;}
.ls1a_c00184{letter-spacing:0.828240px;}
.ls57_c00184{letter-spacing:0.835200px;}
.ls81_c00184{letter-spacing:0.849120px;}
.ls43_c00184{letter-spacing:0.856080px;}
.ls1c_c00184{letter-spacing:0.863040px;}
.ls48_c00184{letter-spacing:0.883920px;}
.ls55_c00184{letter-spacing:0.890880px;}
.ls40_c00184{letter-spacing:0.897600px;}
.ls62_c00184{letter-spacing:0.918720px;}
.ls24_c00184{letter-spacing:0.925680px;}
.ls5d_c00184{letter-spacing:0.946560px;}
.ls4f_c00184{letter-spacing:0.953520px;}
.ls52_c00184{letter-spacing:0.960480px;}
.ls4c_c00184{letter-spacing:1.016160px;}
.ls2d_c00184{letter-spacing:1.023120px;}
.ls4e_c00184{letter-spacing:1.037040px;}
.ls26_c00184{letter-spacing:1.044000px;}
.ls46_c00184{letter-spacing:1.064880px;}
.ls30_c00184{letter-spacing:1.071840px;}
.ls1f_c00184{letter-spacing:1.127520px;}
.ls60_c00184{letter-spacing:1.134480px;}
.ls3c_c00184{letter-spacing:1.141440px;}
.ls28_c00184{letter-spacing:1.231920px;}
.ls12_c00184{letter-spacing:1.259760px;}
.ls25_c00184{letter-spacing:1.280640px;}
.ls53_c00184{letter-spacing:1.350240px;}
.ls3a_c00184{letter-spacing:1.392000px;}
.ls13_c00184{letter-spacing:1.398960px;}
.ls84_c00184{letter-spacing:1.440720px;}
.lsb_c00184{letter-spacing:1.600800px;}
.ls63_c00184{letter-spacing:1.878600px;}
.ls3e_c00184{letter-spacing:1.983600px;}
.ls44_c00184{letter-spacing:2.118600px;}
.ls61_c00184{letter-spacing:2.164560px;}
.ls56_c00184{letter-spacing:2.171400px;}
.ls4_c00184{letter-spacing:2.197800px;}
.ls41_c00184{letter-spacing:2.461800px;}
.ls0_c00184{letter-spacing:2.646600px;}
.ls1_c00184{letter-spacing:2.752200px;}
.ls5e_c00184{letter-spacing:2.839680px;}
.ls85_c00184{letter-spacing:2.850000px;}
.ls45_c00184{letter-spacing:2.874480px;}
.ls9b_c00184{letter-spacing:3.480000px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{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__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00184{word-spacing:0.000000px;}
.ws3_c00184{word-spacing:0.840000px;}
.ws4_c00184{word-spacing:1.264800px;}
.ws1_c00184{word-spacing:7.552800px;}
.ws2_c00184{word-spacing:16.627440px;}
.ws0_c00184{word-spacing:38.284800px;}
.ws5_c00184{word-spacing:48.315000px;}
._18_c00184{margin-left:-8.017920px;}
._1_c00184{margin-left:-6.495600px;}
._14_c00184{margin-left:-4.656240px;}
._0_c00184{margin-left:-2.191200px;}
._15_c00184{margin-left:-1.071840px;}
._2_c00184{width:1.245840px;}
._d_c00184{width:3.132000px;}
._4_c00184{width:4.734720px;}
._3_c00184{width:6.862560px;}
._a_c00184{width:8.212800px;}
._9_c00184{width:9.952800px;}
._b_c00184{width:11.943360px;}
._c_c00184{width:13.829520px;}
._16_c00184{width:15.125520px;}
._17_c00184{width:16.516080px;}
._12_c00184{width:17.803680px;}
._13_c00184{width:19.668960px;}
._11_c00184{width:25.640640px;}
._10_c00184{width:27.728640px;}
._f_c00184{width:30.596160px;}
._e_c00184{width:32.364000px;}
._8_c00184{width:37.938960px;}
._5_c00184{width:39.212640px;}
._7_c00184{width:41.091840px;}
._6_c00184{width:42.358560px;}
.fc0_c00184{color:transparent;}
.fs6_c00184{font-size:38.880600px;}
.fs9_c00184{font-size:54.720000px;}
.fs4_c00184{font-size:57.000000px;}
.fsa_c00184{font-size:58.200000px;}
.fs0_c00184{font-size:60.600000px;}
.fs1_c00184{font-size:66.000000px;}
.fs5_c00184{font-size:68.400000px;}
.fs3_c00184{font-size:69.000000px;}
.fs2_c00184{font-size:69.600000px;}
.fs7_c00184{font-size:72.000000px;}
.fs8_c00184{font-size:73.200000px;}
.y0_c00184{bottom:0.000000px;}
.y20_c00184{bottom:70.200006px;}
.y1f_c00184{bottom:249.495006px;}
.y1e_c00184{bottom:280.800006px;}
.y1d_c00184{bottom:341.649606px;}
.y1c_c00184{bottom:373.342806px;}
.y1b_c00184{bottom:404.280006px;}
.y1a_c00184{bottom:465.855006px;}
.y19_c00184{bottom:465.862806px;}
.y17_c00184{bottom:496.796406px;}
.y18_c00184{bottom:496.800006px;}
.y16_c00184{bottom:527.768406px;}
.y15_c00184{bottom:558.375006px;}
.y14_c00184{bottom:589.695006px;}
.y13_c00184{bottom:651.615006px;}
.y12_c00184{bottom:685.095006px;}
.y11_c00184{bottom:685.098006px;}
.y10_c00184{bottom:748.095006px;}
.yf_c00184{bottom:748.100406px;}
.ye_c00184{bottom:779.055006px;}
.yd_c00184{bottom:779.072406px;}
.yc_c00184{bottom:810.009606px;}
.yb_c00184{bottom:840.981606px;}
.ya_c00184{bottom:871.936206px;}
.y9_c00184{bottom:902.525406px;}
.y8_c00184{bottom:933.480006px;}
.y7_c00184{bottom:933.492606px;}
.y6_c00184{bottom:964.099206px;}
.y5_c00184{bottom:994.688406px;}
.y4_c00184{bottom:1025.643006px;}
.y3_c00184{bottom:1056.615006px;}
.y2_c00184{bottom:1118.520006px;}
.y1_c00184{bottom:1194.840006px;}
.h9_c00184{height:25.894480px;}
.hc_c00184{height:36.443520px;}
.he_c00184{height:57.120117px;}
.h5_c00184{height:59.449219px;}
.h2_c00184{height:59.475586px;}
.h6_c00184{height:64.743164px;}
.h8_c00184{height:67.130859px;}
.h7_c00184{height:68.296594px;}
.h3_c00184{height:68.308594px;}
.ha_c00184{height:70.628906px;}
.h4_c00184{height:71.964844px;}
.hd_c00184{height:72.562500px;}
.hb_c00184{height:73.771875px;}
.h1_c00184{height:1263.000000px;}
.h0_c00184{height:1263.240006px;}
.w1_c00184{width:892.500000px;}
.w0_c00184{width:892.799998px;}
.x0_c00184{left:0.000000px;}
.x22_c00184{left:114.089999px;}
.x11_c00184{left:115.435799px;}
.x9_c00184{left:116.719798px;}
.x6_c00184{left:118.050598px;}
.x1_c00184{left:120.524998px;}
.x17_c00184{left:168.269999px;}
.xe_c00184{left:169.361998px;}
.x5_c00184{left:172.229998px;}
.x2_c00184{left:173.549998px;}
.xc_c00184{left:175.439998px;}
.xd_c00184{left:192.494999px;}
.x1a_c00184{left:207.374998px;}
.x12_c00184{left:267.644999px;}
.x13_c00184{left:289.259999px;}
.x1b_c00184{left:312.629998px;}
.xa_c00184{left:334.619999px;}
.xb_c00184{left:355.139999px;}
.x1c_c00184{left:385.199998px;}
.x25_c00184{left:420.329998px;}
.x16_c00184{left:454.859998px;}
.x7_c00184{left:462.419999px;}
.x1d_c00184{left:465.014998px;}
.xf_c00184{left:470.099999px;}
.x8_c00184{left:481.649999px;}
.x14_c00184{left:489.209999px;}
.x10_c00184{left:504.539999px;}
.x23_c00184{left:508.139998px;}
.x15_c00184{left:512.474999px;}
.x24_c00184{left:525.059999px;}
.x1e_c00184{left:572.624998px;}
.x3_c00184{left:610.094998px;}
.x1f_c00184{left:613.259999px;}
.x4_c00184{left:627.284999px;}
.x20_c00184{left:677.789999px;}
.x18_c00184{left:691.274999px;}
.x21_c00184{left:701.879999px;}
.x19_c00184{left:730.634999px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls9e_c00184{letter-spacing:-2.277333pt;}
.ls9d_c00184{letter-spacing:-2.240000pt;}
.ls68_c00184{letter-spacing:-2.165333pt;}
.ls76_c00184{letter-spacing:-2.146667pt;}
.ls89_c00184{letter-spacing:-2.128000pt;}
.ls8a_c00184{letter-spacing:-2.060160pt;}
.ls69_c00184{letter-spacing:-1.985920pt;}
.ls95_c00184{letter-spacing:-1.948800pt;}
.ls9c_c00184{letter-spacing:-1.881600pt;}
.ls7f_c00184{letter-spacing:-1.757013pt;}
.ls77_c00184{letter-spacing:-1.620907pt;}
.ls67_c00184{letter-spacing:-1.577600pt;}
.ls75_c00184{letter-spacing:-1.466240pt;}
.ls82_c00184{letter-spacing:-1.361067pt;}
.ls80_c00184{letter-spacing:-1.311573pt;}
.ls6a_c00184{letter-spacing:-1.305387pt;}
.ls7a_c00184{letter-spacing:-1.082667pt;}
.ls64_c00184{letter-spacing:-1.057920pt;}
.ls87_c00184{letter-spacing:-1.045547pt;}
.ls8d_c00184{letter-spacing:-1.039360pt;}
.ls83_c00184{letter-spacing:-0.835200pt;}
.ls96_c00184{letter-spacing:-0.711467pt;}
.ls8f_c00184{letter-spacing:-0.674347pt;}
.ls97_c00184{letter-spacing:-0.624853pt;}
.ls8c_c00184{letter-spacing:-0.612480pt;}
.ls98_c00184{letter-spacing:-0.550613pt;}
.lsa0_c00184{letter-spacing:-0.470773pt;}
.ls7b_c00184{letter-spacing:-0.402133pt;}
.ls72_c00184{letter-spacing:-0.352640pt;}
.ls92_c00184{letter-spacing:-0.340267pt;}
.ls88_c00184{letter-spacing:-0.327893pt;}
.ls91_c00184{letter-spacing:-0.321707pt;}
.ls71_c00184{letter-spacing:-0.303147pt;}
.ls99_c00184{letter-spacing:-0.296960pt;}
.ls66_c00184{letter-spacing:-0.284587pt;}
.ls8b_c00184{letter-spacing:-0.228907pt;}
.ls70_c00184{letter-spacing:-0.185600pt;}
.ls65_c00184{letter-spacing:-0.167040pt;}
.ls79_c00184{letter-spacing:-0.160853pt;}
.ls7c_c00184{letter-spacing:-0.148480pt;}
.ls90_c00184{letter-spacing:-0.123733pt;}
.ls7e_c00184{letter-spacing:-0.092800pt;}
.ls6e_c00184{letter-spacing:-0.080427pt;}
.ls7d_c00184{letter-spacing:-0.055680pt;}
.ls6f_c00184{letter-spacing:-0.049493pt;}
.ls6b_c00184{letter-spacing:-0.024747pt;}
.ls8e_c00184{letter-spacing:-0.018560pt;}
.ls6d_c00184{letter-spacing:-0.012373pt;}
.ls6c_c00184{letter-spacing:0.000000pt;}
.ls21_c00184{letter-spacing:0.006187pt;}
.ls9f_c00184{letter-spacing:0.024747pt;}
.ls3_c00184{letter-spacing:0.037120pt;}
.ls51_c00184{letter-spacing:0.055680pt;}
.ls18_c00184{letter-spacing:0.074240pt;}
.ls23_c00184{letter-spacing:0.086613pt;}
.ls8_c00184{letter-spacing:0.092800pt;}
.lsd_c00184{letter-spacing:0.105173pt;}
.ls78_c00184{letter-spacing:0.111360pt;}
.ls9a_c00184{letter-spacing:0.129920pt;}
.ls47_c00184{letter-spacing:0.136107pt;}
.ls4a_c00184{letter-spacing:0.154667pt;}
.ls17_c00184{letter-spacing:0.160853pt;}
.ls74_c00184{letter-spacing:0.167040pt;}
.ls1e_c00184{letter-spacing:0.173227pt;}
.ls54_c00184{letter-spacing:0.179413pt;}
.ls1d_c00184{letter-spacing:0.185600pt;}
.ls2b_c00184{letter-spacing:0.191787pt;}
.ls36_c00184{letter-spacing:0.197973pt;}
.ls49_c00184{letter-spacing:0.204160pt;}
.ls6_c00184{letter-spacing:0.210347pt;}
.ls5b_c00184{letter-spacing:0.228907pt;}
.ls50_c00184{letter-spacing:0.235093pt;}
.ls2_c00184{letter-spacing:0.241280pt;}
.ls2e_c00184{letter-spacing:0.247467pt;}
.ls22_c00184{letter-spacing:0.253653pt;}
.lsc_c00184{letter-spacing:0.266027pt;}
.ls1b_c00184{letter-spacing:0.272213pt;}
.ls93_c00184{letter-spacing:0.284587pt;}
.ls5a_c00184{letter-spacing:0.290773pt;}
.ls20_c00184{letter-spacing:0.296960pt;}
.ls32_c00184{letter-spacing:0.309333pt;}
.ls34_c00184{letter-spacing:0.315520pt;}
.ls16_c00184{letter-spacing:0.321707pt;}
.ls2c_c00184{letter-spacing:0.327893pt;}
.ls19_c00184{letter-spacing:0.334080pt;}
.ls35_c00184{letter-spacing:0.340267pt;}
.ls7_c00184{letter-spacing:0.358827pt;}
.ls4d_c00184{letter-spacing:0.365013pt;}
.ls2a_c00184{letter-spacing:0.377387pt;}
.ls42_c00184{letter-spacing:0.389760pt;}
.ls38_c00184{letter-spacing:0.402133pt;}
.ls11_c00184{letter-spacing:0.408320pt;}
.ls94_c00184{letter-spacing:0.414507pt;}
.ls2f_c00184{letter-spacing:0.439253pt;}
.ls5f_c00184{letter-spacing:0.445440pt;}
.ls59_c00184{letter-spacing:0.451627pt;}
.ls3b_c00184{letter-spacing:0.464000pt;}
.lsf_c00184{letter-spacing:0.476373pt;}
.ls29_c00184{letter-spacing:0.482560pt;}
.ls4b_c00184{letter-spacing:0.488747pt;}
.ls9_c00184{letter-spacing:0.501120pt;}
.ls37_c00184{letter-spacing:0.507307pt;}
.ls31_c00184{letter-spacing:0.538240pt;}
.ls33_c00184{letter-spacing:0.544427pt;}
.ls3d_c00184{letter-spacing:0.550613pt;}
.ls3f_c00184{letter-spacing:0.556800pt;}
.ls10_c00184{letter-spacing:0.569173pt;}
.ls58_c00184{letter-spacing:0.575360pt;}
.lsa_c00184{letter-spacing:0.618667pt;}
.ls39_c00184{letter-spacing:0.631040pt;}
.ls5c_c00184{letter-spacing:0.643413pt;}
.ls15_c00184{letter-spacing:0.649600pt;}
.lse_c00184{letter-spacing:0.655787pt;}
.ls86_c00184{letter-spacing:0.662933pt;}
.ls5_c00184{letter-spacing:0.668160pt;}
.ls14_c00184{letter-spacing:0.674347pt;}
.ls73_c00184{letter-spacing:0.705280pt;}
.ls27_c00184{letter-spacing:0.730027pt;}
.ls1a_c00184{letter-spacing:0.736213pt;}
.ls57_c00184{letter-spacing:0.742400pt;}
.ls81_c00184{letter-spacing:0.754773pt;}
.ls43_c00184{letter-spacing:0.760960pt;}
.ls1c_c00184{letter-spacing:0.767147pt;}
.ls48_c00184{letter-spacing:0.785707pt;}
.ls55_c00184{letter-spacing:0.791893pt;}
.ls40_c00184{letter-spacing:0.797867pt;}
.ls62_c00184{letter-spacing:0.816640pt;}
.ls24_c00184{letter-spacing:0.822827pt;}
.ls5d_c00184{letter-spacing:0.841387pt;}
.ls4f_c00184{letter-spacing:0.847573pt;}
.ls52_c00184{letter-spacing:0.853760pt;}
.ls4c_c00184{letter-spacing:0.903253pt;}
.ls2d_c00184{letter-spacing:0.909440pt;}
.ls4e_c00184{letter-spacing:0.921813pt;}
.ls26_c00184{letter-spacing:0.928000pt;}
.ls46_c00184{letter-spacing:0.946560pt;}
.ls30_c00184{letter-spacing:0.952747pt;}
.ls1f_c00184{letter-spacing:1.002240pt;}
.ls60_c00184{letter-spacing:1.008427pt;}
.ls3c_c00184{letter-spacing:1.014613pt;}
.ls28_c00184{letter-spacing:1.095040pt;}
.ls12_c00184{letter-spacing:1.119787pt;}
.ls25_c00184{letter-spacing:1.138347pt;}
.ls53_c00184{letter-spacing:1.200213pt;}
.ls3a_c00184{letter-spacing:1.237333pt;}
.ls13_c00184{letter-spacing:1.243520pt;}
.ls84_c00184{letter-spacing:1.280640pt;}
.lsb_c00184{letter-spacing:1.422933pt;}
.ls63_c00184{letter-spacing:1.669867pt;}
.ls3e_c00184{letter-spacing:1.763200pt;}
.ls44_c00184{letter-spacing:1.883200pt;}
.ls61_c00184{letter-spacing:1.924053pt;}
.ls56_c00184{letter-spacing:1.930133pt;}
.ls4_c00184{letter-spacing:1.953600pt;}
.ls41_c00184{letter-spacing:2.188267pt;}
.ls0_c00184{letter-spacing:2.352533pt;}
.ls1_c00184{letter-spacing:2.446400pt;}
.ls5e_c00184{letter-spacing:2.524160pt;}
.ls85_c00184{letter-spacing:2.533333pt;}
.ls45_c00184{letter-spacing:2.555093pt;}
.ls9b_c00184{letter-spacing:3.093333pt;}
.ws6_c00184{word-spacing:0.000000pt;}
.ws3_c00184{word-spacing:0.746667pt;}
.ws4_c00184{word-spacing:1.124267pt;}
.ws1_c00184{word-spacing:6.713600pt;}
.ws2_c00184{word-spacing:14.779947pt;}
.ws0_c00184{word-spacing:34.030933pt;}
.ws5_c00184{word-spacing:42.946667pt;}
._18_c00184{margin-left:-7.127040pt;}
._1_c00184{margin-left:-5.773867pt;}
._14_c00184{margin-left:-4.138880pt;}
._0_c00184{margin-left:-1.947733pt;}
._15_c00184{margin-left:-0.952747pt;}
._2_c00184{width:1.107413pt;}
._d_c00184{width:2.784000pt;}
._4_c00184{width:4.208640pt;}
._3_c00184{width:6.100053pt;}
._a_c00184{width:7.300267pt;}
._9_c00184{width:8.846933pt;}
._b_c00184{width:10.616320pt;}
._c_c00184{width:12.292907pt;}
._16_c00184{width:13.444907pt;}
._17_c00184{width:14.680960pt;}
._12_c00184{width:15.825493pt;}
._13_c00184{width:17.483520pt;}
._11_c00184{width:22.791680pt;}
._10_c00184{width:24.647680pt;}
._f_c00184{width:27.196587pt;}
._e_c00184{width:28.768000pt;}
._8_c00184{width:33.723520pt;}
._5_c00184{width:34.855680pt;}
._7_c00184{width:36.526080pt;}
._6_c00184{width:37.652053pt;}
.fs6_c00184{font-size:34.560533pt;}
.fs9_c00184{font-size:48.640000pt;}
.fs4_c00184{font-size:50.666667pt;}
.fsa_c00184{font-size:51.733333pt;}
.fs0_c00184{font-size:53.866667pt;}
.fs1_c00184{font-size:58.666667pt;}
.fs5_c00184{font-size:60.800000pt;}
.fs3_c00184{font-size:61.333333pt;}
.fs2_c00184{font-size:61.866667pt;}
.fs7_c00184{font-size:64.000000pt;}
.fs8_c00184{font-size:65.066667pt;}
.y0_c00184{bottom:0.000000pt;}
.y20_c00184{bottom:62.400005pt;}
.y1f_c00184{bottom:221.773339pt;}
.y1e_c00184{bottom:249.600005pt;}
.y1d_c00184{bottom:303.688539pt;}
.y1c_c00184{bottom:331.860272pt;}
.y1b_c00184{bottom:359.360005pt;}
.y1a_c00184{bottom:414.093339pt;}
.y19_c00184{bottom:414.100272pt;}
.y17_c00184{bottom:441.596805pt;}
.y18_c00184{bottom:441.600005pt;}
.y16_c00184{bottom:469.127472pt;}
.y15_c00184{bottom:496.333339pt;}
.y14_c00184{bottom:524.173339pt;}
.y13_c00184{bottom:579.213339pt;}
.y12_c00184{bottom:608.973339pt;}
.y11_c00184{bottom:608.976005pt;}
.y10_c00184{bottom:664.973339pt;}
.yf_c00184{bottom:664.978139pt;}
.ye_c00184{bottom:692.493339pt;}
.yd_c00184{bottom:692.508805pt;}
.yc_c00184{bottom:720.008539pt;}
.yb_c00184{bottom:747.539205pt;}
.ya_c00184{bottom:775.054405pt;}
.y9_c00184{bottom:802.244805pt;}
.y8_c00184{bottom:829.760005pt;}
.y7_c00184{bottom:829.771205pt;}
.y6_c00184{bottom:856.977072pt;}
.y5_c00184{bottom:884.167472pt;}
.y4_c00184{bottom:911.682672pt;}
.y3_c00184{bottom:939.213339pt;}
.y2_c00184{bottom:994.240005pt;}
.y1_c00184{bottom:1062.080005pt;}
.h9_c00184{height:23.017315pt;}
.hc_c00184{height:32.394240pt;}
.he_c00184{height:50.773437pt;}
.h5_c00184{height:52.843750pt;}
.h2_c00184{height:52.867187pt;}
.h6_c00184{height:57.549479pt;}
.h8_c00184{height:59.671875pt;}
.h7_c00184{height:60.708083pt;}
.h3_c00184{height:60.718750pt;}
.ha_c00184{height:62.781250pt;}
.h4_c00184{height:63.968750pt;}
.hd_c00184{height:64.500000pt;}
.hb_c00184{height:65.575000pt;}
.h1_c00184{height:1122.666667pt;}
.h0_c00184{height:1122.880005pt;}
.w1_c00184{width:793.333333pt;}
.w0_c00184{width:793.599999pt;}
.x0_c00184{left:0.000000pt;}
.x22_c00184{left:101.413332pt;}
.x11_c00184{left:102.609599pt;}
.x9_c00184{left:103.750932pt;}
.x6_c00184{left:104.933865pt;}
.x1_c00184{left:107.133332pt;}
.x17_c00184{left:149.573332pt;}
.xe_c00184{left:150.543999pt;}
.x5_c00184{left:153.093332pt;}
.x2_c00184{left:154.266665pt;}
.xc_c00184{left:155.946665pt;}
.xd_c00184{left:171.106665pt;}
.x1a_c00184{left:184.333332pt;}
.x12_c00184{left:237.906665pt;}
.x13_c00184{left:257.119999pt;}
.x1b_c00184{left:277.893332pt;}
.xa_c00184{left:297.439999pt;}
.xb_c00184{left:315.679999pt;}
.x1c_c00184{left:342.399999pt;}
.x25_c00184{left:373.626665pt;}
.x16_c00184{left:404.319999pt;}
.x7_c00184{left:411.039999pt;}
.x1d_c00184{left:413.346665pt;}
.xf_c00184{left:417.866665pt;}
.x8_c00184{left:428.133332pt;}
.x14_c00184{left:434.853332pt;}
.x10_c00184{left:448.479999pt;}
.x23_c00184{left:451.679999pt;}
.x15_c00184{left:455.533332pt;}
.x24_c00184{left:466.719999pt;}
.x1e_c00184{left:508.999999pt;}
.x3_c00184{left:542.306665pt;}
.x1f_c00184{left:545.119999pt;}
.x4_c00184{left:557.586665pt;}
.x20_c00184{left:602.479999pt;}
.x18_c00184{left:614.466665pt;}
.x21_c00184{left:623.893332pt;}
.x19_c00184{left:649.453332pt;}
}





/* 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_c00185 {
    display:none;
  }
  .loading-indicator_c00185.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00185 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_c00185 { 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_c00185" -> "#page-container .classname_c00185")
 */
.pf_c00185 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00185 { /* 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_c00185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00185 { /* 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_c00185 { /* 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_c00185 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00185 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00185 {overflow:visible;}
  }
}
.c_c00185 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00185 { /* 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_c00185:after { /* webkit #35443 */
  content: '';
}
.t_c00185:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00185 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 */
}
.__c00185 { /* 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_c00185 { /* info for Javascript */
  display:none;
}
.l_c00185 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00185 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00185 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00185: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_c00185 {
    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_c00185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00185.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_c00185 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00185;src:url('chunks/assets/font_a758d03b69d5431f8db027e8.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.284668;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_c00185;src:url('chunks/assets/font_7a59f6c427784e914ab1dbc3.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.284180;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_c00185;src:url('chunks/assets/font_8e963138aee650b1668d47b7.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.311035;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;}
.ma_c00185{transform:matrix(0.227319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227319,0.000000,0.000000,0.250000,0,0);}
.me_c00185{transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);}
.mb_c00185{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.m9_c00185{transform:matrix(0.239824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239824,0.000000,0.000000,0.250000,0,0);}
.m5_c00185{transform:matrix(0.241365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241365,0.000000,0.000000,0.250000,0,0);}
.mc_c00185{transform:matrix(0.242048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242048,0.000000,0.000000,0.250000,0,0);}
.m8_c00185{transform:matrix(0.242053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242053,0.000000,0.000000,0.250000,0,0);}
.m1_c00185{transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);}
.md_c00185{transform:matrix(0.245293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245293,0.000000,0.000000,0.250000,0,0);}
.m6_c00185{transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);}
.m3_c00185{transform:matrix(0.246863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246863,0.000000,0.000000,0.250000,0,0);}
.m7_c00185{transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);}
.m2_c00185{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m4_c00185{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m0_c00185{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);}
.v0_c00185{vertical-align:0.000000px;}
.ls7f_c00185{letter-spacing:-2.499000px;}
.ls3f_c00185{letter-spacing:-2.457000px;}
.lsa9_c00185{letter-spacing:-2.415000px;}
.ls7e_c00185{letter-spacing:-2.334780px;}
.ls83_c00185{letter-spacing:-2.306220px;}
.lsa0_c00185{letter-spacing:-2.288520px;}
.ls73_c00185{letter-spacing:-2.246400px;}
.ls5e_c00185{letter-spacing:-2.204280px;}
.ls81_c00185{letter-spacing:-2.191980px;}
.ls5f_c00185{letter-spacing:-1.951560px;}
.ls72_c00185{letter-spacing:-1.916460px;}
.ls49_c00185{letter-spacing:-1.839240px;}
.ls80_c00185{letter-spacing:-1.834980px;}
.ls41_c00185{letter-spacing:-1.769040px;}
.ls9c_c00185{letter-spacing:-1.670760px;}
.ls4d_c00185{letter-spacing:-1.642680px;}
.ls48_c00185{letter-spacing:-1.635660px;}
.ls44_c00185{letter-spacing:-1.600560px;}
.ls82_c00185{letter-spacing:-1.563660px;}
.ls4b_c00185{letter-spacing:-1.516320px;}
.lsa7_c00185{letter-spacing:-1.509300px;}
.ls9e_c00185{letter-spacing:-1.453140px;}
.lsa8_c00185{letter-spacing:-1.270620px;}
.lsa5_c00185{letter-spacing:-1.214460px;}
.ls4c_c00185{letter-spacing:-1.144260px;}
.ls57_c00185{letter-spacing:-1.038960px;}
.ls47_c00185{letter-spacing:-1.003860px;}
.lsaa_c00185{letter-spacing:-0.996840px;}
.ls4e_c00185{letter-spacing:-0.968760px;}
.ls9f_c00185{letter-spacing:-0.954720px;}
.lsa1_c00185{letter-spacing:-0.919620px;}
.ls46_c00185{letter-spacing:-0.877500px;}
.ls40_c00185{letter-spacing:-0.863460px;}
.ls61_c00185{letter-spacing:-0.856440px;}
.ls62_c00185{letter-spacing:-0.849420px;}
.ls7c_c00185{letter-spacing:-0.828360px;}
.ls60_c00185{letter-spacing:-0.814320px;}
.ls86_c00185{letter-spacing:-0.807300px;}
.ls70_c00185{letter-spacing:-0.800400px;}
.ls5d_c00185{letter-spacing:-0.779220px;}
.lsa2_c00185{letter-spacing:-0.772200px;}
.ls69_c00185{letter-spacing:-0.765180px;}
.ls9a_c00185{letter-spacing:-0.751140px;}
.ls5c_c00185{letter-spacing:-0.744120px;}
.ls71_c00185{letter-spacing:-0.730080px;}
.ls7b_c00185{letter-spacing:-0.716040px;}
.ls66_c00185{letter-spacing:-0.702000px;}
.lsab_c00185{letter-spacing:-0.688080px;}
.ls8d_c00185{letter-spacing:-0.673920px;}
.ls4f_c00185{letter-spacing:-0.666900px;}
.ls52_c00185{letter-spacing:-0.652860px;}
.ls9b_c00185{letter-spacing:-0.638820px;}
.ls88_c00185{letter-spacing:-0.610740px;}
.ls8a_c00185{letter-spacing:-0.603720px;}
.ls6f_c00185{letter-spacing:-0.596700px;}
.ls98_c00185{letter-spacing:-0.589680px;}
.ls6a_c00185{letter-spacing:-0.575640px;}
.ls79_c00185{letter-spacing:-0.568620px;}
.ls87_c00185{letter-spacing:-0.561600px;}
.ls85_c00185{letter-spacing:-0.540540px;}
.ls67_c00185{letter-spacing:-0.512460px;}
.ls78_c00185{letter-spacing:-0.498420px;}
.ls6d_c00185{letter-spacing:-0.491400px;}
.ls95_c00185{letter-spacing:-0.484380px;}
.ls64_c00185{letter-spacing:-0.470340px;}
.ls77_c00185{letter-spacing:-0.463320px;}
.ls74_c00185{letter-spacing:-0.428220px;}
.ls75_c00185{letter-spacing:-0.421200px;}
.ls3c_c00185{letter-spacing:-0.407160px;}
.ls56_c00185{letter-spacing:-0.393120px;}
.ls90_c00185{letter-spacing:-0.386100px;}
.ls8f_c00185{letter-spacing:-0.372060px;}
.ls84_c00185{letter-spacing:-0.368880px;}
.ls6c_c00185{letter-spacing:-0.365040px;}
.ls99_c00185{letter-spacing:-0.358020px;}
.ls68_c00185{letter-spacing:-0.351000px;}
.ls8e_c00185{letter-spacing:-0.336960px;}
.ls92_c00185{letter-spacing:-0.308880px;}
.ls42_c00185{letter-spacing:-0.301860px;}
.ls76_c00185{letter-spacing:-0.287820px;}
.ls97_c00185{letter-spacing:-0.280800px;}
.ls59_c00185{letter-spacing:-0.259740px;}
.ls8b_c00185{letter-spacing:-0.252720px;}
.ls7a_c00185{letter-spacing:-0.245700px;}
.ls51_c00185{letter-spacing:-0.238680px;}
.ls6e_c00185{letter-spacing:-0.231660px;}
.ls63_c00185{letter-spacing:-0.217620px;}
.ls45_c00185{letter-spacing:-0.210600px;}
.ls5b_c00185{letter-spacing:-0.203580px;}
.ls65_c00185{letter-spacing:-0.196560px;}
.lsa6_c00185{letter-spacing:-0.175500px;}
.ls53_c00185{letter-spacing:-0.168480px;}
.lsa3_c00185{letter-spacing:-0.161460px;}
.ls6b_c00185{letter-spacing:-0.154440px;}
.ls89_c00185{letter-spacing:-0.147420px;}
.ls58_c00185{letter-spacing:-0.133380px;}
.ls91_c00185{letter-spacing:-0.119340px;}
.ls5a_c00185{letter-spacing:-0.112320px;}
.ls94_c00185{letter-spacing:-0.111360px;}
.ls3e_c00185{letter-spacing:-0.105300px;}
.ls9d_c00185{letter-spacing:-0.098280px;}
.ls50_c00185{letter-spacing:-0.091260px;}
.ls7d_c00185{letter-spacing:-0.077220px;}
.lsa4_c00185{letter-spacing:-0.070200px;}
.ls4a_c00185{letter-spacing:-0.063180px;}
.ls43_c00185{letter-spacing:-0.042120px;}
.ls54_c00185{letter-spacing:-0.035100px;}
.ls93_c00185{letter-spacing:-0.028080px;}
.ls55_c00185{letter-spacing:-0.014040px;}
.ls3d_c00185{letter-spacing:0.000000px;}
.ls2c_c00185{letter-spacing:0.007020px;}
.ls2_c00185{letter-spacing:0.014040px;}
.ls1f_c00185{letter-spacing:0.021060px;}
.ls21_c00185{letter-spacing:0.028080px;}
.ls31_c00185{letter-spacing:0.034800px;}
.ls1b_c00185{letter-spacing:0.035100px;}
.ls1c_c00185{letter-spacing:0.042120px;}
.ls25_c00185{letter-spacing:0.049140px;}
.lsb_c00185{letter-spacing:0.056160px;}
.ls8c_c00185{letter-spacing:0.070200px;}
.ls15_c00185{letter-spacing:0.077220px;}
.ls1d_c00185{letter-spacing:0.091260px;}
.ls16_c00185{letter-spacing:0.098280px;}
.ls12_c00185{letter-spacing:0.105300px;}
.ls10_c00185{letter-spacing:0.119340px;}
.ls1a_c00185{letter-spacing:0.140400px;}
.ls9_c00185{letter-spacing:0.147420px;}
.ls2d_c00185{letter-spacing:0.187920px;}
.ls29_c00185{letter-spacing:0.189540px;}
.ls3a_c00185{letter-spacing:0.203580px;}
.ls2f_c00185{letter-spacing:0.210600px;}
.ls20_c00185{letter-spacing:0.217620px;}
.ls23_c00185{letter-spacing:0.222720px;}
.ls14_c00185{letter-spacing:0.231660px;}
.lsc_c00185{letter-spacing:0.245700px;}
.ls36_c00185{letter-spacing:0.252720px;}
.ls1e_c00185{letter-spacing:0.259740px;}
.ls28_c00185{letter-spacing:0.266760px;}
.lsa_c00185{letter-spacing:0.273780px;}
.ls37_c00185{letter-spacing:0.280800px;}
.ls24_c00185{letter-spacing:0.294840px;}
.ls2b_c00185{letter-spacing:0.301860px;}
.ls96_c00185{letter-spacing:0.322920px;}
.ls6_c00185{letter-spacing:0.327120px;}
.ls4_c00185{letter-spacing:0.334080px;}
.ls27_c00185{letter-spacing:0.348000px;}
.ls18_c00185{letter-spacing:0.351000px;}
.ls35_c00185{letter-spacing:0.358020px;}
.lsd_c00185{letter-spacing:0.400140px;}
.ls2e_c00185{letter-spacing:0.424560px;}
.ls8_c00185{letter-spacing:0.438480px;}
.ls34_c00185{letter-spacing:0.456300px;}
.ls26_c00185{letter-spacing:0.466320px;}
.ls22_c00185{letter-spacing:0.473280px;}
.ls38_c00185{letter-spacing:0.491400px;}
.ls39_c00185{letter-spacing:0.501120px;}
.ls13_c00185{letter-spacing:0.589680px;}
.ls32_c00185{letter-spacing:0.666900px;}
.ls7_c00185{letter-spacing:0.668160px;}
.ls3_c00185{letter-spacing:0.680940px;}
.ls2a_c00185{letter-spacing:0.751140px;}
.ls17_c00185{letter-spacing:0.758160px;}
.ls33_c00185{letter-spacing:0.786240px;}
.lse_c00185{letter-spacing:0.821340px;}
.ls5_c00185{letter-spacing:0.904800px;}
.ls19_c00185{letter-spacing:0.968760px;}
.ls30_c00185{letter-spacing:1.045980px;}
.ls11_c00185{letter-spacing:1.144260px;}
.ls1_c00185{letter-spacing:1.192380px;}
.ls0_c00185{letter-spacing:1.328040px;}
.lsf_c00185{letter-spacing:1.769040px;}
.ls3b_c00185{letter-spacing:2.148000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{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__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00185{word-spacing:-0.826080px;}
.ws3_c00185{word-spacing:0.000000px;}
.ws1_c00185{word-spacing:22.468320px;}
.ws0_c00185{word-spacing:29.599680px;}
._1_c00185{margin-left:-4.655640px;}
._0_c00185{margin-left:-1.799280px;}
._2_c00185{width:1.586520px;}
._10_c00185{width:3.174900px;}
._4_c00185{width:4.415580px;}
._5_c00185{width:5.755980px;}
._16_c00185{width:7.123440px;}
._3_c00185{width:8.388900px;}
._18_c00185{width:9.593460px;}
._f_c00185{width:11.465820px;}
._17_c00185{width:12.560280px;}
._21_c00185{width:13.572540px;}
._11_c00185{width:15.078960px;}
._12_c00185{width:17.114760px;}
._15_c00185{width:18.181800px;}
._14_c00185{width:19.305000px;}
._b_c00185{width:20.350980px;}
._13_c00185{width:21.481200px;}
._d_c00185{width:23.474880px;}
._a_c00185{width:24.815700px;}
._c_c00185{width:26.367120px;}
._e_c00185{width:27.406080px;}
._1e_c00185{width:28.781280px;}
._7_c00185{width:29.792880px;}
._9_c00185{width:30.958920px;}
._6_c00185{width:32.803740px;}
._8_c00185{width:34.159320px;}
._1d_c00185{width:35.366040px;}
._20_c00185{width:36.904140px;}
._1f_c00185{width:39.665160px;}
._1b_c00185{width:42.450720px;}
._1c_c00185{width:45.313440px;}
._19_c00185{width:48.413760px;}
._1a_c00185{width:51.211680px;}
.fc0_c00185{color:transparent;}
.fs5_c00185{font-size:56.400000px;}
.fs0_c00185{font-size:60.000000px;}
.fs4_c00185{font-size:69.000000px;}
.fs3_c00185{font-size:69.600000px;}
.fs2_c00185{font-size:70.200000px;}
.fs1_c00185{font-size:71.400000px;}
.y0_c00185{bottom:0.000000px;}
.y21_c00185{bottom:66.975000px;}
.y20_c00185{bottom:127.455000px;}
.y1f_c00185{bottom:189.359250px;}
.y1e_c00185{bottom:220.335000px;}
.y1d_c00185{bottom:220.341750px;}
.y1c_c00185{bottom:251.299950px;}
.y1b_c00185{bottom:282.258150px;}
.y1a_c00185{bottom:313.198800px;}
.y19_c00185{bottom:343.456350px;}
.y18_c00185{bottom:373.695000px;}
.y17_c00185{bottom:404.648250px;}
.y16_c00185{bottom:435.978600px;}
.y15_c00185{bottom:466.936800px;}
.y14_c00185{bottom:497.895000px;}
.y13_c00185{bottom:528.480000px;}
.y12_c00185{bottom:559.095000px;}
.y11_c00185{bottom:620.633850px;}
.y10_c00185{bottom:651.609600px;}
.yf_c00185{bottom:682.199250px;}
.ye_c00185{bottom:713.163600px;}
.yd_c00185{bottom:743.770800px;}
.yb_c00185{bottom:775.079250px;}
.yc_c00185{bottom:775.080000px;}
.ya_c00185{bottom:806.050050px;}
.y9_c00185{bottom:837.008250px;}
.y8_c00185{bottom:868.335000px;}
.y7_c00185{bottom:929.535000px;}
.y6_c00185{bottom:960.135000px;}
.y4_c00185{bottom:1021.329150px;}
.y5_c00185{bottom:1021.335000px;}
.y3_c00185{bottom:1082.175000px;}
.y2_c00185{bottom:1113.855000px;}
.y1_c00185{bottom:1189.440000px;}
.h9_c00185{height:55.353516px;}
.h2_c00185{height:58.886719px;}
.h8_c00185{height:67.719727px;}
.h4_c00185{height:68.897461px;}
.h5_c00185{height:68.917261px;}
.h6_c00185{height:68.943061px;}
.h3_c00185{height:70.040332px;}
.h7_c00185{height:71.957813px;}
.h1_c00185{height:1263.000000px;}
.h0_c00185{height:1263.240000px;}
.w1_c00185{width:892.500000px;}
.w0_c00185{width:892.800000px;}
.x0_c00185{left:0.000000px;}
.x1e_c00185{left:122.724300px;}
.x1_c00185{left:123.765000px;}
.x1f_c00185{left:174.765000px;}
.x4_c00185{left:175.935000px;}
.xc_c00185{left:179.415000px;}
.x14_c00185{left:193.845000px;}
.x2_c00185{left:233.280000px;}
.x5_c00185{left:243.525000px;}
.x6_c00185{left:271.560000px;}
.x15_c00185{left:302.925000px;}
.x16_c00185{left:336.405000px;}
.x7_c00185{left:339.285000px;}
.x8_c00185{left:368.490000px;}
.x9_c00185{left:404.685000px;}
.x20_c00185{left:421.395000px;}
.x23_c00185{left:425.385000px;}
.x1c_c00185{left:437.370000px;}
.x12_c00185{left:441.540000px;}
.x21_c00185{left:453.420000px;}
.x1d_c00185{left:459.930000px;}
.x13_c00185{left:462.045000px;}
.x17_c00185{left:503.085000px;}
.x22_c00185{left:535.875000px;}
.x18_c00185{left:541.605000px;}
.xd_c00185{left:555.585000px;}
.xa_c00185{left:574.005000px;}
.x19_c00185{left:575.100000px;}
.xf_c00185{left:577.605000px;}
.xe_c00185{left:580.845000px;}
.xb_c00185{left:603.105000px;}
.x10_c00185{left:605.085000px;}
.x3_c00185{left:609.600000px;}
.x11_c00185{left:638.340000px;}
.x1a_c00185{left:678.780000px;}
.x1b_c00185{left:730.245000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls7f_c00185{letter-spacing:-2.221333pt;}
.ls3f_c00185{letter-spacing:-2.184000pt;}
.lsa9_c00185{letter-spacing:-2.146667pt;}
.ls7e_c00185{letter-spacing:-2.075360pt;}
.ls83_c00185{letter-spacing:-2.049973pt;}
.lsa0_c00185{letter-spacing:-2.034240pt;}
.ls73_c00185{letter-spacing:-1.996800pt;}
.ls5e_c00185{letter-spacing:-1.959360pt;}
.ls81_c00185{letter-spacing:-1.948427pt;}
.ls5f_c00185{letter-spacing:-1.734720pt;}
.ls72_c00185{letter-spacing:-1.703520pt;}
.ls49_c00185{letter-spacing:-1.634880pt;}
.ls80_c00185{letter-spacing:-1.631093pt;}
.ls41_c00185{letter-spacing:-1.572480pt;}
.ls9c_c00185{letter-spacing:-1.485120pt;}
.ls4d_c00185{letter-spacing:-1.460160pt;}
.ls48_c00185{letter-spacing:-1.453920pt;}
.ls44_c00185{letter-spacing:-1.422720pt;}
.ls82_c00185{letter-spacing:-1.389920pt;}
.ls4b_c00185{letter-spacing:-1.347840pt;}
.lsa7_c00185{letter-spacing:-1.341600pt;}
.ls9e_c00185{letter-spacing:-1.291680pt;}
.lsa8_c00185{letter-spacing:-1.129440pt;}
.lsa5_c00185{letter-spacing:-1.079520pt;}
.ls4c_c00185{letter-spacing:-1.017120pt;}
.ls57_c00185{letter-spacing:-0.923520pt;}
.ls47_c00185{letter-spacing:-0.892320pt;}
.lsaa_c00185{letter-spacing:-0.886080pt;}
.ls4e_c00185{letter-spacing:-0.861120pt;}
.ls9f_c00185{letter-spacing:-0.848640pt;}
.lsa1_c00185{letter-spacing:-0.817440pt;}
.ls46_c00185{letter-spacing:-0.780000pt;}
.ls40_c00185{letter-spacing:-0.767520pt;}
.ls61_c00185{letter-spacing:-0.761280pt;}
.ls62_c00185{letter-spacing:-0.755040pt;}
.ls7c_c00185{letter-spacing:-0.736320pt;}
.ls60_c00185{letter-spacing:-0.723840pt;}
.ls86_c00185{letter-spacing:-0.717600pt;}
.ls70_c00185{letter-spacing:-0.711467pt;}
.ls5d_c00185{letter-spacing:-0.692640pt;}
.lsa2_c00185{letter-spacing:-0.686400pt;}
.ls69_c00185{letter-spacing:-0.680160pt;}
.ls9a_c00185{letter-spacing:-0.667680pt;}
.ls5c_c00185{letter-spacing:-0.661440pt;}
.ls71_c00185{letter-spacing:-0.648960pt;}
.ls7b_c00185{letter-spacing:-0.636480pt;}
.ls66_c00185{letter-spacing:-0.624000pt;}
.lsab_c00185{letter-spacing:-0.611627pt;}
.ls8d_c00185{letter-spacing:-0.599040pt;}
.ls4f_c00185{letter-spacing:-0.592800pt;}
.ls52_c00185{letter-spacing:-0.580320pt;}
.ls9b_c00185{letter-spacing:-0.567840pt;}
.ls88_c00185{letter-spacing:-0.542880pt;}
.ls8a_c00185{letter-spacing:-0.536640pt;}
.ls6f_c00185{letter-spacing:-0.530400pt;}
.ls98_c00185{letter-spacing:-0.524160pt;}
.ls6a_c00185{letter-spacing:-0.511680pt;}
.ls79_c00185{letter-spacing:-0.505440pt;}
.ls87_c00185{letter-spacing:-0.499200pt;}
.ls85_c00185{letter-spacing:-0.480480pt;}
.ls67_c00185{letter-spacing:-0.455520pt;}
.ls78_c00185{letter-spacing:-0.443040pt;}
.ls6d_c00185{letter-spacing:-0.436800pt;}
.ls95_c00185{letter-spacing:-0.430560pt;}
.ls64_c00185{letter-spacing:-0.418080pt;}
.ls77_c00185{letter-spacing:-0.411840pt;}
.ls74_c00185{letter-spacing:-0.380640pt;}
.ls75_c00185{letter-spacing:-0.374400pt;}
.ls3c_c00185{letter-spacing:-0.361920pt;}
.ls56_c00185{letter-spacing:-0.349440pt;}
.ls90_c00185{letter-spacing:-0.343200pt;}
.ls8f_c00185{letter-spacing:-0.330720pt;}
.ls84_c00185{letter-spacing:-0.327893pt;}
.ls6c_c00185{letter-spacing:-0.324480pt;}
.ls99_c00185{letter-spacing:-0.318240pt;}
.ls68_c00185{letter-spacing:-0.312000pt;}
.ls8e_c00185{letter-spacing:-0.299520pt;}
.ls92_c00185{letter-spacing:-0.274560pt;}
.ls42_c00185{letter-spacing:-0.268320pt;}
.ls76_c00185{letter-spacing:-0.255840pt;}
.ls97_c00185{letter-spacing:-0.249600pt;}
.ls59_c00185{letter-spacing:-0.230880pt;}
.ls8b_c00185{letter-spacing:-0.224640pt;}
.ls7a_c00185{letter-spacing:-0.218400pt;}
.ls51_c00185{letter-spacing:-0.212160pt;}
.ls6e_c00185{letter-spacing:-0.205920pt;}
.ls63_c00185{letter-spacing:-0.193440pt;}
.ls45_c00185{letter-spacing:-0.187200pt;}
.ls5b_c00185{letter-spacing:-0.180960pt;}
.ls65_c00185{letter-spacing:-0.174720pt;}
.lsa6_c00185{letter-spacing:-0.156000pt;}
.ls53_c00185{letter-spacing:-0.149760pt;}
.lsa3_c00185{letter-spacing:-0.143520pt;}
.ls6b_c00185{letter-spacing:-0.137280pt;}
.ls89_c00185{letter-spacing:-0.131040pt;}
.ls58_c00185{letter-spacing:-0.118560pt;}
.ls91_c00185{letter-spacing:-0.106080pt;}
.ls5a_c00185{letter-spacing:-0.099840pt;}
.ls94_c00185{letter-spacing:-0.098987pt;}
.ls3e_c00185{letter-spacing:-0.093600pt;}
.ls9d_c00185{letter-spacing:-0.087360pt;}
.ls50_c00185{letter-spacing:-0.081120pt;}
.ls7d_c00185{letter-spacing:-0.068640pt;}
.lsa4_c00185{letter-spacing:-0.062400pt;}
.ls4a_c00185{letter-spacing:-0.056160pt;}
.ls43_c00185{letter-spacing:-0.037440pt;}
.ls54_c00185{letter-spacing:-0.031200pt;}
.ls93_c00185{letter-spacing:-0.024960pt;}
.ls55_c00185{letter-spacing:-0.012480pt;}
.ls3d_c00185{letter-spacing:0.000000pt;}
.ls2c_c00185{letter-spacing:0.006240pt;}
.ls2_c00185{letter-spacing:0.012480pt;}
.ls1f_c00185{letter-spacing:0.018720pt;}
.ls21_c00185{letter-spacing:0.024960pt;}
.ls31_c00185{letter-spacing:0.030933pt;}
.ls1b_c00185{letter-spacing:0.031200pt;}
.ls1c_c00185{letter-spacing:0.037440pt;}
.ls25_c00185{letter-spacing:0.043680pt;}
.lsb_c00185{letter-spacing:0.049920pt;}
.ls8c_c00185{letter-spacing:0.062400pt;}
.ls15_c00185{letter-spacing:0.068640pt;}
.ls1d_c00185{letter-spacing:0.081120pt;}
.ls16_c00185{letter-spacing:0.087360pt;}
.ls12_c00185{letter-spacing:0.093600pt;}
.ls10_c00185{letter-spacing:0.106080pt;}
.ls1a_c00185{letter-spacing:0.124800pt;}
.ls9_c00185{letter-spacing:0.131040pt;}
.ls2d_c00185{letter-spacing:0.167040pt;}
.ls29_c00185{letter-spacing:0.168480pt;}
.ls3a_c00185{letter-spacing:0.180960pt;}
.ls2f_c00185{letter-spacing:0.187200pt;}
.ls20_c00185{letter-spacing:0.193440pt;}
.ls23_c00185{letter-spacing:0.197973pt;}
.ls14_c00185{letter-spacing:0.205920pt;}
.lsc_c00185{letter-spacing:0.218400pt;}
.ls36_c00185{letter-spacing:0.224640pt;}
.ls1e_c00185{letter-spacing:0.230880pt;}
.ls28_c00185{letter-spacing:0.237120pt;}
.lsa_c00185{letter-spacing:0.243360pt;}
.ls37_c00185{letter-spacing:0.249600pt;}
.ls24_c00185{letter-spacing:0.262080pt;}
.ls2b_c00185{letter-spacing:0.268320pt;}
.ls96_c00185{letter-spacing:0.287040pt;}
.ls6_c00185{letter-spacing:0.290773pt;}
.ls4_c00185{letter-spacing:0.296960pt;}
.ls27_c00185{letter-spacing:0.309333pt;}
.ls18_c00185{letter-spacing:0.312000pt;}
.ls35_c00185{letter-spacing:0.318240pt;}
.lsd_c00185{letter-spacing:0.355680pt;}
.ls2e_c00185{letter-spacing:0.377387pt;}
.ls8_c00185{letter-spacing:0.389760pt;}
.ls34_c00185{letter-spacing:0.405600pt;}
.ls26_c00185{letter-spacing:0.414507pt;}
.ls22_c00185{letter-spacing:0.420693pt;}
.ls38_c00185{letter-spacing:0.436800pt;}
.ls39_c00185{letter-spacing:0.445440pt;}
.ls13_c00185{letter-spacing:0.524160pt;}
.ls32_c00185{letter-spacing:0.592800pt;}
.ls7_c00185{letter-spacing:0.593920pt;}
.ls3_c00185{letter-spacing:0.605280pt;}
.ls2a_c00185{letter-spacing:0.667680pt;}
.ls17_c00185{letter-spacing:0.673920pt;}
.ls33_c00185{letter-spacing:0.698880pt;}
.lse_c00185{letter-spacing:0.730080pt;}
.ls5_c00185{letter-spacing:0.804267pt;}
.ls19_c00185{letter-spacing:0.861120pt;}
.ls30_c00185{letter-spacing:0.929760pt;}
.ls11_c00185{letter-spacing:1.017120pt;}
.ls1_c00185{letter-spacing:1.059893pt;}
.ls0_c00185{letter-spacing:1.180480pt;}
.lsf_c00185{letter-spacing:1.572480pt;}
.ls3b_c00185{letter-spacing:1.909333pt;}
.ws2_c00185{word-spacing:-0.734293pt;}
.ws3_c00185{word-spacing:0.000000pt;}
.ws1_c00185{word-spacing:19.971840pt;}
.ws0_c00185{word-spacing:26.310827pt;}
._1_c00185{margin-left:-4.138347pt;}
._0_c00185{margin-left:-1.599360pt;}
._2_c00185{width:1.410240pt;}
._10_c00185{width:2.822133pt;}
._4_c00185{width:3.924960pt;}
._5_c00185{width:5.116427pt;}
._16_c00185{width:6.331947pt;}
._3_c00185{width:7.456800pt;}
._18_c00185{width:8.527520pt;}
._f_c00185{width:10.191840pt;}
._17_c00185{width:11.164693pt;}
._21_c00185{width:12.064480pt;}
._11_c00185{width:13.403520pt;}
._12_c00185{width:15.213120pt;}
._15_c00185{width:16.161600pt;}
._14_c00185{width:17.160000pt;}
._b_c00185{width:18.089760pt;}
._13_c00185{width:19.094400pt;}
._d_c00185{width:20.866560pt;}
._a_c00185{width:22.058400pt;}
._c_c00185{width:23.437440pt;}
._e_c00185{width:24.360960pt;}
._1e_c00185{width:25.583360pt;}
._7_c00185{width:26.482560pt;}
._9_c00185{width:27.519040pt;}
._6_c00185{width:29.158880pt;}
._8_c00185{width:30.363840pt;}
._1d_c00185{width:31.436480pt;}
._20_c00185{width:32.803680pt;}
._1f_c00185{width:35.257920pt;}
._1b_c00185{width:37.733973pt;}
._1c_c00185{width:40.278613pt;}
._19_c00185{width:43.034453pt;}
._1a_c00185{width:45.521493pt;}
.fs5_c00185{font-size:50.133333pt;}
.fs0_c00185{font-size:53.333333pt;}
.fs4_c00185{font-size:61.333333pt;}
.fs3_c00185{font-size:61.866667pt;}
.fs2_c00185{font-size:62.400000pt;}
.fs1_c00185{font-size:63.466667pt;}
.y0_c00185{bottom:0.000000pt;}
.y21_c00185{bottom:59.533333pt;}
.y20_c00185{bottom:113.293333pt;}
.y1f_c00185{bottom:168.319333pt;}
.y1e_c00185{bottom:195.853333pt;}
.y1d_c00185{bottom:195.859333pt;}
.y1c_c00185{bottom:223.377733pt;}
.y1b_c00185{bottom:250.896133pt;}
.y1a_c00185{bottom:278.398933pt;}
.y19_c00185{bottom:305.294533pt;}
.y18_c00185{bottom:332.173333pt;}
.y17_c00185{bottom:359.687333pt;}
.y16_c00185{bottom:387.536533pt;}
.y15_c00185{bottom:415.054933pt;}
.y14_c00185{bottom:442.573333pt;}
.y13_c00185{bottom:469.760000pt;}
.y12_c00185{bottom:496.973333pt;}
.y11_c00185{bottom:551.674533pt;}
.y10_c00185{bottom:579.208533pt;}
.yf_c00185{bottom:606.399333pt;}
.ye_c00185{bottom:633.923200pt;}
.yd_c00185{bottom:661.129600pt;}
.yb_c00185{bottom:688.959333pt;}
.yc_c00185{bottom:688.960000pt;}
.ya_c00185{bottom:716.488933pt;}
.y9_c00185{bottom:744.007333pt;}
.y8_c00185{bottom:771.853333pt;}
.y7_c00185{bottom:826.253333pt;}
.y6_c00185{bottom:853.453333pt;}
.y4_c00185{bottom:907.848133pt;}
.y5_c00185{bottom:907.853333pt;}
.y3_c00185{bottom:961.933333pt;}
.y2_c00185{bottom:990.093333pt;}
.y1_c00185{bottom:1057.280000pt;}
.h9_c00185{height:49.203125pt;}
.h2_c00185{height:52.343750pt;}
.h8_c00185{height:60.195312pt;}
.h4_c00185{height:61.242187pt;}
.h5_c00185{height:61.259788pt;}
.h6_c00185{height:61.282721pt;}
.h3_c00185{height:62.258073pt;}
.h7_c00185{height:63.962500pt;}
.h1_c00185{height:1122.666667pt;}
.h0_c00185{height:1122.880000pt;}
.w1_c00185{width:793.333333pt;}
.w0_c00185{width:793.600000pt;}
.x0_c00185{left:0.000000pt;}
.x1e_c00185{left:109.088267pt;}
.x1_c00185{left:110.013333pt;}
.x1f_c00185{left:155.346667pt;}
.x4_c00185{left:156.386667pt;}
.xc_c00185{left:159.480000pt;}
.x14_c00185{left:172.306667pt;}
.x2_c00185{left:207.360000pt;}
.x5_c00185{left:216.466667pt;}
.x6_c00185{left:241.386667pt;}
.x15_c00185{left:269.266667pt;}
.x16_c00185{left:299.026667pt;}
.x7_c00185{left:301.586667pt;}
.x8_c00185{left:327.546667pt;}
.x9_c00185{left:359.720000pt;}
.x20_c00185{left:374.573333pt;}
.x23_c00185{left:378.120000pt;}
.x1c_c00185{left:388.773333pt;}
.x12_c00185{left:392.480000pt;}
.x21_c00185{left:403.040000pt;}
.x1d_c00185{left:408.826667pt;}
.x13_c00185{left:410.706667pt;}
.x17_c00185{left:447.186667pt;}
.x22_c00185{left:476.333333pt;}
.x18_c00185{left:481.426667pt;}
.xd_c00185{left:493.853333pt;}
.xa_c00185{left:510.226667pt;}
.x19_c00185{left:511.200000pt;}
.xf_c00185{left:513.426667pt;}
.xe_c00185{left:516.306667pt;}
.xb_c00185{left:536.093333pt;}
.x10_c00185{left:537.853333pt;}
.x3_c00185{left:541.866667pt;}
.x11_c00185{left:567.413333pt;}
.x1a_c00185{left:603.360000pt;}
.x1b_c00185{left:649.106667pt;}
}





/* 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_c00186 {
    display:none;
  }
  .loading-indicator_c00186.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00186 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_c00186 { 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_c00186" -> "#page-container .classname_c00186")
 */
.pf_c00186 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00186 { /* 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_c00186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00186 { /* 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_c00186 { /* 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_c00186 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00186 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00186 {overflow:visible;}
  }
}
.c_c00186 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00186 { /* 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_c00186:after { /* webkit #35443 */
  content: '';
}
.t_c00186:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00186 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 */
}
.__c00186 { /* 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_c00186 { /* info for Javascript */
  display:none;
}
.l_c00186 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00186 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00186 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00186: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_c00186 {
    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_c00186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00186.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_c00186 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00186;src:url('chunks/assets/font_da5229edbd84c9ae5464b54b.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.284668;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_c00186;src:url('chunks/assets/font_0e8b220b8d5274a7eab05a5a.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.284180;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_c00186;src:url('chunks/assets/font_d5bdad580165f33dd6488b50.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;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:ff4_c00186;src:url('chunks/assets/font_bcb53a8381e49edf3dba0971.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:1.311035;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_c00186{transform:matrix(0.178841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178841,0.000000,0.000000,0.250000,0,0);}
.m8_c00186{transform:matrix(0.229117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229117,0.000000,0.000000,0.250000,0,0);}
.m3_c00186{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.ma_c00186{transform:matrix(0.241432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241432,0.000000,0.000000,0.250000,0,0);}
.m1_c00186{transform:matrix(0.241706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241706,0.000000,0.000000,0.250000,0,0);}
.m6_c00186{transform:matrix(0.242583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242583,0.000000,0.000000,0.250000,0,0);}
.mb_c00186{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m9_c00186{transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);}
.m7_c00186{transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);}
.m0_c00186{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);}
.m4_c00186{transform:matrix(0.252006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252006,0.000000,0.000000,0.250000,0,0);}
.m5_c00186{transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.v1_c00186{vertical-align:24.564000px;}
.ls33_c00186{letter-spacing:-2.478000px;}
.ls88_c00186{letter-spacing:-2.457000px;}
.ls7f_c00186{letter-spacing:-2.378880px;}
.ls59_c00186{letter-spacing:-2.310000px;}
.ls85_c00186{letter-spacing:-2.204280px;}
.ls4f_c00186{letter-spacing:-2.060280px;}
.ls52_c00186{letter-spacing:-1.996560px;}
.ls4e_c00186{letter-spacing:-1.954080px;}
.ls42_c00186{letter-spacing:-1.854960px;}
.ls57_c00186{letter-spacing:-1.493880px;}
.ls34_c00186{letter-spacing:-1.479720px;}
.ls99_c00186{letter-spacing:-1.389960px;}
.ls3d_c00186{letter-spacing:-1.359360px;}
.ls7c_c00186{letter-spacing:-1.352280px;}
.ls39_c00186{letter-spacing:-1.323960px;}
.ls54_c00186{letter-spacing:-1.295640px;}
.ls6a_c00186{letter-spacing:-1.146960px;}
.ls7a_c00186{letter-spacing:-1.118640px;}
.ls4a_c00186{letter-spacing:-1.111560px;}
.ls8e_c00186{letter-spacing:-1.076160px;}
.ls56_c00186{letter-spacing:-1.047840px;}
.ls62_c00186{letter-spacing:-1.026600px;}
.ls95_c00186{letter-spacing:-0.998280px;}
.ls35_c00186{letter-spacing:-0.977040px;}
.ls6f_c00186{letter-spacing:-0.955800px;}
.ls32_c00186{letter-spacing:-0.934560px;}
.ls4b_c00186{letter-spacing:-0.920400px;}
.ls38_c00186{letter-spacing:-0.828360px;}
.ls93_c00186{letter-spacing:-0.814200px;}
.ls8a_c00186{letter-spacing:-0.772200px;}
.ls84_c00186{letter-spacing:-0.765180px;}
.ls78_c00186{letter-spacing:-0.743400px;}
.ls96_c00186{letter-spacing:-0.679680px;}
.ls70_c00186{letter-spacing:-0.672600px;}
.ls81_c00186{letter-spacing:-0.658440px;}
.ls76_c00186{letter-spacing:-0.651360px;}
.ls37_c00186{letter-spacing:-0.644280px;}
.ls3f_c00186{letter-spacing:-0.637200px;}
.ls73_c00186{letter-spacing:-0.623040px;}
.ls3b_c00186{letter-spacing:-0.615960px;}
.ls49_c00186{letter-spacing:-0.601800px;}
.ls5e_c00186{letter-spacing:-0.594720px;}
.ls41_c00186{letter-spacing:-0.566400px;}
.ls65_c00186{letter-spacing:-0.559320px;}
.ls61_c00186{letter-spacing:-0.538080px;}
.ls86_c00186{letter-spacing:-0.512460px;}
.ls79_c00186{letter-spacing:-0.509760px;}
.ls5a_c00186{letter-spacing:-0.495600px;}
.ls7e_c00186{letter-spacing:-0.488520px;}
.ls6d_c00186{letter-spacing:-0.481440px;}
.ls63_c00186{letter-spacing:-0.474360px;}
.ls60_c00186{letter-spacing:-0.431880px;}
.ls6b_c00186{letter-spacing:-0.424800px;}
.ls30_c00186{letter-spacing:-0.417720px;}
.ls72_c00186{letter-spacing:-0.410640px;}
.ls5f_c00186{letter-spacing:-0.403560px;}
.ls8c_c00186{letter-spacing:-0.396480px;}
.ls50_c00186{letter-spacing:-0.389400px;}
.ls83_c00186{letter-spacing:-0.382320px;}
.ls74_c00186{letter-spacing:-0.375240px;}
.ls97_c00186{letter-spacing:-0.368160px;}
.ls48_c00186{letter-spacing:-0.354000px;}
.ls92_c00186{letter-spacing:-0.346920px;}
.ls91_c00186{letter-spacing:-0.339840px;}
.ls4c_c00186{letter-spacing:-0.332760px;}
.ls44_c00186{letter-spacing:-0.318600px;}
.ls47_c00186{letter-spacing:-0.304440px;}
.ls3a_c00186{letter-spacing:-0.297360px;}
.ls6e_c00186{letter-spacing:-0.290280px;}
.ls31_c00186{letter-spacing:-0.283200px;}
.ls5d_c00186{letter-spacing:-0.261960px;}
.ls45_c00186{letter-spacing:-0.254880px;}
.ls82_c00186{letter-spacing:-0.247800px;}
.ls8f_c00186{letter-spacing:-0.226560px;}
.ls36_c00186{letter-spacing:-0.219480px;}
.ls8d_c00186{letter-spacing:-0.212400px;}
.ls51_c00186{letter-spacing:-0.205320px;}
.ls6c_c00186{letter-spacing:-0.198240px;}
.ls53_c00186{letter-spacing:-0.191160px;}
.ls94_c00186{letter-spacing:-0.177000px;}
.ls43_c00186{letter-spacing:-0.169920px;}
.ls80_c00186{letter-spacing:-0.162840px;}
.ls75_c00186{letter-spacing:-0.155760px;}
.ls40_c00186{letter-spacing:-0.148680px;}
.ls66_c00186{letter-spacing:-0.134520px;}
.ls3e_c00186{letter-spacing:-0.127440px;}
.ls64_c00186{letter-spacing:-0.120360px;}
.ls69_c00186{letter-spacing:-0.116280px;}
.ls5c_c00186{letter-spacing:-0.113280px;}
.ls90_c00186{letter-spacing:-0.099120px;}
.ls4d_c00186{letter-spacing:-0.092040px;}
.ls3c_c00186{letter-spacing:-0.077880px;}
.ls46_c00186{letter-spacing:-0.056640px;}
.ls77_c00186{letter-spacing:-0.035400px;}
.ls71_c00186{letter-spacing:-0.028320px;}
.ls87_c00186{letter-spacing:-0.028080px;}
.ls89_c00186{letter-spacing:-0.014040px;}
.ls55_c00186{letter-spacing:-0.007080px;}
.ls58_c00186{letter-spacing:0.000000px;}
.ls2a_c00186{letter-spacing:0.007080px;}
.ls5_c00186{letter-spacing:0.014160px;}
.ls3_c00186{letter-spacing:0.021240px;}
.ls28_c00186{letter-spacing:0.028320px;}
.ls9_c00186{letter-spacing:0.035400px;}
.ls1c_c00186{letter-spacing:0.042480px;}
.ls2d_c00186{letter-spacing:0.056640px;}
.ls6_c00186{letter-spacing:0.063720px;}
.ls8_c00186{letter-spacing:0.092040px;}
.lsa_c00186{letter-spacing:0.106200px;}
.ls4_c00186{letter-spacing:0.113280px;}
.ls26_c00186{letter-spacing:0.126360px;}
.ls10_c00186{letter-spacing:0.134520px;}
.ls7d_c00186{letter-spacing:0.141600px;}
.ls27_c00186{letter-spacing:0.161460px;}
.ls2b_c00186{letter-spacing:0.177000px;}
.ls12_c00186{letter-spacing:0.184080px;}
.lse_c00186{letter-spacing:0.198240px;}
.ls7_c00186{letter-spacing:0.205320px;}
.ls17_c00186{letter-spacing:0.240720px;}
.lsc_c00186{letter-spacing:0.269040px;}
.ls19_c00186{letter-spacing:0.276120px;}
.ls1e_c00186{letter-spacing:0.283200px;}
.ls11_c00186{letter-spacing:0.297360px;}
.ls29_c00186{letter-spacing:0.318600px;}
.ls67_c00186{letter-spacing:0.332760px;}
.ls2c_c00186{letter-spacing:0.403560px;}
.ls24_c00186{letter-spacing:0.428220px;}
.ls1b_c00186{letter-spacing:0.438960px;}
.ls23_c00186{letter-spacing:0.456300px;}
.ls1_c00186{letter-spacing:0.460200px;}
.ls22_c00186{letter-spacing:0.608880px;}
.ls15_c00186{letter-spacing:0.642960px;}
.ls98_c00186{letter-spacing:0.693840px;}
.ls25_c00186{letter-spacing:0.730080px;}
.ls2_c00186{letter-spacing:0.750480px;}
.ls0_c00186{letter-spacing:0.841320px;}
.ls1a_c00186{letter-spacing:0.870840px;}
.lsd_c00186{letter-spacing:0.927480px;}
.ls7b_c00186{letter-spacing:0.941640px;}
.ls20_c00186{letter-spacing:0.971280px;}
.ls21_c00186{letter-spacing:0.991800px;}
.ls14_c00186{letter-spacing:1.019160px;}
.ls1d_c00186{letter-spacing:1.117800px;}
.lsb_c00186{letter-spacing:1.128600px;}
.ls1f_c00186{letter-spacing:1.142280px;}
.ls16_c00186{letter-spacing:1.196520px;}
.ls2e_c00186{letter-spacing:1.373520px;}
.ls18_c00186{letter-spacing:1.522200px;}
.ls2f_c00186{letter-spacing:1.714980px;}
.lsf_c00186{letter-spacing:2.173560px;}
.ls8b_c00186{letter-spacing:3.270960px;}
.ls13_c00186{letter-spacing:3.377160px;}
.ls68_c00186{letter-spacing:3.420000px;}
.ls5b_c00186{letter-spacing:3.540000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{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__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00186{word-spacing:-16.206120px;}
.ws5_c00186{word-spacing:0.000000px;}
.ws1_c00186{word-spacing:1.543440px;}
.ws4_c00186{word-spacing:3.674640px;}
.ws0_c00186{word-spacing:28.519200px;}
.ws3_c00186{word-spacing:39.683400px;}
._11_c00186{margin-left:-7.264080px;}
._10_c00186{margin-left:-2.610600px;}
._13_c00186{margin-left:-1.078440px;}
._e_c00186{width:1.741680px;}
._d_c00186{width:3.270960px;}
._f_c00186{width:4.616160px;}
._8_c00186{width:5.812680px;}
._a_c00186{width:7.122480px;}
._7_c00186{width:9.416400px;}
._9_c00186{width:11.143920px;}
._5_c00186{width:13.260840px;}
._6_c00186{width:15.124200px;}
._4_c00186{width:18.195600px;}
._12_c00186{width:19.366200px;}
._b_c00186{width:20.942640px;}
._14_c00186{width:21.990480px;}
._c_c00186{width:24.341040px;}
._0_c00186{width:26.266800px;}
._16_c00186{width:27.423420px;}
._2_c00186{width:28.603200px;}
._3_c00186{width:30.068760px;}
._1_c00186{width:32.419320px;}
._17_c00186{width:35.167140px;}
._15_c00186{width:37.388700px;}
._18_c00186{width:40.993200px;}
.fc0_c00186{color:transparent;}
.fs3_c00186{font-size:32.400600px;}
.fs8_c00186{font-size:59.400000px;}
.fs0_c00186{font-size:60.600000px;}
.fs4_c00186{font-size:66.000000px;}
.fs1_c00186{font-size:68.400000px;}
.fs5_c00186{font-size:69.000000px;}
.fs6_c00186{font-size:70.200000px;}
.fs2_c00186{font-size:70.800000px;}
.fs7_c00186{font-size:73.800000px;}
.y0_c00186{bottom:0.000000px;}
.y23_c00186{bottom:66.255000px;}
.y22_c00186{bottom:124.922700px;}
.y21_c00186{bottom:155.880000px;}
.y20_c00186{bottom:186.480000px;}
.y1f_c00186{bottom:217.455000px;}
.y1e_c00186{bottom:217.457700px;}
.y1d_c00186{bottom:248.415000px;}
.y1c_c00186{bottom:279.000000px;}
.y1b_c00186{bottom:309.600000px;}
.y1a_c00186{bottom:309.602700px;}
.y19_c00186{bottom:340.560000px;}
.y18_c00186{bottom:402.495000px;}
.y17_c00186{bottom:433.440000px;}
.y16_c00186{bottom:464.040000px;}
.y15_c00186{bottom:494.655000px;}
.y14_c00186{bottom:556.200000px;}
.y13_c00186{bottom:618.495000px;}
.y12_c00186{bottom:618.505800px;}
.y11_c00186{bottom:680.048700px;}
.y10_c00186{bottom:711.006000px;}
.yf_c00186{bottom:742.335000px;}
.ye_c00186{bottom:742.337700px;}
.yd_c00186{bottom:773.295000px;}
.yc_c00186{bottom:835.562700px;}
.yb_c00186{bottom:866.514000px;}
.ya_c00186{bottom:897.135000px;}
.y8_c00186{bottom:959.034000px;}
.y9_c00186{bottom:959.040000px;}
.y7_c00186{bottom:989.663700px;}
.y5_c00186{bottom:1020.974700px;}
.y6_c00186{bottom:1020.975000px;}
.y4_c00186{bottom:1053.365700px;}
.y3_c00186{bottom:1083.623700px;}
.y2_c00186{bottom:1114.935000px;}
.y1_c00186{bottom:1192.335000px;}
.hb_c00186{height:58.297852px;}
.h2_c00186{height:59.475586px;}
.h7_c00186{height:67.097461px;}
.h5_c00186{height:68.835938px;}
.h9_c00186{height:68.897461px;}
.h3_c00186{height:69.486328px;}
.h4_c00186{height:69.487528px;}
.h8_c00186{height:69.495862px;}
.h6_c00186{height:69.510328px;}
.ha_c00186{height:72.419864px;}
.h1_c00186{height:1263.000000px;}
.h0_c00186{height:1263.240000px;}
.w1_c00186{width:892.500000px;}
.w0_c00186{width:892.800000px;}
.x0_c00186{left:0.000000px;}
.x14_c00186{left:112.857300px;}
.x10_c00186{left:114.359700px;}
.xc_c00186{left:115.373100px;}
.x5_c00186{left:117.338400px;}
.x1_c00186{left:119.085000px;}
.x12_c00186{left:166.650000px;}
.xd_c00186{left:167.925000px;}
.x9_c00186{left:169.005000px;}
.x2_c00186{left:171.150000px;}
.xe_c00186{left:177.675000px;}
.xf_c00186{left:197.160000px;}
.x8_c00186{left:293.535000px;}
.x13_c00186{left:327.720000px;}
.x15_c00186{left:360.180000px;}
.x1c_c00186{left:363.435000px;}
.x16_c00186{left:378.570000px;}
.x1d_c00186{left:394.050000px;}
.x1f_c00186{left:417.810000px;}
.x6_c00186{left:421.485000px;}
.x19_c00186{left:433.395000px;}
.x11_c00186{left:447.960000px;}
.x7_c00186{left:463.965000px;}
.x1b_c00186{left:466.380000px;}
.x3_c00186{left:491.220000px;}
.x1a_c00186{left:541.245000px;}
.x17_c00186{left:550.950000px;}
.x4_c00186{left:554.190000px;}
.x18_c00186{left:568.560000px;}
.xa_c00186{left:593.355000px;}
.xb_c00186{left:631.275000px;}
.x1e_c00186{left:727.395000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.v1_c00186{vertical-align:21.834667pt;}
.ls33_c00186{letter-spacing:-2.202667pt;}
.ls88_c00186{letter-spacing:-2.184000pt;}
.ls7f_c00186{letter-spacing:-2.114560pt;}
.ls59_c00186{letter-spacing:-2.053333pt;}
.ls85_c00186{letter-spacing:-1.959360pt;}
.ls4f_c00186{letter-spacing:-1.831360pt;}
.ls52_c00186{letter-spacing:-1.774720pt;}
.ls4e_c00186{letter-spacing:-1.736960pt;}
.ls42_c00186{letter-spacing:-1.648853pt;}
.ls57_c00186{letter-spacing:-1.327893pt;}
.ls34_c00186{letter-spacing:-1.315307pt;}
.ls99_c00186{letter-spacing:-1.235520pt;}
.ls3d_c00186{letter-spacing:-1.208320pt;}
.ls7c_c00186{letter-spacing:-1.202027pt;}
.ls39_c00186{letter-spacing:-1.176853pt;}
.ls54_c00186{letter-spacing:-1.151680pt;}
.ls6a_c00186{letter-spacing:-1.019520pt;}
.ls7a_c00186{letter-spacing:-0.994347pt;}
.ls4a_c00186{letter-spacing:-0.988053pt;}
.ls8e_c00186{letter-spacing:-0.956587pt;}
.ls56_c00186{letter-spacing:-0.931413pt;}
.ls62_c00186{letter-spacing:-0.912533pt;}
.ls95_c00186{letter-spacing:-0.887360pt;}
.ls35_c00186{letter-spacing:-0.868480pt;}
.ls6f_c00186{letter-spacing:-0.849600pt;}
.ls32_c00186{letter-spacing:-0.830720pt;}
.ls4b_c00186{letter-spacing:-0.818133pt;}
.ls38_c00186{letter-spacing:-0.736320pt;}
.ls93_c00186{letter-spacing:-0.723733pt;}
.ls8a_c00186{letter-spacing:-0.686400pt;}
.ls84_c00186{letter-spacing:-0.680160pt;}
.ls78_c00186{letter-spacing:-0.660800pt;}
.ls96_c00186{letter-spacing:-0.604160pt;}
.ls70_c00186{letter-spacing:-0.597867pt;}
.ls81_c00186{letter-spacing:-0.585280pt;}
.ls76_c00186{letter-spacing:-0.578987pt;}
.ls37_c00186{letter-spacing:-0.572693pt;}
.ls3f_c00186{letter-spacing:-0.566400pt;}
.ls73_c00186{letter-spacing:-0.553813pt;}
.ls3b_c00186{letter-spacing:-0.547520pt;}
.ls49_c00186{letter-spacing:-0.534933pt;}
.ls5e_c00186{letter-spacing:-0.528640pt;}
.ls41_c00186{letter-spacing:-0.503467pt;}
.ls65_c00186{letter-spacing:-0.497173pt;}
.ls61_c00186{letter-spacing:-0.478293pt;}
.ls86_c00186{letter-spacing:-0.455520pt;}
.ls79_c00186{letter-spacing:-0.453120pt;}
.ls5a_c00186{letter-spacing:-0.440533pt;}
.ls7e_c00186{letter-spacing:-0.434240pt;}
.ls6d_c00186{letter-spacing:-0.427947pt;}
.ls63_c00186{letter-spacing:-0.421653pt;}
.ls60_c00186{letter-spacing:-0.383893pt;}
.ls6b_c00186{letter-spacing:-0.377600pt;}
.ls30_c00186{letter-spacing:-0.371307pt;}
.ls72_c00186{letter-spacing:-0.365013pt;}
.ls5f_c00186{letter-spacing:-0.358720pt;}
.ls8c_c00186{letter-spacing:-0.352427pt;}
.ls50_c00186{letter-spacing:-0.346133pt;}
.ls83_c00186{letter-spacing:-0.339840pt;}
.ls74_c00186{letter-spacing:-0.333547pt;}
.ls97_c00186{letter-spacing:-0.327253pt;}
.ls48_c00186{letter-spacing:-0.314667pt;}
.ls92_c00186{letter-spacing:-0.308373pt;}
.ls91_c00186{letter-spacing:-0.302080pt;}
.ls4c_c00186{letter-spacing:-0.295787pt;}
.ls44_c00186{letter-spacing:-0.283200pt;}
.ls47_c00186{letter-spacing:-0.270613pt;}
.ls3a_c00186{letter-spacing:-0.264320pt;}
.ls6e_c00186{letter-spacing:-0.258027pt;}
.ls31_c00186{letter-spacing:-0.251733pt;}
.ls5d_c00186{letter-spacing:-0.232853pt;}
.ls45_c00186{letter-spacing:-0.226560pt;}
.ls82_c00186{letter-spacing:-0.220267pt;}
.ls8f_c00186{letter-spacing:-0.201387pt;}
.ls36_c00186{letter-spacing:-0.195093pt;}
.ls8d_c00186{letter-spacing:-0.188800pt;}
.ls51_c00186{letter-spacing:-0.182507pt;}
.ls6c_c00186{letter-spacing:-0.176213pt;}
.ls53_c00186{letter-spacing:-0.169920pt;}
.ls94_c00186{letter-spacing:-0.157333pt;}
.ls43_c00186{letter-spacing:-0.151040pt;}
.ls80_c00186{letter-spacing:-0.144747pt;}
.ls75_c00186{letter-spacing:-0.138453pt;}
.ls40_c00186{letter-spacing:-0.132160pt;}
.ls66_c00186{letter-spacing:-0.119573pt;}
.ls3e_c00186{letter-spacing:-0.113280pt;}
.ls64_c00186{letter-spacing:-0.106987pt;}
.ls69_c00186{letter-spacing:-0.103360pt;}
.ls5c_c00186{letter-spacing:-0.100693pt;}
.ls90_c00186{letter-spacing:-0.088107pt;}
.ls4d_c00186{letter-spacing:-0.081813pt;}
.ls3c_c00186{letter-spacing:-0.069227pt;}
.ls46_c00186{letter-spacing:-0.050347pt;}
.ls77_c00186{letter-spacing:-0.031467pt;}
.ls71_c00186{letter-spacing:-0.025173pt;}
.ls87_c00186{letter-spacing:-0.024960pt;}
.ls89_c00186{letter-spacing:-0.012480pt;}
.ls55_c00186{letter-spacing:-0.006293pt;}
.ls58_c00186{letter-spacing:0.000000pt;}
.ls2a_c00186{letter-spacing:0.006293pt;}
.ls5_c00186{letter-spacing:0.012587pt;}
.ls3_c00186{letter-spacing:0.018880pt;}
.ls28_c00186{letter-spacing:0.025173pt;}
.ls9_c00186{letter-spacing:0.031467pt;}
.ls1c_c00186{letter-spacing:0.037760pt;}
.ls2d_c00186{letter-spacing:0.050347pt;}
.ls6_c00186{letter-spacing:0.056640pt;}
.ls8_c00186{letter-spacing:0.081813pt;}
.lsa_c00186{letter-spacing:0.094400pt;}
.ls4_c00186{letter-spacing:0.100693pt;}
.ls26_c00186{letter-spacing:0.112320pt;}
.ls10_c00186{letter-spacing:0.119573pt;}
.ls7d_c00186{letter-spacing:0.125867pt;}
.ls27_c00186{letter-spacing:0.143520pt;}
.ls2b_c00186{letter-spacing:0.157333pt;}
.ls12_c00186{letter-spacing:0.163627pt;}
.lse_c00186{letter-spacing:0.176213pt;}
.ls7_c00186{letter-spacing:0.182507pt;}
.ls17_c00186{letter-spacing:0.213973pt;}
.lsc_c00186{letter-spacing:0.239147pt;}
.ls19_c00186{letter-spacing:0.245440pt;}
.ls1e_c00186{letter-spacing:0.251733pt;}
.ls11_c00186{letter-spacing:0.264320pt;}
.ls29_c00186{letter-spacing:0.283200pt;}
.ls67_c00186{letter-spacing:0.295787pt;}
.ls2c_c00186{letter-spacing:0.358720pt;}
.ls24_c00186{letter-spacing:0.380640pt;}
.ls1b_c00186{letter-spacing:0.390187pt;}
.ls23_c00186{letter-spacing:0.405600pt;}
.ls1_c00186{letter-spacing:0.409067pt;}
.ls22_c00186{letter-spacing:0.541227pt;}
.ls15_c00186{letter-spacing:0.571520pt;}
.ls98_c00186{letter-spacing:0.616747pt;}
.ls25_c00186{letter-spacing:0.648960pt;}
.ls2_c00186{letter-spacing:0.667093pt;}
.ls0_c00186{letter-spacing:0.747840pt;}
.ls1a_c00186{letter-spacing:0.774080pt;}
.lsd_c00186{letter-spacing:0.824427pt;}
.ls7b_c00186{letter-spacing:0.837013pt;}
.ls20_c00186{letter-spacing:0.863360pt;}
.ls21_c00186{letter-spacing:0.881600pt;}
.ls14_c00186{letter-spacing:0.905920pt;}
.ls1d_c00186{letter-spacing:0.993600pt;}
.lsb_c00186{letter-spacing:1.003200pt;}
.ls1f_c00186{letter-spacing:1.015360pt;}
.ls16_c00186{letter-spacing:1.063573pt;}
.ls2e_c00186{letter-spacing:1.220907pt;}
.ls18_c00186{letter-spacing:1.353067pt;}
.ls2f_c00186{letter-spacing:1.524427pt;}
.lsf_c00186{letter-spacing:1.932053pt;}
.ls8b_c00186{letter-spacing:2.907520pt;}
.ls13_c00186{letter-spacing:3.001920pt;}
.ls68_c00186{letter-spacing:3.040000pt;}
.ls5b_c00186{letter-spacing:3.146667pt;}
.ws2_c00186{word-spacing:-14.405440pt;}
.ws5_c00186{word-spacing:0.000000pt;}
.ws1_c00186{word-spacing:1.371947pt;}
.ws4_c00186{word-spacing:3.266347pt;}
.ws0_c00186{word-spacing:25.350400pt;}
.ws3_c00186{word-spacing:35.274133pt;}
._11_c00186{margin-left:-6.456960pt;}
._10_c00186{margin-left:-2.320533pt;}
._13_c00186{margin-left:-0.958613pt;}
._e_c00186{width:1.548160pt;}
._d_c00186{width:2.907520pt;}
._f_c00186{width:4.103253pt;}
._8_c00186{width:5.166827pt;}
._a_c00186{width:6.331093pt;}
._7_c00186{width:8.370133pt;}
._9_c00186{width:9.905707pt;}
._5_c00186{width:11.787413pt;}
._6_c00186{width:13.443733pt;}
._4_c00186{width:16.173867pt;}
._12_c00186{width:17.214400pt;}
._b_c00186{width:18.615680pt;}
._14_c00186{width:19.547093pt;}
._c_c00186{width:21.636480pt;}
._0_c00186{width:23.348267pt;}
._16_c00186{width:24.376373pt;}
._2_c00186{width:25.425067pt;}
._3_c00186{width:26.727787pt;}
._1_c00186{width:28.817173pt;}
._17_c00186{width:31.259680pt;}
._15_c00186{width:33.234400pt;}
._18_c00186{width:36.438400pt;}
.fs3_c00186{font-size:28.800533pt;}
.fs8_c00186{font-size:52.800000pt;}
.fs0_c00186{font-size:53.866667pt;}
.fs4_c00186{font-size:58.666667pt;}
.fs1_c00186{font-size:60.800000pt;}
.fs5_c00186{font-size:61.333333pt;}
.fs6_c00186{font-size:62.400000pt;}
.fs2_c00186{font-size:62.933333pt;}
.fs7_c00186{font-size:65.600000pt;}
.y0_c00186{bottom:0.000000pt;}
.y23_c00186{bottom:58.893333pt;}
.y22_c00186{bottom:111.042400pt;}
.y21_c00186{bottom:138.560000pt;}
.y20_c00186{bottom:165.760000pt;}
.y1f_c00186{bottom:193.293333pt;}
.y1e_c00186{bottom:193.295733pt;}
.y1d_c00186{bottom:220.813333pt;}
.y1c_c00186{bottom:248.000000pt;}
.y1b_c00186{bottom:275.200000pt;}
.y1a_c00186{bottom:275.202400pt;}
.y19_c00186{bottom:302.720000pt;}
.y18_c00186{bottom:357.773333pt;}
.y17_c00186{bottom:385.280000pt;}
.y16_c00186{bottom:412.480000pt;}
.y15_c00186{bottom:439.693333pt;}
.y14_c00186{bottom:494.400000pt;}
.y13_c00186{bottom:549.773333pt;}
.y12_c00186{bottom:549.782933pt;}
.y11_c00186{bottom:604.487733pt;}
.y10_c00186{bottom:632.005333pt;}
.yf_c00186{bottom:659.853333pt;}
.ye_c00186{bottom:659.855733pt;}
.yd_c00186{bottom:687.373333pt;}
.yc_c00186{bottom:742.722400pt;}
.yb_c00186{bottom:770.234667pt;}
.ya_c00186{bottom:797.453333pt;}
.y8_c00186{bottom:852.474667pt;}
.y9_c00186{bottom:852.480000pt;}
.y7_c00186{bottom:879.701067pt;}
.y5_c00186{bottom:907.533067pt;}
.y6_c00186{bottom:907.533333pt;}
.y4_c00186{bottom:936.325067pt;}
.y3_c00186{bottom:963.221067pt;}
.y2_c00186{bottom:991.053333pt;}
.y1_c00186{bottom:1059.853333pt;}
.hb_c00186{height:51.820312pt;}
.h2_c00186{height:52.867187pt;}
.h7_c00186{height:59.642187pt;}
.h5_c00186{height:61.187500pt;}
.h9_c00186{height:61.242187pt;}
.h3_c00186{height:61.765625pt;}
.h4_c00186{height:61.766692pt;}
.h8_c00186{height:61.774100pt;}
.h6_c00186{height:61.786958pt;}
.ha_c00186{height:64.373213pt;}
.h1_c00186{height:1122.666667pt;}
.h0_c00186{height:1122.880000pt;}
.w1_c00186{width:793.333333pt;}
.w0_c00186{width:793.600000pt;}
.x0_c00186{left:0.000000pt;}
.x14_c00186{left:100.317600pt;}
.x10_c00186{left:101.653067pt;}
.xc_c00186{left:102.553867pt;}
.x5_c00186{left:104.300800pt;}
.x1_c00186{left:105.853333pt;}
.x12_c00186{left:148.133333pt;}
.xd_c00186{left:149.266667pt;}
.x9_c00186{left:150.226667pt;}
.x2_c00186{left:152.133333pt;}
.xe_c00186{left:157.933333pt;}
.xf_c00186{left:175.253333pt;}
.x8_c00186{left:260.920000pt;}
.x13_c00186{left:291.306667pt;}
.x15_c00186{left:320.160000pt;}
.x1c_c00186{left:323.053333pt;}
.x16_c00186{left:336.506667pt;}
.x1d_c00186{left:350.266667pt;}
.x1f_c00186{left:371.386667pt;}
.x6_c00186{left:374.653333pt;}
.x19_c00186{left:385.240000pt;}
.x11_c00186{left:398.186667pt;}
.x7_c00186{left:412.413333pt;}
.x1b_c00186{left:414.560000pt;}
.x3_c00186{left:436.640000pt;}
.x1a_c00186{left:481.106667pt;}
.x17_c00186{left:489.733333pt;}
.x4_c00186{left:492.613333pt;}
.x18_c00186{left:505.386667pt;}
.xa_c00186{left:527.426667pt;}
.xb_c00186{left:561.133333pt;}
.x1e_c00186{left:646.573333pt;}
}





/* 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_c00187 {
    display:none;
  }
  .loading-indicator_c00187.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00187 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_c00187 { 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_c00187" -> "#page-container .classname_c00187")
 */
.pf_c00187 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00187 { /* 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_c00187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00187 { /* 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_c00187 { /* 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_c00187 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00187 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00187 {overflow:visible;}
  }
}
.c_c00187 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00187 { /* 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_c00187:after { /* webkit #35443 */
  content: '';
}
.t_c00187:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00187 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 */
}
.__c00187 { /* 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_c00187 { /* info for Javascript */
  display:none;
}
.l_c00187 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00187 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00187 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00187: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_c00187 {
    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_c00187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00187.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_c00187 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00187;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;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:ff2_c00187;src:url('chunks/assets/font_0cacfe441b6a9f5d627d7592.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;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_c00187;src:url('chunks/assets/font_ef0427c787be011673d2eb5f.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.284668;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_c00187;src:url('chunks/assets/font_167fc5b06ed574428a86a622.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00187{transform:matrix(0.124734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124734,0.000000,0.000000,0.250000,0,0);}
.m3_c00187{transform:matrix(0.125966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125966,0.000000,0.000000,0.250000,0,0);}
.m2_c00187{transform:matrix(0.236524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236524,0.000000,0.000000,0.250000,0,0);}
.m1_c00187{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);}
.m4_c00187{transform:matrix(0.270814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270814,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls7_c00187{letter-spacing:-2.646000px;}
.ls13_c00187{letter-spacing:-2.478000px;}
.ls9_c00187{letter-spacing:-2.226000px;}
.lsd_c00187{letter-spacing:-2.060640px;}
.ls12_c00187{letter-spacing:-1.365300px;}
.lsc_c00187{letter-spacing:-1.085580px;}
.ls10_c00187{letter-spacing:-0.775920px;}
.lse_c00187{letter-spacing:-0.171720px;}
.ls8_c00187{letter-spacing:0.000000px;}
.ls11_c00187{letter-spacing:0.496080px;}
.lsf_c00187{letter-spacing:0.655080px;}
.ls5_c00187{letter-spacing:0.833160px;}
.lsa_c00187{letter-spacing:1.017600px;}
.ls0_c00187{letter-spacing:1.119360px;}
.ls2_c00187{letter-spacing:1.259280px;}
.ls1_c00187{letter-spacing:1.291080px;}
.lsb_c00187{letter-spacing:1.399200px;}
.ls4_c00187{letter-spacing:1.405560px;}
.ls3_c00187{letter-spacing:1.596360px;}
.ls6_c00187{letter-spacing:1.918080px;}
.ls14_c00187{letter-spacing:2.940000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{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__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00187{word-spacing:-1.170240px;}
.ws4_c00187{word-spacing:0.000000px;}
.ws0_c00187{word-spacing:1.132080px;}
.ws3_c00187{word-spacing:4.057680px;}
.ws2_c00187{word-spacing:4.439280px;}
._2_c00187{margin-left:-143.370000px;}
._0_c00187{margin-left:-6.270960px;}
._3_c00187{margin-left:-4.415520px;}
._1_c00187{margin-left:-1.033920px;}
.fc0_c00187{color:transparent;}
.fs9_c00187{font-size:55.200000px;}
.fs1_c00187{font-size:58.200000px;}
.fsb_c00187{font-size:58.800000px;}
.fs8_c00187{font-size:60.000000px;}
.fs7_c00187{font-size:63.000000px;}
.fs3_c00187{font-size:63.600000px;}
.fs2_c00187{font-size:64.200000px;}
.fs6_c00187{font-size:64.800000px;}
.fs4_c00187{font-size:66.600000px;}
.fsa_c00187{font-size:70.800000px;}
.fs0_c00187{font-size:75.600000px;}
.fs5_c00187{font-size:276.600000px;}
.y0_c00187{bottom:0.000000px;}
.y6_c00187{bottom:148.312200px;}
.yc_c00187{bottom:162.361200px;}
.y5_c00187{bottom:165.595500px;}
.yb_c00187{bottom:180.360000px;}
.y4_c00187{bottom:183.960000px;}
.ya_c00187{bottom:277.215000px;}
.y3_c00187{bottom:331.935000px;}
.y9_c00187{bottom:585.375000px;}
.y2_c00187{bottom:811.800000px;}
.y8_c00187{bottom:873.735000px;}
.y7_c00187{bottom:915.495000px;}
.yf_c00187{bottom:986.415000px;}
.ye_c00187{bottom:1074.975000px;}
.y1_c00187{bottom:1085.040000px;}
.yd_c00187{bottom:1137.255000px;}
.ha_c00187{height:57.571875px;}
.h9_c00187{height:58.886719px;}
.h3_c00187{height:60.700781px;}
.hd_c00187{height:61.326563px;}
.h8_c00187{height:61.831055px;}
.h5_c00187{height:62.388867px;}
.h4_c00187{height:63.008789px;}
.hb_c00187{height:65.364258px;}
.h6_c00187{height:65.395458px;}
.hc_c00187{height:69.486328px;}
.h2_c00187{height:78.848437px;}
.h7_c00187{height:271.467773px;}
.h1_c00187{height:1263.000000px;}
.h0_c00187{height:1263.240000px;}
.w1_c00187{width:892.500000px;}
.w0_c00187{width:892.800000px;}
.x0_c00187{left:0.000000px;}
.x1_c00187{left:87.270000px;}
.x6_c00187{left:111.889800px;}
.x4_c00187{left:114.210000px;}
.x5_c00187{left:135.390000px;}
.x3_c00187{left:318.870000px;}
.x2_c00187{left:321.015000px;}
.x7_c00187{left:342.090000px;}
.xb_c00187{left:431.865000px;}
.xa_c00187{left:584.115000px;}
.x8_c00187{left:587.340000px;}
.x9_c00187{left:596.820000px;}
.xe_c00187{left:671.610000px;}
.xc_c00187{left:679.950000px;}
.xd_c00187{left:762.540000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls7_c00187{letter-spacing:-2.352000pt;}
.ls13_c00187{letter-spacing:-2.202667pt;}
.ls9_c00187{letter-spacing:-1.978667pt;}
.lsd_c00187{letter-spacing:-1.831680pt;}
.ls12_c00187{letter-spacing:-1.213600pt;}
.lsc_c00187{letter-spacing:-0.964960pt;}
.ls10_c00187{letter-spacing:-0.689707pt;}
.lse_c00187{letter-spacing:-0.152640pt;}
.ls8_c00187{letter-spacing:0.000000pt;}
.ls11_c00187{letter-spacing:0.440960pt;}
.lsf_c00187{letter-spacing:0.582293pt;}
.ls5_c00187{letter-spacing:0.740587pt;}
.lsa_c00187{letter-spacing:0.904533pt;}
.ls0_c00187{letter-spacing:0.994987pt;}
.ls2_c00187{letter-spacing:1.119360pt;}
.ls1_c00187{letter-spacing:1.147627pt;}
.lsb_c00187{letter-spacing:1.243733pt;}
.ls4_c00187{letter-spacing:1.249387pt;}
.ls3_c00187{letter-spacing:1.418987pt;}
.ls6_c00187{letter-spacing:1.704960pt;}
.ls14_c00187{letter-spacing:2.613333pt;}
.ws1_c00187{word-spacing:-1.040213pt;}
.ws4_c00187{word-spacing:0.000000pt;}
.ws0_c00187{word-spacing:1.006293pt;}
.ws3_c00187{word-spacing:3.606827pt;}
.ws2_c00187{word-spacing:3.946027pt;}
._2_c00187{margin-left:-127.440000pt;}
._0_c00187{margin-left:-5.574187pt;}
._3_c00187{margin-left:-3.924907pt;}
._1_c00187{margin-left:-0.919040pt;}
.fs9_c00187{font-size:49.066667pt;}
.fs1_c00187{font-size:51.733333pt;}
.fsb_c00187{font-size:52.266667pt;}
.fs8_c00187{font-size:53.333333pt;}
.fs7_c00187{font-size:56.000000pt;}
.fs3_c00187{font-size:56.533333pt;}
.fs2_c00187{font-size:57.066667pt;}
.fs6_c00187{font-size:57.600000pt;}
.fs4_c00187{font-size:59.200000pt;}
.fsa_c00187{font-size:62.933333pt;}
.fs0_c00187{font-size:67.200000pt;}
.fs5_c00187{font-size:245.866667pt;}
.y0_c00187{bottom:0.000000pt;}
.y6_c00187{bottom:131.833067pt;}
.yc_c00187{bottom:144.321067pt;}
.y5_c00187{bottom:147.196000pt;}
.yb_c00187{bottom:160.320000pt;}
.y4_c00187{bottom:163.520000pt;}
.ya_c00187{bottom:246.413333pt;}
.y3_c00187{bottom:295.053333pt;}
.y9_c00187{bottom:520.333333pt;}
.y2_c00187{bottom:721.600000pt;}
.y8_c00187{bottom:776.653333pt;}
.y7_c00187{bottom:813.773333pt;}
.yf_c00187{bottom:876.813333pt;}
.ye_c00187{bottom:955.533333pt;}
.y1_c00187{bottom:964.480000pt;}
.yd_c00187{bottom:1010.893333pt;}
.ha_c00187{height:51.175000pt;}
.h9_c00187{height:52.343750pt;}
.h3_c00187{height:53.956250pt;}
.hd_c00187{height:54.512500pt;}
.h8_c00187{height:54.960938pt;}
.h5_c00187{height:55.456771pt;}
.h4_c00187{height:56.007812pt;}
.hb_c00187{height:58.101562pt;}
.h6_c00187{height:58.129296pt;}
.hc_c00187{height:61.765625pt;}
.h2_c00187{height:70.087500pt;}
.h7_c00187{height:241.304688pt;}
.h1_c00187{height:1122.666667pt;}
.h0_c00187{height:1122.880000pt;}
.w1_c00187{width:793.333333pt;}
.w0_c00187{width:793.600000pt;}
.x0_c00187{left:0.000000pt;}
.x1_c00187{left:77.573333pt;}
.x6_c00187{left:99.457600pt;}
.x4_c00187{left:101.520000pt;}
.x5_c00187{left:120.346667pt;}
.x3_c00187{left:283.440000pt;}
.x2_c00187{left:285.346667pt;}
.x7_c00187{left:304.080000pt;}
.xb_c00187{left:383.880000pt;}
.xa_c00187{left:519.213333pt;}
.x8_c00187{left:522.080000pt;}
.x9_c00187{left:530.506667pt;}
.xe_c00187{left:596.986667pt;}
.xc_c00187{left:604.400000pt;}
.xd_c00187{left:677.813333pt;}
}





/* 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_c00188 {
    display:none;
  }
  .loading-indicator_c00188.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00188 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_c00188 { 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_c00188" -> "#page-container .classname_c00188")
 */
.pf_c00188 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00188 { /* 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_c00188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00188 { /* 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_c00188 { /* 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_c00188 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00188 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00188 {overflow:visible;}
  }
}
.c_c00188 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00188 { /* 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_c00188:after { /* webkit #35443 */
  content: '';
}
.t_c00188:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00188 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 */
}
.__c00188 { /* 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_c00188 { /* info for Javascript */
  display:none;
}
.l_c00188 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00188 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00188 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00188: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_c00188 {
    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_c00188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00188.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_c00188 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00188;src:url('chunks/assets/font_9f8a2450f3f5a574e34ef157.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.284668;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_c00188;src:url('chunks/assets/font_08243fe7a5cf13e736af9cb0.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.284180;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;}
.m9_c00188{transform:matrix(0.235838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235838,0.000000,0.000000,0.250000,0,0);}
.m1_c00188{transform:matrix(0.236851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236851,0.000000,0.000000,0.250000,0,0);}
.m7_c00188{transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);}
.ma_c00188{transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);}
.m8_c00188{transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);}
.m2_c00188{transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);}
.m5_c00188{transform:matrix(0.247235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247235,0.000000,0.000000,0.250000,0,0);}
.m3_c00188{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m4_c00188{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.mb_c00188{transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);}
.m0_c00188{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);}
.m6_c00188{transform:matrix(0.275737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275737,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls61_c00188{letter-spacing:-2.436000px;}
.ls77_c00188{letter-spacing:-2.234160px;}
.ls76_c00188{letter-spacing:-2.136720px;}
.ls6a_c00188{letter-spacing:-1.823520px;}
.ls50_c00188{letter-spacing:-1.649520px;}
.ls5d_c00188{letter-spacing:-1.628640px;}
.ls81_c00188{letter-spacing:-1.545120px;}
.ls58_c00188{letter-spacing:-1.531200px;}
.ls7a_c00188{letter-spacing:-1.503360px;}
.ls51_c00188{letter-spacing:-1.426800px;}
.ls52_c00188{letter-spacing:-1.343280px;}
.ls60_c00188{letter-spacing:-1.218000px;}
.ls7f_c00188{letter-spacing:-1.190160px;}
.ls68_c00188{letter-spacing:-1.169280px;}
.ls92_c00188{letter-spacing:-1.099680px;}
.ls7b_c00188{letter-spacing:-0.925680px;}
.ls6f_c00188{letter-spacing:-0.904800px;}
.ls71_c00188{letter-spacing:-0.856080px;}
.ls83_c00188{letter-spacing:-0.828240px;}
.ls8d_c00188{letter-spacing:-0.793440px;}
.ls97_c00188{letter-spacing:-0.688080px;}
.ls82_c00188{letter-spacing:-0.668160px;}
.ls67_c00188{letter-spacing:-0.640320px;}
.ls8f_c00188{letter-spacing:-0.626400px;}
.ls74_c00188{letter-spacing:-0.584640px;}
.ls6b_c00188{letter-spacing:-0.563760px;}
.ls80_c00188{letter-spacing:-0.549840px;}
.ls8b_c00188{letter-spacing:-0.535920px;}
.ls95_c00188{letter-spacing:-0.528960px;}
.ls4d_c00188{letter-spacing:-0.487200px;}
.ls54_c00188{letter-spacing:-0.480240px;}
.ls87_c00188{letter-spacing:-0.459360px;}
.ls75_c00188{letter-spacing:-0.452400px;}
.ls4f_c00188{letter-spacing:-0.438480px;}
.ls88_c00188{letter-spacing:-0.431520px;}
.ls4c_c00188{letter-spacing:-0.417600px;}
.ls8a_c00188{letter-spacing:-0.396720px;}
.ls56_c00188{letter-spacing:-0.382800px;}
.ls8e_c00188{letter-spacing:-0.361920px;}
.ls6d_c00188{letter-spacing:-0.341040px;}
.ls84_c00188{letter-spacing:-0.320160px;}
.ls72_c00188{letter-spacing:-0.313200px;}
.ls7d_c00188{letter-spacing:-0.306240px;}
.ls7c_c00188{letter-spacing:-0.271440px;}
.ls86_c00188{letter-spacing:-0.264480px;}
.ls53_c00188{letter-spacing:-0.257520px;}
.ls7e_c00188{letter-spacing:-0.236640px;}
.ls5b_c00188{letter-spacing:-0.215760px;}
.ls4e_c00188{letter-spacing:-0.208800px;}
.ls5c_c00188{letter-spacing:-0.201840px;}
.ls79_c00188{letter-spacing:-0.187920px;}
.ls8c_c00188{letter-spacing:-0.180960px;}
.ls59_c00188{letter-spacing:-0.174000px;}
.ls93_c00188{letter-spacing:-0.167040px;}
.ls6c_c00188{letter-spacing:-0.160080px;}
.ls94_c00188{letter-spacing:-0.146160px;}
.ls96_c00188{letter-spacing:-0.139200px;}
.ls63_c00188{letter-spacing:-0.125280px;}
.ls69_c00188{letter-spacing:-0.118320px;}
.ls55_c00188{letter-spacing:-0.111360px;}
.ls89_c00188{letter-spacing:-0.104400px;}
.ls62_c00188{letter-spacing:-0.090480px;}
.ls5f_c00188{letter-spacing:-0.076560px;}
.ls90_c00188{letter-spacing:-0.069600px;}
.ls5e_c00188{letter-spacing:-0.034800px;}
.ls66_c00188{letter-spacing:-0.027840px;}
.ls65_c00188{letter-spacing:-0.020880px;}
.ls73_c00188{letter-spacing:-0.013920px;}
.ls57_c00188{letter-spacing:0.000000px;}
.ls15_c00188{letter-spacing:0.006960px;}
.ls14_c00188{letter-spacing:0.013920px;}
.ls29_c00188{letter-spacing:0.048720px;}
.ls2b_c00188{letter-spacing:0.076560px;}
.lsa_c00188{letter-spacing:0.083520px;}
.ls44_c00188{letter-spacing:0.090480px;}
.ls2c_c00188{letter-spacing:0.125280px;}
.ls2f_c00188{letter-spacing:0.132240px;}
.ls91_c00188{letter-spacing:0.146160px;}
.ls1f_c00188{letter-spacing:0.160080px;}
.ls18_c00188{letter-spacing:0.167040px;}
.ls43_c00188{letter-spacing:0.174000px;}
.ls48_c00188{letter-spacing:0.180960px;}
.ls3d_c00188{letter-spacing:0.208800px;}
.lse_c00188{letter-spacing:0.215760px;}
.ls8_c00188{letter-spacing:0.222720px;}
.lsf_c00188{letter-spacing:0.229680px;}
.ls3_c00188{letter-spacing:0.236640px;}
.ls1b_c00188{letter-spacing:0.243600px;}
.ls3e_c00188{letter-spacing:0.250560px;}
.ls6_c00188{letter-spacing:0.257520px;}
.ls17_c00188{letter-spacing:0.264480px;}
.ls4_c00188{letter-spacing:0.278400px;}
.ls0_c00188{letter-spacing:0.292320px;}
.ls16_c00188{letter-spacing:0.320160px;}
.ls1c_c00188{letter-spacing:0.334080px;}
.ls1e_c00188{letter-spacing:0.348000px;}
.ls33_c00188{letter-spacing:0.354960px;}
.ls25_c00188{letter-spacing:0.361920px;}
.ls2e_c00188{letter-spacing:0.368880px;}
.ls49_c00188{letter-spacing:0.375840px;}
.ls24_c00188{letter-spacing:0.389760px;}
.ls1d_c00188{letter-spacing:0.403680px;}
.ls41_c00188{letter-spacing:0.417600px;}
.lsb_c00188{letter-spacing:0.424560px;}
.ls22_c00188{letter-spacing:0.452400px;}
.ls9_c00188{letter-spacing:0.466320px;}
.ls5a_c00188{letter-spacing:0.487200px;}
.ls28_c00188{letter-spacing:0.494160px;}
.ls2d_c00188{letter-spacing:0.501120px;}
.ls2_c00188{letter-spacing:0.515040px;}
.ls5_c00188{letter-spacing:0.535920px;}
.ls7_c00188{letter-spacing:0.542880px;}
.ls26_c00188{letter-spacing:0.556800px;}
.lsc_c00188{letter-spacing:0.570720px;}
.ls45_c00188{letter-spacing:0.577680px;}
.ls1_c00188{letter-spacing:0.626400px;}
.ls27_c00188{letter-spacing:0.640320px;}
.ls21_c00188{letter-spacing:0.654240px;}
.ls46_c00188{letter-spacing:0.675120px;}
.ls40_c00188{letter-spacing:0.709920px;}
.ls4a_c00188{letter-spacing:0.737760px;}
.ls20_c00188{letter-spacing:0.758640px;}
.ls19_c00188{letter-spacing:0.828240px;}
.ls6e_c00188{letter-spacing:0.883920px;}
.ls30_c00188{letter-spacing:0.918720px;}
.ls3f_c00188{letter-spacing:0.925680px;}
.ls13_c00188{letter-spacing:1.064880px;}
.ls47_c00188{letter-spacing:1.078800px;}
.ls64_c00188{letter-spacing:1.155360px;}
.ls3a_c00188{letter-spacing:1.162560px;}
.ls70_c00188{letter-spacing:1.176000px;}
.ls3b_c00188{letter-spacing:1.189440px;}
.ls36_c00188{letter-spacing:1.202880px;}
.ls11_c00188{letter-spacing:1.236480px;}
.ls37_c00188{letter-spacing:1.330560px;}
.ls31_c00188{letter-spacing:1.364160px;}
.ls32_c00188{letter-spacing:1.377600px;}
.ls3c_c00188{letter-spacing:1.411200px;}
.ls39_c00188{letter-spacing:1.458240px;}
.ls1a_c00188{letter-spacing:1.532160px;}
.ls4b_c00188{letter-spacing:1.557420px;}
.ls35_c00188{letter-spacing:1.579200px;}
.ls10_c00188{letter-spacing:1.673280px;}
.ls38_c00188{letter-spacing:1.733040px;}
.ls42_c00188{letter-spacing:2.164560px;}
.ls23_c00188{letter-spacing:2.275920px;}
.ls12_c00188{letter-spacing:2.442960px;}
.lsd_c00188{letter-spacing:2.714400px;}
.ls34_c00188{letter-spacing:2.802240px;}
.ls2a_c00188{letter-spacing:2.888400px;}
.ls78_c00188{letter-spacing:3.201600px;}
.ls85_c00188{letter-spacing:3.480000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{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__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00188{word-spacing:-0.417120px;}
.ws2_c00188{word-spacing:0.000000px;}
.ws1_c00188{word-spacing:21.072000px;}
._f_c00188{margin-left:-10.989840px;}
._c_c00188{margin-left:-6.412800px;}
._d_c00188{margin-left:-4.704000px;}
._a_c00188{margin-left:-2.992800px;}
._e_c00188{margin-left:-1.163280px;}
._8_c00188{width:1.392000px;}
._10_c00188{width:2.972160px;}
._15_c00188{width:4.064640px;}
._b_c00188{width:5.366160px;}
._14_c00188{width:6.737280px;}
._4_c00188{width:8.553840px;}
._5_c00188{width:10.314720px;}
._7_c00188{width:12.395760px;}
._6_c00188{width:14.281920px;}
._3_c00188{width:16.216800px;}
._9_c00188{width:19.536720px;}
._1_c00188{width:21.951840px;}
._0_c00188{width:23.664000px;}
._12_c00188{width:24.728880px;}
._2_c00188{width:27.004800px;}
._11_c00188{width:28.160160px;}
._13_c00188{width:30.122880px;}
.fc0_c00188{color:transparent;}
.fs3_c00188{font-size:56.400000px;}
.fs0_c00188{font-size:60.600000px;}
.fs2_c00188{font-size:67.200000px;}
.fs1_c00188{font-size:69.600000px;}
.y0_c00188{bottom:0.000000px;}
.y1e_c00188{bottom:69.120015px;}
.y1d_c00188{bottom:192.253815px;}
.y1c_c00188{bottom:222.860415px;}
.y1a_c00188{bottom:253.807215px;}
.y1b_c00188{bottom:253.815015px;}
.y19_c00188{bottom:284.413815px;}
.y18_c00188{bottom:315.003015px;}
.y17_c00188{bottom:345.975015px;}
.y16_c00188{bottom:407.175015px;}
.y15_c00188{bottom:438.135015px;}
.y14_c00188{bottom:469.080015px;}
.y13_c00188{bottom:499.680015px;}
.y12_c00188{bottom:561.600015px;}
.y11_c00188{bottom:561.601815px;}
.y10_c00188{bottom:623.528415px;}
.yf_c00188{bottom:654.135015px;}
.ye_c00188{bottom:715.680015px;}
.yd_c00188{bottom:777.619215px;}
.yc_c00188{bottom:808.208415px;}
.yb_c00188{bottom:839.528415px;}
.ya_c00188{bottom:870.135015px;}
.y9_c00188{bottom:900.720015px;}
.y8_c00188{bottom:900.728415px;}
.y7_c00188{bottom:931.335015px;}
.y6_c00188{bottom:961.935015px;}
.y5_c00188{bottom:1023.836415px;}
.y4_c00188{bottom:1054.090815px;}
.y3_c00188{bottom:1084.680015px;}
.y2_c00188{bottom:1116.000015px;}
.y1_c00188{bottom:1191.615015px;}
.h5_c00188{height:55.353516px;}
.h2_c00188{height:59.475586px;}
.h3_c00188{height:68.308594px;}
.h4_c00188{height:68.325394px;}
.h1_c00188{height:1263.000000px;}
.h0_c00188{height:1263.240015px;}
.w1_c00188{width:892.500000px;}
.w0_c00188{width:892.800015px;}
.x0_c00188{left:0.000000px;}
.x14_c00188{left:119.112615px;}
.x1_c00188{left:120.885015px;}
.x7_c00188{left:171.275415px;}
.xf_c00188{left:172.410015px;}
.x2_c00188{left:174.045015px;}
.x15_c00188{left:211.455015px;}
.x16_c00188{left:237.075015px;}
.x6_c00188{left:281.895015px;}
.x19_c00188{left:420.345015px;}
.x3_c00188{left:433.230015px;}
.x12_c00188{left:460.200015px;}
.x4_c00188{left:464.070015px;}
.x13_c00188{left:486.075015px;}
.xd_c00188{left:535.485015px;}
.xe_c00188{left:563.205015px;}
.xb_c00188{left:582.285015px;}
.x5_c00188{left:593.055015px;}
.x17_c00188{left:595.200015px;}
.x8_c00188{left:609.645015px;}
.x18_c00188{left:628.890015px;}
.x9_c00188{left:637.365015px;}
.x10_c00188{left:642.015015px;}
.xc_c00188{left:643.830015px;}
.xa_c00188{left:672.495015px;}
.x11_c00188{left:685.980015px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls61_c00188{letter-spacing:-2.165333pt;}
.ls77_c00188{letter-spacing:-1.985920pt;}
.ls76_c00188{letter-spacing:-1.899307pt;}
.ls6a_c00188{letter-spacing:-1.620907pt;}
.ls50_c00188{letter-spacing:-1.466240pt;}
.ls5d_c00188{letter-spacing:-1.447680pt;}
.ls81_c00188{letter-spacing:-1.373440pt;}
.ls58_c00188{letter-spacing:-1.361067pt;}
.ls7a_c00188{letter-spacing:-1.336320pt;}
.ls51_c00188{letter-spacing:-1.268267pt;}
.ls52_c00188{letter-spacing:-1.194027pt;}
.ls60_c00188{letter-spacing:-1.082667pt;}
.ls7f_c00188{letter-spacing:-1.057920pt;}
.ls68_c00188{letter-spacing:-1.039360pt;}
.ls92_c00188{letter-spacing:-0.977493pt;}
.ls7b_c00188{letter-spacing:-0.822827pt;}
.ls6f_c00188{letter-spacing:-0.804267pt;}
.ls71_c00188{letter-spacing:-0.760960pt;}
.ls83_c00188{letter-spacing:-0.736213pt;}
.ls8d_c00188{letter-spacing:-0.705280pt;}
.ls97_c00188{letter-spacing:-0.611627pt;}
.ls82_c00188{letter-spacing:-0.593920pt;}
.ls67_c00188{letter-spacing:-0.569173pt;}
.ls8f_c00188{letter-spacing:-0.556800pt;}
.ls74_c00188{letter-spacing:-0.519680pt;}
.ls6b_c00188{letter-spacing:-0.501120pt;}
.ls80_c00188{letter-spacing:-0.488747pt;}
.ls8b_c00188{letter-spacing:-0.476373pt;}
.ls95_c00188{letter-spacing:-0.470187pt;}
.ls4d_c00188{letter-spacing:-0.433067pt;}
.ls54_c00188{letter-spacing:-0.426880pt;}
.ls87_c00188{letter-spacing:-0.408320pt;}
.ls75_c00188{letter-spacing:-0.402133pt;}
.ls4f_c00188{letter-spacing:-0.389760pt;}
.ls88_c00188{letter-spacing:-0.383573pt;}
.ls4c_c00188{letter-spacing:-0.371200pt;}
.ls8a_c00188{letter-spacing:-0.352640pt;}
.ls56_c00188{letter-spacing:-0.340267pt;}
.ls8e_c00188{letter-spacing:-0.321707pt;}
.ls6d_c00188{letter-spacing:-0.303147pt;}
.ls84_c00188{letter-spacing:-0.284587pt;}
.ls72_c00188{letter-spacing:-0.278400pt;}
.ls7d_c00188{letter-spacing:-0.272213pt;}
.ls7c_c00188{letter-spacing:-0.241280pt;}
.ls86_c00188{letter-spacing:-0.235093pt;}
.ls53_c00188{letter-spacing:-0.228907pt;}
.ls7e_c00188{letter-spacing:-0.210347pt;}
.ls5b_c00188{letter-spacing:-0.191787pt;}
.ls4e_c00188{letter-spacing:-0.185600pt;}
.ls5c_c00188{letter-spacing:-0.179413pt;}
.ls79_c00188{letter-spacing:-0.167040pt;}
.ls8c_c00188{letter-spacing:-0.160853pt;}
.ls59_c00188{letter-spacing:-0.154667pt;}
.ls93_c00188{letter-spacing:-0.148480pt;}
.ls6c_c00188{letter-spacing:-0.142293pt;}
.ls94_c00188{letter-spacing:-0.129920pt;}
.ls96_c00188{letter-spacing:-0.123733pt;}
.ls63_c00188{letter-spacing:-0.111360pt;}
.ls69_c00188{letter-spacing:-0.105173pt;}
.ls55_c00188{letter-spacing:-0.098987pt;}
.ls89_c00188{letter-spacing:-0.092800pt;}
.ls62_c00188{letter-spacing:-0.080427pt;}
.ls5f_c00188{letter-spacing:-0.068053pt;}
.ls90_c00188{letter-spacing:-0.061867pt;}
.ls5e_c00188{letter-spacing:-0.030933pt;}
.ls66_c00188{letter-spacing:-0.024747pt;}
.ls65_c00188{letter-spacing:-0.018560pt;}
.ls73_c00188{letter-spacing:-0.012373pt;}
.ls57_c00188{letter-spacing:0.000000pt;}
.ls15_c00188{letter-spacing:0.006187pt;}
.ls14_c00188{letter-spacing:0.012373pt;}
.ls29_c00188{letter-spacing:0.043307pt;}
.ls2b_c00188{letter-spacing:0.068053pt;}
.lsa_c00188{letter-spacing:0.074240pt;}
.ls44_c00188{letter-spacing:0.080427pt;}
.ls2c_c00188{letter-spacing:0.111360pt;}
.ls2f_c00188{letter-spacing:0.117547pt;}
.ls91_c00188{letter-spacing:0.129920pt;}
.ls1f_c00188{letter-spacing:0.142293pt;}
.ls18_c00188{letter-spacing:0.148480pt;}
.ls43_c00188{letter-spacing:0.154667pt;}
.ls48_c00188{letter-spacing:0.160853pt;}
.ls3d_c00188{letter-spacing:0.185600pt;}
.lse_c00188{letter-spacing:0.191787pt;}
.ls8_c00188{letter-spacing:0.197973pt;}
.lsf_c00188{letter-spacing:0.204160pt;}
.ls3_c00188{letter-spacing:0.210347pt;}
.ls1b_c00188{letter-spacing:0.216533pt;}
.ls3e_c00188{letter-spacing:0.222720pt;}
.ls6_c00188{letter-spacing:0.228907pt;}
.ls17_c00188{letter-spacing:0.235093pt;}
.ls4_c00188{letter-spacing:0.247467pt;}
.ls0_c00188{letter-spacing:0.259840pt;}
.ls16_c00188{letter-spacing:0.284587pt;}
.ls1c_c00188{letter-spacing:0.296960pt;}
.ls1e_c00188{letter-spacing:0.309333pt;}
.ls33_c00188{letter-spacing:0.315520pt;}
.ls25_c00188{letter-spacing:0.321707pt;}
.ls2e_c00188{letter-spacing:0.327893pt;}
.ls49_c00188{letter-spacing:0.334080pt;}
.ls24_c00188{letter-spacing:0.346453pt;}
.ls1d_c00188{letter-spacing:0.358827pt;}
.ls41_c00188{letter-spacing:0.371200pt;}
.lsb_c00188{letter-spacing:0.377387pt;}
.ls22_c00188{letter-spacing:0.402133pt;}
.ls9_c00188{letter-spacing:0.414507pt;}
.ls5a_c00188{letter-spacing:0.433067pt;}
.ls28_c00188{letter-spacing:0.439253pt;}
.ls2d_c00188{letter-spacing:0.445440pt;}
.ls2_c00188{letter-spacing:0.457813pt;}
.ls5_c00188{letter-spacing:0.476373pt;}
.ls7_c00188{letter-spacing:0.482560pt;}
.ls26_c00188{letter-spacing:0.494933pt;}
.lsc_c00188{letter-spacing:0.507307pt;}
.ls45_c00188{letter-spacing:0.513493pt;}
.ls1_c00188{letter-spacing:0.556800pt;}
.ls27_c00188{letter-spacing:0.569173pt;}
.ls21_c00188{letter-spacing:0.581547pt;}
.ls46_c00188{letter-spacing:0.600107pt;}
.ls40_c00188{letter-spacing:0.631040pt;}
.ls4a_c00188{letter-spacing:0.655787pt;}
.ls20_c00188{letter-spacing:0.674347pt;}
.ls19_c00188{letter-spacing:0.736213pt;}
.ls6e_c00188{letter-spacing:0.785707pt;}
.ls30_c00188{letter-spacing:0.816640pt;}
.ls3f_c00188{letter-spacing:0.822827pt;}
.ls13_c00188{letter-spacing:0.946560pt;}
.ls47_c00188{letter-spacing:0.958933pt;}
.ls64_c00188{letter-spacing:1.026987pt;}
.ls3a_c00188{letter-spacing:1.033387pt;}
.ls70_c00188{letter-spacing:1.045333pt;}
.ls3b_c00188{letter-spacing:1.057280pt;}
.ls36_c00188{letter-spacing:1.069227pt;}
.ls11_c00188{letter-spacing:1.099093pt;}
.ls37_c00188{letter-spacing:1.182720pt;}
.ls31_c00188{letter-spacing:1.212587pt;}
.ls32_c00188{letter-spacing:1.224533pt;}
.ls3c_c00188{letter-spacing:1.254400pt;}
.ls39_c00188{letter-spacing:1.296213pt;}
.ls1a_c00188{letter-spacing:1.361920pt;}
.ls4b_c00188{letter-spacing:1.384373pt;}
.ls35_c00188{letter-spacing:1.403733pt;}
.ls10_c00188{letter-spacing:1.487360pt;}
.ls38_c00188{letter-spacing:1.540480pt;}
.ls42_c00188{letter-spacing:1.924053pt;}
.ls23_c00188{letter-spacing:2.023040pt;}
.ls12_c00188{letter-spacing:2.171520pt;}
.lsd_c00188{letter-spacing:2.412800pt;}
.ls34_c00188{letter-spacing:2.490880pt;}
.ls2a_c00188{letter-spacing:2.567467pt;}
.ls78_c00188{letter-spacing:2.845867pt;}
.ls85_c00188{letter-spacing:3.093333pt;}
.ws0_c00188{word-spacing:-0.370773pt;}
.ws2_c00188{word-spacing:0.000000pt;}
.ws1_c00188{word-spacing:18.730667pt;}
._f_c00188{margin-left:-9.768747pt;}
._c_c00188{margin-left:-5.700267pt;}
._d_c00188{margin-left:-4.181333pt;}
._a_c00188{margin-left:-2.660267pt;}
._e_c00188{margin-left:-1.034027pt;}
._8_c00188{width:1.237333pt;}
._10_c00188{width:2.641920pt;}
._15_c00188{width:3.613013pt;}
._b_c00188{width:4.769920pt;}
._14_c00188{width:5.988693pt;}
._4_c00188{width:7.603413pt;}
._5_c00188{width:9.168640pt;}
._7_c00188{width:11.018453pt;}
._6_c00188{width:12.695040pt;}
._3_c00188{width:14.414933pt;}
._9_c00188{width:17.365973pt;}
._1_c00188{width:19.512747pt;}
._0_c00188{width:21.034667pt;}
._12_c00188{width:21.981227pt;}
._2_c00188{width:24.004267pt;}
._11_c00188{width:25.031253pt;}
._13_c00188{width:26.775893pt;}
.fs3_c00188{font-size:50.133333pt;}
.fs0_c00188{font-size:53.866667pt;}
.fs2_c00188{font-size:59.733333pt;}
.fs1_c00188{font-size:61.866667pt;}
.y0_c00188{bottom:0.000000pt;}
.y1e_c00188{bottom:61.440013pt;}
.y1d_c00188{bottom:170.892280pt;}
.y1c_c00188{bottom:198.098147pt;}
.y1a_c00188{bottom:225.606413pt;}
.y1b_c00188{bottom:225.613347pt;}
.y19_c00188{bottom:252.812280pt;}
.y18_c00188{bottom:280.002680pt;}
.y17_c00188{bottom:307.533347pt;}
.y16_c00188{bottom:361.933347pt;}
.y15_c00188{bottom:389.453347pt;}
.y14_c00188{bottom:416.960013pt;}
.y13_c00188{bottom:444.160013pt;}
.y12_c00188{bottom:499.200013pt;}
.y11_c00188{bottom:499.201613pt;}
.y10_c00188{bottom:554.247480pt;}
.yf_c00188{bottom:581.453347pt;}
.ye_c00188{bottom:636.160013pt;}
.yd_c00188{bottom:691.217080pt;}
.yc_c00188{bottom:718.407480pt;}
.yb_c00188{bottom:746.247480pt;}
.ya_c00188{bottom:773.453347pt;}
.y9_c00188{bottom:800.640013pt;}
.y8_c00188{bottom:800.647480pt;}
.y7_c00188{bottom:827.853347pt;}
.y6_c00188{bottom:855.053347pt;}
.y5_c00188{bottom:910.076813pt;}
.y4_c00188{bottom:936.969613pt;}
.y3_c00188{bottom:964.160013pt;}
.y2_c00188{bottom:992.000013pt;}
.y1_c00188{bottom:1059.213347pt;}
.h5_c00188{height:49.203125pt;}
.h2_c00188{height:52.867187pt;}
.h3_c00188{height:60.718750pt;}
.h4_c00188{height:60.733683pt;}
.h1_c00188{height:1122.666667pt;}
.h0_c00188{height:1122.880013pt;}
.w1_c00188{width:793.333333pt;}
.w0_c00188{width:793.600013pt;}
.x0_c00188{left:0.000000pt;}
.x14_c00188{left:105.877880pt;}
.x1_c00188{left:107.453347pt;}
.x7_c00188{left:152.244813pt;}
.xf_c00188{left:153.253347pt;}
.x2_c00188{left:154.706680pt;}
.x15_c00188{left:187.960013pt;}
.x16_c00188{left:210.733347pt;}
.x6_c00188{left:250.573347pt;}
.x19_c00188{left:373.640013pt;}
.x3_c00188{left:385.093347pt;}
.x12_c00188{left:409.066680pt;}
.x4_c00188{left:412.506680pt;}
.x13_c00188{left:432.066680pt;}
.xd_c00188{left:475.986680pt;}
.xe_c00188{left:500.626680pt;}
.xb_c00188{left:517.586680pt;}
.x5_c00188{left:527.160013pt;}
.x17_c00188{left:529.066680pt;}
.x8_c00188{left:541.906680pt;}
.x18_c00188{left:559.013347pt;}
.x9_c00188{left:566.546680pt;}
.x10_c00188{left:570.680013pt;}
.xc_c00188{left:572.293347pt;}
.xa_c00188{left:597.773347pt;}
.x11_c00188{left:609.760013pt;}
}





/* 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_c00189 {
    display:none;
  }
  .loading-indicator_c00189.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00189 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_c00189 { 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_c00189" -> "#page-container .classname_c00189")
 */
.pf_c00189 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00189 { /* 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_c00189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00189 { /* 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_c00189 { /* 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_c00189 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00189 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00189 {overflow:visible;}
  }
}
.c_c00189 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00189 { /* 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_c00189:after { /* webkit #35443 */
  content: '';
}
.t_c00189:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00189 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 */
}
.__c00189 { /* 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_c00189 { /* info for Javascript */
  display:none;
}
.l_c00189 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00189 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00189 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00189: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_c00189 {
    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_c00189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00189.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_c00189 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00189;src:url('chunks/assets/font_cd8f0af933bbb8f6e544740d.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.284668;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_c00189;src:url('chunks/assets/font_3eb03b387e636ab7bdc39719.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.284180;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_c00189{transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);}
.m2_c00189{transform:matrix(0.237687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237687,0.000000,0.000000,0.250000,0,0);}
.m1_c00189{transform:matrix(0.238348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238348,0.000000,0.000000,0.250000,0,0);}
.m6_c00189{transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);}
.m3_c00189{transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);}
.m9_c00189{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m5_c00189{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m0_c00189{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);}
.m8_c00189{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m7_c00189{transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls5c_c00189{letter-spacing:-2.457000px;}
.ls4a_c00189{letter-spacing:-2.415000px;}
.ls89_c00189{letter-spacing:-2.365740px;}
.ls69_c00189{letter-spacing:-2.267460px;}
.ls6e_c00189{letter-spacing:-2.204280px;}
.lsa2_c00189{letter-spacing:-2.169180px;}
.ls7e_c00189{letter-spacing:-2.035800px;}
.ls65_c00189{letter-spacing:-1.951560px;}
.ls79_c00189{letter-spacing:-1.916460px;}
.ls60_c00189{letter-spacing:-1.902420px;}
.ls4d_c00189{letter-spacing:-1.888380px;}
.ls7d_c00189{letter-spacing:-1.769040px;}
.ls55_c00189{letter-spacing:-1.670760px;}
.ls8a_c00189{letter-spacing:-1.663740px;}
.ls9d_c00189{letter-spacing:-1.635660px;}
.ls7a_c00189{letter-spacing:-1.593540px;}
.ls52_c00189{letter-spacing:-1.509300px;}
.ls73_c00189{letter-spacing:-1.411020px;}
.ls84_c00189{letter-spacing:-1.361880px;}
.ls59_c00189{letter-spacing:-1.193400px;}
.ls85_c00189{letter-spacing:-1.186380px;}
.ls88_c00189{letter-spacing:-1.165320px;}
.ls86_c00189{letter-spacing:-1.151280px;}
.ls66_c00189{letter-spacing:-0.989820px;}
.ls70_c00189{letter-spacing:-0.905580px;}
.ls8e_c00189{letter-spacing:-0.856440px;}
.ls68_c00189{letter-spacing:-0.842400px;}
.ls74_c00189{letter-spacing:-0.814320px;}
.ls98_c00189{letter-spacing:-0.807300px;}
.ls57_c00189{letter-spacing:-0.800280px;}
.ls50_c00189{letter-spacing:-0.765180px;}
.ls91_c00189{letter-spacing:-0.744120px;}
.ls76_c00189{letter-spacing:-0.702000px;}
.ls9f_c00189{letter-spacing:-0.687960px;}
.ls87_c00189{letter-spacing:-0.666900px;}
.ls8c_c00189{letter-spacing:-0.631800px;}
.ls9b_c00189{letter-spacing:-0.610740px;}
.lsa1_c00189{letter-spacing:-0.568620px;}
.lsa4_c00189{letter-spacing:-0.529620px;}
.ls83_c00189{letter-spacing:-0.526500px;}
.ls51_c00189{letter-spacing:-0.512460px;}
.ls6a_c00189{letter-spacing:-0.491400px;}
.ls58_c00189{letter-spacing:-0.484380px;}
.ls96_c00189{letter-spacing:-0.470340px;}
.ls6f_c00189{letter-spacing:-0.421200px;}
.ls62_c00189{letter-spacing:-0.400140px;}
.ls5d_c00189{letter-spacing:-0.379080px;}
.ls77_c00189{letter-spacing:-0.336960px;}
.lsa3_c00189{letter-spacing:-0.329940px;}
.ls82_c00189{letter-spacing:-0.301860px;}
.ls4b_c00189{letter-spacing:-0.280800px;}
.ls78_c00189{letter-spacing:-0.259740px;}
.ls7c_c00189{letter-spacing:-0.245700px;}
.ls97_c00189{letter-spacing:-0.231660px;}
.ls92_c00189{letter-spacing:-0.224640px;}
.ls99_c00189{letter-spacing:-0.217620px;}
.ls5f_c00189{letter-spacing:-0.210600px;}
.ls53_c00189{letter-spacing:-0.203580px;}
.ls56_c00189{letter-spacing:-0.196560px;}
.ls75_c00189{letter-spacing:-0.182520px;}
.ls9a_c00189{letter-spacing:-0.161460px;}
.ls93_c00189{letter-spacing:-0.154440px;}
.ls5a_c00189{letter-spacing:-0.133380px;}
.ls61_c00189{letter-spacing:-0.126360px;}
.ls4c_c00189{letter-spacing:-0.112320px;}
.ls8b_c00189{letter-spacing:-0.105300px;}
.ls7b_c00189{letter-spacing:-0.091260px;}
.ls9e_c00189{letter-spacing:-0.084240px;}
.ls94_c00189{letter-spacing:-0.077220px;}
.ls63_c00189{letter-spacing:-0.070200px;}
.ls64_c00189{letter-spacing:-0.063180px;}
.ls90_c00189{letter-spacing:-0.056160px;}
.ls5e_c00189{letter-spacing:-0.049140px;}
.ls81_c00189{letter-spacing:-0.042120px;}
.ls8d_c00189{letter-spacing:-0.035100px;}
.ls6b_c00189{letter-spacing:-0.028080px;}
.ls7f_c00189{letter-spacing:-0.021060px;}
.ls54_c00189{letter-spacing:-0.014040px;}
.ls4f_c00189{letter-spacing:-0.007020px;}
.ls5b_c00189{letter-spacing:0.000000px;}
.ls5_c00189{letter-spacing:0.021060px;}
.lsf_c00189{letter-spacing:0.042120px;}
.ls44_c00189{letter-spacing:0.049140px;}
.ls42_c00189{letter-spacing:0.056160px;}
.lsb_c00189{letter-spacing:0.070200px;}
.ls7_c00189{letter-spacing:0.077220px;}
.ls80_c00189{letter-spacing:0.084240px;}
.ls28_c00189{letter-spacing:0.091260px;}
.ls36_c00189{letter-spacing:0.098280px;}
.ls24_c00189{letter-spacing:0.119340px;}
.ls39_c00189{letter-spacing:0.126360px;}
.ls1d_c00189{letter-spacing:0.133380px;}
.ls67_c00189{letter-spacing:0.154440px;}
.ls1e_c00189{letter-spacing:0.161460px;}
.ls32_c00189{letter-spacing:0.168480px;}
.ls48_c00189{letter-spacing:0.175500px;}
.ls33_c00189{letter-spacing:0.182520px;}
.lse_c00189{letter-spacing:0.189540px;}
.ls2e_c00189{letter-spacing:0.196560px;}
.ls3f_c00189{letter-spacing:0.217620px;}
.ls2_c00189{letter-spacing:0.224640px;}
.ls23_c00189{letter-spacing:0.231660px;}
.ls16_c00189{letter-spacing:0.238680px;}
.ls41_c00189{letter-spacing:0.245700px;}
.ls6c_c00189{letter-spacing:0.259740px;}
.ls19_c00189{letter-spacing:0.266760px;}
.lsa0_c00189{letter-spacing:0.273780px;}
.ls1c_c00189{letter-spacing:0.287820px;}
.ls1a_c00189{letter-spacing:0.294120px;}
.ls9_c00189{letter-spacing:0.301860px;}
.ls3e_c00189{letter-spacing:0.308880px;}
.ls22_c00189{letter-spacing:0.315900px;}
.ls3c_c00189{letter-spacing:0.322920px;}
.ls10_c00189{letter-spacing:0.329940px;}
.ls25_c00189{letter-spacing:0.358020px;}
.ls8f_c00189{letter-spacing:0.365040px;}
.ls6_c00189{letter-spacing:0.379080px;}
.ls17_c00189{letter-spacing:0.386100px;}
.ls47_c00189{letter-spacing:0.393120px;}
.ls3_c00189{letter-spacing:0.400140px;}
.ls1_c00189{letter-spacing:0.407160px;}
.lsd_c00189{letter-spacing:0.449280px;}
.lsc_c00189{letter-spacing:0.456300px;}
.ls15_c00189{letter-spacing:0.477360px;}
.ls43_c00189{letter-spacing:0.547560px;}
.ls3a_c00189{letter-spacing:0.554580px;}
.ls35_c00189{letter-spacing:0.561600px;}
.ls12_c00189{letter-spacing:0.568620px;}
.ls3b_c00189{letter-spacing:0.582660px;}
.ls71_c00189{letter-spacing:0.589680px;}
.ls46_c00189{letter-spacing:0.603720px;}
.ls38_c00189{letter-spacing:0.638820px;}
.ls9c_c00189{letter-spacing:0.659880px;}
.ls8_c00189{letter-spacing:0.663480px;}
.ls4_c00189{letter-spacing:0.673920px;}
.ls29_c00189{letter-spacing:0.680940px;}
.ls30_c00189{letter-spacing:0.723060px;}
.ls21_c00189{letter-spacing:0.737100px;}
.ls95_c00189{letter-spacing:0.758160px;}
.ls1b_c00189{letter-spacing:0.800280px;}
.lsa_c00189{letter-spacing:0.821340px;}
.ls40_c00189{letter-spacing:0.842400px;}
.ls14_c00189{letter-spacing:0.870480px;}
.ls26_c00189{letter-spacing:0.878220px;}
.ls2b_c00189{letter-spacing:0.882360px;}
.ls4e_c00189{letter-spacing:0.933660px;}
.ls2f_c00189{letter-spacing:0.954720px;}
.ls2d_c00189{letter-spacing:1.101240px;}
.ls20_c00189{letter-spacing:1.102140px;}
.ls13_c00189{letter-spacing:1.128600px;}
.ls0_c00189{letter-spacing:1.190160px;}
.ls3d_c00189{letter-spacing:1.242540px;}
.ls34_c00189{letter-spacing:1.284660px;}
.ls49_c00189{letter-spacing:1.285200px;}
.ls2c_c00189{letter-spacing:1.326960px;}
.ls27_c00189{letter-spacing:1.335180px;}
.ls11_c00189{letter-spacing:1.425060px;}
.ls45_c00189{letter-spacing:1.769040px;}
.ls18_c00189{letter-spacing:1.804140px;}
.ls1f_c00189{letter-spacing:1.818180px;}
.ls37_c00189{letter-spacing:1.930500px;}
.ls31_c00189{letter-spacing:2.183220px;}
.ls2a_c00189{letter-spacing:2.351700px;}
.ls72_c00189{letter-spacing:3.420000px;}
.ls6d_c00189{letter-spacing:3.510000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{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__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00189{word-spacing:0.000000px;}
.ws5_c00189{word-spacing:1.046160px;}
.ws3_c00189{word-spacing:10.294920px;}
.ws4_c00189{word-spacing:11.346240px;}
.ws1_c00189{word-spacing:24.417600px;}
.ws2_c00189{word-spacing:25.283400px;}
.ws0_c00189{word-spacing:32.726160px;}
._15_c00189{margin-left:-5.110560px;}
._12_c00189{margin-left:-3.910140px;}
._16_c00189{margin-left:-2.906280px;}
._9_c00189{margin-left:-1.474200px;}
._a_c00189{width:1.944540px;}
._14_c00189{width:3.580200px;}
._8_c00189{width:5.377320px;}
._11_c00189{width:6.816420px;}
._18_c00189{width:8.065980px;}
._13_c00189{width:9.842040px;}
._19_c00189{width:11.440140px;}
._17_c00189{width:12.599280px;}
._5_c00189{width:13.941720px;}
._6_c00189{width:16.307460px;}
._4_c00189{width:19.234800px;}
._7_c00189{width:21.067020px;}
._b_c00189{width:22.183200px;}
._c_c00189{width:24.471720px;}
._d_c00189{width:25.538760px;}
._f_c00189{width:26.779680px;}
._10_c00189{width:28.171260px;}
._e_c00189{width:29.494740px;}
._0_c00189{width:31.224960px;}
._1_c00189{width:33.143760px;}
._1a_c00189{width:34.496280px;}
._2_c00189{width:36.012600px;}
._3_c00189{width:40.238640px;}
.fc0_c00189{color:transparent;}
.fs5_c00189{font-size:58.200000px;}
.fs0_c00189{font-size:61.200000px;}
.fs1_c00189{font-size:68.400000px;}
.fs3_c00189{font-size:69.000000px;}
.fs2_c00189{font-size:70.200000px;}
.fs4_c00189{font-size:71.400000px;}
.y0_c00189{bottom:0.000000px;}
.y1f_c00189{bottom:72.375006px;}
.y1e_c00189{bottom:132.495006px;}
.y1d_c00189{bottom:195.509406px;}
.y1c_c00189{bottom:226.467606px;}
.y1b_c00189{bottom:257.425806px;}
.y1a_c00189{bottom:288.384006px;}
.y19_c00189{bottom:319.342206px;}
.y18_c00189{bottom:350.282856px;}
.y17_c00189{bottom:381.258606px;}
.y16_c00189{bottom:412.216806px;}
.y15_c00189{bottom:443.175006px;}
.y14_c00189{bottom:504.720006px;}
.y13_c00189{bottom:566.640006px;}
.y12_c00189{bottom:566.642256px;}
.y11_c00189{bottom:623.170806px;}
.y10_c00189{bottom:654.480006px;}
.yf_c00189{bottom:716.056806px;}
.ye_c00189{bottom:747.015006px;}
.yd_c00189{bottom:777.615006px;}
.yc_c00189{bottom:839.520006px;}
.yb_c00189{bottom:839.527806px;}
.ya_c00189{bottom:870.135006px;}
.y8_c00189{bottom:932.050356px;}
.y9_c00189{bottom:932.055006px;}
.y7_c00189{bottom:962.639256px;}
.y6_c00189{bottom:993.615006px;}
.y4_c00189{bottom:1055.890956px;}
.y5_c00189{bottom:1055.895006px;}
.y3_c00189{bottom:1087.937256px;}
.y2_c00189{bottom:1119.615006px;}
.y1_c00189{bottom:1197.735006px;}
.h8_c00189{height:57.120117px;}
.h2_c00189{height:60.064453px;}
.h6_c00189{height:67.097461px;}
.h4_c00189{height:67.719727px;}
.h3_c00189{height:68.897461px;}
.h5_c00189{height:68.900461px;}
.h7_c00189{height:70.040332px;}
.h1_c00189{height:1263.000000px;}
.h0_c00189{height:1263.240006px;}
.w1_c00189{width:892.500000px;}
.w0_c00189{width:892.799998px;}
.x0_c00189{left:0.000000px;}
.x20_c00189{left:115.179898px;}
.x13_c00189{left:117.528748px;}
.xe_c00189{left:118.985698px;}
.x7_c00189{left:120.057149px;}
.x1_c00189{left:121.244998px;}
.x16_c00189{left:136.259998px;}
.x18_c00189{left:168.029248px;}
.x19_c00189{left:169.485898px;}
.x12_c00189{left:170.804998px;}
.xd_c00189{left:172.589999px;}
.x2_c00189{left:173.684999px;}
.x17_c00189{left:325.799999px;}
.x8_c00189{left:332.549999px;}
.x9_c00189{left:360.554999px;}
.x1a_c00189{left:365.204998px;}
.x1b_c00189{left:394.769998px;}
.x24_c00189{left:419.969998px;}
.x14_c00189{left:424.874998px;}
.x21_c00189{left:442.709999px;}
.x15_c00189{left:459.914999px;}
.x3_c00189{left:464.669999px;}
.xa_c00189{left:470.774999px;}
.x22_c00189{left:474.659999px;}
.xb_c00189{left:493.109998px;}
.x4_c00189{left:504.899999px;}
.xc_c00189{left:520.754999px;}
.x1e_c00189{left:561.764998px;}
.x1f_c00189{left:590.084998px;}
.x1c_c00189{left:606.764998px;}
.xf_c00189{left:628.304999px;}
.x1d_c00189{left:635.504999px;}
.x23_c00189{left:646.469998px;}
.x10_c00189{left:653.924999px;}
.x5_c00189{left:684.989998px;}
.x11_c00189{left:723.059999px;}
.x6_c00189{left:725.654998px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls5c_c00189{letter-spacing:-2.184000pt;}
.ls4a_c00189{letter-spacing:-2.146667pt;}
.ls89_c00189{letter-spacing:-2.102880pt;}
.ls69_c00189{letter-spacing:-2.015520pt;}
.ls6e_c00189{letter-spacing:-1.959360pt;}
.lsa2_c00189{letter-spacing:-1.928160pt;}
.ls7e_c00189{letter-spacing:-1.809600pt;}
.ls65_c00189{letter-spacing:-1.734720pt;}
.ls79_c00189{letter-spacing:-1.703520pt;}
.ls60_c00189{letter-spacing:-1.691040pt;}
.ls4d_c00189{letter-spacing:-1.678560pt;}
.ls7d_c00189{letter-spacing:-1.572480pt;}
.ls55_c00189{letter-spacing:-1.485120pt;}
.ls8a_c00189{letter-spacing:-1.478880pt;}
.ls9d_c00189{letter-spacing:-1.453920pt;}
.ls7a_c00189{letter-spacing:-1.416480pt;}
.ls52_c00189{letter-spacing:-1.341600pt;}
.ls73_c00189{letter-spacing:-1.254240pt;}
.ls84_c00189{letter-spacing:-1.210560pt;}
.ls59_c00189{letter-spacing:-1.060800pt;}
.ls85_c00189{letter-spacing:-1.054560pt;}
.ls88_c00189{letter-spacing:-1.035840pt;}
.ls86_c00189{letter-spacing:-1.023360pt;}
.ls66_c00189{letter-spacing:-0.879840pt;}
.ls70_c00189{letter-spacing:-0.804960pt;}
.ls8e_c00189{letter-spacing:-0.761280pt;}
.ls68_c00189{letter-spacing:-0.748800pt;}
.ls74_c00189{letter-spacing:-0.723840pt;}
.ls98_c00189{letter-spacing:-0.717600pt;}
.ls57_c00189{letter-spacing:-0.711360pt;}
.ls50_c00189{letter-spacing:-0.680160pt;}
.ls91_c00189{letter-spacing:-0.661440pt;}
.ls76_c00189{letter-spacing:-0.624000pt;}
.ls9f_c00189{letter-spacing:-0.611520pt;}
.ls87_c00189{letter-spacing:-0.592800pt;}
.ls8c_c00189{letter-spacing:-0.561600pt;}
.ls9b_c00189{letter-spacing:-0.542880pt;}
.lsa1_c00189{letter-spacing:-0.505440pt;}
.lsa4_c00189{letter-spacing:-0.470773pt;}
.ls83_c00189{letter-spacing:-0.468000pt;}
.ls51_c00189{letter-spacing:-0.455520pt;}
.ls6a_c00189{letter-spacing:-0.436800pt;}
.ls58_c00189{letter-spacing:-0.430560pt;}
.ls96_c00189{letter-spacing:-0.418080pt;}
.ls6f_c00189{letter-spacing:-0.374400pt;}
.ls62_c00189{letter-spacing:-0.355680pt;}
.ls5d_c00189{letter-spacing:-0.336960pt;}
.ls77_c00189{letter-spacing:-0.299520pt;}
.lsa3_c00189{letter-spacing:-0.293280pt;}
.ls82_c00189{letter-spacing:-0.268320pt;}
.ls4b_c00189{letter-spacing:-0.249600pt;}
.ls78_c00189{letter-spacing:-0.230880pt;}
.ls7c_c00189{letter-spacing:-0.218400pt;}
.ls97_c00189{letter-spacing:-0.205920pt;}
.ls92_c00189{letter-spacing:-0.199680pt;}
.ls99_c00189{letter-spacing:-0.193440pt;}
.ls5f_c00189{letter-spacing:-0.187200pt;}
.ls53_c00189{letter-spacing:-0.180960pt;}
.ls56_c00189{letter-spacing:-0.174720pt;}
.ls75_c00189{letter-spacing:-0.162240pt;}
.ls9a_c00189{letter-spacing:-0.143520pt;}
.ls93_c00189{letter-spacing:-0.137280pt;}
.ls5a_c00189{letter-spacing:-0.118560pt;}
.ls61_c00189{letter-spacing:-0.112320pt;}
.ls4c_c00189{letter-spacing:-0.099840pt;}
.ls8b_c00189{letter-spacing:-0.093600pt;}
.ls7b_c00189{letter-spacing:-0.081120pt;}
.ls9e_c00189{letter-spacing:-0.074880pt;}
.ls94_c00189{letter-spacing:-0.068640pt;}
.ls63_c00189{letter-spacing:-0.062400pt;}
.ls64_c00189{letter-spacing:-0.056160pt;}
.ls90_c00189{letter-spacing:-0.049920pt;}
.ls5e_c00189{letter-spacing:-0.043680pt;}
.ls81_c00189{letter-spacing:-0.037440pt;}
.ls8d_c00189{letter-spacing:-0.031200pt;}
.ls6b_c00189{letter-spacing:-0.024960pt;}
.ls7f_c00189{letter-spacing:-0.018720pt;}
.ls54_c00189{letter-spacing:-0.012480pt;}
.ls4f_c00189{letter-spacing:-0.006240pt;}
.ls5b_c00189{letter-spacing:0.000000pt;}
.ls5_c00189{letter-spacing:0.018720pt;}
.lsf_c00189{letter-spacing:0.037440pt;}
.ls44_c00189{letter-spacing:0.043680pt;}
.ls42_c00189{letter-spacing:0.049920pt;}
.lsb_c00189{letter-spacing:0.062400pt;}
.ls7_c00189{letter-spacing:0.068640pt;}
.ls80_c00189{letter-spacing:0.074880pt;}
.ls28_c00189{letter-spacing:0.081120pt;}
.ls36_c00189{letter-spacing:0.087360pt;}
.ls24_c00189{letter-spacing:0.106080pt;}
.ls39_c00189{letter-spacing:0.112320pt;}
.ls1d_c00189{letter-spacing:0.118560pt;}
.ls67_c00189{letter-spacing:0.137280pt;}
.ls1e_c00189{letter-spacing:0.143520pt;}
.ls32_c00189{letter-spacing:0.149760pt;}
.ls48_c00189{letter-spacing:0.156000pt;}
.ls33_c00189{letter-spacing:0.162240pt;}
.lse_c00189{letter-spacing:0.168480pt;}
.ls2e_c00189{letter-spacing:0.174720pt;}
.ls3f_c00189{letter-spacing:0.193440pt;}
.ls2_c00189{letter-spacing:0.199680pt;}
.ls23_c00189{letter-spacing:0.205920pt;}
.ls16_c00189{letter-spacing:0.212160pt;}
.ls41_c00189{letter-spacing:0.218400pt;}
.ls6c_c00189{letter-spacing:0.230880pt;}
.ls19_c00189{letter-spacing:0.237120pt;}
.lsa0_c00189{letter-spacing:0.243360pt;}
.ls1c_c00189{letter-spacing:0.255840pt;}
.ls1a_c00189{letter-spacing:0.261440pt;}
.ls9_c00189{letter-spacing:0.268320pt;}
.ls3e_c00189{letter-spacing:0.274560pt;}
.ls22_c00189{letter-spacing:0.280800pt;}
.ls3c_c00189{letter-spacing:0.287040pt;}
.ls10_c00189{letter-spacing:0.293280pt;}
.ls25_c00189{letter-spacing:0.318240pt;}
.ls8f_c00189{letter-spacing:0.324480pt;}
.ls6_c00189{letter-spacing:0.336960pt;}
.ls17_c00189{letter-spacing:0.343200pt;}
.ls47_c00189{letter-spacing:0.349440pt;}
.ls3_c00189{letter-spacing:0.355680pt;}
.ls1_c00189{letter-spacing:0.361920pt;}
.lsd_c00189{letter-spacing:0.399360pt;}
.lsc_c00189{letter-spacing:0.405600pt;}
.ls15_c00189{letter-spacing:0.424320pt;}
.ls43_c00189{letter-spacing:0.486720pt;}
.ls3a_c00189{letter-spacing:0.492960pt;}
.ls35_c00189{letter-spacing:0.499200pt;}
.ls12_c00189{letter-spacing:0.505440pt;}
.ls3b_c00189{letter-spacing:0.517920pt;}
.ls71_c00189{letter-spacing:0.524160pt;}
.ls46_c00189{letter-spacing:0.536640pt;}
.ls38_c00189{letter-spacing:0.567840pt;}
.ls9c_c00189{letter-spacing:0.586560pt;}
.ls8_c00189{letter-spacing:0.589760pt;}
.ls4_c00189{letter-spacing:0.599040pt;}
.ls29_c00189{letter-spacing:0.605280pt;}
.ls30_c00189{letter-spacing:0.642720pt;}
.ls21_c00189{letter-spacing:0.655200pt;}
.ls95_c00189{letter-spacing:0.673920pt;}
.ls1b_c00189{letter-spacing:0.711360pt;}
.lsa_c00189{letter-spacing:0.730080pt;}
.ls40_c00189{letter-spacing:0.748800pt;}
.ls14_c00189{letter-spacing:0.773760pt;}
.ls26_c00189{letter-spacing:0.780640pt;}
.ls2b_c00189{letter-spacing:0.784320pt;}
.ls4e_c00189{letter-spacing:0.829920pt;}
.ls2f_c00189{letter-spacing:0.848640pt;}
.ls2d_c00189{letter-spacing:0.978880pt;}
.ls20_c00189{letter-spacing:0.979680pt;}
.ls13_c00189{letter-spacing:1.003200pt;}
.ls0_c00189{letter-spacing:1.057920pt;}
.ls3d_c00189{letter-spacing:1.104480pt;}
.ls34_c00189{letter-spacing:1.141920pt;}
.ls49_c00189{letter-spacing:1.142400pt;}
.ls2c_c00189{letter-spacing:1.179520pt;}
.ls27_c00189{letter-spacing:1.186827pt;}
.ls11_c00189{letter-spacing:1.266720pt;}
.ls45_c00189{letter-spacing:1.572480pt;}
.ls18_c00189{letter-spacing:1.603680pt;}
.ls1f_c00189{letter-spacing:1.616160pt;}
.ls37_c00189{letter-spacing:1.716000pt;}
.ls31_c00189{letter-spacing:1.940640pt;}
.ls2a_c00189{letter-spacing:2.090400pt;}
.ls72_c00189{letter-spacing:3.040000pt;}
.ls6d_c00189{letter-spacing:3.120000pt;}
.ws6_c00189{word-spacing:0.000000pt;}
.ws5_c00189{word-spacing:0.929920pt;}
.ws3_c00189{word-spacing:9.151040pt;}
.ws4_c00189{word-spacing:10.085547pt;}
.ws1_c00189{word-spacing:21.704533pt;}
.ws2_c00189{word-spacing:22.474133pt;}
.ws0_c00189{word-spacing:29.089920pt;}
._15_c00189{margin-left:-4.542720pt;}
._12_c00189{margin-left:-3.475680pt;}
._16_c00189{margin-left:-2.583360pt;}
._9_c00189{margin-left:-1.310400pt;}
._a_c00189{width:1.728480pt;}
._14_c00189{width:3.182400pt;}
._8_c00189{width:4.779840pt;}
._11_c00189{width:6.059040pt;}
._18_c00189{width:7.169760pt;}
._13_c00189{width:8.748480pt;}
._19_c00189{width:10.169013pt;}
._17_c00189{width:11.199360pt;}
._5_c00189{width:12.392640pt;}
._6_c00189{width:14.495520pt;}
._4_c00189{width:17.097600pt;}
._7_c00189{width:18.726240pt;}
._b_c00189{width:19.718400pt;}
._c_c00189{width:21.752640pt;}
._d_c00189{width:22.701120pt;}
._f_c00189{width:23.804160pt;}
._10_c00189{width:25.041120pt;}
._e_c00189{width:26.217547pt;}
._0_c00189{width:27.755520pt;}
._1_c00189{width:29.461120pt;}
._1a_c00189{width:30.663360pt;}
._2_c00189{width:32.011200pt;}
._3_c00189{width:35.767680pt;}
.fs5_c00189{font-size:51.733333pt;}
.fs0_c00189{font-size:54.400000pt;}
.fs1_c00189{font-size:60.800000pt;}
.fs3_c00189{font-size:61.333333pt;}
.fs2_c00189{font-size:62.400000pt;}
.fs4_c00189{font-size:63.466667pt;}
.y0_c00189{bottom:0.000000pt;}
.y1f_c00189{bottom:64.333339pt;}
.y1e_c00189{bottom:117.773339pt;}
.y1d_c00189{bottom:173.786139pt;}
.y1c_c00189{bottom:201.304539pt;}
.y1b_c00189{bottom:228.822939pt;}
.y1a_c00189{bottom:256.341339pt;}
.y19_c00189{bottom:283.859739pt;}
.y18_c00189{bottom:311.362539pt;}
.y17_c00189{bottom:338.896539pt;}
.y16_c00189{bottom:366.414939pt;}
.y15_c00189{bottom:393.933339pt;}
.y14_c00189{bottom:448.640005pt;}
.y13_c00189{bottom:503.680005pt;}
.y12_c00189{bottom:503.682005pt;}
.y11_c00189{bottom:553.929605pt;}
.y10_c00189{bottom:581.760005pt;}
.yf_c00189{bottom:636.494939pt;}
.ye_c00189{bottom:664.013339pt;}
.yd_c00189{bottom:691.213339pt;}
.yc_c00189{bottom:746.240005pt;}
.yb_c00189{bottom:746.246939pt;}
.ya_c00189{bottom:773.453339pt;}
.y8_c00189{bottom:828.489205pt;}
.y9_c00189{bottom:828.493339pt;}
.y7_c00189{bottom:855.679339pt;}
.y6_c00189{bottom:883.213339pt;}
.y4_c00189{bottom:938.569739pt;}
.y5_c00189{bottom:938.573339pt;}
.y3_c00189{bottom:967.055339pt;}
.y2_c00189{bottom:995.213339pt;}
.y1_c00189{bottom:1064.653339pt;}
.h8_c00189{height:50.773437pt;}
.h2_c00189{height:53.390625pt;}
.h6_c00189{height:59.642187pt;}
.h4_c00189{height:60.195312pt;}
.h3_c00189{height:61.242187pt;}
.h5_c00189{height:61.244854pt;}
.h7_c00189{height:62.258073pt;}
.h1_c00189{height:1122.666667pt;}
.h0_c00189{height:1122.880005pt;}
.w1_c00189{width:793.333333pt;}
.w0_c00189{width:793.599999pt;}
.x0_c00189{left:0.000000pt;}
.x20_c00189{left:102.382132pt;}
.x13_c00189{left:104.469999pt;}
.xe_c00189{left:105.765065pt;}
.x7_c00189{left:106.717465pt;}
.x1_c00189{left:107.773332pt;}
.x16_c00189{left:121.119999pt;}
.x18_c00189{left:149.359332pt;}
.x19_c00189{left:150.654132pt;}
.x12_c00189{left:151.826665pt;}
.xd_c00189{left:153.413332pt;}
.x2_c00189{left:154.386665pt;}
.x17_c00189{left:289.599999pt;}
.x8_c00189{left:295.599999pt;}
.x9_c00189{left:320.493332pt;}
.x1a_c00189{left:324.626665pt;}
.x1b_c00189{left:350.906665pt;}
.x24_c00189{left:373.306665pt;}
.x14_c00189{left:377.666665pt;}
.x21_c00189{left:393.519999pt;}
.x15_c00189{left:408.813332pt;}
.x3_c00189{left:413.039999pt;}
.xa_c00189{left:418.466665pt;}
.x22_c00189{left:421.919999pt;}
.xb_c00189{left:438.319999pt;}
.x4_c00189{left:448.799999pt;}
.xc_c00189{left:462.893332pt;}
.x1e_c00189{left:499.346665pt;}
.x1f_c00189{left:524.519999pt;}
.x1c_c00189{left:539.346665pt;}
.xf_c00189{left:558.493332pt;}
.x1d_c00189{left:564.893332pt;}
.x23_c00189{left:574.639999pt;}
.x10_c00189{left:581.266665pt;}
.x5_c00189{left:608.879999pt;}
.x11_c00189{left:642.719999pt;}
.x6_c00189{left:645.026665pt;}
}





/* 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_c00190 {
    display:none;
  }
  .loading-indicator_c00190.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00190 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_c00190 { 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_c00190" -> "#page-container .classname_c00190")
 */
.pf_c00190 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00190 { /* 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_c00190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00190 { /* 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_c00190 { /* 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_c00190 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00190 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00190 {overflow:visible;}
  }
}
.c_c00190 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00190 { /* 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_c00190:after { /* webkit #35443 */
  content: '';
}
.t_c00190:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00190 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 */
}
.__c00190 { /* 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_c00190 { /* info for Javascript */
  display:none;
}
.l_c00190 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00190 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00190 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00190: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_c00190 {
    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_c00190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00190.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_c00190 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00190;src:url('chunks/assets/font_dec573e130173c54e33885ee.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.284668;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_c00190;src:url('chunks/assets/font_68f038c13b48c94a5b620a29.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.284180;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_c00190;src:url('chunks/assets/font_6923c10a3b84a06c8d38ead0.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;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;}
.m4_c00190{transform:matrix(0.235609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235609,0.000000,0.000000,0.250000,0,0);}
.m10_c00190{transform:matrix(0.239609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239609,0.000000,0.000000,0.250000,0,0);}
.mc_c00190{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.m3_c00190{transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);}
.mf_c00190{transform:matrix(0.242094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242094,0.000000,0.000000,0.250000,0,0);}
.m5_c00190{transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);}
.m7_c00190{transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);}
.me_c00190{transform:matrix(0.245562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245562,0.000000,0.000000,0.250000,0,0);}
.m0_c00190{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.md_c00190{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m8_c00190{transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);}
.m6_c00190{transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);}
.m2_c00190{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.mb_c00190{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.ma_c00190{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m1_c00190{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);}
.m9_c00190{transform:matrix(0.259681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259681,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.ls53_c00190{letter-spacing:-2.457000px;}
.ls9b_c00190{letter-spacing:-2.415000px;}
.ls39_c00190{letter-spacing:-2.352000px;}
.ls60_c00190{letter-spacing:-2.246400px;}
.ls42_c00190{letter-spacing:-2.232360px;}
.ls48_c00190{letter-spacing:-2.204280px;}
.ls8b_c00190{letter-spacing:-2.120040px;}
.ls82_c00190{letter-spacing:-2.035800px;}
.ls61_c00190{letter-spacing:-1.995000px;}
.lsab_c00190{letter-spacing:-1.974000px;}
.ls80_c00190{letter-spacing:-1.972620px;}
.ls4a_c00190{letter-spacing:-1.951560px;}
.ls8c_c00190{letter-spacing:-1.944540px;}
.ls47_c00190{letter-spacing:-1.902420px;}
.ls7f_c00190{letter-spacing:-1.839240px;}
.ls8a_c00190{letter-spacing:-1.769040px;}
.ls4d_c00190{letter-spacing:-1.670760px;}
.ls78_c00190{letter-spacing:-1.635660px;}
.ls6b_c00190{letter-spacing:-1.593540px;}
.ls84_c00190{letter-spacing:-1.516320px;}
.ls85_c00190{letter-spacing:-1.488240px;}
.lsa3_c00190{letter-spacing:-1.467180px;}
.ls68_c00190{letter-spacing:-1.453140px;}
.ls5c_c00190{letter-spacing:-1.425060px;}
.ls72_c00190{letter-spacing:-1.270620px;}
.ls8d_c00190{letter-spacing:-1.242540px;}
.ls88_c00190{letter-spacing:-1.151280px;}
.ls6a_c00190{letter-spacing:-1.130220px;}
.ls95_c00190{letter-spacing:-1.109160px;}
.ls91_c00190{letter-spacing:-1.045980px;}
.ls9e_c00190{letter-spacing:-1.038960px;}
.ls86_c00190{letter-spacing:-1.010880px;}
.ls7e_c00190{letter-spacing:-1.003860px;}
.ls6f_c00190{letter-spacing:-0.989820px;}
.ls87_c00190{letter-spacing:-0.968760px;}
.ls50_c00190{letter-spacing:-0.954720px;}
.lsa5_c00190{letter-spacing:-0.884520px;}
.ls3c_c00190{letter-spacing:-0.877500px;}
.ls7c_c00190{letter-spacing:-0.863460px;}
.ls5e_c00190{letter-spacing:-0.842400px;}
.ls64_c00190{letter-spacing:-0.835380px;}
.ls94_c00190{letter-spacing:-0.814320px;}
.ls92_c00190{letter-spacing:-0.793260px;}
.ls65_c00190{letter-spacing:-0.779220px;}
.ls3e_c00190{letter-spacing:-0.765180px;}
.ls8e_c00190{letter-spacing:-0.751140px;}
.ls4f_c00190{letter-spacing:-0.744120px;}
.ls71_c00190{letter-spacing:-0.737100px;}
.ls89_c00190{letter-spacing:-0.723060px;}
.ls4b_c00190{letter-spacing:-0.702000px;}
.ls66_c00190{letter-spacing:-0.631800px;}
.ls9f_c00190{letter-spacing:-0.624780px;}
.ls9a_c00190{letter-spacing:-0.610740px;}
.ls76_c00190{letter-spacing:-0.589680px;}
.lsa4_c00190{letter-spacing:-0.575640px;}
.lsa1_c00190{letter-spacing:-0.568620px;}
.ls73_c00190{letter-spacing:-0.561600px;}
.ls96_c00190{letter-spacing:-0.547560px;}
.ls83_c00190{letter-spacing:-0.533520px;}
.ls81_c00190{letter-spacing:-0.526500px;}
.ls3a_c00190{letter-spacing:-0.512460px;}
.ls93_c00190{letter-spacing:-0.505440px;}
.ls49_c00190{letter-spacing:-0.491400px;}
.ls99_c00190{letter-spacing:-0.484380px;}
.ls8f_c00190{letter-spacing:-0.477360px;}
.ls67_c00190{letter-spacing:-0.470340px;}
.ls56_c00190{letter-spacing:-0.463320px;}
.ls79_c00190{letter-spacing:-0.456300px;}
.ls75_c00190{letter-spacing:-0.449280px;}
.lsa6_c00190{letter-spacing:-0.442260px;}
.ls9c_c00190{letter-spacing:-0.421200px;}
.ls97_c00190{letter-spacing:-0.407160px;}
.lsa8_c00190{letter-spacing:-0.386100px;}
.ls44_c00190{letter-spacing:-0.372060px;}
.ls59_c00190{letter-spacing:-0.351000px;}
.ls5b_c00190{letter-spacing:-0.336960px;}
.ls5a_c00190{letter-spacing:-0.329940px;}
.ls70_c00190{letter-spacing:-0.308880px;}
.ls3b_c00190{letter-spacing:-0.301860px;}
.ls62_c00190{letter-spacing:-0.294840px;}
.ls6e_c00190{letter-spacing:-0.280800px;}
.ls6d_c00190{letter-spacing:-0.266760px;}
.lsa0_c00190{letter-spacing:-0.259740px;}
.ls3f_c00190{letter-spacing:-0.245700px;}
.lsaa_c00190{letter-spacing:-0.238680px;}
.ls43_c00190{letter-spacing:-0.231660px;}
.ls52_c00190{letter-spacing:-0.217620px;}
.ls45_c00190{letter-spacing:-0.203580px;}
.ls58_c00190{letter-spacing:-0.196560px;}
.ls7a_c00190{letter-spacing:-0.182520px;}
.lsa2_c00190{letter-spacing:-0.175500px;}
.lsa7_c00190{letter-spacing:-0.168480px;}
.ls98_c00190{letter-spacing:-0.161460px;}
.ls4e_c00190{letter-spacing:-0.154440px;}
.ls4c_c00190{letter-spacing:-0.147420px;}
.ls9d_c00190{letter-spacing:-0.140400px;}
.ls63_c00190{letter-spacing:-0.126360px;}
.ls5f_c00190{letter-spacing:-0.119340px;}
.ls7b_c00190{letter-spacing:-0.105300px;}
.ls57_c00190{letter-spacing:-0.098280px;}
.ls3d_c00190{letter-spacing:-0.091260px;}
.ls77_c00190{letter-spacing:-0.077220px;}
.ls55_c00190{letter-spacing:-0.063180px;}
.ls90_c00190{letter-spacing:-0.049140px;}
.ls7d_c00190{letter-spacing:-0.042120px;}
.lsa9_c00190{letter-spacing:-0.028080px;}
.ls41_c00190{letter-spacing:-0.014040px;}
.ls46_c00190{letter-spacing:0.000000px;}
.ls8_c00190{letter-spacing:0.007020px;}
.ls27_c00190{letter-spacing:0.014040px;}
.ls30_c00190{letter-spacing:0.042120px;}
.ls2f_c00190{letter-spacing:0.056160px;}
.ls4_c00190{letter-spacing:0.070200px;}
.lsc_c00190{letter-spacing:0.077220px;}
.lsb_c00190{letter-spacing:0.105300px;}
.lsf_c00190{letter-spacing:0.126360px;}
.ls2_c00190{letter-spacing:0.147420px;}
.ls29_c00190{letter-spacing:0.161460px;}
.ls33_c00190{letter-spacing:0.175500px;}
.ls34_c00190{letter-spacing:0.182520px;}
.ls6_c00190{letter-spacing:0.189540px;}
.ls7_c00190{letter-spacing:0.203580px;}
.ls32_c00190{letter-spacing:0.224640px;}
.lsa_c00190{letter-spacing:0.231660px;}
.ls9_c00190{letter-spacing:0.245700px;}
.ls69_c00190{letter-spacing:0.252720px;}
.ls11_c00190{letter-spacing:0.259740px;}
.ls2e_c00190{letter-spacing:0.273780px;}
.ls6c_c00190{letter-spacing:0.280800px;}
.ls5d_c00190{letter-spacing:0.301860px;}
.ls12_c00190{letter-spacing:0.308880px;}
.ls13_c00190{letter-spacing:0.315900px;}
.ls3_c00190{letter-spacing:0.343980px;}
.ls40_c00190{letter-spacing:0.358020px;}
.ls14_c00190{letter-spacing:0.365040px;}
.ls37_c00190{letter-spacing:0.372060px;}
.ls38_c00190{letter-spacing:0.400140px;}
.ls1c_c00190{letter-spacing:0.407160px;}
.ls15_c00190{letter-spacing:0.421200px;}
.ls28_c00190{letter-spacing:0.435240px;}
.ls5_c00190{letter-spacing:0.456300px;}
.lsd_c00190{letter-spacing:0.477360px;}
.ls36_c00190{letter-spacing:0.491400px;}
.ls19_c00190{letter-spacing:0.508500px;}
.ls1_c00190{letter-spacing:0.547560px;}
.ls23_c00190{letter-spacing:0.589680px;}
.ls1b_c00190{letter-spacing:0.603420px;}
.ls1e_c00190{letter-spacing:0.616980px;}
.ls54_c00190{letter-spacing:0.624780px;}
.lse_c00190{letter-spacing:0.638820px;}
.ls18_c00190{letter-spacing:0.664440px;}
.ls21_c00190{letter-spacing:0.722160px;}
.ls26_c00190{letter-spacing:0.725460px;}
.ls2d_c00190{letter-spacing:0.737100px;}
.ls20_c00190{letter-spacing:0.744120px;}
.ls0_c00190{letter-spacing:0.759360px;}
.ls35_c00190{letter-spacing:0.779220px;}
.ls24_c00190{letter-spacing:0.840720px;}
.ls17_c00190{letter-spacing:0.926640px;}
.ls1a_c00190{letter-spacing:0.942420px;}
.ls10_c00190{letter-spacing:0.949200px;}
.ls2c_c00190{letter-spacing:1.017000px;}
.ls2b_c00190{letter-spacing:1.050900px;}
.ls16_c00190{letter-spacing:1.242540px;}
.ls25_c00190{letter-spacing:1.261080px;}
.ls1d_c00190{letter-spacing:1.375920px;}
.ls2a_c00190{letter-spacing:1.511940px;}
.ls31_c00190{letter-spacing:1.769040px;}
.ls1f_c00190{letter-spacing:1.818180px;}
.ls22_c00190{letter-spacing:1.932840px;}
.ls51_c00190{letter-spacing:2.183220px;}
.ls74_c00190{letter-spacing:3.390000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{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__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00190{word-spacing:0.000000px;}
.ws3_c00190{word-spacing:2.998200px;}
.ws2_c00190{word-spacing:5.050980px;}
.ws1_c00190{word-spacing:22.867800px;}
.ws0_c00190{word-spacing:24.532200px;}
._16_c00190{margin-left:-22.460520px;}
._17_c00190{margin-left:-6.308520px;}
._15_c00190{margin-left:-3.910140px;}
._14_c00190{margin-left:-1.277640px;}
._c_c00190{width:1.284660px;}
._d_c00190{width:2.737800px;}
._e_c00190{width:4.183920px;}
._b_c00190{width:5.601960px;}
._9_c00190{width:6.991920px;}
._8_c00190{width:8.122140px;}
._a_c00190{width:9.898200px;}
._6_c00190{width:11.772540px;}
._13_c00190{width:13.274820px;}
._1b_c00190{width:14.562720px;}
._5_c00190{width:15.724800px;}
._7_c00190{width:18.552240px;}
._4_c00190{width:20.301840px;}
._12_c00190{width:21.698820px;}
._0_c00190{width:23.011560px;}
._2_c00190{width:24.387480px;}
._1_c00190{width:26.009100px;}
._3_c00190{width:27.799200px;}
._f_c00190{width:28.817100px;}
._11_c00190{width:29.856060px;}
._18_c00190{width:31.007340px;}
._1a_c00190{width:32.081400px;}
._10_c00190{width:33.934680px;}
._19_c00190{width:36.047700px;}
.fc0_c00190{color:transparent;}
.fs6_c00190{font-size:56.400000px;}
.fs3_c00190{font-size:57.000000px;}
.fs8_c00190{font-size:66.000000px;}
.fs0_c00190{font-size:67.200000px;}
.fs1_c00190{font-size:67.800000px;}
.fs5_c00190{font-size:69.000000px;}
.fs2_c00190{font-size:70.200000px;}
.fs4_c00190{font-size:70.800000px;}
.fs7_c00190{font-size:76.800000px;}
.y0_c00190{bottom:0.000000px;}
.y24_c00190{bottom:71.655015px;}
.y23_c00190{bottom:163.801365px;}
.y22_c00190{bottom:194.040015px;}
.y21_c00190{bottom:194.048265px;}
.y1f_c00190{bottom:225.361065px;}
.y20_c00190{bottom:225.375015px;}
.y1e_c00190{bottom:256.687815px;}
.y1d_c00190{bottom:287.295015px;}
.y1c_c00190{bottom:287.296365px;}
.y1b_c00190{bottom:317.535015px;}
.y1a_c00190{bottom:378.735015px;}
.y19_c00190{bottom:409.680015px;}
.y18_c00190{bottom:441.000015px;}
.y17_c00190{bottom:471.600015px;}
.y16_c00190{bottom:502.215015px;}
.y15_c00190{bottom:563.760015px;}
.y14_c00190{bottom:563.763615px;}
.y26_c00190{bottom:615.255015px;}
.y25_c00190{bottom:618.840015px;}
.y13_c00190{bottom:625.680015px;}
.y12_c00190{bottom:656.295015px;}
.y11_c00190{bottom:718.215015px;}
.y10_c00190{bottom:749.175015px;}
.ye_c00190{bottom:810.368265px;}
.yf_c00190{bottom:810.375015px;}
.yc_c00190{bottom:841.689165px;}
.yd_c00190{bottom:841.695015px;}
.yb_c00190{bottom:872.278815px;}
.ya_c00190{bottom:902.535015px;}
.y8_c00190{bottom:963.723165px;}
.y9_c00190{bottom:963.735015px;}
.y7_c00190{bottom:994.330365px;}
.y5_c00190{bottom:1024.914615px;}
.y6_c00190{bottom:1024.920015px;}
.y4_c00190{bottom:1055.890365px;}
.y3_c00190{bottom:1086.473265px;}
.y2_c00190{bottom:1117.800015px;}
.y1_c00190{bottom:1193.400015px;}
.h9_c00190{height:55.353516px;}
.h5_c00190{height:55.942383px;}
.h2_c00190{height:65.953125px;}
.h6_c00190{height:66.508887px;}
.hb_c00190{height:68.835938px;}
.h3_c00190{height:68.897461px;}
.h4_c00190{height:68.924461px;}
.h7_c00190{height:69.451758px;}
.h8_c00190{height:71.964844px;}
.ha_c00190{height:80.100000px;}
.h1_c00190{height:1263.000000px;}
.h0_c00190{height:1263.240015px;}
.w1_c00190{width:892.500000px;}
.w0_c00190{width:892.800000px;}
.x0_c00190{left:0.000000px;}
.x26_c00190{left:122.796750px;}
.x1d_c00190{left:123.975600px;}
.x1_c00190{left:125.565000px;}
.x20_c00190{left:175.800000px;}
.x1b_c00190{left:177.300000px;}
.x2_c00190{left:178.695000px;}
.x11_c00190{left:180.975000px;}
.xd_c00190{left:210.405000px;}
.x5_c00190{left:221.175000px;}
.x12_c00190{left:222.945000px;}
.x21_c00190{left:232.020000px;}
.xe_c00190{left:236.700000px;}
.x6_c00190{left:246.045000px;}
.x13_c00190{left:248.205000px;}
.x10_c00190{left:272.160000px;}
.x14_c00190{left:276.270000px;}
.x7_c00190{left:287.085000px;}
.x8_c00190{left:305.460000px;}
.x15_c00190{left:349.365000px;}
.x22_c00190{left:355.440000px;}
.x16_c00190{left:378.105000px;}
.x23_c00190{left:403.890000px;}
.x27_c00190{left:425.775000px;}
.x3_c00190{left:487.200000px;}
.x24_c00190{left:503.460000px;}
.x25_c00190{left:521.445000px;}
.x4_c00190{left:527.220000px;}
.x1c_c00190{left:567.465000px;}
.x18_c00190{left:579.765000px;}
.x19_c00190{left:609.045000px;}
.x1e_c00190{left:611.100000px;}
.x9_c00190{left:623.625000px;}
.x1f_c00190{left:636.090000px;}
.xa_c00190{left:655.395000px;}
.xb_c00190{left:667.275000px;}
.xc_c00190{left:692.460000px;}
.x17_c00190{left:699.135000px;}
.x1a_c00190{left:728.445000px;}
.xf_c00190{left:740.715000px;}
.x29_c00190{left:854.775000px;}
.x28_c00190{left:855.825000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls53_c00190{letter-spacing:-2.184000pt;}
.ls9b_c00190{letter-spacing:-2.146667pt;}
.ls39_c00190{letter-spacing:-2.090667pt;}
.ls60_c00190{letter-spacing:-1.996800pt;}
.ls42_c00190{letter-spacing:-1.984320pt;}
.ls48_c00190{letter-spacing:-1.959360pt;}
.ls8b_c00190{letter-spacing:-1.884480pt;}
.ls82_c00190{letter-spacing:-1.809600pt;}
.ls61_c00190{letter-spacing:-1.773333pt;}
.lsab_c00190{letter-spacing:-1.754667pt;}
.ls80_c00190{letter-spacing:-1.753440pt;}
.ls4a_c00190{letter-spacing:-1.734720pt;}
.ls8c_c00190{letter-spacing:-1.728480pt;}
.ls47_c00190{letter-spacing:-1.691040pt;}
.ls7f_c00190{letter-spacing:-1.634880pt;}
.ls8a_c00190{letter-spacing:-1.572480pt;}
.ls4d_c00190{letter-spacing:-1.485120pt;}
.ls78_c00190{letter-spacing:-1.453920pt;}
.ls6b_c00190{letter-spacing:-1.416480pt;}
.ls84_c00190{letter-spacing:-1.347840pt;}
.ls85_c00190{letter-spacing:-1.322880pt;}
.lsa3_c00190{letter-spacing:-1.304160pt;}
.ls68_c00190{letter-spacing:-1.291680pt;}
.ls5c_c00190{letter-spacing:-1.266720pt;}
.ls72_c00190{letter-spacing:-1.129440pt;}
.ls8d_c00190{letter-spacing:-1.104480pt;}
.ls88_c00190{letter-spacing:-1.023360pt;}
.ls6a_c00190{letter-spacing:-1.004640pt;}
.ls95_c00190{letter-spacing:-0.985920pt;}
.ls91_c00190{letter-spacing:-0.929760pt;}
.ls9e_c00190{letter-spacing:-0.923520pt;}
.ls86_c00190{letter-spacing:-0.898560pt;}
.ls7e_c00190{letter-spacing:-0.892320pt;}
.ls6f_c00190{letter-spacing:-0.879840pt;}
.ls87_c00190{letter-spacing:-0.861120pt;}
.ls50_c00190{letter-spacing:-0.848640pt;}
.lsa5_c00190{letter-spacing:-0.786240pt;}
.ls3c_c00190{letter-spacing:-0.780000pt;}
.ls7c_c00190{letter-spacing:-0.767520pt;}
.ls5e_c00190{letter-spacing:-0.748800pt;}
.ls64_c00190{letter-spacing:-0.742560pt;}
.ls94_c00190{letter-spacing:-0.723840pt;}
.ls92_c00190{letter-spacing:-0.705120pt;}
.ls65_c00190{letter-spacing:-0.692640pt;}
.ls3e_c00190{letter-spacing:-0.680160pt;}
.ls8e_c00190{letter-spacing:-0.667680pt;}
.ls4f_c00190{letter-spacing:-0.661440pt;}
.ls71_c00190{letter-spacing:-0.655200pt;}
.ls89_c00190{letter-spacing:-0.642720pt;}
.ls4b_c00190{letter-spacing:-0.624000pt;}
.ls66_c00190{letter-spacing:-0.561600pt;}
.ls9f_c00190{letter-spacing:-0.555360pt;}
.ls9a_c00190{letter-spacing:-0.542880pt;}
.ls76_c00190{letter-spacing:-0.524160pt;}
.lsa4_c00190{letter-spacing:-0.511680pt;}
.lsa1_c00190{letter-spacing:-0.505440pt;}
.ls73_c00190{letter-spacing:-0.499200pt;}
.ls96_c00190{letter-spacing:-0.486720pt;}
.ls83_c00190{letter-spacing:-0.474240pt;}
.ls81_c00190{letter-spacing:-0.468000pt;}
.ls3a_c00190{letter-spacing:-0.455520pt;}
.ls93_c00190{letter-spacing:-0.449280pt;}
.ls49_c00190{letter-spacing:-0.436800pt;}
.ls99_c00190{letter-spacing:-0.430560pt;}
.ls8f_c00190{letter-spacing:-0.424320pt;}
.ls67_c00190{letter-spacing:-0.418080pt;}
.ls56_c00190{letter-spacing:-0.411840pt;}
.ls79_c00190{letter-spacing:-0.405600pt;}
.ls75_c00190{letter-spacing:-0.399360pt;}
.lsa6_c00190{letter-spacing:-0.393120pt;}
.ls9c_c00190{letter-spacing:-0.374400pt;}
.ls97_c00190{letter-spacing:-0.361920pt;}
.lsa8_c00190{letter-spacing:-0.343200pt;}
.ls44_c00190{letter-spacing:-0.330720pt;}
.ls59_c00190{letter-spacing:-0.312000pt;}
.ls5b_c00190{letter-spacing:-0.299520pt;}
.ls5a_c00190{letter-spacing:-0.293280pt;}
.ls70_c00190{letter-spacing:-0.274560pt;}
.ls3b_c00190{letter-spacing:-0.268320pt;}
.ls62_c00190{letter-spacing:-0.262080pt;}
.ls6e_c00190{letter-spacing:-0.249600pt;}
.ls6d_c00190{letter-spacing:-0.237120pt;}
.lsa0_c00190{letter-spacing:-0.230880pt;}
.ls3f_c00190{letter-spacing:-0.218400pt;}
.lsaa_c00190{letter-spacing:-0.212160pt;}
.ls43_c00190{letter-spacing:-0.205920pt;}
.ls52_c00190{letter-spacing:-0.193440pt;}
.ls45_c00190{letter-spacing:-0.180960pt;}
.ls58_c00190{letter-spacing:-0.174720pt;}
.ls7a_c00190{letter-spacing:-0.162240pt;}
.lsa2_c00190{letter-spacing:-0.156000pt;}
.lsa7_c00190{letter-spacing:-0.149760pt;}
.ls98_c00190{letter-spacing:-0.143520pt;}
.ls4e_c00190{letter-spacing:-0.137280pt;}
.ls4c_c00190{letter-spacing:-0.131040pt;}
.ls9d_c00190{letter-spacing:-0.124800pt;}
.ls63_c00190{letter-spacing:-0.112320pt;}
.ls5f_c00190{letter-spacing:-0.106080pt;}
.ls7b_c00190{letter-spacing:-0.093600pt;}
.ls57_c00190{letter-spacing:-0.087360pt;}
.ls3d_c00190{letter-spacing:-0.081120pt;}
.ls77_c00190{letter-spacing:-0.068640pt;}
.ls55_c00190{letter-spacing:-0.056160pt;}
.ls90_c00190{letter-spacing:-0.043680pt;}
.ls7d_c00190{letter-spacing:-0.037440pt;}
.lsa9_c00190{letter-spacing:-0.024960pt;}
.ls41_c00190{letter-spacing:-0.012480pt;}
.ls46_c00190{letter-spacing:0.000000pt;}
.ls8_c00190{letter-spacing:0.006240pt;}
.ls27_c00190{letter-spacing:0.012480pt;}
.ls30_c00190{letter-spacing:0.037440pt;}
.ls2f_c00190{letter-spacing:0.049920pt;}
.ls4_c00190{letter-spacing:0.062400pt;}
.lsc_c00190{letter-spacing:0.068640pt;}
.lsb_c00190{letter-spacing:0.093600pt;}
.lsf_c00190{letter-spacing:0.112320pt;}
.ls2_c00190{letter-spacing:0.131040pt;}
.ls29_c00190{letter-spacing:0.143520pt;}
.ls33_c00190{letter-spacing:0.156000pt;}
.ls34_c00190{letter-spacing:0.162240pt;}
.ls6_c00190{letter-spacing:0.168480pt;}
.ls7_c00190{letter-spacing:0.180960pt;}
.ls32_c00190{letter-spacing:0.199680pt;}
.lsa_c00190{letter-spacing:0.205920pt;}
.ls9_c00190{letter-spacing:0.218400pt;}
.ls69_c00190{letter-spacing:0.224640pt;}
.ls11_c00190{letter-spacing:0.230880pt;}
.ls2e_c00190{letter-spacing:0.243360pt;}
.ls6c_c00190{letter-spacing:0.249600pt;}
.ls5d_c00190{letter-spacing:0.268320pt;}
.ls12_c00190{letter-spacing:0.274560pt;}
.ls13_c00190{letter-spacing:0.280800pt;}
.ls3_c00190{letter-spacing:0.305760pt;}
.ls40_c00190{letter-spacing:0.318240pt;}
.ls14_c00190{letter-spacing:0.324480pt;}
.ls37_c00190{letter-spacing:0.330720pt;}
.ls38_c00190{letter-spacing:0.355680pt;}
.ls1c_c00190{letter-spacing:0.361920pt;}
.ls15_c00190{letter-spacing:0.374400pt;}
.ls28_c00190{letter-spacing:0.386880pt;}
.ls5_c00190{letter-spacing:0.405600pt;}
.lsd_c00190{letter-spacing:0.424320pt;}
.ls36_c00190{letter-spacing:0.436800pt;}
.ls19_c00190{letter-spacing:0.452000pt;}
.ls1_c00190{letter-spacing:0.486720pt;}
.ls23_c00190{letter-spacing:0.524160pt;}
.ls1b_c00190{letter-spacing:0.536373pt;}
.ls1e_c00190{letter-spacing:0.548427pt;}
.ls54_c00190{letter-spacing:0.555360pt;}
.lse_c00190{letter-spacing:0.567840pt;}
.ls18_c00190{letter-spacing:0.590613pt;}
.ls21_c00190{letter-spacing:0.641920pt;}
.ls26_c00190{letter-spacing:0.644853pt;}
.ls2d_c00190{letter-spacing:0.655200pt;}
.ls20_c00190{letter-spacing:0.661440pt;}
.ls0_c00190{letter-spacing:0.674987pt;}
.ls35_c00190{letter-spacing:0.692640pt;}
.ls24_c00190{letter-spacing:0.747307pt;}
.ls17_c00190{letter-spacing:0.823680pt;}
.ls1a_c00190{letter-spacing:0.837707pt;}
.ls10_c00190{letter-spacing:0.843733pt;}
.ls2c_c00190{letter-spacing:0.904000pt;}
.ls2b_c00190{letter-spacing:0.934133pt;}
.ls16_c00190{letter-spacing:1.104480pt;}
.ls25_c00190{letter-spacing:1.120960pt;}
.ls1d_c00190{letter-spacing:1.223040pt;}
.ls2a_c00190{letter-spacing:1.343947pt;}
.ls31_c00190{letter-spacing:1.572480pt;}
.ls1f_c00190{letter-spacing:1.616160pt;}
.ls22_c00190{letter-spacing:1.718080pt;}
.ls51_c00190{letter-spacing:1.940640pt;}
.ls74_c00190{letter-spacing:3.013333pt;}
.ws4_c00190{word-spacing:0.000000pt;}
.ws3_c00190{word-spacing:2.665067pt;}
.ws2_c00190{word-spacing:4.489760pt;}
.ws1_c00190{word-spacing:20.326933pt;}
.ws0_c00190{word-spacing:21.806400pt;}
._16_c00190{margin-left:-19.964907pt;}
._17_c00190{margin-left:-5.607573pt;}
._15_c00190{margin-left:-3.475680pt;}
._14_c00190{margin-left:-1.135680pt;}
._c_c00190{width:1.141920pt;}
._d_c00190{width:2.433600pt;}
._e_c00190{width:3.719040pt;}
._b_c00190{width:4.979520pt;}
._9_c00190{width:6.215040pt;}
._8_c00190{width:7.219680pt;}
._a_c00190{width:8.798400pt;}
._6_c00190{width:10.464480pt;}
._13_c00190{width:11.799840pt;}
._1b_c00190{width:12.944640pt;}
._5_c00190{width:13.977600pt;}
._7_c00190{width:16.490880pt;}
._4_c00190{width:18.046080pt;}
._12_c00190{width:19.287840pt;}
._0_c00190{width:20.454720pt;}
._2_c00190{width:21.677760pt;}
._1_c00190{width:23.119200pt;}
._3_c00190{width:24.710400pt;}
._f_c00190{width:25.615200pt;}
._11_c00190{width:26.538720pt;}
._18_c00190{width:27.562080pt;}
._1a_c00190{width:28.516800pt;}
._10_c00190{width:30.164160pt;}
._19_c00190{width:32.042400pt;}
.fs6_c00190{font-size:50.133333pt;}
.fs3_c00190{font-size:50.666667pt;}
.fs8_c00190{font-size:58.666667pt;}
.fs0_c00190{font-size:59.733333pt;}
.fs1_c00190{font-size:60.266667pt;}
.fs5_c00190{font-size:61.333333pt;}
.fs2_c00190{font-size:62.400000pt;}
.fs4_c00190{font-size:62.933333pt;}
.fs7_c00190{font-size:68.266667pt;}
.y0_c00190{bottom:0.000000pt;}
.y24_c00190{bottom:63.693347pt;}
.y23_c00190{bottom:145.601213pt;}
.y22_c00190{bottom:172.480013pt;}
.y21_c00190{bottom:172.487347pt;}
.y1f_c00190{bottom:200.320947pt;}
.y20_c00190{bottom:200.333347pt;}
.y1e_c00190{bottom:228.166947pt;}
.y1d_c00190{bottom:255.373347pt;}
.y1c_c00190{bottom:255.374547pt;}
.y1b_c00190{bottom:282.253347pt;}
.y1a_c00190{bottom:336.653347pt;}
.y19_c00190{bottom:364.160013pt;}
.y18_c00190{bottom:392.000013pt;}
.y17_c00190{bottom:419.200013pt;}
.y16_c00190{bottom:446.413347pt;}
.y15_c00190{bottom:501.120013pt;}
.y14_c00190{bottom:501.123213pt;}
.y26_c00190{bottom:546.893347pt;}
.y25_c00190{bottom:550.080013pt;}
.y13_c00190{bottom:556.160013pt;}
.y12_c00190{bottom:583.373347pt;}
.y11_c00190{bottom:638.413347pt;}
.y10_c00190{bottom:665.933347pt;}
.ye_c00190{bottom:720.327347pt;}
.yf_c00190{bottom:720.333347pt;}
.yc_c00190{bottom:748.168147pt;}
.yd_c00190{bottom:748.173347pt;}
.yb_c00190{bottom:775.358947pt;}
.ya_c00190{bottom:802.253347pt;}
.y8_c00190{bottom:856.642813pt;}
.y9_c00190{bottom:856.653347pt;}
.y7_c00190{bottom:883.849213pt;}
.y5_c00190{bottom:911.035213pt;}
.y6_c00190{bottom:911.040013pt;}
.y4_c00190{bottom:938.569213pt;}
.y3_c00190{bottom:965.754013pt;}
.y2_c00190{bottom:993.600013pt;}
.y1_c00190{bottom:1060.800013pt;}
.h9_c00190{height:49.203125pt;}
.h5_c00190{height:49.726562pt;}
.h2_c00190{height:58.625000pt;}
.h6_c00190{height:59.119010pt;}
.hb_c00190{height:61.187500pt;}
.h3_c00190{height:61.242187pt;}
.h4_c00190{height:61.266187pt;}
.h7_c00190{height:61.734896pt;}
.h8_c00190{height:63.968750pt;}
.ha_c00190{height:71.200000pt;}
.h1_c00190{height:1122.666667pt;}
.h0_c00190{height:1122.880013pt;}
.w1_c00190{width:793.333333pt;}
.w0_c00190{width:793.600000pt;}
.x0_c00190{left:0.000000pt;}
.x26_c00190{left:109.152667pt;}
.x1d_c00190{left:110.200533pt;}
.x1_c00190{left:111.613333pt;}
.x20_c00190{left:156.266667pt;}
.x1b_c00190{left:157.600000pt;}
.x2_c00190{left:158.840000pt;}
.x11_c00190{left:160.866667pt;}
.xd_c00190{left:187.026667pt;}
.x5_c00190{left:196.600000pt;}
.x12_c00190{left:198.173333pt;}
.x21_c00190{left:206.240000pt;}
.xe_c00190{left:210.400000pt;}
.x6_c00190{left:218.706667pt;}
.x13_c00190{left:220.626667pt;}
.x10_c00190{left:241.920000pt;}
.x14_c00190{left:245.573333pt;}
.x7_c00190{left:255.186667pt;}
.x8_c00190{left:271.520000pt;}
.x15_c00190{left:310.546667pt;}
.x22_c00190{left:315.946667pt;}
.x16_c00190{left:336.093333pt;}
.x23_c00190{left:359.013333pt;}
.x27_c00190{left:378.466667pt;}
.x3_c00190{left:433.066667pt;}
.x24_c00190{left:447.520000pt;}
.x25_c00190{left:463.506667pt;}
.x4_c00190{left:468.640000pt;}
.x1c_c00190{left:504.413333pt;}
.x18_c00190{left:515.346667pt;}
.x19_c00190{left:541.373333pt;}
.x1e_c00190{left:543.200000pt;}
.x9_c00190{left:554.333333pt;}
.x1f_c00190{left:565.413333pt;}
.xa_c00190{left:582.573333pt;}
.xb_c00190{left:593.133333pt;}
.xc_c00190{left:615.520000pt;}
.x17_c00190{left:621.453333pt;}
.x1a_c00190{left:647.506667pt;}
.xf_c00190{left:658.413333pt;}
.x29_c00190{left:759.800000pt;}
.x28_c00190{left:760.733333pt;}
}





/* 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_c00191 {
    display:none;
  }
  .loading-indicator_c00191.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00191 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_c00191 { 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_c00191" -> "#page-container .classname_c00191")
 */
.pf_c00191 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00191 { /* 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_c00191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00191 { /* 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_c00191 { /* 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_c00191 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00191 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00191 {overflow:visible;}
  }
}
.c_c00191 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00191 { /* 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_c00191:after { /* webkit #35443 */
  content: '';
}
.t_c00191:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00191 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 */
}
.__c00191 { /* 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_c00191 { /* info for Javascript */
  display:none;
}
.l_c00191 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00191 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00191 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00191: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_c00191 {
    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_c00191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00191.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_c00191 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00191;src:url('chunks/assets/font_47683d7f459f3dfea6791a62.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.284668;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_c00191;src:url('chunks/assets/font_7a14975b32791875d47c81a1.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.284180;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_c00191;src:url('chunks/assets/font_36780c66b2e5bde25c4e4f75.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:0.666000;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_c00191;src:url('chunks/assets/font_0af05b540d420be8db3e9135.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.311035;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_c00191;src:url('chunks/assets/font_da53acb9a6b1ecbe27405693.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;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;}
.m2_c00191{transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);}
.m3_c00191{transform:matrix(0.228709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228709,0.000000,0.000000,0.250000,0,0);}
.m0_c00191{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m4_c00191{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m1_c00191{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);}
.m6_c00191{transform:matrix(0.254696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254696,0.000000,0.000000,0.250000,0,0);}
.m5_c00191{transform:matrix(0.258300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258300,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls79_c00191{letter-spacing:-2.541000px;}
.ls7e_c00191{letter-spacing:-2.415000px;}
.ls6f_c00191{letter-spacing:-2.331000px;}
.ls81_c00191{letter-spacing:-1.235100px;}
.ls75_c00191{letter-spacing:-1.110900px;}
.ls7a_c00191{letter-spacing:-1.083300px;}
.ls86_c00191{letter-spacing:-0.958440px;}
.ls78_c00191{letter-spacing:-0.855600px;}
.ls7d_c00191{letter-spacing:-0.821100px;}
.ls72_c00191{letter-spacing:-0.800400px;}
.ls76_c00191{letter-spacing:-0.765900px;}
.ls77_c00191{letter-spacing:-0.710700px;}
.ls7b_c00191{letter-spacing:-0.200100px;}
.ls80_c00191{letter-spacing:-0.055200px;}
.ls70_c00191{letter-spacing:-0.020700px;}
.ls71_c00191{letter-spacing:0.000000px;}
.ls36_c00191{letter-spacing:0.041400px;}
.ls2c_c00191{letter-spacing:0.082800px;}
.lsb_c00191{letter-spacing:0.089700px;}
.ls37_c00191{letter-spacing:0.117300px;}
.ls73_c00191{letter-spacing:0.158700px;}
.ls82_c00191{letter-spacing:0.179400px;}
.ls85_c00191{letter-spacing:0.186300px;}
.ls6_c00191{letter-spacing:0.207000px;}
.ls6d_c00191{letter-spacing:0.213900px;}
.ls2d_c00191{letter-spacing:0.241500px;}
.ls2e_c00191{letter-spacing:0.248400px;}
.lsd_c00191{letter-spacing:0.255300px;}
.ls4d_c00191{letter-spacing:0.296700px;}
.ls22_c00191{letter-spacing:0.317400px;}
.ls2_c00191{letter-spacing:0.331200px;}
.ls56_c00191{letter-spacing:0.338100px;}
.ls44_c00191{letter-spacing:0.351900px;}
.ls46_c00191{letter-spacing:0.372600px;}
.ls2f_c00191{letter-spacing:0.379500px;}
.ls39_c00191{letter-spacing:0.400200px;}
.ls1b_c00191{letter-spacing:0.407100px;}
.ls52_c00191{letter-spacing:0.414000px;}
.ls69_c00191{letter-spacing:0.462300px;}
.ls62_c00191{letter-spacing:0.469200px;}
.ls67_c00191{letter-spacing:0.496800px;}
.ls54_c00191{letter-spacing:0.503700px;}
.ls8_c00191{letter-spacing:0.510600px;}
.ls3d_c00191{letter-spacing:0.517500px;}
.ls66_c00191{letter-spacing:0.538200px;}
.ls3b_c00191{letter-spacing:0.565800px;}
.lse_c00191{letter-spacing:0.572700px;}
.ls25_c00191{letter-spacing:0.607200px;}
.ls4e_c00191{letter-spacing:0.634800px;}
.ls5_c00191{letter-spacing:0.641700px;}
.ls4b_c00191{letter-spacing:0.648600px;}
.ls13_c00191{letter-spacing:0.662400px;}
.ls53_c00191{letter-spacing:0.669300px;}
.ls63_c00191{letter-spacing:0.676200px;}
.ls3_c00191{letter-spacing:0.690000px;}
.ls9_c00191{letter-spacing:0.703800px;}
.ls10_c00191{letter-spacing:0.717600px;}
.ls4_c00191{letter-spacing:0.724500px;}
.ls5e_c00191{letter-spacing:0.731400px;}
.ls4a_c00191{letter-spacing:0.738300px;}
.ls68_c00191{letter-spacing:0.752100px;}
.ls57_c00191{letter-spacing:0.759000px;}
.ls43_c00191{letter-spacing:0.772800px;}
.ls3a_c00191{letter-spacing:0.793500px;}
.ls2a_c00191{letter-spacing:0.814200px;}
.ls45_c00191{letter-spacing:0.834900px;}
.ls38_c00191{letter-spacing:0.841800px;}
.ls35_c00191{letter-spacing:0.848700px;}
.ls4f_c00191{letter-spacing:0.869400px;}
.ls1a_c00191{letter-spacing:0.883200px;}
.ls16_c00191{letter-spacing:0.890100px;}
.ls3c_c00191{letter-spacing:0.897000px;}
.ls33_c00191{letter-spacing:0.903900px;}
.ls42_c00191{letter-spacing:0.910800px;}
.ls12_c00191{letter-spacing:0.917700px;}
.lsc_c00191{letter-spacing:0.924600px;}
.ls60_c00191{letter-spacing:0.945300px;}
.lsf_c00191{letter-spacing:0.952200px;}
.ls0_c00191{letter-spacing:0.959100px;}
.ls24_c00191{letter-spacing:0.966000px;}
.ls1e_c00191{letter-spacing:0.979800px;}
.ls17_c00191{letter-spacing:0.986700px;}
.ls15_c00191{letter-spacing:1.000500px;}
.ls65_c00191{letter-spacing:1.028100px;}
.ls27_c00191{letter-spacing:1.035000px;}
.ls19_c00191{letter-spacing:1.041900px;}
.ls3f_c00191{letter-spacing:1.055700px;}
.ls40_c00191{letter-spacing:1.062600px;}
.ls5a_c00191{letter-spacing:1.076400px;}
.ls7_c00191{letter-spacing:1.083300px;}
.ls1_c00191{letter-spacing:1.097100px;}
.ls47_c00191{letter-spacing:1.117800px;}
.ls6b_c00191{letter-spacing:1.138500px;}
.ls3e_c00191{letter-spacing:1.152300px;}
.ls1c_c00191{letter-spacing:1.200600px;}
.ls1d_c00191{letter-spacing:1.207500px;}
.ls31_c00191{letter-spacing:1.214400px;}
.ls14_c00191{letter-spacing:1.235100px;}
.ls48_c00191{letter-spacing:1.242000px;}
.ls6a_c00191{letter-spacing:1.269600px;}
.ls41_c00191{letter-spacing:1.311000px;}
.ls2b_c00191{letter-spacing:1.317900px;}
.ls11_c00191{letter-spacing:1.331700px;}
.ls5c_c00191{letter-spacing:1.352400px;}
.ls6e_c00191{letter-spacing:1.366200px;}
.ls61_c00191{letter-spacing:1.435200px;}
.ls1f_c00191{letter-spacing:1.442100px;}
.ls23_c00191{letter-spacing:1.490400px;}
.ls20_c00191{letter-spacing:1.504200px;}
.ls55_c00191{letter-spacing:1.511100px;}
.ls5f_c00191{letter-spacing:1.518000px;}
.ls28_c00191{letter-spacing:1.524900px;}
.ls26_c00191{letter-spacing:1.552500px;}
.ls30_c00191{letter-spacing:1.573200px;}
.ls29_c00191{letter-spacing:1.662900px;}
.ls74_c00191{letter-spacing:1.718100px;}
.ls49_c00191{letter-spacing:1.752600px;}
.ls50_c00191{letter-spacing:1.773300px;}
.ls7f_c00191{letter-spacing:1.794000px;}
.ls51_c00191{letter-spacing:1.828500px;}
.ls6c_c00191{letter-spacing:1.835400px;}
.ls5d_c00191{letter-spacing:1.945800px;}
.ls4c_c00191{letter-spacing:2.028600px;}
.ls84_c00191{letter-spacing:2.083800px;}
.ls5b_c00191{letter-spacing:2.283900px;}
.ls58_c00191{letter-spacing:2.408100px;}
.lsa_c00191{letter-spacing:2.539200px;}
.ls21_c00191{letter-spacing:2.559900px;}
.ls64_c00191{letter-spacing:2.566800px;}
.ls59_c00191{letter-spacing:2.684100px;}
.ls7c_c00191{letter-spacing:2.863500px;}
.ls18_c00191{letter-spacing:2.884200px;}
.ls34_c00191{letter-spacing:3.070500px;}
.ls32_c00191{letter-spacing:3.284400px;}
.ls83_c00191{letter-spacing:3.450000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{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__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00191{word-spacing:0.000000px;}
.ws1_c00191{word-spacing:1.490400px;}
.ws0_c00191{word-spacing:11.826600px;}
.ws3_c00191{word-spacing:12.903000px;}
.ws4_c00191{word-spacing:19.430400px;}
.ws2_c00191{word-spacing:31.395000px;}
._12_c00191{margin-left:-7.617600px;}
._11_c00191{margin-left:-6.237600px;}
._3_c00191{margin-left:-5.064600px;}
._f_c00191{margin-left:-3.505200px;}
._e_c00191{margin-left:-2.270100px;}
._1_c00191{width:1.628400px;}
._0_c00191{width:2.994600px;}
._d_c00191{width:4.271100px;}
._2_c00191{width:5.437200px;}
._10_c00191{width:6.934500px;}
._c_c00191{width:8.142000px;}
._7_c00191{width:9.432300px;}
._4_c00191{width:10.695000px;}
._5_c00191{width:12.613200px;}
._8_c00191{width:13.662000px;}
._6_c00191{width:15.207600px;}
._9_c00191{width:16.829100px;}
._19_c00191{width:19.596000px;}
._a_c00191{width:21.169200px;}
._b_c00191{width:22.638900px;}
._1a_c00191{width:23.894700px;}
._16_c00191{width:25.116000px;}
._15_c00191{width:26.785800px;}
._14_c00191{width:28.331400px;}
._13_c00191{width:29.670000px;}
._18_c00191{width:30.670500px;}
._17_c00191{width:34.575900px;}
._1b_c00191{width:43.213500px;}
.fc0_c00191{color:transparent;}
.fs2_c00191{font-size:53.280000px;}
.fs5_c00191{font-size:58.800000px;}
.fs7_c00191{font-size:66.000000px;}
.fs0_c00191{font-size:66.600000px;}
.fs1_c00191{font-size:69.000000px;}
.fs4_c00191{font-size:69.600000px;}
.fs3_c00191{font-size:72.600000px;}
.fs6_c00191{font-size:76.800000px;}
.y0_c00191{bottom:0.000000px;}
.y1d_c00191{bottom:66.255000px;}
.y1c_c00191{bottom:185.731500px;}
.y1b_c00191{bottom:247.659000px;}
.y1a_c00191{bottom:309.224250px;}
.y19_c00191{bottom:370.806750px;}
.y17_c00191{bottom:402.491250px;}
.y18_c00191{bottom:402.495000px;}
.y15_c00191{bottom:433.448250px;}
.y16_c00191{bottom:433.455000px;}
.y14_c00191{bottom:494.651250px;}
.y13_c00191{bottom:525.952500px;}
.y12_c00191{bottom:587.527500px;}
.y1f_c00191{bottom:614.880000px;}
.y1e_c00191{bottom:618.495000px;}
.y11_c00191{bottom:618.853500px;}
.yf_c00191{bottom:649.794000px;}
.y10_c00191{bottom:649.800000px;}
.ye_c00191{bottom:680.775000px;}
.yd_c00191{bottom:711.375000px;}
.yb_c00191{bottom:773.649750px;}
.yc_c00191{bottom:773.655000px;}
.ya_c00191{bottom:805.683000px;}
.y9_c00191{bottom:867.610500px;}
.y8_c00191{bottom:898.194750px;}
.y7_c00191{bottom:928.813500px;}
.y6_c00191{bottom:959.743500px;}
.y5_c00191{bottom:990.707250px;}
.y4_c00191{bottom:1021.326000px;}
.y3_c00191{bottom:1082.874000px;}
.y2_c00191{bottom:1114.200000px;}
.y1_c00191{bottom:1191.240000px;}
.h5_c00191{height:35.484480px;}
.hb_c00191{height:57.708984px;}
.h2_c00191{height:65.364258px;}
.h3_c00191{height:67.719727px;}
.h9_c00191{height:67.734727px;}
.h7_c00191{height:67.749727px;}
.h4_c00191{height:67.785727px;}
.h8_c00191{height:68.338594px;}
.hd_c00191{height:68.835938px;}
.ha_c00191{height:69.539062px;}
.h6_c00191{height:71.252930px;}
.hc_c00191{height:80.100000px;}
.h1_c00191{height:1263.000000px;}
.h0_c00191{height:1263.240000px;}
.w1_c00191{width:892.500000px;}
.w0_c00191{width:892.800000px;}
.x0_c00191{left:0.000000px;}
.xc_c00191{left:118.106250px;}
.x6_c00191{left:119.153250px;}
.x4_c00191{left:120.805500px;}
.x2_c00191{left:122.220000px;}
.x1_c00191{left:123.405000px;}
.xd_c00191{left:171.882750px;}
.x5_c00191{left:173.025000px;}
.x3_c00191{left:174.780750px;}
.x7_c00191{left:201.255000px;}
.x8_c00191{left:233.460000px;}
.x10_c00191{left:289.695000px;}
.x11_c00191{left:319.500000px;}
.x9_c00191{left:325.980000px;}
.x12_c00191{left:422.850000px;}
.xe_c00191{left:638.895000px;}
.xf_c00191{left:667.005000px;}
.xa_c00191{left:687.420000px;}
.xb_c00191{left:713.490000px;}
.x14_c00191{left:854.415000px;}
.x13_c00191{left:855.465000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls79_c00191{letter-spacing:-2.258667pt;}
.ls7e_c00191{letter-spacing:-2.146667pt;}
.ls6f_c00191{letter-spacing:-2.072000pt;}
.ls81_c00191{letter-spacing:-1.097867pt;}
.ls75_c00191{letter-spacing:-0.987467pt;}
.ls7a_c00191{letter-spacing:-0.962933pt;}
.ls86_c00191{letter-spacing:-0.851947pt;}
.ls78_c00191{letter-spacing:-0.760533pt;}
.ls7d_c00191{letter-spacing:-0.729867pt;}
.ls72_c00191{letter-spacing:-0.711467pt;}
.ls76_c00191{letter-spacing:-0.680800pt;}
.ls77_c00191{letter-spacing:-0.631733pt;}
.ls7b_c00191{letter-spacing:-0.177867pt;}
.ls80_c00191{letter-spacing:-0.049067pt;}
.ls70_c00191{letter-spacing:-0.018400pt;}
.ls71_c00191{letter-spacing:0.000000pt;}
.ls36_c00191{letter-spacing:0.036800pt;}
.ls2c_c00191{letter-spacing:0.073600pt;}
.lsb_c00191{letter-spacing:0.079733pt;}
.ls37_c00191{letter-spacing:0.104267pt;}
.ls73_c00191{letter-spacing:0.141067pt;}
.ls82_c00191{letter-spacing:0.159467pt;}
.ls85_c00191{letter-spacing:0.165600pt;}
.ls6_c00191{letter-spacing:0.184000pt;}
.ls6d_c00191{letter-spacing:0.190133pt;}
.ls2d_c00191{letter-spacing:0.214667pt;}
.ls2e_c00191{letter-spacing:0.220800pt;}
.lsd_c00191{letter-spacing:0.226933pt;}
.ls4d_c00191{letter-spacing:0.263733pt;}
.ls22_c00191{letter-spacing:0.282133pt;}
.ls2_c00191{letter-spacing:0.294400pt;}
.ls56_c00191{letter-spacing:0.300533pt;}
.ls44_c00191{letter-spacing:0.312800pt;}
.ls46_c00191{letter-spacing:0.331200pt;}
.ls2f_c00191{letter-spacing:0.337333pt;}
.ls39_c00191{letter-spacing:0.355733pt;}
.ls1b_c00191{letter-spacing:0.361867pt;}
.ls52_c00191{letter-spacing:0.368000pt;}
.ls69_c00191{letter-spacing:0.410933pt;}
.ls62_c00191{letter-spacing:0.417067pt;}
.ls67_c00191{letter-spacing:0.441600pt;}
.ls54_c00191{letter-spacing:0.447733pt;}
.ls8_c00191{letter-spacing:0.453867pt;}
.ls3d_c00191{letter-spacing:0.460000pt;}
.ls66_c00191{letter-spacing:0.478400pt;}
.ls3b_c00191{letter-spacing:0.502933pt;}
.lse_c00191{letter-spacing:0.509067pt;}
.ls25_c00191{letter-spacing:0.539733pt;}
.ls4e_c00191{letter-spacing:0.564267pt;}
.ls5_c00191{letter-spacing:0.570400pt;}
.ls4b_c00191{letter-spacing:0.576533pt;}
.ls13_c00191{letter-spacing:0.588800pt;}
.ls53_c00191{letter-spacing:0.594933pt;}
.ls63_c00191{letter-spacing:0.601067pt;}
.ls3_c00191{letter-spacing:0.613333pt;}
.ls9_c00191{letter-spacing:0.625600pt;}
.ls10_c00191{letter-spacing:0.637867pt;}
.ls4_c00191{letter-spacing:0.644000pt;}
.ls5e_c00191{letter-spacing:0.650133pt;}
.ls4a_c00191{letter-spacing:0.656267pt;}
.ls68_c00191{letter-spacing:0.668533pt;}
.ls57_c00191{letter-spacing:0.674667pt;}
.ls43_c00191{letter-spacing:0.686933pt;}
.ls3a_c00191{letter-spacing:0.705333pt;}
.ls2a_c00191{letter-spacing:0.723733pt;}
.ls45_c00191{letter-spacing:0.742133pt;}
.ls38_c00191{letter-spacing:0.748267pt;}
.ls35_c00191{letter-spacing:0.754400pt;}
.ls4f_c00191{letter-spacing:0.772800pt;}
.ls1a_c00191{letter-spacing:0.785067pt;}
.ls16_c00191{letter-spacing:0.791200pt;}
.ls3c_c00191{letter-spacing:0.797333pt;}
.ls33_c00191{letter-spacing:0.803467pt;}
.ls42_c00191{letter-spacing:0.809600pt;}
.ls12_c00191{letter-spacing:0.815733pt;}
.lsc_c00191{letter-spacing:0.821867pt;}
.ls60_c00191{letter-spacing:0.840267pt;}
.lsf_c00191{letter-spacing:0.846400pt;}
.ls0_c00191{letter-spacing:0.852533pt;}
.ls24_c00191{letter-spacing:0.858667pt;}
.ls1e_c00191{letter-spacing:0.870933pt;}
.ls17_c00191{letter-spacing:0.877067pt;}
.ls15_c00191{letter-spacing:0.889333pt;}
.ls65_c00191{letter-spacing:0.913867pt;}
.ls27_c00191{letter-spacing:0.920000pt;}
.ls19_c00191{letter-spacing:0.926133pt;}
.ls3f_c00191{letter-spacing:0.938400pt;}
.ls40_c00191{letter-spacing:0.944533pt;}
.ls5a_c00191{letter-spacing:0.956800pt;}
.ls7_c00191{letter-spacing:0.962933pt;}
.ls1_c00191{letter-spacing:0.975200pt;}
.ls47_c00191{letter-spacing:0.993600pt;}
.ls6b_c00191{letter-spacing:1.012000pt;}
.ls3e_c00191{letter-spacing:1.024267pt;}
.ls1c_c00191{letter-spacing:1.067200pt;}
.ls1d_c00191{letter-spacing:1.073333pt;}
.ls31_c00191{letter-spacing:1.079467pt;}
.ls14_c00191{letter-spacing:1.097867pt;}
.ls48_c00191{letter-spacing:1.104000pt;}
.ls6a_c00191{letter-spacing:1.128533pt;}
.ls41_c00191{letter-spacing:1.165333pt;}
.ls2b_c00191{letter-spacing:1.171467pt;}
.ls11_c00191{letter-spacing:1.183733pt;}
.ls5c_c00191{letter-spacing:1.202133pt;}
.ls6e_c00191{letter-spacing:1.214400pt;}
.ls61_c00191{letter-spacing:1.275733pt;}
.ls1f_c00191{letter-spacing:1.281867pt;}
.ls23_c00191{letter-spacing:1.324800pt;}
.ls20_c00191{letter-spacing:1.337067pt;}
.ls55_c00191{letter-spacing:1.343200pt;}
.ls5f_c00191{letter-spacing:1.349333pt;}
.ls28_c00191{letter-spacing:1.355467pt;}
.ls26_c00191{letter-spacing:1.380000pt;}
.ls30_c00191{letter-spacing:1.398400pt;}
.ls29_c00191{letter-spacing:1.478133pt;}
.ls74_c00191{letter-spacing:1.527200pt;}
.ls49_c00191{letter-spacing:1.557867pt;}
.ls50_c00191{letter-spacing:1.576267pt;}
.ls7f_c00191{letter-spacing:1.594667pt;}
.ls51_c00191{letter-spacing:1.625333pt;}
.ls6c_c00191{letter-spacing:1.631467pt;}
.ls5d_c00191{letter-spacing:1.729600pt;}
.ls4c_c00191{letter-spacing:1.803200pt;}
.ls84_c00191{letter-spacing:1.852267pt;}
.ls5b_c00191{letter-spacing:2.030133pt;}
.ls58_c00191{letter-spacing:2.140533pt;}
.lsa_c00191{letter-spacing:2.257067pt;}
.ls21_c00191{letter-spacing:2.275467pt;}
.ls64_c00191{letter-spacing:2.281600pt;}
.ls59_c00191{letter-spacing:2.385867pt;}
.ls7c_c00191{letter-spacing:2.545333pt;}
.ls18_c00191{letter-spacing:2.563733pt;}
.ls34_c00191{letter-spacing:2.729333pt;}
.ls32_c00191{letter-spacing:2.919467pt;}
.ls83_c00191{letter-spacing:3.066667pt;}
.ws5_c00191{word-spacing:0.000000pt;}
.ws1_c00191{word-spacing:1.324800pt;}
.ws0_c00191{word-spacing:10.512533pt;}
.ws3_c00191{word-spacing:11.469333pt;}
.ws4_c00191{word-spacing:17.271467pt;}
.ws2_c00191{word-spacing:27.906667pt;}
._12_c00191{margin-left:-6.771200pt;}
._11_c00191{margin-left:-5.544533pt;}
._3_c00191{margin-left:-4.501867pt;}
._f_c00191{margin-left:-3.115733pt;}
._e_c00191{margin-left:-2.017867pt;}
._1_c00191{width:1.447467pt;}
._0_c00191{width:2.661867pt;}
._d_c00191{width:3.796533pt;}
._2_c00191{width:4.833067pt;}
._10_c00191{width:6.164000pt;}
._c_c00191{width:7.237333pt;}
._7_c00191{width:8.384267pt;}
._4_c00191{width:9.506667pt;}
._5_c00191{width:11.211733pt;}
._8_c00191{width:12.144000pt;}
._6_c00191{width:13.517867pt;}
._9_c00191{width:14.959200pt;}
._19_c00191{width:17.418667pt;}
._a_c00191{width:18.817067pt;}
._b_c00191{width:20.123467pt;}
._1a_c00191{width:21.239733pt;}
._16_c00191{width:22.325333pt;}
._15_c00191{width:23.809600pt;}
._14_c00191{width:25.183467pt;}
._13_c00191{width:26.373333pt;}
._18_c00191{width:27.262667pt;}
._17_c00191{width:30.734133pt;}
._1b_c00191{width:38.412000pt;}
.fs2_c00191{font-size:47.360000pt;}
.fs5_c00191{font-size:52.266667pt;}
.fs7_c00191{font-size:58.666667pt;}
.fs0_c00191{font-size:59.200000pt;}
.fs1_c00191{font-size:61.333333pt;}
.fs4_c00191{font-size:61.866667pt;}
.fs3_c00191{font-size:64.533333pt;}
.fs6_c00191{font-size:68.266667pt;}
.y0_c00191{bottom:0.000000pt;}
.y1d_c00191{bottom:58.893333pt;}
.y1c_c00191{bottom:165.094667pt;}
.y1b_c00191{bottom:220.141333pt;}
.y1a_c00191{bottom:274.866000pt;}
.y19_c00191{bottom:329.606000pt;}
.y17_c00191{bottom:357.770000pt;}
.y18_c00191{bottom:357.773333pt;}
.y15_c00191{bottom:385.287333pt;}
.y16_c00191{bottom:385.293333pt;}
.y14_c00191{bottom:439.690000pt;}
.y13_c00191{bottom:467.513333pt;}
.y12_c00191{bottom:522.246667pt;}
.y1f_c00191{bottom:546.560000pt;}
.y1e_c00191{bottom:549.773333pt;}
.y11_c00191{bottom:550.092000pt;}
.yf_c00191{bottom:577.594667pt;}
.y10_c00191{bottom:577.600000pt;}
.ye_c00191{bottom:605.133333pt;}
.yd_c00191{bottom:632.333333pt;}
.yb_c00191{bottom:687.688667pt;}
.yc_c00191{bottom:687.693333pt;}
.ya_c00191{bottom:716.162667pt;}
.y9_c00191{bottom:771.209333pt;}
.y8_c00191{bottom:798.395333pt;}
.y7_c00191{bottom:825.612000pt;}
.y6_c00191{bottom:853.105333pt;}
.y5_c00191{bottom:880.628667pt;}
.y4_c00191{bottom:907.845333pt;}
.y3_c00191{bottom:962.554667pt;}
.y2_c00191{bottom:990.400000pt;}
.y1_c00191{bottom:1058.880000pt;}
.h5_c00191{height:31.541760pt;}
.hb_c00191{height:51.296875pt;}
.h2_c00191{height:58.101562pt;}
.h3_c00191{height:60.195312pt;}
.h9_c00191{height:60.208646pt;}
.h7_c00191{height:60.221979pt;}
.h4_c00191{height:60.253979pt;}
.h8_c00191{height:60.745417pt;}
.hd_c00191{height:61.187500pt;}
.ha_c00191{height:61.812500pt;}
.h6_c00191{height:63.335938pt;}
.hc_c00191{height:71.200000pt;}
.h1_c00191{height:1122.666667pt;}
.h0_c00191{height:1122.880000pt;}
.w1_c00191{width:793.333333pt;}
.w0_c00191{width:793.600000pt;}
.x0_c00191{left:0.000000pt;}
.xc_c00191{left:104.983333pt;}
.x6_c00191{left:105.914000pt;}
.x4_c00191{left:107.382667pt;}
.x2_c00191{left:108.640000pt;}
.x1_c00191{left:109.693333pt;}
.xd_c00191{left:152.784667pt;}
.x5_c00191{left:153.800000pt;}
.x3_c00191{left:155.360667pt;}
.x7_c00191{left:178.893333pt;}
.x8_c00191{left:207.520000pt;}
.x10_c00191{left:257.506667pt;}
.x11_c00191{left:284.000000pt;}
.x9_c00191{left:289.760000pt;}
.x12_c00191{left:375.866667pt;}
.xe_c00191{left:567.906667pt;}
.xf_c00191{left:592.893333pt;}
.xa_c00191{left:611.040000pt;}
.xb_c00191{left:634.213333pt;}
.x14_c00191{left:759.480000pt;}
.x13_c00191{left:760.413333pt;}
}





/* 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_c00192 {
    display:none;
  }
  .loading-indicator_c00192.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00192 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_c00192 { 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_c00192" -> "#page-container .classname_c00192")
 */
.pf_c00192 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00192 { /* 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_c00192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00192 { /* 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_c00192 { /* 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_c00192 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00192 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00192 {overflow:visible;}
  }
}
.c_c00192 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00192 { /* 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_c00192:after { /* webkit #35443 */
  content: '';
}
.t_c00192:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00192 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 */
}
.__c00192 { /* 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_c00192 { /* info for Javascript */
  display:none;
}
.l_c00192 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00192 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00192 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00192: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_c00192 {
    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_c00192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00192.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_c00192 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00192;src:url('chunks/assets/font_932d8a83013ce10475cbb6af.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.284668;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_c00192;src:url('chunks/assets/font_82e4a57910e6dc21dafb4005.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.284180;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_c00192;src:url('chunks/assets/font_420734ba8c606cad719794e4.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:0.666000;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_c00192;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;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:ff5_c00192;src:url('chunks/assets/font_0b89d24f431d35d2a00e6cea.woff2')format("woff");}.ff5_c00192{font-family:ff5_c00192;line-height:1.311035;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;}
.m6_c00192{transform:matrix(0.139368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139368,0.000000,0.000000,0.250000,0,0);}
.m4_c00192{transform:matrix(0.167533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167533,0.000000,0.000000,0.250000,0,0);}
.m5_c00192{transform:matrix(0.201754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201754,0.000000,0.000000,0.250000,0,0);}
.m1_c00192{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);}
.m2_c00192{transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);}
.m3_c00192{transform:matrix(0.267184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267184,0.000000,0.000000,0.250000,0,0);}
.m0_c00192{transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls14_c00192{letter-spacing:-5.019000px;}
.ls15_c00192{letter-spacing:-2.541000px;}
.lsd_c00192{letter-spacing:-1.701300px;}
.ls19_c00192{letter-spacing:-0.982260px;}
.ls16_c00192{letter-spacing:-0.160500px;}
.ls13_c00192{letter-spacing:0.000000px;}
.ls3_c00192{letter-spacing:0.362520px;}
.lsf_c00192{letter-spacing:0.559680px;}
.ls0_c00192{letter-spacing:0.571380px;}
.lse_c00192{letter-spacing:0.629160px;}
.ls7_c00192{letter-spacing:0.725460px;}
.ls10_c00192{letter-spacing:0.802500px;}
.ls8_c00192{letter-spacing:0.885960px;}
.ls18_c00192{letter-spacing:0.903120px;}
.ls6_c00192{letter-spacing:0.969420px;}
.ls17_c00192{letter-spacing:0.975840px;}
.lsa_c00192{letter-spacing:1.017600px;}
.ls2_c00192{letter-spacing:1.144800px;}
.ls1_c00192{letter-spacing:1.335600px;}
.ls9_c00192{letter-spacing:1.443720px;}
.ls5_c00192{letter-spacing:1.507320px;}
.ls4_c00192{letter-spacing:1.685400px;}
.lsb_c00192{letter-spacing:1.752660px;}
.lsc_c00192{letter-spacing:3.270000px;}
.ls11_c00192{letter-spacing:3.300000px;}
.ls12_c00192{letter-spacing:3.540000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{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__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00192{word-spacing:0.000000px;}
.ws1_c00192{word-spacing:0.231120px;}
.ws2_c00192{word-spacing:2.182800px;}
.ws0_c00192{word-spacing:6.034800px;}
._0_c00192{margin-left:-3.879600px;}
._3_c00192{margin-left:-2.728440px;}
._2_c00192{margin-left:-1.081200px;}
._1_c00192{width:2.633040px;}
.fc0_c00192{color:transparent;}
.fs8_c00192{font-size:63.000000px;}
.fs2_c00192{font-size:63.600000px;}
.fs1_c00192{font-size:64.200000px;}
.fs0_c00192{font-size:65.400000px;}
.fs3_c00192{font-size:66.000000px;}
.fs4_c00192{font-size:70.800000px;}
.fs7_c00192{font-size:72.600000px;}
.fs6_c00192{font-size:82.080000px;}
.fs5_c00192{font-size:143.400000px;}
.y0_c00192{bottom:0.000000px;}
.y4_c00192{bottom:146.175015px;}
.y3_c00192{bottom:164.880015px;}
.y2_c00192{bottom:183.240015px;}
.yb_c00192{bottom:323.295015px;}
.ya_c00192{bottom:429.840015px;}
.y9_c00192{bottom:436.680015px;}
.y8_c00192{bottom:445.680015px;}
.y7_c00192{bottom:621.375015px;}
.y6_c00192{bottom:720.000015px;}
.y5_c00192{bottom:869.775015px;}
.y1_c00192{bottom:871.560015px;}
.yc_c00192{bottom:1141.935015px;}
.h9_c00192{height:54.665280px;}
.hb_c00192{height:61.831055px;}
.h4_c00192{height:62.419922px;}
.h3_c00192{height:62.977441px;}
.h7_c00192{height:63.008789px;}
.h2_c00192{height:64.186523px;}
.hd_c00192{height:64.701562px;}
.h5_c00192{height:64.775391px;}
.hc_c00192{height:65.707031px;}
.h6_c00192{height:69.451758px;}
.ha_c00192{height:71.252930px;}
.h8_c00192{height:140.739258px;}
.h1_c00192{height:1263.000000px;}
.h0_c00192{height:1263.240015px;}
.w1_c00192{width:892.500000px;}
.w0_c00192{width:892.800015px;}
.x0_c00192{left:0.000000px;}
.x4_c00192{left:118.365015px;}
.x2_c00192{left:120.675015px;}
.x3_c00192{left:144.165015px;}
.x1_c00192{left:334.530015px;}
.xb_c00192{left:437.970015px;}
.x7_c00192{left:445.230015px;}
.x9_c00192{left:455.400015px;}
.x8_c00192{left:458.865015px;}
.xc_c00192{left:462.405015px;}
.xa_c00192{left:465.300015px;}
.x5_c00192{left:554.550015px;}
.x6_c00192{left:561.525015px;}
.xd_c00192{left:675.645015px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls14_c00192{letter-spacing:-4.461333pt;}
.ls15_c00192{letter-spacing:-2.258667pt;}
.lsd_c00192{letter-spacing:-1.512267pt;}
.ls19_c00192{letter-spacing:-0.873120pt;}
.ls16_c00192{letter-spacing:-0.142667pt;}
.ls13_c00192{letter-spacing:0.000000pt;}
.ls3_c00192{letter-spacing:0.322240pt;}
.lsf_c00192{letter-spacing:0.497493pt;}
.ls0_c00192{letter-spacing:0.507893pt;}
.lse_c00192{letter-spacing:0.559253pt;}
.ls7_c00192{letter-spacing:0.644853pt;}
.ls10_c00192{letter-spacing:0.713333pt;}
.ls8_c00192{letter-spacing:0.787520pt;}
.ls18_c00192{letter-spacing:0.802773pt;}
.ls6_c00192{letter-spacing:0.861707pt;}
.ls17_c00192{letter-spacing:0.867413pt;}
.lsa_c00192{letter-spacing:0.904533pt;}
.ls2_c00192{letter-spacing:1.017600pt;}
.ls1_c00192{letter-spacing:1.187200pt;}
.ls9_c00192{letter-spacing:1.283307pt;}
.ls5_c00192{letter-spacing:1.339840pt;}
.ls4_c00192{letter-spacing:1.498133pt;}
.lsb_c00192{letter-spacing:1.557920pt;}
.lsc_c00192{letter-spacing:2.906667pt;}
.ls11_c00192{letter-spacing:2.933333pt;}
.ls12_c00192{letter-spacing:3.146667pt;}
.ws3_c00192{word-spacing:0.000000pt;}
.ws1_c00192{word-spacing:0.205440pt;}
.ws2_c00192{word-spacing:1.940267pt;}
.ws0_c00192{word-spacing:5.364267pt;}
._0_c00192{margin-left:-3.448533pt;}
._3_c00192{margin-left:-2.425280pt;}
._2_c00192{margin-left:-0.961067pt;}
._1_c00192{width:2.340480pt;}
.fs8_c00192{font-size:56.000000pt;}
.fs2_c00192{font-size:56.533333pt;}
.fs1_c00192{font-size:57.066667pt;}
.fs0_c00192{font-size:58.133333pt;}
.fs3_c00192{font-size:58.666667pt;}
.fs4_c00192{font-size:62.933333pt;}
.fs7_c00192{font-size:64.533333pt;}
.fs6_c00192{font-size:72.960000pt;}
.fs5_c00192{font-size:127.466667pt;}
.y0_c00192{bottom:0.000000pt;}
.y4_c00192{bottom:129.933347pt;}
.y3_c00192{bottom:146.560013pt;}
.y2_c00192{bottom:162.880013pt;}
.yb_c00192{bottom:287.373347pt;}
.ya_c00192{bottom:382.080013pt;}
.y9_c00192{bottom:388.160013pt;}
.y8_c00192{bottom:396.160013pt;}
.y7_c00192{bottom:552.333347pt;}
.y6_c00192{bottom:640.000013pt;}
.y5_c00192{bottom:773.133347pt;}
.y1_c00192{bottom:774.720013pt;}
.yc_c00192{bottom:1015.053347pt;}
.h9_c00192{height:48.591360pt;}
.hb_c00192{height:54.960938pt;}
.h4_c00192{height:55.484375pt;}
.h3_c00192{height:55.979948pt;}
.h7_c00192{height:56.007812pt;}
.h2_c00192{height:57.054688pt;}
.hd_c00192{height:57.512500pt;}
.h5_c00192{height:57.578125pt;}
.hc_c00192{height:58.406250pt;}
.h6_c00192{height:61.734896pt;}
.ha_c00192{height:63.335938pt;}
.h8_c00192{height:125.101562pt;}
.h1_c00192{height:1122.666667pt;}
.h0_c00192{height:1122.880013pt;}
.w1_c00192{width:793.333333pt;}
.w0_c00192{width:793.600013pt;}
.x0_c00192{left:0.000000pt;}
.x4_c00192{left:105.213347pt;}
.x2_c00192{left:107.266680pt;}
.x3_c00192{left:128.146680pt;}
.x1_c00192{left:297.360013pt;}
.xb_c00192{left:389.306680pt;}
.x7_c00192{left:395.760013pt;}
.x9_c00192{left:404.800013pt;}
.x8_c00192{left:407.880013pt;}
.xc_c00192{left:411.026680pt;}
.xa_c00192{left:413.600013pt;}
.x5_c00192{left:492.933347pt;}
.x6_c00192{left:499.133347pt;}
.xd_c00192{left:600.573347pt;}
}





/* 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_c00193 {
    display:none;
  }
  .loading-indicator_c00193.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00193 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_c00193 { 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_c00193" -> "#page-container .classname_c00193")
 */
.pf_c00193 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00193 { /* 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_c00193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00193 { /* 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_c00193 { /* 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_c00193 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00193 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00193 {overflow:visible;}
  }
}
.c_c00193 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00193 { /* 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_c00193:after { /* webkit #35443 */
  content: '';
}
.t_c00193:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00193 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 */
}
.__c00193 { /* 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_c00193 { /* info for Javascript */
  display:none;
}
.l_c00193 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00193 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00193 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00193: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_c00193 {
    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_c00193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00193.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_c00193 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00193;src:url('chunks/assets/font_e25692f07b9a21130cc214a4.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.284668;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_c00193;src:url('chunks/assets/font_bf0118d54e1a2df875bc4666.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.284180;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_c00193;src:url('chunks/assets/font_8fcef7ea0bdb82fc4ba5ed3e.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;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;}
.m7_c00193{transform:matrix(0.167667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167667,0.000000,0.000000,0.250000,0,0);}
.m6_c00193{transform:matrix(0.170328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170328,0.000000,0.000000,0.250000,0,0);}
.m9_c00193{transform:matrix(0.224711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224711,0.000000,0.000000,0.250000,0,0);}
.m5_c00193{transform:matrix(0.229553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229553,0.000000,0.000000,0.250000,0,0);}
.m3_c00193{transform:matrix(0.239917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239917,0.000000,0.000000,0.250000,0,0);}
.m1_c00193{transform:matrix(0.243857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243857,0.000000,0.000000,0.250000,0,0);}
.m4_c00193{transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);}
.m8_c00193{transform:matrix(0.245991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245991,0.000000,0.000000,0.250000,0,0);}
.ma_c00193{transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);}
.m0_c00193{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);}
.m2_c00193{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls9e_c00193{letter-spacing:-2.667000px;}
.ls44_c00193{letter-spacing:-2.457000px;}
.ls82_c00193{letter-spacing:-2.386800px;}
.ls92_c00193{letter-spacing:-2.373000px;}
.ls8d_c00193{letter-spacing:-2.352000px;}
.ls73_c00193{letter-spacing:-2.302560px;}
.ls66_c00193{letter-spacing:-2.204280px;}
.lsa1_c00193{letter-spacing:-2.016000px;}
.ls6b_c00193{letter-spacing:-1.951560px;}
.ls4d_c00193{letter-spacing:-1.916460px;}
.ls6d_c00193{letter-spacing:-1.902420px;}
.ls8f_c00193{letter-spacing:-1.823820px;}
.ls80_c00193{letter-spacing:-1.670760px;}
.ls65_c00193{letter-spacing:-1.635660px;}
.ls7a_c00193{letter-spacing:-1.628640px;}
.ls91_c00193{letter-spacing:-1.579200px;}
.ls8e_c00193{letter-spacing:-1.572480px;}
.ls7c_c00193{letter-spacing:-1.565460px;}
.ls9f_c00193{letter-spacing:-1.538880px;}
.ls9a_c00193{letter-spacing:-1.530360px;}
.ls7f_c00193{letter-spacing:-1.516320px;}
.ls57_c00193{letter-spacing:-1.509300px;}
.ls64_c00193{letter-spacing:-1.453140px;}
.ls8c_c00193{letter-spacing:-1.439100px;}
.ls87_c00193{letter-spacing:-1.347840px;}
.ls76_c00193{letter-spacing:-1.333800px;}
.ls33_c00193{letter-spacing:-1.298700px;}
.ls7e_c00193{letter-spacing:-1.130220px;}
.ls6c_c00193{letter-spacing:-1.045980px;}
.ls5c_c00193{letter-spacing:-0.989820px;}
.ls58_c00193{letter-spacing:-0.961740px;}
.ls8a_c00193{letter-spacing:-0.926640px;}
.ls4b_c00193{letter-spacing:-0.884520px;}
.ls40_c00193{letter-spacing:-0.877500px;}
.ls43_c00193{letter-spacing:-0.856440px;}
.ls42_c00193{letter-spacing:-0.849420px;}
.ls55_c00193{letter-spacing:-0.842400px;}
.ls53_c00193{letter-spacing:-0.835380px;}
.ls67_c00193{letter-spacing:-0.814320px;}
.ls52_c00193{letter-spacing:-0.807300px;}
.ls89_c00193{letter-spacing:-0.793260px;}
.ls88_c00193{letter-spacing:-0.786240px;}
.ls35_c00193{letter-spacing:-0.765180px;}
.ls94_c00193{letter-spacing:-0.758160px;}
.ls79_c00193{letter-spacing:-0.751140px;}
.ls39_c00193{letter-spacing:-0.744120px;}
.ls98_c00193{letter-spacing:-0.694980px;}
.ls81_c00193{letter-spacing:-0.680940px;}
.ls37_c00193{letter-spacing:-0.666900px;}
.ls4a_c00193{letter-spacing:-0.638820px;}
.ls96_c00193{letter-spacing:-0.631800px;}
.ls86_c00193{letter-spacing:-0.624780px;}
.ls72_c00193{letter-spacing:-0.617760px;}
.ls68_c00193{letter-spacing:-0.610740px;}
.ls3c_c00193{letter-spacing:-0.568620px;}
.ls9d_c00193{letter-spacing:-0.540540px;}
.ls8b_c00193{letter-spacing:-0.519480px;}
.ls3b_c00193{letter-spacing:-0.512460px;}
.ls5e_c00193{letter-spacing:-0.505440px;}
.ls84_c00193{letter-spacing:-0.498420px;}
.ls45_c00193{letter-spacing:-0.484380px;}
.ls63_c00193{letter-spacing:-0.463320px;}
.ls6e_c00193{letter-spacing:-0.456300px;}
.ls36_c00193{letter-spacing:-0.449280px;}
.ls60_c00193{letter-spacing:-0.442260px;}
.ls7b_c00193{letter-spacing:-0.428220px;}
.ls97_c00193{letter-spacing:-0.407160px;}
.ls75_c00193{letter-spacing:-0.393120px;}
.ls3a_c00193{letter-spacing:-0.386100px;}
.ls3e_c00193{letter-spacing:-0.372060px;}
.ls3f_c00193{letter-spacing:-0.358020px;}
.ls38_c00193{letter-spacing:-0.351000px;}
.ls54_c00193{letter-spacing:-0.343980px;}
.ls31_c00193{letter-spacing:-0.329940px;}
.ls30_c00193{letter-spacing:-0.322920px;}
.ls61_c00193{letter-spacing:-0.315900px;}
.ls85_c00193{letter-spacing:-0.308880px;}
.ls5d_c00193{letter-spacing:-0.294840px;}
.ls46_c00193{letter-spacing:-0.280800px;}
.ls5a_c00193{letter-spacing:-0.266760px;}
.ls78_c00193{letter-spacing:-0.259740px;}
.ls69_c00193{letter-spacing:-0.252720px;}
.ls32_c00193{letter-spacing:-0.245700px;}
.ls48_c00193{letter-spacing:-0.231660px;}
.ls62_c00193{letter-spacing:-0.224640px;}
.ls71_c00193{letter-spacing:-0.203580px;}
.ls41_c00193{letter-spacing:-0.196560px;}
.ls59_c00193{letter-spacing:-0.189540px;}
.ls83_c00193{letter-spacing:-0.182520px;}
.ls7d_c00193{letter-spacing:-0.175500px;}
.ls77_c00193{letter-spacing:-0.168480px;}
.ls4c_c00193{letter-spacing:-0.154440px;}
.ls6a_c00193{letter-spacing:-0.147420px;}
.ls50_c00193{letter-spacing:-0.140400px;}
.ls70_c00193{letter-spacing:-0.126360px;}
.ls34_c00193{letter-spacing:-0.112320px;}
.ls2f_c00193{letter-spacing:-0.105300px;}
.ls5b_c00193{letter-spacing:-0.098280px;}
.ls9c_c00193{letter-spacing:-0.091260px;}
.ls6f_c00193{letter-spacing:-0.084240px;}
.ls3d_c00193{letter-spacing:-0.077220px;}
.ls47_c00193{letter-spacing:-0.070200px;}
.ls95_c00193{letter-spacing:-0.063180px;}
.ls5f_c00193{letter-spacing:-0.049140px;}
.ls4f_c00193{letter-spacing:-0.035100px;}
.ls51_c00193{letter-spacing:-0.028080px;}
.ls9b_c00193{letter-spacing:-0.021060px;}
.ls4e_c00193{letter-spacing:-0.014040px;}
.ls56_c00193{letter-spacing:0.000000px;}
.ls19_c00193{letter-spacing:0.007020px;}
.ls20_c00193{letter-spacing:0.014040px;}
.ls6_c00193{letter-spacing:0.028080px;}
.lsd_c00193{letter-spacing:0.035100px;}
.ls1_c00193{letter-spacing:0.042120px;}
.ls12_c00193{letter-spacing:0.049140px;}
.ls0_c00193{letter-spacing:0.063180px;}
.ls1d_c00193{letter-spacing:0.070200px;}
.ls29_c00193{letter-spacing:0.077220px;}
.ls28_c00193{letter-spacing:0.084240px;}
.ls15_c00193{letter-spacing:0.091260px;}
.ls8_c00193{letter-spacing:0.105300px;}
.ls25_c00193{letter-spacing:0.126360px;}
.ls3_c00193{letter-spacing:0.140400px;}
.ls21_c00193{letter-spacing:0.147420px;}
.ls22_c00193{letter-spacing:0.161460px;}
.ls4_c00193{letter-spacing:0.175500px;}
.ls2d_c00193{letter-spacing:0.189540px;}
.ls18_c00193{letter-spacing:0.196560px;}
.ls9_c00193{letter-spacing:0.203580px;}
.ls13_c00193{letter-spacing:0.224640px;}
.lsf_c00193{letter-spacing:0.238680px;}
.lsa_c00193{letter-spacing:0.273780px;}
.ls74_c00193{letter-spacing:0.280800px;}
.lse_c00193{letter-spacing:0.287820px;}
.ls2_c00193{letter-spacing:0.294840px;}
.lsc_c00193{letter-spacing:0.308880px;}
.ls17_c00193{letter-spacing:0.322920px;}
.ls10_c00193{letter-spacing:0.379080px;}
.ls2a_c00193{letter-spacing:0.400140px;}
.ls16_c00193{letter-spacing:0.407160px;}
.lsb_c00193{letter-spacing:0.456300px;}
.ls5_c00193{letter-spacing:0.491400px;}
.ls7_c00193{letter-spacing:0.561600px;}
.ls11_c00193{letter-spacing:0.624780px;}
.ls2b_c00193{letter-spacing:0.631800px;}
.ls99_c00193{letter-spacing:0.691560px;}
.ls90_c00193{letter-spacing:0.759360px;}
.ls1e_c00193{letter-spacing:0.766140px;}
.ls26_c00193{letter-spacing:0.786240px;}
.ls24_c00193{letter-spacing:0.881400px;}
.ls93_c00193{letter-spacing:0.888180px;}
.ls1b_c00193{letter-spacing:0.983100px;}
.lsa0_c00193{letter-spacing:1.023780px;}
.ls14_c00193{letter-spacing:1.045980px;}
.ls1a_c00193{letter-spacing:1.193280px;}
.ls2c_c00193{letter-spacing:1.263600px;}
.ls23_c00193{letter-spacing:1.396680px;}
.ls27_c00193{letter-spacing:1.539060px;}
.ls2e_c00193{letter-spacing:1.557420px;}
.ls1f_c00193{letter-spacing:1.769040px;}
.ls1c_c00193{letter-spacing:1.818180px;}
.ls49_c00193{letter-spacing:3.510000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{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__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00193{word-spacing:0.000000px;}
.ws0_c00193{word-spacing:4.174200px;}
.ws4_c00193{word-spacing:122.442840px;}
.ws5_c00193{word-spacing:123.004440px;}
.ws2_c00193{word-spacing:123.467760px;}
.ws1_c00193{word-spacing:123.622200px;}
.ws3_c00193{word-spacing:123.973200px;}
._17_c00193{margin-left:-18.532800px;}
._9_c00193{margin-left:-15.451020px;}
._1a_c00193{margin-left:-11.456640px;}
._18_c00193{margin-left:-9.856080px;}
._1b_c00193{margin-left:-5.463840px;}
._19_c00193{margin-left:-4.182240px;}
._16_c00193{margin-left:-2.737800px;}
._15_c00193{margin-left:-1.123200px;}
._c_c00193{width:1.832220px;}
._6_c00193{width:3.439800px;}
._b_c00193{width:4.668300px;}
._7_c00193{width:6.177600px;}
._8_c00193{width:7.420140px;}
._a_c00193{width:8.641620px;}
._4_c00193{width:9.813960px;}
._0_c00193{width:11.337300px;}
._1_c00193{width:12.446460px;}
._3_c00193{width:13.464360px;}
._2_c00193{width:14.812200px;}
._11_c00193{width:15.935400px;}
._5_c00193{width:19.073340px;}
._14_c00193{width:21.747960px;}
._12_c00193{width:23.882040px;}
._13_c00193{width:26.591760px;}
._10_c00193{width:28.810080px;}
._d_c00193{width:30.171960px;}
._f_c00193{width:32.488560px;}
._e_c00193{width:34.187400px;}
.fc0_c00193{color:transparent;}
.fs5_c00193{font-size:57.600000px;}
.fs0_c00193{font-size:60.600000px;}
.fs3_c00193{font-size:67.200000px;}
.fs2_c00193{font-size:67.800000px;}
.fs1_c00193{font-size:70.200000px;}
.fs4_c00193{font-size:76.200000px;}
.y0_c00193{bottom:0.000000px;}
.y23_c00193{bottom:70.935015px;}
.y22_c00193{bottom:127.080015px;}
.y21_c00193{bottom:159.120015px;}
.y20_c00193{bottom:189.364065px;}
.y1f_c00193{bottom:220.690815px;}
.y1e_c00193{bottom:252.000015px;}
.y1d_c00193{bottom:283.335015px;}
.y1b_c00193{bottom:316.062165px;}
.y1c_c00193{bottom:316.080015px;}
.y1a_c00193{bottom:347.757465px;}
.y19_c00193{bottom:378.364665px;}
.y18_c00193{bottom:408.971865px;}
.y17_c00193{bottom:440.298615px;}
.y16_c00193{bottom:502.212165px;}
.y15_c00193{bottom:563.753865px;}
.y14_c00193{bottom:626.407365px;}
.y12_c00193{bottom:656.283165px;}
.y13_c00193{bottom:656.295015px;}
.y11_c00193{bottom:686.890365px;}
.y10_c00193{bottom:717.480015px;}
.yf_c00193{bottom:779.047815px;}
.ye_c00193{bottom:809.656815px;}
.yd_c00193{bottom:840.615015px;}
.yc_c00193{bottom:840.618465px;}
.yb_c00193{bottom:871.208115px;}
.ya_c00193{bottom:901.815315px;}
.y9_c00193{bottom:932.422515px;}
.y8_c00193{bottom:963.012165px;}
.y7_c00193{bottom:993.619365px;}
.y6_c00193{bottom:1024.560015px;}
.y5_c00193{bottom:1024.571415px;}
.y4_c00193{bottom:1055.529615px;}
.y3_c00193{bottom:1086.136815px;}
.y2_c00193{bottom:1117.095015px;}
.y1_c00193{bottom:1193.415015px;}
.h9_c00193{height:56.531250px;}
.h2_c00193{height:59.475586px;}
.h7_c00193{height:66.508887px;}
.h3_c00193{height:68.897461px;}
.h5_c00193{height:68.908861px;}
.h4_c00193{height:68.922061px;}
.h6_c00193{height:70.087500px;}
.h8_c00193{height:74.786133px;}
.h1_c00193{height:1263.000000px;}
.h0_c00193{height:1263.240015px;}
.w1_c00193{width:892.500000px;}
.w0_c00193{width:892.800015px;}
.x0_c00193{left:0.000000px;}
.xd_c00193{left:123.061665px;}
.x1_c00193{left:124.845015px;}
.xc_c00193{left:172.096365px;}
.x13_c00193{left:174.495015px;}
.xe_c00193{left:175.974915px;}
.x9_c00193{left:177.285015px;}
.x2_c00193{left:178.380015px;}
.x14_c00193{left:196.830015px;}
.x15_c00193{left:220.590015px;}
.xf_c00193{left:297.165015px;}
.x3_c00193{left:314.760015px;}
.x10_c00193{left:318.510015px;}
.x4_c00193{left:341.835015px;}
.x16_c00193{left:423.945015px;}
.x7_c00193{left:440.130015px;}
.xa_c00193{left:442.635015px;}
.x8_c00193{left:458.835015px;}
.xb_c00193{left:464.565015px;}
.x11_c00193{left:640.335015px;}
.x12_c00193{left:659.775015px;}
.x5_c00193{left:661.710015px;}
.x6_c00193{left:695.985015px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls9e_c00193{letter-spacing:-2.370667pt;}
.ls44_c00193{letter-spacing:-2.184000pt;}
.ls82_c00193{letter-spacing:-2.121600pt;}
.ls92_c00193{letter-spacing:-2.109333pt;}
.ls8d_c00193{letter-spacing:-2.090667pt;}
.ls73_c00193{letter-spacing:-2.046720pt;}
.ls66_c00193{letter-spacing:-1.959360pt;}
.lsa1_c00193{letter-spacing:-1.792000pt;}
.ls6b_c00193{letter-spacing:-1.734720pt;}
.ls4d_c00193{letter-spacing:-1.703520pt;}
.ls6d_c00193{letter-spacing:-1.691040pt;}
.ls8f_c00193{letter-spacing:-1.621173pt;}
.ls80_c00193{letter-spacing:-1.485120pt;}
.ls65_c00193{letter-spacing:-1.453920pt;}
.ls7a_c00193{letter-spacing:-1.447680pt;}
.ls91_c00193{letter-spacing:-1.403733pt;}
.ls8e_c00193{letter-spacing:-1.397760pt;}
.ls7c_c00193{letter-spacing:-1.391520pt;}
.ls9f_c00193{letter-spacing:-1.367893pt;}
.ls9a_c00193{letter-spacing:-1.360320pt;}
.ls7f_c00193{letter-spacing:-1.347840pt;}
.ls57_c00193{letter-spacing:-1.341600pt;}
.ls64_c00193{letter-spacing:-1.291680pt;}
.ls8c_c00193{letter-spacing:-1.279200pt;}
.ls87_c00193{letter-spacing:-1.198080pt;}
.ls76_c00193{letter-spacing:-1.185600pt;}
.ls33_c00193{letter-spacing:-1.154400pt;}
.ls7e_c00193{letter-spacing:-1.004640pt;}
.ls6c_c00193{letter-spacing:-0.929760pt;}
.ls5c_c00193{letter-spacing:-0.879840pt;}
.ls58_c00193{letter-spacing:-0.854880pt;}
.ls8a_c00193{letter-spacing:-0.823680pt;}
.ls4b_c00193{letter-spacing:-0.786240pt;}
.ls40_c00193{letter-spacing:-0.780000pt;}
.ls43_c00193{letter-spacing:-0.761280pt;}
.ls42_c00193{letter-spacing:-0.755040pt;}
.ls55_c00193{letter-spacing:-0.748800pt;}
.ls53_c00193{letter-spacing:-0.742560pt;}
.ls67_c00193{letter-spacing:-0.723840pt;}
.ls52_c00193{letter-spacing:-0.717600pt;}
.ls89_c00193{letter-spacing:-0.705120pt;}
.ls88_c00193{letter-spacing:-0.698880pt;}
.ls35_c00193{letter-spacing:-0.680160pt;}
.ls94_c00193{letter-spacing:-0.673920pt;}
.ls79_c00193{letter-spacing:-0.667680pt;}
.ls39_c00193{letter-spacing:-0.661440pt;}
.ls98_c00193{letter-spacing:-0.617760pt;}
.ls81_c00193{letter-spacing:-0.605280pt;}
.ls37_c00193{letter-spacing:-0.592800pt;}
.ls4a_c00193{letter-spacing:-0.567840pt;}
.ls96_c00193{letter-spacing:-0.561600pt;}
.ls86_c00193{letter-spacing:-0.555360pt;}
.ls72_c00193{letter-spacing:-0.549120pt;}
.ls68_c00193{letter-spacing:-0.542880pt;}
.ls3c_c00193{letter-spacing:-0.505440pt;}
.ls9d_c00193{letter-spacing:-0.480480pt;}
.ls8b_c00193{letter-spacing:-0.461760pt;}
.ls3b_c00193{letter-spacing:-0.455520pt;}
.ls5e_c00193{letter-spacing:-0.449280pt;}
.ls84_c00193{letter-spacing:-0.443040pt;}
.ls45_c00193{letter-spacing:-0.430560pt;}
.ls63_c00193{letter-spacing:-0.411840pt;}
.ls6e_c00193{letter-spacing:-0.405600pt;}
.ls36_c00193{letter-spacing:-0.399360pt;}
.ls60_c00193{letter-spacing:-0.393120pt;}
.ls7b_c00193{letter-spacing:-0.380640pt;}
.ls97_c00193{letter-spacing:-0.361920pt;}
.ls75_c00193{letter-spacing:-0.349440pt;}
.ls3a_c00193{letter-spacing:-0.343200pt;}
.ls3e_c00193{letter-spacing:-0.330720pt;}
.ls3f_c00193{letter-spacing:-0.318240pt;}
.ls38_c00193{letter-spacing:-0.312000pt;}
.ls54_c00193{letter-spacing:-0.305760pt;}
.ls31_c00193{letter-spacing:-0.293280pt;}
.ls30_c00193{letter-spacing:-0.287040pt;}
.ls61_c00193{letter-spacing:-0.280800pt;}
.ls85_c00193{letter-spacing:-0.274560pt;}
.ls5d_c00193{letter-spacing:-0.262080pt;}
.ls46_c00193{letter-spacing:-0.249600pt;}
.ls5a_c00193{letter-spacing:-0.237120pt;}
.ls78_c00193{letter-spacing:-0.230880pt;}
.ls69_c00193{letter-spacing:-0.224640pt;}
.ls32_c00193{letter-spacing:-0.218400pt;}
.ls48_c00193{letter-spacing:-0.205920pt;}
.ls62_c00193{letter-spacing:-0.199680pt;}
.ls71_c00193{letter-spacing:-0.180960pt;}
.ls41_c00193{letter-spacing:-0.174720pt;}
.ls59_c00193{letter-spacing:-0.168480pt;}
.ls83_c00193{letter-spacing:-0.162240pt;}
.ls7d_c00193{letter-spacing:-0.156000pt;}
.ls77_c00193{letter-spacing:-0.149760pt;}
.ls4c_c00193{letter-spacing:-0.137280pt;}
.ls6a_c00193{letter-spacing:-0.131040pt;}
.ls50_c00193{letter-spacing:-0.124800pt;}
.ls70_c00193{letter-spacing:-0.112320pt;}
.ls34_c00193{letter-spacing:-0.099840pt;}
.ls2f_c00193{letter-spacing:-0.093600pt;}
.ls5b_c00193{letter-spacing:-0.087360pt;}
.ls9c_c00193{letter-spacing:-0.081120pt;}
.ls6f_c00193{letter-spacing:-0.074880pt;}
.ls3d_c00193{letter-spacing:-0.068640pt;}
.ls47_c00193{letter-spacing:-0.062400pt;}
.ls95_c00193{letter-spacing:-0.056160pt;}
.ls5f_c00193{letter-spacing:-0.043680pt;}
.ls4f_c00193{letter-spacing:-0.031200pt;}
.ls51_c00193{letter-spacing:-0.024960pt;}
.ls9b_c00193{letter-spacing:-0.018720pt;}
.ls4e_c00193{letter-spacing:-0.012480pt;}
.ls56_c00193{letter-spacing:0.000000pt;}
.ls19_c00193{letter-spacing:0.006240pt;}
.ls20_c00193{letter-spacing:0.012480pt;}
.ls6_c00193{letter-spacing:0.024960pt;}
.lsd_c00193{letter-spacing:0.031200pt;}
.ls1_c00193{letter-spacing:0.037440pt;}
.ls12_c00193{letter-spacing:0.043680pt;}
.ls0_c00193{letter-spacing:0.056160pt;}
.ls1d_c00193{letter-spacing:0.062400pt;}
.ls29_c00193{letter-spacing:0.068640pt;}
.ls28_c00193{letter-spacing:0.074880pt;}
.ls15_c00193{letter-spacing:0.081120pt;}
.ls8_c00193{letter-spacing:0.093600pt;}
.ls25_c00193{letter-spacing:0.112320pt;}
.ls3_c00193{letter-spacing:0.124800pt;}
.ls21_c00193{letter-spacing:0.131040pt;}
.ls22_c00193{letter-spacing:0.143520pt;}
.ls4_c00193{letter-spacing:0.156000pt;}
.ls2d_c00193{letter-spacing:0.168480pt;}
.ls18_c00193{letter-spacing:0.174720pt;}
.ls9_c00193{letter-spacing:0.180960pt;}
.ls13_c00193{letter-spacing:0.199680pt;}
.lsf_c00193{letter-spacing:0.212160pt;}
.lsa_c00193{letter-spacing:0.243360pt;}
.ls74_c00193{letter-spacing:0.249600pt;}
.lse_c00193{letter-spacing:0.255840pt;}
.ls2_c00193{letter-spacing:0.262080pt;}
.lsc_c00193{letter-spacing:0.274560pt;}
.ls17_c00193{letter-spacing:0.287040pt;}
.ls10_c00193{letter-spacing:0.336960pt;}
.ls2a_c00193{letter-spacing:0.355680pt;}
.ls16_c00193{letter-spacing:0.361920pt;}
.lsb_c00193{letter-spacing:0.405600pt;}
.ls5_c00193{letter-spacing:0.436800pt;}
.ls7_c00193{letter-spacing:0.499200pt;}
.ls11_c00193{letter-spacing:0.555360pt;}
.ls2b_c00193{letter-spacing:0.561600pt;}
.ls99_c00193{letter-spacing:0.614720pt;}
.ls90_c00193{letter-spacing:0.674987pt;}
.ls1e_c00193{letter-spacing:0.681013pt;}
.ls26_c00193{letter-spacing:0.698880pt;}
.ls24_c00193{letter-spacing:0.783467pt;}
.ls93_c00193{letter-spacing:0.789493pt;}
.ls1b_c00193{letter-spacing:0.873867pt;}
.lsa0_c00193{letter-spacing:0.910027pt;}
.ls14_c00193{letter-spacing:0.929760pt;}
.ls1a_c00193{letter-spacing:1.060693pt;}
.ls2c_c00193{letter-spacing:1.123200pt;}
.ls23_c00193{letter-spacing:1.241493pt;}
.ls27_c00193{letter-spacing:1.368053pt;}
.ls2e_c00193{letter-spacing:1.384373pt;}
.ls1f_c00193{letter-spacing:1.572480pt;}
.ls1c_c00193{letter-spacing:1.616160pt;}
.ls49_c00193{letter-spacing:3.120000pt;}
.ws6_c00193{word-spacing:0.000000pt;}
.ws0_c00193{word-spacing:3.710400pt;}
.ws4_c00193{word-spacing:108.838080pt;}
.ws5_c00193{word-spacing:109.337280pt;}
.ws2_c00193{word-spacing:109.749120pt;}
.ws1_c00193{word-spacing:109.886400pt;}
.ws3_c00193{word-spacing:110.198400pt;}
._17_c00193{margin-left:-16.473600pt;}
._9_c00193{margin-left:-13.734240pt;}
._1a_c00193{margin-left:-10.183680pt;}
._18_c00193{margin-left:-8.760960pt;}
._1b_c00193{margin-left:-4.856747pt;}
._19_c00193{margin-left:-3.717547pt;}
._16_c00193{margin-left:-2.433600pt;}
._15_c00193{margin-left:-0.998400pt;}
._c_c00193{width:1.628640pt;}
._6_c00193{width:3.057600pt;}
._b_c00193{width:4.149600pt;}
._7_c00193{width:5.491200pt;}
._8_c00193{width:6.595680pt;}
._a_c00193{width:7.681440pt;}
._4_c00193{width:8.723520pt;}
._0_c00193{width:10.077600pt;}
._1_c00193{width:11.063520pt;}
._3_c00193{width:11.968320pt;}
._2_c00193{width:13.166400pt;}
._11_c00193{width:14.164800pt;}
._5_c00193{width:16.954080pt;}
._14_c00193{width:19.331520pt;}
._12_c00193{width:21.228480pt;}
._13_c00193{width:23.637120pt;}
._10_c00193{width:25.608960pt;}
._d_c00193{width:26.819520pt;}
._f_c00193{width:28.878720pt;}
._e_c00193{width:30.388800pt;}
.fs5_c00193{font-size:51.200000pt;}
.fs0_c00193{font-size:53.866667pt;}
.fs3_c00193{font-size:59.733333pt;}
.fs2_c00193{font-size:60.266667pt;}
.fs1_c00193{font-size:62.400000pt;}
.fs4_c00193{font-size:67.733333pt;}
.y0_c00193{bottom:0.000000pt;}
.y23_c00193{bottom:63.053347pt;}
.y22_c00193{bottom:112.960013pt;}
.y21_c00193{bottom:141.440013pt;}
.y20_c00193{bottom:168.323613pt;}
.y1f_c00193{bottom:196.169613pt;}
.y1e_c00193{bottom:224.000013pt;}
.y1d_c00193{bottom:251.853347pt;}
.y1b_c00193{bottom:280.944147pt;}
.y1c_c00193{bottom:280.960013pt;}
.y1a_c00193{bottom:309.117747pt;}
.y19_c00193{bottom:336.324147pt;}
.y18_c00193{bottom:363.530547pt;}
.y17_c00193{bottom:391.376547pt;}
.y16_c00193{bottom:446.410813pt;}
.y15_c00193{bottom:501.114547pt;}
.y14_c00193{bottom:556.806547pt;}
.y12_c00193{bottom:583.362813pt;}
.y13_c00193{bottom:583.373347pt;}
.y11_c00193{bottom:610.569213pt;}
.y10_c00193{bottom:637.760013pt;}
.yf_c00193{bottom:692.486947pt;}
.ye_c00193{bottom:719.694947pt;}
.yd_c00193{bottom:747.213347pt;}
.yc_c00193{bottom:747.216413pt;}
.yb_c00193{bottom:774.407213pt;}
.ya_c00193{bottom:801.613613pt;}
.y9_c00193{bottom:828.820013pt;}
.y8_c00193{bottom:856.010813pt;}
.y7_c00193{bottom:883.217213pt;}
.y6_c00193{bottom:910.720013pt;}
.y5_c00193{bottom:910.730147pt;}
.y4_c00193{bottom:938.248547pt;}
.y3_c00193{bottom:965.454947pt;}
.y2_c00193{bottom:992.973347pt;}
.y1_c00193{bottom:1060.813347pt;}
.h9_c00193{height:50.250000pt;}
.h2_c00193{height:52.867187pt;}
.h7_c00193{height:59.119010pt;}
.h3_c00193{height:61.242187pt;}
.h5_c00193{height:61.252321pt;}
.h4_c00193{height:61.264054pt;}
.h6_c00193{height:62.300000pt;}
.h8_c00193{height:66.476562pt;}
.h1_c00193{height:1122.666667pt;}
.h0_c00193{height:1122.880013pt;}
.w1_c00193{width:793.333333pt;}
.w0_c00193{width:793.600013pt;}
.x0_c00193{left:0.000000pt;}
.xd_c00193{left:109.388147pt;}
.x1_c00193{left:110.973347pt;}
.xc_c00193{left:152.974547pt;}
.x13_c00193{left:155.106680pt;}
.xe_c00193{left:156.422147pt;}
.x9_c00193{left:157.586680pt;}
.x2_c00193{left:158.560013pt;}
.x14_c00193{left:174.960013pt;}
.x15_c00193{left:196.080013pt;}
.xf_c00193{left:264.146680pt;}
.x3_c00193{left:279.786680pt;}
.x10_c00193{left:283.120013pt;}
.x4_c00193{left:303.853347pt;}
.x16_c00193{left:376.840013pt;}
.x7_c00193{left:391.226680pt;}
.xa_c00193{left:393.453347pt;}
.x8_c00193{left:407.853347pt;}
.xb_c00193{left:412.946680pt;}
.x11_c00193{left:569.186680pt;}
.x12_c00193{left:586.466680pt;}
.x5_c00193{left:588.186680pt;}
.x6_c00193{left:618.653347pt;}
}





/* 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_c00194 {
    display:none;
  }
  .loading-indicator_c00194.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00194 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_c00194 { 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_c00194" -> "#page-container .classname_c00194")
 */
.pf_c00194 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00194 { /* 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_c00194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00194 { /* 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_c00194 { /* 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_c00194 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00194 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00194 {overflow:visible;}
  }
}
.c_c00194 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00194 { /* 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_c00194:after { /* webkit #35443 */
  content: '';
}
.t_c00194:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00194 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 */
}
.__c00194 { /* 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_c00194 { /* info for Javascript */
  display:none;
}
.l_c00194 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00194 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00194 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00194: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_c00194 {
    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_c00194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00194.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_c00194 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00194;src:url('chunks/assets/font_5b7812441a0fba5d9d6325ac.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.284668;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_c00194;src:url('chunks/assets/font_2e25301ab202594baa989d17.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.284180;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_c00194;src:url('chunks/assets/font_5b8ab6fc62a53eb4c43c1e6a.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;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;}
.m3_c00194{transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);}
.ma_c00194{transform:matrix(0.209507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209507,0.000000,0.000000,0.250000,0,0);}
.m5_c00194{transform:matrix(0.222449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222449,0.000000,0.000000,0.250000,0,0);}
.m0_c00194{transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);}
.mb_c00194{transform:matrix(0.241706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241706,0.000000,0.000000,0.250000,0,0);}
.m4_c00194{transform:matrix(0.241713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241713,0.000000,0.000000,0.250000,0,0);}
.m2_c00194{transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);}
.me_c00194{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m8_c00194{transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);}
.m9_c00194{transform:matrix(0.244879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244879,0.000000,0.000000,0.250000,0,0);}
.mf_c00194{transform:matrix(0.246983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246983,0.000000,0.000000,0.250000,0,0);}
.m7_c00194{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m6_c00194{transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);}
.md_c00194{transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);}
.mc_c00194{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{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);}
.v0_c00194{vertical-align:0.000000px;}
.ls39_c00194{letter-spacing:-2.562000px;}
.ls3f_c00194{letter-spacing:-2.478000px;}
.ls48_c00194{letter-spacing:-2.457000px;}
.ls40_c00194{letter-spacing:-2.415000px;}
.ls75_c00194{letter-spacing:-2.378880px;}
.ls89_c00194{letter-spacing:-2.329320px;}
.ls8f_c00194{letter-spacing:-2.074440px;}
.ls82_c00194{letter-spacing:-1.670880px;}
.ls7e_c00194{letter-spacing:-1.649640px;}
.ls5b_c00194{letter-spacing:-1.621320px;}
.ls5c_c00194{letter-spacing:-1.585920px;}
.ls43_c00194{letter-spacing:-1.465560px;}
.ls3e_c00194{letter-spacing:-1.323960px;}
.ls88_c00194{letter-spacing:-1.295640px;}
.ls59_c00194{letter-spacing:-1.281480px;}
.ls83_c00194{letter-spacing:-1.231920px;}
.ls80_c00194{letter-spacing:-1.139880px;}
.ls6b_c00194{letter-spacing:-1.111560px;}
.ls71_c00194{letter-spacing:-1.026600px;}
.ls8a_c00194{letter-spacing:-0.969960px;}
.ls64_c00194{letter-spacing:-0.955800px;}
.ls72_c00194{letter-spacing:-0.934560px;}
.ls91_c00194{letter-spacing:-0.892080px;}
.ls5a_c00194{letter-spacing:-0.863760px;}
.ls76_c00194{letter-spacing:-0.835440px;}
.ls93_c00194{letter-spacing:-0.823680px;}
.ls5e_c00194{letter-spacing:-0.814200px;}
.ls67_c00194{letter-spacing:-0.800040px;}
.ls6f_c00194{letter-spacing:-0.785880px;}
.ls53_c00194{letter-spacing:-0.764640px;}
.ls5f_c00194{letter-spacing:-0.708000px;}
.ls8e_c00194{letter-spacing:-0.700920px;}
.ls86_c00194{letter-spacing:-0.644280px;}
.ls55_c00194{letter-spacing:-0.615960px;}
.ls84_c00194{letter-spacing:-0.601800px;}
.ls57_c00194{letter-spacing:-0.594720px;}
.ls58_c00194{letter-spacing:-0.580560px;}
.ls47_c00194{letter-spacing:-0.566400px;}
.ls54_c00194{letter-spacing:-0.559320px;}
.ls51_c00194{letter-spacing:-0.509760px;}
.ls4b_c00194{letter-spacing:-0.467280px;}
.ls44_c00194{letter-spacing:-0.453120px;}
.ls87_c00194{letter-spacing:-0.446040px;}
.ls79_c00194{letter-spacing:-0.431880px;}
.ls8c_c00194{letter-spacing:-0.424800px;}
.ls73_c00194{letter-spacing:-0.396480px;}
.ls6a_c00194{letter-spacing:-0.382320px;}
.ls7b_c00194{letter-spacing:-0.361080px;}
.ls45_c00194{letter-spacing:-0.354000px;}
.ls6d_c00194{letter-spacing:-0.332760px;}
.ls7d_c00194{letter-spacing:-0.318600px;}
.ls4e_c00194{letter-spacing:-0.304440px;}
.ls69_c00194{letter-spacing:-0.290280px;}
.ls70_c00194{letter-spacing:-0.276120px;}
.ls90_c00194{letter-spacing:-0.269040px;}
.ls4d_c00194{letter-spacing:-0.261960px;}
.ls81_c00194{letter-spacing:-0.247800px;}
.ls65_c00194{letter-spacing:-0.233640px;}
.ls3d_c00194{letter-spacing:-0.219480px;}
.ls77_c00194{letter-spacing:-0.205320px;}
.ls3c_c00194{letter-spacing:-0.198240px;}
.ls41_c00194{letter-spacing:-0.193200px;}
.ls50_c00194{letter-spacing:-0.191160px;}
.ls3a_c00194{letter-spacing:-0.184080px;}
.ls6c_c00194{letter-spacing:-0.162840px;}
.ls8d_c00194{letter-spacing:-0.155760px;}
.ls63_c00194{letter-spacing:-0.148680px;}
.ls74_c00194{letter-spacing:-0.141600px;}
.ls4a_c00194{letter-spacing:-0.127440px;}
.ls46_c00194{letter-spacing:-0.113280px;}
.ls5d_c00194{letter-spacing:-0.106200px;}
.ls78_c00194{letter-spacing:-0.099120px;}
.ls6e_c00194{letter-spacing:-0.092040px;}
.ls60_c00194{letter-spacing:-0.084960px;}
.ls66_c00194{letter-spacing:-0.077880px;}
.ls62_c00194{letter-spacing:-0.070800px;}
.ls68_c00194{letter-spacing:-0.056640px;}
.ls4f_c00194{letter-spacing:-0.042480px;}
.ls61_c00194{letter-spacing:-0.021240px;}
.ls3b_c00194{letter-spacing:-0.014160px;}
.ls85_c00194{letter-spacing:-0.007080px;}
.ls4c_c00194{letter-spacing:0.000000px;}
.ls20_c00194{letter-spacing:0.007080px;}
.ls36_c00194{letter-spacing:0.014160px;}
.ls2c_c00194{letter-spacing:0.021240px;}
.ls16_c00194{letter-spacing:0.028320px;}
.ls26_c00194{letter-spacing:0.035400px;}
.ls7f_c00194{letter-spacing:0.049560px;}
.ls12_c00194{letter-spacing:0.077880px;}
.ls14_c00194{letter-spacing:0.084960px;}
.ls2b_c00194{letter-spacing:0.092040px;}
.ls2e_c00194{letter-spacing:0.099120px;}
.lse_c00194{letter-spacing:0.113280px;}
.lsd_c00194{letter-spacing:0.120360px;}
.ls17_c00194{letter-spacing:0.127440px;}
.ls2d_c00194{letter-spacing:0.134520px;}
.ls9_c00194{letter-spacing:0.141600px;}
.ls27_c00194{letter-spacing:0.148680px;}
.ls1a_c00194{letter-spacing:0.162840px;}
.ls35_c00194{letter-spacing:0.169920px;}
.ls5_c00194{letter-spacing:0.177000px;}
.ls31_c00194{letter-spacing:0.198240px;}
.ls1_c00194{letter-spacing:0.233640px;}
.ls32_c00194{letter-spacing:0.240720px;}
.ls0_c00194{letter-spacing:0.247800px;}
.ls3_c00194{letter-spacing:0.269040px;}
.ls2f_c00194{letter-spacing:0.276120px;}
.ls8b_c00194{letter-spacing:0.283200px;}
.ls24_c00194{letter-spacing:0.297360px;}
.ls33_c00194{letter-spacing:0.311520px;}
.ls7a_c00194{letter-spacing:0.318600px;}
.ls1f_c00194{letter-spacing:0.332760px;}
.ls13_c00194{letter-spacing:0.339840px;}
.ls56_c00194{letter-spacing:0.407100px;}
.ls21_c00194{letter-spacing:0.446040px;}
.lsf_c00194{letter-spacing:0.467280px;}
.ls11_c00194{letter-spacing:0.474360px;}
.ls52_c00194{letter-spacing:0.476100px;}
.ls15_c00194{letter-spacing:0.502680px;}
.ls29_c00194{letter-spacing:0.516840px;}
.ls10_c00194{letter-spacing:0.523920px;}
.ls25_c00194{letter-spacing:0.565800px;}
.ls2_c00194{letter-spacing:0.608880px;}
.ls18_c00194{letter-spacing:0.623040px;}
.ls92_c00194{letter-spacing:0.658440px;}
.ls34_c00194{letter-spacing:0.724500px;}
.ls37_c00194{letter-spacing:0.750480px;}
.ls22_c00194{letter-spacing:0.764640px;}
.ls8_c00194{letter-spacing:0.813600px;}
.lsb_c00194{letter-spacing:0.828000px;}
.ls1c_c00194{letter-spacing:0.834900px;}
.ls4_c00194{letter-spacing:0.870840px;}
.ls19_c00194{letter-spacing:0.899160px;}
.ls23_c00194{letter-spacing:0.903900px;}
.ls42_c00194{letter-spacing:0.924600px;}
.ls2a_c00194{letter-spacing:1.012440px;}
.ls49_c00194{letter-spacing:1.028100px;}
.ls1b_c00194{letter-spacing:1.131600px;}
.ls6_c00194{letter-spacing:1.168080px;}
.lsc_c00194{letter-spacing:1.182360px;}
.ls1e_c00194{letter-spacing:1.189440px;}
.ls28_c00194{letter-spacing:1.239000px;}
.ls7c_c00194{letter-spacing:1.373520px;}
.lsa_c00194{letter-spacing:1.486800px;}
.ls30_c00194{letter-spacing:1.522200px;}
.ls38_c00194{letter-spacing:2.088600px;}
.ls7_c00194{letter-spacing:2.304000px;}
.ls1d_c00194{letter-spacing:2.761200px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{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__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00194{word-spacing:-17.140680px;}
.ws7_c00194{word-spacing:0.000000px;}
.ws5_c00194{word-spacing:0.014400px;}
.ws3_c00194{word-spacing:0.219000px;}
.ws4_c00194{word-spacing:9.218400px;}
.ws6_c00194{word-spacing:31.401000px;}
.ws0_c00194{word-spacing:124.806240px;}
.ws1_c00194{word-spacing:124.947840px;}
._6_c00194{margin-left:-14.142120px;}
._5_c00194{margin-left:-12.099720px;}
._9_c00194{margin-left:-9.275880px;}
._2_c00194{margin-left:-3.938160px;}
._0_c00194{margin-left:-2.200200px;}
._1_c00194{width:1.139880px;}
._4_c00194{width:2.265600px;}
._3_c00194{width:3.472920px;}
._7_c00194{width:4.545360px;}
._18_c00194{width:6.131280px;}
._8_c00194{width:7.140000px;}
._13_c00194{width:8.665920px;}
._12_c00194{width:10.443000px;}
._11_c00194{width:11.611200px;}
._15_c00194{width:13.728120px;}
._14_c00194{width:15.087480px;}
._a_c00194{width:16.758960px;}
._16_c00194{width:18.216240px;}
._c_c00194{width:19.427520px;}
._e_c00194{width:20.631120px;}
._b_c00194{width:21.735600px;}
._19_c00194{width:22.962360px;}
._f_c00194{width:24.072000px;}
._d_c00194{width:25.318080px;}
._1b_c00194{width:26.557080px;}
._10_c00194{width:28.086600px;}
._1a_c00194{width:29.233320px;}
._17_c00194{width:30.833400px;}
.fc0_c00194{color:transparent;}
.fs6_c00194{font-size:57.600000px;}
.fs2_c00194{font-size:69.000000px;}
.fs3_c00194{font-size:70.200000px;}
.fs1_c00194{font-size:70.800000px;}
.fs5_c00194{font-size:72.000000px;}
.fs0_c00194{font-size:73.200000px;}
.fs4_c00194{font-size:74.400000px;}
.y0_c00194{bottom:0.000000px;}
.y22_c00194{bottom:74.160006px;}
.y21_c00194{bottom:175.320006px;}
.y1f_c00194{bottom:206.276706px;}
.y20_c00194{bottom:206.280006px;}
.y1e_c00194{bottom:236.880006px;}
.y1d_c00194{bottom:236.888706px;}
.y1c_c00194{bottom:267.846006px;}
.y1b_c00194{bottom:299.180406px;}
.y1a_c00194{bottom:329.783706px;}
.y18_c00194{bottom:361.091706px;}
.y19_c00194{bottom:361.095006px;}
.y17_c00194{bottom:391.695006px;}
.y16_c00194{bottom:453.975006px;}
.y15_c00194{bottom:547.935006px;}
.y14_c00194{bottom:547.943706px;}
.y13_c00194{bottom:579.255006px;}
.y12_c00194{bottom:640.456506px;}
.y11_c00194{bottom:671.396106px;}
.y10_c00194{bottom:702.017106px;}
.yf_c00194{bottom:732.620406px;}
.ye_c00194{bottom:763.562706px;}
.yd_c00194{bottom:794.520006px;}
.yb_c00194{bottom:856.087506px;}
.yc_c00194{bottom:856.095006px;}
.y9_c00194{bottom:904.314006px;}
.ya_c00194{bottom:904.320006px;}
.y8_c00194{bottom:934.935006px;}
.y7_c00194{bottom:996.840006px;}
.y5_c00194{bottom:1027.794006px;}
.y6_c00194{bottom:1027.800006px;}
.y4_c00194{bottom:1058.415006px;}
.y3_c00194{bottom:1089.000006px;}
.y2_c00194{bottom:1120.680006px;}
.y1_c00194{bottom:1199.160006px;}
.h9_c00194{height:56.531250px;}
.h5_c00194{height:67.686035px;}
.h4_c00194{height:67.719727px;}
.h3_c00194{height:69.486328px;}
.h8_c00194{height:70.628906px;}
.h2_c00194{height:71.841797px;}
.h7_c00194{height:72.983203px;}
.h6_c00194{height:73.216406px;}
.h1_c00194{height:1263.000000px;}
.h0_c00194{height:1263.240006px;}
.w1_c00194{width:892.500000px;}
.w0_c00194{width:892.799998px;}
.x0_c00194{left:0.000000px;}
.x22_c00194{left:115.936799px;}
.x16_c00194{left:117.131399px;}
.x15_c00194{left:118.614599px;}
.xa_c00194{left:121.107598px;}
.x1_c00194{left:122.684999px;}
.x17_c00194{left:170.804998px;}
.xf_c00194{left:171.986398px;}
.xd_c00194{left:174.134998px;}
.x2_c00194{left:175.304998px;}
.x25_c00194{left:212.654999px;}
.x10_c00194{left:214.304998px;}
.x26_c00194{left:233.519999px;}
.x18_c00194{left:235.994999px;}
.x11_c00194{left:239.924998px;}
.x12_c00194{left:269.024999px;}
.xe_c00194{left:304.469998px;}
.x23_c00194{left:355.889999px;}
.x24_c00194{left:376.049999px;}
.x19_c00194{left:382.784999px;}
.x1a_c00194{left:408.719998px;}
.x2e_c00194{left:421.784998px;}
.x13_c00194{left:426.404998px;}
.x2b_c00194{left:427.514998px;}
.x1e_c00194{left:429.299998px;}
.x20_c00194{left:443.354998px;}
.x1b_c00194{left:445.604998px;}
.x14_c00194{left:454.214998px;}
.x27_c00194{left:460.274999px;}
.x21_c00194{left:464.909999px;}
.x1c_c00194{left:477.539999px;}
.x28_c00194{left:482.234998px;}
.x1f_c00194{left:492.809999px;}
.x3_c00194{left:589.214998px;}
.x4_c00194{left:611.564999px;}
.x1d_c00194{left:615.884999px;}
.x5_c00194{left:635.759999px;}
.x2c_c00194{left:637.169999px;}
.x8_c00194{left:654.224999px;}
.x2d_c00194{left:665.834998px;}
.x6_c00194{left:669.854998px;}
.xb_c00194{left:671.144999px;}
.x9_c00194{left:674.339998px;}
.x7_c00194{left:689.984998px;}
.xc_c00194{left:691.784999px;}
.x29_c00194{left:717.734998px;}
.x2a_c00194{left:740.489998px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls39_c00194{letter-spacing:-2.277333pt;}
.ls3f_c00194{letter-spacing:-2.202667pt;}
.ls48_c00194{letter-spacing:-2.184000pt;}
.ls40_c00194{letter-spacing:-2.146667pt;}
.ls75_c00194{letter-spacing:-2.114560pt;}
.ls89_c00194{letter-spacing:-2.070507pt;}
.ls8f_c00194{letter-spacing:-1.843947pt;}
.ls82_c00194{letter-spacing:-1.485227pt;}
.ls7e_c00194{letter-spacing:-1.466347pt;}
.ls5b_c00194{letter-spacing:-1.441173pt;}
.ls5c_c00194{letter-spacing:-1.409707pt;}
.ls43_c00194{letter-spacing:-1.302720pt;}
.ls3e_c00194{letter-spacing:-1.176853pt;}
.ls88_c00194{letter-spacing:-1.151680pt;}
.ls59_c00194{letter-spacing:-1.139093pt;}
.ls83_c00194{letter-spacing:-1.095040pt;}
.ls80_c00194{letter-spacing:-1.013227pt;}
.ls6b_c00194{letter-spacing:-0.988053pt;}
.ls71_c00194{letter-spacing:-0.912533pt;}
.ls8a_c00194{letter-spacing:-0.862187pt;}
.ls64_c00194{letter-spacing:-0.849600pt;}
.ls72_c00194{letter-spacing:-0.830720pt;}
.ls91_c00194{letter-spacing:-0.792960pt;}
.ls5a_c00194{letter-spacing:-0.767787pt;}
.ls76_c00194{letter-spacing:-0.742613pt;}
.ls93_c00194{letter-spacing:-0.732160pt;}
.ls5e_c00194{letter-spacing:-0.723733pt;}
.ls67_c00194{letter-spacing:-0.711147pt;}
.ls6f_c00194{letter-spacing:-0.698560pt;}
.ls53_c00194{letter-spacing:-0.679680pt;}
.ls5f_c00194{letter-spacing:-0.629333pt;}
.ls8e_c00194{letter-spacing:-0.623040pt;}
.ls86_c00194{letter-spacing:-0.572693pt;}
.ls55_c00194{letter-spacing:-0.547520pt;}
.ls84_c00194{letter-spacing:-0.534933pt;}
.ls57_c00194{letter-spacing:-0.528640pt;}
.ls58_c00194{letter-spacing:-0.516053pt;}
.ls47_c00194{letter-spacing:-0.503467pt;}
.ls54_c00194{letter-spacing:-0.497173pt;}
.ls51_c00194{letter-spacing:-0.453120pt;}
.ls4b_c00194{letter-spacing:-0.415360pt;}
.ls44_c00194{letter-spacing:-0.402773pt;}
.ls87_c00194{letter-spacing:-0.396480pt;}
.ls79_c00194{letter-spacing:-0.383893pt;}
.ls8c_c00194{letter-spacing:-0.377600pt;}
.ls73_c00194{letter-spacing:-0.352427pt;}
.ls6a_c00194{letter-spacing:-0.339840pt;}
.ls7b_c00194{letter-spacing:-0.320960pt;}
.ls45_c00194{letter-spacing:-0.314667pt;}
.ls6d_c00194{letter-spacing:-0.295787pt;}
.ls7d_c00194{letter-spacing:-0.283200pt;}
.ls4e_c00194{letter-spacing:-0.270613pt;}
.ls69_c00194{letter-spacing:-0.258027pt;}
.ls70_c00194{letter-spacing:-0.245440pt;}
.ls90_c00194{letter-spacing:-0.239147pt;}
.ls4d_c00194{letter-spacing:-0.232853pt;}
.ls81_c00194{letter-spacing:-0.220267pt;}
.ls65_c00194{letter-spacing:-0.207680pt;}
.ls3d_c00194{letter-spacing:-0.195093pt;}
.ls77_c00194{letter-spacing:-0.182507pt;}
.ls3c_c00194{letter-spacing:-0.176213pt;}
.ls41_c00194{letter-spacing:-0.171733pt;}
.ls50_c00194{letter-spacing:-0.169920pt;}
.ls3a_c00194{letter-spacing:-0.163627pt;}
.ls6c_c00194{letter-spacing:-0.144747pt;}
.ls8d_c00194{letter-spacing:-0.138453pt;}
.ls63_c00194{letter-spacing:-0.132160pt;}
.ls74_c00194{letter-spacing:-0.125867pt;}
.ls4a_c00194{letter-spacing:-0.113280pt;}
.ls46_c00194{letter-spacing:-0.100693pt;}
.ls5d_c00194{letter-spacing:-0.094400pt;}
.ls78_c00194{letter-spacing:-0.088107pt;}
.ls6e_c00194{letter-spacing:-0.081813pt;}
.ls60_c00194{letter-spacing:-0.075520pt;}
.ls66_c00194{letter-spacing:-0.069227pt;}
.ls62_c00194{letter-spacing:-0.062933pt;}
.ls68_c00194{letter-spacing:-0.050347pt;}
.ls4f_c00194{letter-spacing:-0.037760pt;}
.ls61_c00194{letter-spacing:-0.018880pt;}
.ls3b_c00194{letter-spacing:-0.012587pt;}
.ls85_c00194{letter-spacing:-0.006293pt;}
.ls4c_c00194{letter-spacing:0.000000pt;}
.ls20_c00194{letter-spacing:0.006293pt;}
.ls36_c00194{letter-spacing:0.012587pt;}
.ls2c_c00194{letter-spacing:0.018880pt;}
.ls16_c00194{letter-spacing:0.025173pt;}
.ls26_c00194{letter-spacing:0.031467pt;}
.ls7f_c00194{letter-spacing:0.044053pt;}
.ls12_c00194{letter-spacing:0.069227pt;}
.ls14_c00194{letter-spacing:0.075520pt;}
.ls2b_c00194{letter-spacing:0.081813pt;}
.ls2e_c00194{letter-spacing:0.088107pt;}
.lse_c00194{letter-spacing:0.100693pt;}
.lsd_c00194{letter-spacing:0.106987pt;}
.ls17_c00194{letter-spacing:0.113280pt;}
.ls2d_c00194{letter-spacing:0.119573pt;}
.ls9_c00194{letter-spacing:0.125867pt;}
.ls27_c00194{letter-spacing:0.132160pt;}
.ls1a_c00194{letter-spacing:0.144747pt;}
.ls35_c00194{letter-spacing:0.151040pt;}
.ls5_c00194{letter-spacing:0.157333pt;}
.ls31_c00194{letter-spacing:0.176213pt;}
.ls1_c00194{letter-spacing:0.207680pt;}
.ls32_c00194{letter-spacing:0.213973pt;}
.ls0_c00194{letter-spacing:0.220267pt;}
.ls3_c00194{letter-spacing:0.239147pt;}
.ls2f_c00194{letter-spacing:0.245440pt;}
.ls8b_c00194{letter-spacing:0.251733pt;}
.ls24_c00194{letter-spacing:0.264320pt;}
.ls33_c00194{letter-spacing:0.276907pt;}
.ls7a_c00194{letter-spacing:0.283200pt;}
.ls1f_c00194{letter-spacing:0.295787pt;}
.ls13_c00194{letter-spacing:0.302080pt;}
.ls56_c00194{letter-spacing:0.361867pt;}
.ls21_c00194{letter-spacing:0.396480pt;}
.lsf_c00194{letter-spacing:0.415360pt;}
.ls11_c00194{letter-spacing:0.421653pt;}
.ls52_c00194{letter-spacing:0.423200pt;}
.ls15_c00194{letter-spacing:0.446827pt;}
.ls29_c00194{letter-spacing:0.459413pt;}
.ls10_c00194{letter-spacing:0.465707pt;}
.ls25_c00194{letter-spacing:0.502933pt;}
.ls2_c00194{letter-spacing:0.541227pt;}
.ls18_c00194{letter-spacing:0.553813pt;}
.ls92_c00194{letter-spacing:0.585280pt;}
.ls34_c00194{letter-spacing:0.644000pt;}
.ls37_c00194{letter-spacing:0.667093pt;}
.ls22_c00194{letter-spacing:0.679680pt;}
.ls8_c00194{letter-spacing:0.723200pt;}
.lsb_c00194{letter-spacing:0.736000pt;}
.ls1c_c00194{letter-spacing:0.742133pt;}
.ls4_c00194{letter-spacing:0.774080pt;}
.ls19_c00194{letter-spacing:0.799253pt;}
.ls23_c00194{letter-spacing:0.803467pt;}
.ls42_c00194{letter-spacing:0.821867pt;}
.ls2a_c00194{letter-spacing:0.899947pt;}
.ls49_c00194{letter-spacing:0.913867pt;}
.ls1b_c00194{letter-spacing:1.005867pt;}
.ls6_c00194{letter-spacing:1.038293pt;}
.lsc_c00194{letter-spacing:1.050987pt;}
.ls1e_c00194{letter-spacing:1.057280pt;}
.ls28_c00194{letter-spacing:1.101333pt;}
.ls7c_c00194{letter-spacing:1.220907pt;}
.lsa_c00194{letter-spacing:1.321600pt;}
.ls30_c00194{letter-spacing:1.353067pt;}
.ls38_c00194{letter-spacing:1.856533pt;}
.ls7_c00194{letter-spacing:2.048000pt;}
.ls1d_c00194{letter-spacing:2.454400pt;}
.ws2_c00194{word-spacing:-15.236160pt;}
.ws7_c00194{word-spacing:0.000000pt;}
.ws5_c00194{word-spacing:0.012800pt;}
.ws3_c00194{word-spacing:0.194667pt;}
.ws4_c00194{word-spacing:8.194133pt;}
.ws6_c00194{word-spacing:27.912000pt;}
.ws0_c00194{word-spacing:110.938880pt;}
.ws1_c00194{word-spacing:111.064747pt;}
._6_c00194{margin-left:-12.570773pt;}
._5_c00194{margin-left:-10.755307pt;}
._9_c00194{margin-left:-8.245227pt;}
._2_c00194{margin-left:-3.500587pt;}
._0_c00194{margin-left:-1.955733pt;}
._1_c00194{width:1.013227pt;}
._4_c00194{width:2.013867pt;}
._3_c00194{width:3.087040pt;}
._7_c00194{width:4.040320pt;}
._18_c00194{width:5.450027pt;}
._8_c00194{width:6.346667pt;}
._13_c00194{width:7.703040pt;}
._12_c00194{width:9.282667pt;}
._11_c00194{width:10.321067pt;}
._15_c00194{width:12.202773pt;}
._14_c00194{width:13.411093pt;}
._a_c00194{width:14.896853pt;}
._16_c00194{width:16.192213pt;}
._c_c00194{width:17.268907pt;}
._e_c00194{width:18.338773pt;}
._b_c00194{width:19.320533pt;}
._19_c00194{width:20.410987pt;}
._f_c00194{width:21.397333pt;}
._d_c00194{width:22.504960pt;}
._1b_c00194{width:23.606293pt;}
._10_c00194{width:24.965867pt;}
._1a_c00194{width:25.985173pt;}
._17_c00194{width:27.407467pt;}
.fs6_c00194{font-size:51.200000pt;}
.fs2_c00194{font-size:61.333333pt;}
.fs3_c00194{font-size:62.400000pt;}
.fs1_c00194{font-size:62.933333pt;}
.fs5_c00194{font-size:64.000000pt;}
.fs0_c00194{font-size:65.066667pt;}
.fs4_c00194{font-size:66.133333pt;}
.y0_c00194{bottom:0.000000pt;}
.y22_c00194{bottom:65.920005pt;}
.y21_c00194{bottom:155.840005pt;}
.y1f_c00194{bottom:183.357072pt;}
.y20_c00194{bottom:183.360005pt;}
.y1e_c00194{bottom:210.560005pt;}
.y1d_c00194{bottom:210.567739pt;}
.y1c_c00194{bottom:238.085339pt;}
.y1b_c00194{bottom:265.938139pt;}
.y1a_c00194{bottom:293.141072pt;}
.y18_c00194{bottom:320.970405pt;}
.y19_c00194{bottom:320.973339pt;}
.y17_c00194{bottom:348.173339pt;}
.y16_c00194{bottom:403.533339pt;}
.y15_c00194{bottom:487.053339pt;}
.y14_c00194{bottom:487.061072pt;}
.y13_c00194{bottom:514.893339pt;}
.y12_c00194{bottom:569.294672pt;}
.y11_c00194{bottom:596.796539pt;}
.y10_c00194{bottom:624.015205pt;}
.yf_c00194{bottom:651.218139pt;}
.ye_c00194{bottom:678.722405pt;}
.yd_c00194{bottom:706.240005pt;}
.yb_c00194{bottom:760.966672pt;}
.yc_c00194{bottom:760.973339pt;}
.y9_c00194{bottom:803.834672pt;}
.ya_c00194{bottom:803.840005pt;}
.y8_c00194{bottom:831.053339pt;}
.y7_c00194{bottom:886.080005pt;}
.y5_c00194{bottom:913.594672pt;}
.y6_c00194{bottom:913.600005pt;}
.y4_c00194{bottom:940.813339pt;}
.y3_c00194{bottom:968.000005pt;}
.y2_c00194{bottom:996.160005pt;}
.y1_c00194{bottom:1065.920005pt;}
.h9_c00194{height:50.250000pt;}
.h5_c00194{height:60.165365pt;}
.h4_c00194{height:60.195312pt;}
.h3_c00194{height:61.765625pt;}
.h8_c00194{height:62.781250pt;}
.h2_c00194{height:63.859375pt;}
.h7_c00194{height:64.873958pt;}
.h6_c00194{height:65.081250pt;}
.h1_c00194{height:1122.666667pt;}
.h0_c00194{height:1122.880005pt;}
.w1_c00194{width:793.333333pt;}
.w0_c00194{width:793.599999pt;}
.x0_c00194{left:0.000000pt;}
.x22_c00194{left:103.054932pt;}
.x16_c00194{left:104.116799pt;}
.x15_c00194{left:105.435199pt;}
.xa_c00194{left:107.651199pt;}
.x1_c00194{left:109.053332pt;}
.x17_c00194{left:151.826665pt;}
.xf_c00194{left:152.876799pt;}
.xd_c00194{left:154.786665pt;}
.x2_c00194{left:155.826665pt;}
.x25_c00194{left:189.026665pt;}
.x10_c00194{left:190.493332pt;}
.x26_c00194{left:207.573332pt;}
.x18_c00194{left:209.773332pt;}
.x11_c00194{left:213.266665pt;}
.x12_c00194{left:239.133332pt;}
.xe_c00194{left:270.639999pt;}
.x23_c00194{left:316.346665pt;}
.x24_c00194{left:334.266665pt;}
.x19_c00194{left:340.253332pt;}
.x1a_c00194{left:363.306665pt;}
.x2e_c00194{left:374.919999pt;}
.x13_c00194{left:379.026665pt;}
.x2b_c00194{left:380.013332pt;}
.x1e_c00194{left:381.599999pt;}
.x20_c00194{left:394.093332pt;}
.x1b_c00194{left:396.093332pt;}
.x14_c00194{left:403.746665pt;}
.x27_c00194{left:409.133332pt;}
.x21_c00194{left:413.253332pt;}
.x1c_c00194{left:424.479999pt;}
.x28_c00194{left:428.653332pt;}
.x1f_c00194{left:438.053332pt;}
.x3_c00194{left:523.746665pt;}
.x4_c00194{left:543.613332pt;}
.x1d_c00194{left:547.453332pt;}
.x5_c00194{left:565.119999pt;}
.x2c_c00194{left:566.373332pt;}
.x8_c00194{left:581.533332pt;}
.x2d_c00194{left:591.853332pt;}
.x6_c00194{left:595.426665pt;}
.xb_c00194{left:596.573332pt;}
.x9_c00194{left:599.413332pt;}
.x7_c00194{left:613.319999pt;}
.xc_c00194{left:614.919999pt;}
.x29_c00194{left:637.986665pt;}
.x2a_c00194{left:658.213332pt;}
}





/* 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_c00195 {
    display:none;
  }
  .loading-indicator_c00195.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00195 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_c00195 { 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_c00195" -> "#page-container .classname_c00195")
 */
.pf_c00195 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00195 { /* 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_c00195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00195 { /* 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_c00195 { /* 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_c00195 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00195 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00195 {overflow:visible;}
  }
}
.c_c00195 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00195 { /* 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_c00195:after { /* webkit #35443 */
  content: '';
}
.t_c00195:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00195 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 */
}
.__c00195 { /* 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_c00195 { /* info for Javascript */
  display:none;
}
.l_c00195 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00195 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00195 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00195: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_c00195 {
    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_c00195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00195.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_c00195 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00195;src:url('chunks/assets/font_ddf68cfe6a30e18425586118.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.284668;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_c00195;src:url('chunks/assets/font_ac15a47da97acec179775436.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.284180;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_c00195;src:url('chunks/assets/font_6923c10a3b84a06c8d38ead0.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;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;}
.me_c00195{transform:matrix(0.196089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196089,0.000000,0.000000,0.250000,0,0);}
.m9_c00195{transform:matrix(0.198852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198852,0.000000,0.000000,0.250000,0,0);}
.mb_c00195{transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);}
.mc_c00195{transform:matrix(0.227821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227821,0.000000,0.000000,0.250000,0,0);}
.ma_c00195{transform:matrix(0.230899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230899,0.000000,0.000000,0.250000,0,0);}
.m7_c00195{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m8_c00195{transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);}
.m6_c00195{transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);}
.m2_c00195{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m5_c00195{transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);}
.m4_c00195{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m3_c00195{transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);}
.m1_c00195{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);}
.m0_c00195{transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);}
.md_c00195{transform:matrix(0.252972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252972,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.v2_c00195{vertical-align:24.458400px;}
.v1_c00195{vertical-align:25.920000px;}
.ls86_c00195{letter-spacing:-2.478000px;}
.ls62_c00195{letter-spacing:-2.436000px;}
.ls4d_c00195{letter-spacing:-2.373000px;}
.ls71_c00195{letter-spacing:-2.268960px;}
.ls66_c00195{letter-spacing:-2.234160px;}
.ls79_c00195{letter-spacing:-2.176380px;}
.ls69_c00195{letter-spacing:-2.136720px;}
.ls91_c00195{letter-spacing:-2.046240px;}
.ls72_c00195{letter-spacing:-1.983600px;}
.ls9c_c00195{letter-spacing:-1.972980px;}
.ls7d_c00195{letter-spacing:-1.774800px;}
.ls4b_c00195{letter-spacing:-1.767840px;}
.ls73_c00195{letter-spacing:-1.691280px;}
.ls47_c00195{letter-spacing:-1.649520px;}
.ls85_c00195{letter-spacing:-1.552080px;}
.ls7e_c00195{letter-spacing:-1.531200px;}
.ls5e_c00195{letter-spacing:-1.426800px;}
.ls64_c00195{letter-spacing:-1.412880px;}
.ls6a_c00195{letter-spacing:-1.294560px;}
.ls5b_c00195{letter-spacing:-1.266720px;}
.ls59_c00195{letter-spacing:-1.218000px;}
.ls6d_c00195{letter-spacing:-1.190160px;}
.ls89_c00195{letter-spacing:-1.169280px;}
.ls78_c00195{letter-spacing:-1.099680px;}
.ls6f_c00195{letter-spacing:-1.023120px;}
.ls97_c00195{letter-spacing:-0.981360px;}
.ls80_c00195{letter-spacing:-0.897840px;}
.ls8e_c00195{letter-spacing:-0.883920px;}
.ls92_c00195{letter-spacing:-0.870000px;}
.ls6b_c00195{letter-spacing:-0.842160px;}
.ls68_c00195{letter-spacing:-0.828240px;}
.ls8d_c00195{letter-spacing:-0.793440px;}
.ls61_c00195{letter-spacing:-0.758640px;}
.ls8b_c00195{letter-spacing:-0.730800px;}
.ls88_c00195{letter-spacing:-0.723840px;}
.ls84_c00195{letter-spacing:-0.675120px;}
.ls6e_c00195{letter-spacing:-0.668160px;}
.ls5a_c00195{letter-spacing:-0.612480px;}
.ls7b_c00195{letter-spacing:-0.598560px;}
.ls53_c00195{letter-spacing:-0.570720px;}
.ls95_c00195{letter-spacing:-0.563760px;}
.ls8f_c00195{letter-spacing:-0.535920px;}
.ls5c_c00195{letter-spacing:-0.508080px;}
.ls70_c00195{letter-spacing:-0.459360px;}
.ls63_c00195{letter-spacing:-0.452400px;}
.ls4a_c00195{letter-spacing:-0.438480px;}
.ls96_c00195{letter-spacing:-0.431520px;}
.ls44_c00195{letter-spacing:-0.417600px;}
.ls93_c00195{letter-spacing:-0.382800px;}
.ls83_c00195{letter-spacing:-0.334080px;}
.ls9b_c00195{letter-spacing:-0.327120px;}
.ls74_c00195{letter-spacing:-0.320160px;}
.ls7f_c00195{letter-spacing:-0.313200px;}
.ls4e_c00195{letter-spacing:-0.292320px;}
.ls77_c00195{letter-spacing:-0.285360px;}
.ls9a_c00195{letter-spacing:-0.264480px;}
.ls55_c00195{letter-spacing:-0.243600px;}
.ls52_c00195{letter-spacing:-0.229680px;}
.ls5d_c00195{letter-spacing:-0.222720px;}
.ls82_c00195{letter-spacing:-0.215760px;}
.ls7c_c00195{letter-spacing:-0.208800px;}
.ls7a_c00195{letter-spacing:-0.194880px;}
.ls51_c00195{letter-spacing:-0.187920px;}
.ls76_c00195{letter-spacing:-0.180960px;}
.ls50_c00195{letter-spacing:-0.174000px;}
.ls8c_c00195{letter-spacing:-0.160080px;}
.ls60_c00195{letter-spacing:-0.153120px;}
.ls8a_c00195{letter-spacing:-0.146160px;}
.ls58_c00195{letter-spacing:-0.132240px;}
.ls90_c00195{letter-spacing:-0.125280px;}
.ls56_c00195{letter-spacing:-0.116280px;}
.ls99_c00195{letter-spacing:-0.111360px;}
.ls98_c00195{letter-spacing:-0.104400px;}
.ls6c_c00195{letter-spacing:-0.097440px;}
.ls48_c00195{letter-spacing:-0.090480px;}
.ls4f_c00195{letter-spacing:-0.083520px;}
.ls65_c00195{letter-spacing:-0.069600px;}
.ls5f_c00195{letter-spacing:-0.062640px;}
.ls49_c00195{letter-spacing:-0.055680px;}
.ls46_c00195{letter-spacing:-0.048720px;}
.ls54_c00195{letter-spacing:-0.041760px;}
.ls43_c00195{letter-spacing:-0.027840px;}
.ls81_c00195{letter-spacing:-0.006960px;}
.ls45_c00195{letter-spacing:0.000000px;}
.ls1e_c00195{letter-spacing:0.013920px;}
.ls36_c00195{letter-spacing:0.020880px;}
.ls13_c00195{letter-spacing:0.027840px;}
.ls3b_c00195{letter-spacing:0.034800px;}
.ls2c_c00195{letter-spacing:0.041760px;}
.lsc_c00195{letter-spacing:0.055680px;}
.ls35_c00195{letter-spacing:0.076560px;}
.lsf_c00195{letter-spacing:0.090480px;}
.ls19_c00195{letter-spacing:0.097440px;}
.ls40_c00195{letter-spacing:0.111360px;}
.ls33_c00195{letter-spacing:0.132240px;}
.ls16_c00195{letter-spacing:0.139200px;}
.ls28_c00195{letter-spacing:0.146160px;}
.ls5_c00195{letter-spacing:0.153120px;}
.ls8_c00195{letter-spacing:0.160080px;}
.ls3e_c00195{letter-spacing:0.174000px;}
.ls67_c00195{letter-spacing:0.180960px;}
.ls24_c00195{letter-spacing:0.215760px;}
.ls6_c00195{letter-spacing:0.222720px;}
.ls11_c00195{letter-spacing:0.229680px;}
.ls25_c00195{letter-spacing:0.243600px;}
.ls1b_c00195{letter-spacing:0.257520px;}
.ls2f_c00195{letter-spacing:0.264480px;}
.ls2b_c00195{letter-spacing:0.271440px;}
.ls1d_c00195{letter-spacing:0.273780px;}
.ls2_c00195{letter-spacing:0.278400px;}
.ls2d_c00195{letter-spacing:0.285360px;}
.lsd_c00195{letter-spacing:0.294120px;}
.ls41_c00195{letter-spacing:0.313200px;}
.ls27_c00195{letter-spacing:0.320160px;}
.ls39_c00195{letter-spacing:0.334080px;}
.ls18_c00195{letter-spacing:0.348000px;}
.ls87_c00195{letter-spacing:0.354960px;}
.ls4_c00195{letter-spacing:0.361920px;}
.ls3a_c00195{letter-spacing:0.403680px;}
.ls2a_c00195{letter-spacing:0.410640px;}
.ls0_c00195{letter-spacing:0.424560px;}
.ls7_c00195{letter-spacing:0.459360px;}
.lse_c00195{letter-spacing:0.478800px;}
.ls30_c00195{letter-spacing:0.508080px;}
.ls32_c00195{letter-spacing:0.515040px;}
.ls3d_c00195{letter-spacing:0.528960px;}
.ls1a_c00195{letter-spacing:0.542880px;}
.ls10_c00195{letter-spacing:0.556800px;}
.lsa_c00195{letter-spacing:0.598560px;}
.ls22_c00195{letter-spacing:0.656640px;}
.ls37_c00195{letter-spacing:0.663480px;}
.ls26_c00195{letter-spacing:0.668160px;}
.ls3f_c00195{letter-spacing:0.696000px;}
.ls34_c00195{letter-spacing:0.730800px;}
.ls15_c00195{letter-spacing:0.758640px;}
.ls29_c00195{letter-spacing:0.786480px;}
.ls9_c00195{letter-spacing:0.800280px;}
.lsb_c00195{letter-spacing:0.828240px;}
.ls23_c00195{letter-spacing:0.861840px;}
.ls3c_c00195{letter-spacing:0.883920px;}
.ls31_c00195{letter-spacing:0.950760px;}
.ls75_c00195{letter-spacing:1.002240px;}
.ls2e_c00195{letter-spacing:1.023120px;}
.ls1f_c00195{letter-spacing:1.073880px;}
.ls20_c00195{letter-spacing:1.217520px;}
.ls21_c00195{letter-spacing:1.313280px;}
.ls17_c00195{letter-spacing:1.398960px;}
.ls4c_c00195{letter-spacing:1.607760px;}
.ls3_c00195{letter-spacing:1.642560px;}
.ls1_c00195{letter-spacing:1.983600px;}
.ls12_c00195{letter-spacing:2.072520px;}
.ls14_c00195{letter-spacing:2.442960px;}
.ls1c_c00195{letter-spacing:2.836080px;}
.ls42_c00195{letter-spacing:2.910000px;}
.ls38_c00195{letter-spacing:3.215520px;}
.ls57_c00195{letter-spacing:3.324240px;}
.ls94_c00195{letter-spacing:3.480000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{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__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00195{word-spacing:-17.560080px;}
.ws7_c00195{word-spacing:-17.072880px;}
.ws8_c00195{word-spacing:0.000000px;}
.ws0_c00195{word-spacing:0.638880px;}
.ws5_c00195{word-spacing:3.017760px;}
.ws6_c00195{word-spacing:4.377600px;}
.ws2_c00195{word-spacing:5.728200px;}
.ws4_c00195{word-spacing:13.257840px;}
.ws3_c00195{word-spacing:16.782000px;}
._c_c00195{margin-left:-6.935760px;}
._18_c00195{margin-left:-4.245600px;}
._d_c00195{margin-left:-2.229840px;}
._b_c00195{margin-left:-1.155360px;}
._4_c00195{width:1.572960px;}
._0_c00195{width:2.770080px;}
._6_c00195{width:4.057680px;}
._3_c00195{width:5.498400px;}
._1_c00195{width:6.507600px;}
._17_c00195{width:7.516800px;}
._2_c00195{width:8.526000px;}
._9_c00195{width:10.396680px;}
._5_c00195{width:11.936400px;}
._8_c00195{width:13.831080px;}
._7_c00195{width:15.414750px;}
._e_c00195{width:16.502160px;}
._10_c00195{width:17.874840px;}
._a_c00195{width:19.436250px;}
._f_c00195{width:20.862240px;}
._15_c00195{width:24.507600px;}
._12_c00195{width:26.265600px;}
._14_c00195{width:28.142640px;}
._13_c00195{width:29.928000px;}
._11_c00195{width:31.024320px;}
._16_c00195{width:32.259600px;}
.fc0_c00195{color:transparent;}
.fs2_c00195{font-size:32.400600px;}
.fs0_c00195{font-size:58.200000px;}
.fs8_c00195{font-size:66.000000px;}
.fs4_c00195{font-size:67.800000px;}
.fs3_c00195{font-size:68.400000px;}
.fs1_c00195{font-size:69.600000px;}
.fs5_c00195{font-size:70.200000px;}
.fs6_c00195{font-size:70.800000px;}
.fs7_c00195{font-size:76.800000px;}
.y0_c00195{bottom:0.000000px;}
.y1f_c00195{bottom:67.320015px;}
.y1e_c00195{bottom:115.565415px;}
.y1d_c00195{bottom:146.527215px;}
.y1c_c00195{bottom:176.403015px;}
.y1b_c00195{bottom:207.375015px;}
.y1a_c00195{bottom:270.000015px;}
.y19_c00195{bottom:270.005415px;}
.y18_c00195{bottom:303.135015px;}
.y17_c00195{bottom:303.141615px;}
.y16_c00195{bottom:335.169615px;}
.y15_c00195{bottom:366.855015px;}
.y14_c00195{bottom:430.197615px;}
.y13_c00195{bottom:460.804215px;}
.y12_c00195{bottom:491.393415px;}
.y10_c00195{bottom:521.993415px;}
.y11_c00195{bottom:522.000015px;}
.yf_c00195{bottom:552.600015px;}
.ye_c00195{bottom:614.175015px;}
.y21_c00195{bottom:615.255015px;}
.y20_c00195{bottom:618.840015px;}
.yd_c00195{bottom:645.135015px;}
.yc_c00195{bottom:675.735015px;}
.yb_c00195{bottom:726.844815px;}
.ya_c00195{bottom:775.095015px;}
.y9_c00195{bottom:805.695015px;}
.y8_c00195{bottom:867.608415px;}
.y7_c00195{bottom:898.215015px;}
.y6_c00195{bottom:929.175015px;}
.y5_c00195{bottom:991.093815px;}
.y4_c00195{bottom:1021.335015px;}
.y3_c00195{bottom:1082.535015px;}
.y2_c00195{bottom:1113.855015px;}
.y1_c00195{bottom:1189.440015px;}
.h2_c00195{height:57.120117px;}
.h3_c00195{height:68.308594px;}
.h7_c00195{height:68.330194px;}
.h9_c00195{height:68.835938px;}
.h5_c00195{height:68.863184px;}
.h6_c00195{height:69.486328px;}
.h4_c00195{height:70.713281px;}
.h8_c00195{height:80.100000px;}
.h1_c00195{height:1263.000000px;}
.h0_c00195{height:1263.240015px;}
.w1_c00195{width:892.500000px;}
.w0_c00195{width:892.800000px;}
.x0_c00195{left:0.000000px;}
.x22_c00195{left:123.534600px;}
.x21_c00195{left:124.702200px;}
.x10_c00195{left:125.966400px;}
.x1_c00195{left:127.365000px;}
.x7_c00195{left:178.470000px;}
.x2_c00195{left:180.165000px;}
.x1d_c00195{left:211.515000px;}
.x1e_c00195{left:243.900000px;}
.x8_c00195{left:246.045000px;}
.x17_c00195{left:250.035000px;}
.x9_c00195{left:273.495000px;}
.x18_c00195{left:284.250000px;}
.x5_c00195{left:342.990000px;}
.x11_c00195{left:358.065000px;}
.x3_c00195{left:373.500000px;}
.x12_c00195{left:376.380000px;}
.x4_c00195{left:397.770000px;}
.x19_c00195{left:414.975000px;}
.x23_c00195{left:427.170000px;}
.x13_c00195{left:436.935000px;}
.x1f_c00195{left:447.375000px;}
.x1a_c00195{left:448.770000px;}
.x14_c00195{left:469.260000px;}
.x20_c00195{left:486.630000px;}
.xc_c00195{left:526.125000px;}
.xa_c00195{left:549.165000px;}
.xe_c00195{left:553.125000px;}
.xd_c00195{left:554.520000px;}
.x6_c00195{left:555.600000px;}
.xb_c00195{left:576.615000px;}
.xf_c00195{left:580.845000px;}
.x1b_c00195{left:584.175000px;}
.x1c_c00195{left:617.580000px;}
.x15_c00195{left:624.495000px;}
.x16_c00195{left:657.480000px;}
.x25_c00195{left:855.495000px;}
.x24_c00195{left:856.545000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.v2_c00195{vertical-align:21.740800pt;}
.v1_c00195{vertical-align:23.040000pt;}
.ls86_c00195{letter-spacing:-2.202667pt;}
.ls62_c00195{letter-spacing:-2.165333pt;}
.ls4d_c00195{letter-spacing:-2.109333pt;}
.ls71_c00195{letter-spacing:-2.016853pt;}
.ls66_c00195{letter-spacing:-1.985920pt;}
.ls79_c00195{letter-spacing:-1.934560pt;}
.ls69_c00195{letter-spacing:-1.899307pt;}
.ls91_c00195{letter-spacing:-1.818880pt;}
.ls72_c00195{letter-spacing:-1.763200pt;}
.ls9c_c00195{letter-spacing:-1.753760pt;}
.ls7d_c00195{letter-spacing:-1.577600pt;}
.ls4b_c00195{letter-spacing:-1.571413pt;}
.ls73_c00195{letter-spacing:-1.503360pt;}
.ls47_c00195{letter-spacing:-1.466240pt;}
.ls85_c00195{letter-spacing:-1.379627pt;}
.ls7e_c00195{letter-spacing:-1.361067pt;}
.ls5e_c00195{letter-spacing:-1.268267pt;}
.ls64_c00195{letter-spacing:-1.255893pt;}
.ls6a_c00195{letter-spacing:-1.150720pt;}
.ls5b_c00195{letter-spacing:-1.125973pt;}
.ls59_c00195{letter-spacing:-1.082667pt;}
.ls6d_c00195{letter-spacing:-1.057920pt;}
.ls89_c00195{letter-spacing:-1.039360pt;}
.ls78_c00195{letter-spacing:-0.977493pt;}
.ls6f_c00195{letter-spacing:-0.909440pt;}
.ls97_c00195{letter-spacing:-0.872320pt;}
.ls80_c00195{letter-spacing:-0.798080pt;}
.ls8e_c00195{letter-spacing:-0.785707pt;}
.ls92_c00195{letter-spacing:-0.773333pt;}
.ls6b_c00195{letter-spacing:-0.748587pt;}
.ls68_c00195{letter-spacing:-0.736213pt;}
.ls8d_c00195{letter-spacing:-0.705280pt;}
.ls61_c00195{letter-spacing:-0.674347pt;}
.ls8b_c00195{letter-spacing:-0.649600pt;}
.ls88_c00195{letter-spacing:-0.643413pt;}
.ls84_c00195{letter-spacing:-0.600107pt;}
.ls6e_c00195{letter-spacing:-0.593920pt;}
.ls5a_c00195{letter-spacing:-0.544427pt;}
.ls7b_c00195{letter-spacing:-0.532053pt;}
.ls53_c00195{letter-spacing:-0.507307pt;}
.ls95_c00195{letter-spacing:-0.501120pt;}
.ls8f_c00195{letter-spacing:-0.476373pt;}
.ls5c_c00195{letter-spacing:-0.451627pt;}
.ls70_c00195{letter-spacing:-0.408320pt;}
.ls63_c00195{letter-spacing:-0.402133pt;}
.ls4a_c00195{letter-spacing:-0.389760pt;}
.ls96_c00195{letter-spacing:-0.383573pt;}
.ls44_c00195{letter-spacing:-0.371200pt;}
.ls93_c00195{letter-spacing:-0.340267pt;}
.ls83_c00195{letter-spacing:-0.296960pt;}
.ls9b_c00195{letter-spacing:-0.290773pt;}
.ls74_c00195{letter-spacing:-0.284587pt;}
.ls7f_c00195{letter-spacing:-0.278400pt;}
.ls4e_c00195{letter-spacing:-0.259840pt;}
.ls77_c00195{letter-spacing:-0.253653pt;}
.ls9a_c00195{letter-spacing:-0.235093pt;}
.ls55_c00195{letter-spacing:-0.216533pt;}
.ls52_c00195{letter-spacing:-0.204160pt;}
.ls5d_c00195{letter-spacing:-0.197973pt;}
.ls82_c00195{letter-spacing:-0.191787pt;}
.ls7c_c00195{letter-spacing:-0.185600pt;}
.ls7a_c00195{letter-spacing:-0.173227pt;}
.ls51_c00195{letter-spacing:-0.167040pt;}
.ls76_c00195{letter-spacing:-0.160853pt;}
.ls50_c00195{letter-spacing:-0.154667pt;}
.ls8c_c00195{letter-spacing:-0.142293pt;}
.ls60_c00195{letter-spacing:-0.136107pt;}
.ls8a_c00195{letter-spacing:-0.129920pt;}
.ls58_c00195{letter-spacing:-0.117547pt;}
.ls90_c00195{letter-spacing:-0.111360pt;}
.ls56_c00195{letter-spacing:-0.103360pt;}
.ls99_c00195{letter-spacing:-0.098987pt;}
.ls98_c00195{letter-spacing:-0.092800pt;}
.ls6c_c00195{letter-spacing:-0.086613pt;}
.ls48_c00195{letter-spacing:-0.080427pt;}
.ls4f_c00195{letter-spacing:-0.074240pt;}
.ls65_c00195{letter-spacing:-0.061867pt;}
.ls5f_c00195{letter-spacing:-0.055680pt;}
.ls49_c00195{letter-spacing:-0.049493pt;}
.ls46_c00195{letter-spacing:-0.043307pt;}
.ls54_c00195{letter-spacing:-0.037120pt;}
.ls43_c00195{letter-spacing:-0.024747pt;}
.ls81_c00195{letter-spacing:-0.006187pt;}
.ls45_c00195{letter-spacing:0.000000pt;}
.ls1e_c00195{letter-spacing:0.012373pt;}
.ls36_c00195{letter-spacing:0.018560pt;}
.ls13_c00195{letter-spacing:0.024747pt;}
.ls3b_c00195{letter-spacing:0.030933pt;}
.ls2c_c00195{letter-spacing:0.037120pt;}
.lsc_c00195{letter-spacing:0.049493pt;}
.ls35_c00195{letter-spacing:0.068053pt;}
.lsf_c00195{letter-spacing:0.080427pt;}
.ls19_c00195{letter-spacing:0.086613pt;}
.ls40_c00195{letter-spacing:0.098987pt;}
.ls33_c00195{letter-spacing:0.117547pt;}
.ls16_c00195{letter-spacing:0.123733pt;}
.ls28_c00195{letter-spacing:0.129920pt;}
.ls5_c00195{letter-spacing:0.136107pt;}
.ls8_c00195{letter-spacing:0.142293pt;}
.ls3e_c00195{letter-spacing:0.154667pt;}
.ls67_c00195{letter-spacing:0.160853pt;}
.ls24_c00195{letter-spacing:0.191787pt;}
.ls6_c00195{letter-spacing:0.197973pt;}
.ls11_c00195{letter-spacing:0.204160pt;}
.ls25_c00195{letter-spacing:0.216533pt;}
.ls1b_c00195{letter-spacing:0.228907pt;}
.ls2f_c00195{letter-spacing:0.235093pt;}
.ls2b_c00195{letter-spacing:0.241280pt;}
.ls1d_c00195{letter-spacing:0.243360pt;}
.ls2_c00195{letter-spacing:0.247467pt;}
.ls2d_c00195{letter-spacing:0.253653pt;}
.lsd_c00195{letter-spacing:0.261440pt;}
.ls41_c00195{letter-spacing:0.278400pt;}
.ls27_c00195{letter-spacing:0.284587pt;}
.ls39_c00195{letter-spacing:0.296960pt;}
.ls18_c00195{letter-spacing:0.309333pt;}
.ls87_c00195{letter-spacing:0.315520pt;}
.ls4_c00195{letter-spacing:0.321707pt;}
.ls3a_c00195{letter-spacing:0.358827pt;}
.ls2a_c00195{letter-spacing:0.365013pt;}
.ls0_c00195{letter-spacing:0.377387pt;}
.ls7_c00195{letter-spacing:0.408320pt;}
.lse_c00195{letter-spacing:0.425600pt;}
.ls30_c00195{letter-spacing:0.451627pt;}
.ls32_c00195{letter-spacing:0.457813pt;}
.ls3d_c00195{letter-spacing:0.470187pt;}
.ls1a_c00195{letter-spacing:0.482560pt;}
.ls10_c00195{letter-spacing:0.494933pt;}
.lsa_c00195{letter-spacing:0.532053pt;}
.ls22_c00195{letter-spacing:0.583680pt;}
.ls37_c00195{letter-spacing:0.589760pt;}
.ls26_c00195{letter-spacing:0.593920pt;}
.ls3f_c00195{letter-spacing:0.618667pt;}
.ls34_c00195{letter-spacing:0.649600pt;}
.ls15_c00195{letter-spacing:0.674347pt;}
.ls29_c00195{letter-spacing:0.699093pt;}
.ls9_c00195{letter-spacing:0.711360pt;}
.lsb_c00195{letter-spacing:0.736213pt;}
.ls23_c00195{letter-spacing:0.766080pt;}
.ls3c_c00195{letter-spacing:0.785707pt;}
.ls31_c00195{letter-spacing:0.845120pt;}
.ls75_c00195{letter-spacing:0.890880pt;}
.ls2e_c00195{letter-spacing:0.909440pt;}
.ls1f_c00195{letter-spacing:0.954560pt;}
.ls20_c00195{letter-spacing:1.082240pt;}
.ls21_c00195{letter-spacing:1.167360pt;}
.ls17_c00195{letter-spacing:1.243520pt;}
.ls4c_c00195{letter-spacing:1.429120pt;}
.ls3_c00195{letter-spacing:1.460053pt;}
.ls1_c00195{letter-spacing:1.763200pt;}
.ls12_c00195{letter-spacing:1.842240pt;}
.ls14_c00195{letter-spacing:2.171520pt;}
.ls1c_c00195{letter-spacing:2.520960pt;}
.ls42_c00195{letter-spacing:2.586667pt;}
.ls38_c00195{letter-spacing:2.858240pt;}
.ls57_c00195{letter-spacing:2.954880pt;}
.ls94_c00195{letter-spacing:3.093333pt;}
.ws1_c00195{word-spacing:-15.608960pt;}
.ws7_c00195{word-spacing:-15.175893pt;}
.ws8_c00195{word-spacing:0.000000pt;}
.ws0_c00195{word-spacing:0.567893pt;}
.ws5_c00195{word-spacing:2.682453pt;}
.ws6_c00195{word-spacing:3.891200pt;}
.ws2_c00195{word-spacing:5.091733pt;}
.ws4_c00195{word-spacing:11.784747pt;}
.ws3_c00195{word-spacing:14.917333pt;}
._c_c00195{margin-left:-6.165120pt;}
._18_c00195{margin-left:-3.773867pt;}
._d_c00195{margin-left:-1.982080pt;}
._b_c00195{margin-left:-1.026987pt;}
._4_c00195{width:1.398187pt;}
._0_c00195{width:2.462293pt;}
._6_c00195{width:3.606827pt;}
._3_c00195{width:4.887467pt;}
._1_c00195{width:5.784533pt;}
._17_c00195{width:6.681600pt;}
._2_c00195{width:7.578667pt;}
._9_c00195{width:9.241493pt;}
._5_c00195{width:10.610133pt;}
._8_c00195{width:12.294293pt;}
._7_c00195{width:13.702000pt;}
._e_c00195{width:14.668587pt;}
._10_c00195{width:15.888747pt;}
._a_c00195{width:17.276667pt;}
._f_c00195{width:18.544213pt;}
._15_c00195{width:21.784533pt;}
._12_c00195{width:23.347200pt;}
._14_c00195{width:25.015680pt;}
._13_c00195{width:26.602667pt;}
._11_c00195{width:27.577173pt;}
._16_c00195{width:28.675200pt;}
.fs2_c00195{font-size:28.800533pt;}
.fs0_c00195{font-size:51.733333pt;}
.fs8_c00195{font-size:58.666667pt;}
.fs4_c00195{font-size:60.266667pt;}
.fs3_c00195{font-size:60.800000pt;}
.fs1_c00195{font-size:61.866667pt;}
.fs5_c00195{font-size:62.400000pt;}
.fs6_c00195{font-size:62.933333pt;}
.fs7_c00195{font-size:68.266667pt;}
.y0_c00195{bottom:0.000000pt;}
.y1f_c00195{bottom:59.840013pt;}
.y1e_c00195{bottom:102.724813pt;}
.y1d_c00195{bottom:130.246413pt;}
.y1c_c00195{bottom:156.802680pt;}
.y1b_c00195{bottom:184.333347pt;}
.y1a_c00195{bottom:240.000013pt;}
.y19_c00195{bottom:240.004813pt;}
.y18_c00195{bottom:269.453347pt;}
.y17_c00195{bottom:269.459213pt;}
.y16_c00195{bottom:297.928547pt;}
.y15_c00195{bottom:326.093347pt;}
.y14_c00195{bottom:382.397880pt;}
.y13_c00195{bottom:409.603747pt;}
.y12_c00195{bottom:436.794147pt;}
.y10_c00195{bottom:463.994147pt;}
.y11_c00195{bottom:464.000013pt;}
.yf_c00195{bottom:491.200013pt;}
.ye_c00195{bottom:545.933347pt;}
.y21_c00195{bottom:546.893347pt;}
.y20_c00195{bottom:550.080013pt;}
.yd_c00195{bottom:573.453347pt;}
.yc_c00195{bottom:600.653347pt;}
.yb_c00195{bottom:646.084280pt;}
.ya_c00195{bottom:688.973347pt;}
.y9_c00195{bottom:716.173347pt;}
.y8_c00195{bottom:771.207480pt;}
.y7_c00195{bottom:798.413347pt;}
.y6_c00195{bottom:825.933347pt;}
.y5_c00195{bottom:880.972280pt;}
.y4_c00195{bottom:907.853347pt;}
.y3_c00195{bottom:962.253347pt;}
.y2_c00195{bottom:990.093347pt;}
.y1_c00195{bottom:1057.280013pt;}
.h2_c00195{height:50.773437pt;}
.h3_c00195{height:60.718750pt;}
.h7_c00195{height:60.737950pt;}
.h9_c00195{height:61.187500pt;}
.h5_c00195{height:61.211719pt;}
.h6_c00195{height:61.765625pt;}
.h4_c00195{height:62.856250pt;}
.h8_c00195{height:71.200000pt;}
.h1_c00195{height:1122.666667pt;}
.h0_c00195{height:1122.880013pt;}
.w1_c00195{width:793.333333pt;}
.w0_c00195{width:793.600000pt;}
.x0_c00195{left:0.000000pt;}
.x22_c00195{left:109.808533pt;}
.x21_c00195{left:110.846400pt;}
.x10_c00195{left:111.970133pt;}
.x1_c00195{left:113.213333pt;}
.x7_c00195{left:158.640000pt;}
.x2_c00195{left:160.146667pt;}
.x1d_c00195{left:188.013333pt;}
.x1e_c00195{left:216.800000pt;}
.x8_c00195{left:218.706667pt;}
.x17_c00195{left:222.253333pt;}
.x9_c00195{left:243.106667pt;}
.x18_c00195{left:252.666667pt;}
.x5_c00195{left:304.880000pt;}
.x11_c00195{left:318.280000pt;}
.x3_c00195{left:332.000000pt;}
.x12_c00195{left:334.560000pt;}
.x4_c00195{left:353.573333pt;}
.x19_c00195{left:368.866667pt;}
.x23_c00195{left:379.706667pt;}
.x13_c00195{left:388.386667pt;}
.x1f_c00195{left:397.666667pt;}
.x1a_c00195{left:398.906667pt;}
.x14_c00195{left:417.120000pt;}
.x20_c00195{left:432.560000pt;}
.xc_c00195{left:467.666667pt;}
.xa_c00195{left:488.146667pt;}
.xe_c00195{left:491.666667pt;}
.xd_c00195{left:492.906667pt;}
.x6_c00195{left:493.866667pt;}
.xb_c00195{left:512.546667pt;}
.xf_c00195{left:516.306667pt;}
.x1b_c00195{left:519.266667pt;}
.x1c_c00195{left:548.960000pt;}
.x15_c00195{left:555.106667pt;}
.x16_c00195{left:584.426667pt;}
.x25_c00195{left:760.440000pt;}
.x24_c00195{left:761.373333pt;}
}





/* 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_c00196 {
    display:none;
  }
  .loading-indicator_c00196.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00196 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_c00196 { 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_c00196" -> "#page-container .classname_c00196")
 */
.pf_c00196 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00196 { /* 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_c00196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00196 { /* 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_c00196 { /* 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_c00196 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00196 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00196 {overflow:visible;}
  }
}
.c_c00196 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00196 { /* 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_c00196:after { /* webkit #35443 */
  content: '';
}
.t_c00196:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00196 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 */
}
.__c00196 { /* 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_c00196 { /* info for Javascript */
  display:none;
}
.l_c00196 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00196 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00196 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00196: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_c00196 {
    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_c00196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00196.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_c00196 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00196;src:url('chunks/assets/font_4581cebbf0fbd93ce98ceb5c.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.284668;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_c00196;src:url('chunks/assets/font_13b2f51e17202727bb39bdf1.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.284180;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_c00196;src:url('chunks/assets/font_c0e5a8493a27632976f8feae.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;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;}
.m6_c00196{transform:matrix(0.160421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160421,0.000000,0.000000,0.250000,0,0);}
.m5_c00196{transform:matrix(0.227513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227513,0.000000,0.000000,0.250000,0,0);}
.m3_c00196{transform:matrix(0.244091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244091,0.000000,0.000000,0.250000,0,0);}
.m0_c00196{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m8_c00196{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m1_c00196{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);}
.m2_c00196{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m4_c00196{transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);}
.m7_c00196{transform:matrix(0.292196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292196,0.000000,0.000000,0.250000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.v1_c00196{vertical-align:28.752000px;}
.ls7c_c00196{letter-spacing:-2.436000px;}
.ls8c_c00196{letter-spacing:-2.394000px;}
.ls69_c00196{letter-spacing:-2.352000px;}
.ls8a_c00196{letter-spacing:-2.339280px;}
.ls74_c00196{letter-spacing:-2.234160px;}
.ls76_c00196{letter-spacing:-1.760880px;}
.ls80_c00196{letter-spacing:-1.649520px;}
.ls72_c00196{letter-spacing:-1.545120px;}
.ls73_c00196{letter-spacing:-1.412880px;}
.ls7e_c00196{letter-spacing:-1.218000px;}
.ls8d_c00196{letter-spacing:-1.190160px;}
.ls88_c00196{letter-spacing:-1.106640px;}
.ls79_c00196{letter-spacing:-1.078800px;}
.ls91_c00196{letter-spacing:-0.958440px;}
.ls75_c00196{letter-spacing:-0.883920px;}
.ls77_c00196{letter-spacing:-0.689040px;}
.ls6a_c00196{letter-spacing:-0.619440px;}
.ls7b_c00196{letter-spacing:-0.487200px;}
.ls78_c00196{letter-spacing:-0.466320px;}
.ls7d_c00196{letter-spacing:-0.438480px;}
.ls8b_c00196{letter-spacing:-0.375840px;}
.ls6f_c00196{letter-spacing:-0.368880px;}
.ls7a_c00196{letter-spacing:-0.334080px;}
.ls6b_c00196{letter-spacing:-0.285360px;}
.ls83_c00196{letter-spacing:-0.229680px;}
.ls6c_c00196{letter-spacing:-0.208800px;}
.ls7f_c00196{letter-spacing:-0.180960px;}
.ls90_c00196{letter-spacing:-0.146160px;}
.ls82_c00196{letter-spacing:-0.139200px;}
.ls84_c00196{letter-spacing:-0.125280px;}
.ls85_c00196{letter-spacing:-0.118320px;}
.ls81_c00196{letter-spacing:-0.090480px;}
.ls8e_c00196{letter-spacing:-0.083520px;}
.ls87_c00196{letter-spacing:-0.069600px;}
.ls71_c00196{letter-spacing:-0.027840px;}
.ls6d_c00196{letter-spacing:0.000000px;}
.lse_c00196{letter-spacing:0.006960px;}
.ls50_c00196{letter-spacing:0.013920px;}
.ls8f_c00196{letter-spacing:0.020880px;}
.ls19_c00196{letter-spacing:0.027840px;}
.ls29_c00196{letter-spacing:0.034800px;}
.ls34_c00196{letter-spacing:0.069600px;}
.ls36_c00196{letter-spacing:0.076560px;}
.ls1c_c00196{letter-spacing:0.097440px;}
.ls5d_c00196{letter-spacing:0.132240px;}
.ls7_c00196{letter-spacing:0.174000px;}
.ls2c_c00196{letter-spacing:0.180960px;}
.ls3_c00196{letter-spacing:0.187920px;}
.ls65_c00196{letter-spacing:0.208800px;}
.ls22_c00196{letter-spacing:0.215760px;}
.ls14_c00196{letter-spacing:0.222720px;}
.ls63_c00196{letter-spacing:0.229680px;}
.ls53_c00196{letter-spacing:0.271440px;}
.ls86_c00196{letter-spacing:0.278400px;}
.ls20_c00196{letter-spacing:0.292320px;}
.ls1b_c00196{letter-spacing:0.306240px;}
.ls30_c00196{letter-spacing:0.313200px;}
.ls24_c00196{letter-spacing:0.320160px;}
.ls41_c00196{letter-spacing:0.334080px;}
.ls6e_c00196{letter-spacing:0.354960px;}
.ls3b_c00196{letter-spacing:0.382800px;}
.ls57_c00196{letter-spacing:0.389760px;}
.ls1e_c00196{letter-spacing:0.389880px;}
.lsb_c00196{letter-spacing:0.396720px;}
.ls58_c00196{letter-spacing:0.417600px;}
.ls42_c00196{letter-spacing:0.431520px;}
.ls62_c00196{letter-spacing:0.438480px;}
.ls2f_c00196{letter-spacing:0.459360px;}
.ls1f_c00196{letter-spacing:0.487200px;}
.ls8_c00196{letter-spacing:0.494160px;}
.ls10_c00196{letter-spacing:0.501120px;}
.ls5a_c00196{letter-spacing:0.508080px;}
.ls17_c00196{letter-spacing:0.522720px;}
.ls2d_c00196{letter-spacing:0.535920px;}
.ls27_c00196{letter-spacing:0.542880px;}
.ls3f_c00196{letter-spacing:0.549840px;}
.ls45_c00196{letter-spacing:0.563760px;}
.ls4_c00196{letter-spacing:0.570720px;}
.ls33_c00196{letter-spacing:0.591600px;}
.ls39_c00196{letter-spacing:0.626400px;}
.ls5_c00196{letter-spacing:0.640320px;}
.lsa_c00196{letter-spacing:0.642960px;}
.ls15_c00196{letter-spacing:0.647280px;}
.ls67_c00196{letter-spacing:0.654240px;}
.ls9_c00196{letter-spacing:0.656640px;}
.ls32_c00196{letter-spacing:0.696000px;}
.ls4b_c00196{letter-spacing:0.702960px;}
.lsd_c00196{letter-spacing:0.709920px;}
.ls18_c00196{letter-spacing:0.723840px;}
.ls44_c00196{letter-spacing:0.744720px;}
.ls26_c00196{letter-spacing:0.751680px;}
.ls25_c00196{letter-spacing:0.758640px;}
.ls48_c00196{letter-spacing:0.779520px;}
.ls5b_c00196{letter-spacing:0.786480px;}
.ls35_c00196{letter-spacing:0.793440px;}
.ls3c_c00196{letter-spacing:0.800400px;}
.ls5f_c00196{letter-spacing:0.841320px;}
.ls60_c00196{letter-spacing:0.849120px;}
.ls5e_c00196{letter-spacing:0.856080px;}
.ls3a_c00196{letter-spacing:0.863040px;}
.ls37_c00196{letter-spacing:0.870000px;}
.ls38_c00196{letter-spacing:0.883920px;}
.ls1_c00196{letter-spacing:0.890880px;}
.ls64_c00196{letter-spacing:0.904800px;}
.ls13_c00196{letter-spacing:0.918720px;}
.ls56_c00196{letter-spacing:0.923400px;}
.ls55_c00196{letter-spacing:0.925680px;}
.ls2e_c00196{letter-spacing:0.953520px;}
.ls61_c00196{letter-spacing:0.960480px;}
.ls4e_c00196{letter-spacing:0.971280px;}
.ls59_c00196{letter-spacing:0.981360px;}
.ls68_c00196{letter-spacing:1.019160px;}
.ls46_c00196{letter-spacing:1.023120px;}
.lsc_c00196{letter-spacing:1.037040px;}
.ls2b_c00196{letter-spacing:1.044000px;}
.ls43_c00196{letter-spacing:1.064880px;}
.ls4f_c00196{letter-spacing:1.078800px;}
.ls23_c00196{letter-spacing:1.106640px;}
.ls28_c00196{letter-spacing:1.120560px;}
.ls0_c00196{letter-spacing:1.128600px;}
.ls31_c00196{letter-spacing:1.148400px;}
.ls40_c00196{letter-spacing:1.162320px;}
.ls2a_c00196{letter-spacing:1.211040px;}
.ls3d_c00196{letter-spacing:1.224960px;}
.ls12_c00196{letter-spacing:1.273680px;}
.ls5c_c00196{letter-spacing:1.313280px;}
.ls89_c00196{letter-spacing:1.329360px;}
.ls49_c00196{letter-spacing:1.343280px;}
.ls4a_c00196{letter-spacing:1.350240px;}
.ls54_c00196{letter-spacing:1.378080px;}
.lsf_c00196{letter-spacing:1.398960px;}
.ls1a_c00196{letter-spacing:1.433760px;}
.ls2_c00196{letter-spacing:1.607760px;}
.ls4d_c00196{letter-spacing:1.614240px;}
.ls4c_c00196{letter-spacing:1.614720px;}
.ls1d_c00196{letter-spacing:1.648440px;}
.ls21_c00196{letter-spacing:1.703160px;}
.ls52_c00196{letter-spacing:1.802640px;}
.ls16_c00196{letter-spacing:1.981980px;}
.ls47_c00196{letter-spacing:1.983600px;}
.ls11_c00196{letter-spacing:2.164560px;}
.ls6_c00196{letter-spacing:2.268960px;}
.ls3e_c00196{letter-spacing:2.519520px;}
.ls51_c00196{letter-spacing:2.888400px;}
.ls66_c00196{letter-spacing:3.424320px;}
.ls70_c00196{letter-spacing:3.480000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{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__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00196{word-spacing:-17.253840px;}
.ws7_c00196{word-spacing:-0.435000px;}
.ws8_c00196{word-spacing:0.000000px;}
.ws3_c00196{word-spacing:1.726080px;}
.ws0_c00196{word-spacing:2.243400px;}
.ws1_c00196{word-spacing:4.938240px;}
.ws5_c00196{word-spacing:5.359200px;}
.ws2_c00196{word-spacing:11.559360px;}
.ws4_c00196{word-spacing:15.222480px;}
._6_c00196{margin-left:-7.962240px;}
._7_c00196{margin-left:-5.996760px;}
._e_c00196{margin-left:-4.510080px;}
._4_c00196{margin-left:-3.389520px;}
._0_c00196{margin-left:-1.503360px;}
._3_c00196{width:1.990560px;}
._f_c00196{width:3.048480px;}
._5_c00196{width:4.113360px;}
._2_c00196{width:5.261760px;}
._1_c00196{width:6.758160px;}
._8_c00196{width:8.212800px;}
._a_c00196{width:9.834480px;}
._9_c00196{width:10.899360px;}
._c_c00196{width:12.360960px;}
._d_c00196{width:13.752960px;}
._10_c00196{width:14.783040px;}
._b_c00196{width:16.502160px;}
.fc0_c00196{color:transparent;}
.fs4_c00196{font-size:32.400600px;}
.fs5_c00196{font-size:58.800000px;}
.fs0_c00196{font-size:67.200000px;}
.fs1_c00196{font-size:68.400000px;}
.fs2_c00196{font-size:69.600000px;}
.fs3_c00196{font-size:72.600000px;}
.y0_c00196{bottom:0.000000px;}
.y1d_c00196{bottom:71.295015px;}
.y1c_c00196{bottom:174.240015px;}
.y1a_c00196{bottom:235.812015px;}
.y1b_c00196{bottom:235.815015px;}
.y18_c00196{bottom:267.477615px;}
.y19_c00196{bottom:267.480015px;}
.y17_c00196{bottom:298.815015px;}
.y16_c00196{bottom:361.080015px;}
.y15_c00196{bottom:423.742815px;}
.y14_c00196{bottom:454.680015px;}
.y13_c00196{bottom:454.683015px;}
.y12_c00196{bottom:485.655015px;}
.y11_c00196{bottom:546.836415px;}
.y10_c00196{bottom:578.173815px;}
.yf_c00196{bottom:609.128415px;}
.ye_c00196{bottom:639.735015px;}
.yd_c00196{bottom:639.739215px;}
.yc_c00196{bottom:670.676415px;}
.yb_c00196{bottom:701.648415px;}
.ya_c00196{bottom:732.255015px;}
.y9_c00196{bottom:794.175015px;}
.y8_c00196{bottom:856.455615px;}
.y7_c00196{bottom:904.688415px;}
.y6_c00196{bottom:935.295015px;}
.y5_c00196{bottom:996.848415px;}
.y4_c00196{bottom:1027.455015px;}
.y3_c00196{bottom:1089.728415px;}
.y2_c00196{bottom:1120.335015px;}
.y1_c00196{bottom:1197.360015px;}
.h6_c00196{height:57.708984px;}
.h2_c00196{height:65.953125px;}
.h5_c00196{height:67.130859px;}
.h3_c00196{height:68.308594px;}
.h4_c00196{height:71.217480px;}
.h1_c00196{height:1263.000000px;}
.h0_c00196{height:1263.240015px;}
.w1_c00196{width:892.500000px;}
.w0_c00196{width:892.800015px;}
.x0_c00196{left:0.000000px;}
.xe_c00196{left:116.320215px;}
.xb_c00196{left:117.775815px;}
.x5_c00196{left:120.268815px;}
.x1_c00196{left:123.045015px;}
.x17_c00196{left:169.365015px;}
.xa_c00196{left:170.445015px;}
.x7_c00196{left:171.985215px;}
.x8_c00196{left:173.081415px;}
.x2_c00196{left:175.125015px;}
.xf_c00196{left:180.210015px;}
.x10_c00196{left:200.775015px;}
.xc_c00196{left:220.290015px;}
.x14_c00196{left:227.895015px;}
.xd_c00196{left:242.100015px;}
.x15_c00196{left:272.715015px;}
.x6_c00196{left:337.950015px;}
.x18_c00196{left:421.410015px;}
.x11_c00196{left:445.620015px;}
.x16_c00196{left:461.700015px;}
.x12_c00196{left:477.540015px;}
.x3_c00196{left:517.935015px;}
.x4_c00196{left:542.445015px;}
.x9_c00196{left:564.645015px;}
.x13_c00196{left:633.540015px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.v1_c00196{vertical-align:25.557333pt;}
.ls7c_c00196{letter-spacing:-2.165333pt;}
.ls8c_c00196{letter-spacing:-2.128000pt;}
.ls69_c00196{letter-spacing:-2.090667pt;}
.ls8a_c00196{letter-spacing:-2.079360pt;}
.ls74_c00196{letter-spacing:-1.985920pt;}
.ls76_c00196{letter-spacing:-1.565227pt;}
.ls80_c00196{letter-spacing:-1.466240pt;}
.ls72_c00196{letter-spacing:-1.373440pt;}
.ls73_c00196{letter-spacing:-1.255893pt;}
.ls7e_c00196{letter-spacing:-1.082667pt;}
.ls8d_c00196{letter-spacing:-1.057920pt;}
.ls88_c00196{letter-spacing:-0.983680pt;}
.ls79_c00196{letter-spacing:-0.958933pt;}
.ls91_c00196{letter-spacing:-0.851947pt;}
.ls75_c00196{letter-spacing:-0.785707pt;}
.ls77_c00196{letter-spacing:-0.612480pt;}
.ls6a_c00196{letter-spacing:-0.550613pt;}
.ls7b_c00196{letter-spacing:-0.433067pt;}
.ls78_c00196{letter-spacing:-0.414507pt;}
.ls7d_c00196{letter-spacing:-0.389760pt;}
.ls8b_c00196{letter-spacing:-0.334080pt;}
.ls6f_c00196{letter-spacing:-0.327893pt;}
.ls7a_c00196{letter-spacing:-0.296960pt;}
.ls6b_c00196{letter-spacing:-0.253653pt;}
.ls83_c00196{letter-spacing:-0.204160pt;}
.ls6c_c00196{letter-spacing:-0.185600pt;}
.ls7f_c00196{letter-spacing:-0.160853pt;}
.ls90_c00196{letter-spacing:-0.129920pt;}
.ls82_c00196{letter-spacing:-0.123733pt;}
.ls84_c00196{letter-spacing:-0.111360pt;}
.ls85_c00196{letter-spacing:-0.105173pt;}
.ls81_c00196{letter-spacing:-0.080427pt;}
.ls8e_c00196{letter-spacing:-0.074240pt;}
.ls87_c00196{letter-spacing:-0.061867pt;}
.ls71_c00196{letter-spacing:-0.024747pt;}
.ls6d_c00196{letter-spacing:0.000000pt;}
.lse_c00196{letter-spacing:0.006187pt;}
.ls50_c00196{letter-spacing:0.012373pt;}
.ls8f_c00196{letter-spacing:0.018560pt;}
.ls19_c00196{letter-spacing:0.024747pt;}
.ls29_c00196{letter-spacing:0.030933pt;}
.ls34_c00196{letter-spacing:0.061867pt;}
.ls36_c00196{letter-spacing:0.068053pt;}
.ls1c_c00196{letter-spacing:0.086613pt;}
.ls5d_c00196{letter-spacing:0.117547pt;}
.ls7_c00196{letter-spacing:0.154667pt;}
.ls2c_c00196{letter-spacing:0.160853pt;}
.ls3_c00196{letter-spacing:0.167040pt;}
.ls65_c00196{letter-spacing:0.185600pt;}
.ls22_c00196{letter-spacing:0.191787pt;}
.ls14_c00196{letter-spacing:0.197973pt;}
.ls63_c00196{letter-spacing:0.204160pt;}
.ls53_c00196{letter-spacing:0.241280pt;}
.ls86_c00196{letter-spacing:0.247467pt;}
.ls20_c00196{letter-spacing:0.259840pt;}
.ls1b_c00196{letter-spacing:0.272213pt;}
.ls30_c00196{letter-spacing:0.278400pt;}
.ls24_c00196{letter-spacing:0.284587pt;}
.ls41_c00196{letter-spacing:0.296960pt;}
.ls6e_c00196{letter-spacing:0.315520pt;}
.ls3b_c00196{letter-spacing:0.340267pt;}
.ls57_c00196{letter-spacing:0.346453pt;}
.ls1e_c00196{letter-spacing:0.346560pt;}
.lsb_c00196{letter-spacing:0.352640pt;}
.ls58_c00196{letter-spacing:0.371200pt;}
.ls42_c00196{letter-spacing:0.383573pt;}
.ls62_c00196{letter-spacing:0.389760pt;}
.ls2f_c00196{letter-spacing:0.408320pt;}
.ls1f_c00196{letter-spacing:0.433067pt;}
.ls8_c00196{letter-spacing:0.439253pt;}
.ls10_c00196{letter-spacing:0.445440pt;}
.ls5a_c00196{letter-spacing:0.451627pt;}
.ls17_c00196{letter-spacing:0.464640pt;}
.ls2d_c00196{letter-spacing:0.476373pt;}
.ls27_c00196{letter-spacing:0.482560pt;}
.ls3f_c00196{letter-spacing:0.488747pt;}
.ls45_c00196{letter-spacing:0.501120pt;}
.ls4_c00196{letter-spacing:0.507307pt;}
.ls33_c00196{letter-spacing:0.525867pt;}
.ls39_c00196{letter-spacing:0.556800pt;}
.ls5_c00196{letter-spacing:0.569173pt;}
.lsa_c00196{letter-spacing:0.571520pt;}
.ls15_c00196{letter-spacing:0.575360pt;}
.ls67_c00196{letter-spacing:0.581547pt;}
.ls9_c00196{letter-spacing:0.583680pt;}
.ls32_c00196{letter-spacing:0.618667pt;}
.ls4b_c00196{letter-spacing:0.624853pt;}
.lsd_c00196{letter-spacing:0.631040pt;}
.ls18_c00196{letter-spacing:0.643413pt;}
.ls44_c00196{letter-spacing:0.661973pt;}
.ls26_c00196{letter-spacing:0.668160pt;}
.ls25_c00196{letter-spacing:0.674347pt;}
.ls48_c00196{letter-spacing:0.692907pt;}
.ls5b_c00196{letter-spacing:0.699093pt;}
.ls35_c00196{letter-spacing:0.705280pt;}
.ls3c_c00196{letter-spacing:0.711467pt;}
.ls5f_c00196{letter-spacing:0.747840pt;}
.ls60_c00196{letter-spacing:0.754773pt;}
.ls5e_c00196{letter-spacing:0.760960pt;}
.ls3a_c00196{letter-spacing:0.767147pt;}
.ls37_c00196{letter-spacing:0.773333pt;}
.ls38_c00196{letter-spacing:0.785707pt;}
.ls1_c00196{letter-spacing:0.791893pt;}
.ls64_c00196{letter-spacing:0.804267pt;}
.ls13_c00196{letter-spacing:0.816640pt;}
.ls56_c00196{letter-spacing:0.820800pt;}
.ls55_c00196{letter-spacing:0.822827pt;}
.ls2e_c00196{letter-spacing:0.847573pt;}
.ls61_c00196{letter-spacing:0.853760pt;}
.ls4e_c00196{letter-spacing:0.863360pt;}
.ls59_c00196{letter-spacing:0.872320pt;}
.ls68_c00196{letter-spacing:0.905920pt;}
.ls46_c00196{letter-spacing:0.909440pt;}
.lsc_c00196{letter-spacing:0.921813pt;}
.ls2b_c00196{letter-spacing:0.928000pt;}
.ls43_c00196{letter-spacing:0.946560pt;}
.ls4f_c00196{letter-spacing:0.958933pt;}
.ls23_c00196{letter-spacing:0.983680pt;}
.ls28_c00196{letter-spacing:0.996053pt;}
.ls0_c00196{letter-spacing:1.003200pt;}
.ls31_c00196{letter-spacing:1.020800pt;}
.ls40_c00196{letter-spacing:1.033173pt;}
.ls2a_c00196{letter-spacing:1.076480pt;}
.ls3d_c00196{letter-spacing:1.088853pt;}
.ls12_c00196{letter-spacing:1.132160pt;}
.ls5c_c00196{letter-spacing:1.167360pt;}
.ls89_c00196{letter-spacing:1.181653pt;}
.ls49_c00196{letter-spacing:1.194027pt;}
.ls4a_c00196{letter-spacing:1.200213pt;}
.ls54_c00196{letter-spacing:1.224960pt;}
.lsf_c00196{letter-spacing:1.243520pt;}
.ls1a_c00196{letter-spacing:1.274453pt;}
.ls2_c00196{letter-spacing:1.429120pt;}
.ls4d_c00196{letter-spacing:1.434880pt;}
.ls4c_c00196{letter-spacing:1.435307pt;}
.ls1d_c00196{letter-spacing:1.465280pt;}
.ls21_c00196{letter-spacing:1.513920pt;}
.ls52_c00196{letter-spacing:1.602347pt;}
.ls16_c00196{letter-spacing:1.761760pt;}
.ls47_c00196{letter-spacing:1.763200pt;}
.ls11_c00196{letter-spacing:1.924053pt;}
.ls6_c00196{letter-spacing:2.016853pt;}
.ls3e_c00196{letter-spacing:2.239573pt;}
.ls51_c00196{letter-spacing:2.567467pt;}
.ls66_c00196{letter-spacing:3.043840pt;}
.ls70_c00196{letter-spacing:3.093333pt;}
.ws6_c00196{word-spacing:-15.336747pt;}
.ws7_c00196{word-spacing:-0.386667pt;}
.ws8_c00196{word-spacing:0.000000pt;}
.ws3_c00196{word-spacing:1.534293pt;}
.ws0_c00196{word-spacing:1.994133pt;}
.ws1_c00196{word-spacing:4.389547pt;}
.ws5_c00196{word-spacing:4.763733pt;}
.ws2_c00196{word-spacing:10.274987pt;}
.ws4_c00196{word-spacing:13.531093pt;}
._6_c00196{margin-left:-7.077547pt;}
._7_c00196{margin-left:-5.330453pt;}
._e_c00196{margin-left:-4.008960pt;}
._4_c00196{margin-left:-3.012907pt;}
._0_c00196{margin-left:-1.336320pt;}
._3_c00196{width:1.769387pt;}
._f_c00196{width:2.709760pt;}
._5_c00196{width:3.656320pt;}
._2_c00196{width:4.677120pt;}
._1_c00196{width:6.007253pt;}
._8_c00196{width:7.300267pt;}
._a_c00196{width:8.741760pt;}
._9_c00196{width:9.688320pt;}
._c_c00196{width:10.987520pt;}
._d_c00196{width:12.224853pt;}
._10_c00196{width:13.140480pt;}
._b_c00196{width:14.668587pt;}
.fs4_c00196{font-size:28.800533pt;}
.fs5_c00196{font-size:52.266667pt;}
.fs0_c00196{font-size:59.733333pt;}
.fs1_c00196{font-size:60.800000pt;}
.fs2_c00196{font-size:61.866667pt;}
.fs3_c00196{font-size:64.533333pt;}
.y0_c00196{bottom:0.000000pt;}
.y1d_c00196{bottom:63.373347pt;}
.y1c_c00196{bottom:154.880013pt;}
.y1a_c00196{bottom:209.610680pt;}
.y1b_c00196{bottom:209.613347pt;}
.y18_c00196{bottom:237.757880pt;}
.y19_c00196{bottom:237.760013pt;}
.y17_c00196{bottom:265.613347pt;}
.y16_c00196{bottom:320.960013pt;}
.y15_c00196{bottom:376.660280pt;}
.y14_c00196{bottom:404.160013pt;}
.y13_c00196{bottom:404.162680pt;}
.y12_c00196{bottom:431.693347pt;}
.y11_c00196{bottom:486.076813pt;}
.y10_c00196{bottom:513.932280pt;}
.yf_c00196{bottom:541.447480pt;}
.ye_c00196{bottom:568.653347pt;}
.yd_c00196{bottom:568.657080pt;}
.yc_c00196{bottom:596.156813pt;}
.yb_c00196{bottom:623.687480pt;}
.ya_c00196{bottom:650.893347pt;}
.y9_c00196{bottom:705.933347pt;}
.y8_c00196{bottom:761.293880pt;}
.y7_c00196{bottom:804.167480pt;}
.y6_c00196{bottom:831.373347pt;}
.y5_c00196{bottom:886.087480pt;}
.y4_c00196{bottom:913.293347pt;}
.y3_c00196{bottom:968.647480pt;}
.y2_c00196{bottom:995.853347pt;}
.y1_c00196{bottom:1064.320013pt;}
.h6_c00196{height:51.296875pt;}
.h2_c00196{height:58.625000pt;}
.h5_c00196{height:59.671875pt;}
.h3_c00196{height:60.718750pt;}
.h4_c00196{height:63.304427pt;}
.h1_c00196{height:1122.666667pt;}
.h0_c00196{height:1122.880013pt;}
.w1_c00196{width:793.333333pt;}
.w0_c00196{width:793.600013pt;}
.x0_c00196{left:0.000000pt;}
.xe_c00196{left:103.395747pt;}
.xb_c00196{left:104.689613pt;}
.x5_c00196{left:106.905613pt;}
.x1_c00196{left:109.373347pt;}
.x17_c00196{left:150.546680pt;}
.xa_c00196{left:151.506680pt;}
.x7_c00196{left:152.875747pt;}
.x8_c00196{left:153.850147pt;}
.x2_c00196{left:155.666680pt;}
.xf_c00196{left:160.186680pt;}
.x10_c00196{left:178.466680pt;}
.xc_c00196{left:195.813347pt;}
.x14_c00196{left:202.573347pt;}
.xd_c00196{left:215.200013pt;}
.x15_c00196{left:242.413347pt;}
.x6_c00196{left:300.400013pt;}
.x18_c00196{left:374.586680pt;}
.x11_c00196{left:396.106680pt;}
.x16_c00196{left:410.400013pt;}
.x12_c00196{left:424.480013pt;}
.x3_c00196{left:460.386680pt;}
.x4_c00196{left:482.173347pt;}
.x9_c00196{left:501.906680pt;}
.x13_c00196{left:563.146680pt;}
}





/* 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_c00197 {
    display:none;
  }
  .loading-indicator_c00197.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00197 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_c00197 { 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_c00197" -> "#page-container .classname_c00197")
 */
.pf_c00197 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00197 { /* 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_c00197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00197 { /* 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_c00197 { /* 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_c00197 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00197 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00197 {overflow:visible;}
  }
}
.c_c00197 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00197 { /* 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_c00197:after { /* webkit #35443 */
  content: '';
}
.t_c00197:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00197 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 */
}
.__c00197 { /* 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_c00197 { /* info for Javascript */
  display:none;
}
.l_c00197 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00197 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00197 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00197: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_c00197 {
    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_c00197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00197.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_c00197 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00197;src:url('chunks/assets/font_b7f22fd71c1d8669757a24d8.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.284668;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_c00197;src:url('chunks/assets/font_e6fca760afc29c6efc9e6b06.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.284180;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;}
.ma_c00197{transform:matrix(0.218788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218788,0.000000,0.000000,0.250000,0,0);}
.m9_c00197{transform:matrix(0.221827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221827,0.000000,0.000000,0.250000,0,0);}
.m8_c00197{transform:matrix(0.235352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235352,0.000000,0.000000,0.250000,0,0);}
.m4_c00197{transform:matrix(0.239847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239847,0.000000,0.000000,0.250000,0,0);}
.m3_c00197{transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);}
.m7_c00197{transform:matrix(0.241713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241713,0.000000,0.000000,0.250000,0,0);}
.m0_c00197{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m5_c00197{transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);}
.mb_c00197{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m6_c00197{transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);}
.mc_c00197{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m1_c00197{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);}
.m2_c00197{transform:matrix(0.251996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251996,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls68_c00197{letter-spacing:-2.436000px;}
.ls8c_c00197{letter-spacing:-2.415000px;}
.ls58_c00197{letter-spacing:-2.352000px;}
.ls93_c00197{letter-spacing:-2.331000px;}
.ls67_c00197{letter-spacing:-2.255040px;}
.ls61_c00197{letter-spacing:-2.234160px;}
.ls9a_c00197{letter-spacing:-2.192400px;}
.ls60_c00197{letter-spacing:-2.136720px;}
.ls9e_c00197{letter-spacing:-2.060160px;}
.lsa0_c00197{letter-spacing:-1.907040px;}
.ls91_c00197{letter-spacing:-1.893120px;}
.ls96_c00197{letter-spacing:-1.886160px;}
.lsa3_c00197{letter-spacing:-1.872240px;}
.ls6c_c00197{letter-spacing:-1.649520px;}
.ls7d_c00197{letter-spacing:-1.531200px;}
.ls66_c00197{letter-spacing:-1.503360px;}
.ls5b_c00197{letter-spacing:-1.426800px;}
.ls92_c00197{letter-spacing:-1.412880px;}
.lsa1_c00197{letter-spacing:-1.343280px;}
.lsa4_c00197{letter-spacing:-1.251300px;}
.ls6e_c00197{letter-spacing:-1.218000px;}
.ls64_c00197{letter-spacing:-1.190160px;}
.ls9d_c00197{letter-spacing:-1.099680px;}
.ls5e_c00197{letter-spacing:-1.064880px;}
.ls5f_c00197{letter-spacing:-0.932640px;}
.ls71_c00197{letter-spacing:-0.897840px;}
.ls8a_c00197{letter-spacing:-0.849120px;}
.ls83_c00197{letter-spacing:-0.758640px;}
.ls7e_c00197{letter-spacing:-0.709920px;}
.ls65_c00197{letter-spacing:-0.668160px;}
.ls8d_c00197{letter-spacing:-0.640320px;}
.ls74_c00197{letter-spacing:-0.626400px;}
.ls63_c00197{letter-spacing:-0.598560px;}
.ls72_c00197{letter-spacing:-0.584640px;}
.ls5a_c00197{letter-spacing:-0.570720px;}
.ls7b_c00197{letter-spacing:-0.549840px;}
.ls88_c00197{letter-spacing:-0.542880px;}
.ls94_c00197{letter-spacing:-0.473280px;}
.ls6f_c00197{letter-spacing:-0.459360px;}
.ls6b_c00197{letter-spacing:-0.452400px;}
.ls8f_c00197{letter-spacing:-0.438480px;}
.ls6d_c00197{letter-spacing:-0.431520px;}
.ls76_c00197{letter-spacing:-0.396720px;}
.ls73_c00197{letter-spacing:-0.382800px;}
.ls77_c00197{letter-spacing:-0.361920px;}
.ls6a_c00197{letter-spacing:-0.334080px;}
.ls7c_c00197{letter-spacing:-0.320160px;}
.ls5d_c00197{letter-spacing:-0.313200px;}
.ls84_c00197{letter-spacing:-0.306240px;}
.ls9f_c00197{letter-spacing:-0.229680px;}
.ls90_c00197{letter-spacing:-0.220800px;}
.ls87_c00197{letter-spacing:-0.208800px;}
.ls99_c00197{letter-spacing:-0.187920px;}
.ls7f_c00197{letter-spacing:-0.180960px;}
.ls95_c00197{letter-spacing:-0.167040px;}
.ls70_c00197{letter-spacing:-0.160080px;}
.ls9b_c00197{letter-spacing:-0.153120px;}
.ls78_c00197{letter-spacing:-0.146160px;}
.ls75_c00197{letter-spacing:-0.139200px;}
.ls98_c00197{letter-spacing:-0.132240px;}
.ls81_c00197{letter-spacing:-0.097440px;}
.ls7a_c00197{letter-spacing:-0.090480px;}
.ls80_c00197{letter-spacing:-0.083520px;}
.ls85_c00197{letter-spacing:-0.076560px;}
.lsa2_c00197{letter-spacing:-0.069600px;}
.ls89_c00197{letter-spacing:-0.048720px;}
.ls82_c00197{letter-spacing:-0.034800px;}
.ls69_c00197{letter-spacing:-0.027840px;}
.ls9c_c00197{letter-spacing:-0.020880px;}
.ls59_c00197{letter-spacing:0.000000px;}
.ls0_c00197{letter-spacing:0.006900px;}
.ls8e_c00197{letter-spacing:0.013920px;}
.ls7_c00197{letter-spacing:0.020880px;}
.ls22_c00197{letter-spacing:0.027840px;}
.ls2a_c00197{letter-spacing:0.041760px;}
.ls1d_c00197{letter-spacing:0.048720px;}
.ls1a_c00197{letter-spacing:0.055680px;}
.ls18_c00197{letter-spacing:0.062640px;}
.ls27_c00197{letter-spacing:0.069600px;}
.ls4b_c00197{letter-spacing:0.076560px;}
.ls2d_c00197{letter-spacing:0.083520px;}
.ls30_c00197{letter-spacing:0.090480px;}
.ls3b_c00197{letter-spacing:0.104400px;}
.lsc_c00197{letter-spacing:0.125280px;}
.ls4a_c00197{letter-spacing:0.132240px;}
.ls2f_c00197{letter-spacing:0.139200px;}
.ls52_c00197{letter-spacing:0.153120px;}
.ls97_c00197{letter-spacing:0.160080px;}
.ls8b_c00197{letter-spacing:0.174000px;}
.ls15_c00197{letter-spacing:0.180960px;}
.ls1_c00197{letter-spacing:0.193200px;}
.ls4e_c00197{letter-spacing:0.194880px;}
.ls4d_c00197{letter-spacing:0.207000px;}
.ls43_c00197{letter-spacing:0.213900px;}
.ls50_c00197{letter-spacing:0.215760px;}
.lsb_c00197{letter-spacing:0.222720px;}
.ls3e_c00197{letter-spacing:0.227700px;}
.ls41_c00197{letter-spacing:0.229680px;}
.ls29_c00197{letter-spacing:0.236640px;}
.ls3a_c00197{letter-spacing:0.250560px;}
.ls4f_c00197{letter-spacing:0.257520px;}
.ls26_c00197{letter-spacing:0.264480px;}
.ls4c_c00197{letter-spacing:0.278400px;}
.ls34_c00197{letter-spacing:0.285360px;}
.ls40_c00197{letter-spacing:0.292320px;}
.ls79_c00197{letter-spacing:0.299280px;}
.ls49_c00197{letter-spacing:0.306240px;}
.ls1c_c00197{letter-spacing:0.320160px;}
.ls42_c00197{letter-spacing:0.327120px;}
.ls31_c00197{letter-spacing:0.334080px;}
.ls55_c00197{letter-spacing:0.341040px;}
.ls57_c00197{letter-spacing:0.361920px;}
.ls3d_c00197{letter-spacing:0.368880px;}
.ls24_c00197{letter-spacing:0.382800px;}
.ls51_c00197{letter-spacing:0.396720px;}
.ls25_c00197{letter-spacing:0.403680px;}
.ls28_c00197{letter-spacing:0.410640px;}
.ls39_c00197{letter-spacing:0.417600px;}
.ls14_c00197{letter-spacing:0.424560px;}
.ls19_c00197{letter-spacing:0.438480px;}
.ls6_c00197{letter-spacing:0.452400px;}
.ls12_c00197{letter-spacing:0.459360px;}
.lse_c00197{letter-spacing:0.460200px;}
.ls2c_c00197{letter-spacing:0.466320px;}
.ls3_c00197{letter-spacing:0.473280px;}
.ls37_c00197{letter-spacing:0.476100px;}
.ls86_c00197{letter-spacing:0.494160px;}
.ls53_c00197{letter-spacing:0.535920px;}
.ls13_c00197{letter-spacing:0.542880px;}
.ls48_c00197{letter-spacing:0.545100px;}
.ls33_c00197{letter-spacing:0.549840px;}
.ls3c_c00197{letter-spacing:0.552000px;}
.ls54_c00197{letter-spacing:0.556800px;}
.ls11_c00197{letter-spacing:0.586500px;}
.ls46_c00197{letter-spacing:0.591600px;}
.ls38_c00197{letter-spacing:0.605520px;}
.lsa_c00197{letter-spacing:0.647280px;}
.ls8_c00197{letter-spacing:0.654240px;}
.ls16_c00197{letter-spacing:0.675120px;}
.ls2e_c00197{letter-spacing:0.709920px;}
.ls10_c00197{letter-spacing:0.710700px;}
.ls21_c00197{letter-spacing:0.730800px;}
.ls32_c00197{letter-spacing:0.737760px;}
.ls1f_c00197{letter-spacing:0.758640px;}
.ls1b_c00197{letter-spacing:0.765600px;}
.ls36_c00197{letter-spacing:0.772800px;}
.ls23_c00197{letter-spacing:0.800400px;}
.ls45_c00197{letter-spacing:0.807360px;}
.ls44_c00197{letter-spacing:0.828000px;}
.ls1e_c00197{letter-spacing:0.863040px;}
.ls35_c00197{letter-spacing:0.883920px;}
.lsf_c00197{letter-spacing:0.890100px;}
.ls5c_c00197{letter-spacing:0.918720px;}
.ls47_c00197{letter-spacing:0.925680px;}
.ls3f_c00197{letter-spacing:0.966000px;}
.ls20_c00197{letter-spacing:1.002240px;}
.ls2_c00197{letter-spacing:1.037040px;}
.ls17_c00197{letter-spacing:1.127520px;}
.ls5_c00197{letter-spacing:1.398960px;}
.ls2b_c00197{letter-spacing:1.503360px;}
.ls56_c00197{letter-spacing:1.983600px;}
.ls9_c00197{letter-spacing:2.164560px;}
.ls4_c00197{letter-spacing:2.442960px;}
.lsd_c00197{letter-spacing:2.662080px;}
.ls62_c00197{letter-spacing:3.480000px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{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__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00197{word-spacing:0.000000px;}
.ws3_c00197{word-spacing:0.777600px;}
.ws0_c00197{word-spacing:2.434800px;}
.ws4_c00197{word-spacing:9.369000px;}
.ws1_c00197{word-spacing:19.140000px;}
.ws2_c00197{word-spacing:30.831600px;}
._6_c00197{margin-left:-7.235760px;}
._2_c00197{margin-left:-5.581920px;}
._5_c00197{margin-left:-3.542640px;}
._1_c00197{margin-left:-1.844400px;}
._4_c00197{width:1.795680px;}
._3_c00197{width:3.855840px;}
._0_c00197{width:5.823600px;}
._8_c00197{width:8.256480px;}
._7_c00197{width:10.161600px;}
._13_c00197{width:11.268240px;}
._15_c00197{width:12.653280px;}
._12_c00197{width:14.504640px;}
._14_c00197{width:15.694800px;}
._1a_c00197{width:16.836240px;}
._c_c00197{width:19.467120px;}
._a_c00197{width:20.504160px;}
._9_c00197{width:22.049280px;}
._b_c00197{width:23.232480px;}
._17_c00197{width:25.752000px;}
._19_c00197{width:26.871600px;}
._18_c00197{width:28.215840px;}
._16_c00197{width:29.808000px;}
._e_c00197{width:32.468400px;}
._f_c00197{width:34.284960px;}
._10_c00197{width:35.405520px;}
._11_c00197{width:36.888000px;}
._d_c00197{width:38.349600px;}
.fc0_c00197{color:transparent;}
.fs5_c00197{font-size:58.200000px;}
.fs4_c00197{font-size:66.600000px;}
.fs0_c00197{font-size:67.200000px;}
.fs1_c00197{font-size:69.000000px;}
.fs2_c00197{font-size:69.600000px;}
.fs3_c00197{font-size:70.800000px;}
.y0_c00197{bottom:0.000000px;}
.y21_c00197{bottom:69.480015px;}
.y20_c00197{bottom:129.232215px;}
.y1f_c00197{bottom:159.838815px;}
.y1e_c00197{bottom:190.080015px;}
.y1d_c00197{bottom:190.088415px;}
.y1c_c00197{bottom:220.695015px;}
.y1b_c00197{bottom:220.700415px;}
.y1a_c00197{bottom:251.655015px;}
.y19_c00197{bottom:313.575015px;}
.y18_c00197{bottom:376.573815px;}
.y17_c00197{bottom:406.815015px;}
.y16_c00197{bottom:406.822815px;}
.y15_c00197{bottom:437.763015px;}
.y14_c00197{bottom:468.735015px;}
.y13_c00197{bottom:499.335015px;}
.y12_c00197{bottom:561.255015px;}
.y10_c00197{bottom:592.568415px;}
.y11_c00197{bottom:592.575015px;}
.ye_c00197{bottom:623.173815px;}
.yf_c00197{bottom:623.175015px;}
.yd_c00197{bottom:653.763015px;}
.yc_c00197{bottom:684.735015px;}
.yb_c00197{bottom:715.341615px;}
.ya_c00197{bottom:746.296215px;}
.y9_c00197{bottom:777.250815px;}
.y8_c00197{bottom:807.840015px;}
.y7_c00197{bottom:869.415015px;}
.y6_c00197{bottom:930.615015px;}
.y5_c00197{bottom:992.180415px;}
.y4_c00197{bottom:1023.135015px;}
.y3_c00197{bottom:1083.615015px;}
.y2_c00197{bottom:1114.935015px;}
.y1_c00197{bottom:1190.520015px;}
.h7_c00197{height:57.120117px;}
.h6_c00197{height:65.364258px;}
.h2_c00197{height:65.953125px;}
.h5_c00197{height:67.686035px;}
.h3_c00197{height:68.308594px;}
.h4_c00197{height:69.451758px;}
.h1_c00197{height:1263.000000px;}
.h0_c00197{height:1263.240015px;}
.w1_c00197{width:892.500000px;}
.w0_c00197{width:892.800015px;}
.x0_c00197{left:0.000000px;}
.x17_c00197{left:123.256215px;}
.x7_c00197{left:124.518015px;}
.x1_c00197{left:125.925015px;}
.xc_c00197{left:178.005015px;}
.x2_c00197{left:179.085015px;}
.xa_c00197{left:205.320015px;}
.xb_c00197{left:224.820015px;}
.x15_c00197{left:290.370015px;}
.x16_c00197{left:312.690015px;}
.x3_c00197{left:327.870015px;}
.x18_c00197{left:426.090015px;}
.x8_c00197{left:432.210015px;}
.xe_c00197{left:433.680015px;}
.x9_c00197{left:448.395015px;}
.x10_c00197{left:449.550015px;}
.xf_c00197{left:456.900015px;}
.x11_c00197{left:481.140015px;}
.x4_c00197{left:559.575015px;}
.x5_c00197{left:576.165015px;}
.x6_c00197{left:603.885015px;}
.x12_c00197{left:704.805015px;}
.x13_c00197{left:710.835015px;}
.xd_c00197{left:736.095015px;}
.x14_c00197{left:737.850015px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls68_c00197{letter-spacing:-2.165333pt;}
.ls8c_c00197{letter-spacing:-2.146667pt;}
.ls58_c00197{letter-spacing:-2.090667pt;}
.ls93_c00197{letter-spacing:-2.072000pt;}
.ls67_c00197{letter-spacing:-2.004480pt;}
.ls61_c00197{letter-spacing:-1.985920pt;}
.ls9a_c00197{letter-spacing:-1.948800pt;}
.ls60_c00197{letter-spacing:-1.899307pt;}
.ls9e_c00197{letter-spacing:-1.831253pt;}
.lsa0_c00197{letter-spacing:-1.695147pt;}
.ls91_c00197{letter-spacing:-1.682773pt;}
.ls96_c00197{letter-spacing:-1.676587pt;}
.lsa3_c00197{letter-spacing:-1.664213pt;}
.ls6c_c00197{letter-spacing:-1.466240pt;}
.ls7d_c00197{letter-spacing:-1.361067pt;}
.ls66_c00197{letter-spacing:-1.336320pt;}
.ls5b_c00197{letter-spacing:-1.268267pt;}
.ls92_c00197{letter-spacing:-1.255893pt;}
.lsa1_c00197{letter-spacing:-1.194027pt;}
.lsa4_c00197{letter-spacing:-1.112267pt;}
.ls6e_c00197{letter-spacing:-1.082667pt;}
.ls64_c00197{letter-spacing:-1.057920pt;}
.ls9d_c00197{letter-spacing:-0.977493pt;}
.ls5e_c00197{letter-spacing:-0.946560pt;}
.ls5f_c00197{letter-spacing:-0.829013pt;}
.ls71_c00197{letter-spacing:-0.798080pt;}
.ls8a_c00197{letter-spacing:-0.754773pt;}
.ls83_c00197{letter-spacing:-0.674347pt;}
.ls7e_c00197{letter-spacing:-0.631040pt;}
.ls65_c00197{letter-spacing:-0.593920pt;}
.ls8d_c00197{letter-spacing:-0.569173pt;}
.ls74_c00197{letter-spacing:-0.556800pt;}
.ls63_c00197{letter-spacing:-0.532053pt;}
.ls72_c00197{letter-spacing:-0.519680pt;}
.ls5a_c00197{letter-spacing:-0.507307pt;}
.ls7b_c00197{letter-spacing:-0.488747pt;}
.ls88_c00197{letter-spacing:-0.482560pt;}
.ls94_c00197{letter-spacing:-0.420693pt;}
.ls6f_c00197{letter-spacing:-0.408320pt;}
.ls6b_c00197{letter-spacing:-0.402133pt;}
.ls8f_c00197{letter-spacing:-0.389760pt;}
.ls6d_c00197{letter-spacing:-0.383573pt;}
.ls76_c00197{letter-spacing:-0.352640pt;}
.ls73_c00197{letter-spacing:-0.340267pt;}
.ls77_c00197{letter-spacing:-0.321707pt;}
.ls6a_c00197{letter-spacing:-0.296960pt;}
.ls7c_c00197{letter-spacing:-0.284587pt;}
.ls5d_c00197{letter-spacing:-0.278400pt;}
.ls84_c00197{letter-spacing:-0.272213pt;}
.ls9f_c00197{letter-spacing:-0.204160pt;}
.ls90_c00197{letter-spacing:-0.196267pt;}
.ls87_c00197{letter-spacing:-0.185600pt;}
.ls99_c00197{letter-spacing:-0.167040pt;}
.ls7f_c00197{letter-spacing:-0.160853pt;}
.ls95_c00197{letter-spacing:-0.148480pt;}
.ls70_c00197{letter-spacing:-0.142293pt;}
.ls9b_c00197{letter-spacing:-0.136107pt;}
.ls78_c00197{letter-spacing:-0.129920pt;}
.ls75_c00197{letter-spacing:-0.123733pt;}
.ls98_c00197{letter-spacing:-0.117547pt;}
.ls81_c00197{letter-spacing:-0.086613pt;}
.ls7a_c00197{letter-spacing:-0.080427pt;}
.ls80_c00197{letter-spacing:-0.074240pt;}
.ls85_c00197{letter-spacing:-0.068053pt;}
.lsa2_c00197{letter-spacing:-0.061867pt;}
.ls89_c00197{letter-spacing:-0.043307pt;}
.ls82_c00197{letter-spacing:-0.030933pt;}
.ls69_c00197{letter-spacing:-0.024747pt;}
.ls9c_c00197{letter-spacing:-0.018560pt;}
.ls59_c00197{letter-spacing:0.000000pt;}
.ls0_c00197{letter-spacing:0.006133pt;}
.ls8e_c00197{letter-spacing:0.012373pt;}
.ls7_c00197{letter-spacing:0.018560pt;}
.ls22_c00197{letter-spacing:0.024747pt;}
.ls2a_c00197{letter-spacing:0.037120pt;}
.ls1d_c00197{letter-spacing:0.043307pt;}
.ls1a_c00197{letter-spacing:0.049493pt;}
.ls18_c00197{letter-spacing:0.055680pt;}
.ls27_c00197{letter-spacing:0.061867pt;}
.ls4b_c00197{letter-spacing:0.068053pt;}
.ls2d_c00197{letter-spacing:0.074240pt;}
.ls30_c00197{letter-spacing:0.080427pt;}
.ls3b_c00197{letter-spacing:0.092800pt;}
.lsc_c00197{letter-spacing:0.111360pt;}
.ls4a_c00197{letter-spacing:0.117547pt;}
.ls2f_c00197{letter-spacing:0.123733pt;}
.ls52_c00197{letter-spacing:0.136107pt;}
.ls97_c00197{letter-spacing:0.142293pt;}
.ls8b_c00197{letter-spacing:0.154667pt;}
.ls15_c00197{letter-spacing:0.160853pt;}
.ls1_c00197{letter-spacing:0.171733pt;}
.ls4e_c00197{letter-spacing:0.173227pt;}
.ls4d_c00197{letter-spacing:0.184000pt;}
.ls43_c00197{letter-spacing:0.190133pt;}
.ls50_c00197{letter-spacing:0.191787pt;}
.lsb_c00197{letter-spacing:0.197973pt;}
.ls3e_c00197{letter-spacing:0.202400pt;}
.ls41_c00197{letter-spacing:0.204160pt;}
.ls29_c00197{letter-spacing:0.210347pt;}
.ls3a_c00197{letter-spacing:0.222720pt;}
.ls4f_c00197{letter-spacing:0.228907pt;}
.ls26_c00197{letter-spacing:0.235093pt;}
.ls4c_c00197{letter-spacing:0.247467pt;}
.ls34_c00197{letter-spacing:0.253653pt;}
.ls40_c00197{letter-spacing:0.259840pt;}
.ls79_c00197{letter-spacing:0.266027pt;}
.ls49_c00197{letter-spacing:0.272213pt;}
.ls1c_c00197{letter-spacing:0.284587pt;}
.ls42_c00197{letter-spacing:0.290773pt;}
.ls31_c00197{letter-spacing:0.296960pt;}
.ls55_c00197{letter-spacing:0.303147pt;}
.ls57_c00197{letter-spacing:0.321707pt;}
.ls3d_c00197{letter-spacing:0.327893pt;}
.ls24_c00197{letter-spacing:0.340267pt;}
.ls51_c00197{letter-spacing:0.352640pt;}
.ls25_c00197{letter-spacing:0.358827pt;}
.ls28_c00197{letter-spacing:0.365013pt;}
.ls39_c00197{letter-spacing:0.371200pt;}
.ls14_c00197{letter-spacing:0.377387pt;}
.ls19_c00197{letter-spacing:0.389760pt;}
.ls6_c00197{letter-spacing:0.402133pt;}
.ls12_c00197{letter-spacing:0.408320pt;}
.lse_c00197{letter-spacing:0.409067pt;}
.ls2c_c00197{letter-spacing:0.414507pt;}
.ls3_c00197{letter-spacing:0.420693pt;}
.ls37_c00197{letter-spacing:0.423200pt;}
.ls86_c00197{letter-spacing:0.439253pt;}
.ls53_c00197{letter-spacing:0.476373pt;}
.ls13_c00197{letter-spacing:0.482560pt;}
.ls48_c00197{letter-spacing:0.484533pt;}
.ls33_c00197{letter-spacing:0.488747pt;}
.ls3c_c00197{letter-spacing:0.490667pt;}
.ls54_c00197{letter-spacing:0.494933pt;}
.ls11_c00197{letter-spacing:0.521333pt;}
.ls46_c00197{letter-spacing:0.525867pt;}
.ls38_c00197{letter-spacing:0.538240pt;}
.lsa_c00197{letter-spacing:0.575360pt;}
.ls8_c00197{letter-spacing:0.581547pt;}
.ls16_c00197{letter-spacing:0.600107pt;}
.ls2e_c00197{letter-spacing:0.631040pt;}
.ls10_c00197{letter-spacing:0.631733pt;}
.ls21_c00197{letter-spacing:0.649600pt;}
.ls32_c00197{letter-spacing:0.655787pt;}
.ls1f_c00197{letter-spacing:0.674347pt;}
.ls1b_c00197{letter-spacing:0.680533pt;}
.ls36_c00197{letter-spacing:0.686933pt;}
.ls23_c00197{letter-spacing:0.711467pt;}
.ls45_c00197{letter-spacing:0.717653pt;}
.ls44_c00197{letter-spacing:0.736000pt;}
.ls1e_c00197{letter-spacing:0.767147pt;}
.ls35_c00197{letter-spacing:0.785707pt;}
.lsf_c00197{letter-spacing:0.791200pt;}
.ls5c_c00197{letter-spacing:0.816640pt;}
.ls47_c00197{letter-spacing:0.822827pt;}
.ls3f_c00197{letter-spacing:0.858667pt;}
.ls20_c00197{letter-spacing:0.890880pt;}
.ls2_c00197{letter-spacing:0.921813pt;}
.ls17_c00197{letter-spacing:1.002240pt;}
.ls5_c00197{letter-spacing:1.243520pt;}
.ls2b_c00197{letter-spacing:1.336320pt;}
.ls56_c00197{letter-spacing:1.763200pt;}
.ls9_c00197{letter-spacing:1.924053pt;}
.ls4_c00197{letter-spacing:2.171520pt;}
.lsd_c00197{letter-spacing:2.366293pt;}
.ls62_c00197{letter-spacing:3.093333pt;}
.ws5_c00197{word-spacing:0.000000pt;}
.ws3_c00197{word-spacing:0.691200pt;}
.ws0_c00197{word-spacing:2.164267pt;}
.ws4_c00197{word-spacing:8.328000pt;}
.ws1_c00197{word-spacing:17.013333pt;}
.ws2_c00197{word-spacing:27.405867pt;}
._6_c00197{margin-left:-6.431787pt;}
._2_c00197{margin-left:-4.961707pt;}
._5_c00197{margin-left:-3.149013pt;}
._1_c00197{margin-left:-1.639467pt;}
._4_c00197{width:1.596160pt;}
._3_c00197{width:3.427413pt;}
._0_c00197{width:5.176533pt;}
._8_c00197{width:7.339093pt;}
._7_c00197{width:9.032533pt;}
._13_c00197{width:10.016213pt;}
._15_c00197{width:11.247360pt;}
._12_c00197{width:12.893013pt;}
._14_c00197{width:13.950933pt;}
._1a_c00197{width:14.965547pt;}
._c_c00197{width:17.304107pt;}
._a_c00197{width:18.225920pt;}
._9_c00197{width:19.599360pt;}
._b_c00197{width:20.651093pt;}
._17_c00197{width:22.890667pt;}
._19_c00197{width:23.885867pt;}
._18_c00197{width:25.080747pt;}
._16_c00197{width:26.496000pt;}
._e_c00197{width:28.860800pt;}
._f_c00197{width:30.475520pt;}
._10_c00197{width:31.471573pt;}
._11_c00197{width:32.789333pt;}
._d_c00197{width:34.088533pt;}
.fs5_c00197{font-size:51.733333pt;}
.fs4_c00197{font-size:59.200000pt;}
.fs0_c00197{font-size:59.733333pt;}
.fs1_c00197{font-size:61.333333pt;}
.fs2_c00197{font-size:61.866667pt;}
.fs3_c00197{font-size:62.933333pt;}
.y0_c00197{bottom:0.000000pt;}
.y21_c00197{bottom:61.760013pt;}
.y20_c00197{bottom:114.873080pt;}
.y1f_c00197{bottom:142.078947pt;}
.y1e_c00197{bottom:168.960013pt;}
.y1d_c00197{bottom:168.967480pt;}
.y1c_c00197{bottom:196.173347pt;}
.y1b_c00197{bottom:196.178147pt;}
.y1a_c00197{bottom:223.693347pt;}
.y19_c00197{bottom:278.733347pt;}
.y18_c00197{bottom:334.732280pt;}
.y17_c00197{bottom:361.613347pt;}
.y16_c00197{bottom:361.620280pt;}
.y15_c00197{bottom:389.122680pt;}
.y14_c00197{bottom:416.653347pt;}
.y13_c00197{bottom:443.853347pt;}
.y12_c00197{bottom:498.893347pt;}
.y10_c00197{bottom:526.727480pt;}
.y11_c00197{bottom:526.733347pt;}
.ye_c00197{bottom:553.932280pt;}
.yf_c00197{bottom:553.933347pt;}
.yd_c00197{bottom:581.122680pt;}
.yc_c00197{bottom:608.653347pt;}
.yb_c00197{bottom:635.859213pt;}
.ya_c00197{bottom:663.374413pt;}
.y9_c00197{bottom:690.889613pt;}
.y8_c00197{bottom:718.080013pt;}
.y7_c00197{bottom:772.813347pt;}
.y6_c00197{bottom:827.213347pt;}
.y5_c00197{bottom:881.938147pt;}
.y4_c00197{bottom:909.453347pt;}
.y3_c00197{bottom:963.213347pt;}
.y2_c00197{bottom:991.053347pt;}
.y1_c00197{bottom:1058.240013pt;}
.h7_c00197{height:50.773437pt;}
.h6_c00197{height:58.101562pt;}
.h2_c00197{height:58.625000pt;}
.h5_c00197{height:60.165365pt;}
.h3_c00197{height:60.718750pt;}
.h4_c00197{height:61.734896pt;}
.h1_c00197{height:1122.666667pt;}
.h0_c00197{height:1122.880013pt;}
.w1_c00197{width:793.333333pt;}
.w0_c00197{width:793.600013pt;}
.x0_c00197{left:0.000000pt;}
.x17_c00197{left:109.561080pt;}
.x7_c00197{left:110.682680pt;}
.x1_c00197{left:111.933347pt;}
.xc_c00197{left:158.226680pt;}
.x2_c00197{left:159.186680pt;}
.xa_c00197{left:182.506680pt;}
.xb_c00197{left:199.840013pt;}
.x15_c00197{left:258.106680pt;}
.x16_c00197{left:277.946680pt;}
.x3_c00197{left:291.440013pt;}
.x18_c00197{left:378.746680pt;}
.x8_c00197{left:384.186680pt;}
.xe_c00197{left:385.493347pt;}
.x9_c00197{left:398.573347pt;}
.x10_c00197{left:399.600013pt;}
.xf_c00197{left:406.133347pt;}
.x11_c00197{left:427.680013pt;}
.x4_c00197{left:497.400013pt;}
.x5_c00197{left:512.146680pt;}
.x6_c00197{left:536.786680pt;}
.x12_c00197{left:626.493347pt;}
.x13_c00197{left:631.853347pt;}
.xd_c00197{left:654.306680pt;}
.x14_c00197{left:655.866680pt;}
}





/* 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_c00198 {
    display:none;
  }
  .loading-indicator_c00198.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00198 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_c00198 { 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_c00198" -> "#page-container .classname_c00198")
 */
.pf_c00198 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00198 { /* 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_c00198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00198 { /* 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_c00198 { /* 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_c00198 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00198 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00198 {overflow:visible;}
  }
}
.c_c00198 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00198 { /* 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_c00198:after { /* webkit #35443 */
  content: '';
}
.t_c00198:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00198 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 */
}
.__c00198 { /* 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_c00198 { /* info for Javascript */
  display:none;
}
.l_c00198 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00198 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00198 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00198: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_c00198 {
    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_c00198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00198.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_c00198 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00198;src:url('chunks/assets/font_7df026f06725e816e58bd872.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.284668;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_c00198;src:url('chunks/assets/font_13b2f51e17202727bb39bdf1.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.284180;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_c00198;src:url('chunks/assets/font_a5117b445b44743c5b47b329.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;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:ff4_c00198;src:url('chunks/assets/font_3286e0143c6e07c5a94f5ce0.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:0.666000;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;}
.md_c00198{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.mc_c00198{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m9_c00198{transform:matrix(0.229117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229117,0.000000,0.000000,0.250000,0,0);}
.mb_c00198{transform:matrix(0.235706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235706,0.000000,0.000000,0.250000,0,0);}
.ma_c00198{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m6_c00198{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m8_c00198{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m7_c00198{transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);}
.m2_c00198{transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);}
.m1_c00198{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m0_c00198{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);}
.m4_c00198{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m3_c00198{transform:matrix(0.254970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254970,0.000000,0.000000,0.250000,0,0);}
.m5_c00198{transform:matrix(0.255989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255989,0.000000,0.000000,0.250000,0,0);}
.me_c00198{transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.v1_c00198{vertical-align:28.860000px;}
.ls8f_c00198{letter-spacing:-3.234000px;}
.ls33_c00198{letter-spacing:-2.478000px;}
.ls5d_c00198{letter-spacing:-2.308080px;}
.ls61_c00198{letter-spacing:-2.279760px;}
.ls88_c00198{letter-spacing:-2.138160px;}
.ls4b_c00198{letter-spacing:-2.060280px;}
.ls85_c00198{letter-spacing:-1.854960px;}
.ls4f_c00198{letter-spacing:-1.600080px;}
.ls77_c00198{letter-spacing:-1.444320px;}
.ls40_c00198{letter-spacing:-1.323960px;}
.ls53_c00198{letter-spacing:-1.295640px;}
.ls3b_c00198{letter-spacing:-1.281480px;}
.ls8e_c00198{letter-spacing:-1.253160px;}
.ls90_c00198{letter-spacing:-1.251300px;}
.ls66_c00198{letter-spacing:-1.175280px;}
.ls83_c00198{letter-spacing:-1.146960px;}
.ls31_c00198{letter-spacing:-1.139880px;}
.ls4e_c00198{letter-spacing:-1.118640px;}
.ls39_c00198{letter-spacing:-1.047840px;}
.ls34_c00198{letter-spacing:-0.969960px;}
.ls55_c00198{letter-spacing:-0.955800px;}
.ls6c_c00198{letter-spacing:-0.934560px;}
.ls75_c00198{letter-spacing:-0.927480px;}
.ls81_c00198{letter-spacing:-0.906240px;}
.ls46_c00198{letter-spacing:-0.899160px;}
.ls63_c00198{letter-spacing:-0.863760px;}
.ls67_c00198{letter-spacing:-0.835440px;}
.ls43_c00198{letter-spacing:-0.828360px;}
.ls76_c00198{letter-spacing:-0.814200px;}
.ls5c_c00198{letter-spacing:-0.800040px;}
.ls5b_c00198{letter-spacing:-0.743400px;}
.ls65_c00198{letter-spacing:-0.700920px;}
.ls56_c00198{letter-spacing:-0.672600px;}
.ls8d_c00198{letter-spacing:-0.665520px;}
.ls54_c00198{letter-spacing:-0.644280px;}
.ls7e_c00198{letter-spacing:-0.637200px;}
.ls8b_c00198{letter-spacing:-0.630120px;}
.ls59_c00198{letter-spacing:-0.623040px;}
.ls44_c00198{letter-spacing:-0.615960px;}
.ls6a_c00198{letter-spacing:-0.594720px;}
.ls35_c00198{letter-spacing:-0.566400px;}
.ls7b_c00198{letter-spacing:-0.545160px;}
.ls38_c00198{letter-spacing:-0.531000px;}
.ls60_c00198{letter-spacing:-0.516840px;}
.ls36_c00198{letter-spacing:-0.509760px;}
.ls5f_c00198{letter-spacing:-0.488520px;}
.ls5a_c00198{letter-spacing:-0.474360px;}
.ls45_c00198{letter-spacing:-0.460200px;}
.ls87_c00198{letter-spacing:-0.453120px;}
.ls42_c00198{letter-spacing:-0.446040px;}
.ls8c_c00198{letter-spacing:-0.438960px;}
.ls70_c00198{letter-spacing:-0.403560px;}
.ls6e_c00198{letter-spacing:-0.396480px;}
.ls49_c00198{letter-spacing:-0.389400px;}
.ls80_c00198{letter-spacing:-0.361080px;}
.ls6f_c00198{letter-spacing:-0.354000px;}
.ls72_c00198{letter-spacing:-0.346920px;}
.ls69_c00198{letter-spacing:-0.339840px;}
.ls62_c00198{letter-spacing:-0.325680px;}
.ls4a_c00198{letter-spacing:-0.318600px;}
.ls47_c00198{letter-spacing:-0.311520px;}
.ls79_c00198{letter-spacing:-0.290280px;}
.ls78_c00198{letter-spacing:-0.283200px;}
.ls89_c00198{letter-spacing:-0.269040px;}
.ls48_c00198{letter-spacing:-0.247800px;}
.ls4d_c00198{letter-spacing:-0.240720px;}
.ls7c_c00198{letter-spacing:-0.233640px;}
.ls71_c00198{letter-spacing:-0.226560px;}
.ls82_c00198{letter-spacing:-0.219480px;}
.ls6d_c00198{letter-spacing:-0.212400px;}
.ls7a_c00198{letter-spacing:-0.205320px;}
.ls4c_c00198{letter-spacing:-0.198240px;}
.ls3d_c00198{letter-spacing:-0.184080px;}
.ls32_c00198{letter-spacing:-0.169920px;}
.ls86_c00198{letter-spacing:-0.162840px;}
.ls68_c00198{letter-spacing:-0.155760px;}
.ls7f_c00198{letter-spacing:-0.148680px;}
.ls84_c00198{letter-spacing:-0.141600px;}
.ls6b_c00198{letter-spacing:-0.134520px;}
.ls74_c00198{letter-spacing:-0.120360px;}
.ls52_c00198{letter-spacing:-0.116280px;}
.ls3a_c00198{letter-spacing:-0.113280px;}
.ls3c_c00198{letter-spacing:-0.106200px;}
.ls8a_c00198{letter-spacing:-0.099120px;}
.ls73_c00198{letter-spacing:-0.092040px;}
.ls37_c00198{letter-spacing:-0.077880px;}
.ls7d_c00198{letter-spacing:-0.049560px;}
.ls5e_c00198{letter-spacing:-0.042480px;}
.ls50_c00198{letter-spacing:-0.035400px;}
.ls57_c00198{letter-spacing:-0.028320px;}
.ls58_c00198{letter-spacing:-0.021240px;}
.ls41_c00198{letter-spacing:0.000000px;}
.lsb_c00198{letter-spacing:0.014160px;}
.lsc_c00198{letter-spacing:0.028320px;}
.ls29_c00198{letter-spacing:0.042480px;}
.ls2_c00198{letter-spacing:0.070800px;}
.ls23_c00198{letter-spacing:0.077880px;}
.ls11_c00198{letter-spacing:0.084960px;}
.ls20_c00198{letter-spacing:0.092040px;}
.ls9_c00198{letter-spacing:0.106200px;}
.ls21_c00198{letter-spacing:0.134520px;}
.ls3_c00198{letter-spacing:0.141600px;}
.ls2e_c00198{letter-spacing:0.148680px;}
.ls3e_c00198{letter-spacing:0.169920px;}
.ls12_c00198{letter-spacing:0.184080px;}
.ls2b_c00198{letter-spacing:0.205320px;}
.ls1c_c00198{letter-spacing:0.212400px;}
.ls1a_c00198{letter-spacing:0.219480px;}
.ls7_c00198{letter-spacing:0.233640px;}
.lsf_c00198{letter-spacing:0.240720px;}
.ls18_c00198{letter-spacing:0.247800px;}
.ls13_c00198{letter-spacing:0.276120px;}
.ls6_c00198{letter-spacing:0.318600px;}
.ls0_c00198{letter-spacing:0.325680px;}
.ls26_c00198{letter-spacing:0.332760px;}
.ls25_c00198{letter-spacing:0.346920px;}
.ls28_c00198{letter-spacing:0.410640px;}
.ls1f_c00198{letter-spacing:0.438960px;}
.ls1e_c00198{letter-spacing:0.446040px;}
.ls24_c00198{letter-spacing:0.467280px;}
.ls2f_c00198{letter-spacing:0.502680px;}
.ls5_c00198{letter-spacing:0.538080px;}
.lse_c00198{letter-spacing:0.642960px;}
.ls15_c00198{letter-spacing:0.644280px;}
.lsd_c00198{letter-spacing:0.656640px;}
.ls10_c00198{letter-spacing:0.729240px;}
.ls1b_c00198{letter-spacing:0.778800px;}
.ls27_c00198{letter-spacing:0.821280px;}
.ls2d_c00198{letter-spacing:0.841320px;}
.ls1_c00198{letter-spacing:0.870840px;}
.ls2a_c00198{letter-spacing:0.906240px;}
.ls8_c00198{letter-spacing:0.927480px;}
.ls91_c00198{letter-spacing:1.050030px;}
.ls19_c00198{letter-spacing:1.101240px;}
.ls17_c00198{letter-spacing:1.108080px;}
.ls4_c00198{letter-spacing:1.128600px;}
.ls2c_c00198{letter-spacing:1.190160px;}
.lsa_c00198{letter-spacing:1.338120px;}
.ls16_c00198{letter-spacing:1.648440px;}
.ls30_c00198{letter-spacing:1.714980px;}
.ls64_c00198{letter-spacing:1.762920px;}
.ls22_c00198{letter-spacing:2.088600px;}
.ls14_c00198{letter-spacing:2.694960px;}
.ls1d_c00198{letter-spacing:2.810760px;}
.ls51_c00198{letter-spacing:3.420000px;}
.ls3f_c00198{letter-spacing:3.540000px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{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__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00198{word-spacing:-16.446840px;}
.ws6_c00198{word-spacing:0.000000px;}
.ws3_c00198{word-spacing:1.046160px;}
.ws0_c00198{word-spacing:1.103400px;}
.ws1_c00198{word-spacing:12.029040px;}
.ws2_c00198{word-spacing:12.786240px;}
.ws4_c00198{word-spacing:29.539200px;}
._1a_c00198{margin-left:-15.706920px;}
._9_c00198{margin-left:-5.104680px;}
._16_c00198{margin-left:-2.881560px;}
._7_c00198{margin-left:-1.508040px;}
._6_c00198{width:1.345200px;}
._5_c00198{width:2.973600px;}
._f_c00198{width:4.324080px;}
._8_c00198{width:5.338320px;}
._c_c00198{width:7.087080px;}
._e_c00198{width:9.049800px;}
._b_c00198{width:10.506720px;}
._a_c00198{width:11.860560px;}
._15_c00198{width:13.035720px;}
._d_c00198{width:14.115960px;}
._12_c00198{width:15.696360px;}
._10_c00198{width:18.323040px;}
._11_c00198{width:19.880640px;}
._13_c00198{width:23.135880px;}
._17_c00198{width:24.624240px;}
._18_c00198{width:26.939400px;}
._19_c00198{width:27.966000px;}
._14_c00198{width:31.668840px;}
._0_c00198{width:33.205200px;}
._4_c00198{width:35.803560px;}
._3_c00198{width:38.232000px;}
._1_c00198{width:39.400200px;}
._2_c00198{width:41.099400px;}
.fc0_c00198{color:transparent;}
.fsa_c00198{font-size:14.400000px;}
.fsd_c00198{font-size:19.800600px;}
.fsc_c00198{font-size:21.000600px;}
.fs6_c00198{font-size:30.600000px;}
.fsb_c00198{font-size:37.440000px;}
.fs4_c00198{font-size:54.720000px;}
.fs7_c00198{font-size:58.200000px;}
.fs0_c00198{font-size:60.600000px;}
.fs9_c00198{font-size:66.000000px;}
.fs3_c00198{font-size:67.200000px;}
.fs2_c00198{font-size:68.400000px;}
.fs1_c00198{font-size:70.800000px;}
.fs8_c00198{font-size:76.800000px;}
.fs5_c00198{font-size:92.400000px;}
.y0_c00198{bottom:0.000000px;}
.y21_c00198{bottom:70.215015px;}
.y20_c00198{bottom:128.880015px;}
.y1f_c00198{bottom:128.882715px;}
.y1e_c00198{bottom:159.834015px;}
.y1d_c00198{bottom:190.455015px;}
.y1c_c00198{bottom:252.375015px;}
.y1b_c00198{bottom:316.091715px;}
.y19_c00198{bottom:346.694415px;}
.y1a_c00198{bottom:346.695015px;}
.y18_c00198{bottom:377.297715px;}
.y17_c00198{bottom:408.257715px;}
.y16_c00198{bottom:439.215015px;}
.y15_c00198{bottom:439.220415px;}
.y14_c00198{bottom:470.177715px;}
.y13_c00198{bottom:501.135015px;}
.y27_c00198{bottom:527.400015px;}
.y12_c00198{bottom:531.735015px;}
.y11_c00198{bottom:531.743715px;}
.y26_c00198{bottom:533.175015px;}
.y25_c00198{bottom:539.655015px;}
.y24_c00198{bottom:552.600015px;}
.y10_c00198{bottom:563.055015px;}
.y23_c00198{bottom:615.600015px;}
.y22_c00198{bottom:619.215015px;}
.yf_c00198{bottom:624.975015px;}
.ye_c00198{bottom:655.575015px;}
.yd_c00198{bottom:717.135015px;}
.yc_c00198{bottom:717.140415px;}
.yb_c00198{bottom:779.055015px;}
.ya_c00198{bottom:809.280015px;}
.y9_c00198{bottom:871.914015px;}
.y8_c00198{bottom:902.535015px;}
.y7_c00198{bottom:933.120015px;}
.y6_c00198{bottom:994.695015px;}
.y5_c00198{bottom:1025.280015px;}
.y3_c00198{bottom:1087.214415px;}
.y4_c00198{bottom:1087.215015px;}
.y2_c00198{bottom:1117.800015px;}
.y1_c00198{bottom:1194.855015px;}
.he_c00198{height:9.590400px;}
.h11_c00198{height:19.433206px;}
.h10_c00198{height:21.902970px;}
.hf_c00198{height:24.935040px;}
.h7_c00198{height:36.443520px;}
.hb_c00198{height:57.120117px;}
.h2_c00198{height:59.475586px;}
.h4_c00198{height:67.097461px;}
.hd_c00198{height:68.835938px;}
.h3_c00198{height:69.486328px;}
.h8_c00198{height:69.510328px;}
.h5_c00198{height:70.076700px;}
.h6_c00198{height:70.100700px;}
.hc_c00198{height:80.100000px;}
.h9_c00198{height:96.359512px;}
.ha_c00198{height:96.370313px;}
.h1_c00198{height:1263.000000px;}
.h0_c00198{height:1263.240015px;}
.w1_c00198{width:892.500000px;}
.w0_c00198{width:892.800000px;}
.x0_c00198{left:0.000000px;}
.x1e_c00198{left:117.454200px;}
.x1b_c00198{left:119.112900px;}
.x9_c00198{left:122.475000px;}
.x2_c00198{left:124.035000px;}
.x1_c00198{left:125.565000px;}
.x21_c00198{left:171.525000px;}
.xf_c00198{left:173.055000px;}
.x12_c00198{left:174.152100px;}
.xa_c00198{left:175.485000px;}
.x6_c00198{left:176.565000px;}
.x10_c00198{left:215.745000px;}
.x11_c00198{left:241.005000px;}
.xd_c00198{left:281.430000px;}
.x5_c00198{left:296.820000px;}
.x3_c00198{left:358.395000px;}
.x13_c00198{left:370.605000px;}
.x4_c00198{left:388.050000px;}
.x14_c00198{left:398.685000px;}
.x26_c00198{left:422.850000px;}
.x22_c00198{left:442.440000px;}
.xb_c00198{left:457.770000px;}
.x1f_c00198{left:461.355000px;}
.x23_c00198{left:474.300000px;}
.xc_c00198{left:475.440000px;}
.x20_c00198{left:484.410000px;}
.x1d_c00198{left:543.075000px;}
.x19_c00198{left:567.195000px;}
.x1a_c00198{left:591.225000px;}
.xe_c00198{left:610.680000px;}
.x15_c00198{left:644.910000px;}
.x25_c00198{left:652.065000px;}
.x16_c00198{left:661.845000px;}
.x17_c00198{left:691.665000px;}
.x24_c00198{left:699.495000px;}
.x7_c00198{left:702.075000px;}
.x18_c00198{left:717.105000px;}
.x1c_c00198{left:735.675000px;}
.x8_c00198{left:738.915000px;}
.x28_c00198{left:851.895000px;}
.x27_c00198{left:852.945000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.v1_c00198{vertical-align:25.653333pt;}
.ls8f_c00198{letter-spacing:-2.874667pt;}
.ls33_c00198{letter-spacing:-2.202667pt;}
.ls5d_c00198{letter-spacing:-2.051627pt;}
.ls61_c00198{letter-spacing:-2.026453pt;}
.ls88_c00198{letter-spacing:-1.900587pt;}
.ls4b_c00198{letter-spacing:-1.831360pt;}
.ls85_c00198{letter-spacing:-1.648853pt;}
.ls4f_c00198{letter-spacing:-1.422293pt;}
.ls77_c00198{letter-spacing:-1.283840pt;}
.ls40_c00198{letter-spacing:-1.176853pt;}
.ls53_c00198{letter-spacing:-1.151680pt;}
.ls3b_c00198{letter-spacing:-1.139093pt;}
.ls8e_c00198{letter-spacing:-1.113920pt;}
.ls90_c00198{letter-spacing:-1.112267pt;}
.ls66_c00198{letter-spacing:-1.044693pt;}
.ls83_c00198{letter-spacing:-1.019520pt;}
.ls31_c00198{letter-spacing:-1.013227pt;}
.ls4e_c00198{letter-spacing:-0.994347pt;}
.ls39_c00198{letter-spacing:-0.931413pt;}
.ls34_c00198{letter-spacing:-0.862187pt;}
.ls55_c00198{letter-spacing:-0.849600pt;}
.ls6c_c00198{letter-spacing:-0.830720pt;}
.ls75_c00198{letter-spacing:-0.824427pt;}
.ls81_c00198{letter-spacing:-0.805547pt;}
.ls46_c00198{letter-spacing:-0.799253pt;}
.ls63_c00198{letter-spacing:-0.767787pt;}
.ls67_c00198{letter-spacing:-0.742613pt;}
.ls43_c00198{letter-spacing:-0.736320pt;}
.ls76_c00198{letter-spacing:-0.723733pt;}
.ls5c_c00198{letter-spacing:-0.711147pt;}
.ls5b_c00198{letter-spacing:-0.660800pt;}
.ls65_c00198{letter-spacing:-0.623040pt;}
.ls56_c00198{letter-spacing:-0.597867pt;}
.ls8d_c00198{letter-spacing:-0.591573pt;}
.ls54_c00198{letter-spacing:-0.572693pt;}
.ls7e_c00198{letter-spacing:-0.566400pt;}
.ls8b_c00198{letter-spacing:-0.560107pt;}
.ls59_c00198{letter-spacing:-0.553813pt;}
.ls44_c00198{letter-spacing:-0.547520pt;}
.ls6a_c00198{letter-spacing:-0.528640pt;}
.ls35_c00198{letter-spacing:-0.503467pt;}
.ls7b_c00198{letter-spacing:-0.484587pt;}
.ls38_c00198{letter-spacing:-0.472000pt;}
.ls60_c00198{letter-spacing:-0.459413pt;}
.ls36_c00198{letter-spacing:-0.453120pt;}
.ls5f_c00198{letter-spacing:-0.434240pt;}
.ls5a_c00198{letter-spacing:-0.421653pt;}
.ls45_c00198{letter-spacing:-0.409067pt;}
.ls87_c00198{letter-spacing:-0.402773pt;}
.ls42_c00198{letter-spacing:-0.396480pt;}
.ls8c_c00198{letter-spacing:-0.390187pt;}
.ls70_c00198{letter-spacing:-0.358720pt;}
.ls6e_c00198{letter-spacing:-0.352427pt;}
.ls49_c00198{letter-spacing:-0.346133pt;}
.ls80_c00198{letter-spacing:-0.320960pt;}
.ls6f_c00198{letter-spacing:-0.314667pt;}
.ls72_c00198{letter-spacing:-0.308373pt;}
.ls69_c00198{letter-spacing:-0.302080pt;}
.ls62_c00198{letter-spacing:-0.289493pt;}
.ls4a_c00198{letter-spacing:-0.283200pt;}
.ls47_c00198{letter-spacing:-0.276907pt;}
.ls79_c00198{letter-spacing:-0.258027pt;}
.ls78_c00198{letter-spacing:-0.251733pt;}
.ls89_c00198{letter-spacing:-0.239147pt;}
.ls48_c00198{letter-spacing:-0.220267pt;}
.ls4d_c00198{letter-spacing:-0.213973pt;}
.ls7c_c00198{letter-spacing:-0.207680pt;}
.ls71_c00198{letter-spacing:-0.201387pt;}
.ls82_c00198{letter-spacing:-0.195093pt;}
.ls6d_c00198{letter-spacing:-0.188800pt;}
.ls7a_c00198{letter-spacing:-0.182507pt;}
.ls4c_c00198{letter-spacing:-0.176213pt;}
.ls3d_c00198{letter-spacing:-0.163627pt;}
.ls32_c00198{letter-spacing:-0.151040pt;}
.ls86_c00198{letter-spacing:-0.144747pt;}
.ls68_c00198{letter-spacing:-0.138453pt;}
.ls7f_c00198{letter-spacing:-0.132160pt;}
.ls84_c00198{letter-spacing:-0.125867pt;}
.ls6b_c00198{letter-spacing:-0.119573pt;}
.ls74_c00198{letter-spacing:-0.106987pt;}
.ls52_c00198{letter-spacing:-0.103360pt;}
.ls3a_c00198{letter-spacing:-0.100693pt;}
.ls3c_c00198{letter-spacing:-0.094400pt;}
.ls8a_c00198{letter-spacing:-0.088107pt;}
.ls73_c00198{letter-spacing:-0.081813pt;}
.ls37_c00198{letter-spacing:-0.069227pt;}
.ls7d_c00198{letter-spacing:-0.044053pt;}
.ls5e_c00198{letter-spacing:-0.037760pt;}
.ls50_c00198{letter-spacing:-0.031467pt;}
.ls57_c00198{letter-spacing:-0.025173pt;}
.ls58_c00198{letter-spacing:-0.018880pt;}
.ls41_c00198{letter-spacing:0.000000pt;}
.lsb_c00198{letter-spacing:0.012587pt;}
.lsc_c00198{letter-spacing:0.025173pt;}
.ls29_c00198{letter-spacing:0.037760pt;}
.ls2_c00198{letter-spacing:0.062933pt;}
.ls23_c00198{letter-spacing:0.069227pt;}
.ls11_c00198{letter-spacing:0.075520pt;}
.ls20_c00198{letter-spacing:0.081813pt;}
.ls9_c00198{letter-spacing:0.094400pt;}
.ls21_c00198{letter-spacing:0.119573pt;}
.ls3_c00198{letter-spacing:0.125867pt;}
.ls2e_c00198{letter-spacing:0.132160pt;}
.ls3e_c00198{letter-spacing:0.151040pt;}
.ls12_c00198{letter-spacing:0.163627pt;}
.ls2b_c00198{letter-spacing:0.182507pt;}
.ls1c_c00198{letter-spacing:0.188800pt;}
.ls1a_c00198{letter-spacing:0.195093pt;}
.ls7_c00198{letter-spacing:0.207680pt;}
.lsf_c00198{letter-spacing:0.213973pt;}
.ls18_c00198{letter-spacing:0.220267pt;}
.ls13_c00198{letter-spacing:0.245440pt;}
.ls6_c00198{letter-spacing:0.283200pt;}
.ls0_c00198{letter-spacing:0.289493pt;}
.ls26_c00198{letter-spacing:0.295787pt;}
.ls25_c00198{letter-spacing:0.308373pt;}
.ls28_c00198{letter-spacing:0.365013pt;}
.ls1f_c00198{letter-spacing:0.390187pt;}
.ls1e_c00198{letter-spacing:0.396480pt;}
.ls24_c00198{letter-spacing:0.415360pt;}
.ls2f_c00198{letter-spacing:0.446827pt;}
.ls5_c00198{letter-spacing:0.478293pt;}
.lse_c00198{letter-spacing:0.571520pt;}
.ls15_c00198{letter-spacing:0.572693pt;}
.lsd_c00198{letter-spacing:0.583680pt;}
.ls10_c00198{letter-spacing:0.648213pt;}
.ls1b_c00198{letter-spacing:0.692267pt;}
.ls27_c00198{letter-spacing:0.730027pt;}
.ls2d_c00198{letter-spacing:0.747840pt;}
.ls1_c00198{letter-spacing:0.774080pt;}
.ls2a_c00198{letter-spacing:0.805547pt;}
.ls8_c00198{letter-spacing:0.824427pt;}
.ls91_c00198{letter-spacing:0.933360pt;}
.ls19_c00198{letter-spacing:0.978880pt;}
.ls17_c00198{letter-spacing:0.984960pt;}
.ls4_c00198{letter-spacing:1.003200pt;}
.ls2c_c00198{letter-spacing:1.057920pt;}
.lsa_c00198{letter-spacing:1.189440pt;}
.ls16_c00198{letter-spacing:1.465280pt;}
.ls30_c00198{letter-spacing:1.524427pt;}
.ls64_c00198{letter-spacing:1.567040pt;}
.ls22_c00198{letter-spacing:1.856533pt;}
.ls14_c00198{letter-spacing:2.395520pt;}
.ls1d_c00198{letter-spacing:2.498453pt;}
.ls51_c00198{letter-spacing:3.040000pt;}
.ls3f_c00198{letter-spacing:3.146667pt;}
.ws5_c00198{word-spacing:-14.619413pt;}
.ws6_c00198{word-spacing:0.000000pt;}
.ws3_c00198{word-spacing:0.929920pt;}
.ws0_c00198{word-spacing:0.980800pt;}
.ws1_c00198{word-spacing:10.692480pt;}
.ws2_c00198{word-spacing:11.365547pt;}
.ws4_c00198{word-spacing:26.257067pt;}
._1a_c00198{margin-left:-13.961707pt;}
._9_c00198{margin-left:-4.537493pt;}
._16_c00198{margin-left:-2.561387pt;}
._7_c00198{margin-left:-1.340480pt;}
._6_c00198{width:1.195733pt;}
._5_c00198{width:2.643200pt;}
._f_c00198{width:3.843627pt;}
._8_c00198{width:4.745173pt;}
._c_c00198{width:6.299627pt;}
._e_c00198{width:8.044267pt;}
._b_c00198{width:9.339307pt;}
._a_c00198{width:10.542720pt;}
._15_c00198{width:11.587307pt;}
._d_c00198{width:12.547520pt;}
._12_c00198{width:13.952320pt;}
._10_c00198{width:16.287147pt;}
._11_c00198{width:17.671680pt;}
._13_c00198{width:20.565227pt;}
._17_c00198{width:21.888213pt;}
._18_c00198{width:23.946133pt;}
._19_c00198{width:24.858667pt;}
._14_c00198{width:28.150080pt;}
._0_c00198{width:29.515733pt;}
._4_c00198{width:31.825387pt;}
._3_c00198{width:33.984000pt;}
._1_c00198{width:35.022400pt;}
._2_c00198{width:36.532800pt;}
.fsa_c00198{font-size:12.800000pt;}
.fsd_c00198{font-size:17.600533pt;}
.fsc_c00198{font-size:18.667200pt;}
.fs6_c00198{font-size:27.200000pt;}
.fsb_c00198{font-size:33.280000pt;}
.fs4_c00198{font-size:48.640000pt;}
.fs7_c00198{font-size:51.733333pt;}
.fs0_c00198{font-size:53.866667pt;}
.fs9_c00198{font-size:58.666667pt;}
.fs3_c00198{font-size:59.733333pt;}
.fs2_c00198{font-size:60.800000pt;}
.fs1_c00198{font-size:62.933333pt;}
.fs8_c00198{font-size:68.266667pt;}
.fs5_c00198{font-size:82.133333pt;}
.y0_c00198{bottom:0.000000pt;}
.y21_c00198{bottom:62.413347pt;}
.y20_c00198{bottom:114.560013pt;}
.y1f_c00198{bottom:114.562413pt;}
.y1e_c00198{bottom:142.074680pt;}
.y1d_c00198{bottom:169.293347pt;}
.y1c_c00198{bottom:224.333347pt;}
.y1b_c00198{bottom:280.970413pt;}
.y19_c00198{bottom:308.172813pt;}
.y1a_c00198{bottom:308.173347pt;}
.y18_c00198{bottom:335.375747pt;}
.y17_c00198{bottom:362.895747pt;}
.y16_c00198{bottom:390.413347pt;}
.y15_c00198{bottom:390.418147pt;}
.y14_c00198{bottom:417.935747pt;}
.y13_c00198{bottom:445.453347pt;}
.y27_c00198{bottom:468.800013pt;}
.y12_c00198{bottom:472.653347pt;}
.y11_c00198{bottom:472.661080pt;}
.y26_c00198{bottom:473.933347pt;}
.y25_c00198{bottom:479.693347pt;}
.y24_c00198{bottom:491.200013pt;}
.y10_c00198{bottom:500.493347pt;}
.y23_c00198{bottom:547.200013pt;}
.y22_c00198{bottom:550.413347pt;}
.yf_c00198{bottom:555.533347pt;}
.ye_c00198{bottom:582.733347pt;}
.yd_c00198{bottom:637.453347pt;}
.yc_c00198{bottom:637.458147pt;}
.yb_c00198{bottom:692.493347pt;}
.ya_c00198{bottom:719.360013pt;}
.y9_c00198{bottom:775.034680pt;}
.y8_c00198{bottom:802.253347pt;}
.y7_c00198{bottom:829.440013pt;}
.y6_c00198{bottom:884.173347pt;}
.y5_c00198{bottom:911.360013pt;}
.y3_c00198{bottom:966.412813pt;}
.y4_c00198{bottom:966.413347pt;}
.y2_c00198{bottom:993.600013pt;}
.y1_c00198{bottom:1062.093347pt;}
.he_c00198{height:8.524800pt;}
.h11_c00198{height:17.273961pt;}
.h10_c00198{height:19.469306pt;}
.hf_c00198{height:22.164480pt;}
.h7_c00198{height:32.394240pt;}
.hb_c00198{height:50.773437pt;}
.h2_c00198{height:52.867187pt;}
.h4_c00198{height:59.642187pt;}
.hd_c00198{height:61.187500pt;}
.h3_c00198{height:61.765625pt;}
.h8_c00198{height:61.786958pt;}
.h5_c00198{height:62.290400pt;}
.h6_c00198{height:62.311733pt;}
.hc_c00198{height:71.200000pt;}
.h9_c00198{height:85.652900pt;}
.ha_c00198{height:85.662500pt;}
.h1_c00198{height:1122.666667pt;}
.h0_c00198{height:1122.880013pt;}
.w1_c00198{width:793.333333pt;}
.w0_c00198{width:793.600000pt;}
.x0_c00198{left:0.000000pt;}
.x1e_c00198{left:104.403733pt;}
.x1b_c00198{left:105.878133pt;}
.x9_c00198{left:108.866667pt;}
.x2_c00198{left:110.253333pt;}
.x1_c00198{left:111.613333pt;}
.x21_c00198{left:152.466667pt;}
.xf_c00198{left:153.826667pt;}
.x12_c00198{left:154.801867pt;}
.xa_c00198{left:155.986667pt;}
.x6_c00198{left:156.946667pt;}
.x10_c00198{left:191.773333pt;}
.x11_c00198{left:214.226667pt;}
.xd_c00198{left:250.160000pt;}
.x5_c00198{left:263.840000pt;}
.x3_c00198{left:318.573333pt;}
.x13_c00198{left:329.426667pt;}
.x4_c00198{left:344.933333pt;}
.x14_c00198{left:354.386667pt;}
.x26_c00198{left:375.866667pt;}
.x22_c00198{left:393.280000pt;}
.xb_c00198{left:406.906667pt;}
.x1f_c00198{left:410.093333pt;}
.x23_c00198{left:421.600000pt;}
.xc_c00198{left:422.613333pt;}
.x20_c00198{left:430.586667pt;}
.x1d_c00198{left:482.733333pt;}
.x19_c00198{left:504.173333pt;}
.x1a_c00198{left:525.533333pt;}
.xe_c00198{left:542.826667pt;}
.x15_c00198{left:573.253333pt;}
.x25_c00198{left:579.613333pt;}
.x16_c00198{left:588.306667pt;}
.x17_c00198{left:614.813333pt;}
.x24_c00198{left:621.773333pt;}
.x7_c00198{left:624.066667pt;}
.x18_c00198{left:637.426667pt;}
.x1c_c00198{left:653.933333pt;}
.x8_c00198{left:656.813333pt;}
.x28_c00198{left:757.240000pt;}
.x27_c00198{left:758.173333pt;}
}





/* 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_c00199 {
    display:none;
  }
  .loading-indicator_c00199.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00199 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_c00199 { 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_c00199" -> "#page-container .classname_c00199")
 */
.pf_c00199 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00199 { /* 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_c00199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00199 { /* 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_c00199 { /* 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_c00199 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00199 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00199 {overflow:visible;}
  }
}
.c_c00199 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00199 { /* 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_c00199:after { /* webkit #35443 */
  content: '';
}
.t_c00199:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00199 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 */
}
.__c00199 { /* 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_c00199 { /* info for Javascript */
  display:none;
}
.l_c00199 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00199 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00199 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00199: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_c00199 {
    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_c00199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00199.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_c00199 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00199;src:url('chunks/assets/font_24641271599f51b876d49259.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.284668;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_c00199;src:url('chunks/assets/font_13b2f51e17202727bb39bdf1.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.284180;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;}
.m9_c00199{transform:matrix(0.166548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166548,0.000000,0.000000,0.250000,0,0);}
.m8_c00199{transform:matrix(0.171239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171239,0.000000,0.000000,0.250000,0,0);}
.mc_c00199{transform:matrix(0.209361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209361,0.000000,0.000000,0.250000,0,0);}
.m5_c00199{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.m7_c00199{transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);}
.md_c00199{transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);}
.m6_c00199{transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);}
.mb_c00199{transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);}
.m4_c00199{transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);}
.m3_c00199{transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);}
.m2_c00199{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m0_c00199{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);}
.ma_c00199{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls47_c00199{letter-spacing:-2.457000px;}
.ls79_c00199{letter-spacing:-2.415000px;}
.ls4e_c00199{letter-spacing:-2.393820px;}
.ls64_c00199{letter-spacing:-2.204280px;}
.ls51_c00199{letter-spacing:-2.120040px;}
.ls8e_c00199{letter-spacing:-1.951560px;}
.ls3c_c00199{letter-spacing:-1.916460px;}
.ls2f_c00199{letter-spacing:-1.670760px;}
.ls3f_c00199{letter-spacing:-1.635660px;}
.ls4f_c00199{letter-spacing:-1.516320px;}
.ls8c_c00199{letter-spacing:-1.509300px;}
.ls65_c00199{letter-spacing:-1.502280px;}
.ls89_c00199{letter-spacing:-1.467180px;}
.ls5c_c00199{letter-spacing:-1.453140px;}
.ls45_c00199{letter-spacing:-1.446120px;}
.ls95_c00199{letter-spacing:-1.389960px;}
.ls50_c00199{letter-spacing:-1.361880px;}
.ls39_c00199{letter-spacing:-1.277640px;}
.ls4d_c00199{letter-spacing:-1.249560px;}
.ls78_c00199{letter-spacing:-1.172340px;}
.ls7c_c00199{letter-spacing:-1.017900px;}
.ls60_c00199{letter-spacing:-1.010880px;}
.ls4c_c00199{letter-spacing:-1.003860px;}
.ls88_c00199{letter-spacing:-0.989820px;}
.ls91_c00199{letter-spacing:-0.961740px;}
.ls75_c00199{letter-spacing:-0.954720px;}
.ls93_c00199{letter-spacing:-0.933660px;}
.ls53_c00199{letter-spacing:-0.891540px;}
.ls68_c00199{letter-spacing:-0.884520px;}
.ls4a_c00199{letter-spacing:-0.877500px;}
.ls46_c00199{letter-spacing:-0.863460px;}
.ls92_c00199{letter-spacing:-0.849420px;}
.ls94_c00199{letter-spacing:-0.821340px;}
.ls6a_c00199{letter-spacing:-0.807300px;}
.ls6c_c00199{letter-spacing:-0.765180px;}
.ls6f_c00199{letter-spacing:-0.751140px;}
.ls5f_c00199{letter-spacing:-0.744120px;}
.ls83_c00199{letter-spacing:-0.723060px;}
.ls5e_c00199{letter-spacing:-0.673920px;}
.ls80_c00199{letter-spacing:-0.645840px;}
.ls66_c00199{letter-spacing:-0.624780px;}
.ls54_c00199{letter-spacing:-0.610740px;}
.ls6e_c00199{letter-spacing:-0.603720px;}
.ls62_c00199{letter-spacing:-0.596700px;}
.ls48_c00199{letter-spacing:-0.589680px;}
.ls59_c00199{letter-spacing:-0.575640px;}
.ls61_c00199{letter-spacing:-0.568620px;}
.ls7b_c00199{letter-spacing:-0.554580px;}
.ls49_c00199{letter-spacing:-0.526500px;}
.ls7f_c00199{letter-spacing:-0.519480px;}
.ls42_c00199{letter-spacing:-0.512460px;}
.ls33_c00199{letter-spacing:-0.491400px;}
.ls69_c00199{letter-spacing:-0.470340px;}
.ls74_c00199{letter-spacing:-0.463320px;}
.ls82_c00199{letter-spacing:-0.456300px;}
.ls57_c00199{letter-spacing:-0.449280px;}
.ls7d_c00199{letter-spacing:-0.435240px;}
.ls76_c00199{letter-spacing:-0.428220px;}
.ls38_c00199{letter-spacing:-0.421200px;}
.ls85_c00199{letter-spacing:-0.414180px;}
.ls40_c00199{letter-spacing:-0.407160px;}
.ls6b_c00199{letter-spacing:-0.386100px;}
.ls8a_c00199{letter-spacing:-0.372060px;}
.ls55_c00199{letter-spacing:-0.365040px;}
.ls67_c00199{letter-spacing:-0.351000px;}
.ls70_c00199{letter-spacing:-0.343980px;}
.ls3a_c00199{letter-spacing:-0.336960px;}
.ls41_c00199{letter-spacing:-0.329940px;}
.ls84_c00199{letter-spacing:-0.315900px;}
.ls43_c00199{letter-spacing:-0.308880px;}
.ls52_c00199{letter-spacing:-0.301860px;}
.ls5a_c00199{letter-spacing:-0.294840px;}
.ls58_c00199{letter-spacing:-0.287820px;}
.ls8d_c00199{letter-spacing:-0.266760px;}
.ls3b_c00199{letter-spacing:-0.259740px;}
.ls81_c00199{letter-spacing:-0.252720px;}
.ls44_c00199{letter-spacing:-0.245700px;}
.ls7a_c00199{letter-spacing:-0.238680px;}
.ls5d_c00199{letter-spacing:-0.231660px;}
.ls7e_c00199{letter-spacing:-0.217620px;}
.ls6d_c00199{letter-spacing:-0.210600px;}
.ls30_c00199{letter-spacing:-0.196560px;}
.ls34_c00199{letter-spacing:-0.189540px;}
.ls72_c00199{letter-spacing:-0.175500px;}
.ls56_c00199{letter-spacing:-0.168480px;}
.ls3d_c00199{letter-spacing:-0.154440px;}
.ls73_c00199{letter-spacing:-0.140400px;}
.ls77_c00199{letter-spacing:-0.133380px;}
.ls90_c00199{letter-spacing:-0.126360px;}
.ls8f_c00199{letter-spacing:-0.119340px;}
.ls87_c00199{letter-spacing:-0.116280px;}
.ls5b_c00199{letter-spacing:-0.112320px;}
.ls63_c00199{letter-spacing:-0.098280px;}
.ls35_c00199{letter-spacing:-0.091260px;}
.ls8b_c00199{letter-spacing:-0.084240px;}
.ls36_c00199{letter-spacing:-0.077220px;}
.ls71_c00199{letter-spacing:-0.063180px;}
.ls31_c00199{letter-spacing:-0.049140px;}
.ls4b_c00199{letter-spacing:-0.042120px;}
.ls3e_c00199{letter-spacing:-0.035100px;}
.ls37_c00199{letter-spacing:-0.014040px;}
.ls32_c00199{letter-spacing:0.000000px;}
.ls2d_c00199{letter-spacing:0.014040px;}
.ls13_c00199{letter-spacing:0.021060px;}
.ls14_c00199{letter-spacing:0.035100px;}
.lsa_c00199{letter-spacing:0.042120px;}
.ls1c_c00199{letter-spacing:0.049140px;}
.ls21_c00199{letter-spacing:0.063180px;}
.ls1b_c00199{letter-spacing:0.077220px;}
.ls27_c00199{letter-spacing:0.091260px;}
.ls2b_c00199{letter-spacing:0.105300px;}
.ls2a_c00199{letter-spacing:0.112320px;}
.ls12_c00199{letter-spacing:0.119340px;}
.ls1f_c00199{letter-spacing:0.140400px;}
.ls4_c00199{letter-spacing:0.161460px;}
.ls11_c00199{letter-spacing:0.182520px;}
.ls16_c00199{letter-spacing:0.189540px;}
.ls18_c00199{letter-spacing:0.203580px;}
.ls2c_c00199{letter-spacing:0.231660px;}
.ls1e_c00199{letter-spacing:0.259740px;}
.ls19_c00199{letter-spacing:0.273780px;}
.lse_c00199{letter-spacing:0.280800px;}
.ls1_c00199{letter-spacing:0.287820px;}
.ls5_c00199{letter-spacing:0.294120px;}
.ls8_c00199{letter-spacing:0.315900px;}
.ls6_c00199{letter-spacing:0.321480px;}
.ls3_c00199{letter-spacing:0.379080px;}
.ls26_c00199{letter-spacing:0.386100px;}
.ls20_c00199{letter-spacing:0.400140px;}
.ls23_c00199{letter-spacing:0.478800px;}
.ls28_c00199{letter-spacing:0.491400px;}
.ls24_c00199{letter-spacing:0.498420px;}
.ls1a_c00199{letter-spacing:0.519480px;}
.ls17_c00199{letter-spacing:0.554580px;}
.ls25_c00199{letter-spacing:0.575640px;}
.lsb_c00199{letter-spacing:0.638820px;}
.ls1d_c00199{letter-spacing:0.680940px;}
.ls0_c00199{letter-spacing:0.690840px;}
.ls22_c00199{letter-spacing:0.711360px;}
.ls10_c00199{letter-spacing:0.745560px;}
.lsd_c00199{letter-spacing:0.800280px;}
.ls29_c00199{letter-spacing:1.031940px;}
.lsf_c00199{letter-spacing:1.073880px;}
.ls2_c00199{letter-spacing:1.263600px;}
.ls9_c00199{letter-spacing:1.425060px;}
.lsc_c00199{letter-spacing:1.515240px;}
.ls15_c00199{letter-spacing:1.551420px;}
.ls7_c00199{letter-spacing:2.183220px;}
.ls2e_c00199{letter-spacing:2.423520px;}
.ls86_c00199{letter-spacing:3.420000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{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__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00199{word-spacing:0.000000px;}
.ws0_c00199{word-spacing:0.169800px;}
.ws3_c00199{word-spacing:0.549360px;}
.ws4_c00199{word-spacing:13.304400px;}
.ws1_c00199{word-spacing:25.605720px;}
.ws2_c00199{word-spacing:35.045760px;}
._0_c00199{margin-left:-4.752540px;}
._d_c00199{margin-left:-3.187080px;}
._1_c00199{margin-left:-1.404000px;}
._8_c00199{width:1.242540px;}
._18_c00199{width:2.302560px;}
._2_c00199{width:3.453840px;}
._e_c00199{width:4.697760px;}
._9_c00199{width:6.598800px;}
._b_c00199{width:7.693920px;}
._1b_c00199{width:8.737140px;}
._c_c00199{width:9.835020px;}
._7_c00199{width:10.838880px;}
._13_c00199{width:12.130560px;}
._a_c00199{width:13.204620px;}
._19_c00199{width:14.455140px;}
._15_c00199{width:15.829140px;}
._1a_c00199{width:16.974360px;}
._14_c00199{width:18.518760px;}
._5_c00199{width:19.894680px;}
._17_c00199{width:21.052980px;}
._6_c00199{width:22.260420px;}
._4_c00199{width:23.425740px;}
._3_c00199{width:25.595280px;}
._1c_c00199{width:26.668620px;}
._16_c00199{width:28.157220px;}
._11_c00199{width:31.407480px;}
._12_c00199{width:34.032960px;}
._10_c00199{width:35.226360px;}
._f_c00199{width:37.535940px;}
.fc0_c00199{color:transparent;}
.fs0_c00199{font-size:59.400000px;}
.fs1_c00199{font-size:68.400000px;}
.fs4_c00199{font-size:69.000000px;}
.fs2_c00199{font-size:70.200000px;}
.fs3_c00199{font-size:73.200000px;}
.y0_c00199{bottom:0.000000px;}
.y22_c00199{bottom:70.575000px;}
.y20_c00199{bottom:173.889900px;}
.y21_c00199{bottom:173.895000px;}
.y1f_c00199{bottom:203.760000px;}
.y1e_c00199{bottom:203.762850px;}
.y1d_c00199{bottom:234.721050px;}
.y1c_c00199{bottom:265.696800px;}
.y1a_c00199{bottom:296.644950px;}
.y1b_c00199{bottom:296.655000px;}
.y19_c00199{bottom:327.252150px;}
.y18_c00199{bottom:358.192800px;}
.y17_c00199{bottom:388.800000px;}
.y16_c00199{bottom:451.455000px;}
.y15_c00199{bottom:514.447800px;}
.y14_c00199{bottom:545.056800px;}
.y13_c00199{bottom:576.015000px;}
.y12_c00199{bottom:576.020700px;}
.y11_c00199{bottom:606.241800px;}
.y10_c00199{bottom:637.192050px;}
.yf_c00199{bottom:667.799250px;}
.ye_c00199{bottom:698.775000px;}
.yd_c00199{bottom:698.779350px;}
.yc_c00199{bottom:729.720000px;}
.yb_c00199{bottom:791.280000px;}
.ya_c00199{bottom:853.560000px;}
.y9_c00199{bottom:853.563150px;}
.y7_c00199{bottom:900.719250px;}
.y8_c00199{bottom:900.720000px;}
.y6_c00199{bottom:931.695000px;}
.y5_c00199{bottom:992.181150px;}
.y4_c00199{bottom:1023.139350px;}
.y3_c00199{bottom:1054.080000px;}
.y2_c00199{bottom:1115.655000px;}
.y1_c00199{bottom:1190.895000px;}
.h2_c00199{height:58.297852px;}
.h7_c00199{height:67.097461px;}
.h6_c00199{height:67.719727px;}
.h3_c00199{height:68.897461px;}
.h5_c00199{height:68.929261px;}
.h4_c00199{height:71.806055px;}
.h1_c00199{height:1263.000000px;}
.h0_c00199{height:1263.240000px;}
.w1_c00199{width:892.500000px;}
.w0_c00199{width:892.800000px;}
.x0_c00199{left:0.000000px;}
.x1_c00199{left:125.565000px;}
.x3_c00199{left:127.175700px;}
.x5_c00199{left:177.725250px;}
.x2_c00199{left:179.085000px;}
.x6_c00199{left:219.705000px;}
.x7_c00199{left:244.965000px;}
.x8_c00199{left:273.705000px;}
.x4_c00199{left:304.830000px;}
.x18_c00199{left:307.290000px;}
.x19_c00199{left:327.120000px;}
.x1a_c00199{left:347.220000px;}
.x9_c00199{left:350.805000px;}
.x1b_c00199{left:368.970000px;}
.xa_c00199{left:378.975000px;}
.xb_c00199{left:396.645000px;}
.x1f_c00199{left:427.170000px;}
.x15_c00199{left:434.025000px;}
.x11_c00199{left:435.075000px;}
.x12_c00199{left:457.590000px;}
.x16_c00199{left:465.300000px;}
.xe_c00199{left:554.550000px;}
.xc_c00199{left:559.605000px;}
.x1e_c00199{left:568.590000px;}
.xf_c00199{left:570.765000px;}
.xd_c00199{left:587.325000px;}
.x10_c00199{left:599.550000px;}
.x1c_c00199{left:601.395000px;}
.x1d_c00199{left:622.245000px;}
.x17_c00199{left:680.640000px;}
.x13_c00199{left:687.375000px;}
.x14_c00199{left:713.490000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls47_c00199{letter-spacing:-2.184000pt;}
.ls79_c00199{letter-spacing:-2.146667pt;}
.ls4e_c00199{letter-spacing:-2.127840pt;}
.ls64_c00199{letter-spacing:-1.959360pt;}
.ls51_c00199{letter-spacing:-1.884480pt;}
.ls8e_c00199{letter-spacing:-1.734720pt;}
.ls3c_c00199{letter-spacing:-1.703520pt;}
.ls2f_c00199{letter-spacing:-1.485120pt;}
.ls3f_c00199{letter-spacing:-1.453920pt;}
.ls4f_c00199{letter-spacing:-1.347840pt;}
.ls8c_c00199{letter-spacing:-1.341600pt;}
.ls65_c00199{letter-spacing:-1.335360pt;}
.ls89_c00199{letter-spacing:-1.304160pt;}
.ls5c_c00199{letter-spacing:-1.291680pt;}
.ls45_c00199{letter-spacing:-1.285440pt;}
.ls95_c00199{letter-spacing:-1.235520pt;}
.ls50_c00199{letter-spacing:-1.210560pt;}
.ls39_c00199{letter-spacing:-1.135680pt;}
.ls4d_c00199{letter-spacing:-1.110720pt;}
.ls78_c00199{letter-spacing:-1.042080pt;}
.ls7c_c00199{letter-spacing:-0.904800pt;}
.ls60_c00199{letter-spacing:-0.898560pt;}
.ls4c_c00199{letter-spacing:-0.892320pt;}
.ls88_c00199{letter-spacing:-0.879840pt;}
.ls91_c00199{letter-spacing:-0.854880pt;}
.ls75_c00199{letter-spacing:-0.848640pt;}
.ls93_c00199{letter-spacing:-0.829920pt;}
.ls53_c00199{letter-spacing:-0.792480pt;}
.ls68_c00199{letter-spacing:-0.786240pt;}
.ls4a_c00199{letter-spacing:-0.780000pt;}
.ls46_c00199{letter-spacing:-0.767520pt;}
.ls92_c00199{letter-spacing:-0.755040pt;}
.ls94_c00199{letter-spacing:-0.730080pt;}
.ls6a_c00199{letter-spacing:-0.717600pt;}
.ls6c_c00199{letter-spacing:-0.680160pt;}
.ls6f_c00199{letter-spacing:-0.667680pt;}
.ls5f_c00199{letter-spacing:-0.661440pt;}
.ls83_c00199{letter-spacing:-0.642720pt;}
.ls5e_c00199{letter-spacing:-0.599040pt;}
.ls80_c00199{letter-spacing:-0.574080pt;}
.ls66_c00199{letter-spacing:-0.555360pt;}
.ls54_c00199{letter-spacing:-0.542880pt;}
.ls6e_c00199{letter-spacing:-0.536640pt;}
.ls62_c00199{letter-spacing:-0.530400pt;}
.ls48_c00199{letter-spacing:-0.524160pt;}
.ls59_c00199{letter-spacing:-0.511680pt;}
.ls61_c00199{letter-spacing:-0.505440pt;}
.ls7b_c00199{letter-spacing:-0.492960pt;}
.ls49_c00199{letter-spacing:-0.468000pt;}
.ls7f_c00199{letter-spacing:-0.461760pt;}
.ls42_c00199{letter-spacing:-0.455520pt;}
.ls33_c00199{letter-spacing:-0.436800pt;}
.ls69_c00199{letter-spacing:-0.418080pt;}
.ls74_c00199{letter-spacing:-0.411840pt;}
.ls82_c00199{letter-spacing:-0.405600pt;}
.ls57_c00199{letter-spacing:-0.399360pt;}
.ls7d_c00199{letter-spacing:-0.386880pt;}
.ls76_c00199{letter-spacing:-0.380640pt;}
.ls38_c00199{letter-spacing:-0.374400pt;}
.ls85_c00199{letter-spacing:-0.368160pt;}
.ls40_c00199{letter-spacing:-0.361920pt;}
.ls6b_c00199{letter-spacing:-0.343200pt;}
.ls8a_c00199{letter-spacing:-0.330720pt;}
.ls55_c00199{letter-spacing:-0.324480pt;}
.ls67_c00199{letter-spacing:-0.312000pt;}
.ls70_c00199{letter-spacing:-0.305760pt;}
.ls3a_c00199{letter-spacing:-0.299520pt;}
.ls41_c00199{letter-spacing:-0.293280pt;}
.ls84_c00199{letter-spacing:-0.280800pt;}
.ls43_c00199{letter-spacing:-0.274560pt;}
.ls52_c00199{letter-spacing:-0.268320pt;}
.ls5a_c00199{letter-spacing:-0.262080pt;}
.ls58_c00199{letter-spacing:-0.255840pt;}
.ls8d_c00199{letter-spacing:-0.237120pt;}
.ls3b_c00199{letter-spacing:-0.230880pt;}
.ls81_c00199{letter-spacing:-0.224640pt;}
.ls44_c00199{letter-spacing:-0.218400pt;}
.ls7a_c00199{letter-spacing:-0.212160pt;}
.ls5d_c00199{letter-spacing:-0.205920pt;}
.ls7e_c00199{letter-spacing:-0.193440pt;}
.ls6d_c00199{letter-spacing:-0.187200pt;}
.ls30_c00199{letter-spacing:-0.174720pt;}
.ls34_c00199{letter-spacing:-0.168480pt;}
.ls72_c00199{letter-spacing:-0.156000pt;}
.ls56_c00199{letter-spacing:-0.149760pt;}
.ls3d_c00199{letter-spacing:-0.137280pt;}
.ls73_c00199{letter-spacing:-0.124800pt;}
.ls77_c00199{letter-spacing:-0.118560pt;}
.ls90_c00199{letter-spacing:-0.112320pt;}
.ls8f_c00199{letter-spacing:-0.106080pt;}
.ls87_c00199{letter-spacing:-0.103360pt;}
.ls5b_c00199{letter-spacing:-0.099840pt;}
.ls63_c00199{letter-spacing:-0.087360pt;}
.ls35_c00199{letter-spacing:-0.081120pt;}
.ls8b_c00199{letter-spacing:-0.074880pt;}
.ls36_c00199{letter-spacing:-0.068640pt;}
.ls71_c00199{letter-spacing:-0.056160pt;}
.ls31_c00199{letter-spacing:-0.043680pt;}
.ls4b_c00199{letter-spacing:-0.037440pt;}
.ls3e_c00199{letter-spacing:-0.031200pt;}
.ls37_c00199{letter-spacing:-0.012480pt;}
.ls32_c00199{letter-spacing:0.000000pt;}
.ls2d_c00199{letter-spacing:0.012480pt;}
.ls13_c00199{letter-spacing:0.018720pt;}
.ls14_c00199{letter-spacing:0.031200pt;}
.lsa_c00199{letter-spacing:0.037440pt;}
.ls1c_c00199{letter-spacing:0.043680pt;}
.ls21_c00199{letter-spacing:0.056160pt;}
.ls1b_c00199{letter-spacing:0.068640pt;}
.ls27_c00199{letter-spacing:0.081120pt;}
.ls2b_c00199{letter-spacing:0.093600pt;}
.ls2a_c00199{letter-spacing:0.099840pt;}
.ls12_c00199{letter-spacing:0.106080pt;}
.ls1f_c00199{letter-spacing:0.124800pt;}
.ls4_c00199{letter-spacing:0.143520pt;}
.ls11_c00199{letter-spacing:0.162240pt;}
.ls16_c00199{letter-spacing:0.168480pt;}
.ls18_c00199{letter-spacing:0.180960pt;}
.ls2c_c00199{letter-spacing:0.205920pt;}
.ls1e_c00199{letter-spacing:0.230880pt;}
.ls19_c00199{letter-spacing:0.243360pt;}
.lse_c00199{letter-spacing:0.249600pt;}
.ls1_c00199{letter-spacing:0.255840pt;}
.ls5_c00199{letter-spacing:0.261440pt;}
.ls8_c00199{letter-spacing:0.280800pt;}
.ls6_c00199{letter-spacing:0.285760pt;}
.ls3_c00199{letter-spacing:0.336960pt;}
.ls26_c00199{letter-spacing:0.343200pt;}
.ls20_c00199{letter-spacing:0.355680pt;}
.ls23_c00199{letter-spacing:0.425600pt;}
.ls28_c00199{letter-spacing:0.436800pt;}
.ls24_c00199{letter-spacing:0.443040pt;}
.ls1a_c00199{letter-spacing:0.461760pt;}
.ls17_c00199{letter-spacing:0.492960pt;}
.ls25_c00199{letter-spacing:0.511680pt;}
.lsb_c00199{letter-spacing:0.567840pt;}
.ls1d_c00199{letter-spacing:0.605280pt;}
.ls0_c00199{letter-spacing:0.614080pt;}
.ls22_c00199{letter-spacing:0.632320pt;}
.ls10_c00199{letter-spacing:0.662720pt;}
.lsd_c00199{letter-spacing:0.711360pt;}
.ls29_c00199{letter-spacing:0.917280pt;}
.lsf_c00199{letter-spacing:0.954560pt;}
.ls2_c00199{letter-spacing:1.123200pt;}
.ls9_c00199{letter-spacing:1.266720pt;}
.lsc_c00199{letter-spacing:1.346880pt;}
.ls15_c00199{letter-spacing:1.379040pt;}
.ls7_c00199{letter-spacing:1.940640pt;}
.ls2e_c00199{letter-spacing:2.154240pt;}
.ls86_c00199{letter-spacing:3.040000pt;}
.ws5_c00199{word-spacing:0.000000pt;}
.ws0_c00199{word-spacing:0.150933pt;}
.ws3_c00199{word-spacing:0.488320pt;}
.ws4_c00199{word-spacing:11.826133pt;}
.ws1_c00199{word-spacing:22.760640pt;}
.ws2_c00199{word-spacing:31.151787pt;}
._0_c00199{margin-left:-4.224480pt;}
._d_c00199{margin-left:-2.832960pt;}
._1_c00199{margin-left:-1.248000pt;}
._8_c00199{width:1.104480pt;}
._18_c00199{width:2.046720pt;}
._2_c00199{width:3.070080pt;}
._e_c00199{width:4.175787pt;}
._9_c00199{width:5.865600pt;}
._b_c00199{width:6.839040pt;}
._1b_c00199{width:7.766347pt;}
._c_c00199{width:8.742240pt;}
._7_c00199{width:9.634560pt;}
._13_c00199{width:10.782720pt;}
._a_c00199{width:11.737440pt;}
._19_c00199{width:12.849013pt;}
._15_c00199{width:14.070347pt;}
._1a_c00199{width:15.088320pt;}
._14_c00199{width:16.461120pt;}
._5_c00199{width:17.684160pt;}
._17_c00199{width:18.713760pt;}
._6_c00199{width:19.787040pt;}
._4_c00199{width:20.822880pt;}
._3_c00199{width:22.751360pt;}
._1c_c00199{width:23.705440pt;}
._16_c00199{width:25.028640pt;}
._11_c00199{width:27.917760pt;}
._12_c00199{width:30.251520pt;}
._10_c00199{width:31.312320pt;}
._f_c00199{width:33.365280pt;}
.fs0_c00199{font-size:52.800000pt;}
.fs1_c00199{font-size:60.800000pt;}
.fs4_c00199{font-size:61.333333pt;}
.fs2_c00199{font-size:62.400000pt;}
.fs3_c00199{font-size:65.066667pt;}
.y0_c00199{bottom:0.000000pt;}
.y22_c00199{bottom:62.733333pt;}
.y20_c00199{bottom:154.568800pt;}
.y21_c00199{bottom:154.573333pt;}
.y1f_c00199{bottom:181.120000pt;}
.y1e_c00199{bottom:181.122533pt;}
.y1d_c00199{bottom:208.640933pt;}
.y1c_c00199{bottom:236.174933pt;}
.y1a_c00199{bottom:263.684400pt;}
.y1b_c00199{bottom:263.693333pt;}
.y19_c00199{bottom:290.890800pt;}
.y18_c00199{bottom:318.393600pt;}
.y17_c00199{bottom:345.600000pt;}
.y16_c00199{bottom:401.293333pt;}
.y15_c00199{bottom:457.286933pt;}
.y14_c00199{bottom:484.494933pt;}
.y13_c00199{bottom:512.013333pt;}
.y12_c00199{bottom:512.018400pt;}
.y11_c00199{bottom:538.881600pt;}
.y10_c00199{bottom:566.392933pt;}
.yf_c00199{bottom:593.599333pt;}
.ye_c00199{bottom:621.133333pt;}
.yd_c00199{bottom:621.137200pt;}
.yc_c00199{bottom:648.640000pt;}
.yb_c00199{bottom:703.360000pt;}
.ya_c00199{bottom:758.720000pt;}
.y9_c00199{bottom:758.722800pt;}
.y7_c00199{bottom:800.639333pt;}
.y8_c00199{bottom:800.640000pt;}
.y6_c00199{bottom:828.173333pt;}
.y5_c00199{bottom:881.938800pt;}
.y4_c00199{bottom:909.457200pt;}
.y3_c00199{bottom:936.960000pt;}
.y2_c00199{bottom:991.693333pt;}
.y1_c00199{bottom:1058.573333pt;}
.h2_c00199{height:51.820312pt;}
.h7_c00199{height:59.642187pt;}
.h6_c00199{height:60.195312pt;}
.h3_c00199{height:61.242187pt;}
.h5_c00199{height:61.270454pt;}
.h4_c00199{height:63.827604pt;}
.h1_c00199{height:1122.666667pt;}
.h0_c00199{height:1122.880000pt;}
.w1_c00199{width:793.333333pt;}
.w0_c00199{width:793.600000pt;}
.x0_c00199{left:0.000000pt;}
.x1_c00199{left:111.613333pt;}
.x3_c00199{left:113.045067pt;}
.x5_c00199{left:157.978000pt;}
.x2_c00199{left:159.186667pt;}
.x6_c00199{left:195.293333pt;}
.x7_c00199{left:217.746667pt;}
.x8_c00199{left:243.293333pt;}
.x4_c00199{left:270.960000pt;}
.x18_c00199{left:273.146667pt;}
.x19_c00199{left:290.773333pt;}
.x1a_c00199{left:308.640000pt;}
.x9_c00199{left:311.826667pt;}
.x1b_c00199{left:327.973333pt;}
.xa_c00199{left:336.866667pt;}
.xb_c00199{left:352.573333pt;}
.x1f_c00199{left:379.706667pt;}
.x15_c00199{left:385.800000pt;}
.x11_c00199{left:386.733333pt;}
.x12_c00199{left:406.746667pt;}
.x16_c00199{left:413.600000pt;}
.xe_c00199{left:492.933333pt;}
.xc_c00199{left:497.426667pt;}
.x1e_c00199{left:505.413333pt;}
.xf_c00199{left:507.346667pt;}
.xd_c00199{left:522.066667pt;}
.x10_c00199{left:532.933333pt;}
.x1c_c00199{left:534.573333pt;}
.x1d_c00199{left:553.106667pt;}
.x17_c00199{left:605.013333pt;}
.x13_c00199{left:611.000000pt;}
.x14_c00199{left:634.213333pt;}
}





/* 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_c00200 {
    display:none;
  }
  .loading-indicator_c00200.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00200 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_c00200 { 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_c00200" -> "#page-container .classname_c00200")
 */
.pf_c00200 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00200 { /* 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_c00200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00200 { /* 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_c00200 { /* 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_c00200 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00200 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00200 {overflow:visible;}
  }
}
.c_c00200 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00200 { /* 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_c00200:after { /* webkit #35443 */
  content: '';
}
.t_c00200:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00200 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 */
}
.__c00200 { /* 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_c00200 { /* info for Javascript */
  display:none;
}
.l_c00200 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00200 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00200 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00200: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_c00200 {
    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_c00200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00200.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_c00200 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00200;src:url('chunks/assets/font_fffae4bba271b7b5ef90d335.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.284668;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_c00200;src:url('chunks/assets/font_ebbf6dc1a27fda5b4282e9e1.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.284180;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_c00200;src:url('chunks/assets/font_5fc3bb6bd6de56f0c14d39f9.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;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:ff4_c00200;src:url('chunks/assets/font_c9216d945daf5c460031763b.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:0.666000;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;}
.md_c00200{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.mc_c00200{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.ma_c00200{transform:matrix(0.234871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234871,0.000000,0.000000,0.250000,0,0);}
.m9_c00200{transform:matrix(0.238348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238348,0.000000,0.000000,0.250000,0,0);}
.m8_c00200{transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);}
.m0_c00200{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);}
.m7_c00200{transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);}
.m4_c00200{transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);}
.m5_c00200{transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);}
.m2_c00200{transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);}
.m3_c00200{transform:matrix(0.251987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251987,0.000000,0.000000,0.250000,0,0);}
.mb_c00200{transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);}
.m6_c00200{transform:matrix(0.255029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255029,0.000000,0.000000,0.250000,0,0);}
.m1_c00200{transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);}
.me_c00200{transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls9c_c00200{letter-spacing:-2.415000px;}
.lsa1_c00200{letter-spacing:-2.394000px;}
.ls86_c00200{letter-spacing:-1.682640px;}
.ls85_c00200{letter-spacing:-1.429560px;}
.ls99_c00200{letter-spacing:-1.414500px;}
.ls7f_c00200{letter-spacing:-1.409040px;}
.ls8d_c00200{letter-spacing:-0.902880px;}
.ls8a_c00200{letter-spacing:-0.711360px;}
.ls92_c00200{letter-spacing:-0.684000px;}
.ls8c_c00200{letter-spacing:-0.601920px;}
.ls8f_c00200{letter-spacing:-0.526680px;}
.ls97_c00200{letter-spacing:-0.478800px;}
.ls8b_c00200{letter-spacing:-0.444600px;}
.ls9e_c00200{letter-spacing:-0.342000px;}
.ls88_c00200{letter-spacing:-0.171000px;}
.ls89_c00200{letter-spacing:-0.123120px;}
.lsa3_c00200{letter-spacing:-0.103680px;}
.ls81_c00200{letter-spacing:0.000000px;}
.ls48_c00200{letter-spacing:0.088920px;}
.ls78_c00200{letter-spacing:0.102600px;}
.ls80_c00200{letter-spacing:0.164160px;}
.ls87_c00200{letter-spacing:0.177840px;}
.ls25_c00200{letter-spacing:0.184680px;}
.ls4c_c00200{letter-spacing:0.212040px;}
.ls95_c00200{letter-spacing:0.246240px;}
.ls9f_c00200{letter-spacing:0.266760px;}
.ls1a_c00200{letter-spacing:0.314640px;}
.ls9_c00200{letter-spacing:0.321480px;}
.ls39_c00200{letter-spacing:0.342000px;}
.ls8_c00200{letter-spacing:0.351900px;}
.ls7_c00200{letter-spacing:0.365700px;}
.ls17_c00200{letter-spacing:0.376200px;}
.ls91_c00200{letter-spacing:0.383040px;}
.lsa2_c00200{letter-spacing:0.386400px;}
.ls9d_c00200{letter-spacing:0.414000px;}
.ls47_c00200{letter-spacing:0.451440px;}
.ls57_c00200{letter-spacing:0.478800px;}
.ls3f_c00200{letter-spacing:0.513000px;}
.ls4_c00200{letter-spacing:0.554040px;}
.lsa0_c00200{letter-spacing:0.567720px;}
.ls1b_c00200{letter-spacing:0.574560px;}
.ls71_c00200{letter-spacing:0.581400px;}
.ls83_c00200{letter-spacing:0.608760px;}
.ls3_c00200{letter-spacing:0.622440px;}
.ls34_c00200{letter-spacing:0.629280px;}
.ls94_c00200{letter-spacing:0.636120px;}
.ls0_c00200{letter-spacing:0.648600px;}
.ls59_c00200{letter-spacing:0.656640px;}
.ls6d_c00200{letter-spacing:0.663480px;}
.ls52_c00200{letter-spacing:0.690840px;}
.ls1d_c00200{letter-spacing:0.717600px;}
.ls75_c00200{letter-spacing:0.725040px;}
.ls31_c00200{letter-spacing:0.745560px;}
.ls46_c00200{letter-spacing:0.752400px;}
.ls96_c00200{letter-spacing:0.759240px;}
.ls90_c00200{letter-spacing:0.772920px;}
.ls14_c00200{letter-spacing:0.793440px;}
.ls28_c00200{letter-spacing:0.807120px;}
.lsf_c00200{letter-spacing:0.813960px;}
.lsa_c00200{letter-spacing:0.820800px;}
.ls20_c00200{letter-spacing:0.848160px;}
.ls22_c00200{letter-spacing:0.868680px;}
.ls4f_c00200{letter-spacing:0.882360px;}
.ls53_c00200{letter-spacing:0.889200px;}
.ls5c_c00200{letter-spacing:0.896040px;}
.ls6b_c00200{letter-spacing:0.903900px;}
.ls67_c00200{letter-spacing:0.909720px;}
.ls3e_c00200{letter-spacing:0.916560px;}
.ls93_c00200{letter-spacing:0.930240px;}
.ls19_c00200{letter-spacing:0.937080px;}
.lsd_c00200{letter-spacing:0.950760px;}
.ls26_c00200{letter-spacing:0.952200px;}
.ls2e_c00200{letter-spacing:0.957600px;}
.ls1f_c00200{letter-spacing:0.964440px;}
.ls33_c00200{letter-spacing:0.971280px;}
.ls10_c00200{letter-spacing:0.978120px;}
.ls69_c00200{letter-spacing:0.991800px;}
.ls5b_c00200{letter-spacing:1.005480px;}
.ls4e_c00200{letter-spacing:1.019160px;}
.ls2a_c00200{letter-spacing:1.039680px;}
.lsa4_c00200{letter-spacing:1.050030px;}
.ls2f_c00200{letter-spacing:1.053360px;}
.ls13_c00200{letter-spacing:1.060200px;}
.ls44_c00200{letter-spacing:1.080720px;}
.ls6_c00200{letter-spacing:1.087560px;}
.ls45_c00200{letter-spacing:1.094400px;}
.ls60_c00200{letter-spacing:1.114920px;}
.ls5_c00200{letter-spacing:1.128600px;}
.ls55_c00200{letter-spacing:1.131600px;}
.ls98_c00200{letter-spacing:1.135440px;}
.ls3c_c00200{letter-spacing:1.142280px;}
.ls40_c00200{letter-spacing:1.149120px;}
.ls54_c00200{letter-spacing:1.155960px;}
.ls43_c00200{letter-spacing:1.162800px;}
.ls42_c00200{letter-spacing:1.169640px;}
.ls30_c00200{letter-spacing:1.183320px;}
.ls1e_c00200{letter-spacing:1.190160px;}
.ls5a_c00200{letter-spacing:1.197000px;}
.ls7b_c00200{letter-spacing:1.203840px;}
.ls3b_c00200{letter-spacing:1.210680px;}
.ls1_c00200{letter-spacing:1.224360px;}
.ls29_c00200{letter-spacing:1.231200px;}
.ls79_c00200{letter-spacing:1.244880px;}
.ls2b_c00200{letter-spacing:1.272240px;}
.ls9b_c00200{letter-spacing:1.279080px;}
.ls36_c00200{letter-spacing:1.285920px;}
.ls32_c00200{letter-spacing:1.306440px;}
.ls64_c00200{letter-spacing:1.313280px;}
.ls3a_c00200{letter-spacing:1.320120px;}
.ls1c_c00200{letter-spacing:1.324800px;}
.ls37_c00200{letter-spacing:1.340640px;}
.ls6c_c00200{letter-spacing:1.347480px;}
.ls70_c00200{letter-spacing:1.354320px;}
.ls5f_c00200{letter-spacing:1.368000px;}
.ls63_c00200{letter-spacing:1.381680px;}
.ls16_c00200{letter-spacing:1.395360px;}
.ls21_c00200{letter-spacing:1.407600px;}
.ls4a_c00200{letter-spacing:1.409040px;}
.ls38_c00200{letter-spacing:1.429560px;}
.ls7d_c00200{letter-spacing:1.436400px;}
.ls24_c00200{letter-spacing:1.443240px;}
.ls5e_c00200{letter-spacing:1.456920px;}
.ls49_c00200{letter-spacing:1.504800px;}
.ls27_c00200{letter-spacing:1.532160px;}
.ls6f_c00200{letter-spacing:1.539000px;}
.ls8e_c00200{letter-spacing:1.552680px;}
.ls50_c00200{letter-spacing:1.559520px;}
.ls65_c00200{letter-spacing:1.566360px;}
.ls6a_c00200{letter-spacing:1.573200px;}
.ls7a_c00200{letter-spacing:1.593720px;}
.ls72_c00200{letter-spacing:1.600560px;}
.ls2d_c00200{letter-spacing:1.682640px;}
.ls4d_c00200{letter-spacing:1.716840px;}
.ls12_c00200{letter-spacing:1.744200px;}
.ls35_c00200{letter-spacing:1.757880px;}
.ls3d_c00200{letter-spacing:1.792080px;}
.lsc_c00200{letter-spacing:1.812600px;}
.lsb_c00200{letter-spacing:1.826280px;}
.ls18_c00200{letter-spacing:1.874160px;}
.ls7e_c00200{letter-spacing:1.878600px;}
.ls11_c00200{letter-spacing:1.894680px;}
.ls15_c00200{letter-spacing:1.918200px;}
.ls6e_c00200{letter-spacing:1.928880px;}
.ls58_c00200{letter-spacing:1.976760px;}
.ls23_c00200{letter-spacing:1.983600px;}
.ls61_c00200{letter-spacing:2.004120px;}
.ls66_c00200{letter-spacing:2.161440px;}
.ls4b_c00200{letter-spacing:2.195640px;}
.ls77_c00200{letter-spacing:2.202480px;}
.ls5d_c00200{letter-spacing:2.229840px;}
.ls62_c00200{letter-spacing:2.277720px;}
.ls2_c00200{letter-spacing:2.291400px;}
.ls41_c00200{letter-spacing:2.387160px;}
.ls51_c00200{letter-spacing:2.394000px;}
.ls9a_c00200{letter-spacing:2.449500px;}
.ls76_c00200{letter-spacing:2.455560px;}
.ls7c_c00200{letter-spacing:2.462400px;}
.lse_c00200{letter-spacing:2.715480px;}
.ls68_c00200{letter-spacing:2.838600px;}
.ls2c_c00200{letter-spacing:3.091680px;}
.ls56_c00200{letter-spacing:3.105360px;}
.ls74_c00200{letter-spacing:3.173760px;}
.ls82_c00200{letter-spacing:3.420000px;}
.ls84_c00200{letter-spacing:3.450000px;}
.ls73_c00200{letter-spacing:222.730800px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{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__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00200{word-spacing:0.000000px;}
.ws4_c00200{word-spacing:0.089400px;}
.ws0_c00200{word-spacing:1.590000px;}
.ws2_c00200{word-spacing:2.500200px;}
.ws1_c00200{word-spacing:15.437100px;}
.ws3_c00200{word-spacing:25.959600px;}
._c_c00200{margin-left:-7.686600px;}
._0_c00200{margin-left:-6.176520px;}
._9_c00200{margin-left:-5.013720px;}
._a_c00200{margin-left:-3.857760px;}
._12_c00200{margin-left:-2.634960px;}
._1_c00200{margin-left:-1.539000px;}
._3_c00200{width:1.928880px;}
._d_c00200{width:3.614280px;}
._2_c00200{width:4.815360px;}
._b_c00200{width:6.513960px;}
._6_c00200{width:8.276400px;}
._8_c00200{width:9.363960px;}
._5_c00200{width:11.251800px;}
._e_c00200{width:12.503520px;}
._4_c00200{width:14.047740px;}
._f_c00200{width:15.203640px;}
._7_c00200{width:16.984680px;}
._10_c00200{width:21.455220px;}
._11_c00200{width:22.818240px;}
._13_c00200{width:24.771000px;}
._14_c00200{width:26.720520px;}
._18_c00200{width:28.769400px;}
._16_c00200{width:29.781360px;}
._15_c00200{width:31.034940px;}
._17_c00200{width:33.310800px;}
.fc0_c00200{color:transparent;}
.fs8_c00200{font-size:14.400000px;}
.fsb_c00200{font-size:19.800600px;}
.fsa_c00200{font-size:21.000600px;}
.fs9_c00200{font-size:37.440000px;}
.fs5_c00200{font-size:57.600000px;}
.fs0_c00200{font-size:60.600000px;}
.fs7_c00200{font-size:66.000000px;}
.fs2_c00200{font-size:68.400000px;}
.fs1_c00200{font-size:69.000000px;}
.fs3_c00200{font-size:73.800000px;}
.fs6_c00200{font-size:76.800000px;}
.fs4_c00200{font-size:92.400000px;}
.y0_c00200{bottom:0.000000px;}
.y22_c00200{bottom:74.175015px;}
.y21_c00200{bottom:145.431915px;}
.y20_c00200{bottom:176.400015px;}
.y1f_c00200{bottom:198.735015px;}
.y1e_c00200{bottom:207.375015px;}
.y1d_c00200{bottom:269.295015px;}
.y1c_c00200{bottom:269.295765px;}
.y1b_c00200{bottom:333.000015px;}
.y1a_c00200{bottom:364.335015px;}
.y19_c00200{bottom:395.295015px;}
.y18_c00200{bottom:395.303115px;}
.y16_c00200{bottom:425.889015px;}
.y17_c00200{bottom:425.895015px;}
.y15_c00200{bottom:456.840015px;}
.y14_c00200{bottom:456.848115px;}
.y13_c00200{bottom:487.440015px;}
.y28_c00200{bottom:527.055015px;}
.y27_c00200{bottom:532.815015px;}
.y26_c00200{bottom:539.295015px;}
.y12_c00200{bottom:548.655015px;}
.y25_c00200{bottom:552.255015px;}
.y11_c00200{bottom:579.600915px;}
.y10_c00200{bottom:610.928115px;}
.y24_c00200{bottom:615.255015px;}
.y23_c00200{bottom:618.840015px;}
.yf_c00200{bottom:641.520915px;}
.ye_c00200{bottom:672.489015px;}
.yc_c00200{bottom:703.431915px;}
.yd_c00200{bottom:703.440015px;}
.yb_c00200{bottom:734.400015px;}
.ya_c00200{bottom:796.335015px;}
.y9_c00200{bottom:827.280015px;}
.y8_c00200{bottom:889.215015px;}
.y7_c00200{bottom:937.095015px;}
.y6_c00200{bottom:966.960015px;}
.y4_c00200{bottom:1028.528115px;}
.y5_c00200{bottom:1028.535015px;}
.y3_c00200{bottom:1059.120015px;}
.y2_c00200{bottom:1121.400015px;}
.y1_c00200{bottom:1199.175015px;}
.hd_c00200{height:9.590400px;}
.h10_c00200{height:19.433206px;}
.hf_c00200{height:21.902970px;}
.he_c00200{height:24.935040px;}
.ha_c00200{height:56.531250px;}
.h2_c00200{height:59.475586px;}
.h4_c00200{height:67.130859px;}
.h3_c00200{height:67.686035px;}
.h8_c00200{height:67.719727px;}
.hc_c00200{height:68.835938px;}
.h7_c00200{height:71.964844px;}
.h6_c00200{height:72.398264px;}
.h5_c00200{height:72.427064px;}
.hb_c00200{height:80.100000px;}
.h9_c00200{height:96.370313px;}
.h1_c00200{height:1263.000000px;}
.h0_c00200{height:1263.240015px;}
.w1_c00200{width:892.500000px;}
.w0_c00200{width:892.800000px;}
.x0_c00200{left:0.000000px;}
.x23_c00200{left:117.553200px;}
.x10_c00200{left:118.620300px;}
.xc_c00200{left:119.727300px;}
.x5_c00200{left:122.718000px;}
.x1_c00200{left:125.205000px;}
.x17_c00200{left:141.675000px;}
.x1c_c00200{left:171.161250px;}
.xf_c00200{left:172.245000px;}
.xa_c00200{left:174.150000px;}
.xb_c00200{left:175.586400px;}
.x2_c00200{left:177.645000px;}
.x6_c00200{left:224.310000px;}
.x13_c00200{left:237.960000px;}
.x20_c00200{left:242.205000px;}
.x7_c00200{left:252.390000px;}
.x14_c00200{left:263.340000px;}
.x21_c00200{left:269.040000px;}
.x8_c00200{left:322.095000px;}
.x22_c00200{left:337.830000px;}
.x18_c00200{left:388.410000px;}
.x19_c00200{left:411.240000px;}
.x24_c00200{left:422.865000px;}
.x9_c00200{left:428.985000px;}
.x1d_c00200{left:445.950000px;}
.x1e_c00200{left:478.260000px;}
.x11_c00200{left:499.350000px;}
.x12_c00200{left:530.205000px;}
.x1a_c00200{left:561.360000px;}
.x15_c00200{left:614.190000px;}
.x3_c00200{left:618.015000px;}
.x16_c00200{left:642.870000px;}
.x4_c00200{left:644.685000px;}
.xd_c00200{left:688.935000px;}
.x1f_c00200{left:705.150000px;}
.xe_c00200{left:710.040000px;}
.x1b_c00200{left:736.455000px;}
.x26_c00200{left:851.895000px;}
.x25_c00200{left:852.945000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls9c_c00200{letter-spacing:-2.146667pt;}
.lsa1_c00200{letter-spacing:-2.128000pt;}
.ls86_c00200{letter-spacing:-1.495680pt;}
.ls85_c00200{letter-spacing:-1.270720pt;}
.ls99_c00200{letter-spacing:-1.257333pt;}
.ls7f_c00200{letter-spacing:-1.252480pt;}
.ls8d_c00200{letter-spacing:-0.802560pt;}
.ls8a_c00200{letter-spacing:-0.632320pt;}
.ls92_c00200{letter-spacing:-0.608000pt;}
.ls8c_c00200{letter-spacing:-0.535040pt;}
.ls8f_c00200{letter-spacing:-0.468160pt;}
.ls97_c00200{letter-spacing:-0.425600pt;}
.ls8b_c00200{letter-spacing:-0.395200pt;}
.ls9e_c00200{letter-spacing:-0.304000pt;}
.ls88_c00200{letter-spacing:-0.152000pt;}
.ls89_c00200{letter-spacing:-0.109440pt;}
.lsa3_c00200{letter-spacing:-0.092160pt;}
.ls81_c00200{letter-spacing:0.000000pt;}
.ls48_c00200{letter-spacing:0.079040pt;}
.ls78_c00200{letter-spacing:0.091200pt;}
.ls80_c00200{letter-spacing:0.145920pt;}
.ls87_c00200{letter-spacing:0.158080pt;}
.ls25_c00200{letter-spacing:0.164160pt;}
.ls4c_c00200{letter-spacing:0.188480pt;}
.ls95_c00200{letter-spacing:0.218880pt;}
.ls9f_c00200{letter-spacing:0.237120pt;}
.ls1a_c00200{letter-spacing:0.279680pt;}
.ls9_c00200{letter-spacing:0.285760pt;}
.ls39_c00200{letter-spacing:0.304000pt;}
.ls8_c00200{letter-spacing:0.312800pt;}
.ls7_c00200{letter-spacing:0.325067pt;}
.ls17_c00200{letter-spacing:0.334400pt;}
.ls91_c00200{letter-spacing:0.340480pt;}
.lsa2_c00200{letter-spacing:0.343467pt;}
.ls9d_c00200{letter-spacing:0.368000pt;}
.ls47_c00200{letter-spacing:0.401280pt;}
.ls57_c00200{letter-spacing:0.425600pt;}
.ls3f_c00200{letter-spacing:0.456000pt;}
.ls4_c00200{letter-spacing:0.492480pt;}
.lsa0_c00200{letter-spacing:0.504640pt;}
.ls1b_c00200{letter-spacing:0.510720pt;}
.ls71_c00200{letter-spacing:0.516800pt;}
.ls83_c00200{letter-spacing:0.541120pt;}
.ls3_c00200{letter-spacing:0.553280pt;}
.ls34_c00200{letter-spacing:0.559360pt;}
.ls94_c00200{letter-spacing:0.565440pt;}
.ls0_c00200{letter-spacing:0.576533pt;}
.ls59_c00200{letter-spacing:0.583680pt;}
.ls6d_c00200{letter-spacing:0.589760pt;}
.ls52_c00200{letter-spacing:0.614080pt;}
.ls1d_c00200{letter-spacing:0.637867pt;}
.ls75_c00200{letter-spacing:0.644480pt;}
.ls31_c00200{letter-spacing:0.662720pt;}
.ls46_c00200{letter-spacing:0.668800pt;}
.ls96_c00200{letter-spacing:0.674880pt;}
.ls90_c00200{letter-spacing:0.687040pt;}
.ls14_c00200{letter-spacing:0.705280pt;}
.ls28_c00200{letter-spacing:0.717440pt;}
.lsf_c00200{letter-spacing:0.723520pt;}
.lsa_c00200{letter-spacing:0.729600pt;}
.ls20_c00200{letter-spacing:0.753920pt;}
.ls22_c00200{letter-spacing:0.772160pt;}
.ls4f_c00200{letter-spacing:0.784320pt;}
.ls53_c00200{letter-spacing:0.790400pt;}
.ls5c_c00200{letter-spacing:0.796480pt;}
.ls6b_c00200{letter-spacing:0.803467pt;}
.ls67_c00200{letter-spacing:0.808640pt;}
.ls3e_c00200{letter-spacing:0.814720pt;}
.ls93_c00200{letter-spacing:0.826880pt;}
.ls19_c00200{letter-spacing:0.832960pt;}
.lsd_c00200{letter-spacing:0.845120pt;}
.ls26_c00200{letter-spacing:0.846400pt;}
.ls2e_c00200{letter-spacing:0.851200pt;}
.ls1f_c00200{letter-spacing:0.857280pt;}
.ls33_c00200{letter-spacing:0.863360pt;}
.ls10_c00200{letter-spacing:0.869440pt;}
.ls69_c00200{letter-spacing:0.881600pt;}
.ls5b_c00200{letter-spacing:0.893760pt;}
.ls4e_c00200{letter-spacing:0.905920pt;}
.ls2a_c00200{letter-spacing:0.924160pt;}
.lsa4_c00200{letter-spacing:0.933360pt;}
.ls2f_c00200{letter-spacing:0.936320pt;}
.ls13_c00200{letter-spacing:0.942400pt;}
.ls44_c00200{letter-spacing:0.960640pt;}
.ls6_c00200{letter-spacing:0.966720pt;}
.ls45_c00200{letter-spacing:0.972800pt;}
.ls60_c00200{letter-spacing:0.991040pt;}
.ls5_c00200{letter-spacing:1.003200pt;}
.ls55_c00200{letter-spacing:1.005867pt;}
.ls98_c00200{letter-spacing:1.009280pt;}
.ls3c_c00200{letter-spacing:1.015360pt;}
.ls40_c00200{letter-spacing:1.021440pt;}
.ls54_c00200{letter-spacing:1.027520pt;}
.ls43_c00200{letter-spacing:1.033600pt;}
.ls42_c00200{letter-spacing:1.039680pt;}
.ls30_c00200{letter-spacing:1.051840pt;}
.ls1e_c00200{letter-spacing:1.057920pt;}
.ls5a_c00200{letter-spacing:1.064000pt;}
.ls7b_c00200{letter-spacing:1.070080pt;}
.ls3b_c00200{letter-spacing:1.076160pt;}
.ls1_c00200{letter-spacing:1.088320pt;}
.ls29_c00200{letter-spacing:1.094400pt;}
.ls79_c00200{letter-spacing:1.106560pt;}
.ls2b_c00200{letter-spacing:1.130880pt;}
.ls9b_c00200{letter-spacing:1.136960pt;}
.ls36_c00200{letter-spacing:1.143040pt;}
.ls32_c00200{letter-spacing:1.161280pt;}
.ls64_c00200{letter-spacing:1.167360pt;}
.ls3a_c00200{letter-spacing:1.173440pt;}
.ls1c_c00200{letter-spacing:1.177600pt;}
.ls37_c00200{letter-spacing:1.191680pt;}
.ls6c_c00200{letter-spacing:1.197760pt;}
.ls70_c00200{letter-spacing:1.203840pt;}
.ls5f_c00200{letter-spacing:1.216000pt;}
.ls63_c00200{letter-spacing:1.228160pt;}
.ls16_c00200{letter-spacing:1.240320pt;}
.ls21_c00200{letter-spacing:1.251200pt;}
.ls4a_c00200{letter-spacing:1.252480pt;}
.ls38_c00200{letter-spacing:1.270720pt;}
.ls7d_c00200{letter-spacing:1.276800pt;}
.ls24_c00200{letter-spacing:1.282880pt;}
.ls5e_c00200{letter-spacing:1.295040pt;}
.ls49_c00200{letter-spacing:1.337600pt;}
.ls27_c00200{letter-spacing:1.361920pt;}
.ls6f_c00200{letter-spacing:1.368000pt;}
.ls8e_c00200{letter-spacing:1.380160pt;}
.ls50_c00200{letter-spacing:1.386240pt;}
.ls65_c00200{letter-spacing:1.392320pt;}
.ls6a_c00200{letter-spacing:1.398400pt;}
.ls7a_c00200{letter-spacing:1.416640pt;}
.ls72_c00200{letter-spacing:1.422720pt;}
.ls2d_c00200{letter-spacing:1.495680pt;}
.ls4d_c00200{letter-spacing:1.526080pt;}
.ls12_c00200{letter-spacing:1.550400pt;}
.ls35_c00200{letter-spacing:1.562560pt;}
.ls3d_c00200{letter-spacing:1.592960pt;}
.lsc_c00200{letter-spacing:1.611200pt;}
.lsb_c00200{letter-spacing:1.623360pt;}
.ls18_c00200{letter-spacing:1.665920pt;}
.ls7e_c00200{letter-spacing:1.669867pt;}
.ls11_c00200{letter-spacing:1.684160pt;}
.ls15_c00200{letter-spacing:1.705067pt;}
.ls6e_c00200{letter-spacing:1.714560pt;}
.ls58_c00200{letter-spacing:1.757120pt;}
.ls23_c00200{letter-spacing:1.763200pt;}
.ls61_c00200{letter-spacing:1.781440pt;}
.ls66_c00200{letter-spacing:1.921280pt;}
.ls4b_c00200{letter-spacing:1.951680pt;}
.ls77_c00200{letter-spacing:1.957760pt;}
.ls5d_c00200{letter-spacing:1.982080pt;}
.ls62_c00200{letter-spacing:2.024640pt;}
.ls2_c00200{letter-spacing:2.036800pt;}
.ls41_c00200{letter-spacing:2.121920pt;}
.ls51_c00200{letter-spacing:2.128000pt;}
.ls9a_c00200{letter-spacing:2.177333pt;}
.ls76_c00200{letter-spacing:2.182720pt;}
.ls7c_c00200{letter-spacing:2.188800pt;}
.lse_c00200{letter-spacing:2.413760pt;}
.ls68_c00200{letter-spacing:2.523200pt;}
.ls2c_c00200{letter-spacing:2.748160pt;}
.ls56_c00200{letter-spacing:2.760320pt;}
.ls74_c00200{letter-spacing:2.821120pt;}
.ls82_c00200{letter-spacing:3.040000pt;}
.ls84_c00200{letter-spacing:3.066667pt;}
.ls73_c00200{letter-spacing:197.982933pt;}
.ws5_c00200{word-spacing:0.000000pt;}
.ws4_c00200{word-spacing:0.079467pt;}
.ws0_c00200{word-spacing:1.413333pt;}
.ws2_c00200{word-spacing:2.222400pt;}
.ws1_c00200{word-spacing:13.721867pt;}
.ws3_c00200{word-spacing:23.075200pt;}
._c_c00200{margin-left:-6.832533pt;}
._0_c00200{margin-left:-5.490240pt;}
._9_c00200{margin-left:-4.456640pt;}
._a_c00200{margin-left:-3.429120pt;}
._12_c00200{margin-left:-2.342187pt;}
._1_c00200{margin-left:-1.368000pt;}
._3_c00200{width:1.714560pt;}
._d_c00200{width:3.212693pt;}
._2_c00200{width:4.280320pt;}
._b_c00200{width:5.790187pt;}
._6_c00200{width:7.356800pt;}
._8_c00200{width:8.323520pt;}
._5_c00200{width:10.001600pt;}
._e_c00200{width:11.114240pt;}
._4_c00200{width:12.486880pt;}
._f_c00200{width:13.514347pt;}
._7_c00200{width:15.097493pt;}
._10_c00200{width:19.071307pt;}
._11_c00200{width:20.282880pt;}
._13_c00200{width:22.018667pt;}
._14_c00200{width:23.751573pt;}
._18_c00200{width:25.572800pt;}
._16_c00200{width:26.472320pt;}
._15_c00200{width:27.586613pt;}
._17_c00200{width:29.609600pt;}
.fs8_c00200{font-size:12.800000pt;}
.fsb_c00200{font-size:17.600533pt;}
.fsa_c00200{font-size:18.667200pt;}
.fs9_c00200{font-size:33.280000pt;}
.fs5_c00200{font-size:51.200000pt;}
.fs0_c00200{font-size:53.866667pt;}
.fs7_c00200{font-size:58.666667pt;}
.fs2_c00200{font-size:60.800000pt;}
.fs1_c00200{font-size:61.333333pt;}
.fs3_c00200{font-size:65.600000pt;}
.fs6_c00200{font-size:68.266667pt;}
.fs4_c00200{font-size:82.133333pt;}
.y0_c00200{bottom:0.000000pt;}
.y22_c00200{bottom:65.933347pt;}
.y21_c00200{bottom:129.272813pt;}
.y20_c00200{bottom:156.800013pt;}
.y1f_c00200{bottom:176.653347pt;}
.y1e_c00200{bottom:184.333347pt;}
.y1d_c00200{bottom:239.373347pt;}
.y1c_c00200{bottom:239.374013pt;}
.y1b_c00200{bottom:296.000013pt;}
.y1a_c00200{bottom:323.853347pt;}
.y19_c00200{bottom:351.373347pt;}
.y18_c00200{bottom:351.380547pt;}
.y16_c00200{bottom:378.568013pt;}
.y17_c00200{bottom:378.573347pt;}
.y15_c00200{bottom:406.080013pt;}
.y14_c00200{bottom:406.087213pt;}
.y13_c00200{bottom:433.280013pt;}
.y28_c00200{bottom:468.493347pt;}
.y27_c00200{bottom:473.613347pt;}
.y26_c00200{bottom:479.373347pt;}
.y12_c00200{bottom:487.693347pt;}
.y25_c00200{bottom:490.893347pt;}
.y11_c00200{bottom:515.200813pt;}
.y10_c00200{bottom:543.047213pt;}
.y24_c00200{bottom:546.893347pt;}
.y23_c00200{bottom:550.080013pt;}
.yf_c00200{bottom:570.240813pt;}
.ye_c00200{bottom:597.768013pt;}
.yc_c00200{bottom:625.272813pt;}
.yd_c00200{bottom:625.280013pt;}
.yb_c00200{bottom:652.800013pt;}
.ya_c00200{bottom:707.853347pt;}
.y9_c00200{bottom:735.360013pt;}
.y8_c00200{bottom:790.413347pt;}
.y7_c00200{bottom:832.973347pt;}
.y6_c00200{bottom:859.520013pt;}
.y4_c00200{bottom:914.247213pt;}
.y5_c00200{bottom:914.253347pt;}
.y3_c00200{bottom:941.440013pt;}
.y2_c00200{bottom:996.800013pt;}
.y1_c00200{bottom:1065.933347pt;}
.hd_c00200{height:8.524800pt;}
.h10_c00200{height:17.273961pt;}
.hf_c00200{height:19.469306pt;}
.he_c00200{height:22.164480pt;}
.ha_c00200{height:50.250000pt;}
.h2_c00200{height:52.867187pt;}
.h4_c00200{height:59.671875pt;}
.h3_c00200{height:60.165365pt;}
.h8_c00200{height:60.195312pt;}
.hc_c00200{height:61.187500pt;}
.h7_c00200{height:63.968750pt;}
.h6_c00200{height:64.354012pt;}
.h5_c00200{height:64.379613pt;}
.hb_c00200{height:71.200000pt;}
.h9_c00200{height:85.662500pt;}
.h1_c00200{height:1122.666667pt;}
.h0_c00200{height:1122.880013pt;}
.w1_c00200{width:793.333333pt;}
.w0_c00200{width:793.600000pt;}
.x0_c00200{left:0.000000pt;}
.x23_c00200{left:104.491733pt;}
.x10_c00200{left:105.440267pt;}
.xc_c00200{left:106.424267pt;}
.x5_c00200{left:109.082667pt;}
.x1_c00200{left:111.293333pt;}
.x17_c00200{left:125.933333pt;}
.x1c_c00200{left:152.143333pt;}
.xf_c00200{left:153.106667pt;}
.xa_c00200{left:154.800000pt;}
.xb_c00200{left:156.076800pt;}
.x2_c00200{left:157.906667pt;}
.x6_c00200{left:199.386667pt;}
.x13_c00200{left:211.520000pt;}
.x20_c00200{left:215.293333pt;}
.x7_c00200{left:224.346667pt;}
.x14_c00200{left:234.080000pt;}
.x21_c00200{left:239.146667pt;}
.x8_c00200{left:286.306667pt;}
.x22_c00200{left:300.293333pt;}
.x18_c00200{left:345.253333pt;}
.x19_c00200{left:365.546667pt;}
.x24_c00200{left:375.880000pt;}
.x9_c00200{left:381.320000pt;}
.x1d_c00200{left:396.400000pt;}
.x1e_c00200{left:425.120000pt;}
.x11_c00200{left:443.866667pt;}
.x12_c00200{left:471.293333pt;}
.x1a_c00200{left:498.986667pt;}
.x15_c00200{left:545.946667pt;}
.x3_c00200{left:549.346667pt;}
.x16_c00200{left:571.440000pt;}
.x4_c00200{left:573.053333pt;}
.xd_c00200{left:612.386667pt;}
.x1f_c00200{left:626.800000pt;}
.xe_c00200{left:631.146667pt;}
.x1b_c00200{left:654.626667pt;}
.x26_c00200{left:757.240000pt;}
.x25_c00200{left:758.173333pt;}
}





/* 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_c00201 {
    display:none;
  }
  .loading-indicator_c00201.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00201 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_c00201 { 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_c00201" -> "#page-container .classname_c00201")
 */
.pf_c00201 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00201 { /* 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_c00201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00201 { /* 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_c00201 { /* 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_c00201 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00201 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00201 {overflow:visible;}
  }
}
.c_c00201 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00201 { /* 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_c00201:after { /* webkit #35443 */
  content: '';
}
.t_c00201:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00201 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 */
}
.__c00201 { /* 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_c00201 { /* info for Javascript */
  display:none;
}
.l_c00201 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00201 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00201 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00201: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_c00201 {
    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_c00201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00201.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_c00201 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00201;src:url('chunks/assets/font_68d94409ef99743dbcdcfafa.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.284668;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_c00201;src:url('chunks/assets/font_fc3b09e52119c6755f37ad38.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.284180;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_c00201;src:url('chunks/assets/font_6afdd6c35724bda0cf9cd3b4.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:0.666000;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_c00201;src:url('chunks/assets/font_5ceabc5131b1c6c09817afac.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;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;}
.m7_c00201{transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);}
.m3_c00201{transform:matrix(0.223211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223211,0.000000,0.000000,0.250000,0,0);}
.m9_c00201{transform:matrix(0.239219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239219,0.000000,0.000000,0.250000,0,0);}
.m8_c00201{transform:matrix(0.240518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240518,0.000000,0.000000,0.250000,0,0);}
.m4_c00201{transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);}
.m0_c00201{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m5_c00201{transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);}
.m1_c00201{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);}
.m6_c00201{transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);}
.m2_c00201{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls77_c00201{letter-spacing:-2.394000px;}
.ls68_c00201{letter-spacing:-2.352000px;}
.ls7d_c00201{letter-spacing:-2.168280px;}
.ls6f_c00201{letter-spacing:-2.134080px;}
.ls93_c00201{letter-spacing:-2.016000px;}
.ls6c_c00201{letter-spacing:-1.963080px;}
.ls87_c00201{letter-spacing:-1.826280px;}
.ls74_c00201{letter-spacing:-1.682640px;}
.ls73_c00201{letter-spacing:-1.429560px;}
.ls7e_c00201{letter-spacing:-1.347480px;}
.ls82_c00201{letter-spacing:-1.313280px;}
.ls90_c00201{letter-spacing:-1.219516px;}
.ls89_c00201{letter-spacing:-1.080720px;}
.ls86_c00201{letter-spacing:-1.046520px;}
.ls7b_c00201{letter-spacing:-0.896040px;}
.ls76_c00201{letter-spacing:-0.868680px;}
.ls88_c00201{letter-spacing:-0.834480px;}
.ls6d_c00201{letter-spacing:-0.684000px;}
.ls92_c00201{letter-spacing:-0.663480px;}
.ls8b_c00201{letter-spacing:-0.650880px;}
.ls6a_c00201{letter-spacing:-0.615600px;}
.ls7f_c00201{letter-spacing:-0.533520px;}
.ls6b_c00201{letter-spacing:-0.526680px;}
.ls7c_c00201{letter-spacing:-0.458280px;}
.ls72_c00201{letter-spacing:-0.376200px;}
.ls80_c00201{letter-spacing:-0.348840px;}
.ls84_c00201{letter-spacing:-0.322560px;}
.ls6e_c00201{letter-spacing:-0.259920px;}
.ls83_c00201{letter-spacing:-0.241920px;}
.ls91_c00201{letter-spacing:-0.191520px;}
.ls81_c00201{letter-spacing:-0.171000px;}
.ls78_c00201{letter-spacing:-0.123120px;}
.ls8e_c00201{letter-spacing:-0.082080px;}
.ls85_c00201{letter-spacing:-0.073920px;}
.ls70_c00201{letter-spacing:-0.061560px;}
.ls8d_c00201{letter-spacing:-0.020520px;}
.ls69_c00201{letter-spacing:0.000000px;}
.ls37_c00201{letter-spacing:0.006840px;}
.ls54_c00201{letter-spacing:0.013680px;}
.ls13_c00201{letter-spacing:0.068400px;}
.ls5_c00201{letter-spacing:0.109440px;}
.ls55_c00201{letter-spacing:0.136800px;}
.ls53_c00201{letter-spacing:0.198360px;}
.ls21_c00201{letter-spacing:0.205200px;}
.ls25_c00201{letter-spacing:0.212040px;}
.ls52_c00201{letter-spacing:0.218880px;}
.ls38_c00201{letter-spacing:0.239400px;}
.ls7_c00201{letter-spacing:0.246240px;}
.ls62_c00201{letter-spacing:0.253080px;}
.ls11_c00201{letter-spacing:0.259920px;}
.ls4d_c00201{letter-spacing:0.273600px;}
.ls5e_c00201{letter-spacing:0.294120px;}
.ls59_c00201{letter-spacing:0.321480px;}
.ls46_c00201{letter-spacing:0.335160px;}
.ls66_c00201{letter-spacing:0.342000px;}
.ls29_c00201{letter-spacing:0.364140px;}
.ls47_c00201{letter-spacing:0.369360px;}
.ls79_c00201{letter-spacing:0.376200px;}
.ls1f_c00201{letter-spacing:0.383040px;}
.ls26_c00201{letter-spacing:0.403560px;}
.ls58_c00201{letter-spacing:0.437760px;}
.ls57_c00201{letter-spacing:0.444600px;}
.ls18_c00201{letter-spacing:0.465120px;}
.ls8f_c00201{letter-spacing:0.471960px;}
.ls1a_c00201{letter-spacing:0.478800px;}
.ls1c_c00201{letter-spacing:0.485640px;}
.ls3_c00201{letter-spacing:0.526680px;}
.ls8c_c00201{letter-spacing:0.533520px;}
.ls12_c00201{letter-spacing:0.554040px;}
.ls4c_c00201{letter-spacing:0.560880px;}
.lsc_c00201{letter-spacing:0.574560px;}
.ls17_c00201{letter-spacing:0.581400px;}
.ls3d_c00201{letter-spacing:0.588240px;}
.ls4a_c00201{letter-spacing:0.608760px;}
.ls43_c00201{letter-spacing:0.615600px;}
.ls2b_c00201{letter-spacing:0.622440px;}
.ls48_c00201{letter-spacing:0.629280px;}
.ls75_c00201{letter-spacing:0.649800px;}
.ls15_c00201{letter-spacing:0.656640px;}
.ls0_c00201{letter-spacing:0.663480px;}
.ls5a_c00201{letter-spacing:0.670320px;}
.ls2a_c00201{letter-spacing:0.677160px;}
.lse_c00201{letter-spacing:0.690840px;}
.ls32_c00201{letter-spacing:0.704520px;}
.ls63_c00201{letter-spacing:0.725040px;}
.ls5d_c00201{letter-spacing:0.738720px;}
.ls51_c00201{letter-spacing:0.752400px;}
.ls60_c00201{letter-spacing:0.786600px;}
.ls1b_c00201{letter-spacing:0.813960px;}
.ls3c_c00201{letter-spacing:0.820800px;}
.ls16_c00201{letter-spacing:0.841320px;}
.ls5f_c00201{letter-spacing:0.848160px;}
.ls2c_c00201{letter-spacing:0.855000px;}
.ls44_c00201{letter-spacing:0.861840px;}
.ls10_c00201{letter-spacing:0.889200px;}
.ls3a_c00201{letter-spacing:0.896040px;}
.lsa_c00201{letter-spacing:0.909720px;}
.ls9_c00201{letter-spacing:0.916560px;}
.lsd_c00201{letter-spacing:0.930240px;}
.ls3f_c00201{letter-spacing:0.934080px;}
.ls4f_c00201{letter-spacing:0.943920px;}
.ls6_c00201{letter-spacing:0.950760px;}
.ls33_c00201{letter-spacing:0.964440px;}
.ls1_c00201{letter-spacing:0.978120px;}
.ls27_c00201{letter-spacing:0.991800px;}
.ls23_c00201{letter-spacing:0.998640px;}
.ls41_c00201{letter-spacing:1.053360px;}
.ls5b_c00201{letter-spacing:1.060200px;}
.ls4b_c00201{letter-spacing:1.067040px;}
.ls35_c00201{letter-spacing:1.073880px;}
.ls1e_c00201{letter-spacing:1.087560px;}
.ls3e_c00201{letter-spacing:1.101240px;}
.ls4_c00201{letter-spacing:1.108080px;}
.ls67_c00201{letter-spacing:1.114920px;}
.ls50_c00201{letter-spacing:1.135440px;}
.ls8_c00201{letter-spacing:1.176480px;}
.ls39_c00201{letter-spacing:1.217520px;}
.lsf_c00201{letter-spacing:1.224360px;}
.ls34_c00201{letter-spacing:1.251720px;}
.ls40_c00201{letter-spacing:1.272240px;}
.ls3b_c00201{letter-spacing:1.320120px;}
.lsb_c00201{letter-spacing:1.326960px;}
.ls42_c00201{letter-spacing:1.340640px;}
.ls1d_c00201{letter-spacing:1.347480px;}
.ls61_c00201{letter-spacing:1.361160px;}
.ls30_c00201{letter-spacing:1.395360px;}
.ls5c_c00201{letter-spacing:1.429560px;}
.ls8a_c00201{letter-spacing:1.504800px;}
.ls2d_c00201{letter-spacing:1.511640px;}
.ls31_c00201{letter-spacing:1.518480px;}
.ls2_c00201{letter-spacing:1.648440px;}
.ls45_c00201{letter-spacing:1.668960px;}
.ls2f_c00201{letter-spacing:1.730520px;}
.ls56_c00201{letter-spacing:1.737360px;}
.ls14_c00201{letter-spacing:1.757880px;}
.ls2e_c00201{letter-spacing:1.935720px;}
.ls4e_c00201{letter-spacing:1.956240px;}
.ls20_c00201{letter-spacing:2.072520px;}
.ls65_c00201{letter-spacing:2.250360px;}
.ls36_c00201{letter-spacing:2.318760px;}
.ls28_c00201{letter-spacing:2.334780px;}
.ls64_c00201{letter-spacing:2.387160px;}
.ls19_c00201{letter-spacing:2.482920px;}
.ls22_c00201{letter-spacing:2.715480px;}
.ls24_c00201{letter-spacing:2.838600px;}
.ls49_c00201{letter-spacing:3.091680px;}
.ls7a_c00201{letter-spacing:3.378960px;}
.ls71_c00201{letter-spacing:3.420000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{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__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00201{word-spacing:0.000000px;}
.ws2_c00201{word-spacing:3.177840px;}
.ws0_c00201{word-spacing:5.916600px;}
.ws1_c00201{word-spacing:6.703200px;}
._9_c00201{margin-left:-6.619440px;}
._5_c00201{margin-left:-5.321280px;}
._10_c00201{margin-left:-4.144800px;}
._7_c00201{margin-left:-2.681760px;}
._3_c00201{margin-left:-1.073640px;}
._1_c00201{width:1.682400px;}
._6_c00201{width:3.023520px;}
._2_c00201{width:4.035600px;}
._8_c00201{width:5.759760px;}
._0_c00201{width:6.910920px;}
._12_c00201{width:8.947320px;}
._4_c00201{width:10.143960px;}
._f_c00201{width:11.264760px;}
._11_c00201{width:13.815600px;}
._b_c00201{width:14.986200px;}
._d_c00201{width:17.533920px;}
._a_c00201{width:23.406000px;}
._e_c00201{width:25.063320px;}
._c_c00201{width:26.195640px;}
._13_c00201{width:29.596680px;}
._14_c00201{width:31.327200px;}
._15_c00201{width:32.394240px;}
._16_c00201{width:40.123440px;}
.fc0_c00201{color:transparent;}
.fs5_c00201{font-size:45.000600px;}
.fs3_c00201{font-size:54.720000px;}
.fs6_c00201{font-size:57.600000px;}
.fs8_c00201{font-size:66.000000px;}
.fs0_c00201{font-size:67.200000px;}
.fs4_c00201{font-size:67.800000px;}
.fs1_c00201{font-size:68.400000px;}
.fs2_c00201{font-size:71.400000px;}
.fs7_c00201{font-size:76.800000px;}
.y0_c00201{bottom:0.000000px;}
.y23_c00201{bottom:68.040015px;}
.y22_c00201{bottom:157.684515px;}
.y21_c00201{bottom:186.840015px;}
.y1f_c00201{bottom:217.806915px;}
.y20_c00201{bottom:217.815015px;}
.y1e_c00201{bottom:248.775015px;}
.y1d_c00201{bottom:279.743115px;}
.y1c_c00201{bottom:310.342215px;}
.y1a_c00201{bottom:340.566915px;}
.y1b_c00201{bottom:340.575015px;}
.y19_c00201{bottom:371.535015px;}
.y18_c00201{bottom:371.543115px;}
.y17_c00201{bottom:402.135015px;}
.y16_c00201{bottom:464.055015px;}
.y15_c00201{bottom:464.063115px;}
.y14_c00201{bottom:494.655015px;}
.y13_c00201{bottom:525.606015px;}
.y12_c00201{bottom:556.215015px;}
.y11_c00201{bottom:587.526015px;}
.y25_c00201{bottom:615.255015px;}
.y10_c00201{bottom:618.135015px;}
.y24_c00201{bottom:618.840015px;}
.yf_c00201{bottom:649.447215px;}
.ye_c00201{bottom:679.680015px;}
.yc_c00201{bottom:727.911915px;}
.yd_c00201{bottom:727.920015px;}
.yb_c00201{bottom:776.168115px;}
.ya_c00201{bottom:806.760015px;}
.y8_c00201{bottom:868.687215px;}
.y9_c00201{bottom:868.695015px;}
.y7_c00201{bottom:898.920015px;}
.y6_c00201{bottom:929.535015px;}
.y5_c00201{bottom:991.095015px;}
.y4_c00201{bottom:1021.686915px;}
.y3_c00201{bottom:1083.246915px;}
.y2_c00201{bottom:1114.215015px;}
.y1_c00201{bottom:1190.895015px;}
.h6_c00201{height:36.443520px;}
.h8_c00201{height:56.531250px;}
.h2_c00201{height:65.953125px;}
.h5_c00201{height:67.106859px;}
.h3_c00201{height:67.130859px;}
.h7_c00201{height:67.163259px;}
.ha_c00201{height:68.835938px;}
.h4_c00201{height:70.040332px;}
.h9_c00201{height:80.100000px;}
.h1_c00201{height:1263.000000px;}
.h0_c00201{height:1263.240015px;}
.w1_c00201{width:892.500000px;}
.w0_c00201{width:892.800000px;}
.x0_c00201{left:0.000000px;}
.x12_c00201{left:124.410000px;}
.xd_c00201{left:125.820600px;}
.x1_c00201{left:128.085000px;}
.x3_c00201{left:157.245000px;}
.x7_c00201{left:178.821000px;}
.x9_c00201{left:179.895000px;}
.x2_c00201{left:181.226400px;}
.x6_c00201{left:255.150000px;}
.x4_c00201{left:321.390000px;}
.x5_c00201{left:344.445000px;}
.x8_c00201{left:371.715000px;}
.x13_c00201{left:427.200000px;}
.xa_c00201{left:561.375000px;}
.xb_c00201{left:577.605000px;}
.xc_c00201{left:605.055000px;}
.x10_c00201{left:637.920000px;}
.xe_c00201{left:687.240000px;}
.x11_c00201{left:699.315000px;}
.xf_c00201{left:716.430000px;}
.x15_c00201{left:855.495000px;}
.x14_c00201{left:856.545000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls77_c00201{letter-spacing:-2.128000pt;}
.ls68_c00201{letter-spacing:-2.090667pt;}
.ls7d_c00201{letter-spacing:-1.927360pt;}
.ls6f_c00201{letter-spacing:-1.896960pt;}
.ls93_c00201{letter-spacing:-1.792000pt;}
.ls6c_c00201{letter-spacing:-1.744960pt;}
.ls87_c00201{letter-spacing:-1.623360pt;}
.ls74_c00201{letter-spacing:-1.495680pt;}
.ls73_c00201{letter-spacing:-1.270720pt;}
.ls7e_c00201{letter-spacing:-1.197760pt;}
.ls82_c00201{letter-spacing:-1.167360pt;}
.ls90_c00201{letter-spacing:-1.084014pt;}
.ls89_c00201{letter-spacing:-0.960640pt;}
.ls86_c00201{letter-spacing:-0.930240pt;}
.ls7b_c00201{letter-spacing:-0.796480pt;}
.ls76_c00201{letter-spacing:-0.772160pt;}
.ls88_c00201{letter-spacing:-0.741760pt;}
.ls6d_c00201{letter-spacing:-0.608000pt;}
.ls92_c00201{letter-spacing:-0.589760pt;}
.ls8b_c00201{letter-spacing:-0.578560pt;}
.ls6a_c00201{letter-spacing:-0.547200pt;}
.ls7f_c00201{letter-spacing:-0.474240pt;}
.ls6b_c00201{letter-spacing:-0.468160pt;}
.ls7c_c00201{letter-spacing:-0.407360pt;}
.ls72_c00201{letter-spacing:-0.334400pt;}
.ls80_c00201{letter-spacing:-0.310080pt;}
.ls84_c00201{letter-spacing:-0.286720pt;}
.ls6e_c00201{letter-spacing:-0.231040pt;}
.ls83_c00201{letter-spacing:-0.215040pt;}
.ls91_c00201{letter-spacing:-0.170240pt;}
.ls81_c00201{letter-spacing:-0.152000pt;}
.ls78_c00201{letter-spacing:-0.109440pt;}
.ls8e_c00201{letter-spacing:-0.072960pt;}
.ls85_c00201{letter-spacing:-0.065707pt;}
.ls70_c00201{letter-spacing:-0.054720pt;}
.ls8d_c00201{letter-spacing:-0.018240pt;}
.ls69_c00201{letter-spacing:0.000000pt;}
.ls37_c00201{letter-spacing:0.006080pt;}
.ls54_c00201{letter-spacing:0.012160pt;}
.ls13_c00201{letter-spacing:0.060800pt;}
.ls5_c00201{letter-spacing:0.097280pt;}
.ls55_c00201{letter-spacing:0.121600pt;}
.ls53_c00201{letter-spacing:0.176320pt;}
.ls21_c00201{letter-spacing:0.182400pt;}
.ls25_c00201{letter-spacing:0.188480pt;}
.ls52_c00201{letter-spacing:0.194560pt;}
.ls38_c00201{letter-spacing:0.212800pt;}
.ls7_c00201{letter-spacing:0.218880pt;}
.ls62_c00201{letter-spacing:0.224960pt;}
.ls11_c00201{letter-spacing:0.231040pt;}
.ls4d_c00201{letter-spacing:0.243200pt;}
.ls5e_c00201{letter-spacing:0.261440pt;}
.ls59_c00201{letter-spacing:0.285760pt;}
.ls46_c00201{letter-spacing:0.297920pt;}
.ls66_c00201{letter-spacing:0.304000pt;}
.ls29_c00201{letter-spacing:0.323680pt;}
.ls47_c00201{letter-spacing:0.328320pt;}
.ls79_c00201{letter-spacing:0.334400pt;}
.ls1f_c00201{letter-spacing:0.340480pt;}
.ls26_c00201{letter-spacing:0.358720pt;}
.ls58_c00201{letter-spacing:0.389120pt;}
.ls57_c00201{letter-spacing:0.395200pt;}
.ls18_c00201{letter-spacing:0.413440pt;}
.ls8f_c00201{letter-spacing:0.419520pt;}
.ls1a_c00201{letter-spacing:0.425600pt;}
.ls1c_c00201{letter-spacing:0.431680pt;}
.ls3_c00201{letter-spacing:0.468160pt;}
.ls8c_c00201{letter-spacing:0.474240pt;}
.ls12_c00201{letter-spacing:0.492480pt;}
.ls4c_c00201{letter-spacing:0.498560pt;}
.lsc_c00201{letter-spacing:0.510720pt;}
.ls17_c00201{letter-spacing:0.516800pt;}
.ls3d_c00201{letter-spacing:0.522880pt;}
.ls4a_c00201{letter-spacing:0.541120pt;}
.ls43_c00201{letter-spacing:0.547200pt;}
.ls2b_c00201{letter-spacing:0.553280pt;}
.ls48_c00201{letter-spacing:0.559360pt;}
.ls75_c00201{letter-spacing:0.577600pt;}
.ls15_c00201{letter-spacing:0.583680pt;}
.ls0_c00201{letter-spacing:0.589760pt;}
.ls5a_c00201{letter-spacing:0.595840pt;}
.ls2a_c00201{letter-spacing:0.601920pt;}
.lse_c00201{letter-spacing:0.614080pt;}
.ls32_c00201{letter-spacing:0.626240pt;}
.ls63_c00201{letter-spacing:0.644480pt;}
.ls5d_c00201{letter-spacing:0.656640pt;}
.ls51_c00201{letter-spacing:0.668800pt;}
.ls60_c00201{letter-spacing:0.699200pt;}
.ls1b_c00201{letter-spacing:0.723520pt;}
.ls3c_c00201{letter-spacing:0.729600pt;}
.ls16_c00201{letter-spacing:0.747840pt;}
.ls5f_c00201{letter-spacing:0.753920pt;}
.ls2c_c00201{letter-spacing:0.760000pt;}
.ls44_c00201{letter-spacing:0.766080pt;}
.ls10_c00201{letter-spacing:0.790400pt;}
.ls3a_c00201{letter-spacing:0.796480pt;}
.lsa_c00201{letter-spacing:0.808640pt;}
.ls9_c00201{letter-spacing:0.814720pt;}
.lsd_c00201{letter-spacing:0.826880pt;}
.ls3f_c00201{letter-spacing:0.830293pt;}
.ls4f_c00201{letter-spacing:0.839040pt;}
.ls6_c00201{letter-spacing:0.845120pt;}
.ls33_c00201{letter-spacing:0.857280pt;}
.ls1_c00201{letter-spacing:0.869440pt;}
.ls27_c00201{letter-spacing:0.881600pt;}
.ls23_c00201{letter-spacing:0.887680pt;}
.ls41_c00201{letter-spacing:0.936320pt;}
.ls5b_c00201{letter-spacing:0.942400pt;}
.ls4b_c00201{letter-spacing:0.948480pt;}
.ls35_c00201{letter-spacing:0.954560pt;}
.ls1e_c00201{letter-spacing:0.966720pt;}
.ls3e_c00201{letter-spacing:0.978880pt;}
.ls4_c00201{letter-spacing:0.984960pt;}
.ls67_c00201{letter-spacing:0.991040pt;}
.ls50_c00201{letter-spacing:1.009280pt;}
.ls8_c00201{letter-spacing:1.045760pt;}
.ls39_c00201{letter-spacing:1.082240pt;}
.lsf_c00201{letter-spacing:1.088320pt;}
.ls34_c00201{letter-spacing:1.112640pt;}
.ls40_c00201{letter-spacing:1.130880pt;}
.ls3b_c00201{letter-spacing:1.173440pt;}
.lsb_c00201{letter-spacing:1.179520pt;}
.ls42_c00201{letter-spacing:1.191680pt;}
.ls1d_c00201{letter-spacing:1.197760pt;}
.ls61_c00201{letter-spacing:1.209920pt;}
.ls30_c00201{letter-spacing:1.240320pt;}
.ls5c_c00201{letter-spacing:1.270720pt;}
.ls8a_c00201{letter-spacing:1.337600pt;}
.ls2d_c00201{letter-spacing:1.343680pt;}
.ls31_c00201{letter-spacing:1.349760pt;}
.ls2_c00201{letter-spacing:1.465280pt;}
.ls45_c00201{letter-spacing:1.483520pt;}
.ls2f_c00201{letter-spacing:1.538240pt;}
.ls56_c00201{letter-spacing:1.544320pt;}
.ls14_c00201{letter-spacing:1.562560pt;}
.ls2e_c00201{letter-spacing:1.720640pt;}
.ls4e_c00201{letter-spacing:1.738880pt;}
.ls20_c00201{letter-spacing:1.842240pt;}
.ls65_c00201{letter-spacing:2.000320pt;}
.ls36_c00201{letter-spacing:2.061120pt;}
.ls28_c00201{letter-spacing:2.075360pt;}
.ls64_c00201{letter-spacing:2.121920pt;}
.ls19_c00201{letter-spacing:2.207040pt;}
.ls22_c00201{letter-spacing:2.413760pt;}
.ls24_c00201{letter-spacing:2.523200pt;}
.ls49_c00201{letter-spacing:2.748160pt;}
.ls7a_c00201{letter-spacing:3.003520pt;}
.ls71_c00201{letter-spacing:3.040000pt;}
.ws3_c00201{word-spacing:0.000000pt;}
.ws2_c00201{word-spacing:2.824747pt;}
.ws0_c00201{word-spacing:5.259200pt;}
.ws1_c00201{word-spacing:5.958400pt;}
._9_c00201{margin-left:-5.883947pt;}
._5_c00201{margin-left:-4.730027pt;}
._10_c00201{margin-left:-3.684267pt;}
._7_c00201{margin-left:-2.383787pt;}
._3_c00201{margin-left:-0.954347pt;}
._1_c00201{width:1.495467pt;}
._6_c00201{width:2.687573pt;}
._2_c00201{width:3.587200pt;}
._8_c00201{width:5.119787pt;}
._0_c00201{width:6.143040pt;}
._12_c00201{width:7.953173pt;}
._4_c00201{width:9.016853pt;}
._f_c00201{width:10.013120pt;}
._11_c00201{width:12.280533pt;}
._b_c00201{width:13.321067pt;}
._d_c00201{width:15.585707pt;}
._a_c00201{width:20.805333pt;}
._e_c00201{width:22.278507pt;}
._c_c00201{width:23.285013pt;}
._13_c00201{width:26.308160pt;}
._14_c00201{width:27.846400pt;}
._15_c00201{width:28.794880pt;}
._16_c00201{width:35.665280pt;}
.fs5_c00201{font-size:40.000533pt;}
.fs3_c00201{font-size:48.640000pt;}
.fs6_c00201{font-size:51.200000pt;}
.fs8_c00201{font-size:58.666667pt;}
.fs0_c00201{font-size:59.733333pt;}
.fs4_c00201{font-size:60.266667pt;}
.fs1_c00201{font-size:60.800000pt;}
.fs2_c00201{font-size:63.466667pt;}
.fs7_c00201{font-size:68.266667pt;}
.y0_c00201{bottom:0.000000pt;}
.y23_c00201{bottom:60.480013pt;}
.y22_c00201{bottom:140.164013pt;}
.y21_c00201{bottom:166.080013pt;}
.y1f_c00201{bottom:193.606147pt;}
.y20_c00201{bottom:193.613347pt;}
.y1e_c00201{bottom:221.133347pt;}
.y1d_c00201{bottom:248.660547pt;}
.y1c_c00201{bottom:275.859747pt;}
.y1a_c00201{bottom:302.726147pt;}
.y1b_c00201{bottom:302.733347pt;}
.y19_c00201{bottom:330.253347pt;}
.y18_c00201{bottom:330.260547pt;}
.y17_c00201{bottom:357.453347pt;}
.y16_c00201{bottom:412.493347pt;}
.y15_c00201{bottom:412.500547pt;}
.y14_c00201{bottom:439.693347pt;}
.y13_c00201{bottom:467.205347pt;}
.y12_c00201{bottom:494.413347pt;}
.y11_c00201{bottom:522.245347pt;}
.y25_c00201{bottom:546.893347pt;}
.y10_c00201{bottom:549.453347pt;}
.y24_c00201{bottom:550.080013pt;}
.yf_c00201{bottom:577.286413pt;}
.ye_c00201{bottom:604.160013pt;}
.yc_c00201{bottom:647.032813pt;}
.yd_c00201{bottom:647.040013pt;}
.yb_c00201{bottom:689.927213pt;}
.ya_c00201{bottom:717.120013pt;}
.y8_c00201{bottom:772.166413pt;}
.y9_c00201{bottom:772.173347pt;}
.y7_c00201{bottom:799.040013pt;}
.y6_c00201{bottom:826.253347pt;}
.y5_c00201{bottom:880.973347pt;}
.y4_c00201{bottom:908.166147pt;}
.y3_c00201{bottom:962.886147pt;}
.y2_c00201{bottom:990.413347pt;}
.y1_c00201{bottom:1058.573347pt;}
.h6_c00201{height:32.394240pt;}
.h8_c00201{height:50.250000pt;}
.h2_c00201{height:58.625000pt;}
.h5_c00201{height:59.650542pt;}
.h3_c00201{height:59.671875pt;}
.h7_c00201{height:59.700675pt;}
.ha_c00201{height:61.187500pt;}
.h4_c00201{height:62.258073pt;}
.h9_c00201{height:71.200000pt;}
.h1_c00201{height:1122.666667pt;}
.h0_c00201{height:1122.880013pt;}
.w1_c00201{width:793.333333pt;}
.w0_c00201{width:793.600000pt;}
.x0_c00201{left:0.000000pt;}
.x12_c00201{left:110.586667pt;}
.xd_c00201{left:111.840533pt;}
.x1_c00201{left:113.853333pt;}
.x3_c00201{left:139.773333pt;}
.x7_c00201{left:158.952000pt;}
.x9_c00201{left:159.906667pt;}
.x2_c00201{left:161.090133pt;}
.x6_c00201{left:226.800000pt;}
.x4_c00201{left:285.680000pt;}
.x5_c00201{left:306.173333pt;}
.x8_c00201{left:330.413333pt;}
.x13_c00201{left:379.733333pt;}
.xa_c00201{left:499.000000pt;}
.xb_c00201{left:513.426667pt;}
.xc_c00201{left:537.826667pt;}
.x10_c00201{left:567.040000pt;}
.xe_c00201{left:610.880000pt;}
.x11_c00201{left:621.613333pt;}
.xf_c00201{left:636.826667pt;}
.x15_c00201{left:760.440000pt;}
.x14_c00201{left:761.373333pt;}
}





/* 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_c00202 {
    display:none;
  }
  .loading-indicator_c00202.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00202 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_c00202 { 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_c00202" -> "#page-container .classname_c00202")
 */
.pf_c00202 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00202 { /* 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_c00202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00202 { /* 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_c00202 { /* 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_c00202 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00202 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00202 {overflow:visible;}
  }
}
.c_c00202 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00202 { /* 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_c00202:after { /* webkit #35443 */
  content: '';
}
.t_c00202:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00202 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 */
}
.__c00202 { /* 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_c00202 { /* info for Javascript */
  display:none;
}
.l_c00202 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00202 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00202 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00202: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_c00202 {
    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_c00202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00202.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_c00202 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00202;src:url('chunks/assets/font_d4fb31d80c2b5953b3c75930.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.284668;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_c00202;src:url('chunks/assets/font_f719128bcf2f7793241dee96.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.284180;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_c00202;src:url('chunks/assets/font_e7bfdb44603fc99e9342d0ae.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.311035;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_c00202;src:url('chunks/assets/font_6244161b82758fc27f33aac8.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;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:ff5_c00202;src:url('chunks/assets/font_87f20607f23fbca0f16845da.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:0.666000;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;}
.m5_c00202{transform:matrix(0.141749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141749,0.000000,0.000000,0.250000,0,0);}
.m4_c00202{transform:matrix(0.145021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145021,0.000000,0.000000,0.250000,0,0);}
.m2_c00202{transform:matrix(0.218874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218874,0.000000,0.000000,0.250000,0,0);}
.mb_c00202{transform:matrix(0.229633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229633,0.000000,0.000000,0.250000,0,0);}
.mc_c00202{transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);}
.ma_c00202{transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);}
.m1_c00202{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);}
.m3_c00202{transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);}
.m0_c00202{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.m9_c00202{transform:matrix(0.353089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353089,0.000000,0.000000,0.250000,0,0);}
.m6_c00202{transform:matrix(0.429407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429407,0.000000,0.000000,0.250000,0,0);}
.m8_c00202{transform:matrix(0.430605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430605,0.000000,0.000000,0.250000,0,0);}
.m7_c00202{transform:matrix(0.559391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559391,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls67_c00202{letter-spacing:-2.667000px;}
.ls7d_c00202{letter-spacing:-2.520000px;}
.ls9b_c00202{letter-spacing:-2.457000px;}
.ls7f_c00202{letter-spacing:-2.442960px;}
.ls9d_c00202{letter-spacing:-2.415000px;}
.ls6f_c00202{letter-spacing:-2.339280px;}
.ls88_c00202{letter-spacing:-2.309580px;}
.ls73_c00202{letter-spacing:-2.204280px;}
.ls74_c00202{letter-spacing:-1.951560px;}
.ls91_c00202{letter-spacing:-1.930500px;}
.ls85_c00202{letter-spacing:-1.902420px;}
.ls7c_c00202{letter-spacing:-1.733940px;}
.ls89_c00202{letter-spacing:-1.670760px;}
.lsa0_c00202{letter-spacing:-1.635660px;}
.ls79_c00202{letter-spacing:-1.509300px;}
.ls68_c00202{letter-spacing:-1.453140px;}
.ls8b_c00202{letter-spacing:-1.404000px;}
.ls84_c00202{letter-spacing:-1.017900px;}
.ls8f_c00202{letter-spacing:-0.968760px;}
.lsa3_c00202{letter-spacing:-0.958440px;}
.ls81_c00202{letter-spacing:-0.947700px;}
.ls80_c00202{letter-spacing:-0.896040px;}
.ls9a_c00202{letter-spacing:-0.849420px;}
.ls7e_c00202{letter-spacing:-0.814320px;}
.ls70_c00202{letter-spacing:-0.807300px;}
.ls87_c00202{letter-spacing:-0.772200px;}
.ls72_c00202{letter-spacing:-0.765180px;}
.ls86_c00202{letter-spacing:-0.723060px;}
.ls9c_c00202{letter-spacing:-0.582660px;}
.ls95_c00202{letter-spacing:-0.561600px;}
.ls77_c00202{letter-spacing:-0.512460px;}
.ls7a_c00202{letter-spacing:-0.491400px;}
.ls76_c00202{letter-spacing:-0.470340px;}
.ls6c_c00202{letter-spacing:-0.414180px;}
.ls90_c00202{letter-spacing:-0.372060px;}
.ls8d_c00202{letter-spacing:-0.336960px;}
.ls8e_c00202{letter-spacing:-0.266760px;}
.lsa2_c00202{letter-spacing:-0.252720px;}
.ls78_c00202{letter-spacing:-0.231660px;}
.ls69_c00202{letter-spacing:-0.224640px;}
.ls6b_c00202{letter-spacing:-0.210600px;}
.ls9e_c00202{letter-spacing:-0.203580px;}
.ls8c_c00202{letter-spacing:-0.196560px;}
.ls94_c00202{letter-spacing:-0.175500px;}
.ls92_c00202{letter-spacing:-0.168480px;}
.ls99_c00202{letter-spacing:-0.147420px;}
.ls7b_c00202{letter-spacing:-0.133380px;}
.ls8a_c00202{letter-spacing:-0.105300px;}
.ls63_c00202{letter-spacing:-0.091260px;}
.ls96_c00202{letter-spacing:-0.084240px;}
.ls83_c00202{letter-spacing:-0.070200px;}
.ls66_c00202{letter-spacing:-0.063180px;}
.ls65_c00202{letter-spacing:-0.049140px;}
.ls75_c00202{letter-spacing:-0.042120px;}
.ls64_c00202{letter-spacing:-0.035100px;}
.ls6a_c00202{letter-spacing:-0.028080px;}
.ls82_c00202{letter-spacing:-0.014040px;}
.ls6e_c00202{letter-spacing:-0.007020px;}
.ls62_c00202{letter-spacing:0.000000px;}
.ls13_c00202{letter-spacing:0.007020px;}
.ls52_c00202{letter-spacing:0.014040px;}
.lsb_c00202{letter-spacing:0.028080px;}
.lsa1_c00202{letter-spacing:0.042120px;}
.ls46_c00202{letter-spacing:0.049140px;}
.ls98_c00202{letter-spacing:0.063180px;}
.ls22_c00202{letter-spacing:0.077220px;}
.ls56_c00202{letter-spacing:0.084240px;}
.lsf_c00202{letter-spacing:0.091260px;}
.ls5b_c00202{letter-spacing:0.126360px;}
.ls20_c00202{letter-spacing:0.133380px;}
.ls9_c00202{letter-spacing:0.140400px;}
.ls1f_c00202{letter-spacing:0.147420px;}
.ls2d_c00202{letter-spacing:0.154440px;}
.ls7_c00202{letter-spacing:0.161460px;}
.ls31_c00202{letter-spacing:0.189540px;}
.ls32_c00202{letter-spacing:0.203580px;}
.ls23_c00202{letter-spacing:0.210600px;}
.ls48_c00202{letter-spacing:0.224640px;}
.ls3d_c00202{letter-spacing:0.231660px;}
.ls17_c00202{letter-spacing:0.238680px;}
.ls5f_c00202{letter-spacing:0.245700px;}
.ls4c_c00202{letter-spacing:0.252720px;}
.ls8_c00202{letter-spacing:0.266760px;}
.ls3b_c00202{letter-spacing:0.273780px;}
.ls36_c00202{letter-spacing:0.280800px;}
.ls18_c00202{letter-spacing:0.294840px;}
.ls29_c00202{letter-spacing:0.315900px;}
.ls5_c00202{letter-spacing:0.322920px;}
.lsa_c00202{letter-spacing:0.329940px;}
.ls2e_c00202{letter-spacing:0.343980px;}
.ls2f_c00202{letter-spacing:0.358020px;}
.ls1b_c00202{letter-spacing:0.362520px;}
.ls30_c00202{letter-spacing:0.365040px;}
.lsd_c00202{letter-spacing:0.372060px;}
.ls1e_c00202{letter-spacing:0.379080px;}
.ls5a_c00202{letter-spacing:0.386100px;}
.ls4d_c00202{letter-spacing:0.393120px;}
.ls33_c00202{letter-spacing:0.400140px;}
.ls2c_c00202{letter-spacing:0.407160px;}
.ls11_c00202{letter-spacing:0.414180px;}
.lse_c00202{letter-spacing:0.421200px;}
.ls37_c00202{letter-spacing:0.442260px;}
.ls60_c00202{letter-spacing:0.449280px;}
.ls3e_c00202{letter-spacing:0.456300px;}
.ls26_c00202{letter-spacing:0.463320px;}
.ls6_c00202{letter-spacing:0.470340px;}
.ls59_c00202{letter-spacing:0.477360px;}
.ls4b_c00202{letter-spacing:0.505440px;}
.ls5e_c00202{letter-spacing:0.519480px;}
.ls1d_c00202{letter-spacing:0.547560px;}
.ls50_c00202{letter-spacing:0.554580px;}
.ls4_c00202{letter-spacing:0.561600px;}
.ls39_c00202{letter-spacing:0.575640px;}
.ls3c_c00202{letter-spacing:0.582660px;}
.ls25_c00202{letter-spacing:0.610740px;}
.ls44_c00202{letter-spacing:0.638820px;}
.ls45_c00202{letter-spacing:0.645840px;}
.ls71_c00202{letter-spacing:0.652860px;}
.ls42_c00202{letter-spacing:0.656640px;}
.ls9f_c00202{letter-spacing:0.680940px;}
.ls5c_c00202{letter-spacing:0.694980px;}
.ls34_c00202{letter-spacing:0.730080px;}
.ls47_c00202{letter-spacing:0.737100px;}
.ls19_c00202{letter-spacing:0.765180px;}
.ls43_c00202{letter-spacing:0.800280px;}
.ls15_c00202{letter-spacing:0.821340px;}
.ls27_c00202{letter-spacing:0.841320px;}
.ls51_c00202{letter-spacing:0.855000px;}
.ls55_c00202{letter-spacing:0.863460px;}
.ls14_c00202{letter-spacing:0.870480px;}
.ls28_c00202{letter-spacing:0.877500px;}
.ls2b_c00202{letter-spacing:0.889200px;}
.ls93_c00202{letter-spacing:0.961740px;}
.ls10_c00202{letter-spacing:0.975780px;}
.ls57_c00202{letter-spacing:1.024920px;}
.ls4f_c00202{letter-spacing:1.038960px;}
.ls1_c00202{letter-spacing:1.087560px;}
.ls41_c00202{letter-spacing:1.088100px;}
.ls4e_c00202{letter-spacing:1.090200px;}
.ls38_c00202{letter-spacing:1.128600px;}
.ls53_c00202{letter-spacing:1.142280px;}
.lsc_c00202{letter-spacing:1.155960px;}
.ls1a_c00202{letter-spacing:1.172340px;}
.ls24_c00202{letter-spacing:1.190160px;}
.ls3f_c00202{letter-spacing:1.193400px;}
.ls4a_c00202{letter-spacing:1.207440px;}
.ls1c_c00202{letter-spacing:1.214460px;}
.ls0_c00202{letter-spacing:1.251720px;}
.ls3a_c00202{letter-spacing:1.263600px;}
.ls35_c00202{letter-spacing:1.425060px;}
.ls3_c00202{letter-spacing:1.607580px;}
.ls40_c00202{letter-spacing:1.747980px;}
.ls12_c00202{letter-spacing:1.755000px;}
.ls49_c00202{letter-spacing:1.769040px;}
.ls97_c00202{letter-spacing:1.860000px;}
.ls58_c00202{letter-spacing:1.993680px;}
.ls2a_c00202{letter-spacing:2.141100px;}
.ls54_c00202{letter-spacing:2.183220px;}
.ls21_c00202{letter-spacing:2.485080px;}
.ls2_c00202{letter-spacing:2.520180px;}
.ls61_c00202{letter-spacing:2.940000px;}
.ls16_c00202{letter-spacing:3.208140px;}
.ls5d_c00202{letter-spacing:3.257280px;}
.ls6d_c00202{letter-spacing:3.510000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{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__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00202{word-spacing:0.000000px;}
.ws4_c00202{word-spacing:6.091320px;}
.ws2_c00202{word-spacing:6.799200px;}
.ws5_c00202{word-spacing:8.556000px;}
.ws0_c00202{word-spacing:9.712560px;}
.ws6_c00202{word-spacing:11.432400px;}
.ws1_c00202{word-spacing:16.886160px;}
.ws3_c00202{word-spacing:19.523400px;}
._12_c00202{margin-left:-7.356960px;}
._c_c00202{margin-left:-5.761800px;}
._13_c00202{margin-left:-4.606740px;}
._a_c00202{margin-left:-3.383640px;}
._1_c00202{margin-left:-1.663740px;}
._d_c00202{width:1.523340px;}
._8_c00202{width:3.215160px;}
._b_c00202{width:4.238460px;}
._9_c00202{width:6.092280px;}
._0_c00202{width:7.387200px;}
._2_c00202{width:8.791740px;}
._4_c00202{width:10.249200px;}
._3_c00202{width:12.451320px;}
._e_c00202{width:13.532400px;}
._5_c00202{width:14.650740px;}
._6_c00202{width:15.966480px;}
._14_c00202{width:18.935460px;}
._7_c00202{width:20.502720px;}
._11_c00202{width:22.105980px;}
._f_c00202{width:23.822880px;}
._10_c00202{width:25.278720px;}
._15_c00202{width:26.492400px;}
._18_c00202{width:28.494180px;}
._17_c00202{width:31.828680px;}
._19_c00202{width:34.791120px;}
._1a_c00202{width:36.679500px;}
._16_c00202{width:863.973060px;}
.fc0_c00202{color:transparent;}
.fsa_c00202{font-size:12.000000px;}
.fs9_c00202{font-size:37.200000px;}
.fs8_c00202{font-size:54.720000px;}
.fs0_c00202{font-size:58.800000px;}
.fs7_c00202{font-size:59.400000px;}
.fs1_c00202{font-size:68.400000px;}
.fs5_c00202{font-size:69.000000px;}
.fs2_c00202{font-size:70.200000px;}
.fs4_c00202{font-size:72.000000px;}
.fs6_c00202{font-size:72.600000px;}
.fs3_c00202{font-size:76.200000px;}
.y0_c00202{bottom:0.000000px;}
.y20_c00202{bottom:73.095006px;}
.y1f_c00202{bottom:131.761056px;}
.y1e_c00202{bottom:162.719256px;}
.y1c_c00202{bottom:193.690356px;}
.y1d_c00202{bottom:193.695006px;}
.y1a_c00202{bottom:224.278806px;}
.y1b_c00202{bottom:224.280006px;}
.y19_c00202{bottom:254.535006px;}
.y18_c00202{bottom:282.615006px;}
.y17_c00202{bottom:286.215006px;}
.y16_c00202{bottom:347.055006px;}
.y15_c00202{bottom:378.015006px;}
.y14_c00202{bottom:439.938156px;}
.y13_c00202{bottom:501.143406px;}
.y12_c00202{bottom:563.059806px;}
.y11_c00202{bottom:594.720006px;}
.y10_c00202{bottom:656.639256px;}
.yf_c00202{bottom:687.615006px;}
.ye_c00202{bottom:749.539356px;}
.yd_c00202{bottom:780.489606px;}
.yc_c00202{bottom:811.096806px;}
.yb_c00202{bottom:842.055006px;}
.ya_c00202{bottom:904.320006px;}
.y9_c00202{bottom:967.329606px;}
.y8_c00202{bottom:998.287806px;}
.y6_c00202{bottom:1028.888256px;}
.y7_c00202{bottom:1028.895006px;}
.y5_c00202{bottom:1060.215006px;}
.y3_c00202{bottom:1090.448256px;}
.y4_c00202{bottom:1090.455006px;}
.y2_c00202{bottom:1121.775006px;}
.y1_c00202{bottom:1198.095006px;}
.h8_c00202{height:36.443520px;}
.h9_c00202{height:36.509766px;}
.h2_c00202{height:57.708984px;}
.h3_c00202{height:68.897461px;}
.h6_c00202{height:69.505463px;}
.h5_c00202{height:70.664062px;}
.h7_c00202{height:71.252930px;}
.ha_c00202{height:71.964844px;}
.h4_c00202{height:74.748926px;}
.h1_c00202{height:1263.000000px;}
.h0_c00202{height:1263.240006px;}
.w1_c00202{width:892.500000px;}
.w0_c00202{width:892.799998px;}
.x0_c00202{left:0.000000px;}
.xc_c00202{left:117.062999px;}
.xa_c00202{left:118.677298px;}
.x3_c00202{left:120.773398px;}
.x1_c00202{left:123.044999px;}
.xb_c00202{left:171.164998px;}
.x7_c00202{left:172.604998px;}
.x2_c00202{left:174.404999px;}
.xf_c00202{left:183.779999px;}
.x10_c00202{left:226.559998px;}
.x11_c00202{left:251.459999px;}
.x16_c00202{left:272.849999px;}
.x5_c00202{left:288.974999px;}
.xd_c00202{left:302.414999px;}
.x6_c00202{left:314.474999px;}
.x12_c00202{left:317.009999px;}
.xe_c00202{left:397.274999px;}
.x13_c00202{left:399.494999px;}
.x19_c00202{left:423.209999px;}
.x8_c00202{left:435.179999px;}
.x9_c00202{left:467.819999px;}
.x17_c00202{left:601.334998px;}
.x18_c00202{left:627.674999px;}
.x14_c00202{left:669.359998px;}
.x15_c00202{left:695.489998px;}
.x4_c00202{left:737.534999px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls67_c00202{letter-spacing:-2.370667pt;}
.ls7d_c00202{letter-spacing:-2.240000pt;}
.ls9b_c00202{letter-spacing:-2.184000pt;}
.ls7f_c00202{letter-spacing:-2.171520pt;}
.ls9d_c00202{letter-spacing:-2.146667pt;}
.ls6f_c00202{letter-spacing:-2.079360pt;}
.ls88_c00202{letter-spacing:-2.052960pt;}
.ls73_c00202{letter-spacing:-1.959360pt;}
.ls74_c00202{letter-spacing:-1.734720pt;}
.ls91_c00202{letter-spacing:-1.716000pt;}
.ls85_c00202{letter-spacing:-1.691040pt;}
.ls7c_c00202{letter-spacing:-1.541280pt;}
.ls89_c00202{letter-spacing:-1.485120pt;}
.lsa0_c00202{letter-spacing:-1.453920pt;}
.ls79_c00202{letter-spacing:-1.341600pt;}
.ls68_c00202{letter-spacing:-1.291680pt;}
.ls8b_c00202{letter-spacing:-1.248000pt;}
.ls84_c00202{letter-spacing:-0.904800pt;}
.ls8f_c00202{letter-spacing:-0.861120pt;}
.lsa3_c00202{letter-spacing:-0.851947pt;}
.ls81_c00202{letter-spacing:-0.842400pt;}
.ls80_c00202{letter-spacing:-0.796480pt;}
.ls9a_c00202{letter-spacing:-0.755040pt;}
.ls7e_c00202{letter-spacing:-0.723840pt;}
.ls70_c00202{letter-spacing:-0.717600pt;}
.ls87_c00202{letter-spacing:-0.686400pt;}
.ls72_c00202{letter-spacing:-0.680160pt;}
.ls86_c00202{letter-spacing:-0.642720pt;}
.ls9c_c00202{letter-spacing:-0.517920pt;}
.ls95_c00202{letter-spacing:-0.499200pt;}
.ls77_c00202{letter-spacing:-0.455520pt;}
.ls7a_c00202{letter-spacing:-0.436800pt;}
.ls76_c00202{letter-spacing:-0.418080pt;}
.ls6c_c00202{letter-spacing:-0.368160pt;}
.ls90_c00202{letter-spacing:-0.330720pt;}
.ls8d_c00202{letter-spacing:-0.299520pt;}
.ls8e_c00202{letter-spacing:-0.237120pt;}
.lsa2_c00202{letter-spacing:-0.224640pt;}
.ls78_c00202{letter-spacing:-0.205920pt;}
.ls69_c00202{letter-spacing:-0.199680pt;}
.ls6b_c00202{letter-spacing:-0.187200pt;}
.ls9e_c00202{letter-spacing:-0.180960pt;}
.ls8c_c00202{letter-spacing:-0.174720pt;}
.ls94_c00202{letter-spacing:-0.156000pt;}
.ls92_c00202{letter-spacing:-0.149760pt;}
.ls99_c00202{letter-spacing:-0.131040pt;}
.ls7b_c00202{letter-spacing:-0.118560pt;}
.ls8a_c00202{letter-spacing:-0.093600pt;}
.ls63_c00202{letter-spacing:-0.081120pt;}
.ls96_c00202{letter-spacing:-0.074880pt;}
.ls83_c00202{letter-spacing:-0.062400pt;}
.ls66_c00202{letter-spacing:-0.056160pt;}
.ls65_c00202{letter-spacing:-0.043680pt;}
.ls75_c00202{letter-spacing:-0.037440pt;}
.ls64_c00202{letter-spacing:-0.031200pt;}
.ls6a_c00202{letter-spacing:-0.024960pt;}
.ls82_c00202{letter-spacing:-0.012480pt;}
.ls6e_c00202{letter-spacing:-0.006240pt;}
.ls62_c00202{letter-spacing:0.000000pt;}
.ls13_c00202{letter-spacing:0.006240pt;}
.ls52_c00202{letter-spacing:0.012480pt;}
.lsb_c00202{letter-spacing:0.024960pt;}
.lsa1_c00202{letter-spacing:0.037440pt;}
.ls46_c00202{letter-spacing:0.043680pt;}
.ls98_c00202{letter-spacing:0.056160pt;}
.ls22_c00202{letter-spacing:0.068640pt;}
.ls56_c00202{letter-spacing:0.074880pt;}
.lsf_c00202{letter-spacing:0.081120pt;}
.ls5b_c00202{letter-spacing:0.112320pt;}
.ls20_c00202{letter-spacing:0.118560pt;}
.ls9_c00202{letter-spacing:0.124800pt;}
.ls1f_c00202{letter-spacing:0.131040pt;}
.ls2d_c00202{letter-spacing:0.137280pt;}
.ls7_c00202{letter-spacing:0.143520pt;}
.ls31_c00202{letter-spacing:0.168480pt;}
.ls32_c00202{letter-spacing:0.180960pt;}
.ls23_c00202{letter-spacing:0.187200pt;}
.ls48_c00202{letter-spacing:0.199680pt;}
.ls3d_c00202{letter-spacing:0.205920pt;}
.ls17_c00202{letter-spacing:0.212160pt;}
.ls5f_c00202{letter-spacing:0.218400pt;}
.ls4c_c00202{letter-spacing:0.224640pt;}
.ls8_c00202{letter-spacing:0.237120pt;}
.ls3b_c00202{letter-spacing:0.243360pt;}
.ls36_c00202{letter-spacing:0.249600pt;}
.ls18_c00202{letter-spacing:0.262080pt;}
.ls29_c00202{letter-spacing:0.280800pt;}
.ls5_c00202{letter-spacing:0.287040pt;}
.lsa_c00202{letter-spacing:0.293280pt;}
.ls2e_c00202{letter-spacing:0.305760pt;}
.ls2f_c00202{letter-spacing:0.318240pt;}
.ls1b_c00202{letter-spacing:0.322240pt;}
.ls30_c00202{letter-spacing:0.324480pt;}
.lsd_c00202{letter-spacing:0.330720pt;}
.ls1e_c00202{letter-spacing:0.336960pt;}
.ls5a_c00202{letter-spacing:0.343200pt;}
.ls4d_c00202{letter-spacing:0.349440pt;}
.ls33_c00202{letter-spacing:0.355680pt;}
.ls2c_c00202{letter-spacing:0.361920pt;}
.ls11_c00202{letter-spacing:0.368160pt;}
.lse_c00202{letter-spacing:0.374400pt;}
.ls37_c00202{letter-spacing:0.393120pt;}
.ls60_c00202{letter-spacing:0.399360pt;}
.ls3e_c00202{letter-spacing:0.405600pt;}
.ls26_c00202{letter-spacing:0.411840pt;}
.ls6_c00202{letter-spacing:0.418080pt;}
.ls59_c00202{letter-spacing:0.424320pt;}
.ls4b_c00202{letter-spacing:0.449280pt;}
.ls5e_c00202{letter-spacing:0.461760pt;}
.ls1d_c00202{letter-spacing:0.486720pt;}
.ls50_c00202{letter-spacing:0.492960pt;}
.ls4_c00202{letter-spacing:0.499200pt;}
.ls39_c00202{letter-spacing:0.511680pt;}
.ls3c_c00202{letter-spacing:0.517920pt;}
.ls25_c00202{letter-spacing:0.542880pt;}
.ls44_c00202{letter-spacing:0.567840pt;}
.ls45_c00202{letter-spacing:0.574080pt;}
.ls71_c00202{letter-spacing:0.580320pt;}
.ls42_c00202{letter-spacing:0.583680pt;}
.ls9f_c00202{letter-spacing:0.605280pt;}
.ls5c_c00202{letter-spacing:0.617760pt;}
.ls34_c00202{letter-spacing:0.648960pt;}
.ls47_c00202{letter-spacing:0.655200pt;}
.ls19_c00202{letter-spacing:0.680160pt;}
.ls43_c00202{letter-spacing:0.711360pt;}
.ls15_c00202{letter-spacing:0.730080pt;}
.ls27_c00202{letter-spacing:0.747840pt;}
.ls51_c00202{letter-spacing:0.760000pt;}
.ls55_c00202{letter-spacing:0.767520pt;}
.ls14_c00202{letter-spacing:0.773760pt;}
.ls28_c00202{letter-spacing:0.780000pt;}
.ls2b_c00202{letter-spacing:0.790400pt;}
.ls93_c00202{letter-spacing:0.854880pt;}
.ls10_c00202{letter-spacing:0.867360pt;}
.ls57_c00202{letter-spacing:0.911040pt;}
.ls4f_c00202{letter-spacing:0.923520pt;}
.ls1_c00202{letter-spacing:0.966720pt;}
.ls41_c00202{letter-spacing:0.967200pt;}
.ls4e_c00202{letter-spacing:0.969067pt;}
.ls38_c00202{letter-spacing:1.003200pt;}
.ls53_c00202{letter-spacing:1.015360pt;}
.lsc_c00202{letter-spacing:1.027520pt;}
.ls1a_c00202{letter-spacing:1.042080pt;}
.ls24_c00202{letter-spacing:1.057920pt;}
.ls3f_c00202{letter-spacing:1.060800pt;}
.ls4a_c00202{letter-spacing:1.073280pt;}
.ls1c_c00202{letter-spacing:1.079520pt;}
.ls0_c00202{letter-spacing:1.112640pt;}
.ls3a_c00202{letter-spacing:1.123200pt;}
.ls35_c00202{letter-spacing:1.266720pt;}
.ls3_c00202{letter-spacing:1.428960pt;}
.ls40_c00202{letter-spacing:1.553760pt;}
.ls12_c00202{letter-spacing:1.560000pt;}
.ls49_c00202{letter-spacing:1.572480pt;}
.ls97_c00202{letter-spacing:1.653333pt;}
.ls58_c00202{letter-spacing:1.772160pt;}
.ls2a_c00202{letter-spacing:1.903200pt;}
.ls54_c00202{letter-spacing:1.940640pt;}
.ls21_c00202{letter-spacing:2.208960pt;}
.ls2_c00202{letter-spacing:2.240160pt;}
.ls61_c00202{letter-spacing:2.613333pt;}
.ls16_c00202{letter-spacing:2.851680pt;}
.ls5d_c00202{letter-spacing:2.895360pt;}
.ls6d_c00202{letter-spacing:3.120000pt;}
.ws7_c00202{word-spacing:0.000000pt;}
.ws4_c00202{word-spacing:5.414507pt;}
.ws2_c00202{word-spacing:6.043733pt;}
.ws5_c00202{word-spacing:7.605333pt;}
.ws0_c00202{word-spacing:8.633387pt;}
.ws6_c00202{word-spacing:10.162133pt;}
.ws1_c00202{word-spacing:15.009920pt;}
.ws3_c00202{word-spacing:17.354133pt;}
._12_c00202{margin-left:-6.539520pt;}
._c_c00202{margin-left:-5.121600pt;}
._13_c00202{margin-left:-4.094880pt;}
._a_c00202{margin-left:-3.007680pt;}
._1_c00202{margin-left:-1.478880pt;}
._d_c00202{width:1.354080pt;}
._8_c00202{width:2.857920pt;}
._b_c00202{width:3.767520pt;}
._9_c00202{width:5.415360pt;}
._0_c00202{width:6.566400pt;}
._2_c00202{width:7.814880pt;}
._4_c00202{width:9.110400pt;}
._3_c00202{width:11.067840pt;}
._e_c00202{width:12.028800pt;}
._5_c00202{width:13.022880pt;}
._6_c00202{width:14.192427pt;}
._14_c00202{width:16.831520pt;}
._7_c00202{width:18.224640pt;}
._11_c00202{width:19.649760pt;}
._f_c00202{width:21.175893pt;}
._10_c00202{width:22.469973pt;}
._15_c00202{width:23.548800pt;}
._18_c00202{width:25.328160pt;}
._17_c00202{width:28.292160pt;}
._19_c00202{width:30.925440pt;}
._1a_c00202{width:32.604000pt;}
._16_c00202{width:767.976053pt;}
.fsa_c00202{font-size:10.666667pt;}
.fs9_c00202{font-size:33.066667pt;}
.fs8_c00202{font-size:48.640000pt;}
.fs0_c00202{font-size:52.266667pt;}
.fs7_c00202{font-size:52.800000pt;}
.fs1_c00202{font-size:60.800000pt;}
.fs5_c00202{font-size:61.333333pt;}
.fs2_c00202{font-size:62.400000pt;}
.fs4_c00202{font-size:64.000000pt;}
.fs6_c00202{font-size:64.533333pt;}
.fs3_c00202{font-size:67.733333pt;}
.y0_c00202{bottom:0.000000pt;}
.y20_c00202{bottom:64.973339pt;}
.y1f_c00202{bottom:117.120939pt;}
.y1e_c00202{bottom:144.639339pt;}
.y1c_c00202{bottom:172.169205pt;}
.y1d_c00202{bottom:172.173339pt;}
.y1a_c00202{bottom:199.358939pt;}
.y1b_c00202{bottom:199.360005pt;}
.y19_c00202{bottom:226.253339pt;}
.y18_c00202{bottom:251.213339pt;}
.y17_c00202{bottom:254.413339pt;}
.y16_c00202{bottom:308.493339pt;}
.y15_c00202{bottom:336.013339pt;}
.y14_c00202{bottom:391.056139pt;}
.y13_c00202{bottom:445.460805pt;}
.y12_c00202{bottom:500.497605pt;}
.y11_c00202{bottom:528.640005pt;}
.y10_c00202{bottom:583.679339pt;}
.yf_c00202{bottom:611.213339pt;}
.ye_c00202{bottom:666.257205pt;}
.yd_c00202{bottom:693.768539pt;}
.yc_c00202{bottom:720.974939pt;}
.yb_c00202{bottom:748.493339pt;}
.ya_c00202{bottom:803.840005pt;}
.y9_c00202{bottom:859.848539pt;}
.y8_c00202{bottom:887.366939pt;}
.y6_c00202{bottom:914.567339pt;}
.y7_c00202{bottom:914.573339pt;}
.y5_c00202{bottom:942.413339pt;}
.y3_c00202{bottom:969.287339pt;}
.y4_c00202{bottom:969.293339pt;}
.y2_c00202{bottom:997.133339pt;}
.y1_c00202{bottom:1064.973339pt;}
.h8_c00202{height:32.394240pt;}
.h9_c00202{height:32.453125pt;}
.h2_c00202{height:51.296875pt;}
.h3_c00202{height:61.242187pt;}
.h6_c00202{height:61.782633pt;}
.h5_c00202{height:62.812500pt;}
.h7_c00202{height:63.335938pt;}
.ha_c00202{height:63.968750pt;}
.h4_c00202{height:66.443490pt;}
.h1_c00202{height:1122.666667pt;}
.h0_c00202{height:1122.880005pt;}
.w1_c00202{width:793.333333pt;}
.w0_c00202{width:793.599999pt;}
.x0_c00202{left:0.000000pt;}
.xc_c00202{left:104.055999pt;}
.xa_c00202{left:105.490932pt;}
.x3_c00202{left:107.354132pt;}
.x1_c00202{left:109.373332pt;}
.xb_c00202{left:152.146665pt;}
.x7_c00202{left:153.426665pt;}
.x2_c00202{left:155.026665pt;}
.xf_c00202{left:163.359999pt;}
.x10_c00202{left:201.386665pt;}
.x11_c00202{left:223.519999pt;}
.x16_c00202{left:242.533332pt;}
.x5_c00202{left:256.866665pt;}
.xd_c00202{left:268.813332pt;}
.x6_c00202{left:279.533332pt;}
.x12_c00202{left:281.786665pt;}
.xe_c00202{left:353.133332pt;}
.x13_c00202{left:355.106665pt;}
.x19_c00202{left:376.186665pt;}
.x8_c00202{left:386.826665pt;}
.x9_c00202{left:415.839999pt;}
.x17_c00202{left:534.519999pt;}
.x18_c00202{left:557.933332pt;}
.x14_c00202{left:594.986665pt;}
.x15_c00202{left:618.213332pt;}
.x4_c00202{left:655.586665pt;}
}





/* 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_c00203 {
    display:none;
  }
  .loading-indicator_c00203.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00203 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_c00203 { 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_c00203" -> "#page-container .classname_c00203")
 */
.pf_c00203 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00203 { /* 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_c00203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00203 { /* 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_c00203 { /* 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_c00203 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00203 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00203 {overflow:visible;}
  }
}
.c_c00203 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00203 { /* 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_c00203:after { /* webkit #35443 */
  content: '';
}
.t_c00203:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00203 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 */
}
.__c00203 { /* 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_c00203 { /* info for Javascript */
  display:none;
}
.l_c00203 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00203 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00203 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00203: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_c00203 {
    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_c00203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00203.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_c00203 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00203;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;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:ff2_c00203;src:url('chunks/assets/font_b2a52c0847e7d987b7c407fe.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.284180;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_c00203;src:url('chunks/assets/font_ad8acc04dabb4b62216a1c91.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.284668;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_c00203{transform:matrix(0.118237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118237,0.000000,0.000000,0.250000,0,0);}
.m0_c00203{transform:matrix(0.124079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124079,0.000000,0.000000,0.250000,0,0);}
.m1_c00203{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);}
.v0_c00203{vertical-align:0.000000px;}
.ls9_c00203{letter-spacing:-2.520000px;}
.ls13_c00203{letter-spacing:-2.016000px;}
.lsa_c00203{letter-spacing:-1.392840px;}
.ls10_c00203{letter-spacing:-0.057240px;}
.lse_c00203{letter-spacing:0.000000px;}
.lsd_c00203{letter-spacing:0.464280px;}
.ls11_c00203{letter-spacing:0.585120px;}
.ls12_c00203{letter-spacing:0.633600px;}
.lsc_c00203{letter-spacing:0.718680px;}
.lsf_c00203{letter-spacing:0.725040px;}
.ls3_c00203{letter-spacing:0.871320px;}
.lsb_c00203{letter-spacing:0.877680px;}
.ls6_c00203{letter-spacing:1.062120px;}
.ls7_c00203{letter-spacing:1.208400px;}
.ls5_c00203{letter-spacing:1.265640px;}
.ls1_c00203{letter-spacing:1.291080px;}
.ls0_c00203{letter-spacing:1.348320px;}
.ls2_c00203{letter-spacing:1.494600px;}
.ls4_c00203{letter-spacing:1.640880px;}
.ls8_c00203{letter-spacing:2.686200px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{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__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00203{word-spacing:-3.765120px;}
.ws3_c00203{word-spacing:-3.408960px;}
.ws2_c00203{word-spacing:-3.167280px;}
.ws4_c00203{word-spacing:-0.852240px;}
.ws5_c00203{word-spacing:0.000000px;}
.ws0_c00203{word-spacing:2.073360px;}
._1_c00203{margin-left:-3.077400px;}
._0_c00203{margin-left:-1.806240px;}
.fc0_c00203{color:transparent;}
.fs4_c00203{font-size:57.600000px;}
.fs2_c00203{font-size:62.400000px;}
.fs1_c00203{font-size:63.600000px;}
.fs3_c00203{font-size:66.000000px;}
.fs0_c00203{font-size:72.000000px;}
.y0_c00203{bottom:0.000000px;}
.y4_c00203{bottom:145.795815px;}
.y7_c00203{bottom:163.075515px;}
.y3_c00203{bottom:164.176215px;}
.y6_c00203{bottom:181.440015px;}
.y2_c00203{bottom:182.175015px;}
.y5_c00203{bottom:565.215015px;}
.y9_c00203{bottom:1078.200015px;}
.y1_c00203{bottom:1082.175015px;}
.y8_c00203{bottom:1139.415015px;}
.h6_c00203{height:60.075000px;}
.h4_c00203{height:61.242188px;}
.h3_c00203{height:62.388867px;}
.h5_c00203{height:64.775391px;}
.h2_c00203{height:75.093750px;}
.h1_c00203{height:1263.000000px;}
.h0_c00203{height:1263.240015px;}
.w1_c00203{width:892.500000px;}
.w0_c00203{width:892.800015px;}
.x0_c00203{left:0.000000px;}
.x3_c00203{left:114.775215px;}
.x2_c00203{left:116.715015px;}
.x1_c00203{left:121.830015px;}
.x5_c00203{left:381.105015px;}
.x4_c00203{left:521.820015px;}
.x6_c00203{left:672.030015px;}
.x7_c00203{left:798.690015px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls9_c00203{letter-spacing:-2.240000pt;}
.ls13_c00203{letter-spacing:-1.792000pt;}
.lsa_c00203{letter-spacing:-1.238080pt;}
.ls10_c00203{letter-spacing:-0.050880pt;}
.lse_c00203{letter-spacing:0.000000pt;}
.lsd_c00203{letter-spacing:0.412693pt;}
.ls11_c00203{letter-spacing:0.520107pt;}
.ls12_c00203{letter-spacing:0.563200pt;}
.lsc_c00203{letter-spacing:0.638827pt;}
.lsf_c00203{letter-spacing:0.644480pt;}
.ls3_c00203{letter-spacing:0.774507pt;}
.lsb_c00203{letter-spacing:0.780160pt;}
.ls6_c00203{letter-spacing:0.944107pt;}
.ls7_c00203{letter-spacing:1.074133pt;}
.ls5_c00203{letter-spacing:1.125013pt;}
.ls1_c00203{letter-spacing:1.147627pt;}
.ls0_c00203{letter-spacing:1.198507pt;}
.ls2_c00203{letter-spacing:1.328533pt;}
.ls4_c00203{letter-spacing:1.458560pt;}
.ls8_c00203{letter-spacing:2.387733pt;}
.ws1_c00203{word-spacing:-3.346773pt;}
.ws3_c00203{word-spacing:-3.030187pt;}
.ws2_c00203{word-spacing:-2.815360pt;}
.ws4_c00203{word-spacing:-0.757547pt;}
.ws5_c00203{word-spacing:0.000000pt;}
.ws0_c00203{word-spacing:1.842987pt;}
._1_c00203{margin-left:-2.735467pt;}
._0_c00203{margin-left:-1.605547pt;}
.fs4_c00203{font-size:51.200000pt;}
.fs2_c00203{font-size:55.466667pt;}
.fs1_c00203{font-size:56.533333pt;}
.fs3_c00203{font-size:58.666667pt;}
.fs0_c00203{font-size:64.000000pt;}
.y0_c00203{bottom:0.000000pt;}
.y4_c00203{bottom:129.596280pt;}
.y7_c00203{bottom:144.956013pt;}
.y3_c00203{bottom:145.934413pt;}
.y6_c00203{bottom:161.280013pt;}
.y2_c00203{bottom:161.933347pt;}
.y5_c00203{bottom:502.413347pt;}
.y9_c00203{bottom:958.400013pt;}
.y1_c00203{bottom:961.933347pt;}
.y8_c00203{bottom:1012.813347pt;}
.h6_c00203{height:53.400000pt;}
.h4_c00203{height:54.437500pt;}
.h3_c00203{height:55.456771pt;}
.h5_c00203{height:57.578125pt;}
.h2_c00203{height:66.750000pt;}
.h1_c00203{height:1122.666667pt;}
.h0_c00203{height:1122.880013pt;}
.w1_c00203{width:793.333333pt;}
.w0_c00203{width:793.600013pt;}
.x0_c00203{left:0.000000pt;}
.x3_c00203{left:102.022413pt;}
.x2_c00203{left:103.746680pt;}
.x1_c00203{left:108.293347pt;}
.x5_c00203{left:338.760013pt;}
.x4_c00203{left:463.840013pt;}
.x6_c00203{left:597.360013pt;}
.x7_c00203{left:709.946680pt;}
}





/* 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_c00204 {
    display:none;
  }
  .loading-indicator_c00204.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00204 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_c00204 { 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_c00204" -> "#page-container .classname_c00204")
 */
.pf_c00204 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00204 { /* 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_c00204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00204 { /* 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_c00204 { /* 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_c00204 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00204 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00204 {overflow:visible;}
  }
}
.c_c00204 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00204 { /* 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_c00204:after { /* webkit #35443 */
  content: '';
}
.t_c00204:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00204 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 */
}
.__c00204 { /* 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_c00204 { /* info for Javascript */
  display:none;
}
.l_c00204 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00204 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00204 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00204: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_c00204 {
    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_c00204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00204.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_c00204 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00204;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;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:ff2_c00204;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;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_c00204;src:url('chunks/assets/font_d8fbae2e65536eca6e4ea35b.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:1.284180;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_c00204;src:url('chunks/assets/font_7f7ebd46e1401e5d9cf28fc2.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:1.311035;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_c00204;src:url('chunks/assets/font_cebbfb1b2c54dcbbb6ba8fe4.woff2')format("woff");}.ff5_c00204{font-family:ff5_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00204{transform:matrix(0.128358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128358,0.000000,0.000000,0.250000,0,0);}
.m2_c00204{transform:matrix(0.132125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132125,0.000000,0.000000,0.250000,0,0);}
.m1_c00204{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);}
.v0_c00204{vertical-align:0.000000px;}
.ls5_c00204{letter-spacing:-2.436000px;}
.lsc_c00204{letter-spacing:-2.100000px;}
.ls7_c00204{letter-spacing:-0.982260px;}
.ls6_c00204{letter-spacing:0.000000px;}
.lsb_c00204{letter-spacing:0.455820px;}
.ls3_c00204{letter-spacing:0.558540px;}
.ls9_c00204{letter-spacing:0.597060px;}
.ls8_c00204{letter-spacing:0.642000px;}
.lsa_c00204{letter-spacing:0.725460px;}
.ls1_c00204{letter-spacing:0.969420px;}
.ls2_c00204{letter-spacing:1.168440px;}
.ls0_c00204{letter-spacing:1.316100px;}
.ls4_c00204{letter-spacing:1.752660px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{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__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00204{word-spacing:-3.235680px;}
.ws2_c00204{word-spacing:-1.271160px;}
.ws0_c00204{word-spacing:-0.372360px;}
.ws3_c00204{word-spacing:0.000000px;}
._0_c00204{margin-left:-3.402600px;}
._1_c00204{margin-left:-1.630680px;}
.fc0_c00204{color:transparent;}
.fs1_c00204{font-size:56.400000px;}
.fs5_c00204{font-size:58.800000px;}
.fs3_c00204{font-size:60.000000px;}
.fs4_c00204{font-size:61.800000px;}
.fs2_c00204{font-size:64.200000px;}
.fs0_c00204{font-size:69.600000px;}
.y0_c00204{bottom:0.000000px;}
.y5_c00204{bottom:145.437606px;}
.y4_c00204{bottom:163.798806px;}
.y3_c00204{bottom:182.160006px;}
.y9_c00204{bottom:312.135006px;}
.y8_c00204{bottom:748.095006px;}
.y2_c00204{bottom:765.720006px;}
.y7_c00204{bottom:1078.935006px;}
.y1_c00204{bottom:1080.000006px;}
.y6_c00204{bottom:1143.731556px;}
.h8_c00204{height:57.708984px;}
.h3_c00204{height:58.823438px;}
.h6_c00204{height:58.886719px;}
.h7_c00204{height:60.653320px;}
.h4_c00204{height:62.977441px;}
.h5_c00204{height:64.701562px;}
.h2_c00204{height:72.590625px;}
.h1_c00204{height:1263.000000px;}
.h0_c00204{height:1263.240006px;}
.w1_c00204{width:892.500000px;}
.w0_c00204{width:892.799998px;}
.x0_c00204{left:0.000000px;}
.x1_c00204{left:119.309999px;}
.x4_c00204{left:124.119149px;}
.x3_c00204{left:125.354999px;}
.x2_c00204{left:272.069998px;}
.x8_c00204{left:437.234998px;}
.x7_c00204{left:572.309999px;}
.x5_c00204{left:676.367549px;}
.x6_c00204{left:795.689999px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls5_c00204{letter-spacing:-2.165333pt;}
.lsc_c00204{letter-spacing:-1.866667pt;}
.ls7_c00204{letter-spacing:-0.873120pt;}
.ls6_c00204{letter-spacing:0.000000pt;}
.lsb_c00204{letter-spacing:0.405173pt;}
.ls3_c00204{letter-spacing:0.496480pt;}
.ls9_c00204{letter-spacing:0.530720pt;}
.ls8_c00204{letter-spacing:0.570667pt;}
.lsa_c00204{letter-spacing:0.644853pt;}
.ls1_c00204{letter-spacing:0.861707pt;}
.ls2_c00204{letter-spacing:1.038613pt;}
.ls0_c00204{letter-spacing:1.169867pt;}
.ls4_c00204{letter-spacing:1.557920pt;}
.ws1_c00204{word-spacing:-2.876160pt;}
.ws2_c00204{word-spacing:-1.129920pt;}
.ws0_c00204{word-spacing:-0.330987pt;}
.ws3_c00204{word-spacing:0.000000pt;}
._0_c00204{margin-left:-3.024533pt;}
._1_c00204{margin-left:-1.449493pt;}
.fs1_c00204{font-size:50.133333pt;}
.fs5_c00204{font-size:52.266667pt;}
.fs3_c00204{font-size:53.333333pt;}
.fs4_c00204{font-size:54.933333pt;}
.fs2_c00204{font-size:57.066667pt;}
.fs0_c00204{font-size:61.866667pt;}
.y0_c00204{bottom:0.000000pt;}
.y5_c00204{bottom:129.277872pt;}
.y4_c00204{bottom:145.598939pt;}
.y3_c00204{bottom:161.920005pt;}
.y9_c00204{bottom:277.453339pt;}
.y8_c00204{bottom:664.973339pt;}
.y2_c00204{bottom:680.640005pt;}
.y7_c00204{bottom:959.053339pt;}
.y1_c00204{bottom:960.000005pt;}
.y6_c00204{bottom:1016.650272pt;}
.h8_c00204{height:51.296875pt;}
.h3_c00204{height:52.287500pt;}
.h6_c00204{height:52.343750pt;}
.h7_c00204{height:53.914062pt;}
.h4_c00204{height:55.979948pt;}
.h5_c00204{height:57.512500pt;}
.h2_c00204{height:64.525000pt;}
.h1_c00204{height:1122.666667pt;}
.h0_c00204{height:1122.880005pt;}
.w1_c00204{width:793.333333pt;}
.w0_c00204{width:793.599999pt;}
.x0_c00204{left:0.000000pt;}
.x1_c00204{left:106.053332pt;}
.x4_c00204{left:110.328132pt;}
.x3_c00204{left:111.426665pt;}
.x2_c00204{left:241.839999pt;}
.x8_c00204{left:388.653332pt;}
.x7_c00204{left:508.719999pt;}
.x5_c00204{left:601.215599pt;}
.x6_c00204{left:707.279999pt;}
}





/* 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_c00205 {
    display:none;
  }
  .loading-indicator_c00205.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00205 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_c00205 { 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_c00205" -> "#page-container .classname_c00205")
 */
.pf_c00205 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00205 { /* 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_c00205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00205 { /* 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_c00205 { /* 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_c00205 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00205 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00205 {overflow:visible;}
  }
}
.c_c00205 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00205 { /* 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_c00205:after { /* webkit #35443 */
  content: '';
}
.t_c00205:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00205 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 */
}
.__c00205 { /* 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_c00205 { /* info for Javascript */
  display:none;
}
.l_c00205 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00205 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00205 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00205: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_c00205 {
    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_c00205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00205.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_c00205 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00205;src:url('chunks/assets/font_a46197aefc269e322ab19e06.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.284668;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_c00205;src:url('chunks/assets/font_591b4877ba6ef3bb2fa17c60.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.284180;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_c00205;src:url('chunks/assets/font_c58bf832b94fd59c5b0c52ed.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;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:ff4_c00205;src:url('chunks/assets/font_4ef8ffdcb9079f4997b1ad7b.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;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;}
.m4_c00205{transform:matrix(0.168846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168846,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);}
.m3_c00205{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m8_c00205{transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);}
.m6_c00205{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m5_c00205{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m0_c00205{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);}
.m7_c00205{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m2_c00205{transform:matrix(0.363208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363208,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.v1_c00205{vertical-align:27.360000px;}
.ls80_c00205{letter-spacing:-2.541000px;}
.ls86_c00205{letter-spacing:-2.415000px;}
.ls8d_c00205{letter-spacing:-2.159700px;}
.ls9b_c00205{letter-spacing:-2.016000px;}
.ls75_c00205{letter-spacing:-1.959600px;}
.ls74_c00205{letter-spacing:-1.780200px;}
.ls72_c00205{letter-spacing:-1.704300px;}
.ls7f_c00205{letter-spacing:-1.538700px;}
.ls82_c00205{letter-spacing:-1.393800px;}
.ls81_c00205{letter-spacing:-1.210680px;}
.ls6d_c00205{letter-spacing:-1.110900px;}
.ls6c_c00205{letter-spacing:-1.083300px;}
.ls8c_c00205{letter-spacing:-1.048800px;}
.ls71_c00205{letter-spacing:-0.862500px;}
.ls8a_c00205{letter-spacing:-0.855600px;}
.ls67_c00205{letter-spacing:-0.821100px;}
.ls7d_c00205{letter-spacing:-0.800400px;}
.ls89_c00205{letter-spacing:-0.724500px;}
.ls97_c00205{letter-spacing:-0.676200px;}
.ls6e_c00205{letter-spacing:-0.641700px;}
.ls95_c00205{letter-spacing:-0.607200px;}
.ls96_c00205{letter-spacing:-0.595080px;}
.ls76_c00205{letter-spacing:-0.593400px;}
.ls70_c00205{letter-spacing:-0.586500px;}
.ls73_c00205{letter-spacing:-0.517500px;}
.ls77_c00205{letter-spacing:-0.469200px;}
.ls7b_c00205{letter-spacing:-0.345000px;}
.ls90_c00205{letter-spacing:-0.317400px;}
.ls7a_c00205{letter-spacing:-0.296700px;}
.ls8f_c00205{letter-spacing:-0.282900px;}
.ls63_c00205{letter-spacing:-0.262200px;}
.ls6b_c00205{letter-spacing:-0.255300px;}
.ls6f_c00205{letter-spacing:-0.241500px;}
.ls8e_c00205{letter-spacing:-0.234600px;}
.ls91_c00205{letter-spacing:-0.172500px;}
.ls88_c00205{letter-spacing:-0.165600px;}
.ls92_c00205{letter-spacing:-0.158700px;}
.ls9a_c00205{letter-spacing:-0.151800px;}
.ls65_c00205{letter-spacing:-0.103500px;}
.ls69_c00205{letter-spacing:-0.096600px;}
.ls78_c00205{letter-spacing:-0.089700px;}
.ls64_c00205{letter-spacing:-0.082800px;}
.ls8b_c00205{letter-spacing:-0.062100px;}
.ls93_c00205{letter-spacing:-0.061560px;}
.ls79_c00205{letter-spacing:-0.048300px;}
.ls94_c00205{letter-spacing:-0.041400px;}
.ls6a_c00205{letter-spacing:-0.020700px;}
.ls66_c00205{letter-spacing:0.000000px;}
.lsb_c00205{letter-spacing:0.006900px;}
.ls2f_c00205{letter-spacing:0.034500px;}
.ls14_c00205{letter-spacing:0.041400px;}
.ls40_c00205{letter-spacing:0.075900px;}
.ls25_c00205{letter-spacing:0.082800px;}
.ls38_c00205{letter-spacing:0.096600px;}
.ls5b_c00205{letter-spacing:0.110400px;}
.ls46_c00205{letter-spacing:0.131100px;}
.ls24_c00205{letter-spacing:0.138000px;}
.ls1d_c00205{letter-spacing:0.144900px;}
.ls5_c00205{letter-spacing:0.151800px;}
.ls4f_c00205{letter-spacing:0.158700px;}
.ls5a_c00205{letter-spacing:0.165600px;}
.ls3a_c00205{letter-spacing:0.172500px;}
.ls48_c00205{letter-spacing:0.179400px;}
.ls1_c00205{letter-spacing:0.200100px;}
.ls57_c00205{letter-spacing:0.213900px;}
.ls15_c00205{letter-spacing:0.220800px;}
.ls9_c00205{letter-spacing:0.241500px;}
.ls85_c00205{letter-spacing:0.241920px;}
.lsf_c00205{letter-spacing:0.248400px;}
.ls1e_c00205{letter-spacing:0.262200px;}
.ls1f_c00205{letter-spacing:0.269100px;}
.ls5d_c00205{letter-spacing:0.276000px;}
.ls20_c00205{letter-spacing:0.282900px;}
.ls42_c00205{letter-spacing:0.296700px;}
.ls4d_c00205{letter-spacing:0.300960px;}
.ls53_c00205{letter-spacing:0.303600px;}
.ls27_c00205{letter-spacing:0.317400px;}
.ls56_c00205{letter-spacing:0.321480px;}
.ls2c_c00205{letter-spacing:0.331200px;}
.ls7_c00205{letter-spacing:0.338100px;}
.ls34_c00205{letter-spacing:0.345000px;}
.ls3_c00205{letter-spacing:0.351900px;}
.ls43_c00205{letter-spacing:0.358800px;}
.ls35_c00205{letter-spacing:0.365700px;}
.ls37_c00205{letter-spacing:0.372600px;}
.ls45_c00205{letter-spacing:0.379500px;}
.ls19_c00205{letter-spacing:0.386400px;}
.ls7e_c00205{letter-spacing:0.400200px;}
.ls16_c00205{letter-spacing:0.407100px;}
.ls36_c00205{letter-spacing:0.414000px;}
.ls3c_c00205{letter-spacing:0.434700px;}
.ls22_c00205{letter-spacing:0.441600px;}
.ls59_c00205{letter-spacing:0.448500px;}
.ls68_c00205{letter-spacing:0.455400px;}
.ls23_c00205{letter-spacing:0.458280px;}
.ls3b_c00205{letter-spacing:0.462300px;}
.ls21_c00205{letter-spacing:0.469200px;}
.ls5e_c00205{letter-spacing:0.489900px;}
.ls1b_c00205{letter-spacing:0.496800px;}
.ls12_c00205{letter-spacing:0.503700px;}
.ls32_c00205{letter-spacing:0.517500px;}
.ls60_c00205{letter-spacing:0.524400px;}
.ls17_c00205{letter-spacing:0.526680px;}
.ls8_c00205{letter-spacing:0.545100px;}
.ls3d_c00205{letter-spacing:0.558900px;}
.ls41_c00205{letter-spacing:0.565800px;}
.ls4_c00205{letter-spacing:0.586500px;}
.ls1a_c00205{letter-spacing:0.593400px;}
.ls2a_c00205{letter-spacing:0.600300px;}
.lsa_c00205{letter-spacing:0.614100px;}
.ls4c_c00205{letter-spacing:0.621000px;}
.ls5f_c00205{letter-spacing:0.641700px;}
.ls51_c00205{letter-spacing:0.648600px;}
.ls39_c00205{letter-spacing:0.669300px;}
.ls2b_c00205{letter-spacing:0.683100px;}
.ls0_c00205{letter-spacing:0.703800px;}
.ls28_c00205{letter-spacing:0.724500px;}
.lse_c00205{letter-spacing:0.731880px;}
.ls4e_c00205{letter-spacing:0.759000px;}
.ls2e_c00205{letter-spacing:0.765900px;}
.ls29_c00205{letter-spacing:0.772800px;}
.ls2d_c00205{letter-spacing:0.807300px;}
.ls33_c00205{letter-spacing:0.814200px;}
.ls54_c00205{letter-spacing:0.821100px;}
.ls4b_c00205{letter-spacing:0.834480px;}
.ls3e_c00205{letter-spacing:0.855600px;}
.ls31_c00205{letter-spacing:0.862500px;}
.ls99_c00205{letter-spacing:0.883200px;}
.ls18_c00205{letter-spacing:0.897000px;}
.ls10_c00205{letter-spacing:0.903900px;}
.ls2_c00205{letter-spacing:0.931500px;}
.ls6_c00205{letter-spacing:0.945300px;}
.ls52_c00205{letter-spacing:0.959100px;}
.ls49_c00205{letter-spacing:0.993600px;}
.ls44_c00205{letter-spacing:1.048800px;}
.ls55_c00205{letter-spacing:1.055700px;}
.lsd_c00205{letter-spacing:1.073880px;}
.ls84_c00205{letter-spacing:1.080000px;}
.ls30_c00205{letter-spacing:1.083300px;}
.lsc_c00205{letter-spacing:1.097100px;}
.ls13_c00205{letter-spacing:1.117800px;}
.ls1c_c00205{letter-spacing:1.159200px;}
.ls83_c00205{letter-spacing:1.311000px;}
.ls58_c00205{letter-spacing:1.490400px;}
.ls61_c00205{letter-spacing:1.628400px;}
.ls4a_c00205{letter-spacing:1.773300px;}
.ls3f_c00205{letter-spacing:1.842300px;}
.ls26_c00205{letter-spacing:1.894680px;}
.ls7c_c00205{letter-spacing:2.056200px;}
.ls5c_c00205{letter-spacing:2.072520px;}
.ls11_c00205{letter-spacing:2.076900px;}
.ls87_c00205{letter-spacing:2.263200px;}
.ls50_c00205{letter-spacing:2.539200px;}
.ls62_c00205{letter-spacing:2.583900px;}
.ls47_c00205{letter-spacing:2.884200px;}
.ls98_c00205{letter-spacing:3.450000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{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__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00205{word-spacing:-17.753700px;}
.ws6_c00205{word-spacing:0.000000px;}
.ws2_c00205{word-spacing:0.325680px;}
.ws1_c00205{word-spacing:3.330480px;}
.ws5_c00205{word-spacing:11.298120px;}
.ws0_c00205{word-spacing:16.082880px;}
.ws3_c00205{word-spacing:17.662800px;}
._12_c00205{margin-left:-4.836900px;}
._e_c00205{margin-left:-3.049800px;}
._6_c00205{margin-left:-1.524900px;}
._5_c00205{width:1.035000px;}
._7_c00205{width:2.697900px;}
._2_c00205{width:4.209000px;}
._0_c00205{width:5.520000px;}
._4_c00205{width:7.555500px;}
._d_c00205{width:8.763000px;}
._1_c00205{width:9.894600px;}
._3_c00205{width:11.366700px;}
._8_c00205{width:13.474800px;}
._a_c00205{width:15.359400px;}
._b_c00205{width:16.572300px;}
._9_c00205{width:19.257900px;}
._c_c00205{width:20.920800px;}
._10_c00205{width:52.185600px;}
._11_c00205{width:207.014400px;}
._f_c00205{width:872.265600px;}
.fc0_c00205{color:transparent;}
.fs4_c00205{font-size:21.600000px;}
.fs5_c00205{font-size:32.400600px;}
.fs6_c00205{font-size:57.600000px;}
.fs0_c00205{font-size:59.400000px;}
.fs2_c00205{font-size:68.400000px;}
.fs1_c00205{font-size:69.000000px;}
.fs3_c00205{font-size:72.600000px;}
.y0_c00205{bottom:0.000000px;}
.y1e_c00205{bottom:70.215015px;}
.y1d_c00205{bottom:129.958515px;}
.y1c_c00205{bottom:160.215015px;}
.y1b_c00205{bottom:190.815015px;}
.y1a_c00205{bottom:253.815015px;}
.y18_c00205{bottom:283.691265px;}
.y19_c00205{bottom:283.695015px;}
.y17_c00205{bottom:314.653515px;}
.y16_c00205{bottom:345.255015px;}
.y15_c00205{bottom:406.815015px;}
.y14_c00205{bottom:471.258015px;}
.y13_c00205{bottom:501.135015px;}
.y12_c00205{bottom:530.655015px;}
.y10_c00205{bottom:532.078515px;}
.y11_c00205{bottom:532.080015px;}
.yf_c00205{bottom:562.680015px;}
.ye_c00205{bottom:624.593265px;}
.yd_c00205{bottom:655.212015px;}
.yc_c00205{bottom:685.813515px;}
.yb_c00205{bottom:716.415015px;}
.ya_c00205{bottom:778.678515px;}
.y9_c00205{bottom:808.935015px;}
.y8_c00205{bottom:870.827265px;}
.y7_c00205{bottom:932.409765px;}
.y6_c00205{bottom:962.994015px;}
.y5_c00205{bottom:993.978015px;}
.y4_c00205{bottom:1024.200015px;}
.y3_c00205{bottom:1085.413515px;}
.y2_c00205{bottom:1116.360015px;}
.y1_c00205{bottom:1192.680015px;}
.h6_c00205{height:22.528125px;}
.h8_c00205{height:56.531250px;}
.h2_c00205{height:58.297852px;}
.h3_c00205{height:67.719727px;}
.h7_c00205{height:67.725727px;}
.h4_c00205{height:67.770727px;}
.h5_c00205{height:71.252930px;}
.h1_c00205{height:1263.000000px;}
.h0_c00205{height:1263.240015px;}
.w1_c00205{width:892.500000px;}
.w0_c00205{width:892.800015px;}
.x0_c00205{left:0.000000px;}
.x16_c00205{left:122.943015px;}
.x11_c00205{left:124.095015px;}
.x5_c00205{left:125.217765px;}
.x1_c00205{left:126.645015px;}
.x12_c00205{left:164.700015px;}
.x13_c00205{left:176.925015px;}
.x4_c00205{left:178.113015px;}
.x2_c00205{left:180.165015px;}
.x8_c00205{left:184.110015px;}
.x6_c00205{left:282.435015px;}
.x9_c00205{left:302.700015px;}
.x7_c00205{left:305.085015px;}
.x3_c00205{left:402.135015px;}
.x17_c00205{left:425.385015px;}
.xc_c00205{left:433.020015px;}
.xf_c00205{left:437.235015px;}
.xa_c00205{left:439.755015px;}
.x10_c00205{left:459.570015px;}
.xb_c00205{left:460.980015px;}
.xd_c00205{left:464.220015px;}
.x14_c00205{left:550.335015px;}
.x15_c00205{left:575.100015px;}
.xe_c00205{left:618.420015px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.v1_c00205{vertical-align:24.320000pt;}
.ls80_c00205{letter-spacing:-2.258667pt;}
.ls86_c00205{letter-spacing:-2.146667pt;}
.ls8d_c00205{letter-spacing:-1.919733pt;}
.ls9b_c00205{letter-spacing:-1.792000pt;}
.ls75_c00205{letter-spacing:-1.741867pt;}
.ls74_c00205{letter-spacing:-1.582400pt;}
.ls72_c00205{letter-spacing:-1.514933pt;}
.ls7f_c00205{letter-spacing:-1.367733pt;}
.ls82_c00205{letter-spacing:-1.238933pt;}
.ls81_c00205{letter-spacing:-1.076160pt;}
.ls6d_c00205{letter-spacing:-0.987467pt;}
.ls6c_c00205{letter-spacing:-0.962933pt;}
.ls8c_c00205{letter-spacing:-0.932267pt;}
.ls71_c00205{letter-spacing:-0.766667pt;}
.ls8a_c00205{letter-spacing:-0.760533pt;}
.ls67_c00205{letter-spacing:-0.729867pt;}
.ls7d_c00205{letter-spacing:-0.711467pt;}
.ls89_c00205{letter-spacing:-0.644000pt;}
.ls97_c00205{letter-spacing:-0.601067pt;}
.ls6e_c00205{letter-spacing:-0.570400pt;}
.ls95_c00205{letter-spacing:-0.539733pt;}
.ls96_c00205{letter-spacing:-0.528960pt;}
.ls76_c00205{letter-spacing:-0.527467pt;}
.ls70_c00205{letter-spacing:-0.521333pt;}
.ls73_c00205{letter-spacing:-0.460000pt;}
.ls77_c00205{letter-spacing:-0.417067pt;}
.ls7b_c00205{letter-spacing:-0.306667pt;}
.ls90_c00205{letter-spacing:-0.282133pt;}
.ls7a_c00205{letter-spacing:-0.263733pt;}
.ls8f_c00205{letter-spacing:-0.251467pt;}
.ls63_c00205{letter-spacing:-0.233067pt;}
.ls6b_c00205{letter-spacing:-0.226933pt;}
.ls6f_c00205{letter-spacing:-0.214667pt;}
.ls8e_c00205{letter-spacing:-0.208533pt;}
.ls91_c00205{letter-spacing:-0.153333pt;}
.ls88_c00205{letter-spacing:-0.147200pt;}
.ls92_c00205{letter-spacing:-0.141067pt;}
.ls9a_c00205{letter-spacing:-0.134933pt;}
.ls65_c00205{letter-spacing:-0.092000pt;}
.ls69_c00205{letter-spacing:-0.085867pt;}
.ls78_c00205{letter-spacing:-0.079733pt;}
.ls64_c00205{letter-spacing:-0.073600pt;}
.ls8b_c00205{letter-spacing:-0.055200pt;}
.ls93_c00205{letter-spacing:-0.054720pt;}
.ls79_c00205{letter-spacing:-0.042933pt;}
.ls94_c00205{letter-spacing:-0.036800pt;}
.ls6a_c00205{letter-spacing:-0.018400pt;}
.ls66_c00205{letter-spacing:0.000000pt;}
.lsb_c00205{letter-spacing:0.006133pt;}
.ls2f_c00205{letter-spacing:0.030667pt;}
.ls14_c00205{letter-spacing:0.036800pt;}
.ls40_c00205{letter-spacing:0.067467pt;}
.ls25_c00205{letter-spacing:0.073600pt;}
.ls38_c00205{letter-spacing:0.085867pt;}
.ls5b_c00205{letter-spacing:0.098133pt;}
.ls46_c00205{letter-spacing:0.116533pt;}
.ls24_c00205{letter-spacing:0.122667pt;}
.ls1d_c00205{letter-spacing:0.128800pt;}
.ls5_c00205{letter-spacing:0.134933pt;}
.ls4f_c00205{letter-spacing:0.141067pt;}
.ls5a_c00205{letter-spacing:0.147200pt;}
.ls3a_c00205{letter-spacing:0.153333pt;}
.ls48_c00205{letter-spacing:0.159467pt;}
.ls1_c00205{letter-spacing:0.177867pt;}
.ls57_c00205{letter-spacing:0.190133pt;}
.ls15_c00205{letter-spacing:0.196267pt;}
.ls9_c00205{letter-spacing:0.214667pt;}
.ls85_c00205{letter-spacing:0.215040pt;}
.lsf_c00205{letter-spacing:0.220800pt;}
.ls1e_c00205{letter-spacing:0.233067pt;}
.ls1f_c00205{letter-spacing:0.239200pt;}
.ls5d_c00205{letter-spacing:0.245333pt;}
.ls20_c00205{letter-spacing:0.251467pt;}
.ls42_c00205{letter-spacing:0.263733pt;}
.ls4d_c00205{letter-spacing:0.267520pt;}
.ls53_c00205{letter-spacing:0.269867pt;}
.ls27_c00205{letter-spacing:0.282133pt;}
.ls56_c00205{letter-spacing:0.285760pt;}
.ls2c_c00205{letter-spacing:0.294400pt;}
.ls7_c00205{letter-spacing:0.300533pt;}
.ls34_c00205{letter-spacing:0.306667pt;}
.ls3_c00205{letter-spacing:0.312800pt;}
.ls43_c00205{letter-spacing:0.318933pt;}
.ls35_c00205{letter-spacing:0.325067pt;}
.ls37_c00205{letter-spacing:0.331200pt;}
.ls45_c00205{letter-spacing:0.337333pt;}
.ls19_c00205{letter-spacing:0.343467pt;}
.ls7e_c00205{letter-spacing:0.355733pt;}
.ls16_c00205{letter-spacing:0.361867pt;}
.ls36_c00205{letter-spacing:0.368000pt;}
.ls3c_c00205{letter-spacing:0.386400pt;}
.ls22_c00205{letter-spacing:0.392533pt;}
.ls59_c00205{letter-spacing:0.398667pt;}
.ls68_c00205{letter-spacing:0.404800pt;}
.ls23_c00205{letter-spacing:0.407360pt;}
.ls3b_c00205{letter-spacing:0.410933pt;}
.ls21_c00205{letter-spacing:0.417067pt;}
.ls5e_c00205{letter-spacing:0.435467pt;}
.ls1b_c00205{letter-spacing:0.441600pt;}
.ls12_c00205{letter-spacing:0.447733pt;}
.ls32_c00205{letter-spacing:0.460000pt;}
.ls60_c00205{letter-spacing:0.466133pt;}
.ls17_c00205{letter-spacing:0.468160pt;}
.ls8_c00205{letter-spacing:0.484533pt;}
.ls3d_c00205{letter-spacing:0.496800pt;}
.ls41_c00205{letter-spacing:0.502933pt;}
.ls4_c00205{letter-spacing:0.521333pt;}
.ls1a_c00205{letter-spacing:0.527467pt;}
.ls2a_c00205{letter-spacing:0.533600pt;}
.lsa_c00205{letter-spacing:0.545867pt;}
.ls4c_c00205{letter-spacing:0.552000pt;}
.ls5f_c00205{letter-spacing:0.570400pt;}
.ls51_c00205{letter-spacing:0.576533pt;}
.ls39_c00205{letter-spacing:0.594933pt;}
.ls2b_c00205{letter-spacing:0.607200pt;}
.ls0_c00205{letter-spacing:0.625600pt;}
.ls28_c00205{letter-spacing:0.644000pt;}
.lse_c00205{letter-spacing:0.650560pt;}
.ls4e_c00205{letter-spacing:0.674667pt;}
.ls2e_c00205{letter-spacing:0.680800pt;}
.ls29_c00205{letter-spacing:0.686933pt;}
.ls2d_c00205{letter-spacing:0.717600pt;}
.ls33_c00205{letter-spacing:0.723733pt;}
.ls54_c00205{letter-spacing:0.729867pt;}
.ls4b_c00205{letter-spacing:0.741760pt;}
.ls3e_c00205{letter-spacing:0.760533pt;}
.ls31_c00205{letter-spacing:0.766667pt;}
.ls99_c00205{letter-spacing:0.785067pt;}
.ls18_c00205{letter-spacing:0.797333pt;}
.ls10_c00205{letter-spacing:0.803467pt;}
.ls2_c00205{letter-spacing:0.828000pt;}
.ls6_c00205{letter-spacing:0.840267pt;}
.ls52_c00205{letter-spacing:0.852533pt;}
.ls49_c00205{letter-spacing:0.883200pt;}
.ls44_c00205{letter-spacing:0.932267pt;}
.ls55_c00205{letter-spacing:0.938400pt;}
.lsd_c00205{letter-spacing:0.954560pt;}
.ls84_c00205{letter-spacing:0.960000pt;}
.ls30_c00205{letter-spacing:0.962933pt;}
.lsc_c00205{letter-spacing:0.975200pt;}
.ls13_c00205{letter-spacing:0.993600pt;}
.ls1c_c00205{letter-spacing:1.030400pt;}
.ls83_c00205{letter-spacing:1.165333pt;}
.ls58_c00205{letter-spacing:1.324800pt;}
.ls61_c00205{letter-spacing:1.447467pt;}
.ls4a_c00205{letter-spacing:1.576267pt;}
.ls3f_c00205{letter-spacing:1.637600pt;}
.ls26_c00205{letter-spacing:1.684160pt;}
.ls7c_c00205{letter-spacing:1.827733pt;}
.ls5c_c00205{letter-spacing:1.842240pt;}
.ls11_c00205{letter-spacing:1.846133pt;}
.ls87_c00205{letter-spacing:2.011733pt;}
.ls50_c00205{letter-spacing:2.257067pt;}
.ls62_c00205{letter-spacing:2.296800pt;}
.ls47_c00205{letter-spacing:2.563733pt;}
.ls98_c00205{letter-spacing:3.066667pt;}
.ws4_c00205{word-spacing:-15.781067pt;}
.ws6_c00205{word-spacing:0.000000pt;}
.ws2_c00205{word-spacing:0.289493pt;}
.ws1_c00205{word-spacing:2.960427pt;}
.ws5_c00205{word-spacing:10.042773pt;}
.ws0_c00205{word-spacing:14.295893pt;}
.ws3_c00205{word-spacing:15.700267pt;}
._12_c00205{margin-left:-4.299467pt;}
._e_c00205{margin-left:-2.710933pt;}
._6_c00205{margin-left:-1.355467pt;}
._5_c00205{width:0.920000pt;}
._7_c00205{width:2.398133pt;}
._2_c00205{width:3.741333pt;}
._0_c00205{width:4.906667pt;}
._4_c00205{width:6.716000pt;}
._d_c00205{width:7.789333pt;}
._1_c00205{width:8.795200pt;}
._3_c00205{width:10.103733pt;}
._8_c00205{width:11.977600pt;}
._a_c00205{width:13.652800pt;}
._b_c00205{width:14.730933pt;}
._9_c00205{width:17.118133pt;}
._c_c00205{width:18.596267pt;}
._10_c00205{width:46.387200pt;}
._11_c00205{width:184.012800pt;}
._f_c00205{width:775.347200pt;}
.fs4_c00205{font-size:19.200000pt;}
.fs5_c00205{font-size:28.800533pt;}
.fs6_c00205{font-size:51.200000pt;}
.fs0_c00205{font-size:52.800000pt;}
.fs2_c00205{font-size:60.800000pt;}
.fs1_c00205{font-size:61.333333pt;}
.fs3_c00205{font-size:64.533333pt;}
.y0_c00205{bottom:0.000000pt;}
.y1e_c00205{bottom:62.413347pt;}
.y1d_c00205{bottom:115.518680pt;}
.y1c_c00205{bottom:142.413347pt;}
.y1b_c00205{bottom:169.613347pt;}
.y1a_c00205{bottom:225.613347pt;}
.y18_c00205{bottom:252.170013pt;}
.y19_c00205{bottom:252.173347pt;}
.y17_c00205{bottom:279.692013pt;}
.y16_c00205{bottom:306.893347pt;}
.y15_c00205{bottom:361.613347pt;}
.y14_c00205{bottom:418.896013pt;}
.y13_c00205{bottom:445.453347pt;}
.y12_c00205{bottom:471.693347pt;}
.y10_c00205{bottom:472.958680pt;}
.y11_c00205{bottom:472.960013pt;}
.yf_c00205{bottom:500.160013pt;}
.ye_c00205{bottom:555.194013pt;}
.yd_c00205{bottom:582.410680pt;}
.yc_c00205{bottom:609.612013pt;}
.yb_c00205{bottom:636.813347pt;}
.ya_c00205{bottom:692.158680pt;}
.y9_c00205{bottom:719.053347pt;}
.y8_c00205{bottom:774.068680pt;}
.y7_c00205{bottom:828.808680pt;}
.y6_c00205{bottom:855.994680pt;}
.y5_c00205{bottom:883.536013pt;}
.y4_c00205{bottom:910.400013pt;}
.y3_c00205{bottom:964.812013pt;}
.y2_c00205{bottom:992.320013pt;}
.y1_c00205{bottom:1060.160013pt;}
.h6_c00205{height:20.025000pt;}
.h8_c00205{height:50.250000pt;}
.h2_c00205{height:51.820312pt;}
.h3_c00205{height:60.195312pt;}
.h7_c00205{height:60.200646pt;}
.h4_c00205{height:60.240646pt;}
.h5_c00205{height:63.335938pt;}
.h1_c00205{height:1122.666667pt;}
.h0_c00205{height:1122.880013pt;}
.w1_c00205{width:793.333333pt;}
.w0_c00205{width:793.600013pt;}
.x0_c00205{left:0.000000pt;}
.x16_c00205{left:109.282680pt;}
.x11_c00205{left:110.306680pt;}
.x5_c00205{left:111.304680pt;}
.x1_c00205{left:112.573347pt;}
.x12_c00205{left:146.400013pt;}
.x13_c00205{left:157.266680pt;}
.x4_c00205{left:158.322680pt;}
.x2_c00205{left:160.146680pt;}
.x8_c00205{left:163.653347pt;}
.x6_c00205{left:251.053347pt;}
.x9_c00205{left:269.066680pt;}
.x7_c00205{left:271.186680pt;}
.x3_c00205{left:357.453347pt;}
.x17_c00205{left:378.120013pt;}
.xc_c00205{left:384.906680pt;}
.xf_c00205{left:388.653347pt;}
.xa_c00205{left:390.893347pt;}
.x10_c00205{left:408.506680pt;}
.xb_c00205{left:409.760013pt;}
.xd_c00205{left:412.640013pt;}
.x14_c00205{left:489.186680pt;}
.x15_c00205{left:511.200013pt;}
.xe_c00205{left:549.706680pt;}
}





/* 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_c00206 {
    display:none;
  }
  .loading-indicator_c00206.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00206 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_c00206 { 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_c00206" -> "#page-container .classname_c00206")
 */
.pf_c00206 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00206 { /* 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_c00206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00206 { /* 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_c00206 { /* 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_c00206 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00206 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00206 {overflow:visible;}
  }
}
.c_c00206 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00206 { /* 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_c00206:after { /* webkit #35443 */
  content: '';
}
.t_c00206:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00206 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 */
}
.__c00206 { /* 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_c00206 { /* info for Javascript */
  display:none;
}
.l_c00206 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00206 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00206 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00206: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_c00206 {
    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_c00206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00206.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_c00206 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00206;src:url('chunks/assets/font_6364c2f4116e1411ede80f27.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.311035;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_c00206;src:url('chunks/assets/font_1f7d6c8abc25a8842809461e.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.284668;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_c00206;src:url('chunks/assets/font_56fdd0e61f71515139fd157e.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.284180;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_c00206;src:url('chunks/assets/font_131e22fd98abb80bfee73c39.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;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:ff5_c00206;src:url('chunks/assets/font_a8c18a1db6aa3735fbc6c645.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;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:ff6_c00206;src:url('chunks/assets/font_06dc738b7677b4d8cc6da070.woff2')format("woff");}.ff6_c00206{font-family:ff6_c00206;line-height:1.284180;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_c00206;src:url('chunks/assets/font_de1ec3489a27318a5db9090c.woff2')format("woff");}.ff7_c00206{font-family:ff7_c00206;line-height:0.666000;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_c00206;src:url('chunks/assets/font_7df6fcc41c4a6cd33b492d25.woff2')format("woff");}.ff8_c00206{font-family:ff8_c00206;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;}
.m6_c00206{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mb_c00206{transform:matrix(0.134095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134095,0.000000,0.000000,0.250000,0,0);}
.md_c00206{transform:matrix(0.160342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160342,0.000000,0.000000,0.250000,0,0);}
.m9_c00206{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m11_c00206{transform:matrix(0.201168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201168,0.000000,0.000000,0.250000,0,0);}
.m14_c00206{transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);}
.m10_c00206{transform:matrix(0.229069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229069,0.000000,0.000000,0.250000,0,0);}
.m3_c00206{transform:matrix(0.231532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231532,0.000000,0.000000,0.250000,0,0);}
.m0_c00206{transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);}
.m5_c00206{transform:matrix(0.243948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243948,0.000000,0.000000,0.250000,0,0);}
.m2_c00206{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m4_c00206{transform:matrix(0.247343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247343,0.000000,0.000000,0.250000,0,0);}
.m12_c00206{transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{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);}
.me_c00206{transform:matrix(0.289749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289749,0.000000,0.000000,0.250000,0,0);}
.m13_c00206{transform:matrix(0.302294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302294,0.000000,0.000000,0.250000,0,0);}
.ma_c00206{transform:matrix(0.303145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303145,0.000000,0.000000,0.250000,0,0);}
.mc_c00206{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.m7_c00206{transform:matrix(0.389790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389790,0.000000,0.000000,0.250000,0,0);}
.mf_c00206{transform:matrix(0.446429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446429,0.000000,0.000000,0.250000,0,0);}
.m8_c00206{transform:matrix(1.248152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.248152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.248152,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls83_c00206{letter-spacing:-2.436000px;}
.ls6d_c00206{letter-spacing:-2.415000px;}
.ls5c_c00206{letter-spacing:-2.331000px;}
.ls88_c00206{letter-spacing:-2.296800px;}
.ls91_c00206{letter-spacing:-2.262000px;}
.ls82_c00206{letter-spacing:-2.234160px;}
.ls85_c00206{letter-spacing:-2.136720px;}
.ls72_c00206{letter-spacing:-1.823520px;}
.ls67_c00206{letter-spacing:-1.809600px;}
.ls8a_c00206{letter-spacing:-1.760880px;}
.ls78_c00206{letter-spacing:-1.649520px;}
.ls8f_c00206{letter-spacing:-1.596000px;}
.ls7e_c00206{letter-spacing:-1.545120px;}
.ls7a_c00206{letter-spacing:-1.531200px;}
.ls9a_c00206{letter-spacing:-1.524240px;}
.ls97_c00206{letter-spacing:-1.503360px;}
.ls93_c00206{letter-spacing:-1.428021px;}
.ls6f_c00206{letter-spacing:-1.426800px;}
.ls7f_c00206{letter-spacing:-1.412880px;}
.ls84_c00206{letter-spacing:-1.294560px;}
.ls80_c00206{letter-spacing:-1.280640px;}
.ls6a_c00206{letter-spacing:-1.218000px;}
.ls9b_c00206{letter-spacing:-1.211040px;}
.ls86_c00206{letter-spacing:-1.190160px;}
.ls98_c00206{letter-spacing:-1.023120px;}
.ls61_c00206{letter-spacing:-0.828240px;}
.ls99_c00206{letter-spacing:-0.814320px;}
.ls77_c00206{letter-spacing:-0.793440px;}
.ls8d_c00206{letter-spacing:-0.651000px;}
.ls76_c00206{letter-spacing:-0.605520px;}
.ls5e_c00206{letter-spacing:-0.584640px;}
.ls81_c00206{letter-spacing:-0.542880px;}
.ls9c_c00206{letter-spacing:-0.529620px;}
.ls7c_c00206{letter-spacing:-0.501120px;}
.ls87_c00206{letter-spacing:-0.487200px;}
.ls63_c00206{letter-spacing:-0.466320px;}
.ls89_c00206{letter-spacing:-0.403680px;}
.ls66_c00206{letter-spacing:-0.382800px;}
.ls6e_c00206{letter-spacing:-0.361920px;}
.ls7d_c00206{letter-spacing:-0.313200px;}
.ls71_c00206{letter-spacing:-0.250560px;}
.ls5f_c00206{letter-spacing:-0.243600px;}
.ls75_c00206{letter-spacing:-0.208800px;}
.ls73_c00206{letter-spacing:-0.187920px;}
.ls69_c00206{letter-spacing:-0.180960px;}
.ls68_c00206{letter-spacing:-0.174000px;}
.ls7b_c00206{letter-spacing:-0.160080px;}
.ls96_c00206{letter-spacing:-0.111360px;}
.ls8b_c00206{letter-spacing:-0.110164px;}
.ls64_c00206{letter-spacing:-0.104400px;}
.ls6b_c00206{letter-spacing:-0.090480px;}
.ls65_c00206{letter-spacing:-0.076560px;}
.ls79_c00206{letter-spacing:-0.041760px;}
.ls5d_c00206{letter-spacing:-0.027840px;}
.ls60_c00206{letter-spacing:0.000000px;}
.ls3a_c00206{letter-spacing:0.006960px;}
.ls3d_c00206{letter-spacing:0.041760px;}
.ls1a_c00206{letter-spacing:0.048720px;}
.ls56_c00206{letter-spacing:0.054720px;}
.ls39_c00206{letter-spacing:0.062640px;}
.ls34_c00206{letter-spacing:0.083520px;}
.ls9_c00206{letter-spacing:0.104400px;}
.ls21_c00206{letter-spacing:0.139200px;}
.ls3_c00206{letter-spacing:0.160080px;}
.ls4c_c00206{letter-spacing:0.167040px;}
.ls3c_c00206{letter-spacing:0.174000px;}
.ls20_c00206{letter-spacing:0.201840px;}
.lsc_c00206{letter-spacing:0.215760px;}
.ls13_c00206{letter-spacing:0.222720px;}
.ls18_c00206{letter-spacing:0.236640px;}
.ls35_c00206{letter-spacing:0.250560px;}
.ls14_c00206{letter-spacing:0.257520px;}
.ls36_c00206{letter-spacing:0.271440px;}
.ls51_c00206{letter-spacing:0.285360px;}
.ls4e_c00206{letter-spacing:0.292320px;}
.lsd_c00206{letter-spacing:0.306240px;}
.ls2f_c00206{letter-spacing:0.313200px;}
.ls33_c00206{letter-spacing:0.354960px;}
.ls7_c00206{letter-spacing:0.389760px;}
.ls55_c00206{letter-spacing:0.403560px;}
.lsf_c00206{letter-spacing:0.410640px;}
.ls70_c00206{letter-spacing:0.417600px;}
.lsb_c00206{letter-spacing:0.424560px;}
.ls6_c00206{letter-spacing:0.431520px;}
.ls37_c00206{letter-spacing:0.445440px;}
.ls0_c00206{letter-spacing:0.452400px;}
.ls4b_c00206{letter-spacing:0.466320px;}
.ls3b_c00206{letter-spacing:0.480240px;}
.ls40_c00206{letter-spacing:0.494160px;}
.ls31_c00206{letter-spacing:0.501120px;}
.ls2d_c00206{letter-spacing:0.508080px;}
.ls29_c00206{letter-spacing:0.522000px;}
.ls24_c00206{letter-spacing:0.542880px;}
.ls2b_c00206{letter-spacing:0.549840px;}
.ls30_c00206{letter-spacing:0.563760px;}
.lse_c00206{letter-spacing:0.570720px;}
.ls22_c00206{letter-spacing:0.598560px;}
.ls43_c00206{letter-spacing:0.612480px;}
.ls48_c00206{letter-spacing:0.619440px;}
.ls15_c00206{letter-spacing:0.626400px;}
.ls11_c00206{letter-spacing:0.661200px;}
.ls62_c00206{letter-spacing:0.702960px;}
.ls2_c00206{letter-spacing:0.716880px;}
.ls74_c00206{letter-spacing:0.730800px;}
.ls1b_c00206{letter-spacing:0.744720px;}
.ls19_c00206{letter-spacing:0.751680px;}
.ls59_c00206{letter-spacing:0.772560px;}
.ls38_c00206{letter-spacing:0.779520px;}
.ls42_c00206{letter-spacing:0.786480px;}
.ls17_c00206{letter-spacing:0.793440px;}
.ls27_c00206{letter-spacing:0.800400px;}
.ls46_c00206{letter-spacing:0.821280px;}
.ls32_c00206{letter-spacing:0.828240px;}
.ls8c_c00206{letter-spacing:0.840030px;}
.ls3f_c00206{letter-spacing:0.856080px;}
.ls1e_c00206{letter-spacing:0.890880px;}
.ls8e_c00206{letter-spacing:0.930000px;}
.ls28_c00206{letter-spacing:0.932640px;}
.ls41_c00206{letter-spacing:0.939600px;}
.ls5b_c00206{letter-spacing:0.967440px;}
.ls52_c00206{letter-spacing:0.998640px;}
.ls53_c00206{letter-spacing:1.005480px;}
.ls50_c00206{letter-spacing:1.032840px;}
.ls16_c00206{letter-spacing:1.044000px;}
.ls5a_c00206{letter-spacing:1.053360px;}
.ls1_c00206{letter-spacing:1.069500px;}
.ls4a_c00206{letter-spacing:1.101240px;}
.ls2e_c00206{letter-spacing:1.106640px;}
.ls45_c00206{letter-spacing:1.128600px;}
.ls8_c00206{letter-spacing:1.142280px;}
.ls94_c00206{letter-spacing:1.162320px;}
.lsa_c00206{letter-spacing:1.183320px;}
.ls10_c00206{letter-spacing:1.190160px;}
.ls2c_c00206{letter-spacing:1.197120px;}
.ls44_c00206{letter-spacing:1.210680px;}
.ls54_c00206{letter-spacing:1.217520px;}
.ls92_c00206{letter-spacing:1.263120px;}
.ls90_c00206{letter-spacing:1.320030px;}
.ls49_c00206{letter-spacing:1.333800px;}
.ls4f_c00206{letter-spacing:1.361160px;}
.ls1c_c00206{letter-spacing:1.378080px;}
.ls23_c00206{letter-spacing:1.405920px;}
.ls58_c00206{letter-spacing:1.429560px;}
.ls3e_c00206{letter-spacing:1.447680px;}
.ls4_c00206{letter-spacing:1.468560px;}
.ls5_c00206{letter-spacing:1.504800px;}
.ls12_c00206{letter-spacing:1.641600px;}
.ls2a_c00206{letter-spacing:1.642560px;}
.ls25_c00206{letter-spacing:1.663440px;}
.ls57_c00206{letter-spacing:1.798920px;}
.ls6c_c00206{letter-spacing:1.983600px;}
.ls47_c00206{letter-spacing:2.157600px;}
.ls1d_c00206{letter-spacing:2.164560px;}
.ls4d_c00206{letter-spacing:2.262000px;}
.ls95_c00206{letter-spacing:2.370030px;}
.ls26_c00206{letter-spacing:2.442960px;}
.ls1f_c00206{letter-spacing:2.923200px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{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__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00206{word-spacing:0.000000px;}
._c_c00206{margin-left:-5.568000px;}
._15_c00206{margin-left:-3.758400px;}
._2_c00206{margin-left:-2.345520px;}
._16_c00206{margin-left:-1.044000px;}
._1_c00206{width:1.656480px;}
._d_c00206{width:2.763120px;}
._4_c00206{width:3.819300px;}
._3_c00206{width:5.140560px;}
._0_c00206{width:6.544140px;}
._17_c00206{width:7.610160px;}
._a_c00206{width:9.096720px;}
._6_c00206{width:10.752000px;}
._b_c00206{width:11.868660px;}
._5_c00206{width:13.272720px;}
._12_c00206{width:14.392320px;}
._8_c00206{width:15.451200px;}
._9_c00206{width:17.079600px;}
._7_c00206{width:19.276320px;}
._14_c00206{width:20.880960px;}
._13_c00206{width:22.060080px;}
._18_c00206{width:23.137697px;}
._19_c00206{width:32.402400px;}
._10_c00206{width:36.686160px;}
._e_c00206{width:40.896960px;}
._11_c00206{width:42.073200px;}
._f_c00206{width:43.193760px;}
._1b_c00206{width:47.879550px;}
._1a_c00206{width:88.990742px;}
.fc0_c00206{color:transparent;}
.fs6_c00206{font-size:16.200600px;}
.fs7_c00206{font-size:16.800600px;}
.fs8_c00206{font-size:18.600000px;}
.fs5_c00206{font-size:20.160000px;}
.fs9_c00206{font-size:21.600000px;}
.fsa_c00206{font-size:22.800600px;}
.fsc_c00206{font-size:26.400600px;}
.fsd_c00206{font-size:28.800600px;}
.fsf_c00206{font-size:40.800600px;}
.fsb_c00206{font-size:45.600000px;}
.fse_c00206{font-size:47.400600px;}
.fs10_c00206{font-size:58.200000px;}
.fs0_c00206{font-size:66.600000px;}
.fs3_c00206{font-size:68.400000px;}
.fs2_c00206{font-size:69.000000px;}
.fs1_c00206{font-size:69.600000px;}
.fs4_c00206{font-size:80.400000px;}
.y0_c00206{bottom:0.000000px;}
.y1f_c00206{bottom:72.360000px;}
.y1e_c00206{bottom:151.560000px;}
.y1d_c00206{bottom:182.520000px;}
.y1c_c00206{bottom:213.840000px;}
.y1b_c00206{bottom:244.800000px;}
.y1a_c00206{bottom:275.415000px;}
.y19_c00206{bottom:284.415000px;}
.y18_c00206{bottom:306.720000px;}
.y17_c00206{bottom:336.975000px;}
.y16_c00206{bottom:368.655000px;}
.y15_c00206{bottom:424.455000px;}
.y14_c00206{bottom:424.470000px;}
.y13_c00206{bottom:472.702800px;}
.y12_c00206{bottom:503.640000px;}
.y11_c00206{bottom:565.567200px;}
.y10_c00206{bottom:627.145800px;}
.yf_c00206{bottom:658.100400px;}
.ye_c00206{bottom:689.061600px;}
.yd_c00206{bottom:720.016200px;}
.yc_c00206{bottom:750.622800px;}
.yb_c00206{bottom:781.560000px;}
.ya_c00206{bottom:781.563000px;}
.y9_c00206{bottom:812.535000px;}
.y8_c00206{bottom:843.847200px;}
.y7_c00206{bottom:874.436400px;}
.y6_c00206{bottom:936.015000px;}
.y5_c00206{bottom:966.600000px;}
.y4_c00206{bottom:997.200000px;}
.y3_c00206{bottom:1058.756400px;}
.y2_c00206{bottom:1120.335000px;}
.y1_c00206{bottom:1197.015000px;}
.h7_c00206{height:13.426560px;}
.h8_c00206{height:16.327167px;}
.h9_c00206{height:16.931855px;}
.ha_c00206{height:18.745313px;}
.hb_c00206{height:23.780313px;}
.he_c00206{height:27.535001px;}
.hf_c00206{height:28.266214px;}
.h10_c00206{height:42.553751px;}
.hd_c00206{height:44.753906px;}
.hc_c00206{height:45.956250px;}
.h11_c00206{height:46.521097px;}
.h13_c00206{height:57.120117px;}
.h12_c00206{height:67.097461px;}
.h2_c00206{height:67.120312px;}
.h4_c00206{height:68.308594px;}
.h3_c00206{height:69.539062px;}
.h6_c00206{height:71.964844px;}
.h5_c00206{height:83.885888px;}
.h1_c00206{height:1263.000000px;}
.h0_c00206{height:1263.240000px;}
.w1_c00206{width:892.500000px;}
.w0_c00206{width:892.800000px;}
.x0_c00206{left:0.000000px;}
.x5_c00206{left:120.425400px;}
.x1_c00206{left:124.125000px;}
.xa_c00206{left:170.922000px;}
.xd_c00206{left:171.975000px;}
.x8_c00206{left:173.035200px;}
.x3_c00206{left:175.215000px;}
.x2_c00206{left:176.940000px;}
.x4_c00206{left:179.100000px;}
.x10_c00206{left:206.595000px;}
.x6_c00206{left:220.140000px;}
.x11_c00206{left:225.345000px;}
.x7_c00206{left:237.210000px;}
.x12_c00206{left:243.675000px;}
.x9_c00206{left:274.140000px;}
.x13_c00206{left:290.340000px;}
.x14_c00206{left:326.820000px;}
.x23_c00206{left:335.130000px;}
.x15_c00206{left:354.900000px;}
.x24_c00206{left:366.345000px;}
.xb_c00206{left:374.925000px;}
.x16_c00206{left:379.785000px;}
.xc_c00206{left:395.250000px;}
.x26_c00206{left:423.210000px;}
.x17_c00206{left:425.730000px;}
.x18_c00206{left:444.255000px;}
.x21_c00206{left:460.110000px;}
.x19_c00206{left:464.790000px;}
.x1a_c00206{left:471.240000px;}
.x1b_c00206{left:479.190000px;}
.x1c_c00206{left:495.015000px;}
.x1d_c00206{left:503.400000px;}
.x1e_c00206{left:513.840000px;}
.x1f_c00206{left:530.280000px;}
.x20_c00206{left:542.190000px;}
.x22_c00206{left:559.305000px;}
.xf_c00206{left:588.885000px;}
.xe_c00206{left:639.165000px;}
.x25_c00206{left:697.125000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls83_c00206{letter-spacing:-2.165333pt;}
.ls6d_c00206{letter-spacing:-2.146667pt;}
.ls5c_c00206{letter-spacing:-2.072000pt;}
.ls88_c00206{letter-spacing:-2.041600pt;}
.ls91_c00206{letter-spacing:-2.010667pt;}
.ls82_c00206{letter-spacing:-1.985920pt;}
.ls85_c00206{letter-spacing:-1.899307pt;}
.ls72_c00206{letter-spacing:-1.620907pt;}
.ls67_c00206{letter-spacing:-1.608533pt;}
.ls8a_c00206{letter-spacing:-1.565227pt;}
.ls78_c00206{letter-spacing:-1.466240pt;}
.ls8f_c00206{letter-spacing:-1.418667pt;}
.ls7e_c00206{letter-spacing:-1.373440pt;}
.ls7a_c00206{letter-spacing:-1.361067pt;}
.ls9a_c00206{letter-spacing:-1.354880pt;}
.ls97_c00206{letter-spacing:-1.336320pt;}
.ls93_c00206{letter-spacing:-1.269352pt;}
.ls6f_c00206{letter-spacing:-1.268267pt;}
.ls7f_c00206{letter-spacing:-1.255893pt;}
.ls84_c00206{letter-spacing:-1.150720pt;}
.ls80_c00206{letter-spacing:-1.138347pt;}
.ls6a_c00206{letter-spacing:-1.082667pt;}
.ls9b_c00206{letter-spacing:-1.076480pt;}
.ls86_c00206{letter-spacing:-1.057920pt;}
.ls98_c00206{letter-spacing:-0.909440pt;}
.ls61_c00206{letter-spacing:-0.736213pt;}
.ls99_c00206{letter-spacing:-0.723840pt;}
.ls77_c00206{letter-spacing:-0.705280pt;}
.ls8d_c00206{letter-spacing:-0.578667pt;}
.ls76_c00206{letter-spacing:-0.538240pt;}
.ls5e_c00206{letter-spacing:-0.519680pt;}
.ls81_c00206{letter-spacing:-0.482560pt;}
.ls9c_c00206{letter-spacing:-0.470773pt;}
.ls7c_c00206{letter-spacing:-0.445440pt;}
.ls87_c00206{letter-spacing:-0.433067pt;}
.ls63_c00206{letter-spacing:-0.414507pt;}
.ls89_c00206{letter-spacing:-0.358827pt;}
.ls66_c00206{letter-spacing:-0.340267pt;}
.ls6e_c00206{letter-spacing:-0.321707pt;}
.ls7d_c00206{letter-spacing:-0.278400pt;}
.ls71_c00206{letter-spacing:-0.222720pt;}
.ls5f_c00206{letter-spacing:-0.216533pt;}
.ls75_c00206{letter-spacing:-0.185600pt;}
.ls73_c00206{letter-spacing:-0.167040pt;}
.ls69_c00206{letter-spacing:-0.160853pt;}
.ls68_c00206{letter-spacing:-0.154667pt;}
.ls7b_c00206{letter-spacing:-0.142293pt;}
.ls96_c00206{letter-spacing:-0.098987pt;}
.ls8b_c00206{letter-spacing:-0.097924pt;}
.ls64_c00206{letter-spacing:-0.092800pt;}
.ls6b_c00206{letter-spacing:-0.080427pt;}
.ls65_c00206{letter-spacing:-0.068053pt;}
.ls79_c00206{letter-spacing:-0.037120pt;}
.ls5d_c00206{letter-spacing:-0.024747pt;}
.ls60_c00206{letter-spacing:0.000000pt;}
.ls3a_c00206{letter-spacing:0.006187pt;}
.ls3d_c00206{letter-spacing:0.037120pt;}
.ls1a_c00206{letter-spacing:0.043307pt;}
.ls56_c00206{letter-spacing:0.048640pt;}
.ls39_c00206{letter-spacing:0.055680pt;}
.ls34_c00206{letter-spacing:0.074240pt;}
.ls9_c00206{letter-spacing:0.092800pt;}
.ls21_c00206{letter-spacing:0.123733pt;}
.ls3_c00206{letter-spacing:0.142293pt;}
.ls4c_c00206{letter-spacing:0.148480pt;}
.ls3c_c00206{letter-spacing:0.154667pt;}
.ls20_c00206{letter-spacing:0.179413pt;}
.lsc_c00206{letter-spacing:0.191787pt;}
.ls13_c00206{letter-spacing:0.197973pt;}
.ls18_c00206{letter-spacing:0.210347pt;}
.ls35_c00206{letter-spacing:0.222720pt;}
.ls14_c00206{letter-spacing:0.228907pt;}
.ls36_c00206{letter-spacing:0.241280pt;}
.ls51_c00206{letter-spacing:0.253653pt;}
.ls4e_c00206{letter-spacing:0.259840pt;}
.lsd_c00206{letter-spacing:0.272213pt;}
.ls2f_c00206{letter-spacing:0.278400pt;}
.ls33_c00206{letter-spacing:0.315520pt;}
.ls7_c00206{letter-spacing:0.346453pt;}
.ls55_c00206{letter-spacing:0.358720pt;}
.lsf_c00206{letter-spacing:0.365013pt;}
.ls70_c00206{letter-spacing:0.371200pt;}
.lsb_c00206{letter-spacing:0.377387pt;}
.ls6_c00206{letter-spacing:0.383573pt;}
.ls37_c00206{letter-spacing:0.395947pt;}
.ls0_c00206{letter-spacing:0.402133pt;}
.ls4b_c00206{letter-spacing:0.414507pt;}
.ls3b_c00206{letter-spacing:0.426880pt;}
.ls40_c00206{letter-spacing:0.439253pt;}
.ls31_c00206{letter-spacing:0.445440pt;}
.ls2d_c00206{letter-spacing:0.451627pt;}
.ls29_c00206{letter-spacing:0.464000pt;}
.ls24_c00206{letter-spacing:0.482560pt;}
.ls2b_c00206{letter-spacing:0.488747pt;}
.ls30_c00206{letter-spacing:0.501120pt;}
.lse_c00206{letter-spacing:0.507307pt;}
.ls22_c00206{letter-spacing:0.532053pt;}
.ls43_c00206{letter-spacing:0.544427pt;}
.ls48_c00206{letter-spacing:0.550613pt;}
.ls15_c00206{letter-spacing:0.556800pt;}
.ls11_c00206{letter-spacing:0.587733pt;}
.ls62_c00206{letter-spacing:0.624853pt;}
.ls2_c00206{letter-spacing:0.637227pt;}
.ls74_c00206{letter-spacing:0.649600pt;}
.ls1b_c00206{letter-spacing:0.661973pt;}
.ls19_c00206{letter-spacing:0.668160pt;}
.ls59_c00206{letter-spacing:0.686720pt;}
.ls38_c00206{letter-spacing:0.692907pt;}
.ls42_c00206{letter-spacing:0.699093pt;}
.ls17_c00206{letter-spacing:0.705280pt;}
.ls27_c00206{letter-spacing:0.711467pt;}
.ls46_c00206{letter-spacing:0.730027pt;}
.ls32_c00206{letter-spacing:0.736213pt;}
.ls8c_c00206{letter-spacing:0.746693pt;}
.ls3f_c00206{letter-spacing:0.760960pt;}
.ls1e_c00206{letter-spacing:0.791893pt;}
.ls8e_c00206{letter-spacing:0.826667pt;}
.ls28_c00206{letter-spacing:0.829013pt;}
.ls41_c00206{letter-spacing:0.835200pt;}
.ls5b_c00206{letter-spacing:0.859947pt;}
.ls52_c00206{letter-spacing:0.887680pt;}
.ls53_c00206{letter-spacing:0.893760pt;}
.ls50_c00206{letter-spacing:0.918080pt;}
.ls16_c00206{letter-spacing:0.928000pt;}
.ls5a_c00206{letter-spacing:0.936320pt;}
.ls1_c00206{letter-spacing:0.950667pt;}
.ls4a_c00206{letter-spacing:0.978880pt;}
.ls2e_c00206{letter-spacing:0.983680pt;}
.ls45_c00206{letter-spacing:1.003200pt;}
.ls8_c00206{letter-spacing:1.015360pt;}
.ls94_c00206{letter-spacing:1.033173pt;}
.lsa_c00206{letter-spacing:1.051840pt;}
.ls10_c00206{letter-spacing:1.057920pt;}
.ls2c_c00206{letter-spacing:1.064107pt;}
.ls44_c00206{letter-spacing:1.076160pt;}
.ls54_c00206{letter-spacing:1.082240pt;}
.ls92_c00206{letter-spacing:1.122773pt;}
.ls90_c00206{letter-spacing:1.173360pt;}
.ls49_c00206{letter-spacing:1.185600pt;}
.ls4f_c00206{letter-spacing:1.209920pt;}
.ls1c_c00206{letter-spacing:1.224960pt;}
.ls23_c00206{letter-spacing:1.249707pt;}
.ls58_c00206{letter-spacing:1.270720pt;}
.ls3e_c00206{letter-spacing:1.286827pt;}
.ls4_c00206{letter-spacing:1.305387pt;}
.ls5_c00206{letter-spacing:1.337600pt;}
.ls12_c00206{letter-spacing:1.459200pt;}
.ls2a_c00206{letter-spacing:1.460053pt;}
.ls25_c00206{letter-spacing:1.478613pt;}
.ls57_c00206{letter-spacing:1.599040pt;}
.ls6c_c00206{letter-spacing:1.763200pt;}
.ls47_c00206{letter-spacing:1.917867pt;}
.ls1d_c00206{letter-spacing:1.924053pt;}
.ls4d_c00206{letter-spacing:2.010667pt;}
.ls95_c00206{letter-spacing:2.106693pt;}
.ls26_c00206{letter-spacing:2.171520pt;}
.ls1f_c00206{letter-spacing:2.598400pt;}
.ws0_c00206{word-spacing:0.000000pt;}
._c_c00206{margin-left:-4.949333pt;}
._15_c00206{margin-left:-3.340800pt;}
._2_c00206{margin-left:-2.084907pt;}
._16_c00206{margin-left:-0.928000pt;}
._1_c00206{width:1.472427pt;}
._d_c00206{width:2.456107pt;}
._4_c00206{width:3.394933pt;}
._3_c00206{width:4.569387pt;}
._0_c00206{width:5.817013pt;}
._17_c00206{width:6.764587pt;}
._a_c00206{width:8.085973pt;}
._6_c00206{width:9.557333pt;}
._b_c00206{width:10.549920pt;}
._5_c00206{width:11.797973pt;}
._12_c00206{width:12.793173pt;}
._8_c00206{width:13.734400pt;}
._9_c00206{width:15.181867pt;}
._7_c00206{width:17.134507pt;}
._14_c00206{width:18.560853pt;}
._13_c00206{width:19.608960pt;}
._18_c00206{width:20.566842pt;}
._19_c00206{width:28.802133pt;}
._10_c00206{width:32.609920pt;}
._e_c00206{width:36.352853pt;}
._11_c00206{width:37.398400pt;}
._f_c00206{width:38.394453pt;}
._1b_c00206{width:42.559600pt;}
._1a_c00206{width:79.102882pt;}
.fs6_c00206{font-size:14.400533pt;}
.fs7_c00206{font-size:14.933867pt;}
.fs8_c00206{font-size:16.533333pt;}
.fs5_c00206{font-size:17.920000pt;}
.fs9_c00206{font-size:19.200000pt;}
.fsa_c00206{font-size:20.267200pt;}
.fsc_c00206{font-size:23.467200pt;}
.fsd_c00206{font-size:25.600533pt;}
.fsf_c00206{font-size:36.267200pt;}
.fsb_c00206{font-size:40.533333pt;}
.fse_c00206{font-size:42.133867pt;}
.fs10_c00206{font-size:51.733333pt;}
.fs0_c00206{font-size:59.200000pt;}
.fs3_c00206{font-size:60.800000pt;}
.fs2_c00206{font-size:61.333333pt;}
.fs1_c00206{font-size:61.866667pt;}
.fs4_c00206{font-size:71.466667pt;}
.y0_c00206{bottom:0.000000pt;}
.y1f_c00206{bottom:64.320000pt;}
.y1e_c00206{bottom:134.720000pt;}
.y1d_c00206{bottom:162.240000pt;}
.y1c_c00206{bottom:190.080000pt;}
.y1b_c00206{bottom:217.600000pt;}
.y1a_c00206{bottom:244.813333pt;}
.y19_c00206{bottom:252.813333pt;}
.y18_c00206{bottom:272.640000pt;}
.y17_c00206{bottom:299.533333pt;}
.y16_c00206{bottom:327.693333pt;}
.y15_c00206{bottom:377.293333pt;}
.y14_c00206{bottom:377.306667pt;}
.y13_c00206{bottom:420.180267pt;}
.y12_c00206{bottom:447.680000pt;}
.y11_c00206{bottom:502.726400pt;}
.y10_c00206{bottom:557.462933pt;}
.yf_c00206{bottom:584.978133pt;}
.ye_c00206{bottom:612.499200pt;}
.yd_c00206{bottom:640.014400pt;}
.yc_c00206{bottom:667.220267pt;}
.yb_c00206{bottom:694.720000pt;}
.ya_c00206{bottom:694.722667pt;}
.y9_c00206{bottom:722.253333pt;}
.y8_c00206{bottom:750.086400pt;}
.y7_c00206{bottom:777.276800pt;}
.y6_c00206{bottom:832.013333pt;}
.y5_c00206{bottom:859.200000pt;}
.y4_c00206{bottom:886.400000pt;}
.y3_c00206{bottom:941.116800pt;}
.y2_c00206{bottom:995.853333pt;}
.y1_c00206{bottom:1064.013333pt;}
.h7_c00206{height:11.934720pt;}
.h8_c00206{height:14.513038pt;}
.h9_c00206{height:15.050537pt;}
.ha_c00206{height:16.662500pt;}
.hb_c00206{height:21.138056pt;}
.he_c00206{height:24.475556pt;}
.hf_c00206{height:25.125523pt;}
.h10_c00206{height:37.825556pt;}
.hd_c00206{height:39.781250pt;}
.hc_c00206{height:40.850000pt;}
.h11_c00206{height:41.352086pt;}
.h13_c00206{height:50.773437pt;}
.h12_c00206{height:59.642187pt;}
.h2_c00206{height:59.662500pt;}
.h4_c00206{height:60.718750pt;}
.h3_c00206{height:61.812500pt;}
.h6_c00206{height:63.968750pt;}
.h5_c00206{height:74.565233pt;}
.h1_c00206{height:1122.666667pt;}
.h0_c00206{height:1122.880000pt;}
.w1_c00206{width:793.333333pt;}
.w0_c00206{width:793.600000pt;}
.x0_c00206{left:0.000000pt;}
.x5_c00206{left:107.044800pt;}
.x1_c00206{left:110.333333pt;}
.xa_c00206{left:151.930667pt;}
.xd_c00206{left:152.866667pt;}
.x8_c00206{left:153.809067pt;}
.x3_c00206{left:155.746667pt;}
.x2_c00206{left:157.280000pt;}
.x4_c00206{left:159.200000pt;}
.x10_c00206{left:183.640000pt;}
.x6_c00206{left:195.680000pt;}
.x11_c00206{left:200.306667pt;}
.x7_c00206{left:210.853333pt;}
.x12_c00206{left:216.600000pt;}
.x9_c00206{left:243.680000pt;}
.x13_c00206{left:258.080000pt;}
.x14_c00206{left:290.506667pt;}
.x23_c00206{left:297.893333pt;}
.x15_c00206{left:315.466667pt;}
.x24_c00206{left:325.640000pt;}
.xb_c00206{left:333.266667pt;}
.x16_c00206{left:337.586667pt;}
.xc_c00206{left:351.333333pt;}
.x26_c00206{left:376.186667pt;}
.x17_c00206{left:378.426667pt;}
.x18_c00206{left:394.893333pt;}
.x21_c00206{left:408.986667pt;}
.x19_c00206{left:413.146667pt;}
.x1a_c00206{left:418.880000pt;}
.x1b_c00206{left:425.946667pt;}
.x1c_c00206{left:440.013333pt;}
.x1d_c00206{left:447.466667pt;}
.x1e_c00206{left:456.746667pt;}
.x1f_c00206{left:471.360000pt;}
.x20_c00206{left:481.946667pt;}
.x22_c00206{left:497.160000pt;}
.xf_c00206{left:523.453333pt;}
.xe_c00206{left:568.146667pt;}
.x25_c00206{left:619.666667pt;}
}





/* 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_c00207 {
    display:none;
  }
  .loading-indicator_c00207.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00207 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_c00207 { 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_c00207" -> "#page-container .classname_c00207")
 */
.pf_c00207 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00207 { /* 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_c00207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00207 { /* 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_c00207 { /* 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_c00207 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00207 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00207 {overflow:visible;}
  }
}
.c_c00207 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00207 { /* 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_c00207:after { /* webkit #35443 */
  content: '';
}
.t_c00207:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00207 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 */
}
.__c00207 { /* 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_c00207 { /* info for Javascript */
  display:none;
}
.l_c00207 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00207 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00207 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00207: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_c00207 {
    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_c00207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00207.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_c00207 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00207;src:url('chunks/assets/font_c62472811992bac577d7f93f.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.284668;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_c00207;src:url('chunks/assets/font_0f12a5adabb26039f86ecbc5.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.284180;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_c00207;src:url('chunks/assets/font_0267dc6c882ed028e9ded23c.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;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:ff4_c00207;src:url('chunks/assets/font_68895c4f87a1db881be03af8.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;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;}
.m6_c00207{transform:matrix(0.129719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129719,0.000000,0.000000,0.250000,0,0);}
.m9_c00207{transform:matrix(0.177452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177452,0.000000,0.000000,0.250000,0,0);}
.m8_c00207{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.mf_c00207{transform:matrix(0.190331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190331,0.000000,0.000000,0.250000,0,0);}
.m0_c00207{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.me_c00207{transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);}
.m1_c00207{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);}
.m5_c00207{transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);}
.mc_c00207{transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);}
.m10_c00207{transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);}
.m4_c00207{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.md_c00207{transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);}
.ma_c00207{transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);}
.m2_c00207{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.m11_c00207{transform:matrix(0.254690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254690,0.000000,0.000000,0.250000,0,0);}
.m3_c00207{transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);}
.m12_c00207{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.mb_c00207{transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);}
.m7_c00207{transform:matrix(0.287279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287279,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls9e_c00207{letter-spacing:-2.667000px;}
.ls9a_c00207{letter-spacing:-2.415000px;}
.ls96_c00207{letter-spacing:-2.394000px;}
.ls87_c00207{letter-spacing:-2.331000px;}
.ls94_c00207{letter-spacing:-1.680000px;}
.lsac_c00207{letter-spacing:-1.543680px;}
.ls9c_c00207{letter-spacing:-1.438080px;}
.ls93_c00207{letter-spacing:-1.115520px;}
.lsa3_c00207{letter-spacing:-1.061760px;}
.ls9b_c00207{letter-spacing:-0.875700px;}
.ls8e_c00207{letter-spacing:-0.846720px;}
.lsa4_c00207{letter-spacing:-0.752640px;}
.ls9d_c00207{letter-spacing:-0.470400px;}
.lsa2_c00207{letter-spacing:-0.456960px;}
.lsa8_c00207{letter-spacing:-0.365700px;}
.lsa0_c00207{letter-spacing:-0.362880px;}
.lsa1_c00207{letter-spacing:-0.094080px;}
.ls98_c00207{letter-spacing:-0.026880px;}
.ls8a_c00207{letter-spacing:0.000000px;}
.ls79_c00207{letter-spacing:0.006900px;}
.ls5e_c00207{letter-spacing:0.020160px;}
.ls82_c00207{letter-spacing:0.026880px;}
.ls7a_c00207{letter-spacing:0.034500px;}
.ls41_c00207{letter-spacing:0.134400px;}
.ls29_c00207{letter-spacing:0.161280px;}
.ls51_c00207{letter-spacing:0.207000px;}
.lsa9_c00207{letter-spacing:0.228480px;}
.ls69_c00207{letter-spacing:0.241920px;}
.ls9f_c00207{letter-spacing:0.322560px;}
.ls37_c00207{letter-spacing:0.349440px;}
.ls6d_c00207{letter-spacing:0.427800px;}
.ls6c_c00207{letter-spacing:0.456960px;}
.ls5d_c00207{letter-spacing:0.477120px;}
.ls2a_c00207{letter-spacing:0.497280px;}
.ls34_c00207{letter-spacing:0.504000px;}
.ls8d_c00207{letter-spacing:0.517440px;}
.ls45_c00207{letter-spacing:0.545100px;}
.ls0_c00207{letter-spacing:0.586500px;}
.ls15_c00207{letter-spacing:0.598080px;}
.ls7b_c00207{letter-spacing:0.604800px;}
.ls2_c00207{letter-spacing:0.631680px;}
.ls6b_c00207{letter-spacing:0.645120px;}
.ls27_c00207{letter-spacing:0.685440px;}
.ls73_c00207{letter-spacing:0.719040px;}
.ls8c_c00207{letter-spacing:0.752640px;}
.ls97_c00207{letter-spacing:0.772800px;}
.lsaa_c00207{letter-spacing:0.786240px;}
.ls6f_c00207{letter-spacing:0.806400px;}
.ls7f_c00207{letter-spacing:0.813120px;}
.ls46_c00207{letter-spacing:0.833280px;}
.ls55_c00207{letter-spacing:0.853440px;}
.ls33_c00207{letter-spacing:0.860160px;}
.ls9_c00207{letter-spacing:0.873600px;}
.ls7c_c00207{letter-spacing:0.913920px;}
.ls85_c00207{letter-spacing:0.927360px;}
.ls61_c00207{letter-spacing:0.934080px;}
.ls1d_c00207{letter-spacing:0.940800px;}
.ls7d_c00207{letter-spacing:0.947520px;}
.ls16_c00207{letter-spacing:0.994560px;}
.ls6_c00207{letter-spacing:1.001280px;}
.ls3e_c00207{letter-spacing:1.014720px;}
.lsab_c00207{letter-spacing:1.021440px;}
.ls68_c00207{letter-spacing:1.028160px;}
.ls66_c00207{letter-spacing:1.048320px;}
.lsa6_c00207{letter-spacing:1.055040px;}
.ls8f_c00207{letter-spacing:1.068480px;}
.ls57_c00207{letter-spacing:1.095360px;}
.ls49_c00207{letter-spacing:1.122240px;}
.ls2e_c00207{letter-spacing:1.128960px;}
.ls84_c00207{letter-spacing:1.135680px;}
.ls21_c00207{letter-spacing:1.142400px;}
.ls8_c00207{letter-spacing:1.149120px;}
.ls63_c00207{letter-spacing:1.155840px;}
.ls32_c00207{letter-spacing:1.162560px;}
.ls4_c00207{letter-spacing:1.169280px;}
.ls25_c00207{letter-spacing:1.176000px;}
.ls53_c00207{letter-spacing:1.182720px;}
.ls18_c00207{letter-spacing:1.189440px;}
.ls24_c00207{letter-spacing:1.196160px;}
.ls10_c00207{letter-spacing:1.202880px;}
.ls99_c00207{letter-spacing:1.209600px;}
.ls70_c00207{letter-spacing:1.216320px;}
.ls22_c00207{letter-spacing:1.223040px;}
.ls42_c00207{letter-spacing:1.229760px;}
.ls5a_c00207{letter-spacing:1.236480px;}
.ls71_c00207{letter-spacing:1.243200px;}
.ls1_c00207{letter-spacing:1.249920px;}
.ls95_c00207{letter-spacing:1.256640px;}
.ls2b_c00207{letter-spacing:1.263360px;}
.ls76_c00207{letter-spacing:1.270080px;}
.ls5b_c00207{letter-spacing:1.276800px;}
.ls13_c00207{letter-spacing:1.283520px;}
.lsa7_c00207{letter-spacing:1.290240px;}
.ls4c_c00207{letter-spacing:1.296960px;}
.ls86_c00207{letter-spacing:1.310400px;}
.ls4d_c00207{letter-spacing:1.317120px;}
.ls2f_c00207{letter-spacing:1.337280px;}
.ls50_c00207{letter-spacing:1.344000px;}
.lsa_c00207{letter-spacing:1.350720px;}
.ls17_c00207{letter-spacing:1.357440px;}
.ls91_c00207{letter-spacing:1.364160px;}
.ls23_c00207{letter-spacing:1.370880px;}
.ls31_c00207{letter-spacing:1.391040px;}
.ls4f_c00207{letter-spacing:1.397760px;}
.lsc_c00207{letter-spacing:1.404480px;}
.ls3f_c00207{letter-spacing:1.411200px;}
.ls77_c00207{letter-spacing:1.417920px;}
.lsf_c00207{letter-spacing:1.424640px;}
.ls11_c00207{letter-spacing:1.438080px;}
.ls1f_c00207{letter-spacing:1.458240px;}
.ls56_c00207{letter-spacing:1.471680px;}
.ls64_c00207{letter-spacing:1.478400px;}
.ls3b_c00207{letter-spacing:1.485120px;}
.ls80_c00207{letter-spacing:1.491840px;}
.ls47_c00207{letter-spacing:1.498560px;}
.ls30_c00207{letter-spacing:1.505280px;}
.ls67_c00207{letter-spacing:1.532160px;}
.lsd_c00207{letter-spacing:1.538880px;}
.ls36_c00207{letter-spacing:1.545600px;}
.ls14_c00207{letter-spacing:1.559040px;}
.ls26_c00207{letter-spacing:1.565760px;}
.ls19_c00207{letter-spacing:1.572480px;}
.lsa5_c00207{letter-spacing:1.592640px;}
.ls62_c00207{letter-spacing:1.599360px;}
.ls52_c00207{letter-spacing:1.606080px;}
.ls3a_c00207{letter-spacing:1.612800px;}
.ls75_c00207{letter-spacing:1.619520px;}
.ls38_c00207{letter-spacing:1.632960px;}
.ls83_c00207{letter-spacing:1.646400px;}
.ls72_c00207{letter-spacing:1.659840px;}
.ls12_c00207{letter-spacing:1.673280px;}
.ls4e_c00207{letter-spacing:1.680000px;}
.ls6a_c00207{letter-spacing:1.686720px;}
.ls7_c00207{letter-spacing:1.727040px;}
.ls58_c00207{letter-spacing:1.760640px;}
.ls90_c00207{letter-spacing:1.767360px;}
.ls44_c00207{letter-spacing:1.780800px;}
.ls65_c00207{letter-spacing:1.807680px;}
.ls4b_c00207{letter-spacing:1.827840px;}
.ls35_c00207{letter-spacing:1.834560px;}
.ls6e_c00207{letter-spacing:1.841280px;}
.ls48_c00207{letter-spacing:1.848000px;}
.ls78_c00207{letter-spacing:1.861440px;}
.ls5c_c00207{letter-spacing:1.881600px;}
.lse_c00207{letter-spacing:1.901760px;}
.ls59_c00207{letter-spacing:1.915200px;}
.ls88_c00207{letter-spacing:1.935360px;}
.ls1c_c00207{letter-spacing:1.948800px;}
.ls5f_c00207{letter-spacing:2.016000px;}
.ls3_c00207{letter-spacing:2.036160px;}
.ls1a_c00207{letter-spacing:2.123520px;}
.ls5_c00207{letter-spacing:2.143680px;}
.ls39_c00207{letter-spacing:2.157120px;}
.ls54_c00207{letter-spacing:2.163840px;}
.ls43_c00207{letter-spacing:2.177280px;}
.lsb_c00207{letter-spacing:2.244480px;}
.ls20_c00207{letter-spacing:2.278080px;}
.ls3d_c00207{letter-spacing:2.365440px;}
.ls3c_c00207{letter-spacing:2.479680px;}
.ls28_c00207{letter-spacing:2.560320px;}
.ls1e_c00207{letter-spacing:2.587200px;}
.ls7e_c00207{letter-spacing:2.607360px;}
.ls40_c00207{letter-spacing:2.654400px;}
.ls74_c00207{letter-spacing:2.688000px;}
.ls2c_c00207{letter-spacing:2.755200px;}
.ls4a_c00207{letter-spacing:2.768640px;}
.ls2d_c00207{letter-spacing:2.795520px;}
.ls92_c00207{letter-spacing:3.030720px;}
.ls81_c00207{letter-spacing:3.091200px;}
.ls60_c00207{letter-spacing:3.124800px;}
.ls8b_c00207{letter-spacing:3.178560px;}
.ls1b_c00207{letter-spacing:3.346560px;}
.ls89_c00207{letter-spacing:3.360000px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{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__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00207{word-spacing:0.000000px;}
.ws2_c00207{word-spacing:5.109000px;}
.ws0_c00207{word-spacing:9.360000px;}
.ws1_c00207{word-spacing:12.297600px;}
.ws3_c00207{word-spacing:14.982000px;}
.ws4_c00207{word-spacing:37.891500px;}
._17_c00207{margin-left:-26.392800px;}
._16_c00207{margin-left:-24.031680px;}
._1a_c00207{margin-left:-6.874560px;}
._12_c00207{margin-left:-5.201280px;}
._15_c00207{margin-left:-4.005120px;}
._11_c00207{margin-left:-2.842560px;}
._14_c00207{margin-left:-1.149120px;}
._f_c00207{width:1.552320px;}
._13_c00207{width:3.118080px;}
._10_c00207{width:4.152960px;}
._e_c00207{width:5.261760px;}
._2_c00207{width:7.264320px;}
._0_c00207{width:9.313920px;}
._1_c00207{width:10.523520px;}
._a_c00207{width:11.571840px;}
._c_c00207{width:12.694080px;}
._b_c00207{width:14.016000px;}
._8_c00207{width:15.361920px;}
._7_c00207{width:16.665600px;}
._4_c00207{width:20.254080px;}
._3_c00207{width:21.504000px;}
._5_c00207{width:22.565760px;}
._6_c00207{width:25.139520px;}
._9_c00207{width:28.734720px;}
._19_c00207{width:35.179200px;}
._d_c00207{width:37.793280px;}
._18_c00207{width:40.392600px;}
.fc0_c00207{color:transparent;}
.fs3_c00207{font-size:48.000000px;}
.fs7_c00207{font-size:57.600000px;}
.fs5_c00207{font-size:63.000000px;}
.fs0_c00207{font-size:66.600000px;}
.fs2_c00207{font-size:67.200000px;}
.fs4_c00207{font-size:68.400000px;}
.fs1_c00207{font-size:69.000000px;}
.fs6_c00207{font-size:76.200000px;}
.y0_c00207{bottom:0.000000px;}
.y23_c00207{bottom:69.855015px;}
.y22_c00207{bottom:222.125415px;}
.y21_c00207{bottom:252.735015px;}
.y20_c00207{bottom:283.335015px;}
.y1f_c00207{bottom:283.342215px;}
.y1e_c00207{bottom:313.935015px;}
.y1d_c00207{bottom:375.487815px;}
.y1c_c00207{bottom:405.375015px;}
.y1b_c00207{bottom:436.680015px;}
.y1a_c00207{bottom:498.975015px;}
.y19_c00207{bottom:529.222215px;}
.y17_c00207{bottom:559.814415px;}
.y18_c00207{bottom:559.815015px;}
.y16_c00207{bottom:590.760015px;}
.y14_c00207{bottom:621.372615px;}
.y15_c00207{bottom:621.375015px;}
.y13_c00207{bottom:652.335015px;}
.y12_c00207{bottom:683.295015px;}
.y11_c00207{bottom:745.582215px;}
.y10_c00207{bottom:776.175015px;}
.yf_c00207{bottom:807.135015px;}
.ye_c00207{bottom:870.480015px;}
.yd_c00207{bottom:884.520015px;}
.yb_c00207{bottom:900.717615px;}
.yc_c00207{bottom:900.720015px;}
.y9_c00207{bottom:931.678215px;}
.ya_c00207{bottom:931.680015px;}
.y8_c00207{bottom:961.935015px;}
.y7_c00207{bottom:992.883015px;}
.y6_c00207{bottom:1023.475815px;}
.y4_c00207{bottom:1054.452015px;}
.y5_c00207{bottom:1054.455015px;}
.y3_c00207{bottom:1085.414415px;}
.y2_c00207{bottom:1116.360015px;}
.y1_c00207{bottom:1192.335015px;}
.h5_c00207{height:50.062500px;}
.h9_c00207{height:56.531250px;}
.h2_c00207{height:65.364258px;}
.h7_c00207{height:65.707031px;}
.h4_c00207{height:65.953125px;}
.h6_c00207{height:67.130859px;}
.h3_c00207{height:67.686035px;}
.h8_c00207{height:74.786133px;}
.h1_c00207{height:1263.000000px;}
.h0_c00207{height:1263.240015px;}
.w1_c00207{width:892.500000px;}
.w0_c00207{width:892.800015px;}
.x0_c00207{left:0.000000px;}
.x30_c00207{left:124.836615px;}
.x1a_c00207{left:126.018015px;}
.x1_c00207{left:127.365015px;}
.x13_c00207{left:151.395015px;}
.x24_c00207{left:178.365015px;}
.x14_c00207{left:179.430015px;}
.x2_c00207{left:180.525015px;}
.x26_c00207{left:188.610015px;}
.x27_c00207{left:223.635015px;}
.xb_c00207{left:255.240015px;}
.x20_c00207{left:270.720015px;}
.xe_c00207{left:272.970015px;}
.xc_c00207{left:288.195015px;}
.xf_c00207{left:292.350015px;}
.x21_c00207{left:293.355015px;}
.xd_c00207{left:294.405015px;}
.x2b_c00207{left:323.910015px;}
.x2c_c00207{left:347.325015px;}
.x1b_c00207{left:364.320015px;}
.x1c_c00207{left:388.770015px;}
.x5_c00207{left:400.290015px;}
.x18_c00207{left:402.660015px;}
.x3_c00207{left:412.740015px;}
.x6_c00207{left:427.140015px;}
.x19_c00207{left:428.250015px;}
.x2a_c00207{left:434.715015px;}
.x4_c00207{left:436.140015px;}
.x15_c00207{left:518.370015px;}
.x28_c00207{left:532.125015px;}
.x10_c00207{left:538.845015px;}
.x7_c00207{left:540.180015px;}
.x1d_c00207{left:550.650015px;}
.x8_c00207{left:562.665015px;}
.x29_c00207{left:566.835015px;}
.x11_c00207{left:573.675015px;}
.x16_c00207{left:577.920015px;}
.x2e_c00207{left:661.590015px;}
.x1e_c00207{left:683.160015px;}
.x2f_c00207{left:684.915015px;}
.x9_c00207{left:689.310015px;}
.x22_c00207{left:698.265015px;}
.x1f_c00207{left:709.230015px;}
.xa_c00207{left:713.355015px;}
.x23_c00207{left:717.690015px;}
.x25_c00207{left:724.650015px;}
.x12_c00207{left:727.500015px;}
.x2d_c00207{left:732.150015px;}
.x17_c00207{left:735.840015px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls9e_c00207{letter-spacing:-2.370667pt;}
.ls9a_c00207{letter-spacing:-2.146667pt;}
.ls96_c00207{letter-spacing:-2.128000pt;}
.ls87_c00207{letter-spacing:-2.072000pt;}
.ls94_c00207{letter-spacing:-1.493333pt;}
.lsac_c00207{letter-spacing:-1.372160pt;}
.ls9c_c00207{letter-spacing:-1.278293pt;}
.ls93_c00207{letter-spacing:-0.991573pt;}
.lsa3_c00207{letter-spacing:-0.943787pt;}
.ls9b_c00207{letter-spacing:-0.778400pt;}
.ls8e_c00207{letter-spacing:-0.752640pt;}
.lsa4_c00207{letter-spacing:-0.669013pt;}
.ls9d_c00207{letter-spacing:-0.418133pt;}
.lsa2_c00207{letter-spacing:-0.406187pt;}
.lsa8_c00207{letter-spacing:-0.325067pt;}
.lsa0_c00207{letter-spacing:-0.322560pt;}
.lsa1_c00207{letter-spacing:-0.083627pt;}
.ls98_c00207{letter-spacing:-0.023893pt;}
.ls8a_c00207{letter-spacing:0.000000pt;}
.ls79_c00207{letter-spacing:0.006133pt;}
.ls5e_c00207{letter-spacing:0.017920pt;}
.ls82_c00207{letter-spacing:0.023893pt;}
.ls7a_c00207{letter-spacing:0.030667pt;}
.ls41_c00207{letter-spacing:0.119467pt;}
.ls29_c00207{letter-spacing:0.143360pt;}
.ls51_c00207{letter-spacing:0.184000pt;}
.lsa9_c00207{letter-spacing:0.203093pt;}
.ls69_c00207{letter-spacing:0.215040pt;}
.ls9f_c00207{letter-spacing:0.286720pt;}
.ls37_c00207{letter-spacing:0.310613pt;}
.ls6d_c00207{letter-spacing:0.380267pt;}
.ls6c_c00207{letter-spacing:0.406187pt;}
.ls5d_c00207{letter-spacing:0.424107pt;}
.ls2a_c00207{letter-spacing:0.442027pt;}
.ls34_c00207{letter-spacing:0.448000pt;}
.ls8d_c00207{letter-spacing:0.459947pt;}
.ls45_c00207{letter-spacing:0.484533pt;}
.ls0_c00207{letter-spacing:0.521333pt;}
.ls15_c00207{letter-spacing:0.531627pt;}
.ls7b_c00207{letter-spacing:0.537600pt;}
.ls2_c00207{letter-spacing:0.561493pt;}
.ls6b_c00207{letter-spacing:0.573440pt;}
.ls27_c00207{letter-spacing:0.609280pt;}
.ls73_c00207{letter-spacing:0.639147pt;}
.ls8c_c00207{letter-spacing:0.669013pt;}
.ls97_c00207{letter-spacing:0.686933pt;}
.lsaa_c00207{letter-spacing:0.698880pt;}
.ls6f_c00207{letter-spacing:0.716800pt;}
.ls7f_c00207{letter-spacing:0.722773pt;}
.ls46_c00207{letter-spacing:0.740693pt;}
.ls55_c00207{letter-spacing:0.758613pt;}
.ls33_c00207{letter-spacing:0.764587pt;}
.ls9_c00207{letter-spacing:0.776533pt;}
.ls7c_c00207{letter-spacing:0.812373pt;}
.ls85_c00207{letter-spacing:0.824320pt;}
.ls61_c00207{letter-spacing:0.830293pt;}
.ls1d_c00207{letter-spacing:0.836267pt;}
.ls7d_c00207{letter-spacing:0.842240pt;}
.ls16_c00207{letter-spacing:0.884053pt;}
.ls6_c00207{letter-spacing:0.890027pt;}
.ls3e_c00207{letter-spacing:0.901973pt;}
.lsab_c00207{letter-spacing:0.907947pt;}
.ls68_c00207{letter-spacing:0.913920pt;}
.ls66_c00207{letter-spacing:0.931840pt;}
.lsa6_c00207{letter-spacing:0.937813pt;}
.ls8f_c00207{letter-spacing:0.949760pt;}
.ls57_c00207{letter-spacing:0.973653pt;}
.ls49_c00207{letter-spacing:0.997547pt;}
.ls2e_c00207{letter-spacing:1.003520pt;}
.ls84_c00207{letter-spacing:1.009493pt;}
.ls21_c00207{letter-spacing:1.015467pt;}
.ls8_c00207{letter-spacing:1.021440pt;}
.ls63_c00207{letter-spacing:1.027413pt;}
.ls32_c00207{letter-spacing:1.033387pt;}
.ls4_c00207{letter-spacing:1.039360pt;}
.ls25_c00207{letter-spacing:1.045333pt;}
.ls53_c00207{letter-spacing:1.051307pt;}
.ls18_c00207{letter-spacing:1.057280pt;}
.ls24_c00207{letter-spacing:1.063253pt;}
.ls10_c00207{letter-spacing:1.069227pt;}
.ls99_c00207{letter-spacing:1.075200pt;}
.ls70_c00207{letter-spacing:1.081173pt;}
.ls22_c00207{letter-spacing:1.087147pt;}
.ls42_c00207{letter-spacing:1.093120pt;}
.ls5a_c00207{letter-spacing:1.099093pt;}
.ls71_c00207{letter-spacing:1.105067pt;}
.ls1_c00207{letter-spacing:1.111040pt;}
.ls95_c00207{letter-spacing:1.117013pt;}
.ls2b_c00207{letter-spacing:1.122987pt;}
.ls76_c00207{letter-spacing:1.128960pt;}
.ls5b_c00207{letter-spacing:1.134933pt;}
.ls13_c00207{letter-spacing:1.140907pt;}
.lsa7_c00207{letter-spacing:1.146880pt;}
.ls4c_c00207{letter-spacing:1.152853pt;}
.ls86_c00207{letter-spacing:1.164800pt;}
.ls4d_c00207{letter-spacing:1.170773pt;}
.ls2f_c00207{letter-spacing:1.188693pt;}
.ls50_c00207{letter-spacing:1.194667pt;}
.lsa_c00207{letter-spacing:1.200640pt;}
.ls17_c00207{letter-spacing:1.206613pt;}
.ls91_c00207{letter-spacing:1.212587pt;}
.ls23_c00207{letter-spacing:1.218560pt;}
.ls31_c00207{letter-spacing:1.236480pt;}
.ls4f_c00207{letter-spacing:1.242453pt;}
.lsc_c00207{letter-spacing:1.248427pt;}
.ls3f_c00207{letter-spacing:1.254400pt;}
.ls77_c00207{letter-spacing:1.260373pt;}
.lsf_c00207{letter-spacing:1.266347pt;}
.ls11_c00207{letter-spacing:1.278293pt;}
.ls1f_c00207{letter-spacing:1.296213pt;}
.ls56_c00207{letter-spacing:1.308160pt;}
.ls64_c00207{letter-spacing:1.314133pt;}
.ls3b_c00207{letter-spacing:1.320107pt;}
.ls80_c00207{letter-spacing:1.326080pt;}
.ls47_c00207{letter-spacing:1.332053pt;}
.ls30_c00207{letter-spacing:1.338027pt;}
.ls67_c00207{letter-spacing:1.361920pt;}
.lsd_c00207{letter-spacing:1.367893pt;}
.ls36_c00207{letter-spacing:1.373867pt;}
.ls14_c00207{letter-spacing:1.385813pt;}
.ls26_c00207{letter-spacing:1.391787pt;}
.ls19_c00207{letter-spacing:1.397760pt;}
.lsa5_c00207{letter-spacing:1.415680pt;}
.ls62_c00207{letter-spacing:1.421653pt;}
.ls52_c00207{letter-spacing:1.427627pt;}
.ls3a_c00207{letter-spacing:1.433600pt;}
.ls75_c00207{letter-spacing:1.439573pt;}
.ls38_c00207{letter-spacing:1.451520pt;}
.ls83_c00207{letter-spacing:1.463467pt;}
.ls72_c00207{letter-spacing:1.475413pt;}
.ls12_c00207{letter-spacing:1.487360pt;}
.ls4e_c00207{letter-spacing:1.493333pt;}
.ls6a_c00207{letter-spacing:1.499307pt;}
.ls7_c00207{letter-spacing:1.535147pt;}
.ls58_c00207{letter-spacing:1.565013pt;}
.ls90_c00207{letter-spacing:1.570987pt;}
.ls44_c00207{letter-spacing:1.582933pt;}
.ls65_c00207{letter-spacing:1.606827pt;}
.ls4b_c00207{letter-spacing:1.624747pt;}
.ls35_c00207{letter-spacing:1.630720pt;}
.ls6e_c00207{letter-spacing:1.636693pt;}
.ls48_c00207{letter-spacing:1.642667pt;}
.ls78_c00207{letter-spacing:1.654613pt;}
.ls5c_c00207{letter-spacing:1.672533pt;}
.lse_c00207{letter-spacing:1.690453pt;}
.ls59_c00207{letter-spacing:1.702400pt;}
.ls88_c00207{letter-spacing:1.720320pt;}
.ls1c_c00207{letter-spacing:1.732267pt;}
.ls5f_c00207{letter-spacing:1.792000pt;}
.ls3_c00207{letter-spacing:1.809920pt;}
.ls1a_c00207{letter-spacing:1.887573pt;}
.ls5_c00207{letter-spacing:1.905493pt;}
.ls39_c00207{letter-spacing:1.917440pt;}
.ls54_c00207{letter-spacing:1.923413pt;}
.ls43_c00207{letter-spacing:1.935360pt;}
.lsb_c00207{letter-spacing:1.995093pt;}
.ls20_c00207{letter-spacing:2.024960pt;}
.ls3d_c00207{letter-spacing:2.102613pt;}
.ls3c_c00207{letter-spacing:2.204160pt;}
.ls28_c00207{letter-spacing:2.275840pt;}
.ls1e_c00207{letter-spacing:2.299733pt;}
.ls7e_c00207{letter-spacing:2.317653pt;}
.ls40_c00207{letter-spacing:2.359467pt;}
.ls74_c00207{letter-spacing:2.389333pt;}
.ls2c_c00207{letter-spacing:2.449067pt;}
.ls4a_c00207{letter-spacing:2.461013pt;}
.ls2d_c00207{letter-spacing:2.484907pt;}
.ls92_c00207{letter-spacing:2.693973pt;}
.ls81_c00207{letter-spacing:2.747733pt;}
.ls60_c00207{letter-spacing:2.777600pt;}
.ls8b_c00207{letter-spacing:2.825387pt;}
.ls1b_c00207{letter-spacing:2.974720pt;}
.ls89_c00207{letter-spacing:2.986667pt;}
.ws5_c00207{word-spacing:0.000000pt;}
.ws2_c00207{word-spacing:4.541333pt;}
.ws0_c00207{word-spacing:8.320000pt;}
.ws1_c00207{word-spacing:10.931200pt;}
.ws3_c00207{word-spacing:13.317333pt;}
.ws4_c00207{word-spacing:33.681333pt;}
._17_c00207{margin-left:-23.460267pt;}
._16_c00207{margin-left:-21.361493pt;}
._1a_c00207{margin-left:-6.110720pt;}
._12_c00207{margin-left:-4.623360pt;}
._15_c00207{margin-left:-3.560107pt;}
._11_c00207{margin-left:-2.526720pt;}
._14_c00207{margin-left:-1.021440pt;}
._f_c00207{width:1.379840pt;}
._13_c00207{width:2.771627pt;}
._10_c00207{width:3.691520pt;}
._e_c00207{width:4.677120pt;}
._2_c00207{width:6.457173pt;}
._0_c00207{width:8.279040pt;}
._1_c00207{width:9.354240pt;}
._a_c00207{width:10.286080pt;}
._c_c00207{width:11.283627pt;}
._b_c00207{width:12.458667pt;}
._8_c00207{width:13.655040pt;}
._7_c00207{width:14.813867pt;}
._4_c00207{width:18.003627pt;}
._3_c00207{width:19.114667pt;}
._5_c00207{width:20.058453pt;}
._6_c00207{width:22.346240pt;}
._9_c00207{width:25.541973pt;}
._19_c00207{width:31.270400pt;}
._d_c00207{width:33.594027pt;}
._18_c00207{width:35.904533pt;}
.fs3_c00207{font-size:42.666667pt;}
.fs7_c00207{font-size:51.200000pt;}
.fs5_c00207{font-size:56.000000pt;}
.fs0_c00207{font-size:59.200000pt;}
.fs2_c00207{font-size:59.733333pt;}
.fs4_c00207{font-size:60.800000pt;}
.fs1_c00207{font-size:61.333333pt;}
.fs6_c00207{font-size:67.733333pt;}
.y0_c00207{bottom:0.000000pt;}
.y23_c00207{bottom:62.093347pt;}
.y22_c00207{bottom:197.444813pt;}
.y21_c00207{bottom:224.653347pt;}
.y20_c00207{bottom:251.853347pt;}
.y1f_c00207{bottom:251.859747pt;}
.y1e_c00207{bottom:279.053347pt;}
.y1d_c00207{bottom:333.766947pt;}
.y1c_c00207{bottom:360.333347pt;}
.y1b_c00207{bottom:388.160013pt;}
.y1a_c00207{bottom:443.533347pt;}
.y19_c00207{bottom:470.419747pt;}
.y17_c00207{bottom:497.612813pt;}
.y18_c00207{bottom:497.613347pt;}
.y16_c00207{bottom:525.120013pt;}
.y14_c00207{bottom:552.331213pt;}
.y15_c00207{bottom:552.333347pt;}
.y13_c00207{bottom:579.853347pt;}
.y12_c00207{bottom:607.373347pt;}
.y11_c00207{bottom:662.739747pt;}
.y10_c00207{bottom:689.933347pt;}
.yf_c00207{bottom:717.453347pt;}
.ye_c00207{bottom:773.760013pt;}
.yd_c00207{bottom:786.240013pt;}
.yb_c00207{bottom:800.637880pt;}
.yc_c00207{bottom:800.640013pt;}
.y9_c00207{bottom:828.158413pt;}
.ya_c00207{bottom:828.160013pt;}
.y8_c00207{bottom:855.053347pt;}
.y7_c00207{bottom:882.562680pt;}
.y6_c00207{bottom:909.756280pt;}
.y4_c00207{bottom:937.290680pt;}
.y5_c00207{bottom:937.293347pt;}
.y3_c00207{bottom:964.812813pt;}
.y2_c00207{bottom:992.320013pt;}
.y1_c00207{bottom:1059.853347pt;}
.h5_c00207{height:44.500000pt;}
.h9_c00207{height:50.250000pt;}
.h2_c00207{height:58.101562pt;}
.h7_c00207{height:58.406250pt;}
.h4_c00207{height:58.625000pt;}
.h6_c00207{height:59.671875pt;}
.h3_c00207{height:60.165365pt;}
.h8_c00207{height:66.476562pt;}
.h1_c00207{height:1122.666667pt;}
.h0_c00207{height:1122.880013pt;}
.w1_c00207{width:793.333333pt;}
.w0_c00207{width:793.600013pt;}
.x0_c00207{left:0.000000pt;}
.x30_c00207{left:110.965880pt;}
.x1a_c00207{left:112.016013pt;}
.x1_c00207{left:113.213347pt;}
.x13_c00207{left:134.573347pt;}
.x24_c00207{left:158.546680pt;}
.x14_c00207{left:159.493347pt;}
.x2_c00207{left:160.466680pt;}
.x26_c00207{left:167.653347pt;}
.x27_c00207{left:198.786680pt;}
.xb_c00207{left:226.880013pt;}
.x20_c00207{left:240.640013pt;}
.xe_c00207{left:242.640013pt;}
.xc_c00207{left:256.173347pt;}
.xf_c00207{left:259.866680pt;}
.x21_c00207{left:260.760013pt;}
.xd_c00207{left:261.693347pt;}
.x2b_c00207{left:287.920013pt;}
.x2c_c00207{left:308.733347pt;}
.x1b_c00207{left:323.840013pt;}
.x1c_c00207{left:345.573347pt;}
.x5_c00207{left:355.813347pt;}
.x18_c00207{left:357.920013pt;}
.x3_c00207{left:366.880013pt;}
.x6_c00207{left:379.680013pt;}
.x19_c00207{left:380.666680pt;}
.x2a_c00207{left:386.413347pt;}
.x4_c00207{left:387.680013pt;}
.x15_c00207{left:460.773347pt;}
.x28_c00207{left:473.000013pt;}
.x10_c00207{left:478.973347pt;}
.x7_c00207{left:480.160013pt;}
.x1d_c00207{left:489.466680pt;}
.x8_c00207{left:500.146680pt;}
.x29_c00207{left:503.853347pt;}
.x11_c00207{left:509.933347pt;}
.x16_c00207{left:513.706680pt;}
.x2e_c00207{left:588.080013pt;}
.x1e_c00207{left:607.253347pt;}
.x2f_c00207{left:608.813347pt;}
.x9_c00207{left:612.720013pt;}
.x22_c00207{left:620.680013pt;}
.x1f_c00207{left:630.426680pt;}
.xa_c00207{left:634.093347pt;}
.x23_c00207{left:637.946680pt;}
.x25_c00207{left:644.133347pt;}
.x12_c00207{left:646.666680pt;}
.x2d_c00207{left:650.800013pt;}
.x17_c00207{left:654.080013pt;}
}





/* 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_c00208 {
    display:none;
  }
  .loading-indicator_c00208.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00208 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_c00208 { 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_c00208" -> "#page-container .classname_c00208")
 */
.pf_c00208 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00208 { /* 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_c00208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00208 { /* 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_c00208 { /* 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_c00208 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00208 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00208 {overflow:visible;}
  }
}
.c_c00208 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00208 { /* 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_c00208:after { /* webkit #35443 */
  content: '';
}
.t_c00208:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00208 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 */
}
.__c00208 { /* 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_c00208 { /* info for Javascript */
  display:none;
}
.l_c00208 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00208 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00208 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00208: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_c00208 {
    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_c00208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00208.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_c00208 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00208;src:url('chunks/assets/font_a84e2eeed9f6ef27ed9cc495.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.311035;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_c00208;src:url('chunks/assets/font_a9ea1db584f8e2714eb5348d.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.284668;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_c00208;src:url('chunks/assets/font_096afc7e8ae14d4c50d8cfd7.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.284180;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_c00208;src:url('chunks/assets/font_83c0b7e720e2cd4eda392fd4.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.284180;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;}
.m5_c00208{transform:matrix(0.215752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215752,0.000000,0.000000,0.250000,0,0);}
.m0_c00208{transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);}
.m2_c00208{transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);}
.m7_c00208{transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);}
.m6_c00208{transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);}
.m4_c00208{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m3_c00208{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m1_c00208{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);}
.v0_c00208{vertical-align:0.000000px;}
.ls53_c00208{letter-spacing:-2.457000px;}
.ls79_c00208{letter-spacing:-2.407860px;}
.ls50_c00208{letter-spacing:-2.331000px;}
.ls8e_c00208{letter-spacing:-2.204280px;}
.ls7d_c00208{letter-spacing:-2.035800px;}
.ls8d_c00208{letter-spacing:-1.951560px;}
.ls82_c00208{letter-spacing:-1.642680px;}
.ls60_c00208{letter-spacing:-1.635660px;}
.ls88_c00208{letter-spacing:-1.579500px;}
.ls6d_c00208{letter-spacing:-1.509300px;}
.ls87_c00208{letter-spacing:-1.291680px;}
.ls84_c00208{letter-spacing:-1.249560px;}
.ls85_c00208{letter-spacing:-1.242540px;}
.ls81_c00208{letter-spacing:-1.151280px;}
.ls7e_c00208{letter-spacing:-1.137240px;}
.ls6e_c00208{letter-spacing:-1.102140px;}
.ls7f_c00208{letter-spacing:-1.074060px;}
.ls8c_c00208{letter-spacing:-1.017900px;}
.ls65_c00208{letter-spacing:-0.954720px;}
.ls6b_c00208{letter-spacing:-0.884520px;}
.ls95_c00208{letter-spacing:-0.856440px;}
.ls69_c00208{letter-spacing:-0.849420px;}
.ls5e_c00208{letter-spacing:-0.842400px;}
.ls56_c00208{letter-spacing:-0.793260px;}
.ls77_c00208{letter-spacing:-0.772200px;}
.ls59_c00208{letter-spacing:-0.765180px;}
.ls6f_c00208{letter-spacing:-0.744120px;}
.ls83_c00208{letter-spacing:-0.730080px;}
.ls96_c00208{letter-spacing:-0.659880px;}
.ls5f_c00208{letter-spacing:-0.610740px;}
.ls72_c00208{letter-spacing:-0.575640px;}
.ls8b_c00208{letter-spacing:-0.568620px;}
.ls55_c00208{letter-spacing:-0.533520px;}
.ls9c_c00208{letter-spacing:-0.529620px;}
.ls68_c00208{letter-spacing:-0.512460px;}
.ls8a_c00208{letter-spacing:-0.484380px;}
.ls63_c00208{letter-spacing:-0.470340px;}
.ls93_c00208{letter-spacing:-0.428220px;}
.ls89_c00208{letter-spacing:-0.421200px;}
.ls66_c00208{letter-spacing:-0.414180px;}
.ls58_c00208{letter-spacing:-0.400140px;}
.ls78_c00208{letter-spacing:-0.393120px;}
.ls7a_c00208{letter-spacing:-0.386100px;}
.ls9b_c00208{letter-spacing:-0.372060px;}
.ls8f_c00208{letter-spacing:-0.329940px;}
.ls94_c00208{letter-spacing:-0.266760px;}
.ls99_c00208{letter-spacing:-0.259740px;}
.ls61_c00208{letter-spacing:-0.245700px;}
.ls91_c00208{letter-spacing:-0.238680px;}
.ls80_c00208{letter-spacing:-0.231660px;}
.ls73_c00208{letter-spacing:-0.224640px;}
.ls5b_c00208{letter-spacing:-0.203580px;}
.ls64_c00208{letter-spacing:-0.196560px;}
.ls98_c00208{letter-spacing:-0.189540px;}
.ls9a_c00208{letter-spacing:-0.182520px;}
.ls5a_c00208{letter-spacing:-0.161460px;}
.ls75_c00208{letter-spacing:-0.154440px;}
.ls54_c00208{letter-spacing:-0.133380px;}
.ls62_c00208{letter-spacing:-0.119340px;}
.ls97_c00208{letter-spacing:-0.112320px;}
.ls52_c00208{letter-spacing:-0.105300px;}
.ls76_c00208{letter-spacing:-0.091260px;}
.ls70_c00208{letter-spacing:-0.084240px;}
.ls6a_c00208{letter-spacing:-0.063180px;}
.ls5c_c00208{letter-spacing:-0.056160px;}
.ls7c_c00208{letter-spacing:-0.042120px;}
.ls92_c00208{letter-spacing:-0.035100px;}
.ls67_c00208{letter-spacing:-0.028080px;}
.ls7b_c00208{letter-spacing:-0.021060px;}
.ls71_c00208{letter-spacing:-0.014040px;}
.ls51_c00208{letter-spacing:0.000000px;}
.ls34_c00208{letter-spacing:0.007020px;}
.ls26_c00208{letter-spacing:0.021060px;}
.ls10_c00208{letter-spacing:0.028080px;}
.ls86_c00208{letter-spacing:0.035100px;}
.ls74_c00208{letter-spacing:0.042120px;}
.ls19_c00208{letter-spacing:0.070200px;}
.ls2a_c00208{letter-spacing:0.091260px;}
.lsf_c00208{letter-spacing:0.098280px;}
.ls0_c00208{letter-spacing:0.105300px;}
.ls17_c00208{letter-spacing:0.119340px;}
.ls1b_c00208{letter-spacing:0.126360px;}
.ls6_c00208{letter-spacing:0.133380px;}
.ls44_c00208{letter-spacing:0.147420px;}
.ls40_c00208{letter-spacing:0.154440px;}
.ls25_c00208{letter-spacing:0.161460px;}
.ls1c_c00208{letter-spacing:0.168480px;}
.lse_c00208{letter-spacing:0.175500px;}
.ls37_c00208{letter-spacing:0.182520px;}
.ls4c_c00208{letter-spacing:0.189540px;}
.ls42_c00208{letter-spacing:0.196560px;}
.ls4b_c00208{letter-spacing:0.210600px;}
.ls18_c00208{letter-spacing:0.231660px;}
.lsc_c00208{letter-spacing:0.245700px;}
.ls41_c00208{letter-spacing:0.266760px;}
.ls28_c00208{letter-spacing:0.273780px;}
.ls3e_c00208{letter-spacing:0.280800px;}
.lsb_c00208{letter-spacing:0.287820px;}
.ls9_c00208{letter-spacing:0.294840px;}
.ls2b_c00208{letter-spacing:0.301860px;}
.ls2d_c00208{letter-spacing:0.307800px;}
.ls5d_c00208{letter-spacing:0.308880px;}
.ls3b_c00208{letter-spacing:0.315900px;}
.ls3_c00208{letter-spacing:0.322920px;}
.ls8_c00208{letter-spacing:0.343980px;}
.ls6c_c00208{letter-spacing:0.351000px;}
.ls1e_c00208{letter-spacing:0.372060px;}
.ls48_c00208{letter-spacing:0.379080px;}
.ls57_c00208{letter-spacing:0.386100px;}
.ls23_c00208{letter-spacing:0.393120px;}
.lsa_c00208{letter-spacing:0.407160px;}
.lsd_c00208{letter-spacing:0.421200px;}
.ls4e_c00208{letter-spacing:0.449280px;}
.ls47_c00208{letter-spacing:0.456300px;}
.ls38_c00208{letter-spacing:0.477360px;}
.ls90_c00208{letter-spacing:0.491400px;}
.ls1d_c00208{letter-spacing:0.505440px;}
.ls4f_c00208{letter-spacing:0.526500px;}
.ls11_c00208{letter-spacing:0.533520px;}
.ls2c_c00208{letter-spacing:0.547200px;}
.ls13_c00208{letter-spacing:0.554580px;}
.ls7_c00208{letter-spacing:0.575640px;}
.ls2_c00208{letter-spacing:0.589680px;}
.ls32_c00208{letter-spacing:0.595080px;}
.ls1f_c00208{letter-spacing:0.617760px;}
.ls49_c00208{letter-spacing:0.659880px;}
.ls45_c00208{letter-spacing:0.666900px;}
.ls39_c00208{letter-spacing:0.673920px;}
.ls31_c00208{letter-spacing:0.680940px;}
.ls43_c00208{letter-spacing:0.709020px;}
.ls16_c00208{letter-spacing:0.765180px;}
.ls3d_c00208{letter-spacing:0.800280px;}
.ls2f_c00208{letter-spacing:0.834480px;}
.ls2e_c00208{letter-spacing:0.877500px;}
.ls3c_c00208{letter-spacing:0.884520px;}
.ls24_c00208{letter-spacing:0.912600px;}
.ls4a_c00208{letter-spacing:0.926640px;}
.ls35_c00208{letter-spacing:0.957600px;}
.ls27_c00208{letter-spacing:0.968760px;}
.ls4d_c00208{letter-spacing:0.975780px;}
.ls33_c00208{letter-spacing:0.998640px;}
.ls1a_c00208{letter-spacing:1.031940px;}
.ls21_c00208{letter-spacing:1.045980px;}
.ls1_c00208{letter-spacing:1.055700px;}
.ls5_c00208{letter-spacing:1.142280px;}
.ls3a_c00208{letter-spacing:1.144260px;}
.ls3f_c00208{letter-spacing:1.214460px;}
.ls36_c00208{letter-spacing:1.224360px;}
.ls22_c00208{letter-spacing:1.242540px;}
.ls15_c00208{letter-spacing:1.354860px;}
.ls30_c00208{letter-spacing:1.381680px;}
.ls4_c00208{letter-spacing:1.396980px;}
.ls12_c00208{letter-spacing:1.425060px;}
.ls46_c00208{letter-spacing:1.495260px;}
.ls14_c00208{letter-spacing:2.372760px;}
.ls29_c00208{letter-spacing:2.485080px;}
.ls20_c00208{letter-spacing:2.871180px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{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__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00208{word-spacing:0.000000px;}
.ws0_c00208{word-spacing:3.862560px;}
._11_c00208{margin-left:-7.244640px;}
._3_c00208{margin-left:-3.811860px;}
._1_c00208{margin-left:-1.994700px;}
._0_c00208{width:1.194300px;}
._2_c00208{width:2.709720px;}
._6_c00208{width:4.231620px;}
._7_c00208{width:5.406840px;}
._4_c00208{width:6.418620px;}
._5_c00208{width:8.224200px;}
._8_c00208{width:9.920160px;}
._a_c00208{width:12.239100px;}
._12_c00208{width:13.412100px;}
._9_c00208{width:14.492520px;}
._b_c00208{width:15.501240px;}
._c_c00208{width:16.668360px;}
._13_c00208{width:19.528560px;}
._f_c00208{width:20.744100px;}
._e_c00208{width:22.169160px;}
._10_c00208{width:23.980320px;}
._d_c00208{width:25.931880px;}
._14_c00208{width:28.571400px;}
._15_c00208{width:30.768660px;}
._16_c00208{width:32.390280px;}
.fc0_c00208{color:transparent;}
.fs4_c00208{font-size:58.200000px;}
.fs0_c00208{font-size:66.600000px;}
.fs3_c00208{font-size:68.400000px;}
.fs2_c00208{font-size:69.000000px;}
.fs1_c00208{font-size:70.200000px;}
.y0_c00208{bottom:0.000000px;}
.y1f_c00208{bottom:66.975006px;}
.y1e_c00208{bottom:120.970356px;}
.y1c_c00208{bottom:151.546656px;}
.y1d_c00208{bottom:151.560006px;}
.y1b_c00208{bottom:182.153856px;}
.y1a_c00208{bottom:213.129606px;}
.y19_c00208{bottom:244.087806px;}
.y18_c00208{bottom:274.696806px;}
.y17_c00208{bottom:305.655006px;}
.y16_c00208{bottom:305.658606px;}
.y15_c00208{bottom:335.879706px;}
.y14_c00208{bottom:367.575006px;}
.y13_c00208{bottom:429.135006px;}
.y12_c00208{bottom:459.720006px;}
.y11_c00208{bottom:490.320006px;}
.y10_c00208{bottom:541.459056px;}
.ye_c00208{bottom:590.048256px;}
.yf_c00208{bottom:590.055006px;}
.yd_c00208{bottom:621.375006px;}
.yc_c00208{bottom:682.939356px;}
.yb_c00208{bottom:744.855756px;}
.ya_c00208{bottom:775.796406px;}
.y9_c00208{bottom:806.403606px;}
.y8_c00208{bottom:837.730356px;}
.y7_c00208{bottom:868.315206px;}
.y6_c00208{bottom:898.922406px;}
.y5_c00208{bottom:929.512056px;}
.y4_c00208{bottom:991.095006px;}
.y3_c00208{bottom:1053.000006px;}
.y2_c00208{bottom:1114.935006px;}
.y1_c00208{bottom:1191.975006px;}
.h6_c00208{height:57.120117px;}
.h2_c00208{height:67.120312px;}
.h4_c00208{height:68.897461px;}
.h5_c00208{height:68.916661px;}
.h3_c00208{height:69.539062px;}
.h1_c00208{height:1263.000000px;}
.h0_c00208{height:1263.240006px;}
.w1_c00208{width:892.500000px;}
.w0_c00208{width:892.799998px;}
.x0_c00208{left:0.000000px;}
.x11_c00208{left:117.567149px;}
.x6_c00208{left:118.927648px;}
.x5_c00208{left:120.238348px;}
.x1_c00208{left:123.044999px;}
.x9_c00208{left:170.178449px;}
.x7_c00208{left:171.981299px;}
.x4_c00208{left:174.974998px;}
.x2_c00208{left:176.219999px;}
.xa_c00208{left:212.864998px;}
.xb_c00208{left:238.484998px;}
.xc_c00208{left:266.549999px;}
.x8_c00208{left:298.754999px;}
.x14_c00208{left:422.474999px;}
.x15_c00208{left:444.434999px;}
.x3_c00208{left:453.719998px;}
.xd_c00208{left:486.164999px;}
.xe_c00208{left:514.604998px;}
.x12_c00208{left:589.784999px;}
.xf_c00208{left:597.134999px;}
.x10_c00208{left:618.584998px;}
.x13_c00208{left:639.914999px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls53_c00208{letter-spacing:-2.184000pt;}
.ls79_c00208{letter-spacing:-2.140320pt;}
.ls50_c00208{letter-spacing:-2.072000pt;}
.ls8e_c00208{letter-spacing:-1.959360pt;}
.ls7d_c00208{letter-spacing:-1.809600pt;}
.ls8d_c00208{letter-spacing:-1.734720pt;}
.ls82_c00208{letter-spacing:-1.460160pt;}
.ls60_c00208{letter-spacing:-1.453920pt;}
.ls88_c00208{letter-spacing:-1.404000pt;}
.ls6d_c00208{letter-spacing:-1.341600pt;}
.ls87_c00208{letter-spacing:-1.148160pt;}
.ls84_c00208{letter-spacing:-1.110720pt;}
.ls85_c00208{letter-spacing:-1.104480pt;}
.ls81_c00208{letter-spacing:-1.023360pt;}
.ls7e_c00208{letter-spacing:-1.010880pt;}
.ls6e_c00208{letter-spacing:-0.979680pt;}
.ls7f_c00208{letter-spacing:-0.954720pt;}
.ls8c_c00208{letter-spacing:-0.904800pt;}
.ls65_c00208{letter-spacing:-0.848640pt;}
.ls6b_c00208{letter-spacing:-0.786240pt;}
.ls95_c00208{letter-spacing:-0.761280pt;}
.ls69_c00208{letter-spacing:-0.755040pt;}
.ls5e_c00208{letter-spacing:-0.748800pt;}
.ls56_c00208{letter-spacing:-0.705120pt;}
.ls77_c00208{letter-spacing:-0.686400pt;}
.ls59_c00208{letter-spacing:-0.680160pt;}
.ls6f_c00208{letter-spacing:-0.661440pt;}
.ls83_c00208{letter-spacing:-0.648960pt;}
.ls96_c00208{letter-spacing:-0.586560pt;}
.ls5f_c00208{letter-spacing:-0.542880pt;}
.ls72_c00208{letter-spacing:-0.511680pt;}
.ls8b_c00208{letter-spacing:-0.505440pt;}
.ls55_c00208{letter-spacing:-0.474240pt;}
.ls9c_c00208{letter-spacing:-0.470773pt;}
.ls68_c00208{letter-spacing:-0.455520pt;}
.ls8a_c00208{letter-spacing:-0.430560pt;}
.ls63_c00208{letter-spacing:-0.418080pt;}
.ls93_c00208{letter-spacing:-0.380640pt;}
.ls89_c00208{letter-spacing:-0.374400pt;}
.ls66_c00208{letter-spacing:-0.368160pt;}
.ls58_c00208{letter-spacing:-0.355680pt;}
.ls78_c00208{letter-spacing:-0.349440pt;}
.ls7a_c00208{letter-spacing:-0.343200pt;}
.ls9b_c00208{letter-spacing:-0.330720pt;}
.ls8f_c00208{letter-spacing:-0.293280pt;}
.ls94_c00208{letter-spacing:-0.237120pt;}
.ls99_c00208{letter-spacing:-0.230880pt;}
.ls61_c00208{letter-spacing:-0.218400pt;}
.ls91_c00208{letter-spacing:-0.212160pt;}
.ls80_c00208{letter-spacing:-0.205920pt;}
.ls73_c00208{letter-spacing:-0.199680pt;}
.ls5b_c00208{letter-spacing:-0.180960pt;}
.ls64_c00208{letter-spacing:-0.174720pt;}
.ls98_c00208{letter-spacing:-0.168480pt;}
.ls9a_c00208{letter-spacing:-0.162240pt;}
.ls5a_c00208{letter-spacing:-0.143520pt;}
.ls75_c00208{letter-spacing:-0.137280pt;}
.ls54_c00208{letter-spacing:-0.118560pt;}
.ls62_c00208{letter-spacing:-0.106080pt;}
.ls97_c00208{letter-spacing:-0.099840pt;}
.ls52_c00208{letter-spacing:-0.093600pt;}
.ls76_c00208{letter-spacing:-0.081120pt;}
.ls70_c00208{letter-spacing:-0.074880pt;}
.ls6a_c00208{letter-spacing:-0.056160pt;}
.ls5c_c00208{letter-spacing:-0.049920pt;}
.ls7c_c00208{letter-spacing:-0.037440pt;}
.ls92_c00208{letter-spacing:-0.031200pt;}
.ls67_c00208{letter-spacing:-0.024960pt;}
.ls7b_c00208{letter-spacing:-0.018720pt;}
.ls71_c00208{letter-spacing:-0.012480pt;}
.ls51_c00208{letter-spacing:0.000000pt;}
.ls34_c00208{letter-spacing:0.006240pt;}
.ls26_c00208{letter-spacing:0.018720pt;}
.ls10_c00208{letter-spacing:0.024960pt;}
.ls86_c00208{letter-spacing:0.031200pt;}
.ls74_c00208{letter-spacing:0.037440pt;}
.ls19_c00208{letter-spacing:0.062400pt;}
.ls2a_c00208{letter-spacing:0.081120pt;}
.lsf_c00208{letter-spacing:0.087360pt;}
.ls0_c00208{letter-spacing:0.093600pt;}
.ls17_c00208{letter-spacing:0.106080pt;}
.ls1b_c00208{letter-spacing:0.112320pt;}
.ls6_c00208{letter-spacing:0.118560pt;}
.ls44_c00208{letter-spacing:0.131040pt;}
.ls40_c00208{letter-spacing:0.137280pt;}
.ls25_c00208{letter-spacing:0.143520pt;}
.ls1c_c00208{letter-spacing:0.149760pt;}
.lse_c00208{letter-spacing:0.156000pt;}
.ls37_c00208{letter-spacing:0.162240pt;}
.ls4c_c00208{letter-spacing:0.168480pt;}
.ls42_c00208{letter-spacing:0.174720pt;}
.ls4b_c00208{letter-spacing:0.187200pt;}
.ls18_c00208{letter-spacing:0.205920pt;}
.lsc_c00208{letter-spacing:0.218400pt;}
.ls41_c00208{letter-spacing:0.237120pt;}
.ls28_c00208{letter-spacing:0.243360pt;}
.ls3e_c00208{letter-spacing:0.249600pt;}
.lsb_c00208{letter-spacing:0.255840pt;}
.ls9_c00208{letter-spacing:0.262080pt;}
.ls2b_c00208{letter-spacing:0.268320pt;}
.ls2d_c00208{letter-spacing:0.273600pt;}
.ls5d_c00208{letter-spacing:0.274560pt;}
.ls3b_c00208{letter-spacing:0.280800pt;}
.ls3_c00208{letter-spacing:0.287040pt;}
.ls8_c00208{letter-spacing:0.305760pt;}
.ls6c_c00208{letter-spacing:0.312000pt;}
.ls1e_c00208{letter-spacing:0.330720pt;}
.ls48_c00208{letter-spacing:0.336960pt;}
.ls57_c00208{letter-spacing:0.343200pt;}
.ls23_c00208{letter-spacing:0.349440pt;}
.lsa_c00208{letter-spacing:0.361920pt;}
.lsd_c00208{letter-spacing:0.374400pt;}
.ls4e_c00208{letter-spacing:0.399360pt;}
.ls47_c00208{letter-spacing:0.405600pt;}
.ls38_c00208{letter-spacing:0.424320pt;}
.ls90_c00208{letter-spacing:0.436800pt;}
.ls1d_c00208{letter-spacing:0.449280pt;}
.ls4f_c00208{letter-spacing:0.468000pt;}
.ls11_c00208{letter-spacing:0.474240pt;}
.ls2c_c00208{letter-spacing:0.486400pt;}
.ls13_c00208{letter-spacing:0.492960pt;}
.ls7_c00208{letter-spacing:0.511680pt;}
.ls2_c00208{letter-spacing:0.524160pt;}
.ls32_c00208{letter-spacing:0.528960pt;}
.ls1f_c00208{letter-spacing:0.549120pt;}
.ls49_c00208{letter-spacing:0.586560pt;}
.ls45_c00208{letter-spacing:0.592800pt;}
.ls39_c00208{letter-spacing:0.599040pt;}
.ls31_c00208{letter-spacing:0.605280pt;}
.ls43_c00208{letter-spacing:0.630240pt;}
.ls16_c00208{letter-spacing:0.680160pt;}
.ls3d_c00208{letter-spacing:0.711360pt;}
.ls2f_c00208{letter-spacing:0.741760pt;}
.ls2e_c00208{letter-spacing:0.780000pt;}
.ls3c_c00208{letter-spacing:0.786240pt;}
.ls24_c00208{letter-spacing:0.811200pt;}
.ls4a_c00208{letter-spacing:0.823680pt;}
.ls35_c00208{letter-spacing:0.851200pt;}
.ls27_c00208{letter-spacing:0.861120pt;}
.ls4d_c00208{letter-spacing:0.867360pt;}
.ls33_c00208{letter-spacing:0.887680pt;}
.ls1a_c00208{letter-spacing:0.917280pt;}
.ls21_c00208{letter-spacing:0.929760pt;}
.ls1_c00208{letter-spacing:0.938400pt;}
.ls5_c00208{letter-spacing:1.015360pt;}
.ls3a_c00208{letter-spacing:1.017120pt;}
.ls3f_c00208{letter-spacing:1.079520pt;}
.ls36_c00208{letter-spacing:1.088320pt;}
.ls22_c00208{letter-spacing:1.104480pt;}
.ls15_c00208{letter-spacing:1.204320pt;}
.ls30_c00208{letter-spacing:1.228160pt;}
.ls4_c00208{letter-spacing:1.241760pt;}
.ls12_c00208{letter-spacing:1.266720pt;}
.ls46_c00208{letter-spacing:1.329120pt;}
.ls14_c00208{letter-spacing:2.109120pt;}
.ls29_c00208{letter-spacing:2.208960pt;}
.ls20_c00208{letter-spacing:2.552160pt;}
.ws1_c00208{word-spacing:0.000000pt;}
.ws0_c00208{word-spacing:3.433387pt;}
._11_c00208{margin-left:-6.439680pt;}
._3_c00208{margin-left:-3.388320pt;}
._1_c00208{margin-left:-1.773067pt;}
._0_c00208{width:1.061600pt;}
._2_c00208{width:2.408640pt;}
._6_c00208{width:3.761440pt;}
._7_c00208{width:4.806080pt;}
._4_c00208{width:5.705440pt;}
._5_c00208{width:7.310400pt;}
._8_c00208{width:8.817920pt;}
._a_c00208{width:10.879200pt;}
._12_c00208{width:11.921867pt;}
._9_c00208{width:12.882240pt;}
._b_c00208{width:13.778880pt;}
._c_c00208{width:14.816320pt;}
._13_c00208{width:17.358720pt;}
._f_c00208{width:18.439200pt;}
._e_c00208{width:19.705920pt;}
._10_c00208{width:21.315840pt;}
._d_c00208{width:23.050560pt;}
._14_c00208{width:25.396800pt;}
._15_c00208{width:27.349920pt;}
._16_c00208{width:28.791360pt;}
.fs4_c00208{font-size:51.733333pt;}
.fs0_c00208{font-size:59.200000pt;}
.fs3_c00208{font-size:60.800000pt;}
.fs2_c00208{font-size:61.333333pt;}
.fs1_c00208{font-size:62.400000pt;}
.y0_c00208{bottom:0.000000pt;}
.y1f_c00208{bottom:59.533339pt;}
.y1e_c00208{bottom:107.529205pt;}
.y1c_c00208{bottom:134.708139pt;}
.y1d_c00208{bottom:134.720005pt;}
.y1b_c00208{bottom:161.914539pt;}
.y1a_c00208{bottom:189.448539pt;}
.y19_c00208{bottom:216.966939pt;}
.y18_c00208{bottom:244.174939pt;}
.y17_c00208{bottom:271.693339pt;}
.y16_c00208{bottom:271.696539pt;}
.y15_c00208{bottom:298.559739pt;}
.y14_c00208{bottom:326.733339pt;}
.y13_c00208{bottom:381.453339pt;}
.y12_c00208{bottom:408.640005pt;}
.y11_c00208{bottom:435.840005pt;}
.y10_c00208{bottom:481.296939pt;}
.ye_c00208{bottom:524.487339pt;}
.yf_c00208{bottom:524.493339pt;}
.yd_c00208{bottom:552.333339pt;}
.yc_c00208{bottom:607.057205pt;}
.yb_c00208{bottom:662.094005pt;}
.ya_c00208{bottom:689.596805pt;}
.y9_c00208{bottom:716.803205pt;}
.y8_c00208{bottom:744.649205pt;}
.y7_c00208{bottom:771.835739pt;}
.y6_c00208{bottom:799.042139pt;}
.y5_c00208{bottom:826.232939pt;}
.y4_c00208{bottom:880.973339pt;}
.y3_c00208{bottom:936.000005pt;}
.y2_c00208{bottom:991.053339pt;}
.y1_c00208{bottom:1059.533339pt;}
.h6_c00208{height:50.773437pt;}
.h2_c00208{height:59.662500pt;}
.h4_c00208{height:61.242187pt;}
.h5_c00208{height:61.259254pt;}
.h3_c00208{height:61.812500pt;}
.h1_c00208{height:1122.666667pt;}
.h0_c00208{height:1122.880005pt;}
.w1_c00208{width:793.333333pt;}
.w0_c00208{width:793.599999pt;}
.x0_c00208{left:0.000000pt;}
.x11_c00208{left:104.504132pt;}
.x6_c00208{left:105.713465pt;}
.x5_c00208{left:106.878532pt;}
.x1_c00208{left:109.373332pt;}
.x9_c00208{left:151.269732pt;}
.x7_c00208{left:152.872265pt;}
.x4_c00208{left:155.533332pt;}
.x2_c00208{left:156.639999pt;}
.xa_c00208{left:189.213332pt;}
.xb_c00208{left:211.986665pt;}
.xc_c00208{left:236.933332pt;}
.x8_c00208{left:265.559999pt;}
.x14_c00208{left:375.533332pt;}
.x15_c00208{left:395.053332pt;}
.x3_c00208{left:403.306665pt;}
.xd_c00208{left:432.146665pt;}
.xe_c00208{left:457.426665pt;}
.x12_c00208{left:524.253332pt;}
.xf_c00208{left:530.786665pt;}
.x10_c00208{left:549.853332pt;}
.x13_c00208{left:568.813332pt;}
}





/* 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_c00209 {
    display:none;
  }
  .loading-indicator_c00209.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00209 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_c00209 { 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_c00209" -> "#page-container .classname_c00209")
 */
.pf_c00209 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00209 { /* 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_c00209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00209 { /* 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_c00209 { /* 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_c00209 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00209 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00209 {overflow:visible;}
  }
}
.c_c00209 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00209 { /* 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_c00209:after { /* webkit #35443 */
  content: '';
}
.t_c00209:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00209 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 */
}
.__c00209 { /* 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_c00209 { /* info for Javascript */
  display:none;
}
.l_c00209 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00209 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00209 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00209: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_c00209 {
    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_c00209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00209.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_c00209 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00209;src:url('chunks/assets/font_96b1e2376dcfd08cb9d352dd.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.284668;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_c00209;src:url('chunks/assets/font_f304b3684c99551094648e14.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.284180;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_c00209;src:url('chunks/assets/font_6923c10a3b84a06c8d38ead0.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;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:ff4_c00209;src:url('chunks/assets/font_83be64c5d217f17e342a0a0c.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:1.311035;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_c00209{transform:matrix(0.189502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189502,0.000000,0.000000,0.250000,0,0);}
.mc_c00209{transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);}
.mb_c00209{transform:matrix(0.231704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231704,0.000000,0.000000,0.250000,0,0);}
.m8_c00209{transform:matrix(0.244089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244089,0.000000,0.000000,0.250000,0,0);}
.m9_c00209{transform:matrix(0.246593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246593,0.000000,0.000000,0.250000,0,0);}
.m6_c00209{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m7_c00209{transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);}
.m4_c00209{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m3_c00209{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m1_c00209{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);}
.m0_c00209{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.m5_c00209{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.ma_c00209{transform:matrix(0.265263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265263,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls5d_c00209{letter-spacing:-2.415000px;}
.ls66_c00209{letter-spacing:-2.159700px;}
.ls5f_c00209{letter-spacing:-1.987200px;}
.ls63_c00209{letter-spacing:-1.766400px;}
.ls6d_c00209{letter-spacing:-1.731900px;}
.ls85_c00209{letter-spacing:-1.635300px;}
.ls6a_c00209{letter-spacing:-1.538700px;}
.ls8b_c00209{letter-spacing:-1.389960px;}
.ls7a_c00209{letter-spacing:-1.159200px;}
.ls61_c00209{letter-spacing:-1.110900px;}
.ls67_c00209{letter-spacing:-1.083300px;}
.ls78_c00209{letter-spacing:-0.966000px;}
.ls79_c00209{letter-spacing:-0.945300px;}
.ls5e_c00209{letter-spacing:-0.855600px;}
.ls60_c00209{letter-spacing:-0.821100px;}
.ls68_c00209{letter-spacing:-0.800400px;}
.ls69_c00209{letter-spacing:-0.765900px;}
.ls6f_c00209{letter-spacing:-0.738300px;}
.ls88_c00209{letter-spacing:-0.676200px;}
.ls77_c00209{letter-spacing:-0.595080px;}
.ls82_c00209{letter-spacing:-0.469200px;}
.ls6b_c00209{letter-spacing:-0.441600px;}
.ls6c_c00209{letter-spacing:-0.379500px;}
.ls74_c00209{letter-spacing:-0.248400px;}
.ls7b_c00209{letter-spacing:-0.200100px;}
.ls71_c00209{letter-spacing:-0.186300px;}
.ls7c_c00209{letter-spacing:-0.179400px;}
.ls64_c00209{letter-spacing:-0.172500px;}
.ls87_c00209{letter-spacing:-0.165600px;}
.ls73_c00209{letter-spacing:-0.138000px;}
.ls7f_c00209{letter-spacing:-0.117300px;}
.ls81_c00209{letter-spacing:-0.110400px;}
.ls8a_c00209{letter-spacing:-0.048300px;}
.ls7e_c00209{letter-spacing:-0.027600px;}
.ls6e_c00209{letter-spacing:-0.013800px;}
.ls62_c00209{letter-spacing:0.000000px;}
.ls83_c00209{letter-spacing:0.006900px;}
.ls49_c00209{letter-spacing:0.013800px;}
.ls84_c00209{letter-spacing:0.041400px;}
.ls56_c00209{letter-spacing:0.082800px;}
.ls19_c00209{letter-spacing:0.089700px;}
.ls3f_c00209{letter-spacing:0.096600px;}
.lsb_c00209{letter-spacing:0.117300px;}
.ls12_c00209{letter-spacing:0.131100px;}
.ls17_c00209{letter-spacing:0.138000px;}
.ls2c_c00209{letter-spacing:0.165600px;}
.ls53_c00209{letter-spacing:0.172500px;}
.ls41_c00209{letter-spacing:0.179400px;}
.ls18_c00209{letter-spacing:0.186300px;}
.ls3c_c00209{letter-spacing:0.213900px;}
.ls26_c00209{letter-spacing:0.220800px;}
.ls4b_c00209{letter-spacing:0.227700px;}
.ls89_c00209{letter-spacing:0.248400px;}
.ls30_c00209{letter-spacing:0.255300px;}
.ls28_c00209{letter-spacing:0.262200px;}
.ls43_c00209{letter-spacing:0.269100px;}
.ls1d_c00209{letter-spacing:0.276000px;}
.ls52_c00209{letter-spacing:0.282900px;}
.ls70_c00209{letter-spacing:0.289800px;}
.ls23_c00209{letter-spacing:0.294120px;}
.ls59_c00209{letter-spacing:0.296700px;}
.ls10_c00209{letter-spacing:0.303600px;}
.lsa_c00209{letter-spacing:0.324300px;}
.ls65_c00209{letter-spacing:0.331200px;}
.ls44_c00209{letter-spacing:0.345000px;}
.lsf_c00209{letter-spacing:0.351900px;}
.ls80_c00209{letter-spacing:0.358800px;}
.ls34_c00209{letter-spacing:0.365700px;}
.ls25_c00209{letter-spacing:0.372600px;}
.ls9_c00209{letter-spacing:0.379500px;}
.ls3a_c00209{letter-spacing:0.386400px;}
.ls21_c00209{letter-spacing:0.393300px;}
.lse_c00209{letter-spacing:0.400200px;}
.ls39_c00209{letter-spacing:0.434700px;}
.ls1f_c00209{letter-spacing:0.441600px;}
.ls2b_c00209{letter-spacing:0.448500px;}
.ls14_c00209{letter-spacing:0.462300px;}
.ls5_c00209{letter-spacing:0.478800px;}
.ls7d_c00209{letter-spacing:0.483000px;}
.ls45_c00209{letter-spacing:0.496800px;}
.lsd_c00209{letter-spacing:0.510600px;}
.ls36_c00209{letter-spacing:0.524400px;}
.ls2e_c00209{letter-spacing:0.538200px;}
.ls57_c00209{letter-spacing:0.565800px;}
.ls33_c00209{letter-spacing:0.572700px;}
.ls4a_c00209{letter-spacing:0.586500px;}
.ls2d_c00209{letter-spacing:0.614100px;}
.ls1a_c00209{letter-spacing:0.621000px;}
.ls55_c00209{letter-spacing:0.634800px;}
.ls72_c00209{letter-spacing:0.641700px;}
.ls24_c00209{letter-spacing:0.642960px;}
.ls35_c00209{letter-spacing:0.648600px;}
.ls16_c00209{letter-spacing:0.676200px;}
.ls6_c00209{letter-spacing:0.683100px;}
.ls5c_c00209{letter-spacing:0.696900px;}
.ls51_c00209{letter-spacing:0.724500px;}
.ls13_c00209{letter-spacing:0.738300px;}
.ls4e_c00209{letter-spacing:0.752100px;}
.ls2_c00209{letter-spacing:0.759000px;}
.ls54_c00209{letter-spacing:0.765900px;}
.ls7_c00209{letter-spacing:0.772800px;}
.ls50_c00209{letter-spacing:0.779760px;}
.ls32_c00209{letter-spacing:0.786600px;}
.ls3_c00209{letter-spacing:0.793500px;}
.ls1b_c00209{letter-spacing:0.800280px;}
.ls3b_c00209{letter-spacing:0.807300px;}
.ls11_c00209{letter-spacing:0.821100px;}
.ls1_c00209{letter-spacing:0.828000px;}
.ls3e_c00209{letter-spacing:0.855600px;}
.ls2f_c00209{letter-spacing:0.883200px;}
.ls48_c00209{letter-spacing:0.903900px;}
.ls1c_c00209{letter-spacing:0.910800px;}
.ls38_c00209{letter-spacing:0.931500px;}
.ls0_c00209{letter-spacing:0.950760px;}
.ls4_c00209{letter-spacing:0.959100px;}
.ls75_c00209{letter-spacing:0.972900px;}
.ls46_c00209{letter-spacing:0.979800px;}
.ls22_c00209{letter-spacing:0.986700px;}
.ls37_c00209{letter-spacing:1.021200px;}
.ls5a_c00209{letter-spacing:1.083300px;}
.ls8_c00209{letter-spacing:1.097100px;}
.ls47_c00209{letter-spacing:1.117800px;}
.ls31_c00209{letter-spacing:1.124700px;}
.ls2a_c00209{letter-spacing:1.131600px;}
.lsc_c00209{letter-spacing:1.138500px;}
.ls4c_c00209{letter-spacing:1.203840px;}
.ls1e_c00209{letter-spacing:1.297200px;}
.ls15_c00209{letter-spacing:1.311000px;}
.ls27_c00209{letter-spacing:1.435200px;}
.ls40_c00209{letter-spacing:1.469700px;}
.ls4f_c00209{letter-spacing:1.545600px;}
.ls42_c00209{letter-spacing:1.600800px;}
.ls20_c00209{letter-spacing:2.014800px;}
.ls58_c00209{letter-spacing:2.539200px;}
.ls3d_c00209{letter-spacing:2.559900px;}
.ls5b_c00209{letter-spacing:2.940000px;}
.ls29_c00209{letter-spacing:3.070500px;}
.ls4d_c00209{letter-spacing:3.229200px;}
.ls76_c00209{letter-spacing:3.420000px;}
.ls86_c00209{letter-spacing:3.450000px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{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__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00209{word-spacing:0.000000px;}
.ws3_c00209{word-spacing:3.427440px;}
.ws2_c00209{word-spacing:7.168200px;}
.ws0_c00209{word-spacing:17.417760px;}
.ws1_c00209{word-spacing:33.464400px;}
._14_c00209{margin-left:-7.110000px;}
._12_c00209{margin-left:-4.670400px;}
._0_c00209{margin-left:-2.484000px;}
._13_c00209{margin-left:-1.122300px;}
._d_c00209{width:1.055700px;}
._15_c00209{width:2.068500px;}
._a_c00209{width:3.229200px;}
._1_c00209{width:4.533300px;}
._c_c00209{width:5.540700px;}
._11_c00209{width:6.969000px;}
._b_c00209{width:8.059200px;}
._10_c00209{width:9.190800px;}
._f_c00209{width:11.067600px;}
._e_c00209{width:12.488100px;}
._19_c00209{width:20.046900px;}
._1a_c00209{width:21.386100px;}
._9_c00209{width:22.603800px;}
._6_c00209{width:23.982000px;}
._8_c00209{width:25.205700px;}
._7_c00209{width:26.352900px;}
._3_c00209{width:28.331400px;}
._2_c00209{width:30.277200px;}
._5_c00209{width:33.471900px;}
._18_c00209{width:34.737900px;}
._4_c00209{width:35.935200px;}
._16_c00209{width:37.536000px;}
._17_c00209{width:39.733800px;}
.fc0_c00209{color:transparent;}
.fs0_c00209{font-size:58.800000px;}
.fs4_c00209{font-size:59.400000px;}
.fs6_c00209{font-size:66.000000px;}
.fs1_c00209{font-size:68.400000px;}
.fs2_c00209{font-size:69.000000px;}
.fs5_c00209{font-size:76.800000px;}
.fs3_c00209{font-size:79.800000px;}
.y0_c00209{bottom:0.000000px;}
.y22_c00209{bottom:67.320015px;}
.y20_c00209{bottom:126.716265px;}
.y21_c00209{bottom:126.720015px;}
.y1f_c00209{bottom:157.680015px;}
.y1e_c00209{bottom:157.680765px;}
.y1d_c00209{bottom:187.920015px;}
.y1c_c00209{bottom:249.855015px;}
.y1b_c00209{bottom:311.775015px;}
.y1a_c00209{bottom:372.615015px;}
.y19_c00209{bottom:372.627765px;}
.y18_c00209{bottom:434.900265px;}
.y16_c00209{bottom:464.754015px;}
.y17_c00209{bottom:464.760015px;}
.y14_c00209{bottom:495.729765px;}
.y15_c00209{bottom:495.735015px;}
.y13_c00209{bottom:557.295015px;}
.y12_c00209{bottom:588.596265px;}
.y24_c00209{bottom:615.255015px;}
.y23_c00209{bottom:618.840015px;}
.y11_c00209{bottom:619.215015px;}
.y10_c00209{bottom:681.134265px;}
.ye_c00209{bottom:741.973515px;}
.yf_c00209{bottom:741.975015px;}
.yc_c00209{bottom:772.918515px;}
.yd_c00209{bottom:772.920015px;}
.yb_c00209{bottom:803.175015px;}
.ya_c00209{bottom:865.436265px;}
.y9_c00209{bottom:896.055015px;}
.y7_c00209{bottom:957.592515px;}
.y8_c00209{bottom:957.600015px;}
.y6_c00209{bottom:988.573515px;}
.y5_c00209{bottom:1019.175015px;}
.y4_c00209{bottom:1019.175765px;}
.y3_c00209{bottom:1049.760015px;}
.y2_c00209{bottom:1111.695015px;}
.y1_c00209{bottom:1189.095015px;}
.h2_c00209{height:57.708984px;}
.ha_c00209{height:58.297852px;}
.h6_c00209{height:67.097461px;}
.h3_c00209{height:67.719727px;}
.h5_c00209{height:67.725727px;}
.h8_c00209{height:67.734727px;}
.hc_c00209{height:68.835938px;}
.h9_c00209{height:68.883375px;}
.h7_c00209{height:71.964844px;}
.h4_c00209{height:78.334336px;}
.hb_c00209{height:80.100000px;}
.h1_c00209{height:1263.000000px;}
.h0_c00209{height:1263.240015px;}
.w1_c00209{width:892.500000px;}
.w0_c00209{width:892.800000px;}
.x0_c00209{left:0.000000px;}
.x1a_c00209{left:123.964500px;}
.xe_c00209{left:125.604000px;}
.x1_c00209{left:127.005000px;}
.xb_c00209{left:147.420000px;}
.xc_c00209{left:164.700000px;}
.x17_c00209{left:177.630000px;}
.x15_c00209{left:178.725000px;}
.x2_c00209{left:180.165000px;}
.x13_c00209{left:208.980000px;}
.x18_c00209{left:228.420000px;}
.x14_c00209{left:264.630000px;}
.x19_c00209{left:278.445000px;}
.xf_c00209{left:289.260000px;}
.x10_c00209{left:345.450000px;}
.x9_c00209{left:376.770000px;}
.xa_c00209{left:394.080000px;}
.x1d_c00209{left:398.535000px;}
.x1e_c00209{left:426.450000px;}
.x11_c00209{left:431.850000px;}
.x3_c00209{left:440.925000px;}
.x12_c00209{left:454.875000px;}
.x4_c00209{left:472.500000px;}
.x16_c00209{left:474.960000px;}
.x8_c00209{left:581.580000px;}
.x5_c00209{left:626.685000px;}
.x1b_c00209{left:641.385000px;}
.x1c_c00209{left:673.530000px;}
.xd_c00209{left:693.195000px;}
.x6_c00209{left:715.155000px;}
.x7_c00209{left:742.170000px;}
.x20_c00209{left:855.135000px;}
.x1f_c00209{left:856.185000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls5d_c00209{letter-spacing:-2.146667pt;}
.ls66_c00209{letter-spacing:-1.919733pt;}
.ls5f_c00209{letter-spacing:-1.766400pt;}
.ls63_c00209{letter-spacing:-1.570133pt;}
.ls6d_c00209{letter-spacing:-1.539467pt;}
.ls85_c00209{letter-spacing:-1.453600pt;}
.ls6a_c00209{letter-spacing:-1.367733pt;}
.ls8b_c00209{letter-spacing:-1.235520pt;}
.ls7a_c00209{letter-spacing:-1.030400pt;}
.ls61_c00209{letter-spacing:-0.987467pt;}
.ls67_c00209{letter-spacing:-0.962933pt;}
.ls78_c00209{letter-spacing:-0.858667pt;}
.ls79_c00209{letter-spacing:-0.840267pt;}
.ls5e_c00209{letter-spacing:-0.760533pt;}
.ls60_c00209{letter-spacing:-0.729867pt;}
.ls68_c00209{letter-spacing:-0.711467pt;}
.ls69_c00209{letter-spacing:-0.680800pt;}
.ls6f_c00209{letter-spacing:-0.656267pt;}
.ls88_c00209{letter-spacing:-0.601067pt;}
.ls77_c00209{letter-spacing:-0.528960pt;}
.ls82_c00209{letter-spacing:-0.417067pt;}
.ls6b_c00209{letter-spacing:-0.392533pt;}
.ls6c_c00209{letter-spacing:-0.337333pt;}
.ls74_c00209{letter-spacing:-0.220800pt;}
.ls7b_c00209{letter-spacing:-0.177867pt;}
.ls71_c00209{letter-spacing:-0.165600pt;}
.ls7c_c00209{letter-spacing:-0.159467pt;}
.ls64_c00209{letter-spacing:-0.153333pt;}
.ls87_c00209{letter-spacing:-0.147200pt;}
.ls73_c00209{letter-spacing:-0.122667pt;}
.ls7f_c00209{letter-spacing:-0.104267pt;}
.ls81_c00209{letter-spacing:-0.098133pt;}
.ls8a_c00209{letter-spacing:-0.042933pt;}
.ls7e_c00209{letter-spacing:-0.024533pt;}
.ls6e_c00209{letter-spacing:-0.012267pt;}
.ls62_c00209{letter-spacing:0.000000pt;}
.ls83_c00209{letter-spacing:0.006133pt;}
.ls49_c00209{letter-spacing:0.012267pt;}
.ls84_c00209{letter-spacing:0.036800pt;}
.ls56_c00209{letter-spacing:0.073600pt;}
.ls19_c00209{letter-spacing:0.079733pt;}
.ls3f_c00209{letter-spacing:0.085867pt;}
.lsb_c00209{letter-spacing:0.104267pt;}
.ls12_c00209{letter-spacing:0.116533pt;}
.ls17_c00209{letter-spacing:0.122667pt;}
.ls2c_c00209{letter-spacing:0.147200pt;}
.ls53_c00209{letter-spacing:0.153333pt;}
.ls41_c00209{letter-spacing:0.159467pt;}
.ls18_c00209{letter-spacing:0.165600pt;}
.ls3c_c00209{letter-spacing:0.190133pt;}
.ls26_c00209{letter-spacing:0.196267pt;}
.ls4b_c00209{letter-spacing:0.202400pt;}
.ls89_c00209{letter-spacing:0.220800pt;}
.ls30_c00209{letter-spacing:0.226933pt;}
.ls28_c00209{letter-spacing:0.233067pt;}
.ls43_c00209{letter-spacing:0.239200pt;}
.ls1d_c00209{letter-spacing:0.245333pt;}
.ls52_c00209{letter-spacing:0.251467pt;}
.ls70_c00209{letter-spacing:0.257600pt;}
.ls23_c00209{letter-spacing:0.261440pt;}
.ls59_c00209{letter-spacing:0.263733pt;}
.ls10_c00209{letter-spacing:0.269867pt;}
.lsa_c00209{letter-spacing:0.288267pt;}
.ls65_c00209{letter-spacing:0.294400pt;}
.ls44_c00209{letter-spacing:0.306667pt;}
.lsf_c00209{letter-spacing:0.312800pt;}
.ls80_c00209{letter-spacing:0.318933pt;}
.ls34_c00209{letter-spacing:0.325067pt;}
.ls25_c00209{letter-spacing:0.331200pt;}
.ls9_c00209{letter-spacing:0.337333pt;}
.ls3a_c00209{letter-spacing:0.343467pt;}
.ls21_c00209{letter-spacing:0.349600pt;}
.lse_c00209{letter-spacing:0.355733pt;}
.ls39_c00209{letter-spacing:0.386400pt;}
.ls1f_c00209{letter-spacing:0.392533pt;}
.ls2b_c00209{letter-spacing:0.398667pt;}
.ls14_c00209{letter-spacing:0.410933pt;}
.ls5_c00209{letter-spacing:0.425600pt;}
.ls7d_c00209{letter-spacing:0.429333pt;}
.ls45_c00209{letter-spacing:0.441600pt;}
.lsd_c00209{letter-spacing:0.453867pt;}
.ls36_c00209{letter-spacing:0.466133pt;}
.ls2e_c00209{letter-spacing:0.478400pt;}
.ls57_c00209{letter-spacing:0.502933pt;}
.ls33_c00209{letter-spacing:0.509067pt;}
.ls4a_c00209{letter-spacing:0.521333pt;}
.ls2d_c00209{letter-spacing:0.545867pt;}
.ls1a_c00209{letter-spacing:0.552000pt;}
.ls55_c00209{letter-spacing:0.564267pt;}
.ls72_c00209{letter-spacing:0.570400pt;}
.ls24_c00209{letter-spacing:0.571520pt;}
.ls35_c00209{letter-spacing:0.576533pt;}
.ls16_c00209{letter-spacing:0.601067pt;}
.ls6_c00209{letter-spacing:0.607200pt;}
.ls5c_c00209{letter-spacing:0.619467pt;}
.ls51_c00209{letter-spacing:0.644000pt;}
.ls13_c00209{letter-spacing:0.656267pt;}
.ls4e_c00209{letter-spacing:0.668533pt;}
.ls2_c00209{letter-spacing:0.674667pt;}
.ls54_c00209{letter-spacing:0.680800pt;}
.ls7_c00209{letter-spacing:0.686933pt;}
.ls50_c00209{letter-spacing:0.693120pt;}
.ls32_c00209{letter-spacing:0.699200pt;}
.ls3_c00209{letter-spacing:0.705333pt;}
.ls1b_c00209{letter-spacing:0.711360pt;}
.ls3b_c00209{letter-spacing:0.717600pt;}
.ls11_c00209{letter-spacing:0.729867pt;}
.ls1_c00209{letter-spacing:0.736000pt;}
.ls3e_c00209{letter-spacing:0.760533pt;}
.ls2f_c00209{letter-spacing:0.785067pt;}
.ls48_c00209{letter-spacing:0.803467pt;}
.ls1c_c00209{letter-spacing:0.809600pt;}
.ls38_c00209{letter-spacing:0.828000pt;}
.ls0_c00209{letter-spacing:0.845120pt;}
.ls4_c00209{letter-spacing:0.852533pt;}
.ls75_c00209{letter-spacing:0.864800pt;}
.ls46_c00209{letter-spacing:0.870933pt;}
.ls22_c00209{letter-spacing:0.877067pt;}
.ls37_c00209{letter-spacing:0.907733pt;}
.ls5a_c00209{letter-spacing:0.962933pt;}
.ls8_c00209{letter-spacing:0.975200pt;}
.ls47_c00209{letter-spacing:0.993600pt;}
.ls31_c00209{letter-spacing:0.999733pt;}
.ls2a_c00209{letter-spacing:1.005867pt;}
.lsc_c00209{letter-spacing:1.012000pt;}
.ls4c_c00209{letter-spacing:1.070080pt;}
.ls1e_c00209{letter-spacing:1.153067pt;}
.ls15_c00209{letter-spacing:1.165333pt;}
.ls27_c00209{letter-spacing:1.275733pt;}
.ls40_c00209{letter-spacing:1.306400pt;}
.ls4f_c00209{letter-spacing:1.373867pt;}
.ls42_c00209{letter-spacing:1.422933pt;}
.ls20_c00209{letter-spacing:1.790933pt;}
.ls58_c00209{letter-spacing:2.257067pt;}
.ls3d_c00209{letter-spacing:2.275467pt;}
.ls5b_c00209{letter-spacing:2.613333pt;}
.ls29_c00209{letter-spacing:2.729333pt;}
.ls4d_c00209{letter-spacing:2.870400pt;}
.ls76_c00209{letter-spacing:3.040000pt;}
.ls86_c00209{letter-spacing:3.066667pt;}
.ws4_c00209{word-spacing:0.000000pt;}
.ws3_c00209{word-spacing:3.046613pt;}
.ws2_c00209{word-spacing:6.371733pt;}
.ws0_c00209{word-spacing:15.482453pt;}
.ws1_c00209{word-spacing:29.746133pt;}
._14_c00209{margin-left:-6.320000pt;}
._12_c00209{margin-left:-4.151467pt;}
._0_c00209{margin-left:-2.208000pt;}
._13_c00209{margin-left:-0.997600pt;}
._d_c00209{width:0.938400pt;}
._15_c00209{width:1.838667pt;}
._a_c00209{width:2.870400pt;}
._1_c00209{width:4.029600pt;}
._c_c00209{width:4.925067pt;}
._11_c00209{width:6.194667pt;}
._b_c00209{width:7.163733pt;}
._10_c00209{width:8.169600pt;}
._f_c00209{width:9.837867pt;}
._e_c00209{width:11.100533pt;}
._19_c00209{width:17.819467pt;}
._1a_c00209{width:19.009867pt;}
._9_c00209{width:20.092267pt;}
._6_c00209{width:21.317333pt;}
._8_c00209{width:22.405067pt;}
._7_c00209{width:23.424800pt;}
._3_c00209{width:25.183467pt;}
._2_c00209{width:26.913067pt;}
._5_c00209{width:29.752800pt;}
._18_c00209{width:30.878133pt;}
._4_c00209{width:31.942400pt;}
._16_c00209{width:33.365333pt;}
._17_c00209{width:35.318933pt;}
.fs0_c00209{font-size:52.266667pt;}
.fs4_c00209{font-size:52.800000pt;}
.fs6_c00209{font-size:58.666667pt;}
.fs1_c00209{font-size:60.800000pt;}
.fs2_c00209{font-size:61.333333pt;}
.fs5_c00209{font-size:68.266667pt;}
.fs3_c00209{font-size:70.933333pt;}
.y0_c00209{bottom:0.000000pt;}
.y22_c00209{bottom:59.840013pt;}
.y20_c00209{bottom:112.636680pt;}
.y21_c00209{bottom:112.640013pt;}
.y1f_c00209{bottom:140.160013pt;}
.y1e_c00209{bottom:140.160680pt;}
.y1d_c00209{bottom:167.040013pt;}
.y1c_c00209{bottom:222.093347pt;}
.y1b_c00209{bottom:277.133347pt;}
.y1a_c00209{bottom:331.213347pt;}
.y19_c00209{bottom:331.224680pt;}
.y18_c00209{bottom:386.578013pt;}
.y16_c00209{bottom:413.114680pt;}
.y17_c00209{bottom:413.120013pt;}
.y14_c00209{bottom:440.648680pt;}
.y15_c00209{bottom:440.653347pt;}
.y13_c00209{bottom:495.373347pt;}
.y12_c00209{bottom:523.196680pt;}
.y24_c00209{bottom:546.893347pt;}
.y23_c00209{bottom:550.080013pt;}
.y11_c00209{bottom:550.413347pt;}
.y10_c00209{bottom:605.452680pt;}
.ye_c00209{bottom:659.532013pt;}
.yf_c00209{bottom:659.533347pt;}
.yc_c00209{bottom:687.038680pt;}
.yd_c00209{bottom:687.040013pt;}
.yb_c00209{bottom:713.933347pt;}
.ya_c00209{bottom:769.276680pt;}
.y9_c00209{bottom:796.493347pt;}
.y7_c00209{bottom:851.193347pt;}
.y8_c00209{bottom:851.200013pt;}
.y6_c00209{bottom:878.732013pt;}
.y5_c00209{bottom:905.933347pt;}
.y4_c00209{bottom:905.934013pt;}
.y3_c00209{bottom:933.120013pt;}
.y2_c00209{bottom:988.173347pt;}
.y1_c00209{bottom:1056.973347pt;}
.h2_c00209{height:51.296875pt;}
.ha_c00209{height:51.820312pt;}
.h6_c00209{height:59.642187pt;}
.h3_c00209{height:60.195312pt;}
.h5_c00209{height:60.200646pt;}
.h8_c00209{height:60.208646pt;}
.hc_c00209{height:61.187500pt;}
.h9_c00209{height:61.229667pt;}
.h7_c00209{height:63.968750pt;}
.h4_c00209{height:69.630521pt;}
.hb_c00209{height:71.200000pt;}
.h1_c00209{height:1122.666667pt;}
.h0_c00209{height:1122.880013pt;}
.w1_c00209{width:793.333333pt;}
.w0_c00209{width:793.600000pt;}
.x0_c00209{left:0.000000pt;}
.x1a_c00209{left:110.190667pt;}
.xe_c00209{left:111.648000pt;}
.x1_c00209{left:112.893333pt;}
.xb_c00209{left:131.040000pt;}
.xc_c00209{left:146.400000pt;}
.x17_c00209{left:157.893333pt;}
.x15_c00209{left:158.866667pt;}
.x2_c00209{left:160.146667pt;}
.x13_c00209{left:185.760000pt;}
.x18_c00209{left:203.040000pt;}
.x14_c00209{left:235.226667pt;}
.x19_c00209{left:247.506667pt;}
.xf_c00209{left:257.120000pt;}
.x10_c00209{left:307.066667pt;}
.x9_c00209{left:334.906667pt;}
.xa_c00209{left:350.293333pt;}
.x1d_c00209{left:354.253333pt;}
.x1e_c00209{left:379.066667pt;}
.x11_c00209{left:383.866667pt;}
.x3_c00209{left:391.933333pt;}
.x12_c00209{left:404.333333pt;}
.x4_c00209{left:420.000000pt;}
.x16_c00209{left:422.186667pt;}
.x8_c00209{left:516.960000pt;}
.x5_c00209{left:557.053333pt;}
.x1b_c00209{left:570.120000pt;}
.x1c_c00209{left:598.693333pt;}
.xd_c00209{left:616.173333pt;}
.x6_c00209{left:635.693333pt;}
.x7_c00209{left:659.706667pt;}
.x20_c00209{left:760.120000pt;}
.x1f_c00209{left:761.053333pt;}
}





/* 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_c00210 {
    display:none;
  }
  .loading-indicator_c00210.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00210 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_c00210 { 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_c00210" -> "#page-container .classname_c00210")
 */
.pf_c00210 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00210 { /* 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_c00210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00210 { /* 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_c00210 { /* 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_c00210 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00210 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00210 {overflow:visible;}
  }
}
.c_c00210 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00210 { /* 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_c00210:after { /* webkit #35443 */
  content: '';
}
.t_c00210:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00210 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 */
}
.__c00210 { /* 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_c00210 { /* info for Javascript */
  display:none;
}
.l_c00210 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00210 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00210 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00210: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_c00210 {
    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_c00210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00210.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_c00210 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00210;src:url('chunks/assets/font_1a3ac078cf3def1b4cc07fc7.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.284668;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_c00210;src:url('chunks/assets/font_275fe14b104d189a7c06bbe8.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.284180;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_c00210;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;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:ff4_c00210;src:url('chunks/assets/font_649b6bdacab481af862e6a00.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:0.666000;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;}
.m3_c00210{transform:matrix(0.218802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218802,0.000000,0.000000,0.250000,0,0);}
.m2_c00210{transform:matrix(0.235533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235533,0.000000,0.000000,0.250000,0,0);}
.m5_c00210{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m0_c00210{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.m1_c00210{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);}
.m7_c00210{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m6_c00210{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m4_c00210{transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls8d_c00210{letter-spacing:-2.730000px;}
.ls8b_c00210{letter-spacing:-2.373000px;}
.ls81_c00210{letter-spacing:-2.331000px;}
.ls91_c00210{letter-spacing:-1.986540px;}
.ls8a_c00210{letter-spacing:-1.410240px;}
.ls9c_c00210{letter-spacing:-1.389960px;}
.ls88_c00210{letter-spacing:-1.349220px;}
.ls8e_c00210{letter-spacing:-0.549180px;}
.ls89_c00210{letter-spacing:-0.352560px;}
.ls82_c00210{letter-spacing:-0.264420px;}
.ls8c_c00210{letter-spacing:-0.257640px;}
.ls86_c00210{letter-spacing:-0.210180px;}
.ls9b_c00210{letter-spacing:-0.184680px;}
.ls9a_c00210{letter-spacing:-0.116280px;}
.ls92_c00210{letter-spacing:-0.033900px;}
.ls85_c00210{letter-spacing:0.000000px;}
.ls78_c00210{letter-spacing:0.033900px;}
.ls59_c00210{letter-spacing:0.040680px;}
.ls2c_c00210{letter-spacing:0.155940px;}
.ls4e_c00210{letter-spacing:0.189840px;}
.ls21_c00210{letter-spacing:0.216960px;}
.ls13_c00210{letter-spacing:0.325440px;}
.ls20_c00210{letter-spacing:0.339000px;}
.ls63_c00210{letter-spacing:0.454260px;}
.ls3_c00210{letter-spacing:0.474600px;}
.ls25_c00210{letter-spacing:0.515280px;}
.ls72_c00210{letter-spacing:0.589860px;}
.ls22_c00210{letter-spacing:0.610200px;}
.ls7f_c00210{letter-spacing:0.642960px;}
.ls7e_c00210{letter-spacing:0.656640px;}
.ls90_c00210{letter-spacing:0.657660px;}
.ls70_c00210{letter-spacing:0.663480px;}
.ls84_c00210{letter-spacing:0.678000px;}
.ls11_c00210{letter-spacing:0.705120px;}
.ls41_c00210{letter-spacing:0.739020px;}
.ls1e_c00210{letter-spacing:0.752580px;}
.ls1a_c00210{letter-spacing:0.786480px;}
.ls8_c00210{letter-spacing:0.793260px;}
.ls74_c00210{letter-spacing:0.800040px;}
.ls1d_c00210{letter-spacing:0.820380px;}
.ls27_c00210{letter-spacing:0.833940px;}
.ls5d_c00210{letter-spacing:0.881400px;}
.ls68_c00210{letter-spacing:0.894960px;}
.ls7_c00210{letter-spacing:0.915300px;}
.ls76_c00210{letter-spacing:0.922080px;}
.ls53_c00210{letter-spacing:0.949200px;}
.ls67_c00210{letter-spacing:0.955980px;}
.ls33_c00210{letter-spacing:0.983100px;}
.ls17_c00210{letter-spacing:0.989880px;}
.ls3f_c00210{letter-spacing:0.996660px;}
.ls7c_c00210{letter-spacing:1.019160px;}
.ls97_c00210{letter-spacing:1.023780px;}
.ls64_c00210{letter-spacing:1.030560px;}
.ls6b_c00210{letter-spacing:1.057680px;}
.ls83_c00210{letter-spacing:1.071240px;}
.ls1_c00210{letter-spacing:1.084800px;}
.ls4b_c00210{letter-spacing:1.091580px;}
.ls54_c00210{letter-spacing:1.098360px;}
.ls2f_c00210{letter-spacing:1.101240px;}
.lsb_c00210{letter-spacing:1.105140px;}
.ls2d_c00210{letter-spacing:1.118700px;}
.ls98_c00210{letter-spacing:1.125480px;}
.ls87_c00210{letter-spacing:1.132260px;}
.ls14_c00210{letter-spacing:1.149120px;}
.ls5a_c00210{letter-spacing:1.166160px;}
.ls55_c00210{letter-spacing:1.172940px;}
.ls3d_c00210{letter-spacing:1.179720px;}
.ls73_c00210{letter-spacing:1.186500px;}
.ls6d_c00210{letter-spacing:1.190160px;}
.ls96_c00210{letter-spacing:1.193280px;}
.ls51_c00210{letter-spacing:1.200060px;}
.ls3e_c00210{letter-spacing:1.213620px;}
.ls5_c00210{letter-spacing:1.220400px;}
.ls7a_c00210{letter-spacing:1.227180px;}
.ls38_c00210{letter-spacing:1.233960px;}
.ls1c_c00210{letter-spacing:1.254300px;}
.ls35_c00210{letter-spacing:1.261080px;}
.ls30_c00210{letter-spacing:1.267860px;}
.ls3b_c00210{letter-spacing:1.274640px;}
.ls28_c00210{letter-spacing:1.279080px;}
.ls23_c00210{letter-spacing:1.285920px;}
.ls6f_c00210{letter-spacing:1.288200px;}
.lsa_c00210{letter-spacing:1.294980px;}
.ls12_c00210{letter-spacing:1.301760px;}
.ls34_c00210{letter-spacing:1.308540px;}
.ls5c_c00210{letter-spacing:1.322100px;}
.ls4d_c00210{letter-spacing:1.328880px;}
.ls2a_c00210{letter-spacing:1.342440px;}
.lsd_c00210{letter-spacing:1.349220px;}
.ls26_c00210{letter-spacing:1.356000px;}
.ls5e_c00210{letter-spacing:1.376340px;}
.ls43_c00210{letter-spacing:1.383120px;}
.ls79_c00210{letter-spacing:1.389900px;}
.ls47_c00210{letter-spacing:1.403460px;}
.ls37_c00210{letter-spacing:1.410240px;}
.ls44_c00210{letter-spacing:1.423800px;}
.ls19_c00210{letter-spacing:1.425600px;}
.ls29_c00210{letter-spacing:1.429560px;}
.ls9_c00210{letter-spacing:1.437360px;}
.ls18_c00210{letter-spacing:1.440000px;}
.lsc_c00210{letter-spacing:1.464480px;}
.ls2_c00210{letter-spacing:1.478040px;}
.ls61_c00210{letter-spacing:1.484820px;}
.ls52_c00210{letter-spacing:1.518720px;}
.ls10_c00210{letter-spacing:1.525500px;}
.ls69_c00210{letter-spacing:1.539060px;}
.ls4a_c00210{letter-spacing:1.552620px;}
.ls2b_c00210{letter-spacing:1.559400px;}
.ls6_c00210{letter-spacing:1.572960px;}
.lse_c00210{letter-spacing:1.593300px;}
.ls58_c00210{letter-spacing:1.606860px;}
.ls8f_c00210{letter-spacing:1.633980px;}
.ls66_c00210{letter-spacing:1.640760px;}
.ls49_c00210{letter-spacing:1.647540px;}
.ls36_c00210{letter-spacing:1.654320px;}
.ls6e_c00210{letter-spacing:1.661100px;}
.ls93_c00210{letter-spacing:1.667880px;}
.ls50_c00210{letter-spacing:1.674660px;}
.ls4_c00210{letter-spacing:1.701780px;}
.ls94_c00210{letter-spacing:1.708560px;}
.ls1f_c00210{letter-spacing:1.735680px;}
.ls4c_c00210{letter-spacing:1.762800px;}
.ls71_c00210{letter-spacing:1.776360px;}
.ls24_c00210{letter-spacing:1.798920px;}
.ls45_c00210{letter-spacing:1.810260px;}
.ls3c_c00210{letter-spacing:1.817040px;}
.ls57_c00210{letter-spacing:1.830600px;}
.ls0_c00210{letter-spacing:1.850940px;}
.ls31_c00210{letter-spacing:1.871280px;}
.ls32_c00210{letter-spacing:1.878060px;}
.ls6a_c00210{letter-spacing:1.891620px;}
.ls1b_c00210{letter-spacing:1.911960px;}
.ls15_c00210{letter-spacing:1.915200px;}
.ls7b_c00210{letter-spacing:1.918740px;}
.ls16_c00210{letter-spacing:1.945860px;}
.ls75_c00210{letter-spacing:1.952640px;}
.ls42_c00210{letter-spacing:1.959420px;}
.ls5f_c00210{letter-spacing:1.966200px;}
.ls56_c00210{letter-spacing:2.095020px;}
.ls5b_c00210{letter-spacing:2.108580px;}
.ls62_c00210{letter-spacing:2.115360px;}
.ls48_c00210{letter-spacing:2.149260px;}
.ls39_c00210{letter-spacing:2.162820px;}
.ls60_c00210{letter-spacing:2.169600px;}
.ls65_c00210{letter-spacing:2.203500px;}
.ls6c_c00210{letter-spacing:2.271300px;}
.ls2e_c00210{letter-spacing:2.332320px;}
.ls77_c00210{letter-spacing:2.359440px;}
.ls46_c00210{letter-spacing:2.617080px;}
.ls40_c00210{letter-spacing:2.650980px;}
.ls80_c00210{letter-spacing:2.705220px;}
.ls3a_c00210{letter-spacing:2.942520px;}
.ls4f_c00210{letter-spacing:2.983200px;}
.ls7d_c00210{letter-spacing:3.112020px;}
.lsf_c00210{letter-spacing:3.356100px;}
.ls95_c00210{letter-spacing:3.390000px;}
.ls99_c00210{letter-spacing:3.420000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{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__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00210{word-spacing:-0.435000px;}
.ws1_c00210{word-spacing:-0.333840px;}
.ws5_c00210{word-spacing:0.000000px;}
.ws4_c00210{word-spacing:1.687440px;}
.ws2_c00210{word-spacing:2.877600px;}
.ws0_c00210{word-spacing:17.106240px;}
._15_c00210{margin-left:-7.159680px;}
._6_c00210{margin-left:-6.041340px;}
._5_c00210{margin-left:-4.298160px;}
._7_c00210{margin-left:-3.056940px;}
._4_c00210{margin-left:-1.925880px;}
._0_c00210{width:1.233960px;}
._1_c00210{width:2.983200px;}
._8_c00210{width:4.375260px;}
._a_c00210{width:5.728260px;}
._2_c00210{width:6.820680px;}
._3_c00210{width:8.332620px;}
._9_c00210{width:9.597960px;}
._f_c00210{width:10.929720px;}
._b_c00210{width:12.638340px;}
._d_c00210{width:15.173640px;}
._e_c00210{width:16.522860px;}
._14_c00210{width:17.566980px;}
._c_c00210{width:19.438260px;}
._11_c00210{width:21.004440px;}
._10_c00210{width:22.631220px;}
._12_c00210{width:23.879160px;}
._13_c00210{width:27.642060px;}
.fc0_c00210{color:transparent;}
.fs7_c00210{font-size:53.280000px;}
.fs8_c00210{font-size:59.400000px;}
.fs0_c00210{font-size:66.600000px;}
.fs6_c00210{font-size:67.200000px;}
.fs1_c00210{font-size:67.800000px;}
.fs2_c00210{font-size:68.400000px;}
.fs3_c00210{font-size:69.000000px;}
.fs4_c00210{font-size:72.000000px;}
.fs5_c00210{font-size:78.000000px;}
.y0_c00210{bottom:0.000000px;}
.y1b_c00210{bottom:70.920006px;}
.y1a_c00210{bottom:156.975006px;}
.y19_c00210{bottom:218.880006px;}
.y18_c00210{bottom:311.775006px;}
.y17_c00210{bottom:311.776206px;}
.y16_c00210{bottom:342.015006px;}
.y15_c00210{bottom:404.280006px;}
.y14_c00210{bottom:468.007356px;}
.y13_c00210{bottom:498.975006px;}
.y12_c00210{bottom:529.929306px;}
.y11_c00210{bottom:560.882556px;}
.y10_c00210{bottom:591.850206px;}
.yf_c00210{bottom:622.800906px;}
.ye_c00210{bottom:653.395656px;}
.yd_c00210{bottom:684.007356px;}
.yc_c00210{bottom:714.975006px;}
.yb_c00210{bottom:777.255006px;}
.ya_c00210{bottom:807.480006px;}
.y9_c00210{bottom:838.800006px;}
.y8_c00210{bottom:886.680006px;}
.y7_c00210{bottom:886.681506px;}
.y6_c00210{bottom:935.277156px;}
.y5_c00210{bottom:965.160006px;}
.y4_c00210{bottom:1027.090506px;}
.y3_c00210{bottom:1088.287356px;}
.y2_c00210{bottom:1119.255006px;}
.y1_c00210{bottom:1196.640006px;}
.ha_c00210{height:35.484480px;}
.hc_c00210{height:58.297852px;}
.h2_c00210{height:65.364258px;}
.h3_c00210{height:66.541992px;}
.h9_c00210{height:66.564792px;}
.h6_c00210{height:67.097461px;}
.h8_c00210{height:70.077300px;}
.hb_c00210{height:70.087500px;}
.h5_c00210{height:70.628906px;}
.h4_c00210{height:71.982844px;}
.h7_c00210{height:76.552734px;}
.h1_c00210{height:1263.000000px;}
.h0_c00210{height:1263.240006px;}
.w1_c00210{width:892.500000px;}
.w0_c00210{width:892.799998px;}
.x0_c00210{left:0.000000px;}
.x8_c00210{left:117.693299px;}
.x2_c00210{left:121.649998px;}
.x1_c00210{left:122.684999px;}
.xb_c00210{left:170.084998px;}
.x5_c00210{left:171.641549px;}
.x3_c00210{left:174.503399px;}
.x4_c00210{left:257.204998px;}
.xd_c00210{left:332.459999px;}
.xe_c00210{left:354.449999px;}
.x6_c00210{left:407.684999px;}
.x13_c00210{left:421.409999px;}
.xc_c00210{left:437.039999px;}
.x7_c00210{left:439.604998px;}
.x11_c00210{left:447.689999px;}
.x12_c00210{left:464.639998px;}
.xf_c00210{left:632.339998px;}
.x10_c00210{left:657.344998px;}
.x9_c00210{left:708.509999px;}
.xa_c00210{left:738.179999px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls8d_c00210{letter-spacing:-2.426667pt;}
.ls8b_c00210{letter-spacing:-2.109333pt;}
.ls81_c00210{letter-spacing:-2.072000pt;}
.ls91_c00210{letter-spacing:-1.765813pt;}
.ls8a_c00210{letter-spacing:-1.253547pt;}
.ls9c_c00210{letter-spacing:-1.235520pt;}
.ls88_c00210{letter-spacing:-1.199307pt;}
.ls8e_c00210{letter-spacing:-0.488160pt;}
.ls89_c00210{letter-spacing:-0.313387pt;}
.ls82_c00210{letter-spacing:-0.235040pt;}
.ls8c_c00210{letter-spacing:-0.229013pt;}
.ls86_c00210{letter-spacing:-0.186827pt;}
.ls9b_c00210{letter-spacing:-0.164160pt;}
.ls9a_c00210{letter-spacing:-0.103360pt;}
.ls92_c00210{letter-spacing:-0.030133pt;}
.ls85_c00210{letter-spacing:0.000000pt;}
.ls78_c00210{letter-spacing:0.030133pt;}
.ls59_c00210{letter-spacing:0.036160pt;}
.ls2c_c00210{letter-spacing:0.138613pt;}
.ls4e_c00210{letter-spacing:0.168747pt;}
.ls21_c00210{letter-spacing:0.192853pt;}
.ls13_c00210{letter-spacing:0.289280pt;}
.ls20_c00210{letter-spacing:0.301333pt;}
.ls63_c00210{letter-spacing:0.403787pt;}
.ls3_c00210{letter-spacing:0.421867pt;}
.ls25_c00210{letter-spacing:0.458027pt;}
.ls72_c00210{letter-spacing:0.524320pt;}
.ls22_c00210{letter-spacing:0.542400pt;}
.ls7f_c00210{letter-spacing:0.571520pt;}
.ls7e_c00210{letter-spacing:0.583680pt;}
.ls90_c00210{letter-spacing:0.584587pt;}
.ls70_c00210{letter-spacing:0.589760pt;}
.ls84_c00210{letter-spacing:0.602667pt;}
.ls11_c00210{letter-spacing:0.626773pt;}
.ls41_c00210{letter-spacing:0.656907pt;}
.ls1e_c00210{letter-spacing:0.668960pt;}
.ls1a_c00210{letter-spacing:0.699093pt;}
.ls8_c00210{letter-spacing:0.705120pt;}
.ls74_c00210{letter-spacing:0.711147pt;}
.ls1d_c00210{letter-spacing:0.729227pt;}
.ls27_c00210{letter-spacing:0.741280pt;}
.ls5d_c00210{letter-spacing:0.783467pt;}
.ls68_c00210{letter-spacing:0.795520pt;}
.ls7_c00210{letter-spacing:0.813600pt;}
.ls76_c00210{letter-spacing:0.819627pt;}
.ls53_c00210{letter-spacing:0.843733pt;}
.ls67_c00210{letter-spacing:0.849760pt;}
.ls33_c00210{letter-spacing:0.873867pt;}
.ls17_c00210{letter-spacing:0.879893pt;}
.ls3f_c00210{letter-spacing:0.885920pt;}
.ls7c_c00210{letter-spacing:0.905920pt;}
.ls97_c00210{letter-spacing:0.910027pt;}
.ls64_c00210{letter-spacing:0.916053pt;}
.ls6b_c00210{letter-spacing:0.940160pt;}
.ls83_c00210{letter-spacing:0.952213pt;}
.ls1_c00210{letter-spacing:0.964267pt;}
.ls4b_c00210{letter-spacing:0.970293pt;}
.ls54_c00210{letter-spacing:0.976320pt;}
.ls2f_c00210{letter-spacing:0.978880pt;}
.lsb_c00210{letter-spacing:0.982347pt;}
.ls2d_c00210{letter-spacing:0.994400pt;}
.ls98_c00210{letter-spacing:1.000427pt;}
.ls87_c00210{letter-spacing:1.006453pt;}
.ls14_c00210{letter-spacing:1.021440pt;}
.ls5a_c00210{letter-spacing:1.036587pt;}
.ls55_c00210{letter-spacing:1.042613pt;}
.ls3d_c00210{letter-spacing:1.048640pt;}
.ls73_c00210{letter-spacing:1.054667pt;}
.ls6d_c00210{letter-spacing:1.057920pt;}
.ls96_c00210{letter-spacing:1.060693pt;}
.ls51_c00210{letter-spacing:1.066720pt;}
.ls3e_c00210{letter-spacing:1.078773pt;}
.ls5_c00210{letter-spacing:1.084800pt;}
.ls7a_c00210{letter-spacing:1.090827pt;}
.ls38_c00210{letter-spacing:1.096853pt;}
.ls1c_c00210{letter-spacing:1.114933pt;}
.ls35_c00210{letter-spacing:1.120960pt;}
.ls30_c00210{letter-spacing:1.126987pt;}
.ls3b_c00210{letter-spacing:1.133013pt;}
.ls28_c00210{letter-spacing:1.136960pt;}
.ls23_c00210{letter-spacing:1.143040pt;}
.ls6f_c00210{letter-spacing:1.145067pt;}
.lsa_c00210{letter-spacing:1.151093pt;}
.ls12_c00210{letter-spacing:1.157120pt;}
.ls34_c00210{letter-spacing:1.163147pt;}
.ls5c_c00210{letter-spacing:1.175200pt;}
.ls4d_c00210{letter-spacing:1.181227pt;}
.ls2a_c00210{letter-spacing:1.193280pt;}
.lsd_c00210{letter-spacing:1.199307pt;}
.ls26_c00210{letter-spacing:1.205333pt;}
.ls5e_c00210{letter-spacing:1.223413pt;}
.ls43_c00210{letter-spacing:1.229440pt;}
.ls79_c00210{letter-spacing:1.235467pt;}
.ls47_c00210{letter-spacing:1.247520pt;}
.ls37_c00210{letter-spacing:1.253547pt;}
.ls44_c00210{letter-spacing:1.265600pt;}
.ls19_c00210{letter-spacing:1.267200pt;}
.ls29_c00210{letter-spacing:1.270720pt;}
.ls9_c00210{letter-spacing:1.277653pt;}
.ls18_c00210{letter-spacing:1.280000pt;}
.lsc_c00210{letter-spacing:1.301760pt;}
.ls2_c00210{letter-spacing:1.313813pt;}
.ls61_c00210{letter-spacing:1.319840pt;}
.ls52_c00210{letter-spacing:1.349973pt;}
.ls10_c00210{letter-spacing:1.356000pt;}
.ls69_c00210{letter-spacing:1.368053pt;}
.ls4a_c00210{letter-spacing:1.380107pt;}
.ls2b_c00210{letter-spacing:1.386133pt;}
.ls6_c00210{letter-spacing:1.398187pt;}
.lse_c00210{letter-spacing:1.416267pt;}
.ls58_c00210{letter-spacing:1.428320pt;}
.ls8f_c00210{letter-spacing:1.452427pt;}
.ls66_c00210{letter-spacing:1.458453pt;}
.ls49_c00210{letter-spacing:1.464480pt;}
.ls36_c00210{letter-spacing:1.470507pt;}
.ls6e_c00210{letter-spacing:1.476533pt;}
.ls93_c00210{letter-spacing:1.482560pt;}
.ls50_c00210{letter-spacing:1.488587pt;}
.ls4_c00210{letter-spacing:1.512693pt;}
.ls94_c00210{letter-spacing:1.518720pt;}
.ls1f_c00210{letter-spacing:1.542827pt;}
.ls4c_c00210{letter-spacing:1.566933pt;}
.ls71_c00210{letter-spacing:1.578987pt;}
.ls24_c00210{letter-spacing:1.599040pt;}
.ls45_c00210{letter-spacing:1.609120pt;}
.ls3c_c00210{letter-spacing:1.615147pt;}
.ls57_c00210{letter-spacing:1.627200pt;}
.ls0_c00210{letter-spacing:1.645280pt;}
.ls31_c00210{letter-spacing:1.663360pt;}
.ls32_c00210{letter-spacing:1.669387pt;}
.ls6a_c00210{letter-spacing:1.681440pt;}
.ls1b_c00210{letter-spacing:1.699520pt;}
.ls15_c00210{letter-spacing:1.702400pt;}
.ls7b_c00210{letter-spacing:1.705547pt;}
.ls16_c00210{letter-spacing:1.729653pt;}
.ls75_c00210{letter-spacing:1.735680pt;}
.ls42_c00210{letter-spacing:1.741707pt;}
.ls5f_c00210{letter-spacing:1.747733pt;}
.ls56_c00210{letter-spacing:1.862240pt;}
.ls5b_c00210{letter-spacing:1.874293pt;}
.ls62_c00210{letter-spacing:1.880320pt;}
.ls48_c00210{letter-spacing:1.910453pt;}
.ls39_c00210{letter-spacing:1.922507pt;}
.ls60_c00210{letter-spacing:1.928533pt;}
.ls65_c00210{letter-spacing:1.958667pt;}
.ls6c_c00210{letter-spacing:2.018933pt;}
.ls2e_c00210{letter-spacing:2.073173pt;}
.ls77_c00210{letter-spacing:2.097280pt;}
.ls46_c00210{letter-spacing:2.326293pt;}
.ls40_c00210{letter-spacing:2.356427pt;}
.ls80_c00210{letter-spacing:2.404640pt;}
.ls3a_c00210{letter-spacing:2.615573pt;}
.ls4f_c00210{letter-spacing:2.651733pt;}
.ls7d_c00210{letter-spacing:2.766240pt;}
.lsf_c00210{letter-spacing:2.983200pt;}
.ls95_c00210{letter-spacing:3.013333pt;}
.ls99_c00210{letter-spacing:3.040000pt;}
.ws3_c00210{word-spacing:-0.386667pt;}
.ws1_c00210{word-spacing:-0.296747pt;}
.ws5_c00210{word-spacing:0.000000pt;}
.ws4_c00210{word-spacing:1.499947pt;}
.ws2_c00210{word-spacing:2.557867pt;}
.ws0_c00210{word-spacing:15.205547pt;}
._15_c00210{margin-left:-6.364160pt;}
._6_c00210{margin-left:-5.370080pt;}
._5_c00210{margin-left:-3.820587pt;}
._7_c00210{margin-left:-2.717280pt;}
._4_c00210{margin-left:-1.711893pt;}
._0_c00210{width:1.096853pt;}
._1_c00210{width:2.651733pt;}
._8_c00210{width:3.889120pt;}
._a_c00210{width:5.091787pt;}
._2_c00210{width:6.062827pt;}
._3_c00210{width:7.406773pt;}
._9_c00210{width:8.531520pt;}
._f_c00210{width:9.715307pt;}
._b_c00210{width:11.234080pt;}
._d_c00210{width:13.487680pt;}
._e_c00210{width:14.686987pt;}
._14_c00210{width:15.615093pt;}
._c_c00210{width:17.278453pt;}
._11_c00210{width:18.670613pt;}
._10_c00210{width:20.116640pt;}
._12_c00210{width:21.225920pt;}
._13_c00210{width:24.570720pt;}
.fs7_c00210{font-size:47.360000pt;}
.fs8_c00210{font-size:52.800000pt;}
.fs0_c00210{font-size:59.200000pt;}
.fs6_c00210{font-size:59.733333pt;}
.fs1_c00210{font-size:60.266667pt;}
.fs2_c00210{font-size:60.800000pt;}
.fs3_c00210{font-size:61.333333pt;}
.fs4_c00210{font-size:64.000000pt;}
.fs5_c00210{font-size:69.333333pt;}
.y0_c00210{bottom:0.000000pt;}
.y1b_c00210{bottom:63.040005pt;}
.y1a_c00210{bottom:139.533339pt;}
.y19_c00210{bottom:194.560005pt;}
.y18_c00210{bottom:277.133339pt;}
.y17_c00210{bottom:277.134405pt;}
.y16_c00210{bottom:304.013339pt;}
.y15_c00210{bottom:359.360005pt;}
.y14_c00210{bottom:416.006539pt;}
.y13_c00210{bottom:443.533339pt;}
.y12_c00210{bottom:471.048272pt;}
.y11_c00210{bottom:498.562272pt;}
.y10_c00210{bottom:526.089072pt;}
.yf_c00210{bottom:553.600805pt;}
.ye_c00210{bottom:580.796139pt;}
.yd_c00210{bottom:608.006539pt;}
.yc_c00210{bottom:635.533339pt;}
.yb_c00210{bottom:690.893339pt;}
.ya_c00210{bottom:717.760005pt;}
.y9_c00210{bottom:745.600005pt;}
.y8_c00210{bottom:788.160005pt;}
.y7_c00210{bottom:788.161339pt;}
.y6_c00210{bottom:831.357472pt;}
.y5_c00210{bottom:857.920005pt;}
.y4_c00210{bottom:912.969339pt;}
.y3_c00210{bottom:967.366539pt;}
.y2_c00210{bottom:994.893339pt;}
.y1_c00210{bottom:1063.680005pt;}
.ha_c00210{height:31.541760pt;}
.hc_c00210{height:51.820312pt;}
.h2_c00210{height:58.101562pt;}
.h3_c00210{height:59.148438pt;}
.h9_c00210{height:59.168704pt;}
.h6_c00210{height:59.642187pt;}
.h8_c00210{height:62.290933pt;}
.hb_c00210{height:62.300000pt;}
.h5_c00210{height:62.781250pt;}
.h4_c00210{height:63.984750pt;}
.h7_c00210{height:68.046875pt;}
.h1_c00210{height:1122.666667pt;}
.h0_c00210{height:1122.880005pt;}
.w1_c00210{width:793.333333pt;}
.w0_c00210{width:793.599999pt;}
.x0_c00210{left:0.000000pt;}
.x8_c00210{left:104.616265pt;}
.x2_c00210{left:108.133332pt;}
.x1_c00210{left:109.053332pt;}
.xb_c00210{left:151.186665pt;}
.x5_c00210{left:152.570265pt;}
.x3_c00210{left:155.114132pt;}
.x4_c00210{left:228.626665pt;}
.xd_c00210{left:295.519999pt;}
.xe_c00210{left:315.066665pt;}
.x6_c00210{left:362.386665pt;}
.x13_c00210{left:374.586665pt;}
.xc_c00210{left:388.479999pt;}
.x7_c00210{left:390.759999pt;}
.x11_c00210{left:397.946665pt;}
.x12_c00210{left:413.013332pt;}
.xf_c00210{left:562.079999pt;}
.x10_c00210{left:584.306665pt;}
.x9_c00210{left:629.786665pt;}
.xa_c00210{left:656.159999pt;}
}





/* 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_c00211 {
    display:none;
  }
  .loading-indicator_c00211.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00211 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_c00211 { 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_c00211" -> "#page-container .classname_c00211")
 */
.pf_c00211 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00211 { /* 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_c00211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00211 { /* 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_c00211 { /* 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_c00211 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00211 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00211 {overflow:visible;}
  }
}
.c_c00211 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00211 { /* 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_c00211:after { /* webkit #35443 */
  content: '';
}
.t_c00211:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00211 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 */
}
.__c00211 { /* 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_c00211 { /* info for Javascript */
  display:none;
}
.l_c00211 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00211 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00211 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00211: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_c00211 {
    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_c00211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00211.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_c00211 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00211;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;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:ff2_c00211;src:url('chunks/assets/font_e27e5d47622687edc86891dc.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.284668;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_c00211;src:url('chunks/assets/font_2b966e4b0324b660c9a4bebe.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.284180;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;}
.m3_c00211{transform:matrix(0.125342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125342,0.000000,0.000000,0.250000,0,0);}
.m0_c00211{transform:matrix(0.128358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128358,0.000000,0.000000,0.250000,0,0);}
.m1_c00211{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);}
.m2_c00211{transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);}
.m4_c00211{transform:matrix(0.269975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269975,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.v1_c00211{vertical-align:71.995200px;}
.ls8_c00211{letter-spacing:-2.436000px;}
.ls10_c00211{letter-spacing:-2.352000px;}
.lsa_c00211{letter-spacing:-1.392840px;}
.lsb_c00211{letter-spacing:-0.468660px;}
.ls9_c00211{letter-spacing:0.000000px;}
.ls5_c00211{letter-spacing:0.349800px;}
.lsc_c00211{letter-spacing:0.394320px;}
.lsf_c00211{letter-spacing:0.866700px;}
.ls4_c00211{letter-spacing:0.871320px;}
.ls0_c00211{letter-spacing:0.960360px;}
.ls3_c00211{letter-spacing:1.004880px;}
.lsd_c00211{letter-spacing:1.011240px;}
.ls7_c00211{letter-spacing:1.113000px;}
.ls1_c00211{letter-spacing:1.291080px;}
.ls2_c00211{letter-spacing:1.341960px;}
.ls6_c00211{letter-spacing:1.984320px;}
.lse_c00211{letter-spacing:3.210000px;}
.ls11_c00211{letter-spacing:3.330000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{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__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00211{word-spacing:-5.266080px;}
.ws1_c00211{word-spacing:-1.348320px;}
.ws4_c00211{word-spacing:0.000000px;}
.ws2_c00211{word-spacing:3.192720px;}
.ws0_c00211{word-spacing:5.634960px;}
._1_c00211{width:3.402600px;}
._0_c00211{width:97.517880px;}
.fc0_c00211{color:transparent;}
.fs1_c00211{font-size:60.000000px;}
.fs5_c00211{font-size:61.800000px;}
.fs2_c00211{font-size:63.000000px;}
.fs3_c00211{font-size:63.600000px;}
.fs4_c00211{font-size:64.200000px;}
.fs7_c00211{font-size:66.600000px;}
.fs6_c00211{font-size:67.200000px;}
.fs0_c00211{font-size:69.600000px;}
.y0_c00211{bottom:0.000000px;}
.y6_c00211{bottom:148.314300px;}
.y5_c00211{bottom:148.680000px;}
.y4_c00211{bottom:167.040000px;}
.y3_c00211{bottom:371.175000px;}
.y2_c00211{bottom:772.200000px;}
.y7_c00211{bottom:775.440000px;}
.ya_c00211{bottom:910.815000px;}
.y9_c00211{bottom:1077.855000px;}
.y1_c00211{bottom:1080.375000px;}
.y8_c00211{bottom:1145.535000px;}
.h3_c00211{height:58.886719px;}
.h8_c00211{height:60.653320px;}
.h4_c00211{height:61.831055px;}
.h7_c00211{height:62.388867px;}
.h5_c00211{height:63.008789px;}
.ha_c00211{height:65.364258px;}
.h9_c00211{height:65.953125px;}
.h2_c00211{height:72.590625px;}
.h6_c00211{height:134.384067px;}
.h1_c00211{height:1263.000000px;}
.h0_c00211{height:1263.240000px;}
.w1_c00211{width:892.500000px;}
.w0_c00211{width:892.800000px;}
.x0_c00211{left:0.000000px;}
.x1_c00211{left:120.390000px;}
.x4_c00211{left:123.195000px;}
.x2_c00211{left:268.395000px;}
.x3_c00211{left:305.460000px;}
.x5_c00211{left:333.933900px;}
.x6_c00211{left:578.070000px;}
.x7_c00211{left:673.830000px;}
.xa_c00211{left:689.130000px;}
.x8_c00211{left:747.525000px;}
.x9_c00211{left:795.675000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.v1_c00211{vertical-align:63.995733pt;}
.ls8_c00211{letter-spacing:-2.165333pt;}
.ls10_c00211{letter-spacing:-2.090667pt;}
.lsa_c00211{letter-spacing:-1.238080pt;}
.lsb_c00211{letter-spacing:-0.416587pt;}
.ls9_c00211{letter-spacing:0.000000pt;}
.ls5_c00211{letter-spacing:0.310933pt;}
.lsc_c00211{letter-spacing:0.350507pt;}
.lsf_c00211{letter-spacing:0.770400pt;}
.ls4_c00211{letter-spacing:0.774507pt;}
.ls0_c00211{letter-spacing:0.853653pt;}
.ls3_c00211{letter-spacing:0.893227pt;}
.lsd_c00211{letter-spacing:0.898880pt;}
.ls7_c00211{letter-spacing:0.989333pt;}
.ls1_c00211{letter-spacing:1.147627pt;}
.ls2_c00211{letter-spacing:1.192853pt;}
.ls6_c00211{letter-spacing:1.763840pt;}
.lse_c00211{letter-spacing:2.853333pt;}
.ls11_c00211{letter-spacing:2.960000pt;}
.ws3_c00211{word-spacing:-4.680960pt;}
.ws1_c00211{word-spacing:-1.198507pt;}
.ws4_c00211{word-spacing:0.000000pt;}
.ws2_c00211{word-spacing:2.837973pt;}
.ws0_c00211{word-spacing:5.008853pt;}
._1_c00211{width:3.024533pt;}
._0_c00211{width:86.682560pt;}
.fs1_c00211{font-size:53.333333pt;}
.fs5_c00211{font-size:54.933333pt;}
.fs2_c00211{font-size:56.000000pt;}
.fs3_c00211{font-size:56.533333pt;}
.fs4_c00211{font-size:57.066667pt;}
.fs7_c00211{font-size:59.200000pt;}
.fs6_c00211{font-size:59.733333pt;}
.fs0_c00211{font-size:61.866667pt;}
.y0_c00211{bottom:0.000000pt;}
.y6_c00211{bottom:131.834933pt;}
.y5_c00211{bottom:132.160000pt;}
.y4_c00211{bottom:148.480000pt;}
.y3_c00211{bottom:329.933333pt;}
.y2_c00211{bottom:686.400000pt;}
.y7_c00211{bottom:689.280000pt;}
.ya_c00211{bottom:809.613333pt;}
.y9_c00211{bottom:958.093333pt;}
.y1_c00211{bottom:960.333333pt;}
.y8_c00211{bottom:1018.253333pt;}
.h3_c00211{height:52.343750pt;}
.h8_c00211{height:53.914062pt;}
.h4_c00211{height:54.960938pt;}
.h7_c00211{height:55.456771pt;}
.h5_c00211{height:56.007812pt;}
.ha_c00211{height:58.101562pt;}
.h9_c00211{height:58.625000pt;}
.h2_c00211{height:64.525000pt;}
.h6_c00211{height:119.452504pt;}
.h1_c00211{height:1122.666667pt;}
.h0_c00211{height:1122.880000pt;}
.w1_c00211{width:793.333333pt;}
.w0_c00211{width:793.600000pt;}
.x0_c00211{left:0.000000pt;}
.x1_c00211{left:107.013333pt;}
.x4_c00211{left:109.506667pt;}
.x2_c00211{left:238.573333pt;}
.x3_c00211{left:271.520000pt;}
.x5_c00211{left:296.830133pt;}
.x6_c00211{left:513.840000pt;}
.x7_c00211{left:598.960000pt;}
.xa_c00211{left:612.560000pt;}
.x8_c00211{left:664.466667pt;}
.x9_c00211{left:707.266667pt;}
}





/* 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_c00212 {
    display:none;
  }
  .loading-indicator_c00212.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00212 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_c00212 { 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_c00212" -> "#page-container .classname_c00212")
 */
.pf_c00212 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00212 { /* 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_c00212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00212 { /* 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_c00212 { /* 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_c00212 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00212 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00212 {overflow:visible;}
  }
}
.c_c00212 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00212 { /* 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_c00212:after { /* webkit #35443 */
  content: '';
}
.t_c00212:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00212 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 */
}
.__c00212 { /* 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_c00212 { /* info for Javascript */
  display:none;
}
.l_c00212 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00212 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00212 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00212: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_c00212 {
    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_c00212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00212.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_c00212 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00212;src:url('chunks/assets/font_780f6208c032535d80943604.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.284668;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_c00212;src:url('chunks/assets/font_7a739d5ff9d34ead8f67ab8d.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.311035;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_c00212;src:url('chunks/assets/font_da53acb9a6b1ecbe27405693.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;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;}
.m5_c00212{transform:matrix(0.226438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226438,0.000000,0.000000,0.250000,0,0);}
.m6_c00212{transform:matrix(0.246228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246228,0.000000,0.000000,0.250000,0,0);}
.m2_c00212{transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m4_c00212{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m3_c00212{transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);}
.m0_c00212{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);}
.v0_c00212{vertical-align:0.000000px;}
.ls35_c00212{letter-spacing:-2.436000px;}
.ls85_c00212{letter-spacing:-2.032320px;}
.ls4b_c00212{letter-spacing:-1.886160px;}
.ls30_c00212{letter-spacing:-1.649520px;}
.ls5e_c00212{letter-spacing:-1.531200px;}
.ls3b_c00212{letter-spacing:-1.426800px;}
.ls57_c00212{letter-spacing:-1.343280px;}
.ls83_c00212{letter-spacing:-1.266720px;}
.ls60_c00212{letter-spacing:-1.224960px;}
.ls46_c00212{letter-spacing:-1.218000px;}
.ls62_c00212{letter-spacing:-1.169280px;}
.ls82_c00212{letter-spacing:-1.155360px;}
.ls77_c00212{letter-spacing:-1.134480px;}
.ls2d_c00212{letter-spacing:-1.064880px;}
.ls79_c00212{letter-spacing:-1.030080px;}
.ls44_c00212{letter-spacing:-0.981360px;}
.ls56_c00212{letter-spacing:-0.974400px;}
.ls69_c00212{letter-spacing:-0.946560px;}
.ls89_c00212{letter-spacing:-0.918720px;}
.ls50_c00212{letter-spacing:-0.911760px;}
.ls3f_c00212{letter-spacing:-0.904800px;}
.ls41_c00212{letter-spacing:-0.897840px;}
.ls8c_c00212{letter-spacing:-0.890880px;}
.ls6d_c00212{letter-spacing:-0.883920px;}
.ls58_c00212{letter-spacing:-0.876960px;}
.ls6b_c00212{letter-spacing:-0.863040px;}
.ls80_c00212{letter-spacing:-0.856080px;}
.ls8b_c00212{letter-spacing:-0.828240px;}
.ls4d_c00212{letter-spacing:-0.821280px;}
.ls36_c00212{letter-spacing:-0.807360px;}
.ls52_c00212{letter-spacing:-0.800400px;}
.ls7b_c00212{letter-spacing:-0.689040px;}
.ls8e_c00212{letter-spacing:-0.688080px;}
.ls34_c00212{letter-spacing:-0.668160px;}
.ls4e_c00212{letter-spacing:-0.654240px;}
.ls6c_c00212{letter-spacing:-0.647280px;}
.ls37_c00212{letter-spacing:-0.633360px;}
.ls38_c00212{letter-spacing:-0.619440px;}
.ls75_c00212{letter-spacing:-0.612480px;}
.ls43_c00212{letter-spacing:-0.591600px;}
.ls51_c00212{letter-spacing:-0.556800px;}
.ls4a_c00212{letter-spacing:-0.549840px;}
.ls49_c00212{letter-spacing:-0.542880px;}
.ls86_c00212{letter-spacing:-0.528960px;}
.ls63_c00212{letter-spacing:-0.508080px;}
.ls64_c00212{letter-spacing:-0.501120px;}
.ls71_c00212{letter-spacing:-0.494160px;}
.ls53_c00212{letter-spacing:-0.487200px;}
.ls5b_c00212{letter-spacing:-0.480240px;}
.ls3c_c00212{letter-spacing:-0.473280px;}
.ls3d_c00212{letter-spacing:-0.438480px;}
.ls73_c00212{letter-spacing:-0.424560px;}
.ls42_c00212{letter-spacing:-0.417600px;}
.ls54_c00212{letter-spacing:-0.410640px;}
.ls84_c00212{letter-spacing:-0.403680px;}
.ls8a_c00212{letter-spacing:-0.396720px;}
.ls7d_c00212{letter-spacing:-0.389760px;}
.ls5c_c00212{letter-spacing:-0.382800px;}
.ls45_c00212{letter-spacing:-0.375840px;}
.ls40_c00212{letter-spacing:-0.361920px;}
.ls39_c00212{letter-spacing:-0.348000px;}
.ls2c_c00212{letter-spacing:-0.341040px;}
.ls65_c00212{letter-spacing:-0.334080px;}
.ls81_c00212{letter-spacing:-0.327120px;}
.ls55_c00212{letter-spacing:-0.320160px;}
.ls3e_c00212{letter-spacing:-0.313200px;}
.ls4c_c00212{letter-spacing:-0.306240px;}
.ls61_c00212{letter-spacing:-0.299280px;}
.ls31_c00212{letter-spacing:-0.285360px;}
.ls6f_c00212{letter-spacing:-0.278400px;}
.ls66_c00212{letter-spacing:-0.264480px;}
.ls7f_c00212{letter-spacing:-0.257520px;}
.ls8d_c00212{letter-spacing:-0.250560px;}
.ls6e_c00212{letter-spacing:-0.243600px;}
.ls7c_c00212{letter-spacing:-0.222720px;}
.ls2f_c00212{letter-spacing:-0.208800px;}
.ls88_c00212{letter-spacing:-0.201840px;}
.ls67_c00212{letter-spacing:-0.194880px;}
.ls48_c00212{letter-spacing:-0.180960px;}
.ls2b_c00212{letter-spacing:-0.174000px;}
.ls3a_c00212{letter-spacing:-0.167040px;}
.ls78_c00212{letter-spacing:-0.160080px;}
.ls5a_c00212{letter-spacing:-0.153120px;}
.ls4f_c00212{letter-spacing:-0.146160px;}
.ls7e_c00212{letter-spacing:-0.139200px;}
.ls2e_c00212{letter-spacing:-0.132240px;}
.ls72_c00212{letter-spacing:-0.125280px;}
.ls76_c00212{letter-spacing:-0.104400px;}
.ls7a_c00212{letter-spacing:-0.097440px;}
.ls59_c00212{letter-spacing:-0.090480px;}
.ls5f_c00212{letter-spacing:-0.069600px;}
.ls6a_c00212{letter-spacing:-0.062640px;}
.ls5d_c00212{letter-spacing:-0.041760px;}
.ls74_c00212{letter-spacing:-0.027840px;}
.ls32_c00212{letter-spacing:-0.013920px;}
.ls33_c00212{letter-spacing:0.000000px;}
.ls27_c00212{letter-spacing:0.006960px;}
.lsc_c00212{letter-spacing:0.020880px;}
.ls6_c00212{letter-spacing:0.027840px;}
.ls1e_c00212{letter-spacing:0.041760px;}
.ls29_c00212{letter-spacing:0.055680px;}
.ls26_c00212{letter-spacing:0.062640px;}
.ls1f_c00212{letter-spacing:0.069600px;}
.ls87_c00212{letter-spacing:0.132240px;}
.ls22_c00212{letter-spacing:0.139200px;}
.ls18_c00212{letter-spacing:0.146160px;}
.ls28_c00212{letter-spacing:0.153120px;}
.ls12_c00212{letter-spacing:0.167040px;}
.lsb_c00212{letter-spacing:0.174000px;}
.ls9_c00212{letter-spacing:0.180960px;}
.ls1d_c00212{letter-spacing:0.201840px;}
.ls3_c00212{letter-spacing:0.222720px;}
.ls17_c00212{letter-spacing:0.229680px;}
.ls4_c00212{letter-spacing:0.236640px;}
.ls1b_c00212{letter-spacing:0.243600px;}
.ls25_c00212{letter-spacing:0.285360px;}
.ls16_c00212{letter-spacing:0.306240px;}
.ls15_c00212{letter-spacing:0.320160px;}
.ls70_c00212{letter-spacing:0.334080px;}
.ls2_c00212{letter-spacing:0.341040px;}
.ls23_c00212{letter-spacing:0.348000px;}
.ls14_c00212{letter-spacing:0.354960px;}
.lsd_c00212{letter-spacing:0.361920px;}
.ls1c_c00212{letter-spacing:0.382800px;}
.ls10_c00212{letter-spacing:0.438480px;}
.ls0_c00212{letter-spacing:0.480240px;}
.lsf_c00212{letter-spacing:0.515040px;}
.ls8_c00212{letter-spacing:0.542880px;}
.ls7_c00212{letter-spacing:0.556800px;}
.ls1a_c00212{letter-spacing:0.758640px;}
.ls68_c00212{letter-spacing:0.765600px;}
.ls1_c00212{letter-spacing:0.793440px;}
.lsa_c00212{letter-spacing:1.002240px;}
.ls13_c00212{letter-spacing:1.087560px;}
.ls47_c00212{letter-spacing:1.378080px;}
.ls5_c00212{letter-spacing:1.398960px;}
.lse_c00212{letter-spacing:1.447680px;}
.ls20_c00212{letter-spacing:1.733040px;}
.ls24_c00212{letter-spacing:1.983600px;}
.ls2a_c00212{letter-spacing:2.148000px;}
.ls19_c00212{letter-spacing:2.164560px;}
.ls21_c00212{letter-spacing:2.784000px;}
.ls11_c00212{letter-spacing:3.145920px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{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__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00212{word-spacing:0.000000px;}
._11_c00212{margin-left:-6.539040px;}
._3_c00212{margin-left:-4.259520px;}
._15_c00212{margin-left:-2.839680px;}
._12_c00212{margin-left:-1.746960px;}
._1_c00212{width:1.238880px;}
._13_c00212{width:2.319120px;}
._7_c00212{width:3.911520px;}
._f_c00212{width:4.982640px;}
._2_c00212{width:5.992560px;}
._8_c00212{width:7.335840px;}
._4_c00212{width:8.560800px;}
._6_c00212{width:9.994560px;}
._5_c00212{width:11.630160px;}
._0_c00212{width:13.613760px;}
._10_c00212{width:15.430320px;}
._b_c00212{width:17.316480px;}
._9_c00212{width:18.597120px;}
._d_c00212{width:20.072640px;}
._14_c00212{width:21.325440px;}
._c_c00212{width:23.058480px;}
._a_c00212{width:24.721920px;}
._16_c00212{width:26.260080px;}
._e_c00212{width:35.586480px;}
.fc0_c00212{color:transparent;}
.fs3_c00212{font-size:56.400000px;}
.fs0_c00212{font-size:60.000000px;}
.fs5_c00212{font-size:66.000000px;}
.fs2_c00212{font-size:68.400000px;}
.fs1_c00212{font-size:69.600000px;}
.fs4_c00212{font-size:76.800000px;}
.y0_c00212{bottom:0.000000px;}
.y20_c00212{bottom:68.775015px;}
.y1f_c00212{bottom:146.525415px;}
.y1e_c00212{bottom:177.480015px;}
.y1d_c00212{bottom:177.483015px;}
.y1b_c00212{bottom:208.444215px;}
.y1c_c00212{bottom:208.455015px;}
.y1a_c00212{bottom:271.449615px;}
.y19_c00212{bottom:302.038815px;}
.y18_c00212{bottom:332.993415px;}
.y17_c00212{bottom:364.330815px;}
.y15_c00212{bottom:394.917615px;}
.y16_c00212{bottom:394.920015px;}
.y14_c00212{bottom:426.603015px;}
.y13_c00212{bottom:457.923015px;}
.y12_c00212{bottom:489.260415px;}
.y11_c00212{bottom:520.580415px;}
.y10_c00212{bottom:551.900415px;}
.yf_c00212{bottom:583.220415px;}
.ye_c00212{bottom:614.175015px;}
.y22_c00212{bottom:615.255015px;}
.y21_c00212{bottom:618.840015px;}
.yd_c00212{bottom:676.815015px;}
.yb_c00212{bottom:739.089615px;}
.yc_c00212{bottom:739.095015px;}
.ya_c00212{bottom:802.092015px;}
.y9_c00212{bottom:833.754615px;}
.y8_c00212{bottom:865.440015px;}
.y7_c00212{bottom:865.448415px;}
.y6_c00212{bottom:896.403015px;}
.y5_c00212{bottom:927.375015px;}
.y4_c00212{bottom:958.695015px;}
.y3_c00212{bottom:1019.900415px;}
.y2_c00212{bottom:1082.175015px;}
.y1_c00212{bottom:1189.440015px;}
.h8_c00212{height:55.353516px;}
.h2_c00212{height:58.886719px;}
.h3_c00212{height:68.308594px;}
.h7_c00212{height:68.318194px;}
.h5_c00212{height:68.320594px;}
.h4_c00212{height:68.330194px;}
.ha_c00212{height:68.835938px;}
.h6_c00212{height:68.955975px;}
.h9_c00212{height:80.100000px;}
.h1_c00212{height:1263.000000px;}
.h0_c00212{height:1263.240015px;}
.w1_c00212{width:892.500000px;}
.w0_c00212{width:892.800000px;}
.x0_c00212{left:0.000000px;}
.xf_c00212{left:124.885800px;}
.x1_c00212{left:126.645000px;}
.xa_c00212{left:180.518400px;}
.x2_c00212{left:181.980000px;}
.x8_c00212{left:330.690000px;}
.x9_c00212{left:351.195000px;}
.x7_c00212{left:380.640000px;}
.xd_c00212{left:426.780000px;}
.x10_c00212{left:428.625000px;}
.x5_c00212{left:443.730000px;}
.xe_c00212{left:450.840000px;}
.x3_c00212{left:458.475000px;}
.x6_c00212{left:461.355000px;}
.x4_c00212{left:481.125000px;}
.xb_c00212{left:669.990000px;}
.xc_c00212{left:737.115000px;}
.x12_c00212{left:854.775000px;}
.x11_c00212{left:855.825000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls35_c00212{letter-spacing:-2.165333pt;}
.ls85_c00212{letter-spacing:-1.806507pt;}
.ls4b_c00212{letter-spacing:-1.676587pt;}
.ls30_c00212{letter-spacing:-1.466240pt;}
.ls5e_c00212{letter-spacing:-1.361067pt;}
.ls3b_c00212{letter-spacing:-1.268267pt;}
.ls57_c00212{letter-spacing:-1.194027pt;}
.ls83_c00212{letter-spacing:-1.125973pt;}
.ls60_c00212{letter-spacing:-1.088853pt;}
.ls46_c00212{letter-spacing:-1.082667pt;}
.ls62_c00212{letter-spacing:-1.039360pt;}
.ls82_c00212{letter-spacing:-1.026987pt;}
.ls77_c00212{letter-spacing:-1.008427pt;}
.ls2d_c00212{letter-spacing:-0.946560pt;}
.ls79_c00212{letter-spacing:-0.915627pt;}
.ls44_c00212{letter-spacing:-0.872320pt;}
.ls56_c00212{letter-spacing:-0.866133pt;}
.ls69_c00212{letter-spacing:-0.841387pt;}
.ls89_c00212{letter-spacing:-0.816640pt;}
.ls50_c00212{letter-spacing:-0.810453pt;}
.ls3f_c00212{letter-spacing:-0.804267pt;}
.ls41_c00212{letter-spacing:-0.798080pt;}
.ls8c_c00212{letter-spacing:-0.791893pt;}
.ls6d_c00212{letter-spacing:-0.785707pt;}
.ls58_c00212{letter-spacing:-0.779520pt;}
.ls6b_c00212{letter-spacing:-0.767147pt;}
.ls80_c00212{letter-spacing:-0.760960pt;}
.ls8b_c00212{letter-spacing:-0.736213pt;}
.ls4d_c00212{letter-spacing:-0.730027pt;}
.ls36_c00212{letter-spacing:-0.717653pt;}
.ls52_c00212{letter-spacing:-0.711467pt;}
.ls7b_c00212{letter-spacing:-0.612480pt;}
.ls8e_c00212{letter-spacing:-0.611627pt;}
.ls34_c00212{letter-spacing:-0.593920pt;}
.ls4e_c00212{letter-spacing:-0.581547pt;}
.ls6c_c00212{letter-spacing:-0.575360pt;}
.ls37_c00212{letter-spacing:-0.562987pt;}
.ls38_c00212{letter-spacing:-0.550613pt;}
.ls75_c00212{letter-spacing:-0.544427pt;}
.ls43_c00212{letter-spacing:-0.525867pt;}
.ls51_c00212{letter-spacing:-0.494933pt;}
.ls4a_c00212{letter-spacing:-0.488747pt;}
.ls49_c00212{letter-spacing:-0.482560pt;}
.ls86_c00212{letter-spacing:-0.470187pt;}
.ls63_c00212{letter-spacing:-0.451627pt;}
.ls64_c00212{letter-spacing:-0.445440pt;}
.ls71_c00212{letter-spacing:-0.439253pt;}
.ls53_c00212{letter-spacing:-0.433067pt;}
.ls5b_c00212{letter-spacing:-0.426880pt;}
.ls3c_c00212{letter-spacing:-0.420693pt;}
.ls3d_c00212{letter-spacing:-0.389760pt;}
.ls73_c00212{letter-spacing:-0.377387pt;}
.ls42_c00212{letter-spacing:-0.371200pt;}
.ls54_c00212{letter-spacing:-0.365013pt;}
.ls84_c00212{letter-spacing:-0.358827pt;}
.ls8a_c00212{letter-spacing:-0.352640pt;}
.ls7d_c00212{letter-spacing:-0.346453pt;}
.ls5c_c00212{letter-spacing:-0.340267pt;}
.ls45_c00212{letter-spacing:-0.334080pt;}
.ls40_c00212{letter-spacing:-0.321707pt;}
.ls39_c00212{letter-spacing:-0.309333pt;}
.ls2c_c00212{letter-spacing:-0.303147pt;}
.ls65_c00212{letter-spacing:-0.296960pt;}
.ls81_c00212{letter-spacing:-0.290773pt;}
.ls55_c00212{letter-spacing:-0.284587pt;}
.ls3e_c00212{letter-spacing:-0.278400pt;}
.ls4c_c00212{letter-spacing:-0.272213pt;}
.ls61_c00212{letter-spacing:-0.266027pt;}
.ls31_c00212{letter-spacing:-0.253653pt;}
.ls6f_c00212{letter-spacing:-0.247467pt;}
.ls66_c00212{letter-spacing:-0.235093pt;}
.ls7f_c00212{letter-spacing:-0.228907pt;}
.ls8d_c00212{letter-spacing:-0.222720pt;}
.ls6e_c00212{letter-spacing:-0.216533pt;}
.ls7c_c00212{letter-spacing:-0.197973pt;}
.ls2f_c00212{letter-spacing:-0.185600pt;}
.ls88_c00212{letter-spacing:-0.179413pt;}
.ls67_c00212{letter-spacing:-0.173227pt;}
.ls48_c00212{letter-spacing:-0.160853pt;}
.ls2b_c00212{letter-spacing:-0.154667pt;}
.ls3a_c00212{letter-spacing:-0.148480pt;}
.ls78_c00212{letter-spacing:-0.142293pt;}
.ls5a_c00212{letter-spacing:-0.136107pt;}
.ls4f_c00212{letter-spacing:-0.129920pt;}
.ls7e_c00212{letter-spacing:-0.123733pt;}
.ls2e_c00212{letter-spacing:-0.117547pt;}
.ls72_c00212{letter-spacing:-0.111360pt;}
.ls76_c00212{letter-spacing:-0.092800pt;}
.ls7a_c00212{letter-spacing:-0.086613pt;}
.ls59_c00212{letter-spacing:-0.080427pt;}
.ls5f_c00212{letter-spacing:-0.061867pt;}
.ls6a_c00212{letter-spacing:-0.055680pt;}
.ls5d_c00212{letter-spacing:-0.037120pt;}
.ls74_c00212{letter-spacing:-0.024747pt;}
.ls32_c00212{letter-spacing:-0.012373pt;}
.ls33_c00212{letter-spacing:0.000000pt;}
.ls27_c00212{letter-spacing:0.006187pt;}
.lsc_c00212{letter-spacing:0.018560pt;}
.ls6_c00212{letter-spacing:0.024747pt;}
.ls1e_c00212{letter-spacing:0.037120pt;}
.ls29_c00212{letter-spacing:0.049493pt;}
.ls26_c00212{letter-spacing:0.055680pt;}
.ls1f_c00212{letter-spacing:0.061867pt;}
.ls87_c00212{letter-spacing:0.117547pt;}
.ls22_c00212{letter-spacing:0.123733pt;}
.ls18_c00212{letter-spacing:0.129920pt;}
.ls28_c00212{letter-spacing:0.136107pt;}
.ls12_c00212{letter-spacing:0.148480pt;}
.lsb_c00212{letter-spacing:0.154667pt;}
.ls9_c00212{letter-spacing:0.160853pt;}
.ls1d_c00212{letter-spacing:0.179413pt;}
.ls3_c00212{letter-spacing:0.197973pt;}
.ls17_c00212{letter-spacing:0.204160pt;}
.ls4_c00212{letter-spacing:0.210347pt;}
.ls1b_c00212{letter-spacing:0.216533pt;}
.ls25_c00212{letter-spacing:0.253653pt;}
.ls16_c00212{letter-spacing:0.272213pt;}
.ls15_c00212{letter-spacing:0.284587pt;}
.ls70_c00212{letter-spacing:0.296960pt;}
.ls2_c00212{letter-spacing:0.303147pt;}
.ls23_c00212{letter-spacing:0.309333pt;}
.ls14_c00212{letter-spacing:0.315520pt;}
.lsd_c00212{letter-spacing:0.321707pt;}
.ls1c_c00212{letter-spacing:0.340267pt;}
.ls10_c00212{letter-spacing:0.389760pt;}
.ls0_c00212{letter-spacing:0.426880pt;}
.lsf_c00212{letter-spacing:0.457813pt;}
.ls8_c00212{letter-spacing:0.482560pt;}
.ls7_c00212{letter-spacing:0.494933pt;}
.ls1a_c00212{letter-spacing:0.674347pt;}
.ls68_c00212{letter-spacing:0.680533pt;}
.ls1_c00212{letter-spacing:0.705280pt;}
.lsa_c00212{letter-spacing:0.890880pt;}
.ls13_c00212{letter-spacing:0.966720pt;}
.ls47_c00212{letter-spacing:1.224960pt;}
.ls5_c00212{letter-spacing:1.243520pt;}
.lse_c00212{letter-spacing:1.286827pt;}
.ls20_c00212{letter-spacing:1.540480pt;}
.ls24_c00212{letter-spacing:1.763200pt;}
.ls2a_c00212{letter-spacing:1.909333pt;}
.ls19_c00212{letter-spacing:1.924053pt;}
.ls21_c00212{letter-spacing:2.474667pt;}
.ls11_c00212{letter-spacing:2.796373pt;}
.ws0_c00212{word-spacing:0.000000pt;}
._11_c00212{margin-left:-5.812480pt;}
._3_c00212{margin-left:-3.786240pt;}
._15_c00212{margin-left:-2.524160pt;}
._12_c00212{margin-left:-1.552853pt;}
._1_c00212{width:1.101227pt;}
._13_c00212{width:2.061440pt;}
._7_c00212{width:3.476907pt;}
._f_c00212{width:4.429013pt;}
._2_c00212{width:5.326720pt;}
._8_c00212{width:6.520747pt;}
._4_c00212{width:7.609600pt;}
._6_c00212{width:8.884053pt;}
._5_c00212{width:10.337920pt;}
._0_c00212{width:12.101120pt;}
._10_c00212{width:13.715840pt;}
._b_c00212{width:15.392427pt;}
._9_c00212{width:16.530773pt;}
._d_c00212{width:17.842347pt;}
._14_c00212{width:18.955947pt;}
._c_c00212{width:20.496427pt;}
._a_c00212{width:21.975040pt;}
._16_c00212{width:23.342293pt;}
._e_c00212{width:31.632427pt;}
.fs3_c00212{font-size:50.133333pt;}
.fs0_c00212{font-size:53.333333pt;}
.fs5_c00212{font-size:58.666667pt;}
.fs2_c00212{font-size:60.800000pt;}
.fs1_c00212{font-size:61.866667pt;}
.fs4_c00212{font-size:68.266667pt;}
.y0_c00212{bottom:0.000000pt;}
.y20_c00212{bottom:61.133347pt;}
.y1f_c00212{bottom:130.244813pt;}
.y1e_c00212{bottom:157.760013pt;}
.y1d_c00212{bottom:157.762680pt;}
.y1b_c00212{bottom:185.283747pt;}
.y1c_c00212{bottom:185.293347pt;}
.y1a_c00212{bottom:241.288547pt;}
.y19_c00212{bottom:268.478947pt;}
.y18_c00212{bottom:295.994147pt;}
.y17_c00212{bottom:323.849613pt;}
.y15_c00212{bottom:351.037880pt;}
.y16_c00212{bottom:351.040013pt;}
.y14_c00212{bottom:379.202680pt;}
.y13_c00212{bottom:407.042680pt;}
.y12_c00212{bottom:434.898147pt;}
.y11_c00212{bottom:462.738147pt;}
.y10_c00212{bottom:490.578147pt;}
.yf_c00212{bottom:518.418147pt;}
.ye_c00212{bottom:545.933347pt;}
.y22_c00212{bottom:546.893347pt;}
.y21_c00212{bottom:550.080013pt;}
.yd_c00212{bottom:601.613347pt;}
.yb_c00212{bottom:656.968547pt;}
.yc_c00212{bottom:656.973347pt;}
.ya_c00212{bottom:712.970680pt;}
.y9_c00212{bottom:741.115213pt;}
.y8_c00212{bottom:769.280013pt;}
.y7_c00212{bottom:769.287480pt;}
.y6_c00212{bottom:796.802680pt;}
.y5_c00212{bottom:824.333347pt;}
.y4_c00212{bottom:852.173347pt;}
.y3_c00212{bottom:906.578147pt;}
.y2_c00212{bottom:961.933347pt;}
.y1_c00212{bottom:1057.280013pt;}
.h8_c00212{height:49.203125pt;}
.h2_c00212{height:52.343750pt;}
.h3_c00212{height:60.718750pt;}
.h7_c00212{height:60.727283pt;}
.h5_c00212{height:60.729417pt;}
.h4_c00212{height:60.737950pt;}
.ha_c00212{height:61.187500pt;}
.h6_c00212{height:61.294200pt;}
.h9_c00212{height:71.200000pt;}
.h1_c00212{height:1122.666667pt;}
.h0_c00212{height:1122.880013pt;}
.w1_c00212{width:793.333333pt;}
.w0_c00212{width:793.600000pt;}
.x0_c00212{left:0.000000pt;}
.xf_c00212{left:111.009600pt;}
.x1_c00212{left:112.573333pt;}
.xa_c00212{left:160.460800pt;}
.x2_c00212{left:161.760000pt;}
.x8_c00212{left:293.946667pt;}
.x9_c00212{left:312.173333pt;}
.x7_c00212{left:338.346667pt;}
.xd_c00212{left:379.360000pt;}
.x10_c00212{left:381.000000pt;}
.x5_c00212{left:394.426667pt;}
.xe_c00212{left:400.746667pt;}
.x3_c00212{left:407.533333pt;}
.x6_c00212{left:410.093333pt;}
.x4_c00212{left:427.666667pt;}
.xb_c00212{left:595.546667pt;}
.xc_c00212{left:655.213333pt;}
.x12_c00212{left:759.800000pt;}
.x11_c00212{left:760.733333pt;}
}





/* 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_c00213 {
    display:none;
  }
  .loading-indicator_c00213.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00213 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_c00213 { 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_c00213" -> "#page-container .classname_c00213")
 */
.pf_c00213 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00213 { /* 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_c00213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00213 { /* 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_c00213 { /* 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_c00213 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00213 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00213 {overflow:visible;}
  }
}
.c_c00213 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00213 { /* 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_c00213:after { /* webkit #35443 */
  content: '';
}
.t_c00213:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00213 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 */
}
.__c00213 { /* 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_c00213 { /* info for Javascript */
  display:none;
}
.l_c00213 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00213 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00213 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00213: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_c00213 {
    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_c00213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00213.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_c00213 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00213;src:url('chunks/assets/font_777dcd7967b9608f25bcc2e2.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.284668;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_c00213;src:url('chunks/assets/font_f03c35f2ad58169b2d3ee80c.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.284180;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;}
.m3_c00213{transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);}
.m0_c00213{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m2_c00213{transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{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);}
.m5_c00213{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m4_c00213{transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls4a_c00213{letter-spacing:-2.457000px;}
.ls90_c00213{letter-spacing:-2.407860px;}
.ls41_c00213{letter-spacing:-2.352000px;}
.ls53_c00213{letter-spacing:-2.204280px;}
.ls83_c00213{letter-spacing:-1.965600px;}
.ls65_c00213{letter-spacing:-1.951560px;}
.ls46_c00213{letter-spacing:-1.916460px;}
.ls70_c00213{letter-spacing:-1.853280px;}
.ls75_c00213{letter-spacing:-1.670760px;}
.lsa0_c00213{letter-spacing:-1.635660px;}
.ls7a_c00213{letter-spacing:-1.509300px;}
.ls62_c00213{letter-spacing:-1.467180px;}
.ls9f_c00213{letter-spacing:-1.446120px;}
.ls69_c00213{letter-spacing:-1.333800px;}
.ls5a_c00213{letter-spacing:-1.277640px;}
.ls6e_c00213{letter-spacing:-1.270620px;}
.ls91_c00213{letter-spacing:-1.221480px;}
.ls88_c00213{letter-spacing:-1.172340px;}
.ls8e_c00213{letter-spacing:-1.130220px;}
.ls7d_c00213{letter-spacing:-1.038960px;}
.ls5c_c00213{letter-spacing:-0.947700px;}
.ls5e_c00213{letter-spacing:-0.926640px;}
.lsa4_c00213{letter-spacing:-0.877500px;}
.ls52_c00213{letter-spacing:-0.849420px;}
.ls4d_c00213{letter-spacing:-0.814320px;}
.ls51_c00213{letter-spacing:-0.807300px;}
.ls98_c00213{letter-spacing:-0.793260px;}
.ls43_c00213{letter-spacing:-0.765180px;}
.ls50_c00213{letter-spacing:-0.744120px;}
.ls79_c00213{letter-spacing:-0.687960px;}
.ls6f_c00213{letter-spacing:-0.680940px;}
.lsab_c00213{letter-spacing:-0.671220px;}
.ls97_c00213{letter-spacing:-0.666900px;}
.lsaa_c00213{letter-spacing:-0.663480px;}
.ls8f_c00213{letter-spacing:-0.652860px;}
.ls9d_c00213{letter-spacing:-0.645840px;}
.ls4e_c00213{letter-spacing:-0.610740px;}
.ls59_c00213{letter-spacing:-0.595080px;}
.lsa2_c00213{letter-spacing:-0.589680px;}
.ls8d_c00213{letter-spacing:-0.575640px;}
.lsa8_c00213{letter-spacing:-0.568620px;}
.ls67_c00213{letter-spacing:-0.554580px;}
.ls9a_c00213{letter-spacing:-0.533520px;}
.ls94_c00213{letter-spacing:-0.526500px;}
.ls81_c00213{letter-spacing:-0.519480px;}
.ls61_c00213{letter-spacing:-0.512460px;}
.ls5b_c00213{letter-spacing:-0.505440px;}
.ls63_c00213{letter-spacing:-0.491400px;}
.lsa3_c00213{letter-spacing:-0.484380px;}
.ls6d_c00213{letter-spacing:-0.477360px;}
.ls6a_c00213{letter-spacing:-0.470340px;}
.ls54_c00213{letter-spacing:-0.456300px;}
.ls56_c00213{letter-spacing:-0.442260px;}
.ls73_c00213{letter-spacing:-0.428220px;}
.ls7c_c00213{letter-spacing:-0.386100px;}
.ls82_c00213{letter-spacing:-0.372060px;}
.ls95_c00213{letter-spacing:-0.365040px;}
.ls8c_c00213{letter-spacing:-0.358020px;}
.ls85_c00213{letter-spacing:-0.351000px;}
.ls5f_c00213{letter-spacing:-0.336960px;}
.ls45_c00213{letter-spacing:-0.315900px;}
.ls60_c00213{letter-spacing:-0.308880px;}
.ls71_c00213{letter-spacing:-0.301860px;}
.ls8b_c00213{letter-spacing:-0.294840px;}
.lsa5_c00213{letter-spacing:-0.287820px;}
.ls74_c00213{letter-spacing:-0.280800px;}
.ls78_c00213{letter-spacing:-0.266760px;}
.ls44_c00213{letter-spacing:-0.252720px;}
.ls6b_c00213{letter-spacing:-0.245700px;}
.ls4f_c00213{letter-spacing:-0.238680px;}
.ls4c_c00213{letter-spacing:-0.217620px;}
.ls7b_c00213{letter-spacing:-0.210600px;}
.ls9c_c00213{letter-spacing:-0.203580px;}
.ls42_c00213{letter-spacing:-0.196560px;}
.ls93_c00213{letter-spacing:-0.189540px;}
.ls57_c00213{letter-spacing:-0.182520px;}
.ls72_c00213{letter-spacing:-0.175500px;}
.ls7f_c00213{letter-spacing:-0.168480px;}
.ls64_c00213{letter-spacing:-0.161460px;}
.ls68_c00213{letter-spacing:-0.147420px;}
.ls96_c00213{letter-spacing:-0.140400px;}
.ls80_c00213{letter-spacing:-0.133380px;}
.lsa9_c00213{letter-spacing:-0.126360px;}
.ls77_c00213{letter-spacing:-0.119340px;}
.ls86_c00213{letter-spacing:-0.116280px;}
.ls47_c00213{letter-spacing:-0.112320px;}
.lsa7_c00213{letter-spacing:-0.091260px;}
.ls76_c00213{letter-spacing:-0.077220px;}
.ls6c_c00213{letter-spacing:-0.070200px;}
.ls49_c00213{letter-spacing:-0.063180px;}
.ls66_c00213{letter-spacing:-0.056160px;}
.ls8a_c00213{letter-spacing:-0.049140px;}
.ls9b_c00213{letter-spacing:-0.035100px;}
.lsa1_c00213{letter-spacing:-0.028080px;}
.ls5d_c00213{letter-spacing:-0.021060px;}
.ls48_c00213{letter-spacing:-0.014040px;}
.ls89_c00213{letter-spacing:-0.007020px;}
.ls4b_c00213{letter-spacing:0.000000px;}
.ls20_c00213{letter-spacing:0.014040px;}
.ls39_c00213{letter-spacing:0.028080px;}
.ls2a_c00213{letter-spacing:0.035100px;}
.ls1_c00213{letter-spacing:0.042120px;}
.lsc_c00213{letter-spacing:0.049140px;}
.ls29_c00213{letter-spacing:0.056160px;}
.ls14_c00213{letter-spacing:0.063180px;}
.ls55_c00213{letter-spacing:0.070200px;}
.ls3e_c00213{letter-spacing:0.077220px;}
.ls84_c00213{letter-spacing:0.084240px;}
.ls25_c00213{letter-spacing:0.091260px;}
.ls0_c00213{letter-spacing:0.105300px;}
.ls7e_c00213{letter-spacing:0.112320px;}
.ls7_c00213{letter-spacing:0.140400px;}
.lsa_c00213{letter-spacing:0.175500px;}
.lsa6_c00213{letter-spacing:0.177840px;}
.ls1f_c00213{letter-spacing:0.182520px;}
.ls21_c00213{letter-spacing:0.184680px;}
.lsf_c00213{letter-spacing:0.189540px;}
.ls99_c00213{letter-spacing:0.232560px;}
.ls92_c00213{letter-spacing:0.245700px;}
.ls17_c00213{letter-spacing:0.266760px;}
.ls3a_c00213{letter-spacing:0.273780px;}
.ls2d_c00213{letter-spacing:0.280800px;}
.ls3b_c00213{letter-spacing:0.294840px;}
.ls3_c00213{letter-spacing:0.308880px;}
.ls3d_c00213{letter-spacing:0.322920px;}
.ls30_c00213{letter-spacing:0.329940px;}
.ls5_c00213{letter-spacing:0.336960px;}
.ls2c_c00213{letter-spacing:0.343980px;}
.lsb_c00213{letter-spacing:0.351000px;}
.ls2f_c00213{letter-spacing:0.358020px;}
.ls1e_c00213{letter-spacing:0.372060px;}
.ls3f_c00213{letter-spacing:0.376200px;}
.ls6_c00213{letter-spacing:0.386100px;}
.ls9_c00213{letter-spacing:0.400140px;}
.ls32_c00213{letter-spacing:0.414180px;}
.ls12_c00213{letter-spacing:0.417240px;}
.ls1a_c00213{letter-spacing:0.442260px;}
.ls15_c00213{letter-spacing:0.444600px;}
.ls10_c00213{letter-spacing:0.456300px;}
.ls11_c00213{letter-spacing:0.470340px;}
.ls38_c00213{letter-spacing:0.547200px;}
.ls9e_c00213{letter-spacing:0.601920px;}
.ls19_c00213{letter-spacing:0.608760px;}
.ls4_c00213{letter-spacing:0.610740px;}
.lsd_c00213{letter-spacing:0.624780px;}
.ls87_c00213{letter-spacing:0.659880px;}
.ls33_c00213{letter-spacing:0.663480px;}
.ls8_c00213{letter-spacing:0.680940px;}
.ls3c_c00213{letter-spacing:0.737100px;}
.ls23_c00213{letter-spacing:0.738720px;}
.ls2e_c00213{letter-spacing:0.772920px;}
.ls36_c00213{letter-spacing:0.800280px;}
.ls35_c00213{letter-spacing:0.861840px;}
.ls2_c00213{letter-spacing:0.982800px;}
.ls31_c00213{letter-spacing:0.991800px;}
.ls28_c00213{letter-spacing:1.032840px;}
.ls2b_c00213{letter-spacing:1.038960px;}
.ls34_c00213{letter-spacing:1.045980px;}
.ls27_c00213{letter-spacing:1.162800px;}
.ls1b_c00213{letter-spacing:1.242540px;}
.ls18_c00213{letter-spacing:1.251720px;}
.lse_c00213{letter-spacing:1.263600px;}
.ls22_c00213{letter-spacing:1.272240px;}
.ls40_c00213{letter-spacing:1.395360px;}
.ls13_c00213{letter-spacing:1.425060px;}
.ls16_c00213{letter-spacing:1.450080px;}
.ls26_c00213{letter-spacing:1.769040px;}
.ls1c_c00213{letter-spacing:1.825200px;}
.ls1d_c00213{letter-spacing:2.021760px;}
.ls24_c00213{letter-spacing:2.183220px;}
.ls37_c00213{letter-spacing:2.485080px;}
.ls58_c00213{letter-spacing:3.420000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{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__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00213{word-spacing:0.000000px;}
.ws0_c00213{word-spacing:6.321360px;}
._1b_c00213{margin-left:-12.660000px;}
._16_c00213{margin-left:-5.413500px;}
._15_c00213{margin-left:-2.869860px;}
._d_c00213{margin-left:-1.656720px;}
._c_c00213{width:1.305720px;}
._e_c00213{width:2.793960px;}
._a_c00213{width:4.001400px;}
._8_c00213{width:5.910840px;}
._b_c00213{width:7.813260px;}
._9_c00213{width:9.070560px;}
._f_c00213{width:10.164240px;}
._4_c00213{width:11.217960px;}
._1_c00213{width:12.495600px;}
._0_c00213{width:13.590720px;}
._10_c00213{width:14.850960px;}
._2_c00213{width:15.970500px;}
._3_c00213{width:17.009460px;}
._6_c00213{width:18.869760px;}
._5_c00213{width:19.992960px;}
._7_c00213{width:21.979620px;}
._11_c00213{width:22.997520px;}
._13_c00213{width:24.443640px;}
._12_c00213{width:25.623000px;}
._1c_c00213{width:26.697060px;}
._14_c00213{width:28.150200px;}
._1d_c00213{width:30.277260px;}
._1f_c00213{width:31.806000px;}
._1e_c00213{width:33.008040px;}
._1a_c00213{width:34.659720px;}
._19_c00213{width:50.710800px;}
._17_c00213{width:51.940980px;}
._18_c00213{width:53.587740px;}
.fc0_c00213{color:transparent;}
.fs3_c00213{font-size:59.400000px;}
.fs0_c00213{font-size:67.200000px;}
.fs2_c00213{font-size:68.400000px;}
.fs1_c00213{font-size:70.200000px;}
.y0_c00213{bottom:0.000000px;}
.y20_c00213{bottom:69.855000px;}
.y1f_c00213{bottom:147.250800px;}
.y1e_c00213{bottom:178.560000px;}
.y1d_c00213{bottom:240.128700px;}
.y1c_c00213{bottom:272.177250px;}
.y1b_c00213{bottom:303.855000px;}
.y1a_c00213{bottom:334.441950px;}
.y19_c00213{bottom:366.488250px;}
.y18_c00213{bottom:397.810800px;}
.y17_c00213{bottom:429.112800px;}
.y16_c00213{bottom:460.440000px;}
.y15_c00213{bottom:522.357750px;}
.y14_c00213{bottom:554.035500px;}
.y13_c00213{bottom:585.730800px;}
.y12_c00213{bottom:617.040000px;}
.y11_c00213{bottom:679.699050px;}
.y10_c00213{bottom:742.339800px;}
.ye_c00213{bottom:773.996550px;}
.yf_c00213{bottom:774.000000px;}
.yd_c00213{bottom:805.323300px;}
.yc_c00213{bottom:836.650050px;}
.yb_c00213{bottom:867.976800px;}
.ya_c00213{bottom:898.935000px;}
.y9_c00213{bottom:961.563300px;}
.y8_c00213{bottom:992.521500px;}
.y7_c00213{bottom:1023.848250px;}
.y5_c00213{bottom:1055.168250px;}
.y6_c00213{bottom:1055.175000px;}
.y3_c00213{bottom:1086.488250px;}
.y4_c00213{bottom:1086.495000px;}
.y2_c00213{bottom:1117.815000px;}
.y1_c00213{bottom:1194.135000px;}
.h8_c00213{height:58.297852px;}
.h2_c00213{height:65.953125px;}
.h4_c00213{height:67.097461px;}
.h3_c00213{height:68.897461px;}
.h6_c00213{height:68.914261px;}
.h5_c00213{height:68.926261px;}
.h7_c00213{height:68.949661px;}
.h1_c00213{height:1263.000000px;}
.h0_c00213{height:1263.240000px;}
.w1_c00213{width:892.500000px;}
.w0_c00213{width:892.800000px;}
.x0_c00213{left:0.000000px;}
.x11_c00213{left:115.311600px;}
.xb_c00213{left:116.794500px;}
.x9_c00213{left:117.955500px;}
.x8_c00213{left:119.008500px;}
.x1_c00213{left:120.165000px;}
.x4_c00213{left:169.050000px;}
.x10_c00213{left:171.282450px;}
.xa_c00213{left:172.485000px;}
.x5_c00213{left:190.635000px;}
.xc_c00213{left:242.850000px;}
.xd_c00213{left:262.680000px;}
.x6_c00213{left:279.555000px;}
.x7_c00213{left:297.600000px;}
.xe_c00213{left:413.490000px;}
.x12_c00213{left:421.770000px;}
.xf_c00213{left:433.320000px;}
.x2_c00213{left:590.805000px;}
.x3_c00213{left:615.390000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls4a_c00213{letter-spacing:-2.184000pt;}
.ls90_c00213{letter-spacing:-2.140320pt;}
.ls41_c00213{letter-spacing:-2.090667pt;}
.ls53_c00213{letter-spacing:-1.959360pt;}
.ls83_c00213{letter-spacing:-1.747200pt;}
.ls65_c00213{letter-spacing:-1.734720pt;}
.ls46_c00213{letter-spacing:-1.703520pt;}
.ls70_c00213{letter-spacing:-1.647360pt;}
.ls75_c00213{letter-spacing:-1.485120pt;}
.lsa0_c00213{letter-spacing:-1.453920pt;}
.ls7a_c00213{letter-spacing:-1.341600pt;}
.ls62_c00213{letter-spacing:-1.304160pt;}
.ls9f_c00213{letter-spacing:-1.285440pt;}
.ls69_c00213{letter-spacing:-1.185600pt;}
.ls5a_c00213{letter-spacing:-1.135680pt;}
.ls6e_c00213{letter-spacing:-1.129440pt;}
.ls91_c00213{letter-spacing:-1.085760pt;}
.ls88_c00213{letter-spacing:-1.042080pt;}
.ls8e_c00213{letter-spacing:-1.004640pt;}
.ls7d_c00213{letter-spacing:-0.923520pt;}
.ls5c_c00213{letter-spacing:-0.842400pt;}
.ls5e_c00213{letter-spacing:-0.823680pt;}
.lsa4_c00213{letter-spacing:-0.780000pt;}
.ls52_c00213{letter-spacing:-0.755040pt;}
.ls4d_c00213{letter-spacing:-0.723840pt;}
.ls51_c00213{letter-spacing:-0.717600pt;}
.ls98_c00213{letter-spacing:-0.705120pt;}
.ls43_c00213{letter-spacing:-0.680160pt;}
.ls50_c00213{letter-spacing:-0.661440pt;}
.ls79_c00213{letter-spacing:-0.611520pt;}
.ls6f_c00213{letter-spacing:-0.605280pt;}
.lsab_c00213{letter-spacing:-0.596640pt;}
.ls97_c00213{letter-spacing:-0.592800pt;}
.lsaa_c00213{letter-spacing:-0.589760pt;}
.ls8f_c00213{letter-spacing:-0.580320pt;}
.ls9d_c00213{letter-spacing:-0.574080pt;}
.ls4e_c00213{letter-spacing:-0.542880pt;}
.ls59_c00213{letter-spacing:-0.528960pt;}
.lsa2_c00213{letter-spacing:-0.524160pt;}
.ls8d_c00213{letter-spacing:-0.511680pt;}
.lsa8_c00213{letter-spacing:-0.505440pt;}
.ls67_c00213{letter-spacing:-0.492960pt;}
.ls9a_c00213{letter-spacing:-0.474240pt;}
.ls94_c00213{letter-spacing:-0.468000pt;}
.ls81_c00213{letter-spacing:-0.461760pt;}
.ls61_c00213{letter-spacing:-0.455520pt;}
.ls5b_c00213{letter-spacing:-0.449280pt;}
.ls63_c00213{letter-spacing:-0.436800pt;}
.lsa3_c00213{letter-spacing:-0.430560pt;}
.ls6d_c00213{letter-spacing:-0.424320pt;}
.ls6a_c00213{letter-spacing:-0.418080pt;}
.ls54_c00213{letter-spacing:-0.405600pt;}
.ls56_c00213{letter-spacing:-0.393120pt;}
.ls73_c00213{letter-spacing:-0.380640pt;}
.ls7c_c00213{letter-spacing:-0.343200pt;}
.ls82_c00213{letter-spacing:-0.330720pt;}
.ls95_c00213{letter-spacing:-0.324480pt;}
.ls8c_c00213{letter-spacing:-0.318240pt;}
.ls85_c00213{letter-spacing:-0.312000pt;}
.ls5f_c00213{letter-spacing:-0.299520pt;}
.ls45_c00213{letter-spacing:-0.280800pt;}
.ls60_c00213{letter-spacing:-0.274560pt;}
.ls71_c00213{letter-spacing:-0.268320pt;}
.ls8b_c00213{letter-spacing:-0.262080pt;}
.lsa5_c00213{letter-spacing:-0.255840pt;}
.ls74_c00213{letter-spacing:-0.249600pt;}
.ls78_c00213{letter-spacing:-0.237120pt;}
.ls44_c00213{letter-spacing:-0.224640pt;}
.ls6b_c00213{letter-spacing:-0.218400pt;}
.ls4f_c00213{letter-spacing:-0.212160pt;}
.ls4c_c00213{letter-spacing:-0.193440pt;}
.ls7b_c00213{letter-spacing:-0.187200pt;}
.ls9c_c00213{letter-spacing:-0.180960pt;}
.ls42_c00213{letter-spacing:-0.174720pt;}
.ls93_c00213{letter-spacing:-0.168480pt;}
.ls57_c00213{letter-spacing:-0.162240pt;}
.ls72_c00213{letter-spacing:-0.156000pt;}
.ls7f_c00213{letter-spacing:-0.149760pt;}
.ls64_c00213{letter-spacing:-0.143520pt;}
.ls68_c00213{letter-spacing:-0.131040pt;}
.ls96_c00213{letter-spacing:-0.124800pt;}
.ls80_c00213{letter-spacing:-0.118560pt;}
.lsa9_c00213{letter-spacing:-0.112320pt;}
.ls77_c00213{letter-spacing:-0.106080pt;}
.ls86_c00213{letter-spacing:-0.103360pt;}
.ls47_c00213{letter-spacing:-0.099840pt;}
.lsa7_c00213{letter-spacing:-0.081120pt;}
.ls76_c00213{letter-spacing:-0.068640pt;}
.ls6c_c00213{letter-spacing:-0.062400pt;}
.ls49_c00213{letter-spacing:-0.056160pt;}
.ls66_c00213{letter-spacing:-0.049920pt;}
.ls8a_c00213{letter-spacing:-0.043680pt;}
.ls9b_c00213{letter-spacing:-0.031200pt;}
.lsa1_c00213{letter-spacing:-0.024960pt;}
.ls5d_c00213{letter-spacing:-0.018720pt;}
.ls48_c00213{letter-spacing:-0.012480pt;}
.ls89_c00213{letter-spacing:-0.006240pt;}
.ls4b_c00213{letter-spacing:0.000000pt;}
.ls20_c00213{letter-spacing:0.012480pt;}
.ls39_c00213{letter-spacing:0.024960pt;}
.ls2a_c00213{letter-spacing:0.031200pt;}
.ls1_c00213{letter-spacing:0.037440pt;}
.lsc_c00213{letter-spacing:0.043680pt;}
.ls29_c00213{letter-spacing:0.049920pt;}
.ls14_c00213{letter-spacing:0.056160pt;}
.ls55_c00213{letter-spacing:0.062400pt;}
.ls3e_c00213{letter-spacing:0.068640pt;}
.ls84_c00213{letter-spacing:0.074880pt;}
.ls25_c00213{letter-spacing:0.081120pt;}
.ls0_c00213{letter-spacing:0.093600pt;}
.ls7e_c00213{letter-spacing:0.099840pt;}
.ls7_c00213{letter-spacing:0.124800pt;}
.lsa_c00213{letter-spacing:0.156000pt;}
.lsa6_c00213{letter-spacing:0.158080pt;}
.ls1f_c00213{letter-spacing:0.162240pt;}
.ls21_c00213{letter-spacing:0.164160pt;}
.lsf_c00213{letter-spacing:0.168480pt;}
.ls99_c00213{letter-spacing:0.206720pt;}
.ls92_c00213{letter-spacing:0.218400pt;}
.ls17_c00213{letter-spacing:0.237120pt;}
.ls3a_c00213{letter-spacing:0.243360pt;}
.ls2d_c00213{letter-spacing:0.249600pt;}
.ls3b_c00213{letter-spacing:0.262080pt;}
.ls3_c00213{letter-spacing:0.274560pt;}
.ls3d_c00213{letter-spacing:0.287040pt;}
.ls30_c00213{letter-spacing:0.293280pt;}
.ls5_c00213{letter-spacing:0.299520pt;}
.ls2c_c00213{letter-spacing:0.305760pt;}
.lsb_c00213{letter-spacing:0.312000pt;}
.ls2f_c00213{letter-spacing:0.318240pt;}
.ls1e_c00213{letter-spacing:0.330720pt;}
.ls3f_c00213{letter-spacing:0.334400pt;}
.ls6_c00213{letter-spacing:0.343200pt;}
.ls9_c00213{letter-spacing:0.355680pt;}
.ls32_c00213{letter-spacing:0.368160pt;}
.ls12_c00213{letter-spacing:0.370880pt;}
.ls1a_c00213{letter-spacing:0.393120pt;}
.ls15_c00213{letter-spacing:0.395200pt;}
.ls10_c00213{letter-spacing:0.405600pt;}
.ls11_c00213{letter-spacing:0.418080pt;}
.ls38_c00213{letter-spacing:0.486400pt;}
.ls9e_c00213{letter-spacing:0.535040pt;}
.ls19_c00213{letter-spacing:0.541120pt;}
.ls4_c00213{letter-spacing:0.542880pt;}
.lsd_c00213{letter-spacing:0.555360pt;}
.ls87_c00213{letter-spacing:0.586560pt;}
.ls33_c00213{letter-spacing:0.589760pt;}
.ls8_c00213{letter-spacing:0.605280pt;}
.ls3c_c00213{letter-spacing:0.655200pt;}
.ls23_c00213{letter-spacing:0.656640pt;}
.ls2e_c00213{letter-spacing:0.687040pt;}
.ls36_c00213{letter-spacing:0.711360pt;}
.ls35_c00213{letter-spacing:0.766080pt;}
.ls2_c00213{letter-spacing:0.873600pt;}
.ls31_c00213{letter-spacing:0.881600pt;}
.ls28_c00213{letter-spacing:0.918080pt;}
.ls2b_c00213{letter-spacing:0.923520pt;}
.ls34_c00213{letter-spacing:0.929760pt;}
.ls27_c00213{letter-spacing:1.033600pt;}
.ls1b_c00213{letter-spacing:1.104480pt;}
.ls18_c00213{letter-spacing:1.112640pt;}
.lse_c00213{letter-spacing:1.123200pt;}
.ls22_c00213{letter-spacing:1.130880pt;}
.ls40_c00213{letter-spacing:1.240320pt;}
.ls13_c00213{letter-spacing:1.266720pt;}
.ls16_c00213{letter-spacing:1.288960pt;}
.ls26_c00213{letter-spacing:1.572480pt;}
.ls1c_c00213{letter-spacing:1.622400pt;}
.ls1d_c00213{letter-spacing:1.797120pt;}
.ls24_c00213{letter-spacing:1.940640pt;}
.ls37_c00213{letter-spacing:2.208960pt;}
.ls58_c00213{letter-spacing:3.040000pt;}
.ws1_c00213{word-spacing:0.000000pt;}
.ws0_c00213{word-spacing:5.618987pt;}
._1b_c00213{margin-left:-11.253333pt;}
._16_c00213{margin-left:-4.812000pt;}
._15_c00213{margin-left:-2.550987pt;}
._d_c00213{margin-left:-1.472640pt;}
._c_c00213{width:1.160640pt;}
._e_c00213{width:2.483520pt;}
._a_c00213{width:3.556800pt;}
._8_c00213{width:5.254080pt;}
._b_c00213{width:6.945120pt;}
._9_c00213{width:8.062720pt;}
._f_c00213{width:9.034880pt;}
._4_c00213{width:9.971520pt;}
._1_c00213{width:11.107200pt;}
._0_c00213{width:12.080640pt;}
._10_c00213{width:13.200853pt;}
._2_c00213{width:14.196000pt;}
._3_c00213{width:15.119520pt;}
._6_c00213{width:16.773120pt;}
._5_c00213{width:17.771520pt;}
._7_c00213{width:19.537440pt;}
._11_c00213{width:20.442240pt;}
._13_c00213{width:21.727680pt;}
._12_c00213{width:22.776000pt;}
._1c_c00213{width:23.730720pt;}
._14_c00213{width:25.022400pt;}
._1d_c00213{width:26.913120pt;}
._1f_c00213{width:28.272000pt;}
._1e_c00213{width:29.340480pt;}
._1a_c00213{width:30.808640pt;}
._19_c00213{width:45.076267pt;}
._17_c00213{width:46.169760pt;}
._18_c00213{width:47.633547pt;}
.fs3_c00213{font-size:52.800000pt;}
.fs0_c00213{font-size:59.733333pt;}
.fs2_c00213{font-size:60.800000pt;}
.fs1_c00213{font-size:62.400000pt;}
.y0_c00213{bottom:0.000000pt;}
.y20_c00213{bottom:62.093333pt;}
.y1f_c00213{bottom:130.889600pt;}
.y1e_c00213{bottom:158.720000pt;}
.y1d_c00213{bottom:213.447733pt;}
.y1c_c00213{bottom:241.935333pt;}
.y1b_c00213{bottom:270.093333pt;}
.y1a_c00213{bottom:297.281733pt;}
.y19_c00213{bottom:325.767333pt;}
.y18_c00213{bottom:353.609600pt;}
.y17_c00213{bottom:381.433600pt;}
.y16_c00213{bottom:409.280000pt;}
.y15_c00213{bottom:464.318000pt;}
.y14_c00213{bottom:492.476000pt;}
.y13_c00213{bottom:520.649600pt;}
.y12_c00213{bottom:548.480000pt;}
.y11_c00213{bottom:604.176933pt;}
.y10_c00213{bottom:659.857600pt;}
.ye_c00213{bottom:687.996933pt;}
.yf_c00213{bottom:688.000000pt;}
.yd_c00213{bottom:715.842933pt;}
.yc_c00213{bottom:743.688933pt;}
.yb_c00213{bottom:771.534933pt;}
.ya_c00213{bottom:799.053333pt;}
.y9_c00213{bottom:854.722933pt;}
.y8_c00213{bottom:882.241333pt;}
.y7_c00213{bottom:910.087333pt;}
.y5_c00213{bottom:937.927333pt;}
.y6_c00213{bottom:937.933333pt;}
.y3_c00213{bottom:965.767333pt;}
.y4_c00213{bottom:965.773333pt;}
.y2_c00213{bottom:993.613333pt;}
.y1_c00213{bottom:1061.453333pt;}
.h8_c00213{height:51.820312pt;}
.h2_c00213{height:58.625000pt;}
.h4_c00213{height:59.642187pt;}
.h3_c00213{height:61.242187pt;}
.h6_c00213{height:61.257121pt;}
.h5_c00213{height:61.267788pt;}
.h7_c00213{height:61.288588pt;}
.h1_c00213{height:1122.666667pt;}
.h0_c00213{height:1122.880000pt;}
.w1_c00213{width:793.333333pt;}
.w0_c00213{width:793.600000pt;}
.x0_c00213{left:0.000000pt;}
.x11_c00213{left:102.499200pt;}
.xb_c00213{left:103.817333pt;}
.x9_c00213{left:104.849333pt;}
.x8_c00213{left:105.785333pt;}
.x1_c00213{left:106.813333pt;}
.x4_c00213{left:150.266667pt;}
.x10_c00213{left:152.251067pt;}
.xa_c00213{left:153.320000pt;}
.x5_c00213{left:169.453333pt;}
.xc_c00213{left:215.866667pt;}
.xd_c00213{left:233.493333pt;}
.x6_c00213{left:248.493333pt;}
.x7_c00213{left:264.533333pt;}
.xe_c00213{left:367.546667pt;}
.x12_c00213{left:374.906667pt;}
.xf_c00213{left:385.173333pt;}
.x2_c00213{left:525.160000pt;}
.x3_c00213{left:547.013333pt;}
}





/* 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_c00214 {
    display:none;
  }
  .loading-indicator_c00214.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00214 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_c00214 { 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_c00214" -> "#page-container .classname_c00214")
 */
.pf_c00214 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00214 { /* 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_c00214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00214 { /* 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_c00214 { /* 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_c00214 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00214 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00214 {overflow:visible;}
  }
}
.c_c00214 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00214 { /* 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_c00214:after { /* webkit #35443 */
  content: '';
}
.t_c00214:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00214 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 */
}
.__c00214 { /* 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_c00214 { /* info for Javascript */
  display:none;
}
.l_c00214 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00214 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00214 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00214: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_c00214 {
    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_c00214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00214.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_c00214 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00214;src:url('chunks/assets/font_1a976401b5e94513b543cf6e.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.284668;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_c00214;src:url('chunks/assets/font_a9dccbd05c6b0a907245eb34.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.284180;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_c00214;src:url('chunks/assets/font_ca35b69d93ab3f9231a8249e.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;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:ff4_c00214;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;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;}
.mc_c00214{transform:matrix(0.180794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180794,0.000000,0.000000,0.250000,0,0);}
.m7_c00214{transform:matrix(0.191659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191659,0.000000,0.000000,0.250000,0,0);}
.m9_c00214{transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);}
.m8_c00214{transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);}
.me_c00214{transform:matrix(0.225376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225376,0.000000,0.000000,0.250000,0,0);}
.m10_c00214{transform:matrix(0.231467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231467,0.000000,0.000000,0.250000,0,0);}
.m11_c00214{transform:matrix(0.239219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239219,0.000000,0.000000,0.250000,0,0);}
.m0_c00214{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);}
.m6_c00214{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.md_c00214{transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);}
.m4_c00214{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.mf_c00214{transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);}
.m5_c00214{transform:matrix(0.253280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253280,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{transform:matrix(0.256641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256641,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{transform:matrix(0.257807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257807,0.000000,0.000000,0.250000,0,0);}
.mb_c00214{transform:matrix(0.261657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261657,0.000000,0.000000,0.250000,0,0);}
.ma_c00214{transform:matrix(0.266402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266402,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls7b_c00214{letter-spacing:-3.339000px;}
.ls7e_c00214{letter-spacing:-2.373000px;}
.ls91_c00214{letter-spacing:-2.016000px;}
.ls8b_c00214{letter-spacing:-0.732240px;}
.ls77_c00214{letter-spacing:-0.406800px;}
.ls70_c00214{letter-spacing:-0.366120px;}
.ls87_c00214{letter-spacing:-0.339000px;}
.ls76_c00214{letter-spacing:-0.264000px;}
.ls6c_c00214{letter-spacing:-0.183060px;}
.ls88_c00214{letter-spacing:-0.162720px;}
.ls8e_c00214{letter-spacing:-0.138600px;}
.ls86_c00214{letter-spacing:-0.135600px;}
.ls84_c00214{letter-spacing:-0.122040px;}
.ls6d_c00214{letter-spacing:0.000000px;}
.ls90_c00214{letter-spacing:0.108480px;}
.ls83_c00214{letter-spacing:0.162720px;}
.ls82_c00214{letter-spacing:0.178200px;}
.lsa_c00214{letter-spacing:0.184800px;}
.ls7a_c00214{letter-spacing:0.191400px;}
.ls66_c00214{letter-spacing:0.198000px;}
.ls6e_c00214{letter-spacing:0.230520px;}
.ls7d_c00214{letter-spacing:0.303600px;}
.ls8f_c00214{letter-spacing:0.330000px;}
.ls2b_c00214{letter-spacing:0.336600px;}
.ls2d_c00214{letter-spacing:0.343200px;}
.ls2f_c00214{letter-spacing:0.349800px;}
.ls4c_c00214{letter-spacing:0.352560px;}
.ls5d_c00214{letter-spacing:0.356400px;}
.ls21_c00214{letter-spacing:0.359340px;}
.ls51_c00214{letter-spacing:0.372900px;}
.ls47_c00214{letter-spacing:0.402600px;}
.lsb_c00214{letter-spacing:0.413580px;}
.ls23_c00214{letter-spacing:0.435600px;}
.ls0_c00214{letter-spacing:0.494940px;}
.ls68_c00214{letter-spacing:0.514800px;}
.ls14_c00214{letter-spacing:0.627000px;}
.ls89_c00214{letter-spacing:0.633600px;}
.ls7f_c00214{letter-spacing:0.657660px;}
.ls43_c00214{letter-spacing:0.666600px;}
.ls8a_c00214{letter-spacing:0.699600px;}
.ls8c_c00214{letter-spacing:0.745800px;}
.ls5_c00214{letter-spacing:0.766140px;}
.ls1d_c00214{letter-spacing:0.831600px;}
.ls78_c00214{letter-spacing:0.884400px;}
.ls52_c00214{letter-spacing:0.897600px;}
.ls28_c00214{letter-spacing:0.901740px;}
.ls4_c00214{letter-spacing:0.904200px;}
.ls3e_c00214{letter-spacing:0.943800px;}
.ls42_c00214{letter-spacing:0.963600px;}
.ls7_c00214{letter-spacing:0.970200px;}
.ls4e_c00214{letter-spacing:0.976800px;}
.ls7c_c00214{letter-spacing:1.017000px;}
.ls57_c00214{letter-spacing:1.050900px;}
.ls5b_c00214{letter-spacing:1.062600px;}
.ls72_c00214{letter-spacing:1.069200px;}
.ls4d_c00214{letter-spacing:1.075800px;}
.ls67_c00214{letter-spacing:1.082400px;}
.ls4b_c00214{letter-spacing:1.102200px;}
.ls6_c00214{letter-spacing:1.105140px;}
.ls75_c00214{letter-spacing:1.108800px;}
.ls15_c00214{letter-spacing:1.115400px;}
.ls5e_c00214{letter-spacing:1.148400px;}
.ls54_c00214{letter-spacing:1.155000px;}
.ls3c_c00214{letter-spacing:1.168200px;}
.ls63_c00214{letter-spacing:1.174800px;}
.ls46_c00214{letter-spacing:1.181400px;}
.ls18_c00214{letter-spacing:1.188000px;}
.ls19_c00214{letter-spacing:1.207800px;}
.ls2a_c00214{letter-spacing:1.234200px;}
.ls3f_c00214{letter-spacing:1.280400px;}
.ls73_c00214{letter-spacing:1.293600px;}
.ls58_c00214{letter-spacing:1.300200px;}
.ls36_c00214{letter-spacing:1.306800px;}
.ls49_c00214{letter-spacing:1.313400px;}
.ls20_c00214{letter-spacing:1.320000px;}
.ls45_c00214{letter-spacing:1.333200px;}
.ls10_c00214{letter-spacing:1.346400px;}
.ls2c_c00214{letter-spacing:1.353000px;}
.ls81_c00214{letter-spacing:1.359600px;}
.ls4f_c00214{letter-spacing:1.392600px;}
.ls53_c00214{letter-spacing:1.405800px;}
.ls5f_c00214{letter-spacing:1.445400px;}
.ls11_c00214{letter-spacing:1.471800px;}
.ls30_c00214{letter-spacing:1.478400px;}
.ls3b_c00214{letter-spacing:1.485000px;}
.ls50_c00214{letter-spacing:1.491600px;}
.ls55_c00214{letter-spacing:1.498200px;}
.ls4a_c00214{letter-spacing:1.504800px;}
.ls33_c00214{letter-spacing:1.518000px;}
.ls1c_c00214{letter-spacing:1.524600px;}
.ls24_c00214{letter-spacing:1.531200px;}
.ls5a_c00214{letter-spacing:1.544400px;}
.ls65_c00214{letter-spacing:1.557600px;}
.ls8d_c00214{letter-spacing:1.584000px;}
.ls13_c00214{letter-spacing:1.623600px;}
.ls2_c00214{letter-spacing:1.636800px;}
.ls56_c00214{letter-spacing:1.650000px;}
.ls80_c00214{letter-spacing:1.654320px;}
.ls74_c00214{letter-spacing:1.669800px;}
.ls39_c00214{letter-spacing:1.676400px;}
.lse_c00214{letter-spacing:1.689600px;}
.ls2e_c00214{letter-spacing:1.709400px;}
.ls6b_c00214{letter-spacing:1.714980px;}
.ls16_c00214{letter-spacing:1.716000px;}
.ls3d_c00214{letter-spacing:1.729200px;}
.ls79_c00214{letter-spacing:1.749000px;}
.ls44_c00214{letter-spacing:1.755600px;}
.ls5c_c00214{letter-spacing:1.768800px;}
.ls31_c00214{letter-spacing:1.775400px;}
.ls22_c00214{letter-spacing:1.788600px;}
.ls12_c00214{letter-spacing:1.795200px;}
.ls27_c00214{letter-spacing:1.808400px;}
.ls29_c00214{letter-spacing:1.815000px;}
.ls69_c00214{letter-spacing:1.854600px;}
.ls3a_c00214{letter-spacing:1.874400px;}
.ls1e_c00214{letter-spacing:1.887600px;}
.ls26_c00214{letter-spacing:1.914000px;}
.ls9_c00214{letter-spacing:1.920600px;}
.lsc_c00214{letter-spacing:1.960200px;}
.ls48_c00214{letter-spacing:1.999800px;}
.ls41_c00214{letter-spacing:2.019600px;}
.ls35_c00214{letter-spacing:2.026200px;}
.ls25_c00214{letter-spacing:2.032800px;}
.ls64_c00214{letter-spacing:2.039400px;}
.ls71_c00214{letter-spacing:2.046000px;}
.ls1a_c00214{letter-spacing:2.052600px;}
.ls40_c00214{letter-spacing:2.059200px;}
.ls6a_c00214{letter-spacing:2.085600px;}
.ls62_c00214{letter-spacing:2.092200px;}
.ls3_c00214{letter-spacing:2.211000px;}
.lsf_c00214{letter-spacing:2.283600px;}
.ls60_c00214{letter-spacing:2.382600px;}
.ls61_c00214{letter-spacing:2.395800px;}
.ls37_c00214{letter-spacing:2.428800px;}
.ls38_c00214{letter-spacing:2.435400px;}
.lsd_c00214{letter-spacing:2.448600px;}
.ls34_c00214{letter-spacing:2.488200px;}
.ls8_c00214{letter-spacing:2.574000px;}
.ls1f_c00214{letter-spacing:2.699400px;}
.ls32_c00214{letter-spacing:2.706000px;}
.ls1_c00214{letter-spacing:2.778600px;}
.ls17_c00214{letter-spacing:2.923800px;}
.ls85_c00214{letter-spacing:2.930400px;}
.ls1b_c00214{letter-spacing:3.154800px;}
.ls59_c00214{letter-spacing:3.207600px;}
.ls6f_c00214{letter-spacing:3.300000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{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__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00214{word-spacing:-16.814400px;}
.ws7_c00214{word-spacing:-16.698000px;}
.ws9_c00214{word-spacing:0.000000px;}
.ws1_c00214{word-spacing:122.522400px;}
.ws2_c00214{word-spacing:123.486000px;}
.ws8_c00214{word-spacing:125.252400px;}
.ws5_c00214{word-spacing:125.254800px;}
.ws4_c00214{word-spacing:125.320800px;}
.ws3_c00214{word-spacing:125.571600px;}
.ws0_c00214{word-spacing:127.302000px;}
._16_c00214{margin-left:-14.509200px;}
._15_c00214{margin-left:-12.884760px;}
._20_c00214{margin-left:-10.270140px;}
._13_c00214{margin-left:-6.283200px;}
._14_c00214{margin-left:-5.151600px;}
._10_c00214{margin-left:-3.623400px;}
._b_c00214{margin-left:-2.348160px;}
._e_c00214{margin-left:-1.174800px;}
._f_c00214{width:1.122000px;}
._11_c00214{width:2.640000px;}
._12_c00214{width:3.696000px;}
._a_c00214{width:5.424000px;}
._21_c00214{width:6.441000px;}
._9_c00214{width:8.041080px;}
._1d_c00214{width:10.084800px;}
._1f_c00214{width:11.616000px;}
._1e_c00214{width:13.602600px;}
._1c_c00214{width:14.726640px;}
._c_c00214{width:15.991800px;}
._8_c00214{width:17.886000px;}
._5_c00214{width:20.827440px;}
._d_c00214{width:22.125360px;}
._7_c00214{width:24.116400px;}
._1_c00214{width:26.287800px;}
._6_c00214{width:28.380000px;}
._2_c00214{width:29.462400px;}
._3_c00214{width:31.376400px;}
._0_c00214{width:36.632700px;}
._4_c00214{width:38.675160px;}
._17_c00214{width:45.579600px;}
._1a_c00214{width:47.467200px;}
._18_c00214{width:49.038000px;}
._1b_c00214{width:50.080800px;}
._19_c00214{width:51.387600px;}
.fc0_c00214{color:transparent;}
.fs5_c00214{font-size:57.600000px;}
.fs0_c00214{font-size:60.600000px;}
.fs2_c00214{font-size:66.000000px;}
.fs1_c00214{font-size:67.800000px;}
.fs3_c00214{font-size:73.800000px;}
.fs4_c00214{font-size:95.400000px;}
.y0_c00214{bottom:0.000000px;}
.y27_c00214{bottom:66.600000px;}
.y26_c00214{bottom:144.000000px;}
.y25_c00214{bottom:174.600000px;}
.y24_c00214{bottom:174.604500px;}
.y23_c00214{bottom:205.575000px;}
.y22_c00214{bottom:237.255000px;}
.y21_c00214{bottom:268.200000px;}
.y20_c00214{bottom:268.204500px;}
.y1f_c00214{bottom:299.538000px;}
.y1e_c00214{bottom:330.838500px;}
.y1d_c00214{bottom:362.529000px;}
.y1c_c00214{bottom:393.136500px;}
.y1b_c00214{bottom:424.800000px;}
.y1a_c00214{bottom:424.801500px;}
.y19_c00214{bottom:456.135000px;}
.y18_c00214{bottom:487.095000px;}
.y17_c00214{bottom:518.404500px;}
.y16_c00214{bottom:549.375000px;}
.y15_c00214{bottom:580.695000px;}
.y14_c00214{bottom:611.640000px;}
.y13_c00214{bottom:642.975000px;}
.y12_c00214{bottom:674.295000px;}
.y11_c00214{bottom:674.298000px;}
.y10_c00214{bottom:705.615000px;}
.yf_c00214{bottom:736.935000px;}
.ye_c00214{bottom:736.936500px;}
.yd_c00214{bottom:768.600000px;}
.yc_c00214{bottom:799.912500px;}
.ya_c00214{bottom:862.198500px;}
.yb_c00214{bottom:862.200000px;}
.y9_c00214{bottom:923.760000px;}
.y8_c00214{bottom:923.763000px;}
.y7_c00214{bottom:955.443000px;}
.y6_c00214{bottom:986.760000px;}
.y5_c00214{bottom:1048.695000px;}
.y3_c00214{bottom:1080.714450px;}
.y4_c00214{bottom:1080.720000px;}
.y2_c00214{bottom:1112.055000px;}
.y1_c00214{bottom:1186.560000px;}
.he_c00214{height:56.531250px;}
.h2_c00214{height:59.475586px;}
.h5_c00214{height:64.775391px;}
.h3_c00214{height:66.508887px;}
.h7_c00214{height:66.514887px;}
.h4_c00214{height:66.531087px;}
.hc_c00214{height:66.535992px;}
.h8_c00214{height:66.538887px;}
.hb_c00214{height:66.541992px;}
.hd_c00214{height:66.565992px;}
.ha_c00214{height:70.713281px;}
.h6_c00214{height:72.430664px;}
.h9_c00214{height:99.499219px;}
.h1_c00214{height:1263.000000px;}
.h0_c00214{height:1263.240000px;}
.w1_c00214{width:892.500000px;}
.w0_c00214{width:892.800000px;}
.x0_c00214{left:0.000000px;}
.x1_c00214{left:122.685000px;}
.x2_c00214{left:123.900000px;}
.xc_c00214{left:125.424000px;}
.x5_c00214{left:178.170000px;}
.xd_c00214{left:211.875000px;}
.x20_c00214{left:215.145000px;}
.x14_c00214{left:234.180000px;}
.x15_c00214{left:255.060000px;}
.x8_c00214{left:285.660000px;}
.x9_c00214{left:306.945000px;}
.x3_c00214{left:374.685000px;}
.x4_c00214{left:408.960000px;}
.x24_c00214{left:425.040000px;}
.xe_c00214{left:486.540000px;}
.x6_c00214{left:493.230000px;}
.xf_c00214{left:507.420000px;}
.xa_c00214{left:514.620000px;}
.x7_c00214{left:527.325000px;}
.x17_c00214{left:533.340000px;}
.xb_c00214{left:535.515000px;}
.x18_c00214{left:553.710000px;}
.x1c_c00214{left:574.770000px;}
.x19_c00214{left:579.975000px;}
.x23_c00214{left:600.810000px;}
.x1d_c00214{left:627.330000px;}
.x1e_c00214{left:635.265000px;}
.x16_c00214{left:645.645000px;}
.x1f_c00214{left:647.640000px;}
.x12_c00214{left:649.950000px;}
.x10_c00214{left:663.180000px;}
.x1a_c00214{left:664.350000px;}
.x13_c00214{left:669.825000px;}
.x21_c00214{left:675.060000px;}
.x11_c00214{left:682.350000px;}
.x1b_c00214{left:684.270000px;}
.x22_c00214{left:695.400000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls7b_c00214{letter-spacing:-2.968000pt;}
.ls7e_c00214{letter-spacing:-2.109333pt;}
.ls91_c00214{letter-spacing:-1.792000pt;}
.ls8b_c00214{letter-spacing:-0.650880pt;}
.ls77_c00214{letter-spacing:-0.361600pt;}
.ls70_c00214{letter-spacing:-0.325440pt;}
.ls87_c00214{letter-spacing:-0.301333pt;}
.ls76_c00214{letter-spacing:-0.234667pt;}
.ls6c_c00214{letter-spacing:-0.162720pt;}
.ls88_c00214{letter-spacing:-0.144640pt;}
.ls8e_c00214{letter-spacing:-0.123200pt;}
.ls86_c00214{letter-spacing:-0.120533pt;}
.ls84_c00214{letter-spacing:-0.108480pt;}
.ls6d_c00214{letter-spacing:0.000000pt;}
.ls90_c00214{letter-spacing:0.096427pt;}
.ls83_c00214{letter-spacing:0.144640pt;}
.ls82_c00214{letter-spacing:0.158400pt;}
.lsa_c00214{letter-spacing:0.164267pt;}
.ls7a_c00214{letter-spacing:0.170133pt;}
.ls66_c00214{letter-spacing:0.176000pt;}
.ls6e_c00214{letter-spacing:0.204907pt;}
.ls7d_c00214{letter-spacing:0.269867pt;}
.ls8f_c00214{letter-spacing:0.293333pt;}
.ls2b_c00214{letter-spacing:0.299200pt;}
.ls2d_c00214{letter-spacing:0.305067pt;}
.ls2f_c00214{letter-spacing:0.310933pt;}
.ls4c_c00214{letter-spacing:0.313387pt;}
.ls5d_c00214{letter-spacing:0.316800pt;}
.ls21_c00214{letter-spacing:0.319413pt;}
.ls51_c00214{letter-spacing:0.331467pt;}
.ls47_c00214{letter-spacing:0.357867pt;}
.lsb_c00214{letter-spacing:0.367627pt;}
.ls23_c00214{letter-spacing:0.387200pt;}
.ls0_c00214{letter-spacing:0.439947pt;}
.ls68_c00214{letter-spacing:0.457600pt;}
.ls14_c00214{letter-spacing:0.557333pt;}
.ls89_c00214{letter-spacing:0.563200pt;}
.ls7f_c00214{letter-spacing:0.584587pt;}
.ls43_c00214{letter-spacing:0.592533pt;}
.ls8a_c00214{letter-spacing:0.621867pt;}
.ls8c_c00214{letter-spacing:0.662933pt;}
.ls5_c00214{letter-spacing:0.681013pt;}
.ls1d_c00214{letter-spacing:0.739200pt;}
.ls78_c00214{letter-spacing:0.786133pt;}
.ls52_c00214{letter-spacing:0.797867pt;}
.ls28_c00214{letter-spacing:0.801547pt;}
.ls4_c00214{letter-spacing:0.803733pt;}
.ls3e_c00214{letter-spacing:0.838933pt;}
.ls42_c00214{letter-spacing:0.856533pt;}
.ls7_c00214{letter-spacing:0.862400pt;}
.ls4e_c00214{letter-spacing:0.868267pt;}
.ls7c_c00214{letter-spacing:0.904000pt;}
.ls57_c00214{letter-spacing:0.934133pt;}
.ls5b_c00214{letter-spacing:0.944533pt;}
.ls72_c00214{letter-spacing:0.950400pt;}
.ls4d_c00214{letter-spacing:0.956267pt;}
.ls67_c00214{letter-spacing:0.962133pt;}
.ls4b_c00214{letter-spacing:0.979733pt;}
.ls6_c00214{letter-spacing:0.982347pt;}
.ls75_c00214{letter-spacing:0.985600pt;}
.ls15_c00214{letter-spacing:0.991467pt;}
.ls5e_c00214{letter-spacing:1.020800pt;}
.ls54_c00214{letter-spacing:1.026667pt;}
.ls3c_c00214{letter-spacing:1.038400pt;}
.ls63_c00214{letter-spacing:1.044267pt;}
.ls46_c00214{letter-spacing:1.050133pt;}
.ls18_c00214{letter-spacing:1.056000pt;}
.ls19_c00214{letter-spacing:1.073600pt;}
.ls2a_c00214{letter-spacing:1.097067pt;}
.ls3f_c00214{letter-spacing:1.138133pt;}
.ls73_c00214{letter-spacing:1.149867pt;}
.ls58_c00214{letter-spacing:1.155733pt;}
.ls36_c00214{letter-spacing:1.161600pt;}
.ls49_c00214{letter-spacing:1.167467pt;}
.ls20_c00214{letter-spacing:1.173333pt;}
.ls45_c00214{letter-spacing:1.185067pt;}
.ls10_c00214{letter-spacing:1.196800pt;}
.ls2c_c00214{letter-spacing:1.202667pt;}
.ls81_c00214{letter-spacing:1.208533pt;}
.ls4f_c00214{letter-spacing:1.237867pt;}
.ls53_c00214{letter-spacing:1.249600pt;}
.ls5f_c00214{letter-spacing:1.284800pt;}
.ls11_c00214{letter-spacing:1.308267pt;}
.ls30_c00214{letter-spacing:1.314133pt;}
.ls3b_c00214{letter-spacing:1.320000pt;}
.ls50_c00214{letter-spacing:1.325867pt;}
.ls55_c00214{letter-spacing:1.331733pt;}
.ls4a_c00214{letter-spacing:1.337600pt;}
.ls33_c00214{letter-spacing:1.349333pt;}
.ls1c_c00214{letter-spacing:1.355200pt;}
.ls24_c00214{letter-spacing:1.361067pt;}
.ls5a_c00214{letter-spacing:1.372800pt;}
.ls65_c00214{letter-spacing:1.384533pt;}
.ls8d_c00214{letter-spacing:1.408000pt;}
.ls13_c00214{letter-spacing:1.443200pt;}
.ls2_c00214{letter-spacing:1.454933pt;}
.ls56_c00214{letter-spacing:1.466667pt;}
.ls80_c00214{letter-spacing:1.470507pt;}
.ls74_c00214{letter-spacing:1.484267pt;}
.ls39_c00214{letter-spacing:1.490133pt;}
.lse_c00214{letter-spacing:1.501867pt;}
.ls2e_c00214{letter-spacing:1.519467pt;}
.ls6b_c00214{letter-spacing:1.524427pt;}
.ls16_c00214{letter-spacing:1.525333pt;}
.ls3d_c00214{letter-spacing:1.537067pt;}
.ls79_c00214{letter-spacing:1.554667pt;}
.ls44_c00214{letter-spacing:1.560533pt;}
.ls5c_c00214{letter-spacing:1.572267pt;}
.ls31_c00214{letter-spacing:1.578133pt;}
.ls22_c00214{letter-spacing:1.589867pt;}
.ls12_c00214{letter-spacing:1.595733pt;}
.ls27_c00214{letter-spacing:1.607467pt;}
.ls29_c00214{letter-spacing:1.613333pt;}
.ls69_c00214{letter-spacing:1.648533pt;}
.ls3a_c00214{letter-spacing:1.666133pt;}
.ls1e_c00214{letter-spacing:1.677867pt;}
.ls26_c00214{letter-spacing:1.701333pt;}
.ls9_c00214{letter-spacing:1.707200pt;}
.lsc_c00214{letter-spacing:1.742400pt;}
.ls48_c00214{letter-spacing:1.777600pt;}
.ls41_c00214{letter-spacing:1.795200pt;}
.ls35_c00214{letter-spacing:1.801067pt;}
.ls25_c00214{letter-spacing:1.806933pt;}
.ls64_c00214{letter-spacing:1.812800pt;}
.ls71_c00214{letter-spacing:1.818667pt;}
.ls1a_c00214{letter-spacing:1.824533pt;}
.ls40_c00214{letter-spacing:1.830400pt;}
.ls6a_c00214{letter-spacing:1.853867pt;}
.ls62_c00214{letter-spacing:1.859733pt;}
.ls3_c00214{letter-spacing:1.965333pt;}
.lsf_c00214{letter-spacing:2.029867pt;}
.ls60_c00214{letter-spacing:2.117867pt;}
.ls61_c00214{letter-spacing:2.129600pt;}
.ls37_c00214{letter-spacing:2.158933pt;}
.ls38_c00214{letter-spacing:2.164800pt;}
.lsd_c00214{letter-spacing:2.176533pt;}
.ls34_c00214{letter-spacing:2.211733pt;}
.ls8_c00214{letter-spacing:2.288000pt;}
.ls1f_c00214{letter-spacing:2.399467pt;}
.ls32_c00214{letter-spacing:2.405333pt;}
.ls1_c00214{letter-spacing:2.469867pt;}
.ls17_c00214{letter-spacing:2.598933pt;}
.ls85_c00214{letter-spacing:2.604800pt;}
.ls1b_c00214{letter-spacing:2.804267pt;}
.ls59_c00214{letter-spacing:2.851200pt;}
.ls6f_c00214{letter-spacing:2.933333pt;}
.ws6_c00214{word-spacing:-14.946133pt;}
.ws7_c00214{word-spacing:-14.842667pt;}
.ws9_c00214{word-spacing:0.000000pt;}
.ws1_c00214{word-spacing:108.908800pt;}
.ws2_c00214{word-spacing:109.765333pt;}
.ws8_c00214{word-spacing:111.335467pt;}
.ws5_c00214{word-spacing:111.337600pt;}
.ws4_c00214{word-spacing:111.396267pt;}
.ws3_c00214{word-spacing:111.619200pt;}
.ws0_c00214{word-spacing:113.157333pt;}
._16_c00214{margin-left:-12.897067pt;}
._15_c00214{margin-left:-11.453120pt;}
._20_c00214{margin-left:-9.129013pt;}
._13_c00214{margin-left:-5.585067pt;}
._14_c00214{margin-left:-4.579200pt;}
._10_c00214{margin-left:-3.220800pt;}
._b_c00214{margin-left:-2.087253pt;}
._e_c00214{margin-left:-1.044267pt;}
._f_c00214{width:0.997333pt;}
._11_c00214{width:2.346667pt;}
._12_c00214{width:3.285333pt;}
._a_c00214{width:4.821333pt;}
._21_c00214{width:5.725333pt;}
._9_c00214{width:7.147627pt;}
._1d_c00214{width:8.964267pt;}
._1f_c00214{width:10.325333pt;}
._1e_c00214{width:12.091200pt;}
._1c_c00214{width:13.090347pt;}
._c_c00214{width:14.214933pt;}
._8_c00214{width:15.898667pt;}
._5_c00214{width:18.513280pt;}
._d_c00214{width:19.666987pt;}
._7_c00214{width:21.436800pt;}
._1_c00214{width:23.366933pt;}
._6_c00214{width:25.226667pt;}
._2_c00214{width:26.188800pt;}
._3_c00214{width:27.890133pt;}
._0_c00214{width:32.562400pt;}
._4_c00214{width:34.377920pt;}
._17_c00214{width:40.515200pt;}
._1a_c00214{width:42.193067pt;}
._18_c00214{width:43.589333pt;}
._1b_c00214{width:44.516267pt;}
._19_c00214{width:45.677867pt;}
.fs5_c00214{font-size:51.200000pt;}
.fs0_c00214{font-size:53.866667pt;}
.fs2_c00214{font-size:58.666667pt;}
.fs1_c00214{font-size:60.266667pt;}
.fs3_c00214{font-size:65.600000pt;}
.fs4_c00214{font-size:84.800000pt;}
.y0_c00214{bottom:0.000000pt;}
.y27_c00214{bottom:59.200000pt;}
.y26_c00214{bottom:128.000000pt;}
.y25_c00214{bottom:155.200000pt;}
.y24_c00214{bottom:155.204000pt;}
.y23_c00214{bottom:182.733333pt;}
.y22_c00214{bottom:210.893333pt;}
.y21_c00214{bottom:238.400000pt;}
.y20_c00214{bottom:238.404000pt;}
.y1f_c00214{bottom:266.256000pt;}
.y1e_c00214{bottom:294.078667pt;}
.y1d_c00214{bottom:322.248000pt;}
.y1c_c00214{bottom:349.454667pt;}
.y1b_c00214{bottom:377.600000pt;}
.y1a_c00214{bottom:377.601333pt;}
.y19_c00214{bottom:405.453333pt;}
.y18_c00214{bottom:432.973333pt;}
.y17_c00214{bottom:460.804000pt;}
.y16_c00214{bottom:488.333333pt;}
.y15_c00214{bottom:516.173333pt;}
.y14_c00214{bottom:543.680000pt;}
.y13_c00214{bottom:571.533333pt;}
.y12_c00214{bottom:599.373333pt;}
.y11_c00214{bottom:599.376000pt;}
.y10_c00214{bottom:627.213333pt;}
.yf_c00214{bottom:655.053333pt;}
.ye_c00214{bottom:655.054667pt;}
.yd_c00214{bottom:683.200000pt;}
.yc_c00214{bottom:711.033333pt;}
.ya_c00214{bottom:766.398667pt;}
.yb_c00214{bottom:766.400000pt;}
.y9_c00214{bottom:821.120000pt;}
.y8_c00214{bottom:821.122667pt;}
.y7_c00214{bottom:849.282667pt;}
.y6_c00214{bottom:877.120000pt;}
.y5_c00214{bottom:932.173333pt;}
.y3_c00214{bottom:960.635067pt;}
.y4_c00214{bottom:960.640000pt;}
.y2_c00214{bottom:988.493333pt;}
.y1_c00214{bottom:1054.720000pt;}
.he_c00214{height:50.250000pt;}
.h2_c00214{height:52.867187pt;}
.h5_c00214{height:57.578125pt;}
.h3_c00214{height:59.119010pt;}
.h7_c00214{height:59.124344pt;}
.h4_c00214{height:59.138744pt;}
.hc_c00214{height:59.143104pt;}
.h8_c00214{height:59.145677pt;}
.hb_c00214{height:59.148438pt;}
.hd_c00214{height:59.169771pt;}
.ha_c00214{height:62.856250pt;}
.h6_c00214{height:64.382813pt;}
.h9_c00214{height:88.443750pt;}
.h1_c00214{height:1122.666667pt;}
.h0_c00214{height:1122.880000pt;}
.w1_c00214{width:793.333333pt;}
.w0_c00214{width:793.600000pt;}
.x0_c00214{left:0.000000pt;}
.x1_c00214{left:109.053333pt;}
.x2_c00214{left:110.133333pt;}
.xc_c00214{left:111.488000pt;}
.x5_c00214{left:158.373333pt;}
.xd_c00214{left:188.333333pt;}
.x20_c00214{left:191.240000pt;}
.x14_c00214{left:208.160000pt;}
.x15_c00214{left:226.720000pt;}
.x8_c00214{left:253.920000pt;}
.x9_c00214{left:272.840000pt;}
.x3_c00214{left:333.053333pt;}
.x4_c00214{left:363.520000pt;}
.x24_c00214{left:377.813333pt;}
.xe_c00214{left:432.480000pt;}
.x6_c00214{left:438.426667pt;}
.xf_c00214{left:451.040000pt;}
.xa_c00214{left:457.440000pt;}
.x7_c00214{left:468.733333pt;}
.x17_c00214{left:474.080000pt;}
.xb_c00214{left:476.013333pt;}
.x18_c00214{left:492.186667pt;}
.x1c_c00214{left:510.906667pt;}
.x19_c00214{left:515.533333pt;}
.x23_c00214{left:534.053333pt;}
.x1d_c00214{left:557.626667pt;}
.x1e_c00214{left:564.680000pt;}
.x16_c00214{left:573.906667pt;}
.x1f_c00214{left:575.680000pt;}
.x12_c00214{left:577.733333pt;}
.x10_c00214{left:589.493333pt;}
.x1a_c00214{left:590.533333pt;}
.x13_c00214{left:595.400000pt;}
.x21_c00214{left:600.053333pt;}
.x11_c00214{left:606.533333pt;}
.x1b_c00214{left:608.240000pt;}
.x22_c00214{left:618.133333pt;}
}





/* 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_c00215 {
    display:none;
  }
  .loading-indicator_c00215.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00215 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_c00215 { 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_c00215" -> "#page-container .classname_c00215")
 */
.pf_c00215 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00215 { /* 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_c00215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00215 { /* 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_c00215 { /* 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_c00215 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00215 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00215 {overflow:visible;}
  }
}
.c_c00215 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00215 { /* 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_c00215:after { /* webkit #35443 */
  content: '';
}
.t_c00215:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00215 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 */
}
.__c00215 { /* 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_c00215 { /* info for Javascript */
  display:none;
}
.l_c00215 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00215 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00215 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00215: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_c00215 {
    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_c00215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00215.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_c00215 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00215;src:url('chunks/assets/font_46b7a0aaa712739651818ff0.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.284668;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_c00215;src:url('chunks/assets/font_2f7c56c71955e7ee9232af24.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.284180;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_c00215;src:url('chunks/assets/font_052a03064b1a2917f2081ea2.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;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:ff4_c00215;src:url('chunks/assets/font_a7e74cd9414c90526377945d.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;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:ff5_c00215;src:url('chunks/assets/font_25b41c9d99c7ce56a4953d81.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:0.666000;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_c00215;src:url('chunks/assets/font_4b2bddf725ddc1ade080b5f9.woff2')format("woff");}.ff6_c00215{font-family:ff6_c00215;line-height:1.284180;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_c00215;src:url('chunks/assets/font_7c5ccfba408e3093ab7f1659.woff2')format("woff");}.ff7_c00215{font-family:ff7_c00215;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_c00215;src:url('chunks/assets/font_7e3c7411e99bbe07c430d1c8.woff2')format("woff");}.ff8_c00215{font-family:ff8_c00215;line-height:1.311035;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;}
.m3b_c00215{transform:matrix(0.106838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106838,0.000000,0.000000,0.250000,0,0);}
.mc_c00215{transform:matrix(0.148599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148599,0.000000,0.000000,0.250000,0,0);}
.m31_c00215{transform:matrix(0.162541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162541,0.000000,0.000000,0.250000,0,0);}
.m30_c00215{transform:matrix(0.171191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171191,0.000000,0.000000,0.250000,0,0);}
.m35_c00215{transform:matrix(0.180382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180382,0.000000,0.000000,0.250000,0,0);}
.md_c00215{transform:matrix(0.185899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185899,0.000000,0.000000,0.250000,0,0);}
.m32_c00215{transform:matrix(0.186178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186178,0.000000,0.000000,0.250000,0,0);}
.m2a_c00215{transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);}
.mb_c00215{transform:matrix(0.189453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189453,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(0.190924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190924,0.000000,0.000000,0.250000,0,0);}
.mf_c00215{transform:matrix(0.191659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191659,0.000000,0.000000,0.250000,0,0);}
.m14_c00215{transform:matrix(0.197723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197723,0.000000,0.000000,0.250000,0,0);}
.m11_c00215{transform:matrix(0.203067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203067,0.000000,0.000000,0.250000,0,0);}
.m10_c00215{transform:matrix(0.212827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212827,0.000000,0.000000,0.250000,0,0);}
.m13_c00215{transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);}
.m3e_c00215{transform:matrix(0.216905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216905,0.000000,0.000000,0.250000,0,0);}
.m22_c00215{transform:matrix(0.217373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217373,0.000000,0.000000,0.250000,0,0);}
.m33_c00215{transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);}
.m2f_c00215{transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);}
.m27_c00215{transform:matrix(0.224029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224029,0.000000,0.000000,0.250000,0,0);}
.m38_c00215{transform:matrix(0.224526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224526,0.000000,0.000000,0.250000,0,0);}
.m2d_c00215{transform:matrix(0.227388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227388,0.000000,0.000000,0.250000,0,0);}
.m40_c00215{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m26_c00215{transform:matrix(0.227891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227891,0.000000,0.000000,0.250000,0,0);}
.m3f_c00215{transform:matrix(0.228184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228184,0.000000,0.000000,0.250000,0,0);}
.m8_c00215{transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);}
.m9_c00215{transform:matrix(0.232441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232441,0.000000,0.000000,0.250000,0,0);}
.m3d_c00215{transform:matrix(0.233566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233566,0.000000,0.000000,0.250000,0,0);}
.m2c_c00215{transform:matrix(0.233934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233934,0.000000,0.000000,0.250000,0,0);}
.m3a_c00215{transform:matrix(0.235834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235834,0.000000,0.000000,0.250000,0,0);}
.m39_c00215{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.m3c_c00215{transform:matrix(0.236916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236916,0.000000,0.000000,0.250000,0,0);}
.m37_c00215{transform:matrix(0.242143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242143,0.000000,0.000000,0.250000,0,0);}
.ma_c00215{transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);}
.m7_c00215{transform:matrix(0.245193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245193,0.000000,0.000000,0.250000,0,0);}
.m28_c00215{transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);}
.m0_c00215{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);}
.m12_c00215{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m19_c00215{transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);}
.m2_c00215{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m1d_c00215{transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);}
.m29_c00215{transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);}
.m15_c00215{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.m42_c00215{transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);}
.m18_c00215{transform:matrix(0.251436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251436,0.000000,0.000000,0.250000,0,0);}
.m34_c00215{transform:matrix(0.251516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251516,0.000000,0.000000,0.250000,0,0);}
.m25_c00215{transform:matrix(0.252134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252134,0.000000,0.000000,0.250000,0,0);}
.m17_c00215{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m2e_c00215{transform:matrix(0.252239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252239,0.000000,0.000000,0.250000,0,0);}
.me_c00215{transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);}
.m36_c00215{transform:matrix(0.253080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253080,0.000000,0.000000,0.250000,0,0);}
.m6_c00215{transform:matrix(0.254616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254616,0.000000,0.000000,0.250000,0,0);}
.m41_c00215{transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);}
.m2b_c00215{transform:matrix(0.255350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255350,0.000000,0.000000,0.250000,0,0);}
.m3_c00215{transform:matrix(0.262673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262673,0.000000,0.000000,0.250000,0,0);}
.m16_c00215{transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);}
.m20_c00215{transform:matrix(0.278157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278157,0.000000,0.000000,0.250000,0,0);}
.m21_c00215{transform:matrix(0.287433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287433,0.000000,0.000000,0.250000,0,0);}
.m23_c00215{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00215{transform:matrix(0.309708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309708,0.000000,0.000000,0.250000,0,0);}
.m24_c00215{transform:matrix(0.319252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319252,0.000000,0.000000,0.250000,0,0);}
.m1f_c00215{transform:matrix(0.324958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324958,0.000000,0.000000,0.250000,0,0);}
.m1c_c00215{transform:matrix(0.377845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377845,0.000000,0.000000,0.250000,0,0);}
.m1e_c00215{transform:matrix(0.386201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386201,0.000000,0.000000,0.250000,0,0);}
.m4_c00215{transform:matrix(0.392769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392769,0.000000,0.000000,0.250000,0,0);}
.m1b_c00215{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m5_c00215{transform:matrix(0.524996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524996,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls92_c00215{letter-spacing:-3.990000px;}
.ls8d_c00215{letter-spacing:-3.864000px;}
.ls73_c00215{letter-spacing:-3.696000px;}
.ls95_c00215{letter-spacing:-3.423000px;}
.ls6f_c00215{letter-spacing:-3.339000px;}
.ls61_c00215{letter-spacing:-3.234000px;}
.ls9a_c00215{letter-spacing:-2.646000px;}
.ls99_c00215{letter-spacing:-2.625000px;}
.ls8b_c00215{letter-spacing:-2.352000px;}
.ls69_c00215{letter-spacing:-2.310000px;}
.ls6c_c00215{letter-spacing:-2.250600px;}
.ls71_c00215{letter-spacing:-2.100000px;}
.ls89_c00215{letter-spacing:-1.995000px;}
.ls86_c00215{letter-spacing:-1.742400px;}
.ls67_c00215{letter-spacing:-1.600080px;}
.ls84_c00215{letter-spacing:-1.281000px;}
.ls9e_c00215{letter-spacing:-0.823680px;}
.ls7b_c00215{letter-spacing:-0.805200px;}
.ls7f_c00215{letter-spacing:-0.383409px;}
.ls75_c00215{letter-spacing:-0.084000px;}
.ls81_c00215{letter-spacing:-0.027601px;}
.ls65_c00215{letter-spacing:0.000000px;}
.ls6e_c00215{letter-spacing:0.079200px;}
.ls88_c00215{letter-spacing:0.145200px;}
.ls5c_c00215{letter-spacing:0.147840px;}
.ls5e_c00215{letter-spacing:0.283800px;}
.ls4b_c00215{letter-spacing:0.323400px;}
.ls6a_c00215{letter-spacing:0.330000px;}
.ls43_c00215{letter-spacing:0.343200px;}
.ls8_c00215{letter-spacing:0.356400px;}
.ls98_c00215{letter-spacing:0.363000px;}
.ls60_c00215{letter-spacing:0.376200px;}
.ls72_c00215{letter-spacing:0.378000px;}
.ls3e_c00215{letter-spacing:0.409200px;}
.ls1_c00215{letter-spacing:0.415800px;}
.ls7a_c00215{letter-spacing:0.435600px;}
.ls42_c00215{letter-spacing:0.442200px;}
.ls54_c00215{letter-spacing:0.448800px;}
.ls78_c00215{letter-spacing:0.455400px;}
.ls90_c00215{letter-spacing:0.462000px;}
.ls13_c00215{letter-spacing:0.468600px;}
.ls18_c00215{letter-spacing:0.475200px;}
.ls4_c00215{letter-spacing:0.514800px;}
.ls83_c00215{letter-spacing:0.585600px;}
.ls70_c00215{letter-spacing:0.611520px;}
.ls64_c00215{letter-spacing:0.633600px;}
.ls4c_c00215{letter-spacing:0.645314px;}
.ls80_c00215{letter-spacing:0.690030px;}
.ls19_c00215{letter-spacing:0.825000px;}
.ls74_c00215{letter-spacing:0.833280px;}
.ls96_c00215{letter-spacing:0.900480px;}
.ls44_c00215{letter-spacing:0.904200px;}
.ls91_c00215{letter-spacing:0.994560px;}
.ls25_c00215{letter-spacing:1.003200px;}
.ls8e_c00215{letter-spacing:1.122240px;}
.ls82_c00215{letter-spacing:1.140030px;}
.ls7e_c00215{letter-spacing:1.200000px;}
.ls8f_c00215{letter-spacing:1.234200px;}
.lsd_c00215{letter-spacing:1.247400px;}
.ls7d_c00215{letter-spacing:1.260000px;}
.ls76_c00215{letter-spacing:1.263360px;}
.ls51_c00215{letter-spacing:1.267200px;}
.ls7c_c00215{letter-spacing:1.270080px;}
.ls22_c00215{letter-spacing:1.300200px;}
.ls9_c00215{letter-spacing:1.306800px;}
.ls4f_c00215{letter-spacing:1.326600px;}
.ls5b_c00215{letter-spacing:1.337280px;}
.ls1f_c00215{letter-spacing:1.379400px;}
.ls55_c00215{letter-spacing:1.405800px;}
.ls79_c00215{letter-spacing:1.417920px;}
.ls5a_c00215{letter-spacing:1.452000px;}
.ls10_c00215{letter-spacing:1.465200px;}
.ls34_c00215{letter-spacing:1.471800px;}
.ls12_c00215{letter-spacing:1.478400px;}
.ls7_c00215{letter-spacing:1.498200px;}
.ls39_c00215{letter-spacing:1.504800px;}
.ls62_c00215{letter-spacing:1.512000px;}
.ls6_c00215{letter-spacing:1.524600px;}
.ls58_c00215{letter-spacing:1.544400px;}
.ls5f_c00215{letter-spacing:1.557420px;}
.ls26_c00215{letter-spacing:1.557600px;}
.ls3a_c00215{letter-spacing:1.584000px;}
.lsf_c00215{letter-spacing:1.617000px;}
.ls66_c00215{letter-spacing:1.643400px;}
.ls30_c00215{letter-spacing:1.650000px;}
.ls5d_c00215{letter-spacing:1.656600px;}
.ls1c_c00215{letter-spacing:1.663200px;}
.ls8a_c00215{letter-spacing:1.664400px;}
.ls29_c00215{letter-spacing:1.683000px;}
.ls3f_c00215{letter-spacing:1.689600px;}
.ls2a_c00215{letter-spacing:1.696200px;}
.ls53_c00215{letter-spacing:1.702800px;}
.ls2e_c00215{letter-spacing:1.716000px;}
.ls24_c00215{letter-spacing:1.729200px;}
.ls0_c00215{letter-spacing:1.735800px;}
.ls2f_c00215{letter-spacing:1.755600px;}
.ls40_c00215{letter-spacing:1.768800px;}
.ls33_c00215{letter-spacing:1.782000px;}
.ls93_c00215{letter-spacing:1.787520px;}
.ls37_c00215{letter-spacing:1.788600px;}
.ls77_c00215{letter-spacing:1.808400px;}
.ls49_c00215{letter-spacing:1.815000px;}
.ls59_c00215{letter-spacing:1.828200px;}
.ls28_c00215{letter-spacing:1.854600px;}
.ls45_c00215{letter-spacing:1.874400px;}
.ls1a_c00215{letter-spacing:1.900800px;}
.ls46_c00215{letter-spacing:1.927200px;}
.ls14_c00215{letter-spacing:1.953600px;}
.ls32_c00215{letter-spacing:1.960200px;}
.ls4d_c00215{letter-spacing:1.962000px;}
.ls52_c00215{letter-spacing:1.986600px;}
.ls2_c00215{letter-spacing:1.999800px;}
.ls41_c00215{letter-spacing:2.013000px;}
.lsa_c00215{letter-spacing:2.019600px;}
.ls8c_c00215{letter-spacing:2.026200px;}
.lse_c00215{letter-spacing:2.032800px;}
.ls57_c00215{letter-spacing:2.072400px;}
.ls48_c00215{letter-spacing:2.085600px;}
.ls20_c00215{letter-spacing:2.098800px;}
.ls35_c00215{letter-spacing:2.118600px;}
.ls15_c00215{letter-spacing:2.158200px;}
.ls85_c00215{letter-spacing:2.160000px;}
.ls3c_c00215{letter-spacing:2.164800px;}
.ls2b_c00215{letter-spacing:2.211000px;}
.ls87_c00215{letter-spacing:2.220030px;}
.ls47_c00215{letter-spacing:2.250600px;}
.ls6d_c00215{letter-spacing:2.271360px;}
.ls21_c00215{letter-spacing:2.296800px;}
.ls3d_c00215{letter-spacing:2.310000px;}
.ls16_c00215{letter-spacing:2.349600px;}
.ls9c_c00215{letter-spacing:2.376000px;}
.ls9b_c00215{letter-spacing:2.382600px;}
.ls5_c00215{letter-spacing:2.389200px;}
.ls27_c00215{letter-spacing:2.395800px;}
.ls50_c00215{letter-spacing:2.442000px;}
.ls1e_c00215{letter-spacing:2.448600px;}
.ls2c_c00215{letter-spacing:2.455200px;}
.ls23_c00215{letter-spacing:2.488200px;}
.ls97_c00215{letter-spacing:2.501400px;}
.ls36_c00215{letter-spacing:2.633400px;}
.ls3b_c00215{letter-spacing:2.673000px;}
.ls11_c00215{letter-spacing:2.686200px;}
.ls4e_c00215{letter-spacing:2.692800px;}
.ls56_c00215{letter-spacing:2.706000px;}
.lsc_c00215{letter-spacing:2.745600px;}
.ls31_c00215{letter-spacing:2.758800px;}
.ls94_c00215{letter-spacing:2.850000px;}
.ls9d_c00215{letter-spacing:2.930400px;}
.ls4a_c00215{letter-spacing:2.937000px;}
.ls2d_c00215{letter-spacing:2.950200px;}
.ls1d_c00215{letter-spacing:2.963400px;}
.ls1b_c00215{letter-spacing:3.016200px;}
.ls6b_c00215{letter-spacing:3.030720px;}
.ls3_c00215{letter-spacing:3.115200px;}
.ls38_c00215{letter-spacing:3.154800px;}
.ls17_c00215{letter-spacing:3.194400px;}
.lsb_c00215{letter-spacing:3.207600px;}
.ls63_c00215{letter-spacing:3.300000px;}
.ls68_c00215{letter-spacing:3.540000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{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__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00215{word-spacing:-16.968600px;}
.ws9_c00215{word-spacing:-16.962000px;}
.wsa_c00215{word-spacing:-16.942200px;}
.ws0_c00215{word-spacing:-16.915800px;}
.wsd_c00215{word-spacing:0.000000px;}
.ws4_c00215{word-spacing:87.285000px;}
.wsc_c00215{word-spacing:87.318000px;}
.ws1_c00215{word-spacing:87.528000px;}
.wsb_c00215{word-spacing:87.840000px;}
.ws7_c00215{word-spacing:88.209000px;}
.ws3_c00215{word-spacing:88.638000px;}
.ws5_c00215{word-spacing:88.737000px;}
.ws6_c00215{word-spacing:89.661000px;}
.ws8_c00215{word-spacing:89.694000px;}
._19_c00215{margin-left:-14.711400px;}
._18_c00215{margin-left:-12.764160px;}
._3_c00215{margin-left:-11.015400px;}
._8_c00215{margin-left:-8.877000px;}
._c_c00215{margin-left:-7.662600px;}
._4_c00215{margin-left:-5.728800px;}
._1_c00215{margin-left:-3.960000px;}
._7_c00215{margin-left:-2.593800px;}
._2_c00215{margin-left:-1.036200px;}
._5_c00215{width:2.006400px;}
._0_c00215{width:4.026000px;}
._6_c00215{width:5.095200px;}
._12_c00215{width:8.382000px;}
._14_c00215{width:9.504000px;}
._11_c00215{width:11.800800px;}
._17_c00215{width:13.200000px;}
._16_c00215{width:14.487000px;}
._13_c00215{width:15.628800px;}
._15_c00215{width:18.275400px;}
._10_c00215{width:22.439644px;}
._9_c00215{width:30.650400px;}
._b_c00215{width:32.234400px;}
._a_c00215{width:34.544400px;}
._f_c00215{width:38.969550px;}
._e_c00215{width:89.882596px;}
._d_c00215{width:207.740432px;}
.fc0_c00215{color:transparent;}
.fsc_c00215{font-size:13.800600px;}
.fs9_c00215{font-size:17.280000px;}
.fsd_c00215{font-size:22.800600px;}
.fsa_c00215{font-size:24.000000px;}
.fs8_c00215{font-size:25.200000px;}
.fsb_c00215{font-size:27.000600px;}
.fse_c00215{font-size:36.600000px;}
.fs10_c00215{font-size:43.200000px;}
.fsf_c00215{font-size:44.400600px;}
.fs16_c00215{font-size:56.160000px;}
.fs11_c00215{font-size:57.000000px;}
.fs19_c00215{font-size:57.600000px;}
.fs6_c00215{font-size:60.000000px;}
.fs0_c00215{font-size:60.600000px;}
.fs1_c00215{font-size:66.000000px;}
.fs3_c00215{font-size:67.200000px;}
.fs18_c00215{font-size:68.400000px;}
.fs4_c00215{font-size:70.800000px;}
.fs15_c00215{font-size:75.000000px;}
.fs17_c00215{font-size:75.600000px;}
.fs2_c00215{font-size:92.400000px;}
.fs5_c00215{font-size:95.400000px;}
.fs14_c00215{font-size:97.800000px;}
.fs7_c00215{font-size:105.600000px;}
.fs12_c00215{font-size:110.400000px;}
.fs13_c00215{font-size:114.000000px;}
.y0_c00215{bottom:0.000000px;}
.y29_c00215{bottom:63.375000px;}
.y28_c00215{bottom:137.520000px;}
.y27_c00215{bottom:137.523000px;}
.y26_c00215{bottom:168.840000px;}
.y25_c00215{bottom:199.815000px;}
.y24_c00215{bottom:231.495000px;}
.y23_c00215{bottom:262.455000px;}
.y22_c00215{bottom:294.855000px;}
.y21_c00215{bottom:325.815000px;}
.y20_c00215{bottom:357.855000px;}
.y1f_c00215{bottom:357.856500px;}
.y1e_c00215{bottom:389.520000px;}
.y1d_c00215{bottom:420.855000px;}
.y1c_c00215{bottom:420.861000px;}
.y1b_c00215{bottom:451.815000px;}
.y1a_c00215{bottom:483.120000px;}
.y19_c00215{bottom:514.815000px;}
.y18_c00215{bottom:523.440000px;}
.y17_c00215{bottom:546.120000px;}
.y16_c00215{bottom:577.815000px;}
.y15_c00215{bottom:577.822500px;}
.y14_c00215{bottom:609.123000px;}
.y13_c00215{bottom:640.440000px;}
.y12_c00215{bottom:672.120000px;}
.y11_c00215{bottom:703.440000px;}
.y10_c00215{bottom:734.775000px;}
.yf_c00215{bottom:766.095000px;}
.ye_c00215{bottom:797.775000px;}
.yd_c00215{bottom:829.455000px;}
.yc_c00215{bottom:861.135000px;}
.yb_c00215{bottom:892.455000px;}
.ya_c00215{bottom:923.400000px;}
.y9_c00215{bottom:923.403000px;}
.y8_c00215{bottom:954.720000px;}
.y7_c00215{bottom:985.695000px;}
.y6_c00215{bottom:1017.000000px;}
.y5_c00215{bottom:1020.615000px;}
.y4_c00215{bottom:1048.335000px;}
.y3_c00215{bottom:1079.655000px;}
.y2_c00215{bottom:1111.335000px;}
.y1_c00215{bottom:1188.720000px;}
.hb_c00215{height:11.508480px;}
.he_c00215{height:14.393595px;}
.hf_c00215{height:22.366409px;}
.hc_c00215{height:23.554688px;}
.h10_c00215{height:23.780313px;}
.ha_c00215{height:24.732422px;}
.hd_c00215{height:26.486428px;}
.h1c_c00215{height:37.402560px;}
.h11_c00215{height:38.172656px;}
.h13_c00215{height:45.056250px;}
.h12_c00215{height:46.308438px;}
.h14_c00215{height:55.942383px;}
.h20_c00215{height:56.531250px;}
.h8_c00215{height:58.886719px;}
.h19_c00215{height:59.449219px;}
.h2_c00215{height:59.475586px;}
.h16_c00215{height:64.743164px;}
.h3_c00215{height:64.775391px;}
.h5_c00215{height:65.920312px;}
.h1f_c00215{height:65.953125px;}
.h1e_c00215{height:68.934375px;}
.h6_c00215{height:73.842188px;}
.h1b_c00215{height:75.585938px;}
.h1d_c00215{height:76.190625px;}
.h4_c00215{height:96.370313px;}
.h7_c00215{height:99.499219px;}
.h1a_c00215{height:102.002344px;}
.h9_c00215{height:103.640625px;}
.h15_c00215{height:108.297656px;}
.h18_c00215{height:111.829102px;}
.h17_c00215{height:111.884766px;}
.h1_c00215{height:1263.000000px;}
.h0_c00215{height:1263.240000px;}
.w1_c00215{width:892.500000px;}
.w0_c00215{width:892.800000px;}
.x0_c00215{left:0.000000px;}
.x60_c00215{left:112.575000px;}
.x38_c00215{left:114.675000px;}
.x21_c00215{left:116.070000px;}
.x15_c00215{left:117.510000px;}
.x9_c00215{left:118.950000px;}
.x1_c00215{left:120.525000px;}
.x39_c00215{left:122.760000px;}
.x44_c00215{left:124.710000px;}
.x53_c00215{left:167.325000px;}
.x2f_c00215{left:168.331500px;}
.x1c_c00215{left:169.890000px;}
.xd_c00215{left:171.705000px;}
.x2_c00215{left:173.715000px;}
.x3a_c00215{left:181.470000px;}
.xa_c00215{left:184.860000px;}
.x2c_c00215{left:190.305000px;}
.xe_c00215{left:194.010000px;}
.x37_c00215{left:202.710000px;}
.xb_c00215{left:204.825000px;}
.x3b_c00215{left:206.580000px;}
.x4d_c00215{left:219.090000px;}
.x54_c00215{left:222.690000px;}
.x3c_c00215{left:226.110000px;}
.x5_c00215{left:228.945000px;}
.xf_c00215{left:230.955000px;}
.x45_c00215{left:236.250000px;}
.x3d_c00215{left:244.470000px;}
.x6_c00215{left:250.545000px;}
.x3e_c00215{left:257.430000px;}
.x10_c00215{left:259.755000px;}
.x30_c00215{left:265.830000px;}
.x59_c00215{left:270.330000px;}
.x46_c00215{left:271.410000px;}
.x50_c00215{left:276.465000px;}
.x55_c00215{left:282.165000px;}
.x11_c00215{left:291.795000px;}
.x4e_c00215{left:299.205000px;}
.x51_c00215{left:302.415000px;}
.x31_c00215{left:305.115000px;}
.xc_c00215{left:312.405000px;}
.x16_c00215{left:313.605000px;}
.x32_c00215{left:317.850000px;}
.x5a_c00215{left:320.610000px;}
.x17_c00215{left:322.215000px;}
.x3f_c00215{left:329.340000px;}
.x63_c00215{left:331.740000px;}
.x47_c00215{left:345.720000px;}
.x33_c00215{left:350.850000px;}
.x7_c00215{left:359.100000px;}
.x5b_c00215{left:375.045000px;}
.x64_c00215{left:379.455000px;}
.x8_c00215{left:405.210000px;}
.x48_c00215{left:406.995000px;}
.x5c_c00215{left:408.075000px;}
.x49_c00215{left:418.965000px;}
.x65_c00215{left:426.855000px;}
.x40_c00215{left:428.610000px;}
.x4a_c00215{left:450.300000px;}
.x41_c00215{left:461.070000px;}
.x66_c00215{left:475.395000px;}
.x4b_c00215{left:478.140000px;}
.x5d_c00215{left:484.755000px;}
.x1d_c00215{left:502.170000px;}
.x67_c00215{left:523.260000px;}
.x61_c00215{left:527.010000px;}
.x1e_c00215{left:535.545000px;}
.x25_c00215{left:542.850000px;}
.x62_c00215{left:550.815000px;}
.x29_c00215{left:553.875000px;}
.x68_c00215{left:569.130000px;}
.x6a_c00215{left:579.720000px;}
.x2a_c00215{left:583.395000px;}
.x69_c00215{left:588.015000px;}
.x26_c00215{left:592.050000px;}
.x6b_c00215{left:599.265000px;}
.x52_c00215{left:623.010000px;}
.x22_c00215{left:625.620000px;}
.x56_c00215{left:627.660000px;}
.x19_c00215{left:630.495000px;}
.x3_c00215{left:634.050000px;}
.x1a_c00215{left:638.745000px;}
.x34_c00215{left:651.285000px;}
.x4_c00215{left:653.985000px;}
.x1b_c00215{left:656.850000px;}
.x2d_c00215{left:657.870000px;}
.x35_c00215{left:659.310000px;}
.x57_c00215{left:660.765000px;}
.x27_c00215{left:662.805000px;}
.x23_c00215{left:666.150000px;}
.x4f_c00215{left:668.700000px;}
.x28_c00215{left:671.190000px;}
.x58_c00215{left:678.405000px;}
.x36_c00215{left:679.530000px;}
.x24_c00215{left:686.340000px;}
.x2b_c00215{left:688.650000px;}
.x12_c00215{left:690.570000px;}
.x1f_c00215{left:693.420000px;}
.x5e_c00215{left:700.545000px;}
.x4c_c00215{left:702.900000px;}
.x13_c00215{left:708.285000px;}
.x20_c00215{left:713.325000px;}
.x42_c00215{left:718.245000px;}
.x5f_c00215{left:723.885000px;}
.x2e_c00215{left:727.725000px;}
.x18_c00215{left:730.965000px;}
.x14_c00215{left:732.435000px;}
.x43_c00215{left:738.045000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls92_c00215{letter-spacing:-3.546667pt;}
.ls8d_c00215{letter-spacing:-3.434667pt;}
.ls73_c00215{letter-spacing:-3.285333pt;}
.ls95_c00215{letter-spacing:-3.042667pt;}
.ls6f_c00215{letter-spacing:-2.968000pt;}
.ls61_c00215{letter-spacing:-2.874667pt;}
.ls9a_c00215{letter-spacing:-2.352000pt;}
.ls99_c00215{letter-spacing:-2.333333pt;}
.ls8b_c00215{letter-spacing:-2.090667pt;}
.ls69_c00215{letter-spacing:-2.053333pt;}
.ls6c_c00215{letter-spacing:-2.000533pt;}
.ls71_c00215{letter-spacing:-1.866667pt;}
.ls89_c00215{letter-spacing:-1.773333pt;}
.ls86_c00215{letter-spacing:-1.548800pt;}
.ls67_c00215{letter-spacing:-1.422293pt;}
.ls84_c00215{letter-spacing:-1.138667pt;}
.ls9e_c00215{letter-spacing:-0.732160pt;}
.ls7b_c00215{letter-spacing:-0.715733pt;}
.ls7f_c00215{letter-spacing:-0.340808pt;}
.ls75_c00215{letter-spacing:-0.074667pt;}
.ls81_c00215{letter-spacing:-0.024534pt;}
.ls65_c00215{letter-spacing:0.000000pt;}
.ls6e_c00215{letter-spacing:0.070400pt;}
.ls88_c00215{letter-spacing:0.129067pt;}
.ls5c_c00215{letter-spacing:0.131413pt;}
.ls5e_c00215{letter-spacing:0.252267pt;}
.ls4b_c00215{letter-spacing:0.287467pt;}
.ls6a_c00215{letter-spacing:0.293333pt;}
.ls43_c00215{letter-spacing:0.305067pt;}
.ls8_c00215{letter-spacing:0.316800pt;}
.ls98_c00215{letter-spacing:0.322667pt;}
.ls60_c00215{letter-spacing:0.334400pt;}
.ls72_c00215{letter-spacing:0.336000pt;}
.ls3e_c00215{letter-spacing:0.363733pt;}
.ls1_c00215{letter-spacing:0.369600pt;}
.ls7a_c00215{letter-spacing:0.387200pt;}
.ls42_c00215{letter-spacing:0.393067pt;}
.ls54_c00215{letter-spacing:0.398933pt;}
.ls78_c00215{letter-spacing:0.404800pt;}
.ls90_c00215{letter-spacing:0.410667pt;}
.ls13_c00215{letter-spacing:0.416533pt;}
.ls18_c00215{letter-spacing:0.422400pt;}
.ls4_c00215{letter-spacing:0.457600pt;}
.ls83_c00215{letter-spacing:0.520533pt;}
.ls70_c00215{letter-spacing:0.543573pt;}
.ls64_c00215{letter-spacing:0.563200pt;}
.ls4c_c00215{letter-spacing:0.573613pt;}
.ls80_c00215{letter-spacing:0.613360pt;}
.ls19_c00215{letter-spacing:0.733333pt;}
.ls74_c00215{letter-spacing:0.740693pt;}
.ls96_c00215{letter-spacing:0.800427pt;}
.ls44_c00215{letter-spacing:0.803733pt;}
.ls91_c00215{letter-spacing:0.884053pt;}
.ls25_c00215{letter-spacing:0.891733pt;}
.ls8e_c00215{letter-spacing:0.997547pt;}
.ls82_c00215{letter-spacing:1.013360pt;}
.ls7e_c00215{letter-spacing:1.066667pt;}
.ls8f_c00215{letter-spacing:1.097067pt;}
.lsd_c00215{letter-spacing:1.108800pt;}
.ls7d_c00215{letter-spacing:1.120000pt;}
.ls76_c00215{letter-spacing:1.122987pt;}
.ls51_c00215{letter-spacing:1.126400pt;}
.ls7c_c00215{letter-spacing:1.128960pt;}
.ls22_c00215{letter-spacing:1.155733pt;}
.ls9_c00215{letter-spacing:1.161600pt;}
.ls4f_c00215{letter-spacing:1.179200pt;}
.ls5b_c00215{letter-spacing:1.188693pt;}
.ls1f_c00215{letter-spacing:1.226133pt;}
.ls55_c00215{letter-spacing:1.249600pt;}
.ls79_c00215{letter-spacing:1.260373pt;}
.ls5a_c00215{letter-spacing:1.290667pt;}
.ls10_c00215{letter-spacing:1.302400pt;}
.ls34_c00215{letter-spacing:1.308267pt;}
.ls12_c00215{letter-spacing:1.314133pt;}
.ls7_c00215{letter-spacing:1.331733pt;}
.ls39_c00215{letter-spacing:1.337600pt;}
.ls62_c00215{letter-spacing:1.344000pt;}
.ls6_c00215{letter-spacing:1.355200pt;}
.ls58_c00215{letter-spacing:1.372800pt;}
.ls5f_c00215{letter-spacing:1.384373pt;}
.ls26_c00215{letter-spacing:1.384533pt;}
.ls3a_c00215{letter-spacing:1.408000pt;}
.lsf_c00215{letter-spacing:1.437333pt;}
.ls66_c00215{letter-spacing:1.460800pt;}
.ls30_c00215{letter-spacing:1.466667pt;}
.ls5d_c00215{letter-spacing:1.472533pt;}
.ls1c_c00215{letter-spacing:1.478400pt;}
.ls8a_c00215{letter-spacing:1.479467pt;}
.ls29_c00215{letter-spacing:1.496000pt;}
.ls3f_c00215{letter-spacing:1.501867pt;}
.ls2a_c00215{letter-spacing:1.507733pt;}
.ls53_c00215{letter-spacing:1.513600pt;}
.ls2e_c00215{letter-spacing:1.525333pt;}
.ls24_c00215{letter-spacing:1.537067pt;}
.ls0_c00215{letter-spacing:1.542933pt;}
.ls2f_c00215{letter-spacing:1.560533pt;}
.ls40_c00215{letter-spacing:1.572267pt;}
.ls33_c00215{letter-spacing:1.584000pt;}
.ls93_c00215{letter-spacing:1.588907pt;}
.ls37_c00215{letter-spacing:1.589867pt;}
.ls77_c00215{letter-spacing:1.607467pt;}
.ls49_c00215{letter-spacing:1.613333pt;}
.ls59_c00215{letter-spacing:1.625067pt;}
.ls28_c00215{letter-spacing:1.648533pt;}
.ls45_c00215{letter-spacing:1.666133pt;}
.ls1a_c00215{letter-spacing:1.689600pt;}
.ls46_c00215{letter-spacing:1.713067pt;}
.ls14_c00215{letter-spacing:1.736533pt;}
.ls32_c00215{letter-spacing:1.742400pt;}
.ls4d_c00215{letter-spacing:1.744000pt;}
.ls52_c00215{letter-spacing:1.765867pt;}
.ls2_c00215{letter-spacing:1.777600pt;}
.ls41_c00215{letter-spacing:1.789333pt;}
.lsa_c00215{letter-spacing:1.795200pt;}
.ls8c_c00215{letter-spacing:1.801067pt;}
.lse_c00215{letter-spacing:1.806933pt;}
.ls57_c00215{letter-spacing:1.842133pt;}
.ls48_c00215{letter-spacing:1.853867pt;}
.ls20_c00215{letter-spacing:1.865600pt;}
.ls35_c00215{letter-spacing:1.883200pt;}
.ls15_c00215{letter-spacing:1.918400pt;}
.ls85_c00215{letter-spacing:1.920000pt;}
.ls3c_c00215{letter-spacing:1.924267pt;}
.ls2b_c00215{letter-spacing:1.965333pt;}
.ls87_c00215{letter-spacing:1.973360pt;}
.ls47_c00215{letter-spacing:2.000533pt;}
.ls6d_c00215{letter-spacing:2.018987pt;}
.ls21_c00215{letter-spacing:2.041600pt;}
.ls3d_c00215{letter-spacing:2.053333pt;}
.ls16_c00215{letter-spacing:2.088533pt;}
.ls9c_c00215{letter-spacing:2.112000pt;}
.ls9b_c00215{letter-spacing:2.117867pt;}
.ls5_c00215{letter-spacing:2.123733pt;}
.ls27_c00215{letter-spacing:2.129600pt;}
.ls50_c00215{letter-spacing:2.170667pt;}
.ls1e_c00215{letter-spacing:2.176533pt;}
.ls2c_c00215{letter-spacing:2.182400pt;}
.ls23_c00215{letter-spacing:2.211733pt;}
.ls97_c00215{letter-spacing:2.223467pt;}
.ls36_c00215{letter-spacing:2.340800pt;}
.ls3b_c00215{letter-spacing:2.376000pt;}
.ls11_c00215{letter-spacing:2.387733pt;}
.ls4e_c00215{letter-spacing:2.393600pt;}
.ls56_c00215{letter-spacing:2.405333pt;}
.lsc_c00215{letter-spacing:2.440533pt;}
.ls31_c00215{letter-spacing:2.452267pt;}
.ls94_c00215{letter-spacing:2.533333pt;}
.ls9d_c00215{letter-spacing:2.604800pt;}
.ls4a_c00215{letter-spacing:2.610667pt;}
.ls2d_c00215{letter-spacing:2.622400pt;}
.ls1d_c00215{letter-spacing:2.634133pt;}
.ls1b_c00215{letter-spacing:2.681067pt;}
.ls6b_c00215{letter-spacing:2.693973pt;}
.ls3_c00215{letter-spacing:2.769067pt;}
.ls38_c00215{letter-spacing:2.804267pt;}
.ls17_c00215{letter-spacing:2.839467pt;}
.lsb_c00215{letter-spacing:2.851200pt;}
.ls63_c00215{letter-spacing:2.933333pt;}
.ls68_c00215{letter-spacing:3.146667pt;}
.ws2_c00215{word-spacing:-15.083200pt;}
.ws9_c00215{word-spacing:-15.077333pt;}
.wsa_c00215{word-spacing:-15.059733pt;}
.ws0_c00215{word-spacing:-15.036267pt;}
.wsd_c00215{word-spacing:0.000000pt;}
.ws4_c00215{word-spacing:77.586667pt;}
.wsc_c00215{word-spacing:77.616000pt;}
.ws1_c00215{word-spacing:77.802667pt;}
.wsb_c00215{word-spacing:78.080000pt;}
.ws7_c00215{word-spacing:78.408000pt;}
.ws3_c00215{word-spacing:78.789333pt;}
.ws5_c00215{word-spacing:78.877333pt;}
.ws6_c00215{word-spacing:79.698667pt;}
.ws8_c00215{word-spacing:79.728000pt;}
._19_c00215{margin-left:-13.076800pt;}
._18_c00215{margin-left:-11.345920pt;}
._3_c00215{margin-left:-9.791467pt;}
._8_c00215{margin-left:-7.890667pt;}
._c_c00215{margin-left:-6.811200pt;}
._4_c00215{margin-left:-5.092267pt;}
._1_c00215{margin-left:-3.520000pt;}
._7_c00215{margin-left:-2.305600pt;}
._2_c00215{margin-left:-0.921067pt;}
._5_c00215{width:1.783467pt;}
._0_c00215{width:3.578667pt;}
._6_c00215{width:4.529067pt;}
._12_c00215{width:7.450667pt;}
._14_c00215{width:8.448000pt;}
._11_c00215{width:10.489600pt;}
._17_c00215{width:11.733333pt;}
._16_c00215{width:12.877333pt;}
._13_c00215{width:13.892267pt;}
._15_c00215{width:16.244800pt;}
._10_c00215{width:19.946350pt;}
._9_c00215{width:27.244800pt;}
._b_c00215{width:28.652800pt;}
._a_c00215{width:30.706133pt;}
._f_c00215{width:34.639600pt;}
._e_c00215{width:79.895641pt;}
._d_c00215{width:184.658162pt;}
.fsc_c00215{font-size:12.267200pt;}
.fs9_c00215{font-size:15.360000pt;}
.fsd_c00215{font-size:20.267200pt;}
.fsa_c00215{font-size:21.333333pt;}
.fs8_c00215{font-size:22.400000pt;}
.fsb_c00215{font-size:24.000533pt;}
.fse_c00215{font-size:32.533333pt;}
.fs10_c00215{font-size:38.400000pt;}
.fsf_c00215{font-size:39.467200pt;}
.fs16_c00215{font-size:49.920000pt;}
.fs11_c00215{font-size:50.666667pt;}
.fs19_c00215{font-size:51.200000pt;}
.fs6_c00215{font-size:53.333333pt;}
.fs0_c00215{font-size:53.866667pt;}
.fs1_c00215{font-size:58.666667pt;}
.fs3_c00215{font-size:59.733333pt;}
.fs18_c00215{font-size:60.800000pt;}
.fs4_c00215{font-size:62.933333pt;}
.fs15_c00215{font-size:66.666667pt;}
.fs17_c00215{font-size:67.200000pt;}
.fs2_c00215{font-size:82.133333pt;}
.fs5_c00215{font-size:84.800000pt;}
.fs14_c00215{font-size:86.933333pt;}
.fs7_c00215{font-size:93.866667pt;}
.fs12_c00215{font-size:98.133333pt;}
.fs13_c00215{font-size:101.333333pt;}
.y0_c00215{bottom:0.000000pt;}
.y29_c00215{bottom:56.333333pt;}
.y28_c00215{bottom:122.240000pt;}
.y27_c00215{bottom:122.242667pt;}
.y26_c00215{bottom:150.080000pt;}
.y25_c00215{bottom:177.613333pt;}
.y24_c00215{bottom:205.773333pt;}
.y23_c00215{bottom:233.293333pt;}
.y22_c00215{bottom:262.093333pt;}
.y21_c00215{bottom:289.613333pt;}
.y20_c00215{bottom:318.093333pt;}
.y1f_c00215{bottom:318.094667pt;}
.y1e_c00215{bottom:346.240000pt;}
.y1d_c00215{bottom:374.093333pt;}
.y1c_c00215{bottom:374.098667pt;}
.y1b_c00215{bottom:401.613333pt;}
.y1a_c00215{bottom:429.440000pt;}
.y19_c00215{bottom:457.613333pt;}
.y18_c00215{bottom:465.280000pt;}
.y17_c00215{bottom:485.440000pt;}
.y16_c00215{bottom:513.613333pt;}
.y15_c00215{bottom:513.620000pt;}
.y14_c00215{bottom:541.442667pt;}
.y13_c00215{bottom:569.280000pt;}
.y12_c00215{bottom:597.440000pt;}
.y11_c00215{bottom:625.280000pt;}
.y10_c00215{bottom:653.133333pt;}
.yf_c00215{bottom:680.973333pt;}
.ye_c00215{bottom:709.133333pt;}
.yd_c00215{bottom:737.293333pt;}
.yc_c00215{bottom:765.453333pt;}
.yb_c00215{bottom:793.293333pt;}
.ya_c00215{bottom:820.800000pt;}
.y9_c00215{bottom:820.802667pt;}
.y8_c00215{bottom:848.640000pt;}
.y7_c00215{bottom:876.173333pt;}
.y6_c00215{bottom:904.000000pt;}
.y5_c00215{bottom:907.213333pt;}
.y4_c00215{bottom:931.853333pt;}
.y3_c00215{bottom:959.693333pt;}
.y2_c00215{bottom:987.853333pt;}
.y1_c00215{bottom:1056.640000pt;}
.hb_c00215{height:10.229760pt;}
.he_c00215{height:12.794306pt;}
.hf_c00215{height:19.881252pt;}
.hc_c00215{height:20.937500pt;}
.h10_c00215{height:21.138056pt;}
.ha_c00215{height:21.984375pt;}
.hd_c00215{height:23.543492pt;}
.h1c_c00215{height:33.246720pt;}
.h11_c00215{height:33.931250pt;}
.h13_c00215{height:40.050000pt;}
.h12_c00215{height:41.163056pt;}
.h14_c00215{height:49.726562pt;}
.h20_c00215{height:50.250000pt;}
.h8_c00215{height:52.343750pt;}
.h19_c00215{height:52.843750pt;}
.h2_c00215{height:52.867187pt;}
.h16_c00215{height:57.549479pt;}
.h3_c00215{height:57.578125pt;}
.h5_c00215{height:58.595833pt;}
.h1f_c00215{height:58.625000pt;}
.h1e_c00215{height:61.275000pt;}
.h6_c00215{height:65.637500pt;}
.h1b_c00215{height:67.187500pt;}
.h1d_c00215{height:67.725000pt;}
.h4_c00215{height:85.662500pt;}
.h7_c00215{height:88.443750pt;}
.h1a_c00215{height:90.668750pt;}
.h9_c00215{height:92.125000pt;}
.h15_c00215{height:96.264583pt;}
.h18_c00215{height:99.403646pt;}
.h17_c00215{height:99.453125pt;}
.h1_c00215{height:1122.666667pt;}
.h0_c00215{height:1122.880000pt;}
.w1_c00215{width:793.333333pt;}
.w0_c00215{width:793.600000pt;}
.x0_c00215{left:0.000000pt;}
.x60_c00215{left:100.066667pt;}
.x38_c00215{left:101.933333pt;}
.x21_c00215{left:103.173333pt;}
.x15_c00215{left:104.453333pt;}
.x9_c00215{left:105.733333pt;}
.x1_c00215{left:107.133333pt;}
.x39_c00215{left:109.120000pt;}
.x44_c00215{left:110.853333pt;}
.x53_c00215{left:148.733333pt;}
.x2f_c00215{left:149.628000pt;}
.x1c_c00215{left:151.013333pt;}
.xd_c00215{left:152.626667pt;}
.x2_c00215{left:154.413333pt;}
.x3a_c00215{left:161.306667pt;}
.xa_c00215{left:164.320000pt;}
.x2c_c00215{left:169.160000pt;}
.xe_c00215{left:172.453333pt;}
.x37_c00215{left:180.186667pt;}
.xb_c00215{left:182.066667pt;}
.x3b_c00215{left:183.626667pt;}
.x4d_c00215{left:194.746667pt;}
.x54_c00215{left:197.946667pt;}
.x3c_c00215{left:200.986667pt;}
.x5_c00215{left:203.506667pt;}
.xf_c00215{left:205.293333pt;}
.x45_c00215{left:210.000000pt;}
.x3d_c00215{left:217.306667pt;}
.x6_c00215{left:222.706667pt;}
.x3e_c00215{left:228.826667pt;}
.x10_c00215{left:230.893333pt;}
.x30_c00215{left:236.293333pt;}
.x59_c00215{left:240.293333pt;}
.x46_c00215{left:241.253333pt;}
.x50_c00215{left:245.746667pt;}
.x55_c00215{left:250.813333pt;}
.x11_c00215{left:259.373333pt;}
.x4e_c00215{left:265.960000pt;}
.x51_c00215{left:268.813333pt;}
.x31_c00215{left:271.213333pt;}
.xc_c00215{left:277.693333pt;}
.x16_c00215{left:278.760000pt;}
.x32_c00215{left:282.533333pt;}
.x5a_c00215{left:284.986667pt;}
.x17_c00215{left:286.413333pt;}
.x3f_c00215{left:292.746667pt;}
.x63_c00215{left:294.880000pt;}
.x47_c00215{left:307.306667pt;}
.x33_c00215{left:311.866667pt;}
.x7_c00215{left:319.200000pt;}
.x5b_c00215{left:333.373333pt;}
.x64_c00215{left:337.293333pt;}
.x8_c00215{left:360.186667pt;}
.x48_c00215{left:361.773333pt;}
.x5c_c00215{left:362.733333pt;}
.x49_c00215{left:372.413333pt;}
.x65_c00215{left:379.426667pt;}
.x40_c00215{left:380.986667pt;}
.x4a_c00215{left:400.266667pt;}
.x41_c00215{left:409.840000pt;}
.x66_c00215{left:422.573333pt;}
.x4b_c00215{left:425.013333pt;}
.x5d_c00215{left:430.893333pt;}
.x1d_c00215{left:446.373333pt;}
.x67_c00215{left:465.120000pt;}
.x61_c00215{left:468.453333pt;}
.x1e_c00215{left:476.040000pt;}
.x25_c00215{left:482.533333pt;}
.x62_c00215{left:489.613333pt;}
.x29_c00215{left:492.333333pt;}
.x68_c00215{left:505.893333pt;}
.x6a_c00215{left:515.306667pt;}
.x2a_c00215{left:518.573333pt;}
.x69_c00215{left:522.680000pt;}
.x26_c00215{left:526.266667pt;}
.x6b_c00215{left:532.680000pt;}
.x52_c00215{left:553.786667pt;}
.x22_c00215{left:556.106667pt;}
.x56_c00215{left:557.920000pt;}
.x19_c00215{left:560.440000pt;}
.x3_c00215{left:563.600000pt;}
.x1a_c00215{left:567.773333pt;}
.x34_c00215{left:578.920000pt;}
.x4_c00215{left:581.320000pt;}
.x1b_c00215{left:583.866667pt;}
.x2d_c00215{left:584.773333pt;}
.x35_c00215{left:586.053333pt;}
.x57_c00215{left:587.346667pt;}
.x27_c00215{left:589.160000pt;}
.x23_c00215{left:592.133333pt;}
.x4f_c00215{left:594.400000pt;}
.x28_c00215{left:596.613333pt;}
.x58_c00215{left:603.026667pt;}
.x36_c00215{left:604.026667pt;}
.x24_c00215{left:610.080000pt;}
.x2b_c00215{left:612.133333pt;}
.x12_c00215{left:613.840000pt;}
.x1f_c00215{left:616.373333pt;}
.x5e_c00215{left:622.706667pt;}
.x4c_c00215{left:624.800000pt;}
.x13_c00215{left:629.586667pt;}
.x20_c00215{left:634.066667pt;}
.x42_c00215{left:638.440000pt;}
.x5f_c00215{left:643.453333pt;}
.x2e_c00215{left:646.866667pt;}
.x18_c00215{left:649.746667pt;}
.x14_c00215{left:651.053333pt;}
.x43_c00215{left:656.040000pt;}
}





/* 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_c00216 {
    display:none;
  }
  .loading-indicator_c00216.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00216 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_c00216 { 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_c00216" -> "#page-container .classname_c00216")
 */
.pf_c00216 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00216 { /* 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_c00216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00216 { /* 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_c00216 { /* 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_c00216 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00216 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00216 {overflow:visible;}
  }
}
.c_c00216 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00216 { /* 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_c00216:after { /* webkit #35443 */
  content: '';
}
.t_c00216:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00216 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 */
}
.__c00216 { /* 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_c00216 { /* info for Javascript */
  display:none;
}
.l_c00216 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00216 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00216 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00216: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_c00216 {
    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_c00216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00216.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_c00216 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00216;src:url('chunks/assets/font_2a2c90c4194143a5ecc085d3.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.284668;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_c00216;src:url('chunks/assets/font_c4a70cffa0840e10d0e89a65.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:0.666000;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_c00216;src:url('chunks/assets/font_9a75cb04f34f872441a018a5.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.284180;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_c00216;src:url('chunks/assets/font_9d6d19cc4853c0f29bca2a72.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;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:ff5_c00216;src:url('chunks/assets/font_a0c2fd87357e9ce035d678ff.woff2')format("woff");}.ff5_c00216{font-family:ff5_c00216;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:ff6_c00216;src:url('chunks/assets/font_d835d3dfe7c7a955ab38def5.woff2')format("woff");}.ff6_c00216{font-family:ff6_c00216;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;}
.m2_c00216{transform:matrix(0.136288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136288,0.000000,0.000000,0.250000,0,0);}
.me_c00216{transform:matrix(0.181146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181146,0.000000,0.000000,0.250000,0,0);}
.m17_c00216{transform:matrix(0.184853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184853,0.000000,0.000000,0.250000,0,0);}
.md_c00216{transform:matrix(0.186178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186178,0.000000,0.000000,0.250000,0,0);}
.m10_c00216{transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);}
.m19_c00216{transform:matrix(0.187786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187786,0.000000,0.000000,0.250000,0,0);}
.m15_c00216{transform:matrix(0.197723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197723,0.000000,0.000000,0.250000,0,0);}
.mf_c00216{transform:matrix(0.208678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208678,0.000000,0.000000,0.250000,0,0);}
.m1b_c00216{transform:matrix(0.224626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224626,0.000000,0.000000,0.250000,0,0);}
.m18_c00216{transform:matrix(0.228421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228421,0.000000,0.000000,0.250000,0,0);}
.m3_c00216{transform:matrix(0.228654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228654,0.000000,0.000000,0.250000,0,0);}
.m1a_c00216{transform:matrix(0.228661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228661,0.000000,0.000000,0.250000,0,0);}
.m13_c00216{transform:matrix(0.229437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229437,0.000000,0.000000,0.250000,0,0);}
.m16_c00216{transform:matrix(0.230487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230487,0.000000,0.000000,0.250000,0,0);}
.m9_c00216{transform:matrix(0.237510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237510,0.000000,0.000000,0.250000,0,0);}
.m1d_c00216{transform:matrix(0.241728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241728,0.000000,0.000000,0.250000,0,0);}
.m1_c00216{transform:matrix(0.242646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242646,0.000000,0.000000,0.250000,0,0);}
.m4_c00216{transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);}
.m1c_c00216{transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);}
.m14_c00216{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.m12_c00216{transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);}
.m11_c00216{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m0_c00216{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);}
.m8_c00216{transform:matrix(0.268821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268821,0.000000,0.000000,0.250000,0,0);}
.mc_c00216{transform:matrix(0.278671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278671,0.000000,0.000000,0.250000,0,0);}
.m5_c00216{transform:matrix(0.279943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279943,0.000000,0.000000,0.250000,0,0);}
.m6_c00216{transform:matrix(0.346556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346556,0.000000,0.000000,0.250000,0,0);}
.mb_c00216{transform:matrix(0.443431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443431,0.000000,0.000000,0.250000,0,0);}
.m7_c00216{transform:matrix(0.534385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534385,0.000000,0.000000,0.250000,0,0);}
.ma_c00216{transform:matrix(0.599473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599473,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.v1_c00216{vertical-align:4.380000px;}
.ls42_c00216{letter-spacing:-3.885000px;}
.ls6a_c00216{letter-spacing:-3.864000px;}
.ls76_c00216{letter-spacing:-3.696000px;}
.ls7e_c00216{letter-spacing:-2.646000px;}
.ls32_c00216{letter-spacing:-2.415000px;}
.ls73_c00216{letter-spacing:-2.331000px;}
.ls4b_c00216{letter-spacing:-2.235600px;}
.ls3d_c00216{letter-spacing:-2.056200px;}
.ls8d_c00216{letter-spacing:-1.835400px;}
.ls61_c00216{letter-spacing:-1.656000px;}
.ls4c_c00216{letter-spacing:-1.642200px;}
.ls64_c00216{letter-spacing:-1.455900px;}
.ls35_c00216{letter-spacing:-1.393800px;}
.ls5d_c00216{letter-spacing:-1.338600px;}
.ls49_c00216{letter-spacing:-1.324800px;}
.ls48_c00216{letter-spacing:-1.193700px;}
.ls7b_c00216{letter-spacing:-1.083300px;}
.ls54_c00216{letter-spacing:-1.062600px;}
.ls87_c00216{letter-spacing:-1.014300px;}
.ls60_c00216{letter-spacing:-0.966000px;}
.ls6e_c00216{letter-spacing:-0.931500px;}
.ls59_c00216{letter-spacing:-0.897000px;}
.ls52_c00216{letter-spacing:-0.800400px;}
.ls5f_c00216{letter-spacing:-0.765900px;}
.ls4f_c00216{letter-spacing:-0.738300px;}
.ls36_c00216{letter-spacing:-0.731400px;}
.ls69_c00216{letter-spacing:-0.710700px;}
.ls81_c00216{letter-spacing:-0.696900px;}
.ls71_c00216{letter-spacing:-0.676200px;}
.ls78_c00216{letter-spacing:-0.655500px;}
.ls51_c00216{letter-spacing:-0.593400px;}
.ls88_c00216{letter-spacing:-0.552000px;}
.ls5c_c00216{letter-spacing:-0.538200px;}
.ls8a_c00216{letter-spacing:-0.524400px;}
.ls65_c00216{letter-spacing:-0.517500px;}
.ls85_c00216{letter-spacing:-0.510600px;}
.ls79_c00216{letter-spacing:-0.503700px;}
.ls62_c00216{letter-spacing:-0.496800px;}
.ls41_c00216{letter-spacing:-0.476100px;}
.ls50_c00216{letter-spacing:-0.469200px;}
.ls3c_c00216{letter-spacing:-0.462300px;}
.ls45_c00216{letter-spacing:-0.455400px;}
.ls31_c00216{letter-spacing:-0.441600px;}
.ls6f_c00216{letter-spacing:-0.434700px;}
.ls68_c00216{letter-spacing:-0.414000px;}
.ls56_c00216{letter-spacing:-0.400200px;}
.ls63_c00216{letter-spacing:-0.372600px;}
.ls5e_c00216{letter-spacing:-0.345000px;}
.ls6d_c00216{letter-spacing:-0.331200px;}
.ls7d_c00216{letter-spacing:-0.310500px;}
.ls70_c00216{letter-spacing:-0.289800px;}
.ls57_c00216{letter-spacing:-0.282900px;}
.ls33_c00216{letter-spacing:-0.276000px;}
.ls7c_c00216{letter-spacing:-0.262200px;}
.ls67_c00216{letter-spacing:-0.241500px;}
.ls84_c00216{letter-spacing:-0.234600px;}
.ls8b_c00216{letter-spacing:-0.220800px;}
.ls86_c00216{letter-spacing:-0.213900px;}
.ls80_c00216{letter-spacing:-0.200100px;}
.ls46_c00216{letter-spacing:-0.193200px;}
.ls47_c00216{letter-spacing:-0.186300px;}
.ls72_c00216{letter-spacing:-0.179400px;}
.ls58_c00216{letter-spacing:-0.172500px;}
.ls75_c00216{letter-spacing:-0.165600px;}
.ls82_c00216{letter-spacing:-0.158700px;}
.ls4a_c00216{letter-spacing:-0.144900px;}
.ls8c_c00216{letter-spacing:-0.131100px;}
.ls53_c00216{letter-spacing:-0.096600px;}
.ls3e_c00216{letter-spacing:-0.089700px;}
.ls3f_c00216{letter-spacing:-0.069000px;}
.ls66_c00216{letter-spacing:-0.062100px;}
.ls6c_c00216{letter-spacing:-0.041400px;}
.ls4e_c00216{letter-spacing:-0.034500px;}
.ls3b_c00216{letter-spacing:-0.020700px;}
.ls5b_c00216{letter-spacing:-0.013800px;}
.ls34_c00216{letter-spacing:0.000000px;}
.ls14_c00216{letter-spacing:0.006900px;}
.ls25_c00216{letter-spacing:0.020700px;}
.ls2_c00216{letter-spacing:0.027600px;}
.ls3_c00216{letter-spacing:0.048300px;}
.ls6_c00216{letter-spacing:0.055200px;}
.ls40_c00216{letter-spacing:0.062100px;}
.ls2d_c00216{letter-spacing:0.069000px;}
.lsd_c00216{letter-spacing:0.082800px;}
.ls13_c00216{letter-spacing:0.096600px;}
.ls26_c00216{letter-spacing:0.110400px;}
.ls3a_c00216{letter-spacing:0.113284px;}
.ls18_c00216{letter-spacing:0.117300px;}
.ls9_c00216{letter-spacing:0.144900px;}
.ls1f_c00216{letter-spacing:0.153180px;}
.ls4_c00216{letter-spacing:0.165600px;}
.ls12_c00216{letter-spacing:0.172500px;}
.lsf_c00216{letter-spacing:0.179400px;}
.ls5_c00216{letter-spacing:0.193200px;}
.lsc_c00216{letter-spacing:0.200100px;}
.ls2c_c00216{letter-spacing:0.207000px;}
.lsb_c00216{letter-spacing:0.220800px;}
.ls1d_c00216{letter-spacing:0.248400px;}
.ls7_c00216{letter-spacing:0.255300px;}
.ls11_c00216{letter-spacing:0.262200px;}
.ls15_c00216{letter-spacing:0.276000px;}
.ls29_c00216{letter-spacing:0.282900px;}
.ls0_c00216{letter-spacing:0.303600px;}
.ls28_c00216{letter-spacing:0.317400px;}
.ls27_c00216{letter-spacing:0.331200px;}
.ls21_c00216{letter-spacing:0.345000px;}
.ls16_c00216{letter-spacing:0.358800px;}
.lse_c00216{letter-spacing:0.365700px;}
.ls1a_c00216{letter-spacing:0.400200px;}
.ls20_c00216{letter-spacing:0.434700px;}
.ls19_c00216{letter-spacing:0.503700px;}
.lsa_c00216{letter-spacing:0.565800px;}
.ls2e_c00216{letter-spacing:0.579600px;}
.ls10_c00216{letter-spacing:0.586500px;}
.ls1e_c00216{letter-spacing:0.641700px;}
.ls7a_c00216{letter-spacing:0.699300px;}
.ls43_c00216{letter-spacing:0.745920px;}
.ls83_c00216{letter-spacing:0.792540px;}
.ls22_c00216{letter-spacing:0.807300px;}
.ls8_c00216{letter-spacing:0.869400px;}
.ls77_c00216{letter-spacing:0.885780px;}
.ls2f_c00216{letter-spacing:0.903900px;}
.ls1c_c00216{letter-spacing:0.938400px;}
.ls39_c00216{letter-spacing:0.960030px;}
.ls89_c00216{letter-spacing:1.032300px;}
.ls5a_c00216{letter-spacing:1.058940px;}
.ls24_c00216{letter-spacing:1.097100px;}
.ls1b_c00216{letter-spacing:1.117800px;}
.ls2a_c00216{letter-spacing:1.193700px;}
.ls6b_c00216{letter-spacing:1.252080px;}
.ls4d_c00216{letter-spacing:1.305360px;}
.ls2b_c00216{letter-spacing:1.311000px;}
.ls74_c00216{letter-spacing:1.565100px;}
.ls23_c00216{letter-spacing:1.787100px;}
.ls30_c00216{letter-spacing:1.830000px;}
.ls7f_c00216{letter-spacing:1.844820px;}
.ls1_c00216{letter-spacing:1.869900px;}
.ls44_c00216{letter-spacing:1.918080px;}
.ls38_c00216{letter-spacing:2.010000px;}
.ls55_c00216{letter-spacing:2.124540px;}
.ls17_c00216{letter-spacing:2.835900px;}
.ls37_c00216{letter-spacing:3.180000px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{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__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00216{word-spacing:-16.803180px;}
.ws5_c00216{word-spacing:-16.794600px;}
.wsb_c00216{word-spacing:-16.711800px;}
.wse_c00216{word-spacing:0.000000px;}
.ws9_c00216{word-spacing:88.941000px;}
.ws4_c00216{word-spacing:89.493000px;}
.wsd_c00216{word-spacing:89.769000px;}
.ws0_c00216{word-spacing:90.525000px;}
.ws1_c00216{word-spacing:90.528000px;}
.wsc_c00216{word-spacing:91.321500px;}
.ws3_c00216{word-spacing:91.908000px;}
.ws2_c00216{word-spacing:92.115000px;}
.wsa_c00216{word-spacing:92.149500px;}
.ws8_c00216{word-spacing:92.170500px;}
.ws6_c00216{word-spacing:96.220500px;}
._7_c00216{margin-left:-14.703900px;}
._8_c00216{margin-left:-13.544700px;}
._1_c00216{margin-left:-11.970000px;}
._5_c00216{margin-left:-9.956700px;}
._11_c00216{margin-left:-3.774300px;}
._0_c00216{margin-left:-2.139000px;}
._4_c00216{width:1.131600px;}
._6_c00216{width:2.884200px;}
._3_c00216{width:4.112400px;}
._2_c00216{width:5.269817px;}
._13_c00216{width:6.306600px;}
._f_c00216{width:7.521000px;}
._12_c00216{width:9.116683px;}
._14_c00216{width:10.389617px;}
._9_c00216{width:12.951300px;}
._10_c00216{width:14.379600px;}
._c_c00216{width:16.208100px;}
._a_c00216{width:19.023300px;}
._e_c00216{width:20.789700px;}
._d_c00216{width:22.197300px;}
._b_c00216{width:23.529000px;}
._15_c00216{width:25.198800px;}
._16_c00216{width:29.173200px;}
.fc0_c00216{color:transparent;}
.fs7_c00216{font-size:14.400000px;}
.fs8_c00216{font-size:19.200600px;}
.fs6_c00216{font-size:40.200000px;}
.fs4_c00216{font-size:46.800600px;}
.fs2_c00216{font-size:51.840000px;}
.fse_c00216{font-size:57.000000px;}
.fs0_c00216{font-size:60.000000px;}
.fs5_c00216{font-size:63.600000px;}
.fs3_c00216{font-size:64.200000px;}
.fsa_c00216{font-size:66.600000px;}
.fs1_c00216{font-size:69.000000px;}
.fsd_c00216{font-size:75.600000px;}
.fsc_c00216{font-size:105.600000px;}
.fsb_c00216{font-size:110.400000px;}
.fs9_c00216{font-size:111.000000px;}
.y0_c00216{bottom:0.000000px;}
.y2d_c00216{bottom:66.255000px;}
.y2c_c00216{bottom:144.000000px;}
.y2b_c00216{bottom:174.600000px;}
.y2a_c00216{bottom:174.606750px;}
.y29_c00216{bottom:206.295000px;}
.y28_c00216{bottom:237.975000px;}
.y26_c00216{bottom:269.289000px;}
.y27_c00216{bottom:269.295000px;}
.y25_c00216{bottom:300.615000px;}
.y23_c00216{bottom:331.566750px;}
.y24_c00216{bottom:331.575000px;}
.y22_c00216{bottom:363.255000px;}
.y21_c00216{bottom:393.855000px;}
.y20_c00216{bottom:393.861750px;}
.y1f_c00216{bottom:426.240000px;}
.y1e_c00216{bottom:457.200000px;}
.y1c_c00216{bottom:488.171250px;}
.y1d_c00216{bottom:488.175000px;}
.y1b_c00216{bottom:519.480000px;}
.y1a_c00216{bottom:550.800000px;}
.y19_c00216{bottom:582.480000px;}
.y17_c00216{bottom:613.453500px;}
.y18_c00216{bottom:613.455000px;}
.y16_c00216{bottom:644.400000px;}
.y14_c00216{bottom:676.085250px;}
.y15_c00216{bottom:676.095000px;}
.y13_c00216{bottom:707.394000px;}
.y12_c00216{bottom:738.720000px;}
.y10_c00216{bottom:770.037000px;}
.y11_c00216{bottom:770.055000px;}
.yf_c00216{bottom:801.363000px;}
.ye_c00216{bottom:832.326750px;}
.yd_c00216{bottom:864.015000px;}
.yc_c00216{bottom:894.975000px;}
.yb_c00216{bottom:925.920000px;}
.ya_c00216{bottom:957.240000px;}
.y9_c00216{bottom:988.200000px;}
.y7_c00216{bottom:1019.169000px;}
.y8_c00216{bottom:1019.175000px;}
.y6_c00216{bottom:1050.495000px;}
.y5_c00216{bottom:1078.560000px;}
.y3_c00216{bottom:1081.440000px;}
.y4_c00216{bottom:1082.535000px;}
.y2_c00216{bottom:1113.135000px;}
.y1_c00216{bottom:1187.655000px;}
.h8_c00216{height:9.590400px;}
.ha_c00216{height:18.834964px;}
.hb_c00216{height:18.844339px;}
.h5_c00216{height:34.525440px;}
.h7_c00216{height:41.927344px;}
.h14_c00216{height:55.942383px;}
.h2_c00216{height:58.886719px;}
.h6_c00216{height:62.388867px;}
.h9_c00216{height:62.419922px;}
.hd_c00216{height:65.331738px;}
.hf_c00216{height:65.364258px;}
.h3_c00216{height:67.719727px;}
.h12_c00216{height:67.752727px;}
.h4_c00216{height:72.099727px;}
.h13_c00216{height:74.197266px;}
.h11_c00216{height:78.848437px;}
.h10_c00216{height:103.640625px;}
.he_c00216{height:108.297656px;}
.hc_c00216{height:108.886230px;}
.h1_c00216{height:1263.000000px;}
.h0_c00216{height:1263.240000px;}
.w1_c00216{width:892.500000px;}
.w0_c00216{width:892.800000px;}
.x0_c00216{left:0.000000px;}
.x2f_c00216{left:120.405000px;}
.x1_c00216{left:121.605000px;}
.x2_c00216{left:175.860000px;}
.x9_c00216{left:178.425000px;}
.xa_c00216{left:232.335000px;}
.x29_c00216{left:275.295000px;}
.x4_c00216{left:298.440000px;}
.x2a_c00216{left:303.015000px;}
.x25_c00216{left:326.415000px;}
.x26_c00216{left:354.315000px;}
.x5_c00216{left:355.845000px;}
.xb_c00216{left:365.925000px;}
.x6_c00216{left:424.065000px;}
.x1a_c00216{left:432.195000px;}
.xc_c00216{left:435.150000px;}
.x1e_c00216{left:451.260000px;}
.x1b_c00216{left:457.050000px;}
.x1c_c00216{left:476.970000px;}
.x7_c00216{left:478.680000px;}
.xd_c00216{left:513.540000px;}
.xe_c00216{left:525.855000px;}
.x21_c00216{left:608.250000px;}
.x22_c00216{left:624.210000px;}
.xf_c00216{left:634.950000px;}
.x12_c00216{left:643.515000px;}
.x27_c00216{left:648.195000px;}
.x1d_c00216{left:654.900000px;}
.x2c_c00216{left:659.940000px;}
.x13_c00216{left:661.515000px;}
.x19_c00216{left:662.970000px;}
.x14_c00216{left:664.755000px;}
.x28_c00216{left:666.195000px;}
.x2b_c00216{left:667.350000px;}
.x17_c00216{left:675.570000px;}
.x10_c00216{left:677.715000px;}
.x2d_c00216{left:679.575000px;}
.x1f_c00216{left:681.990000px;}
.x15_c00216{left:684.255000px;}
.x23_c00216{left:685.995000px;}
.x16_c00216{left:694.995000px;}
.x11_c00216{left:697.500000px;}
.x20_c00216{left:701.820000px;}
.x24_c00216{left:705.765000px;}
.x2e_c00216{left:722.880000px;}
.x8_c00216{left:725.415000px;}
.x18_c00216{left:729.195000px;}
.x3_c00216{left:730.335000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.v1_c00216{vertical-align:3.893333pt;}
.ls42_c00216{letter-spacing:-3.453333pt;}
.ls6a_c00216{letter-spacing:-3.434667pt;}
.ls76_c00216{letter-spacing:-3.285333pt;}
.ls7e_c00216{letter-spacing:-2.352000pt;}
.ls32_c00216{letter-spacing:-2.146667pt;}
.ls73_c00216{letter-spacing:-2.072000pt;}
.ls4b_c00216{letter-spacing:-1.987200pt;}
.ls3d_c00216{letter-spacing:-1.827733pt;}
.ls8d_c00216{letter-spacing:-1.631467pt;}
.ls61_c00216{letter-spacing:-1.472000pt;}
.ls4c_c00216{letter-spacing:-1.459733pt;}
.ls64_c00216{letter-spacing:-1.294133pt;}
.ls35_c00216{letter-spacing:-1.238933pt;}
.ls5d_c00216{letter-spacing:-1.189867pt;}
.ls49_c00216{letter-spacing:-1.177600pt;}
.ls48_c00216{letter-spacing:-1.061067pt;}
.ls7b_c00216{letter-spacing:-0.962933pt;}
.ls54_c00216{letter-spacing:-0.944533pt;}
.ls87_c00216{letter-spacing:-0.901600pt;}
.ls60_c00216{letter-spacing:-0.858667pt;}
.ls6e_c00216{letter-spacing:-0.828000pt;}
.ls59_c00216{letter-spacing:-0.797333pt;}
.ls52_c00216{letter-spacing:-0.711467pt;}
.ls5f_c00216{letter-spacing:-0.680800pt;}
.ls4f_c00216{letter-spacing:-0.656267pt;}
.ls36_c00216{letter-spacing:-0.650133pt;}
.ls69_c00216{letter-spacing:-0.631733pt;}
.ls81_c00216{letter-spacing:-0.619467pt;}
.ls71_c00216{letter-spacing:-0.601067pt;}
.ls78_c00216{letter-spacing:-0.582667pt;}
.ls51_c00216{letter-spacing:-0.527467pt;}
.ls88_c00216{letter-spacing:-0.490667pt;}
.ls5c_c00216{letter-spacing:-0.478400pt;}
.ls8a_c00216{letter-spacing:-0.466133pt;}
.ls65_c00216{letter-spacing:-0.460000pt;}
.ls85_c00216{letter-spacing:-0.453867pt;}
.ls79_c00216{letter-spacing:-0.447733pt;}
.ls62_c00216{letter-spacing:-0.441600pt;}
.ls41_c00216{letter-spacing:-0.423200pt;}
.ls50_c00216{letter-spacing:-0.417067pt;}
.ls3c_c00216{letter-spacing:-0.410933pt;}
.ls45_c00216{letter-spacing:-0.404800pt;}
.ls31_c00216{letter-spacing:-0.392533pt;}
.ls6f_c00216{letter-spacing:-0.386400pt;}
.ls68_c00216{letter-spacing:-0.368000pt;}
.ls56_c00216{letter-spacing:-0.355733pt;}
.ls63_c00216{letter-spacing:-0.331200pt;}
.ls5e_c00216{letter-spacing:-0.306667pt;}
.ls6d_c00216{letter-spacing:-0.294400pt;}
.ls7d_c00216{letter-spacing:-0.276000pt;}
.ls70_c00216{letter-spacing:-0.257600pt;}
.ls57_c00216{letter-spacing:-0.251467pt;}
.ls33_c00216{letter-spacing:-0.245333pt;}
.ls7c_c00216{letter-spacing:-0.233067pt;}
.ls67_c00216{letter-spacing:-0.214667pt;}
.ls84_c00216{letter-spacing:-0.208533pt;}
.ls8b_c00216{letter-spacing:-0.196267pt;}
.ls86_c00216{letter-spacing:-0.190133pt;}
.ls80_c00216{letter-spacing:-0.177867pt;}
.ls46_c00216{letter-spacing:-0.171733pt;}
.ls47_c00216{letter-spacing:-0.165600pt;}
.ls72_c00216{letter-spacing:-0.159467pt;}
.ls58_c00216{letter-spacing:-0.153333pt;}
.ls75_c00216{letter-spacing:-0.147200pt;}
.ls82_c00216{letter-spacing:-0.141067pt;}
.ls4a_c00216{letter-spacing:-0.128800pt;}
.ls8c_c00216{letter-spacing:-0.116533pt;}
.ls53_c00216{letter-spacing:-0.085867pt;}
.ls3e_c00216{letter-spacing:-0.079733pt;}
.ls3f_c00216{letter-spacing:-0.061333pt;}
.ls66_c00216{letter-spacing:-0.055200pt;}
.ls6c_c00216{letter-spacing:-0.036800pt;}
.ls4e_c00216{letter-spacing:-0.030667pt;}
.ls3b_c00216{letter-spacing:-0.018400pt;}
.ls5b_c00216{letter-spacing:-0.012267pt;}
.ls34_c00216{letter-spacing:0.000000pt;}
.ls14_c00216{letter-spacing:0.006133pt;}
.ls25_c00216{letter-spacing:0.018400pt;}
.ls2_c00216{letter-spacing:0.024533pt;}
.ls3_c00216{letter-spacing:0.042933pt;}
.ls6_c00216{letter-spacing:0.049067pt;}
.ls40_c00216{letter-spacing:0.055200pt;}
.ls2d_c00216{letter-spacing:0.061333pt;}
.lsd_c00216{letter-spacing:0.073600pt;}
.ls13_c00216{letter-spacing:0.085867pt;}
.ls26_c00216{letter-spacing:0.098133pt;}
.ls3a_c00216{letter-spacing:0.100696pt;}
.ls18_c00216{letter-spacing:0.104267pt;}
.ls9_c00216{letter-spacing:0.128800pt;}
.ls1f_c00216{letter-spacing:0.136160pt;}
.ls4_c00216{letter-spacing:0.147200pt;}
.ls12_c00216{letter-spacing:0.153333pt;}
.lsf_c00216{letter-spacing:0.159467pt;}
.ls5_c00216{letter-spacing:0.171733pt;}
.lsc_c00216{letter-spacing:0.177867pt;}
.ls2c_c00216{letter-spacing:0.184000pt;}
.lsb_c00216{letter-spacing:0.196267pt;}
.ls1d_c00216{letter-spacing:0.220800pt;}
.ls7_c00216{letter-spacing:0.226933pt;}
.ls11_c00216{letter-spacing:0.233067pt;}
.ls15_c00216{letter-spacing:0.245333pt;}
.ls29_c00216{letter-spacing:0.251467pt;}
.ls0_c00216{letter-spacing:0.269867pt;}
.ls28_c00216{letter-spacing:0.282133pt;}
.ls27_c00216{letter-spacing:0.294400pt;}
.ls21_c00216{letter-spacing:0.306667pt;}
.ls16_c00216{letter-spacing:0.318933pt;}
.lse_c00216{letter-spacing:0.325067pt;}
.ls1a_c00216{letter-spacing:0.355733pt;}
.ls20_c00216{letter-spacing:0.386400pt;}
.ls19_c00216{letter-spacing:0.447733pt;}
.lsa_c00216{letter-spacing:0.502933pt;}
.ls2e_c00216{letter-spacing:0.515200pt;}
.ls10_c00216{letter-spacing:0.521333pt;}
.ls1e_c00216{letter-spacing:0.570400pt;}
.ls7a_c00216{letter-spacing:0.621600pt;}
.ls43_c00216{letter-spacing:0.663040pt;}
.ls83_c00216{letter-spacing:0.704480pt;}
.ls22_c00216{letter-spacing:0.717600pt;}
.ls8_c00216{letter-spacing:0.772800pt;}
.ls77_c00216{letter-spacing:0.787360pt;}
.ls2f_c00216{letter-spacing:0.803467pt;}
.ls1c_c00216{letter-spacing:0.834133pt;}
.ls39_c00216{letter-spacing:0.853360pt;}
.ls89_c00216{letter-spacing:0.917600pt;}
.ls5a_c00216{letter-spacing:0.941280pt;}
.ls24_c00216{letter-spacing:0.975200pt;}
.ls1b_c00216{letter-spacing:0.993600pt;}
.ls2a_c00216{letter-spacing:1.061067pt;}
.ls6b_c00216{letter-spacing:1.112960pt;}
.ls4d_c00216{letter-spacing:1.160320pt;}
.ls2b_c00216{letter-spacing:1.165333pt;}
.ls74_c00216{letter-spacing:1.391200pt;}
.ls23_c00216{letter-spacing:1.588533pt;}
.ls30_c00216{letter-spacing:1.626667pt;}
.ls7f_c00216{letter-spacing:1.639840pt;}
.ls1_c00216{letter-spacing:1.662133pt;}
.ls44_c00216{letter-spacing:1.704960pt;}
.ls38_c00216{letter-spacing:1.786667pt;}
.ls55_c00216{letter-spacing:1.888480pt;}
.ls17_c00216{letter-spacing:2.520800pt;}
.ls37_c00216{letter-spacing:2.826667pt;}
.ws7_c00216{word-spacing:-14.936160pt;}
.ws5_c00216{word-spacing:-14.928533pt;}
.wsb_c00216{word-spacing:-14.854933pt;}
.wse_c00216{word-spacing:0.000000pt;}
.ws9_c00216{word-spacing:79.058667pt;}
.ws4_c00216{word-spacing:79.549333pt;}
.wsd_c00216{word-spacing:79.794667pt;}
.ws0_c00216{word-spacing:80.466667pt;}
.ws1_c00216{word-spacing:80.469333pt;}
.wsc_c00216{word-spacing:81.174667pt;}
.ws3_c00216{word-spacing:81.696000pt;}
.ws2_c00216{word-spacing:81.880000pt;}
.wsa_c00216{word-spacing:81.910667pt;}
.ws8_c00216{word-spacing:81.929333pt;}
.ws6_c00216{word-spacing:85.529333pt;}
._7_c00216{margin-left:-13.070133pt;}
._8_c00216{margin-left:-12.039733pt;}
._1_c00216{margin-left:-10.640000pt;}
._5_c00216{margin-left:-8.850400pt;}
._11_c00216{margin-left:-3.354933pt;}
._0_c00216{margin-left:-1.901333pt;}
._4_c00216{width:1.005867pt;}
._6_c00216{width:2.563733pt;}
._3_c00216{width:3.655467pt;}
._2_c00216{width:4.684282pt;}
._13_c00216{width:5.605867pt;}
._f_c00216{width:6.685333pt;}
._12_c00216{width:8.103718pt;}
._14_c00216{width:9.235215pt;}
._9_c00216{width:11.512267pt;}
._10_c00216{width:12.781867pt;}
._c_c00216{width:14.407200pt;}
._a_c00216{width:16.909600pt;}
._e_c00216{width:18.479733pt;}
._d_c00216{width:19.730933pt;}
._b_c00216{width:20.914667pt;}
._15_c00216{width:22.398933pt;}
._16_c00216{width:25.931733pt;}
.fs7_c00216{font-size:12.800000pt;}
.fs8_c00216{font-size:17.067200pt;}
.fs6_c00216{font-size:35.733333pt;}
.fs4_c00216{font-size:41.600533pt;}
.fs2_c00216{font-size:46.080000pt;}
.fse_c00216{font-size:50.666667pt;}
.fs0_c00216{font-size:53.333333pt;}
.fs5_c00216{font-size:56.533333pt;}
.fs3_c00216{font-size:57.066667pt;}
.fsa_c00216{font-size:59.200000pt;}
.fs1_c00216{font-size:61.333333pt;}
.fsd_c00216{font-size:67.200000pt;}
.fsc_c00216{font-size:93.866667pt;}
.fsb_c00216{font-size:98.133333pt;}
.fs9_c00216{font-size:98.666667pt;}
.y0_c00216{bottom:0.000000pt;}
.y2d_c00216{bottom:58.893333pt;}
.y2c_c00216{bottom:128.000000pt;}
.y2b_c00216{bottom:155.200000pt;}
.y2a_c00216{bottom:155.206000pt;}
.y29_c00216{bottom:183.373333pt;}
.y28_c00216{bottom:211.533333pt;}
.y26_c00216{bottom:239.368000pt;}
.y27_c00216{bottom:239.373333pt;}
.y25_c00216{bottom:267.213333pt;}
.y23_c00216{bottom:294.726000pt;}
.y24_c00216{bottom:294.733333pt;}
.y22_c00216{bottom:322.893333pt;}
.y21_c00216{bottom:350.093333pt;}
.y20_c00216{bottom:350.099333pt;}
.y1f_c00216{bottom:378.880000pt;}
.y1e_c00216{bottom:406.400000pt;}
.y1c_c00216{bottom:433.930000pt;}
.y1d_c00216{bottom:433.933333pt;}
.y1b_c00216{bottom:461.760000pt;}
.y1a_c00216{bottom:489.600000pt;}
.y19_c00216{bottom:517.760000pt;}
.y17_c00216{bottom:545.292000pt;}
.y18_c00216{bottom:545.293333pt;}
.y16_c00216{bottom:572.800000pt;}
.y14_c00216{bottom:600.964667pt;}
.y15_c00216{bottom:600.973333pt;}
.y13_c00216{bottom:628.794667pt;}
.y12_c00216{bottom:656.640000pt;}
.y10_c00216{bottom:684.477333pt;}
.y11_c00216{bottom:684.493333pt;}
.yf_c00216{bottom:712.322667pt;}
.ye_c00216{bottom:739.846000pt;}
.yd_c00216{bottom:768.013333pt;}
.yc_c00216{bottom:795.533333pt;}
.yb_c00216{bottom:823.040000pt;}
.ya_c00216{bottom:850.880000pt;}
.y9_c00216{bottom:878.400000pt;}
.y7_c00216{bottom:905.928000pt;}
.y8_c00216{bottom:905.933333pt;}
.y6_c00216{bottom:933.773333pt;}
.y5_c00216{bottom:958.720000pt;}
.y3_c00216{bottom:961.280000pt;}
.y4_c00216{bottom:962.253333pt;}
.y2_c00216{bottom:989.453333pt;}
.y1_c00216{bottom:1055.693333pt;}
.h8_c00216{height:8.524800pt;}
.ha_c00216{height:16.742190pt;}
.hb_c00216{height:16.750523pt;}
.h5_c00216{height:30.689280pt;}
.h7_c00216{height:37.268750pt;}
.h14_c00216{height:49.726562pt;}
.h2_c00216{height:52.343750pt;}
.h6_c00216{height:55.456771pt;}
.h9_c00216{height:55.484375pt;}
.hd_c00216{height:58.072656pt;}
.hf_c00216{height:58.101562pt;}
.h3_c00216{height:60.195312pt;}
.h12_c00216{height:60.224646pt;}
.h4_c00216{height:64.088646pt;}
.h13_c00216{height:65.953125pt;}
.h11_c00216{height:70.087500pt;}
.h10_c00216{height:92.125000pt;}
.he_c00216{height:96.264583pt;}
.hc_c00216{height:96.787760pt;}
.h1_c00216{height:1122.666667pt;}
.h0_c00216{height:1122.880000pt;}
.w1_c00216{width:793.333333pt;}
.w0_c00216{width:793.600000pt;}
.x0_c00216{left:0.000000pt;}
.x2f_c00216{left:107.026667pt;}
.x1_c00216{left:108.093333pt;}
.x2_c00216{left:156.320000pt;}
.x9_c00216{left:158.600000pt;}
.xa_c00216{left:206.520000pt;}
.x29_c00216{left:244.706667pt;}
.x4_c00216{left:265.280000pt;}
.x2a_c00216{left:269.346667pt;}
.x25_c00216{left:290.146667pt;}
.x26_c00216{left:314.946667pt;}
.x5_c00216{left:316.306667pt;}
.xb_c00216{left:325.266667pt;}
.x6_c00216{left:376.946667pt;}
.x1a_c00216{left:384.173333pt;}
.xc_c00216{left:386.800000pt;}
.x1e_c00216{left:401.120000pt;}
.x1b_c00216{left:406.266667pt;}
.x1c_c00216{left:423.973333pt;}
.x7_c00216{left:425.493333pt;}
.xd_c00216{left:456.480000pt;}
.xe_c00216{left:467.426667pt;}
.x21_c00216{left:540.666667pt;}
.x22_c00216{left:554.853333pt;}
.xf_c00216{left:564.400000pt;}
.x12_c00216{left:572.013333pt;}
.x27_c00216{left:576.173333pt;}
.x1d_c00216{left:582.133333pt;}
.x2c_c00216{left:586.613333pt;}
.x13_c00216{left:588.013333pt;}
.x19_c00216{left:589.306667pt;}
.x14_c00216{left:590.893333pt;}
.x28_c00216{left:592.173333pt;}
.x2b_c00216{left:593.200000pt;}
.x17_c00216{left:600.506667pt;}
.x10_c00216{left:602.413333pt;}
.x2d_c00216{left:604.066667pt;}
.x1f_c00216{left:606.213333pt;}
.x15_c00216{left:608.226667pt;}
.x23_c00216{left:609.773333pt;}
.x16_c00216{left:617.773333pt;}
.x11_c00216{left:620.000000pt;}
.x20_c00216{left:623.840000pt;}
.x24_c00216{left:627.346667pt;}
.x2e_c00216{left:642.560000pt;}
.x8_c00216{left:644.813333pt;}
.x18_c00216{left:648.173333pt;}
.x3_c00216{left:649.186667pt;}
}





/* 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_c00217 {
    display:none;
  }
  .loading-indicator_c00217.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00217 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_c00217 { 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_c00217" -> "#page-container .classname_c00217")
 */
.pf_c00217 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00217 { /* 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_c00217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00217 { /* 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_c00217 { /* 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_c00217 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00217 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00217 {overflow:visible;}
  }
}
.c_c00217 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00217 { /* 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_c00217:after { /* webkit #35443 */
  content: '';
}
.t_c00217:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00217 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 */
}
.__c00217 { /* 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_c00217 { /* info for Javascript */
  display:none;
}
.l_c00217 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00217 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00217 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00217: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_c00217 {
    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_c00217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00217.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_c00217 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00217;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.311035;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_c00217;src:url('chunks/assets/font_9768824d0b6f997617d4aba6.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.284668;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_c00217;src:url('chunks/assets/font_16a9d21d207353e10b33eaf9.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.284180;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_c00217;src:url('chunks/assets/font_0b343bf82095fda32c122a15.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;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:ff5_c00217;src:url('chunks/assets/font_14b8a4780300fd39d69906a1.woff2')format("woff");}.ff5_c00217{font-family:ff5_c00217;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;}
.mc_c00217{transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);}
.m3_c00217{transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);}
.m10_c00217{transform:matrix(0.192009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192009,0.000000,0.000000,0.250000,0,0);}
.mb_c00217{transform:matrix(0.192249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192249,0.000000,0.000000,0.250000,0,0);}
.m9_c00217{transform:matrix(0.192956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192956,0.000000,0.000000,0.250000,0,0);}
.m6_c00217{transform:matrix(0.207022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207022,0.000000,0.000000,0.250000,0,0);}
.md_c00217{transform:matrix(0.217965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217965,0.000000,0.000000,0.250000,0,0);}
.m4_c00217{transform:matrix(0.219938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219938,0.000000,0.000000,0.250000,0,0);}
.m5_c00217{transform:matrix(0.222681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222681,0.000000,0.000000,0.250000,0,0);}
.mf_c00217{transform:matrix(0.226793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226793,0.000000,0.000000,0.250000,0,0);}
.m2_c00217{transform:matrix(0.229436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229436,0.000000,0.000000,0.250000,0,0);}
.ma_c00217{transform:matrix(0.233558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233558,0.000000,0.000000,0.250000,0,0);}
.m0_c00217{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m8_c00217{transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);}
.m7_c00217{transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{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);}
.me_c00217{transform:matrix(0.434765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434765,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.v2_c00217{vertical-align:24.567000px;}
.v1_c00217{vertical-align:28.800000px;}
.ls2d_c00217{letter-spacing:-3.864000px;}
.ls84_c00217{letter-spacing:-3.423000px;}
.ls55_c00217{letter-spacing:-2.625000px;}
.ls72_c00217{letter-spacing:-2.604000px;}
.ls7a_c00217{letter-spacing:-2.520000px;}
.ls45_c00217{letter-spacing:-2.457000px;}
.ls21_c00217{letter-spacing:-2.394000px;}
.ls1d_c00217{letter-spacing:-2.310000px;}
.ls50_c00217{letter-spacing:-2.289000px;}
.ls54_c00217{letter-spacing:-2.288520px;}
.ls3d_c00217{letter-spacing:-2.232360px;}
.ls40_c00217{letter-spacing:-2.204280px;}
.ls78_c00217{letter-spacing:-2.184000px;}
.ls6c_c00217{letter-spacing:-2.056860px;}
.ls5c_c00217{letter-spacing:-1.951560px;}
.ls74_c00217{letter-spacing:-1.649700px;}
.ls2a_c00217{letter-spacing:-1.635660px;}
.ls7d_c00217{letter-spacing:-1.228500px;}
.ls36_c00217{letter-spacing:-1.200420px;}
.ls7c_c00217{letter-spacing:-1.186380px;}
.ls4a_c00217{letter-spacing:-1.067040px;}
.ls39_c00217{letter-spacing:-1.045980px;}
.ls26_c00217{letter-spacing:-1.017900px;}
.ls30_c00217{letter-spacing:-1.003860px;}
.ls75_c00217{letter-spacing:-0.926640px;}
.ls66_c00217{letter-spacing:-0.919620px;}
.ls35_c00217{letter-spacing:-0.891540px;}
.ls29_c00217{letter-spacing:-0.870480px;}
.ls4f_c00217{letter-spacing:-0.856440px;}
.ls61_c00217{letter-spacing:-0.849420px;}
.ls3a_c00217{letter-spacing:-0.807300px;}
.ls20_c00217{letter-spacing:-0.800280px;}
.ls81_c00217{letter-spacing:-0.772200px;}
.ls5b_c00217{letter-spacing:-0.765180px;}
.ls2c_c00217{letter-spacing:-0.758160px;}
.ls70_c00217{letter-spacing:-0.744120px;}
.ls44_c00217{letter-spacing:-0.737100px;}
.ls83_c00217{letter-spacing:-0.723060px;}
.ls5e_c00217{letter-spacing:-0.716040px;}
.ls31_c00217{letter-spacing:-0.702000px;}
.ls62_c00217{letter-spacing:-0.687960px;}
.ls6b_c00217{letter-spacing:-0.680940px;}
.ls47_c00217{letter-spacing:-0.659880px;}
.ls1f_c00217{letter-spacing:-0.652860px;}
.ls67_c00217{letter-spacing:-0.638820px;}
.ls41_c00217{letter-spacing:-0.631800px;}
.ls2b_c00217{letter-spacing:-0.624780px;}
.ls3e_c00217{letter-spacing:-0.617760px;}
.ls69_c00217{letter-spacing:-0.603720px;}
.ls6a_c00217{letter-spacing:-0.596700px;}
.ls33_c00217{letter-spacing:-0.582660px;}
.ls76_c00217{letter-spacing:-0.568620px;}
.ls28_c00217{letter-spacing:-0.533520px;}
.ls88_c00217{letter-spacing:-0.529620px;}
.ls4d_c00217{letter-spacing:-0.512460px;}
.ls57_c00217{letter-spacing:-0.498420px;}
.ls27_c00217{letter-spacing:-0.470340px;}
.ls65_c00217{letter-spacing:-0.456300px;}
.ls6d_c00217{letter-spacing:-0.442260px;}
.ls77_c00217{letter-spacing:-0.435240px;}
.ls7f_c00217{letter-spacing:-0.428220px;}
.ls5a_c00217{letter-spacing:-0.421200px;}
.ls48_c00217{letter-spacing:-0.407160px;}
.ls49_c00217{letter-spacing:-0.386100px;}
.ls52_c00217{letter-spacing:-0.379080px;}
.ls43_c00217{letter-spacing:-0.351000px;}
.ls58_c00217{letter-spacing:-0.329940px;}
.ls4b_c00217{letter-spacing:-0.322920px;}
.ls60_c00217{letter-spacing:-0.315900px;}
.ls64_c00217{letter-spacing:-0.308880px;}
.ls42_c00217{letter-spacing:-0.280800px;}
.ls3c_c00217{letter-spacing:-0.266760px;}
.ls59_c00217{letter-spacing:-0.231660px;}
.ls1e_c00217{letter-spacing:-0.224640px;}
.ls23_c00217{letter-spacing:-0.217620px;}
.ls37_c00217{letter-spacing:-0.203580px;}
.ls24_c00217{letter-spacing:-0.196560px;}
.ls32_c00217{letter-spacing:-0.182520px;}
.ls2f_c00217{letter-spacing:-0.175500px;}
.ls25_c00217{letter-spacing:-0.168480px;}
.ls63_c00217{letter-spacing:-0.161460px;}
.ls4e_c00217{letter-spacing:-0.154440px;}
.ls86_c00217{letter-spacing:-0.140400px;}
.ls6f_c00217{letter-spacing:-0.133380px;}
.ls6e_c00217{letter-spacing:-0.126360px;}
.ls68_c00217{letter-spacing:-0.119340px;}
.ls5d_c00217{letter-spacing:-0.091260px;}
.ls56_c00217{letter-spacing:-0.077220px;}
.ls3f_c00217{letter-spacing:-0.070200px;}
.ls53_c00217{letter-spacing:-0.049140px;}
.ls38_c00217{letter-spacing:-0.028080px;}
.ls80_c00217{letter-spacing:-0.021060px;}
.ls4c_c00217{letter-spacing:-0.014040px;}
.ls71_c00217{letter-spacing:-0.007020px;}
.ls34_c00217{letter-spacing:0.000000px;}
.ls3_c00217{letter-spacing:0.007020px;}
.ls1_c00217{letter-spacing:0.021060px;}
.ls16_c00217{letter-spacing:0.042120px;}
.lsf_c00217{letter-spacing:0.056160px;}
.ls12_c00217{letter-spacing:0.070200px;}
.ls7_c00217{letter-spacing:0.093600px;}
.lsc_c00217{letter-spacing:0.112320px;}
.ls2_c00217{letter-spacing:0.147420px;}
.ls13_c00217{letter-spacing:0.154440px;}
.ls9_c00217{letter-spacing:0.182520px;}
.ls5_c00217{letter-spacing:0.189540px;}
.ls15_c00217{letter-spacing:0.273780px;}
.lsb_c00217{letter-spacing:0.315900px;}
.ls11_c00217{letter-spacing:0.329940px;}
.ls10_c00217{letter-spacing:0.372060px;}
.ls1a_c00217{letter-spacing:0.400140px;}
.ls19_c00217{letter-spacing:0.407160px;}
.ls18_c00217{letter-spacing:0.421200px;}
.ls4_c00217{letter-spacing:0.456300px;}
.ls8_c00217{letter-spacing:0.512460px;}
.ls1b_c00217{letter-spacing:0.547560px;}
.ls7b_c00217{letter-spacing:0.554040px;}
.ls2e_c00217{letter-spacing:0.574560px;}
.ls1c_c00217{letter-spacing:0.610740px;}
.ls3b_c00217{letter-spacing:0.629280px;}
.ls17_c00217{letter-spacing:0.631800px;}
.lse_c00217{letter-spacing:0.694980px;}
.ls46_c00217{letter-spacing:0.752400px;}
.ls87_c00217{letter-spacing:0.793440px;}
.ls5f_c00217{letter-spacing:0.861840px;}
.ls51_c00217{letter-spacing:0.964440px;}
.ls6_c00217{letter-spacing:0.996840px;}
.ls85_c00217{letter-spacing:1.012320px;}
.ls0_c00217{letter-spacing:1.067040px;}
.ls7e_c00217{letter-spacing:1.073880px;}
.ls73_c00217{letter-spacing:1.108080px;}
.ls14_c00217{letter-spacing:1.172340px;}
.lsa_c00217{letter-spacing:1.193400px;}
.ls79_c00217{letter-spacing:1.285440px;}
.lsd_c00217{letter-spacing:1.305720px;}
.ls22_c00217{letter-spacing:1.306440px;}
.ls82_c00217{letter-spacing:1.620030px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{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__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00217{word-spacing:-16.925220px;}
.ws0_c00217{word-spacing:-16.897140px;}
.ws8_c00217{word-spacing:-16.777800px;}
.ws3_c00217{word-spacing:-16.504020px;}
.ws7_c00217{word-spacing:-16.363620px;}
.wsa_c00217{word-spacing:0.000000px;}
.ws2_c00217{word-spacing:90.382500px;}
.ws6_c00217{word-spacing:91.401300px;}
.ws9_c00217{word-spacing:91.435500px;}
.ws5_c00217{word-spacing:92.804400px;}
.ws4_c00217{word-spacing:93.646800px;}
._d_c00217{margin-left:-12.972960px;}
._e_c00217{margin-left:-11.945700px;}
._c_c00217{margin-left:-4.843800px;}
._8_c00217{margin-left:-3.650400px;}
._f_c00217{margin-left:-2.379780px;}
._9_c00217{margin-left:-1.263600px;}
._7_c00217{width:1.045980px;}
._5_c00217{width:2.091960px;}
._0_c00217{width:3.622320px;}
._6_c00217{width:5.517720px;}
._1_c00217{width:7.034040px;}
._2_c00217{width:8.991720px;}
._4_c00217{width:11.203920px;}
._3_c00217{width:13.205520px;}
._a_c00217{width:15.281640px;}
._b_c00217{width:18.223920px;}
._13_c00217{width:27.230580px;}
._10_c00217{width:29.217240px;}
._11_c00217{width:30.761640px;}
._12_c00217{width:32.011200px;}
.fc0_c00217{color:transparent;}
.fs9_c00217{font-size:32.400600px;}
.fsb_c00217{font-size:58.200000px;}
.fs4_c00217{font-size:62.400000px;}
.fs5_c00217{font-size:65.400000px;}
.fs0_c00217{font-size:66.000000px;}
.fs2_c00217{font-size:68.400000px;}
.fs1_c00217{font-size:70.200000px;}
.fs8_c00217{font-size:72.000000px;}
.fs7_c00217{font-size:74.400000px;}
.fs6_c00217{font-size:75.000000px;}
.fsa_c00217{font-size:97.800000px;}
.fs3_c00217{font-size:110.400000px;}
.y0_c00217{bottom:0.000000px;}
.y26_c00217{bottom:62.655000px;}
.y25_c00217{bottom:296.295000px;}
.y23_c00217{bottom:327.248700px;}
.y24_c00217{bottom:327.255000px;}
.y22_c00217{bottom:359.295000px;}
.y20_c00217{bottom:390.233250px;}
.y21_c00217{bottom:390.240000px;}
.y1f_c00217{bottom:421.560000px;}
.y1e_c00217{bottom:452.535000px;}
.y1d_c00217{bottom:483.855000px;}
.y1c_c00217{bottom:515.175000px;}
.y1b_c00217{bottom:515.177250px;}
.y1a_c00217{bottom:546.855000px;}
.y18_c00217{bottom:578.171250px;}
.y19_c00217{bottom:578.175000px;}
.y17_c00217{bottom:610.200000px;}
.y16_c00217{bottom:641.548050px;}
.y15_c00217{bottom:673.208250px;}
.y14_c00217{bottom:704.535000px;}
.y13_c00217{bottom:735.855000px;}
.y12_c00217{bottom:766.815000px;}
.y11_c00217{bottom:766.821600px;}
.y10_c00217{bottom:798.499350px;}
.yf_c00217{bottom:829.440000px;}
.yd_c00217{bottom:861.130800px;}
.ye_c00217{bottom:861.135000px;}
.yc_c00217{bottom:892.440000px;}
.ya_c00217{bottom:923.399250px;}
.yb_c00217{bottom:923.400000px;}
.y9_c00217{bottom:954.375000px;}
.y7_c00217{bottom:985.688250px;}
.y8_c00217{bottom:985.695000px;}
.y6_c00217{bottom:1017.015000px;}
.y4_c00217{bottom:1048.328250px;}
.y5_c00217{bottom:1048.335000px;}
.y3_c00217{bottom:1079.655000px;}
.y2_c00217{bottom:1110.975000px;}
.y1_c00217{bottom:1188.015000px;}
.hf_c00217{height:31.799417px;}
.h11_c00217{height:57.120117px;}
.hc_c00217{height:61.211719px;}
.hb_c00217{height:61.242188px;}
.h2_c00217{height:66.515625px;}
.h4_c00217{height:67.097461px;}
.h7_c00217{height:68.210156px;}
.h6_c00217{height:68.863184px;}
.h3_c00217{height:68.897461px;}
.h9_c00217{height:68.912461px;}
.he_c00217{height:68.924461px;}
.hd_c00217{height:70.628906px;}
.h8_c00217{height:73.608398px;}
.ha_c00217{height:77.596875px;}
.h10_c00217{height:102.002344px;}
.h5_c00217{height:108.297656px;}
.h1_c00217{height:1263.000000px;}
.h0_c00217{height:1263.240000px;}
.w1_c00217{width:892.500000px;}
.w0_c00217{width:892.800000px;}
.x0_c00217{left:0.000000px;}
.x17_c00217{left:115.710000px;}
.xe_c00217{left:117.150000px;}
.x7_c00217{left:118.230000px;}
.x1_c00217{left:120.525000px;}
.x20_c00217{left:169.395000px;}
.x15_c00217{left:170.610000px;}
.xb_c00217{left:171.690000px;}
.x8_c00217{left:172.968450px;}
.x2_c00217{left:174.075000px;}
.x1c_c00217{left:332.625000px;}
.x1a_c00217{left:358.455000px;}
.x1d_c00217{left:361.290000px;}
.x1b_c00217{left:386.340000px;}
.x22_c00217{left:396.435000px;}
.x27_c00217{left:420.690000px;}
.x18_c00217{left:598.155000px;}
.x19_c00217{left:620.235000px;}
.xf_c00217{left:632.490000px;}
.x21_c00217{left:643.725000px;}
.x23_c00217{left:645.165000px;}
.x10_c00217{left:652.590000px;}
.x9_c00217{left:656.460000px;}
.x5_c00217{left:657.915000px;}
.x25_c00217{left:659.685000px;}
.x3_c00217{left:662.805000px;}
.x24_c00217{left:665.205000px;}
.xc_c00217{left:670.860000px;}
.xa_c00217{left:676.305000px;}
.x6_c00217{left:677.745000px;}
.x26_c00217{left:679.905000px;}
.x4_c00217{left:681.990000px;}
.x13_c00217{left:683.970000px;}
.x1e_c00217{left:686.565000px;}
.xd_c00217{left:690.795000px;}
.x14_c00217{left:704.415000px;}
.x1f_c00217{left:706.830000px;}
.x11_c00217{left:725.805000px;}
.x16_c00217{left:729.150000px;}
.x12_c00217{left:738.525000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.v2_c00217{vertical-align:21.837333pt;}
.v1_c00217{vertical-align:25.600000pt;}
.ls2d_c00217{letter-spacing:-3.434667pt;}
.ls84_c00217{letter-spacing:-3.042667pt;}
.ls55_c00217{letter-spacing:-2.333333pt;}
.ls72_c00217{letter-spacing:-2.314667pt;}
.ls7a_c00217{letter-spacing:-2.240000pt;}
.ls45_c00217{letter-spacing:-2.184000pt;}
.ls21_c00217{letter-spacing:-2.128000pt;}
.ls1d_c00217{letter-spacing:-2.053333pt;}
.ls50_c00217{letter-spacing:-2.034667pt;}
.ls54_c00217{letter-spacing:-2.034240pt;}
.ls3d_c00217{letter-spacing:-1.984320pt;}
.ls40_c00217{letter-spacing:-1.959360pt;}
.ls78_c00217{letter-spacing:-1.941333pt;}
.ls6c_c00217{letter-spacing:-1.828320pt;}
.ls5c_c00217{letter-spacing:-1.734720pt;}
.ls74_c00217{letter-spacing:-1.466400pt;}
.ls2a_c00217{letter-spacing:-1.453920pt;}
.ls7d_c00217{letter-spacing:-1.092000pt;}
.ls36_c00217{letter-spacing:-1.067040pt;}
.ls7c_c00217{letter-spacing:-1.054560pt;}
.ls4a_c00217{letter-spacing:-0.948480pt;}
.ls39_c00217{letter-spacing:-0.929760pt;}
.ls26_c00217{letter-spacing:-0.904800pt;}
.ls30_c00217{letter-spacing:-0.892320pt;}
.ls75_c00217{letter-spacing:-0.823680pt;}
.ls66_c00217{letter-spacing:-0.817440pt;}
.ls35_c00217{letter-spacing:-0.792480pt;}
.ls29_c00217{letter-spacing:-0.773760pt;}
.ls4f_c00217{letter-spacing:-0.761280pt;}
.ls61_c00217{letter-spacing:-0.755040pt;}
.ls3a_c00217{letter-spacing:-0.717600pt;}
.ls20_c00217{letter-spacing:-0.711360pt;}
.ls81_c00217{letter-spacing:-0.686400pt;}
.ls5b_c00217{letter-spacing:-0.680160pt;}
.ls2c_c00217{letter-spacing:-0.673920pt;}
.ls70_c00217{letter-spacing:-0.661440pt;}
.ls44_c00217{letter-spacing:-0.655200pt;}
.ls83_c00217{letter-spacing:-0.642720pt;}
.ls5e_c00217{letter-spacing:-0.636480pt;}
.ls31_c00217{letter-spacing:-0.624000pt;}
.ls62_c00217{letter-spacing:-0.611520pt;}
.ls6b_c00217{letter-spacing:-0.605280pt;}
.ls47_c00217{letter-spacing:-0.586560pt;}
.ls1f_c00217{letter-spacing:-0.580320pt;}
.ls67_c00217{letter-spacing:-0.567840pt;}
.ls41_c00217{letter-spacing:-0.561600pt;}
.ls2b_c00217{letter-spacing:-0.555360pt;}
.ls3e_c00217{letter-spacing:-0.549120pt;}
.ls69_c00217{letter-spacing:-0.536640pt;}
.ls6a_c00217{letter-spacing:-0.530400pt;}
.ls33_c00217{letter-spacing:-0.517920pt;}
.ls76_c00217{letter-spacing:-0.505440pt;}
.ls28_c00217{letter-spacing:-0.474240pt;}
.ls88_c00217{letter-spacing:-0.470773pt;}
.ls4d_c00217{letter-spacing:-0.455520pt;}
.ls57_c00217{letter-spacing:-0.443040pt;}
.ls27_c00217{letter-spacing:-0.418080pt;}
.ls65_c00217{letter-spacing:-0.405600pt;}
.ls6d_c00217{letter-spacing:-0.393120pt;}
.ls77_c00217{letter-spacing:-0.386880pt;}
.ls7f_c00217{letter-spacing:-0.380640pt;}
.ls5a_c00217{letter-spacing:-0.374400pt;}
.ls48_c00217{letter-spacing:-0.361920pt;}
.ls49_c00217{letter-spacing:-0.343200pt;}
.ls52_c00217{letter-spacing:-0.336960pt;}
.ls43_c00217{letter-spacing:-0.312000pt;}
.ls58_c00217{letter-spacing:-0.293280pt;}
.ls4b_c00217{letter-spacing:-0.287040pt;}
.ls60_c00217{letter-spacing:-0.280800pt;}
.ls64_c00217{letter-spacing:-0.274560pt;}
.ls42_c00217{letter-spacing:-0.249600pt;}
.ls3c_c00217{letter-spacing:-0.237120pt;}
.ls59_c00217{letter-spacing:-0.205920pt;}
.ls1e_c00217{letter-spacing:-0.199680pt;}
.ls23_c00217{letter-spacing:-0.193440pt;}
.ls37_c00217{letter-spacing:-0.180960pt;}
.ls24_c00217{letter-spacing:-0.174720pt;}
.ls32_c00217{letter-spacing:-0.162240pt;}
.ls2f_c00217{letter-spacing:-0.156000pt;}
.ls25_c00217{letter-spacing:-0.149760pt;}
.ls63_c00217{letter-spacing:-0.143520pt;}
.ls4e_c00217{letter-spacing:-0.137280pt;}
.ls86_c00217{letter-spacing:-0.124800pt;}
.ls6f_c00217{letter-spacing:-0.118560pt;}
.ls6e_c00217{letter-spacing:-0.112320pt;}
.ls68_c00217{letter-spacing:-0.106080pt;}
.ls5d_c00217{letter-spacing:-0.081120pt;}
.ls56_c00217{letter-spacing:-0.068640pt;}
.ls3f_c00217{letter-spacing:-0.062400pt;}
.ls53_c00217{letter-spacing:-0.043680pt;}
.ls38_c00217{letter-spacing:-0.024960pt;}
.ls80_c00217{letter-spacing:-0.018720pt;}
.ls4c_c00217{letter-spacing:-0.012480pt;}
.ls71_c00217{letter-spacing:-0.006240pt;}
.ls34_c00217{letter-spacing:0.000000pt;}
.ls3_c00217{letter-spacing:0.006240pt;}
.ls1_c00217{letter-spacing:0.018720pt;}
.ls16_c00217{letter-spacing:0.037440pt;}
.lsf_c00217{letter-spacing:0.049920pt;}
.ls12_c00217{letter-spacing:0.062400pt;}
.ls7_c00217{letter-spacing:0.083200pt;}
.lsc_c00217{letter-spacing:0.099840pt;}
.ls2_c00217{letter-spacing:0.131040pt;}
.ls13_c00217{letter-spacing:0.137280pt;}
.ls9_c00217{letter-spacing:0.162240pt;}
.ls5_c00217{letter-spacing:0.168480pt;}
.ls15_c00217{letter-spacing:0.243360pt;}
.lsb_c00217{letter-spacing:0.280800pt;}
.ls11_c00217{letter-spacing:0.293280pt;}
.ls10_c00217{letter-spacing:0.330720pt;}
.ls1a_c00217{letter-spacing:0.355680pt;}
.ls19_c00217{letter-spacing:0.361920pt;}
.ls18_c00217{letter-spacing:0.374400pt;}
.ls4_c00217{letter-spacing:0.405600pt;}
.ls8_c00217{letter-spacing:0.455520pt;}
.ls1b_c00217{letter-spacing:0.486720pt;}
.ls7b_c00217{letter-spacing:0.492480pt;}
.ls2e_c00217{letter-spacing:0.510720pt;}
.ls1c_c00217{letter-spacing:0.542880pt;}
.ls3b_c00217{letter-spacing:0.559360pt;}
.ls17_c00217{letter-spacing:0.561600pt;}
.lse_c00217{letter-spacing:0.617760pt;}
.ls46_c00217{letter-spacing:0.668800pt;}
.ls87_c00217{letter-spacing:0.705280pt;}
.ls5f_c00217{letter-spacing:0.766080pt;}
.ls51_c00217{letter-spacing:0.857280pt;}
.ls6_c00217{letter-spacing:0.886080pt;}
.ls85_c00217{letter-spacing:0.899840pt;}
.ls0_c00217{letter-spacing:0.948480pt;}
.ls7e_c00217{letter-spacing:0.954560pt;}
.ls73_c00217{letter-spacing:0.984960pt;}
.ls14_c00217{letter-spacing:1.042080pt;}
.lsa_c00217{letter-spacing:1.060800pt;}
.ls79_c00217{letter-spacing:1.142613pt;}
.lsd_c00217{letter-spacing:1.160640pt;}
.ls22_c00217{letter-spacing:1.161280pt;}
.ls82_c00217{letter-spacing:1.440027pt;}
.ws1_c00217{word-spacing:-15.044640pt;}
.ws0_c00217{word-spacing:-15.019680pt;}
.ws8_c00217{word-spacing:-14.913600pt;}
.ws3_c00217{word-spacing:-14.670240pt;}
.ws7_c00217{word-spacing:-14.545440pt;}
.wsa_c00217{word-spacing:0.000000pt;}
.ws2_c00217{word-spacing:80.340000pt;}
.ws6_c00217{word-spacing:81.245600pt;}
.ws9_c00217{word-spacing:81.276000pt;}
.ws5_c00217{word-spacing:82.492800pt;}
.ws4_c00217{word-spacing:83.241600pt;}
._d_c00217{margin-left:-11.531520pt;}
._e_c00217{margin-left:-10.618400pt;}
._c_c00217{margin-left:-4.305600pt;}
._8_c00217{margin-left:-3.244800pt;}
._f_c00217{margin-left:-2.115360pt;}
._9_c00217{margin-left:-1.123200pt;}
._7_c00217{width:0.929760pt;}
._5_c00217{width:1.859520pt;}
._0_c00217{width:3.219840pt;}
._6_c00217{width:4.904640pt;}
._1_c00217{width:6.252480pt;}
._2_c00217{width:7.992640pt;}
._4_c00217{width:9.959040pt;}
._3_c00217{width:11.738240pt;}
._a_c00217{width:13.583680pt;}
._b_c00217{width:16.199040pt;}
._13_c00217{width:24.204960pt;}
._10_c00217{width:25.970880pt;}
._11_c00217{width:27.343680pt;}
._12_c00217{width:28.454400pt;}
.fs9_c00217{font-size:28.800533pt;}
.fsb_c00217{font-size:51.733333pt;}
.fs4_c00217{font-size:55.466667pt;}
.fs5_c00217{font-size:58.133333pt;}
.fs0_c00217{font-size:58.666667pt;}
.fs2_c00217{font-size:60.800000pt;}
.fs1_c00217{font-size:62.400000pt;}
.fs8_c00217{font-size:64.000000pt;}
.fs7_c00217{font-size:66.133333pt;}
.fs6_c00217{font-size:66.666667pt;}
.fsa_c00217{font-size:86.933333pt;}
.fs3_c00217{font-size:98.133333pt;}
.y0_c00217{bottom:0.000000pt;}
.y26_c00217{bottom:55.693333pt;}
.y25_c00217{bottom:263.373333pt;}
.y23_c00217{bottom:290.887733pt;}
.y24_c00217{bottom:290.893333pt;}
.y22_c00217{bottom:319.373333pt;}
.y20_c00217{bottom:346.874000pt;}
.y21_c00217{bottom:346.880000pt;}
.y1f_c00217{bottom:374.720000pt;}
.y1e_c00217{bottom:402.253333pt;}
.y1d_c00217{bottom:430.093333pt;}
.y1c_c00217{bottom:457.933333pt;}
.y1b_c00217{bottom:457.935333pt;}
.y1a_c00217{bottom:486.093333pt;}
.y18_c00217{bottom:513.930000pt;}
.y19_c00217{bottom:513.933333pt;}
.y17_c00217{bottom:542.400000pt;}
.y16_c00217{bottom:570.264933pt;}
.y15_c00217{bottom:598.407333pt;}
.y14_c00217{bottom:626.253333pt;}
.y13_c00217{bottom:654.093333pt;}
.y12_c00217{bottom:681.613333pt;}
.y11_c00217{bottom:681.619200pt;}
.y10_c00217{bottom:709.777200pt;}
.yf_c00217{bottom:737.280000pt;}
.yd_c00217{bottom:765.449600pt;}
.ye_c00217{bottom:765.453333pt;}
.yc_c00217{bottom:793.280000pt;}
.ya_c00217{bottom:820.799333pt;}
.yb_c00217{bottom:820.800000pt;}
.y9_c00217{bottom:848.333333pt;}
.y7_c00217{bottom:876.167333pt;}
.y8_c00217{bottom:876.173333pt;}
.y6_c00217{bottom:904.013333pt;}
.y4_c00217{bottom:931.847333pt;}
.y5_c00217{bottom:931.853333pt;}
.y3_c00217{bottom:959.693333pt;}
.y2_c00217{bottom:987.533333pt;}
.y1_c00217{bottom:1056.013333pt;}
.hf_c00217{height:28.266148pt;}
.h11_c00217{height:50.773437pt;}
.hc_c00217{height:54.410417pt;}
.hb_c00217{height:54.437500pt;}
.h2_c00217{height:59.125000pt;}
.h4_c00217{height:59.642187pt;}
.h7_c00217{height:60.631250pt;}
.h6_c00217{height:61.211719pt;}
.h3_c00217{height:61.242187pt;}
.h9_c00217{height:61.255521pt;}
.he_c00217{height:61.266188pt;}
.hd_c00217{height:62.781250pt;}
.h8_c00217{height:65.429688pt;}
.ha_c00217{height:68.975000pt;}
.h10_c00217{height:90.668750pt;}
.h5_c00217{height:96.264583pt;}
.h1_c00217{height:1122.666667pt;}
.h0_c00217{height:1122.880000pt;}
.w1_c00217{width:793.333333pt;}
.w0_c00217{width:793.600000pt;}
.x0_c00217{left:0.000000pt;}
.x17_c00217{left:102.853333pt;}
.xe_c00217{left:104.133333pt;}
.x7_c00217{left:105.093333pt;}
.x1_c00217{left:107.133333pt;}
.x20_c00217{left:150.573333pt;}
.x15_c00217{left:151.653333pt;}
.xb_c00217{left:152.613333pt;}
.x8_c00217{left:153.749733pt;}
.x2_c00217{left:154.733333pt;}
.x1c_c00217{left:295.666667pt;}
.x1a_c00217{left:318.626667pt;}
.x1d_c00217{left:321.146667pt;}
.x1b_c00217{left:343.413333pt;}
.x22_c00217{left:352.386667pt;}
.x27_c00217{left:373.946667pt;}
.x18_c00217{left:531.693333pt;}
.x19_c00217{left:551.320000pt;}
.xf_c00217{left:562.213333pt;}
.x21_c00217{left:572.200000pt;}
.x23_c00217{left:573.480000pt;}
.x10_c00217{left:580.080000pt;}
.x9_c00217{left:583.520000pt;}
.x5_c00217{left:584.813333pt;}
.x25_c00217{left:586.386667pt;}
.x3_c00217{left:589.160000pt;}
.x24_c00217{left:591.293333pt;}
.xc_c00217{left:596.320000pt;}
.xa_c00217{left:601.160000pt;}
.x6_c00217{left:602.440000pt;}
.x26_c00217{left:604.360000pt;}
.x4_c00217{left:606.213333pt;}
.x13_c00217{left:607.973333pt;}
.x1e_c00217{left:610.280000pt;}
.xd_c00217{left:614.040000pt;}
.x14_c00217{left:626.146667pt;}
.x1f_c00217{left:628.293333pt;}
.x11_c00217{left:645.160000pt;}
.x16_c00217{left:648.133333pt;}
.x12_c00217{left:656.466667pt;}
}





/* 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_c00218 {
    display:none;
  }
  .loading-indicator_c00218.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00218 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_c00218 { 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_c00218" -> "#page-container .classname_c00218")
 */
.pf_c00218 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00218 { /* 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_c00218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00218 { /* 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_c00218 { /* 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_c00218 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00218 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00218 {overflow:visible;}
  }
}
.c_c00218 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00218 { /* 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_c00218:after { /* webkit #35443 */
  content: '';
}
.t_c00218:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00218 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 */
}
.__c00218 { /* 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_c00218 { /* info for Javascript */
  display:none;
}
.l_c00218 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00218 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00218 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00218: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_c00218 {
    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_c00218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00218.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_c00218 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00218;src:url('chunks/assets/font_204118c188b935b4e0765aac.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.284668;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_c00218;src:url('chunks/assets/font_a60f830c401aee93e9127500.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.311035;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_c00218;src:url('chunks/assets/font_17ecb440ad53656ed15e94bb.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;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:ff4_c00218;src:url('chunks/assets/font_f19e301d7cccb964c1609387.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:0.666000;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_c00218;src:url('chunks/assets/font_e63ae5d687313a666d2d584e.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.284180;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;}
.m5_c00218{transform:matrix(0.145562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145562,0.000000,0.000000,0.250000,0,0);}
.mf_c00218{transform:matrix(0.208654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208654,0.000000,0.000000,0.250000,0,0);}
.me_c00218{transform:matrix(0.215667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215667,0.000000,0.000000,0.250000,0,0);}
.m12_c00218{transform:matrix(0.231536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231536,0.000000,0.000000,0.250000,0,0);}
.m10_c00218{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m9_c00218{transform:matrix(0.234161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234161,0.000000,0.000000,0.250000,0,0);}
.m8_c00218{transform:matrix(0.235093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235093,0.000000,0.000000,0.250000,0,0);}
.m7_c00218{transform:matrix(0.235337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235337,0.000000,0.000000,0.250000,0,0);}
.m11_c00218{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.ma_c00218{transform:matrix(0.239987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239987,0.000000,0.000000,0.250000,0,0);}
.m2_c00218{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.mc_c00218{transform:matrix(0.244728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244728,0.000000,0.000000,0.250000,0,0);}
.m0_c00218{transform:matrix(0.246707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246707,0.000000,0.000000,0.250000,0,0);}
.m4_c00218{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.md_c00218{transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);}
.m6_c00218{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m3_c00218{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.mb_c00218{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m1_c00218{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);}
.v0_c00218{vertical-align:0.000000px;}
.ls76_c00218{letter-spacing:-2.499000px;}
.ls4b_c00218{letter-spacing:-2.415000px;}
.ls74_c00218{letter-spacing:-2.387400px;}
.ls45_c00218{letter-spacing:-2.373000px;}
.ls6c_c00218{letter-spacing:-2.346000px;}
.ls35_c00218{letter-spacing:-2.331000px;}
.ls97_c00218{letter-spacing:-2.310000px;}
.ls83_c00218{letter-spacing:-2.235600px;}
.ls7b_c00218{letter-spacing:-2.199240px;}
.ls98_c00218{letter-spacing:-2.163000px;}
.ls88_c00218{letter-spacing:-2.142000px;}
.ls73_c00218{letter-spacing:-2.125200px;}
.ls75_c00218{letter-spacing:-2.121000px;}
.ls86_c00218{letter-spacing:-2.110680px;}
.ls7a_c00218{letter-spacing:-1.890600px;}
.ls79_c00218{letter-spacing:-1.628400px;}
.ls78_c00218{letter-spacing:-1.580100px;}
.ls5c_c00218{letter-spacing:-1.538700px;}
.ls8c_c00218{letter-spacing:-1.435140px;}
.ls62_c00218{letter-spacing:-1.393800px;}
.ls8f_c00218{letter-spacing:-1.248900px;}
.ls6a_c00218{letter-spacing:-1.159200px;}
.ls3b_c00218{letter-spacing:-1.110900px;}
.ls3c_c00218{letter-spacing:-1.083300px;}
.ls71_c00218{letter-spacing:-1.055700px;}
.ls42_c00218{letter-spacing:-1.014300px;}
.ls6b_c00218{letter-spacing:-1.000500px;}
.ls6d_c00218{letter-spacing:-0.993600px;}
.ls5a_c00218{letter-spacing:-0.966000px;}
.ls77_c00218{letter-spacing:-0.963900px;}
.ls43_c00218{letter-spacing:-0.945300px;}
.ls70_c00218{letter-spacing:-0.938400px;}
.ls63_c00218{letter-spacing:-0.869400px;}
.ls95_c00218{letter-spacing:-0.841800px;}
.ls7d_c00218{letter-spacing:-0.834900px;}
.ls58_c00218{letter-spacing:-0.821100px;}
.ls72_c00218{letter-spacing:-0.814200px;}
.ls4d_c00218{letter-spacing:-0.800400px;}
.ls54_c00218{letter-spacing:-0.793500px;}
.ls84_c00218{letter-spacing:-0.738300px;}
.ls8d_c00218{letter-spacing:-0.710700px;}
.ls53_c00218{letter-spacing:-0.683100px;}
.ls37_c00218{letter-spacing:-0.676200px;}
.ls3e_c00218{letter-spacing:-0.634800px;}
.ls94_c00218{letter-spacing:-0.621000px;}
.ls8b_c00218{letter-spacing:-0.607200px;}
.ls4e_c00218{letter-spacing:-0.593400px;}
.ls46_c00218{letter-spacing:-0.558900px;}
.ls66_c00218{letter-spacing:-0.552000px;}
.ls8a_c00218{letter-spacing:-0.545100px;}
.ls91_c00218{letter-spacing:-0.531300px;}
.ls7c_c00218{letter-spacing:-0.524400px;}
.ls85_c00218{letter-spacing:-0.510600px;}
.ls4c_c00218{letter-spacing:-0.503700px;}
.ls51_c00218{letter-spacing:-0.469200px;}
.ls41_c00218{letter-spacing:-0.448500px;}
.ls6e_c00218{letter-spacing:-0.434700px;}
.ls60_c00218{letter-spacing:-0.393300px;}
.ls50_c00218{letter-spacing:-0.372600px;}
.ls8e_c00218{letter-spacing:-0.358800px;}
.ls69_c00218{letter-spacing:-0.345000px;}
.ls6f_c00218{letter-spacing:-0.331200px;}
.ls7f_c00218{letter-spacing:-0.324300px;}
.ls39_c00218{letter-spacing:-0.310500px;}
.ls64_c00218{letter-spacing:-0.303600px;}
.ls67_c00218{letter-spacing:-0.282900px;}
.ls5f_c00218{letter-spacing:-0.269100px;}
.ls56_c00218{letter-spacing:-0.262200px;}
.ls48_c00218{letter-spacing:-0.255300px;}
.ls38_c00218{letter-spacing:-0.241500px;}
.ls92_c00218{letter-spacing:-0.234600px;}
.ls47_c00218{letter-spacing:-0.213900px;}
.ls4f_c00218{letter-spacing:-0.200100px;}
.ls44_c00218{letter-spacing:-0.193200px;}
.ls59_c00218{letter-spacing:-0.179400px;}
.ls93_c00218{letter-spacing:-0.172500px;}
.ls5b_c00218{letter-spacing:-0.158700px;}
.ls90_c00218{letter-spacing:-0.151800px;}
.ls68_c00218{letter-spacing:-0.144900px;}
.ls5e_c00218{letter-spacing:-0.138000px;}
.ls89_c00218{letter-spacing:-0.110400px;}
.ls82_c00218{letter-spacing:-0.103500px;}
.ls3d_c00218{letter-spacing:-0.096600px;}
.ls65_c00218{letter-spacing:-0.089700px;}
.ls49_c00218{letter-spacing:-0.075900px;}
.ls81_c00218{letter-spacing:-0.069000px;}
.ls61_c00218{letter-spacing:-0.055200px;}
.ls5d_c00218{letter-spacing:-0.048300px;}
.ls57_c00218{letter-spacing:-0.041400px;}
.ls36_c00218{letter-spacing:-0.034500px;}
.ls3f_c00218{letter-spacing:-0.027600px;}
.ls7e_c00218{letter-spacing:-0.020700px;}
.ls3a_c00218{letter-spacing:-0.013800px;}
.ls40_c00218{letter-spacing:0.000000px;}
.ls87_c00218{letter-spacing:0.013800px;}
.lsa_c00218{letter-spacing:0.020700px;}
.ls11_c00218{letter-spacing:0.027600px;}
.ls2c_c00218{letter-spacing:0.034500px;}
.ls33_c00218{letter-spacing:0.048300px;}
.ls30_c00218{letter-spacing:0.055200px;}
.ls7_c00218{letter-spacing:0.069000px;}
.ls1a_c00218{letter-spacing:0.075900px;}
.ls9_c00218{letter-spacing:0.082800px;}
.ls1_c00218{letter-spacing:0.089700px;}
.lsb_c00218{letter-spacing:0.096600px;}
.ls15_c00218{letter-spacing:0.103500px;}
.ls19_c00218{letter-spacing:0.110400px;}
.ls80_c00218{letter-spacing:0.117300px;}
.ls1b_c00218{letter-spacing:0.144900px;}
.lsd_c00218{letter-spacing:0.158700px;}
.ls34_c00218{letter-spacing:0.186300px;}
.ls2f_c00218{letter-spacing:0.200100px;}
.ls2d_c00218{letter-spacing:0.207000px;}
.ls1e_c00218{letter-spacing:0.220800px;}
.ls1d_c00218{letter-spacing:0.234600px;}
.ls20_c00218{letter-spacing:0.241500px;}
.ls12_c00218{letter-spacing:0.255300px;}
.ls17_c00218{letter-spacing:0.276000px;}
.ls5_c00218{letter-spacing:0.289800px;}
.ls10_c00218{letter-spacing:0.331200px;}
.ls2_c00218{letter-spacing:0.345000px;}
.ls28_c00218{letter-spacing:0.358800px;}
.ls4_c00218{letter-spacing:0.365700px;}
.ls2a_c00218{letter-spacing:0.379500px;}
.ls2e_c00218{letter-spacing:0.386400px;}
.ls26_c00218{letter-spacing:0.393300px;}
.ls21_c00218{letter-spacing:0.455400px;}
.ls1f_c00218{letter-spacing:0.462300px;}
.ls4a_c00218{letter-spacing:0.469200px;}
.lsc_c00218{letter-spacing:0.489900px;}
.ls18_c00218{letter-spacing:0.524400px;}
.ls31_c00218{letter-spacing:0.545100px;}
.ls29_c00218{letter-spacing:0.586500px;}
.ls8_c00218{letter-spacing:0.614100px;}
.ls27_c00218{letter-spacing:0.634800px;}
.ls1c_c00218{letter-spacing:0.641700px;}
.ls13_c00218{letter-spacing:0.696900px;}
.ls16_c00218{letter-spacing:0.765900px;}
.ls14_c00218{letter-spacing:0.890100px;}
.lse_c00218{letter-spacing:1.048800px;}
.lsf_c00218{letter-spacing:1.097100px;}
.ls22_c00218{letter-spacing:1.117800px;}
.ls55_c00218{letter-spacing:1.124700px;}
.ls0_c00218{letter-spacing:1.223040px;}
.ls25_c00218{letter-spacing:1.259760px;}
.ls23_c00218{letter-spacing:1.338600px;}
.ls24_c00218{letter-spacing:1.593840px;}
.ls52_c00218{letter-spacing:1.628400px;}
.ls3_c00218{letter-spacing:1.842300px;}
.ls96_c00218{letter-spacing:1.890600px;}
.ls2b_c00218{letter-spacing:2.056200px;}
.ls32_c00218{letter-spacing:2.539200px;}
.ls6_c00218{letter-spacing:2.939400px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{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__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00218{word-spacing:0.000000px;}
.ws2_c00218{word-spacing:19.336800px;}
.ws0_c00218{word-spacing:26.239560px;}
.ws1_c00218{word-spacing:33.643320px;}
._6_c00218{margin-left:-14.558700px;}
._10_c00218{margin-left:-5.258760px;}
._11_c00218{margin-left:-3.563520px;}
._1_c00218{margin-left:-1.765920px;}
._0_c00218{width:1.242000px;}
._8_c00218{width:2.470200px;}
._7_c00218{width:4.443600px;}
._2_c00218{width:5.637300px;}
._12_c00218{width:7.555500px;}
._4_c00218{width:8.928600px;}
._e_c00218{width:10.579200px;}
._3_c00218{width:11.764500px;}
._5_c00218{width:13.323900px;}
._15_c00218{width:14.957700px;}
._13_c00218{width:18.850800px;}
._18_c00218{width:21.022500px;}
._9_c00218{width:22.093800px;}
._d_c00218{width:23.570400px;}
._14_c00218{width:24.833100px;}
._b_c00218{width:25.875000px;}
._c_c00218{width:27.041100px;}
._a_c00218{width:28.214100px;}
._16_c00218{width:29.844000px;}
._f_c00218{width:31.795200px;}
._17_c00218{width:33.803100px;}
.fc0_c00218{color:transparent;}
.fs4_c00218{font-size:54.720000px;}
.fs6_c00218{font-size:60.600000px;}
.fs9_c00218{font-size:61.200000px;}
.fsb_c00218{font-size:61.800000px;}
.fsa_c00218{font-size:66.000000px;}
.fs0_c00218{font-size:66.600000px;}
.fs2_c00218{font-size:67.200000px;}
.fs3_c00218{font-size:67.800000px;}
.fs1_c00218{font-size:69.000000px;}
.fs5_c00218{font-size:69.600000px;}
.fs7_c00218{font-size:71.400000px;}
.fs8_c00218{font-size:73.800000px;}
.y0_c00218{bottom:0.000000px;}
.y21_c00218{bottom:70.935015px;}
.y1f_c00218{bottom:178.207515px;}
.y20_c00218{bottom:178.215015px;}
.y1e_c00218{bottom:209.171265px;}
.y1d_c00218{bottom:240.480015px;}
.y1c_c00218{bottom:302.775015px;}
.y1b_c00218{bottom:333.375015px;}
.y19_c00218{bottom:397.065765px;}
.y1a_c00218{bottom:397.080015px;}
.y18_c00218{bottom:428.754015px;}
.y17_c00218{bottom:460.080015px;}
.y16_c00218{bottom:522.735015px;}
.y14_c00218{bottom:585.372015px;}
.y15_c00218{bottom:585.375015px;}
.y12_c00218{bottom:646.911765px;}
.y13_c00218{bottom:646.920015px;}
.y11_c00218{bottom:678.255015px;}
.y10_c00218{bottom:741.247515px;}
.yf_c00218{bottom:772.556265px;}
.yd_c00218{bottom:803.514015px;}
.ye_c00218{bottom:803.520015px;}
.yc_c00218{bottom:834.840015px;}
.yb_c00218{bottom:866.516265px;}
.y9_c00218{bottom:897.471765px;}
.ya_c00218{bottom:897.480015px;}
.y7_c00218{bottom:928.809015px;}
.y8_c00218{bottom:928.815015px;}
.y5_c00218{bottom:960.131265px;}
.y6_c00218{bottom:960.135015px;}
.y4_c00218{bottom:991.092765px;}
.y3_c00218{bottom:1053.365265px;}
.y2_c00218{bottom:1116.000015px;}
.y1_c00218{bottom:1191.975015px;}
.h8_c00218{height:36.443520px;}
.hd_c00218{height:60.064453px;}
.hf_c00218{height:60.653320px;}
.ha_c00218{height:63.203906px;}
.h2_c00218{height:65.364258px;}
.h4_c00218{height:67.719727px;}
.h3_c00218{height:67.725000px;}
.h5_c00218{height:67.728727px;}
.h6_c00218{height:67.734727px;}
.h9_c00218{height:68.274609px;}
.he_c00218{height:68.835938px;}
.hb_c00218{height:70.040332px;}
.h7_c00218{height:70.713281px;}
.hc_c00218{height:72.394629px;}
.h1_c00218{height:1263.000000px;}
.h0_c00218{height:1263.240015px;}
.w1_c00218{width:892.500000px;}
.w0_c00218{width:892.800015px;}
.x0_c00218{left:0.000000px;}
.x23_c00218{left:121.705515px;}
.x1c_c00218{left:122.780265px;}
.x1_c00218{left:124.125015px;}
.x22_c00218{left:175.470015px;}
.x1b_c00218{left:176.565015px;}
.xe_c00218{left:177.754515px;}
.x2_c00218{left:179.325015px;}
.xf_c00218{left:219.000015px;}
.x10_c00218{left:243.900015px;}
.x17_c00218{left:246.030015px;}
.x11_c00218{left:272.310015px;}
.x12_c00218{left:288.270015px;}
.xd_c00218{left:315.375015px;}
.x13_c00218{left:355.500015px;}
.x14_c00218{left:382.935015px;}
.x5_c00218{left:389.355015px;}
.x6_c00218{left:410.250015px;}
.x26_c00218{left:422.865015px;}
.x1f_c00218{left:432.645015px;}
.xb_c00218{left:440.820015px;}
.xc_c00218{left:457.530015px;}
.x20_c00218{left:471.780015px;}
.x1d_c00218{left:482.235015px;}
.x1e_c00218{left:503.130015px;}
.x18_c00218{left:518.190015px;}
.x19_c00218{left:534.405015px;}
.x1a_c00218{left:563.175015px;}
.x7_c00218{left:596.340015px;}
.x8_c00218{left:618.510015px;}
.x9_c00218{left:637.575015px;}
.x15_c00218{left:655.740015px;}
.x16_c00218{left:684.270015px;}
.x24_c00218{left:701.925015px;}
.xa_c00218{left:707.580015px;}
.x3_c00218{left:713.340015px;}
.x25_c00218{left:719.775015px;}
.x21_c00218{left:723.900015px;}
.x4_c00218{left:730.260015px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls76_c00218{letter-spacing:-2.221333pt;}
.ls4b_c00218{letter-spacing:-2.146667pt;}
.ls74_c00218{letter-spacing:-2.122133pt;}
.ls45_c00218{letter-spacing:-2.109333pt;}
.ls6c_c00218{letter-spacing:-2.085333pt;}
.ls35_c00218{letter-spacing:-2.072000pt;}
.ls97_c00218{letter-spacing:-2.053333pt;}
.ls83_c00218{letter-spacing:-1.987200pt;}
.ls7b_c00218{letter-spacing:-1.954880pt;}
.ls98_c00218{letter-spacing:-1.922667pt;}
.ls88_c00218{letter-spacing:-1.904000pt;}
.ls73_c00218{letter-spacing:-1.889067pt;}
.ls75_c00218{letter-spacing:-1.885333pt;}
.ls86_c00218{letter-spacing:-1.876160pt;}
.ls7a_c00218{letter-spacing:-1.680533pt;}
.ls79_c00218{letter-spacing:-1.447467pt;}
.ls78_c00218{letter-spacing:-1.404533pt;}
.ls5c_c00218{letter-spacing:-1.367733pt;}
.ls8c_c00218{letter-spacing:-1.275680pt;}
.ls62_c00218{letter-spacing:-1.238933pt;}
.ls8f_c00218{letter-spacing:-1.110133pt;}
.ls6a_c00218{letter-spacing:-1.030400pt;}
.ls3b_c00218{letter-spacing:-0.987467pt;}
.ls3c_c00218{letter-spacing:-0.962933pt;}
.ls71_c00218{letter-spacing:-0.938400pt;}
.ls42_c00218{letter-spacing:-0.901600pt;}
.ls6b_c00218{letter-spacing:-0.889333pt;}
.ls6d_c00218{letter-spacing:-0.883200pt;}
.ls5a_c00218{letter-spacing:-0.858667pt;}
.ls77_c00218{letter-spacing:-0.856800pt;}
.ls43_c00218{letter-spacing:-0.840267pt;}
.ls70_c00218{letter-spacing:-0.834133pt;}
.ls63_c00218{letter-spacing:-0.772800pt;}
.ls95_c00218{letter-spacing:-0.748267pt;}
.ls7d_c00218{letter-spacing:-0.742133pt;}
.ls58_c00218{letter-spacing:-0.729867pt;}
.ls72_c00218{letter-spacing:-0.723733pt;}
.ls4d_c00218{letter-spacing:-0.711467pt;}
.ls54_c00218{letter-spacing:-0.705333pt;}
.ls84_c00218{letter-spacing:-0.656267pt;}
.ls8d_c00218{letter-spacing:-0.631733pt;}
.ls53_c00218{letter-spacing:-0.607200pt;}
.ls37_c00218{letter-spacing:-0.601067pt;}
.ls3e_c00218{letter-spacing:-0.564267pt;}
.ls94_c00218{letter-spacing:-0.552000pt;}
.ls8b_c00218{letter-spacing:-0.539733pt;}
.ls4e_c00218{letter-spacing:-0.527467pt;}
.ls46_c00218{letter-spacing:-0.496800pt;}
.ls66_c00218{letter-spacing:-0.490667pt;}
.ls8a_c00218{letter-spacing:-0.484533pt;}
.ls91_c00218{letter-spacing:-0.472267pt;}
.ls7c_c00218{letter-spacing:-0.466133pt;}
.ls85_c00218{letter-spacing:-0.453867pt;}
.ls4c_c00218{letter-spacing:-0.447733pt;}
.ls51_c00218{letter-spacing:-0.417067pt;}
.ls41_c00218{letter-spacing:-0.398667pt;}
.ls6e_c00218{letter-spacing:-0.386400pt;}
.ls60_c00218{letter-spacing:-0.349600pt;}
.ls50_c00218{letter-spacing:-0.331200pt;}
.ls8e_c00218{letter-spacing:-0.318933pt;}
.ls69_c00218{letter-spacing:-0.306667pt;}
.ls6f_c00218{letter-spacing:-0.294400pt;}
.ls7f_c00218{letter-spacing:-0.288267pt;}
.ls39_c00218{letter-spacing:-0.276000pt;}
.ls64_c00218{letter-spacing:-0.269867pt;}
.ls67_c00218{letter-spacing:-0.251467pt;}
.ls5f_c00218{letter-spacing:-0.239200pt;}
.ls56_c00218{letter-spacing:-0.233067pt;}
.ls48_c00218{letter-spacing:-0.226933pt;}
.ls38_c00218{letter-spacing:-0.214667pt;}
.ls92_c00218{letter-spacing:-0.208533pt;}
.ls47_c00218{letter-spacing:-0.190133pt;}
.ls4f_c00218{letter-spacing:-0.177867pt;}
.ls44_c00218{letter-spacing:-0.171733pt;}
.ls59_c00218{letter-spacing:-0.159467pt;}
.ls93_c00218{letter-spacing:-0.153333pt;}
.ls5b_c00218{letter-spacing:-0.141067pt;}
.ls90_c00218{letter-spacing:-0.134933pt;}
.ls68_c00218{letter-spacing:-0.128800pt;}
.ls5e_c00218{letter-spacing:-0.122667pt;}
.ls89_c00218{letter-spacing:-0.098133pt;}
.ls82_c00218{letter-spacing:-0.092000pt;}
.ls3d_c00218{letter-spacing:-0.085867pt;}
.ls65_c00218{letter-spacing:-0.079733pt;}
.ls49_c00218{letter-spacing:-0.067467pt;}
.ls81_c00218{letter-spacing:-0.061333pt;}
.ls61_c00218{letter-spacing:-0.049067pt;}
.ls5d_c00218{letter-spacing:-0.042933pt;}
.ls57_c00218{letter-spacing:-0.036800pt;}
.ls36_c00218{letter-spacing:-0.030667pt;}
.ls3f_c00218{letter-spacing:-0.024533pt;}
.ls7e_c00218{letter-spacing:-0.018400pt;}
.ls3a_c00218{letter-spacing:-0.012267pt;}
.ls40_c00218{letter-spacing:0.000000pt;}
.ls87_c00218{letter-spacing:0.012267pt;}
.lsa_c00218{letter-spacing:0.018400pt;}
.ls11_c00218{letter-spacing:0.024533pt;}
.ls2c_c00218{letter-spacing:0.030667pt;}
.ls33_c00218{letter-spacing:0.042933pt;}
.ls30_c00218{letter-spacing:0.049067pt;}
.ls7_c00218{letter-spacing:0.061333pt;}
.ls1a_c00218{letter-spacing:0.067467pt;}
.ls9_c00218{letter-spacing:0.073600pt;}
.ls1_c00218{letter-spacing:0.079733pt;}
.lsb_c00218{letter-spacing:0.085867pt;}
.ls15_c00218{letter-spacing:0.092000pt;}
.ls19_c00218{letter-spacing:0.098133pt;}
.ls80_c00218{letter-spacing:0.104267pt;}
.ls1b_c00218{letter-spacing:0.128800pt;}
.lsd_c00218{letter-spacing:0.141067pt;}
.ls34_c00218{letter-spacing:0.165600pt;}
.ls2f_c00218{letter-spacing:0.177867pt;}
.ls2d_c00218{letter-spacing:0.184000pt;}
.ls1e_c00218{letter-spacing:0.196267pt;}
.ls1d_c00218{letter-spacing:0.208533pt;}
.ls20_c00218{letter-spacing:0.214667pt;}
.ls12_c00218{letter-spacing:0.226933pt;}
.ls17_c00218{letter-spacing:0.245333pt;}
.ls5_c00218{letter-spacing:0.257600pt;}
.ls10_c00218{letter-spacing:0.294400pt;}
.ls2_c00218{letter-spacing:0.306667pt;}
.ls28_c00218{letter-spacing:0.318933pt;}
.ls4_c00218{letter-spacing:0.325067pt;}
.ls2a_c00218{letter-spacing:0.337333pt;}
.ls2e_c00218{letter-spacing:0.343467pt;}
.ls26_c00218{letter-spacing:0.349600pt;}
.ls21_c00218{letter-spacing:0.404800pt;}
.ls1f_c00218{letter-spacing:0.410933pt;}
.ls4a_c00218{letter-spacing:0.417067pt;}
.lsc_c00218{letter-spacing:0.435467pt;}
.ls18_c00218{letter-spacing:0.466133pt;}
.ls31_c00218{letter-spacing:0.484533pt;}
.ls29_c00218{letter-spacing:0.521333pt;}
.ls8_c00218{letter-spacing:0.545867pt;}
.ls27_c00218{letter-spacing:0.564267pt;}
.ls1c_c00218{letter-spacing:0.570400pt;}
.ls13_c00218{letter-spacing:0.619467pt;}
.ls16_c00218{letter-spacing:0.680800pt;}
.ls14_c00218{letter-spacing:0.791200pt;}
.lse_c00218{letter-spacing:0.932267pt;}
.lsf_c00218{letter-spacing:0.975200pt;}
.ls22_c00218{letter-spacing:0.993600pt;}
.ls55_c00218{letter-spacing:0.999733pt;}
.ls0_c00218{letter-spacing:1.087147pt;}
.ls25_c00218{letter-spacing:1.119787pt;}
.ls23_c00218{letter-spacing:1.189867pt;}
.ls24_c00218{letter-spacing:1.416747pt;}
.ls52_c00218{letter-spacing:1.447467pt;}
.ls3_c00218{letter-spacing:1.637600pt;}
.ls96_c00218{letter-spacing:1.680533pt;}
.ls2b_c00218{letter-spacing:1.827733pt;}
.ls32_c00218{letter-spacing:2.257067pt;}
.ls6_c00218{letter-spacing:2.612800pt;}
.ws3_c00218{word-spacing:0.000000pt;}
.ws2_c00218{word-spacing:17.188267pt;}
.ws0_c00218{word-spacing:23.324053pt;}
.ws1_c00218{word-spacing:29.905173pt;}
._6_c00218{margin-left:-12.941067pt;}
._10_c00218{margin-left:-4.674453pt;}
._11_c00218{margin-left:-3.167573pt;}
._1_c00218{margin-left:-1.569707pt;}
._0_c00218{width:1.104000pt;}
._8_c00218{width:2.195733pt;}
._7_c00218{width:3.949867pt;}
._2_c00218{width:5.010933pt;}
._12_c00218{width:6.716000pt;}
._4_c00218{width:7.936533pt;}
._e_c00218{width:9.403733pt;}
._3_c00218{width:10.457333pt;}
._5_c00218{width:11.843467pt;}
._15_c00218{width:13.295733pt;}
._13_c00218{width:16.756267pt;}
._18_c00218{width:18.686667pt;}
._9_c00218{width:19.638933pt;}
._d_c00218{width:20.951467pt;}
._14_c00218{width:22.073867pt;}
._b_c00218{width:23.000000pt;}
._c_c00218{width:24.036533pt;}
._a_c00218{width:25.079200pt;}
._16_c00218{width:26.528000pt;}
._f_c00218{width:28.262400pt;}
._17_c00218{width:30.047200pt;}
.fs4_c00218{font-size:48.640000pt;}
.fs6_c00218{font-size:53.866667pt;}
.fs9_c00218{font-size:54.400000pt;}
.fsb_c00218{font-size:54.933333pt;}
.fsa_c00218{font-size:58.666667pt;}
.fs0_c00218{font-size:59.200000pt;}
.fs2_c00218{font-size:59.733333pt;}
.fs3_c00218{font-size:60.266667pt;}
.fs1_c00218{font-size:61.333333pt;}
.fs5_c00218{font-size:61.866667pt;}
.fs7_c00218{font-size:63.466667pt;}
.fs8_c00218{font-size:65.600000pt;}
.y0_c00218{bottom:0.000000pt;}
.y21_c00218{bottom:63.053347pt;}
.y1f_c00218{bottom:158.406680pt;}
.y20_c00218{bottom:158.413347pt;}
.y1e_c00218{bottom:185.930013pt;}
.y1d_c00218{bottom:213.760013pt;}
.y1c_c00218{bottom:269.133347pt;}
.y1b_c00218{bottom:296.333347pt;}
.y19_c00218{bottom:352.947347pt;}
.y1a_c00218{bottom:352.960013pt;}
.y18_c00218{bottom:381.114680pt;}
.y17_c00218{bottom:408.960013pt;}
.y16_c00218{bottom:464.653347pt;}
.y14_c00218{bottom:520.330680pt;}
.y15_c00218{bottom:520.333347pt;}
.y12_c00218{bottom:575.032680pt;}
.y13_c00218{bottom:575.040013pt;}
.y11_c00218{bottom:602.893347pt;}
.y10_c00218{bottom:658.886680pt;}
.yf_c00218{bottom:686.716680pt;}
.yd_c00218{bottom:714.234680pt;}
.ye_c00218{bottom:714.240013pt;}
.yc_c00218{bottom:742.080013pt;}
.yb_c00218{bottom:770.236680pt;}
.y9_c00218{bottom:797.752680pt;}
.ya_c00218{bottom:797.760013pt;}
.y7_c00218{bottom:825.608013pt;}
.y8_c00218{bottom:825.613347pt;}
.y5_c00218{bottom:853.450013pt;}
.y6_c00218{bottom:853.453347pt;}
.y4_c00218{bottom:880.971347pt;}
.y3_c00218{bottom:936.324680pt;}
.y2_c00218{bottom:992.000013pt;}
.y1_c00218{bottom:1059.533347pt;}
.h8_c00218{height:32.394240pt;}
.hd_c00218{height:53.390625pt;}
.hf_c00218{height:53.914062pt;}
.ha_c00218{height:56.181250pt;}
.h2_c00218{height:58.101562pt;}
.h4_c00218{height:60.195312pt;}
.h3_c00218{height:60.200000pt;}
.h5_c00218{height:60.203313pt;}
.h6_c00218{height:60.208646pt;}
.h9_c00218{height:60.688542pt;}
.he_c00218{height:61.187500pt;}
.hb_c00218{height:62.258073pt;}
.h7_c00218{height:62.856250pt;}
.hc_c00218{height:64.350781pt;}
.h1_c00218{height:1122.666667pt;}
.h0_c00218{height:1122.880013pt;}
.w1_c00218{width:793.333333pt;}
.w0_c00218{width:793.600013pt;}
.x0_c00218{left:0.000000pt;}
.x23_c00218{left:108.182680pt;}
.x1c_c00218{left:109.138013pt;}
.x1_c00218{left:110.333347pt;}
.x22_c00218{left:155.973347pt;}
.x1b_c00218{left:156.946680pt;}
.xe_c00218{left:158.004013pt;}
.x2_c00218{left:159.400013pt;}
.xf_c00218{left:194.666680pt;}
.x10_c00218{left:216.800013pt;}
.x17_c00218{left:218.693347pt;}
.x11_c00218{left:242.053347pt;}
.x12_c00218{left:256.240013pt;}
.xd_c00218{left:280.333347pt;}
.x13_c00218{left:316.000013pt;}
.x14_c00218{left:340.386680pt;}
.x5_c00218{left:346.093347pt;}
.x6_c00218{left:364.666680pt;}
.x26_c00218{left:375.880013pt;}
.x1f_c00218{left:384.573347pt;}
.xb_c00218{left:391.840013pt;}
.xc_c00218{left:406.693347pt;}
.x20_c00218{left:419.360013pt;}
.x1d_c00218{left:428.653347pt;}
.x1e_c00218{left:447.226680pt;}
.x18_c00218{left:460.613347pt;}
.x19_c00218{left:475.026680pt;}
.x1a_c00218{left:500.600013pt;}
.x7_c00218{left:530.080013pt;}
.x8_c00218{left:549.786680pt;}
.x9_c00218{left:566.733347pt;}
.x15_c00218{left:582.880013pt;}
.x16_c00218{left:608.240013pt;}
.x24_c00218{left:623.933347pt;}
.xa_c00218{left:628.960013pt;}
.x3_c00218{left:634.080013pt;}
.x25_c00218{left:639.800013pt;}
.x21_c00218{left:643.466680pt;}
.x4_c00218{left:649.120013pt;}
}





/* 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_c00219 {
    display:none;
  }
  .loading-indicator_c00219.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00219 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_c00219 { 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_c00219" -> "#page-container .classname_c00219")
 */
.pf_c00219 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00219 { /* 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_c00219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00219 { /* 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_c00219 { /* 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_c00219 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00219 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00219 {overflow:visible;}
  }
}
.c_c00219 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00219 { /* 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_c00219:after { /* webkit #35443 */
  content: '';
}
.t_c00219:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00219 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 */
}
.__c00219 { /* 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_c00219 { /* info for Javascript */
  display:none;
}
.l_c00219 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00219 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00219 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00219: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_c00219 {
    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_c00219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00219.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_c00219 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00219{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00219;src:url('chunks/assets/font_b22745126ba12420aed3af36.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.284668;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_c00219;src:url('chunks/assets/font_4e46f484b1dcbe8743a62eab.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.284180;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_c00219;src:url('chunks/assets/font_e5cc58055fcca96b297ee0ca.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;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:ff4_c00219;src:url('chunks/assets/font_33ffcd529ff42710ce336677.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:0.666000;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;}
.md_c00219{transform:matrix(0.137066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137066,0.000000,0.000000,0.250000,0,0);}
.m6_c00219{transform:matrix(0.235802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235802,0.000000,0.000000,0.250000,0,0);}
.m7_c00219{transform:matrix(0.238574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238574,0.000000,0.000000,0.250000,0,0);}
.m2_c00219{transform:matrix(0.239378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239378,0.000000,0.000000,0.250000,0,0);}
.m0_c00219{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.ma_c00219{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m1_c00219{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);}
.m10_c00219{transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);}
.mc_c00219{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.m3_c00219{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m5_c00219{transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);}
.m4_c00219{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.me_c00219{transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);}
.mf_c00219{transform:matrix(0.254623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254623,0.000000,0.000000,0.250000,0,0);}
.m11_c00219{transform:matrix(0.256764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256764,0.000000,0.000000,0.250000,0,0);}
.m9_c00219{transform:matrix(0.257807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257807,0.000000,0.000000,0.250000,0,0);}
.m8_c00219{transform:matrix(0.260473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260473,0.000000,0.000000,0.250000,0,0);}
.mb_c00219{transform:matrix(0.262643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262643,0.000000,0.000000,0.250000,0,0);}
.m12_c00219{transform:matrix(0.424943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424943,0.000000,0.000000,0.250000,0,0);}
.m13_c00219{transform:matrix(0.639525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639525,0.000000,0.000000,0.250000,0,0);}
.v2_c00219{vertical-align:-27.360000px;}
.v0_c00219{vertical-align:0.000000px;}
.v1_c00219{vertical-align:27.360000px;}
.ls5b_c00219{letter-spacing:-2.415000px;}
.ls59_c00219{letter-spacing:-2.352000px;}
.ls66_c00219{letter-spacing:-2.310000px;}
.ls69_c00219{letter-spacing:-2.142000px;}
.ls63_c00219{letter-spacing:-1.062600px;}
.ls64_c00219{letter-spacing:-0.732600px;}
.ls61_c00219{letter-spacing:-0.666600px;}
.ls67_c00219{letter-spacing:-0.580800px;}
.ls7b_c00219{letter-spacing:-0.529620px;}
.ls79_c00219{letter-spacing:-0.405972px;}
.ls78_c00219{letter-spacing:-0.171600px;}
.ls68_c00219{letter-spacing:-0.105600px;}
.ls62_c00219{letter-spacing:-0.013200px;}
.ls5e_c00219{letter-spacing:0.000000px;}
.ls6f_c00219{letter-spacing:0.006600px;}
.ls25_c00219{letter-spacing:0.158400px;}
.ls2a_c00219{letter-spacing:0.303600px;}
.ls74_c00219{letter-spacing:0.330000px;}
.ls31_c00219{letter-spacing:0.409200px;}
.ls53_c00219{letter-spacing:0.447480px;}
.ls29_c00219{letter-spacing:0.508200px;}
.ls2b_c00219{letter-spacing:0.562740px;}
.ls43_c00219{letter-spacing:0.576300px;}
.ls52_c00219{letter-spacing:0.583080px;}
.ls1a_c00219{letter-spacing:0.603420px;}
.ls23_c00219{letter-spacing:0.706200px;}
.ls2c_c00219{letter-spacing:0.820380px;}
.ls6_c00219{letter-spacing:0.831600px;}
.ls0_c00219{letter-spacing:0.840720px;}
.ls24_c00219{letter-spacing:0.917400px;}
.ls19_c00219{letter-spacing:0.942420px;}
.ls4c_c00219{letter-spacing:0.949200px;}
.ls3d_c00219{letter-spacing:0.950400px;}
.ls6e_c00219{letter-spacing:0.983400px;}
.ls3b_c00219{letter-spacing:1.003200px;}
.ls32_c00219{letter-spacing:1.017000px;}
.ls7a_c00219{letter-spacing:1.020030px;}
.ls60_c00219{letter-spacing:1.122000px;}
.ls2e_c00219{letter-spacing:1.135200px;}
.ls6b_c00219{letter-spacing:1.168200px;}
.ls40_c00219{letter-spacing:1.181400px;}
.ls14_c00219{letter-spacing:1.201200px;}
.ls65_c00219{letter-spacing:1.220400px;}
.ls6a_c00219{letter-spacing:1.221000px;}
.ls70_c00219{letter-spacing:1.234200px;}
.ls75_c00219{letter-spacing:1.280400px;}
.ls73_c00219{letter-spacing:1.306800px;}
.ls4e_c00219{letter-spacing:1.326600px;}
.ls54_c00219{letter-spacing:1.333200px;}
.ls1d_c00219{letter-spacing:1.399200px;}
.ls5c_c00219{letter-spacing:1.405800px;}
.ls4d_c00219{letter-spacing:1.412400px;}
.ls48_c00219{letter-spacing:1.419000px;}
.ls9_c00219{letter-spacing:1.458600px;}
.ls17_c00219{letter-spacing:1.465200px;}
.ls36_c00219{letter-spacing:1.471260px;}
.ls56_c00219{letter-spacing:1.471800px;}
.ls27_c00219{letter-spacing:1.491600px;}
.lsb_c00219{letter-spacing:1.498200px;}
.ls6c_c00219{letter-spacing:1.518000px;}
.ls47_c00219{letter-spacing:1.524600px;}
.lsf_c00219{letter-spacing:1.564200px;}
.ls42_c00219{letter-spacing:1.590600px;}
.ls4f_c00219{letter-spacing:1.610400px;}
.ls45_c00219{letter-spacing:1.623600px;}
.ls4_c00219{letter-spacing:1.650000px;}
.ls13_c00219{letter-spacing:1.663200px;}
.lse_c00219{letter-spacing:1.669800px;}
.ls30_c00219{letter-spacing:1.676400px;}
.lsd_c00219{letter-spacing:1.683000px;}
.ls2_c00219{letter-spacing:1.716000px;}
.ls10_c00219{letter-spacing:1.735800px;}
.ls11_c00219{letter-spacing:1.742400px;}
.ls3c_c00219{letter-spacing:1.768800px;}
.ls5f_c00219{letter-spacing:1.775400px;}
.ls51_c00219{letter-spacing:1.788600px;}
.ls20_c00219{letter-spacing:1.795200px;}
.lsc_c00219{letter-spacing:1.808400px;}
.ls5_c00219{letter-spacing:1.815000px;}
.ls28_c00219{letter-spacing:1.834800px;}
.ls21_c00219{letter-spacing:1.874400px;}
.ls50_c00219{letter-spacing:1.881000px;}
.ls3_c00219{letter-spacing:1.887600px;}
.ls41_c00219{letter-spacing:1.894200px;}
.ls55_c00219{letter-spacing:1.920600px;}
.ls2d_c00219{letter-spacing:1.927200px;}
.ls58_c00219{letter-spacing:1.933800px;}
.ls12_c00219{letter-spacing:1.947000px;}
.ls8_c00219{letter-spacing:1.973400px;}
.ls44_c00219{letter-spacing:1.986600px;}
.ls1e_c00219{letter-spacing:2.006880px;}
.ls1_c00219{letter-spacing:2.013000px;}
.ls18_c00219{letter-spacing:2.019600px;}
.ls22_c00219{letter-spacing:2.026200px;}
.ls46_c00219{letter-spacing:2.079000px;}
.ls1c_c00219{letter-spacing:2.085600px;}
.ls2f_c00219{letter-spacing:2.151600px;}
.ls7_c00219{letter-spacing:2.171400px;}
.ls71_c00219{letter-spacing:2.204400px;}
.ls4b_c00219{letter-spacing:2.237400px;}
.ls49_c00219{letter-spacing:2.257200px;}
.ls15_c00219{letter-spacing:2.343000px;}
.ls76_c00219{letter-spacing:2.362800px;}
.ls3a_c00219{letter-spacing:2.382600px;}
.ls38_c00219{letter-spacing:2.395800px;}
.ls1f_c00219{letter-spacing:2.420460px;}
.ls4a_c00219{letter-spacing:2.435400px;}
.ls37_c00219{letter-spacing:2.448600px;}
.ls26_c00219{letter-spacing:2.574000px;}
.ls72_c00219{letter-spacing:2.600400px;}
.ls77_c00219{letter-spacing:2.653200px;}
.ls3f_c00219{letter-spacing:2.692800px;}
.ls5a_c00219{letter-spacing:2.699400px;}
.ls3e_c00219{letter-spacing:2.785200px;}
.ls35_c00219{letter-spacing:2.838000px;}
.ls39_c00219{letter-spacing:2.917200px;}
.ls1b_c00219{letter-spacing:2.937000px;}
.lsa_c00219{letter-spacing:2.963400px;}
.ls16_c00219{letter-spacing:3.154800px;}
.ls57_c00219{letter-spacing:3.181200px;}
.ls33_c00219{letter-spacing:3.187800px;}
.ls34_c00219{letter-spacing:3.207600px;}
.ls6d_c00219{letter-spacing:3.260400px;}
.ls5d_c00219{letter-spacing:3.300000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{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__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00219{word-spacing:-18.737400px;}
.ws7_c00219{word-spacing:0.000000px;}
.ws3_c00219{word-spacing:1.822800px;}
.ws5_c00219{word-spacing:8.527800px;}
.ws2_c00219{word-spacing:8.938200px;}
.ws6_c00219{word-spacing:15.127920px;}
.ws0_c00219{word-spacing:17.355000px;}
.ws1_c00219{word-spacing:17.738580px;}
._12_c00219{margin-left:-17.619000px;}
._c_c00219{margin-left:-6.230400px;}
._10_c00219{margin-left:-5.121600px;}
._7_c00219{margin-left:-3.966600px;}
._6_c00219{margin-left:-2.442000px;}
._e_c00219{margin-left:-1.426440px;}
._a_c00219{width:1.947000px;}
._9_c00219{width:4.078800px;}
._8_c00219{width:5.900400px;}
._f_c00219{width:7.476600px;}
._d_c00219{width:8.547000px;}
._11_c00219{width:10.098000px;}
._5_c00219{width:11.332200px;}
._b_c00219{width:12.414600px;}
._0_c00219{width:13.662000px;}
._1_c00219{width:15.378000px;}
._2_c00219{width:16.724400px;}
._4_c00219{width:19.060800px;}
._3_c00219{width:21.483000px;}
.fc0_c00219{color:transparent;}
.fs8_c00219{font-size:20.400600px;}
.fs6_c00219{font-size:32.400600px;}
.fs7_c00219{font-size:53.280000px;}
.fs9_c00219{font-size:58.200000px;}
.fs5_c00219{font-size:61.200000px;}
.fs2_c00219{font-size:66.000000px;}
.fs0_c00219{font-size:67.200000px;}
.fs1_c00219{font-size:67.800000px;}
.fs3_c00219{font-size:69.000000px;}
.fs4_c00219{font-size:73.800000px;}
.y0_c00219{bottom:0.000000px;}
.y19_c00219{bottom:68.055006px;}
.y18_c00219{bottom:204.495006px;}
.y17_c00219{bottom:206.280006px;}
.y16_c00219{bottom:237.255006px;}
.y15_c00219{bottom:300.619506px;}
.y13_c00219{bottom:331.915506px;}
.y14_c00219{bottom:331.920006px;}
.y12_c00219{bottom:363.975006px;}
.y11_c00219{bottom:426.615006px;}
.y10_c00219{bottom:457.560006px;}
.yf_c00219{bottom:583.221006px;}
.ye_c00219{bottom:614.175006px;}
.yd_c00219{bottom:645.480006px;}
.yc_c00219{bottom:708.135006px;}
.yb_c00219{bottom:739.455006px;}
.ya_c00219{bottom:802.464006px;}
.y9_c00219{bottom:865.461006px;}
.y8_c00219{bottom:896.415006px;}
.y7_c00219{bottom:959.415006px;}
.y6_c00219{bottom:1022.055006px;}
.y5_c00219{bottom:1053.000006px;}
.y4_c00219{bottom:1053.003006px;}
.y3_c00219{bottom:1084.320006px;}
.y2_c00219{bottom:1116.000006px;}
.y1_c00219{bottom:1193.415006px;}
.h9_c00219{height:20.022073px;}
.h8_c00219{height:35.484480px;}
.ha_c00219{height:57.120117px;}
.h7_c00219{height:63.829687px;}
.h5_c00219{height:64.775391px;}
.h2_c00219{height:65.953125px;}
.h3_c00219{height:66.508887px;}
.h4_c00219{height:71.964844px;}
.h6_c00219{height:72.430664px;}
.h1_c00219{height:1263.000000px;}
.h0_c00219{height:1263.240006px;}
.w1_c00219{width:892.500000px;}
.w0_c00219{width:892.799998px;}
.x0_c00219{left:0.000000px;}
.x1a_c00219{left:116.969999px;}
.x11_c00219{left:118.034999px;}
.x4_c00219{left:122.009999px;}
.x1_c00219{left:124.484999px;}
.x1b_c00219{left:143.819998px;}
.x30_c00219{left:150.374998px;}
.x1c_c00219{left:165.074998px;}
.x1f_c00219{left:170.804998px;}
.x15_c00219{left:171.854998px;}
.xe_c00219{left:173.549998px;}
.xa_c00219{left:174.764998px;}
.x2_c00219{left:176.924998px;}
.x31_c00219{left:184.589999px;}
.x32_c00219{left:210.449999px;}
.xb_c00219{left:241.589999px;}
.xc_c00219{left:315.329998px;}
.xd_c00219{left:346.544999px;}
.x20_c00219{left:365.219998px;}
.x21_c00219{left:384.404998px;}
.x2a_c00219{left:402.029999px;}
.x7_c00219{left:415.619999px;}
.x33_c00219{left:420.689999px;}
.x2b_c00219{left:429.299998px;}
.x8_c00219{left:438.089998px;}
.x1d_c00219{left:442.979999px;}
.xf_c00219{left:451.589998px;}
.x1e_c00219{left:463.664999px;}
.x16_c00219{left:464.729999px;}
.x10_c00219{left:473.909999px;}
.x24_c00219{left:485.324998px;}
.x22_c00219{left:494.279999px;}
.x5_c00219{left:507.884999px;}
.x17_c00219{left:528.659999px;}
.x18_c00219{left:549.944999px;}
.x23_c00219{left:552.794999px;}
.x6_c00219{left:559.784999px;}
.x2c_c00219{left:573.869999px;}
.x2d_c00219{left:605.189999px;}
.x25_c00219{left:625.319999px;}
.x12_c00219{left:646.739998px;}
.x26_c00219{left:655.679999px;}
.x2e_c00219{left:667.409999px;}
.x13_c00219{left:668.699998px;}
.x14_c00219{left:686.714998px;}
.x27_c00219{left:687.929999px;}
.x2f_c00219{left:698.789999px;}
.x28_c00219{left:716.579998px;}
.x19_c00219{left:725.594998px;}
.x9_c00219{left:728.249998px;}
.x29_c00219{left:737.819999px;}
.x3_c00219{left:743.219998px;}
@media print{
.v2_c00219{vertical-align:-24.320000pt;}
.v0_c00219{vertical-align:0.000000pt;}
.v1_c00219{vertical-align:24.320000pt;}
.ls5b_c00219{letter-spacing:-2.146667pt;}
.ls59_c00219{letter-spacing:-2.090667pt;}
.ls66_c00219{letter-spacing:-2.053333pt;}
.ls69_c00219{letter-spacing:-1.904000pt;}
.ls63_c00219{letter-spacing:-0.944533pt;}
.ls64_c00219{letter-spacing:-0.651200pt;}
.ls61_c00219{letter-spacing:-0.592533pt;}
.ls67_c00219{letter-spacing:-0.516267pt;}
.ls7b_c00219{letter-spacing:-0.470773pt;}
.ls79_c00219{letter-spacing:-0.360864pt;}
.ls78_c00219{letter-spacing:-0.152533pt;}
.ls68_c00219{letter-spacing:-0.093867pt;}
.ls62_c00219{letter-spacing:-0.011733pt;}
.ls5e_c00219{letter-spacing:0.000000pt;}
.ls6f_c00219{letter-spacing:0.005867pt;}
.ls25_c00219{letter-spacing:0.140800pt;}
.ls2a_c00219{letter-spacing:0.269867pt;}
.ls74_c00219{letter-spacing:0.293333pt;}
.ls31_c00219{letter-spacing:0.363733pt;}
.ls53_c00219{letter-spacing:0.397760pt;}
.ls29_c00219{letter-spacing:0.451733pt;}
.ls2b_c00219{letter-spacing:0.500213pt;}
.ls43_c00219{letter-spacing:0.512267pt;}
.ls52_c00219{letter-spacing:0.518293pt;}
.ls1a_c00219{letter-spacing:0.536373pt;}
.ls23_c00219{letter-spacing:0.627733pt;}
.ls2c_c00219{letter-spacing:0.729227pt;}
.ls6_c00219{letter-spacing:0.739200pt;}
.ls0_c00219{letter-spacing:0.747307pt;}
.ls24_c00219{letter-spacing:0.815467pt;}
.ls19_c00219{letter-spacing:0.837707pt;}
.ls4c_c00219{letter-spacing:0.843733pt;}
.ls3d_c00219{letter-spacing:0.844800pt;}
.ls6e_c00219{letter-spacing:0.874133pt;}
.ls3b_c00219{letter-spacing:0.891733pt;}
.ls32_c00219{letter-spacing:0.904000pt;}
.ls7a_c00219{letter-spacing:0.906693pt;}
.ls60_c00219{letter-spacing:0.997333pt;}
.ls2e_c00219{letter-spacing:1.009067pt;}
.ls6b_c00219{letter-spacing:1.038400pt;}
.ls40_c00219{letter-spacing:1.050133pt;}
.ls14_c00219{letter-spacing:1.067733pt;}
.ls65_c00219{letter-spacing:1.084800pt;}
.ls6a_c00219{letter-spacing:1.085333pt;}
.ls70_c00219{letter-spacing:1.097067pt;}
.ls75_c00219{letter-spacing:1.138133pt;}
.ls73_c00219{letter-spacing:1.161600pt;}
.ls4e_c00219{letter-spacing:1.179200pt;}
.ls54_c00219{letter-spacing:1.185067pt;}
.ls1d_c00219{letter-spacing:1.243733pt;}
.ls5c_c00219{letter-spacing:1.249600pt;}
.ls4d_c00219{letter-spacing:1.255467pt;}
.ls48_c00219{letter-spacing:1.261333pt;}
.ls9_c00219{letter-spacing:1.296533pt;}
.ls17_c00219{letter-spacing:1.302400pt;}
.ls36_c00219{letter-spacing:1.307787pt;}
.ls56_c00219{letter-spacing:1.308267pt;}
.ls27_c00219{letter-spacing:1.325867pt;}
.lsb_c00219{letter-spacing:1.331733pt;}
.ls6c_c00219{letter-spacing:1.349333pt;}
.ls47_c00219{letter-spacing:1.355200pt;}
.lsf_c00219{letter-spacing:1.390400pt;}
.ls42_c00219{letter-spacing:1.413867pt;}
.ls4f_c00219{letter-spacing:1.431467pt;}
.ls45_c00219{letter-spacing:1.443200pt;}
.ls4_c00219{letter-spacing:1.466667pt;}
.ls13_c00219{letter-spacing:1.478400pt;}
.lse_c00219{letter-spacing:1.484267pt;}
.ls30_c00219{letter-spacing:1.490133pt;}
.lsd_c00219{letter-spacing:1.496000pt;}
.ls2_c00219{letter-spacing:1.525333pt;}
.ls10_c00219{letter-spacing:1.542933pt;}
.ls11_c00219{letter-spacing:1.548800pt;}
.ls3c_c00219{letter-spacing:1.572267pt;}
.ls5f_c00219{letter-spacing:1.578133pt;}
.ls51_c00219{letter-spacing:1.589867pt;}
.ls20_c00219{letter-spacing:1.595733pt;}
.lsc_c00219{letter-spacing:1.607467pt;}
.ls5_c00219{letter-spacing:1.613333pt;}
.ls28_c00219{letter-spacing:1.630933pt;}
.ls21_c00219{letter-spacing:1.666133pt;}
.ls50_c00219{letter-spacing:1.672000pt;}
.ls3_c00219{letter-spacing:1.677867pt;}
.ls41_c00219{letter-spacing:1.683733pt;}
.ls55_c00219{letter-spacing:1.707200pt;}
.ls2d_c00219{letter-spacing:1.713067pt;}
.ls58_c00219{letter-spacing:1.718933pt;}
.ls12_c00219{letter-spacing:1.730667pt;}
.ls8_c00219{letter-spacing:1.754133pt;}
.ls44_c00219{letter-spacing:1.765867pt;}
.ls1e_c00219{letter-spacing:1.783893pt;}
.ls1_c00219{letter-spacing:1.789333pt;}
.ls18_c00219{letter-spacing:1.795200pt;}
.ls22_c00219{letter-spacing:1.801067pt;}
.ls46_c00219{letter-spacing:1.848000pt;}
.ls1c_c00219{letter-spacing:1.853867pt;}
.ls2f_c00219{letter-spacing:1.912533pt;}
.ls7_c00219{letter-spacing:1.930133pt;}
.ls71_c00219{letter-spacing:1.959467pt;}
.ls4b_c00219{letter-spacing:1.988800pt;}
.ls49_c00219{letter-spacing:2.006400pt;}
.ls15_c00219{letter-spacing:2.082667pt;}
.ls76_c00219{letter-spacing:2.100267pt;}
.ls3a_c00219{letter-spacing:2.117867pt;}
.ls38_c00219{letter-spacing:2.129600pt;}
.ls1f_c00219{letter-spacing:2.151520pt;}
.ls4a_c00219{letter-spacing:2.164800pt;}
.ls37_c00219{letter-spacing:2.176533pt;}
.ls26_c00219{letter-spacing:2.288000pt;}
.ls72_c00219{letter-spacing:2.311467pt;}
.ls77_c00219{letter-spacing:2.358400pt;}
.ls3f_c00219{letter-spacing:2.393600pt;}
.ls5a_c00219{letter-spacing:2.399467pt;}
.ls3e_c00219{letter-spacing:2.475733pt;}
.ls35_c00219{letter-spacing:2.522667pt;}
.ls39_c00219{letter-spacing:2.593067pt;}
.ls1b_c00219{letter-spacing:2.610667pt;}
.lsa_c00219{letter-spacing:2.634133pt;}
.ls16_c00219{letter-spacing:2.804267pt;}
.ls57_c00219{letter-spacing:2.827733pt;}
.ls33_c00219{letter-spacing:2.833600pt;}
.ls34_c00219{letter-spacing:2.851200pt;}
.ls6d_c00219{letter-spacing:2.898133pt;}
.ls5d_c00219{letter-spacing:2.933333pt;}
.ws4_c00219{word-spacing:-16.655467pt;}
.ws7_c00219{word-spacing:0.000000pt;}
.ws3_c00219{word-spacing:1.620267pt;}
.ws5_c00219{word-spacing:7.580267pt;}
.ws2_c00219{word-spacing:7.945067pt;}
.ws6_c00219{word-spacing:13.447040pt;}
.ws0_c00219{word-spacing:15.426667pt;}
.ws1_c00219{word-spacing:15.767627pt;}
._12_c00219{margin-left:-15.661333pt;}
._c_c00219{margin-left:-5.538133pt;}
._10_c00219{margin-left:-4.552533pt;}
._7_c00219{margin-left:-3.525867pt;}
._6_c00219{margin-left:-2.170667pt;}
._e_c00219{margin-left:-1.267947pt;}
._a_c00219{width:1.730667pt;}
._9_c00219{width:3.625600pt;}
._8_c00219{width:5.244800pt;}
._f_c00219{width:6.645867pt;}
._d_c00219{width:7.597333pt;}
._11_c00219{width:8.976000pt;}
._5_c00219{width:10.073067pt;}
._b_c00219{width:11.035200pt;}
._0_c00219{width:12.144000pt;}
._1_c00219{width:13.669333pt;}
._2_c00219{width:14.866133pt;}
._4_c00219{width:16.942933pt;}
._3_c00219{width:19.096000pt;}
.fs8_c00219{font-size:18.133867pt;}
.fs6_c00219{font-size:28.800533pt;}
.fs7_c00219{font-size:47.360000pt;}
.fs9_c00219{font-size:51.733333pt;}
.fs5_c00219{font-size:54.400000pt;}
.fs2_c00219{font-size:58.666667pt;}
.fs0_c00219{font-size:59.733333pt;}
.fs1_c00219{font-size:60.266667pt;}
.fs3_c00219{font-size:61.333333pt;}
.fs4_c00219{font-size:65.600000pt;}
.y0_c00219{bottom:0.000000pt;}
.y19_c00219{bottom:60.493339pt;}
.y18_c00219{bottom:181.773339pt;}
.y17_c00219{bottom:183.360005pt;}
.y16_c00219{bottom:210.893339pt;}
.y15_c00219{bottom:267.217339pt;}
.y13_c00219{bottom:295.036005pt;}
.y14_c00219{bottom:295.040005pt;}
.y12_c00219{bottom:323.533339pt;}
.y11_c00219{bottom:379.213339pt;}
.y10_c00219{bottom:406.720005pt;}
.yf_c00219{bottom:518.418672pt;}
.ye_c00219{bottom:545.933339pt;}
.yd_c00219{bottom:573.760005pt;}
.yc_c00219{bottom:629.453339pt;}
.yb_c00219{bottom:657.293339pt;}
.ya_c00219{bottom:713.301339pt;}
.y9_c00219{bottom:769.298672pt;}
.y8_c00219{bottom:796.813339pt;}
.y7_c00219{bottom:852.813339pt;}
.y6_c00219{bottom:908.493339pt;}
.y5_c00219{bottom:936.000005pt;}
.y4_c00219{bottom:936.002672pt;}
.y3_c00219{bottom:963.840005pt;}
.y2_c00219{bottom:992.000005pt;}
.y1_c00219{bottom:1060.813339pt;}
.h9_c00219{height:17.797398pt;}
.h8_c00219{height:31.541760pt;}
.ha_c00219{height:50.773437pt;}
.h7_c00219{height:56.737500pt;}
.h5_c00219{height:57.578125pt;}
.h2_c00219{height:58.625000pt;}
.h3_c00219{height:59.119010pt;}
.h4_c00219{height:63.968750pt;}
.h6_c00219{height:64.382813pt;}
.h1_c00219{height:1122.666667pt;}
.h0_c00219{height:1122.880005pt;}
.w1_c00219{width:793.333333pt;}
.w0_c00219{width:793.599999pt;}
.x0_c00219{left:0.000000pt;}
.x1a_c00219{left:103.973332pt;}
.x11_c00219{left:104.919999pt;}
.x4_c00219{left:108.453332pt;}
.x1_c00219{left:110.653332pt;}
.x1b_c00219{left:127.839999pt;}
.x30_c00219{left:133.666665pt;}
.x1c_c00219{left:146.733332pt;}
.x1f_c00219{left:151.826665pt;}
.x15_c00219{left:152.759999pt;}
.xe_c00219{left:154.266665pt;}
.xa_c00219{left:155.346665pt;}
.x2_c00219{left:157.266665pt;}
.x31_c00219{left:164.079999pt;}
.x32_c00219{left:187.066665pt;}
.xb_c00219{left:214.746665pt;}
.xc_c00219{left:280.293332pt;}
.xd_c00219{left:308.039999pt;}
.x20_c00219{left:324.639999pt;}
.x21_c00219{left:341.693332pt;}
.x2a_c00219{left:357.359999pt;}
.x7_c00219{left:369.439999pt;}
.x33_c00219{left:373.946665pt;}
.x2b_c00219{left:381.599999pt;}
.x8_c00219{left:389.413332pt;}
.x1d_c00219{left:393.759999pt;}
.xf_c00219{left:401.413332pt;}
.x1e_c00219{left:412.146665pt;}
.x16_c00219{left:413.093332pt;}
.x10_c00219{left:421.253332pt;}
.x24_c00219{left:431.399999pt;}
.x22_c00219{left:439.359999pt;}
.x5_c00219{left:451.453332pt;}
.x17_c00219{left:469.919999pt;}
.x18_c00219{left:488.839999pt;}
.x23_c00219{left:491.373332pt;}
.x6_c00219{left:497.586665pt;}
.x2c_c00219{left:510.106665pt;}
.x2d_c00219{left:537.946665pt;}
.x25_c00219{left:555.839999pt;}
.x12_c00219{left:574.879999pt;}
.x26_c00219{left:582.826665pt;}
.x2e_c00219{left:593.253332pt;}
.x13_c00219{left:594.399999pt;}
.x14_c00219{left:610.413332pt;}
.x27_c00219{left:611.493332pt;}
.x2f_c00219{left:621.146665pt;}
.x28_c00219{left:636.959999pt;}
.x19_c00219{left:644.973332pt;}
.x9_c00219{left:647.333332pt;}
.x29_c00219{left:655.839999pt;}
.x3_c00219{left:660.639999pt;}
}





/* 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_c00220 {
    display:none;
  }
  .loading-indicator_c00220.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00220 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_c00220 { 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_c00220" -> "#page-container .classname_c00220")
 */
.pf_c00220 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00220 { /* 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_c00220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00220 { /* 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_c00220 { /* 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_c00220 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00220 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00220 {overflow:visible;}
  }
}
.c_c00220 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00220 { /* 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_c00220:after { /* webkit #35443 */
  content: '';
}
.t_c00220:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00220 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 */
}
.__c00220 { /* 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_c00220 { /* info for Javascript */
  display:none;
}
.l_c00220 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00220 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00220 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00220: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_c00220 {
    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_c00220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00220.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_c00220 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00220;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.311035;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_c00220;src:url('chunks/assets/font_6db02d24d2e5bdd59678d23c.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.284180;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_c00220;src:url('chunks/assets/font_760595008b6fafd342a4e108.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.284668;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_c00220;src:url('chunks/assets/font_0759a5c67ad92ee0a80428f5.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:1.284180;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_c00220;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;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;}
.m1_c00220{transform:matrix(0.150468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150468,0.000000,0.000000,0.250000,0,0);}
.m2_c00220{transform:matrix(0.178028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178028,0.000000,0.000000,0.250000,0,0);}
.m4_c00220{transform:matrix(0.238418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238418,0.000000,0.000000,0.250000,0,0);}
.m3_c00220{transform:matrix(0.247137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247137,0.000000,0.000000,0.250000,0,0);}
.m0_c00220{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);}
.v0_c00220{vertical-align:0.000000px;}
.ls67_c00220{letter-spacing:-2.751000px;}
.ls6a_c00220{letter-spacing:-2.415000px;}
.ls73_c00220{letter-spacing:-2.373000px;}
.ls5e_c00220{letter-spacing:-2.271300px;}
.ls5a_c00220{letter-spacing:-1.891620px;}
.ls7c_c00220{letter-spacing:-1.823820px;}
.ls60_c00220{letter-spacing:-1.796700px;}
.ls81_c00220{letter-spacing:-1.539060px;}
.ls62_c00220{letter-spacing:-1.457700px;}
.ls78_c00220{letter-spacing:-1.417020px;}
.ls58_c00220{letter-spacing:-1.410240px;}
.ls71_c00220{letter-spacing:-1.403460px;}
.ls82_c00220{letter-spacing:-1.251300px;}
.ls5c_c00220{letter-spacing:-1.220400px;}
.ls57_c00220{letter-spacing:-1.071240px;}
.ls7d_c00220{letter-spacing:-0.827160px;}
.ls7e_c00220{letter-spacing:-0.820380px;}
.ls80_c00220{letter-spacing:-0.739020px;}
.ls70_c00220{letter-spacing:-0.691560px;}
.ls74_c00220{letter-spacing:-0.650880px;}
.ls65_c00220{letter-spacing:-0.508500px;}
.ls7f_c00220{letter-spacing:-0.494940px;}
.ls6f_c00220{letter-spacing:-0.420360px;}
.ls61_c00220{letter-spacing:-0.413580px;}
.ls76_c00220{letter-spacing:-0.359340px;}
.ls6d_c00220{letter-spacing:-0.298320px;}
.ls6b_c00220{letter-spacing:-0.264420px;}
.ls55_c00220{letter-spacing:-0.237300px;}
.ls5f_c00220{letter-spacing:-0.210180px;}
.ls63_c00220{letter-spacing:-0.196620px;}
.ls5d_c00220{letter-spacing:-0.176280px;}
.ls56_c00220{letter-spacing:-0.169500px;}
.ls72_c00220{letter-spacing:-0.142380px;}
.ls5b_c00220{letter-spacing:-0.135600px;}
.ls6e_c00220{letter-spacing:-0.128820px;}
.ls7b_c00220{letter-spacing:-0.081360px;}
.ls77_c00220{letter-spacing:-0.067800px;}
.ls6c_c00220{letter-spacing:-0.040680px;}
.ls68_c00220{letter-spacing:-0.013560px;}
.ls59_c00220{letter-spacing:0.000000px;}
.ls1d_c00220{letter-spacing:0.006780px;}
.ls41_c00220{letter-spacing:0.013560px;}
.ls15_c00220{letter-spacing:0.020340px;}
.ls14_c00220{letter-spacing:0.033900px;}
.ls3b_c00220{letter-spacing:0.040680px;}
.ls2f_c00220{letter-spacing:0.081360px;}
.ls69_c00220{letter-spacing:0.115260px;}
.ls8_c00220{letter-spacing:0.135600px;}
.ls7_c00220{letter-spacing:0.142380px;}
.ls9_c00220{letter-spacing:0.155940px;}
.lsd_c00220{letter-spacing:0.162720px;}
.ls51_c00220{letter-spacing:0.176280px;}
.ls21_c00220{letter-spacing:0.210180px;}
.ls24_c00220{letter-spacing:0.216960px;}
.ls2e_c00220{letter-spacing:0.230520px;}
.ls3_c00220{letter-spacing:0.237300px;}
.ls5_c00220{letter-spacing:0.250860px;}
.ls19_c00220{letter-spacing:0.257640px;}
.ls1a_c00220{letter-spacing:0.264420px;}
.ls45_c00220{letter-spacing:0.277980px;}
.ls7a_c00220{letter-spacing:0.284760px;}
.ls38_c00220{letter-spacing:0.332220px;}
.ls53_c00220{letter-spacing:0.339000px;}
.ls37_c00220{letter-spacing:0.345780px;}
.ls26_c00220{letter-spacing:0.359340px;}
.ls22_c00220{letter-spacing:0.386460px;}
.ls25_c00220{letter-spacing:0.393240px;}
.ls4f_c00220{letter-spacing:0.406800px;}
.ls3f_c00220{letter-spacing:0.413580px;}
.ls30_c00220{letter-spacing:0.440700px;}
.ls2d_c00220{letter-spacing:0.447480px;}
.ls23_c00220{letter-spacing:0.461040px;}
.ls43_c00220{letter-spacing:0.467820px;}
.lsf_c00220{letter-spacing:0.474600px;}
.ls31_c00220{letter-spacing:0.508500px;}
.ls18_c00220{letter-spacing:0.522060px;}
.ls40_c00220{letter-spacing:0.535620px;}
.ls46_c00220{letter-spacing:0.583080px;}
.ls49_c00220{letter-spacing:0.610200px;}
.ls1e_c00220{letter-spacing:0.623760px;}
.ls2c_c00220{letter-spacing:0.657660px;}
.ls50_c00220{letter-spacing:0.664440px;}
.ls3c_c00220{letter-spacing:0.671220px;}
.ls27_c00220{letter-spacing:0.678000px;}
.ls3e_c00220{letter-spacing:0.698340px;}
.ls66_c00220{letter-spacing:0.711900px;}
.ls35_c00220{letter-spacing:0.725460px;}
.ls1c_c00220{letter-spacing:0.732240px;}
.ls33_c00220{letter-spacing:0.766140px;}
.ls10_c00220{letter-spacing:0.779700px;}
.ls34_c00220{letter-spacing:0.800040px;}
.ls2a_c00220{letter-spacing:0.820380px;}
.lsc_c00220{letter-spacing:0.854280px;}
.ls0_c00220{letter-spacing:0.874620px;}
.ls1f_c00220{letter-spacing:0.881400px;}
.ls29_c00220{letter-spacing:0.928860px;}
.ls36_c00220{letter-spacing:0.949200px;}
.ls39_c00220{letter-spacing:0.955980px;}
.ls64_c00220{letter-spacing:0.983100px;}
.ls2_c00220{letter-spacing:0.989880px;}
.ls4c_c00220{letter-spacing:1.003440px;}
.ls52_c00220{letter-spacing:1.010220px;}
.lsa_c00220{letter-spacing:1.017000px;}
.ls42_c00220{letter-spacing:1.023780px;}
.ls4a_c00220{letter-spacing:1.030560px;}
.ls54_c00220{letter-spacing:1.034880px;}
.ls20_c00220{letter-spacing:1.044120px;}
.ls44_c00220{letter-spacing:1.078020px;}
.ls32_c00220{letter-spacing:1.091580px;}
.ls11_c00220{letter-spacing:1.125480px;}
.ls3d_c00220{letter-spacing:1.159380px;}
.ls17_c00220{letter-spacing:1.179720px;}
.ls1b_c00220{letter-spacing:1.213620px;}
.ls6_c00220{letter-spacing:1.294980px;}
.ls16_c00220{letter-spacing:1.444140px;}
.ls79_c00220{letter-spacing:1.484820px;}
.ls75_c00220{letter-spacing:1.505160px;}
.ls28_c00220{letter-spacing:1.545840px;}
.lse_c00220{letter-spacing:1.654320px;}
.ls3a_c00220{letter-spacing:1.674660px;}
.ls47_c00220{letter-spacing:1.742460px;}
.ls1_c00220{letter-spacing:1.810260px;}
.lsb_c00220{letter-spacing:1.817040px;}
.ls4_c00220{letter-spacing:1.830600px;}
.ls2b_c00220{letter-spacing:2.108580px;}
.ls13_c00220{letter-spacing:2.135700px;}
.ls4e_c00220{letter-spacing:2.156040px;}
.ls4d_c00220{letter-spacing:2.162820px;}
.ls12_c00220{letter-spacing:2.203500px;}
.ls4b_c00220{letter-spacing:2.637420px;}
.ls48_c00220{letter-spacing:3.376440px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{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__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00220{word-spacing:-1.084800px;}
.ws5_c00220{word-spacing:0.000000px;}
.ws3_c00220{word-spacing:3.152700px;}
.ws0_c00220{word-spacing:3.390000px;}
.ws4_c00220{word-spacing:13.722720px;}
.ws2_c00220{word-spacing:34.756200px;}
._0_c00220{margin-left:-5.362980px;}
._b_c00220{margin-left:-4.072860px;}
._7_c00220{margin-left:-3.030660px;}
._1_c00220{margin-left:-1.945860px;}
._5_c00220{width:1.783920px;}
._3_c00220{width:2.950320px;}
._9_c00220{width:4.806240px;}
._a_c00220{width:5.830800px;}
._2_c00220{width:6.860340px;}
._8_c00220{width:8.172540px;}
._14_c00220{width:9.886140px;}
._6_c00220{width:11.697540px;}
._4_c00220{width:13.416900px;}
._13_c00220{width:14.821080px;}
._11_c00220{width:16.421160px;}
._10_c00220{width:20.190840px;}
._12_c00220{width:22.197720px;}
._c_c00220{width:26.548200px;}
._f_c00220{width:28.564140px;}
._e_c00220{width:29.879460px;}
._d_c00220{width:32.977920px;}
.fc0_c00220{color:transparent;}
.fs7_c00220{font-size:58.200000px;}
.fs0_c00220{font-size:58.800000px;}
.fs5_c00220{font-size:66.600000px;}
.fs2_c00220{font-size:67.200000px;}
.fs1_c00220{font-size:67.800000px;}
.fs4_c00220{font-size:69.000000px;}
.fs6_c00220{font-size:73.800000px;}
.fs3_c00220{font-size:78.600000px;}
.y0_c00220{bottom:0.000000px;}
.y19_c00220{bottom:68.055000px;}
.y18_c00220{bottom:206.295000px;}
.y17_c00220{bottom:268.935000px;}
.y16_c00220{bottom:268.941150px;}
.y15_c00220{bottom:331.198500px;}
.y14_c00220{bottom:362.903250px;}
.y13_c00220{bottom:426.245400px;}
.y12_c00220{bottom:456.857100px;}
.y11_c00220{bottom:519.487350px;}
.y10_c00220{bottom:550.451400px;}
.yf_c00220{bottom:581.775000px;}
.yd_c00220{bottom:644.045700px;}
.ye_c00220{bottom:644.055000px;}
.yc_c00220{bottom:675.369300px;}
.yb_c00220{bottom:706.320000px;}
.y9_c00220{bottom:768.592800px;}
.ya_c00220{bottom:768.600000px;}
.y8_c00220{bottom:831.240000px;}
.y7_c00220{bottom:862.925700px;}
.y6_c00220{bottom:925.194450px;}
.y5_c00220{bottom:956.527800px;}
.y4_c00220{bottom:1019.178600px;}
.y3_c00220{bottom:1081.080000px;}
.y2_c00220{bottom:1112.760000px;}
.y1_c00220{bottom:1188.375000px;}
.hc_c00220{height:57.120117px;}
.h2_c00220{height:59.259375px;}
.hb_c00220{height:66.508992px;}
.h3_c00220{height:66.541992px;}
.h5_c00220{height:66.564192px;}
.h4_c00220{height:66.570792px;}
.h9_c00220{height:66.579192px;}
.h8_c00220{height:67.719727px;}
.h6_c00220{height:70.087500px;}
.ha_c00220{height:72.445064px;}
.h7_c00220{height:77.141602px;}
.h1_c00220{height:1263.000000px;}
.h0_c00220{height:1263.240000px;}
.w1_c00220{width:892.500000px;}
.w0_c00220{width:892.800000px;}
.x0_c00220{left:0.000000px;}
.xa_c00220{left:121.866450px;}
.x1_c00220{left:123.045000px;}
.x9_c00220{left:175.845000px;}
.x4_c00220{left:176.918100px;}
.x3_c00220{left:178.110000px;}
.x2_c00220{left:248.430000px;}
.xb_c00220{left:318.978000px;}
.xd_c00220{left:422.850000px;}
.xc_c00220{left:434.355000px;}
.x5_c00220{left:446.010000px;}
.x6_c00220{left:477.930000px;}
.x7_c00220{left:678.555000px;}
.x8_c00220{left:728.100000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls67_c00220{letter-spacing:-2.445333pt;}
.ls6a_c00220{letter-spacing:-2.146667pt;}
.ls73_c00220{letter-spacing:-2.109333pt;}
.ls5e_c00220{letter-spacing:-2.018933pt;}
.ls5a_c00220{letter-spacing:-1.681440pt;}
.ls7c_c00220{letter-spacing:-1.621173pt;}
.ls60_c00220{letter-spacing:-1.597067pt;}
.ls81_c00220{letter-spacing:-1.368053pt;}
.ls62_c00220{letter-spacing:-1.295733pt;}
.ls78_c00220{letter-spacing:-1.259573pt;}
.ls58_c00220{letter-spacing:-1.253547pt;}
.ls71_c00220{letter-spacing:-1.247520pt;}
.ls82_c00220{letter-spacing:-1.112267pt;}
.ls5c_c00220{letter-spacing:-1.084800pt;}
.ls57_c00220{letter-spacing:-0.952213pt;}
.ls7d_c00220{letter-spacing:-0.735253pt;}
.ls7e_c00220{letter-spacing:-0.729227pt;}
.ls80_c00220{letter-spacing:-0.656907pt;}
.ls70_c00220{letter-spacing:-0.614720pt;}
.ls74_c00220{letter-spacing:-0.578560pt;}
.ls65_c00220{letter-spacing:-0.452000pt;}
.ls7f_c00220{letter-spacing:-0.439947pt;}
.ls6f_c00220{letter-spacing:-0.373653pt;}
.ls61_c00220{letter-spacing:-0.367627pt;}
.ls76_c00220{letter-spacing:-0.319413pt;}
.ls6d_c00220{letter-spacing:-0.265173pt;}
.ls6b_c00220{letter-spacing:-0.235040pt;}
.ls55_c00220{letter-spacing:-0.210933pt;}
.ls5f_c00220{letter-spacing:-0.186827pt;}
.ls63_c00220{letter-spacing:-0.174773pt;}
.ls5d_c00220{letter-spacing:-0.156693pt;}
.ls56_c00220{letter-spacing:-0.150667pt;}
.ls72_c00220{letter-spacing:-0.126560pt;}
.ls5b_c00220{letter-spacing:-0.120533pt;}
.ls6e_c00220{letter-spacing:-0.114507pt;}
.ls7b_c00220{letter-spacing:-0.072320pt;}
.ls77_c00220{letter-spacing:-0.060267pt;}
.ls6c_c00220{letter-spacing:-0.036160pt;}
.ls68_c00220{letter-spacing:-0.012053pt;}
.ls59_c00220{letter-spacing:0.000000pt;}
.ls1d_c00220{letter-spacing:0.006027pt;}
.ls41_c00220{letter-spacing:0.012053pt;}
.ls15_c00220{letter-spacing:0.018080pt;}
.ls14_c00220{letter-spacing:0.030133pt;}
.ls3b_c00220{letter-spacing:0.036160pt;}
.ls2f_c00220{letter-spacing:0.072320pt;}
.ls69_c00220{letter-spacing:0.102453pt;}
.ls8_c00220{letter-spacing:0.120533pt;}
.ls7_c00220{letter-spacing:0.126560pt;}
.ls9_c00220{letter-spacing:0.138613pt;}
.lsd_c00220{letter-spacing:0.144640pt;}
.ls51_c00220{letter-spacing:0.156693pt;}
.ls21_c00220{letter-spacing:0.186827pt;}
.ls24_c00220{letter-spacing:0.192853pt;}
.ls2e_c00220{letter-spacing:0.204907pt;}
.ls3_c00220{letter-spacing:0.210933pt;}
.ls5_c00220{letter-spacing:0.222987pt;}
.ls19_c00220{letter-spacing:0.229013pt;}
.ls1a_c00220{letter-spacing:0.235040pt;}
.ls45_c00220{letter-spacing:0.247093pt;}
.ls7a_c00220{letter-spacing:0.253120pt;}
.ls38_c00220{letter-spacing:0.295307pt;}
.ls53_c00220{letter-spacing:0.301333pt;}
.ls37_c00220{letter-spacing:0.307360pt;}
.ls26_c00220{letter-spacing:0.319413pt;}
.ls22_c00220{letter-spacing:0.343520pt;}
.ls25_c00220{letter-spacing:0.349547pt;}
.ls4f_c00220{letter-spacing:0.361600pt;}
.ls3f_c00220{letter-spacing:0.367627pt;}
.ls30_c00220{letter-spacing:0.391733pt;}
.ls2d_c00220{letter-spacing:0.397760pt;}
.ls23_c00220{letter-spacing:0.409813pt;}
.ls43_c00220{letter-spacing:0.415840pt;}
.lsf_c00220{letter-spacing:0.421867pt;}
.ls31_c00220{letter-spacing:0.452000pt;}
.ls18_c00220{letter-spacing:0.464053pt;}
.ls40_c00220{letter-spacing:0.476107pt;}
.ls46_c00220{letter-spacing:0.518293pt;}
.ls49_c00220{letter-spacing:0.542400pt;}
.ls1e_c00220{letter-spacing:0.554453pt;}
.ls2c_c00220{letter-spacing:0.584587pt;}
.ls50_c00220{letter-spacing:0.590613pt;}
.ls3c_c00220{letter-spacing:0.596640pt;}
.ls27_c00220{letter-spacing:0.602667pt;}
.ls3e_c00220{letter-spacing:0.620747pt;}
.ls66_c00220{letter-spacing:0.632800pt;}
.ls35_c00220{letter-spacing:0.644853pt;}
.ls1c_c00220{letter-spacing:0.650880pt;}
.ls33_c00220{letter-spacing:0.681013pt;}
.ls10_c00220{letter-spacing:0.693067pt;}
.ls34_c00220{letter-spacing:0.711147pt;}
.ls2a_c00220{letter-spacing:0.729227pt;}
.lsc_c00220{letter-spacing:0.759360pt;}
.ls0_c00220{letter-spacing:0.777440pt;}
.ls1f_c00220{letter-spacing:0.783467pt;}
.ls29_c00220{letter-spacing:0.825653pt;}
.ls36_c00220{letter-spacing:0.843733pt;}
.ls39_c00220{letter-spacing:0.849760pt;}
.ls64_c00220{letter-spacing:0.873867pt;}
.ls2_c00220{letter-spacing:0.879893pt;}
.ls4c_c00220{letter-spacing:0.891947pt;}
.ls52_c00220{letter-spacing:0.897973pt;}
.lsa_c00220{letter-spacing:0.904000pt;}
.ls42_c00220{letter-spacing:0.910027pt;}
.ls4a_c00220{letter-spacing:0.916053pt;}
.ls54_c00220{letter-spacing:0.919893pt;}
.ls20_c00220{letter-spacing:0.928107pt;}
.ls44_c00220{letter-spacing:0.958240pt;}
.ls32_c00220{letter-spacing:0.970293pt;}
.ls11_c00220{letter-spacing:1.000427pt;}
.ls3d_c00220{letter-spacing:1.030560pt;}
.ls17_c00220{letter-spacing:1.048640pt;}
.ls1b_c00220{letter-spacing:1.078773pt;}
.ls6_c00220{letter-spacing:1.151093pt;}
.ls16_c00220{letter-spacing:1.283680pt;}
.ls79_c00220{letter-spacing:1.319840pt;}
.ls75_c00220{letter-spacing:1.337920pt;}
.ls28_c00220{letter-spacing:1.374080pt;}
.lse_c00220{letter-spacing:1.470507pt;}
.ls3a_c00220{letter-spacing:1.488587pt;}
.ls47_c00220{letter-spacing:1.548853pt;}
.ls1_c00220{letter-spacing:1.609120pt;}
.lsb_c00220{letter-spacing:1.615147pt;}
.ls4_c00220{letter-spacing:1.627200pt;}
.ls2b_c00220{letter-spacing:1.874293pt;}
.ls13_c00220{letter-spacing:1.898400pt;}
.ls4e_c00220{letter-spacing:1.916480pt;}
.ls4d_c00220{letter-spacing:1.922507pt;}
.ls12_c00220{letter-spacing:1.958667pt;}
.ls4b_c00220{letter-spacing:2.344373pt;}
.ls48_c00220{letter-spacing:3.001280pt;}
.ws1_c00220{word-spacing:-0.964267pt;}
.ws5_c00220{word-spacing:0.000000pt;}
.ws3_c00220{word-spacing:2.802400pt;}
.ws0_c00220{word-spacing:3.013333pt;}
.ws4_c00220{word-spacing:12.197973pt;}
.ws2_c00220{word-spacing:30.894400pt;}
._0_c00220{margin-left:-4.767093pt;}
._b_c00220{margin-left:-3.620320pt;}
._7_c00220{margin-left:-2.693920pt;}
._1_c00220{margin-left:-1.729653pt;}
._5_c00220{width:1.585707pt;}
._3_c00220{width:2.622507pt;}
._9_c00220{width:4.272213pt;}
._a_c00220{width:5.182933pt;}
._2_c00220{width:6.098080pt;}
._8_c00220{width:7.264480pt;}
._14_c00220{width:8.787680pt;}
._6_c00220{width:10.397813pt;}
._4_c00220{width:11.926133pt;}
._13_c00220{width:13.174293pt;}
._11_c00220{width:14.596587pt;}
._10_c00220{width:17.947413pt;}
._12_c00220{width:19.731307pt;}
._c_c00220{width:23.598400pt;}
._f_c00220{width:25.390347pt;}
._e_c00220{width:26.559520pt;}
._d_c00220{width:29.313707pt;}
.fs7_c00220{font-size:51.733333pt;}
.fs0_c00220{font-size:52.266667pt;}
.fs5_c00220{font-size:59.200000pt;}
.fs2_c00220{font-size:59.733333pt;}
.fs1_c00220{font-size:60.266667pt;}
.fs4_c00220{font-size:61.333333pt;}
.fs6_c00220{font-size:65.600000pt;}
.fs3_c00220{font-size:69.866667pt;}
.y0_c00220{bottom:0.000000pt;}
.y19_c00220{bottom:60.493333pt;}
.y18_c00220{bottom:183.373333pt;}
.y17_c00220{bottom:239.053333pt;}
.y16_c00220{bottom:239.058800pt;}
.y15_c00220{bottom:294.398667pt;}
.y14_c00220{bottom:322.580667pt;}
.y13_c00220{bottom:378.884800pt;}
.y12_c00220{bottom:406.095200pt;}
.y11_c00220{bottom:461.766533pt;}
.y10_c00220{bottom:489.290133pt;}
.yf_c00220{bottom:517.133333pt;}
.yd_c00220{bottom:572.485067pt;}
.ye_c00220{bottom:572.493333pt;}
.yc_c00220{bottom:600.328267pt;}
.yb_c00220{bottom:627.840000pt;}
.y9_c00220{bottom:683.193600pt;}
.ya_c00220{bottom:683.200000pt;}
.y8_c00220{bottom:738.880000pt;}
.y7_c00220{bottom:767.045067pt;}
.y6_c00220{bottom:822.395067pt;}
.y5_c00220{bottom:850.246933pt;}
.y4_c00220{bottom:905.936533pt;}
.y3_c00220{bottom:960.960000pt;}
.y2_c00220{bottom:989.120000pt;}
.y1_c00220{bottom:1056.333333pt;}
.hc_c00220{height:50.773437pt;}
.h2_c00220{height:52.675000pt;}
.hb_c00220{height:59.119104pt;}
.h3_c00220{height:59.148438pt;}
.h5_c00220{height:59.168171pt;}
.h4_c00220{height:59.174038pt;}
.h9_c00220{height:59.181504pt;}
.h8_c00220{height:60.195312pt;}
.h6_c00220{height:62.300000pt;}
.ha_c00220{height:64.395613pt;}
.h7_c00220{height:68.570312pt;}
.h1_c00220{height:1122.666667pt;}
.h0_c00220{height:1122.880000pt;}
.w1_c00220{width:793.333333pt;}
.w0_c00220{width:793.600000pt;}
.x0_c00220{left:0.000000pt;}
.xa_c00220{left:108.325733pt;}
.x1_c00220{left:109.373333pt;}
.x9_c00220{left:156.306667pt;}
.x4_c00220{left:157.260533pt;}
.x3_c00220{left:158.320000pt;}
.x2_c00220{left:220.826667pt;}
.xb_c00220{left:283.536000pt;}
.xd_c00220{left:375.866667pt;}
.xc_c00220{left:386.093333pt;}
.x5_c00220{left:396.453333pt;}
.x6_c00220{left:424.826667pt;}
.x7_c00220{left:603.160000pt;}
.x8_c00220{left:647.200000pt;}
}





/* 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_c00221 {
    display:none;
  }
  .loading-indicator_c00221.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00221 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_c00221 { 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_c00221" -> "#page-container .classname_c00221")
 */
.pf_c00221 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00221 { /* 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_c00221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00221 { /* 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_c00221 { /* 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_c00221 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00221 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00221 {overflow:visible;}
  }
}
.c_c00221 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00221 { /* 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_c00221:after { /* webkit #35443 */
  content: '';
}
.t_c00221:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00221 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 */
}
.__c00221 { /* 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_c00221 { /* info for Javascript */
  display:none;
}
.l_c00221 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00221 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00221 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00221: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_c00221 {
    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_c00221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00221.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_c00221 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00221;src:url('chunks/assets/font_d04bdc5c58840f9f5ad5ad2c.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.284668;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_c00221;src:url('chunks/assets/font_faec6e9f79b0aa2447218b8a.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.284180;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_c00221;src:url('chunks/assets/font_3383552da72dd6fff00dc163.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;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:ff4_c00221;src:url('chunks/assets/font_1ddf99cb1ac50e2603bc6993.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:0.666000;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_c00221;src:url('chunks/assets/font_7a739d5ff9d34ead8f67ab8d.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:1.311035;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;}
.m9_c00221{transform:matrix(0.141027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141027,0.000000,0.000000,0.250000,0,0);}
.m3_c00221{transform:matrix(0.225627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225627,0.000000,0.000000,0.250000,0,0);}
.m6_c00221{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m4_c00221{transform:matrix(0.243288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243288,0.000000,0.000000,0.250000,0,0);}
.m0_c00221{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m8_c00221{transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);}
.m1_c00221{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);}
.m2_c00221{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m5_c00221{transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);}
.m7_c00221{transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls80_c00221{letter-spacing:-2.688000px;}
.ls83_c00221{letter-spacing:-2.625000px;}
.ls88_c00221{letter-spacing:-2.373000px;}
.ls75_c00221{letter-spacing:-2.352000px;}
.ls7f_c00221{letter-spacing:-1.627200px;}
.ls8b_c00221{letter-spacing:-1.600080px;}
.ls85_c00221{letter-spacing:-1.518720px;}
.ls91_c00221{letter-spacing:-1.251300px;}
.ls86_c00221{letter-spacing:-1.247520px;}
.ls8a_c00221{letter-spacing:-0.705120px;}
.ls8d_c00221{letter-spacing:-0.359340px;}
.ls84_c00221{letter-spacing:-0.128820px;}
.ls82_c00221{letter-spacing:-0.074580px;}
.ls79_c00221{letter-spacing:-0.013560px;}
.ls7c_c00221{letter-spacing:0.000000px;}
.ls64_c00221{letter-spacing:0.006900px;}
.ls44_c00221{letter-spacing:0.020340px;}
.ls1a_c00221{letter-spacing:0.033900px;}
.ls65_c00221{letter-spacing:0.034500px;}
.ls4f_c00221{letter-spacing:0.040680px;}
.ls3d_c00221{letter-spacing:0.054240px;}
.ls43_c00221{letter-spacing:0.081360px;}
.ls8f_c00221{letter-spacing:0.142380px;}
.ls7b_c00221{letter-spacing:0.149160px;}
.lsc_c00221{letter-spacing:0.169500px;}
.ls87_c00221{letter-spacing:0.176280px;}
.ls7d_c00221{letter-spacing:0.183060px;}
.ls39_c00221{letter-spacing:0.207000px;}
.ls58_c00221{letter-spacing:0.210180px;}
.ls4c_c00221{letter-spacing:0.216960px;}
.ls5_c00221{letter-spacing:0.237300px;}
.ls12_c00221{letter-spacing:0.298320px;}
.ls37_c00221{letter-spacing:0.305100px;}
.ls6e_c00221{letter-spacing:0.318660px;}
.ls7e_c00221{letter-spacing:0.339000px;}
.ls19_c00221{letter-spacing:0.359340px;}
.ls89_c00221{letter-spacing:0.372900px;}
.ls67_c00221{letter-spacing:0.420360px;}
.ls8c_c00221{letter-spacing:0.440700px;}
.ls17_c00221{letter-spacing:0.488160px;}
.ls90_c00221{letter-spacing:0.501720px;}
.ls1e_c00221{letter-spacing:0.515280px;}
.ls14_c00221{letter-spacing:0.549180px;}
.ls70_c00221{letter-spacing:0.555960px;}
.ls74_c00221{letter-spacing:0.562740px;}
.ls8e_c00221{letter-spacing:0.576300px;}
.ls2e_c00221{letter-spacing:0.589860px;}
.ls5d_c00221{letter-spacing:0.603420px;}
.ls62_c00221{letter-spacing:0.610200px;}
.ls24_c00221{letter-spacing:0.623760px;}
.ls16_c00221{letter-spacing:0.671220px;}
.ls73_c00221{letter-spacing:0.678000px;}
.ls30_c00221{letter-spacing:0.684780px;}
.ls31_c00221{letter-spacing:0.691560px;}
.ls41_c00221{letter-spacing:0.705120px;}
.ls20_c00221{letter-spacing:0.718680px;}
.ls51_c00221{letter-spacing:0.759360px;}
.ls28_c00221{letter-spacing:0.766140px;}
.ls46_c00221{letter-spacing:0.772920px;}
.ls5c_c00221{letter-spacing:0.779700px;}
.ls1c_c00221{letter-spacing:0.800040px;}
.ls3c_c00221{letter-spacing:0.806820px;}
.ls81_c00221{letter-spacing:0.813600px;}
.ls3b_c00221{letter-spacing:0.820380px;}
.ls36_c00221{letter-spacing:0.840720px;}
.ls1f_c00221{letter-spacing:0.854280px;}
.ls2d_c00221{letter-spacing:0.861060px;}
.ls3a_c00221{letter-spacing:0.867840px;}
.ls5a_c00221{letter-spacing:0.881400px;}
.ls1b_c00221{letter-spacing:0.888180px;}
.ls2_c00221{letter-spacing:0.894960px;}
.ls7a_c00221{letter-spacing:0.908520px;}
.ls6_c00221{letter-spacing:0.922080px;}
.ls6b_c00221{letter-spacing:0.928860px;}
.ls5e_c00221{letter-spacing:0.935640px;}
.ls48_c00221{letter-spacing:0.949200px;}
.ls57_c00221{letter-spacing:0.955980px;}
.ls2c_c00221{letter-spacing:0.969540px;}
.ls21_c00221{letter-spacing:0.976320px;}
.ls63_c00221{letter-spacing:0.983100px;}
.ls71_c00221{letter-spacing:0.989880px;}
.ls38_c00221{letter-spacing:1.003440px;}
.ls9_c00221{letter-spacing:1.010220px;}
.ls50_c00221{letter-spacing:1.023780px;}
.ls68_c00221{letter-spacing:1.030560px;}
.ls23_c00221{letter-spacing:1.044120px;}
.ls1_c00221{letter-spacing:1.057680px;}
.lse_c00221{letter-spacing:1.084800px;}
.ls2b_c00221{letter-spacing:1.091580px;}
.lsf_c00221{letter-spacing:1.098360px;}
.ls2a_c00221{letter-spacing:1.105140px;}
.lsa_c00221{letter-spacing:1.125480px;}
.ls6c_c00221{letter-spacing:1.139040px;}
.ls5b_c00221{letter-spacing:1.152600px;}
.ls5f_c00221{letter-spacing:1.159380px;}
.ls40_c00221{letter-spacing:1.166160px;}
.ls8_c00221{letter-spacing:1.186500px;}
.ls72_c00221{letter-spacing:1.240740px;}
.ls34_c00221{letter-spacing:1.247520px;}
.ls55_c00221{letter-spacing:1.254300px;}
.ls49_c00221{letter-spacing:1.281420px;}
.ls4a_c00221{letter-spacing:1.288200px;}
.ls6d_c00221{letter-spacing:1.292760px;}
.ls54_c00221{letter-spacing:1.294980px;}
.ls13_c00221{letter-spacing:1.308540px;}
.ls4e_c00221{letter-spacing:1.322100px;}
.ls76_c00221{letter-spacing:1.342440px;}
.ls35_c00221{letter-spacing:1.362780px;}
.ls53_c00221{letter-spacing:1.369560px;}
.ls4d_c00221{letter-spacing:1.376340px;}
.ls61_c00221{letter-spacing:1.410240px;}
.ls10_c00221{letter-spacing:1.457700px;}
.ls11_c00221{letter-spacing:1.464480px;}
.ls18_c00221{letter-spacing:1.478040px;}
.ls4b_c00221{letter-spacing:1.484820px;}
.lsd_c00221{letter-spacing:1.498380px;}
.ls45_c00221{letter-spacing:1.518720px;}
.ls1d_c00221{letter-spacing:1.586520px;}
.ls77_c00221{letter-spacing:1.593300px;}
.ls69_c00221{letter-spacing:1.722120px;}
.ls66_c00221{letter-spacing:1.742460px;}
.ls7_c00221{letter-spacing:1.762800px;}
.lsb_c00221{letter-spacing:1.830600px;}
.ls0_c00221{letter-spacing:1.834800px;}
.ls56_c00221{letter-spacing:1.841400px;}
.ls22_c00221{letter-spacing:1.850940px;}
.ls27_c00221{letter-spacing:1.905180px;}
.ls3e_c00221{letter-spacing:1.911960px;}
.ls15_c00221{letter-spacing:1.979760px;}
.ls32_c00221{letter-spacing:2.105400px;}
.ls59_c00221{letter-spacing:2.122140px;}
.ls2f_c00221{letter-spacing:2.149260px;}
.ls52_c00221{letter-spacing:2.156040px;}
.ls42_c00221{letter-spacing:2.162820px;}
.ls25_c00221{letter-spacing:2.203500px;}
.ls29_c00221{letter-spacing:2.223840px;}
.ls47_c00221{letter-spacing:2.278080px;}
.ls33_c00221{letter-spacing:2.291640px;}
.ls4_c00221{letter-spacing:2.495040px;}
.ls6f_c00221{letter-spacing:2.556060px;}
.ls6a_c00221{letter-spacing:2.881500px;}
.ls60_c00221{letter-spacing:2.983200px;}
.ls26_c00221{letter-spacing:3.098460px;}
.ls3_c00221{letter-spacing:3.356100px;}
.ls3f_c00221{letter-spacing:3.376440px;}
.ls78_c00221{letter-spacing:3.390000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{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__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00221{word-spacing:-1.455000px;}
.ws5_c00221{word-spacing:0.000000px;}
.ws1_c00221{word-spacing:6.170400px;}
.ws2_c00221{word-spacing:6.549000px;}
.ws4_c00221{word-spacing:15.757500px;}
.ws0_c00221{word-spacing:78.166800px;}
._14_c00221{margin-left:-8.083320px;}
._11_c00221{margin-left:-6.527580px;}
._12_c00221{margin-left:-5.105340px;}
._10_c00221{margin-left:-4.101900px;}
._13_c00221{margin-left:-2.971200px;}
._a_c00221{margin-left:-1.884840px;}
._c_c00221{width:2.095020px;}
._f_c00221{width:3.271560px;}
._b_c00221{width:4.447680px;}
._9_c00221{width:6.325920px;}
._15_c00221{width:7.352700px;}
._7_c00221{width:8.780100px;}
._6_c00221{width:10.953000px;}
._5_c00221{width:12.258480px;}
._8_c00221{width:14.299020px;}
._17_c00221{width:15.349920px;}
._16_c00221{width:16.773420px;}
._18_c00221{width:20.536620px;}
._2_c00221{width:22.170600px;}
._d_c00221{width:23.933400px;}
._3_c00221{width:25.187700px;}
._e_c00221{width:26.882700px;}
._1_c00221{width:28.014960px;}
._0_c00221{width:29.981160px;}
._4_c00221{width:34.171200px;}
.fc0_c00221{color:transparent;}
.fs6_c00221{font-size:51.840000px;}
.fs8_c00221{font-size:58.200000px;}
.fs1_c00221{font-size:66.000000px;}
.fs0_c00221{font-size:67.200000px;}
.fs2_c00221{font-size:67.800000px;}
.fs7_c00221{font-size:68.400000px;}
.fs4_c00221{font-size:69.000000px;}
.fs5_c00221{font-size:75.000000px;}
.fs3_c00221{font-size:76.800000px;}
.y0_c00221{bottom:0.000000px;}
.y1e_c00221{bottom:67.335000px;}
.y1d_c00221{bottom:143.640450px;}
.y1c_c00221{bottom:175.316550px;}
.y1b_c00221{bottom:237.251850px;}
.y1a_c00221{bottom:300.258300px;}
.y19_c00221{bottom:363.973350px;}
.y18_c00221{bottom:395.280000px;}
.y17_c00221{bottom:457.196850px;}
.y16_c00221{bottom:488.893350px;}
.y15_c00221{bottom:520.200000px;}
.y13_c00221{bottom:582.491400px;}
.y14_c00221{bottom:582.495000px;}
.y12_c00221{bottom:613.815000px;}
.y11_c00221{bottom:676.440000px;}
.y10_c00221{bottom:676.447350px;}
.yf_c00221{bottom:707.411400px;}
.yd_c00221{bottom:738.733350px;}
.ye_c00221{bottom:738.735000px;}
.yc_c00221{bottom:770.040000px;}
.yb_c00221{bottom:832.335000px;}
.ya_c00221{bottom:864.360000px;}
.y9_c00221{bottom:928.068750px;}
.y8_c00221{bottom:959.036400px;}
.y7_c00221{bottom:990.363750px;}
.y6_c00221{bottom:1021.331400px;}
.y4_c00221{bottom:1052.651400px;}
.y5_c00221{bottom:1052.655000px;}
.y3_c00221{bottom:1083.971400px;}
.y2_c00221{bottom:1115.295000px;}
.y1_c00221{bottom:1191.975000px;}
.h9_c00221{height:34.525440px;}
.hc_c00221{height:57.120117px;}
.h2_c00221{height:65.953125px;}
.h3_c00221{height:66.541992px;}
.hb_c00221{height:66.555792px;}
.h4_c00221{height:66.556392px;}
.h6_c00221{height:67.686035px;}
.ha_c00221{height:68.921175px;}
.h8_c00221{height:70.713281px;}
.h7_c00221{height:73.608398px;}
.h5_c00221{height:80.100000px;}
.h1_c00221{height:1263.000000px;}
.h0_c00221{height:1263.240000px;}
.w1_c00221{width:892.500000px;}
.w0_c00221{width:892.800000px;}
.x0_c00221{left:0.000000px;}
.x1a_c00221{left:117.559650px;}
.xf_c00221{left:118.992150px;}
.x6_c00221{left:120.841950px;}
.x3_c00221{left:122.019900px;}
.x1_c00221{left:123.765000px;}
.xa_c00221{left:142.515000px;}
.xb_c00221{left:169.830000px;}
.x19_c00221{left:171.885000px;}
.x11_c00221{left:173.055000px;}
.x7_c00221{left:174.390000px;}
.x2_c00221{left:176.550000px;}
.x13_c00221{left:183.270000px;}
.x12_c00221{left:201.420000px;}
.x14_c00221{left:211.605000px;}
.xc_c00221{left:212.670000px;}
.x4_c00221{left:301.500000px;}
.x5_c00221{left:322.530000px;}
.x15_c00221{left:325.470000px;}
.x16_c00221{left:360.180000px;}
.x1b_c00221{left:422.490000px;}
.x10_c00221{left:529.680000px;}
.x17_c00221{left:560.895000px;}
.x8_c00221{left:588.555000px;}
.x9_c00221{left:622.290000px;}
.x18_c00221{left:660.435000px;}
.xd_c00221{left:704.190000px;}
.xe_c00221{left:733.650000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls80_c00221{letter-spacing:-2.389333pt;}
.ls83_c00221{letter-spacing:-2.333333pt;}
.ls88_c00221{letter-spacing:-2.109333pt;}
.ls75_c00221{letter-spacing:-2.090667pt;}
.ls7f_c00221{letter-spacing:-1.446400pt;}
.ls8b_c00221{letter-spacing:-1.422293pt;}
.ls85_c00221{letter-spacing:-1.349973pt;}
.ls91_c00221{letter-spacing:-1.112267pt;}
.ls86_c00221{letter-spacing:-1.108907pt;}
.ls8a_c00221{letter-spacing:-0.626773pt;}
.ls8d_c00221{letter-spacing:-0.319413pt;}
.ls84_c00221{letter-spacing:-0.114507pt;}
.ls82_c00221{letter-spacing:-0.066293pt;}
.ls79_c00221{letter-spacing:-0.012053pt;}
.ls7c_c00221{letter-spacing:0.000000pt;}
.ls64_c00221{letter-spacing:0.006133pt;}
.ls44_c00221{letter-spacing:0.018080pt;}
.ls1a_c00221{letter-spacing:0.030133pt;}
.ls65_c00221{letter-spacing:0.030667pt;}
.ls4f_c00221{letter-spacing:0.036160pt;}
.ls3d_c00221{letter-spacing:0.048213pt;}
.ls43_c00221{letter-spacing:0.072320pt;}
.ls8f_c00221{letter-spacing:0.126560pt;}
.ls7b_c00221{letter-spacing:0.132587pt;}
.lsc_c00221{letter-spacing:0.150667pt;}
.ls87_c00221{letter-spacing:0.156693pt;}
.ls7d_c00221{letter-spacing:0.162720pt;}
.ls39_c00221{letter-spacing:0.184000pt;}
.ls58_c00221{letter-spacing:0.186827pt;}
.ls4c_c00221{letter-spacing:0.192853pt;}
.ls5_c00221{letter-spacing:0.210933pt;}
.ls12_c00221{letter-spacing:0.265173pt;}
.ls37_c00221{letter-spacing:0.271200pt;}
.ls6e_c00221{letter-spacing:0.283253pt;}
.ls7e_c00221{letter-spacing:0.301333pt;}
.ls19_c00221{letter-spacing:0.319413pt;}
.ls89_c00221{letter-spacing:0.331467pt;}
.ls67_c00221{letter-spacing:0.373653pt;}
.ls8c_c00221{letter-spacing:0.391733pt;}
.ls17_c00221{letter-spacing:0.433920pt;}
.ls90_c00221{letter-spacing:0.445973pt;}
.ls1e_c00221{letter-spacing:0.458027pt;}
.ls14_c00221{letter-spacing:0.488160pt;}
.ls70_c00221{letter-spacing:0.494187pt;}
.ls74_c00221{letter-spacing:0.500213pt;}
.ls8e_c00221{letter-spacing:0.512267pt;}
.ls2e_c00221{letter-spacing:0.524320pt;}
.ls5d_c00221{letter-spacing:0.536373pt;}
.ls62_c00221{letter-spacing:0.542400pt;}
.ls24_c00221{letter-spacing:0.554453pt;}
.ls16_c00221{letter-spacing:0.596640pt;}
.ls73_c00221{letter-spacing:0.602667pt;}
.ls30_c00221{letter-spacing:0.608693pt;}
.ls31_c00221{letter-spacing:0.614720pt;}
.ls41_c00221{letter-spacing:0.626773pt;}
.ls20_c00221{letter-spacing:0.638827pt;}
.ls51_c00221{letter-spacing:0.674987pt;}
.ls28_c00221{letter-spacing:0.681013pt;}
.ls46_c00221{letter-spacing:0.687040pt;}
.ls5c_c00221{letter-spacing:0.693067pt;}
.ls1c_c00221{letter-spacing:0.711147pt;}
.ls3c_c00221{letter-spacing:0.717173pt;}
.ls81_c00221{letter-spacing:0.723200pt;}
.ls3b_c00221{letter-spacing:0.729227pt;}
.ls36_c00221{letter-spacing:0.747307pt;}
.ls1f_c00221{letter-spacing:0.759360pt;}
.ls2d_c00221{letter-spacing:0.765387pt;}
.ls3a_c00221{letter-spacing:0.771413pt;}
.ls5a_c00221{letter-spacing:0.783467pt;}
.ls1b_c00221{letter-spacing:0.789493pt;}
.ls2_c00221{letter-spacing:0.795520pt;}
.ls7a_c00221{letter-spacing:0.807573pt;}
.ls6_c00221{letter-spacing:0.819627pt;}
.ls6b_c00221{letter-spacing:0.825653pt;}
.ls5e_c00221{letter-spacing:0.831680pt;}
.ls48_c00221{letter-spacing:0.843733pt;}
.ls57_c00221{letter-spacing:0.849760pt;}
.ls2c_c00221{letter-spacing:0.861813pt;}
.ls21_c00221{letter-spacing:0.867840pt;}
.ls63_c00221{letter-spacing:0.873867pt;}
.ls71_c00221{letter-spacing:0.879893pt;}
.ls38_c00221{letter-spacing:0.891947pt;}
.ls9_c00221{letter-spacing:0.897973pt;}
.ls50_c00221{letter-spacing:0.910027pt;}
.ls68_c00221{letter-spacing:0.916053pt;}
.ls23_c00221{letter-spacing:0.928107pt;}
.ls1_c00221{letter-spacing:0.940160pt;}
.lse_c00221{letter-spacing:0.964267pt;}
.ls2b_c00221{letter-spacing:0.970293pt;}
.lsf_c00221{letter-spacing:0.976320pt;}
.ls2a_c00221{letter-spacing:0.982347pt;}
.lsa_c00221{letter-spacing:1.000427pt;}
.ls6c_c00221{letter-spacing:1.012480pt;}
.ls5b_c00221{letter-spacing:1.024533pt;}
.ls5f_c00221{letter-spacing:1.030560pt;}
.ls40_c00221{letter-spacing:1.036587pt;}
.ls8_c00221{letter-spacing:1.054667pt;}
.ls72_c00221{letter-spacing:1.102880pt;}
.ls34_c00221{letter-spacing:1.108907pt;}
.ls55_c00221{letter-spacing:1.114933pt;}
.ls49_c00221{letter-spacing:1.139040pt;}
.ls4a_c00221{letter-spacing:1.145067pt;}
.ls6d_c00221{letter-spacing:1.149120pt;}
.ls54_c00221{letter-spacing:1.151093pt;}
.ls13_c00221{letter-spacing:1.163147pt;}
.ls4e_c00221{letter-spacing:1.175200pt;}
.ls76_c00221{letter-spacing:1.193280pt;}
.ls35_c00221{letter-spacing:1.211360pt;}
.ls53_c00221{letter-spacing:1.217387pt;}
.ls4d_c00221{letter-spacing:1.223413pt;}
.ls61_c00221{letter-spacing:1.253547pt;}
.ls10_c00221{letter-spacing:1.295733pt;}
.ls11_c00221{letter-spacing:1.301760pt;}
.ls18_c00221{letter-spacing:1.313813pt;}
.ls4b_c00221{letter-spacing:1.319840pt;}
.lsd_c00221{letter-spacing:1.331893pt;}
.ls45_c00221{letter-spacing:1.349973pt;}
.ls1d_c00221{letter-spacing:1.410240pt;}
.ls77_c00221{letter-spacing:1.416267pt;}
.ls69_c00221{letter-spacing:1.530773pt;}
.ls66_c00221{letter-spacing:1.548853pt;}
.ls7_c00221{letter-spacing:1.566933pt;}
.lsb_c00221{letter-spacing:1.627200pt;}
.ls0_c00221{letter-spacing:1.630933pt;}
.ls56_c00221{letter-spacing:1.636800pt;}
.ls22_c00221{letter-spacing:1.645280pt;}
.ls27_c00221{letter-spacing:1.693493pt;}
.ls3e_c00221{letter-spacing:1.699520pt;}
.ls15_c00221{letter-spacing:1.759787pt;}
.ls32_c00221{letter-spacing:1.871467pt;}
.ls59_c00221{letter-spacing:1.886347pt;}
.ls2f_c00221{letter-spacing:1.910453pt;}
.ls52_c00221{letter-spacing:1.916480pt;}
.ls42_c00221{letter-spacing:1.922507pt;}
.ls25_c00221{letter-spacing:1.958667pt;}
.ls29_c00221{letter-spacing:1.976747pt;}
.ls47_c00221{letter-spacing:2.024960pt;}
.ls33_c00221{letter-spacing:2.037013pt;}
.ls4_c00221{letter-spacing:2.217813pt;}
.ls6f_c00221{letter-spacing:2.272053pt;}
.ls6a_c00221{letter-spacing:2.561333pt;}
.ls60_c00221{letter-spacing:2.651733pt;}
.ls26_c00221{letter-spacing:2.754187pt;}
.ls3_c00221{letter-spacing:2.983200pt;}
.ls3f_c00221{letter-spacing:3.001280pt;}
.ls78_c00221{letter-spacing:3.013333pt;}
.ws3_c00221{word-spacing:-1.293333pt;}
.ws5_c00221{word-spacing:0.000000pt;}
.ws1_c00221{word-spacing:5.484800pt;}
.ws2_c00221{word-spacing:5.821333pt;}
.ws4_c00221{word-spacing:14.006667pt;}
.ws0_c00221{word-spacing:69.481600pt;}
._14_c00221{margin-left:-7.185173pt;}
._11_c00221{margin-left:-5.802293pt;}
._12_c00221{margin-left:-4.538080pt;}
._10_c00221{margin-left:-3.646133pt;}
._13_c00221{margin-left:-2.641067pt;}
._a_c00221{margin-left:-1.675413pt;}
._c_c00221{width:1.862240pt;}
._f_c00221{width:2.908053pt;}
._b_c00221{width:3.953493pt;}
._9_c00221{width:5.623040pt;}
._15_c00221{width:6.535733pt;}
._7_c00221{width:7.804533pt;}
._6_c00221{width:9.736000pt;}
._5_c00221{width:10.896427pt;}
._8_c00221{width:12.710240pt;}
._17_c00221{width:13.644373pt;}
._16_c00221{width:14.909707pt;}
._18_c00221{width:18.254773pt;}
._2_c00221{width:19.707200pt;}
._d_c00221{width:21.274133pt;}
._3_c00221{width:22.389067pt;}
._e_c00221{width:23.895733pt;}
._1_c00221{width:24.902187pt;}
._0_c00221{width:26.649920pt;}
._4_c00221{width:30.374400pt;}
.fs6_c00221{font-size:46.080000pt;}
.fs8_c00221{font-size:51.733333pt;}
.fs1_c00221{font-size:58.666667pt;}
.fs0_c00221{font-size:59.733333pt;}
.fs2_c00221{font-size:60.266667pt;}
.fs7_c00221{font-size:60.800000pt;}
.fs4_c00221{font-size:61.333333pt;}
.fs5_c00221{font-size:66.666667pt;}
.fs3_c00221{font-size:68.266667pt;}
.y0_c00221{bottom:0.000000pt;}
.y1e_c00221{bottom:59.853333pt;}
.y1d_c00221{bottom:127.680400pt;}
.y1c_c00221{bottom:155.836933pt;}
.y1b_c00221{bottom:210.890533pt;}
.y1a_c00221{bottom:266.896267pt;}
.y19_c00221{bottom:323.531867pt;}
.y18_c00221{bottom:351.360000pt;}
.y17_c00221{bottom:406.397200pt;}
.y16_c00221{bottom:434.571867pt;}
.y15_c00221{bottom:462.400000pt;}
.y13_c00221{bottom:517.770133pt;}
.y14_c00221{bottom:517.773333pt;}
.y12_c00221{bottom:545.613333pt;}
.y11_c00221{bottom:601.280000pt;}
.y10_c00221{bottom:601.286533pt;}
.yf_c00221{bottom:628.810133pt;}
.yd_c00221{bottom:656.651867pt;}
.ye_c00221{bottom:656.653333pt;}
.yc_c00221{bottom:684.480000pt;}
.yb_c00221{bottom:739.853333pt;}
.ya_c00221{bottom:768.320000pt;}
.y9_c00221{bottom:824.950000pt;}
.y8_c00221{bottom:852.476800pt;}
.y7_c00221{bottom:880.323333pt;}
.y6_c00221{bottom:907.850133pt;}
.y4_c00221{bottom:935.690133pt;}
.y5_c00221{bottom:935.693333pt;}
.y3_c00221{bottom:963.530133pt;}
.y2_c00221{bottom:991.373333pt;}
.y1_c00221{bottom:1059.533333pt;}
.h9_c00221{height:30.689280pt;}
.hc_c00221{height:50.773437pt;}
.h2_c00221{height:58.625000pt;}
.h3_c00221{height:59.148438pt;}
.hb_c00221{height:59.160704pt;}
.h4_c00221{height:59.161237pt;}
.h6_c00221{height:60.165365pt;}
.ha_c00221{height:61.263267pt;}
.h8_c00221{height:62.856250pt;}
.h7_c00221{height:65.429688pt;}
.h5_c00221{height:71.200000pt;}
.h1_c00221{height:1122.666667pt;}
.h0_c00221{height:1122.880000pt;}
.w1_c00221{width:793.333333pt;}
.w0_c00221{width:793.600000pt;}
.x0_c00221{left:0.000000pt;}
.x1a_c00221{left:104.497467pt;}
.xf_c00221{left:105.770800pt;}
.x6_c00221{left:107.415067pt;}
.x3_c00221{left:108.462133pt;}
.x1_c00221{left:110.013333pt;}
.xa_c00221{left:126.680000pt;}
.xb_c00221{left:150.960000pt;}
.x19_c00221{left:152.786667pt;}
.x11_c00221{left:153.826667pt;}
.x7_c00221{left:155.013333pt;}
.x2_c00221{left:156.933333pt;}
.x13_c00221{left:162.906667pt;}
.x12_c00221{left:179.040000pt;}
.x14_c00221{left:188.093333pt;}
.xc_c00221{left:189.040000pt;}
.x4_c00221{left:268.000000pt;}
.x5_c00221{left:286.693333pt;}
.x15_c00221{left:289.306667pt;}
.x16_c00221{left:320.160000pt;}
.x1b_c00221{left:375.546667pt;}
.x10_c00221{left:470.826667pt;}
.x17_c00221{left:498.573333pt;}
.x8_c00221{left:523.160000pt;}
.x9_c00221{left:553.146667pt;}
.x18_c00221{left:587.053333pt;}
.xd_c00221{left:625.946667pt;}
.xe_c00221{left:652.133333pt;}
}





/* 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_c00222 {
    display:none;
  }
  .loading-indicator_c00222.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00222 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_c00222 { 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_c00222" -> "#page-container .classname_c00222")
 */
.pf_c00222 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00222 { /* 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_c00222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00222 { /* 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_c00222 { /* 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_c00222 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00222 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00222 {overflow:visible;}
  }
}
.c_c00222 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00222 { /* 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_c00222:after { /* webkit #35443 */
  content: '';
}
.t_c00222:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00222 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 */
}
.__c00222 { /* 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_c00222 { /* info for Javascript */
  display:none;
}
.l_c00222 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00222 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00222 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00222: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_c00222 {
    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_c00222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00222.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_c00222 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00222;src:url('chunks/assets/font_405851c596e1bfb553fd2a91.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.284180;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_c00222;src:url('chunks/assets/font_3c51df77bb77cd58d25967ff.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.284668;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_c00222;src:url('chunks/assets/font_56851a08df0c5af08d104005.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00222{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);}
.v0_c00222{vertical-align:0.000000px;}
.ls6_c00222{letter-spacing:-1.392840px;}
.lsc_c00222{letter-spacing:-0.982260px;}
.ls9_c00222{letter-spacing:0.000000px;}
.lsa_c00222{letter-spacing:0.330720px;}
.ls0_c00222{letter-spacing:0.769560px;}
.ls3_c00222{letter-spacing:0.871320px;}
.ls8_c00222{letter-spacing:0.960360px;}
.ls2_c00222{letter-spacing:0.973080px;}
.lsb_c00222{letter-spacing:1.074840px;}
.ls4_c00222{letter-spacing:1.265640px;}
.ls7_c00222{letter-spacing:1.278360px;}
.ls1_c00222{letter-spacing:1.291080px;}
.ls5_c00222{letter-spacing:2.041560px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{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__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00222{word-spacing:-0.267120px;}
.ws4_c00222{word-spacing:0.000000px;}
.ws3_c00222{word-spacing:1.615440px;}
.ws2_c00222{word-spacing:1.793520px;}
.ws0_c00222{word-spacing:5.634960px;}
._1_c00222{margin-left:-3.364440px;}
._0_c00222{margin-left:-2.092440px;}
.fc0_c00222{color:transparent;}
.fs1_c00222{font-size:63.000000px;}
.fs0_c00222{font-size:63.600000px;}
.fs2_c00222{font-size:64.200000px;}
.y0_c00222{bottom:0.000000px;}
.y2_c00222{bottom:151.205706px;}
.y4_c00222{bottom:151.555506px;}
.y1_c00222{bottom:169.920006px;}
.y3_c00222{bottom:308.535006px;}
.y5_c00222{bottom:1149.480006px;}
.h3_c00222{height:61.831055px;}
.h2_c00222{height:62.388867px;}
.h4_c00222{height:64.701562px;}
.h1_c00222{height:1263.000000px;}
.h0_c00222{height:1263.240006px;}
.w1_c00222{width:892.500000px;}
.w0_c00222{width:892.799998px;}
.x0_c00222{left:0.000000px;}
.x2_c00222{left:119.825398px;}
.x1_c00222{left:122.114998px;}
.x4_c00222{left:333.569998px;}
.x3_c00222{left:423.539999px;}
.x5_c00222{left:670.604998px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls6_c00222{letter-spacing:-1.238080pt;}
.lsc_c00222{letter-spacing:-0.873120pt;}
.ls9_c00222{letter-spacing:0.000000pt;}
.lsa_c00222{letter-spacing:0.293973pt;}
.ls0_c00222{letter-spacing:0.684053pt;}
.ls3_c00222{letter-spacing:0.774507pt;}
.ls8_c00222{letter-spacing:0.853653pt;}
.ls2_c00222{letter-spacing:0.864960pt;}
.lsb_c00222{letter-spacing:0.955413pt;}
.ls4_c00222{letter-spacing:1.125013pt;}
.ls7_c00222{letter-spacing:1.136320pt;}
.ls1_c00222{letter-spacing:1.147627pt;}
.ls5_c00222{letter-spacing:1.814720pt;}
.ws1_c00222{word-spacing:-0.237440pt;}
.ws4_c00222{word-spacing:0.000000pt;}
.ws3_c00222{word-spacing:1.435947pt;}
.ws2_c00222{word-spacing:1.594240pt;}
.ws0_c00222{word-spacing:5.008853pt;}
._1_c00222{margin-left:-2.990613pt;}
._0_c00222{margin-left:-1.859947pt;}
.fs1_c00222{font-size:56.000000pt;}
.fs0_c00222{font-size:56.533333pt;}
.fs2_c00222{font-size:57.066667pt;}
.y0_c00222{bottom:0.000000pt;}
.y2_c00222{bottom:134.405072pt;}
.y4_c00222{bottom:134.716005pt;}
.y1_c00222{bottom:151.040005pt;}
.y3_c00222{bottom:274.253339pt;}
.y5_c00222{bottom:1021.760005pt;}
.h3_c00222{height:54.960938pt;}
.h2_c00222{height:55.456771pt;}
.h4_c00222{height:57.512500pt;}
.h1_c00222{height:1122.666667pt;}
.h0_c00222{height:1122.880005pt;}
.w1_c00222{width:793.333333pt;}
.w0_c00222{width:793.599999pt;}
.x0_c00222{left:0.000000pt;}
.x2_c00222{left:106.511465pt;}
.x1_c00222{left:108.546665pt;}
.x4_c00222{left:296.506665pt;}
.x3_c00222{left:376.479999pt;}
.x5_c00222{left:596.093332pt;}
}





/* 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_c00223 {
    display:none;
  }
  .loading-indicator_c00223.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00223 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_c00223 { 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_c00223" -> "#page-container .classname_c00223")
 */
.pf_c00223 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00223 { /* 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_c00223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00223 { /* 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_c00223 { /* 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_c00223 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00223 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00223 {overflow:visible;}
  }
}
.c_c00223 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00223 { /* 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_c00223:after { /* webkit #35443 */
  content: '';
}
.t_c00223:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00223 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 */
}
.__c00223 { /* 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_c00223 { /* info for Javascript */
  display:none;
}
.l_c00223 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00223 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00223 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00223: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_c00223 {
    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_c00223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00223.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_c00223 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00223;src:url('chunks/assets/font_706db5288dd7d9f160b2301f.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.284668;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_c00223;src:url('chunks/assets/font_b6669f29668d1d3fc5a9c926.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.284180;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_c00223;src:url('chunks/assets/font_a988145461d55af1d29271f8.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.284180;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_c00223;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;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;}
.m3_c00223{transform:matrix(0.226348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226348,0.000000,0.000000,0.250000,0,0);}
.m1_c00223{transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);}
.m4_c00223{transform:matrix(0.248538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248538,0.000000,0.000000,0.250000,0,0);}
.m5_c00223{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m0_c00223{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);}
.m2_c00223{transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls97_c00223{letter-spacing:-2.478000px;}
.ls76_c00223{letter-spacing:-2.373000px;}
.ls93_c00223{letter-spacing:-2.100000px;}
.ls65_c00223{letter-spacing:-1.891620px;}
.ls7a_c00223{letter-spacing:-1.796700px;}
.ls83_c00223{letter-spacing:-1.701780px;}
.ls96_c00223{letter-spacing:-1.621320px;}
.ls6e_c00223{letter-spacing:-1.613640px;}
.ls89_c00223{letter-spacing:-1.458480px;}
.ls8f_c00223{letter-spacing:-1.417020px;}
.ls98_c00223{letter-spacing:-1.416000px;}
.ls6b_c00223{letter-spacing:-1.410240px;}
.ls6f_c00223{letter-spacing:-1.403460px;}
.ls63_c00223{letter-spacing:-1.349220px;}
.ls7d_c00223{letter-spacing:-1.247520px;}
.ls85_c00223{letter-spacing:-1.246080px;}
.ls72_c00223{letter-spacing:-1.240740px;}
.ls87_c00223{letter-spacing:-1.231920px;}
.ls6d_c00223{letter-spacing:-1.220400px;}
.ls9a_c00223{letter-spacing:-1.078020px;}
.ls64_c00223{letter-spacing:-1.071240px;}
.ls67_c00223{letter-spacing:-1.057680px;}
.ls99_c00223{letter-spacing:-1.040760px;}
.ls92_c00223{letter-spacing:-1.023780px;}
.ls66_c00223{letter-spacing:-1.010220px;}
.ls88_c00223{letter-spacing:-0.906240px;}
.ls6a_c00223{letter-spacing:-0.894960px;}
.ls9b_c00223{letter-spacing:-0.847500px;}
.ls9e_c00223{letter-spacing:-0.823680px;}
.ls8b_c00223{letter-spacing:-0.786480px;}
.ls94_c00223{letter-spacing:-0.766140px;}
.ls69_c00223{letter-spacing:-0.739020px;}
.ls9d_c00223{letter-spacing:-0.705120px;}
.ls86_c00223{letter-spacing:-0.637200px;}
.ls7b_c00223{letter-spacing:-0.623760px;}
.ls75_c00223{letter-spacing:-0.596640px;}
.ls8a_c00223{letter-spacing:-0.576300px;}
.ls73_c00223{letter-spacing:-0.569520px;}
.ls80_c00223{letter-spacing:-0.549180px;}
.ls78_c00223{letter-spacing:-0.522060px;}
.ls91_c00223{letter-spacing:-0.372900px;}
.ls6c_c00223{letter-spacing:-0.359340px;}
.ls7e_c00223{letter-spacing:-0.345780px;}
.ls8e_c00223{letter-spacing:-0.318660px;}
.ls77_c00223{letter-spacing:-0.311880px;}
.ls81_c00223{letter-spacing:-0.264420px;}
.ls7f_c00223{letter-spacing:-0.250860px;}
.ls95_c00223{letter-spacing:-0.244080px;}
.ls62_c00223{letter-spacing:-0.230520px;}
.ls79_c00223{letter-spacing:-0.210180px;}
.ls8d_c00223{letter-spacing:-0.162720px;}
.ls74_c00223{letter-spacing:-0.135600px;}
.ls90_c00223{letter-spacing:-0.128820px;}
.ls71_c00223{letter-spacing:-0.088140px;}
.ls68_c00223{letter-spacing:-0.013560px;}
.ls70_c00223{letter-spacing:0.000000px;}
.ls21_c00223{letter-spacing:0.020340px;}
.ls42_c00223{letter-spacing:0.028320px;}
.ls17_c00223{letter-spacing:0.033900px;}
.ls2d_c00223{letter-spacing:0.040680px;}
.ls5b_c00223{letter-spacing:0.081360px;}
.ls2a_c00223{letter-spacing:0.101700px;}
.ls44_c00223{letter-spacing:0.108480px;}
.ls4a_c00223{letter-spacing:0.128820px;}
.lsf_c00223{letter-spacing:0.142380px;}
.ls13_c00223{letter-spacing:0.155940px;}
.ls4b_c00223{letter-spacing:0.169500px;}
.ls53_c00223{letter-spacing:0.183060px;}
.ls47_c00223{letter-spacing:0.196620px;}
.ls20_c00223{letter-spacing:0.210180px;}
.ls1e_c00223{letter-spacing:0.223740px;}
.ls3d_c00223{letter-spacing:0.230520px;}
.lsa_c00223{letter-spacing:0.237300px;}
.ls36_c00223{letter-spacing:0.244080px;}
.ls3c_c00223{letter-spacing:0.264420px;}
.ls3_c00223{letter-spacing:0.311880px;}
.ls23_c00223{letter-spacing:0.332220px;}
.ls6_c00223{letter-spacing:0.339000px;}
.ls84_c00223{letter-spacing:0.359340px;}
.ls2_c00223{letter-spacing:0.372900px;}
.ls1d_c00223{letter-spacing:0.386460px;}
.ls5_c00223{letter-spacing:0.393240px;}
.ls58_c00223{letter-spacing:0.413580px;}
.ls34_c00223{letter-spacing:0.447480px;}
.ls5d_c00223{letter-spacing:0.454260px;}
.ls12_c00223{letter-spacing:0.461040px;}
.ls40_c00223{letter-spacing:0.474600px;}
.ls2b_c00223{letter-spacing:0.494940px;}
.ls27_c00223{letter-spacing:0.501720px;}
.ls37_c00223{letter-spacing:0.508500px;}
.ls14_c00223{letter-spacing:0.515280px;}
.ls51_c00223{letter-spacing:0.535620px;}
.ls0_c00223{letter-spacing:0.540360px;}
.ls33_c00223{letter-spacing:0.555960px;}
.ls2e_c00223{letter-spacing:0.562740px;}
.ls52_c00223{letter-spacing:0.569520px;}
.ls3a_c00223{letter-spacing:0.589860px;}
.ls2c_c00223{letter-spacing:0.596640px;}
.ls48_c00223{letter-spacing:0.603420px;}
.ls10_c00223{letter-spacing:0.616980px;}
.ls29_c00223{letter-spacing:0.623760px;}
.ls18_c00223{letter-spacing:0.630540px;}
.ls7_c00223{letter-spacing:0.637320px;}
.ls32_c00223{letter-spacing:0.664440px;}
.ls55_c00223{letter-spacing:0.671220px;}
.ls9_c00223{letter-spacing:0.678000px;}
.ls50_c00223{letter-spacing:0.684780px;}
.ls8c_c00223{letter-spacing:0.698340px;}
.ls3b_c00223{letter-spacing:0.705120px;}
.ls60_c00223{letter-spacing:0.711900px;}
.ls19_c00223{letter-spacing:0.718680px;}
.ls1_c00223{letter-spacing:0.725040px;}
.ls4d_c00223{letter-spacing:0.732240px;}
.ls1a_c00223{letter-spacing:0.739020px;}
.ls3f_c00223{letter-spacing:0.766140px;}
.ls15_c00223{letter-spacing:0.779700px;}
.ls1c_c00223{letter-spacing:0.786480px;}
.ls9c_c00223{letter-spacing:0.806820px;}
.lsd_c00223{letter-spacing:0.813600px;}
.ls16_c00223{letter-spacing:0.820380px;}
.ls8_c00223{letter-spacing:0.827160px;}
.ls4c_c00223{letter-spacing:0.833940px;}
.ls24_c00223{letter-spacing:0.840720px;}
.lsb_c00223{letter-spacing:0.847500px;}
.ls4e_c00223{letter-spacing:0.854280px;}
.ls54_c00223{letter-spacing:0.874620px;}
.ls41_c00223{letter-spacing:0.881400px;}
.ls82_c00223{letter-spacing:0.888180px;}
.lse_c00223{letter-spacing:0.894960px;}
.ls43_c00223{letter-spacing:0.901740px;}
.ls11_c00223{letter-spacing:0.908520px;}
.ls4f_c00223{letter-spacing:0.935640px;}
.ls39_c00223{letter-spacing:0.942420px;}
.ls1f_c00223{letter-spacing:0.955980px;}
.ls30_c00223{letter-spacing:1.017000px;}
.ls59_c00223{letter-spacing:1.023780px;}
.ls1b_c00223{letter-spacing:1.044120px;}
.ls26_c00223{letter-spacing:1.064460px;}
.ls5a_c00223{letter-spacing:1.091580px;}
.ls4_c00223{letter-spacing:1.098360px;}
.ls2f_c00223{letter-spacing:1.105140px;}
.ls28_c00223{letter-spacing:1.125480px;}
.ls25_c00223{letter-spacing:1.193280px;}
.ls3e_c00223{letter-spacing:1.213620px;}
.ls56_c00223{letter-spacing:1.254300px;}
.lsc_c00223{letter-spacing:1.294980px;}
.ls5e_c00223{letter-spacing:1.301760px;}
.ls57_c00223{letter-spacing:1.349220px;}
.ls38_c00223{letter-spacing:1.444140px;}
.ls31_c00223{letter-spacing:1.457700px;}
.ls35_c00223{letter-spacing:1.505160px;}
.ls61_c00223{letter-spacing:1.557420px;}
.ls49_c00223{letter-spacing:1.640760px;}
.ls45_c00223{letter-spacing:1.674660px;}
.ls5f_c00223{letter-spacing:1.911960px;}
.ls46_c00223{letter-spacing:2.203500px;}
.ls22_c00223{letter-spacing:2.678100px;}
.ls5c_c00223{letter-spacing:3.376440px;}
.ls7c_c00223{letter-spacing:3.390000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{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__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00223{word-spacing:0.000000px;}
.ws0_c00223{word-spacing:1.966200px;}
.ws2_c00223{word-spacing:19.119600px;}
.ws1_c00223{word-spacing:29.248920px;}
.ws3_c00223{word-spacing:32.895720px;}
._b_c00223{margin-left:-1.397280px;}
._a_c00223{width:1.011420px;}
._0_c00223{width:2.181960px;}
._f_c00223{width:3.315720px;}
._2_c00223{width:4.317360px;}
._1_c00223{width:5.934000px;}
._6_c00223{width:7.185300px;}
._4_c00223{width:8.803440px;}
._1d_c00223{width:9.812220px;}
._9_c00223{width:10.922580px;}
._7_c00223{width:12.339600px;}
._3_c00223{width:13.865100px;}
._11_c00223{width:15.401940px;}
._5_c00223{width:16.677300px;}
._10_c00223{width:18.600540px;}
._8_c00223{width:20.099700px;}
._d_c00223{width:21.418740px;}
._c_c00223{width:22.786800px;}
._1b_c00223{width:24.394440px;}
._e_c00223{width:26.184360px;}
._1c_c00223{width:29.258400px;}
._1a_c00223{width:30.347280px;}
._19_c00223{width:31.371060px;}
._13_c00223{width:33.162720px;}
._17_c00223{width:34.399260px;}
._14_c00223{width:35.895600px;}
._12_c00223{width:38.175360px;}
._15_c00223{width:39.980160px;}
._18_c00223{width:41.041680px;}
._16_c00223{width:43.155420px;}
.fc0_c00223{color:transparent;}
.fs7_c00223{font-size:57.600000px;}
.fs6_c00223{font-size:60.000000px;}
.fs0_c00223{font-size:60.600000px;}
.fs5_c00223{font-size:67.200000px;}
.fs2_c00223{font-size:67.800000px;}
.fs1_c00223{font-size:68.400000px;}
.fs4_c00223{font-size:70.800000px;}
.fs3_c00223{font-size:73.800000px;}
.y0_c00223{bottom:0.000000px;}
.y1f_c00223{bottom:73.815015px;}
.y1e_c00223{bottom:149.765265px;}
.y1d_c00223{bottom:180.360015px;}
.y1c_c00223{bottom:211.695015px;}
.y1a_c00223{bottom:275.407365px;}
.y1b_c00223{bottom:275.415015px;}
.y19_c00223{bottom:306.375015px;}
.y17_c00223{bottom:337.690215px;}
.y18_c00223{bottom:337.695015px;}
.y16_c00223{bottom:401.049315px;}
.y15_c00223{bottom:431.994465px;}
.y14_c00223{bottom:463.327365px;}
.y13_c00223{bottom:494.295015px;}
.y12_c00223{bottom:525.255015px;}
.y11_c00223{bottom:556.575015px;}
.y10_c00223{bottom:587.873415px;}
.yf_c00223{bottom:619.197015px;}
.ye_c00223{bottom:650.164665px;}
.yd_c00223{bottom:712.811865px;}
.yc_c00223{bottom:744.474465px;}
.yb_c00223{bottom:775.815015px;}
.ya_c00223{bottom:807.122115px;}
.y9_c00223{bottom:869.769315px;}
.y7_c00223{bottom:900.716565px;}
.y8_c00223{bottom:900.720015px;}
.y6_c00223{bottom:962.990865px;}
.y5_c00223{bottom:994.331415px;}
.y4_c00223{bottom:1025.655015px;}
.y3_c00223{bottom:1087.200465px;}
.y2_c00223{bottom:1118.880015px;}
.y1_c00223{bottom:1194.480015px;}
.hc_c00223{height:56.531250px;}
.hb_c00223{height:58.886719px;}
.h2_c00223{height:59.475586px;}
.h4_c00223{height:66.541992px;}
.ha_c00223{height:66.561192px;}
.h8_c00223{height:66.572592px;}
.h5_c00223{height:66.595287px;}
.h3_c00223{height:67.097461px;}
.h7_c00223{height:69.486328px;}
.h9_c00223{height:70.109700px;}
.h6_c00223{height:72.430664px;}
.h1_c00223{height:1263.000000px;}
.h0_c00223{height:1263.240015px;}
.w1_c00223{width:892.500000px;}
.w0_c00223{width:892.800015px;}
.x0_c00223{left:0.000000px;}
.x14_c00223{left:116.253915px;}
.xe_c00223{left:117.956415px;}
.x1_c00223{left:119.085015px;}
.x6_c00223{left:147.420015px;}
.x10_c00223{left:170.775015px;}
.x8_c00223{left:171.881865px;}
.x7_c00223{left:173.014515px;}
.x3_c00223{left:174.149865px;}
.xf_c00223{left:232.470015px;}
.x2_c00223{left:264.270015px;}
.x15_c00223{left:419.985015px;}
.x9_c00223{left:459.270015px;}
.xa_c00223{left:496.290015px;}
.x11_c00223{left:509.355015px;}
.xc_c00223{left:511.830015px;}
.xd_c00223{left:550.995015px;}
.x12_c00223{left:554.955015px;}
.x4_c00223{left:579.750015px;}
.x13_c00223{left:583.020015px;}
.x5_c00223{left:595.605015px;}
.xb_c00223{left:715.950015px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls97_c00223{letter-spacing:-2.202667pt;}
.ls76_c00223{letter-spacing:-2.109333pt;}
.ls93_c00223{letter-spacing:-1.866667pt;}
.ls65_c00223{letter-spacing:-1.681440pt;}
.ls7a_c00223{letter-spacing:-1.597067pt;}
.ls83_c00223{letter-spacing:-1.512693pt;}
.ls96_c00223{letter-spacing:-1.441173pt;}
.ls6e_c00223{letter-spacing:-1.434347pt;}
.ls89_c00223{letter-spacing:-1.296427pt;}
.ls8f_c00223{letter-spacing:-1.259573pt;}
.ls98_c00223{letter-spacing:-1.258667pt;}
.ls6b_c00223{letter-spacing:-1.253547pt;}
.ls6f_c00223{letter-spacing:-1.247520pt;}
.ls63_c00223{letter-spacing:-1.199307pt;}
.ls7d_c00223{letter-spacing:-1.108907pt;}
.ls85_c00223{letter-spacing:-1.107627pt;}
.ls72_c00223{letter-spacing:-1.102880pt;}
.ls87_c00223{letter-spacing:-1.095040pt;}
.ls6d_c00223{letter-spacing:-1.084800pt;}
.ls9a_c00223{letter-spacing:-0.958240pt;}
.ls64_c00223{letter-spacing:-0.952213pt;}
.ls67_c00223{letter-spacing:-0.940160pt;}
.ls99_c00223{letter-spacing:-0.925120pt;}
.ls92_c00223{letter-spacing:-0.910027pt;}
.ls66_c00223{letter-spacing:-0.897973pt;}
.ls88_c00223{letter-spacing:-0.805547pt;}
.ls6a_c00223{letter-spacing:-0.795520pt;}
.ls9b_c00223{letter-spacing:-0.753333pt;}
.ls9e_c00223{letter-spacing:-0.732160pt;}
.ls8b_c00223{letter-spacing:-0.699093pt;}
.ls94_c00223{letter-spacing:-0.681013pt;}
.ls69_c00223{letter-spacing:-0.656907pt;}
.ls9d_c00223{letter-spacing:-0.626773pt;}
.ls86_c00223{letter-spacing:-0.566400pt;}
.ls7b_c00223{letter-spacing:-0.554453pt;}
.ls75_c00223{letter-spacing:-0.530347pt;}
.ls8a_c00223{letter-spacing:-0.512267pt;}
.ls73_c00223{letter-spacing:-0.506240pt;}
.ls80_c00223{letter-spacing:-0.488160pt;}
.ls78_c00223{letter-spacing:-0.464053pt;}
.ls91_c00223{letter-spacing:-0.331467pt;}
.ls6c_c00223{letter-spacing:-0.319413pt;}
.ls7e_c00223{letter-spacing:-0.307360pt;}
.ls8e_c00223{letter-spacing:-0.283253pt;}
.ls77_c00223{letter-spacing:-0.277227pt;}
.ls81_c00223{letter-spacing:-0.235040pt;}
.ls7f_c00223{letter-spacing:-0.222987pt;}
.ls95_c00223{letter-spacing:-0.216960pt;}
.ls62_c00223{letter-spacing:-0.204907pt;}
.ls79_c00223{letter-spacing:-0.186827pt;}
.ls8d_c00223{letter-spacing:-0.144640pt;}
.ls74_c00223{letter-spacing:-0.120533pt;}
.ls90_c00223{letter-spacing:-0.114507pt;}
.ls71_c00223{letter-spacing:-0.078347pt;}
.ls68_c00223{letter-spacing:-0.012053pt;}
.ls70_c00223{letter-spacing:0.000000pt;}
.ls21_c00223{letter-spacing:0.018080pt;}
.ls42_c00223{letter-spacing:0.025173pt;}
.ls17_c00223{letter-spacing:0.030133pt;}
.ls2d_c00223{letter-spacing:0.036160pt;}
.ls5b_c00223{letter-spacing:0.072320pt;}
.ls2a_c00223{letter-spacing:0.090400pt;}
.ls44_c00223{letter-spacing:0.096427pt;}
.ls4a_c00223{letter-spacing:0.114507pt;}
.lsf_c00223{letter-spacing:0.126560pt;}
.ls13_c00223{letter-spacing:0.138613pt;}
.ls4b_c00223{letter-spacing:0.150667pt;}
.ls53_c00223{letter-spacing:0.162720pt;}
.ls47_c00223{letter-spacing:0.174773pt;}
.ls20_c00223{letter-spacing:0.186827pt;}
.ls1e_c00223{letter-spacing:0.198880pt;}
.ls3d_c00223{letter-spacing:0.204907pt;}
.lsa_c00223{letter-spacing:0.210933pt;}
.ls36_c00223{letter-spacing:0.216960pt;}
.ls3c_c00223{letter-spacing:0.235040pt;}
.ls3_c00223{letter-spacing:0.277227pt;}
.ls23_c00223{letter-spacing:0.295307pt;}
.ls6_c00223{letter-spacing:0.301333pt;}
.ls84_c00223{letter-spacing:0.319413pt;}
.ls2_c00223{letter-spacing:0.331467pt;}
.ls1d_c00223{letter-spacing:0.343520pt;}
.ls5_c00223{letter-spacing:0.349547pt;}
.ls58_c00223{letter-spacing:0.367627pt;}
.ls34_c00223{letter-spacing:0.397760pt;}
.ls5d_c00223{letter-spacing:0.403787pt;}
.ls12_c00223{letter-spacing:0.409813pt;}
.ls40_c00223{letter-spacing:0.421867pt;}
.ls2b_c00223{letter-spacing:0.439947pt;}
.ls27_c00223{letter-spacing:0.445973pt;}
.ls37_c00223{letter-spacing:0.452000pt;}
.ls14_c00223{letter-spacing:0.458027pt;}
.ls51_c00223{letter-spacing:0.476107pt;}
.ls0_c00223{letter-spacing:0.480320pt;}
.ls33_c00223{letter-spacing:0.494187pt;}
.ls2e_c00223{letter-spacing:0.500213pt;}
.ls52_c00223{letter-spacing:0.506240pt;}
.ls3a_c00223{letter-spacing:0.524320pt;}
.ls2c_c00223{letter-spacing:0.530347pt;}
.ls48_c00223{letter-spacing:0.536373pt;}
.ls10_c00223{letter-spacing:0.548427pt;}
.ls29_c00223{letter-spacing:0.554453pt;}
.ls18_c00223{letter-spacing:0.560480pt;}
.ls7_c00223{letter-spacing:0.566507pt;}
.ls32_c00223{letter-spacing:0.590613pt;}
.ls55_c00223{letter-spacing:0.596640pt;}
.ls9_c00223{letter-spacing:0.602667pt;}
.ls50_c00223{letter-spacing:0.608693pt;}
.ls8c_c00223{letter-spacing:0.620747pt;}
.ls3b_c00223{letter-spacing:0.626773pt;}
.ls60_c00223{letter-spacing:0.632800pt;}
.ls19_c00223{letter-spacing:0.638827pt;}
.ls1_c00223{letter-spacing:0.644480pt;}
.ls4d_c00223{letter-spacing:0.650880pt;}
.ls1a_c00223{letter-spacing:0.656907pt;}
.ls3f_c00223{letter-spacing:0.681013pt;}
.ls15_c00223{letter-spacing:0.693067pt;}
.ls1c_c00223{letter-spacing:0.699093pt;}
.ls9c_c00223{letter-spacing:0.717173pt;}
.lsd_c00223{letter-spacing:0.723200pt;}
.ls16_c00223{letter-spacing:0.729227pt;}
.ls8_c00223{letter-spacing:0.735253pt;}
.ls4c_c00223{letter-spacing:0.741280pt;}
.ls24_c00223{letter-spacing:0.747307pt;}
.lsb_c00223{letter-spacing:0.753333pt;}
.ls4e_c00223{letter-spacing:0.759360pt;}
.ls54_c00223{letter-spacing:0.777440pt;}
.ls41_c00223{letter-spacing:0.783467pt;}
.ls82_c00223{letter-spacing:0.789493pt;}
.lse_c00223{letter-spacing:0.795520pt;}
.ls43_c00223{letter-spacing:0.801547pt;}
.ls11_c00223{letter-spacing:0.807573pt;}
.ls4f_c00223{letter-spacing:0.831680pt;}
.ls39_c00223{letter-spacing:0.837707pt;}
.ls1f_c00223{letter-spacing:0.849760pt;}
.ls30_c00223{letter-spacing:0.904000pt;}
.ls59_c00223{letter-spacing:0.910027pt;}
.ls1b_c00223{letter-spacing:0.928107pt;}
.ls26_c00223{letter-spacing:0.946187pt;}
.ls5a_c00223{letter-spacing:0.970293pt;}
.ls4_c00223{letter-spacing:0.976320pt;}
.ls2f_c00223{letter-spacing:0.982347pt;}
.ls28_c00223{letter-spacing:1.000427pt;}
.ls25_c00223{letter-spacing:1.060693pt;}
.ls3e_c00223{letter-spacing:1.078773pt;}
.ls56_c00223{letter-spacing:1.114933pt;}
.lsc_c00223{letter-spacing:1.151093pt;}
.ls5e_c00223{letter-spacing:1.157120pt;}
.ls57_c00223{letter-spacing:1.199307pt;}
.ls38_c00223{letter-spacing:1.283680pt;}
.ls31_c00223{letter-spacing:1.295733pt;}
.ls35_c00223{letter-spacing:1.337920pt;}
.ls61_c00223{letter-spacing:1.384373pt;}
.ls49_c00223{letter-spacing:1.458453pt;}
.ls45_c00223{letter-spacing:1.488587pt;}
.ls5f_c00223{letter-spacing:1.699520pt;}
.ls46_c00223{letter-spacing:1.958667pt;}
.ls22_c00223{letter-spacing:2.380533pt;}
.ls5c_c00223{letter-spacing:3.001280pt;}
.ls7c_c00223{letter-spacing:3.013333pt;}
.ws4_c00223{word-spacing:0.000000pt;}
.ws0_c00223{word-spacing:1.747733pt;}
.ws2_c00223{word-spacing:16.995200pt;}
.ws1_c00223{word-spacing:25.999040pt;}
.ws3_c00223{word-spacing:29.240640pt;}
._b_c00223{margin-left:-1.242027pt;}
._a_c00223{width:0.899040pt;}
._0_c00223{width:1.939520pt;}
._f_c00223{width:2.947307pt;}
._2_c00223{width:3.837653pt;}
._1_c00223{width:5.274667pt;}
._6_c00223{width:6.386933pt;}
._4_c00223{width:7.825280pt;}
._1d_c00223{width:8.721973pt;}
._9_c00223{width:9.708960pt;}
._7_c00223{width:10.968533pt;}
._3_c00223{width:12.324533pt;}
._11_c00223{width:13.690613pt;}
._5_c00223{width:14.824267pt;}
._10_c00223{width:16.533813pt;}
._8_c00223{width:17.866400pt;}
._d_c00223{width:19.038880pt;}
._c_c00223{width:20.254933pt;}
._1b_c00223{width:21.683947pt;}
._e_c00223{width:23.274987pt;}
._1c_c00223{width:26.007467pt;}
._1a_c00223{width:26.975360pt;}
._19_c00223{width:27.885387pt;}
._13_c00223{width:29.477973pt;}
._17_c00223{width:30.577120pt;}
._14_c00223{width:31.907200pt;}
._12_c00223{width:33.933653pt;}
._15_c00223{width:35.537920pt;}
._18_c00223{width:36.481493pt;}
._16_c00223{width:38.360373pt;}
.fs7_c00223{font-size:51.200000pt;}
.fs6_c00223{font-size:53.333333pt;}
.fs0_c00223{font-size:53.866667pt;}
.fs5_c00223{font-size:59.733333pt;}
.fs2_c00223{font-size:60.266667pt;}
.fs1_c00223{font-size:60.800000pt;}
.fs4_c00223{font-size:62.933333pt;}
.fs3_c00223{font-size:65.600000pt;}
.y0_c00223{bottom:0.000000pt;}
.y1f_c00223{bottom:65.613347pt;}
.y1e_c00223{bottom:133.124680pt;}
.y1d_c00223{bottom:160.320013pt;}
.y1c_c00223{bottom:188.173347pt;}
.y1a_c00223{bottom:244.806547pt;}
.y1b_c00223{bottom:244.813347pt;}
.y19_c00223{bottom:272.333347pt;}
.y17_c00223{bottom:300.169080pt;}
.y18_c00223{bottom:300.173347pt;}
.y16_c00223{bottom:356.488280pt;}
.y15_c00223{bottom:383.995080pt;}
.y14_c00223{bottom:411.846547pt;}
.y13_c00223{bottom:439.373347pt;}
.y12_c00223{bottom:466.893347pt;}
.y11_c00223{bottom:494.733347pt;}
.y10_c00223{bottom:522.554147pt;}
.yf_c00223{bottom:550.397347pt;}
.ye_c00223{bottom:577.924147pt;}
.yd_c00223{bottom:633.610547pt;}
.yc_c00223{bottom:661.755080pt;}
.yb_c00223{bottom:689.613347pt;}
.ya_c00223{bottom:717.441880pt;}
.y9_c00223{bottom:773.128280pt;}
.y7_c00223{bottom:800.636947pt;}
.y8_c00223{bottom:800.640013pt;}
.y6_c00223{bottom:855.991880pt;}
.y5_c00223{bottom:883.850147pt;}
.y4_c00223{bottom:911.693347pt;}
.y3_c00223{bottom:966.400413pt;}
.y2_c00223{bottom:994.560013pt;}
.y1_c00223{bottom:1061.760013pt;}
.hc_c00223{height:50.250000pt;}
.hb_c00223{height:52.343750pt;}
.h2_c00223{height:52.867187pt;}
.h4_c00223{height:59.148438pt;}
.ha_c00223{height:59.165504pt;}
.h8_c00223{height:59.175638pt;}
.h5_c00223{height:59.195810pt;}
.h3_c00223{height:59.642187pt;}
.h7_c00223{height:61.765625pt;}
.h9_c00223{height:62.319733pt;}
.h6_c00223{height:64.382813pt;}
.h1_c00223{height:1122.666667pt;}
.h0_c00223{height:1122.880013pt;}
.w1_c00223{width:793.333333pt;}
.w0_c00223{width:793.600013pt;}
.x0_c00223{left:0.000000pt;}
.x14_c00223{left:103.336813pt;}
.xe_c00223{left:104.850147pt;}
.x1_c00223{left:105.853347pt;}
.x6_c00223{left:131.040013pt;}
.x10_c00223{left:151.800013pt;}
.x8_c00223{left:152.783880pt;}
.x7_c00223{left:153.790680pt;}
.x3_c00223{left:154.799880pt;}
.xf_c00223{left:206.640013pt;}
.x2_c00223{left:234.906680pt;}
.x15_c00223{left:373.320013pt;}
.x9_c00223{left:408.240013pt;}
.xa_c00223{left:441.146680pt;}
.x11_c00223{left:452.760013pt;}
.xc_c00223{left:454.960013pt;}
.xd_c00223{left:489.773347pt;}
.x12_c00223{left:493.293347pt;}
.x4_c00223{left:515.333347pt;}
.x13_c00223{left:518.240013pt;}
.x5_c00223{left:529.426680pt;}
.xb_c00223{left:636.400013pt;}
}





/* 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_c00224 {
    display:none;
  }
  .loading-indicator_c00224.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00224 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_c00224 { 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_c00224" -> "#page-container .classname_c00224")
 */
.pf_c00224 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00224 { /* 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_c00224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00224 { /* 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_c00224 { /* 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_c00224 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00224 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00224 {overflow:visible;}
  }
}
.c_c00224 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00224 { /* 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_c00224:after { /* webkit #35443 */
  content: '';
}
.t_c00224:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00224 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 */
}
.__c00224 { /* 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_c00224 { /* info for Javascript */
  display:none;
}
.l_c00224 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00224 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00224 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00224: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_c00224 {
    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_c00224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00224.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_c00224 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00224;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.311035;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_c00224;src:url('chunks/assets/font_0665b94a6b191ef1f44262f9.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.284668;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_c00224;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;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:ff4_c00224;src:url('chunks/assets/font_c8331e809525a95d0d0c6396.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.284180;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_c00224;src:url('chunks/assets/font_8d3440afdb647f190f029495.woff2')format("woff");}.ff5_c00224{font-family:ff5_c00224;line-height:1.284180;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;}
.m8_c00224{transform:matrix(0.155560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155560,0.000000,0.000000,0.250000,0,0);}
.m9_c00224{transform:matrix(0.157206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157206,0.000000,0.000000,0.250000,0,0);}
.m7_c00224{transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);}
.ma_c00224{transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);}
.m4_c00224{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m0_c00224{transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);}
.mb_c00224{transform:matrix(0.240160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240160,0.000000,0.000000,0.250000,0,0);}
.m2_c00224{transform:matrix(0.244142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244142,0.000000,0.000000,0.250000,0,0);}
.m6_c00224{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m3_c00224{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m5_c00224{transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);}
.m1_c00224{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);}
.v0_c00224{vertical-align:0.000000px;}
.ls7e_c00224{letter-spacing:-2.919000px;}
.ls76_c00224{letter-spacing:-2.730000px;}
.ls40_c00224{letter-spacing:-2.436000px;}
.ls6c_c00224{letter-spacing:-2.373000px;}
.ls3d_c00224{letter-spacing:-2.310000px;}
.ls63_c00224{letter-spacing:-2.296800px;}
.ls81_c00224{letter-spacing:-2.268000px;}
.ls5f_c00224{letter-spacing:-2.234160px;}
.ls5e_c00224{letter-spacing:-2.136720px;}
.ls69_c00224{letter-spacing:-1.983600px;}
.ls77_c00224{letter-spacing:-1.955760px;}
.ls47_c00224{letter-spacing:-1.823520px;}
.ls62_c00224{letter-spacing:-1.795680px;}
.ls45_c00224{letter-spacing:-1.649520px;}
.ls75_c00224{letter-spacing:-1.628640px;}
.ls43_c00224{letter-spacing:-1.531200px;}
.ls4c_c00224{letter-spacing:-1.426800px;}
.ls65_c00224{letter-spacing:-1.315440px;}
.ls7f_c00224{letter-spacing:-1.294560px;}
.ls61_c00224{letter-spacing:-1.266720px;}
.ls6b_c00224{letter-spacing:-1.211040px;}
.ls46_c00224{letter-spacing:-1.169280px;}
.ls7b_c00224{letter-spacing:-1.134480px;}
.ls7c_c00224{letter-spacing:-0.981360px;}
.ls55_c00224{letter-spacing:-0.974400px;}
.ls58_c00224{letter-spacing:-0.939600px;}
.ls6a_c00224{letter-spacing:-0.828240px;}
.ls7d_c00224{letter-spacing:-0.814320px;}
.ls3f_c00224{letter-spacing:-0.793440px;}
.ls59_c00224{letter-spacing:-0.765600px;}
.ls7a_c00224{letter-spacing:-0.751680px;}
.ls5b_c00224{letter-spacing:-0.689040px;}
.ls64_c00224{letter-spacing:-0.549840px;}
.ls42_c00224{letter-spacing:-0.522000px;}
.ls71_c00224{letter-spacing:-0.508080px;}
.ls5d_c00224{letter-spacing:-0.452400px;}
.ls72_c00224{letter-spacing:-0.431520px;}
.ls80_c00224{letter-spacing:-0.403680px;}
.ls73_c00224{letter-spacing:-0.389760px;}
.ls54_c00224{letter-spacing:-0.361920px;}
.ls60_c00224{letter-spacing:-0.348000px;}
.ls67_c00224{letter-spacing:-0.327120px;}
.ls4b_c00224{letter-spacing:-0.320160px;}
.ls52_c00224{letter-spacing:-0.313200px;}
.ls6e_c00224{letter-spacing:-0.278400px;}
.ls3e_c00224{letter-spacing:-0.264480px;}
.ls51_c00224{letter-spacing:-0.250560px;}
.ls56_c00224{letter-spacing:-0.243600px;}
.ls4a_c00224{letter-spacing:-0.229680px;}
.ls74_c00224{letter-spacing:-0.215760px;}
.ls49_c00224{letter-spacing:-0.208800px;}
.ls57_c00224{letter-spacing:-0.194880px;}
.ls66_c00224{letter-spacing:-0.187920px;}
.ls44_c00224{letter-spacing:-0.180960px;}
.ls4d_c00224{letter-spacing:-0.174000px;}
.ls50_c00224{letter-spacing:-0.160080px;}
.ls4f_c00224{letter-spacing:-0.153120px;}
.ls5a_c00224{letter-spacing:-0.132240px;}
.ls5c_c00224{letter-spacing:-0.118320px;}
.ls6f_c00224{letter-spacing:-0.090480px;}
.ls70_c00224{letter-spacing:-0.055680px;}
.ls78_c00224{letter-spacing:-0.034800px;}
.ls48_c00224{letter-spacing:-0.027840px;}
.ls4e_c00224{letter-spacing:-0.020880px;}
.ls79_c00224{letter-spacing:-0.013920px;}
.ls68_c00224{letter-spacing:-0.006960px;}
.ls41_c00224{letter-spacing:0.000000px;}
.ls31_c00224{letter-spacing:0.006960px;}
.ls2_c00224{letter-spacing:0.027840px;}
.ls2a_c00224{letter-spacing:0.048720px;}
.ls5_c00224{letter-spacing:0.055680px;}
.ls22_c00224{letter-spacing:0.062640px;}
.ls14_c00224{letter-spacing:0.076560px;}
.ls1f_c00224{letter-spacing:0.090480px;}
.ls33_c00224{letter-spacing:0.097440px;}
.ls24_c00224{letter-spacing:0.104400px;}
.ls37_c00224{letter-spacing:0.132240px;}
.lsc_c00224{letter-spacing:0.146160px;}
.ls30_c00224{letter-spacing:0.153120px;}
.ls25_c00224{letter-spacing:0.160080px;}
.ls0_c00224{letter-spacing:0.174000px;}
.lsd_c00224{letter-spacing:0.208800px;}
.lsb_c00224{letter-spacing:0.222720px;}
.lsf_c00224{letter-spacing:0.229680px;}
.ls7_c00224{letter-spacing:0.243600px;}
.ls29_c00224{letter-spacing:0.250560px;}
.ls4_c00224{letter-spacing:0.257520px;}
.ls39_c00224{letter-spacing:0.271440px;}
.ls10_c00224{letter-spacing:0.285360px;}
.ls2b_c00224{letter-spacing:0.292320px;}
.ls1c_c00224{letter-spacing:0.306240px;}
.ls11_c00224{letter-spacing:0.313200px;}
.ls26_c00224{letter-spacing:0.320160px;}
.ls2e_c00224{letter-spacing:0.334080px;}
.ls3b_c00224{letter-spacing:0.375840px;}
.ls38_c00224{letter-spacing:0.382800px;}
.ls21_c00224{letter-spacing:0.417600px;}
.ls3a_c00224{letter-spacing:0.438480px;}
.ls13_c00224{letter-spacing:0.466320px;}
.ls18_c00224{letter-spacing:0.473280px;}
.ls2c_c00224{letter-spacing:0.535920px;}
.ls9_c00224{letter-spacing:0.542880px;}
.ls8_c00224{letter-spacing:0.556800px;}
.ls16_c00224{letter-spacing:0.583080px;}
.lsa_c00224{letter-spacing:0.584640px;}
.ls19_c00224{letter-spacing:0.696900px;}
.ls2f_c00224{letter-spacing:0.709920px;}
.ls1b_c00224{letter-spacing:0.716880px;}
.ls36_c00224{letter-spacing:0.759360px;}
.ls23_c00224{letter-spacing:0.765600px;}
.ls17_c00224{letter-spacing:0.766140px;}
.ls1d_c00224{letter-spacing:0.772920px;}
.ls1_c00224{letter-spacing:0.835200px;}
.ls3c_c00224{letter-spacing:0.840720px;}
.ls28_c00224{letter-spacing:0.861060px;}
.ls6_c00224{letter-spacing:0.883920px;}
.ls12_c00224{letter-spacing:0.949200px;}
.ls6d_c00224{letter-spacing:0.989880px;}
.ls20_c00224{letter-spacing:1.017000px;}
.ls34_c00224{letter-spacing:1.118700px;}
.lse_c00224{letter-spacing:1.357200px;}
.ls27_c00224{letter-spacing:1.376340px;}
.ls3_c00224{letter-spacing:1.398960px;}
.ls35_c00224{letter-spacing:1.586880px;}
.ls15_c00224{letter-spacing:1.649520px;}
.ls32_c00224{letter-spacing:1.760880px;}
.ls1a_c00224{letter-spacing:1.938900px;}
.ls53_c00224{letter-spacing:1.983600px;}
.ls1e_c00224{letter-spacing:2.101800px;}
.ls2d_c00224{letter-spacing:2.164560px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{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__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00224{word-spacing:-1.434000px;}
.ws6_c00224{word-spacing:-1.425000px;}
.ws7_c00224{word-spacing:0.000000px;}
.ws1_c00224{word-spacing:1.540260px;}
.ws3_c00224{word-spacing:5.603160px;}
.ws5_c00224{word-spacing:10.012200px;}
.ws2_c00224{word-spacing:12.658200px;}
.ws0_c00224{word-spacing:27.187800px;}
._e_c00224{margin-left:-7.990200px;}
._11_c00224{margin-left:-5.735880px;}
._d_c00224{margin-left:-4.600560px;}
._5_c00224{margin-left:-2.596080px;}
._7_c00224{margin-left:-1.252800px;}
._6_c00224{width:1.545120px;}
._4_c00224{width:2.839680px;}
._8_c00224{width:4.196880px;}
._9_c00224{width:6.124800px;}
._a_c00224{width:8.212800px;}
._10_c00224{width:9.242880px;}
._f_c00224{width:10.335600px;}
._12_c00224{width:11.518800px;}
._14_c00224{width:12.625440px;}
._13_c00224{width:14.435040px;}
._17_c00224{width:16.182000px;}
._b_c00224{width:18.826800px;}
._15_c00224{width:19.856880px;}
._16_c00224{width:22.891440px;}
._2_c00224{width:26.599440px;}
._1_c00224{width:27.979200px;}
._3_c00224{width:29.579760px;}
._0_c00224{width:30.749280px;}
._c_c00224{width:35.804640px;}
.fc0_c00224{color:transparent;}
.fs6_c00224{font-size:64.800000px;}
.fs0_c00224{font-size:66.000000px;}
.fs2_c00224{font-size:67.800000px;}
.fs3_c00224{font-size:69.000000px;}
.fs1_c00224{font-size:69.600000px;}
.fs4_c00224{font-size:78.000000px;}
.fs5_c00224{font-size:83.400000px;}
.y0_c00224{bottom:0.000000px;}
.y1b_c00224{bottom:72.375000px;}
.y1a_c00224{bottom:148.695000px;}
.y19_c00224{bottom:211.335000px;}
.y18_c00224{bottom:242.994600px;}
.y17_c00224{bottom:273.966600px;}
.y16_c00224{bottom:306.000000px;}
.y15_c00224{bottom:368.295000px;}
.y14_c00224{bottom:431.280000px;}
.y13_c00224{bottom:462.603000px;}
.y12_c00224{bottom:493.569750px;}
.y11_c00224{bottom:556.200000px;}
.y10_c00224{bottom:587.520000px;}
.yf_c00224{bottom:650.175000px;}
.yd_c00224{bottom:713.169600px;}
.ye_c00224{bottom:713.175000px;}
.yc_c00224{bottom:776.175000px;}
.yb_c00224{bottom:807.495000px;}
.ya_c00224{bottom:870.495000px;}
.y9_c00224{bottom:933.130800px;}
.y8_c00224{bottom:963.720000px;}
.y6_c00224{bottom:1025.997600px;}
.y7_c00224{bottom:1026.000000px;}
.y5_c00224{bottom:1057.335000px;}
.y4_c00224{bottom:1057.341600px;}
.y3_c00224{bottom:1088.661600px;}
.y2_c00224{bottom:1120.695000px;}
.y1_c00224{bottom:1197.360000px;}
.hb_c00224{height:63.597656px;}
.h7_c00224{height:66.508887px;}
.h2_c00224{height:66.515625px;}
.h3_c00224{height:68.308594px;}
.h8_c00224{height:68.329594px;}
.h5_c00224{height:68.330194px;}
.h4_c00224{height:68.835938px;}
.h6_c00224{height:70.713281px;}
.h9_c00224{height:76.552734px;}
.ha_c00224{height:81.852539px;}
.h1_c00224{height:1263.000000px;}
.h0_c00224{height:1263.240000px;}
.w1_c00224{width:892.500000px;}
.w0_c00224{width:892.800000px;}
.x0_c00224{left:0.000000px;}
.x10_c00224{left:119.385000px;}
.x7_c00224{left:122.204400px;}
.x2_c00224{left:123.675000px;}
.x1_c00224{left:124.845000px;}
.x11_c00224{left:173.319900px;}
.xc_c00224{left:174.522000px;}
.x9_c00224{left:175.845000px;}
.x5_c00224{left:198.210000px;}
.x6_c00224{left:216.930000px;}
.xa_c00224{left:303.870000px;}
.x3_c00224{left:325.620000px;}
.xd_c00224{left:350.805000px;}
.xe_c00224{left:378.255000px;}
.x4_c00224{left:388.410000px;}
.x15_c00224{left:422.910000px;}
.xb_c00224{left:537.240000px;}
.x12_c00224{left:559.740000px;}
.x13_c00224{left:586.770000px;}
.x14_c00224{left:631.005000px;}
.x8_c00224{left:643.815000px;}
.xf_c00224{left:737.070000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls7e_c00224{letter-spacing:-2.594667pt;}
.ls76_c00224{letter-spacing:-2.426667pt;}
.ls40_c00224{letter-spacing:-2.165333pt;}
.ls6c_c00224{letter-spacing:-2.109333pt;}
.ls3d_c00224{letter-spacing:-2.053333pt;}
.ls63_c00224{letter-spacing:-2.041600pt;}
.ls81_c00224{letter-spacing:-2.016000pt;}
.ls5f_c00224{letter-spacing:-1.985920pt;}
.ls5e_c00224{letter-spacing:-1.899307pt;}
.ls69_c00224{letter-spacing:-1.763200pt;}
.ls77_c00224{letter-spacing:-1.738453pt;}
.ls47_c00224{letter-spacing:-1.620907pt;}
.ls62_c00224{letter-spacing:-1.596160pt;}
.ls45_c00224{letter-spacing:-1.466240pt;}
.ls75_c00224{letter-spacing:-1.447680pt;}
.ls43_c00224{letter-spacing:-1.361067pt;}
.ls4c_c00224{letter-spacing:-1.268267pt;}
.ls65_c00224{letter-spacing:-1.169280pt;}
.ls7f_c00224{letter-spacing:-1.150720pt;}
.ls61_c00224{letter-spacing:-1.125973pt;}
.ls6b_c00224{letter-spacing:-1.076480pt;}
.ls46_c00224{letter-spacing:-1.039360pt;}
.ls7b_c00224{letter-spacing:-1.008427pt;}
.ls7c_c00224{letter-spacing:-0.872320pt;}
.ls55_c00224{letter-spacing:-0.866133pt;}
.ls58_c00224{letter-spacing:-0.835200pt;}
.ls6a_c00224{letter-spacing:-0.736213pt;}
.ls7d_c00224{letter-spacing:-0.723840pt;}
.ls3f_c00224{letter-spacing:-0.705280pt;}
.ls59_c00224{letter-spacing:-0.680533pt;}
.ls7a_c00224{letter-spacing:-0.668160pt;}
.ls5b_c00224{letter-spacing:-0.612480pt;}
.ls64_c00224{letter-spacing:-0.488747pt;}
.ls42_c00224{letter-spacing:-0.464000pt;}
.ls71_c00224{letter-spacing:-0.451627pt;}
.ls5d_c00224{letter-spacing:-0.402133pt;}
.ls72_c00224{letter-spacing:-0.383573pt;}
.ls80_c00224{letter-spacing:-0.358827pt;}
.ls73_c00224{letter-spacing:-0.346453pt;}
.ls54_c00224{letter-spacing:-0.321707pt;}
.ls60_c00224{letter-spacing:-0.309333pt;}
.ls67_c00224{letter-spacing:-0.290773pt;}
.ls4b_c00224{letter-spacing:-0.284587pt;}
.ls52_c00224{letter-spacing:-0.278400pt;}
.ls6e_c00224{letter-spacing:-0.247467pt;}
.ls3e_c00224{letter-spacing:-0.235093pt;}
.ls51_c00224{letter-spacing:-0.222720pt;}
.ls56_c00224{letter-spacing:-0.216533pt;}
.ls4a_c00224{letter-spacing:-0.204160pt;}
.ls74_c00224{letter-spacing:-0.191787pt;}
.ls49_c00224{letter-spacing:-0.185600pt;}
.ls57_c00224{letter-spacing:-0.173227pt;}
.ls66_c00224{letter-spacing:-0.167040pt;}
.ls44_c00224{letter-spacing:-0.160853pt;}
.ls4d_c00224{letter-spacing:-0.154667pt;}
.ls50_c00224{letter-spacing:-0.142293pt;}
.ls4f_c00224{letter-spacing:-0.136107pt;}
.ls5a_c00224{letter-spacing:-0.117547pt;}
.ls5c_c00224{letter-spacing:-0.105173pt;}
.ls6f_c00224{letter-spacing:-0.080427pt;}
.ls70_c00224{letter-spacing:-0.049493pt;}
.ls78_c00224{letter-spacing:-0.030933pt;}
.ls48_c00224{letter-spacing:-0.024747pt;}
.ls4e_c00224{letter-spacing:-0.018560pt;}
.ls79_c00224{letter-spacing:-0.012373pt;}
.ls68_c00224{letter-spacing:-0.006187pt;}
.ls41_c00224{letter-spacing:0.000000pt;}
.ls31_c00224{letter-spacing:0.006187pt;}
.ls2_c00224{letter-spacing:0.024747pt;}
.ls2a_c00224{letter-spacing:0.043307pt;}
.ls5_c00224{letter-spacing:0.049493pt;}
.ls22_c00224{letter-spacing:0.055680pt;}
.ls14_c00224{letter-spacing:0.068053pt;}
.ls1f_c00224{letter-spacing:0.080427pt;}
.ls33_c00224{letter-spacing:0.086613pt;}
.ls24_c00224{letter-spacing:0.092800pt;}
.ls37_c00224{letter-spacing:0.117547pt;}
.lsc_c00224{letter-spacing:0.129920pt;}
.ls30_c00224{letter-spacing:0.136107pt;}
.ls25_c00224{letter-spacing:0.142293pt;}
.ls0_c00224{letter-spacing:0.154667pt;}
.lsd_c00224{letter-spacing:0.185600pt;}
.lsb_c00224{letter-spacing:0.197973pt;}
.lsf_c00224{letter-spacing:0.204160pt;}
.ls7_c00224{letter-spacing:0.216533pt;}
.ls29_c00224{letter-spacing:0.222720pt;}
.ls4_c00224{letter-spacing:0.228907pt;}
.ls39_c00224{letter-spacing:0.241280pt;}
.ls10_c00224{letter-spacing:0.253653pt;}
.ls2b_c00224{letter-spacing:0.259840pt;}
.ls1c_c00224{letter-spacing:0.272213pt;}
.ls11_c00224{letter-spacing:0.278400pt;}
.ls26_c00224{letter-spacing:0.284587pt;}
.ls2e_c00224{letter-spacing:0.296960pt;}
.ls3b_c00224{letter-spacing:0.334080pt;}
.ls38_c00224{letter-spacing:0.340267pt;}
.ls21_c00224{letter-spacing:0.371200pt;}
.ls3a_c00224{letter-spacing:0.389760pt;}
.ls13_c00224{letter-spacing:0.414507pt;}
.ls18_c00224{letter-spacing:0.420693pt;}
.ls2c_c00224{letter-spacing:0.476373pt;}
.ls9_c00224{letter-spacing:0.482560pt;}
.ls8_c00224{letter-spacing:0.494933pt;}
.ls16_c00224{letter-spacing:0.518293pt;}
.lsa_c00224{letter-spacing:0.519680pt;}
.ls19_c00224{letter-spacing:0.619467pt;}
.ls2f_c00224{letter-spacing:0.631040pt;}
.ls1b_c00224{letter-spacing:0.637227pt;}
.ls36_c00224{letter-spacing:0.674987pt;}
.ls23_c00224{letter-spacing:0.680533pt;}
.ls17_c00224{letter-spacing:0.681013pt;}
.ls1d_c00224{letter-spacing:0.687040pt;}
.ls1_c00224{letter-spacing:0.742400pt;}
.ls3c_c00224{letter-spacing:0.747307pt;}
.ls28_c00224{letter-spacing:0.765387pt;}
.ls6_c00224{letter-spacing:0.785707pt;}
.ls12_c00224{letter-spacing:0.843733pt;}
.ls6d_c00224{letter-spacing:0.879893pt;}
.ls20_c00224{letter-spacing:0.904000pt;}
.ls34_c00224{letter-spacing:0.994400pt;}
.lse_c00224{letter-spacing:1.206400pt;}
.ls27_c00224{letter-spacing:1.223413pt;}
.ls3_c00224{letter-spacing:1.243520pt;}
.ls35_c00224{letter-spacing:1.410560pt;}
.ls15_c00224{letter-spacing:1.466240pt;}
.ls32_c00224{letter-spacing:1.565227pt;}
.ls1a_c00224{letter-spacing:1.723467pt;}
.ls53_c00224{letter-spacing:1.763200pt;}
.ls1e_c00224{letter-spacing:1.868267pt;}
.ls2d_c00224{letter-spacing:1.924053pt;}
.ws4_c00224{word-spacing:-1.274667pt;}
.ws6_c00224{word-spacing:-1.266667pt;}
.ws7_c00224{word-spacing:0.000000pt;}
.ws1_c00224{word-spacing:1.369120pt;}
.ws3_c00224{word-spacing:4.980587pt;}
.ws5_c00224{word-spacing:8.899733pt;}
.ws2_c00224{word-spacing:11.251733pt;}
.ws0_c00224{word-spacing:24.166933pt;}
._e_c00224{margin-left:-7.102400pt;}
._11_c00224{margin-left:-5.098560pt;}
._d_c00224{margin-left:-4.089387pt;}
._5_c00224{margin-left:-2.307627pt;}
._7_c00224{margin-left:-1.113600pt;}
._6_c00224{width:1.373440pt;}
._4_c00224{width:2.524160pt;}
._8_c00224{width:3.730560pt;}
._9_c00224{width:5.444267pt;}
._a_c00224{width:7.300267pt;}
._10_c00224{width:8.215893pt;}
._f_c00224{width:9.187200pt;}
._12_c00224{width:10.238933pt;}
._14_c00224{width:11.222613pt;}
._13_c00224{width:12.831147pt;}
._17_c00224{width:14.384000pt;}
._b_c00224{width:16.734933pt;}
._15_c00224{width:17.650560pt;}
._16_c00224{width:20.347947pt;}
._2_c00224{width:23.643947pt;}
._1_c00224{width:24.870400pt;}
._3_c00224{width:26.293120pt;}
._0_c00224{width:27.332693pt;}
._c_c00224{width:31.826347pt;}
.fs6_c00224{font-size:57.600000pt;}
.fs0_c00224{font-size:58.666667pt;}
.fs2_c00224{font-size:60.266667pt;}
.fs3_c00224{font-size:61.333333pt;}
.fs1_c00224{font-size:61.866667pt;}
.fs4_c00224{font-size:69.333333pt;}
.fs5_c00224{font-size:74.133333pt;}
.y0_c00224{bottom:0.000000pt;}
.y1b_c00224{bottom:64.333333pt;}
.y1a_c00224{bottom:132.173333pt;}
.y19_c00224{bottom:187.853333pt;}
.y18_c00224{bottom:215.995200pt;}
.y17_c00224{bottom:243.525867pt;}
.y16_c00224{bottom:272.000000pt;}
.y15_c00224{bottom:327.373333pt;}
.y14_c00224{bottom:383.360000pt;}
.y13_c00224{bottom:411.202667pt;}
.y12_c00224{bottom:438.728667pt;}
.y11_c00224{bottom:494.400000pt;}
.y10_c00224{bottom:522.240000pt;}
.yf_c00224{bottom:577.933333pt;}
.yd_c00224{bottom:633.928533pt;}
.ye_c00224{bottom:633.933333pt;}
.yc_c00224{bottom:689.933333pt;}
.yb_c00224{bottom:717.773333pt;}
.ya_c00224{bottom:773.773333pt;}
.y9_c00224{bottom:829.449600pt;}
.y8_c00224{bottom:856.640000pt;}
.y6_c00224{bottom:911.997867pt;}
.y7_c00224{bottom:912.000000pt;}
.y5_c00224{bottom:939.853333pt;}
.y4_c00224{bottom:939.859200pt;}
.y3_c00224{bottom:967.699200pt;}
.y2_c00224{bottom:996.173333pt;}
.y1_c00224{bottom:1064.320000pt;}
.hb_c00224{height:56.531250pt;}
.h7_c00224{height:59.119010pt;}
.h2_c00224{height:59.125000pt;}
.h3_c00224{height:60.718750pt;}
.h8_c00224{height:60.737417pt;}
.h5_c00224{height:60.737950pt;}
.h4_c00224{height:61.187500pt;}
.h6_c00224{height:62.856250pt;}
.h9_c00224{height:68.046875pt;}
.ha_c00224{height:72.757812pt;}
.h1_c00224{height:1122.666667pt;}
.h0_c00224{height:1122.880000pt;}
.w1_c00224{width:793.333333pt;}
.w0_c00224{width:793.600000pt;}
.x0_c00224{left:0.000000pt;}
.x10_c00224{left:106.120000pt;}
.x7_c00224{left:108.626133pt;}
.x2_c00224{left:109.933333pt;}
.x1_c00224{left:110.973333pt;}
.x11_c00224{left:154.062133pt;}
.xc_c00224{left:155.130667pt;}
.x9_c00224{left:156.306667pt;}
.x5_c00224{left:176.186667pt;}
.x6_c00224{left:192.826667pt;}
.xa_c00224{left:270.106667pt;}
.x3_c00224{left:289.440000pt;}
.xd_c00224{left:311.826667pt;}
.xe_c00224{left:336.226667pt;}
.x4_c00224{left:345.253333pt;}
.x15_c00224{left:375.920000pt;}
.xb_c00224{left:477.546667pt;}
.x12_c00224{left:497.546667pt;}
.x13_c00224{left:521.573333pt;}
.x14_c00224{left:560.893333pt;}
.x8_c00224{left:572.280000pt;}
.xf_c00224{left:655.173333pt;}
}





/* 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_c00225 {
    display:none;
  }
  .loading-indicator_c00225.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00225 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_c00225 { 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_c00225" -> "#page-container .classname_c00225")
 */
.pf_c00225 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00225 { /* 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_c00225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00225 { /* 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_c00225 { /* 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_c00225 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00225 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00225 {overflow:visible;}
  }
}
.c_c00225 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00225 { /* 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_c00225:after { /* webkit #35443 */
  content: '';
}
.t_c00225:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00225 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 */
}
.__c00225 { /* 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_c00225 { /* info for Javascript */
  display:none;
}
.l_c00225 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00225 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00225 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00225: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_c00225 {
    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_c00225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00225.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_c00225 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00225;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.311035;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_c00225;src:url('chunks/assets/font_4d0566a9cddf194733a25cbd.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.284180;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_c00225;src:url('chunks/assets/font_667858521b35c919e2eb7958.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.284668;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_c00225;src:url('chunks/assets/font_a65f70b07fbf8f4a99896f7a.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:1.284180;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_c00225;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff5_c00225{font-family:ff5_c00225;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;}
.m6_c00225{transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);}
.m5_c00225{transform:matrix(0.191160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191160,0.000000,0.000000,0.250000,0,0);}
.m4_c00225{transform:matrix(0.227187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227187,0.000000,0.000000,0.250000,0,0);}
.m3_c00225{transform:matrix(0.230432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230432,0.000000,0.000000,0.250000,0,0);}
.m0_c00225{transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);}
.ma_c00225{transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);}
.m9_c00225{transform:matrix(0.245448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245448,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{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);}
.mb_c00225{transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);}
.m7_c00225{transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);}
.m2_c00225{transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);}
.m8_c00225{transform:matrix(0.255937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255937,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls83_c00225{letter-spacing:-2.688000px;}
.ls89_c00225{letter-spacing:-2.436000px;}
.ls76_c00225{letter-spacing:-2.331000px;}
.ls6c_c00225{letter-spacing:-2.310000px;}
.ls7c_c00225{letter-spacing:-2.231100px;}
.ls90_c00225{letter-spacing:-1.892400px;}
.ls7b_c00225{letter-spacing:-1.818180px;}
.ls8a_c00225{letter-spacing:-1.771560px;}
.ls73_c00225{letter-spacing:-1.338660px;}
.ls70_c00225{letter-spacing:-1.052280px;}
.ls85_c00225{letter-spacing:-0.879120px;}
.ls79_c00225{letter-spacing:-0.859140px;}
.ls72_c00225{letter-spacing:-0.685980px;}
.ls8c_c00225{letter-spacing:-0.526140px;}
.ls6f_c00225{letter-spacing:-0.443520px;}
.ls71_c00225{letter-spacing:-0.366300px;}
.ls74_c00225{letter-spacing:-0.306360px;}
.ls7e_c00225{letter-spacing:-0.286380px;}
.ls77_c00225{letter-spacing:-0.273060px;}
.ls8b_c00225{letter-spacing:-0.186480px;}
.ls7f_c00225{letter-spacing:-0.159840px;}
.ls87_c00225{letter-spacing:-0.086580px;}
.ls78_c00225{letter-spacing:-0.046620px;}
.ls6d_c00225{letter-spacing:0.000000px;}
.ls1d_c00225{letter-spacing:0.026640px;}
.ls26_c00225{letter-spacing:0.046620px;}
.ls14_c00225{letter-spacing:0.066600px;}
.ls4f_c00225{letter-spacing:0.067200px;}
.ls24_c00225{letter-spacing:0.086580px;}
.ls7d_c00225{letter-spacing:0.139860px;}
.ls54_c00225{letter-spacing:0.206460px;}
.ls75_c00225{letter-spacing:0.239760px;}
.ls5e_c00225{letter-spacing:0.346320px;}
.ls49_c00225{letter-spacing:0.366300px;}
.ls81_c00225{letter-spacing:0.376320px;}
.lsa_c00225{letter-spacing:0.389760px;}
.ls20_c00225{letter-spacing:0.446220px;}
.ls1a_c00225{letter-spacing:0.463680px;}
.ls1f_c00225{letter-spacing:0.492840px;}
.ls16_c00225{letter-spacing:0.499500px;}
.ls36_c00225{letter-spacing:0.506160px;}
.ls62_c00225{letter-spacing:0.510720px;}
.ls37_c00225{letter-spacing:0.526140px;}
.ls25_c00225{letter-spacing:0.532800px;}
.ls52_c00225{letter-spacing:0.559440px;}
.ls28_c00225{letter-spacing:0.566100px;}
.ls63_c00225{letter-spacing:0.571200px;}
.ls4a_c00225{letter-spacing:0.572760px;}
.ls21_c00225{letter-spacing:0.586080px;}
.ls59_c00225{letter-spacing:0.592740px;}
.ls3a_c00225{letter-spacing:0.599400px;}
.ls7a_c00225{letter-spacing:0.612720px;}
.ls23_c00225{letter-spacing:0.632700px;}
.ls1c_c00225{letter-spacing:0.646020px;}
.ls8f_c00225{letter-spacing:0.659340px;}
.ls84_c00225{letter-spacing:0.672000px;}
.ls17_c00225{letter-spacing:0.678720px;}
.ls1b_c00225{letter-spacing:0.719280px;}
.ls1_c00225{letter-spacing:0.732480px;}
.ls2a_c00225{letter-spacing:0.745920px;}
.ls3c_c00225{letter-spacing:0.779220px;}
.ls1e_c00225{letter-spacing:0.779520px;}
.ls7_c00225{letter-spacing:0.805860px;}
.ls80_c00225{letter-spacing:0.819180px;}
.ls8d_c00225{letter-spacing:0.845820px;}
.ls13_c00225{letter-spacing:0.852480px;}
.ls0_c00225{letter-spacing:0.873600px;}
.ls6a_c00225{letter-spacing:0.885780px;}
.ls5a_c00225{letter-spacing:0.892440px;}
.lse_c00225{letter-spacing:0.905760px;}
.ls34_c00225{letter-spacing:0.919080px;}
.ls47_c00225{letter-spacing:0.925740px;}
.ls27_c00225{letter-spacing:0.927360px;}
.ls3e_c00225{letter-spacing:0.932400px;}
.ls6b_c00225{letter-spacing:0.945720px;}
.ls2_c00225{letter-spacing:0.959040px;}
.ls2e_c00225{letter-spacing:0.972360px;}
.ls3d_c00225{letter-spacing:0.985680px;}
.ls4b_c00225{letter-spacing:0.992340px;}
.ls31_c00225{letter-spacing:0.999000px;}
.ls58_c00225{letter-spacing:1.005660px;}
.ls12_c00225{letter-spacing:1.012320px;}
.ls11_c00225{letter-spacing:1.025640px;}
.ls57_c00225{letter-spacing:1.032300px;}
.ls64_c00225{letter-spacing:1.052280px;}
.ls42_c00225{letter-spacing:1.072260px;}
.ls82_c00225{letter-spacing:1.078920px;}
.ls6_c00225{letter-spacing:1.105560px;}
.lsf_c00225{letter-spacing:1.138860px;}
.ls5c_c00225{letter-spacing:1.145520px;}
.ls2f_c00225{letter-spacing:1.158840px;}
.ls66_c00225{letter-spacing:1.165500px;}
.ls22_c00225{letter-spacing:1.176000px;}
.ls32_c00225{letter-spacing:1.178820px;}
.ls41_c00225{letter-spacing:1.185480px;}
.lsb_c00225{letter-spacing:1.202880px;}
.ls30_c00225{letter-spacing:1.205460px;}
.ls46_c00225{letter-spacing:1.232100px;}
.ls33_c00225{letter-spacing:1.245420px;}
.ls4c_c00225{letter-spacing:1.272060px;}
.ls43_c00225{letter-spacing:1.285380px;}
.ls39_c00225{letter-spacing:1.290240px;}
.ls50_c00225{letter-spacing:1.310400px;}
.ls56_c00225{letter-spacing:1.338660px;}
.ls40_c00225{letter-spacing:1.365300px;}
.ls88_c00225{letter-spacing:1.405260px;}
.ls86_c00225{letter-spacing:1.411920px;}
.ls2c_c00225{letter-spacing:1.418580px;}
.ls29_c00225{letter-spacing:1.425240px;}
.ls55_c00225{letter-spacing:1.451880px;}
.ls45_c00225{letter-spacing:1.471860px;}
.ls4_c00225{letter-spacing:1.531800px;}
.ls5f_c00225{letter-spacing:1.578420px;}
.ls8e_c00225{letter-spacing:1.598400px;}
.ls3b_c00225{letter-spacing:1.611720px;}
.ls19_c00225{letter-spacing:1.665000px;}
.ls15_c00225{letter-spacing:1.671660px;}
.ls5b_c00225{letter-spacing:1.711620px;}
.ls8_c00225{letter-spacing:1.744920px;}
.ls18_c00225{letter-spacing:1.794240px;}
.ls65_c00225{letter-spacing:1.811520px;}
.ls67_c00225{letter-spacing:1.864800px;}
.ls38_c00225{letter-spacing:1.871460px;}
.ls69_c00225{letter-spacing:1.878120px;}
.ls51_c00225{letter-spacing:1.884780px;}
.ls44_c00225{letter-spacing:1.984680px;}
.ls35_c00225{letter-spacing:2.011320px;}
.lsd_c00225{letter-spacing:2.022720px;}
.ls4d_c00225{letter-spacing:2.031300px;}
.ls4e_c00225{letter-spacing:2.037960px;}
.ls3_c00225{letter-spacing:2.057940px;}
.ls2b_c00225{letter-spacing:2.171160px;}
.lsc_c00225{letter-spacing:2.177280px;}
.ls5d_c00225{letter-spacing:2.204460px;}
.ls5_c00225{letter-spacing:2.257740px;}
.ls68_c00225{letter-spacing:2.271060px;}
.ls53_c00225{letter-spacing:2.297700px;}
.ls61_c00225{letter-spacing:2.324340px;}
.ls60_c00225{letter-spacing:2.357640px;}
.ls10_c00225{letter-spacing:2.564100px;}
.ls9_c00225{letter-spacing:2.923200px;}
.ls48_c00225{letter-spacing:3.016980px;}
.ls3f_c00225{letter-spacing:3.090240px;}
.ls2d_c00225{letter-spacing:3.310020px;}
.ls6e_c00225{letter-spacing:3.330000px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{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__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00225{word-spacing:-1.564320px;}
.ws4_c00225{word-spacing:-1.264800px;}
.ws6_c00225{word-spacing:0.000000px;}
.ws5_c00225{word-spacing:6.792000px;}
.ws2_c00225{word-spacing:8.603040px;}
.ws0_c00225{word-spacing:15.136320px;}
.ws1_c00225{word-spacing:36.485760px;}
._6_c00225{margin-left:-9.105600px;}
._7_c00225{margin-left:-5.920320px;}
._b_c00225{margin-left:-4.462200px;}
._17_c00225{margin-left:-2.872920px;}
._5_c00225{margin-left:-1.836240px;}
._a_c00225{width:1.132200px;}
._c_c00225{width:2.249160px;}
._8_c00225{width:4.136400px;}
._9_c00225{width:5.427900px;}
._3_c00225{width:6.549600px;}
._2_c00225{width:8.377500px;}
._d_c00225{width:10.194900px;}
._1_c00225{width:12.587400px;}
._12_c00225{width:14.282160px;}
._0_c00225{width:16.060800px;}
._16_c00225{width:17.142840px;}
._4_c00225{width:19.190880px;}
._13_c00225{width:21.045600px;}
._14_c00225{width:23.483160px;}
._15_c00225{width:25.531020px;}
._11_c00225{width:31.068240px;}
._e_c00225{width:34.911720px;}
._f_c00225{width:37.090200px;}
._10_c00225{width:38.217300px;}
.fc0_c00225{color:transparent;}
.fs5_c00225{font-size:57.000000px;}
.fs0_c00225{font-size:66.000000px;}
.fs2_c00225{font-size:66.600000px;}
.fs1_c00225{font-size:67.200000px;}
.fs4_c00225{font-size:69.600000px;}
.fs3_c00225{font-size:76.800000px;}
.y0_c00225{bottom:0.000000px;}
.y1a_c00225{bottom:70.575015px;}
.y19_c00225{bottom:179.640015px;}
.y18_c00225{bottom:210.615015px;}
.y17_c00225{bottom:273.255015px;}
.y16_c00225{bottom:335.907915px;}
.y15_c00225{bottom:366.860265px;}
.y14_c00225{bottom:397.080015px;}
.y13_c00225{bottom:397.083765px;}
.y12_c00225{bottom:429.127365px;}
.y11_c00225{bottom:460.079715px;}
.y10_c00225{bottom:491.415015px;}
.yf_c00225{bottom:553.335015px;}
.ye_c00225{bottom:585.739215px;}
.yd_c00225{bottom:648.000015px;}
.yc_c00225{bottom:679.681365px;}
.yb_c00225{bottom:711.000015px;}
.ya_c00225{bottom:773.655015px;}
.y9_c00225{bottom:804.975015px;}
.y8_c00225{bottom:835.930065px;}
.y7_c00225{bottom:867.615015px;}
.y6_c00225{bottom:929.524665px;}
.y5_c00225{bottom:991.096365px;}
.y4_c00225{bottom:1022.419215px;}
.y3_c00225{bottom:1084.685415px;}
.y2_c00225{bottom:1116.720015px;}
.y1_c00225{bottom:1191.615015px;}
.h9_c00225{height:55.942383px;}
.h4_c00225{height:65.364258px;}
.h5_c00225{height:65.898712px;}
.h3_c00225{height:65.920312px;}
.h7_c00225{height:65.950913px;}
.h2_c00225{height:66.515625px;}
.h8_c00225{height:72.590625px;}
.h6_c00225{height:75.375000px;}
.h1_c00225{height:1263.000000px;}
.h0_c00225{height:1263.240015px;}
.w1_c00225{width:892.500000px;}
.w0_c00225{width:892.800015px;}
.x0_c00225{left:0.000000px;}
.x1_c00225{left:122.325015px;}
.x18_c00225{left:148.710015px;}
.xb_c00225{left:153.630015px;}
.x15_c00225{left:175.485015px;}
.x2_c00225{left:176.565015px;}
.x8_c00225{left:177.963915px;}
.xc_c00225{left:180.345015px;}
.xd_c00225{left:224.565015px;}
.xe_c00225{left:246.165015px;}
.x5_c00225{left:257.082015px;}
.xf_c00225{left:273.435015px;}
.x10_c00225{left:377.925015px;}
.x11_c00225{left:405.120015px;}
.x6_c00225{left:416.130015px;}
.x19_c00225{left:422.190015px;}
.x12_c00225{left:426.465015px;}
.x7_c00225{left:447.030015px;}
.x9_c00225{left:492.450015px;}
.x16_c00225{left:512.910015px;}
.xa_c00225{left:522.885015px;}
.x3_c00225{left:526.950015px;}
.x17_c00225{left:537.045015px;}
.x4_c00225{left:552.525015px;}
.x13_c00225{left:565.380015px;}
.x14_c00225{left:585.555015px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls83_c00225{letter-spacing:-2.389333pt;}
.ls89_c00225{letter-spacing:-2.165333pt;}
.ls76_c00225{letter-spacing:-2.072000pt;}
.ls6c_c00225{letter-spacing:-2.053333pt;}
.ls7c_c00225{letter-spacing:-1.983200pt;}
.ls90_c00225{letter-spacing:-1.682133pt;}
.ls7b_c00225{letter-spacing:-1.616160pt;}
.ls8a_c00225{letter-spacing:-1.574720pt;}
.ls73_c00225{letter-spacing:-1.189920pt;}
.ls70_c00225{letter-spacing:-0.935360pt;}
.ls85_c00225{letter-spacing:-0.781440pt;}
.ls79_c00225{letter-spacing:-0.763680pt;}
.ls72_c00225{letter-spacing:-0.609760pt;}
.ls8c_c00225{letter-spacing:-0.467680pt;}
.ls6f_c00225{letter-spacing:-0.394240pt;}
.ls71_c00225{letter-spacing:-0.325600pt;}
.ls74_c00225{letter-spacing:-0.272320pt;}
.ls7e_c00225{letter-spacing:-0.254560pt;}
.ls77_c00225{letter-spacing:-0.242720pt;}
.ls8b_c00225{letter-spacing:-0.165760pt;}
.ls7f_c00225{letter-spacing:-0.142080pt;}
.ls87_c00225{letter-spacing:-0.076960pt;}
.ls78_c00225{letter-spacing:-0.041440pt;}
.ls6d_c00225{letter-spacing:0.000000pt;}
.ls1d_c00225{letter-spacing:0.023680pt;}
.ls26_c00225{letter-spacing:0.041440pt;}
.ls14_c00225{letter-spacing:0.059200pt;}
.ls4f_c00225{letter-spacing:0.059733pt;}
.ls24_c00225{letter-spacing:0.076960pt;}
.ls7d_c00225{letter-spacing:0.124320pt;}
.ls54_c00225{letter-spacing:0.183520pt;}
.ls75_c00225{letter-spacing:0.213120pt;}
.ls5e_c00225{letter-spacing:0.307840pt;}
.ls49_c00225{letter-spacing:0.325600pt;}
.ls81_c00225{letter-spacing:0.334507pt;}
.lsa_c00225{letter-spacing:0.346453pt;}
.ls20_c00225{letter-spacing:0.396640pt;}
.ls1a_c00225{letter-spacing:0.412160pt;}
.ls1f_c00225{letter-spacing:0.438080pt;}
.ls16_c00225{letter-spacing:0.444000pt;}
.ls36_c00225{letter-spacing:0.449920pt;}
.ls62_c00225{letter-spacing:0.453973pt;}
.ls37_c00225{letter-spacing:0.467680pt;}
.ls25_c00225{letter-spacing:0.473600pt;}
.ls52_c00225{letter-spacing:0.497280pt;}
.ls28_c00225{letter-spacing:0.503200pt;}
.ls63_c00225{letter-spacing:0.507733pt;}
.ls4a_c00225{letter-spacing:0.509120pt;}
.ls21_c00225{letter-spacing:0.520960pt;}
.ls59_c00225{letter-spacing:0.526880pt;}
.ls3a_c00225{letter-spacing:0.532800pt;}
.ls7a_c00225{letter-spacing:0.544640pt;}
.ls23_c00225{letter-spacing:0.562400pt;}
.ls1c_c00225{letter-spacing:0.574240pt;}
.ls8f_c00225{letter-spacing:0.586080pt;}
.ls84_c00225{letter-spacing:0.597333pt;}
.ls17_c00225{letter-spacing:0.603307pt;}
.ls1b_c00225{letter-spacing:0.639360pt;}
.ls1_c00225{letter-spacing:0.651093pt;}
.ls2a_c00225{letter-spacing:0.663040pt;}
.ls3c_c00225{letter-spacing:0.692640pt;}
.ls1e_c00225{letter-spacing:0.692907pt;}
.ls7_c00225{letter-spacing:0.716320pt;}
.ls80_c00225{letter-spacing:0.728160pt;}
.ls8d_c00225{letter-spacing:0.751840pt;}
.ls13_c00225{letter-spacing:0.757760pt;}
.ls0_c00225{letter-spacing:0.776533pt;}
.ls6a_c00225{letter-spacing:0.787360pt;}
.ls5a_c00225{letter-spacing:0.793280pt;}
.lse_c00225{letter-spacing:0.805120pt;}
.ls34_c00225{letter-spacing:0.816960pt;}
.ls47_c00225{letter-spacing:0.822880pt;}
.ls27_c00225{letter-spacing:0.824320pt;}
.ls3e_c00225{letter-spacing:0.828800pt;}
.ls6b_c00225{letter-spacing:0.840640pt;}
.ls2_c00225{letter-spacing:0.852480pt;}
.ls2e_c00225{letter-spacing:0.864320pt;}
.ls3d_c00225{letter-spacing:0.876160pt;}
.ls4b_c00225{letter-spacing:0.882080pt;}
.ls31_c00225{letter-spacing:0.888000pt;}
.ls58_c00225{letter-spacing:0.893920pt;}
.ls12_c00225{letter-spacing:0.899840pt;}
.ls11_c00225{letter-spacing:0.911680pt;}
.ls57_c00225{letter-spacing:0.917600pt;}
.ls64_c00225{letter-spacing:0.935360pt;}
.ls42_c00225{letter-spacing:0.953120pt;}
.ls82_c00225{letter-spacing:0.959040pt;}
.ls6_c00225{letter-spacing:0.982720pt;}
.lsf_c00225{letter-spacing:1.012320pt;}
.ls5c_c00225{letter-spacing:1.018240pt;}
.ls2f_c00225{letter-spacing:1.030080pt;}
.ls66_c00225{letter-spacing:1.036000pt;}
.ls22_c00225{letter-spacing:1.045333pt;}
.ls32_c00225{letter-spacing:1.047840pt;}
.ls41_c00225{letter-spacing:1.053760pt;}
.lsb_c00225{letter-spacing:1.069227pt;}
.ls30_c00225{letter-spacing:1.071520pt;}
.ls46_c00225{letter-spacing:1.095200pt;}
.ls33_c00225{letter-spacing:1.107040pt;}
.ls4c_c00225{letter-spacing:1.130720pt;}
.ls43_c00225{letter-spacing:1.142560pt;}
.ls39_c00225{letter-spacing:1.146880pt;}
.ls50_c00225{letter-spacing:1.164800pt;}
.ls56_c00225{letter-spacing:1.189920pt;}
.ls40_c00225{letter-spacing:1.213600pt;}
.ls88_c00225{letter-spacing:1.249120pt;}
.ls86_c00225{letter-spacing:1.255040pt;}
.ls2c_c00225{letter-spacing:1.260960pt;}
.ls29_c00225{letter-spacing:1.266880pt;}
.ls55_c00225{letter-spacing:1.290560pt;}
.ls45_c00225{letter-spacing:1.308320pt;}
.ls4_c00225{letter-spacing:1.361600pt;}
.ls5f_c00225{letter-spacing:1.403040pt;}
.ls8e_c00225{letter-spacing:1.420800pt;}
.ls3b_c00225{letter-spacing:1.432640pt;}
.ls19_c00225{letter-spacing:1.480000pt;}
.ls15_c00225{letter-spacing:1.485920pt;}
.ls5b_c00225{letter-spacing:1.521440pt;}
.ls8_c00225{letter-spacing:1.551040pt;}
.ls18_c00225{letter-spacing:1.594880pt;}
.ls65_c00225{letter-spacing:1.610240pt;}
.ls67_c00225{letter-spacing:1.657600pt;}
.ls38_c00225{letter-spacing:1.663520pt;}
.ls69_c00225{letter-spacing:1.669440pt;}
.ls51_c00225{letter-spacing:1.675360pt;}
.ls44_c00225{letter-spacing:1.764160pt;}
.ls35_c00225{letter-spacing:1.787840pt;}
.lsd_c00225{letter-spacing:1.797973pt;}
.ls4d_c00225{letter-spacing:1.805600pt;}
.ls4e_c00225{letter-spacing:1.811520pt;}
.ls3_c00225{letter-spacing:1.829280pt;}
.ls2b_c00225{letter-spacing:1.929920pt;}
.lsc_c00225{letter-spacing:1.935360pt;}
.ls5d_c00225{letter-spacing:1.959520pt;}
.ls5_c00225{letter-spacing:2.006880pt;}
.ls68_c00225{letter-spacing:2.018720pt;}
.ls53_c00225{letter-spacing:2.042400pt;}
.ls61_c00225{letter-spacing:2.066080pt;}
.ls60_c00225{letter-spacing:2.095680pt;}
.ls10_c00225{letter-spacing:2.279200pt;}
.ls9_c00225{letter-spacing:2.598400pt;}
.ls48_c00225{letter-spacing:2.681760pt;}
.ls3f_c00225{letter-spacing:2.746880pt;}
.ls2d_c00225{letter-spacing:2.942240pt;}
.ls6e_c00225{letter-spacing:2.960000pt;}
.ws3_c00225{word-spacing:-1.390507pt;}
.ws4_c00225{word-spacing:-1.124267pt;}
.ws6_c00225{word-spacing:0.000000pt;}
.ws5_c00225{word-spacing:6.037333pt;}
.ws2_c00225{word-spacing:7.647147pt;}
.ws0_c00225{word-spacing:13.454507pt;}
.ws1_c00225{word-spacing:32.431787pt;}
._6_c00225{margin-left:-8.093867pt;}
._7_c00225{margin-left:-5.262507pt;}
._b_c00225{margin-left:-3.966400pt;}
._17_c00225{margin-left:-2.553707pt;}
._5_c00225{margin-left:-1.632213pt;}
._a_c00225{width:1.006400pt;}
._c_c00225{width:1.999253pt;}
._8_c00225{width:3.676800pt;}
._9_c00225{width:4.824800pt;}
._3_c00225{width:5.821867pt;}
._2_c00225{width:7.446667pt;}
._d_c00225{width:9.062133pt;}
._1_c00225{width:11.188800pt;}
._12_c00225{width:12.695253pt;}
._0_c00225{width:14.276267pt;}
._16_c00225{width:15.238080pt;}
._4_c00225{width:17.058560pt;}
._13_c00225{width:18.707200pt;}
._14_c00225{width:20.873920pt;}
._15_c00225{width:22.694240pt;}
._11_c00225{width:27.616213pt;}
._e_c00225{width:31.032640pt;}
._f_c00225{width:32.969067pt;}
._10_c00225{width:33.970933pt;}
.fs5_c00225{font-size:50.666667pt;}
.fs0_c00225{font-size:58.666667pt;}
.fs2_c00225{font-size:59.200000pt;}
.fs1_c00225{font-size:59.733333pt;}
.fs4_c00225{font-size:61.866667pt;}
.fs3_c00225{font-size:68.266667pt;}
.y0_c00225{bottom:0.000000pt;}
.y1a_c00225{bottom:62.733347pt;}
.y19_c00225{bottom:159.680013pt;}
.y18_c00225{bottom:187.213347pt;}
.y17_c00225{bottom:242.893347pt;}
.y16_c00225{bottom:298.584813pt;}
.y15_c00225{bottom:326.098013pt;}
.y14_c00225{bottom:352.960013pt;}
.y13_c00225{bottom:352.963347pt;}
.y12_c00225{bottom:381.446547pt;}
.y11_c00225{bottom:408.959747pt;}
.y10_c00225{bottom:436.813347pt;}
.yf_c00225{bottom:491.853347pt;}
.ye_c00225{bottom:520.657080pt;}
.yd_c00225{bottom:576.000013pt;}
.yc_c00225{bottom:604.161213pt;}
.yb_c00225{bottom:632.000013pt;}
.ya_c00225{bottom:687.693347pt;}
.y9_c00225{bottom:715.533347pt;}
.y8_c00225{bottom:743.048947pt;}
.y7_c00225{bottom:771.213347pt;}
.y6_c00225{bottom:826.244147pt;}
.y5_c00225{bottom:880.974547pt;}
.y4_c00225{bottom:908.817080pt;}
.y3_c00225{bottom:964.164813pt;}
.y2_c00225{bottom:992.640013pt;}
.y1_c00225{bottom:1059.213347pt;}
.h9_c00225{height:49.726562pt;}
.h4_c00225{height:58.101562pt;}
.h5_c00225{height:58.576633pt;}
.h3_c00225{height:58.595833pt;}
.h7_c00225{height:58.623033pt;}
.h2_c00225{height:59.125000pt;}
.h8_c00225{height:64.525000pt;}
.h6_c00225{height:67.000000pt;}
.h1_c00225{height:1122.666667pt;}
.h0_c00225{height:1122.880013pt;}
.w1_c00225{width:793.333333pt;}
.w0_c00225{width:793.600013pt;}
.x0_c00225{left:0.000000pt;}
.x1_c00225{left:108.733347pt;}
.x18_c00225{left:132.186680pt;}
.xb_c00225{left:136.560013pt;}
.x15_c00225{left:155.986680pt;}
.x2_c00225{left:156.946680pt;}
.x8_c00225{left:158.190147pt;}
.xc_c00225{left:160.306680pt;}
.xd_c00225{left:199.613347pt;}
.xe_c00225{left:218.813347pt;}
.x5_c00225{left:228.517347pt;}
.xf_c00225{left:243.053347pt;}
.x10_c00225{left:335.933347pt;}
.x11_c00225{left:360.106680pt;}
.x6_c00225{left:369.893347pt;}
.x19_c00225{left:375.280013pt;}
.x12_c00225{left:379.080013pt;}
.x7_c00225{left:397.360013pt;}
.x9_c00225{left:437.733347pt;}
.x16_c00225{left:455.920013pt;}
.xa_c00225{left:464.786680pt;}
.x3_c00225{left:468.400013pt;}
.x17_c00225{left:477.373347pt;}
.x4_c00225{left:491.133347pt;}
.x13_c00225{left:502.560013pt;}
.x14_c00225{left:520.493347pt;}
}





/* 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_c00226 {
    display:none;
  }
  .loading-indicator_c00226.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00226 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_c00226 { 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_c00226" -> "#page-container .classname_c00226")
 */
.pf_c00226 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00226 { /* 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_c00226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00226 { /* 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_c00226 { /* 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_c00226 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00226 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00226 {overflow:visible;}
  }
}
.c_c00226 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00226 { /* 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_c00226:after { /* webkit #35443 */
  content: '';
}
.t_c00226:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00226 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 */
}
.__c00226 { /* 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_c00226 { /* info for Javascript */
  display:none;
}
.l_c00226 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00226 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00226 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00226: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_c00226 {
    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_c00226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00226.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_c00226 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00226;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.311035;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_c00226;src:url('chunks/assets/font_112f036b0400cad680853e03.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.284180;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_c00226;src:url('chunks/assets/font_8903c8227d4a0f39d654fcdf.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.284668;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_c00226;src:url('chunks/assets/font_ea1c97b70e286c8ab7af4491.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:1.284180;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_c00226;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff5_c00226{font-family:ff5_c00226;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;}
.m4_c00226{transform:matrix(0.205616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205616,0.000000,0.000000,0.250000,0,0);}
.m5_c00226{transform:matrix(0.208433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208433,0.000000,0.000000,0.250000,0,0);}
.m9_c00226{transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);}
.m2_c00226{transform:matrix(0.227529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227529,0.000000,0.000000,0.250000,0,0);}
.mb_c00226{transform:matrix(0.233669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233669,0.000000,0.000000,0.250000,0,0);}
.m0_c00226{transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);}
.ma_c00226{transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);}
.m8_c00226{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m1_c00226{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);}
.m3_c00226{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m7_c00226{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m6_c00226{transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls6e_c00226{letter-spacing:-2.751000px;}
.ls7f_c00226{letter-spacing:-2.415000px;}
.ls65_c00226{letter-spacing:-2.394000px;}
.ls5b_c00226{letter-spacing:-2.331000px;}
.ls5e_c00226{letter-spacing:-2.168280px;}
.ls63_c00226{letter-spacing:-2.147760px;}
.ls82_c00226{letter-spacing:-1.682640px;}
.ls5d_c00226{letter-spacing:-1.429560px;}
.ls83_c00226{letter-spacing:-1.347480px;}
.ls78_c00226{letter-spacing:-1.258560px;}
.ls61_c00226{letter-spacing:-1.080720px;}
.ls75_c00226{letter-spacing:-1.046520px;}
.ls76_c00226{letter-spacing:-0.971280px;}
.ls5c_c00226{letter-spacing:-0.772920px;}
.ls62_c00226{letter-spacing:-0.540360px;}
.ls6c_c00226{letter-spacing:-0.526680px;}
.ls6d_c00226{letter-spacing:-0.478800px;}
.ls70_c00226{letter-spacing:-0.458280px;}
.ls7c_c00226{letter-spacing:-0.376200px;}
.ls60_c00226{letter-spacing:-0.348840px;}
.ls67_c00226{letter-spacing:-0.342000px;}
.ls7b_c00226{letter-spacing:-0.259920px;}
.ls7a_c00226{letter-spacing:-0.225720px;}
.ls74_c00226{letter-spacing:-0.212040px;}
.ls66_c00226{letter-spacing:-0.171000px;}
.ls81_c00226{letter-spacing:-0.102600px;}
.ls79_c00226{letter-spacing:-0.041040px;}
.ls5f_c00226{letter-spacing:0.000000px;}
.ls7_c00226{letter-spacing:0.006840px;}
.ls69_c00226{letter-spacing:0.020520px;}
.ls72_c00226{letter-spacing:0.047880px;}
.ls2e_c00226{letter-spacing:0.061560px;}
.ls49_c00226{letter-spacing:0.082080px;}
.ls1e_c00226{letter-spacing:0.102600px;}
.ls14_c00226{letter-spacing:0.143640px;}
.ls80_c00226{letter-spacing:0.198360px;}
.ls56_c00226{letter-spacing:0.246240px;}
.ls3f_c00226{letter-spacing:0.253080px;}
.ls73_c00226{letter-spacing:0.259920px;}
.ls17_c00226{letter-spacing:0.266760px;}
.lsb_c00226{letter-spacing:0.273600px;}
.ls25_c00226{letter-spacing:0.280440px;}
.ls3e_c00226{letter-spacing:0.294120px;}
.ls2b_c00226{letter-spacing:0.307800px;}
.ls2f_c00226{letter-spacing:0.321480px;}
.ls3b_c00226{letter-spacing:0.328320px;}
.ls4b_c00226{letter-spacing:0.335160px;}
.ls21_c00226{letter-spacing:0.342000px;}
.ls53_c00226{letter-spacing:0.355680px;}
.ls34_c00226{letter-spacing:0.359340px;}
.ls4_c00226{letter-spacing:0.376200px;}
.ls15_c00226{letter-spacing:0.383040px;}
.ls4e_c00226{letter-spacing:0.403560px;}
.ls18_c00226{letter-spacing:0.410400px;}
.ls24_c00226{letter-spacing:0.430920px;}
.ls3d_c00226{letter-spacing:0.437760px;}
.ls47_c00226{letter-spacing:0.447480px;}
.ls1d_c00226{letter-spacing:0.458280px;}
.ls1a_c00226{letter-spacing:0.478800px;}
.ls55_c00226{letter-spacing:0.485640px;}
.ls41_c00226{letter-spacing:0.513000px;}
.ls9_c00226{letter-spacing:0.515280px;}
.ls59_c00226{letter-spacing:0.533520px;}
.ls1c_c00226{letter-spacing:0.560880px;}
.ls57_c00226{letter-spacing:0.562740px;}
.ls3_c00226{letter-spacing:0.581400px;}
.ls19_c00226{letter-spacing:0.588240px;}
.ls5a_c00226{letter-spacing:0.595080px;}
.ls30_c00226{letter-spacing:0.601920px;}
.lsc_c00226{letter-spacing:0.608760px;}
.ls6_c00226{letter-spacing:0.649800px;}
.ls68_c00226{letter-spacing:0.656640px;}
.ls1f_c00226{letter-spacing:0.663480px;}
.ls45_c00226{letter-spacing:0.677160px;}
.ls3c_c00226{letter-spacing:0.684000px;}
.ls23_c00226{letter-spacing:0.690840px;}
.ls71_c00226{letter-spacing:0.697680px;}
.ls2d_c00226{letter-spacing:0.704520px;}
.ls20_c00226{letter-spacing:0.718200px;}
.ls52_c00226{letter-spacing:0.738720px;}
.ls4c_c00226{letter-spacing:0.745560px;}
.lse_c00226{letter-spacing:0.752400px;}
.ls2c_c00226{letter-spacing:0.759360px;}
.ls8_c00226{letter-spacing:0.772920px;}
.ls29_c00226{letter-spacing:0.779760px;}
.lsf_c00226{letter-spacing:0.807120px;}
.ls10_c00226{letter-spacing:0.820800px;}
.ls48_c00226{letter-spacing:0.868680px;}
.lsd_c00226{letter-spacing:0.916560px;}
.ls43_c00226{letter-spacing:0.930240px;}
.ls46_c00226{letter-spacing:0.942420px;}
.ls22_c00226{letter-spacing:0.964440px;}
.ls4f_c00226{letter-spacing:0.996660px;}
.ls32_c00226{letter-spacing:1.012320px;}
.ls7d_c00226{letter-spacing:1.026000px;}
.ls28_c00226{letter-spacing:1.053360px;}
.ls42_c00226{letter-spacing:1.057680px;}
.ls13_c00226{letter-spacing:1.060200px;}
.ls38_c00226{letter-spacing:1.087560px;}
.ls26_c00226{letter-spacing:1.094400px;}
.lsa_c00226{letter-spacing:1.139040px;}
.ls4d_c00226{letter-spacing:1.176480px;}
.ls33_c00226{letter-spacing:1.203840px;}
.ls0_c00226{letter-spacing:1.233960px;}
.ls6a_c00226{letter-spacing:1.240740px;}
.ls54_c00226{letter-spacing:1.251720px;}
.ls1b_c00226{letter-spacing:1.279080px;}
.ls35_c00226{letter-spacing:1.281420px;}
.ls16_c00226{letter-spacing:1.285920px;}
.ls58_c00226{letter-spacing:1.315320px;}
.ls7e_c00226{letter-spacing:1.333800px;}
.ls77_c00226{letter-spacing:1.347480px;}
.ls2_c00226{letter-spacing:1.389900px;}
.ls12_c00226{letter-spacing:1.402200px;}
.ls39_c00226{letter-spacing:1.497960px;}
.ls5_c00226{letter-spacing:1.545840px;}
.ls37_c00226{letter-spacing:1.552680px;}
.ls31_c00226{letter-spacing:1.648440px;}
.ls27_c00226{letter-spacing:1.710000px;}
.ls84_c00226{letter-spacing:1.783140px;}
.ls2a_c00226{letter-spacing:1.792080px;}
.ls6f_c00226{letter-spacing:1.805760px;}
.ls64_c00226{letter-spacing:1.939080px;}
.ls51_c00226{letter-spacing:2.027220px;}
.ls1_c00226{letter-spacing:2.156040px;}
.ls36_c00226{letter-spacing:2.202480px;}
.ls44_c00226{letter-spacing:2.291400px;}
.ls50_c00226{letter-spacing:2.311980px;}
.ls3a_c00226{letter-spacing:2.352960px;}
.ls4a_c00226{letter-spacing:2.715480px;}
.ls11_c00226{letter-spacing:2.961720px;}
.ls40_c00226{letter-spacing:3.091680px;}
.ls6b_c00226{letter-spacing:3.420000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{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__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00226{word-spacing:-1.799400px;}
.ws4_c00226{word-spacing:0.000000px;}
.ws0_c00226{word-spacing:4.649640px;}
.ws3_c00226{word-spacing:5.026320px;}
.ws1_c00226{word-spacing:24.652200px;}
._0_c00226{margin-left:-7.363080px;}
._6_c00226{margin-left:-5.280480px;}
._1_c00226{margin-left:-3.715440px;}
._9_c00226{margin-left:-2.282640px;}
._2_c00226{margin-left:-1.042200px;}
._b_c00226{width:1.007040px;}
._7_c00226{width:2.335800px;}
._4_c00226{width:4.019040px;}
._13_c00226{width:5.447760px;}
._3_c00226{width:6.453000px;}
._a_c00226{width:8.395440px;}
._10_c00226{width:9.826320px;}
._5_c00226{width:11.320200px;}
._15_c00226{width:12.585600px;}
._8_c00226{width:13.680000px;}
._14_c00226{width:15.184800px;}
._c_c00226{width:19.986480px;}
._11_c00226{width:21.087720px;}
._e_c00226{width:22.982400px;}
._12_c00226{width:25.178040px;}
._d_c00226{width:26.546040px;}
._f_c00226{width:27.859320px;}
.fc0_c00226{color:transparent;}
.fs0_c00226{font-size:66.600000px;}
.fs1_c00226{font-size:67.800000px;}
.fs2_c00226{font-size:68.400000px;}
.fs4_c00226{font-size:69.000000px;}
.fs3_c00226{font-size:78.600000px;}
.y0_c00226{bottom:0.000000px;}
.y1c_c00226{bottom:72.015006px;}
.y1b_c00226{bottom:146.880006px;}
.y1a_c00226{bottom:209.174406px;}
.y19_c00226{bottom:271.794606px;}
.y18_c00226{bottom:303.840006px;}
.y16_c00226{bottom:366.488706px;}
.y17_c00226{bottom:366.495006px;}
.y15_c00226{bottom:398.175006px;}
.y14_c00226{bottom:460.095006px;}
.y13_c00226{bottom:523.082706px;}
.y12_c00226{bottom:554.050806px;}
.y11_c00226{bottom:585.720006px;}
.y10_c00226{bottom:585.727806px;}
.yf_c00226{bottom:617.050806px;}
.ye_c00226{bottom:648.720006px;}
.yc_c00226{bottom:711.371706px;}
.yd_c00226{bottom:711.375006px;}
.yb_c00226{bottom:743.400006px;}
.ya_c00226{bottom:743.407806px;}
.y9_c00226{bottom:774.735006px;}
.y8_c00226{bottom:806.415006px;}
.y7_c00226{bottom:869.766906px;}
.y6_c00226{bottom:900.735006px;}
.y5_c00226{bottom:963.000006px;}
.y4_c00226{bottom:1025.643606px;}
.y3_c00226{bottom:1088.640006px;}
.y2_c00226{bottom:1119.615006px;}
.y1_c00226{bottom:1196.640006px;}
.hb_c00226{height:65.364258px;}
.h4_c00226{height:66.508887px;}
.h2_c00226{height:67.120312px;}
.h3_c00226{height:67.130859px;}
.ha_c00226{height:67.133259px;}
.h6_c00226{height:67.144059px;}
.h7_c00226{height:67.147659px;}
.h8_c00226{height:67.180059px;}
.h9_c00226{height:71.964844px;}
.h5_c00226{height:77.141602px;}
.h1_c00226{height:1263.000000px;}
.h0_c00226{height:1263.240006px;}
.w1_c00226{width:892.500000px;}
.w0_c00226{width:892.799998px;}
.x0_c00226{left:0.000000px;}
.x14_c00226{left:121.150798px;}
.x7_c00226{left:122.220599px;}
.x1_c00226{left:125.204999px;}
.x1a_c00226{left:154.979998px;}
.x1b_c00226{left:171.899998px;}
.x17_c00226{left:174.764998px;}
.x6_c00226{left:176.204998px;}
.x3_c00226{left:178.469999px;}
.x1c_c00226{left:244.109998px;}
.x2_c00226{left:266.789999px;}
.x8_c00226{left:286.844999px;}
.xb_c00226{left:309.779998px;}
.x9_c00226{left:317.519999px;}
.xf_c00226{left:325.634999px;}
.x11_c00226{left:332.114999px;}
.x1d_c00226{left:336.929999px;}
.x4_c00226{left:339.089999px;}
.xc_c00226{left:343.994999px;}
.x10_c00226{left:358.469998px;}
.x1e_c00226{left:366.989999px;}
.x5_c00226{left:370.244999px;}
.x18_c00226{left:405.629999px;}
.x20_c00226{left:424.709999px;}
.x19_c00226{left:429.044999px;}
.x15_c00226{left:487.349999px;}
.x12_c00226{left:507.134999px;}
.x16_c00226{left:511.844998px;}
.x13_c00226{left:537.329998px;}
.x1f_c00226{left:620.804999px;}
.xd_c00226{left:648.179999px;}
.xe_c00226{left:682.034999px;}
.xa_c00226{left:726.314999px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls6e_c00226{letter-spacing:-2.445333pt;}
.ls7f_c00226{letter-spacing:-2.146667pt;}
.ls65_c00226{letter-spacing:-2.128000pt;}
.ls5b_c00226{letter-spacing:-2.072000pt;}
.ls5e_c00226{letter-spacing:-1.927360pt;}
.ls63_c00226{letter-spacing:-1.909120pt;}
.ls82_c00226{letter-spacing:-1.495680pt;}
.ls5d_c00226{letter-spacing:-1.270720pt;}
.ls83_c00226{letter-spacing:-1.197760pt;}
.ls78_c00226{letter-spacing:-1.118720pt;}
.ls61_c00226{letter-spacing:-0.960640pt;}
.ls75_c00226{letter-spacing:-0.930240pt;}
.ls76_c00226{letter-spacing:-0.863360pt;}
.ls5c_c00226{letter-spacing:-0.687040pt;}
.ls62_c00226{letter-spacing:-0.480320pt;}
.ls6c_c00226{letter-spacing:-0.468160pt;}
.ls6d_c00226{letter-spacing:-0.425600pt;}
.ls70_c00226{letter-spacing:-0.407360pt;}
.ls7c_c00226{letter-spacing:-0.334400pt;}
.ls60_c00226{letter-spacing:-0.310080pt;}
.ls67_c00226{letter-spacing:-0.304000pt;}
.ls7b_c00226{letter-spacing:-0.231040pt;}
.ls7a_c00226{letter-spacing:-0.200640pt;}
.ls74_c00226{letter-spacing:-0.188480pt;}
.ls66_c00226{letter-spacing:-0.152000pt;}
.ls81_c00226{letter-spacing:-0.091200pt;}
.ls79_c00226{letter-spacing:-0.036480pt;}
.ls5f_c00226{letter-spacing:0.000000pt;}
.ls7_c00226{letter-spacing:0.006080pt;}
.ls69_c00226{letter-spacing:0.018240pt;}
.ls72_c00226{letter-spacing:0.042560pt;}
.ls2e_c00226{letter-spacing:0.054720pt;}
.ls49_c00226{letter-spacing:0.072960pt;}
.ls1e_c00226{letter-spacing:0.091200pt;}
.ls14_c00226{letter-spacing:0.127680pt;}
.ls80_c00226{letter-spacing:0.176320pt;}
.ls56_c00226{letter-spacing:0.218880pt;}
.ls3f_c00226{letter-spacing:0.224960pt;}
.ls73_c00226{letter-spacing:0.231040pt;}
.ls17_c00226{letter-spacing:0.237120pt;}
.lsb_c00226{letter-spacing:0.243200pt;}
.ls25_c00226{letter-spacing:0.249280pt;}
.ls3e_c00226{letter-spacing:0.261440pt;}
.ls2b_c00226{letter-spacing:0.273600pt;}
.ls2f_c00226{letter-spacing:0.285760pt;}
.ls3b_c00226{letter-spacing:0.291840pt;}
.ls4b_c00226{letter-spacing:0.297920pt;}
.ls21_c00226{letter-spacing:0.304000pt;}
.ls53_c00226{letter-spacing:0.316160pt;}
.ls34_c00226{letter-spacing:0.319413pt;}
.ls4_c00226{letter-spacing:0.334400pt;}
.ls15_c00226{letter-spacing:0.340480pt;}
.ls4e_c00226{letter-spacing:0.358720pt;}
.ls18_c00226{letter-spacing:0.364800pt;}
.ls24_c00226{letter-spacing:0.383040pt;}
.ls3d_c00226{letter-spacing:0.389120pt;}
.ls47_c00226{letter-spacing:0.397760pt;}
.ls1d_c00226{letter-spacing:0.407360pt;}
.ls1a_c00226{letter-spacing:0.425600pt;}
.ls55_c00226{letter-spacing:0.431680pt;}
.ls41_c00226{letter-spacing:0.456000pt;}
.ls9_c00226{letter-spacing:0.458027pt;}
.ls59_c00226{letter-spacing:0.474240pt;}
.ls1c_c00226{letter-spacing:0.498560pt;}
.ls57_c00226{letter-spacing:0.500213pt;}
.ls3_c00226{letter-spacing:0.516800pt;}
.ls19_c00226{letter-spacing:0.522880pt;}
.ls5a_c00226{letter-spacing:0.528960pt;}
.ls30_c00226{letter-spacing:0.535040pt;}
.lsc_c00226{letter-spacing:0.541120pt;}
.ls6_c00226{letter-spacing:0.577600pt;}
.ls68_c00226{letter-spacing:0.583680pt;}
.ls1f_c00226{letter-spacing:0.589760pt;}
.ls45_c00226{letter-spacing:0.601920pt;}
.ls3c_c00226{letter-spacing:0.608000pt;}
.ls23_c00226{letter-spacing:0.614080pt;}
.ls71_c00226{letter-spacing:0.620160pt;}
.ls2d_c00226{letter-spacing:0.626240pt;}
.ls20_c00226{letter-spacing:0.638400pt;}
.ls52_c00226{letter-spacing:0.656640pt;}
.ls4c_c00226{letter-spacing:0.662720pt;}
.lse_c00226{letter-spacing:0.668800pt;}
.ls2c_c00226{letter-spacing:0.674987pt;}
.ls8_c00226{letter-spacing:0.687040pt;}
.ls29_c00226{letter-spacing:0.693120pt;}
.lsf_c00226{letter-spacing:0.717440pt;}
.ls10_c00226{letter-spacing:0.729600pt;}
.ls48_c00226{letter-spacing:0.772160pt;}
.lsd_c00226{letter-spacing:0.814720pt;}
.ls43_c00226{letter-spacing:0.826880pt;}
.ls46_c00226{letter-spacing:0.837707pt;}
.ls22_c00226{letter-spacing:0.857280pt;}
.ls4f_c00226{letter-spacing:0.885920pt;}
.ls32_c00226{letter-spacing:0.899840pt;}
.ls7d_c00226{letter-spacing:0.912000pt;}
.ls28_c00226{letter-spacing:0.936320pt;}
.ls42_c00226{letter-spacing:0.940160pt;}
.ls13_c00226{letter-spacing:0.942400pt;}
.ls38_c00226{letter-spacing:0.966720pt;}
.ls26_c00226{letter-spacing:0.972800pt;}
.lsa_c00226{letter-spacing:1.012480pt;}
.ls4d_c00226{letter-spacing:1.045760pt;}
.ls33_c00226{letter-spacing:1.070080pt;}
.ls0_c00226{letter-spacing:1.096853pt;}
.ls6a_c00226{letter-spacing:1.102880pt;}
.ls54_c00226{letter-spacing:1.112640pt;}
.ls1b_c00226{letter-spacing:1.136960pt;}
.ls35_c00226{letter-spacing:1.139040pt;}
.ls16_c00226{letter-spacing:1.143040pt;}
.ls58_c00226{letter-spacing:1.169173pt;}
.ls7e_c00226{letter-spacing:1.185600pt;}
.ls77_c00226{letter-spacing:1.197760pt;}
.ls2_c00226{letter-spacing:1.235467pt;}
.ls12_c00226{letter-spacing:1.246400pt;}
.ls39_c00226{letter-spacing:1.331520pt;}
.ls5_c00226{letter-spacing:1.374080pt;}
.ls37_c00226{letter-spacing:1.380160pt;}
.ls31_c00226{letter-spacing:1.465280pt;}
.ls27_c00226{letter-spacing:1.520000pt;}
.ls84_c00226{letter-spacing:1.585013pt;}
.ls2a_c00226{letter-spacing:1.592960pt;}
.ls6f_c00226{letter-spacing:1.605120pt;}
.ls64_c00226{letter-spacing:1.723627pt;}
.ls51_c00226{letter-spacing:1.801973pt;}
.ls1_c00226{letter-spacing:1.916480pt;}
.ls36_c00226{letter-spacing:1.957760pt;}
.ls44_c00226{letter-spacing:2.036800pt;}
.ls50_c00226{letter-spacing:2.055093pt;}
.ls3a_c00226{letter-spacing:2.091520pt;}
.ls4a_c00226{letter-spacing:2.413760pt;}
.ls11_c00226{letter-spacing:2.632640pt;}
.ls40_c00226{letter-spacing:2.748160pt;}
.ls6b_c00226{letter-spacing:3.040000pt;}
.ws2_c00226{word-spacing:-1.599467pt;}
.ws4_c00226{word-spacing:0.000000pt;}
.ws0_c00226{word-spacing:4.133013pt;}
.ws3_c00226{word-spacing:4.467840pt;}
.ws1_c00226{word-spacing:21.913067pt;}
._0_c00226{margin-left:-6.544960pt;}
._6_c00226{margin-left:-4.693760pt;}
._1_c00226{margin-left:-3.302613pt;}
._9_c00226{margin-left:-2.029013pt;}
._2_c00226{margin-left:-0.926400pt;}
._b_c00226{width:0.895147pt;}
._7_c00226{width:2.076267pt;}
._4_c00226{width:3.572480pt;}
._13_c00226{width:4.842453pt;}
._3_c00226{width:5.736000pt;}
._a_c00226{width:7.462613pt;}
._10_c00226{width:8.734507pt;}
._5_c00226{width:10.062400pt;}
._15_c00226{width:11.187200pt;}
._8_c00226{width:12.160000pt;}
._14_c00226{width:13.497600pt;}
._c_c00226{width:17.765760pt;}
._11_c00226{width:18.744640pt;}
._e_c00226{width:20.428800pt;}
._12_c00226{width:22.380480pt;}
._d_c00226{width:23.596480pt;}
._f_c00226{width:24.763840pt;}
.fs0_c00226{font-size:59.200000pt;}
.fs1_c00226{font-size:60.266667pt;}
.fs2_c00226{font-size:60.800000pt;}
.fs4_c00226{font-size:61.333333pt;}
.fs3_c00226{font-size:69.866667pt;}
.y0_c00226{bottom:0.000000pt;}
.y1c_c00226{bottom:64.013339pt;}
.y1b_c00226{bottom:130.560005pt;}
.y1a_c00226{bottom:185.932805pt;}
.y19_c00226{bottom:241.595205pt;}
.y18_c00226{bottom:270.080005pt;}
.y16_c00226{bottom:325.767739pt;}
.y17_c00226{bottom:325.773339pt;}
.y15_c00226{bottom:353.933339pt;}
.y14_c00226{bottom:408.973339pt;}
.y13_c00226{bottom:464.962405pt;}
.y12_c00226{bottom:492.489605pt;}
.y11_c00226{bottom:520.640005pt;}
.y10_c00226{bottom:520.646939pt;}
.yf_c00226{bottom:548.489605pt;}
.ye_c00226{bottom:576.640005pt;}
.yc_c00226{bottom:632.330405pt;}
.yd_c00226{bottom:632.333339pt;}
.yb_c00226{bottom:660.800005pt;}
.ya_c00226{bottom:660.806939pt;}
.y9_c00226{bottom:688.653339pt;}
.y8_c00226{bottom:716.813339pt;}
.y7_c00226{bottom:773.126139pt;}
.y6_c00226{bottom:800.653339pt;}
.y5_c00226{bottom:856.000005pt;}
.y4_c00226{bottom:911.683205pt;}
.y3_c00226{bottom:967.680005pt;}
.y2_c00226{bottom:995.213339pt;}
.y1_c00226{bottom:1063.680005pt;}
.hb_c00226{height:58.101562pt;}
.h4_c00226{height:59.119010pt;}
.h2_c00226{height:59.662500pt;}
.h3_c00226{height:59.671875pt;}
.ha_c00226{height:59.674008pt;}
.h6_c00226{height:59.683608pt;}
.h7_c00226{height:59.686808pt;}
.h8_c00226{height:59.715608pt;}
.h9_c00226{height:63.968750pt;}
.h5_c00226{height:68.570312pt;}
.h1_c00226{height:1122.666667pt;}
.h0_c00226{height:1122.880005pt;}
.w1_c00226{width:793.333333pt;}
.w0_c00226{width:793.599999pt;}
.x0_c00226{left:0.000000pt;}
.x14_c00226{left:107.689599pt;}
.x7_c00226{left:108.640532pt;}
.x1_c00226{left:111.293332pt;}
.x1a_c00226{left:137.759999pt;}
.x1b_c00226{left:152.799999pt;}
.x17_c00226{left:155.346665pt;}
.x6_c00226{left:156.626665pt;}
.x3_c00226{left:158.639999pt;}
.x1c_c00226{left:216.986665pt;}
.x2_c00226{left:237.146665pt;}
.x8_c00226{left:254.973332pt;}
.xb_c00226{left:275.359999pt;}
.x9_c00226{left:282.239999pt;}
.xf_c00226{left:289.453332pt;}
.x11_c00226{left:295.213332pt;}
.x1d_c00226{left:299.493332pt;}
.x4_c00226{left:301.413332pt;}
.xc_c00226{left:305.773332pt;}
.x10_c00226{left:318.639999pt;}
.x1e_c00226{left:326.213332pt;}
.x5_c00226{left:329.106665pt;}
.x18_c00226{left:360.559999pt;}
.x20_c00226{left:377.519999pt;}
.x19_c00226{left:381.373332pt;}
.x15_c00226{left:433.199999pt;}
.x12_c00226{left:450.786665pt;}
.x16_c00226{left:454.973332pt;}
.x13_c00226{left:477.626665pt;}
.x1f_c00226{left:551.826665pt;}
.xd_c00226{left:576.159999pt;}
.xe_c00226{left:606.253332pt;}
.xa_c00226{left:645.613332pt;}
}





/* 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_c00227 {
    display:none;
  }
  .loading-indicator_c00227.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00227 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_c00227 { 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_c00227" -> "#page-container .classname_c00227")
 */
.pf_c00227 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00227 { /* 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_c00227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00227 { /* 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_c00227 { /* 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_c00227 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00227 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00227 {overflow:visible;}
  }
}
.c_c00227 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00227 { /* 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_c00227:after { /* webkit #35443 */
  content: '';
}
.t_c00227:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00227 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 */
}
.__c00227 { /* 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_c00227 { /* info for Javascript */
  display:none;
}
.l_c00227 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00227 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00227 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00227: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_c00227 {
    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_c00227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00227.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_c00227 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00227;src:url('chunks/assets/font_a0882f5cb4522de9925570cd.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.284668;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_c00227;src:url('chunks/assets/font_344613c6388e13d9a0aed108.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.284180;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_c00227;src:url('chunks/assets/font_09e83bb276f38a8ac1f57dae.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;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;}
.m5_c00227{transform:matrix(0.184654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184654,0.000000,0.000000,0.250000,0,0);}
.m6_c00227{transform:matrix(0.187219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187219,0.000000,0.000000,0.250000,0,0);}
.m4_c00227{transform:matrix(0.207717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207717,0.000000,0.000000,0.250000,0,0);}
.m2_c00227{transform:matrix(0.209790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209790,0.000000,0.000000,0.250000,0,0);}
.m3_c00227{transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);}
.m0_c00227{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.m7_c00227{transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);}
.m1_c00227{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);}
.v0_c00227{vertical-align:0.000000px;}
.v1_c00227{vertical-align:25.911600px;}
.ls6d_c00227{letter-spacing:-2.688000px;}
.ls6b_c00227{letter-spacing:-2.541000px;}
.ls64_c00227{letter-spacing:-2.373000px;}
.ls5e_c00227{letter-spacing:-2.331000px;}
.ls7d_c00227{letter-spacing:-1.939080px;}
.ls79_c00227{letter-spacing:-1.891620px;}
.ls5f_c00227{letter-spacing:-1.796700px;}
.ls74_c00227{letter-spacing:-1.600080px;}
.ls7e_c00227{letter-spacing:-1.410240px;}
.ls68_c00227{letter-spacing:-1.403460px;}
.ls83_c00227{letter-spacing:-1.078020px;}
.ls7b_c00227{letter-spacing:-0.894960px;}
.ls6c_c00227{letter-spacing:-0.847500px;}
.ls82_c00227{letter-spacing:-0.806820px;}
.ls7a_c00227{letter-spacing:-0.739020px;}
.ls89_c00227{letter-spacing:-0.727560px;}
.ls73_c00227{letter-spacing:-0.657660px;}
.ls7c_c00227{letter-spacing:-0.569520px;}
.ls76_c00227{letter-spacing:-0.549180px;}
.ls88_c00227{letter-spacing:-0.542400px;}
.ls69_c00227{letter-spacing:-0.447480px;}
.ls62_c00227{letter-spacing:-0.427140px;}
.ls7f_c00227{letter-spacing:-0.393240px;}
.ls72_c00227{letter-spacing:-0.359340px;}
.ls81_c00227{letter-spacing:-0.210180px;}
.ls78_c00227{letter-spacing:-0.169500px;}
.ls6a_c00227{letter-spacing:-0.142380px;}
.ls60_c00227{letter-spacing:-0.135600px;}
.ls86_c00227{letter-spacing:-0.122040px;}
.ls67_c00227{letter-spacing:-0.108480px;}
.ls80_c00227{letter-spacing:-0.054240px;}
.ls85_c00227{letter-spacing:-0.020340px;}
.ls84_c00227{letter-spacing:-0.013560px;}
.ls65_c00227{letter-spacing:0.000000px;}
.lsa_c00227{letter-spacing:0.020340px;}
.ls47_c00227{letter-spacing:0.027120px;}
.ls4_c00227{letter-spacing:0.033900px;}
.ls39_c00227{letter-spacing:0.040680px;}
.ls77_c00227{letter-spacing:0.074580px;}
.ls61_c00227{letter-spacing:0.094920px;}
.ls70_c00227{letter-spacing:0.108480px;}
.ls4e_c00227{letter-spacing:0.122040px;}
.ls49_c00227{letter-spacing:0.142380px;}
.ls71_c00227{letter-spacing:0.149160px;}
.ls1b_c00227{letter-spacing:0.155940px;}
.ls51_c00227{letter-spacing:0.169500px;}
.ls20_c00227{letter-spacing:0.183060px;}
.ls2e_c00227{letter-spacing:0.189840px;}
.ls36_c00227{letter-spacing:0.196620px;}
.ls6f_c00227{letter-spacing:0.203400px;}
.ls1d_c00227{letter-spacing:0.210180px;}
.ls3d_c00227{letter-spacing:0.216960px;}
.ls3a_c00227{letter-spacing:0.223740px;}
.ls87_c00227{letter-spacing:0.244080px;}
.ls28_c00227{letter-spacing:0.250860px;}
.ls57_c00227{letter-spacing:0.271200px;}
.ls3b_c00227{letter-spacing:0.284760px;}
.ls14_c00227{letter-spacing:0.325440px;}
.ls4a_c00227{letter-spacing:0.339000px;}
.ls66_c00227{letter-spacing:0.379680px;}
.ls33_c00227{letter-spacing:0.386460px;}
.ls26_c00227{letter-spacing:0.393240px;}
.ls5c_c00227{letter-spacing:0.400020px;}
.ls44_c00227{letter-spacing:0.406800px;}
.ls58_c00227{letter-spacing:0.413580px;}
.ls75_c00227{letter-spacing:0.427140px;}
.ls2f_c00227{letter-spacing:0.447480px;}
.ls35_c00227{letter-spacing:0.454260px;}
.ls4d_c00227{letter-spacing:0.461040px;}
.ls2b_c00227{letter-spacing:0.481380px;}
.ls5b_c00227{letter-spacing:0.488160px;}
.ls5a_c00227{letter-spacing:0.494940px;}
.ls8_c00227{letter-spacing:0.508500px;}
.ls22_c00227{letter-spacing:0.515280px;}
.ls10_c00227{letter-spacing:0.522060px;}
.ls52_c00227{letter-spacing:0.535620px;}
.ls40_c00227{letter-spacing:0.549180px;}
.ls23_c00227{letter-spacing:0.562740px;}
.ls27_c00227{letter-spacing:0.576300px;}
.ls46_c00227{letter-spacing:0.577680px;}
.ls5_c00227{letter-spacing:0.583080px;}
.ls1c_c00227{letter-spacing:0.589860px;}
.lsb_c00227{letter-spacing:0.596640px;}
.ls5d_c00227{letter-spacing:0.603420px;}
.ls3f_c00227{letter-spacing:0.610200px;}
.ls4f_c00227{letter-spacing:0.616980px;}
.ls4c_c00227{letter-spacing:0.623760px;}
.ls15_c00227{letter-spacing:0.637320px;}
.ls34_c00227{letter-spacing:0.657660px;}
.ls21_c00227{letter-spacing:0.671220px;}
.ls54_c00227{letter-spacing:0.678000px;}
.ls1a_c00227{letter-spacing:0.684780px;}
.ls30_c00227{letter-spacing:0.705120px;}
.lsf_c00227{letter-spacing:0.718680px;}
.ls12_c00227{letter-spacing:0.759360px;}
.ls0_c00227{letter-spacing:0.779700px;}
.ls1e_c00227{letter-spacing:0.800040px;}
.ls25_c00227{letter-spacing:0.813600px;}
.ls29_c00227{letter-spacing:0.820380px;}
.ls6_c00227{letter-spacing:0.827160px;}
.ls45_c00227{letter-spacing:0.828240px;}
.ls6e_c00227{letter-spacing:0.833940px;}
.ls3_c00227{letter-spacing:0.840720px;}
.ls24_c00227{letter-spacing:0.854280px;}
.ls1f_c00227{letter-spacing:0.874620px;}
.ls56_c00227{letter-spacing:0.881400px;}
.ls2d_c00227{letter-spacing:0.908520px;}
.ls37_c00227{letter-spacing:0.955980px;}
.ls11_c00227{letter-spacing:0.962760px;}
.lse_c00227{letter-spacing:0.969540px;}
.ls59_c00227{letter-spacing:0.983100px;}
.ls7_c00227{letter-spacing:1.010220px;}
.ls2_c00227{letter-spacing:1.044120px;}
.ls16_c00227{letter-spacing:1.105140px;}
.ls32_c00227{letter-spacing:1.159380px;}
.ls48_c00227{letter-spacing:1.186500px;}
.ls18_c00227{letter-spacing:1.206840px;}
.ls42_c00227{letter-spacing:1.240740px;}
.ls3c_c00227{letter-spacing:1.267860px;}
.ls4b_c00227{letter-spacing:1.294980px;}
.ls55_c00227{letter-spacing:1.308540px;}
.ls31_c00227{letter-spacing:1.444140px;}
.ls63_c00227{letter-spacing:1.450920px;}
.ls17_c00227{letter-spacing:1.457700px;}
.ls2c_c00227{letter-spacing:1.478040px;}
.ls38_c00227{letter-spacing:1.674660px;}
.ls9_c00227{letter-spacing:1.762800px;}
.ls41_c00227{letter-spacing:1.918740px;}
.ls3e_c00227{letter-spacing:1.932300px;}
.ls43_c00227{letter-spacing:2.162820px;}
.ls2a_c00227{letter-spacing:2.203500px;}
.lsd_c00227{letter-spacing:2.223840px;}
.lsc_c00227{letter-spacing:2.637420px;}
.ls53_c00227{letter-spacing:2.773020px;}
.ls1_c00227{letter-spacing:2.874720px;}
.ls13_c00227{letter-spacing:3.023880px;}
.ls50_c00227{letter-spacing:3.108042px;}
.ls19_c00227{letter-spacing:3.376440px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{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__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00227{word-spacing:-15.010920px;}
.ws7_c00227{word-spacing:0.000000px;}
.ws3_c00227{word-spacing:0.644100px;}
.ws6_c00227{word-spacing:2.714520px;}
.ws1_c00227{word-spacing:12.420960px;}
.ws4_c00227{word-spacing:15.512640px;}
.ws0_c00227{word-spacing:17.763600px;}
.ws2_c00227{word-spacing:20.950200px;}
._9_c00227{margin-left:-7.091880px;}
._a_c00227{margin-left:-5.776560px;}
._c_c00227{margin-left:-3.837480px;}
._b_c00227{margin-left:-2.284860px;}
._12_c00227{margin-left:-1.139040px;}
._5_c00227{width:1.423800px;}
._7_c00227{width:2.915400px;}
._8_c00227{width:4.556160px;}
._13_c00227{width:5.566380px;}
._6_c00227{width:7.396980px;}
._f_c00227{width:9.119100px;}
._0_c00227{width:11.105640px;}
._e_c00227{width:12.204000px;}
._11_c00227{width:13.234560px;}
._d_c00227{width:14.529540px;}
._1_c00227{width:16.502520px;}
._10_c00227{width:18.102600px;}
._3_c00227{width:19.682340px;}
._14_c00227{width:21.309540px;}
._2_c00227{width:22.841820px;}
._4_c00227{width:24.069000px;}
.fc0_c00227{color:transparent;}
.fs6_c00227{font-size:44.400600px;}
.fs2_c00227{font-size:47.400600px;}
.fs9_c00227{font-size:56.400000px;}
.fsa_c00227{font-size:66.000000px;}
.fs0_c00227{font-size:66.600000px;}
.fs8_c00227{font-size:67.200000px;}
.fs1_c00227{font-size:67.800000px;}
.fs5_c00227{font-size:69.600000px;}
.fs3_c00227{font-size:72.600000px;}
.fs7_c00227{font-size:73.800000px;}
.fs4_c00227{font-size:76.800000px;}
.y0_c00227{bottom:0.000000px;}
.y1f_c00227{bottom:64.095015px;}
.y1e_c00227{bottom:170.992365px;}
.y1d_c00227{bottom:201.956865px;}
.y1c_c00227{bottom:233.297415px;}
.y1b_c00227{bottom:264.956115px;}
.y1a_c00227{bottom:327.247365px;}
.y19_c00227{bottom:358.217115px;}
.y18_c00227{bottom:421.576215px;}
.y17_c00227{bottom:451.815915px;}
.y16_c00227{bottom:515.178165px;}
.y15_c00227{bottom:545.400015px;}
.y14_c00227{bottom:609.120165px;}
.y21_c00227{bottom:615.255015px;}
.y20_c00227{bottom:618.840015px;}
.y13_c00227{bottom:640.087815px;}
.y12_c00227{bottom:702.735015px;}
.y11_c00227{bottom:765.005715px;}
.y10_c00227{bottom:795.956415px;}
.yf_c00227{bottom:827.280015px;}
.ye_c00227{bottom:889.575015px;}
.yd_c00227{bottom:889.581465px;}
.yb_c00227{bottom:921.596415px;}
.yc_c00227{bottom:921.600015px;}
.ya_c00227{bottom:952.920015px;}
.y9_c00227{bottom:952.924515px;}
.y8_c00227{bottom:984.960015px;}
.y7_c00227{bottom:984.966165px;}
.y6_c00227{bottom:1047.257415px;}
.y3_c00227{bottom:1078.914465px;}
.y4_c00227{bottom:1078.920015px;}
.y5_c00227{bottom:1080.375015px;}
.y2_c00227{bottom:1110.255015px;}
.y1_c00227{bottom:1184.760015px;}
.h4_c00227{height:49.437345px;}
.hd_c00227{height:55.353516px;}
.h2_c00227{height:65.364258px;}
.h3_c00227{height:66.541992px;}
.ha_c00227{height:66.557592px;}
.h7_c00227{height:66.579192px;}
.h8_c00227{height:68.274609px;}
.hf_c00227{height:68.835938px;}
.h9_c00227{height:69.488361px;}
.hc_c00227{height:70.118100px;}
.h5_c00227{height:71.252930px;}
.hb_c00227{height:72.443264px;}
.h6_c00227{height:75.375000px;}
.he_c00227{height:80.100000px;}
.h1_c00227{height:1263.000000px;}
.h0_c00227{height:1263.240015px;}
.w1_c00227{width:892.500000px;}
.w0_c00227{width:892.800000px;}
.x0_c00227{left:0.000000px;}
.x15_c00227{left:122.734050px;}
.x1_c00227{left:124.125000px;}
.xd_c00227{left:125.125650px;}
.x14_c00227{left:177.254100px;}
.x2_c00227{left:178.365000px;}
.x10_c00227{left:205.800000px;}
.x11_c00227{left:237.075000px;}
.x13_c00227{left:280.815000px;}
.x3_c00227{left:348.330000px;}
.x4_c00227{left:364.620000px;}
.x12_c00227{left:367.440000px;}
.x5_c00227{left:369.705000px;}
.x6_c00227{left:415.410000px;}
.x16_c00227{left:423.270000px;}
.x9_c00227{left:437.280000px;}
.xa_c00227{left:469.290000px;}
.x7_c00227{left:488.010000px;}
.x8_c00227{left:509.970000px;}
.xe_c00227{left:536.640000px;}
.xf_c00227{left:571.875000px;}
.xb_c00227{left:647.880000px;}
.xc_c00227{left:679.950000px;}
.x18_c00227{left:855.495000px;}
.x17_c00227{left:856.545000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.v1_c00227{vertical-align:23.032533pt;}
.ls6d_c00227{letter-spacing:-2.389333pt;}
.ls6b_c00227{letter-spacing:-2.258667pt;}
.ls64_c00227{letter-spacing:-2.109333pt;}
.ls5e_c00227{letter-spacing:-2.072000pt;}
.ls7d_c00227{letter-spacing:-1.723627pt;}
.ls79_c00227{letter-spacing:-1.681440pt;}
.ls5f_c00227{letter-spacing:-1.597067pt;}
.ls74_c00227{letter-spacing:-1.422293pt;}
.ls7e_c00227{letter-spacing:-1.253547pt;}
.ls68_c00227{letter-spacing:-1.247520pt;}
.ls83_c00227{letter-spacing:-0.958240pt;}
.ls7b_c00227{letter-spacing:-0.795520pt;}
.ls6c_c00227{letter-spacing:-0.753333pt;}
.ls82_c00227{letter-spacing:-0.717173pt;}
.ls7a_c00227{letter-spacing:-0.656907pt;}
.ls89_c00227{letter-spacing:-0.646720pt;}
.ls73_c00227{letter-spacing:-0.584587pt;}
.ls7c_c00227{letter-spacing:-0.506240pt;}
.ls76_c00227{letter-spacing:-0.488160pt;}
.ls88_c00227{letter-spacing:-0.482133pt;}
.ls69_c00227{letter-spacing:-0.397760pt;}
.ls62_c00227{letter-spacing:-0.379680pt;}
.ls7f_c00227{letter-spacing:-0.349547pt;}
.ls72_c00227{letter-spacing:-0.319413pt;}
.ls81_c00227{letter-spacing:-0.186827pt;}
.ls78_c00227{letter-spacing:-0.150667pt;}
.ls6a_c00227{letter-spacing:-0.126560pt;}
.ls60_c00227{letter-spacing:-0.120533pt;}
.ls86_c00227{letter-spacing:-0.108480pt;}
.ls67_c00227{letter-spacing:-0.096427pt;}
.ls80_c00227{letter-spacing:-0.048213pt;}
.ls85_c00227{letter-spacing:-0.018080pt;}
.ls84_c00227{letter-spacing:-0.012053pt;}
.ls65_c00227{letter-spacing:0.000000pt;}
.lsa_c00227{letter-spacing:0.018080pt;}
.ls47_c00227{letter-spacing:0.024107pt;}
.ls4_c00227{letter-spacing:0.030133pt;}
.ls39_c00227{letter-spacing:0.036160pt;}
.ls77_c00227{letter-spacing:0.066293pt;}
.ls61_c00227{letter-spacing:0.084373pt;}
.ls70_c00227{letter-spacing:0.096427pt;}
.ls4e_c00227{letter-spacing:0.108480pt;}
.ls49_c00227{letter-spacing:0.126560pt;}
.ls71_c00227{letter-spacing:0.132587pt;}
.ls1b_c00227{letter-spacing:0.138613pt;}
.ls51_c00227{letter-spacing:0.150667pt;}
.ls20_c00227{letter-spacing:0.162720pt;}
.ls2e_c00227{letter-spacing:0.168747pt;}
.ls36_c00227{letter-spacing:0.174773pt;}
.ls6f_c00227{letter-spacing:0.180800pt;}
.ls1d_c00227{letter-spacing:0.186827pt;}
.ls3d_c00227{letter-spacing:0.192853pt;}
.ls3a_c00227{letter-spacing:0.198880pt;}
.ls87_c00227{letter-spacing:0.216960pt;}
.ls28_c00227{letter-spacing:0.222987pt;}
.ls57_c00227{letter-spacing:0.241067pt;}
.ls3b_c00227{letter-spacing:0.253120pt;}
.ls14_c00227{letter-spacing:0.289280pt;}
.ls4a_c00227{letter-spacing:0.301333pt;}
.ls66_c00227{letter-spacing:0.337493pt;}
.ls33_c00227{letter-spacing:0.343520pt;}
.ls26_c00227{letter-spacing:0.349547pt;}
.ls5c_c00227{letter-spacing:0.355573pt;}
.ls44_c00227{letter-spacing:0.361600pt;}
.ls58_c00227{letter-spacing:0.367627pt;}
.ls75_c00227{letter-spacing:0.379680pt;}
.ls2f_c00227{letter-spacing:0.397760pt;}
.ls35_c00227{letter-spacing:0.403787pt;}
.ls4d_c00227{letter-spacing:0.409813pt;}
.ls2b_c00227{letter-spacing:0.427893pt;}
.ls5b_c00227{letter-spacing:0.433920pt;}
.ls5a_c00227{letter-spacing:0.439947pt;}
.ls8_c00227{letter-spacing:0.452000pt;}
.ls22_c00227{letter-spacing:0.458027pt;}
.ls10_c00227{letter-spacing:0.464053pt;}
.ls52_c00227{letter-spacing:0.476107pt;}
.ls40_c00227{letter-spacing:0.488160pt;}
.ls23_c00227{letter-spacing:0.500213pt;}
.ls27_c00227{letter-spacing:0.512267pt;}
.ls46_c00227{letter-spacing:0.513493pt;}
.ls5_c00227{letter-spacing:0.518293pt;}
.ls1c_c00227{letter-spacing:0.524320pt;}
.lsb_c00227{letter-spacing:0.530347pt;}
.ls5d_c00227{letter-spacing:0.536373pt;}
.ls3f_c00227{letter-spacing:0.542400pt;}
.ls4f_c00227{letter-spacing:0.548427pt;}
.ls4c_c00227{letter-spacing:0.554453pt;}
.ls15_c00227{letter-spacing:0.566507pt;}
.ls34_c00227{letter-spacing:0.584587pt;}
.ls21_c00227{letter-spacing:0.596640pt;}
.ls54_c00227{letter-spacing:0.602667pt;}
.ls1a_c00227{letter-spacing:0.608693pt;}
.ls30_c00227{letter-spacing:0.626773pt;}
.lsf_c00227{letter-spacing:0.638827pt;}
.ls12_c00227{letter-spacing:0.674987pt;}
.ls0_c00227{letter-spacing:0.693067pt;}
.ls1e_c00227{letter-spacing:0.711147pt;}
.ls25_c00227{letter-spacing:0.723200pt;}
.ls29_c00227{letter-spacing:0.729227pt;}
.ls6_c00227{letter-spacing:0.735253pt;}
.ls45_c00227{letter-spacing:0.736213pt;}
.ls6e_c00227{letter-spacing:0.741280pt;}
.ls3_c00227{letter-spacing:0.747307pt;}
.ls24_c00227{letter-spacing:0.759360pt;}
.ls1f_c00227{letter-spacing:0.777440pt;}
.ls56_c00227{letter-spacing:0.783467pt;}
.ls2d_c00227{letter-spacing:0.807573pt;}
.ls37_c00227{letter-spacing:0.849760pt;}
.ls11_c00227{letter-spacing:0.855787pt;}
.lse_c00227{letter-spacing:0.861813pt;}
.ls59_c00227{letter-spacing:0.873867pt;}
.ls7_c00227{letter-spacing:0.897973pt;}
.ls2_c00227{letter-spacing:0.928107pt;}
.ls16_c00227{letter-spacing:0.982347pt;}
.ls32_c00227{letter-spacing:1.030560pt;}
.ls48_c00227{letter-spacing:1.054667pt;}
.ls18_c00227{letter-spacing:1.072747pt;}
.ls42_c00227{letter-spacing:1.102880pt;}
.ls3c_c00227{letter-spacing:1.126987pt;}
.ls4b_c00227{letter-spacing:1.151093pt;}
.ls55_c00227{letter-spacing:1.163147pt;}
.ls31_c00227{letter-spacing:1.283680pt;}
.ls63_c00227{letter-spacing:1.289707pt;}
.ls17_c00227{letter-spacing:1.295733pt;}
.ls2c_c00227{letter-spacing:1.313813pt;}
.ls38_c00227{letter-spacing:1.488587pt;}
.ls9_c00227{letter-spacing:1.566933pt;}
.ls41_c00227{letter-spacing:1.705547pt;}
.ls3e_c00227{letter-spacing:1.717600pt;}
.ls43_c00227{letter-spacing:1.922507pt;}
.ls2a_c00227{letter-spacing:1.958667pt;}
.lsd_c00227{letter-spacing:1.976747pt;}
.lsc_c00227{letter-spacing:2.344373pt;}
.ls53_c00227{letter-spacing:2.464907pt;}
.ls1_c00227{letter-spacing:2.555307pt;}
.ls13_c00227{letter-spacing:2.687893pt;}
.ls50_c00227{letter-spacing:2.762704pt;}
.ls19_c00227{letter-spacing:3.001280pt;}
.ws5_c00227{word-spacing:-13.343040pt;}
.ws7_c00227{word-spacing:0.000000pt;}
.ws3_c00227{word-spacing:0.572533pt;}
.ws6_c00227{word-spacing:2.412907pt;}
.ws1_c00227{word-spacing:11.040853pt;}
.ws4_c00227{word-spacing:13.789013pt;}
.ws0_c00227{word-spacing:15.789867pt;}
.ws2_c00227{word-spacing:18.622400pt;}
._9_c00227{margin-left:-6.303893pt;}
._a_c00227{margin-left:-5.134720pt;}
._c_c00227{margin-left:-3.411093pt;}
._b_c00227{margin-left:-2.030987pt;}
._12_c00227{margin-left:-1.012480pt;}
._5_c00227{width:1.265600pt;}
._7_c00227{width:2.591467pt;}
._8_c00227{width:4.049920pt;}
._13_c00227{width:4.947893pt;}
._6_c00227{width:6.575093pt;}
._f_c00227{width:8.105867pt;}
._0_c00227{width:9.871680pt;}
._e_c00227{width:10.848000pt;}
._11_c00227{width:11.764053pt;}
._d_c00227{width:12.915147pt;}
._1_c00227{width:14.668907pt;}
._10_c00227{width:16.091200pt;}
._3_c00227{width:17.495413pt;}
._14_c00227{width:18.941813pt;}
._2_c00227{width:20.303840pt;}
._4_c00227{width:21.394667pt;}
.fs6_c00227{font-size:39.467200pt;}
.fs2_c00227{font-size:42.133867pt;}
.fs9_c00227{font-size:50.133333pt;}
.fsa_c00227{font-size:58.666667pt;}
.fs0_c00227{font-size:59.200000pt;}
.fs8_c00227{font-size:59.733333pt;}
.fs1_c00227{font-size:60.266667pt;}
.fs5_c00227{font-size:61.866667pt;}
.fs3_c00227{font-size:64.533333pt;}
.fs7_c00227{font-size:65.600000pt;}
.fs4_c00227{font-size:68.266667pt;}
.y0_c00227{bottom:0.000000pt;}
.y1f_c00227{bottom:56.973347pt;}
.y1e_c00227{bottom:151.993213pt;}
.y1d_c00227{bottom:179.517213pt;}
.y1c_c00227{bottom:207.375480pt;}
.y1b_c00227{bottom:235.516547pt;}
.y1a_c00227{bottom:290.886547pt;}
.y19_c00227{bottom:318.415213pt;}
.y18_c00227{bottom:374.734413pt;}
.y17_c00227{bottom:401.614147pt;}
.y16_c00227{bottom:457.936147pt;}
.y15_c00227{bottom:484.800013pt;}
.y14_c00227{bottom:541.440147pt;}
.y21_c00227{bottom:546.893347pt;}
.y20_c00227{bottom:550.080013pt;}
.y13_c00227{bottom:568.966947pt;}
.y12_c00227{bottom:624.653347pt;}
.y11_c00227{bottom:680.005080pt;}
.y10_c00227{bottom:707.516813pt;}
.yf_c00227{bottom:735.360013pt;}
.ye_c00227{bottom:790.733347pt;}
.yd_c00227{bottom:790.739080pt;}
.yb_c00227{bottom:819.196813pt;}
.yc_c00227{bottom:819.200013pt;}
.ya_c00227{bottom:847.040013pt;}
.y9_c00227{bottom:847.044013pt;}
.y8_c00227{bottom:875.520013pt;}
.y7_c00227{bottom:875.525480pt;}
.y6_c00227{bottom:930.895480pt;}
.y3_c00227{bottom:959.035080pt;}
.y4_c00227{bottom:959.040013pt;}
.y5_c00227{bottom:960.333347pt;}
.y2_c00227{bottom:986.893347pt;}
.y1_c00227{bottom:1053.120013pt;}
.h4_c00227{height:43.944306pt;}
.hd_c00227{height:49.203125pt;}
.h2_c00227{height:58.101562pt;}
.h3_c00227{height:59.148438pt;}
.ha_c00227{height:59.162304pt;}
.h7_c00227{height:59.181504pt;}
.h8_c00227{height:60.688542pt;}
.hf_c00227{height:61.187500pt;}
.h9_c00227{height:61.767432pt;}
.hc_c00227{height:62.327200pt;}
.h5_c00227{height:63.335938pt;}
.hb_c00227{height:64.394013pt;}
.h6_c00227{height:67.000000pt;}
.he_c00227{height:71.200000pt;}
.h1_c00227{height:1122.666667pt;}
.h0_c00227{height:1122.880013pt;}
.w1_c00227{width:793.333333pt;}
.w0_c00227{width:793.600000pt;}
.x0_c00227{left:0.000000pt;}
.x15_c00227{left:109.096933pt;}
.x1_c00227{left:110.333333pt;}
.xd_c00227{left:111.222800pt;}
.x14_c00227{left:157.559200pt;}
.x2_c00227{left:158.546667pt;}
.x10_c00227{left:182.933333pt;}
.x11_c00227{left:210.733333pt;}
.x13_c00227{left:249.613333pt;}
.x3_c00227{left:309.626667pt;}
.x4_c00227{left:324.106667pt;}
.x12_c00227{left:326.613333pt;}
.x5_c00227{left:328.626667pt;}
.x6_c00227{left:369.253333pt;}
.x16_c00227{left:376.240000pt;}
.x9_c00227{left:388.693333pt;}
.xa_c00227{left:417.146667pt;}
.x7_c00227{left:433.786667pt;}
.x8_c00227{left:453.306667pt;}
.xe_c00227{left:477.013333pt;}
.xf_c00227{left:508.333333pt;}
.xb_c00227{left:575.893333pt;}
.xc_c00227{left:604.400000pt;}
.x18_c00227{left:760.440000pt;}
.x17_c00227{left:761.373333pt;}
}





/* 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_c00228 {
    display:none;
  }
  .loading-indicator_c00228.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00228 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_c00228 { 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_c00228" -> "#page-container .classname_c00228")
 */
.pf_c00228 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00228 { /* 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_c00228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00228 { /* 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_c00228 { /* 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_c00228 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00228 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00228 {overflow:visible;}
  }
}
.c_c00228 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00228 { /* 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_c00228:after { /* webkit #35443 */
  content: '';
}
.t_c00228:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00228 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 */
}
.__c00228 { /* 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_c00228 { /* info for Javascript */
  display:none;
}
.l_c00228 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00228 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00228 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00228: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_c00228 {
    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_c00228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00228.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_c00228 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00228;src:url('chunks/assets/font_66ca42f02a9c4e0d2977bb52.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.284668;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_c00228;src:url('chunks/assets/font_5b2199f757f4e45dd63ee004.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.284180;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_c00228;src:url('chunks/assets/font_aa6ae14cbfd68440ec7577a1.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:0.666000;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_c00228;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;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;}
.m7_c00228{transform:matrix(0.140766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140766,0.000000,0.000000,0.250000,0,0);}
.m2_c00228{transform:matrix(0.168243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168243,0.000000,0.000000,0.250000,0,0);}
.me_c00228{transform:matrix(0.183449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183449,0.000000,0.000000,0.250000,0,0);}
.m11_c00228{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.mf_c00228{transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);}
.md_c00228{transform:matrix(0.236555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236555,0.000000,0.000000,0.250000,0,0);}
.m10_c00228{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m12_c00228{transform:matrix(0.237956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237956,0.000000,0.000000,0.250000,0,0);}
.mc_c00228{transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);}
.m6_c00228{transform:matrix(0.242013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242013,0.000000,0.000000,0.250000,0,0);}
.ma_c00228{transform:matrix(0.242879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242879,0.000000,0.000000,0.250000,0,0);}
.m0_c00228{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m3_c00228{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m5_c00228{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m4_c00228{transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);}
.mb_c00228{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m9_c00228{transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);}
.m1_c00228{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);}
.m8_c00228{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.v1_c00228{vertical-align:40.320000px;}
.ls6c_c00228{letter-spacing:-2.688000px;}
.ls4b_c00228{letter-spacing:-2.436000px;}
.ls52_c00228{letter-spacing:-2.415000px;}
.ls6d_c00228{letter-spacing:-2.408160px;}
.ls33_c00228{letter-spacing:-2.352000px;}
.ls8c_c00228{letter-spacing:-2.289000px;}
.ls75_c00228{letter-spacing:-2.255040px;}
.ls76_c00228{letter-spacing:-2.241120px;}
.ls6f_c00228{letter-spacing:-2.234160px;}
.ls5b_c00228{letter-spacing:-1.886160px;}
.ls79_c00228{letter-spacing:-1.774800px;}
.ls7e_c00228{letter-spacing:-1.722000px;}
.ls3c_c00228{letter-spacing:-1.649520px;}
.ls74_c00228{letter-spacing:-1.503360px;}
.ls6a_c00228{letter-spacing:-1.426800px;}
.ls3d_c00228{letter-spacing:-1.343280px;}
.ls42_c00228{letter-spacing:-1.266720px;}
.ls58_c00228{letter-spacing:-1.218000px;}
.ls88_c00228{letter-spacing:-1.169280px;}
.ls8a_c00228{letter-spacing:-1.141440px;}
.ls4e_c00228{letter-spacing:-1.099680px;}
.ls87_c00228{letter-spacing:-1.071840px;}
.ls69_c00228{letter-spacing:-1.053360px;}
.ls4d_c00228{letter-spacing:-0.981360px;}
.ls56_c00228{letter-spacing:-0.974400px;}
.ls57_c00228{letter-spacing:-0.897840px;}
.ls35_c00228{letter-spacing:-0.883920px;}
.ls4a_c00228{letter-spacing:-0.835200px;}
.ls72_c00228{letter-spacing:-0.807360px;}
.ls71_c00228{letter-spacing:-0.800400px;}
.ls60_c00228{letter-spacing:-0.779520px;}
.ls64_c00228{letter-spacing:-0.765600px;}
.ls77_c00228{letter-spacing:-0.668160px;}
.ls5f_c00228{letter-spacing:-0.661200px;}
.ls89_c00228{letter-spacing:-0.647280px;}
.ls41_c00228{letter-spacing:-0.612480px;}
.ls7a_c00228{letter-spacing:-0.591600px;}
.ls8b_c00228{letter-spacing:-0.584640px;}
.ls3b_c00228{letter-spacing:-0.542880px;}
.ls38_c00228{letter-spacing:-0.535920px;}
.ls51_c00228{letter-spacing:-0.508080px;}
.ls7b_c00228{letter-spacing:-0.501120px;}
.ls73_c00228{letter-spacing:-0.487200px;}
.ls82_c00228{letter-spacing:-0.480240px;}
.ls55_c00228{letter-spacing:-0.459360px;}
.ls44_c00228{letter-spacing:-0.445440px;}
.ls3a_c00228{letter-spacing:-0.438480px;}
.ls62_c00228{letter-spacing:-0.431520px;}
.ls83_c00228{letter-spacing:-0.424560px;}
.ls3e_c00228{letter-spacing:-0.403680px;}
.ls78_c00228{letter-spacing:-0.382800px;}
.ls6e_c00228{letter-spacing:-0.361920px;}
.ls84_c00228{letter-spacing:-0.354960px;}
.ls45_c00228{letter-spacing:-0.334080px;}
.ls54_c00228{letter-spacing:-0.320160px;}
.ls5d_c00228{letter-spacing:-0.313200px;}
.ls49_c00228{letter-spacing:-0.306240px;}
.ls81_c00228{letter-spacing:-0.292320px;}
.ls7f_c00228{letter-spacing:-0.285360px;}
.ls61_c00228{letter-spacing:-0.271440px;}
.ls5c_c00228{letter-spacing:-0.264480px;}
.ls50_c00228{letter-spacing:-0.257520px;}
.ls48_c00228{letter-spacing:-0.243600px;}
.ls34_c00228{letter-spacing:-0.229680px;}
.ls40_c00228{letter-spacing:-0.208800px;}
.ls70_c00228{letter-spacing:-0.187920px;}
.ls5e_c00228{letter-spacing:-0.180960px;}
.ls5a_c00228{letter-spacing:-0.174000px;}
.ls53_c00228{letter-spacing:-0.167040px;}
.ls46_c00228{letter-spacing:-0.160080px;}
.ls47_c00228{letter-spacing:-0.153120px;}
.ls6b_c00228{letter-spacing:-0.139200px;}
.ls80_c00228{letter-spacing:-0.118320px;}
.ls68_c00228{letter-spacing:-0.116280px;}
.ls43_c00228{letter-spacing:-0.111360px;}
.ls7d_c00228{letter-spacing:-0.104400px;}
.ls86_c00228{letter-spacing:-0.097440px;}
.ls37_c00228{letter-spacing:-0.090480px;}
.ls66_c00228{letter-spacing:-0.069600px;}
.ls39_c00228{letter-spacing:-0.062640px;}
.ls4f_c00228{letter-spacing:-0.055680px;}
.ls59_c00228{letter-spacing:-0.048720px;}
.ls3f_c00228{letter-spacing:-0.041760px;}
.ls65_c00228{letter-spacing:-0.027840px;}
.ls7c_c00228{letter-spacing:-0.006960px;}
.ls36_c00228{letter-spacing:0.000000px;}
.ls85_c00228{letter-spacing:0.006960px;}
.ls23_c00228{letter-spacing:0.020880px;}
.ls25_c00228{letter-spacing:0.027840px;}
.ls29_c00228{letter-spacing:0.034200px;}
.ls2f_c00228{letter-spacing:0.034800px;}
.ls5_c00228{letter-spacing:0.048720px;}
.ls8_c00228{letter-spacing:0.062640px;}
.ls31_c00228{letter-spacing:0.069600px;}
.ls4_c00228{letter-spacing:0.076560px;}
.ls1f_c00228{letter-spacing:0.083520px;}
.lsb_c00228{letter-spacing:0.097440px;}
.ls1_c00228{letter-spacing:0.104400px;}
.ls2c_c00228{letter-spacing:0.111360px;}
.ls1c_c00228{letter-spacing:0.118320px;}
.ls2b_c00228{letter-spacing:0.153120px;}
.ls12_c00228{letter-spacing:0.160080px;}
.lse_c00228{letter-spacing:0.174000px;}
.ls7_c00228{letter-spacing:0.180960px;}
.lsc_c00228{letter-spacing:0.208800px;}
.ls16_c00228{letter-spacing:0.215760px;}
.ls21_c00228{letter-spacing:0.229680px;}
.ls28_c00228{letter-spacing:0.239400px;}
.ls2d_c00228{letter-spacing:0.250560px;}
.ls3_c00228{letter-spacing:0.257520px;}
.ls15_c00228{letter-spacing:0.264480px;}
.ls13_c00228{letter-spacing:0.285360px;}
.ls9_c00228{letter-spacing:0.292320px;}
.ls1d_c00228{letter-spacing:0.294120px;}
.ls27_c00228{letter-spacing:0.306240px;}
.ls1b_c00228{letter-spacing:0.313200px;}
.lsd_c00228{letter-spacing:0.320160px;}
.ls1e_c00228{letter-spacing:0.321480px;}
.ls19_c00228{letter-spacing:0.327120px;}
.ls14_c00228{letter-spacing:0.348000px;}
.ls24_c00228{letter-spacing:0.361920px;}
.ls32_c00228{letter-spacing:0.382800px;}
.ls11_c00228{letter-spacing:0.417600px;}
.ls2_c00228{letter-spacing:0.478800px;}
.ls2e_c00228{letter-spacing:0.501120px;}
.lsa_c00228{letter-spacing:0.542880px;}
.ls10_c00228{letter-spacing:0.577680px;}
.ls2a_c00228{letter-spacing:0.622440px;}
.lsf_c00228{letter-spacing:0.647280px;}
.ls1a_c00228{letter-spacing:0.661200px;}
.ls18_c00228{letter-spacing:0.690840px;}
.ls30_c00228{letter-spacing:0.711360px;}
.ls26_c00228{letter-spacing:0.716880px;}
.ls63_c00228{letter-spacing:0.751680px;}
.ls6_c00228{letter-spacing:0.807360px;}
.ls0_c00228{letter-spacing:0.834480px;}
.ls17_c00228{letter-spacing:0.883920px;}
.ls20_c00228{letter-spacing:1.037040px;}
.ls22_c00228{letter-spacing:1.398960px;}
.ls4c_c00228{letter-spacing:1.983600px;}
.ls67_c00228{letter-spacing:3.420000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{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__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00228{word-spacing:-17.400000px;}
.ws0_c00228{word-spacing:-1.114320px;}
.ws7_c00228{word-spacing:0.000000px;}
.ws2_c00228{word-spacing:8.809800px;}
.ws4_c00228{word-spacing:8.989440px;}
.ws1_c00228{word-spacing:9.104400px;}
.ws3_c00228{word-spacing:11.301720px;}
.ws6_c00228{word-spacing:27.969360px;}
._12_c00228{margin-left:-2.916240px;}
._0_c00228{margin-left:-1.218000px;}
._2_c00228{width:1.092720px;}
._15_c00228{width:2.298960px;}
._13_c00228{width:3.758400px;}
._1_c00228{width:4.858080px;}
._4_c00228{width:6.305760px;}
._6_c00228{width:7.988640px;}
._3_c00228{width:9.012480px;}
._7_c00228{width:10.092000px;}
._5_c00228{width:11.972640px;}
._9_c00228{width:13.043760px;}
._8_c00228{width:14.247600px;}
._10_c00228{width:16.221120px;}
._a_c00228{width:18.759360px;}
._b_c00228{width:20.605920px;}
._11_c00228{width:21.984720px;}
._14_c00228{width:23.164800px;}
._f_c00228{width:24.916800px;}
._c_c00228{width:26.239200px;}
._d_c00228{width:27.742560px;}
._e_c00228{width:30.373440px;}
.fc0_c00228{color:transparent;}
.fs7_c00228{font-size:49.200000px;}
.fs6_c00228{font-size:49.800000px;}
.fs3_c00228{font-size:53.280000px;}
.fs8_c00228{font-size:56.160000px;}
.fs9_c00228{font-size:65.400000px;}
.fs0_c00228{font-size:67.200000px;}
.fs1_c00228{font-size:68.400000px;}
.fs4_c00228{font-size:69.000000px;}
.fs2_c00228{font-size:69.600000px;}
.fs5_c00228{font-size:76.800000px;}
.y0_c00228{bottom:0.000000px;}
.y1e_c00228{bottom:70.575006px;}
.y1d_c00228{bottom:144.720006px;}
.y1c_c00228{bottom:144.726606px;}
.y1b_c00228{bottom:176.760006px;}
.y1a_c00228{bottom:176.766606px;}
.y19_c00228{bottom:208.800006px;}
.y18_c00228{bottom:271.107006px;}
.y17_c00228{bottom:303.140406px;}
.y16_c00228{bottom:334.095006px;}
.y15_c00228{bottom:397.095006px;}
.y14_c00228{bottom:460.095006px;}
.y13_c00228{bottom:460.097406px;}
.y12_c00228{bottom:522.720006px;}
.y11_c00228{bottom:553.320006px;}
.y10_c00228{bottom:617.052006px;}
.yf_c00228{bottom:648.720006px;}
.ye_c00228{bottom:680.055006px;}
.yd_c00228{bottom:742.325406px;}
.yc_c00228{bottom:773.280006px;}
.ya_c00228{bottom:836.272206px;}
.yb_c00228{bottom:836.280006px;}
.y9_c00228{bottom:867.980406px;}
.y8_c00228{bottom:898.935006px;}
.y7_c00228{bottom:930.255006px;}
.y6_c00228{bottom:961.575006px;}
.y5_c00228{bottom:992.895006px;}
.y4_c00228{bottom:1024.222806px;}
.y3_c00228{bottom:1055.160006px;}
.y2_c00228{bottom:1117.800006px;}
.y1_c00228{bottom:1194.840006px;}
.h4_c00228{height:35.484480px;}
.hb_c00228{height:37.402560px;}
.h9_c00228{height:48.287109px;}
.hc_c00228{height:64.186523px;}
.h2_c00228{height:65.953125px;}
.h6_c00228{height:67.097461px;}
.h3_c00228{height:68.308594px;}
.h5_c00228{height:71.964844px;}
.h7_c00228{height:75.337500px;}
.ha_c00228{height:75.375000px;}
.h8_c00228{height:89.195977px;}
.h1_c00228{height:1263.000000px;}
.h0_c00228{height:1263.240006px;}
.w1_c00228{width:892.500000px;}
.w0_c00228{width:892.799998px;}
.x0_c00228{left:0.000000px;}
.x12_c00228{left:116.894998px;}
.xb_c00228{left:117.909599px;}
.x6_c00228{left:118.963199px;}
.x1_c00228{left:121.604999px;}
.x1b_c00228{left:170.804998px;}
.xf_c00228{left:171.884998px;}
.x2_c00228{left:174.764998px;}
.x1d_c00228{left:301.694999px;}
.x13_c00228{left:326.504999px;}
.x1e_c00228{left:334.289999px;}
.x14_c00228{left:399.014998px;}
.xe_c00228{left:421.199998px;}
.x15_c00228{left:436.964998px;}
.x3_c00228{left:459.014998px;}
.x21_c00228{left:478.814998px;}
.x9_c00228{left:505.259999px;}
.x22_c00228{left:510.689999px;}
.x17_c00228{left:519.644999px;}
.xa_c00228{left:524.129999px;}
.x18_c00228{left:547.349999px;}
.x4_c00228{left:552.794999px;}
.x1c_c00228{left:558.929999px;}
.x23_c00228{left:638.279999px;}
.x16_c00228{left:647.444999px;}
.x10_c00228{left:656.129999px;}
.x11_c00228{left:674.879999px;}
.xc_c00228{left:679.859998px;}
.x5_c00228{left:681.119999px;}
.x1f_c00228{left:694.439999px;}
.xd_c00228{left:708.089998px;}
.x7_c00228{left:713.129999px;}
.x19_c00228{left:719.279999px;}
.x20_c00228{left:726.734998px;}
.x8_c00228{left:733.499998px;}
.x1a_c00228{left:735.329998px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.v1_c00228{vertical-align:35.840000pt;}
.ls6c_c00228{letter-spacing:-2.389333pt;}
.ls4b_c00228{letter-spacing:-2.165333pt;}
.ls52_c00228{letter-spacing:-2.146667pt;}
.ls6d_c00228{letter-spacing:-2.140587pt;}
.ls33_c00228{letter-spacing:-2.090667pt;}
.ls8c_c00228{letter-spacing:-2.034667pt;}
.ls75_c00228{letter-spacing:-2.004480pt;}
.ls76_c00228{letter-spacing:-1.992107pt;}
.ls6f_c00228{letter-spacing:-1.985920pt;}
.ls5b_c00228{letter-spacing:-1.676587pt;}
.ls79_c00228{letter-spacing:-1.577600pt;}
.ls7e_c00228{letter-spacing:-1.530667pt;}
.ls3c_c00228{letter-spacing:-1.466240pt;}
.ls74_c00228{letter-spacing:-1.336320pt;}
.ls6a_c00228{letter-spacing:-1.268267pt;}
.ls3d_c00228{letter-spacing:-1.194027pt;}
.ls42_c00228{letter-spacing:-1.125973pt;}
.ls58_c00228{letter-spacing:-1.082667pt;}
.ls88_c00228{letter-spacing:-1.039360pt;}
.ls8a_c00228{letter-spacing:-1.014613pt;}
.ls4e_c00228{letter-spacing:-0.977493pt;}
.ls87_c00228{letter-spacing:-0.952747pt;}
.ls69_c00228{letter-spacing:-0.936320pt;}
.ls4d_c00228{letter-spacing:-0.872320pt;}
.ls56_c00228{letter-spacing:-0.866133pt;}
.ls57_c00228{letter-spacing:-0.798080pt;}
.ls35_c00228{letter-spacing:-0.785707pt;}
.ls4a_c00228{letter-spacing:-0.742400pt;}
.ls72_c00228{letter-spacing:-0.717653pt;}
.ls71_c00228{letter-spacing:-0.711467pt;}
.ls60_c00228{letter-spacing:-0.692907pt;}
.ls64_c00228{letter-spacing:-0.680533pt;}
.ls77_c00228{letter-spacing:-0.593920pt;}
.ls5f_c00228{letter-spacing:-0.587733pt;}
.ls89_c00228{letter-spacing:-0.575360pt;}
.ls41_c00228{letter-spacing:-0.544427pt;}
.ls7a_c00228{letter-spacing:-0.525867pt;}
.ls8b_c00228{letter-spacing:-0.519680pt;}
.ls3b_c00228{letter-spacing:-0.482560pt;}
.ls38_c00228{letter-spacing:-0.476373pt;}
.ls51_c00228{letter-spacing:-0.451627pt;}
.ls7b_c00228{letter-spacing:-0.445440pt;}
.ls73_c00228{letter-spacing:-0.433067pt;}
.ls82_c00228{letter-spacing:-0.426880pt;}
.ls55_c00228{letter-spacing:-0.408320pt;}
.ls44_c00228{letter-spacing:-0.395947pt;}
.ls3a_c00228{letter-spacing:-0.389760pt;}
.ls62_c00228{letter-spacing:-0.383573pt;}
.ls83_c00228{letter-spacing:-0.377387pt;}
.ls3e_c00228{letter-spacing:-0.358827pt;}
.ls78_c00228{letter-spacing:-0.340267pt;}
.ls6e_c00228{letter-spacing:-0.321707pt;}
.ls84_c00228{letter-spacing:-0.315520pt;}
.ls45_c00228{letter-spacing:-0.296960pt;}
.ls54_c00228{letter-spacing:-0.284587pt;}
.ls5d_c00228{letter-spacing:-0.278400pt;}
.ls49_c00228{letter-spacing:-0.272213pt;}
.ls81_c00228{letter-spacing:-0.259840pt;}
.ls7f_c00228{letter-spacing:-0.253653pt;}
.ls61_c00228{letter-spacing:-0.241280pt;}
.ls5c_c00228{letter-spacing:-0.235093pt;}
.ls50_c00228{letter-spacing:-0.228907pt;}
.ls48_c00228{letter-spacing:-0.216533pt;}
.ls34_c00228{letter-spacing:-0.204160pt;}
.ls40_c00228{letter-spacing:-0.185600pt;}
.ls70_c00228{letter-spacing:-0.167040pt;}
.ls5e_c00228{letter-spacing:-0.160853pt;}
.ls5a_c00228{letter-spacing:-0.154667pt;}
.ls53_c00228{letter-spacing:-0.148480pt;}
.ls46_c00228{letter-spacing:-0.142293pt;}
.ls47_c00228{letter-spacing:-0.136107pt;}
.ls6b_c00228{letter-spacing:-0.123733pt;}
.ls80_c00228{letter-spacing:-0.105173pt;}
.ls68_c00228{letter-spacing:-0.103360pt;}
.ls43_c00228{letter-spacing:-0.098987pt;}
.ls7d_c00228{letter-spacing:-0.092800pt;}
.ls86_c00228{letter-spacing:-0.086613pt;}
.ls37_c00228{letter-spacing:-0.080427pt;}
.ls66_c00228{letter-spacing:-0.061867pt;}
.ls39_c00228{letter-spacing:-0.055680pt;}
.ls4f_c00228{letter-spacing:-0.049493pt;}
.ls59_c00228{letter-spacing:-0.043307pt;}
.ls3f_c00228{letter-spacing:-0.037120pt;}
.ls65_c00228{letter-spacing:-0.024747pt;}
.ls7c_c00228{letter-spacing:-0.006187pt;}
.ls36_c00228{letter-spacing:0.000000pt;}
.ls85_c00228{letter-spacing:0.006187pt;}
.ls23_c00228{letter-spacing:0.018560pt;}
.ls25_c00228{letter-spacing:0.024747pt;}
.ls29_c00228{letter-spacing:0.030400pt;}
.ls2f_c00228{letter-spacing:0.030933pt;}
.ls5_c00228{letter-spacing:0.043307pt;}
.ls8_c00228{letter-spacing:0.055680pt;}
.ls31_c00228{letter-spacing:0.061867pt;}
.ls4_c00228{letter-spacing:0.068053pt;}
.ls1f_c00228{letter-spacing:0.074240pt;}
.lsb_c00228{letter-spacing:0.086613pt;}
.ls1_c00228{letter-spacing:0.092800pt;}
.ls2c_c00228{letter-spacing:0.098987pt;}
.ls1c_c00228{letter-spacing:0.105173pt;}
.ls2b_c00228{letter-spacing:0.136107pt;}
.ls12_c00228{letter-spacing:0.142293pt;}
.lse_c00228{letter-spacing:0.154667pt;}
.ls7_c00228{letter-spacing:0.160853pt;}
.lsc_c00228{letter-spacing:0.185600pt;}
.ls16_c00228{letter-spacing:0.191787pt;}
.ls21_c00228{letter-spacing:0.204160pt;}
.ls28_c00228{letter-spacing:0.212800pt;}
.ls2d_c00228{letter-spacing:0.222720pt;}
.ls3_c00228{letter-spacing:0.228907pt;}
.ls15_c00228{letter-spacing:0.235093pt;}
.ls13_c00228{letter-spacing:0.253653pt;}
.ls9_c00228{letter-spacing:0.259840pt;}
.ls1d_c00228{letter-spacing:0.261440pt;}
.ls27_c00228{letter-spacing:0.272213pt;}
.ls1b_c00228{letter-spacing:0.278400pt;}
.lsd_c00228{letter-spacing:0.284587pt;}
.ls1e_c00228{letter-spacing:0.285760pt;}
.ls19_c00228{letter-spacing:0.290773pt;}
.ls14_c00228{letter-spacing:0.309333pt;}
.ls24_c00228{letter-spacing:0.321707pt;}
.ls32_c00228{letter-spacing:0.340267pt;}
.ls11_c00228{letter-spacing:0.371200pt;}
.ls2_c00228{letter-spacing:0.425600pt;}
.ls2e_c00228{letter-spacing:0.445440pt;}
.lsa_c00228{letter-spacing:0.482560pt;}
.ls10_c00228{letter-spacing:0.513493pt;}
.ls2a_c00228{letter-spacing:0.553280pt;}
.lsf_c00228{letter-spacing:0.575360pt;}
.ls1a_c00228{letter-spacing:0.587733pt;}
.ls18_c00228{letter-spacing:0.614080pt;}
.ls30_c00228{letter-spacing:0.632320pt;}
.ls26_c00228{letter-spacing:0.637227pt;}
.ls63_c00228{letter-spacing:0.668160pt;}
.ls6_c00228{letter-spacing:0.717653pt;}
.ls0_c00228{letter-spacing:0.741760pt;}
.ls17_c00228{letter-spacing:0.785707pt;}
.ls20_c00228{letter-spacing:0.921813pt;}
.ls22_c00228{letter-spacing:1.243520pt;}
.ls4c_c00228{letter-spacing:1.763200pt;}
.ls67_c00228{letter-spacing:3.040000pt;}
.ws5_c00228{word-spacing:-15.466667pt;}
.ws0_c00228{word-spacing:-0.990507pt;}
.ws7_c00228{word-spacing:0.000000pt;}
.ws2_c00228{word-spacing:7.830933pt;}
.ws4_c00228{word-spacing:7.990613pt;}
.ws1_c00228{word-spacing:8.092800pt;}
.ws3_c00228{word-spacing:10.045973pt;}
.ws6_c00228{word-spacing:24.861653pt;}
._12_c00228{margin-left:-2.592213pt;}
._0_c00228{margin-left:-1.082667pt;}
._2_c00228{width:0.971307pt;}
._15_c00228{width:2.043520pt;}
._13_c00228{width:3.340800pt;}
._1_c00228{width:4.318293pt;}
._4_c00228{width:5.605120pt;}
._6_c00228{width:7.101013pt;}
._3_c00228{width:8.011093pt;}
._7_c00228{width:8.970667pt;}
._5_c00228{width:10.642347pt;}
._9_c00228{width:11.594453pt;}
._8_c00228{width:12.664533pt;}
._10_c00228{width:14.418773pt;}
._a_c00228{width:16.674987pt;}
._b_c00228{width:18.316373pt;}
._11_c00228{width:19.541973pt;}
._14_c00228{width:20.590933pt;}
._f_c00228{width:22.148267pt;}
._c_c00228{width:23.323733pt;}
._d_c00228{width:24.660053pt;}
._e_c00228{width:26.998613pt;}
.fs7_c00228{font-size:43.733333pt;}
.fs6_c00228{font-size:44.266667pt;}
.fs3_c00228{font-size:47.360000pt;}
.fs8_c00228{font-size:49.920000pt;}
.fs9_c00228{font-size:58.133333pt;}
.fs0_c00228{font-size:59.733333pt;}
.fs1_c00228{font-size:60.800000pt;}
.fs4_c00228{font-size:61.333333pt;}
.fs2_c00228{font-size:61.866667pt;}
.fs5_c00228{font-size:68.266667pt;}
.y0_c00228{bottom:0.000000pt;}
.y1e_c00228{bottom:62.733339pt;}
.y1d_c00228{bottom:128.640005pt;}
.y1c_c00228{bottom:128.645872pt;}
.y1b_c00228{bottom:157.120005pt;}
.y1a_c00228{bottom:157.125872pt;}
.y19_c00228{bottom:185.600005pt;}
.y18_c00228{bottom:240.984005pt;}
.y17_c00228{bottom:269.458139pt;}
.y16_c00228{bottom:296.973339pt;}
.y15_c00228{bottom:352.973339pt;}
.y14_c00228{bottom:408.973339pt;}
.y13_c00228{bottom:408.975472pt;}
.y12_c00228{bottom:464.640005pt;}
.y11_c00228{bottom:491.840005pt;}
.y10_c00228{bottom:548.490672pt;}
.yf_c00228{bottom:576.640005pt;}
.ye_c00228{bottom:604.493339pt;}
.yd_c00228{bottom:659.844805pt;}
.yc_c00228{bottom:687.360005pt;}
.ya_c00228{bottom:743.353072pt;}
.yb_c00228{bottom:743.360005pt;}
.y9_c00228{bottom:771.538139pt;}
.y8_c00228{bottom:799.053339pt;}
.y7_c00228{bottom:826.893339pt;}
.y6_c00228{bottom:854.733339pt;}
.y5_c00228{bottom:882.573339pt;}
.y4_c00228{bottom:910.420272pt;}
.y3_c00228{bottom:937.920005pt;}
.y2_c00228{bottom:993.600005pt;}
.y1_c00228{bottom:1062.080005pt;}
.h4_c00228{height:31.541760pt;}
.hb_c00228{height:33.246720pt;}
.h9_c00228{height:42.921875pt;}
.hc_c00228{height:57.054688pt;}
.h2_c00228{height:58.625000pt;}
.h6_c00228{height:59.642187pt;}
.h3_c00228{height:60.718750pt;}
.h5_c00228{height:63.968750pt;}
.h7_c00228{height:66.966667pt;}
.ha_c00228{height:67.000000pt;}
.h8_c00228{height:79.285313pt;}
.h1_c00228{height:1122.666667pt;}
.h0_c00228{height:1122.880005pt;}
.w1_c00228{width:793.333333pt;}
.w0_c00228{width:793.599999pt;}
.x0_c00228{left:0.000000pt;}
.x12_c00228{left:103.906665pt;}
.xb_c00228{left:104.808532pt;}
.x6_c00228{left:105.745065pt;}
.x1_c00228{left:108.093332pt;}
.x1b_c00228{left:151.826665pt;}
.xf_c00228{left:152.786665pt;}
.x2_c00228{left:155.346665pt;}
.x1d_c00228{left:268.173332pt;}
.x13_c00228{left:290.226665pt;}
.x1e_c00228{left:297.146665pt;}
.x14_c00228{left:354.679999pt;}
.xe_c00228{left:374.399999pt;}
.x15_c00228{left:388.413332pt;}
.x3_c00228{left:408.013332pt;}
.x21_c00228{left:425.613332pt;}
.x9_c00228{left:449.119999pt;}
.x22_c00228{left:453.946665pt;}
.x17_c00228{left:461.906665pt;}
.xa_c00228{left:465.893332pt;}
.x18_c00228{left:486.533332pt;}
.x4_c00228{left:491.373332pt;}
.x1c_c00228{left:496.826665pt;}
.x23_c00228{left:567.359999pt;}
.x16_c00228{left:575.506665pt;}
.x10_c00228{left:583.226665pt;}
.x11_c00228{left:599.893332pt;}
.xc_c00228{left:604.319999pt;}
.x5_c00228{left:605.439999pt;}
.x1f_c00228{left:617.279999pt;}
.xd_c00228{left:629.413332pt;}
.x7_c00228{left:633.893332pt;}
.x19_c00228{left:639.359999pt;}
.x20_c00228{left:645.986665pt;}
.x8_c00228{left:651.999999pt;}
.x1a_c00228{left:653.626665pt;}
}





/* 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_c00229 {
    display:none;
  }
  .loading-indicator_c00229.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00229 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_c00229 { 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_c00229" -> "#page-container .classname_c00229")
 */
.pf_c00229 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00229 { /* 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_c00229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00229 { /* 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_c00229 { /* 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_c00229 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00229 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00229 {overflow:visible;}
  }
}
.c_c00229 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00229 { /* 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_c00229:after { /* webkit #35443 */
  content: '';
}
.t_c00229:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00229 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 */
}
.__c00229 { /* 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_c00229 { /* info for Javascript */
  display:none;
}
.l_c00229 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00229 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00229 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00229: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_c00229 {
    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_c00229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00229.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_c00229 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00229;src:url('chunks/assets/font_53825b51a5bb171cbdc30cdb.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.284668;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_c00229;src:url('chunks/assets/font_ffc82b33643ec61b855a748a.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.284180;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_c00229;src:url('chunks/assets/font_46d93eb2d4ffdeb943dae69d.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:0.666000;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;}
.m1_c00229{transform:matrix(0.133972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133972,0.000000,0.000000,0.250000,0,0);}
.m4_c00229{transform:matrix(0.241779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241779,0.000000,0.000000,0.250000,0,0);}
.m2_c00229{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m3_c00229{transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);}
.m0_c00229{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);}
.m5_c00229{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls72_c00229{letter-spacing:-2.394000px;}
.ls85_c00229{letter-spacing:-2.373000px;}
.ls77_c00229{letter-spacing:-2.168280px;}
.ls64_c00229{letter-spacing:-2.134080px;}
.ls91_c00229{letter-spacing:-2.127240px;}
.ls58_c00229{letter-spacing:-1.963080px;}
.ls6c_c00229{letter-spacing:-1.901520px;}
.ls5e_c00229{letter-spacing:-1.812600px;}
.ls7c_c00229{letter-spacing:-1.566360px;}
.ls6e_c00229{letter-spacing:-1.450080px;}
.ls84_c00229{letter-spacing:-1.429560px;}
.ls60_c00229{letter-spacing:-1.409040px;}
.ls79_c00229{letter-spacing:-1.313280px;}
.ls73_c00229{letter-spacing:-1.258560px;}
.ls90_c00229{letter-spacing:-1.231200px;}
.ls5d_c00229{letter-spacing:-1.197000px;}
.ls74_c00229{letter-spacing:-1.149120px;}
.ls63_c00229{letter-spacing:-1.142280px;}
.ls82_c00229{letter-spacing:-1.080720px;}
.ls83_c00229{letter-spacing:-1.046520px;}
.ls7a_c00229{letter-spacing:-0.998640px;}
.ls80_c00229{letter-spacing:-0.943920px;}
.ls62_c00229{letter-spacing:-0.916560px;}
.ls7e_c00229{letter-spacing:-0.841320px;}
.ls56_c00229{letter-spacing:-0.684000px;}
.ls66_c00229{letter-spacing:-0.636120px;}
.ls57_c00229{letter-spacing:-0.615600px;}
.ls8b_c00229{letter-spacing:-0.608760px;}
.ls5b_c00229{letter-spacing:-0.581400px;}
.ls7b_c00229{letter-spacing:-0.574560px;}
.ls7d_c00229{letter-spacing:-0.540360px;}
.ls81_c00229{letter-spacing:-0.533520px;}
.ls54_c00229{letter-spacing:-0.526680px;}
.ls86_c00229{letter-spacing:-0.519840px;}
.ls6a_c00229{letter-spacing:-0.513000px;}
.ls67_c00229{letter-spacing:-0.485640px;}
.ls55_c00229{letter-spacing:-0.478800px;}
.ls76_c00229{letter-spacing:-0.471960px;}
.ls8a_c00229{letter-spacing:-0.458280px;}
.ls94_c00229{letter-spacing:-0.450300px;}
.ls61_c00229{letter-spacing:-0.430920px;}
.ls92_c00229{letter-spacing:-0.396720px;}
.ls68_c00229{letter-spacing:-0.376200px;}
.ls71_c00229{letter-spacing:-0.342000px;}
.ls93_c00229{letter-spacing:-0.335160px;}
.ls7f_c00229{letter-spacing:-0.300960px;}
.ls6f_c00229{letter-spacing:-0.294120px;}
.ls78_c00229{letter-spacing:-0.225720px;}
.ls8e_c00229{letter-spacing:-0.212040px;}
.ls6b_c00229{letter-spacing:-0.205200px;}
.ls59_c00229{letter-spacing:-0.177840px;}
.ls65_c00229{letter-spacing:-0.171000px;}
.ls69_c00229{letter-spacing:-0.150480px;}
.ls75_c00229{letter-spacing:-0.143640px;}
.ls70_c00229{letter-spacing:-0.102600px;}
.ls5a_c00229{letter-spacing:-0.095760px;}
.ls6d_c00229{letter-spacing:-0.068400px;}
.ls8f_c00229{letter-spacing:-0.061560px;}
.ls5c_c00229{letter-spacing:-0.041040px;}
.ls87_c00229{letter-spacing:-0.034200px;}
.ls8c_c00229{letter-spacing:-0.027360px;}
.ls5f_c00229{letter-spacing:-0.020520px;}
.ls53_c00229{letter-spacing:0.000000px;}
.lsf_c00229{letter-spacing:0.006840px;}
.ls4e_c00229{letter-spacing:0.034200px;}
.ls8_c00229{letter-spacing:0.041040px;}
.ls6_c00229{letter-spacing:0.061560px;}
.ls3_c00229{letter-spacing:0.075240px;}
.ls30_c00229{letter-spacing:0.082080px;}
.ls4_c00229{letter-spacing:0.088920px;}
.ls35_c00229{letter-spacing:0.095760px;}
.ls2b_c00229{letter-spacing:0.102600px;}
.ls33_c00229{letter-spacing:0.109440px;}
.ls21_c00229{letter-spacing:0.116280px;}
.ls48_c00229{letter-spacing:0.123120px;}
.ls11_c00229{letter-spacing:0.129960px;}
.ls3d_c00229{letter-spacing:0.136800px;}
.ls23_c00229{letter-spacing:0.164160px;}
.ls4f_c00229{letter-spacing:0.191520px;}
.ls46_c00229{letter-spacing:0.212040px;}
.ls28_c00229{letter-spacing:0.218880px;}
.ls2d_c00229{letter-spacing:0.225720px;}
.ls3b_c00229{letter-spacing:0.239400px;}
.ls42_c00229{letter-spacing:0.246240px;}
.ls2e_c00229{letter-spacing:0.273600px;}
.lsd_c00229{letter-spacing:0.280440px;}
.ls4b_c00229{letter-spacing:0.287280px;}
.ls1b_c00229{letter-spacing:0.294120px;}
.ls0_c00229{letter-spacing:0.300960px;}
.ls31_c00229{letter-spacing:0.314640px;}
.ls13_c00229{letter-spacing:0.321480px;}
.ls44_c00229{letter-spacing:0.328320px;}
.ls2c_c00229{letter-spacing:0.335160px;}
.ls12_c00229{letter-spacing:0.342000px;}
.ls22_c00229{letter-spacing:0.355680px;}
.ls24_c00229{letter-spacing:0.369360px;}
.ls40_c00229{letter-spacing:0.383040px;}
.ls37_c00229{letter-spacing:0.389880px;}
.ls89_c00229{letter-spacing:0.410400px;}
.ls27_c00229{letter-spacing:0.437760px;}
.ls4d_c00229{letter-spacing:0.451440px;}
.ls50_c00229{letter-spacing:0.458280px;}
.ls49_c00229{letter-spacing:0.465120px;}
.ls3a_c00229{letter-spacing:0.471960px;}
.ls3f_c00229{letter-spacing:0.485640px;}
.lsc_c00229{letter-spacing:0.499320px;}
.ls9_c00229{letter-spacing:0.506160px;}
.ls47_c00229{letter-spacing:0.519840px;}
.ls14_c00229{letter-spacing:0.526680px;}
.ls7_c00229{letter-spacing:0.533520px;}
.ls4a_c00229{letter-spacing:0.554040px;}
.ls17_c00229{letter-spacing:0.574560px;}
.ls39_c00229{letter-spacing:0.581400px;}
.ls45_c00229{letter-spacing:0.588240px;}
.ls19_c00229{letter-spacing:0.595080px;}
.ls26_c00229{letter-spacing:0.608760px;}
.ls3e_c00229{letter-spacing:0.622440px;}
.ls1c_c00229{letter-spacing:0.636120px;}
.ls20_c00229{letter-spacing:0.642960px;}
.ls41_c00229{letter-spacing:0.656640px;}
.ls2_c00229{letter-spacing:0.677160px;}
.ls1_c00229{letter-spacing:0.697680px;}
.ls38_c00229{letter-spacing:0.718200px;}
.ls32_c00229{letter-spacing:0.725040px;}
.ls15_c00229{letter-spacing:0.752400px;}
.ls36_c00229{letter-spacing:0.793440px;}
.ls1d_c00229{letter-spacing:0.813960px;}
.ls10_c00229{letter-spacing:0.820800px;}
.ls51_c00229{letter-spacing:0.855000px;}
.ls25_c00229{letter-spacing:0.868680px;}
.ls43_c00229{letter-spacing:0.937080px;}
.ls16_c00229{letter-spacing:0.950760px;}
.ls34_c00229{letter-spacing:0.971280px;}
.lse_c00229{letter-spacing:1.012320px;}
.ls5_c00229{letter-spacing:1.046520px;}
.ls8d_c00229{letter-spacing:1.060200px;}
.ls1e_c00229{letter-spacing:1.067040px;}
.lsa_c00229{letter-spacing:1.101240px;}
.ls18_c00229{letter-spacing:1.272240px;}
.ls1f_c00229{letter-spacing:1.477440px;}
.ls4c_c00229{letter-spacing:1.504800px;}
.ls52_c00229{letter-spacing:1.557420px;}
.lsb_c00229{letter-spacing:1.648440px;}
.ls1a_c00229{letter-spacing:1.737360px;}
.ls3c_c00229{letter-spacing:2.038320px;}
.ls29_c00229{letter-spacing:2.250360px;}
.ls2a_c00229{letter-spacing:2.715480px;}
.ls2f_c00229{letter-spacing:3.242160px;}
.ls88_c00229{letter-spacing:3.420000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{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__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00229{word-spacing:0.000000px;}
.ws1_c00229{word-spacing:3.762000px;}
.ws3_c00229{word-spacing:6.607440px;}
.ws2_c00229{word-spacing:7.250400px;}
.ws4_c00229{word-spacing:12.954960px;}
.ws0_c00229{word-spacing:15.663600px;}
._c_c00229{margin-left:-6.805800px;}
._12_c00229{margin-left:-5.068440px;}
._a_c00229{margin-left:-2.284560px;}
._11_c00229{margin-left:-1.272840px;}
._d_c00229{width:1.063320px;}
._b_c00229{width:2.216160px;}
._8_c00229{width:3.343200px;}
._9_c00229{width:5.114040px;}
._19_c00229{width:6.224400px;}
._2_c00229{width:7.229880px;}
._10_c00229{width:8.578920px;}
._0_c00229{width:10.246320px;}
._f_c00229{width:11.381760px;}
._1_c00229{width:12.462480px;}
._3_c00229{width:13.673160px;}
._6_c00229{width:14.767560px;}
._5_c00229{width:15.800400px;}
._4_c00229{width:18.727920px;}
._7_c00229{width:19.829160px;}
._15_c00229{width:20.937240px;}
._13_c00229{width:22.216320px;}
._1b_c00229{width:23.509080px;}
._16_c00229{width:26.204040px;}
._1c_c00229{width:27.537840px;}
._14_c00229{width:29.015280px;}
._1a_c00229{width:31.197240px;}
._17_c00229{width:33.290280px;}
._1d_c00229{width:35.000280px;}
._e_c00229{width:38.865000px;}
._18_c00229{width:49.542120px;}
.fc0_c00229{color:transparent;}
.fs2_c00229{font-size:54.720000px;}
.fs4_c00229{font-size:57.000000px;}
.fs0_c00229{font-size:60.600000px;}
.fs3_c00229{font-size:67.800000px;}
.fs1_c00229{font-size:68.400000px;}
.y0_c00229{bottom:0.000000px;}
.y1d_c00229{bottom:74.175000px;}
.y1c_c00229{bottom:152.635200px;}
.y1b_c00229{bottom:183.227100px;}
.y1a_c00229{bottom:246.240600px;}
.y19_c00229{bottom:277.567800px;}
.y18_c00229{bottom:308.159700px;}
.y17_c00229{bottom:339.486900px;}
.y16_c00229{bottom:370.455000px;}
.y15_c00229{bottom:433.095000px;}
.y14_c00229{bottom:464.400000px;}
.y13_c00229{bottom:495.375000px;}
.y12_c00229{bottom:495.377700px;}
.y10_c00229{bottom:558.002400px;}
.y11_c00229{bottom:558.015000px;}
.yf_c00229{bottom:589.688700px;}
.ye_c00229{bottom:620.639700px;}
.yd_c00229{bottom:682.935000px;}
.yc_c00229{bottom:713.895000px;}
.yb_c00229{bottom:776.890800px;}
.ya_c00229{bottom:808.570500px;}
.y9_c00229{bottom:871.566900px;}
.y8_c00229{bottom:902.535000px;}
.y7_c00229{bottom:964.080000px;}
.y6_c00229{bottom:995.399700px;}
.y5_c00229{bottom:1026.726900px;}
.y4_c00229{bottom:1057.680600px;}
.y3_c00229{bottom:1088.648700px;}
.y2_c00229{bottom:1120.335000px;}
.y1_c00229{bottom:1195.200000px;}
.h5_c00229{height:36.443520px;}
.h8_c00229{height:55.942383px;}
.h2_c00229{height:59.475586px;}
.h7_c00229{height:66.541992px;}
.h3_c00229{height:67.130859px;}
.h6_c00229{height:67.147659px;}
.h4_c00229{height:67.188459px;}
.h1_c00229{height:1263.000000px;}
.h0_c00229{height:1263.240000px;}
.w1_c00229{width:892.500000px;}
.w0_c00229{width:892.800000px;}
.x0_c00229{left:0.000000px;}
.x1_c00229{left:123.405000px;}
.x3_c00229{left:124.729800px;}
.x2_c00229{left:177.630000px;}
.x9_c00229{left:178.839300px;}
.x6_c00229{left:234.735000px;}
.x7_c00229{left:244.965000px;}
.x8_c00229{left:272.325000px;}
.xe_c00229{left:423.990000px;}
.xa_c00229{left:427.485000px;}
.xb_c00229{left:454.500000px;}
.xc_c00229{left:572.295000px;}
.x4_c00229{left:617.775000px;}
.xd_c00229{left:676.710000px;}
.x5_c00229{left:700.890000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls72_c00229{letter-spacing:-2.128000pt;}
.ls85_c00229{letter-spacing:-2.109333pt;}
.ls77_c00229{letter-spacing:-1.927360pt;}
.ls64_c00229{letter-spacing:-1.896960pt;}
.ls91_c00229{letter-spacing:-1.890880pt;}
.ls58_c00229{letter-spacing:-1.744960pt;}
.ls6c_c00229{letter-spacing:-1.690240pt;}
.ls5e_c00229{letter-spacing:-1.611200pt;}
.ls7c_c00229{letter-spacing:-1.392320pt;}
.ls6e_c00229{letter-spacing:-1.288960pt;}
.ls84_c00229{letter-spacing:-1.270720pt;}
.ls60_c00229{letter-spacing:-1.252480pt;}
.ls79_c00229{letter-spacing:-1.167360pt;}
.ls73_c00229{letter-spacing:-1.118720pt;}
.ls90_c00229{letter-spacing:-1.094400pt;}
.ls5d_c00229{letter-spacing:-1.064000pt;}
.ls74_c00229{letter-spacing:-1.021440pt;}
.ls63_c00229{letter-spacing:-1.015360pt;}
.ls82_c00229{letter-spacing:-0.960640pt;}
.ls83_c00229{letter-spacing:-0.930240pt;}
.ls7a_c00229{letter-spacing:-0.887680pt;}
.ls80_c00229{letter-spacing:-0.839040pt;}
.ls62_c00229{letter-spacing:-0.814720pt;}
.ls7e_c00229{letter-spacing:-0.747840pt;}
.ls56_c00229{letter-spacing:-0.608000pt;}
.ls66_c00229{letter-spacing:-0.565440pt;}
.ls57_c00229{letter-spacing:-0.547200pt;}
.ls8b_c00229{letter-spacing:-0.541120pt;}
.ls5b_c00229{letter-spacing:-0.516800pt;}
.ls7b_c00229{letter-spacing:-0.510720pt;}
.ls7d_c00229{letter-spacing:-0.480320pt;}
.ls81_c00229{letter-spacing:-0.474240pt;}
.ls54_c00229{letter-spacing:-0.468160pt;}
.ls86_c00229{letter-spacing:-0.462080pt;}
.ls6a_c00229{letter-spacing:-0.456000pt;}
.ls67_c00229{letter-spacing:-0.431680pt;}
.ls55_c00229{letter-spacing:-0.425600pt;}
.ls76_c00229{letter-spacing:-0.419520pt;}
.ls8a_c00229{letter-spacing:-0.407360pt;}
.ls94_c00229{letter-spacing:-0.400267pt;}
.ls61_c00229{letter-spacing:-0.383040pt;}
.ls92_c00229{letter-spacing:-0.352640pt;}
.ls68_c00229{letter-spacing:-0.334400pt;}
.ls71_c00229{letter-spacing:-0.304000pt;}
.ls93_c00229{letter-spacing:-0.297920pt;}
.ls7f_c00229{letter-spacing:-0.267520pt;}
.ls6f_c00229{letter-spacing:-0.261440pt;}
.ls78_c00229{letter-spacing:-0.200640pt;}
.ls8e_c00229{letter-spacing:-0.188480pt;}
.ls6b_c00229{letter-spacing:-0.182400pt;}
.ls59_c00229{letter-spacing:-0.158080pt;}
.ls65_c00229{letter-spacing:-0.152000pt;}
.ls69_c00229{letter-spacing:-0.133760pt;}
.ls75_c00229{letter-spacing:-0.127680pt;}
.ls70_c00229{letter-spacing:-0.091200pt;}
.ls5a_c00229{letter-spacing:-0.085120pt;}
.ls6d_c00229{letter-spacing:-0.060800pt;}
.ls8f_c00229{letter-spacing:-0.054720pt;}
.ls5c_c00229{letter-spacing:-0.036480pt;}
.ls87_c00229{letter-spacing:-0.030400pt;}
.ls8c_c00229{letter-spacing:-0.024320pt;}
.ls5f_c00229{letter-spacing:-0.018240pt;}
.ls53_c00229{letter-spacing:0.000000pt;}
.lsf_c00229{letter-spacing:0.006080pt;}
.ls4e_c00229{letter-spacing:0.030400pt;}
.ls8_c00229{letter-spacing:0.036480pt;}
.ls6_c00229{letter-spacing:0.054720pt;}
.ls3_c00229{letter-spacing:0.066880pt;}
.ls30_c00229{letter-spacing:0.072960pt;}
.ls4_c00229{letter-spacing:0.079040pt;}
.ls35_c00229{letter-spacing:0.085120pt;}
.ls2b_c00229{letter-spacing:0.091200pt;}
.ls33_c00229{letter-spacing:0.097280pt;}
.ls21_c00229{letter-spacing:0.103360pt;}
.ls48_c00229{letter-spacing:0.109440pt;}
.ls11_c00229{letter-spacing:0.115520pt;}
.ls3d_c00229{letter-spacing:0.121600pt;}
.ls23_c00229{letter-spacing:0.145920pt;}
.ls4f_c00229{letter-spacing:0.170240pt;}
.ls46_c00229{letter-spacing:0.188480pt;}
.ls28_c00229{letter-spacing:0.194560pt;}
.ls2d_c00229{letter-spacing:0.200640pt;}
.ls3b_c00229{letter-spacing:0.212800pt;}
.ls42_c00229{letter-spacing:0.218880pt;}
.ls2e_c00229{letter-spacing:0.243200pt;}
.lsd_c00229{letter-spacing:0.249280pt;}
.ls4b_c00229{letter-spacing:0.255360pt;}
.ls1b_c00229{letter-spacing:0.261440pt;}
.ls0_c00229{letter-spacing:0.267520pt;}
.ls31_c00229{letter-spacing:0.279680pt;}
.ls13_c00229{letter-spacing:0.285760pt;}
.ls44_c00229{letter-spacing:0.291840pt;}
.ls2c_c00229{letter-spacing:0.297920pt;}
.ls12_c00229{letter-spacing:0.304000pt;}
.ls22_c00229{letter-spacing:0.316160pt;}
.ls24_c00229{letter-spacing:0.328320pt;}
.ls40_c00229{letter-spacing:0.340480pt;}
.ls37_c00229{letter-spacing:0.346560pt;}
.ls89_c00229{letter-spacing:0.364800pt;}
.ls27_c00229{letter-spacing:0.389120pt;}
.ls4d_c00229{letter-spacing:0.401280pt;}
.ls50_c00229{letter-spacing:0.407360pt;}
.ls49_c00229{letter-spacing:0.413440pt;}
.ls3a_c00229{letter-spacing:0.419520pt;}
.ls3f_c00229{letter-spacing:0.431680pt;}
.lsc_c00229{letter-spacing:0.443840pt;}
.ls9_c00229{letter-spacing:0.449920pt;}
.ls47_c00229{letter-spacing:0.462080pt;}
.ls14_c00229{letter-spacing:0.468160pt;}
.ls7_c00229{letter-spacing:0.474240pt;}
.ls4a_c00229{letter-spacing:0.492480pt;}
.ls17_c00229{letter-spacing:0.510720pt;}
.ls39_c00229{letter-spacing:0.516800pt;}
.ls45_c00229{letter-spacing:0.522880pt;}
.ls19_c00229{letter-spacing:0.528960pt;}
.ls26_c00229{letter-spacing:0.541120pt;}
.ls3e_c00229{letter-spacing:0.553280pt;}
.ls1c_c00229{letter-spacing:0.565440pt;}
.ls20_c00229{letter-spacing:0.571520pt;}
.ls41_c00229{letter-spacing:0.583680pt;}
.ls2_c00229{letter-spacing:0.601920pt;}
.ls1_c00229{letter-spacing:0.620160pt;}
.ls38_c00229{letter-spacing:0.638400pt;}
.ls32_c00229{letter-spacing:0.644480pt;}
.ls15_c00229{letter-spacing:0.668800pt;}
.ls36_c00229{letter-spacing:0.705280pt;}
.ls1d_c00229{letter-spacing:0.723520pt;}
.ls10_c00229{letter-spacing:0.729600pt;}
.ls51_c00229{letter-spacing:0.760000pt;}
.ls25_c00229{letter-spacing:0.772160pt;}
.ls43_c00229{letter-spacing:0.832960pt;}
.ls16_c00229{letter-spacing:0.845120pt;}
.ls34_c00229{letter-spacing:0.863360pt;}
.lse_c00229{letter-spacing:0.899840pt;}
.ls5_c00229{letter-spacing:0.930240pt;}
.ls8d_c00229{letter-spacing:0.942400pt;}
.ls1e_c00229{letter-spacing:0.948480pt;}
.lsa_c00229{letter-spacing:0.978880pt;}
.ls18_c00229{letter-spacing:1.130880pt;}
.ls1f_c00229{letter-spacing:1.313280pt;}
.ls4c_c00229{letter-spacing:1.337600pt;}
.ls52_c00229{letter-spacing:1.384373pt;}
.lsb_c00229{letter-spacing:1.465280pt;}
.ls1a_c00229{letter-spacing:1.544320pt;}
.ls3c_c00229{letter-spacing:1.811840pt;}
.ls29_c00229{letter-spacing:2.000320pt;}
.ls2a_c00229{letter-spacing:2.413760pt;}
.ls2f_c00229{letter-spacing:2.881920pt;}
.ls88_c00229{letter-spacing:3.040000pt;}
.ws5_c00229{word-spacing:0.000000pt;}
.ws1_c00229{word-spacing:3.344000pt;}
.ws3_c00229{word-spacing:5.873280pt;}
.ws2_c00229{word-spacing:6.444800pt;}
.ws4_c00229{word-spacing:11.515520pt;}
.ws0_c00229{word-spacing:13.923200pt;}
._c_c00229{margin-left:-6.049600pt;}
._12_c00229{margin-left:-4.505280pt;}
._a_c00229{margin-left:-2.030720pt;}
._11_c00229{margin-left:-1.131413pt;}
._d_c00229{width:0.945173pt;}
._b_c00229{width:1.969920pt;}
._8_c00229{width:2.971733pt;}
._9_c00229{width:4.545813pt;}
._19_c00229{width:5.532800pt;}
._2_c00229{width:6.426560pt;}
._10_c00229{width:7.625707pt;}
._0_c00229{width:9.107840pt;}
._f_c00229{width:10.117120pt;}
._1_c00229{width:11.077760pt;}
._3_c00229{width:12.153920pt;}
._6_c00229{width:13.126720pt;}
._5_c00229{width:14.044800pt;}
._4_c00229{width:16.647040pt;}
._7_c00229{width:17.625920pt;}
._15_c00229{width:18.610880pt;}
._13_c00229{width:19.747840pt;}
._1b_c00229{width:20.896960pt;}
._16_c00229{width:23.292480pt;}
._1c_c00229{width:24.478080pt;}
._14_c00229{width:25.791360pt;}
._1a_c00229{width:27.730880pt;}
._17_c00229{width:29.591360pt;}
._1d_c00229{width:31.111360pt;}
._e_c00229{width:34.546667pt;}
._18_c00229{width:44.037440pt;}
.fs2_c00229{font-size:48.640000pt;}
.fs4_c00229{font-size:50.666667pt;}
.fs0_c00229{font-size:53.866667pt;}
.fs3_c00229{font-size:60.266667pt;}
.fs1_c00229{font-size:60.800000pt;}
.y0_c00229{bottom:0.000000pt;}
.y1d_c00229{bottom:65.933333pt;}
.y1c_c00229{bottom:135.675733pt;}
.y1b_c00229{bottom:162.868533pt;}
.y1a_c00229{bottom:218.880533pt;}
.y19_c00229{bottom:246.726933pt;}
.y18_c00229{bottom:273.919733pt;}
.y17_c00229{bottom:301.766133pt;}
.y16_c00229{bottom:329.293333pt;}
.y15_c00229{bottom:384.973333pt;}
.y14_c00229{bottom:412.800000pt;}
.y13_c00229{bottom:440.333333pt;}
.y12_c00229{bottom:440.335733pt;}
.y10_c00229{bottom:496.002133pt;}
.y11_c00229{bottom:496.013333pt;}
.yf_c00229{bottom:524.167733pt;}
.ye_c00229{bottom:551.679733pt;}
.yd_c00229{bottom:607.053333pt;}
.yc_c00229{bottom:634.573333pt;}
.yb_c00229{bottom:690.569600pt;}
.ya_c00229{bottom:718.729333pt;}
.y9_c00229{bottom:774.726133pt;}
.y8_c00229{bottom:802.253333pt;}
.y7_c00229{bottom:856.960000pt;}
.y6_c00229{bottom:884.799733pt;}
.y5_c00229{bottom:912.646133pt;}
.y4_c00229{bottom:940.160533pt;}
.y3_c00229{bottom:967.687733pt;}
.y2_c00229{bottom:995.853333pt;}
.y1_c00229{bottom:1062.400000pt;}
.h5_c00229{height:32.394240pt;}
.h8_c00229{height:49.726562pt;}
.h2_c00229{height:52.867187pt;}
.h7_c00229{height:59.148438pt;}
.h3_c00229{height:59.671875pt;}
.h6_c00229{height:59.686808pt;}
.h4_c00229{height:59.723075pt;}
.h1_c00229{height:1122.666667pt;}
.h0_c00229{height:1122.880000pt;}
.w1_c00229{width:793.333333pt;}
.w0_c00229{width:793.600000pt;}
.x0_c00229{left:0.000000pt;}
.x1_c00229{left:109.693333pt;}
.x3_c00229{left:110.870933pt;}
.x2_c00229{left:157.893333pt;}
.x9_c00229{left:158.968267pt;}
.x6_c00229{left:208.653333pt;}
.x7_c00229{left:217.746667pt;}
.x8_c00229{left:242.066667pt;}
.xe_c00229{left:376.880000pt;}
.xa_c00229{left:379.986667pt;}
.xb_c00229{left:404.000000pt;}
.xc_c00229{left:508.706667pt;}
.x4_c00229{left:549.133333pt;}
.xd_c00229{left:601.520000pt;}
.x5_c00229{left:623.013333pt;}
}





/* 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_c00230 {
    display:none;
  }
  .loading-indicator_c00230.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00230 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_c00230 { 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_c00230" -> "#page-container .classname_c00230")
 */
.pf_c00230 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00230 { /* 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_c00230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00230 { /* 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_c00230 { /* 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_c00230 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00230 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00230 {overflow:visible;}
  }
}
.c_c00230 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00230 { /* 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_c00230:after { /* webkit #35443 */
  content: '';
}
.t_c00230:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00230 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 */
}
.__c00230 { /* 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_c00230 { /* info for Javascript */
  display:none;
}
.l_c00230 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00230 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00230 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00230: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_c00230 {
    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_c00230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00230.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_c00230 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00230;src:url('chunks/assets/font_fc5f5724f399d9d92b40eb4a.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.284668;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_c00230;src:url('chunks/assets/font_50e893c2745550965e9dd0fa.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.284180;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_c00230;src:url('chunks/assets/font_f9259689e990a0eb9cb361b5.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:0.666000;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_c00230;src:url('chunks/assets/font_673a19e077cc3f2a77a29b6a.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;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;}
.m8_c00230{transform:matrix(0.130068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130068,0.000000,0.000000,0.250000,0,0);}
.m4_c00230{transform:matrix(0.141893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141893,0.000000,0.000000,0.250000,0,0);}
.m5_c00230{transform:matrix(0.148599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148599,0.000000,0.000000,0.250000,0,0);}
.m2_c00230{transform:matrix(0.190244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190244,0.000000,0.000000,0.250000,0,0);}
.mb_c00230{transform:matrix(0.238823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238823,0.000000,0.000000,0.250000,0,0);}
.m6_c00230{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m3_c00230{transform:matrix(0.245086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245086,0.000000,0.000000,0.250000,0,0);}
.m7_c00230{transform:matrix(0.246019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246019,0.000000,0.000000,0.250000,0,0);}
.m0_c00230{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.ma_c00230{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m9_c00230{transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);}
.m1_c00230{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);}
.v0_c00230{vertical-align:0.000000px;}
.ls5f_c00230{letter-spacing:-2.751000px;}
.ls58_c00230{letter-spacing:-2.520000px;}
.ls5e_c00230{letter-spacing:-2.436000px;}
.ls41_c00230{letter-spacing:-2.352000px;}
.ls91_c00230{letter-spacing:-2.079000px;}
.ls7c_c00230{letter-spacing:-1.872240px;}
.ls8e_c00230{letter-spacing:-1.774800px;}
.ls81_c00230{letter-spacing:-1.767840px;}
.ls47_c00230{letter-spacing:-1.649520px;}
.ls43_c00230{letter-spacing:-1.531200px;}
.ls7e_c00230{letter-spacing:-1.426800px;}
.ls90_c00230{letter-spacing:-1.350240px;}
.ls87_c00230{letter-spacing:-1.266720px;}
.ls5b_c00230{letter-spacing:-1.218000px;}
.ls65_c00230{letter-spacing:-1.176240px;}
.ls78_c00230{letter-spacing:-1.169280px;}
.ls74_c00230{letter-spacing:-0.974400px;}
.ls85_c00230{letter-spacing:-0.939600px;}
.ls72_c00230{letter-spacing:-0.897840px;}
.ls8b_c00230{letter-spacing:-0.856080px;}
.ls50_c00230{letter-spacing:-0.835200px;}
.ls56_c00230{letter-spacing:-0.807360px;}
.ls64_c00230{letter-spacing:-0.765600px;}
.ls6c_c00230{letter-spacing:-0.709920px;}
.ls8d_c00230{letter-spacing:-0.668160px;}
.ls80_c00230{letter-spacing:-0.654240px;}
.ls7d_c00230{letter-spacing:-0.591600px;}
.ls63_c00230{letter-spacing:-0.584640px;}
.ls8f_c00230{letter-spacing:-0.549840px;}
.ls59_c00230{letter-spacing:-0.535920px;}
.ls60_c00230{letter-spacing:-0.528960px;}
.ls4f_c00230{letter-spacing:-0.501120px;}
.ls8c_c00230{letter-spacing:-0.487200px;}
.ls55_c00230{letter-spacing:-0.473280px;}
.ls4e_c00230{letter-spacing:-0.466320px;}
.ls62_c00230{letter-spacing:-0.452400px;}
.ls8a_c00230{letter-spacing:-0.445440px;}
.ls6e_c00230{letter-spacing:-0.438480px;}
.ls79_c00230{letter-spacing:-0.431520px;}
.ls4a_c00230{letter-spacing:-0.396720px;}
.ls54_c00230{letter-spacing:-0.382800px;}
.ls53_c00230{letter-spacing:-0.375840px;}
.ls6f_c00230{letter-spacing:-0.368880px;}
.ls73_c00230{letter-spacing:-0.354960px;}
.ls6a_c00230{letter-spacing:-0.341040px;}
.ls5a_c00230{letter-spacing:-0.334080px;}
.ls57_c00230{letter-spacing:-0.327120px;}
.ls51_c00230{letter-spacing:-0.320160px;}
.ls4b_c00230{letter-spacing:-0.306240px;}
.ls42_c00230{letter-spacing:-0.285360px;}
.ls45_c00230{letter-spacing:-0.278400px;}
.ls7b_c00230{letter-spacing:-0.264480px;}
.ls4d_c00230{letter-spacing:-0.257520px;}
.ls66_c00230{letter-spacing:-0.250560px;}
.ls69_c00230{letter-spacing:-0.229680px;}
.ls88_c00230{letter-spacing:-0.222720px;}
.ls5c_c00230{letter-spacing:-0.208800px;}
.ls67_c00230{letter-spacing:-0.194880px;}
.ls49_c00230{letter-spacing:-0.187920px;}
.ls61_c00230{letter-spacing:-0.180960px;}
.ls71_c00230{letter-spacing:-0.174000px;}
.ls76_c00230{letter-spacing:-0.167040px;}
.ls52_c00230{letter-spacing:-0.132240px;}
.ls48_c00230{letter-spacing:-0.118320px;}
.ls86_c00230{letter-spacing:-0.116280px;}
.ls68_c00230{letter-spacing:-0.111360px;}
.ls6d_c00230{letter-spacing:-0.104400px;}
.ls6b_c00230{letter-spacing:-0.097440px;}
.ls46_c00230{letter-spacing:-0.090480px;}
.ls83_c00230{letter-spacing:-0.069600px;}
.ls44_c00230{letter-spacing:-0.062640px;}
.ls5d_c00230{letter-spacing:-0.055680px;}
.ls7a_c00230{letter-spacing:-0.041760px;}
.ls82_c00230{letter-spacing:-0.027840px;}
.ls70_c00230{letter-spacing:-0.020880px;}
.ls75_c00230{letter-spacing:-0.013920px;}
.ls4c_c00230{letter-spacing:0.000000px;}
.ls1_c00230{letter-spacing:0.006960px;}
.ls2a_c00230{letter-spacing:0.013920px;}
.ls20_c00230{letter-spacing:0.034800px;}
.ls16_c00230{letter-spacing:0.041760px;}
.ls12_c00230{letter-spacing:0.048720px;}
.ls30_c00230{letter-spacing:0.076560px;}
.ls25_c00230{letter-spacing:0.097440px;}
.ls1a_c00230{letter-spacing:0.104400px;}
.ls11_c00230{letter-spacing:0.111360px;}
.ls6_c00230{letter-spacing:0.118320px;}
.ls3e_c00230{letter-spacing:0.125280px;}
.ls28_c00230{letter-spacing:0.139200px;}
.ls1d_c00230{letter-spacing:0.153120px;}
.ls39_c00230{letter-spacing:0.157320px;}
.ls5_c00230{letter-spacing:0.160080px;}
.ls10_c00230{letter-spacing:0.174000px;}
.ls3_c00230{letter-spacing:0.194880px;}
.ls21_c00230{letter-spacing:0.208800px;}
.ls1e_c00230{letter-spacing:0.250560px;}
.ls2c_c00230{letter-spacing:0.257520px;}
.ls34_c00230{letter-spacing:0.271440px;}
.ls13_c00230{letter-spacing:0.285360px;}
.ls38_c00230{letter-spacing:0.294120px;}
.ls22_c00230{letter-spacing:0.299280px;}
.lse_c00230{letter-spacing:0.306240px;}
.ls0_c00230{letter-spacing:0.320160px;}
.ls33_c00230{letter-spacing:0.327120px;}
.ls7_c00230{letter-spacing:0.334080px;}
.ls3b_c00230{letter-spacing:0.348000px;}
.ls89_c00230{letter-spacing:0.361920px;}
.ls23_c00230{letter-spacing:0.375840px;}
.ls15_c00230{letter-spacing:0.382800px;}
.ls14_c00230{letter-spacing:0.389760px;}
.ls4_c00230{letter-spacing:0.417600px;}
.lsb_c00230{letter-spacing:0.424560px;}
.ls17_c00230{letter-spacing:0.459360px;}
.ls2e_c00230{letter-spacing:0.535920px;}
.ls1b_c00230{letter-spacing:0.542880px;}
.ls27_c00230{letter-spacing:0.549840px;}
.ls2d_c00230{letter-spacing:0.570720px;}
.ls40_c00230{letter-spacing:0.591600px;}
.ls24_c00230{letter-spacing:0.619440px;}
.ls8_c00230{letter-spacing:0.626400px;}
.ls77_c00230{letter-spacing:0.661200px;}
.ls37_c00230{letter-spacing:0.690840px;}
.ls84_c00230{letter-spacing:0.709920px;}
.ls36_c00230{letter-spacing:0.730800px;}
.ls1f_c00230{letter-spacing:0.841320px;}
.ls19_c00230{letter-spacing:0.876960px;}
.lsd_c00230{letter-spacing:0.883920px;}
.ls26_c00230{letter-spacing:0.925680px;}
.lsc_c00230{letter-spacing:0.937080px;}
.ls1c_c00230{letter-spacing:0.950760px;}
.ls2b_c00230{letter-spacing:0.960480px;}
.ls31_c00230{letter-spacing:0.967440px;}
.ls3a_c00230{letter-spacing:1.037040px;}
.ls9_c00230{letter-spacing:1.064880px;}
.ls7f_c00230{letter-spacing:1.120560px;}
.ls2_c00230{letter-spacing:1.121760px;}
.ls32_c00230{letter-spacing:1.148400px;}
.ls3f_c00230{letter-spacing:1.245840px;}
.ls2f_c00230{letter-spacing:1.398960px;}
.lsf_c00230{letter-spacing:1.642560px;}
.ls29_c00230{letter-spacing:1.983600px;}
.ls35_c00230{letter-spacing:2.011440px;}
.ls3c_c00230{letter-spacing:2.072520px;}
.ls18_c00230{letter-spacing:2.164560px;}
.lsa_c00230{letter-spacing:2.442960px;}
.ls3d_c00230{letter-spacing:2.839680px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{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__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00230{word-spacing:0.000000px;}
.ws2_c00230{word-spacing:0.169800px;}
.ws3_c00230{word-spacing:0.365880px;}
.ws0_c00230{word-spacing:5.897760px;}
.ws1_c00230{word-spacing:12.679200px;}
._f_c00230{margin-left:-5.087760px;}
._d_c00230{margin-left:-3.581280px;}
._c_c00230{margin-left:-1.412880px;}
._e_c00230{width:1.071840px;}
._a_c00230{width:2.220240px;}
._9_c00230{width:3.936240px;}
._7_c00230{width:5.164320px;}
._6_c00230{width:7.099200px;}
._b_c00230{width:8.790480px;}
._1_c00230{width:9.878160px;}
._8_c00230{width:11.240160px;}
._0_c00230{width:12.639360px;}
._3_c00230{width:14.154000px;}
._2_c00230{width:15.279120px;}
._5_c00230{width:16.476960px;}
._18_c00230{width:18.562320px;}
._4_c00230{width:19.627200px;}
._17_c00230{width:22.494720px;}
._19_c00230{width:25.876320px;}
._12_c00230{width:33.213120px;}
._10_c00230{width:34.257120px;}
._11_c00230{width:36.734880px;}
._13_c00230{width:38.335680px;}
._14_c00230{width:40.374960px;}
._15_c00230{width:42.511680px;}
._16_c00230{width:46.339680px;}
.fc0_c00230{color:transparent;}
.fs5_c00230{font-size:53.280000px;}
.fs6_c00230{font-size:59.400000px;}
.fs0_c00230{font-size:67.200000px;}
.fs2_c00230{font-size:68.400000px;}
.fs1_c00230{font-size:69.600000px;}
.fs3_c00230{font-size:72.000000px;}
.fs4_c00230{font-size:78.600000px;}
.y0_c00230{bottom:0.000000px;}
.y1f_c00230{bottom:63.735006px;}
.y1e_c00230{bottom:139.320006px;}
.y1c_c00230{bottom:232.564206px;}
.y1d_c00230{bottom:232.575006px;}
.y1b_c00230{bottom:295.917606px;}
.y1a_c00230{bottom:327.255006px;}
.y19_c00230{bottom:359.280006px;}
.y18_c00230{bottom:421.560006px;}
.y17_c00230{bottom:484.215006px;}
.y16_c00230{bottom:515.535006px;}
.y15_c00230{bottom:546.472206px;}
.y14_c00230{bottom:578.175006px;}
.y13_c00230{bottom:578.180406px;}
.y12_c00230{bottom:609.483006px;}
.y11_c00230{bottom:640.455006px;}
.y10_c00230{bottom:671.775006px;}
.yf_c00230{bottom:703.095006px;}
.yd_c00230{bottom:766.449606px;}
.ye_c00230{bottom:766.455006px;}
.yc_c00230{bottom:798.135006px;}
.yb_c00230{bottom:829.800006px;}
.ya_c00230{bottom:893.160006px;}
.y9_c00230{bottom:924.480006px;}
.y8_c00230{bottom:956.163006px;}
.y7_c00230{bottom:987.135006px;}
.y6_c00230{bottom:987.140406px;}
.y5_c00230{bottom:1018.460406px;}
.y4_c00230{bottom:1049.415006px;}
.y3_c00230{bottom:1080.735006px;}
.y2_c00230{bottom:1112.055006px;}
.y1_c00230{bottom:1189.095006px;}
.h6_c00230{height:35.484480px;}
.h7_c00230{height:61.952344px;}
.h2_c00230{height:65.953125px;}
.h3_c00230{height:68.308594px;}
.h4_c00230{height:70.664062px;}
.h5_c00230{height:77.141602px;}
.h1_c00230{height:1263.000000px;}
.h0_c00230{height:1263.240006px;}
.w1_c00230{width:892.500000px;}
.w0_c00230{width:892.799998px;}
.x0_c00230{left:0.000000px;}
.xf_c00230{left:121.112398px;}
.x8_c00230{left:122.248799px;}
.x5_c00230{left:123.306598px;}
.x2_c00230{left:124.529999px;}
.x1_c00230{left:125.924998px;}
.x6_c00230{left:146.459998px;}
.x7_c00230{left:175.109998px;}
.x9_c00230{left:176.564999px;}
.x14_c00230{left:313.594798px;}
.xe_c00230{left:318.254999px;}
.x10_c00230{left:342.974999px;}
.x11_c00230{left:364.649999px;}
.x17_c00230{left:423.959999px;}
.x15_c00230{left:444.044999px;}
.xa_c00230{left:469.019998px;}
.x16_c00230{left:472.004998px;}
.xb_c00230{left:502.769998px;}
.x3_c00230{left:504.599999px;}
.x4_c00230{left:525.089998px;}
.xd_c00230{left:565.049998px;}
.x12_c00230{left:622.814999px;}
.x13_c00230{left:715.499998px;}
.xc_c00230{left:728.579998px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls5f_c00230{letter-spacing:-2.445333pt;}
.ls58_c00230{letter-spacing:-2.240000pt;}
.ls5e_c00230{letter-spacing:-2.165333pt;}
.ls41_c00230{letter-spacing:-2.090667pt;}
.ls91_c00230{letter-spacing:-1.848000pt;}
.ls7c_c00230{letter-spacing:-1.664213pt;}
.ls8e_c00230{letter-spacing:-1.577600pt;}
.ls81_c00230{letter-spacing:-1.571413pt;}
.ls47_c00230{letter-spacing:-1.466240pt;}
.ls43_c00230{letter-spacing:-1.361067pt;}
.ls7e_c00230{letter-spacing:-1.268267pt;}
.ls90_c00230{letter-spacing:-1.200213pt;}
.ls87_c00230{letter-spacing:-1.125973pt;}
.ls5b_c00230{letter-spacing:-1.082667pt;}
.ls65_c00230{letter-spacing:-1.045547pt;}
.ls78_c00230{letter-spacing:-1.039360pt;}
.ls74_c00230{letter-spacing:-0.866133pt;}
.ls85_c00230{letter-spacing:-0.835200pt;}
.ls72_c00230{letter-spacing:-0.798080pt;}
.ls8b_c00230{letter-spacing:-0.760960pt;}
.ls50_c00230{letter-spacing:-0.742400pt;}
.ls56_c00230{letter-spacing:-0.717653pt;}
.ls64_c00230{letter-spacing:-0.680533pt;}
.ls6c_c00230{letter-spacing:-0.631040pt;}
.ls8d_c00230{letter-spacing:-0.593920pt;}
.ls80_c00230{letter-spacing:-0.581547pt;}
.ls7d_c00230{letter-spacing:-0.525867pt;}
.ls63_c00230{letter-spacing:-0.519680pt;}
.ls8f_c00230{letter-spacing:-0.488747pt;}
.ls59_c00230{letter-spacing:-0.476373pt;}
.ls60_c00230{letter-spacing:-0.470187pt;}
.ls4f_c00230{letter-spacing:-0.445440pt;}
.ls8c_c00230{letter-spacing:-0.433067pt;}
.ls55_c00230{letter-spacing:-0.420693pt;}
.ls4e_c00230{letter-spacing:-0.414507pt;}
.ls62_c00230{letter-spacing:-0.402133pt;}
.ls8a_c00230{letter-spacing:-0.395947pt;}
.ls6e_c00230{letter-spacing:-0.389760pt;}
.ls79_c00230{letter-spacing:-0.383573pt;}
.ls4a_c00230{letter-spacing:-0.352640pt;}
.ls54_c00230{letter-spacing:-0.340267pt;}
.ls53_c00230{letter-spacing:-0.334080pt;}
.ls6f_c00230{letter-spacing:-0.327893pt;}
.ls73_c00230{letter-spacing:-0.315520pt;}
.ls6a_c00230{letter-spacing:-0.303147pt;}
.ls5a_c00230{letter-spacing:-0.296960pt;}
.ls57_c00230{letter-spacing:-0.290773pt;}
.ls51_c00230{letter-spacing:-0.284587pt;}
.ls4b_c00230{letter-spacing:-0.272213pt;}
.ls42_c00230{letter-spacing:-0.253653pt;}
.ls45_c00230{letter-spacing:-0.247467pt;}
.ls7b_c00230{letter-spacing:-0.235093pt;}
.ls4d_c00230{letter-spacing:-0.228907pt;}
.ls66_c00230{letter-spacing:-0.222720pt;}
.ls69_c00230{letter-spacing:-0.204160pt;}
.ls88_c00230{letter-spacing:-0.197973pt;}
.ls5c_c00230{letter-spacing:-0.185600pt;}
.ls67_c00230{letter-spacing:-0.173227pt;}
.ls49_c00230{letter-spacing:-0.167040pt;}
.ls61_c00230{letter-spacing:-0.160853pt;}
.ls71_c00230{letter-spacing:-0.154667pt;}
.ls76_c00230{letter-spacing:-0.148480pt;}
.ls52_c00230{letter-spacing:-0.117547pt;}
.ls48_c00230{letter-spacing:-0.105173pt;}
.ls86_c00230{letter-spacing:-0.103360pt;}
.ls68_c00230{letter-spacing:-0.098987pt;}
.ls6d_c00230{letter-spacing:-0.092800pt;}
.ls6b_c00230{letter-spacing:-0.086613pt;}
.ls46_c00230{letter-spacing:-0.080427pt;}
.ls83_c00230{letter-spacing:-0.061867pt;}
.ls44_c00230{letter-spacing:-0.055680pt;}
.ls5d_c00230{letter-spacing:-0.049493pt;}
.ls7a_c00230{letter-spacing:-0.037120pt;}
.ls82_c00230{letter-spacing:-0.024747pt;}
.ls70_c00230{letter-spacing:-0.018560pt;}
.ls75_c00230{letter-spacing:-0.012373pt;}
.ls4c_c00230{letter-spacing:0.000000pt;}
.ls1_c00230{letter-spacing:0.006187pt;}
.ls2a_c00230{letter-spacing:0.012373pt;}
.ls20_c00230{letter-spacing:0.030933pt;}
.ls16_c00230{letter-spacing:0.037120pt;}
.ls12_c00230{letter-spacing:0.043307pt;}
.ls30_c00230{letter-spacing:0.068053pt;}
.ls25_c00230{letter-spacing:0.086613pt;}
.ls1a_c00230{letter-spacing:0.092800pt;}
.ls11_c00230{letter-spacing:0.098987pt;}
.ls6_c00230{letter-spacing:0.105173pt;}
.ls3e_c00230{letter-spacing:0.111360pt;}
.ls28_c00230{letter-spacing:0.123733pt;}
.ls1d_c00230{letter-spacing:0.136107pt;}
.ls39_c00230{letter-spacing:0.139840pt;}
.ls5_c00230{letter-spacing:0.142293pt;}
.ls10_c00230{letter-spacing:0.154667pt;}
.ls3_c00230{letter-spacing:0.173227pt;}
.ls21_c00230{letter-spacing:0.185600pt;}
.ls1e_c00230{letter-spacing:0.222720pt;}
.ls2c_c00230{letter-spacing:0.228907pt;}
.ls34_c00230{letter-spacing:0.241280pt;}
.ls13_c00230{letter-spacing:0.253653pt;}
.ls38_c00230{letter-spacing:0.261440pt;}
.ls22_c00230{letter-spacing:0.266027pt;}
.lse_c00230{letter-spacing:0.272213pt;}
.ls0_c00230{letter-spacing:0.284587pt;}
.ls33_c00230{letter-spacing:0.290773pt;}
.ls7_c00230{letter-spacing:0.296960pt;}
.ls3b_c00230{letter-spacing:0.309333pt;}
.ls89_c00230{letter-spacing:0.321707pt;}
.ls23_c00230{letter-spacing:0.334080pt;}
.ls15_c00230{letter-spacing:0.340267pt;}
.ls14_c00230{letter-spacing:0.346453pt;}
.ls4_c00230{letter-spacing:0.371200pt;}
.lsb_c00230{letter-spacing:0.377387pt;}
.ls17_c00230{letter-spacing:0.408320pt;}
.ls2e_c00230{letter-spacing:0.476373pt;}
.ls1b_c00230{letter-spacing:0.482560pt;}
.ls27_c00230{letter-spacing:0.488747pt;}
.ls2d_c00230{letter-spacing:0.507307pt;}
.ls40_c00230{letter-spacing:0.525867pt;}
.ls24_c00230{letter-spacing:0.550613pt;}
.ls8_c00230{letter-spacing:0.556800pt;}
.ls77_c00230{letter-spacing:0.587733pt;}
.ls37_c00230{letter-spacing:0.614080pt;}
.ls84_c00230{letter-spacing:0.631040pt;}
.ls36_c00230{letter-spacing:0.649600pt;}
.ls1f_c00230{letter-spacing:0.747840pt;}
.ls19_c00230{letter-spacing:0.779520pt;}
.lsd_c00230{letter-spacing:0.785707pt;}
.ls26_c00230{letter-spacing:0.822827pt;}
.lsc_c00230{letter-spacing:0.832960pt;}
.ls1c_c00230{letter-spacing:0.845120pt;}
.ls2b_c00230{letter-spacing:0.853760pt;}
.ls31_c00230{letter-spacing:0.859947pt;}
.ls3a_c00230{letter-spacing:0.921813pt;}
.ls9_c00230{letter-spacing:0.946560pt;}
.ls7f_c00230{letter-spacing:0.996053pt;}
.ls2_c00230{letter-spacing:0.997120pt;}
.ls32_c00230{letter-spacing:1.020800pt;}
.ls3f_c00230{letter-spacing:1.107413pt;}
.ls2f_c00230{letter-spacing:1.243520pt;}
.lsf_c00230{letter-spacing:1.460053pt;}
.ls29_c00230{letter-spacing:1.763200pt;}
.ls35_c00230{letter-spacing:1.787947pt;}
.ls3c_c00230{letter-spacing:1.842240pt;}
.ls18_c00230{letter-spacing:1.924053pt;}
.lsa_c00230{letter-spacing:2.171520pt;}
.ls3d_c00230{letter-spacing:2.524160pt;}
.ws4_c00230{word-spacing:0.000000pt;}
.ws2_c00230{word-spacing:0.150933pt;}
.ws3_c00230{word-spacing:0.325227pt;}
.ws0_c00230{word-spacing:5.242453pt;}
.ws1_c00230{word-spacing:11.270400pt;}
._f_c00230{margin-left:-4.522453pt;}
._d_c00230{margin-left:-3.183360pt;}
._c_c00230{margin-left:-1.255893pt;}
._e_c00230{width:0.952747pt;}
._a_c00230{width:1.973547pt;}
._9_c00230{width:3.498880pt;}
._7_c00230{width:4.590507pt;}
._6_c00230{width:6.310400pt;}
._b_c00230{width:7.813760pt;}
._1_c00230{width:8.780587pt;}
._8_c00230{width:9.991253pt;}
._0_c00230{width:11.234987pt;}
._3_c00230{width:12.581333pt;}
._2_c00230{width:13.581440pt;}
._5_c00230{width:14.646187pt;}
._18_c00230{width:16.499840pt;}
._4_c00230{width:17.446400pt;}
._17_c00230{width:19.995307pt;}
._19_c00230{width:23.001173pt;}
._12_c00230{width:29.522773pt;}
._10_c00230{width:30.450773pt;}
._11_c00230{width:32.653227pt;}
._13_c00230{width:34.076160pt;}
._14_c00230{width:35.888853pt;}
._15_c00230{width:37.788160pt;}
._16_c00230{width:41.190827pt;}
.fs5_c00230{font-size:47.360000pt;}
.fs6_c00230{font-size:52.800000pt;}
.fs0_c00230{font-size:59.733333pt;}
.fs2_c00230{font-size:60.800000pt;}
.fs1_c00230{font-size:61.866667pt;}
.fs3_c00230{font-size:64.000000pt;}
.fs4_c00230{font-size:69.866667pt;}
.y0_c00230{bottom:0.000000pt;}
.y1f_c00230{bottom:56.653339pt;}
.y1e_c00230{bottom:123.840005pt;}
.y1c_c00230{bottom:206.723739pt;}
.y1d_c00230{bottom:206.733339pt;}
.y1b_c00230{bottom:263.037872pt;}
.y1a_c00230{bottom:290.893339pt;}
.y19_c00230{bottom:319.360005pt;}
.y18_c00230{bottom:374.720005pt;}
.y17_c00230{bottom:430.413339pt;}
.y16_c00230{bottom:458.253339pt;}
.y15_c00230{bottom:485.753072pt;}
.y14_c00230{bottom:513.933339pt;}
.y13_c00230{bottom:513.938139pt;}
.y12_c00230{bottom:541.762672pt;}
.y11_c00230{bottom:569.293339pt;}
.y10_c00230{bottom:597.133339pt;}
.yf_c00230{bottom:624.973339pt;}
.yd_c00230{bottom:681.288539pt;}
.ye_c00230{bottom:681.293339pt;}
.yc_c00230{bottom:709.453339pt;}
.yb_c00230{bottom:737.600005pt;}
.ya_c00230{bottom:793.920005pt;}
.y9_c00230{bottom:821.760005pt;}
.y8_c00230{bottom:849.922672pt;}
.y7_c00230{bottom:877.453339pt;}
.y6_c00230{bottom:877.458139pt;}
.y5_c00230{bottom:905.298139pt;}
.y4_c00230{bottom:932.813339pt;}
.y3_c00230{bottom:960.653339pt;}
.y2_c00230{bottom:988.493339pt;}
.y1_c00230{bottom:1056.973339pt;}
.h6_c00230{height:31.541760pt;}
.h7_c00230{height:55.068750pt;}
.h2_c00230{height:58.625000pt;}
.h3_c00230{height:60.718750pt;}
.h4_c00230{height:62.812500pt;}
.h5_c00230{height:68.570312pt;}
.h1_c00230{height:1122.666667pt;}
.h0_c00230{height:1122.880005pt;}
.w1_c00230{width:793.333333pt;}
.w0_c00230{width:793.599999pt;}
.x0_c00230{left:0.000000pt;}
.xf_c00230{left:107.655465pt;}
.x8_c00230{left:108.665599pt;}
.x5_c00230{left:109.605865pt;}
.x2_c00230{left:110.693332pt;}
.x1_c00230{left:111.933332pt;}
.x6_c00230{left:130.186665pt;}
.x7_c00230{left:155.653332pt;}
.x9_c00230{left:156.946665pt;}
.x14_c00230{left:278.750932pt;}
.xe_c00230{left:282.893332pt;}
.x10_c00230{left:304.866665pt;}
.x11_c00230{left:324.133332pt;}
.x17_c00230{left:376.853332pt;}
.x15_c00230{left:394.706665pt;}
.xa_c00230{left:416.906665pt;}
.x16_c00230{left:419.559999pt;}
.xb_c00230{left:446.906665pt;}
.x3_c00230{left:448.533332pt;}
.x4_c00230{left:466.746665pt;}
.xd_c00230{left:502.266665pt;}
.x12_c00230{left:553.613332pt;}
.x13_c00230{left:635.999999pt;}
.xc_c00230{left:647.626665pt;}
}





/* 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_c00231 {
    display:none;
  }
  .loading-indicator_c00231.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00231 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_c00231 { 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_c00231" -> "#page-container .classname_c00231")
 */
.pf_c00231 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00231 { /* 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_c00231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00231 { /* 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_c00231 { /* 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_c00231 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00231 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00231 {overflow:visible;}
  }
}
.c_c00231 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00231 { /* 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_c00231:after { /* webkit #35443 */
  content: '';
}
.t_c00231:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00231 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 */
}
.__c00231 { /* 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_c00231 { /* info for Javascript */
  display:none;
}
.l_c00231 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00231 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00231 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00231: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_c00231 {
    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_c00231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00231.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_c00231 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00231;src:url('chunks/assets/font_7f75b3c0bb0dad457d16b236.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.284668;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_c00231;src:url('chunks/assets/font_fa9f1d2aad86d7ab79a27946.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.284180;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_c00231;src:url('chunks/assets/font_bd7539148b9538eb4b999df6.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:0.666000;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_c00231;src:url('chunks/assets/font_39b8e662a8506c0f513c3a90.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;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:ff5_c00231;src:url('chunks/assets/font_565baa6393459a6e30746d4c.woff2')format("woff");}.ff5_c00231{font-family:ff5_c00231;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:ff6_c00231;src:url('chunks/assets/font_468b49015cc572e52a4084dc.woff2')format("woff");}.ff6_c00231{font-family:ff6_c00231;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:ff7_c00231;src:url('chunks/assets/font_f40ef93f8a04d0a3ab65f1d7.woff2')format("woff");}.ff7_c00231{font-family:ff7_c00231;line-height:1.311035;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_c00231;src:url('chunks/assets/font_50a8c4c91f05b985a1300937.woff2')format("woff");}.ff8_c00231{font-family:ff8_c00231;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;}
.m6_c00231{transform:matrix(0.143421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143421,0.000000,0.000000,0.250000,0,0);}
.mf_c00231{transform:matrix(0.159191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159191,0.000000,0.000000,0.250000,0,0);}
.m3_c00231{transform:matrix(0.218915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218915,0.000000,0.000000,0.250000,0,0);}
.m2_c00231{transform:matrix(0.244857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244857,0.000000,0.000000,0.250000,0,0);}
.m8_c00231{transform:matrix(0.244969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244969,0.000000,0.000000,0.250000,0,0);}
.m4_c00231{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m15_c00231{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m0_c00231{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m7_c00231{transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);}
.m5_c00231{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{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);}
.m16_c00231{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m10_c00231{transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);}
.m14_c00231{transform:matrix(0.252737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252737,0.000000,0.000000,0.250000,0,0);}
.m13_c00231{transform:matrix(0.280761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280761,0.000000,0.000000,0.250000,0,0);}
.m11_c00231{transform:matrix(0.298449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298449,0.000000,0.000000,0.250000,0,0);}
.m12_c00231{transform:matrix(0.319322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319322,0.000000,0.000000,0.250000,0,0);}
.me_c00231{transform:matrix(0.323611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323611,0.000000,0.000000,0.250000,0,0);}
.md_c00231{transform:matrix(0.377481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377481,0.000000,0.000000,0.250000,0,0);}
.mc_c00231{transform:matrix(0.384799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384799,0.000000,0.000000,0.250000,0,0);}
.ma_c00231{transform:matrix(0.400625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400625,0.000000,0.000000,0.250000,0,0);}
.mb_c00231{transform:matrix(0.549590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549590,0.000000,0.000000,0.250000,0,0);}
.m9_c00231{transform:matrix(0.723861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723861,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls5c_c00231{letter-spacing:-2.499000px;}
.ls63_c00231{letter-spacing:-2.478000px;}
.ls7e_c00231{letter-spacing:-2.394000px;}
.ls58_c00231{letter-spacing:-2.331000px;}
.ls5e_c00231{letter-spacing:-2.168280px;}
.ls6b_c00231{letter-spacing:-2.142000px;}
.ls7a_c00231{letter-spacing:-2.134080px;}
.ls96_c00231{letter-spacing:-2.099880px;}
.ls92_c00231{letter-spacing:-1.792080px;}
.ls93_c00231{letter-spacing:-1.566360px;}
.ls6e_c00231{letter-spacing:-1.409040px;}
.ls89_c00231{letter-spacing:-1.402200px;}
.ls65_c00231{letter-spacing:-1.368000px;}
.ls5d_c00231{letter-spacing:-1.306440px;}
.ls73_c00231{letter-spacing:-1.258560px;}
.ls71_c00231{letter-spacing:-1.197000px;}
.ls82_c00231{letter-spacing:-1.080720px;}
.ls8f_c00231{letter-spacing:-1.060200px;}
.ls84_c00231{letter-spacing:-0.950760px;}
.ls66_c00231{letter-spacing:-0.896040px;}
.ls8b_c00231{letter-spacing:-0.820380px;}
.ls60_c00231{letter-spacing:-0.745560px;}
.ls68_c00231{letter-spacing:-0.684000px;}
.ls70_c00231{letter-spacing:-0.663480px;}
.ls91_c00231{letter-spacing:-0.642960px;}
.ls90_c00231{letter-spacing:-0.588240px;}
.ls77_c00231{letter-spacing:-0.581400px;}
.ls7d_c00231{letter-spacing:-0.547200px;}
.ls59_c00231{letter-spacing:-0.533520px;}
.ls64_c00231{letter-spacing:-0.526680px;}
.ls80_c00231{letter-spacing:-0.492480px;}
.ls5a_c00231{letter-spacing:-0.471960px;}
.ls7b_c00231{letter-spacing:-0.458280px;}
.ls81_c00231{letter-spacing:-0.424080px;}
.ls79_c00231{letter-spacing:-0.417240px;}
.ls99_c00231{letter-spacing:-0.410400px;}
.ls6a_c00231{letter-spacing:-0.396720px;}
.ls6c_c00231{letter-spacing:-0.376200px;}
.ls5b_c00231{letter-spacing:-0.342000px;}
.ls8c_c00231{letter-spacing:-0.302224px;}
.ls8e_c00231{letter-spacing:-0.294120px;}
.ls5f_c00231{letter-spacing:-0.273600px;}
.ls78_c00231{letter-spacing:-0.225720px;}
.ls6f_c00231{letter-spacing:-0.171000px;}
.ls95_c00231{letter-spacing:-0.136800px;}
.ls69_c00231{letter-spacing:-0.129960px;}
.ls7c_c00231{letter-spacing:-0.102600px;}
.ls74_c00231{letter-spacing:-0.095760px;}
.ls61_c00231{letter-spacing:-0.088920px;}
.ls9a_c00231{letter-spacing:-0.068400px;}
.ls76_c00231{letter-spacing:-0.061560px;}
.ls67_c00231{letter-spacing:-0.054720px;}
.ls7f_c00231{letter-spacing:-0.027360px;}
.ls75_c00231{letter-spacing:-0.020520px;}
.ls62_c00231{letter-spacing:0.000000px;}
.ls21_c00231{letter-spacing:0.006840px;}
.ls54_c00231{letter-spacing:0.013680px;}
.ls16_c00231{letter-spacing:0.061560px;}
.ls39_c00231{letter-spacing:0.075240px;}
.ls19_c00231{letter-spacing:0.088920px;}
.ls32_c00231{letter-spacing:0.095760px;}
.ls2_c00231{letter-spacing:0.102600px;}
.ls2a_c00231{letter-spacing:0.109440px;}
.ls72_c00231{letter-spacing:0.129960px;}
.ls3d_c00231{letter-spacing:0.136800px;}
.ls1e_c00231{letter-spacing:0.143640px;}
.ls4c_c00231{letter-spacing:0.150480px;}
.ls49_c00231{letter-spacing:0.155940px;}
.ls27_c00231{letter-spacing:0.164160px;}
.ls52_c00231{letter-spacing:0.171000px;}
.ls23_c00231{letter-spacing:0.184680px;}
.ls25_c00231{letter-spacing:0.191520px;}
.ls26_c00231{letter-spacing:0.212040px;}
.ls45_c00231{letter-spacing:0.218880px;}
.ls56_c00231{letter-spacing:0.246240px;}
.ls18_c00231{letter-spacing:0.273600px;}
.ls57_c00231{letter-spacing:0.280440px;}
.ls13_c00231{letter-spacing:0.307800px;}
.ls6_c00231{letter-spacing:0.325440px;}
.ls31_c00231{letter-spacing:0.328320px;}
.ls2f_c00231{letter-spacing:0.335160px;}
.ls4f_c00231{letter-spacing:0.342000px;}
.ls1c_c00231{letter-spacing:0.348840px;}
.ls0_c00231{letter-spacing:0.359340px;}
.ls2b_c00231{letter-spacing:0.362520px;}
.ls48_c00231{letter-spacing:0.389880px;}
.ls50_c00231{letter-spacing:0.396720px;}
.ls51_c00231{letter-spacing:0.417240px;}
.ls30_c00231{letter-spacing:0.424080px;}
.ls1f_c00231{letter-spacing:0.437760px;}
.ls40_c00231{letter-spacing:0.451440px;}
.ls42_c00231{letter-spacing:0.474600px;}
.ls3e_c00231{letter-spacing:0.485640px;}
.lsb_c00231{letter-spacing:0.506160px;}
.ls33_c00231{letter-spacing:0.513000px;}
.ls12_c00231{letter-spacing:0.519840px;}
.ls55_c00231{letter-spacing:0.533520px;}
.ls9c_c00231{letter-spacing:0.547200px;}
.ls14_c00231{letter-spacing:0.554040px;}
.ls17_c00231{letter-spacing:0.567720px;}
.ls5_c00231{letter-spacing:0.574560px;}
.ls15_c00231{letter-spacing:0.576300px;}
.ls38_c00231{letter-spacing:0.581400px;}
.ls24_c00231{letter-spacing:0.615600px;}
.ls3a_c00231{letter-spacing:0.616980px;}
.lsd_c00231{letter-spacing:0.622440px;}
.ls29_c00231{letter-spacing:0.629280px;}
.ls2d_c00231{letter-spacing:0.636120px;}
.ls3b_c00231{letter-spacing:0.642960px;}
.ls83_c00231{letter-spacing:0.649800px;}
.ls4d_c00231{letter-spacing:0.690840px;}
.ls4b_c00231{letter-spacing:0.697680px;}
.ls1b_c00231{letter-spacing:0.718200px;}
.ls9b_c00231{letter-spacing:0.731880px;}
.ls6d_c00231{letter-spacing:0.745560px;}
.ls4a_c00231{letter-spacing:0.745800px;}
.ls28_c00231{letter-spacing:0.752400px;}
.ls97_c00231{letter-spacing:0.779700px;}
.ls1_c00231{letter-spacing:0.793260px;}
.ls37_c00231{letter-spacing:0.793440px;}
.ls22_c00231{letter-spacing:0.820800px;}
.lsc_c00231{letter-spacing:0.841320px;}
.ls53_c00231{letter-spacing:0.848160px;}
.lsf_c00231{letter-spacing:0.875520px;}
.ls11_c00231{letter-spacing:0.881400px;}
.ls1a_c00231{letter-spacing:0.882360px;}
.ls3_c00231{letter-spacing:0.894960px;}
.ls9_c00231{letter-spacing:0.909720px;}
.lse_c00231{letter-spacing:0.916560px;}
.ls4e_c00231{letter-spacing:0.943920px;}
.ls2c_c00231{letter-spacing:0.957600px;}
.ls47_c00231{letter-spacing:0.979800px;}
.ls7_c00231{letter-spacing:0.991800px;}
.ls20_c00231{letter-spacing:1.012320px;}
.ls10_c00231{letter-spacing:1.026000px;}
.ls41_c00231{letter-spacing:1.039680px;}
.ls35_c00231{letter-spacing:1.067040px;}
.ls85_c00231{letter-spacing:1.080000px;}
.ls86_c00231{letter-spacing:1.140030px;}
.ls46_c00231{letter-spacing:1.152300px;}
.ls43_c00231{letter-spacing:1.152600px;}
.ls87_c00231{letter-spacing:1.200000px;}
.ls1d_c00231{letter-spacing:1.231200px;}
.ls34_c00231{letter-spacing:1.333800px;}
.ls3f_c00231{letter-spacing:1.340640px;}
.ls44_c00231{letter-spacing:1.347480px;}
.ls8_c00231{letter-spacing:1.422720px;}
.ls88_c00231{letter-spacing:1.560000px;}
.lsa_c00231{letter-spacing:1.648440px;}
.ls3c_c00231{letter-spacing:1.812600px;}
.ls94_c00231{letter-spacing:1.860480px;}
.ls4_c00231{letter-spacing:2.086200px;}
.ls2e_c00231{letter-spacing:2.715480px;}
.ls8d_c00231{letter-spacing:2.820000px;}
.ls36_c00231{letter-spacing:2.961720px;}
.ls8a_c00231{letter-spacing:3.390000px;}
.ls98_c00231{letter-spacing:3.420000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{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__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00231{word-spacing:0.000000px;}
.ws1_c00231{word-spacing:0.388200px;}
.ws4_c00231{word-spacing:0.493800px;}
.ws0_c00231{word-spacing:4.706760px;}
.ws3_c00231{word-spacing:9.131100px;}
.ws2_c00231{word-spacing:13.282800px;}
._18_c00231{margin-left:-12.979860px;}
._12_c00231{margin-left:-8.276400px;}
._19_c00231{margin-left:-7.269480px;}
._7_c00231{margin-left:-5.195820px;}
._1_c00231{margin-left:-3.994740px;}
._8_c00231{margin-left:-2.179260px;}
._3_c00231{margin-left:-1.108080px;}
._6_c00231{width:1.283400px;}
._9_c00231{width:2.770200px;}
._0_c00231{width:4.156140px;}
._5_c00231{width:5.875560px;}
._2_c00231{width:7.421400px;}
._f_c00231{width:8.456580px;}
._a_c00231{width:9.740160px;}
._4_c00231{width:11.381760px;}
._e_c00231{width:12.543360px;}
._d_c00231{width:14.155680px;}
._b_c00231{width:15.437880px;}
._10_c00231{width:18.057600px;}
._11_c00231{width:20.102760px;}
._13_c00231{width:28.728683px;}
._16_c00231{width:35.913116px;}
._c_c00231{width:36.940200px;}
._15_c00231{width:62.743200px;}
._17_c00231{width:178.464000px;}
._14_c00231{width:183.719550px;}
.fc0_c00231{color:transparent;}
.fs8_c00231{font-size:21.600000px;}
.fs7_c00231{font-size:22.800600px;}
.fsa_c00231{font-size:24.000000px;}
.fs9_c00231{font-size:24.600000px;}
.fsb_c00231{font-size:31.200000px;}
.fsd_c00231{font-size:37.440000px;}
.fsf_c00231{font-size:43.800600px;}
.fsc_c00231{font-size:44.400600px;}
.fs6_c00231{font-size:54.720000px;}
.fse_c00231{font-size:56.400000px;}
.fs11_c00231{font-size:57.600000px;}
.fs5_c00231{font-size:61.200000px;}
.fs13_c00231{font-size:66.000000px;}
.fs0_c00231{font-size:66.600000px;}
.fs1_c00231{font-size:67.800000px;}
.fs2_c00231{font-size:68.400000px;}
.fs10_c00231{font-size:69.000000px;}
.fs4_c00231{font-size:70.800000px;}
.fs3_c00231{font-size:71.400000px;}
.fs12_c00231{font-size:76.800000px;}
.y0_c00231{bottom:0.000000px;}
.y1a_c00231{bottom:73.095015px;}
.y19_c00231{bottom:150.486015px;}
.y18_c00231{bottom:181.095015px;}
.y17_c00231{bottom:212.040015px;}
.y16_c00231{bottom:275.400015px;}
.y15_c00231{bottom:336.962715px;}
.y14_c00231{bottom:399.600015px;}
.y13_c00231{bottom:430.575015px;}
.y12_c00231{bottom:494.655015px;}
.y11_c00231{bottom:524.895015px;}
.y10_c00231{bottom:532.815015px;}
.yf_c00231{bottom:588.262215px;}
.y1c_c00231{bottom:615.255015px;}
.ye_c00231{bottom:618.495015px;}
.y1b_c00231{bottom:618.840015px;}
.yd_c00231{bottom:681.840015px;}
.yc_c00231{bottom:681.851415px;}
.yb_c00231{bottom:712.819515px;}
.ya_c00231{bottom:776.167215px;}
.y9_c00231{bottom:806.391615px;}
.y8_c00231{bottom:838.095915px;}
.y7_c00231{bottom:869.406015px;}
.y6_c00231{bottom:900.015015px;}
.y5_c00231{bottom:962.640015px;}
.y4_c00231{bottom:1025.286915px;}
.y3_c00231{bottom:1056.255015px;}
.y2_c00231{bottom:1118.895015px;}
.y1_c00231{bottom:1194.120015px;}
.ha_c00231{height:22.377542px;}
.hb_c00231{height:22.528125px;}
.hc_c00231{height:23.780313px;}
.hd_c00231{height:24.143555px;}
.h11_c00231{height:24.935040px;}
.he_c00231{height:25.031250px;}
.h10_c00231{height:32.540625px;}
.h7_c00231{height:36.443520px;}
.hf_c00231{height:44.747480px;}
.h13_c00231{height:55.353516px;}
.h15_c00231{height:56.531250px;}
.h6_c00231{height:60.064453px;}
.h2_c00231{height:65.364258px;}
.h12_c00231{height:66.508887px;}
.h3_c00231{height:67.130859px;}
.h9_c00231{height:67.162059px;}
.h8_c00231{height:67.164459px;}
.h14_c00231{height:67.686035px;}
.h17_c00231{height:68.835938px;}
.h5_c00231{height:69.486328px;}
.h4_c00231{height:70.075195px;}
.h16_c00231{height:80.100000px;}
.h1_c00231{height:1263.000000px;}
.h0_c00231{height:1263.240015px;}
.w1_c00231{width:892.500000px;}
.w0_c00231{width:892.800000px;}
.x0_c00231{left:0.000000px;}
.x28_c00231{left:120.642300px;}
.x27_c00231{left:121.860000px;}
.x1f_c00231{left:123.990000px;}
.x1_c00231{left:125.205000px;}
.x24_c00231{left:175.845000px;}
.x18_c00231{left:177.270000px;}
.xd_c00231{left:178.365000px;}
.x2_c00231{left:180.030000px;}
.xe_c00231{left:217.500000px;}
.xf_c00231{left:263.085000px;}
.x25_c00231{left:277.110000px;}
.x10_c00231{left:295.350000px;}
.x26_c00231{left:301.650000px;}
.x20_c00231{left:333.375000px;}
.x11_c00231{left:334.515000px;}
.x12_c00231{left:376.845000px;}
.x19_c00231{left:392.760000px;}
.x13_c00231{left:393.840000px;}
.xb_c00231{left:417.495000px;}
.x21_c00231{left:423.495000px;}
.x14_c00231{left:428.925000px;}
.x6_c00231{left:440.145000px;}
.xc_c00231{left:444.060000px;}
.x22_c00231{left:448.050000px;}
.x1a_c00231{left:451.290000px;}
.x1b_c00231{left:467.895000px;}
.x7_c00231{left:471.810000px;}
.x3_c00231{left:488.010000px;}
.x15_c00231{left:496.125000px;}
.x9_c00231{left:497.175000px;}
.x5_c00231{left:500.595000px;}
.x4_c00231{left:521.880000px;}
.x23_c00231{left:528.255000px;}
.xa_c00231{left:543.570000px;}
.x16_c00231{left:605.115000px;}
.x1c_c00231{left:627.810000px;}
.x8_c00231{left:674.130000px;}
.x1d_c00231{left:675.690000px;}
.x1e_c00231{left:688.875000px;}
.x17_c00231{left:705.540000px;}
.x2a_c00231{left:855.495000px;}
.x29_c00231{left:856.545000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls5c_c00231{letter-spacing:-2.221333pt;}
.ls63_c00231{letter-spacing:-2.202667pt;}
.ls7e_c00231{letter-spacing:-2.128000pt;}
.ls58_c00231{letter-spacing:-2.072000pt;}
.ls5e_c00231{letter-spacing:-1.927360pt;}
.ls6b_c00231{letter-spacing:-1.904000pt;}
.ls7a_c00231{letter-spacing:-1.896960pt;}
.ls96_c00231{letter-spacing:-1.866560pt;}
.ls92_c00231{letter-spacing:-1.592960pt;}
.ls93_c00231{letter-spacing:-1.392320pt;}
.ls6e_c00231{letter-spacing:-1.252480pt;}
.ls89_c00231{letter-spacing:-1.246400pt;}
.ls65_c00231{letter-spacing:-1.216000pt;}
.ls5d_c00231{letter-spacing:-1.161280pt;}
.ls73_c00231{letter-spacing:-1.118720pt;}
.ls71_c00231{letter-spacing:-1.064000pt;}
.ls82_c00231{letter-spacing:-0.960640pt;}
.ls8f_c00231{letter-spacing:-0.942400pt;}
.ls84_c00231{letter-spacing:-0.845120pt;}
.ls66_c00231{letter-spacing:-0.796480pt;}
.ls8b_c00231{letter-spacing:-0.729227pt;}
.ls60_c00231{letter-spacing:-0.662720pt;}
.ls68_c00231{letter-spacing:-0.608000pt;}
.ls70_c00231{letter-spacing:-0.589760pt;}
.ls91_c00231{letter-spacing:-0.571520pt;}
.ls90_c00231{letter-spacing:-0.522880pt;}
.ls77_c00231{letter-spacing:-0.516800pt;}
.ls7d_c00231{letter-spacing:-0.486400pt;}
.ls59_c00231{letter-spacing:-0.474240pt;}
.ls64_c00231{letter-spacing:-0.468160pt;}
.ls80_c00231{letter-spacing:-0.437760pt;}
.ls5a_c00231{letter-spacing:-0.419520pt;}
.ls7b_c00231{letter-spacing:-0.407360pt;}
.ls81_c00231{letter-spacing:-0.376960pt;}
.ls79_c00231{letter-spacing:-0.370880pt;}
.ls99_c00231{letter-spacing:-0.364800pt;}
.ls6a_c00231{letter-spacing:-0.352640pt;}
.ls6c_c00231{letter-spacing:-0.334400pt;}
.ls5b_c00231{letter-spacing:-0.304000pt;}
.ls8c_c00231{letter-spacing:-0.268644pt;}
.ls8e_c00231{letter-spacing:-0.261440pt;}
.ls5f_c00231{letter-spacing:-0.243200pt;}
.ls78_c00231{letter-spacing:-0.200640pt;}
.ls6f_c00231{letter-spacing:-0.152000pt;}
.ls95_c00231{letter-spacing:-0.121600pt;}
.ls69_c00231{letter-spacing:-0.115520pt;}
.ls7c_c00231{letter-spacing:-0.091200pt;}
.ls74_c00231{letter-spacing:-0.085120pt;}
.ls61_c00231{letter-spacing:-0.079040pt;}
.ls9a_c00231{letter-spacing:-0.060800pt;}
.ls76_c00231{letter-spacing:-0.054720pt;}
.ls67_c00231{letter-spacing:-0.048640pt;}
.ls7f_c00231{letter-spacing:-0.024320pt;}
.ls75_c00231{letter-spacing:-0.018240pt;}
.ls62_c00231{letter-spacing:0.000000pt;}
.ls21_c00231{letter-spacing:0.006080pt;}
.ls54_c00231{letter-spacing:0.012160pt;}
.ls16_c00231{letter-spacing:0.054720pt;}
.ls39_c00231{letter-spacing:0.066880pt;}
.ls19_c00231{letter-spacing:0.079040pt;}
.ls32_c00231{letter-spacing:0.085120pt;}
.ls2_c00231{letter-spacing:0.091200pt;}
.ls2a_c00231{letter-spacing:0.097280pt;}
.ls72_c00231{letter-spacing:0.115520pt;}
.ls3d_c00231{letter-spacing:0.121600pt;}
.ls1e_c00231{letter-spacing:0.127680pt;}
.ls4c_c00231{letter-spacing:0.133760pt;}
.ls49_c00231{letter-spacing:0.138613pt;}
.ls27_c00231{letter-spacing:0.145920pt;}
.ls52_c00231{letter-spacing:0.152000pt;}
.ls23_c00231{letter-spacing:0.164160pt;}
.ls25_c00231{letter-spacing:0.170240pt;}
.ls26_c00231{letter-spacing:0.188480pt;}
.ls45_c00231{letter-spacing:0.194560pt;}
.ls56_c00231{letter-spacing:0.218880pt;}
.ls18_c00231{letter-spacing:0.243200pt;}
.ls57_c00231{letter-spacing:0.249280pt;}
.ls13_c00231{letter-spacing:0.273600pt;}
.ls6_c00231{letter-spacing:0.289280pt;}
.ls31_c00231{letter-spacing:0.291840pt;}
.ls2f_c00231{letter-spacing:0.297920pt;}
.ls4f_c00231{letter-spacing:0.304000pt;}
.ls1c_c00231{letter-spacing:0.310080pt;}
.ls0_c00231{letter-spacing:0.319413pt;}
.ls2b_c00231{letter-spacing:0.322240pt;}
.ls48_c00231{letter-spacing:0.346560pt;}
.ls50_c00231{letter-spacing:0.352640pt;}
.ls51_c00231{letter-spacing:0.370880pt;}
.ls30_c00231{letter-spacing:0.376960pt;}
.ls1f_c00231{letter-spacing:0.389120pt;}
.ls40_c00231{letter-spacing:0.401280pt;}
.ls42_c00231{letter-spacing:0.421867pt;}
.ls3e_c00231{letter-spacing:0.431680pt;}
.lsb_c00231{letter-spacing:0.449920pt;}
.ls33_c00231{letter-spacing:0.456000pt;}
.ls12_c00231{letter-spacing:0.462080pt;}
.ls55_c00231{letter-spacing:0.474240pt;}
.ls9c_c00231{letter-spacing:0.486400pt;}
.ls14_c00231{letter-spacing:0.492480pt;}
.ls17_c00231{letter-spacing:0.504640pt;}
.ls5_c00231{letter-spacing:0.510720pt;}
.ls15_c00231{letter-spacing:0.512267pt;}
.ls38_c00231{letter-spacing:0.516800pt;}
.ls24_c00231{letter-spacing:0.547200pt;}
.ls3a_c00231{letter-spacing:0.548427pt;}
.lsd_c00231{letter-spacing:0.553280pt;}
.ls29_c00231{letter-spacing:0.559360pt;}
.ls2d_c00231{letter-spacing:0.565440pt;}
.ls3b_c00231{letter-spacing:0.571520pt;}
.ls83_c00231{letter-spacing:0.577600pt;}
.ls4d_c00231{letter-spacing:0.614080pt;}
.ls4b_c00231{letter-spacing:0.620160pt;}
.ls1b_c00231{letter-spacing:0.638400pt;}
.ls9b_c00231{letter-spacing:0.650560pt;}
.ls6d_c00231{letter-spacing:0.662720pt;}
.ls4a_c00231{letter-spacing:0.662933pt;}
.ls28_c00231{letter-spacing:0.668800pt;}
.ls97_c00231{letter-spacing:0.693067pt;}
.ls1_c00231{letter-spacing:0.705120pt;}
.ls37_c00231{letter-spacing:0.705280pt;}
.ls22_c00231{letter-spacing:0.729600pt;}
.lsc_c00231{letter-spacing:0.747840pt;}
.ls53_c00231{letter-spacing:0.753920pt;}
.lsf_c00231{letter-spacing:0.778240pt;}
.ls11_c00231{letter-spacing:0.783467pt;}
.ls1a_c00231{letter-spacing:0.784320pt;}
.ls3_c00231{letter-spacing:0.795520pt;}
.ls9_c00231{letter-spacing:0.808640pt;}
.lse_c00231{letter-spacing:0.814720pt;}
.ls4e_c00231{letter-spacing:0.839040pt;}
.ls2c_c00231{letter-spacing:0.851200pt;}
.ls47_c00231{letter-spacing:0.870933pt;}
.ls7_c00231{letter-spacing:0.881600pt;}
.ls20_c00231{letter-spacing:0.899840pt;}
.ls10_c00231{letter-spacing:0.912000pt;}
.ls41_c00231{letter-spacing:0.924160pt;}
.ls35_c00231{letter-spacing:0.948480pt;}
.ls85_c00231{letter-spacing:0.960000pt;}
.ls86_c00231{letter-spacing:1.013360pt;}
.ls46_c00231{letter-spacing:1.024267pt;}
.ls43_c00231{letter-spacing:1.024533pt;}
.ls87_c00231{letter-spacing:1.066667pt;}
.ls1d_c00231{letter-spacing:1.094400pt;}
.ls34_c00231{letter-spacing:1.185600pt;}
.ls3f_c00231{letter-spacing:1.191680pt;}
.ls44_c00231{letter-spacing:1.197760pt;}
.ls8_c00231{letter-spacing:1.264640pt;}
.ls88_c00231{letter-spacing:1.386667pt;}
.lsa_c00231{letter-spacing:1.465280pt;}
.ls3c_c00231{letter-spacing:1.611200pt;}
.ls94_c00231{letter-spacing:1.653760pt;}
.ls4_c00231{letter-spacing:1.854400pt;}
.ls2e_c00231{letter-spacing:2.413760pt;}
.ls8d_c00231{letter-spacing:2.506667pt;}
.ls36_c00231{letter-spacing:2.632640pt;}
.ls8a_c00231{letter-spacing:3.013333pt;}
.ls98_c00231{letter-spacing:3.040000pt;}
.ws5_c00231{word-spacing:0.000000pt;}
.ws1_c00231{word-spacing:0.345067pt;}
.ws4_c00231{word-spacing:0.438933pt;}
.ws0_c00231{word-spacing:4.183787pt;}
.ws3_c00231{word-spacing:8.116533pt;}
.ws2_c00231{word-spacing:11.806933pt;}
._18_c00231{margin-left:-11.537653pt;}
._12_c00231{margin-left:-7.356800pt;}
._19_c00231{margin-left:-6.461760pt;}
._7_c00231{margin-left:-4.618507pt;}
._1_c00231{margin-left:-3.550880pt;}
._8_c00231{margin-left:-1.937120pt;}
._3_c00231{margin-left:-0.984960pt;}
._6_c00231{width:1.140800pt;}
._9_c00231{width:2.462400pt;}
._0_c00231{width:3.694347pt;}
._5_c00231{width:5.222720pt;}
._2_c00231{width:6.596800pt;}
._f_c00231{width:7.516960pt;}
._a_c00231{width:8.657920pt;}
._4_c00231{width:10.117120pt;}
._e_c00231{width:11.149653pt;}
._d_c00231{width:12.582827pt;}
._b_c00231{width:13.722560pt;}
._10_c00231{width:16.051200pt;}
._11_c00231{width:17.869120pt;}
._13_c00231{width:25.536607pt;}
._16_c00231{width:31.922770pt;}
._c_c00231{width:32.835733pt;}
._15_c00231{width:55.771733pt;}
._17_c00231{width:158.634667pt;}
._14_c00231{width:163.306267pt;}
.fs8_c00231{font-size:19.200000pt;}
.fs7_c00231{font-size:20.267200pt;}
.fsa_c00231{font-size:21.333333pt;}
.fs9_c00231{font-size:21.866667pt;}
.fsb_c00231{font-size:27.733333pt;}
.fsd_c00231{font-size:33.280000pt;}
.fsf_c00231{font-size:38.933867pt;}
.fsc_c00231{font-size:39.467200pt;}
.fs6_c00231{font-size:48.640000pt;}
.fse_c00231{font-size:50.133333pt;}
.fs11_c00231{font-size:51.200000pt;}
.fs5_c00231{font-size:54.400000pt;}
.fs13_c00231{font-size:58.666667pt;}
.fs0_c00231{font-size:59.200000pt;}
.fs1_c00231{font-size:60.266667pt;}
.fs2_c00231{font-size:60.800000pt;}
.fs10_c00231{font-size:61.333333pt;}
.fs4_c00231{font-size:62.933333pt;}
.fs3_c00231{font-size:63.466667pt;}
.fs12_c00231{font-size:68.266667pt;}
.y0_c00231{bottom:0.000000pt;}
.y1a_c00231{bottom:64.973347pt;}
.y19_c00231{bottom:133.765347pt;}
.y18_c00231{bottom:160.973347pt;}
.y17_c00231{bottom:188.480013pt;}
.y16_c00231{bottom:244.800013pt;}
.y15_c00231{bottom:299.522413pt;}
.y14_c00231{bottom:355.200013pt;}
.y13_c00231{bottom:382.733347pt;}
.y12_c00231{bottom:439.693347pt;}
.y11_c00231{bottom:466.573347pt;}
.y10_c00231{bottom:473.613347pt;}
.yf_c00231{bottom:522.899747pt;}
.y1c_c00231{bottom:546.893347pt;}
.ye_c00231{bottom:549.773347pt;}
.y1b_c00231{bottom:550.080013pt;}
.yd_c00231{bottom:606.080013pt;}
.yc_c00231{bottom:606.090147pt;}
.yb_c00231{bottom:633.617347pt;}
.ya_c00231{bottom:689.926413pt;}
.y9_c00231{bottom:716.792547pt;}
.y8_c00231{bottom:744.974147pt;}
.y7_c00231{bottom:772.805347pt;}
.y6_c00231{bottom:800.013347pt;}
.y5_c00231{bottom:855.680013pt;}
.y4_c00231{bottom:911.366147pt;}
.y3_c00231{bottom:938.893347pt;}
.y2_c00231{bottom:994.573347pt;}
.y1_c00231{bottom:1061.440013pt;}
.ha_c00231{height:19.891148pt;}
.hb_c00231{height:20.025000pt;}
.hc_c00231{height:21.138056pt;}
.hd_c00231{height:21.460937pt;}
.h11_c00231{height:22.164480pt;}
.he_c00231{height:22.250000pt;}
.h10_c00231{height:28.925000pt;}
.h7_c00231{height:32.394240pt;}
.hf_c00231{height:39.775537pt;}
.h13_c00231{height:49.203125pt;}
.h15_c00231{height:50.250000pt;}
.h6_c00231{height:53.390625pt;}
.h2_c00231{height:58.101562pt;}
.h12_c00231{height:59.119010pt;}
.h3_c00231{height:59.671875pt;}
.h9_c00231{height:59.699608pt;}
.h8_c00231{height:59.701742pt;}
.h14_c00231{height:60.165365pt;}
.h17_c00231{height:61.187500pt;}
.h5_c00231{height:61.765625pt;}
.h4_c00231{height:62.289062pt;}
.h16_c00231{height:71.200000pt;}
.h1_c00231{height:1122.666667pt;}
.h0_c00231{height:1122.880013pt;}
.w1_c00231{width:793.333333pt;}
.w0_c00231{width:793.600000pt;}
.x0_c00231{left:0.000000pt;}
.x28_c00231{left:107.237600pt;}
.x27_c00231{left:108.320000pt;}
.x1f_c00231{left:110.213333pt;}
.x1_c00231{left:111.293333pt;}
.x24_c00231{left:156.306667pt;}
.x18_c00231{left:157.573333pt;}
.xd_c00231{left:158.546667pt;}
.x2_c00231{left:160.026667pt;}
.xe_c00231{left:193.333333pt;}
.xf_c00231{left:233.853333pt;}
.x25_c00231{left:246.320000pt;}
.x10_c00231{left:262.533333pt;}
.x26_c00231{left:268.133333pt;}
.x20_c00231{left:296.333333pt;}
.x11_c00231{left:297.346667pt;}
.x12_c00231{left:334.973333pt;}
.x19_c00231{left:349.120000pt;}
.x13_c00231{left:350.080000pt;}
.xb_c00231{left:371.106667pt;}
.x21_c00231{left:376.440000pt;}
.x14_c00231{left:381.266667pt;}
.x6_c00231{left:391.240000pt;}
.xc_c00231{left:394.720000pt;}
.x22_c00231{left:398.266667pt;}
.x1a_c00231{left:401.146667pt;}
.x1b_c00231{left:415.906667pt;}
.x7_c00231{left:419.386667pt;}
.x3_c00231{left:433.786667pt;}
.x15_c00231{left:441.000000pt;}
.x9_c00231{left:441.933333pt;}
.x5_c00231{left:444.973333pt;}
.x4_c00231{left:463.893333pt;}
.x23_c00231{left:469.560000pt;}
.xa_c00231{left:483.173333pt;}
.x16_c00231{left:537.880000pt;}
.x1c_c00231{left:558.053333pt;}
.x8_c00231{left:599.226667pt;}
.x1d_c00231{left:600.613333pt;}
.x1e_c00231{left:612.333333pt;}
.x17_c00231{left:627.146667pt;}
.x2a_c00231{left:760.440000pt;}
.x29_c00231{left:761.373333pt;}
}





/* 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_c00232 {
    display:none;
  }
  .loading-indicator_c00232.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00232 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_c00232 { 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_c00232" -> "#page-container .classname_c00232")
 */
.pf_c00232 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00232 { /* 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_c00232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00232 { /* 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_c00232 { /* 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_c00232 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00232 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00232 {overflow:visible;}
  }
}
.c_c00232 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00232 { /* 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_c00232:after { /* webkit #35443 */
  content: '';
}
.t_c00232:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00232 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 */
}
.__c00232 { /* 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_c00232 { /* info for Javascript */
  display:none;
}
.l_c00232 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00232 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00232 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00232: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_c00232 {
    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_c00232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00232.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_c00232 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00232;src:url('chunks/assets/font_0b430885ce5c088b241f6d1d.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.284668;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_c00232;src:url('chunks/assets/font_9fb647200c9925d640bf64b3.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.284180;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;}
.m3_c00232{transform:matrix(0.137104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137104,0.000000,0.000000,0.250000,0,0);}
.m2_c00232{transform:matrix(0.138982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138982,0.000000,0.000000,0.250000,0,0);}
.m4_c00232{transform:matrix(0.149324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149324,0.000000,0.000000,0.250000,0,0);}
.m0_c00232{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m9_c00232{transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);}
.m6_c00232{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m8_c00232{transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);}
.m7_c00232{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m1_c00232{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);}
.m5_c00232{transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls4f_c00232{letter-spacing:-2.688000px;}
.ls66_c00232{letter-spacing:-2.415000px;}
.ls4d_c00232{letter-spacing:-2.352000px;}
.ls83_c00232{letter-spacing:-2.205000px;}
.ls75_c00232{letter-spacing:-1.959600px;}
.ls5a_c00232{letter-spacing:-1.731900px;}
.ls78_c00232{letter-spacing:-1.483500px;}
.ls6f_c00232{letter-spacing:-1.428300px;}
.ls7b_c00232{letter-spacing:-1.421400px;}
.ls5e_c00232{letter-spacing:-1.393800px;}
.ls6e_c00232{letter-spacing:-1.166100px;}
.ls5b_c00232{letter-spacing:-1.083300px;}
.ls77_c00232{letter-spacing:-1.062600px;}
.ls56_c00232{letter-spacing:-1.048800px;}
.ls6c_c00232{letter-spacing:-0.993600px;}
.ls74_c00232{letter-spacing:-0.952200px;}
.ls6b_c00232{letter-spacing:-0.903900px;}
.ls72_c00232{letter-spacing:-0.862500px;}
.ls52_c00232{letter-spacing:-0.821100px;}
.ls64_c00232{letter-spacing:-0.800400px;}
.ls54_c00232{letter-spacing:-0.793500px;}
.ls69_c00232{letter-spacing:-0.710700px;}
.ls76_c00232{letter-spacing:-0.683100px;}
.ls6a_c00232{letter-spacing:-0.517500px;}
.ls7d_c00232{letter-spacing:-0.469200px;}
.ls71_c00232{letter-spacing:-0.455400px;}
.ls7e_c00232{letter-spacing:-0.441600px;}
.ls7a_c00232{letter-spacing:-0.393300px;}
.ls5c_c00232{letter-spacing:-0.386400px;}
.ls79_c00232{letter-spacing:-0.345000px;}
.ls6d_c00232{letter-spacing:-0.331200px;}
.ls57_c00232{letter-spacing:-0.324300px;}
.ls50_c00232{letter-spacing:-0.317400px;}
.ls7c_c00232{letter-spacing:-0.234600px;}
.ls7f_c00232{letter-spacing:-0.227700px;}
.ls65_c00232{letter-spacing:-0.220800px;}
.ls73_c00232{letter-spacing:-0.207000px;}
.ls70_c00232{letter-spacing:-0.186300px;}
.ls5f_c00232{letter-spacing:-0.151800px;}
.ls82_c00232{letter-spacing:-0.131100px;}
.ls62_c00232{letter-spacing:-0.103500px;}
.ls67_c00232{letter-spacing:-0.075900px;}
.ls60_c00232{letter-spacing:-0.069000px;}
.ls53_c00232{letter-spacing:-0.062100px;}
.ls63_c00232{letter-spacing:-0.055200px;}
.ls68_c00232{letter-spacing:-0.041400px;}
.ls80_c00232{letter-spacing:-0.020700px;}
.ls81_c00232{letter-spacing:-0.006900px;}
.ls59_c00232{letter-spacing:0.000000px;}
.ls34_c00232{letter-spacing:0.013800px;}
.ls40_c00232{letter-spacing:0.020700px;}
.ls9_c00232{letter-spacing:0.027600px;}
.ls4e_c00232{letter-spacing:0.034500px;}
.ls3_c00232{letter-spacing:0.041400px;}
.ls2c_c00232{letter-spacing:0.048300px;}
.ls6_c00232{letter-spacing:0.110400px;}
.ls1a_c00232{letter-spacing:0.131100px;}
.ls14_c00232{letter-spacing:0.186300px;}
.ls3a_c00232{letter-spacing:0.193200px;}
.ls22_c00232{letter-spacing:0.200100px;}
.lsb_c00232{letter-spacing:0.213900px;}
.lsc_c00232{letter-spacing:0.220800px;}
.ls33_c00232{letter-spacing:0.227700px;}
.ls11_c00232{letter-spacing:0.241500px;}
.ls15_c00232{letter-spacing:0.248400px;}
.ls48_c00232{letter-spacing:0.262200px;}
.ls8_c00232{letter-spacing:0.276000px;}
.ls39_c00232{letter-spacing:0.289800px;}
.ls37_c00232{letter-spacing:0.303600px;}
.ls1d_c00232{letter-spacing:0.310500px;}
.ls18_c00232{letter-spacing:0.324300px;}
.ls3b_c00232{letter-spacing:0.345000px;}
.ls7_c00232{letter-spacing:0.351900px;}
.ls2f_c00232{letter-spacing:0.352560px;}
.lsa_c00232{letter-spacing:0.358800px;}
.ls3d_c00232{letter-spacing:0.379500px;}
.ls55_c00232{letter-spacing:0.386400px;}
.ls28_c00232{letter-spacing:0.389400px;}
.ls49_c00232{letter-spacing:0.400200px;}
.lse_c00232{letter-spacing:0.407100px;}
.ls16_c00232{letter-spacing:0.427800px;}
.ls46_c00232{letter-spacing:0.434700px;}
.ls13_c00232{letter-spacing:0.441600px;}
.ls30_c00232{letter-spacing:0.462300px;}
.ls58_c00232{letter-spacing:0.469200px;}
.ls4c_c00232{letter-spacing:0.476100px;}
.ls25_c00232{letter-spacing:0.483000px;}
.ls38_c00232{letter-spacing:0.496800px;}
.ls0_c00232{letter-spacing:0.538200px;}
.ls42_c00232{letter-spacing:0.552000px;}
.ls20_c00232{letter-spacing:0.558900px;}
.ls2e_c00232{letter-spacing:0.562740px;}
.ls61_c00232{letter-spacing:0.572700px;}
.ls47_c00232{letter-spacing:0.576300px;}
.ls19_c00232{letter-spacing:0.586500px;}
.ls2b_c00232{letter-spacing:0.589860px;}
.ls27_c00232{letter-spacing:0.603420px;}
.ls2_c00232{letter-spacing:0.621000px;}
.lsf_c00232{letter-spacing:0.627900px;}
.ls10_c00232{letter-spacing:0.634800px;}
.ls5_c00232{letter-spacing:0.641700px;}
.ls3f_c00232{letter-spacing:0.703800px;}
.ls2d_c00232{letter-spacing:0.724500px;}
.ls12_c00232{letter-spacing:0.759360px;}
.ls44_c00232{letter-spacing:0.765900px;}
.ls35_c00232{letter-spacing:0.772800px;}
.ls4b_c00232{letter-spacing:0.793500px;}
.ls3e_c00232{letter-spacing:0.800400px;}
.ls51_c00232{letter-spacing:0.807300px;}
.ls4_c00232{letter-spacing:0.828000px;}
.ls43_c00232{letter-spacing:0.862500px;}
.ls26_c00232{letter-spacing:0.942420px;}
.ls24_c00232{letter-spacing:0.949200px;}
.ls1c_c00232{letter-spacing:0.952200px;}
.ls21_c00232{letter-spacing:0.972900px;}
.ls3c_c00232{letter-spacing:0.979800px;}
.ls45_c00232{letter-spacing:1.003440px;}
.ls32_c00232{letter-spacing:1.017000px;}
.lsd_c00232{letter-spacing:1.076400px;}
.ls17_c00232{letter-spacing:1.097100px;}
.ls31_c00232{letter-spacing:1.110900px;}
.ls4a_c00232{letter-spacing:1.117800px;}
.ls1e_c00232{letter-spacing:1.152300px;}
.ls1b_c00232{letter-spacing:1.193700px;}
.ls1_c00232{letter-spacing:1.240740px;}
.ls23_c00232{letter-spacing:1.269600px;}
.ls36_c00232{letter-spacing:1.490400px;}
.ls41_c00232{letter-spacing:1.524900px;}
.ls29_c00232{letter-spacing:1.685040px;}
.ls2a_c00232{letter-spacing:2.210280px;}
.ls1f_c00232{letter-spacing:2.539200px;}
.ls5d_c00232{letter-spacing:3.450000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{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__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00232{word-spacing:-1.320360px;}
.ws2_c00232{word-spacing:-0.172200px;}
.ws7_c00232{word-spacing:0.000000px;}
.ws1_c00232{word-spacing:1.372200px;}
.ws3_c00232{word-spacing:1.890180px;}
.ws0_c00232{word-spacing:8.317440px;}
.ws4_c00232{word-spacing:12.658200px;}
.ws6_c00232{word-spacing:13.102800px;}
._d_c00232{margin-left:-4.153440px;}
._b_c00232{margin-left:-2.760000px;}
._9_c00232{margin-left:-1.422600px;}
._f_c00232{width:1.000500px;}
._6_c00232{width:2.132100px;}
._8_c00232{width:3.318900px;}
._7_c00232{width:5.133600px;}
._a_c00232{width:6.231900px;}
._c_c00232{width:7.455180px;}
._0_c00232{width:9.453000px;}
._2_c00232{width:10.853700px;}
._1_c00232{width:13.137600px;}
._e_c00232{width:15.117900px;}
._4_c00232{width:19.154400px;}
._3_c00232{width:20.748300px;}
._5_c00232{width:24.876000px;}
.fc0_c00232{color:transparent;}
.fs5_c00232{font-size:63.000000px;}
.fs0_c00232{font-size:67.200000px;}
.fs2_c00232{font-size:67.800000px;}
.fs1_c00232{font-size:69.000000px;}
.fs4_c00232{font-size:70.800000px;}
.fs3_c00232{font-size:76.800000px;}
.y0_c00232{bottom:0.000000px;}
.y1c_c00232{bottom:74.895000px;}
.y1b_c00232{bottom:150.120000px;}
.y1a_c00232{bottom:212.055000px;}
.y19_c00232{bottom:274.327500px;}
.y18_c00232{bottom:306.705750px;}
.y17_c00232{bottom:337.686750px;}
.y16_c00232{bottom:369.720000px;}
.y15_c00232{bottom:432.015000px;}
.y14_c00232{bottom:463.320000px;}
.y13_c00232{bottom:525.975000px;}
.y12_c00232{bottom:525.980250px;}
.y11_c00232{bottom:588.615000px;}
.y10_c00232{bottom:620.295000px;}
.yf_c00232{bottom:683.640000px;}
.ye_c00232{bottom:745.935000px;}
.yd_c00232{bottom:808.560000px;}
.yc_c00232{bottom:840.225750px;}
.yb_c00232{bottom:871.551750px;}
.ya_c00232{bottom:902.895000px;}
.y8_c00232{bottom:964.806750px;}
.y9_c00232{bottom:964.815000px;}
.y6_c00232{bottom:996.486750px;}
.y7_c00232{bottom:996.495000px;}
.y4_c00232{bottom:1028.166750px;}
.y5_c00232{bottom:1028.175000px;}
.y3_c00232{bottom:1060.200000px;}
.y2_c00232{bottom:1124.280000px;}
.y1_c00232{bottom:1200.240000px;}
.h7_c00232{height:61.831055px;}
.h2_c00232{height:65.953125px;}
.h3_c00232{height:67.719727px;}
.h5_c00232{height:67.752727px;}
.h6_c00232{height:69.451758px;}
.h4_c00232{height:75.375000px;}
.h1_c00232{height:1263.000000px;}
.h0_c00232{height:1263.240000px;}
.w1_c00232{width:892.500000px;}
.w0_c00232{width:892.800000px;}
.x0_c00232{left:0.000000px;}
.x12_c00232{left:122.728500px;}
.x7_c00232{left:123.832500px;}
.x1_c00232{left:125.565000px;}
.xf_c00232{left:176.895000px;}
.x2_c00232{left:178.365000px;}
.x13_c00232{left:199.620000px;}
.xa_c00232{left:234.660000px;}
.x16_c00232{left:244.605000px;}
.xb_c00232{left:271.635000px;}
.x14_c00232{left:279.015000px;}
.x17_c00232{left:289.350000px;}
.x18_c00232{left:418.125000px;}
.x1d_c00232{left:425.790000px;}
.xe_c00232{left:434.460000px;}
.x19_c00232{left:445.575000px;}
.x1a_c00232{left:447.780000px;}
.x3_c00232{left:461.820000px;}
.x1b_c00232{left:479.730000px;}
.x4_c00232{left:496.710000px;}
.xc_c00232{left:515.820000px;}
.x10_c00232{left:549.345000px;}
.xd_c00232{left:552.510000px;}
.x15_c00232{left:563.880000px;}
.x11_c00232{left:575.610000px;}
.x8_c00232{left:586.020000px;}
.x9_c00232{left:621.915000px;}
.x1c_c00232{left:683.940000px;}
.x5_c00232{left:691.140000px;}
.x6_c00232{left:725.685000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls4f_c00232{letter-spacing:-2.389333pt;}
.ls66_c00232{letter-spacing:-2.146667pt;}
.ls4d_c00232{letter-spacing:-2.090667pt;}
.ls83_c00232{letter-spacing:-1.960000pt;}
.ls75_c00232{letter-spacing:-1.741867pt;}
.ls5a_c00232{letter-spacing:-1.539467pt;}
.ls78_c00232{letter-spacing:-1.318667pt;}
.ls6f_c00232{letter-spacing:-1.269600pt;}
.ls7b_c00232{letter-spacing:-1.263467pt;}
.ls5e_c00232{letter-spacing:-1.238933pt;}
.ls6e_c00232{letter-spacing:-1.036533pt;}
.ls5b_c00232{letter-spacing:-0.962933pt;}
.ls77_c00232{letter-spacing:-0.944533pt;}
.ls56_c00232{letter-spacing:-0.932267pt;}
.ls6c_c00232{letter-spacing:-0.883200pt;}
.ls74_c00232{letter-spacing:-0.846400pt;}
.ls6b_c00232{letter-spacing:-0.803467pt;}
.ls72_c00232{letter-spacing:-0.766667pt;}
.ls52_c00232{letter-spacing:-0.729867pt;}
.ls64_c00232{letter-spacing:-0.711467pt;}
.ls54_c00232{letter-spacing:-0.705333pt;}
.ls69_c00232{letter-spacing:-0.631733pt;}
.ls76_c00232{letter-spacing:-0.607200pt;}
.ls6a_c00232{letter-spacing:-0.460000pt;}
.ls7d_c00232{letter-spacing:-0.417067pt;}
.ls71_c00232{letter-spacing:-0.404800pt;}
.ls7e_c00232{letter-spacing:-0.392533pt;}
.ls7a_c00232{letter-spacing:-0.349600pt;}
.ls5c_c00232{letter-spacing:-0.343467pt;}
.ls79_c00232{letter-spacing:-0.306667pt;}
.ls6d_c00232{letter-spacing:-0.294400pt;}
.ls57_c00232{letter-spacing:-0.288267pt;}
.ls50_c00232{letter-spacing:-0.282133pt;}
.ls7c_c00232{letter-spacing:-0.208533pt;}
.ls7f_c00232{letter-spacing:-0.202400pt;}
.ls65_c00232{letter-spacing:-0.196267pt;}
.ls73_c00232{letter-spacing:-0.184000pt;}
.ls70_c00232{letter-spacing:-0.165600pt;}
.ls5f_c00232{letter-spacing:-0.134933pt;}
.ls82_c00232{letter-spacing:-0.116533pt;}
.ls62_c00232{letter-spacing:-0.092000pt;}
.ls67_c00232{letter-spacing:-0.067467pt;}
.ls60_c00232{letter-spacing:-0.061333pt;}
.ls53_c00232{letter-spacing:-0.055200pt;}
.ls63_c00232{letter-spacing:-0.049067pt;}
.ls68_c00232{letter-spacing:-0.036800pt;}
.ls80_c00232{letter-spacing:-0.018400pt;}
.ls81_c00232{letter-spacing:-0.006133pt;}
.ls59_c00232{letter-spacing:0.000000pt;}
.ls34_c00232{letter-spacing:0.012267pt;}
.ls40_c00232{letter-spacing:0.018400pt;}
.ls9_c00232{letter-spacing:0.024533pt;}
.ls4e_c00232{letter-spacing:0.030667pt;}
.ls3_c00232{letter-spacing:0.036800pt;}
.ls2c_c00232{letter-spacing:0.042933pt;}
.ls6_c00232{letter-spacing:0.098133pt;}
.ls1a_c00232{letter-spacing:0.116533pt;}
.ls14_c00232{letter-spacing:0.165600pt;}
.ls3a_c00232{letter-spacing:0.171733pt;}
.ls22_c00232{letter-spacing:0.177867pt;}
.lsb_c00232{letter-spacing:0.190133pt;}
.lsc_c00232{letter-spacing:0.196267pt;}
.ls33_c00232{letter-spacing:0.202400pt;}
.ls11_c00232{letter-spacing:0.214667pt;}
.ls15_c00232{letter-spacing:0.220800pt;}
.ls48_c00232{letter-spacing:0.233067pt;}
.ls8_c00232{letter-spacing:0.245333pt;}
.ls39_c00232{letter-spacing:0.257600pt;}
.ls37_c00232{letter-spacing:0.269867pt;}
.ls1d_c00232{letter-spacing:0.276000pt;}
.ls18_c00232{letter-spacing:0.288267pt;}
.ls3b_c00232{letter-spacing:0.306667pt;}
.ls7_c00232{letter-spacing:0.312800pt;}
.ls2f_c00232{letter-spacing:0.313387pt;}
.lsa_c00232{letter-spacing:0.318933pt;}
.ls3d_c00232{letter-spacing:0.337333pt;}
.ls55_c00232{letter-spacing:0.343467pt;}
.ls28_c00232{letter-spacing:0.346133pt;}
.ls49_c00232{letter-spacing:0.355733pt;}
.lse_c00232{letter-spacing:0.361867pt;}
.ls16_c00232{letter-spacing:0.380267pt;}
.ls46_c00232{letter-spacing:0.386400pt;}
.ls13_c00232{letter-spacing:0.392533pt;}
.ls30_c00232{letter-spacing:0.410933pt;}
.ls58_c00232{letter-spacing:0.417067pt;}
.ls4c_c00232{letter-spacing:0.423200pt;}
.ls25_c00232{letter-spacing:0.429333pt;}
.ls38_c00232{letter-spacing:0.441600pt;}
.ls0_c00232{letter-spacing:0.478400pt;}
.ls42_c00232{letter-spacing:0.490667pt;}
.ls20_c00232{letter-spacing:0.496800pt;}
.ls2e_c00232{letter-spacing:0.500213pt;}
.ls61_c00232{letter-spacing:0.509067pt;}
.ls47_c00232{letter-spacing:0.512267pt;}
.ls19_c00232{letter-spacing:0.521333pt;}
.ls2b_c00232{letter-spacing:0.524320pt;}
.ls27_c00232{letter-spacing:0.536373pt;}
.ls2_c00232{letter-spacing:0.552000pt;}
.lsf_c00232{letter-spacing:0.558133pt;}
.ls10_c00232{letter-spacing:0.564267pt;}
.ls5_c00232{letter-spacing:0.570400pt;}
.ls3f_c00232{letter-spacing:0.625600pt;}
.ls2d_c00232{letter-spacing:0.644000pt;}
.ls12_c00232{letter-spacing:0.674987pt;}
.ls44_c00232{letter-spacing:0.680800pt;}
.ls35_c00232{letter-spacing:0.686933pt;}
.ls4b_c00232{letter-spacing:0.705333pt;}
.ls3e_c00232{letter-spacing:0.711467pt;}
.ls51_c00232{letter-spacing:0.717600pt;}
.ls4_c00232{letter-spacing:0.736000pt;}
.ls43_c00232{letter-spacing:0.766667pt;}
.ls26_c00232{letter-spacing:0.837707pt;}
.ls24_c00232{letter-spacing:0.843733pt;}
.ls1c_c00232{letter-spacing:0.846400pt;}
.ls21_c00232{letter-spacing:0.864800pt;}
.ls3c_c00232{letter-spacing:0.870933pt;}
.ls45_c00232{letter-spacing:0.891947pt;}
.ls32_c00232{letter-spacing:0.904000pt;}
.lsd_c00232{letter-spacing:0.956800pt;}
.ls17_c00232{letter-spacing:0.975200pt;}
.ls31_c00232{letter-spacing:0.987467pt;}
.ls4a_c00232{letter-spacing:0.993600pt;}
.ls1e_c00232{letter-spacing:1.024267pt;}
.ls1b_c00232{letter-spacing:1.061067pt;}
.ls1_c00232{letter-spacing:1.102880pt;}
.ls23_c00232{letter-spacing:1.128533pt;}
.ls36_c00232{letter-spacing:1.324800pt;}
.ls41_c00232{letter-spacing:1.355467pt;}
.ls29_c00232{letter-spacing:1.497813pt;}
.ls2a_c00232{letter-spacing:1.964693pt;}
.ls1f_c00232{letter-spacing:2.257067pt;}
.ls5d_c00232{letter-spacing:3.066667pt;}
.ws5_c00232{word-spacing:-1.173653pt;}
.ws2_c00232{word-spacing:-0.153067pt;}
.ws7_c00232{word-spacing:0.000000pt;}
.ws1_c00232{word-spacing:1.219733pt;}
.ws3_c00232{word-spacing:1.680160pt;}
.ws0_c00232{word-spacing:7.393280pt;}
.ws4_c00232{word-spacing:11.251733pt;}
.ws6_c00232{word-spacing:11.646933pt;}
._d_c00232{margin-left:-3.691947pt;}
._b_c00232{margin-left:-2.453333pt;}
._9_c00232{margin-left:-1.264533pt;}
._f_c00232{width:0.889333pt;}
._6_c00232{width:1.895200pt;}
._8_c00232{width:2.950133pt;}
._7_c00232{width:4.563200pt;}
._a_c00232{width:5.539467pt;}
._c_c00232{width:6.626827pt;}
._0_c00232{width:8.402667pt;}
._2_c00232{width:9.647733pt;}
._1_c00232{width:11.677867pt;}
._e_c00232{width:13.438133pt;}
._4_c00232{width:17.026133pt;}
._3_c00232{width:18.442933pt;}
._5_c00232{width:22.112000pt;}
.fs5_c00232{font-size:56.000000pt;}
.fs0_c00232{font-size:59.733333pt;}
.fs2_c00232{font-size:60.266667pt;}
.fs1_c00232{font-size:61.333333pt;}
.fs4_c00232{font-size:62.933333pt;}
.fs3_c00232{font-size:68.266667pt;}
.y0_c00232{bottom:0.000000pt;}
.y1c_c00232{bottom:66.573333pt;}
.y1b_c00232{bottom:133.440000pt;}
.y1a_c00232{bottom:188.493333pt;}
.y19_c00232{bottom:243.846667pt;}
.y18_c00232{bottom:272.627333pt;}
.y17_c00232{bottom:300.166000pt;}
.y16_c00232{bottom:328.640000pt;}
.y15_c00232{bottom:384.013333pt;}
.y14_c00232{bottom:411.840000pt;}
.y13_c00232{bottom:467.533333pt;}
.y12_c00232{bottom:467.538000pt;}
.y11_c00232{bottom:523.213333pt;}
.y10_c00232{bottom:551.373333pt;}
.yf_c00232{bottom:607.680000pt;}
.ye_c00232{bottom:663.053333pt;}
.yd_c00232{bottom:718.720000pt;}
.yc_c00232{bottom:746.867333pt;}
.yb_c00232{bottom:774.712667pt;}
.ya_c00232{bottom:802.573333pt;}
.y8_c00232{bottom:857.606000pt;}
.y9_c00232{bottom:857.613333pt;}
.y6_c00232{bottom:885.766000pt;}
.y7_c00232{bottom:885.773333pt;}
.y4_c00232{bottom:913.926000pt;}
.y5_c00232{bottom:913.933333pt;}
.y3_c00232{bottom:942.400000pt;}
.y2_c00232{bottom:999.360000pt;}
.y1_c00232{bottom:1066.880000pt;}
.h7_c00232{height:54.960938pt;}
.h2_c00232{height:58.625000pt;}
.h3_c00232{height:60.195312pt;}
.h5_c00232{height:60.224646pt;}
.h6_c00232{height:61.734896pt;}
.h4_c00232{height:67.000000pt;}
.h1_c00232{height:1122.666667pt;}
.h0_c00232{height:1122.880000pt;}
.w1_c00232{width:793.333333pt;}
.w0_c00232{width:793.600000pt;}
.x0_c00232{left:0.000000pt;}
.x12_c00232{left:109.092000pt;}
.x7_c00232{left:110.073333pt;}
.x1_c00232{left:111.613333pt;}
.xf_c00232{left:157.240000pt;}
.x2_c00232{left:158.546667pt;}
.x13_c00232{left:177.440000pt;}
.xa_c00232{left:208.586667pt;}
.x16_c00232{left:217.426667pt;}
.xb_c00232{left:241.453333pt;}
.x14_c00232{left:248.013333pt;}
.x17_c00232{left:257.200000pt;}
.x18_c00232{left:371.666667pt;}
.x1d_c00232{left:378.480000pt;}
.xe_c00232{left:386.186667pt;}
.x19_c00232{left:396.066667pt;}
.x1a_c00232{left:398.026667pt;}
.x3_c00232{left:410.506667pt;}
.x1b_c00232{left:426.426667pt;}
.x4_c00232{left:441.520000pt;}
.xc_c00232{left:458.506667pt;}
.x10_c00232{left:488.306667pt;}
.xd_c00232{left:491.120000pt;}
.x15_c00232{left:501.226667pt;}
.x11_c00232{left:511.653333pt;}
.x8_c00232{left:520.906667pt;}
.x9_c00232{left:552.813333pt;}
.x1c_c00232{left:607.946667pt;}
.x5_c00232{left:614.346667pt;}
.x6_c00232{left:645.053333pt;}
}





/* 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_c00233 {
    display:none;
  }
  .loading-indicator_c00233.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00233 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_c00233 { 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_c00233" -> "#page-container .classname_c00233")
 */
.pf_c00233 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00233 { /* 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_c00233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00233 { /* 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_c00233 { /* 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_c00233 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00233 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00233 {overflow:visible;}
  }
}
.c_c00233 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00233 { /* 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_c00233:after { /* webkit #35443 */
  content: '';
}
.t_c00233:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00233 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 */
}
.__c00233 { /* 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_c00233 { /* info for Javascript */
  display:none;
}
.l_c00233 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00233 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00233 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00233: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_c00233 {
    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_c00233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00233.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_c00233 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00233;src:url('chunks/assets/font_273cc5f3f2bbab2f18c5f973.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.311035;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_c00233;src:url('chunks/assets/font_1d0db18edc57e360f1c8337c.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.284668;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_c00233;src:url('chunks/assets/font_a163c7b1f62fec0957e478d5.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;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:ff4_c00233;src:url('chunks/assets/font_b4f8b8281d883d2f9f410794.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.284180;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_c00233;src:url('chunks/assets/font_c17e1005df0d1f531a8664fc.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:1.284180;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;}
.m8_c00233{transform:matrix(0.212621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212621,0.000000,0.000000,0.250000,0,0);}
.m7_c00233{transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);}
.m9_c00233{transform:matrix(0.234057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234057,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(0.242306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242306,0.000000,0.000000,0.250000,0,0);}
.m6_c00233{transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);}
.m2_c00233{transform:matrix(0.244969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244969,0.000000,0.000000,0.250000,0,0);}
.m5_c00233{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m3_c00233{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.m4_c00233{transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);}
.m0_c00233{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);}
.v0_c00233{vertical-align:0.000000px;}
.v1_c00233{vertical-align:27.360000px;}
.ls55_c00233{letter-spacing:-2.394000px;}
.ls50_c00233{letter-spacing:-2.331000px;}
.ls7e_c00233{letter-spacing:-2.289000px;}
.ls6b_c00233{letter-spacing:-2.168280px;}
.ls72_c00233{letter-spacing:-2.147760px;}
.ls79_c00233{letter-spacing:-2.127240px;}
.ls63_c00233{letter-spacing:-1.785240px;}
.ls6a_c00233{letter-spacing:-1.566360px;}
.ls6c_c00233{letter-spacing:-1.292760px;}
.ls65_c00233{letter-spacing:-1.258560px;}
.ls4b_c00233{letter-spacing:-1.197000px;}
.ls66_c00233{letter-spacing:-1.149120px;}
.ls71_c00233{letter-spacing:-1.080720px;}
.ls64_c00233{letter-spacing:-1.067040px;}
.ls49_c00233{letter-spacing:-0.930240px;}
.ls6f_c00233{letter-spacing:-0.896040px;}
.ls57_c00233{letter-spacing:-0.855000px;}
.ls60_c00233{letter-spacing:-0.834480px;}
.ls76_c00233{letter-spacing:-0.725040px;}
.ls69_c00233{letter-spacing:-0.711360px;}
.ls48_c00233{letter-spacing:-0.663480px;}
.ls70_c00233{letter-spacing:-0.656640px;}
.ls75_c00233{letter-spacing:-0.588240px;}
.ls62_c00233{letter-spacing:-0.581400px;}
.ls68_c00233{letter-spacing:-0.540360px;}
.ls74_c00233{letter-spacing:-0.533520px;}
.ls53_c00233{letter-spacing:-0.526680px;}
.ls67_c00233{letter-spacing:-0.471960px;}
.ls52_c00233{letter-spacing:-0.458280px;}
.ls5a_c00233{letter-spacing:-0.451440px;}
.ls4f_c00233{letter-spacing:-0.417240px;}
.ls5e_c00233{letter-spacing:-0.396720px;}
.ls51_c00233{letter-spacing:-0.376200px;}
.ls5d_c00233{letter-spacing:-0.369360px;}
.ls59_c00233{letter-spacing:-0.294120px;}
.ls56_c00233{letter-spacing:-0.273600px;}
.ls7b_c00233{letter-spacing:-0.246240px;}
.ls4e_c00233{letter-spacing:-0.232560px;}
.ls4c_c00233{letter-spacing:-0.225720px;}
.ls5b_c00233{letter-spacing:-0.212040px;}
.ls73_c00233{letter-spacing:-0.184680px;}
.ls5c_c00233{letter-spacing:-0.143640px;}
.ls61_c00233{letter-spacing:-0.136800px;}
.ls78_c00233{letter-spacing:-0.109440px;}
.ls54_c00233{letter-spacing:-0.102600px;}
.ls77_c00233{letter-spacing:-0.088920px;}
.ls4a_c00233{letter-spacing:-0.061560px;}
.ls7a_c00233{letter-spacing:-0.041040px;}
.ls6e_c00233{letter-spacing:-0.013680px;}
.ls58_c00233{letter-spacing:-0.006840px;}
.ls4d_c00233{letter-spacing:0.000000px;}
.ls37_c00233{letter-spacing:0.006840px;}
.ls26_c00233{letter-spacing:0.068400px;}
.ls16_c00233{letter-spacing:0.075240px;}
.ls41_c00233{letter-spacing:0.082080px;}
.ls36_c00233{letter-spacing:0.095760px;}
.ls2_c00233{letter-spacing:0.109440px;}
.ls2e_c00233{letter-spacing:0.116280px;}
.ls1a_c00233{letter-spacing:0.136800px;}
.ls40_c00233{letter-spacing:0.143640px;}
.ls3a_c00233{letter-spacing:0.150480px;}
.ls3d_c00233{letter-spacing:0.171000px;}
.ls30_c00233{letter-spacing:0.198360px;}
.ls7d_c00233{letter-spacing:0.232560px;}
.ls3_c00233{letter-spacing:0.266760px;}
.ls23_c00233{letter-spacing:0.273600px;}
.ls7_c00233{letter-spacing:0.287280px;}
.ls8_c00233{letter-spacing:0.294120px;}
.lse_c00233{letter-spacing:0.300960px;}
.ls2d_c00233{letter-spacing:0.314640px;}
.ls42_c00233{letter-spacing:0.321480px;}
.lsd_c00233{letter-spacing:0.328320px;}
.lsb_c00233{letter-spacing:0.335160px;}
.lsf_c00233{letter-spacing:0.369360px;}
.ls1_c00233{letter-spacing:0.376200px;}
.ls43_c00233{letter-spacing:0.383040px;}
.ls46_c00233{letter-spacing:0.403560px;}
.ls33_c00233{letter-spacing:0.410400px;}
.ls45_c00233{letter-spacing:0.417240px;}
.ls5_c00233{letter-spacing:0.437760px;}
.ls12_c00233{letter-spacing:0.451440px;}
.ls5f_c00233{letter-spacing:0.458280px;}
.ls24_c00233{letter-spacing:0.465120px;}
.ls3c_c00233{letter-spacing:0.470400px;}
.ls3b_c00233{letter-spacing:0.477120px;}
.ls34_c00233{letter-spacing:0.533520px;}
.ls2b_c00233{letter-spacing:0.567720px;}
.ls1f_c00233{letter-spacing:0.574560px;}
.ls15_c00233{letter-spacing:0.581400px;}
.ls1b_c00233{letter-spacing:0.588240px;}
.ls44_c00233{letter-spacing:0.615600px;}
.ls9_c00233{letter-spacing:0.636120px;}
.ls18_c00233{letter-spacing:0.642960px;}
.ls39_c00233{letter-spacing:0.678720px;}
.ls0_c00233{letter-spacing:0.690840px;}
.ls7c_c00233{letter-spacing:0.704520px;}
.lsc_c00233{letter-spacing:0.711360px;}
.ls1d_c00233{letter-spacing:0.732480px;}
.ls6d_c00233{letter-spacing:0.745920px;}
.ls2f_c00233{letter-spacing:0.772920px;}
.ls31_c00233{letter-spacing:0.792960px;}
.ls28_c00233{letter-spacing:0.793440px;}
.ls2c_c00233{letter-spacing:0.820800px;}
.ls38_c00233{letter-spacing:0.840000px;}
.ls1e_c00233{letter-spacing:0.868680px;}
.ls3e_c00233{letter-spacing:0.927360px;}
.ls21_c00233{letter-spacing:0.937080px;}
.ls2a_c00233{letter-spacing:0.943920px;}
.ls29_c00233{letter-spacing:0.964440px;}
.ls17_c00233{letter-spacing:0.987840px;}
.ls6_c00233{letter-spacing:1.012320px;}
.ls11_c00233{letter-spacing:1.067040px;}
.ls27_c00233{letter-spacing:1.087560px;}
.ls14_c00233{letter-spacing:1.149120px;}
.ls1c_c00233{letter-spacing:1.229760px;}
.ls19_c00233{letter-spacing:1.333800px;}
.ls32_c00233{letter-spacing:1.458240px;}
.ls20_c00233{letter-spacing:1.518480px;}
.ls25_c00233{letter-spacing:1.585920px;}
.ls47_c00233{letter-spacing:1.647060px;}
.ls4_c00233{letter-spacing:1.648440px;}
.ls22_c00233{letter-spacing:1.744200px;}
.ls35_c00233{letter-spacing:1.771560px;}
.ls10_c00233{letter-spacing:1.812600px;}
.ls3f_c00233{letter-spacing:2.086200px;}
.ls13_c00233{letter-spacing:2.236680px;}
.lsa_c00233{letter-spacing:2.715480px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{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__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00233{word-spacing:-17.674560px;}
.ws1_c00233{word-spacing:-1.538400px;}
.ws4_c00233{word-spacing:0.000000px;}
.ws3_c00233{word-spacing:1.925760px;}
.ws2_c00233{word-spacing:37.765920px;}
._19_c00233{margin-left:-10.013880px;}
._10_c00233{margin-left:-6.757920px;}
._7_c00233{margin-left:-4.186080px;}
._f_c00233{margin-left:-1.668960px;}
._6_c00233{width:1.203840px;}
._8_c00233{width:2.975400px;}
._9_c00233{width:4.165560px;}
._18_c00233{width:5.227080px;}
._15_c00233{width:6.231240px;}
._14_c00233{width:7.467960px;}
._12_c00233{width:8.857800px;}
._11_c00233{width:11.034240px;}
._a_c00233{width:12.236760px;}
._13_c00233{width:13.242240px;}
._c_c00233{width:14.370840px;}
._e_c00233{width:15.485760px;}
._b_c00233{width:18.639000px;}
._d_c00233{width:19.712880px;}
._17_c00233{width:21.272400px;}
._16_c00233{width:23.420160px;}
._0_c00233{width:25.130160px;}
._1_c00233{width:26.402400px;}
._5_c00233{width:28.481760px;}
._3_c00233{width:30.294360px;}
._2_c00233{width:32.804640px;}
._4_c00233{width:34.884000px;}
.fc0_c00233{color:transparent;}
.fs3_c00233{font-size:30.600000px;}
.fs0_c00233{font-size:58.200000px;}
.fs5_c00233{font-size:65.400000px;}
.fs7_c00233{font-size:66.000000px;}
.fs2_c00233{font-size:66.600000px;}
.fs4_c00233{font-size:67.200000px;}
.fs1_c00233{font-size:68.400000px;}
.fs6_c00233{font-size:76.800000px;}
.y0_c00233{bottom:0.000000px;}
.y1a_c00233{bottom:70.935015px;}
.y19_c00233{bottom:179.279715px;}
.y18_c00233{bottom:209.888715px;}
.y17_c00233{bottom:241.575015px;}
.y16_c00233{bottom:303.855015px;}
.y15_c00233{bottom:335.175015px;}
.y14_c00233{bottom:366.135015px;}
.y13_c00233{bottom:429.129915px;}
.y12_c00233{bottom:460.440015px;}
.y11_c00233{bottom:460.440615px;}
.y10_c00233{bottom:523.095015px;}
.yf_c00233{bottom:554.055015px;}
.y1c_c00233{bottom:615.600015px;}
.ye_c00233{bottom:617.070615px;}
.y1b_c00233{bottom:619.215015px;}
.yd_c00233{bottom:647.662515px;}
.yc_c00233{bottom:710.299815px;}
.yb_c00233{bottom:772.924515px;}
.ya_c00233{bottom:836.280015px;}
.y9_c00233{bottom:867.960015px;}
.y8_c00233{bottom:929.895015px;}
.y6_c00233{bottom:991.432815px;}
.y7_c00233{bottom:991.440015px;}
.y5_c00233{bottom:1022.760015px;}
.y3_c00233{bottom:1085.049615px;}
.y4_c00233{bottom:1085.055015px;}
.y2_c00233{bottom:1117.095015px;}
.y1_c00233{bottom:1191.960015px;}
.h2_c00233{height:58.654687px;}
.h8_c00233{height:64.186523px;}
.h7_c00233{height:65.920312px;}
.h3_c00233{height:67.130859px;}
.h5_c00233{height:67.159659px;}
.h6_c00233{height:67.707000px;}
.ha_c00233{height:68.835938px;}
.h4_c00233{height:69.461719px;}
.h9_c00233{height:80.100000px;}
.h1_c00233{height:1263.000000px;}
.h0_c00233{height:1263.240015px;}
.w1_c00233{width:892.500000px;}
.w0_c00233{width:892.800000px;}
.x0_c00233{left:0.000000px;}
.x12_c00233{left:123.121500px;}
.x1_c00233{left:124.125000px;}
.x11_c00233{left:176.925000px;}
.x3_c00233{left:178.455000px;}
.x8_c00233{left:244.605000px;}
.x6_c00233{left:256.005000px;}
.x9_c00233{left:272.340000px;}
.xd_c00233{left:287.250000px;}
.xa_c00233{left:289.350000px;}
.xe_c00233{left:317.310000px;}
.x13_c00233{left:423.990000px;}
.xb_c00233{left:434.325000px;}
.x4_c00233{left:444.780000px;}
.xc_c00233{left:461.940000px;}
.x7_c00233{left:584.415000px;}
.xf_c00233{left:657.930000px;}
.x2_c00233{left:667.560000px;}
.x10_c00233{left:672.645000px;}
.x5_c00233{left:738.540000px;}
.x15_c00233{left:855.495000px;}
.x14_c00233{left:856.545000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.v1_c00233{vertical-align:24.320000pt;}
.ls55_c00233{letter-spacing:-2.128000pt;}
.ls50_c00233{letter-spacing:-2.072000pt;}
.ls7e_c00233{letter-spacing:-2.034667pt;}
.ls6b_c00233{letter-spacing:-1.927360pt;}
.ls72_c00233{letter-spacing:-1.909120pt;}
.ls79_c00233{letter-spacing:-1.890880pt;}
.ls63_c00233{letter-spacing:-1.586880pt;}
.ls6a_c00233{letter-spacing:-1.392320pt;}
.ls6c_c00233{letter-spacing:-1.149120pt;}
.ls65_c00233{letter-spacing:-1.118720pt;}
.ls4b_c00233{letter-spacing:-1.064000pt;}
.ls66_c00233{letter-spacing:-1.021440pt;}
.ls71_c00233{letter-spacing:-0.960640pt;}
.ls64_c00233{letter-spacing:-0.948480pt;}
.ls49_c00233{letter-spacing:-0.826880pt;}
.ls6f_c00233{letter-spacing:-0.796480pt;}
.ls57_c00233{letter-spacing:-0.760000pt;}
.ls60_c00233{letter-spacing:-0.741760pt;}
.ls76_c00233{letter-spacing:-0.644480pt;}
.ls69_c00233{letter-spacing:-0.632320pt;}
.ls48_c00233{letter-spacing:-0.589760pt;}
.ls70_c00233{letter-spacing:-0.583680pt;}
.ls75_c00233{letter-spacing:-0.522880pt;}
.ls62_c00233{letter-spacing:-0.516800pt;}
.ls68_c00233{letter-spacing:-0.480320pt;}
.ls74_c00233{letter-spacing:-0.474240pt;}
.ls53_c00233{letter-spacing:-0.468160pt;}
.ls67_c00233{letter-spacing:-0.419520pt;}
.ls52_c00233{letter-spacing:-0.407360pt;}
.ls5a_c00233{letter-spacing:-0.401280pt;}
.ls4f_c00233{letter-spacing:-0.370880pt;}
.ls5e_c00233{letter-spacing:-0.352640pt;}
.ls51_c00233{letter-spacing:-0.334400pt;}
.ls5d_c00233{letter-spacing:-0.328320pt;}
.ls59_c00233{letter-spacing:-0.261440pt;}
.ls56_c00233{letter-spacing:-0.243200pt;}
.ls7b_c00233{letter-spacing:-0.218880pt;}
.ls4e_c00233{letter-spacing:-0.206720pt;}
.ls4c_c00233{letter-spacing:-0.200640pt;}
.ls5b_c00233{letter-spacing:-0.188480pt;}
.ls73_c00233{letter-spacing:-0.164160pt;}
.ls5c_c00233{letter-spacing:-0.127680pt;}
.ls61_c00233{letter-spacing:-0.121600pt;}
.ls78_c00233{letter-spacing:-0.097280pt;}
.ls54_c00233{letter-spacing:-0.091200pt;}
.ls77_c00233{letter-spacing:-0.079040pt;}
.ls4a_c00233{letter-spacing:-0.054720pt;}
.ls7a_c00233{letter-spacing:-0.036480pt;}
.ls6e_c00233{letter-spacing:-0.012160pt;}
.ls58_c00233{letter-spacing:-0.006080pt;}
.ls4d_c00233{letter-spacing:0.000000pt;}
.ls37_c00233{letter-spacing:0.006080pt;}
.ls26_c00233{letter-spacing:0.060800pt;}
.ls16_c00233{letter-spacing:0.066880pt;}
.ls41_c00233{letter-spacing:0.072960pt;}
.ls36_c00233{letter-spacing:0.085120pt;}
.ls2_c00233{letter-spacing:0.097280pt;}
.ls2e_c00233{letter-spacing:0.103360pt;}
.ls1a_c00233{letter-spacing:0.121600pt;}
.ls40_c00233{letter-spacing:0.127680pt;}
.ls3a_c00233{letter-spacing:0.133760pt;}
.ls3d_c00233{letter-spacing:0.152000pt;}
.ls30_c00233{letter-spacing:0.176320pt;}
.ls7d_c00233{letter-spacing:0.206720pt;}
.ls3_c00233{letter-spacing:0.237120pt;}
.ls23_c00233{letter-spacing:0.243200pt;}
.ls7_c00233{letter-spacing:0.255360pt;}
.ls8_c00233{letter-spacing:0.261440pt;}
.lse_c00233{letter-spacing:0.267520pt;}
.ls2d_c00233{letter-spacing:0.279680pt;}
.ls42_c00233{letter-spacing:0.285760pt;}
.lsd_c00233{letter-spacing:0.291840pt;}
.lsb_c00233{letter-spacing:0.297920pt;}
.lsf_c00233{letter-spacing:0.328320pt;}
.ls1_c00233{letter-spacing:0.334400pt;}
.ls43_c00233{letter-spacing:0.340480pt;}
.ls46_c00233{letter-spacing:0.358720pt;}
.ls33_c00233{letter-spacing:0.364800pt;}
.ls45_c00233{letter-spacing:0.370880pt;}
.ls5_c00233{letter-spacing:0.389120pt;}
.ls12_c00233{letter-spacing:0.401280pt;}
.ls5f_c00233{letter-spacing:0.407360pt;}
.ls24_c00233{letter-spacing:0.413440pt;}
.ls3c_c00233{letter-spacing:0.418133pt;}
.ls3b_c00233{letter-spacing:0.424107pt;}
.ls34_c00233{letter-spacing:0.474240pt;}
.ls2b_c00233{letter-spacing:0.504640pt;}
.ls1f_c00233{letter-spacing:0.510720pt;}
.ls15_c00233{letter-spacing:0.516800pt;}
.ls1b_c00233{letter-spacing:0.522880pt;}
.ls44_c00233{letter-spacing:0.547200pt;}
.ls9_c00233{letter-spacing:0.565440pt;}
.ls18_c00233{letter-spacing:0.571520pt;}
.ls39_c00233{letter-spacing:0.603307pt;}
.ls0_c00233{letter-spacing:0.614080pt;}
.ls7c_c00233{letter-spacing:0.626240pt;}
.lsc_c00233{letter-spacing:0.632320pt;}
.ls1d_c00233{letter-spacing:0.651093pt;}
.ls6d_c00233{letter-spacing:0.663040pt;}
.ls2f_c00233{letter-spacing:0.687040pt;}
.ls31_c00233{letter-spacing:0.704853pt;}
.ls28_c00233{letter-spacing:0.705280pt;}
.ls2c_c00233{letter-spacing:0.729600pt;}
.ls38_c00233{letter-spacing:0.746667pt;}
.ls1e_c00233{letter-spacing:0.772160pt;}
.ls3e_c00233{letter-spacing:0.824320pt;}
.ls21_c00233{letter-spacing:0.832960pt;}
.ls2a_c00233{letter-spacing:0.839040pt;}
.ls29_c00233{letter-spacing:0.857280pt;}
.ls17_c00233{letter-spacing:0.878080pt;}
.ls6_c00233{letter-spacing:0.899840pt;}
.ls11_c00233{letter-spacing:0.948480pt;}
.ls27_c00233{letter-spacing:0.966720pt;}
.ls14_c00233{letter-spacing:1.021440pt;}
.ls1c_c00233{letter-spacing:1.093120pt;}
.ls19_c00233{letter-spacing:1.185600pt;}
.ls32_c00233{letter-spacing:1.296213pt;}
.ls20_c00233{letter-spacing:1.349760pt;}
.ls25_c00233{letter-spacing:1.409707pt;}
.ls47_c00233{letter-spacing:1.464053pt;}
.ls4_c00233{letter-spacing:1.465280pt;}
.ls22_c00233{letter-spacing:1.550400pt;}
.ls35_c00233{letter-spacing:1.574720pt;}
.ls10_c00233{letter-spacing:1.611200pt;}
.ls3f_c00233{letter-spacing:1.854400pt;}
.ls13_c00233{letter-spacing:1.988160pt;}
.lsa_c00233{letter-spacing:2.413760pt;}
.ws0_c00233{word-spacing:-15.710720pt;}
.ws1_c00233{word-spacing:-1.367467pt;}
.ws4_c00233{word-spacing:0.000000pt;}
.ws3_c00233{word-spacing:1.711787pt;}
.ws2_c00233{word-spacing:33.569707pt;}
._19_c00233{margin-left:-8.901227pt;}
._10_c00233{margin-left:-6.007040pt;}
._7_c00233{margin-left:-3.720960pt;}
._f_c00233{margin-left:-1.483520pt;}
._6_c00233{width:1.070080pt;}
._8_c00233{width:2.644800pt;}
._9_c00233{width:3.702720pt;}
._18_c00233{width:4.646293pt;}
._15_c00233{width:5.538880pt;}
._14_c00233{width:6.638187pt;}
._12_c00233{width:7.873600pt;}
._11_c00233{width:9.808213pt;}
._a_c00233{width:10.877120pt;}
._13_c00233{width:11.770880pt;}
._c_c00233{width:12.774080pt;}
._e_c00233{width:13.765120pt;}
._b_c00233{width:16.568000pt;}
._d_c00233{width:17.522560pt;}
._17_c00233{width:18.908800pt;}
._16_c00233{width:20.817920pt;}
._0_c00233{width:22.337920pt;}
._1_c00233{width:23.468800pt;}
._5_c00233{width:25.317120pt;}
._3_c00233{width:26.928320pt;}
._2_c00233{width:29.159680pt;}
._4_c00233{width:31.008000pt;}
.fs3_c00233{font-size:27.200000pt;}
.fs0_c00233{font-size:51.733333pt;}
.fs5_c00233{font-size:58.133333pt;}
.fs7_c00233{font-size:58.666667pt;}
.fs2_c00233{font-size:59.200000pt;}
.fs4_c00233{font-size:59.733333pt;}
.fs1_c00233{font-size:60.800000pt;}
.fs6_c00233{font-size:68.266667pt;}
.y0_c00233{bottom:0.000000pt;}
.y1a_c00233{bottom:63.053347pt;}
.y19_c00233{bottom:159.359747pt;}
.y18_c00233{bottom:186.567747pt;}
.y17_c00233{bottom:214.733347pt;}
.y16_c00233{bottom:270.093347pt;}
.y15_c00233{bottom:297.933347pt;}
.y14_c00233{bottom:325.453347pt;}
.y13_c00233{bottom:381.448813pt;}
.y12_c00233{bottom:409.280013pt;}
.y11_c00233{bottom:409.280547pt;}
.y10_c00233{bottom:464.973347pt;}
.yf_c00233{bottom:492.493347pt;}
.y1c_c00233{bottom:547.200013pt;}
.ye_c00233{bottom:548.507213pt;}
.y1b_c00233{bottom:550.413347pt;}
.yd_c00233{bottom:575.700013pt;}
.yc_c00233{bottom:631.377613pt;}
.yb_c00233{bottom:687.044013pt;}
.ya_c00233{bottom:743.360013pt;}
.y9_c00233{bottom:771.520013pt;}
.y8_c00233{bottom:826.573347pt;}
.y6_c00233{bottom:881.273613pt;}
.y7_c00233{bottom:881.280013pt;}
.y5_c00233{bottom:909.120013pt;}
.y3_c00233{bottom:964.488547pt;}
.y4_c00233{bottom:964.493347pt;}
.y2_c00233{bottom:992.973347pt;}
.y1_c00233{bottom:1059.520013pt;}
.h2_c00233{height:52.137500pt;}
.h8_c00233{height:57.054688pt;}
.h7_c00233{height:58.595833pt;}
.h3_c00233{height:59.671875pt;}
.h5_c00233{height:59.697475pt;}
.h6_c00233{height:60.184000pt;}
.ha_c00233{height:61.187500pt;}
.h4_c00233{height:61.743750pt;}
.h9_c00233{height:71.200000pt;}
.h1_c00233{height:1122.666667pt;}
.h0_c00233{height:1122.880013pt;}
.w1_c00233{width:793.333333pt;}
.w0_c00233{width:793.600000pt;}
.x0_c00233{left:0.000000pt;}
.x12_c00233{left:109.441333pt;}
.x1_c00233{left:110.333333pt;}
.x11_c00233{left:157.266667pt;}
.x3_c00233{left:158.626667pt;}
.x8_c00233{left:217.426667pt;}
.x6_c00233{left:227.560000pt;}
.x9_c00233{left:242.080000pt;}
.xd_c00233{left:255.333333pt;}
.xa_c00233{left:257.200000pt;}
.xe_c00233{left:282.053333pt;}
.x13_c00233{left:376.880000pt;}
.xb_c00233{left:386.066667pt;}
.x4_c00233{left:395.360000pt;}
.xc_c00233{left:410.613333pt;}
.x7_c00233{left:519.480000pt;}
.xf_c00233{left:584.826667pt;}
.x2_c00233{left:593.386667pt;}
.x10_c00233{left:597.906667pt;}
.x5_c00233{left:656.480000pt;}
.x15_c00233{left:760.440000pt;}
.x14_c00233{left:761.373333pt;}
}





/* 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_c00234 {
    display:none;
  }
  .loading-indicator_c00234.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00234 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_c00234 { 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_c00234" -> "#page-container .classname_c00234")
 */
.pf_c00234 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00234 { /* 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_c00234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00234 { /* 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_c00234 { /* 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_c00234 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00234 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00234 {overflow:visible;}
  }
}
.c_c00234 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00234 { /* 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_c00234:after { /* webkit #35443 */
  content: '';
}
.t_c00234:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00234 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 */
}
.__c00234 { /* 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_c00234 { /* info for Javascript */
  display:none;
}
.l_c00234 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00234 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00234 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00234: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_c00234 {
    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_c00234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00234.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_c00234 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00234;src:url('chunks/assets/font_ab560d43745cd12c79464988.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.284668;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_c00234;src:url('chunks/assets/font_700d663bc9ac1e8e254a9372.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.284180;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_c00234;src:url('chunks/assets/font_e5cc58055fcca96b297ee0ca.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;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;}
.m2_c00234{transform:matrix(0.221909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221909,0.000000,0.000000,0.250000,0,0);}
.m1_c00234{transform:matrix(0.224949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224949,0.000000,0.000000,0.250000,0,0);}
.m3_c00234{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m6_c00234{transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);}
.m4_c00234{transform:matrix(0.244509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244509,0.000000,0.000000,0.250000,0,0);}
.m9_c00234{transform:matrix(0.245209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245209,0.000000,0.000000,0.250000,0,0);}
.m8_c00234{transform:matrix(0.245591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245591,0.000000,0.000000,0.250000,0,0);}
.mb_c00234{transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);}
.m7_c00234{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.ma_c00234{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m0_c00234{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);}
.m5_c00234{transform:matrix(0.264779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264779,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls68_c00234{letter-spacing:-2.436000px;}
.ls57_c00234{letter-spacing:-2.310000px;}
.ls42_c00234{letter-spacing:-2.263800px;}
.ls40_c00234{letter-spacing:-2.142000px;}
.ls74_c00234{letter-spacing:-2.108880px;}
.ls5b_c00234{letter-spacing:-1.948800px;}
.ls54_c00234{letter-spacing:-1.886160px;}
.ls49_c00234{letter-spacing:-1.823520px;}
.ls6e_c00234{letter-spacing:-1.774800px;}
.ls5e_c00234{letter-spacing:-1.649520px;}
.ls7a_c00234{letter-spacing:-1.531200px;}
.ls58_c00234{letter-spacing:-1.426800px;}
.ls6f_c00234{letter-spacing:-1.266720px;}
.ls63_c00234{letter-spacing:-1.218000px;}
.ls71_c00234{letter-spacing:-1.190160px;}
.ls46_c00234{letter-spacing:-1.169280px;}
.ls6a_c00234{letter-spacing:-1.078800px;}
.ls6d_c00234{letter-spacing:-1.023120px;}
.ls53_c00234{letter-spacing:-0.897840px;}
.ls70_c00234{letter-spacing:-0.890880px;}
.ls73_c00234{letter-spacing:-0.828240px;}
.ls56_c00234{letter-spacing:-0.814320px;}
.ls72_c00234{letter-spacing:-0.668160px;}
.ls7b_c00234{letter-spacing:-0.654240px;}
.ls77_c00234{letter-spacing:-0.605520px;}
.ls3e_c00234{letter-spacing:-0.584640px;}
.ls44_c00234{letter-spacing:-0.535920px;}
.ls60_c00234{letter-spacing:-0.508080px;}
.ls7f_c00234{letter-spacing:-0.473280px;}
.ls69_c00234{letter-spacing:-0.452400px;}
.ls79_c00234{letter-spacing:-0.424560px;}
.ls55_c00234{letter-spacing:-0.403680px;}
.ls51_c00234{letter-spacing:-0.389760px;}
.ls65_c00234{letter-spacing:-0.382800px;}
.ls7c_c00234{letter-spacing:-0.375840px;}
.ls76_c00234{letter-spacing:-0.361920px;}
.ls5a_c00234{letter-spacing:-0.271440px;}
.ls64_c00234{letter-spacing:-0.264480px;}
.ls6b_c00234{letter-spacing:-0.243600px;}
.ls5f_c00234{letter-spacing:-0.229680px;}
.ls61_c00234{letter-spacing:-0.222720px;}
.ls43_c00234{letter-spacing:-0.208800px;}
.ls52_c00234{letter-spacing:-0.201840px;}
.ls82_c00234{letter-spacing:-0.194880px;}
.ls6c_c00234{letter-spacing:-0.187920px;}
.ls81_c00234{letter-spacing:-0.174000px;}
.ls7d_c00234{letter-spacing:-0.167040px;}
.ls4f_c00234{letter-spacing:-0.153120px;}
.ls7e_c00234{letter-spacing:-0.146160px;}
.ls48_c00234{letter-spacing:-0.132240px;}
.ls5c_c00234{letter-spacing:-0.118320px;}
.ls47_c00234{letter-spacing:-0.104400px;}
.ls50_c00234{letter-spacing:-0.090480px;}
.ls4e_c00234{letter-spacing:-0.083520px;}
.ls5d_c00234{letter-spacing:-0.076560px;}
.ls4c_c00234{letter-spacing:-0.069600px;}
.ls75_c00234{letter-spacing:-0.062640px;}
.ls41_c00234{letter-spacing:-0.055680px;}
.ls45_c00234{letter-spacing:-0.048720px;}
.ls4d_c00234{letter-spacing:-0.041760px;}
.ls4a_c00234{letter-spacing:-0.027840px;}
.ls78_c00234{letter-spacing:-0.020880px;}
.ls59_c00234{letter-spacing:-0.006960px;}
.ls4b_c00234{letter-spacing:0.000000px;}
.ls29_c00234{letter-spacing:0.006960px;}
.ls17_c00234{letter-spacing:0.020880px;}
.ls35_c00234{letter-spacing:0.055680px;}
.ls10_c00234{letter-spacing:0.076560px;}
.ls8_c00234{letter-spacing:0.097440px;}
.ls33_c00234{letter-spacing:0.104400px;}
.ls2_c00234{letter-spacing:0.118320px;}
.ls4_c00234{letter-spacing:0.132240px;}
.ls38_c00234{letter-spacing:0.139200px;}
.ls37_c00234{letter-spacing:0.146160px;}
.ls30_c00234{letter-spacing:0.153120px;}
.ls12_c00234{letter-spacing:0.160080px;}
.ls15_c00234{letter-spacing:0.174000px;}
.ls1f_c00234{letter-spacing:0.180960px;}
.ls3f_c00234{letter-spacing:0.194880px;}
.ls27_c00234{letter-spacing:0.201840px;}
.lsd_c00234{letter-spacing:0.208800px;}
.ls11_c00234{letter-spacing:0.215760px;}
.ls19_c00234{letter-spacing:0.222720px;}
.ls5_c00234{letter-spacing:0.229680px;}
.ls23_c00234{letter-spacing:0.236640px;}
.ls13_c00234{letter-spacing:0.243600px;}
.lsa_c00234{letter-spacing:0.257520px;}
.ls1c_c00234{letter-spacing:0.264480px;}
.ls9_c00234{letter-spacing:0.292320px;}
.ls3_c00234{letter-spacing:0.300960px;}
.ls1_c00234{letter-spacing:0.306240px;}
.ls3c_c00234{letter-spacing:0.320160px;}
.ls26_c00234{letter-spacing:0.321480px;}
.ls14_c00234{letter-spacing:0.334080px;}
.ls18_c00234{letter-spacing:0.348000px;}
.ls1e_c00234{letter-spacing:0.354960px;}
.ls22_c00234{letter-spacing:0.361920px;}
.ls1b_c00234{letter-spacing:0.452400px;}
.ls6_c00234{letter-spacing:0.480240px;}
.ls3b_c00234{letter-spacing:0.485640px;}
.ls36_c00234{letter-spacing:0.535920px;}
.ls7_c00234{letter-spacing:0.542880px;}
.ls32_c00234{letter-spacing:0.549840px;}
.ls62_c00234{letter-spacing:0.556800px;}
.ls21_c00234{letter-spacing:0.598560px;}
.ls34_c00234{letter-spacing:0.654240px;}
.ls25_c00234{letter-spacing:0.656640px;}
.lse_c00234{letter-spacing:0.661200px;}
.ls80_c00234{letter-spacing:0.665280px;}
.ls20_c00234{letter-spacing:0.690840px;}
.ls2f_c00234{letter-spacing:0.745560px;}
.lsf_c00234{letter-spacing:0.814320px;}
.ls83_c00234{letter-spacing:0.820620px;}
.lsb_c00234{letter-spacing:0.883920px;}
.ls2b_c00234{letter-spacing:0.918720px;}
.ls0_c00234{letter-spacing:0.950760px;}
.ls3a_c00234{letter-spacing:1.073880px;}
.ls1a_c00234{letter-spacing:1.127520px;}
.ls16_c00234{letter-spacing:1.398960px;}
.ls39_c00234{letter-spacing:1.404480px;}
.ls2a_c00234{letter-spacing:1.447680px;}
.ls31_c00234{letter-spacing:1.461600px;}
.ls2c_c00234{letter-spacing:1.607760px;}
.ls3d_c00234{letter-spacing:1.714980px;}
.ls66_c00234{letter-spacing:1.887840px;}
.lsc_c00234{letter-spacing:1.983600px;}
.ls2e_c00234{letter-spacing:1.990440px;}
.ls2d_c00234{letter-spacing:1.997280px;}
.ls24_c00234{letter-spacing:2.268960px;}
.ls28_c00234{letter-spacing:2.839680px;}
.ls1d_c00234{letter-spacing:2.888400px;}
.ls67_c00234{letter-spacing:3.420000px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{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__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00234{word-spacing:-2.742240px;}
.ws6_c00234{word-spacing:0.000000px;}
.ws3_c00234{word-spacing:4.150920px;}
.ws2_c00234{word-spacing:4.489800px;}
.ws1_c00234{word-spacing:6.442800px;}
.ws5_c00234{word-spacing:10.812240px;}
.ws4_c00234{word-spacing:13.445760px;}
._10_c00234{margin-left:-10.831200px;}
._e_c00234{margin-left:-8.289360px;}
._f_c00234{margin-left:-5.136480px;}
._2_c00234{margin-left:-3.138960px;}
._0_c00234{margin-left:-1.572960px;}
._1_c00234{width:1.767840px;}
._6_c00234{width:3.062400px;}
._3_c00234{width:4.370880px;}
._7_c00234{width:6.034320px;}
._4_c00234{width:7.426320px;}
._5_c00234{width:8.534040px;}
._9_c00234{width:10.453920px;}
._8_c00234{width:11.706720px;}
._11_c00234{width:12.820320px;}
._d_c00234{width:13.920000px;}
._a_c00234{width:15.409440px;}
._b_c00234{width:18.618000px;}
._c_c00234{width:19.870800px;}
._12_c00234{width:21.826560px;}
.fc0_c00234{color:transparent;}
.fs6_c00234{font-size:58.200000px;}
.fs0_c00234{font-size:60.600000px;}
.fs3_c00234{font-size:61.200000px;}
.fs4_c00234{font-size:66.000000px;}
.fs5_c00234{font-size:67.200000px;}
.fs1_c00234{font-size:68.400000px;}
.fs2_c00234{font-size:69.600000px;}
.y0_c00234{bottom:0.000000px;}
.y1d_c00234{bottom:67.680006px;}
.y1c_c00234{bottom:143.640006px;}
.y1b_c00234{bottom:206.280006px;}
.y1a_c00234{bottom:237.615006px;}
.y19_c00234{bottom:237.617406px;}
.y17_c00234{bottom:268.905606px;}
.y18_c00234{bottom:268.920006px;}
.y16_c00234{bottom:300.608406px;}
.y15_c00234{bottom:331.215006px;}
.y14_c00234{bottom:394.935006px;}
.y13_c00234{bottom:426.255006px;}
.y11_c00234{bottom:488.872206px;}
.y12_c00234{bottom:488.880006px;}
.y10_c00234{bottom:583.215006px;}
.yf_c00234{bottom:613.800006px;}
.ye_c00234{bottom:677.180406px;}
.yd_c00234{bottom:708.135006px;}
.yc_c00234{bottom:771.483006px;}
.yb_c00234{bottom:802.455006px;}
.ya_c00234{bottom:865.800006px;}
.y9_c00234{bottom:865.808406px;}
.y8_c00234{bottom:896.415006px;}
.y6_c00234{bottom:959.410806px;}
.y7_c00234{bottom:959.415006px;}
.y5_c00234{bottom:990.000006px;}
.y4_c00234{bottom:1021.320006px;}
.y3_c00234{bottom:1052.640006px;}
.y2_c00234{bottom:1115.640006px;}
.y1_c00234{bottom:1193.055006px;}
.h8_c00234{height:57.120117px;}
.h2_c00234{height:59.475586px;}
.h4_c00234{height:60.064453px;}
.h7_c00234{height:65.953125px;}
.h6_c00234{height:67.097461px;}
.h3_c00234{height:68.308594px;}
.h5_c00234{height:68.835938px;}
.h1_c00234{height:1263.000000px;}
.h0_c00234{height:1263.240006px;}
.w1_c00234{width:892.500000px;}
.w0_c00234{width:892.799998px;}
.x0_c00234{left:0.000000px;}
.x1b_c00234{left:122.012998px;}
.xc_c00234{left:123.743998px;}
.x9_c00234{left:125.015398px;}
.x6_c00234{left:126.337798px;}
.x1_c00234{left:128.444998px;}
.x21_c00234{left:175.484998px;}
.x15_c00234{left:176.534999px;}
.xb_c00234{left:178.364998px;}
.x8_c00234{left:179.894998px;}
.x2_c00234{left:181.244998px;}
.x11_c00234{left:244.964999px;}
.x1e_c00234{left:254.489999px;}
.x12_c00234{left:273.719998px;}
.xd_c00234{left:284.054999px;}
.x1c_c00234{left:316.289999px;}
.x1d_c00234{left:334.649999px;}
.xe_c00234{left:354.119999px;}
.x13_c00234{left:362.324998px;}
.x14_c00234{left:389.999998px;}
.x1f_c00234{left:395.849999px;}
.xf_c00234{left:400.469998px;}
.x20_c00234{left:415.649999px;}
.x7_c00234{left:418.454998px;}
.x22_c00234{left:424.709999px;}
.xa_c00234{left:447.239999px;}
.x3_c00234{left:452.429999px;}
.x16_c00234{left:458.894999px;}
.x4_c00234{left:484.769998px;}
.x17_c00234{left:489.194999px;}
.x10_c00234{left:561.014998px;}
.x18_c00234{left:580.574998px;}
.x19_c00234{left:598.124998px;}
.x1a_c00234{left:625.469998px;}
.x5_c00234{left:675.989998px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls68_c00234{letter-spacing:-2.165333pt;}
.ls57_c00234{letter-spacing:-2.053333pt;}
.ls42_c00234{letter-spacing:-2.012267pt;}
.ls40_c00234{letter-spacing:-1.904000pt;}
.ls74_c00234{letter-spacing:-1.874560pt;}
.ls5b_c00234{letter-spacing:-1.732267pt;}
.ls54_c00234{letter-spacing:-1.676587pt;}
.ls49_c00234{letter-spacing:-1.620907pt;}
.ls6e_c00234{letter-spacing:-1.577600pt;}
.ls5e_c00234{letter-spacing:-1.466240pt;}
.ls7a_c00234{letter-spacing:-1.361067pt;}
.ls58_c00234{letter-spacing:-1.268267pt;}
.ls6f_c00234{letter-spacing:-1.125973pt;}
.ls63_c00234{letter-spacing:-1.082667pt;}
.ls71_c00234{letter-spacing:-1.057920pt;}
.ls46_c00234{letter-spacing:-1.039360pt;}
.ls6a_c00234{letter-spacing:-0.958933pt;}
.ls6d_c00234{letter-spacing:-0.909440pt;}
.ls53_c00234{letter-spacing:-0.798080pt;}
.ls70_c00234{letter-spacing:-0.791893pt;}
.ls73_c00234{letter-spacing:-0.736213pt;}
.ls56_c00234{letter-spacing:-0.723840pt;}
.ls72_c00234{letter-spacing:-0.593920pt;}
.ls7b_c00234{letter-spacing:-0.581547pt;}
.ls77_c00234{letter-spacing:-0.538240pt;}
.ls3e_c00234{letter-spacing:-0.519680pt;}
.ls44_c00234{letter-spacing:-0.476373pt;}
.ls60_c00234{letter-spacing:-0.451627pt;}
.ls7f_c00234{letter-spacing:-0.420693pt;}
.ls69_c00234{letter-spacing:-0.402133pt;}
.ls79_c00234{letter-spacing:-0.377387pt;}
.ls55_c00234{letter-spacing:-0.358827pt;}
.ls51_c00234{letter-spacing:-0.346453pt;}
.ls65_c00234{letter-spacing:-0.340267pt;}
.ls7c_c00234{letter-spacing:-0.334080pt;}
.ls76_c00234{letter-spacing:-0.321707pt;}
.ls5a_c00234{letter-spacing:-0.241280pt;}
.ls64_c00234{letter-spacing:-0.235093pt;}
.ls6b_c00234{letter-spacing:-0.216533pt;}
.ls5f_c00234{letter-spacing:-0.204160pt;}
.ls61_c00234{letter-spacing:-0.197973pt;}
.ls43_c00234{letter-spacing:-0.185600pt;}
.ls52_c00234{letter-spacing:-0.179413pt;}
.ls82_c00234{letter-spacing:-0.173227pt;}
.ls6c_c00234{letter-spacing:-0.167040pt;}
.ls81_c00234{letter-spacing:-0.154667pt;}
.ls7d_c00234{letter-spacing:-0.148480pt;}
.ls4f_c00234{letter-spacing:-0.136107pt;}
.ls7e_c00234{letter-spacing:-0.129920pt;}
.ls48_c00234{letter-spacing:-0.117547pt;}
.ls5c_c00234{letter-spacing:-0.105173pt;}
.ls47_c00234{letter-spacing:-0.092800pt;}
.ls50_c00234{letter-spacing:-0.080427pt;}
.ls4e_c00234{letter-spacing:-0.074240pt;}
.ls5d_c00234{letter-spacing:-0.068053pt;}
.ls4c_c00234{letter-spacing:-0.061867pt;}
.ls75_c00234{letter-spacing:-0.055680pt;}
.ls41_c00234{letter-spacing:-0.049493pt;}
.ls45_c00234{letter-spacing:-0.043307pt;}
.ls4d_c00234{letter-spacing:-0.037120pt;}
.ls4a_c00234{letter-spacing:-0.024747pt;}
.ls78_c00234{letter-spacing:-0.018560pt;}
.ls59_c00234{letter-spacing:-0.006187pt;}
.ls4b_c00234{letter-spacing:0.000000pt;}
.ls29_c00234{letter-spacing:0.006187pt;}
.ls17_c00234{letter-spacing:0.018560pt;}
.ls35_c00234{letter-spacing:0.049493pt;}
.ls10_c00234{letter-spacing:0.068053pt;}
.ls8_c00234{letter-spacing:0.086613pt;}
.ls33_c00234{letter-spacing:0.092800pt;}
.ls2_c00234{letter-spacing:0.105173pt;}
.ls4_c00234{letter-spacing:0.117547pt;}
.ls38_c00234{letter-spacing:0.123733pt;}
.ls37_c00234{letter-spacing:0.129920pt;}
.ls30_c00234{letter-spacing:0.136107pt;}
.ls12_c00234{letter-spacing:0.142293pt;}
.ls15_c00234{letter-spacing:0.154667pt;}
.ls1f_c00234{letter-spacing:0.160853pt;}
.ls3f_c00234{letter-spacing:0.173227pt;}
.ls27_c00234{letter-spacing:0.179413pt;}
.lsd_c00234{letter-spacing:0.185600pt;}
.ls11_c00234{letter-spacing:0.191787pt;}
.ls19_c00234{letter-spacing:0.197973pt;}
.ls5_c00234{letter-spacing:0.204160pt;}
.ls23_c00234{letter-spacing:0.210347pt;}
.ls13_c00234{letter-spacing:0.216533pt;}
.lsa_c00234{letter-spacing:0.228907pt;}
.ls1c_c00234{letter-spacing:0.235093pt;}
.ls9_c00234{letter-spacing:0.259840pt;}
.ls3_c00234{letter-spacing:0.267520pt;}
.ls1_c00234{letter-spacing:0.272213pt;}
.ls3c_c00234{letter-spacing:0.284587pt;}
.ls26_c00234{letter-spacing:0.285760pt;}
.ls14_c00234{letter-spacing:0.296960pt;}
.ls18_c00234{letter-spacing:0.309333pt;}
.ls1e_c00234{letter-spacing:0.315520pt;}
.ls22_c00234{letter-spacing:0.321707pt;}
.ls1b_c00234{letter-spacing:0.402133pt;}
.ls6_c00234{letter-spacing:0.426880pt;}
.ls3b_c00234{letter-spacing:0.431680pt;}
.ls36_c00234{letter-spacing:0.476373pt;}
.ls7_c00234{letter-spacing:0.482560pt;}
.ls32_c00234{letter-spacing:0.488747pt;}
.ls62_c00234{letter-spacing:0.494933pt;}
.ls21_c00234{letter-spacing:0.532053pt;}
.ls34_c00234{letter-spacing:0.581547pt;}
.ls25_c00234{letter-spacing:0.583680pt;}
.lse_c00234{letter-spacing:0.587733pt;}
.ls80_c00234{letter-spacing:0.591360pt;}
.ls20_c00234{letter-spacing:0.614080pt;}
.ls2f_c00234{letter-spacing:0.662720pt;}
.lsf_c00234{letter-spacing:0.723840pt;}
.ls83_c00234{letter-spacing:0.729440pt;}
.lsb_c00234{letter-spacing:0.785707pt;}
.ls2b_c00234{letter-spacing:0.816640pt;}
.ls0_c00234{letter-spacing:0.845120pt;}
.ls3a_c00234{letter-spacing:0.954560pt;}
.ls1a_c00234{letter-spacing:1.002240pt;}
.ls16_c00234{letter-spacing:1.243520pt;}
.ls39_c00234{letter-spacing:1.248427pt;}
.ls2a_c00234{letter-spacing:1.286827pt;}
.ls31_c00234{letter-spacing:1.299200pt;}
.ls2c_c00234{letter-spacing:1.429120pt;}
.ls3d_c00234{letter-spacing:1.524427pt;}
.ls66_c00234{letter-spacing:1.678080pt;}
.lsc_c00234{letter-spacing:1.763200pt;}
.ls2e_c00234{letter-spacing:1.769280pt;}
.ls2d_c00234{letter-spacing:1.775360pt;}
.ls24_c00234{letter-spacing:2.016853pt;}
.ls28_c00234{letter-spacing:2.524160pt;}
.ls1d_c00234{letter-spacing:2.567467pt;}
.ls67_c00234{letter-spacing:3.040000pt;}
.ws0_c00234{word-spacing:-2.437547pt;}
.ws6_c00234{word-spacing:0.000000pt;}
.ws3_c00234{word-spacing:3.689707pt;}
.ws2_c00234{word-spacing:3.990933pt;}
.ws1_c00234{word-spacing:5.726933pt;}
.ws5_c00234{word-spacing:9.610880pt;}
.ws4_c00234{word-spacing:11.951787pt;}
._10_c00234{margin-left:-9.627733pt;}
._e_c00234{margin-left:-7.368320pt;}
._f_c00234{margin-left:-4.565760pt;}
._2_c00234{margin-left:-2.790187pt;}
._0_c00234{margin-left:-1.398187pt;}
._1_c00234{width:1.571413pt;}
._6_c00234{width:2.722133pt;}
._3_c00234{width:3.885227pt;}
._7_c00234{width:5.363840pt;}
._4_c00234{width:6.601173pt;}
._5_c00234{width:7.585813pt;}
._9_c00234{width:9.292373pt;}
._8_c00234{width:10.405973pt;}
._11_c00234{width:11.395840pt;}
._d_c00234{width:12.373333pt;}
._a_c00234{width:13.697280pt;}
._b_c00234{width:16.549333pt;}
._c_c00234{width:17.662933pt;}
._12_c00234{width:19.401387pt;}
.fs6_c00234{font-size:51.733333pt;}
.fs0_c00234{font-size:53.866667pt;}
.fs3_c00234{font-size:54.400000pt;}
.fs4_c00234{font-size:58.666667pt;}
.fs5_c00234{font-size:59.733333pt;}
.fs1_c00234{font-size:60.800000pt;}
.fs2_c00234{font-size:61.866667pt;}
.y0_c00234{bottom:0.000000pt;}
.y1d_c00234{bottom:60.160005pt;}
.y1c_c00234{bottom:127.680005pt;}
.y1b_c00234{bottom:183.360005pt;}
.y1a_c00234{bottom:211.213339pt;}
.y19_c00234{bottom:211.215472pt;}
.y17_c00234{bottom:239.027205pt;}
.y18_c00234{bottom:239.040005pt;}
.y16_c00234{bottom:267.207472pt;}
.y15_c00234{bottom:294.413339pt;}
.y14_c00234{bottom:351.053339pt;}
.y13_c00234{bottom:378.893339pt;}
.y11_c00234{bottom:434.553072pt;}
.y12_c00234{bottom:434.560005pt;}
.y10_c00234{bottom:518.413339pt;}
.yf_c00234{bottom:545.600005pt;}
.ye_c00234{bottom:601.938139pt;}
.yd_c00234{bottom:629.453339pt;}
.yc_c00234{bottom:685.762672pt;}
.yb_c00234{bottom:713.293339pt;}
.ya_c00234{bottom:769.600005pt;}
.y9_c00234{bottom:769.607472pt;}
.y8_c00234{bottom:796.813339pt;}
.y6_c00234{bottom:852.809605pt;}
.y7_c00234{bottom:852.813339pt;}
.y5_c00234{bottom:880.000005pt;}
.y4_c00234{bottom:907.840005pt;}
.y3_c00234{bottom:935.680005pt;}
.y2_c00234{bottom:991.680005pt;}
.y1_c00234{bottom:1060.493339pt;}
.h8_c00234{height:50.773437pt;}
.h2_c00234{height:52.867187pt;}
.h4_c00234{height:53.390625pt;}
.h7_c00234{height:58.625000pt;}
.h6_c00234{height:59.642187pt;}
.h3_c00234{height:60.718750pt;}
.h5_c00234{height:61.187500pt;}
.h1_c00234{height:1122.666667pt;}
.h0_c00234{height:1122.880005pt;}
.w1_c00234{width:793.333333pt;}
.w0_c00234{width:793.599999pt;}
.x0_c00234{left:0.000000pt;}
.x1b_c00234{left:108.455999pt;}
.xc_c00234{left:109.994665pt;}
.x9_c00234{left:111.124799pt;}
.x6_c00234{left:112.300265pt;}
.x1_c00234{left:114.173332pt;}
.x21_c00234{left:155.986665pt;}
.x15_c00234{left:156.919999pt;}
.xb_c00234{left:158.546665pt;}
.x8_c00234{left:159.906665pt;}
.x2_c00234{left:161.106665pt;}
.x11_c00234{left:217.746665pt;}
.x1e_c00234{left:226.213332pt;}
.x12_c00234{left:243.306665pt;}
.xd_c00234{left:252.493332pt;}
.x1c_c00234{left:281.146665pt;}
.x1d_c00234{left:297.466665pt;}
.xe_c00234{left:314.773332pt;}
.x13_c00234{left:322.066665pt;}
.x14_c00234{left:346.666665pt;}
.x1f_c00234{left:351.866665pt;}
.xf_c00234{left:355.973332pt;}
.x20_c00234{left:369.466665pt;}
.x7_c00234{left:371.959999pt;}
.x22_c00234{left:377.519999pt;}
.xa_c00234{left:397.546665pt;}
.x3_c00234{left:402.159999pt;}
.x16_c00234{left:407.906665pt;}
.x4_c00234{left:430.906665pt;}
.x17_c00234{left:434.839999pt;}
.x10_c00234{left:498.679999pt;}
.x18_c00234{left:516.066665pt;}
.x19_c00234{left:531.666665pt;}
.x1a_c00234{left:555.973332pt;}
.x5_c00234{left:600.879999pt;}
}





/* 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_c00235 {
    display:none;
  }
  .loading-indicator_c00235.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00235 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_c00235 { 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_c00235" -> "#page-container .classname_c00235")
 */
.pf_c00235 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00235 { /* 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_c00235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00235 { /* 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_c00235 { /* 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_c00235 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00235 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00235 {overflow:visible;}
  }
}
.c_c00235 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00235 { /* 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_c00235:after { /* webkit #35443 */
  content: '';
}
.t_c00235:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00235 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 */
}
.__c00235 { /* 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_c00235 { /* info for Javascript */
  display:none;
}
.l_c00235 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00235 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00235 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00235: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_c00235 {
    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_c00235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00235.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_c00235 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00235;src:url('chunks/assets/font_608b2374b7d7ab51844f5c1d.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:0.666000;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_c00235;src:url('chunks/assets/font_9e981e36842b27e8434df461.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.284180;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_c00235;src:url('chunks/assets/font_0d34977859892aeccce649ba.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00235{transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);}
.m1_c00235{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);}
.v0_c00235{vertical-align:0.000000px;}
.lsb_c00235{letter-spacing:-0.674160px;}
.lsc_c00235{letter-spacing:-0.578760px;}
.ls11_c00235{letter-spacing:-0.057240px;}
.lsa_c00235{letter-spacing:0.000000px;}
.lsf_c00235{letter-spacing:0.455820px;}
.ls12_c00235{letter-spacing:0.744120px;}
.ls0_c00235{letter-spacing:0.769560px;}
.ls5_c00235{letter-spacing:0.871320px;}
.lsd_c00235{letter-spacing:0.915840px;}
.ls1_c00235{letter-spacing:0.960360px;}
.ls3_c00235{letter-spacing:0.973080px;}
.ls10_c00235{letter-spacing:1.017600px;}
.ls4_c00235{letter-spacing:1.100280px;}
.ls8_c00235{letter-spacing:1.265640px;}
.ls2_c00235{letter-spacing:1.291080px;}
.lse_c00235{letter-spacing:1.380120px;}
.ls7_c00235{letter-spacing:1.463760px;}
.ls6_c00235{letter-spacing:1.857120px;}
.ls9_c00235{letter-spacing:2.016120px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{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__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00235{word-spacing:0.000000px;}
.ws1_c00235{word-spacing:1.195680px;}
.ws3_c00235{word-spacing:1.615440px;}
.ws2_c00235{word-spacing:1.793520px;}
.ws4_c00235{word-spacing:4.108560px;}
.ws0_c00235{word-spacing:4.223040px;}
._3_c00235{margin-left:-8.026320px;}
._2_c00235{margin-left:-5.196120px;}
._4_c00235{margin-left:-3.733320px;}
._1_c00235{margin-left:-1.863480px;}
._0_c00235{width:2.613960px;}
.fc0_c00235{color:transparent;}
.fs1_c00235{font-size:63.600000px;}
.fs2_c00235{font-size:64.200000px;}
.fs0_c00235{font-size:293.760000px;}
.y0_c00235{bottom:0.000000px;}
.y4_c00235{bottom:147.600315px;}
.y3_c00235{bottom:165.964815px;}
.y2_c00235{bottom:184.695015px;}
.y1_c00235{bottom:865.095015px;}
.y5_c00235{bottom:1145.520015px;}
.h3_c00235{height:62.388867px;}
.h4_c00235{height:64.701562px;}
.h2_c00235{height:195.644160px;}
.h1_c00235{height:1263.000000px;}
.h0_c00235{height:1263.240015px;}
.w1_c00235{width:892.500000px;}
.w0_c00235{width:892.800015px;}
.x0_c00235{left:0.000000px;}
.x3_c00235{left:121.266615px;}
.x2_c00235{left:122.475015px;}
.x1_c00235{left:284.400015px;}
.x5_c00235{left:492.345015px;}
.x4_c00235{left:675.285015px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.lsb_c00235{letter-spacing:-0.599253pt;}
.lsc_c00235{letter-spacing:-0.514453pt;}
.ls11_c00235{letter-spacing:-0.050880pt;}
.lsa_c00235{letter-spacing:0.000000pt;}
.lsf_c00235{letter-spacing:0.405173pt;}
.ls12_c00235{letter-spacing:0.661440pt;}
.ls0_c00235{letter-spacing:0.684053pt;}
.ls5_c00235{letter-spacing:0.774507pt;}
.lsd_c00235{letter-spacing:0.814080pt;}
.ls1_c00235{letter-spacing:0.853653pt;}
.ls3_c00235{letter-spacing:0.864960pt;}
.ls10_c00235{letter-spacing:0.904533pt;}
.ls4_c00235{letter-spacing:0.978027pt;}
.ls8_c00235{letter-spacing:1.125013pt;}
.ls2_c00235{letter-spacing:1.147627pt;}
.lse_c00235{letter-spacing:1.226773pt;}
.ls7_c00235{letter-spacing:1.301120pt;}
.ls6_c00235{letter-spacing:1.650773pt;}
.ls9_c00235{letter-spacing:1.792107pt;}
.ws5_c00235{word-spacing:0.000000pt;}
.ws1_c00235{word-spacing:1.062827pt;}
.ws3_c00235{word-spacing:1.435947pt;}
.ws2_c00235{word-spacing:1.594240pt;}
.ws4_c00235{word-spacing:3.652053pt;}
.ws0_c00235{word-spacing:3.753813pt;}
._3_c00235{margin-left:-7.134507pt;}
._2_c00235{margin-left:-4.618773pt;}
._4_c00235{margin-left:-3.318507pt;}
._1_c00235{margin-left:-1.656427pt;}
._0_c00235{width:2.323520pt;}
.fs1_c00235{font-size:56.533333pt;}
.fs2_c00235{font-size:57.066667pt;}
.fs0_c00235{font-size:261.120000pt;}
.y0_c00235{bottom:0.000000pt;}
.y4_c00235{bottom:131.200280pt;}
.y3_c00235{bottom:147.524280pt;}
.y2_c00235{bottom:164.173347pt;}
.y1_c00235{bottom:768.973347pt;}
.y5_c00235{bottom:1018.240013pt;}
.h3_c00235{height:55.456771pt;}
.h4_c00235{height:57.512500pt;}
.h2_c00235{height:173.905920pt;}
.h1_c00235{height:1122.666667pt;}
.h0_c00235{height:1122.880013pt;}
.w1_c00235{width:793.333333pt;}
.w0_c00235{width:793.600013pt;}
.x0_c00235{left:0.000000pt;}
.x3_c00235{left:107.792547pt;}
.x2_c00235{left:108.866680pt;}
.x1_c00235{left:252.800013pt;}
.x5_c00235{left:437.640013pt;}
.x4_c00235{left:600.253347pt;}
}





/* 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_c00236 {
    display:none;
  }
  .loading-indicator_c00236.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00236 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_c00236 { 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_c00236" -> "#page-container .classname_c00236")
 */
.pf_c00236 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00236 { /* 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_c00236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00236 { /* 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_c00236 { /* 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_c00236 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00236 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00236 {overflow:visible;}
  }
}
.c_c00236 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00236 { /* 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_c00236:after { /* webkit #35443 */
  content: '';
}
.t_c00236:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00236 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 */
}
.__c00236 { /* 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_c00236 { /* info for Javascript */
  display:none;
}
.l_c00236 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00236 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00236 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00236: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_c00236 {
    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_c00236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00236.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_c00236 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00236;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;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:ff2_c00236;src:url('chunks/assets/font_be15ef743820618db53062eb.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.284180;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_c00236;src:url('chunks/assets/font_f3a7f7480f0df7757f7469a2.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.284668;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_c00236;src:url('chunks/assets/font_276d04e9959151187c8c1d7c.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:0.666000;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_c00236;src:url('chunks/assets/font_cfa6e0235fbcdf29bce7e4c4.woff2')format("woff");}.ff5_c00236{font-family:ff5_c00236;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;}
.m4_c00236{transform:matrix(0.077009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077009,0.000000,0.000000,0.250000,0,0);}
.m3_c00236{transform:matrix(0.115105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115105,0.000000,0.000000,0.250000,0,0);}
.m0_c00236{transform:matrix(0.123054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123054,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{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);}
.m2_c00236{transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.v1_c00236{vertical-align:33.180000px;}
.ls6_c00236{letter-spacing:-2.541000px;}
.ls13_c00236{letter-spacing:-2.205000px;}
.ls7_c00236{letter-spacing:-1.701300px;}
.lsb_c00236{letter-spacing:-0.648420px;}
.ls8_c00236{letter-spacing:-0.526440px;}
.lsc_c00236{letter-spacing:-0.372360px;}
.lsd_c00236{letter-spacing:-0.224700px;}
.lse_c00236{letter-spacing:-0.199020px;}
.lsf_c00236{letter-spacing:-0.057780px;}
.ls14_c00236{letter-spacing:0.000000px;}
.ls5_c00236{letter-spacing:0.160500px;}
.ls9_c00236{letter-spacing:0.173340px;}
.ls4_c00236{letter-spacing:0.237540px;}
.ls1_c00236{letter-spacing:0.250380px;}
.ls12_c00236{letter-spacing:0.372360px;}
.ls0_c00236{letter-spacing:0.442980px;}
.ls10_c00236{letter-spacing:0.526440px;}
.ls2_c00236{letter-spacing:0.558540px;}
.ls3_c00236{letter-spacing:1.669200px;}
.lsa_c00236{letter-spacing:1.771920px;}
.ls11_c00236{letter-spacing:3.210000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{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__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00236{word-spacing:0.000000px;}
.ws3_c00236{word-spacing:0.706200px;}
.ws2_c00236{word-spacing:2.259840px;}
.ws1_c00236{word-spacing:3.171480px;}
.ws5_c00236{word-spacing:4.429800px;}
.ws4_c00236{word-spacing:4.571040px;}
.ws6_c00236{word-spacing:4.853520px;}
.ws0_c00236{word-spacing:6.034800px;}
._1_c00236{width:1.405980px;}
._0_c00236{width:2.887380px;}
._2_c00236{width:430.483200px;}
.fc0_c00236{color:transparent;}
.fs4_c00236{font-size:55.200000px;}
.fs5_c00236{font-size:62.400000px;}
.fs2_c00236{font-size:63.000000px;}
.fs1_c00236{font-size:64.200000px;}
.fs0_c00236{font-size:72.600000px;}
.fs3_c00236{font-size:161.280000px;}
.y0_c00236{bottom:0.000000px;}
.y5_c00236{bottom:147.246750px;}
.y7_c00236{bottom:165.603450px;}
.y4_c00236{bottom:165.607950px;}
.y6_c00236{bottom:183.595500px;}
.y3_c00236{bottom:183.600000px;}
.y2_c00236{bottom:202.695000px;}
.yb_c00236{bottom:420.480000px;}
.ya_c00236{bottom:835.200000px;}
.y9_c00236{bottom:1079.655000px;}
.y1_c00236{bottom:1082.175000px;}
.y8_c00236{bottom:1145.175000px;}
.h5_c00236{height:61.831055px;}
.h3_c00236{height:62.977441px;}
.h4_c00236{height:63.008789px;}
.h2_c00236{height:75.719531px;}
.h7_c00236{height:94.422188px;}
.h6_c00236{height:107.412480px;}
.h1_c00236{height:1263.000000px;}
.h0_c00236{height:1263.240000px;}
.w1_c00236{width:892.500000px;}
.w0_c00236{width:892.800000px;}
.x0_c00236{left:0.000000px;}
.x3_c00236{left:116.136300px;}
.x2_c00236{left:117.211650px;}
.x1_c00236{left:118.230000px;}
.x4_c00236{left:330.315000px;}
.x9_c00236{left:525.075000px;}
.x5_c00236{left:667.710000px;}
.x8_c00236{left:737.655000px;}
.x6_c00236{left:740.430000px;}
.x7_c00236{left:792.825000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.v1_c00236{vertical-align:29.493333pt;}
.ls6_c00236{letter-spacing:-2.258667pt;}
.ls13_c00236{letter-spacing:-1.960000pt;}
.ls7_c00236{letter-spacing:-1.512267pt;}
.lsb_c00236{letter-spacing:-0.576373pt;}
.ls8_c00236{letter-spacing:-0.467947pt;}
.lsc_c00236{letter-spacing:-0.330987pt;}
.lsd_c00236{letter-spacing:-0.199733pt;}
.lse_c00236{letter-spacing:-0.176907pt;}
.lsf_c00236{letter-spacing:-0.051360pt;}
.ls14_c00236{letter-spacing:0.000000pt;}
.ls5_c00236{letter-spacing:0.142667pt;}
.ls9_c00236{letter-spacing:0.154080pt;}
.ls4_c00236{letter-spacing:0.211147pt;}
.ls1_c00236{letter-spacing:0.222560pt;}
.ls12_c00236{letter-spacing:0.330987pt;}
.ls0_c00236{letter-spacing:0.393760pt;}
.ls10_c00236{letter-spacing:0.467947pt;}
.ls2_c00236{letter-spacing:0.496480pt;}
.ls3_c00236{letter-spacing:1.483733pt;}
.lsa_c00236{letter-spacing:1.575040pt;}
.ls11_c00236{letter-spacing:2.853333pt;}
.ws7_c00236{word-spacing:0.000000pt;}
.ws3_c00236{word-spacing:0.627733pt;}
.ws2_c00236{word-spacing:2.008747pt;}
.ws1_c00236{word-spacing:2.819093pt;}
.ws5_c00236{word-spacing:3.937600pt;}
.ws4_c00236{word-spacing:4.063147pt;}
.ws6_c00236{word-spacing:4.314240pt;}
.ws0_c00236{word-spacing:5.364267pt;}
._1_c00236{width:1.249760pt;}
._0_c00236{width:2.566560pt;}
._2_c00236{width:382.651733pt;}
.fs4_c00236{font-size:49.066667pt;}
.fs5_c00236{font-size:55.466667pt;}
.fs2_c00236{font-size:56.000000pt;}
.fs1_c00236{font-size:57.066667pt;}
.fs0_c00236{font-size:64.533333pt;}
.fs3_c00236{font-size:143.360000pt;}
.y0_c00236{bottom:0.000000pt;}
.y5_c00236{bottom:130.886000pt;}
.y7_c00236{bottom:147.203067pt;}
.y4_c00236{bottom:147.207067pt;}
.y6_c00236{bottom:163.196000pt;}
.y3_c00236{bottom:163.200000pt;}
.y2_c00236{bottom:180.173333pt;}
.yb_c00236{bottom:373.760000pt;}
.ya_c00236{bottom:742.400000pt;}
.y9_c00236{bottom:959.693333pt;}
.y1_c00236{bottom:961.933333pt;}
.y8_c00236{bottom:1017.933333pt;}
.h5_c00236{height:54.960938pt;}
.h3_c00236{height:55.979948pt;}
.h4_c00236{height:56.007812pt;}
.h2_c00236{height:67.306250pt;}
.h7_c00236{height:83.930833pt;}
.h6_c00236{height:95.477760pt;}
.h1_c00236{height:1122.666667pt;}
.h0_c00236{height:1122.880000pt;}
.w1_c00236{width:793.333333pt;}
.w0_c00236{width:793.600000pt;}
.x0_c00236{left:0.000000pt;}
.x3_c00236{left:103.232267pt;}
.x2_c00236{left:104.188133pt;}
.x1_c00236{left:105.093333pt;}
.x4_c00236{left:293.613333pt;}
.x9_c00236{left:466.733333pt;}
.x5_c00236{left:593.520000pt;}
.x8_c00236{left:655.693333pt;}
.x6_c00236{left:658.160000pt;}
.x7_c00236{left:704.733333pt;}
}





/* 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_c00237 {
    display:none;
  }
  .loading-indicator_c00237.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00237 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_c00237 { 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_c00237" -> "#page-container .classname_c00237")
 */
.pf_c00237 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00237 { /* 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_c00237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00237 { /* 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_c00237 { /* 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_c00237 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00237 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00237 {overflow:visible;}
  }
}
.c_c00237 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00237 { /* 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_c00237:after { /* webkit #35443 */
  content: '';
}
.t_c00237:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00237 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 */
}
.__c00237 { /* 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_c00237 { /* info for Javascript */
  display:none;
}
.l_c00237 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00237 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00237 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00237: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_c00237 {
    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_c00237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00237.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_c00237 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00237;src:url('chunks/assets/font_98378458ee550c7fa6d7aec4.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.284668;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_c00237;src:url('chunks/assets/font_74f4e53ed692b408faaeb63c.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.284180;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_c00237;src:url('chunks/assets/font_b7f69743018fe4de6ec1e92c.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;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;}
.m3_c00237{transform:matrix(0.179627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179627,0.000000,0.000000,0.250000,0,0);}
.m2_c00237{transform:matrix(0.182157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182157,0.000000,0.000000,0.250000,0,0);}
.m8_c00237{transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);}
.m6_c00237{transform:matrix(0.239395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239395,0.000000,0.000000,0.250000,0,0);}
.mb_c00237{transform:matrix(0.239949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239949,0.000000,0.000000,0.250000,0,0);}
.m5_c00237{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.ma_c00237{transform:matrix(0.243698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243698,0.000000,0.000000,0.250000,0,0);}
.m0_c00237{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.m9_c00237{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{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);}
.m7_c00237{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m4_c00237{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls87_c00237{letter-spacing:-2.394000px;}
.ls65_c00237{letter-spacing:-2.373000px;}
.ls7f_c00237{letter-spacing:-2.352960px;}
.ls4b_c00237{letter-spacing:-2.331000px;}
.ls6c_c00237{letter-spacing:-2.247000px;}
.ls90_c00237{letter-spacing:-2.226000px;}
.ls7e_c00237{letter-spacing:-2.168280px;}
.ls58_c00237{letter-spacing:-2.142000px;}
.ls71_c00237{letter-spacing:-2.127240px;}
.ls5f_c00237{letter-spacing:-1.963080px;}
.ls60_c00237{letter-spacing:-1.915200px;}
.ls94_c00237{letter-spacing:-1.869000px;}
.ls57_c00237{letter-spacing:-1.798920px;}
.ls83_c00237{letter-spacing:-1.566360px;}
.ls66_c00237{letter-spacing:-1.409040px;}
.ls85_c00237{letter-spacing:-1.347480px;}
.ls8a_c00237{letter-spacing:-1.292760px;}
.ls8b_c00237{letter-spacing:-1.258560px;}
.ls5c_c00237{letter-spacing:-1.197000px;}
.ls75_c00237{letter-spacing:-0.998640px;}
.ls56_c00237{letter-spacing:-0.971280px;}
.ls76_c00237{letter-spacing:-0.950760px;}
.ls89_c00237{letter-spacing:-0.896040px;}
.ls91_c00237{letter-spacing:-0.861840px;}
.ls82_c00237{letter-spacing:-0.834480px;}
.ls61_c00237{letter-spacing:-0.704520px;}
.ls4f_c00237{letter-spacing:-0.684000px;}
.ls7a_c00237{letter-spacing:-0.663480px;}
.ls69_c00237{letter-spacing:-0.656640px;}
.ls8c_c00237{letter-spacing:-0.642960px;}
.ls6e_c00237{letter-spacing:-0.636120px;}
.ls84_c00237{letter-spacing:-0.540360px;}
.ls79_c00237{letter-spacing:-0.533520px;}
.ls4d_c00237{letter-spacing:-0.526680px;}
.ls80_c00237{letter-spacing:-0.506160px;}
.ls73_c00237{letter-spacing:-0.492480px;}
.ls8d_c00237{letter-spacing:-0.471960px;}
.ls8f_c00237{letter-spacing:-0.451440px;}
.ls64_c00237{letter-spacing:-0.430920px;}
.ls5a_c00237{letter-spacing:-0.424080px;}
.ls6b_c00237{letter-spacing:-0.417240px;}
.ls6a_c00237{letter-spacing:-0.403560px;}
.ls68_c00237{letter-spacing:-0.383040px;}
.ls53_c00237{letter-spacing:-0.376200px;}
.ls88_c00237{letter-spacing:-0.369360px;}
.ls7d_c00237{letter-spacing:-0.342000px;}
.ls55_c00237{letter-spacing:-0.314640px;}
.ls7b_c00237{letter-spacing:-0.294120px;}
.ls59_c00237{letter-spacing:-0.239400px;}
.ls52_c00237{letter-spacing:-0.232560px;}
.ls5e_c00237{letter-spacing:-0.191520px;}
.ls54_c00237{letter-spacing:-0.177840px;}
.ls5d_c00237{letter-spacing:-0.171000px;}
.ls62_c00237{letter-spacing:-0.157320px;}
.ls67_c00237{letter-spacing:-0.143640px;}
.ls93_c00237{letter-spacing:-0.136800px;}
.ls77_c00237{letter-spacing:-0.129960px;}
.ls6f_c00237{letter-spacing:-0.123120px;}
.ls6d_c00237{letter-spacing:-0.109440px;}
.ls7c_c00237{letter-spacing:-0.102600px;}
.ls8e_c00237{letter-spacing:-0.082080px;}
.ls51_c00237{letter-spacing:-0.068400px;}
.ls92_c00237{letter-spacing:-0.054720px;}
.ls4e_c00237{letter-spacing:-0.041040px;}
.ls72_c00237{letter-spacing:-0.034200px;}
.ls78_c00237{letter-spacing:-0.020520px;}
.ls4c_c00237{letter-spacing:0.000000px;}
.ls3e_c00237{letter-spacing:0.006840px;}
.ls2c_c00237{letter-spacing:0.020520px;}
.ls63_c00237{letter-spacing:0.027360px;}
.ls1e_c00237{letter-spacing:0.034200px;}
.ls36_c00237{letter-spacing:0.047880px;}
.ls3f_c00237{letter-spacing:0.068400px;}
.ls81_c00237{letter-spacing:0.095760px;}
.ls18_c00237{letter-spacing:0.109440px;}
.ls11_c00237{letter-spacing:0.116280px;}
.ls19_c00237{letter-spacing:0.129960px;}
.ls3c_c00237{letter-spacing:0.150480px;}
.ls42_c00237{letter-spacing:0.155940px;}
.ls33_c00237{letter-spacing:0.171000px;}
.ls3a_c00237{letter-spacing:0.184080px;}
.ls1a_c00237{letter-spacing:0.184680px;}
.ls2f_c00237{letter-spacing:0.205200px;}
.ls12_c00237{letter-spacing:0.212040px;}
.ls34_c00237{letter-spacing:0.223740px;}
.ls2d_c00237{letter-spacing:0.232560px;}
.lsa_c00237{letter-spacing:0.239400px;}
.ls50_c00237{letter-spacing:0.250860px;}
.ls4a_c00237{letter-spacing:0.253080px;}
.ls10_c00237{letter-spacing:0.266760px;}
.ls13_c00237{letter-spacing:0.280440px;}
.ls35_c00237{letter-spacing:0.284760px;}
.ls1_c00237{letter-spacing:0.307800px;}
.ls9_c00237{letter-spacing:0.314640px;}
.ls1b_c00237{letter-spacing:0.321480px;}
.ls1f_c00237{letter-spacing:0.335160px;}
.ls38_c00237{letter-spacing:0.342000px;}
.ls28_c00237{letter-spacing:0.348840px;}
.ls48_c00237{letter-spacing:0.362520px;}
.ls74_c00237{letter-spacing:0.383040px;}
.ls37_c00237{letter-spacing:0.389880px;}
.lsf_c00237{letter-spacing:0.393240px;}
.ls17_c00237{letter-spacing:0.471960px;}
.ls0_c00237{letter-spacing:0.478800px;}
.ls21_c00237{letter-spacing:0.485640px;}
.ls31_c00237{letter-spacing:0.499320px;}
.ls47_c00237{letter-spacing:0.513000px;}
.lsc_c00237{letter-spacing:0.519840px;}
.ls24_c00237{letter-spacing:0.526680px;}
.ls4_c00237{letter-spacing:0.533520px;}
.ls41_c00237{letter-spacing:0.542400px;}
.ls6_c00237{letter-spacing:0.547200px;}
.ls2_c00237{letter-spacing:0.554040px;}
.ls7_c00237{letter-spacing:0.567720px;}
.ls29_c00237{letter-spacing:0.616980px;}
.ls26_c00237{letter-spacing:0.629280px;}
.ls70_c00237{letter-spacing:0.642960px;}
.ls2a_c00237{letter-spacing:0.649800px;}
.ls49_c00237{letter-spacing:0.656640px;}
.ls43_c00237{letter-spacing:0.657660px;}
.ls23_c00237{letter-spacing:0.670320px;}
.ls3_c00237{letter-spacing:0.697680px;}
.ls25_c00237{letter-spacing:0.718200px;}
.ls3d_c00237{letter-spacing:0.725040px;}
.ls16_c00237{letter-spacing:0.752400px;}
.ls32_c00237{letter-spacing:0.793440px;}
.ls5_c00237{letter-spacing:0.807120px;}
.ls15_c00237{letter-spacing:0.820800px;}
.lsb_c00237{letter-spacing:0.881400px;}
.ls2e_c00237{letter-spacing:0.923400px;}
.lse_c00237{letter-spacing:0.950760px;}
.ls40_c00237{letter-spacing:0.964440px;}
.ls14_c00237{letter-spacing:1.012320px;}
.ls20_c00237{letter-spacing:1.060200px;}
.ls30_c00237{letter-spacing:1.067040px;}
.ls1c_c00237{letter-spacing:1.272240px;}
.ls44_c00237{letter-spacing:1.279080px;}
.lsd_c00237{letter-spacing:1.299600px;}
.ls2b_c00237{letter-spacing:1.374840px;}
.ls3b_c00237{letter-spacing:1.423080px;}
.ls39_c00237{letter-spacing:1.497960px;}
.ls46_c00237{letter-spacing:1.518720px;}
.ls22_c00237{letter-spacing:1.525320px;}
.ls8_c00237{letter-spacing:1.648440px;}
.ls86_c00237{letter-spacing:1.918740px;}
.ls1d_c00237{letter-spacing:2.004120px;}
.ls45_c00237{letter-spacing:2.086200px;}
.ls27_c00237{letter-spacing:2.202480px;}
.ls5b_c00237{letter-spacing:3.420000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{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__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00237{word-spacing:0.000000px;}
.ws4_c00237{word-spacing:3.708960px;}
.ws3_c00237{word-spacing:5.720040px;}
.ws0_c00237{word-spacing:9.028200px;}
.ws2_c00237{word-spacing:12.011100px;}
.ws1_c00237{word-spacing:25.193400px;}
._12_c00237{margin-left:-7.229880px;}
._11_c00237{margin-left:-3.782520px;}
._d_c00237{margin-left:-2.660760px;}
._7_c00237{margin-left:-1.053360px;}
._8_c00237{width:1.368000px;}
._5_c00237{width:3.064320px;}
._c_c00237{width:5.088960px;}
._9_c00237{width:6.949440px;}
._15_c00237{width:8.624160px;}
._a_c00237{width:10.123200px;}
._6_c00237{width:11.881080px;}
._b_c00237{width:13.570560px;}
._f_c00237{width:15.287400px;}
._14_c00237{width:17.647200px;}
._e_c00237{width:18.912600px;}
._10_c00237{width:19.972800px;}
._13_c00237{width:21.005640px;}
._4_c00237{width:22.086360px;}
._0_c00237{width:24.076800px;}
._1_c00237{width:25.923600px;}
._3_c00237{width:27.606240px;}
._2_c00237{width:29.418840px;}
.fc0_c00237{color:transparent;}
.fs7_c00237{font-size:53.400000px;}
.fs3_c00237{font-size:61.200000px;}
.fs6_c00237{font-size:63.600000px;}
.fs4_c00237{font-size:64.200000px;}
.fs9_c00237{font-size:66.000000px;}
.fs0_c00237{font-size:66.600000px;}
.fs2_c00237{font-size:67.800000px;}
.fs1_c00237{font-size:68.400000px;}
.fs5_c00237{font-size:70.800000px;}
.fs8_c00237{font-size:76.800000px;}
.y0_c00237{bottom:0.000000px;}
.y1c_c00237{bottom:67.695015px;}
.y1b_c00237{bottom:145.111215px;}
.y1a_c00237{bottom:174.967815px;}
.y19_c00237{bottom:206.295015px;}
.y18_c00237{bottom:269.295015px;}
.y17_c00237{bottom:300.255015px;}
.y16_c00237{bottom:363.268815px;}
.y15_c00237{bottom:393.142515px;}
.y14_c00237{bottom:456.840015px;}
.y13_c00237{bottom:487.440015px;}
.y12_c00237{bottom:550.807815px;}
.y11_c00237{bottom:582.135015px;}
.y1e_c00237{bottom:615.255015px;}
.y1d_c00237{bottom:618.840015px;}
.y10_c00237{bottom:645.112815px;}
.yf_c00237{bottom:676.080915px;}
.ye_c00237{bottom:707.049015px;}
.yd_c00237{bottom:738.000015px;}
.yc_c00237{bottom:800.280015px;}
.yb_c00237{bottom:800.286915px;}
.y9_c00237{bottom:831.250515px;}
.ya_c00237{bottom:831.255015px;}
.y8_c00237{bottom:862.919715px;}
.y7_c00237{bottom:894.246915px;}
.y6_c00237{bottom:925.215015px;}
.y5_c00237{bottom:986.760015px;}
.y4_c00237{bottom:1019.535015px;}
.y3_c00237{bottom:1082.175015px;}
.y2_c00237{bottom:1113.480015px;}
.y1_c00237{bottom:1188.375015px;}
.hb_c00237{height:55.694531px;}
.h4_c00237{height:60.064453px;}
.ha_c00237{height:62.419922px;}
.h2_c00237{height:65.364258px;}
.h9_c00237{height:66.508887px;}
.h6_c00237{height:66.958594px;}
.h3_c00237{height:67.130859px;}
.h7_c00237{height:67.159659px;}
.hd_c00237{height:68.835938px;}
.h8_c00237{height:69.451758px;}
.h5_c00237{height:70.713281px;}
.hc_c00237{height:80.100000px;}
.h1_c00237{height:1263.000000px;}
.h0_c00237{height:1263.240015px;}
.w1_c00237{width:892.500000px;}
.w0_c00237{width:892.800000px;}
.x0_c00237{left:0.000000px;}
.x15_c00237{left:121.889100px;}
.x1_c00237{left:124.125000px;}
.x5_c00237{left:125.280000px;}
.xe_c00237{left:176.791500px;}
.x2_c00237{left:178.365000px;}
.xf_c00237{left:286.530000px;}
.xd_c00237{left:287.655000px;}
.x8_c00237{left:314.820000px;}
.x10_c00237{left:317.010000px;}
.x9_c00237{left:335.685000px;}
.x16_c00237{left:422.535000px;}
.x6_c00237{left:497.685000px;}
.x13_c00237{left:509.955000px;}
.x3_c00237{left:513.720000px;}
.x14_c00237{left:528.660000px;}
.x7_c00237{left:543.060000px;}
.x4_c00237{left:547.740000px;}
.x11_c00237{left:601.725000px;}
.xa_c00237{left:608.175000px;}
.x12_c00237{left:629.040000px;}
.xb_c00237{left:651.150000px;}
.xc_c00237{left:674.925000px;}
.x18_c00237{left:855.495000px;}
.x17_c00237{left:856.545000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls87_c00237{letter-spacing:-2.128000pt;}
.ls65_c00237{letter-spacing:-2.109333pt;}
.ls7f_c00237{letter-spacing:-2.091520pt;}
.ls4b_c00237{letter-spacing:-2.072000pt;}
.ls6c_c00237{letter-spacing:-1.997333pt;}
.ls90_c00237{letter-spacing:-1.978667pt;}
.ls7e_c00237{letter-spacing:-1.927360pt;}
.ls58_c00237{letter-spacing:-1.904000pt;}
.ls71_c00237{letter-spacing:-1.890880pt;}
.ls5f_c00237{letter-spacing:-1.744960pt;}
.ls60_c00237{letter-spacing:-1.702400pt;}
.ls94_c00237{letter-spacing:-1.661333pt;}
.ls57_c00237{letter-spacing:-1.599040pt;}
.ls83_c00237{letter-spacing:-1.392320pt;}
.ls66_c00237{letter-spacing:-1.252480pt;}
.ls85_c00237{letter-spacing:-1.197760pt;}
.ls8a_c00237{letter-spacing:-1.149120pt;}
.ls8b_c00237{letter-spacing:-1.118720pt;}
.ls5c_c00237{letter-spacing:-1.064000pt;}
.ls75_c00237{letter-spacing:-0.887680pt;}
.ls56_c00237{letter-spacing:-0.863360pt;}
.ls76_c00237{letter-spacing:-0.845120pt;}
.ls89_c00237{letter-spacing:-0.796480pt;}
.ls91_c00237{letter-spacing:-0.766080pt;}
.ls82_c00237{letter-spacing:-0.741760pt;}
.ls61_c00237{letter-spacing:-0.626240pt;}
.ls4f_c00237{letter-spacing:-0.608000pt;}
.ls7a_c00237{letter-spacing:-0.589760pt;}
.ls69_c00237{letter-spacing:-0.583680pt;}
.ls8c_c00237{letter-spacing:-0.571520pt;}
.ls6e_c00237{letter-spacing:-0.565440pt;}
.ls84_c00237{letter-spacing:-0.480320pt;}
.ls79_c00237{letter-spacing:-0.474240pt;}
.ls4d_c00237{letter-spacing:-0.468160pt;}
.ls80_c00237{letter-spacing:-0.449920pt;}
.ls73_c00237{letter-spacing:-0.437760pt;}
.ls8d_c00237{letter-spacing:-0.419520pt;}
.ls8f_c00237{letter-spacing:-0.401280pt;}
.ls64_c00237{letter-spacing:-0.383040pt;}
.ls5a_c00237{letter-spacing:-0.376960pt;}
.ls6b_c00237{letter-spacing:-0.370880pt;}
.ls6a_c00237{letter-spacing:-0.358720pt;}
.ls68_c00237{letter-spacing:-0.340480pt;}
.ls53_c00237{letter-spacing:-0.334400pt;}
.ls88_c00237{letter-spacing:-0.328320pt;}
.ls7d_c00237{letter-spacing:-0.304000pt;}
.ls55_c00237{letter-spacing:-0.279680pt;}
.ls7b_c00237{letter-spacing:-0.261440pt;}
.ls59_c00237{letter-spacing:-0.212800pt;}
.ls52_c00237{letter-spacing:-0.206720pt;}
.ls5e_c00237{letter-spacing:-0.170240pt;}
.ls54_c00237{letter-spacing:-0.158080pt;}
.ls5d_c00237{letter-spacing:-0.152000pt;}
.ls62_c00237{letter-spacing:-0.139840pt;}
.ls67_c00237{letter-spacing:-0.127680pt;}
.ls93_c00237{letter-spacing:-0.121600pt;}
.ls77_c00237{letter-spacing:-0.115520pt;}
.ls6f_c00237{letter-spacing:-0.109440pt;}
.ls6d_c00237{letter-spacing:-0.097280pt;}
.ls7c_c00237{letter-spacing:-0.091200pt;}
.ls8e_c00237{letter-spacing:-0.072960pt;}
.ls51_c00237{letter-spacing:-0.060800pt;}
.ls92_c00237{letter-spacing:-0.048640pt;}
.ls4e_c00237{letter-spacing:-0.036480pt;}
.ls72_c00237{letter-spacing:-0.030400pt;}
.ls78_c00237{letter-spacing:-0.018240pt;}
.ls4c_c00237{letter-spacing:0.000000pt;}
.ls3e_c00237{letter-spacing:0.006080pt;}
.ls2c_c00237{letter-spacing:0.018240pt;}
.ls63_c00237{letter-spacing:0.024320pt;}
.ls1e_c00237{letter-spacing:0.030400pt;}
.ls36_c00237{letter-spacing:0.042560pt;}
.ls3f_c00237{letter-spacing:0.060800pt;}
.ls81_c00237{letter-spacing:0.085120pt;}
.ls18_c00237{letter-spacing:0.097280pt;}
.ls11_c00237{letter-spacing:0.103360pt;}
.ls19_c00237{letter-spacing:0.115520pt;}
.ls3c_c00237{letter-spacing:0.133760pt;}
.ls42_c00237{letter-spacing:0.138613pt;}
.ls33_c00237{letter-spacing:0.152000pt;}
.ls3a_c00237{letter-spacing:0.163627pt;}
.ls1a_c00237{letter-spacing:0.164160pt;}
.ls2f_c00237{letter-spacing:0.182400pt;}
.ls12_c00237{letter-spacing:0.188480pt;}
.ls34_c00237{letter-spacing:0.198880pt;}
.ls2d_c00237{letter-spacing:0.206720pt;}
.lsa_c00237{letter-spacing:0.212800pt;}
.ls50_c00237{letter-spacing:0.222987pt;}
.ls4a_c00237{letter-spacing:0.224960pt;}
.ls10_c00237{letter-spacing:0.237120pt;}
.ls13_c00237{letter-spacing:0.249280pt;}
.ls35_c00237{letter-spacing:0.253120pt;}
.ls1_c00237{letter-spacing:0.273600pt;}
.ls9_c00237{letter-spacing:0.279680pt;}
.ls1b_c00237{letter-spacing:0.285760pt;}
.ls1f_c00237{letter-spacing:0.297920pt;}
.ls38_c00237{letter-spacing:0.304000pt;}
.ls28_c00237{letter-spacing:0.310080pt;}
.ls48_c00237{letter-spacing:0.322240pt;}
.ls74_c00237{letter-spacing:0.340480pt;}
.ls37_c00237{letter-spacing:0.346560pt;}
.lsf_c00237{letter-spacing:0.349547pt;}
.ls17_c00237{letter-spacing:0.419520pt;}
.ls0_c00237{letter-spacing:0.425600pt;}
.ls21_c00237{letter-spacing:0.431680pt;}
.ls31_c00237{letter-spacing:0.443840pt;}
.ls47_c00237{letter-spacing:0.456000pt;}
.lsc_c00237{letter-spacing:0.462080pt;}
.ls24_c00237{letter-spacing:0.468160pt;}
.ls4_c00237{letter-spacing:0.474240pt;}
.ls41_c00237{letter-spacing:0.482133pt;}
.ls6_c00237{letter-spacing:0.486400pt;}
.ls2_c00237{letter-spacing:0.492480pt;}
.ls7_c00237{letter-spacing:0.504640pt;}
.ls29_c00237{letter-spacing:0.548427pt;}
.ls26_c00237{letter-spacing:0.559360pt;}
.ls70_c00237{letter-spacing:0.571520pt;}
.ls2a_c00237{letter-spacing:0.577600pt;}
.ls49_c00237{letter-spacing:0.583680pt;}
.ls43_c00237{letter-spacing:0.584587pt;}
.ls23_c00237{letter-spacing:0.595840pt;}
.ls3_c00237{letter-spacing:0.620160pt;}
.ls25_c00237{letter-spacing:0.638400pt;}
.ls3d_c00237{letter-spacing:0.644480pt;}
.ls16_c00237{letter-spacing:0.668800pt;}
.ls32_c00237{letter-spacing:0.705280pt;}
.ls5_c00237{letter-spacing:0.717440pt;}
.ls15_c00237{letter-spacing:0.729600pt;}
.lsb_c00237{letter-spacing:0.783467pt;}
.ls2e_c00237{letter-spacing:0.820800pt;}
.lse_c00237{letter-spacing:0.845120pt;}
.ls40_c00237{letter-spacing:0.857280pt;}
.ls14_c00237{letter-spacing:0.899840pt;}
.ls20_c00237{letter-spacing:0.942400pt;}
.ls30_c00237{letter-spacing:0.948480pt;}
.ls1c_c00237{letter-spacing:1.130880pt;}
.ls44_c00237{letter-spacing:1.136960pt;}
.lsd_c00237{letter-spacing:1.155200pt;}
.ls2b_c00237{letter-spacing:1.222080pt;}
.ls3b_c00237{letter-spacing:1.264960pt;}
.ls39_c00237{letter-spacing:1.331520pt;}
.ls46_c00237{letter-spacing:1.349973pt;}
.ls22_c00237{letter-spacing:1.355840pt;}
.ls8_c00237{letter-spacing:1.465280pt;}
.ls86_c00237{letter-spacing:1.705547pt;}
.ls1d_c00237{letter-spacing:1.781440pt;}
.ls45_c00237{letter-spacing:1.854400pt;}
.ls27_c00237{letter-spacing:1.957760pt;}
.ls5b_c00237{letter-spacing:3.040000pt;}
.ws5_c00237{word-spacing:0.000000pt;}
.ws4_c00237{word-spacing:3.296853pt;}
.ws3_c00237{word-spacing:5.084480pt;}
.ws0_c00237{word-spacing:8.025067pt;}
.ws2_c00237{word-spacing:10.676533pt;}
.ws1_c00237{word-spacing:22.394133pt;}
._12_c00237{margin-left:-6.426560pt;}
._11_c00237{margin-left:-3.362240pt;}
._d_c00237{margin-left:-2.365120pt;}
._7_c00237{margin-left:-0.936320pt;}
._8_c00237{width:1.216000pt;}
._5_c00237{width:2.723840pt;}
._c_c00237{width:4.523520pt;}
._9_c00237{width:6.177280pt;}
._15_c00237{width:7.665920pt;}
._a_c00237{width:8.998400pt;}
._6_c00237{width:10.560960pt;}
._b_c00237{width:12.062720pt;}
._f_c00237{width:13.588800pt;}
._14_c00237{width:15.686400pt;}
._e_c00237{width:16.811200pt;}
._10_c00237{width:17.753600pt;}
._13_c00237{width:18.671680pt;}
._4_c00237{width:19.632320pt;}
._0_c00237{width:21.401600pt;}
._1_c00237{width:23.043200pt;}
._3_c00237{width:24.538880pt;}
._2_c00237{width:26.150080pt;}
.fs7_c00237{font-size:47.466667pt;}
.fs3_c00237{font-size:54.400000pt;}
.fs6_c00237{font-size:56.533333pt;}
.fs4_c00237{font-size:57.066667pt;}
.fs9_c00237{font-size:58.666667pt;}
.fs0_c00237{font-size:59.200000pt;}
.fs2_c00237{font-size:60.266667pt;}
.fs1_c00237{font-size:60.800000pt;}
.fs5_c00237{font-size:62.933333pt;}
.fs8_c00237{font-size:68.266667pt;}
.y0_c00237{bottom:0.000000pt;}
.y1c_c00237{bottom:60.173347pt;}
.y1b_c00237{bottom:128.987747pt;}
.y1a_c00237{bottom:155.526947pt;}
.y19_c00237{bottom:183.373347pt;}
.y18_c00237{bottom:239.373347pt;}
.y17_c00237{bottom:266.893347pt;}
.y16_c00237{bottom:322.905613pt;}
.y15_c00237{bottom:349.460013pt;}
.y14_c00237{bottom:406.080013pt;}
.y13_c00237{bottom:433.280013pt;}
.y12_c00237{bottom:489.606947pt;}
.y11_c00237{bottom:517.453347pt;}
.y1e_c00237{bottom:546.893347pt;}
.y1d_c00237{bottom:550.080013pt;}
.y10_c00237{bottom:573.433613pt;}
.yf_c00237{bottom:600.960813pt;}
.ye_c00237{bottom:628.488013pt;}
.yd_c00237{bottom:656.000013pt;}
.yc_c00237{bottom:711.360013pt;}
.yb_c00237{bottom:711.366147pt;}
.y9_c00237{bottom:738.889347pt;}
.ya_c00237{bottom:738.893347pt;}
.y8_c00237{bottom:767.039747pt;}
.y7_c00237{bottom:794.886147pt;}
.y6_c00237{bottom:822.413347pt;}
.y5_c00237{bottom:877.120013pt;}
.y4_c00237{bottom:906.253347pt;}
.y3_c00237{bottom:961.933347pt;}
.y2_c00237{bottom:989.760013pt;}
.y1_c00237{bottom:1056.333347pt;}
.hb_c00237{height:49.506250pt;}
.h4_c00237{height:53.390625pt;}
.ha_c00237{height:55.484375pt;}
.h2_c00237{height:58.101562pt;}
.h9_c00237{height:59.119010pt;}
.h6_c00237{height:59.518750pt;}
.h3_c00237{height:59.671875pt;}
.h7_c00237{height:59.697475pt;}
.hd_c00237{height:61.187500pt;}
.h8_c00237{height:61.734896pt;}
.h5_c00237{height:62.856250pt;}
.hc_c00237{height:71.200000pt;}
.h1_c00237{height:1122.666667pt;}
.h0_c00237{height:1122.880013pt;}
.w1_c00237{width:793.333333pt;}
.w0_c00237{width:793.600000pt;}
.x0_c00237{left:0.000000pt;}
.x15_c00237{left:108.345867pt;}
.x1_c00237{left:110.333333pt;}
.x5_c00237{left:111.360000pt;}
.xe_c00237{left:157.148000pt;}
.x2_c00237{left:158.546667pt;}
.xf_c00237{left:254.693333pt;}
.xd_c00237{left:255.693333pt;}
.x8_c00237{left:279.840000pt;}
.x10_c00237{left:281.786667pt;}
.x9_c00237{left:298.386667pt;}
.x16_c00237{left:375.586667pt;}
.x6_c00237{left:442.386667pt;}
.x13_c00237{left:453.293333pt;}
.x3_c00237{left:456.640000pt;}
.x14_c00237{left:469.920000pt;}
.x7_c00237{left:482.720000pt;}
.x4_c00237{left:486.880000pt;}
.x11_c00237{left:534.866667pt;}
.xa_c00237{left:540.600000pt;}
.x12_c00237{left:559.146667pt;}
.xb_c00237{left:578.800000pt;}
.xc_c00237{left:599.933333pt;}
.x18_c00237{left:760.440000pt;}
.x17_c00237{left:761.373333pt;}
}





/* 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_c00238 {
    display:none;
  }
  .loading-indicator_c00238.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00238 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_c00238 { 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_c00238" -> "#page-container .classname_c00238")
 */
.pf_c00238 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00238 { /* 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_c00238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00238 { /* 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_c00238 { /* 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_c00238 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00238 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00238 {overflow:visible;}
  }
}
.c_c00238 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00238 { /* 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_c00238:after { /* webkit #35443 */
  content: '';
}
.t_c00238:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00238 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 */
}
.__c00238 { /* 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_c00238 { /* info for Javascript */
  display:none;
}
.l_c00238 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00238 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00238 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00238: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_c00238 {
    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_c00238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00238.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_c00238 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00238;src:url('chunks/assets/font_155484c2b4623d4ccc6fe4fb.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.284668;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_c00238;src:url('chunks/assets/font_b36ad4a784675a1081924c9e.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.284180;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_c00238;src:url('chunks/assets/font_72aeaba20d5e281f1cdbcd39.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;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:ff4_c00238;src:url('chunks/assets/font_a1b9c75cc424111edb26c968.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:0.666000;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;}
.m8_c00238{transform:matrix(0.103723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103723,0.000000,0.000000,0.250000,0,0);}
.m1b_c00238{transform:matrix(0.176762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176762,0.000000,0.000000,0.250000,0,0);}
.m1_c00238{transform:matrix(0.179567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179567,0.000000,0.000000,0.250000,0,0);}
.m4_c00238{transform:matrix(0.181628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181628,0.000000,0.000000,0.250000,0,0);}
.m1a_c00238{transform:matrix(0.184116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184116,0.000000,0.000000,0.250000,0,0);}
.m15_c00238{transform:matrix(0.224119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224119,0.000000,0.000000,0.250000,0,0);}
.m1e_c00238{transform:matrix(0.239817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239817,0.000000,0.000000,0.250000,0,0);}
.m16_c00238{transform:matrix(0.242319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242319,0.000000,0.000000,0.250000,0,0);}
.m0_c00238{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);}
.m12_c00238{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.m14_c00238{transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);}
.m11_c00238{transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);}
.m10_c00238{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.ma_c00238{transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);}
.m6_c00238{transform:matrix(0.250894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250894,0.000000,0.000000,0.250000,0,0);}
.m13_c00238{transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);}
.m3_c00238{transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);}
.mb_c00238{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.m17_c00238{transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);}
.md_c00238{transform:matrix(0.253011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253011,0.000000,0.000000,0.250000,0,0);}
.m1d_c00238{transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);}
.m19_c00238{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.me_c00238{transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);}
.m5_c00238{transform:matrix(0.254516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254516,0.000000,0.000000,0.250000,0,0);}
.m18_c00238{transform:matrix(0.257028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257028,0.000000,0.000000,0.250000,0,0);}
.mf_c00238{transform:matrix(0.257108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257108,0.000000,0.000000,0.250000,0,0);}
.mc_c00238{transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);}
.m2_c00238{transform:matrix(0.259119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259119,0.000000,0.000000,0.250000,0,0);}
.m7_c00238{transform:matrix(0.260172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260172,0.000000,0.000000,0.250000,0,0);}
.m9_c00238{transform:matrix(0.278312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278312,0.000000,0.000000,0.250000,0,0);}
.m1c_c00238{transform:matrix(0.325463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325463,0.000000,0.000000,0.250000,0,0);}
.v2_c00238{vertical-align:-30.300000px;}
.v0_c00238{vertical-align:0.000000px;}
.v1_c00238{vertical-align:30.300000px;}
.ls59_c00238{letter-spacing:-2.667000px;}
.ls71_c00238{letter-spacing:-2.478000px;}
.ls72_c00238{letter-spacing:-2.289000px;}
.ls78_c00238{letter-spacing:-2.037000px;}
.ls70_c00238{letter-spacing:-1.458420px;}
.ls6e_c00238{letter-spacing:-0.784800px;}
.ls66_c00238{letter-spacing:-0.405480px;}
.ls6f_c00238{letter-spacing:-0.307380px;}
.ls5a_c00238{letter-spacing:0.000000px;}
.ls40_c00238{letter-spacing:0.045780px;}
.ls38_c00238{letter-spacing:0.176580px;}
.ls69_c00238{letter-spacing:0.542820px;}
.ls24_c00238{letter-spacing:0.582060px;}
.ls15_c00238{letter-spacing:0.634380px;}
.ls3c_c00238{letter-spacing:0.647460px;}
.ls73_c00238{letter-spacing:0.843660px;}
.ls18_c00238{letter-spacing:0.850200px;}
.ls53_c00238{letter-spacing:0.928680px;}
.ls26_c00238{letter-spacing:0.954840px;}
.ls6d_c00238{letter-spacing:1.131420px;}
.lse_c00238{letter-spacing:1.137960px;}
.ls23_c00238{letter-spacing:1.190280px;}
.ls4_c00238{letter-spacing:1.249140px;}
.ls5f_c00238{letter-spacing:1.262220px;}
.ls3d_c00238{letter-spacing:1.281840px;}
.ls17_c00238{letter-spacing:1.301460px;}
.ls3b_c00238{letter-spacing:1.327620px;}
.ls74_c00238{letter-spacing:1.412640px;}
.ls6b_c00238{letter-spacing:1.419180px;}
.ls4a_c00238{letter-spacing:1.432260px;}
.ls57_c00238{letter-spacing:1.444320px;}
.ls4c_c00238{letter-spacing:1.451880px;}
.ls30_c00238{letter-spacing:1.458420px;}
.ls35_c00238{letter-spacing:1.504200px;}
.ls44_c00238{letter-spacing:1.517280px;}
.ls61_c00238{letter-spacing:1.549980px;}
.ls67_c00238{letter-spacing:1.576140px;}
.ls2_c00238{letter-spacing:1.635000px;}
.ls14_c00238{letter-spacing:1.648080px;}
.ls2c_c00238{letter-spacing:1.680780px;}
.ls43_c00238{letter-spacing:1.687320px;}
.ls33_c00238{letter-spacing:1.706940px;}
.ls62_c00238{letter-spacing:1.726560px;}
.ls77_c00238{letter-spacing:1.746180px;}
.ls6c_c00238{letter-spacing:1.752720px;}
.ls29_c00238{letter-spacing:1.765800px;}
.ls2d_c00238{letter-spacing:1.778880px;}
.lsb_c00238{letter-spacing:1.785420px;}
.ls60_c00238{letter-spacing:1.805040px;}
.ls42_c00238{letter-spacing:1.818120px;}
.ls50_c00238{letter-spacing:1.857360px;}
.ls4e_c00238{letter-spacing:1.870440px;}
.ls65_c00238{letter-spacing:1.929300px;}
.ls7_c00238{letter-spacing:1.935840px;}
.ls1e_c00238{letter-spacing:1.942380px;}
.ls47_c00238{letter-spacing:1.948920px;}
.ls63_c00238{letter-spacing:1.955460px;}
.ls3f_c00238{letter-spacing:1.962000px;}
.ls52_c00238{letter-spacing:1.968540px;}
.ls5_c00238{letter-spacing:1.994700px;}
.ls37_c00238{letter-spacing:2.014320px;}
.lsc_c00238{letter-spacing:2.033940px;}
.ls45_c00238{letter-spacing:2.060100px;}
.ls1f_c00238{letter-spacing:2.073180px;}
.ls64_c00238{letter-spacing:2.079720px;}
.ls4d_c00238{letter-spacing:2.086260px;}
.ls2e_c00238{letter-spacing:2.092800px;}
.ls2b_c00238{letter-spacing:2.099340px;}
.ls48_c00238{letter-spacing:2.112420px;}
.ls56_c00238{letter-spacing:2.118960px;}
.ls1a_c00238{letter-spacing:2.125500px;}
.ls27_c00238{letter-spacing:2.145120px;}
.ls8_c00238{letter-spacing:2.158200px;}
.ls36_c00238{letter-spacing:2.171280px;}
.ls13_c00238{letter-spacing:2.190900px;}
.ls1d_c00238{letter-spacing:2.197440px;}
.ls75_c00238{letter-spacing:2.203980px;}
.ls10_c00238{letter-spacing:2.223600px;}
.lsd_c00238{letter-spacing:2.230140px;}
.ls54_c00238{letter-spacing:2.236680px;}
.ls5d_c00238{letter-spacing:2.249760px;}
.ls3e_c00238{letter-spacing:2.269380px;}
.ls11_c00238{letter-spacing:2.275920px;}
.ls1_c00238{letter-spacing:2.295540px;}
.ls55_c00238{letter-spacing:2.308620px;}
.ls6a_c00238{letter-spacing:2.315160px;}
.ls5b_c00238{letter-spacing:2.354400px;}
.ls20_c00238{letter-spacing:2.367480px;}
.ls49_c00238{letter-spacing:2.374020px;}
.ls51_c00238{letter-spacing:2.380560px;}
.ls0_c00238{letter-spacing:2.387100px;}
.ls46_c00238{letter-spacing:2.393640px;}
.ls34_c00238{letter-spacing:2.445960px;}
.ls2a_c00238{letter-spacing:2.452500px;}
.lsa_c00238{letter-spacing:2.498280px;}
.ls6_c00238{letter-spacing:2.511360px;}
.ls32_c00238{letter-spacing:2.530980px;}
.ls16_c00238{letter-spacing:2.537520px;}
.ls4f_c00238{letter-spacing:2.550600px;}
.ls9_c00238{letter-spacing:2.570220px;}
.ls1b_c00238{letter-spacing:2.589840px;}
.ls39_c00238{letter-spacing:2.616000px;}
.ls2f_c00238{letter-spacing:2.629080px;}
.ls3a_c00238{letter-spacing:2.648700px;}
.ls41_c00238{letter-spacing:2.655240px;}
.ls19_c00238{letter-spacing:2.687940px;}
.ls25_c00238{letter-spacing:2.825280px;}
.ls76_c00238{letter-spacing:2.844900px;}
.ls31_c00238{letter-spacing:2.851440px;}
.ls1c_c00238{letter-spacing:2.857980px;}
.ls12_c00238{letter-spacing:2.871060px;}
.ls58_c00238{letter-spacing:2.884140px;}
.ls21_c00238{letter-spacing:2.982240px;}
.ls22_c00238{letter-spacing:3.041100px;}
.ls5e_c00238{letter-spacing:3.119580px;}
.lsf_c00238{letter-spacing:3.152280px;}
.ls68_c00238{letter-spacing:3.165360px;}
.ls28_c00238{letter-spacing:3.224220px;}
.ls4b_c00238{letter-spacing:3.237300px;}
.ls5c_c00238{letter-spacing:3.270000px;}
.ls3_c00238{letter-spacing:24.065400px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{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__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00238{word-spacing:-18.468960px;}
.ws2_c00238{word-spacing:-1.733100px;}
.ws3_c00238{word-spacing:-0.013080px;}
.ws7_c00238{word-spacing:0.000000px;}
.ws4_c00238{word-spacing:2.629080px;}
.ws0_c00238{word-spacing:5.297400px;}
.ws5_c00238{word-spacing:18.508200px;}
.ws1_c00238{word-spacing:19.423800px;}
._12_c00238{margin-left:-6.906240px;}
._5_c00238{margin-left:-5.120820px;}
._11_c00238{margin-left:-3.858600px;}
._4_c00238{margin-left:-2.772960px;}
._6_c00238{margin-left:-1.111800px;}
._b_c00238{width:1.438800px;}
._c_c00238{width:2.550600px;}
._0_c00238{width:4.126740px;}
._1_c00238{width:6.789000px;}
._3_c00238{width:8.737440px;}
._13_c00238{width:10.457460px;}
._2_c00238{width:11.706600px;}
._15_c00238{width:12.916720px;}
._14_c00238{width:14.139480px;}
._7_c00238{width:15.565200px;}
._a_c00238{width:17.017080px;}
._9_c00238{width:19.397640px;}
._8_c00238{width:22.471440px;}
._e_c00238{width:26.663580px;}
._10_c00238{width:28.573260px;}
._d_c00238{width:30.293280px;}
._f_c00238{width:35.904600px;}
.fc0_c00238{color:transparent;}
.fs3_c00238{font-size:21.000600px;}
.fs7_c00238{font-size:32.400600px;}
.fs5_c00238{font-size:46.800600px;}
.fs8_c00238{font-size:58.200000px;}
.fs0_c00238{font-size:61.200000px;}
.fs1_c00238{font-size:65.400000px;}
.fs4_c00238{font-size:67.680000px;}
.fs6_c00238{font-size:70.800000px;}
.fs2_c00238{font-size:76.200000px;}
.y0_c00238{bottom:0.000000px;}
.y26_c00238{bottom:67.335006px;}
.y24_c00238{bottom:142.913406px;}
.y25_c00238{bottom:142.920006px;}
.y22_c00238{bottom:174.233706px;}
.y23_c00238{bottom:174.240006px;}
.y20_c00238{bottom:205.916556px;}
.y21_c00238{bottom:205.920006px;}
.y1f_c00238{bottom:267.130956px;}
.y1e_c00238{bottom:299.880006px;}
.y1d_c00238{bottom:299.881806px;}
.y1c_c00238{bottom:362.535006px;}
.y1b_c00238{bottom:394.560006px;}
.y1a_c00238{bottom:394.561506px;}
.y19_c00238{bottom:456.842106px;}
.y18_c00238{bottom:487.792656px;}
.y17_c00238{bottom:519.855006px;}
.y16_c00238{bottom:519.858456px;}
.y15_c00238{bottom:582.855006px;}
.y14_c00238{bottom:645.135006px;}
.y13_c00238{bottom:676.095006px;}
.y12_c00238{bottom:739.095006px;}
.y11_c00238{bottom:739.098156px;}
.y10_c00238{bottom:801.735006px;}
.ye_c00238{bottom:864.728406px;}
.yf_c00238{bottom:864.735006px;}
.yc_c00238{bottom:896.049456px;}
.yd_c00238{bottom:896.055006px;}
.ya_c00238{bottom:926.993406px;}
.yb_c00238{bottom:927.000006px;}
.y8_c00238{bottom:958.313406px;}
.y9_c00238{bottom:958.320006px;}
.y7_c00238{bottom:989.640006px;}
.y6_c00238{bottom:1008.360006px;}
.y5_c00238{bottom:1020.615006px;}
.y3_c00238{bottom:1082.889006px;}
.y4_c00238{bottom:1082.895006px;}
.y2_c00238{bottom:1114.935006px;}
.y1_c00238{bottom:1191.255006px;}
.h5_c00238{height:21.902970px;}
.h6_c00238{height:45.074880px;}
.h2_c00238{height:60.064453px;}
.ha_c00238{height:60.700781px;}
.h7_c00238{height:64.154590px;}
.h3_c00238{height:64.186523px;}
.h9_c00238{height:64.238123px;}
.h8_c00238{height:69.486328px;}
.h4_c00238{height:74.786133px;}
.h1_c00238{height:1263.000000px;}
.h0_c00238{height:1263.240006px;}
.w1_c00238{width:892.500000px;}
.w0_c00238{width:892.799998px;}
.x0_c00238{left:0.000000px;}
.x34_c00238{left:122.369998px;}
.x20_c00238{left:123.387898px;}
.xf_c00238{left:124.394998px;}
.x1_c00238{left:126.284999px;}
.x39_c00238{left:176.540398px;}
.x25_c00238{left:177.629998px;}
.x2_c00238{left:179.789998px;}
.x10_c00238{left:200.699999px;}
.x1b_c00238{left:214.529998px;}
.x11_c00238{left:222.314999px;}
.x2d_c00238{left:225.884998px;}
.x21_c00238{left:232.949999px;}
.x2b_c00238{left:238.349998px;}
.x1c_c00238{left:247.529998px;}
.x22_c00238{left:268.019999px;}
.x40_c00238{left:282.929999px;}
.x23_c00238{left:284.729999px;}
.x28_c00238{left:295.034999px;}
.x16_c00238{left:299.429999px;}
.x2c_c00238{left:310.379998px;}
.x41_c00238{left:314.564999px;}
.x24_c00238{left:316.004999px;}
.x2e_c00238{left:318.779998px;}
.x17_c00238{left:325.304999px;}
.x29_c00238{left:334.274999px;}
.x3a_c00238{left:340.109999px;}
.x3b_c00238{left:352.994999px;}
.x1d_c00238{left:369.029998px;}
.x26_c00238{left:374.609999px;}
.x27_c00238{left:395.474999px;}
.x1e_c00238{left:397.409999px;}
.x2a_c00238{left:405.194999px;}
.x7_c00238{left:423.929999px;}
.x42_c00238{left:426.479999px;}
.x3_c00238{left:428.324998px;}
.x8_c00238{left:444.854998px;}
.xa_c00238{left:448.019998px;}
.x35_c00238{left:452.804999px;}
.x4_c00238{left:458.054999px;}
.x9_c00238{left:467.204998px;}
.xb_c00238{left:474.344998px;}
.x3c_c00238{left:478.259999px;}
.x36_c00238{left:485.864999px;}
.x30_c00238{left:488.129999px;}
.x18_c00238{left:502.019998px;}
.x3d_c00238{left:504.224999px;}
.x5_c00238{left:524.069999px;}
.x1a_c00238{left:530.669999px;}
.x19_c00238{left:536.009999px;}
.x31_c00238{left:538.424999px;}
.x6_c00238{left:550.664999px;}
.x1f_c00238{left:567.224999px;}
.x12_c00238{left:576.209998px;}
.xc_c00238{left:580.649999px;}
.xe_c00238{left:584.639998px;}
.x13_c00238{left:597.629999px;}
.xd_c00238{left:664.394999px;}
.x37_c00238{left:667.724999px;}
.x2f_c00238{left:678.464998px;}
.x32_c00238{left:686.909999px;}
.x14_c00238{left:692.819999px;}
.x38_c00238{left:696.404998px;}
.x15_c00238{left:714.569999px;}
.x33_c00238{left:726.809999px;}
.x3e_c00238{left:727.889998px;}
.x3f_c00238{left:745.544999px;}
@media print{
.v2_c00238{vertical-align:-26.933333pt;}
.v0_c00238{vertical-align:0.000000pt;}
.v1_c00238{vertical-align:26.933333pt;}
.ls59_c00238{letter-spacing:-2.370667pt;}
.ls71_c00238{letter-spacing:-2.202667pt;}
.ls72_c00238{letter-spacing:-2.034667pt;}
.ls78_c00238{letter-spacing:-1.810667pt;}
.ls70_c00238{letter-spacing:-1.296373pt;}
.ls6e_c00238{letter-spacing:-0.697600pt;}
.ls66_c00238{letter-spacing:-0.360427pt;}
.ls6f_c00238{letter-spacing:-0.273227pt;}
.ls5a_c00238{letter-spacing:0.000000pt;}
.ls40_c00238{letter-spacing:0.040693pt;}
.ls38_c00238{letter-spacing:0.156960pt;}
.ls69_c00238{letter-spacing:0.482507pt;}
.ls24_c00238{letter-spacing:0.517387pt;}
.ls15_c00238{letter-spacing:0.563893pt;}
.ls3c_c00238{letter-spacing:0.575520pt;}
.ls73_c00238{letter-spacing:0.749920pt;}
.ls18_c00238{letter-spacing:0.755733pt;}
.ls53_c00238{letter-spacing:0.825493pt;}
.ls26_c00238{letter-spacing:0.848747pt;}
.ls6d_c00238{letter-spacing:1.005707pt;}
.lse_c00238{letter-spacing:1.011520pt;}
.ls23_c00238{letter-spacing:1.058027pt;}
.ls4_c00238{letter-spacing:1.110347pt;}
.ls5f_c00238{letter-spacing:1.121973pt;}
.ls3d_c00238{letter-spacing:1.139413pt;}
.ls17_c00238{letter-spacing:1.156853pt;}
.ls3b_c00238{letter-spacing:1.180107pt;}
.ls74_c00238{letter-spacing:1.255680pt;}
.ls6b_c00238{letter-spacing:1.261493pt;}
.ls4a_c00238{letter-spacing:1.273120pt;}
.ls57_c00238{letter-spacing:1.283840pt;}
.ls4c_c00238{letter-spacing:1.290560pt;}
.ls30_c00238{letter-spacing:1.296373pt;}
.ls35_c00238{letter-spacing:1.337067pt;}
.ls44_c00238{letter-spacing:1.348693pt;}
.ls61_c00238{letter-spacing:1.377760pt;}
.ls67_c00238{letter-spacing:1.401013pt;}
.ls2_c00238{letter-spacing:1.453333pt;}
.ls14_c00238{letter-spacing:1.464960pt;}
.ls2c_c00238{letter-spacing:1.494027pt;}
.ls43_c00238{letter-spacing:1.499840pt;}
.ls33_c00238{letter-spacing:1.517280pt;}
.ls62_c00238{letter-spacing:1.534720pt;}
.ls77_c00238{letter-spacing:1.552160pt;}
.ls6c_c00238{letter-spacing:1.557973pt;}
.ls29_c00238{letter-spacing:1.569600pt;}
.ls2d_c00238{letter-spacing:1.581227pt;}
.lsb_c00238{letter-spacing:1.587040pt;}
.ls60_c00238{letter-spacing:1.604480pt;}
.ls42_c00238{letter-spacing:1.616107pt;}
.ls50_c00238{letter-spacing:1.650987pt;}
.ls4e_c00238{letter-spacing:1.662613pt;}
.ls65_c00238{letter-spacing:1.714933pt;}
.ls7_c00238{letter-spacing:1.720747pt;}
.ls1e_c00238{letter-spacing:1.726560pt;}
.ls47_c00238{letter-spacing:1.732373pt;}
.ls63_c00238{letter-spacing:1.738187pt;}
.ls3f_c00238{letter-spacing:1.744000pt;}
.ls52_c00238{letter-spacing:1.749813pt;}
.ls5_c00238{letter-spacing:1.773067pt;}
.ls37_c00238{letter-spacing:1.790507pt;}
.lsc_c00238{letter-spacing:1.807947pt;}
.ls45_c00238{letter-spacing:1.831200pt;}
.ls1f_c00238{letter-spacing:1.842827pt;}
.ls64_c00238{letter-spacing:1.848640pt;}
.ls4d_c00238{letter-spacing:1.854453pt;}
.ls2e_c00238{letter-spacing:1.860267pt;}
.ls2b_c00238{letter-spacing:1.866080pt;}
.ls48_c00238{letter-spacing:1.877707pt;}
.ls56_c00238{letter-spacing:1.883520pt;}
.ls1a_c00238{letter-spacing:1.889333pt;}
.ls27_c00238{letter-spacing:1.906773pt;}
.ls8_c00238{letter-spacing:1.918400pt;}
.ls36_c00238{letter-spacing:1.930027pt;}
.ls13_c00238{letter-spacing:1.947467pt;}
.ls1d_c00238{letter-spacing:1.953280pt;}
.ls75_c00238{letter-spacing:1.959093pt;}
.ls10_c00238{letter-spacing:1.976533pt;}
.lsd_c00238{letter-spacing:1.982347pt;}
.ls54_c00238{letter-spacing:1.988160pt;}
.ls5d_c00238{letter-spacing:1.999787pt;}
.ls3e_c00238{letter-spacing:2.017227pt;}
.ls11_c00238{letter-spacing:2.023040pt;}
.ls1_c00238{letter-spacing:2.040480pt;}
.ls55_c00238{letter-spacing:2.052107pt;}
.ls6a_c00238{letter-spacing:2.057920pt;}
.ls5b_c00238{letter-spacing:2.092800pt;}
.ls20_c00238{letter-spacing:2.104427pt;}
.ls49_c00238{letter-spacing:2.110240pt;}
.ls51_c00238{letter-spacing:2.116053pt;}
.ls0_c00238{letter-spacing:2.121867pt;}
.ls46_c00238{letter-spacing:2.127680pt;}
.ls34_c00238{letter-spacing:2.174187pt;}
.ls2a_c00238{letter-spacing:2.180000pt;}
.lsa_c00238{letter-spacing:2.220693pt;}
.ls6_c00238{letter-spacing:2.232320pt;}
.ls32_c00238{letter-spacing:2.249760pt;}
.ls16_c00238{letter-spacing:2.255573pt;}
.ls4f_c00238{letter-spacing:2.267200pt;}
.ls9_c00238{letter-spacing:2.284640pt;}
.ls1b_c00238{letter-spacing:2.302080pt;}
.ls39_c00238{letter-spacing:2.325333pt;}
.ls2f_c00238{letter-spacing:2.336960pt;}
.ls3a_c00238{letter-spacing:2.354400pt;}
.ls41_c00238{letter-spacing:2.360213pt;}
.ls19_c00238{letter-spacing:2.389280pt;}
.ls25_c00238{letter-spacing:2.511360pt;}
.ls76_c00238{letter-spacing:2.528800pt;}
.ls31_c00238{letter-spacing:2.534613pt;}
.ls1c_c00238{letter-spacing:2.540427pt;}
.ls12_c00238{letter-spacing:2.552053pt;}
.ls58_c00238{letter-spacing:2.563680pt;}
.ls21_c00238{letter-spacing:2.650880pt;}
.ls22_c00238{letter-spacing:2.703200pt;}
.ls5e_c00238{letter-spacing:2.772960pt;}
.lsf_c00238{letter-spacing:2.802027pt;}
.ls68_c00238{letter-spacing:2.813653pt;}
.ls28_c00238{letter-spacing:2.865973pt;}
.ls4b_c00238{letter-spacing:2.877600pt;}
.ls5c_c00238{letter-spacing:2.906667pt;}
.ls3_c00238{letter-spacing:21.391467pt;}
.ws6_c00238{word-spacing:-16.416853pt;}
.ws2_c00238{word-spacing:-1.540533pt;}
.ws3_c00238{word-spacing:-0.011627pt;}
.ws7_c00238{word-spacing:0.000000pt;}
.ws4_c00238{word-spacing:2.336960pt;}
.ws0_c00238{word-spacing:4.708800pt;}
.ws5_c00238{word-spacing:16.451733pt;}
.ws1_c00238{word-spacing:17.265600pt;}
._12_c00238{margin-left:-6.138880pt;}
._5_c00238{margin-left:-4.551840pt;}
._11_c00238{margin-left:-3.429867pt;}
._4_c00238{margin-left:-2.464853pt;}
._6_c00238{margin-left:-0.988267pt;}
._b_c00238{width:1.278933pt;}
._c_c00238{width:2.267200pt;}
._0_c00238{width:3.668213pt;}
._1_c00238{width:6.034667pt;}
._3_c00238{width:7.766613pt;}
._13_c00238{width:9.295520pt;}
._2_c00238{width:10.405867pt;}
._15_c00238{width:11.481529pt;}
._14_c00238{width:12.568427pt;}
._7_c00238{width:13.835733pt;}
._a_c00238{width:15.126293pt;}
._9_c00238{width:17.242347pt;}
._8_c00238{width:19.974613pt;}
._e_c00238{width:23.700960pt;}
._10_c00238{width:25.398453pt;}
._d_c00238{width:26.927360pt;}
._f_c00238{width:31.915200pt;}
.fs3_c00238{font-size:18.667200pt;}
.fs7_c00238{font-size:28.800533pt;}
.fs5_c00238{font-size:41.600533pt;}
.fs8_c00238{font-size:51.733333pt;}
.fs0_c00238{font-size:54.400000pt;}
.fs1_c00238{font-size:58.133333pt;}
.fs4_c00238{font-size:60.160000pt;}
.fs6_c00238{font-size:62.933333pt;}
.fs2_c00238{font-size:67.733333pt;}
.y0_c00238{bottom:0.000000pt;}
.y26_c00238{bottom:59.853339pt;}
.y24_c00238{bottom:127.034139pt;}
.y25_c00238{bottom:127.040005pt;}
.y22_c00238{bottom:154.874405pt;}
.y23_c00238{bottom:154.880005pt;}
.y20_c00238{bottom:183.036939pt;}
.y21_c00238{bottom:183.040005pt;}
.y1f_c00238{bottom:237.449739pt;}
.y1e_c00238{bottom:266.560005pt;}
.y1d_c00238{bottom:266.561605pt;}
.y1c_c00238{bottom:322.253339pt;}
.y1b_c00238{bottom:350.720005pt;}
.y1a_c00238{bottom:350.721339pt;}
.y19_c00238{bottom:406.081872pt;}
.y18_c00238{bottom:433.593472pt;}
.y17_c00238{bottom:462.093339pt;}
.y16_c00238{bottom:462.096405pt;}
.y15_c00238{bottom:518.093339pt;}
.y14_c00238{bottom:573.453339pt;}
.y13_c00238{bottom:600.973339pt;}
.y12_c00238{bottom:656.973339pt;}
.y11_c00238{bottom:656.976139pt;}
.y10_c00238{bottom:712.653339pt;}
.ye_c00238{bottom:768.647472pt;}
.yf_c00238{bottom:768.653339pt;}
.yc_c00238{bottom:796.488405pt;}
.yd_c00238{bottom:796.493339pt;}
.ya_c00238{bottom:823.994139pt;}
.yb_c00238{bottom:824.000005pt;}
.y8_c00238{bottom:851.834139pt;}
.y9_c00238{bottom:851.840005pt;}
.y7_c00238{bottom:879.680005pt;}
.y6_c00238{bottom:896.320005pt;}
.y5_c00238{bottom:907.213339pt;}
.y3_c00238{bottom:962.568005pt;}
.y4_c00238{bottom:962.573339pt;}
.y2_c00238{bottom:991.053339pt;}
.y1_c00238{bottom:1058.893339pt;}
.h5_c00238{height:19.469306pt;}
.h6_c00238{height:40.066560pt;}
.h2_c00238{height:53.390625pt;}
.ha_c00238{height:53.956250pt;}
.h7_c00238{height:57.026302pt;}
.h3_c00238{height:57.054688pt;}
.h9_c00238{height:57.100554pt;}
.h8_c00238{height:61.765625pt;}
.h4_c00238{height:66.476562pt;}
.h1_c00238{height:1122.666667pt;}
.h0_c00238{height:1122.880005pt;}
.w1_c00238{width:793.333333pt;}
.w0_c00238{width:793.599999pt;}
.x0_c00238{left:0.000000pt;}
.x34_c00238{left:108.773332pt;}
.x20_c00238{left:109.678132pt;}
.xf_c00238{left:110.573332pt;}
.x1_c00238{left:112.253332pt;}
.x39_c00238{left:156.924799pt;}
.x25_c00238{left:157.893332pt;}
.x2_c00238{left:159.813332pt;}
.x10_c00238{left:178.399999pt;}
.x1b_c00238{left:190.693332pt;}
.x11_c00238{left:197.613332pt;}
.x2d_c00238{left:200.786665pt;}
.x21_c00238{left:207.066665pt;}
.x2b_c00238{left:211.866665pt;}
.x1c_c00238{left:220.026665pt;}
.x22_c00238{left:238.239999pt;}
.x40_c00238{left:251.493332pt;}
.x23_c00238{left:253.093332pt;}
.x28_c00238{left:262.253332pt;}
.x16_c00238{left:266.159999pt;}
.x2c_c00238{left:275.893332pt;}
.x41_c00238{left:279.613332pt;}
.x24_c00238{left:280.893332pt;}
.x2e_c00238{left:283.359999pt;}
.x17_c00238{left:289.159999pt;}
.x29_c00238{left:297.133332pt;}
.x3a_c00238{left:302.319999pt;}
.x3b_c00238{left:313.773332pt;}
.x1d_c00238{left:328.026665pt;}
.x26_c00238{left:332.986665pt;}
.x27_c00238{left:351.533332pt;}
.x1e_c00238{left:353.253332pt;}
.x2a_c00238{left:360.173332pt;}
.x7_c00238{left:376.826665pt;}
.x42_c00238{left:379.093332pt;}
.x3_c00238{left:380.733332pt;}
.x8_c00238{left:395.426665pt;}
.xa_c00238{left:398.239999pt;}
.x35_c00238{left:402.493332pt;}
.x4_c00238{left:407.159999pt;}
.x9_c00238{left:415.293332pt;}
.xb_c00238{left:421.639999pt;}
.x3c_c00238{left:425.119999pt;}
.x36_c00238{left:431.879999pt;}
.x30_c00238{left:433.893332pt;}
.x18_c00238{left:446.239999pt;}
.x3d_c00238{left:448.199999pt;}
.x5_c00238{left:465.839999pt;}
.x1a_c00238{left:471.706665pt;}
.x19_c00238{left:476.453332pt;}
.x31_c00238{left:478.599999pt;}
.x6_c00238{left:489.479999pt;}
.x1f_c00238{left:504.199999pt;}
.x12_c00238{left:512.186665pt;}
.xc_c00238{left:516.133332pt;}
.xe_c00238{left:519.679999pt;}
.x13_c00238{left:531.226665pt;}
.xd_c00238{left:590.573332pt;}
.x37_c00238{left:593.533332pt;}
.x2f_c00238{left:603.079999pt;}
.x32_c00238{left:610.586665pt;}
.x14_c00238{left:615.839999pt;}
.x38_c00238{left:619.026665pt;}
.x15_c00238{left:635.173332pt;}
.x33_c00238{left:646.053332pt;}
.x3e_c00238{left:647.013332pt;}
.x3f_c00238{left:662.706665pt;}
}





/* 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_c00239 {
    display:none;
  }
  .loading-indicator_c00239.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00239 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_c00239 { 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_c00239" -> "#page-container .classname_c00239")
 */
.pf_c00239 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00239 { /* 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_c00239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00239 { /* 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_c00239 { /* 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_c00239 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00239 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00239 {overflow:visible;}
  }
}
.c_c00239 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00239 { /* 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_c00239:after { /* webkit #35443 */
  content: '';
}
.t_c00239:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00239 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 */
}
.__c00239 { /* 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_c00239 { /* info for Javascript */
  display:none;
}
.l_c00239 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00239 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00239 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00239: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_c00239 {
    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_c00239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00239.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_c00239 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00239;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.311035;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_c00239;src:url('chunks/assets/font_8092d6d7d0ac184ed635ff32.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.284668;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_c00239;src:url('chunks/assets/font_9fb647200c9925d640bf64b3.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.284180;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_c00239;src:url('chunks/assets/font_2eaf7e7871e5beaf1c5958c5.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:0.666000;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_c00239;src:url('chunks/assets/font_950d14152afefc0f7f1db8fc.woff2')format("woff");}.ff5_c00239{font-family:ff5_c00239;line-height:1.284180;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;}
.m3_c00239{transform:matrix(0.150904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150904,0.000000,0.000000,0.250000,0,0);}
.m6_c00239{transform:matrix(0.166895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166895,0.000000,0.000000,0.250000,0,0);}
.m0_c00239{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m7_c00239{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m5_c00239{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m2_c00239{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);}
.m4_c00239{transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);}
.m1_c00239{transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);}
.m8_c00239{transform:matrix(0.276917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276917,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls63_c00239{letter-spacing:-2.394000px;}
.ls5f_c00239{letter-spacing:-2.352960px;}
.ls4e_c00239{letter-spacing:-2.310000px;}
.ls5b_c00239{letter-spacing:-2.168280px;}
.ls54_c00239{letter-spacing:-2.134080px;}
.ls66_c00239{letter-spacing:-1.908360px;}
.ls53_c00239{letter-spacing:-1.839960px;}
.ls67_c00239{letter-spacing:-1.785240px;}
.ls69_c00239{letter-spacing:-1.621080px;}
.ls65_c00239{letter-spacing:-1.251720px;}
.ls73_c00239{letter-spacing:-1.121760px;}
.ls61_c00239{letter-spacing:-1.080720px;}
.ls74_c00239{letter-spacing:-0.950760px;}
.ls56_c00239{letter-spacing:-0.663480px;}
.ls75_c00239{letter-spacing:-0.622740px;}
.ls72_c00239{letter-spacing:-0.581400px;}
.ls62_c00239{letter-spacing:-0.540360px;}
.ls55_c00239{letter-spacing:-0.526680px;}
.ls6e_c00239{letter-spacing:-0.478800px;}
.ls5d_c00239{letter-spacing:-0.471960px;}
.ls50_c00239{letter-spacing:-0.458280px;}
.ls71_c00239{letter-spacing:-0.383040px;}
.ls51_c00239{letter-spacing:-0.376200px;}
.ls5a_c00239{letter-spacing:-0.342000px;}
.ls6f_c00239{letter-spacing:-0.335160px;}
.ls6d_c00239{letter-spacing:-0.259920px;}
.ls70_c00239{letter-spacing:-0.225720px;}
.ls5e_c00239{letter-spacing:-0.177840px;}
.ls6b_c00239{letter-spacing:-0.171000px;}
.ls5c_c00239{letter-spacing:-0.143640px;}
.ls59_c00239{letter-spacing:-0.102600px;}
.ls57_c00239{letter-spacing:-0.068400px;}
.ls64_c00239{letter-spacing:-0.054720px;}
.ls68_c00239{letter-spacing:-0.034200px;}
.ls6c_c00239{letter-spacing:-0.020520px;}
.ls58_c00239{letter-spacing:-0.006840px;}
.ls52_c00239{letter-spacing:0.000000px;}
.ls27_c00239{letter-spacing:0.034200px;}
.ls2b_c00239{letter-spacing:0.054720px;}
.ls10_c00239{letter-spacing:0.068400px;}
.ls48_c00239{letter-spacing:0.075240px;}
.ls4_c00239{letter-spacing:0.095760px;}
.ls0_c00239{letter-spacing:0.102600px;}
.ls24_c00239{letter-spacing:0.109440px;}
.ls2c_c00239{letter-spacing:0.116280px;}
.ls28_c00239{letter-spacing:0.123120px;}
.ls3b_c00239{letter-spacing:0.164160px;}
.ls3c_c00239{letter-spacing:0.177840px;}
.ls3e_c00239{letter-spacing:0.184680px;}
.ls3a_c00239{letter-spacing:0.191520px;}
.lsd_c00239{letter-spacing:0.212040px;}
.ls12_c00239{letter-spacing:0.223740px;}
.ls40_c00239{letter-spacing:0.239400px;}
.ls41_c00239{letter-spacing:0.246240px;}
.ls1a_c00239{letter-spacing:0.273600px;}
.ls38_c00239{letter-spacing:0.280440px;}
.ls4c_c00239{letter-spacing:0.284760px;}
.ls45_c00239{letter-spacing:0.300960px;}
.ls29_c00239{letter-spacing:0.307800px;}
.ls31_c00239{letter-spacing:0.314640px;}
.ls3_c00239{letter-spacing:0.328320px;}
.ls21_c00239{letter-spacing:0.348840px;}
.lsc_c00239{letter-spacing:0.362520px;}
.ls2d_c00239{letter-spacing:0.369360px;}
.ls47_c00239{letter-spacing:0.376200px;}
.ls33_c00239{letter-spacing:0.393240px;}
.ls2_c00239{letter-spacing:0.424080px;}
.ls13_c00239{letter-spacing:0.447480px;}
.ls9_c00239{letter-spacing:0.451440px;}
.ls26_c00239{letter-spacing:0.478800px;}
.ls60_c00239{letter-spacing:0.485640px;}
.ls37_c00239{letter-spacing:0.499320px;}
.ls34_c00239{letter-spacing:0.506160px;}
.ls2a_c00239{letter-spacing:0.519840px;}
.lsf_c00239{letter-spacing:0.526680px;}
.ls22_c00239{letter-spacing:0.567720px;}
.ls1_c00239{letter-spacing:0.574560px;}
.ls8_c00239{letter-spacing:0.581400px;}
.ls4b_c00239{letter-spacing:0.583080px;}
.ls4d_c00239{letter-spacing:0.608760px;}
.ls49_c00239{letter-spacing:0.616980px;}
.ls25_c00239{letter-spacing:0.656640px;}
.ls46_c00239{letter-spacing:0.663480px;}
.ls1e_c00239{letter-spacing:0.677160px;}
.ls42_c00239{letter-spacing:0.684000px;}
.ls11_c00239{letter-spacing:0.690840px;}
.lse_c00239{letter-spacing:0.725460px;}
.ls16_c00239{letter-spacing:0.745560px;}
.ls23_c00239{letter-spacing:0.752400px;}
.ls32_c00239{letter-spacing:0.759240px;}
.ls20_c00239{letter-spacing:0.779700px;}
.ls43_c00239{letter-spacing:0.779760px;}
.lsb_c00239{letter-spacing:0.793440px;}
.ls14_c00239{letter-spacing:0.868680px;}
.ls30_c00239{letter-spacing:0.881400px;}
.ls35_c00239{letter-spacing:0.909720px;}
.ls5_c00239{letter-spacing:0.916560px;}
.ls17_c00239{letter-spacing:0.937080px;}
.ls6_c00239{letter-spacing:0.950760px;}
.ls1b_c00239{letter-spacing:1.001280px;}
.ls39_c00239{letter-spacing:1.012320px;}
.ls2f_c00239{letter-spacing:1.026000px;}
.ls1d_c00239{letter-spacing:1.087560px;}
.ls44_c00239{letter-spacing:1.272240px;}
.ls2e_c00239{letter-spacing:1.299600px;}
.ls7_c00239{letter-spacing:1.333800px;}
.ls6a_c00239{letter-spacing:1.504800px;}
.ls1f_c00239{letter-spacing:1.647540px;}
.ls3d_c00239{letter-spacing:1.648440px;}
.ls1c_c00239{letter-spacing:1.700160px;}
.ls18_c00239{letter-spacing:1.744200px;}
.ls19_c00239{letter-spacing:1.812600px;}
.ls3f_c00239{letter-spacing:2.270880px;}
.ls15_c00239{letter-spacing:2.715480px;}
.lsa_c00239{letter-spacing:2.961720px;}
.ls36_c00239{letter-spacing:3.091680px;}
.ls4a_c00239{letter-spacing:3.214800px;}
.ls4f_c00239{letter-spacing:3.420000px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{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__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00239{word-spacing:-1.136100px;}
.ws5_c00239{word-spacing:-0.948900px;}
.ws7_c00239{word-spacing:0.000000px;}
.ws3_c00239{word-spacing:0.388200px;}
.ws6_c00239{word-spacing:1.075440px;}
.ws1_c00239{word-spacing:13.679520px;}
.ws4_c00239{word-spacing:16.553400px;}
.ws2_c00239{word-spacing:24.920400px;}
._1b_c00239{margin-left:-9.658080px;}
._5_c00239{margin-left:-8.221680px;}
._18_c00239{margin-left:-5.047920px;}
._4_c00239{margin-left:-3.105360px;}
._e_c00239{margin-left:-2.079360px;}
._7_c00239{margin-left:-1.060200px;}
._6_c00239{width:1.012320px;}
._d_c00239{width:2.154600px;}
._c_c00239{width:3.748320px;}
._8_c00239{width:5.403600px;}
._a_c00239{width:7.366680px;}
._b_c00239{width:8.495280px;}
._9_c00239{width:10.355220px;}
._f_c00239{width:12.149340px;}
._3_c00239{width:13.762080px;}
._2_c00239{width:14.870160px;}
._0_c00239{width:16.470720px;}
._1a_c00239{width:18.235440px;}
._1_c00239{width:19.712880px;}
._13_c00239{width:20.998800px;}
._10_c00239{width:23.132880px;}
._11_c00239{width:25.424280px;}
._12_c00239{width:27.236880px;}
._19_c00239{width:29.291640px;}
._15_c00239{width:38.098800px;}
._17_c00239{width:39.535200px;}
._14_c00239{width:41.419200px;}
._16_c00239{width:42.658920px;}
.fc0_c00239{color:transparent;}
.fs3_c00239{font-size:53.280000px;}
.fs5_c00239{font-size:58.200000px;}
.fs0_c00239{font-size:66.000000px;}
.fs4_c00239{font-size:67.200000px;}
.fs2_c00239{font-size:67.800000px;}
.fs1_c00239{font-size:68.400000px;}
.y0_c00239{bottom:0.000000px;}
.y19_c00239{bottom:68.775000px;}
.y18_c00239{bottom:146.895000px;}
.y17_c00239{bottom:208.095000px;}
.y16_c00239{bottom:271.086900px;}
.y15_c00239{bottom:302.055000px;}
.y14_c00239{bottom:364.702200px;}
.y13_c00239{bottom:394.928700px;}
.y11_c00239{bottom:426.607800px;}
.y12_c00239{bottom:426.615000px;}
.y10_c00239{bottom:457.935000px;}
.yf_c00239{bottom:520.200000px;}
.ye_c00239{bottom:583.926900px;}
.yd_c00239{bottom:614.895000px;}
.yc_c00239{bottom:645.855000px;}
.yb_c00239{bottom:708.480000px;}
.ya_c00239{bottom:771.135000px;}
.y9_c00239{bottom:771.138600px;}
.y8_c00239{bottom:834.135000px;}
.y7_c00239{bottom:865.080000px;}
.y6_c00239{bottom:928.085100px;}
.y5_c00239{bottom:958.335000px;}
.y4_c00239{bottom:1020.600000px;}
.y3_c00239{bottom:1082.890800px;}
.y2_c00239{bottom:1114.560000px;}
.y1_c00239{bottom:1189.815000px;}
.h5_c00239{height:35.484480px;}
.h9_c00239{height:57.120117px;}
.h2_c00239{height:66.515625px;}
.h3_c00239{height:67.130859px;}
.h4_c00239{height:67.147659px;}
.h7_c00239{height:67.156059px;}
.h6_c00239{height:67.159659px;}
.h8_c00239{height:67.163259px;}
.h1_c00239{height:1263.000000px;}
.h0_c00239{height:1263.240000px;}
.w1_c00239{width:892.500000px;}
.w0_c00239{width:892.800000px;}
.x0_c00239{left:0.000000px;}
.xe_c00239{left:124.169700px;}
.x1_c00239{left:125.205000px;}
.x12_c00239{left:176.565000px;}
.x11_c00239{left:177.645000px;}
.xa_c00239{left:178.725000px;}
.x2_c00239{left:179.895000px;}
.x3_c00239{left:208.260000px;}
.x6_c00239{left:312.525000px;}
.x13_c00239{left:424.350000px;}
.xb_c00239{left:447.840000px;}
.x4_c00239{left:470.175000px;}
.x5_c00239{left:526.440000px;}
.xc_c00239{left:541.275000px;}
.x7_c00239{left:546.330000px;}
.x8_c00239{left:580.170000px;}
.xd_c00239{left:657.015000px;}
.x9_c00239{left:669.015000px;}
.xf_c00239{left:695.220000px;}
.x10_c00239{left:735.315000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls63_c00239{letter-spacing:-2.128000pt;}
.ls5f_c00239{letter-spacing:-2.091520pt;}
.ls4e_c00239{letter-spacing:-2.053333pt;}
.ls5b_c00239{letter-spacing:-1.927360pt;}
.ls54_c00239{letter-spacing:-1.896960pt;}
.ls66_c00239{letter-spacing:-1.696320pt;}
.ls53_c00239{letter-spacing:-1.635520pt;}
.ls67_c00239{letter-spacing:-1.586880pt;}
.ls69_c00239{letter-spacing:-1.440960pt;}
.ls65_c00239{letter-spacing:-1.112640pt;}
.ls73_c00239{letter-spacing:-0.997120pt;}
.ls61_c00239{letter-spacing:-0.960640pt;}
.ls74_c00239{letter-spacing:-0.845120pt;}
.ls56_c00239{letter-spacing:-0.589760pt;}
.ls75_c00239{letter-spacing:-0.553547pt;}
.ls72_c00239{letter-spacing:-0.516800pt;}
.ls62_c00239{letter-spacing:-0.480320pt;}
.ls55_c00239{letter-spacing:-0.468160pt;}
.ls6e_c00239{letter-spacing:-0.425600pt;}
.ls5d_c00239{letter-spacing:-0.419520pt;}
.ls50_c00239{letter-spacing:-0.407360pt;}
.ls71_c00239{letter-spacing:-0.340480pt;}
.ls51_c00239{letter-spacing:-0.334400pt;}
.ls5a_c00239{letter-spacing:-0.304000pt;}
.ls6f_c00239{letter-spacing:-0.297920pt;}
.ls6d_c00239{letter-spacing:-0.231040pt;}
.ls70_c00239{letter-spacing:-0.200640pt;}
.ls5e_c00239{letter-spacing:-0.158080pt;}
.ls6b_c00239{letter-spacing:-0.152000pt;}
.ls5c_c00239{letter-spacing:-0.127680pt;}
.ls59_c00239{letter-spacing:-0.091200pt;}
.ls57_c00239{letter-spacing:-0.060800pt;}
.ls64_c00239{letter-spacing:-0.048640pt;}
.ls68_c00239{letter-spacing:-0.030400pt;}
.ls6c_c00239{letter-spacing:-0.018240pt;}
.ls58_c00239{letter-spacing:-0.006080pt;}
.ls52_c00239{letter-spacing:0.000000pt;}
.ls27_c00239{letter-spacing:0.030400pt;}
.ls2b_c00239{letter-spacing:0.048640pt;}
.ls10_c00239{letter-spacing:0.060800pt;}
.ls48_c00239{letter-spacing:0.066880pt;}
.ls4_c00239{letter-spacing:0.085120pt;}
.ls0_c00239{letter-spacing:0.091200pt;}
.ls24_c00239{letter-spacing:0.097280pt;}
.ls2c_c00239{letter-spacing:0.103360pt;}
.ls28_c00239{letter-spacing:0.109440pt;}
.ls3b_c00239{letter-spacing:0.145920pt;}
.ls3c_c00239{letter-spacing:0.158080pt;}
.ls3e_c00239{letter-spacing:0.164160pt;}
.ls3a_c00239{letter-spacing:0.170240pt;}
.lsd_c00239{letter-spacing:0.188480pt;}
.ls12_c00239{letter-spacing:0.198880pt;}
.ls40_c00239{letter-spacing:0.212800pt;}
.ls41_c00239{letter-spacing:0.218880pt;}
.ls1a_c00239{letter-spacing:0.243200pt;}
.ls38_c00239{letter-spacing:0.249280pt;}
.ls4c_c00239{letter-spacing:0.253120pt;}
.ls45_c00239{letter-spacing:0.267520pt;}
.ls29_c00239{letter-spacing:0.273600pt;}
.ls31_c00239{letter-spacing:0.279680pt;}
.ls3_c00239{letter-spacing:0.291840pt;}
.ls21_c00239{letter-spacing:0.310080pt;}
.lsc_c00239{letter-spacing:0.322240pt;}
.ls2d_c00239{letter-spacing:0.328320pt;}
.ls47_c00239{letter-spacing:0.334400pt;}
.ls33_c00239{letter-spacing:0.349547pt;}
.ls2_c00239{letter-spacing:0.376960pt;}
.ls13_c00239{letter-spacing:0.397760pt;}
.ls9_c00239{letter-spacing:0.401280pt;}
.ls26_c00239{letter-spacing:0.425600pt;}
.ls60_c00239{letter-spacing:0.431680pt;}
.ls37_c00239{letter-spacing:0.443840pt;}
.ls34_c00239{letter-spacing:0.449920pt;}
.ls2a_c00239{letter-spacing:0.462080pt;}
.lsf_c00239{letter-spacing:0.468160pt;}
.ls22_c00239{letter-spacing:0.504640pt;}
.ls1_c00239{letter-spacing:0.510720pt;}
.ls8_c00239{letter-spacing:0.516800pt;}
.ls4b_c00239{letter-spacing:0.518293pt;}
.ls4d_c00239{letter-spacing:0.541120pt;}
.ls49_c00239{letter-spacing:0.548427pt;}
.ls25_c00239{letter-spacing:0.583680pt;}
.ls46_c00239{letter-spacing:0.589760pt;}
.ls1e_c00239{letter-spacing:0.601920pt;}
.ls42_c00239{letter-spacing:0.608000pt;}
.ls11_c00239{letter-spacing:0.614080pt;}
.lse_c00239{letter-spacing:0.644853pt;}
.ls16_c00239{letter-spacing:0.662720pt;}
.ls23_c00239{letter-spacing:0.668800pt;}
.ls32_c00239{letter-spacing:0.674880pt;}
.ls20_c00239{letter-spacing:0.693067pt;}
.ls43_c00239{letter-spacing:0.693120pt;}
.lsb_c00239{letter-spacing:0.705280pt;}
.ls14_c00239{letter-spacing:0.772160pt;}
.ls30_c00239{letter-spacing:0.783467pt;}
.ls35_c00239{letter-spacing:0.808640pt;}
.ls5_c00239{letter-spacing:0.814720pt;}
.ls17_c00239{letter-spacing:0.832960pt;}
.ls6_c00239{letter-spacing:0.845120pt;}
.ls1b_c00239{letter-spacing:0.890027pt;}
.ls39_c00239{letter-spacing:0.899840pt;}
.ls2f_c00239{letter-spacing:0.912000pt;}
.ls1d_c00239{letter-spacing:0.966720pt;}
.ls44_c00239{letter-spacing:1.130880pt;}
.ls2e_c00239{letter-spacing:1.155200pt;}
.ls7_c00239{letter-spacing:1.185600pt;}
.ls6a_c00239{letter-spacing:1.337600pt;}
.ls1f_c00239{letter-spacing:1.464480pt;}
.ls3d_c00239{letter-spacing:1.465280pt;}
.ls1c_c00239{letter-spacing:1.511253pt;}
.ls18_c00239{letter-spacing:1.550400pt;}
.ls19_c00239{letter-spacing:1.611200pt;}
.ls3f_c00239{letter-spacing:2.018560pt;}
.ls15_c00239{letter-spacing:2.413760pt;}
.lsa_c00239{letter-spacing:2.632640pt;}
.ls36_c00239{letter-spacing:2.748160pt;}
.ls4a_c00239{letter-spacing:2.857600pt;}
.ls4f_c00239{letter-spacing:3.040000pt;}
.ws0_c00239{word-spacing:-1.009867pt;}
.ws5_c00239{word-spacing:-0.843467pt;}
.ws7_c00239{word-spacing:0.000000pt;}
.ws3_c00239{word-spacing:0.345067pt;}
.ws6_c00239{word-spacing:0.955947pt;}
.ws1_c00239{word-spacing:12.159573pt;}
.ws4_c00239{word-spacing:14.714133pt;}
.ws2_c00239{word-spacing:22.151467pt;}
._1b_c00239{margin-left:-8.584960pt;}
._5_c00239{margin-left:-7.308160pt;}
._18_c00239{margin-left:-4.487040pt;}
._4_c00239{margin-left:-2.760320pt;}
._e_c00239{margin-left:-1.848320pt;}
._7_c00239{margin-left:-0.942400pt;}
._6_c00239{width:0.899840pt;}
._d_c00239{width:1.915200pt;}
._c_c00239{width:3.331840pt;}
._8_c00239{width:4.803200pt;}
._a_c00239{width:6.548160pt;}
._b_c00239{width:7.551360pt;}
._9_c00239{width:9.204640pt;}
._f_c00239{width:10.799413pt;}
._3_c00239{width:12.232960pt;}
._2_c00239{width:13.217920pt;}
._0_c00239{width:14.640640pt;}
._1a_c00239{width:16.209280pt;}
._1_c00239{width:17.522560pt;}
._13_c00239{width:18.665600pt;}
._10_c00239{width:20.562560pt;}
._11_c00239{width:22.599360pt;}
._12_c00239{width:24.210560pt;}
._19_c00239{width:26.037013pt;}
._15_c00239{width:33.865600pt;}
._17_c00239{width:35.142400pt;}
._14_c00239{width:36.817067pt;}
._16_c00239{width:37.919040pt;}
.fs3_c00239{font-size:47.360000pt;}
.fs5_c00239{font-size:51.733333pt;}
.fs0_c00239{font-size:58.666667pt;}
.fs4_c00239{font-size:59.733333pt;}
.fs2_c00239{font-size:60.266667pt;}
.fs1_c00239{font-size:60.800000pt;}
.y0_c00239{bottom:0.000000pt;}
.y19_c00239{bottom:61.133333pt;}
.y18_c00239{bottom:130.573333pt;}
.y17_c00239{bottom:184.973333pt;}
.y16_c00239{bottom:240.966133pt;}
.y15_c00239{bottom:268.493333pt;}
.y14_c00239{bottom:324.179733pt;}
.y13_c00239{bottom:351.047733pt;}
.y11_c00239{bottom:379.206933pt;}
.y12_c00239{bottom:379.213333pt;}
.y10_c00239{bottom:407.053333pt;}
.yf_c00239{bottom:462.400000pt;}
.ye_c00239{bottom:519.046133pt;}
.yd_c00239{bottom:546.573333pt;}
.yc_c00239{bottom:574.093333pt;}
.yb_c00239{bottom:629.760000pt;}
.ya_c00239{bottom:685.453333pt;}
.y9_c00239{bottom:685.456533pt;}
.y8_c00239{bottom:741.453333pt;}
.y7_c00239{bottom:768.960000pt;}
.y6_c00239{bottom:824.964533pt;}
.y5_c00239{bottom:851.853333pt;}
.y4_c00239{bottom:907.200000pt;}
.y3_c00239{bottom:962.569600pt;}
.y2_c00239{bottom:990.720000pt;}
.y1_c00239{bottom:1057.613333pt;}
.h5_c00239{height:31.541760pt;}
.h9_c00239{height:50.773437pt;}
.h2_c00239{height:59.125000pt;}
.h3_c00239{height:59.671875pt;}
.h4_c00239{height:59.686808pt;}
.h7_c00239{height:59.694275pt;}
.h6_c00239{height:59.697475pt;}
.h8_c00239{height:59.700675pt;}
.h1_c00239{height:1122.666667pt;}
.h0_c00239{height:1122.880000pt;}
.w1_c00239{width:793.333333pt;}
.w0_c00239{width:793.600000pt;}
.x0_c00239{left:0.000000pt;}
.xe_c00239{left:110.373067pt;}
.x1_c00239{left:111.293333pt;}
.x12_c00239{left:156.946667pt;}
.x11_c00239{left:157.906667pt;}
.xa_c00239{left:158.866667pt;}
.x2_c00239{left:159.906667pt;}
.x3_c00239{left:185.120000pt;}
.x6_c00239{left:277.800000pt;}
.x13_c00239{left:377.200000pt;}
.xb_c00239{left:398.080000pt;}
.x4_c00239{left:417.933333pt;}
.x5_c00239{left:467.946667pt;}
.xc_c00239{left:481.133333pt;}
.x7_c00239{left:485.626667pt;}
.x8_c00239{left:515.706667pt;}
.xd_c00239{left:584.013333pt;}
.x9_c00239{left:594.680000pt;}
.xf_c00239{left:617.973333pt;}
.x10_c00239{left:653.613333pt;}
}





/* 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_c00240 {
    display:none;
  }
  .loading-indicator_c00240.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00240 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_c00240 { 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_c00240" -> "#page-container .classname_c00240")
 */
.pf_c00240 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00240 { /* 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_c00240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00240 { /* 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_c00240 { /* 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_c00240 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00240 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00240 {overflow:visible;}
  }
}
.c_c00240 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00240 { /* 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_c00240:after { /* webkit #35443 */
  content: '';
}
.t_c00240:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00240 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 */
}
.__c00240 { /* 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_c00240 { /* info for Javascript */
  display:none;
}
.l_c00240 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00240 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00240 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00240: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_c00240 {
    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_c00240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00240.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_c00240 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00240;src:url('chunks/assets/font_b6e4ad0c6f94e0c179154ec2.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.284668;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_c00240;src:url('chunks/assets/font_3e4c366f5dcfb02ea5f7ba2a.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.284180;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_c00240;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;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;}
.m6_c00240{transform:matrix(0.204188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204188,0.000000,0.000000,0.250000,0,0);}
.m4_c00240{transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);}
.m5_c00240{transform:matrix(0.209783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209783,0.000000,0.000000,0.250000,0,0);}
.m8_c00240{transform:matrix(0.218862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218862,0.000000,0.000000,0.250000,0,0);}
.m7_c00240{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m0_c00240{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m3_c00240{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);}
.m2_c00240{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);}
.v0_c00240{vertical-align:0.000000px;}
.ls30_c00240{letter-spacing:-2.688000px;}
.ls36_c00240{letter-spacing:-2.436000px;}
.ls31_c00240{letter-spacing:-2.380800px;}
.ls4e_c00240{letter-spacing:-2.373000px;}
.ls3a_c00240{letter-spacing:-2.352480px;}
.ls2f_c00240{letter-spacing:-2.352000px;}
.ls3d_c00240{letter-spacing:-2.234160px;}
.ls46_c00240{letter-spacing:-2.206320px;}
.ls7f_c00240{letter-spacing:-2.136720px;}
.ls33_c00240{letter-spacing:-2.025360px;}
.ls7e_c00240{letter-spacing:-1.927920px;}
.ls45_c00240{letter-spacing:-1.774800px;}
.ls54_c00240{letter-spacing:-1.649520px;}
.ls4d_c00240{letter-spacing:-1.600800px;}
.ls75_c00240{letter-spacing:-1.531200px;}
.ls79_c00240{letter-spacing:-1.517280px;}
.ls44_c00240{letter-spacing:-1.503360px;}
.ls76_c00240{letter-spacing:-1.412880px;}
.ls7b_c00240{letter-spacing:-1.371120px;}
.ls78_c00240{letter-spacing:-1.315440px;}
.ls4b_c00240{letter-spacing:-1.294560px;}
.ls4a_c00240{letter-spacing:-1.266720px;}
.ls49_c00240{letter-spacing:-1.190160px;}
.ls72_c00240{letter-spacing:-1.175040px;}
.ls35_c00240{letter-spacing:-1.078800px;}
.ls64_c00240{letter-spacing:-0.974400px;}
.ls6f_c00240{letter-spacing:-0.939600px;}
.ls6a_c00240{letter-spacing:-0.918720px;}
.ls69_c00240{letter-spacing:-0.835200px;}
.ls43_c00240{letter-spacing:-0.821280px;}
.ls6c_c00240{letter-spacing:-0.800400px;}
.ls65_c00240{letter-spacing:-0.751680px;}
.ls6d_c00240{letter-spacing:-0.702960px;}
.ls47_c00240{letter-spacing:-0.689040px;}
.ls41_c00240{letter-spacing:-0.668160px;}
.ls3e_c00240{letter-spacing:-0.584640px;}
.ls77_c00240{letter-spacing:-0.549840px;}
.ls48_c00240{letter-spacing:-0.528960px;}
.ls6e_c00240{letter-spacing:-0.515040px;}
.ls59_c00240{letter-spacing:-0.501120px;}
.ls7d_c00240{letter-spacing:-0.494160px;}
.ls38_c00240{letter-spacing:-0.487200px;}
.ls7a_c00240{letter-spacing:-0.480240px;}
.ls63_c00240{letter-spacing:-0.459360px;}
.ls34_c00240{letter-spacing:-0.452400px;}
.ls67_c00240{letter-spacing:-0.445440px;}
.ls5e_c00240{letter-spacing:-0.431520px;}
.ls70_c00240{letter-spacing:-0.403680px;}
.ls58_c00240{letter-spacing:-0.389760px;}
.ls61_c00240{letter-spacing:-0.382800px;}
.ls71_c00240{letter-spacing:-0.368880px;}
.ls74_c00240{letter-spacing:-0.361920px;}
.ls3c_c00240{letter-spacing:-0.320160px;}
.ls5a_c00240{letter-spacing:-0.292320px;}
.ls53_c00240{letter-spacing:-0.285360px;}
.ls55_c00240{letter-spacing:-0.271440px;}
.ls68_c00240{letter-spacing:-0.264480px;}
.ls3b_c00240{letter-spacing:-0.243600px;}
.ls5f_c00240{letter-spacing:-0.229680px;}
.ls51_c00240{letter-spacing:-0.194880px;}
.ls39_c00240{letter-spacing:-0.187920px;}
.ls5c_c00240{letter-spacing:-0.180960px;}
.ls50_c00240{letter-spacing:-0.167040px;}
.ls32_c00240{letter-spacing:-0.118320px;}
.ls52_c00240{letter-spacing:-0.111360px;}
.ls60_c00240{letter-spacing:-0.104400px;}
.ls57_c00240{letter-spacing:-0.097440px;}
.ls5d_c00240{letter-spacing:-0.090480px;}
.ls56_c00240{letter-spacing:-0.062640px;}
.ls42_c00240{letter-spacing:-0.055680px;}
.ls6b_c00240{letter-spacing:-0.041760px;}
.ls73_c00240{letter-spacing:-0.034800px;}
.ls4f_c00240{letter-spacing:-0.020880px;}
.ls40_c00240{letter-spacing:-0.006960px;}
.ls37_c00240{letter-spacing:0.000000px;}
.ls1d_c00240{letter-spacing:0.041760px;}
.ls8_c00240{letter-spacing:0.048720px;}
.ls15_c00240{letter-spacing:0.062640px;}
.ls10_c00240{letter-spacing:0.069600px;}
.ls13_c00240{letter-spacing:0.076560px;}
.ls18_c00240{letter-spacing:0.097440px;}
.lse_c00240{letter-spacing:0.104400px;}
.ls1c_c00240{letter-spacing:0.146160px;}
.ls1a_c00240{letter-spacing:0.153120px;}
.lsd_c00240{letter-spacing:0.160080px;}
.ls27_c00240{letter-spacing:0.167040px;}
.ls7_c00240{letter-spacing:0.180960px;}
.lsc_c00240{letter-spacing:0.222720px;}
.ls4c_c00240{letter-spacing:0.229680px;}
.ls2e_c00240{letter-spacing:0.244080px;}
.ls20_c00240{letter-spacing:0.257520px;}
.ls23_c00240{letter-spacing:0.285360px;}
.ls2_c00240{letter-spacing:0.292320px;}
.ls3_c00240{letter-spacing:0.306240px;}
.ls17_c00240{letter-spacing:0.320160px;}
.lsf_c00240{letter-spacing:0.334080px;}
.ls2d_c00240{letter-spacing:0.354960px;}
.ls1e_c00240{letter-spacing:0.368880px;}
.ls80_c00240{letter-spacing:0.376320px;}
.ls66_c00240{letter-spacing:0.410640px;}
.ls1f_c00240{letter-spacing:0.466320px;}
.ls2c_c00240{letter-spacing:0.473280px;}
.ls11_c00240{letter-spacing:0.542880px;}
.ls2b_c00240{letter-spacing:0.556800px;}
.ls5_c00240{letter-spacing:0.576300px;}
.ls24_c00240{letter-spacing:0.598560px;}
.ls2a_c00240{letter-spacing:0.603420px;}
.ls21_c00240{letter-spacing:0.605520px;}
.ls28_c00240{letter-spacing:0.689040px;}
.ls0_c00240{letter-spacing:0.702960px;}
.ls5b_c00240{letter-spacing:0.709920px;}
.ls3f_c00240{letter-spacing:0.716880px;}
.ls1b_c00240{letter-spacing:0.759360px;}
.ls62_c00240{letter-spacing:0.772560px;}
.ls4_c00240{letter-spacing:0.772920px;}
.ls12_c00240{letter-spacing:0.821280px;}
.lsb_c00240{letter-spacing:0.883920px;}
.ls29_c00240{letter-spacing:0.942420px;}
.ls22_c00240{letter-spacing:0.949200px;}
.ls16_c00240{letter-spacing:0.953520px;}
.ls14_c00240{letter-spacing:1.044000px;}
.ls26_c00240{letter-spacing:1.120560px;}
.ls6_c00240{letter-spacing:1.139040px;}
.ls19_c00240{letter-spacing:1.240740px;}
.lsa_c00240{letter-spacing:1.245840px;}
.ls25_c00240{letter-spacing:1.607760px;}
.ls1_c00240{letter-spacing:1.760880px;}
.ls7c_c00240{letter-spacing:1.898400px;}
.ls9_c00240{letter-spacing:2.176380px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{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__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00240{word-spacing:-1.762560px;}
.ws5_c00240{word-spacing:0.000000px;}
.ws4_c00240{word-spacing:0.398580px;}
.ws2_c00240{word-spacing:2.632200px;}
.ws0_c00240{word-spacing:7.049640px;}
.ws3_c00240{word-spacing:17.107800px;}
._14_c00240{margin-left:-5.735880px;}
._a_c00240{margin-left:-3.988080px;}
._d_c00240{margin-left:-2.632320px;}
._6_c00240{margin-left:-1.301520px;}
._8_c00240{width:1.168800px;}
._c_c00240{width:2.739120px;}
._2_c00240{width:4.002000px;}
._0_c00240{width:5.304000px;}
._1_c00240{width:7.328880px;}
._b_c00240{width:8.818800px;}
._9_c00240{width:10.266000px;}
._3_c00240{width:11.303040px;}
._4_c00240{width:13.432800px;}
._5_c00240{width:14.442000px;}
._11_c00240{width:18.583200px;}
._10_c00240{width:20.211840px;}
._12_c00240{width:22.056240px;}
._f_c00240{width:23.065440px;}
._13_c00240{width:24.624000px;}
._7_c00240{width:26.106960px;}
._e_c00240{width:34.997040px;}
.fc0_c00240{color:transparent;}
.fs4_c00240{font-size:58.800000px;}
.fs0_c00240{font-size:67.200000px;}
.fs3_c00240{font-size:67.800000px;}
.fs2_c00240{font-size:69.600000px;}
.fs1_c00240{font-size:76.800000px;}
.y0_c00240{bottom:0.000000px;}
.y1a_c00240{bottom:74.880000px;}
.y19_c00240{bottom:150.480000px;}
.y17_c00240{bottom:212.769600px;}
.y18_c00240{bottom:212.775000px;}
.y16_c00240{bottom:244.455000px;}
.y15_c00240{bottom:307.095000px;}
.y14_c00240{bottom:338.055000px;}
.y13_c00240{bottom:401.415000px;}
.y12_c00240{bottom:464.034600px;}
.y11_c00240{bottom:495.737400px;}
.y10_c00240{bottom:527.040000px;}
.yf_c00240{bottom:589.335000px;}
.ye_c00240{bottom:620.992200px;}
.yd_c00240{bottom:652.695000px;}
.yc_c00240{bottom:714.975000px;}
.yb_c00240{bottom:778.335000px;}
.ya_c00240{bottom:809.655000px;}
.y9_c00240{bottom:841.340400px;}
.y8_c00240{bottom:872.295000px;}
.y7_c00240{bottom:934.560000px;}
.y6_c00240{bottom:996.860400px;}
.y4_c00240{bottom:1027.809600px;}
.y5_c00240{bottom:1027.815000px;}
.y3_c00240{bottom:1090.815000px;}
.y2_c00240{bottom:1122.135000px;}
.y1_c00240{bottom:1198.815000px;}
.h8_c00240{height:57.708984px;}
.h2_c00240{height:65.953125px;}
.h7_c00240{height:66.508887px;}
.h4_c00240{height:68.308594px;}
.h5_c00240{height:70.713281px;}
.h3_c00240{height:75.337500px;}
.h6_c00240{height:75.375000px;}
.h1_c00240{height:1263.000000px;}
.h0_c00240{height:1263.240000px;}
.w1_c00240{width:892.500000px;}
.w0_c00240{width:892.800000px;}
.x0_c00240{left:0.000000px;}
.x12_c00240{left:120.400800px;}
.xe_c00240{left:121.533000px;}
.x1_c00240{left:123.405000px;}
.x13_c00240{left:161.100000px;}
.x14_c00240{left:174.405000px;}
.xb_c00240{left:175.485000px;}
.x4_c00240{left:177.398400px;}
.x18_c00240{left:241.725000px;}
.x5_c00240{left:244.605000px;}
.x19_c00240{left:269.070000px;}
.x6_c00240{left:272.280000px;}
.x15_c00240{left:276.465000px;}
.x2_c00240{left:303.825000px;}
.x1c_c00240{left:318.435000px;}
.x1d_c00240{left:332.790000px;}
.x16_c00240{left:348.960000px;}
.x1a_c00240{left:359.085000px;}
.x7_c00240{left:361.245000px;}
.x3_c00240{left:375.990000px;}
.x1b_c00240{left:386.400000px;}
.x8_c00240{left:392.520000px;}
.xc_c00240{left:413.790000px;}
.x1e_c00240{left:423.270000px;}
.xd_c00240{left:433.260000px;}
.xf_c00240{left:446.310000px;}
.x10_c00240{left:478.650000px;}
.x17_c00240{left:561.000000px;}
.x9_c00240{left:570.045000px;}
.xa_c00240{left:597.750000px;}
.x11_c00240{left:683.550000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls30_c00240{letter-spacing:-2.389333pt;}
.ls36_c00240{letter-spacing:-2.165333pt;}
.ls31_c00240{letter-spacing:-2.116267pt;}
.ls4e_c00240{letter-spacing:-2.109333pt;}
.ls3a_c00240{letter-spacing:-2.091093pt;}
.ls2f_c00240{letter-spacing:-2.090667pt;}
.ls3d_c00240{letter-spacing:-1.985920pt;}
.ls46_c00240{letter-spacing:-1.961173pt;}
.ls7f_c00240{letter-spacing:-1.899307pt;}
.ls33_c00240{letter-spacing:-1.800320pt;}
.ls7e_c00240{letter-spacing:-1.713707pt;}
.ls45_c00240{letter-spacing:-1.577600pt;}
.ls54_c00240{letter-spacing:-1.466240pt;}
.ls4d_c00240{letter-spacing:-1.422933pt;}
.ls75_c00240{letter-spacing:-1.361067pt;}
.ls79_c00240{letter-spacing:-1.348693pt;}
.ls44_c00240{letter-spacing:-1.336320pt;}
.ls76_c00240{letter-spacing:-1.255893pt;}
.ls7b_c00240{letter-spacing:-1.218773pt;}
.ls78_c00240{letter-spacing:-1.169280pt;}
.ls4b_c00240{letter-spacing:-1.150720pt;}
.ls4a_c00240{letter-spacing:-1.125973pt;}
.ls49_c00240{letter-spacing:-1.057920pt;}
.ls72_c00240{letter-spacing:-1.044480pt;}
.ls35_c00240{letter-spacing:-0.958933pt;}
.ls64_c00240{letter-spacing:-0.866133pt;}
.ls6f_c00240{letter-spacing:-0.835200pt;}
.ls6a_c00240{letter-spacing:-0.816640pt;}
.ls69_c00240{letter-spacing:-0.742400pt;}
.ls43_c00240{letter-spacing:-0.730027pt;}
.ls6c_c00240{letter-spacing:-0.711467pt;}
.ls65_c00240{letter-spacing:-0.668160pt;}
.ls6d_c00240{letter-spacing:-0.624853pt;}
.ls47_c00240{letter-spacing:-0.612480pt;}
.ls41_c00240{letter-spacing:-0.593920pt;}
.ls3e_c00240{letter-spacing:-0.519680pt;}
.ls77_c00240{letter-spacing:-0.488747pt;}
.ls48_c00240{letter-spacing:-0.470187pt;}
.ls6e_c00240{letter-spacing:-0.457813pt;}
.ls59_c00240{letter-spacing:-0.445440pt;}
.ls7d_c00240{letter-spacing:-0.439253pt;}
.ls38_c00240{letter-spacing:-0.433067pt;}
.ls7a_c00240{letter-spacing:-0.426880pt;}
.ls63_c00240{letter-spacing:-0.408320pt;}
.ls34_c00240{letter-spacing:-0.402133pt;}
.ls67_c00240{letter-spacing:-0.395947pt;}
.ls5e_c00240{letter-spacing:-0.383573pt;}
.ls70_c00240{letter-spacing:-0.358827pt;}
.ls58_c00240{letter-spacing:-0.346453pt;}
.ls61_c00240{letter-spacing:-0.340267pt;}
.ls71_c00240{letter-spacing:-0.327893pt;}
.ls74_c00240{letter-spacing:-0.321707pt;}
.ls3c_c00240{letter-spacing:-0.284587pt;}
.ls5a_c00240{letter-spacing:-0.259840pt;}
.ls53_c00240{letter-spacing:-0.253653pt;}
.ls55_c00240{letter-spacing:-0.241280pt;}
.ls68_c00240{letter-spacing:-0.235093pt;}
.ls3b_c00240{letter-spacing:-0.216533pt;}
.ls5f_c00240{letter-spacing:-0.204160pt;}
.ls51_c00240{letter-spacing:-0.173227pt;}
.ls39_c00240{letter-spacing:-0.167040pt;}
.ls5c_c00240{letter-spacing:-0.160853pt;}
.ls50_c00240{letter-spacing:-0.148480pt;}
.ls32_c00240{letter-spacing:-0.105173pt;}
.ls52_c00240{letter-spacing:-0.098987pt;}
.ls60_c00240{letter-spacing:-0.092800pt;}
.ls57_c00240{letter-spacing:-0.086613pt;}
.ls5d_c00240{letter-spacing:-0.080427pt;}
.ls56_c00240{letter-spacing:-0.055680pt;}
.ls42_c00240{letter-spacing:-0.049493pt;}
.ls6b_c00240{letter-spacing:-0.037120pt;}
.ls73_c00240{letter-spacing:-0.030933pt;}
.ls4f_c00240{letter-spacing:-0.018560pt;}
.ls40_c00240{letter-spacing:-0.006187pt;}
.ls37_c00240{letter-spacing:0.000000pt;}
.ls1d_c00240{letter-spacing:0.037120pt;}
.ls8_c00240{letter-spacing:0.043307pt;}
.ls15_c00240{letter-spacing:0.055680pt;}
.ls10_c00240{letter-spacing:0.061867pt;}
.ls13_c00240{letter-spacing:0.068053pt;}
.ls18_c00240{letter-spacing:0.086613pt;}
.lse_c00240{letter-spacing:0.092800pt;}
.ls1c_c00240{letter-spacing:0.129920pt;}
.ls1a_c00240{letter-spacing:0.136107pt;}
.lsd_c00240{letter-spacing:0.142293pt;}
.ls27_c00240{letter-spacing:0.148480pt;}
.ls7_c00240{letter-spacing:0.160853pt;}
.lsc_c00240{letter-spacing:0.197973pt;}
.ls4c_c00240{letter-spacing:0.204160pt;}
.ls2e_c00240{letter-spacing:0.216960pt;}
.ls20_c00240{letter-spacing:0.228907pt;}
.ls23_c00240{letter-spacing:0.253653pt;}
.ls2_c00240{letter-spacing:0.259840pt;}
.ls3_c00240{letter-spacing:0.272213pt;}
.ls17_c00240{letter-spacing:0.284587pt;}
.lsf_c00240{letter-spacing:0.296960pt;}
.ls2d_c00240{letter-spacing:0.315520pt;}
.ls1e_c00240{letter-spacing:0.327893pt;}
.ls80_c00240{letter-spacing:0.334507pt;}
.ls66_c00240{letter-spacing:0.365013pt;}
.ls1f_c00240{letter-spacing:0.414507pt;}
.ls2c_c00240{letter-spacing:0.420693pt;}
.ls11_c00240{letter-spacing:0.482560pt;}
.ls2b_c00240{letter-spacing:0.494933pt;}
.ls5_c00240{letter-spacing:0.512267pt;}
.ls24_c00240{letter-spacing:0.532053pt;}
.ls2a_c00240{letter-spacing:0.536373pt;}
.ls21_c00240{letter-spacing:0.538240pt;}
.ls28_c00240{letter-spacing:0.612480pt;}
.ls0_c00240{letter-spacing:0.624853pt;}
.ls5b_c00240{letter-spacing:0.631040pt;}
.ls3f_c00240{letter-spacing:0.637227pt;}
.ls1b_c00240{letter-spacing:0.674987pt;}
.ls62_c00240{letter-spacing:0.686720pt;}
.ls4_c00240{letter-spacing:0.687040pt;}
.ls12_c00240{letter-spacing:0.730027pt;}
.lsb_c00240{letter-spacing:0.785707pt;}
.ls29_c00240{letter-spacing:0.837707pt;}
.ls22_c00240{letter-spacing:0.843733pt;}
.ls16_c00240{letter-spacing:0.847573pt;}
.ls14_c00240{letter-spacing:0.928000pt;}
.ls26_c00240{letter-spacing:0.996053pt;}
.ls6_c00240{letter-spacing:1.012480pt;}
.ls19_c00240{letter-spacing:1.102880pt;}
.lsa_c00240{letter-spacing:1.107413pt;}
.ls25_c00240{letter-spacing:1.429120pt;}
.ls1_c00240{letter-spacing:1.565227pt;}
.ls7c_c00240{letter-spacing:1.687467pt;}
.ls9_c00240{letter-spacing:1.934560pt;}
.ws1_c00240{word-spacing:-1.566720pt;}
.ws5_c00240{word-spacing:0.000000pt;}
.ws4_c00240{word-spacing:0.354293pt;}
.ws2_c00240{word-spacing:2.339733pt;}
.ws0_c00240{word-spacing:6.266347pt;}
.ws3_c00240{word-spacing:15.206933pt;}
._14_c00240{margin-left:-5.098560pt;}
._a_c00240{margin-left:-3.544960pt;}
._d_c00240{margin-left:-2.339840pt;}
._6_c00240{margin-left:-1.156907pt;}
._8_c00240{width:1.038933pt;}
._c_c00240{width:2.434773pt;}
._2_c00240{width:3.557333pt;}
._0_c00240{width:4.714667pt;}
._1_c00240{width:6.514560pt;}
._b_c00240{width:7.838933pt;}
._9_c00240{width:9.125333pt;}
._3_c00240{width:10.047147pt;}
._4_c00240{width:11.940267pt;}
._5_c00240{width:12.837333pt;}
._11_c00240{width:16.518400pt;}
._10_c00240{width:17.966080pt;}
._12_c00240{width:19.605547pt;}
._f_c00240{width:20.502613pt;}
._13_c00240{width:21.888000pt;}
._7_c00240{width:23.206187pt;}
._e_c00240{width:31.108480pt;}
.fs4_c00240{font-size:52.266667pt;}
.fs0_c00240{font-size:59.733333pt;}
.fs3_c00240{font-size:60.266667pt;}
.fs2_c00240{font-size:61.866667pt;}
.fs1_c00240{font-size:68.266667pt;}
.y0_c00240{bottom:0.000000pt;}
.y1a_c00240{bottom:66.560000pt;}
.y19_c00240{bottom:133.760000pt;}
.y17_c00240{bottom:189.128533pt;}
.y18_c00240{bottom:189.133333pt;}
.y16_c00240{bottom:217.293333pt;}
.y15_c00240{bottom:272.973333pt;}
.y14_c00240{bottom:300.493333pt;}
.y13_c00240{bottom:356.813333pt;}
.y12_c00240{bottom:412.475200pt;}
.y11_c00240{bottom:440.655467pt;}
.y10_c00240{bottom:468.480000pt;}
.yf_c00240{bottom:523.853333pt;}
.ye_c00240{bottom:551.993067pt;}
.yd_c00240{bottom:580.173333pt;}
.yc_c00240{bottom:635.533333pt;}
.yb_c00240{bottom:691.853333pt;}
.ya_c00240{bottom:719.693333pt;}
.y9_c00240{bottom:747.858133pt;}
.y8_c00240{bottom:775.373333pt;}
.y7_c00240{bottom:830.720000pt;}
.y6_c00240{bottom:886.098133pt;}
.y4_c00240{bottom:913.608533pt;}
.y5_c00240{bottom:913.613333pt;}
.y3_c00240{bottom:969.613333pt;}
.y2_c00240{bottom:997.453333pt;}
.y1_c00240{bottom:1065.613333pt;}
.h8_c00240{height:51.296875pt;}
.h2_c00240{height:58.625000pt;}
.h7_c00240{height:59.119010pt;}
.h4_c00240{height:60.718750pt;}
.h5_c00240{height:62.856250pt;}
.h3_c00240{height:66.966667pt;}
.h6_c00240{height:67.000000pt;}
.h1_c00240{height:1122.666667pt;}
.h0_c00240{height:1122.880000pt;}
.w1_c00240{width:793.333333pt;}
.w0_c00240{width:793.600000pt;}
.x0_c00240{left:0.000000pt;}
.x12_c00240{left:107.022933pt;}
.xe_c00240{left:108.029333pt;}
.x1_c00240{left:109.693333pt;}
.x13_c00240{left:143.200000pt;}
.x14_c00240{left:155.026667pt;}
.xb_c00240{left:155.986667pt;}
.x4_c00240{left:157.687467pt;}
.x18_c00240{left:214.866667pt;}
.x5_c00240{left:217.426667pt;}
.x19_c00240{left:239.173333pt;}
.x6_c00240{left:242.026667pt;}
.x15_c00240{left:245.746667pt;}
.x2_c00240{left:270.066667pt;}
.x1c_c00240{left:283.053333pt;}
.x1d_c00240{left:295.813333pt;}
.x16_c00240{left:310.186667pt;}
.x1a_c00240{left:319.186667pt;}
.x7_c00240{left:321.106667pt;}
.x3_c00240{left:334.213333pt;}
.x1b_c00240{left:343.466667pt;}
.x8_c00240{left:348.906667pt;}
.xc_c00240{left:367.813333pt;}
.x1e_c00240{left:376.240000pt;}
.xd_c00240{left:385.120000pt;}
.xf_c00240{left:396.720000pt;}
.x10_c00240{left:425.466667pt;}
.x17_c00240{left:498.666667pt;}
.x9_c00240{left:506.706667pt;}
.xa_c00240{left:531.333333pt;}
.x11_c00240{left:607.600000pt;}
}





/* 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_c00241 {
    display:none;
  }
  .loading-indicator_c00241.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00241 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_c00241 { 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_c00241" -> "#page-container .classname_c00241")
 */
.pf_c00241 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00241 { /* 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_c00241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00241 { /* 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_c00241 { /* 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_c00241 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00241 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00241 {overflow:visible;}
  }
}
.c_c00241 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00241 { /* 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_c00241:after { /* webkit #35443 */
  content: '';
}
.t_c00241:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00241 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 */
}
.__c00241 { /* 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_c00241 { /* info for Javascript */
  display:none;
}
.l_c00241 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00241 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00241 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00241: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_c00241 {
    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_c00241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00241.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_c00241 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00241;src:url('chunks/assets/font_af59c95170152881cee3c697.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.311035;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_c00241;src:url('chunks/assets/font_e1711aa34e17fecc9eac961b.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.284180;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_c00241;src:url('chunks/assets/font_abc365a70dd6ef86667dc9f4.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.284668;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_c00241;src:url('chunks/assets/font_0d4019b1b65e96e667694cd8.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;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;}
.m3_c00241{transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);}
.m2_c00241{transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);}
.m1_c00241{transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);}
.m5_c00241{transform:matrix(0.225393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225393,0.000000,0.000000,0.250000,0,0);}
.m4_c00241{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m7_c00241{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m6_c00241{transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);}
.m0_c00241{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);}
.v0_c00241{vertical-align:0.000000px;}
.ls65_c00241{letter-spacing:-2.562000px;}
.ls80_c00241{letter-spacing:-2.394000px;}
.ls5b_c00241{letter-spacing:-2.373000px;}
.ls6d_c00241{letter-spacing:-2.310000px;}
.ls7f_c00241{letter-spacing:-2.176380px;}
.ls57_c00241{letter-spacing:-2.168280px;}
.ls72_c00241{letter-spacing:-1.963080px;}
.ls71_c00241{letter-spacing:-1.839960px;}
.ls68_c00241{letter-spacing:-1.819440px;}
.ls56_c00241{letter-spacing:-1.258560px;}
.ls6a_c00241{letter-spacing:-1.197000px;}
.ls74_c00241{letter-spacing:-0.950760px;}
.ls7e_c00241{letter-spacing:-0.834480px;}
.ls5e_c00241{letter-spacing:-0.684000px;}
.ls67_c00241{letter-spacing:-0.663480px;}
.ls55_c00241{letter-spacing:-0.601920px;}
.ls6b_c00241{letter-spacing:-0.581400px;}
.ls54_c00241{letter-spacing:-0.533520px;}
.ls5d_c00241{letter-spacing:-0.526680px;}
.ls64_c00241{letter-spacing:-0.499320px;}
.ls7a_c00241{letter-spacing:-0.485640px;}
.ls6e_c00241{letter-spacing:-0.458280px;}
.ls84_c00241{letter-spacing:-0.450300px;}
.ls6c_c00241{letter-spacing:-0.417240px;}
.ls83_c00241{letter-spacing:-0.396720px;}
.ls6f_c00241{letter-spacing:-0.376200px;}
.ls76_c00241{letter-spacing:-0.307800px;}
.ls77_c00241{letter-spacing:-0.294120px;}
.ls7d_c00241{letter-spacing:-0.287280px;}
.ls78_c00241{letter-spacing:-0.212040px;}
.ls61_c00241{letter-spacing:-0.191520px;}
.ls82_c00241{letter-spacing:-0.177840px;}
.ls73_c00241{letter-spacing:-0.171000px;}
.ls66_c00241{letter-spacing:-0.164160px;}
.ls62_c00241{letter-spacing:-0.157320px;}
.ls79_c00241{letter-spacing:-0.143640px;}
.ls7b_c00241{letter-spacing:-0.116280px;}
.ls70_c00241{letter-spacing:-0.102600px;}
.ls60_c00241{letter-spacing:-0.068400px;}
.ls63_c00241{letter-spacing:-0.054720px;}
.ls7c_c00241{letter-spacing:-0.047880px;}
.ls5a_c00241{letter-spacing:-0.041040px;}
.ls59_c00241{letter-spacing:-0.034200px;}
.ls75_c00241{letter-spacing:-0.020520px;}
.ls69_c00241{letter-spacing:-0.006840px;}
.ls5c_c00241{letter-spacing:0.000000px;}
.ls58_c00241{letter-spacing:0.006840px;}
.lse_c00241{letter-spacing:0.034200px;}
.ls4f_c00241{letter-spacing:0.047880px;}
.ls35_c00241{letter-spacing:0.075240px;}
.ls19_c00241{letter-spacing:0.088920px;}
.ls2c_c00241{letter-spacing:0.095760px;}
.ls3_c00241{letter-spacing:0.102600px;}
.lsb_c00241{letter-spacing:0.109440px;}
.ls16_c00241{letter-spacing:0.116280px;}
.ls45_c00241{letter-spacing:0.129960px;}
.ls23_c00241{letter-spacing:0.143640px;}
.ls38_c00241{letter-spacing:0.164160px;}
.ls4c_c00241{letter-spacing:0.191520px;}
.ls4d_c00241{letter-spacing:0.205200px;}
.ls18_c00241{letter-spacing:0.212040px;}
.ls20_c00241{letter-spacing:0.225720px;}
.ls50_c00241{letter-spacing:0.232560px;}
.ls5f_c00241{letter-spacing:0.259920px;}
.ls22_c00241{letter-spacing:0.266760px;}
.ls1_c00241{letter-spacing:0.288960px;}
.ls2e_c00241{letter-spacing:0.300960px;}
.ls13_c00241{letter-spacing:0.314640px;}
.lsf_c00241{letter-spacing:0.328320px;}
.ls51_c00241{letter-spacing:0.335160px;}
.ls1c_c00241{letter-spacing:0.348840px;}
.ls2_c00241{letter-spacing:0.355680px;}
.ls1e_c00241{letter-spacing:0.362520px;}
.ls3c_c00241{letter-spacing:0.369360px;}
.ls5_c00241{letter-spacing:0.376200px;}
.ls41_c00241{letter-spacing:0.389880px;}
.ls43_c00241{letter-spacing:0.417240px;}
.ls2d_c00241{letter-spacing:0.424080px;}
.ls21_c00241{letter-spacing:0.430920px;}
.ls26_c00241{letter-spacing:0.437760px;}
.ls32_c00241{letter-spacing:0.451440px;}
.ls4b_c00241{letter-spacing:0.458280px;}
.ls81_c00241{letter-spacing:0.465120px;}
.ls8_c00241{letter-spacing:0.470400px;}
.ls4_c00241{letter-spacing:0.485640px;}
.ls2a_c00241{letter-spacing:0.492480px;}
.ls37_c00241{letter-spacing:0.499320px;}
.lsa_c00241{letter-spacing:0.513000px;}
.ls4a_c00241{letter-spacing:0.517440px;}
.ls1b_c00241{letter-spacing:0.519840px;}
.ls42_c00241{letter-spacing:0.526680px;}
.ls12_c00241{letter-spacing:0.547200px;}
.ls14_c00241{letter-spacing:0.554040px;}
.ls44_c00241{letter-spacing:0.560880px;}
.ls15_c00241{letter-spacing:0.567720px;}
.ls3a_c00241{letter-spacing:0.571200px;}
.ls31_c00241{letter-spacing:0.581400px;}
.ls10_c00241{letter-spacing:0.588240px;}
.ls48_c00241{letter-spacing:0.622440px;}
.ls3d_c00241{letter-spacing:0.642960px;}
.ls2f_c00241{letter-spacing:0.663480px;}
.ls17_c00241{letter-spacing:0.677160px;}
.ls4e_c00241{letter-spacing:0.690840px;}
.ls1f_c00241{letter-spacing:0.718200px;}
.ls11_c00241{letter-spacing:0.793440px;}
.ls9_c00241{letter-spacing:0.827640px;}
.ls1d_c00241{letter-spacing:0.853440px;}
.ls3b_c00241{letter-spacing:0.868680px;}
.ls36_c00241{letter-spacing:0.873600px;}
.ls0_c00241{letter-spacing:0.887040px;}
.lsc_c00241{letter-spacing:0.943920px;}
.ls40_c00241{letter-spacing:0.964440px;}
.ls27_c00241{letter-spacing:1.012320px;}
.lsd_c00241{letter-spacing:1.026000px;}
.ls6_c00241{letter-spacing:1.048320px;}
.ls52_c00241{letter-spacing:1.067040px;}
.ls46_c00241{letter-spacing:1.114920px;}
.ls3e_c00241{letter-spacing:1.128960px;}
.ls34_c00241{letter-spacing:1.149120px;}
.ls1a_c00241{letter-spacing:1.169280px;}
.ls39_c00241{letter-spacing:1.229760px;}
.ls24_c00241{letter-spacing:1.238040px;}
.ls7_c00241{letter-spacing:1.265400px;}
.ls49_c00241{letter-spacing:1.317120px;}
.ls3f_c00241{letter-spacing:1.333800px;}
.ls47_c00241{letter-spacing:1.340640px;}
.ls25_c00241{letter-spacing:1.648440px;}
.ls53_c00241{letter-spacing:1.804200px;}
.ls30_c00241{letter-spacing:1.812600px;}
.ls29_c00241{letter-spacing:1.839960px;}
.ls33_c00241{letter-spacing:2.236680px;}
.ls2b_c00241{letter-spacing:2.715480px;}
.ls28_c00241{letter-spacing:3.091680px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{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__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00241{word-spacing:-0.042720px;}
.ws6_c00241{word-spacing:0.000000px;}
.ws3_c00241{word-spacing:0.175200px;}
.ws0_c00241{word-spacing:0.232320px;}
.ws4_c00241{word-spacing:0.660000px;}
.ws5_c00241{word-spacing:3.819840px;}
.ws2_c00241{word-spacing:10.084800px;}
._13_c00241{margin-left:-7.004160px;}
._e_c00241{margin-left:-4.711800px;}
._b_c00241{margin-left:-3.173760px;}
._2_c00241{margin-left:-1.422720px;}
._4_c00241{width:1.183320px;}
._1_c00241{width:2.804160px;}
._0_c00241{width:4.045440px;}
._3_c00241{width:5.985000px;}
._15_c00241{width:7.143480px;}
._c_c00241{width:8.296920px;}
._5_c00241{width:10.435320px;}
._14_c00241{width:11.586960px;}
._11_c00241{width:12.948120px;}
._12_c00241{width:13.967280px;}
._d_c00241{width:15.075360px;}
._a_c00241{width:16.251840px;}
._18_c00241{width:19.104120px;}
._f_c00241{width:20.273760px;}
._17_c00241{width:21.751200px;}
._16_c00241{width:22.804560px;}
._8_c00241{width:24.028920px;}
._7_c00241{width:25.472160px;}
._9_c00241{width:27.168480px;}
._6_c00241{width:29.206800px;}
._10_c00241{width:47.093400px;}
.fc0_c00241{color:transparent;}
.fs6_c00241{font-size:57.000000px;}
.fs0_c00241{font-size:58.200000px;}
.fs5_c00241{font-size:66.000000px;}
.fs1_c00241{font-size:67.200000px;}
.fs3_c00241{font-size:67.800000px;}
.fs2_c00241{font-size:68.400000px;}
.fs4_c00241{font-size:73.200000px;}
.y0_c00241{bottom:0.000000px;}
.y19_c00241{bottom:71.295015px;}
.y17_c00241{bottom:210.240615px;}
.y18_c00241{bottom:210.255015px;}
.y16_c00241{bottom:241.926915px;}
.y15_c00241{bottom:272.895015px;}
.y14_c00241{bottom:336.634815px;}
.y13_c00241{bottom:366.491415px;}
.y12_c00241{bottom:397.459515px;}
.y11_c00241{bottom:460.817715px;}
.y10_c00241{bottom:523.458615px;}
.yf_c00241{bottom:586.455015px;}
.ye_c00241{bottom:648.735015px;}
.yc_c00241{bottom:711.366915px;}
.yd_c00241{bottom:711.375015px;}
.yb_c00241{bottom:742.335015px;}
.y9_c00241{bottom:804.960615px;}
.ya_c00241{bottom:804.975015px;}
.y8_c00241{bottom:836.287815px;}
.y7_c00241{bottom:867.615015px;}
.y6_c00241{bottom:929.520015px;}
.y5_c00241{bottom:992.177715px;}
.y4_c00241{bottom:1023.846915px;}
.y3_c00241{bottom:1054.815015px;}
.y2_c00241{bottom:1117.455015px;}
.y1_c00241{bottom:1192.680015px;}
.ha_c00241{height:55.942383px;}
.h2_c00241{height:58.654687px;}
.h3_c00241{height:67.130859px;}
.h8_c00241{height:67.163259px;}
.h6_c00241{height:67.188459px;}
.h9_c00241{height:67.710600px;}
.h7_c00241{height:68.835938px;}
.h4_c00241{height:70.713281px;}
.h5_c00241{height:76.345312px;}
.h1_c00241{height:1263.000000px;}
.h0_c00241{height:1263.240015px;}
.w1_c00241{width:892.500000px;}
.w0_c00241{width:892.800015px;}
.x0_c00241{left:0.000000px;}
.xc_c00241{left:124.034115px;}
.x1_c00241{left:125.205015px;}
.x5_c00241{left:126.567315px;}
.xd_c00241{left:177.645015px;}
.xb_c00241{left:179.085015px;}
.x2_c00241{left:180.390015px;}
.x11_c00241{left:352.620015px;}
.x9_c00241{left:359.055015px;}
.x12_c00241{left:368.850015px;}
.x3_c00241{left:384.630015px;}
.x4_c00241{left:404.820015px;}
.x13_c00241{left:423.990015px;}
.xa_c00241{left:444.735015px;}
.x6_c00241{left:462.135015px;}
.x7_c00241{left:493.770015px;}
.xe_c00241{left:526.515015px;}
.xf_c00241{left:655.770015px;}
.x10_c00241{left:674.115015px;}
.x8_c00241{left:683.895015px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls65_c00241{letter-spacing:-2.277333pt;}
.ls80_c00241{letter-spacing:-2.128000pt;}
.ls5b_c00241{letter-spacing:-2.109333pt;}
.ls6d_c00241{letter-spacing:-2.053333pt;}
.ls7f_c00241{letter-spacing:-1.934560pt;}
.ls57_c00241{letter-spacing:-1.927360pt;}
.ls72_c00241{letter-spacing:-1.744960pt;}
.ls71_c00241{letter-spacing:-1.635520pt;}
.ls68_c00241{letter-spacing:-1.617280pt;}
.ls56_c00241{letter-spacing:-1.118720pt;}
.ls6a_c00241{letter-spacing:-1.064000pt;}
.ls74_c00241{letter-spacing:-0.845120pt;}
.ls7e_c00241{letter-spacing:-0.741760pt;}
.ls5e_c00241{letter-spacing:-0.608000pt;}
.ls67_c00241{letter-spacing:-0.589760pt;}
.ls55_c00241{letter-spacing:-0.535040pt;}
.ls6b_c00241{letter-spacing:-0.516800pt;}
.ls54_c00241{letter-spacing:-0.474240pt;}
.ls5d_c00241{letter-spacing:-0.468160pt;}
.ls64_c00241{letter-spacing:-0.443840pt;}
.ls7a_c00241{letter-spacing:-0.431680pt;}
.ls6e_c00241{letter-spacing:-0.407360pt;}
.ls84_c00241{letter-spacing:-0.400267pt;}
.ls6c_c00241{letter-spacing:-0.370880pt;}
.ls83_c00241{letter-spacing:-0.352640pt;}
.ls6f_c00241{letter-spacing:-0.334400pt;}
.ls76_c00241{letter-spacing:-0.273600pt;}
.ls77_c00241{letter-spacing:-0.261440pt;}
.ls7d_c00241{letter-spacing:-0.255360pt;}
.ls78_c00241{letter-spacing:-0.188480pt;}
.ls61_c00241{letter-spacing:-0.170240pt;}
.ls82_c00241{letter-spacing:-0.158080pt;}
.ls73_c00241{letter-spacing:-0.152000pt;}
.ls66_c00241{letter-spacing:-0.145920pt;}
.ls62_c00241{letter-spacing:-0.139840pt;}
.ls79_c00241{letter-spacing:-0.127680pt;}
.ls7b_c00241{letter-spacing:-0.103360pt;}
.ls70_c00241{letter-spacing:-0.091200pt;}
.ls60_c00241{letter-spacing:-0.060800pt;}
.ls63_c00241{letter-spacing:-0.048640pt;}
.ls7c_c00241{letter-spacing:-0.042560pt;}
.ls5a_c00241{letter-spacing:-0.036480pt;}
.ls59_c00241{letter-spacing:-0.030400pt;}
.ls75_c00241{letter-spacing:-0.018240pt;}
.ls69_c00241{letter-spacing:-0.006080pt;}
.ls5c_c00241{letter-spacing:0.000000pt;}
.ls58_c00241{letter-spacing:0.006080pt;}
.lse_c00241{letter-spacing:0.030400pt;}
.ls4f_c00241{letter-spacing:0.042560pt;}
.ls35_c00241{letter-spacing:0.066880pt;}
.ls19_c00241{letter-spacing:0.079040pt;}
.ls2c_c00241{letter-spacing:0.085120pt;}
.ls3_c00241{letter-spacing:0.091200pt;}
.lsb_c00241{letter-spacing:0.097280pt;}
.ls16_c00241{letter-spacing:0.103360pt;}
.ls45_c00241{letter-spacing:0.115520pt;}
.ls23_c00241{letter-spacing:0.127680pt;}
.ls38_c00241{letter-spacing:0.145920pt;}
.ls4c_c00241{letter-spacing:0.170240pt;}
.ls4d_c00241{letter-spacing:0.182400pt;}
.ls18_c00241{letter-spacing:0.188480pt;}
.ls20_c00241{letter-spacing:0.200640pt;}
.ls50_c00241{letter-spacing:0.206720pt;}
.ls5f_c00241{letter-spacing:0.231040pt;}
.ls22_c00241{letter-spacing:0.237120pt;}
.ls1_c00241{letter-spacing:0.256853pt;}
.ls2e_c00241{letter-spacing:0.267520pt;}
.ls13_c00241{letter-spacing:0.279680pt;}
.lsf_c00241{letter-spacing:0.291840pt;}
.ls51_c00241{letter-spacing:0.297920pt;}
.ls1c_c00241{letter-spacing:0.310080pt;}
.ls2_c00241{letter-spacing:0.316160pt;}
.ls1e_c00241{letter-spacing:0.322240pt;}
.ls3c_c00241{letter-spacing:0.328320pt;}
.ls5_c00241{letter-spacing:0.334400pt;}
.ls41_c00241{letter-spacing:0.346560pt;}
.ls43_c00241{letter-spacing:0.370880pt;}
.ls2d_c00241{letter-spacing:0.376960pt;}
.ls21_c00241{letter-spacing:0.383040pt;}
.ls26_c00241{letter-spacing:0.389120pt;}
.ls32_c00241{letter-spacing:0.401280pt;}
.ls4b_c00241{letter-spacing:0.407360pt;}
.ls81_c00241{letter-spacing:0.413440pt;}
.ls8_c00241{letter-spacing:0.418133pt;}
.ls4_c00241{letter-spacing:0.431680pt;}
.ls2a_c00241{letter-spacing:0.437760pt;}
.ls37_c00241{letter-spacing:0.443840pt;}
.lsa_c00241{letter-spacing:0.456000pt;}
.ls4a_c00241{letter-spacing:0.459947pt;}
.ls1b_c00241{letter-spacing:0.462080pt;}
.ls42_c00241{letter-spacing:0.468160pt;}
.ls12_c00241{letter-spacing:0.486400pt;}
.ls14_c00241{letter-spacing:0.492480pt;}
.ls44_c00241{letter-spacing:0.498560pt;}
.ls15_c00241{letter-spacing:0.504640pt;}
.ls3a_c00241{letter-spacing:0.507733pt;}
.ls31_c00241{letter-spacing:0.516800pt;}
.ls10_c00241{letter-spacing:0.522880pt;}
.ls48_c00241{letter-spacing:0.553280pt;}
.ls3d_c00241{letter-spacing:0.571520pt;}
.ls2f_c00241{letter-spacing:0.589760pt;}
.ls17_c00241{letter-spacing:0.601920pt;}
.ls4e_c00241{letter-spacing:0.614080pt;}
.ls1f_c00241{letter-spacing:0.638400pt;}
.ls11_c00241{letter-spacing:0.705280pt;}
.ls9_c00241{letter-spacing:0.735680pt;}
.ls1d_c00241{letter-spacing:0.758613pt;}
.ls3b_c00241{letter-spacing:0.772160pt;}
.ls36_c00241{letter-spacing:0.776533pt;}
.ls0_c00241{letter-spacing:0.788480pt;}
.lsc_c00241{letter-spacing:0.839040pt;}
.ls40_c00241{letter-spacing:0.857280pt;}
.ls27_c00241{letter-spacing:0.899840pt;}
.lsd_c00241{letter-spacing:0.912000pt;}
.ls6_c00241{letter-spacing:0.931840pt;}
.ls52_c00241{letter-spacing:0.948480pt;}
.ls46_c00241{letter-spacing:0.991040pt;}
.ls3e_c00241{letter-spacing:1.003520pt;}
.ls34_c00241{letter-spacing:1.021440pt;}
.ls1a_c00241{letter-spacing:1.039360pt;}
.ls39_c00241{letter-spacing:1.093120pt;}
.ls24_c00241{letter-spacing:1.100480pt;}
.ls7_c00241{letter-spacing:1.124800pt;}
.ls49_c00241{letter-spacing:1.170773pt;}
.ls3f_c00241{letter-spacing:1.185600pt;}
.ls47_c00241{letter-spacing:1.191680pt;}
.ls25_c00241{letter-spacing:1.465280pt;}
.ls53_c00241{letter-spacing:1.603733pt;}
.ls30_c00241{letter-spacing:1.611200pt;}
.ls29_c00241{letter-spacing:1.635520pt;}
.ls33_c00241{letter-spacing:1.988160pt;}
.ls2b_c00241{letter-spacing:2.413760pt;}
.ls28_c00241{letter-spacing:2.748160pt;}
.ws1_c00241{word-spacing:-0.037973pt;}
.ws6_c00241{word-spacing:0.000000pt;}
.ws3_c00241{word-spacing:0.155733pt;}
.ws0_c00241{word-spacing:0.206507pt;}
.ws4_c00241{word-spacing:0.586667pt;}
.ws5_c00241{word-spacing:3.395413pt;}
.ws2_c00241{word-spacing:8.964267pt;}
._13_c00241{margin-left:-6.225920pt;}
._e_c00241{margin-left:-4.188267pt;}
._b_c00241{margin-left:-2.821120pt;}
._2_c00241{margin-left:-1.264640pt;}
._4_c00241{width:1.051840pt;}
._1_c00241{width:2.492587pt;}
._0_c00241{width:3.595947pt;}
._3_c00241{width:5.320000pt;}
._15_c00241{width:6.349760pt;}
._c_c00241{width:7.375040pt;}
._5_c00241{width:9.275840pt;}
._14_c00241{width:10.299520pt;}
._11_c00241{width:11.509440pt;}
._12_c00241{width:12.415360pt;}
._d_c00241{width:13.400320pt;}
._a_c00241{width:14.446080pt;}
._18_c00241{width:16.981440pt;}
._f_c00241{width:18.021120pt;}
._17_c00241{width:19.334400pt;}
._16_c00241{width:20.270720pt;}
._8_c00241{width:21.359040pt;}
._7_c00241{width:22.641920pt;}
._9_c00241{width:24.149760pt;}
._6_c00241{width:25.961600pt;}
._10_c00241{width:41.860800pt;}
.fs6_c00241{font-size:50.666667pt;}
.fs0_c00241{font-size:51.733333pt;}
.fs5_c00241{font-size:58.666667pt;}
.fs1_c00241{font-size:59.733333pt;}
.fs3_c00241{font-size:60.266667pt;}
.fs2_c00241{font-size:60.800000pt;}
.fs4_c00241{font-size:65.066667pt;}
.y0_c00241{bottom:0.000000pt;}
.y19_c00241{bottom:63.373347pt;}
.y17_c00241{bottom:186.880547pt;}
.y18_c00241{bottom:186.893347pt;}
.y16_c00241{bottom:215.046147pt;}
.y15_c00241{bottom:242.573347pt;}
.y14_c00241{bottom:299.230947pt;}
.y13_c00241{bottom:325.770147pt;}
.y12_c00241{bottom:353.297347pt;}
.y11_c00241{bottom:409.615747pt;}
.y10_c00241{bottom:465.296547pt;}
.yf_c00241{bottom:521.293347pt;}
.ye_c00241{bottom:576.653347pt;}
.yc_c00241{bottom:632.326147pt;}
.yd_c00241{bottom:632.333347pt;}
.yb_c00241{bottom:659.853347pt;}
.y9_c00241{bottom:715.520547pt;}
.ya_c00241{bottom:715.533347pt;}
.y8_c00241{bottom:743.366947pt;}
.y7_c00241{bottom:771.213347pt;}
.y6_c00241{bottom:826.240013pt;}
.y5_c00241{bottom:881.935747pt;}
.y4_c00241{bottom:910.086147pt;}
.y3_c00241{bottom:937.613347pt;}
.y2_c00241{bottom:993.293347pt;}
.y1_c00241{bottom:1060.160013pt;}
.ha_c00241{height:49.726562pt;}
.h2_c00241{height:52.137500pt;}
.h3_c00241{height:59.671875pt;}
.h8_c00241{height:59.700675pt;}
.h6_c00241{height:59.723075pt;}
.h9_c00241{height:60.187200pt;}
.h7_c00241{height:61.187500pt;}
.h4_c00241{height:62.856250pt;}
.h5_c00241{height:67.862500pt;}
.h1_c00241{height:1122.666667pt;}
.h0_c00241{height:1122.880013pt;}
.w1_c00241{width:793.333333pt;}
.w0_c00241{width:793.600013pt;}
.x0_c00241{left:0.000000pt;}
.xc_c00241{left:110.252547pt;}
.x1_c00241{left:111.293347pt;}
.x5_c00241{left:112.504280pt;}
.xd_c00241{left:157.906680pt;}
.xb_c00241{left:159.186680pt;}
.x2_c00241{left:160.346680pt;}
.x11_c00241{left:313.440013pt;}
.x9_c00241{left:319.160013pt;}
.x12_c00241{left:327.866680pt;}
.x3_c00241{left:341.893347pt;}
.x4_c00241{left:359.840013pt;}
.x13_c00241{left:376.880013pt;}
.xa_c00241{left:395.320013pt;}
.x6_c00241{left:410.786680pt;}
.x7_c00241{left:438.906680pt;}
.xe_c00241{left:468.013347pt;}
.xf_c00241{left:582.906680pt;}
.x10_c00241{left:599.213347pt;}
.x8_c00241{left:607.906680pt;}
}





/* 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_c00242 {
    display:none;
  }
  .loading-indicator_c00242.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00242 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_c00242 { 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_c00242" -> "#page-container .classname_c00242")
 */
.pf_c00242 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00242 { /* 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_c00242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00242 { /* 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_c00242 { /* 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_c00242 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00242 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00242 {overflow:visible;}
  }
}
.c_c00242 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00242 { /* 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_c00242:after { /* webkit #35443 */
  content: '';
}
.t_c00242:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00242 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 */
}
.__c00242 { /* 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_c00242 { /* info for Javascript */
  display:none;
}
.l_c00242 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00242 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00242 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00242: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_c00242 {
    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_c00242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00242.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_c00242 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00242;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.311035;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_c00242;src:url('chunks/assets/font_650b34767d85c43d5ccef428.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.284668;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_c00242;src:url('chunks/assets/font_1953d69c4493fd6c370b162a.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.284180;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_c00242;src:url('chunks/assets/font_f5887fc1e8851e034696687e.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:1.284180;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_c00242;src:url('chunks/assets/font_dc4bff59991d45e36c2b1cb1.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;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;}
.m5_c00242{transform:matrix(0.218606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218606,0.000000,0.000000,0.250000,0,0);}
.m9_c00242{transform:matrix(0.235884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235884,0.000000,0.000000,0.250000,0,0);}
.m0_c00242{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m8_c00242{transform:matrix(0.239981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239981,0.000000,0.000000,0.250000,0,0);}
.m3_c00242{transform:matrix(0.241391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241391,0.000000,0.000000,0.250000,0,0);}
.m7_c00242{transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);}
.m1_c00242{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);}
.m4_c00242{transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);}
.m2_c00242{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.m6_c00242{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls76_c00242{letter-spacing:-2.583000px;}
.ls61_c00242{letter-spacing:-2.352000px;}
.ls5a_c00242{letter-spacing:-2.310000px;}
.ls78_c00242{letter-spacing:-2.247000px;}
.ls70_c00242{letter-spacing:-2.226000px;}
.ls67_c00242{letter-spacing:-2.096640px;}
.ls7a_c00242{letter-spacing:-2.037000px;}
.ls6a_c00242{letter-spacing:-1.921920px;}
.ls64_c00242{letter-spacing:-1.612800px;}
.ls60_c00242{letter-spacing:-1.135680px;}
.ls74_c00242{letter-spacing:-1.061760px;}
.ls5f_c00242{letter-spacing:-0.960960px;}
.ls65_c00242{letter-spacing:-0.907200px;}
.ls63_c00242{letter-spacing:-0.873600px;}
.ls6b_c00242{letter-spacing:-0.719040px;}
.ls6d_c00242{letter-spacing:-0.584640px;}
.ls6c_c00242{letter-spacing:-0.409920px;}
.ls66_c00242{letter-spacing:-0.389760px;}
.ls69_c00242{letter-spacing:-0.219780px;}
.ls68_c00242{letter-spacing:-0.134400px;}
.ls75_c00242{letter-spacing:-0.060480px;}
.ls5c_c00242{letter-spacing:-0.026880px;}
.ls62_c00242{letter-spacing:-0.013440px;}
.ls5b_c00242{letter-spacing:0.000000px;}
.ls29_c00242{letter-spacing:0.087360px;}
.ls2f_c00242{letter-spacing:0.161280px;}
.ls4f_c00242{letter-spacing:0.168000px;}
.ls1a_c00242{letter-spacing:0.188160px;}
.ls4d_c00242{letter-spacing:0.215040px;}
.ls79_c00242{letter-spacing:0.228480px;}
.ls1d_c00242{letter-spacing:0.295680px;}
.ls19_c00242{letter-spacing:0.322560px;}
.lsf_c00242{letter-spacing:0.396480px;}
.ls3a_c00242{letter-spacing:0.463680px;}
.ls23_c00242{letter-spacing:0.477120px;}
.lsa_c00242{letter-spacing:0.483840px;}
.ls4_c00242{letter-spacing:0.504000px;}
.ls8_c00242{letter-spacing:0.544320px;}
.ls46_c00242{letter-spacing:0.598080px;}
.ls14_c00242{letter-spacing:0.678720px;}
.ls73_c00242{letter-spacing:0.705600px;}
.ls10_c00242{letter-spacing:0.719040px;}
.ls35_c00242{letter-spacing:0.745920px;}
.ls5d_c00242{letter-spacing:0.799680px;}
.lsd_c00242{letter-spacing:0.819840px;}
.ls40_c00242{letter-spacing:0.825840px;}
.ls49_c00242{letter-spacing:0.826560px;}
.ls42_c00242{letter-spacing:0.833280px;}
.ls27_c00242{letter-spacing:0.840000px;}
.lsb_c00242{letter-spacing:0.848160px;}
.ls48_c00242{letter-spacing:0.860160px;}
.ls50_c00242{letter-spacing:0.866880px;}
.ls43_c00242{letter-spacing:0.880320px;}
.ls11_c00242{letter-spacing:0.907200px;}
.ls13_c00242{letter-spacing:0.913920px;}
.ls34_c00242{letter-spacing:0.920640px;}
.ls16_c00242{letter-spacing:0.927360px;}
.lsc_c00242{letter-spacing:0.930240px;}
.ls4a_c00242{letter-spacing:0.940800px;}
.ls2_c00242{letter-spacing:0.960960px;}
.ls71_c00242{letter-spacing:0.981120px;}
.ls1f_c00242{letter-spacing:0.985680px;}
.ls15_c00242{letter-spacing:0.987840px;}
.ls1c_c00242{letter-spacing:0.994560px;}
.ls28_c00242{letter-spacing:1.001280px;}
.ls26_c00242{letter-spacing:1.028160px;}
.ls5_c00242{letter-spacing:1.041600px;}
.ls33_c00242{letter-spacing:1.048320px;}
.ls58_c00242{letter-spacing:1.055040px;}
.ls31_c00242{letter-spacing:1.068480px;}
.ls55_c00242{letter-spacing:1.095360px;}
.ls4c_c00242{letter-spacing:1.108800px;}
.ls3_c00242{letter-spacing:1.122240px;}
.ls39_c00242{letter-spacing:1.142400px;}
.ls18_c00242{letter-spacing:1.155840px;}
.ls6f_c00242{letter-spacing:1.162560px;}
.ls9_c00242{letter-spacing:1.169280px;}
.ls59_c00242{letter-spacing:1.178820px;}
.ls22_c00242{letter-spacing:1.196160px;}
.lse_c00242{letter-spacing:1.202880px;}
.ls57_c00242{letter-spacing:1.243200px;}
.ls44_c00242{letter-spacing:1.305360px;}
.ls3d_c00242{letter-spacing:1.317120px;}
.ls2d_c00242{letter-spacing:1.344000px;}
.ls53_c00242{letter-spacing:1.358640px;}
.ls45_c00242{letter-spacing:1.370880px;}
.ls51_c00242{letter-spacing:1.397760px;}
.ls7_c00242{letter-spacing:1.404480px;}
.ls1e_c00242{letter-spacing:1.418580px;}
.ls32_c00242{letter-spacing:1.451520px;}
.ls25_c00242{letter-spacing:1.471860px;}
.ls52_c00242{letter-spacing:1.538880px;}
.ls54_c00242{letter-spacing:1.545600px;}
.ls41_c00242{letter-spacing:1.559040px;}
.ls47_c00242{letter-spacing:1.565760px;}
.ls21_c00242{letter-spacing:1.599360px;}
.ls37_c00242{letter-spacing:1.606080px;}
.ls24_c00242{letter-spacing:1.618380px;}
.ls6_c00242{letter-spacing:1.632960px;}
.ls2b_c00242{letter-spacing:1.646400px;}
.ls2a_c00242{letter-spacing:1.684980px;}
.ls1b_c00242{letter-spacing:1.693440px;}
.ls4e_c00242{letter-spacing:1.774080px;}
.ls38_c00242{letter-spacing:1.814400px;}
.ls56_c00242{letter-spacing:1.841280px;}
.ls3f_c00242{letter-spacing:1.901760px;}
.ls17_c00242{letter-spacing:1.915200px;}
.ls2c_c00242{letter-spacing:1.962240px;}
.ls0_c00242{letter-spacing:1.968960px;}
.ls72_c00242{letter-spacing:1.989120px;}
.ls4b_c00242{letter-spacing:2.036160px;}
.ls1_c00242{letter-spacing:2.123520px;}
.ls77_c00242{letter-spacing:2.143680px;}
.ls30_c00242{letter-spacing:2.217600px;}
.ls3c_c00242{letter-spacing:2.231040px;}
.ls36_c00242{letter-spacing:2.244480px;}
.ls6e_c00242{letter-spacing:2.278080px;}
.ls3b_c00242{letter-spacing:2.365440px;}
.ls12_c00242{letter-spacing:2.553600px;}
.ls3e_c00242{letter-spacing:2.587200px;}
.ls20_c00242{letter-spacing:2.750580px;}
.ls2e_c00242{letter-spacing:2.755200px;}
.ls5e_c00242{letter-spacing:3.360000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{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__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00242{word-spacing:-0.643200px;}
.ws4_c00242{word-spacing:-0.376620px;}
.ws5_c00242{word-spacing:0.000000px;}
.ws2_c00242{word-spacing:9.279000px;}
.ws0_c00242{word-spacing:14.551680px;}
.ws3_c00242{word-spacing:22.413000px;}
._b_c00242{margin-left:-6.498240px;}
._4_c00242{margin-left:-4.636800px;}
._15_c00242{margin-left:-3.635040px;}
._0_c00242{margin-left:-2.472960px;}
._7_c00242{margin-left:-1.155840px;}
._3_c00242{width:1.310400px;}
._1_c00242{width:2.768640px;}
._5_c00242{width:4.065600px;}
._9_c00242{width:5.157000px;}
._2_c00242{width:6.396240px;}
._f_c00242{width:7.532760px;}
._6_c00242{width:8.937600px;}
._a_c00242{width:10.191480px;}
._8_c00242{width:12.085680px;}
._d_c00242{width:13.507200px;}
._e_c00242{width:15.579720px;}
._c_c00242{width:16.790160px;}
._13_c00242{width:19.165440px;}
._11_c00242{width:20.227200px;}
._10_c00242{width:21.561720px;}
._14_c00242{width:22.724280px;}
._12_c00242{width:25.233960px;}
._16_c00242{width:29.143440px;}
.fc0_c00242{color:transparent;}
.fs7_c00242{font-size:58.200000px;}
.fs4_c00242{font-size:63.600000px;}
.fs6_c00242{font-size:64.200000px;}
.fs0_c00242{font-size:66.000000px;}
.fs3_c00242{font-size:66.600000px;}
.fs1_c00242{font-size:67.200000px;}
.fs2_c00242{font-size:68.400000px;}
.fs5_c00242{font-size:73.800000px;}
.y0_c00242{bottom:0.000000px;}
.y19_c00242{bottom:64.440006px;}
.y18_c00242{bottom:202.335006px;}
.y17_c00242{bottom:265.330206px;}
.y16_c00242{bottom:297.015006px;}
.y15_c00242{bottom:360.015006px;}
.y14_c00242{bottom:391.313406px;}
.y13_c00242{bottom:423.015006px;}
.y12_c00242{bottom:485.280006px;}
.y11_c00242{bottom:547.934406px;}
.y10_c00242{bottom:579.972006px;}
.ye_c00242{bottom:611.635806px;}
.yf_c00242{bottom:611.640006px;}
.yd_c00242{bottom:642.615006px;}
.yc_c00242{bottom:704.880006px;}
.yb_c00242{bottom:736.557606px;}
.ya_c00242{bottom:767.520006px;}
.y9_c00242{bottom:830.508606px;}
.y8_c00242{bottom:862.210206px;}
.y6_c00242{bottom:924.132606px;}
.y7_c00242{bottom:924.135006px;}
.y5_c00242{bottom:955.095006px;}
.y4_c00242{bottom:1019.155806px;}
.y3_c00242{bottom:1050.135006px;}
.y2_c00242{bottom:1113.135006px;}
.y1_c00242{bottom:1189.455006px;}
.h9_c00242{height:60.700781px;}
.h6_c00242{height:62.419922px;}
.h3_c00242{height:65.953125px;}
.h5_c00242{height:65.998725px;}
.h2_c00242{height:66.515625px;}
.h8_c00242{height:66.958594px;}
.h4_c00242{height:67.097461px;}
.h7_c00242{height:72.394629px;}
.h1_c00242{height:1263.000000px;}
.h0_c00242{height:1263.240006px;}
.w1_c00242{width:892.500000px;}
.w0_c00242{width:892.799998px;}
.x0_c00242{left:0.000000px;}
.x12_c00242{left:119.366399px;}
.xb_c00242{left:120.470399px;}
.x5_c00242{left:122.935198px;}
.x1_c00242{left:124.124999px;}
.xa_c00242{left:174.389998px;}
.x7_c00242{left:175.961398px;}
.x2_c00242{left:177.674998px;}
.x13_c00242{left:211.709999px;}
.x8_c00242{left:272.309999px;}
.x9_c00242{left:288.269999px;}
.x6_c00242{left:322.949999px;}
.x14_c00242{left:330.254999px;}
.x15_c00242{left:388.604998px;}
.x16_c00242{left:423.599999px;}
.x3_c00242{left:446.744999px;}
.x4_c00242{left:469.199998px;}
.xe_c00242{left:478.289999px;}
.x10_c00242{left:561.059999px;}
.x11_c00242{left:584.099999px;}
.xf_c00242{left:681.389998px;}
.xc_c00242{left:696.599999px;}
.xd_c00242{left:718.229999px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls76_c00242{letter-spacing:-2.296000pt;}
.ls61_c00242{letter-spacing:-2.090667pt;}
.ls5a_c00242{letter-spacing:-2.053333pt;}
.ls78_c00242{letter-spacing:-1.997333pt;}
.ls70_c00242{letter-spacing:-1.978667pt;}
.ls67_c00242{letter-spacing:-1.863680pt;}
.ls7a_c00242{letter-spacing:-1.810667pt;}
.ls6a_c00242{letter-spacing:-1.708373pt;}
.ls64_c00242{letter-spacing:-1.433600pt;}
.ls60_c00242{letter-spacing:-1.009493pt;}
.ls74_c00242{letter-spacing:-0.943787pt;}
.ls5f_c00242{letter-spacing:-0.854187pt;}
.ls65_c00242{letter-spacing:-0.806400pt;}
.ls63_c00242{letter-spacing:-0.776533pt;}
.ls6b_c00242{letter-spacing:-0.639147pt;}
.ls6d_c00242{letter-spacing:-0.519680pt;}
.ls6c_c00242{letter-spacing:-0.364373pt;}
.ls66_c00242{letter-spacing:-0.346453pt;}
.ls69_c00242{letter-spacing:-0.195360pt;}
.ls68_c00242{letter-spacing:-0.119467pt;}
.ls75_c00242{letter-spacing:-0.053760pt;}
.ls5c_c00242{letter-spacing:-0.023893pt;}
.ls62_c00242{letter-spacing:-0.011947pt;}
.ls5b_c00242{letter-spacing:0.000000pt;}
.ls29_c00242{letter-spacing:0.077653pt;}
.ls2f_c00242{letter-spacing:0.143360pt;}
.ls4f_c00242{letter-spacing:0.149333pt;}
.ls1a_c00242{letter-spacing:0.167253pt;}
.ls4d_c00242{letter-spacing:0.191147pt;}
.ls79_c00242{letter-spacing:0.203093pt;}
.ls1d_c00242{letter-spacing:0.262827pt;}
.ls19_c00242{letter-spacing:0.286720pt;}
.lsf_c00242{letter-spacing:0.352427pt;}
.ls3a_c00242{letter-spacing:0.412160pt;}
.ls23_c00242{letter-spacing:0.424107pt;}
.lsa_c00242{letter-spacing:0.430080pt;}
.ls4_c00242{letter-spacing:0.448000pt;}
.ls8_c00242{letter-spacing:0.483840pt;}
.ls46_c00242{letter-spacing:0.531627pt;}
.ls14_c00242{letter-spacing:0.603307pt;}
.ls73_c00242{letter-spacing:0.627200pt;}
.ls10_c00242{letter-spacing:0.639147pt;}
.ls35_c00242{letter-spacing:0.663040pt;}
.ls5d_c00242{letter-spacing:0.710827pt;}
.lsd_c00242{letter-spacing:0.728747pt;}
.ls40_c00242{letter-spacing:0.734080pt;}
.ls49_c00242{letter-spacing:0.734720pt;}
.ls42_c00242{letter-spacing:0.740693pt;}
.ls27_c00242{letter-spacing:0.746667pt;}
.lsb_c00242{letter-spacing:0.753920pt;}
.ls48_c00242{letter-spacing:0.764587pt;}
.ls50_c00242{letter-spacing:0.770560pt;}
.ls43_c00242{letter-spacing:0.782507pt;}
.ls11_c00242{letter-spacing:0.806400pt;}
.ls13_c00242{letter-spacing:0.812373pt;}
.ls34_c00242{letter-spacing:0.818347pt;}
.ls16_c00242{letter-spacing:0.824320pt;}
.lsc_c00242{letter-spacing:0.826880pt;}
.ls4a_c00242{letter-spacing:0.836267pt;}
.ls2_c00242{letter-spacing:0.854187pt;}
.ls71_c00242{letter-spacing:0.872107pt;}
.ls1f_c00242{letter-spacing:0.876160pt;}
.ls15_c00242{letter-spacing:0.878080pt;}
.ls1c_c00242{letter-spacing:0.884053pt;}
.ls28_c00242{letter-spacing:0.890027pt;}
.ls26_c00242{letter-spacing:0.913920pt;}
.ls5_c00242{letter-spacing:0.925867pt;}
.ls33_c00242{letter-spacing:0.931840pt;}
.ls58_c00242{letter-spacing:0.937813pt;}
.ls31_c00242{letter-spacing:0.949760pt;}
.ls55_c00242{letter-spacing:0.973653pt;}
.ls4c_c00242{letter-spacing:0.985600pt;}
.ls3_c00242{letter-spacing:0.997547pt;}
.ls39_c00242{letter-spacing:1.015467pt;}
.ls18_c00242{letter-spacing:1.027413pt;}
.ls6f_c00242{letter-spacing:1.033387pt;}
.ls9_c00242{letter-spacing:1.039360pt;}
.ls59_c00242{letter-spacing:1.047840pt;}
.ls22_c00242{letter-spacing:1.063253pt;}
.lse_c00242{letter-spacing:1.069227pt;}
.ls57_c00242{letter-spacing:1.105067pt;}
.ls44_c00242{letter-spacing:1.160320pt;}
.ls3d_c00242{letter-spacing:1.170773pt;}
.ls2d_c00242{letter-spacing:1.194667pt;}
.ls53_c00242{letter-spacing:1.207680pt;}
.ls45_c00242{letter-spacing:1.218560pt;}
.ls51_c00242{letter-spacing:1.242453pt;}
.ls7_c00242{letter-spacing:1.248427pt;}
.ls1e_c00242{letter-spacing:1.260960pt;}
.ls32_c00242{letter-spacing:1.290240pt;}
.ls25_c00242{letter-spacing:1.308320pt;}
.ls52_c00242{letter-spacing:1.367893pt;}
.ls54_c00242{letter-spacing:1.373867pt;}
.ls41_c00242{letter-spacing:1.385813pt;}
.ls47_c00242{letter-spacing:1.391787pt;}
.ls21_c00242{letter-spacing:1.421653pt;}
.ls37_c00242{letter-spacing:1.427627pt;}
.ls24_c00242{letter-spacing:1.438560pt;}
.ls6_c00242{letter-spacing:1.451520pt;}
.ls2b_c00242{letter-spacing:1.463467pt;}
.ls2a_c00242{letter-spacing:1.497760pt;}
.ls1b_c00242{letter-spacing:1.505280pt;}
.ls4e_c00242{letter-spacing:1.576960pt;}
.ls38_c00242{letter-spacing:1.612800pt;}
.ls56_c00242{letter-spacing:1.636693pt;}
.ls3f_c00242{letter-spacing:1.690453pt;}
.ls17_c00242{letter-spacing:1.702400pt;}
.ls2c_c00242{letter-spacing:1.744213pt;}
.ls0_c00242{letter-spacing:1.750187pt;}
.ls72_c00242{letter-spacing:1.768107pt;}
.ls4b_c00242{letter-spacing:1.809920pt;}
.ls1_c00242{letter-spacing:1.887573pt;}
.ls77_c00242{letter-spacing:1.905493pt;}
.ls30_c00242{letter-spacing:1.971200pt;}
.ls3c_c00242{letter-spacing:1.983147pt;}
.ls36_c00242{letter-spacing:1.995093pt;}
.ls6e_c00242{letter-spacing:2.024960pt;}
.ls3b_c00242{letter-spacing:2.102613pt;}
.ls12_c00242{letter-spacing:2.269867pt;}
.ls3e_c00242{letter-spacing:2.299733pt;}
.ls20_c00242{letter-spacing:2.444960pt;}
.ls2e_c00242{letter-spacing:2.449067pt;}
.ls5e_c00242{letter-spacing:2.986667pt;}
.ws1_c00242{word-spacing:-0.571733pt;}
.ws4_c00242{word-spacing:-0.334773pt;}
.ws5_c00242{word-spacing:0.000000pt;}
.ws2_c00242{word-spacing:8.248000pt;}
.ws0_c00242{word-spacing:12.934827pt;}
.ws3_c00242{word-spacing:19.922667pt;}
._b_c00242{margin-left:-5.776213pt;}
._4_c00242{margin-left:-4.121600pt;}
._15_c00242{margin-left:-3.231147pt;}
._0_c00242{margin-left:-2.198187pt;}
._7_c00242{margin-left:-1.027413pt;}
._3_c00242{width:1.164800pt;}
._1_c00242{width:2.461013pt;}
._5_c00242{width:3.613867pt;}
._9_c00242{width:4.584000pt;}
._2_c00242{width:5.685547pt;}
._f_c00242{width:6.695787pt;}
._6_c00242{width:7.944533pt;}
._a_c00242{width:9.059093pt;}
._8_c00242{width:10.742827pt;}
._d_c00242{width:12.006400pt;}
._e_c00242{width:13.848640pt;}
._c_c00242{width:14.924587pt;}
._13_c00242{width:17.035947pt;}
._11_c00242{width:17.979733pt;}
._10_c00242{width:19.165973pt;}
._14_c00242{width:20.199360pt;}
._12_c00242{width:22.430187pt;}
._16_c00242{width:25.905280pt;}
.fs7_c00242{font-size:51.733333pt;}
.fs4_c00242{font-size:56.533333pt;}
.fs6_c00242{font-size:57.066667pt;}
.fs0_c00242{font-size:58.666667pt;}
.fs3_c00242{font-size:59.200000pt;}
.fs1_c00242{font-size:59.733333pt;}
.fs2_c00242{font-size:60.800000pt;}
.fs5_c00242{font-size:65.600000pt;}
.y0_c00242{bottom:0.000000pt;}
.y19_c00242{bottom:57.280005pt;}
.y18_c00242{bottom:179.853339pt;}
.y17_c00242{bottom:235.849072pt;}
.y16_c00242{bottom:264.013339pt;}
.y15_c00242{bottom:320.013339pt;}
.y14_c00242{bottom:347.834139pt;}
.y13_c00242{bottom:376.013339pt;}
.y12_c00242{bottom:431.360005pt;}
.y11_c00242{bottom:487.052805pt;}
.y10_c00242{bottom:515.530672pt;}
.ye_c00242{bottom:543.676272pt;}
.yf_c00242{bottom:543.680005pt;}
.yd_c00242{bottom:571.213339pt;}
.yc_c00242{bottom:626.560005pt;}
.yb_c00242{bottom:654.717872pt;}
.ya_c00242{bottom:682.240005pt;}
.y9_c00242{bottom:738.229872pt;}
.y8_c00242{bottom:766.409072pt;}
.y6_c00242{bottom:821.451205pt;}
.y7_c00242{bottom:821.453339pt;}
.y5_c00242{bottom:848.973339pt;}
.y4_c00242{bottom:905.916272pt;}
.y3_c00242{bottom:933.453339pt;}
.y2_c00242{bottom:989.453339pt;}
.y1_c00242{bottom:1057.293339pt;}
.h9_c00242{height:53.956250pt;}
.h6_c00242{height:55.484375pt;}
.h3_c00242{height:58.625000pt;}
.h5_c00242{height:58.665533pt;}
.h2_c00242{height:59.125000pt;}
.h8_c00242{height:59.518750pt;}
.h4_c00242{height:59.642187pt;}
.h7_c00242{height:64.350781pt;}
.h1_c00242{height:1122.666667pt;}
.h0_c00242{height:1122.880005pt;}
.w1_c00242{width:793.333333pt;}
.w0_c00242{width:793.599999pt;}
.x0_c00242{left:0.000000pt;}
.x12_c00242{left:106.103465pt;}
.xb_c00242{left:107.084799pt;}
.x5_c00242{left:109.275732pt;}
.x1_c00242{left:110.333332pt;}
.xa_c00242{left:155.013332pt;}
.x7_c00242{left:156.410132pt;}
.x2_c00242{left:157.933332pt;}
.x13_c00242{left:188.186665pt;}
.x8_c00242{left:242.053332pt;}
.x9_c00242{left:256.239999pt;}
.x6_c00242{left:287.066665pt;}
.x14_c00242{left:293.559999pt;}
.x15_c00242{left:345.426665pt;}
.x16_c00242{left:376.533332pt;}
.x3_c00242{left:397.106665pt;}
.x4_c00242{left:417.066665pt;}
.xe_c00242{left:425.146665pt;}
.x10_c00242{left:498.719999pt;}
.x11_c00242{left:519.199999pt;}
.xf_c00242{left:605.679999pt;}
.xc_c00242{left:619.199999pt;}
.xd_c00242{left:638.426665pt;}
}





/* 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_c00243 {
    display:none;
  }
  .loading-indicator_c00243.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00243 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_c00243 { 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_c00243" -> "#page-container .classname_c00243")
 */
.pf_c00243 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00243 { /* 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_c00243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00243 { /* 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_c00243 { /* 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_c00243 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00243 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00243 {overflow:visible;}
  }
}
.c_c00243 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00243 { /* 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_c00243:after { /* webkit #35443 */
  content: '';
}
.t_c00243:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00243 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 */
}
.__c00243 { /* 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_c00243 { /* info for Javascript */
  display:none;
}
.l_c00243 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00243 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00243 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00243: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_c00243 {
    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_c00243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00243.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_c00243 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00243;src:url('chunks/assets/font_43a452dfbd37cb0118dadd2e.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.284668;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_c00243;src:url('chunks/assets/font_93e4af592ed102648afddddf.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;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_c00243;src:url('chunks/assets/font_7b63616d70593da22ef06db5.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.284180;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_c00243;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;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;}
.m0_c00243{transform:matrix(0.113805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113805,0.000000,0.000000,0.250000,0,0);}
.m3_c00243{transform:matrix(0.116774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116774,0.000000,0.000000,0.250000,0,0);}
.m2_c00243{transform:matrix(0.242143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242143,0.000000,0.000000,0.250000,0,0);}
.m1_c00243{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);}
.v0_c00243{vertical-align:0.000000px;}
.ls6_c00243{letter-spacing:-2.478000px;}
.ls11_c00243{letter-spacing:-2.415000px;}
.ls10_c00243{letter-spacing:-2.310000px;}
.ls7_c00243{letter-spacing:-0.884760px;}
.lsd_c00243{letter-spacing:-0.162000px;}
.lse_c00243{letter-spacing:-0.058320px;}
.lsb_c00243{letter-spacing:0.000000px;}
.ls4_c00243{letter-spacing:0.025920px;}
.ls5_c00243{letter-spacing:0.123120px;}
.ls2_c00243{letter-spacing:0.239760px;}
.lsa_c00243{letter-spacing:0.298080px;}
.ls1_c00243{letter-spacing:0.324000px;}
.ls9_c00243{letter-spacing:0.375840px;}
.ls3_c00243{letter-spacing:0.628560px;}
.ls0_c00243{letter-spacing:0.648000px;}
.lsc_c00243{letter-spacing:1.082160px;}
.ls8_c00243{letter-spacing:1.425600px;}
.lsf_c00243{letter-spacing:2.105400px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{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__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00243{word-spacing:0.000000px;}
.ws1_c00243{word-spacing:0.777600px;}
.ws3_c00243{word-spacing:2.604960px;}
.ws2_c00243{word-spacing:2.734560px;}
.ws4_c00243{word-spacing:3.654720px;}
.ws0_c00243{word-spacing:3.752040px;}
.ws5_c00243{word-spacing:4.924800px;}
._0_c00243{width:1.684800px;}
.fc0_c00243{color:transparent;}
.fs1_c00243{font-size:60.600000px;}
.fs5_c00243{font-size:63.000000px;}
.fs3_c00243{font-size:64.200000px;}
.fs2_c00243{font-size:64.800000px;}
.fs6_c00243{font-size:66.000000px;}
.fs7_c00243{font-size:69.000000px;}
.fs0_c00243{font-size:70.800000px;}
.fs4_c00243{font-size:183.600000px;}
.y0_c00243{bottom:0.000000px;}
.ya_c00243{bottom:149.038200px;}
.y4_c00243{bottom:149.050800px;}
.y9_c00243{bottom:167.392800px;}
.y3_c00243{bottom:167.405400px;}
.y2_c00243{bottom:185.760000px;}
.y8_c00243{bottom:186.120000px;}
.yd_c00243{bottom:422.655000px;}
.y5_c00243{bottom:462.600000px;}
.y7_c00243{bottom:477.000000px;}
.y6_c00243{bottom:527.040000px;}
.y1_c00243{bottom:1080.000000px;}
.yc_c00243{bottom:1080.360000px;}
.yb_c00243{bottom:1146.975000px;}
.h9_c00243{height:59.475586px;}
.h6_c00243{height:61.831055px;}
.h4_c00243{height:63.008789px;}
.h3_c00243{height:63.566016px;}
.h7_c00243{height:64.775391px;}
.h8_c00243{height:67.719727px;}
.h2_c00243{height:69.486328px;}
.h5_c00243{height:191.489063px;}
.h1_c00243{height:1263.000000px;}
.h0_c00243{height:1263.240000px;}
.w1_c00243{width:892.500000px;}
.w0_c00243{width:892.800000px;}
.x0_c00243{left:0.000000px;}
.x1_c00243{left:119.970000px;}
.x3_c00243{left:123.334200px;}
.x2_c00243{left:124.620000px;}
.x4_c00243{left:303.030000px;}
.x7_c00243{left:336.450000px;}
.x6_c00243{left:400.860000px;}
.x5_c00243{left:451.020000px;}
.xb_c00243{left:631.230000px;}
.x8_c00243{left:675.990000px;}
.x9_c00243{left:749.070000px;}
.xa_c00243{left:796.770000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls6_c00243{letter-spacing:-2.202667pt;}
.ls11_c00243{letter-spacing:-2.146667pt;}
.ls10_c00243{letter-spacing:-2.053333pt;}
.ls7_c00243{letter-spacing:-0.786453pt;}
.lsd_c00243{letter-spacing:-0.144000pt;}
.lse_c00243{letter-spacing:-0.051840pt;}
.lsb_c00243{letter-spacing:0.000000pt;}
.ls4_c00243{letter-spacing:0.023040pt;}
.ls5_c00243{letter-spacing:0.109440pt;}
.ls2_c00243{letter-spacing:0.213120pt;}
.lsa_c00243{letter-spacing:0.264960pt;}
.ls1_c00243{letter-spacing:0.288000pt;}
.ls9_c00243{letter-spacing:0.334080pt;}
.ls3_c00243{letter-spacing:0.558720pt;}
.ls0_c00243{letter-spacing:0.576000pt;}
.lsc_c00243{letter-spacing:0.961920pt;}
.ls8_c00243{letter-spacing:1.267200pt;}
.lsf_c00243{letter-spacing:1.871467pt;}
.ws6_c00243{word-spacing:0.000000pt;}
.ws1_c00243{word-spacing:0.691200pt;}
.ws3_c00243{word-spacing:2.315520pt;}
.ws2_c00243{word-spacing:2.430720pt;}
.ws4_c00243{word-spacing:3.248640pt;}
.ws0_c00243{word-spacing:3.335147pt;}
.ws5_c00243{word-spacing:4.377600pt;}
._0_c00243{width:1.497600pt;}
.fs1_c00243{font-size:53.866667pt;}
.fs5_c00243{font-size:56.000000pt;}
.fs3_c00243{font-size:57.066667pt;}
.fs2_c00243{font-size:57.600000pt;}
.fs6_c00243{font-size:58.666667pt;}
.fs7_c00243{font-size:61.333333pt;}
.fs0_c00243{font-size:62.933333pt;}
.fs4_c00243{font-size:163.200000pt;}
.y0_c00243{bottom:0.000000pt;}
.ya_c00243{bottom:132.478400pt;}
.y4_c00243{bottom:132.489600pt;}
.y9_c00243{bottom:148.793600pt;}
.y3_c00243{bottom:148.804800pt;}
.y2_c00243{bottom:165.120000pt;}
.y8_c00243{bottom:165.440000pt;}
.yd_c00243{bottom:375.693333pt;}
.y5_c00243{bottom:411.200000pt;}
.y7_c00243{bottom:424.000000pt;}
.y6_c00243{bottom:468.480000pt;}
.y1_c00243{bottom:960.000000pt;}
.yc_c00243{bottom:960.320000pt;}
.yb_c00243{bottom:1019.533333pt;}
.h9_c00243{height:52.867187pt;}
.h6_c00243{height:54.960938pt;}
.h4_c00243{height:56.007812pt;}
.h3_c00243{height:56.503125pt;}
.h7_c00243{height:57.578125pt;}
.h8_c00243{height:60.195312pt;}
.h2_c00243{height:61.765625pt;}
.h5_c00243{height:170.212500pt;}
.h1_c00243{height:1122.666667pt;}
.h0_c00243{height:1122.880000pt;}
.w1_c00243{width:793.333333pt;}
.w0_c00243{width:793.600000pt;}
.x0_c00243{left:0.000000pt;}
.x1_c00243{left:106.640000pt;}
.x3_c00243{left:109.630400pt;}
.x2_c00243{left:110.773333pt;}
.x4_c00243{left:269.360000pt;}
.x7_c00243{left:299.066667pt;}
.x6_c00243{left:356.320000pt;}
.x5_c00243{left:400.906667pt;}
.xb_c00243{left:561.093333pt;}
.x8_c00243{left:600.880000pt;}
.x9_c00243{left:665.840000pt;}
.xa_c00243{left:708.240000pt;}
}





/* 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_c00244 {
    display:none;
  }
  .loading-indicator_c00244.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00244 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_c00244 { 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_c00244" -> "#page-container .classname_c00244")
 */
.pf_c00244 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00244 { /* 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_c00244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00244 { /* 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_c00244 { /* 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_c00244 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00244 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00244 {overflow:visible;}
  }
}
.c_c00244 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00244 { /* 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_c00244:after { /* webkit #35443 */
  content: '';
}
.t_c00244:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00244 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 */
}
.__c00244 { /* 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_c00244 { /* info for Javascript */
  display:none;
}
.l_c00244 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00244 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00244 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00244: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_c00244 {
    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_c00244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00244.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_c00244 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00244;src:url('chunks/assets/font_db1ff00892efe4c9956b254e.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.284668;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_c00244;src:url('chunks/assets/font_f42f08416c38ca3a845ece94.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.284180;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_c00244;src:url('chunks/assets/font_8d95c0a46f078c886e8d34c4.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:0.666000;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;}
.m7_c00244{transform:matrix(0.133207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133207,0.000000,0.000000,0.250000,0,0);}
.m5_c00244{transform:matrix(0.149778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149778,0.000000,0.000000,0.250000,0,0);}
.m2_c00244{transform:matrix(0.223247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223247,0.000000,0.000000,0.250000,0,0);}
.m1_c00244{transform:matrix(0.226348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226348,0.000000,0.000000,0.250000,0,0);}
.m8_c00244{transform:matrix(0.238416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238416,0.000000,0.000000,0.250000,0,0);}
.m4_c00244{transform:matrix(0.238602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238602,0.000000,0.000000,0.250000,0,0);}
.m6_c00244{transform:matrix(0.245861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245861,0.000000,0.000000,0.250000,0,0);}
.ma_c00244{transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);}
.m9_c00244{transform:matrix(0.247199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247199,0.000000,0.000000,0.250000,0,0);}
.m3_c00244{transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);}
.m0_c00244{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);}
.v0_c00244{vertical-align:0.000000px;}
.v1_c00244{vertical-align:24.480000px;}
.ls77_c00244{letter-spacing:-2.562000px;}
.ls76_c00244{letter-spacing:-2.547360px;}
.ls78_c00244{letter-spacing:-2.393640px;}
.ls63_c00244{letter-spacing:-2.373000px;}
.ls4d_c00244{letter-spacing:-2.342400px;}
.ls54_c00244{letter-spacing:-2.291640px;}
.ls6b_c00244{letter-spacing:-2.291160px;}
.ls5c_c00244{letter-spacing:-2.100000px;}
.ls6a_c00244{letter-spacing:-2.005680px;}
.ls5d_c00244{letter-spacing:-1.903200px;}
.ls49_c00244{letter-spacing:-1.891620px;}
.ls51_c00244{letter-spacing:-1.796700px;}
.ls67_c00244{letter-spacing:-1.727520px;}
.ls74_c00244{letter-spacing:-1.695000px;}
.ls55_c00244{letter-spacing:-1.683600px;}
.ls53_c00244{letter-spacing:-1.661100px;}
.ls64_c00244{letter-spacing:-1.600080px;}
.ls5a_c00244{letter-spacing:-1.588440px;}
.ls6e_c00244{letter-spacing:-1.515240px;}
.ls5e_c00244{letter-spacing:-1.403460px;}
.ls4e_c00244{letter-spacing:-1.361520px;}
.ls6f_c00244{letter-spacing:-1.163880px;}
.ls46_c00244{letter-spacing:-1.105320px;}
.ls4b_c00244{letter-spacing:-0.976320px;}
.ls47_c00244{letter-spacing:-0.783240px;}
.ls52_c00244{letter-spacing:-0.739020px;}
.ls71_c00244{letter-spacing:-0.725460px;}
.ls72_c00244{letter-spacing:-0.678000px;}
.ls50_c00244{letter-spacing:-0.616980px;}
.ls6d_c00244{letter-spacing:-0.549180px;}
.ls59_c00244{letter-spacing:-0.447480px;}
.ls6c_c00244{letter-spacing:-0.400020px;}
.ls61_c00244{letter-spacing:-0.311880px;}
.ls69_c00244{letter-spacing:-0.305100px;}
.ls66_c00244{letter-spacing:-0.277980px;}
.ls56_c00244{letter-spacing:-0.264420px;}
.ls75_c00244{letter-spacing:-0.176280px;}
.ls5b_c00244{letter-spacing:-0.169500px;}
.ls58_c00244{letter-spacing:-0.128820px;}
.ls4f_c00244{letter-spacing:-0.122040px;}
.ls79_c00244{letter-spacing:-0.115260px;}
.ls5f_c00244{letter-spacing:-0.074580px;}
.ls65_c00244{letter-spacing:-0.067800px;}
.ls68_c00244{letter-spacing:-0.020340px;}
.ls4a_c00244{letter-spacing:0.000000px;}
.ls2b_c00244{letter-spacing:0.020340px;}
.ls2_c00244{letter-spacing:0.027120px;}
.lse_c00244{letter-spacing:0.033900px;}
.ls2d_c00244{letter-spacing:0.040680px;}
.ls28_c00244{letter-spacing:0.081360px;}
.ls1a_c00244{letter-spacing:0.101700px;}
.ls44_c00244{letter-spacing:0.142380px;}
.ls42_c00244{letter-spacing:0.169500px;}
.ls10_c00244{letter-spacing:0.176280px;}
.ls3a_c00244{letter-spacing:0.183060px;}
.ls57_c00244{letter-spacing:0.189840px;}
.ls1b_c00244{letter-spacing:0.230520px;}
.ls37_c00244{letter-spacing:0.237300px;}
.ls21_c00244{letter-spacing:0.264420px;}
.ls23_c00244{letter-spacing:0.284760px;}
.ls7a_c00244{letter-spacing:0.298320px;}
.ls1_c00244{letter-spacing:0.311880px;}
.ls5_c00244{letter-spacing:0.339000px;}
.ls2f_c00244{letter-spacing:0.352560px;}
.lsf_c00244{letter-spacing:0.386460px;}
.ls1d_c00244{letter-spacing:0.393240px;}
.ls3c_c00244{letter-spacing:0.433920px;}
.ls25_c00244{letter-spacing:0.447480px;}
.ls7_c00244{letter-spacing:0.454260px;}
.ls2c_c00244{letter-spacing:0.461040px;}
.ls9_c00244{letter-spacing:0.467820px;}
.ls70_c00244{letter-spacing:0.481380px;}
.ls19_c00244{letter-spacing:0.508500px;}
.ls41_c00244{letter-spacing:0.535620px;}
.ls7b_c00244{letter-spacing:0.547200px;}
.ls26_c00244{letter-spacing:0.549180px;}
.ls14_c00244{letter-spacing:0.569520px;}
.ls15_c00244{letter-spacing:0.589860px;}
.ls3b_c00244{letter-spacing:0.596640px;}
.ls2a_c00244{letter-spacing:0.610200px;}
.ls4_c00244{letter-spacing:0.623760px;}
.ls39_c00244{letter-spacing:0.637320px;}
.ls2e_c00244{letter-spacing:0.664440px;}
.ls35_c00244{letter-spacing:0.678000px;}
.ls16_c00244{letter-spacing:0.705120px;}
.ls73_c00244{letter-spacing:0.718680px;}
.ls0_c00244{letter-spacing:0.745800px;}
.lsc_c00244{letter-spacing:0.759360px;}
.ls60_c00244{letter-spacing:0.766140px;}
.ls3e_c00244{letter-spacing:0.786480px;}
.ls8_c00244{letter-spacing:0.793260px;}
.ls18_c00244{letter-spacing:0.820380px;}
.ls43_c00244{letter-spacing:0.827160px;}
.ls13_c00244{letter-spacing:0.833940px;}
.lsd_c00244{letter-spacing:0.881400px;}
.ls3d_c00244{letter-spacing:0.928860px;}
.ls62_c00244{letter-spacing:0.942420px;}
.ls30_c00244{letter-spacing:0.949200px;}
.ls36_c00244{letter-spacing:0.955980px;}
.ls1c_c00244{letter-spacing:0.996660px;}
.lsb_c00244{letter-spacing:1.044120px;}
.ls17_c00244{letter-spacing:1.078020px;}
.ls20_c00244{letter-spacing:1.091580px;}
.ls34_c00244{letter-spacing:1.186500px;}
.ls48_c00244{letter-spacing:1.200060px;}
.ls3_c00244{letter-spacing:1.294980px;}
.lsa_c00244{letter-spacing:1.349220px;}
.ls32_c00244{letter-spacing:1.369560px;}
.ls22_c00244{letter-spacing:1.389900px;}
.ls27_c00244{letter-spacing:1.444140px;}
.ls1f_c00244{letter-spacing:1.484820px;}
.ls38_c00244{letter-spacing:1.545840px;}
.ls1e_c00244{letter-spacing:1.613640px;}
.ls45_c00244{letter-spacing:1.714980px;}
.ls3f_c00244{letter-spacing:1.722120px;}
.ls4c_c00244{letter-spacing:1.945860px;}
.ls31_c00244{letter-spacing:2.156040px;}
.ls24_c00244{letter-spacing:2.203500px;}
.ls11_c00244{letter-spacing:2.637420px;}
.ls6_c00244{letter-spacing:2.786580px;}
.ls12_c00244{letter-spacing:2.800140px;}
.ls40_c00244{letter-spacing:2.881500px;}
.ls33_c00244{letter-spacing:3.356100px;}
.ls29_c00244{letter-spacing:3.376440px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{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__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00244{word-spacing:-16.672020px;}
.ws6_c00244{word-spacing:0.000000px;}
.ws1_c00244{word-spacing:2.571360px;}
.ws2_c00244{word-spacing:6.997200px;}
.ws5_c00244{word-spacing:19.347960px;}
.ws4_c00244{word-spacing:21.138000px;}
.ws0_c00244{word-spacing:21.433200px;}
._16_c00244{margin-left:-16.456740px;}
._b_c00244{margin-left:-9.141780px;}
._c_c00244{margin-left:-7.519020px;}
._13_c00244{margin-left:-5.775840px;}
._0_c00244{margin-left:-4.545720px;}
._9_c00244{margin-left:-2.812020px;}
._d_c00244{margin-left:-1.113600px;}
._3_c00244{width:1.518720px;}
._1_c00244{width:3.124080px;}
._2_c00244{width:4.339200px;}
._17_c00244{width:5.350620px;}
._6_c00244{width:6.576600px;}
._e_c00244{width:8.525460px;}
._4_c00244{width:10.000500px;}
._11_c00244{width:11.024280px;}
._12_c00244{width:12.773820px;}
._14_c00244{width:13.919340px;}
._8_c00244{width:14.929560px;}
._5_c00244{width:15.983580px;}
._10_c00244{width:18.020940px;}
._7_c00244{width:19.323000px;}
._a_c00244{width:21.743700px;}
._f_c00244{width:23.028540px;}
._15_c00244{width:25.576200px;}
.fc0_c00244{color:transparent;}
.fs5_c00244{font-size:32.400600px;}
.fs4_c00244{font-size:46.800600px;}
.fs6_c00244{font-size:53.280000px;}
.fs7_c00244{font-size:57.600000px;}
.fs3_c00244{font-size:60.000000px;}
.fs0_c00244{font-size:60.600000px;}
.fs2_c00244{font-size:67.800000px;}
.fs1_c00244{font-size:73.200000px;}
.y0_c00244{bottom:0.000000px;}
.y18_c00244{bottom:72.735000px;}
.y17_c00244{bottom:181.080000px;}
.y15_c00244{bottom:244.089750px;}
.y16_c00244{bottom:244.095000px;}
.y14_c00244{bottom:306.720000px;}
.y13_c00244{bottom:336.975000px;}
.y12_c00244{bottom:399.609300px;}
.y11_c00244{bottom:430.560000px;}
.y10_c00244{bottom:493.560000px;}
.yf_c00244{bottom:524.895000px;}
.ye_c00244{bottom:587.902200px;}
.yd_c00244{bottom:618.480000px;}
.yc_c00244{bottom:681.480000px;}
.yb_c00244{bottom:681.483300px;}
.ya_c00244{bottom:712.093350px;}
.y9_c00244{bottom:743.400000px;}
.y8_c00244{bottom:805.695000px;}
.y7_c00244{bottom:869.051400px;}
.y6_c00244{bottom:900.375000px;}
.y5_c00244{bottom:962.655000px;}
.y4_c00244{bottom:1024.555650px;}
.y3_c00244{bottom:1086.135000px;}
.y2_c00244{bottom:1118.175000px;}
.y1_c00244{bottom:1193.400000px;}
.h9_c00244{height:35.484480px;}
.ha_c00244{height:56.531250px;}
.h5_c00244{height:58.886719px;}
.h2_c00244{height:59.475586px;}
.h4_c00244{height:66.541992px;}
.h6_c00244{height:66.548592px;}
.h3_c00244{height:71.806055px;}
.h7_c00244{height:71.812997px;}
.h8_c00244{height:71.841797px;}
.h1_c00244{height:1263.000000px;}
.h0_c00244{height:1263.240000px;}
.w1_c00244{width:892.500000px;}
.w0_c00244{width:892.800000px;}
.x0_c00244{left:0.000000px;}
.x1_c00244{left:126.645000px;}
.x7_c00244{left:127.648500px;}
.x3_c00244{left:181.350000px;}
.x8_c00244{left:221.535000px;}
.x9_c00244{left:250.815000px;}
.x14_c00244{left:300.930000px;}
.x2_c00244{left:313.560000px;}
.xe_c00244{left:323.280000px;}
.xf_c00244{left:355.140000px;}
.x10_c00244{left:382.215000px;}
.x17_c00244{left:427.590000px;}
.x11_c00244{left:469.440000px;}
.xc_c00244{left:470.880000px;}
.x4_c00244{left:476.190000px;}
.xa_c00244{left:504.525000px;}
.x5_c00244{left:508.170000px;}
.x12_c00244{left:524.730000px;}
.xd_c00244{left:526.800000px;}
.xb_c00244{left:573.090000px;}
.x15_c00244{left:598.860000px;}
.x13_c00244{left:612.165000px;}
.x16_c00244{left:615.765000px;}
.x6_c00244{left:710.565000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.v1_c00244{vertical-align:21.760000pt;}
.ls77_c00244{letter-spacing:-2.277333pt;}
.ls76_c00244{letter-spacing:-2.264320pt;}
.ls78_c00244{letter-spacing:-2.127680pt;}
.ls63_c00244{letter-spacing:-2.109333pt;}
.ls4d_c00244{letter-spacing:-2.082133pt;}
.ls54_c00244{letter-spacing:-2.037013pt;}
.ls6b_c00244{letter-spacing:-2.036587pt;}
.ls5c_c00244{letter-spacing:-1.866667pt;}
.ls6a_c00244{letter-spacing:-1.782827pt;}
.ls5d_c00244{letter-spacing:-1.691733pt;}
.ls49_c00244{letter-spacing:-1.681440pt;}
.ls51_c00244{letter-spacing:-1.597067pt;}
.ls67_c00244{letter-spacing:-1.535573pt;}
.ls74_c00244{letter-spacing:-1.506667pt;}
.ls55_c00244{letter-spacing:-1.496533pt;}
.ls53_c00244{letter-spacing:-1.476533pt;}
.ls64_c00244{letter-spacing:-1.422293pt;}
.ls5a_c00244{letter-spacing:-1.411947pt;}
.ls6e_c00244{letter-spacing:-1.346880pt;}
.ls5e_c00244{letter-spacing:-1.247520pt;}
.ls4e_c00244{letter-spacing:-1.210240pt;}
.ls6f_c00244{letter-spacing:-1.034560pt;}
.ls46_c00244{letter-spacing:-0.982507pt;}
.ls4b_c00244{letter-spacing:-0.867840pt;}
.ls47_c00244{letter-spacing:-0.696213pt;}
.ls52_c00244{letter-spacing:-0.656907pt;}
.ls71_c00244{letter-spacing:-0.644853pt;}
.ls72_c00244{letter-spacing:-0.602667pt;}
.ls50_c00244{letter-spacing:-0.548427pt;}
.ls6d_c00244{letter-spacing:-0.488160pt;}
.ls59_c00244{letter-spacing:-0.397760pt;}
.ls6c_c00244{letter-spacing:-0.355573pt;}
.ls61_c00244{letter-spacing:-0.277227pt;}
.ls69_c00244{letter-spacing:-0.271200pt;}
.ls66_c00244{letter-spacing:-0.247093pt;}
.ls56_c00244{letter-spacing:-0.235040pt;}
.ls75_c00244{letter-spacing:-0.156693pt;}
.ls5b_c00244{letter-spacing:-0.150667pt;}
.ls58_c00244{letter-spacing:-0.114507pt;}
.ls4f_c00244{letter-spacing:-0.108480pt;}
.ls79_c00244{letter-spacing:-0.102453pt;}
.ls5f_c00244{letter-spacing:-0.066293pt;}
.ls65_c00244{letter-spacing:-0.060267pt;}
.ls68_c00244{letter-spacing:-0.018080pt;}
.ls4a_c00244{letter-spacing:0.000000pt;}
.ls2b_c00244{letter-spacing:0.018080pt;}
.ls2_c00244{letter-spacing:0.024107pt;}
.lse_c00244{letter-spacing:0.030133pt;}
.ls2d_c00244{letter-spacing:0.036160pt;}
.ls28_c00244{letter-spacing:0.072320pt;}
.ls1a_c00244{letter-spacing:0.090400pt;}
.ls44_c00244{letter-spacing:0.126560pt;}
.ls42_c00244{letter-spacing:0.150667pt;}
.ls10_c00244{letter-spacing:0.156693pt;}
.ls3a_c00244{letter-spacing:0.162720pt;}
.ls57_c00244{letter-spacing:0.168747pt;}
.ls1b_c00244{letter-spacing:0.204907pt;}
.ls37_c00244{letter-spacing:0.210933pt;}
.ls21_c00244{letter-spacing:0.235040pt;}
.ls23_c00244{letter-spacing:0.253120pt;}
.ls7a_c00244{letter-spacing:0.265173pt;}
.ls1_c00244{letter-spacing:0.277227pt;}
.ls5_c00244{letter-spacing:0.301333pt;}
.ls2f_c00244{letter-spacing:0.313387pt;}
.lsf_c00244{letter-spacing:0.343520pt;}
.ls1d_c00244{letter-spacing:0.349547pt;}
.ls3c_c00244{letter-spacing:0.385707pt;}
.ls25_c00244{letter-spacing:0.397760pt;}
.ls7_c00244{letter-spacing:0.403787pt;}
.ls2c_c00244{letter-spacing:0.409813pt;}
.ls9_c00244{letter-spacing:0.415840pt;}
.ls70_c00244{letter-spacing:0.427893pt;}
.ls19_c00244{letter-spacing:0.452000pt;}
.ls41_c00244{letter-spacing:0.476107pt;}
.ls7b_c00244{letter-spacing:0.486400pt;}
.ls26_c00244{letter-spacing:0.488160pt;}
.ls14_c00244{letter-spacing:0.506240pt;}
.ls15_c00244{letter-spacing:0.524320pt;}
.ls3b_c00244{letter-spacing:0.530347pt;}
.ls2a_c00244{letter-spacing:0.542400pt;}
.ls4_c00244{letter-spacing:0.554453pt;}
.ls39_c00244{letter-spacing:0.566507pt;}
.ls2e_c00244{letter-spacing:0.590613pt;}
.ls35_c00244{letter-spacing:0.602667pt;}
.ls16_c00244{letter-spacing:0.626773pt;}
.ls73_c00244{letter-spacing:0.638827pt;}
.ls0_c00244{letter-spacing:0.662933pt;}
.lsc_c00244{letter-spacing:0.674987pt;}
.ls60_c00244{letter-spacing:0.681013pt;}
.ls3e_c00244{letter-spacing:0.699093pt;}
.ls8_c00244{letter-spacing:0.705120pt;}
.ls18_c00244{letter-spacing:0.729227pt;}
.ls43_c00244{letter-spacing:0.735253pt;}
.ls13_c00244{letter-spacing:0.741280pt;}
.lsd_c00244{letter-spacing:0.783467pt;}
.ls3d_c00244{letter-spacing:0.825653pt;}
.ls62_c00244{letter-spacing:0.837707pt;}
.ls30_c00244{letter-spacing:0.843733pt;}
.ls36_c00244{letter-spacing:0.849760pt;}
.ls1c_c00244{letter-spacing:0.885920pt;}
.lsb_c00244{letter-spacing:0.928107pt;}
.ls17_c00244{letter-spacing:0.958240pt;}
.ls20_c00244{letter-spacing:0.970293pt;}
.ls34_c00244{letter-spacing:1.054667pt;}
.ls48_c00244{letter-spacing:1.066720pt;}
.ls3_c00244{letter-spacing:1.151093pt;}
.lsa_c00244{letter-spacing:1.199307pt;}
.ls32_c00244{letter-spacing:1.217387pt;}
.ls22_c00244{letter-spacing:1.235467pt;}
.ls27_c00244{letter-spacing:1.283680pt;}
.ls1f_c00244{letter-spacing:1.319840pt;}
.ls38_c00244{letter-spacing:1.374080pt;}
.ls1e_c00244{letter-spacing:1.434347pt;}
.ls45_c00244{letter-spacing:1.524427pt;}
.ls3f_c00244{letter-spacing:1.530773pt;}
.ls4c_c00244{letter-spacing:1.729653pt;}
.ls31_c00244{letter-spacing:1.916480pt;}
.ls24_c00244{letter-spacing:1.958667pt;}
.ls11_c00244{letter-spacing:2.344373pt;}
.ls6_c00244{letter-spacing:2.476960pt;}
.ls12_c00244{letter-spacing:2.489013pt;}
.ls40_c00244{letter-spacing:2.561333pt;}
.ls33_c00244{letter-spacing:2.983200pt;}
.ls29_c00244{letter-spacing:3.001280pt;}
.ws3_c00244{word-spacing:-14.819573pt;}
.ws6_c00244{word-spacing:0.000000pt;}
.ws1_c00244{word-spacing:2.285653pt;}
.ws2_c00244{word-spacing:6.219733pt;}
.ws5_c00244{word-spacing:17.198187pt;}
.ws4_c00244{word-spacing:18.789333pt;}
.ws0_c00244{word-spacing:19.051733pt;}
._16_c00244{margin-left:-14.628213pt;}
._b_c00244{margin-left:-8.126027pt;}
._c_c00244{margin-left:-6.683573pt;}
._13_c00244{margin-left:-5.134080pt;}
._0_c00244{margin-left:-4.040640pt;}
._9_c00244{margin-left:-2.499573pt;}
._d_c00244{margin-left:-0.989867pt;}
._3_c00244{width:1.349973pt;}
._1_c00244{width:2.776960pt;}
._2_c00244{width:3.857067pt;}
._17_c00244{width:4.756107pt;}
._6_c00244{width:5.845867pt;}
._e_c00244{width:7.578187pt;}
._4_c00244{width:8.889333pt;}
._11_c00244{width:9.799360pt;}
._12_c00244{width:11.354507pt;}
._14_c00244{width:12.372747pt;}
._8_c00244{width:13.270720pt;}
._5_c00244{width:14.207627pt;}
._10_c00244{width:16.018613pt;}
._7_c00244{width:17.176000pt;}
._a_c00244{width:19.327733pt;}
._f_c00244{width:20.469813pt;}
._15_c00244{width:22.734400pt;}
.fs5_c00244{font-size:28.800533pt;}
.fs4_c00244{font-size:41.600533pt;}
.fs6_c00244{font-size:47.360000pt;}
.fs7_c00244{font-size:51.200000pt;}
.fs3_c00244{font-size:53.333333pt;}
.fs0_c00244{font-size:53.866667pt;}
.fs2_c00244{font-size:60.266667pt;}
.fs1_c00244{font-size:65.066667pt;}
.y0_c00244{bottom:0.000000pt;}
.y18_c00244{bottom:64.653333pt;}
.y17_c00244{bottom:160.960000pt;}
.y15_c00244{bottom:216.968667pt;}
.y16_c00244{bottom:216.973333pt;}
.y14_c00244{bottom:272.640000pt;}
.y13_c00244{bottom:299.533333pt;}
.y12_c00244{bottom:355.208267pt;}
.y11_c00244{bottom:382.720000pt;}
.y10_c00244{bottom:438.720000pt;}
.yf_c00244{bottom:466.573333pt;}
.ye_c00244{bottom:522.579733pt;}
.yd_c00244{bottom:549.760000pt;}
.yc_c00244{bottom:605.760000pt;}
.yb_c00244{bottom:605.762933pt;}
.ya_c00244{bottom:632.971867pt;}
.y9_c00244{bottom:660.800000pt;}
.y8_c00244{bottom:716.173333pt;}
.y7_c00244{bottom:772.490133pt;}
.y6_c00244{bottom:800.333333pt;}
.y5_c00244{bottom:855.693333pt;}
.y4_c00244{bottom:910.716133pt;}
.y3_c00244{bottom:965.453333pt;}
.y2_c00244{bottom:993.933333pt;}
.y1_c00244{bottom:1060.800000pt;}
.h9_c00244{height:31.541760pt;}
.ha_c00244{height:50.250000pt;}
.h5_c00244{height:52.343750pt;}
.h2_c00244{height:52.867187pt;}
.h4_c00244{height:59.148438pt;}
.h6_c00244{height:59.154304pt;}
.h3_c00244{height:63.827604pt;}
.h7_c00244{height:63.833775pt;}
.h8_c00244{height:63.859375pt;}
.h1_c00244{height:1122.666667pt;}
.h0_c00244{height:1122.880000pt;}
.w1_c00244{width:793.333333pt;}
.w0_c00244{width:793.600000pt;}
.x0_c00244{left:0.000000pt;}
.x1_c00244{left:112.573333pt;}
.x7_c00244{left:113.465333pt;}
.x3_c00244{left:161.200000pt;}
.x8_c00244{left:196.920000pt;}
.x9_c00244{left:222.946667pt;}
.x14_c00244{left:267.493333pt;}
.x2_c00244{left:278.720000pt;}
.xe_c00244{left:287.360000pt;}
.xf_c00244{left:315.680000pt;}
.x10_c00244{left:339.746667pt;}
.x17_c00244{left:380.080000pt;}
.x11_c00244{left:417.280000pt;}
.xc_c00244{left:418.560000pt;}
.x4_c00244{left:423.280000pt;}
.xa_c00244{left:448.466667pt;}
.x5_c00244{left:451.706667pt;}
.x12_c00244{left:466.426667pt;}
.xd_c00244{left:468.266667pt;}
.xb_c00244{left:509.413333pt;}
.x15_c00244{left:532.320000pt;}
.x13_c00244{left:544.146667pt;}
.x16_c00244{left:547.346667pt;}
.x6_c00244{left:631.613333pt;}
}





/* 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_c00245 {
    display:none;
  }
  .loading-indicator_c00245.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00245 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_c00245 { 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_c00245" -> "#page-container .classname_c00245")
 */
.pf_c00245 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00245 { /* 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_c00245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00245 { /* 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_c00245 { /* 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_c00245 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00245 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00245 {overflow:visible;}
  }
}
.c_c00245 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00245 { /* 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_c00245:after { /* webkit #35443 */
  content: '';
}
.t_c00245:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00245 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 */
}
.__c00245 { /* 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_c00245 { /* info for Javascript */
  display:none;
}
.l_c00245 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00245 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00245 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00245: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_c00245 {
    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_c00245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00245.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_c00245 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00245;src:url('chunks/assets/font_e5d22bbae225a17cdfe3f1a7.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.284668;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_c00245;src:url('chunks/assets/font_c2c2d43f43e8e3bca42709dd.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.284180;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_c00245;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;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:ff4_c00245;src:url('chunks/assets/font_b073171079db7a30a7703da7.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:0.666000;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;}
.ma_c00245{transform:matrix(0.161842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161842,0.000000,0.000000,0.250000,0,0);}
.m3_c00245{transform:matrix(0.163161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163161,0.000000,0.000000,0.250000,0,0);}
.m9_c00245{transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);}
.mc_c00245{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m4_c00245{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.mb_c00245{transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);}
.m5_c00245{transform:matrix(0.239940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239940,0.000000,0.000000,0.250000,0,0);}
.m2_c00245{transform:matrix(0.242364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242364,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m6_c00245{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m7_c00245{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m8_c00245{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m0_c00245{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);}
.v0_c00245{vertical-align:0.000000px;}
.ls7c_c00245{letter-spacing:-2.626560px;}
.ls6b_c00245{letter-spacing:-2.541000px;}
.ls45_c00245{letter-spacing:-2.436000px;}
.ls3e_c00245{letter-spacing:-2.415000px;}
.ls3d_c00245{letter-spacing:-2.330460px;}
.ls80_c00245{letter-spacing:-2.234160px;}
.ls6c_c00245{letter-spacing:-2.228820px;}
.ls6d_c00245{letter-spacing:-2.076360px;}
.ls44_c00245{letter-spacing:-2.011020px;}
.ls3f_c00245{letter-spacing:-1.931160px;}
.ls89_c00245{letter-spacing:-1.927920px;}
.ls66_c00245{letter-spacing:-1.872240px;}
.ls83_c00245{letter-spacing:-1.774800px;}
.ls7d_c00245{letter-spacing:-1.658880px;}
.ls46_c00245{letter-spacing:-1.649520px;}
.ls41_c00245{letter-spacing:-1.633500px;}
.ls50_c00245{letter-spacing:-1.531200px;}
.ls42_c00245{letter-spacing:-1.502820px;}
.ls90_c00245{letter-spacing:-1.475520px;}
.ls49_c00245{letter-spacing:-1.426800px;}
.ls6a_c00245{letter-spacing:-1.401180px;}
.ls6e_c00245{letter-spacing:-1.350360px;}
.ls84_c00245{letter-spacing:-1.350240px;}
.ls65_c00245{letter-spacing:-1.315440px;}
.ls37_c00245{letter-spacing:-1.308480px;}
.ls81_c00245{letter-spacing:-1.301520px;}
.ls71_c00245{letter-spacing:-1.266720px;}
.ls43_c00245{letter-spacing:-1.234200px;}
.ls86_c00245{letter-spacing:-1.190160px;}
.ls5a_c00245{letter-spacing:-1.169280px;}
.ls8e_c00245{letter-spacing:-1.162320px;}
.ls82_c00245{letter-spacing:-1.099680px;}
.ls88_c00245{letter-spacing:-1.078800px;}
.ls5e_c00245{letter-spacing:-0.981360px;}
.ls59_c00245{letter-spacing:-0.974400px;}
.ls51_c00245{letter-spacing:-0.946560px;}
.ls52_c00245{letter-spacing:-0.932640px;}
.ls4f_c00245{letter-spacing:-0.897840px;}
.ls7b_c00245{letter-spacing:-0.856080px;}
.ls74_c00245{letter-spacing:-0.835200px;}
.ls4e_c00245{letter-spacing:-0.765600px;}
.ls87_c00245{letter-spacing:-0.668160px;}
.ls6f_c00245{letter-spacing:-0.654240px;}
.ls73_c00245{letter-spacing:-0.612480px;}
.ls8f_c00245{letter-spacing:-0.584640px;}
.ls75_c00245{letter-spacing:-0.570720px;}
.ls8c_c00245{letter-spacing:-0.535920px;}
.ls8b_c00245{letter-spacing:-0.528960px;}
.ls62_c00245{letter-spacing:-0.522000px;}
.ls55_c00245{letter-spacing:-0.515040px;}
.ls76_c00245{letter-spacing:-0.508080px;}
.ls5c_c00245{letter-spacing:-0.494160px;}
.ls57_c00245{letter-spacing:-0.487200px;}
.ls3a_c00245{letter-spacing:-0.473280px;}
.ls58_c00245{letter-spacing:-0.459360px;}
.ls3c_c00245{letter-spacing:-0.452400px;}
.ls47_c00245{letter-spacing:-0.424560px;}
.ls68_c00245{letter-spacing:-0.410640px;}
.ls3b_c00245{letter-spacing:-0.396720px;}
.ls4b_c00245{letter-spacing:-0.382800px;}
.ls4d_c00245{letter-spacing:-0.375840px;}
.ls7e_c00245{letter-spacing:-0.361920px;}
.ls54_c00245{letter-spacing:-0.354960px;}
.ls4a_c00245{letter-spacing:-0.348000px;}
.ls5d_c00245{letter-spacing:-0.341040px;}
.ls48_c00245{letter-spacing:-0.334080px;}
.ls69_c00245{letter-spacing:-0.278400px;}
.ls5b_c00245{letter-spacing:-0.264480px;}
.ls8a_c00245{letter-spacing:-0.257520px;}
.ls38_c00245{letter-spacing:-0.250560px;}
.ls7f_c00245{letter-spacing:-0.243600px;}
.ls63_c00245{letter-spacing:-0.229680px;}
.ls77_c00245{letter-spacing:-0.222720px;}
.ls72_c00245{letter-spacing:-0.187920px;}
.ls8d_c00245{letter-spacing:-0.180960px;}
.ls67_c00245{letter-spacing:-0.160080px;}
.ls5f_c00245{letter-spacing:-0.153120px;}
.ls85_c00245{letter-spacing:-0.146160px;}
.ls60_c00245{letter-spacing:-0.139200px;}
.ls4c_c00245{letter-spacing:-0.132240px;}
.ls61_c00245{letter-spacing:-0.111360px;}
.ls64_c00245{letter-spacing:-0.104400px;}
.ls53_c00245{letter-spacing:-0.090480px;}
.ls91_c00245{letter-spacing:-0.071280px;}
.ls56_c00245{letter-spacing:-0.069600px;}
.ls39_c00245{letter-spacing:-0.041760px;}
.ls78_c00245{letter-spacing:-0.034800px;}
.ls7a_c00245{letter-spacing:-0.027840px;}
.ls79_c00245{letter-spacing:-0.006960px;}
.ls40_c00245{letter-spacing:0.000000px;}
.ls5_c00245{letter-spacing:0.034800px;}
.ls3_c00245{letter-spacing:0.048720px;}
.ls15_c00245{letter-spacing:0.055680px;}
.ls11_c00245{letter-spacing:0.076560px;}
.ls7_c00245{letter-spacing:0.083520px;}
.ls35_c00245{letter-spacing:0.104400px;}
.ls9_c00245{letter-spacing:0.139200px;}
.ls2c_c00245{letter-spacing:0.153120px;}
.ls12_c00245{letter-spacing:0.160080px;}
.ls31_c00245{letter-spacing:0.167040px;}
.ls14_c00245{letter-spacing:0.174000px;}
.ls70_c00245{letter-spacing:0.180960px;}
.ls2_c00245{letter-spacing:0.181500px;}
.ls2f_c00245{letter-spacing:0.194880px;}
.ls1a_c00245{letter-spacing:0.201840px;}
.ls19_c00245{letter-spacing:0.215760px;}
.ls6_c00245{letter-spacing:0.222720px;}
.ls4_c00245{letter-spacing:0.236640px;}
.ls33_c00245{letter-spacing:0.243600px;}
.ls26_c00245{letter-spacing:0.264480px;}
.ls32_c00245{letter-spacing:0.271440px;}
.ls2e_c00245{letter-spacing:0.285360px;}
.lsb_c00245{letter-spacing:0.306240px;}
.ls30_c00245{letter-spacing:0.320160px;}
.ls29_c00245{letter-spacing:0.354960px;}
.ls24_c00245{letter-spacing:0.361920px;}
.lsd_c00245{letter-spacing:0.368880px;}
.ls13_c00245{letter-spacing:0.396720px;}
.ls1_c00245{letter-spacing:0.417600px;}
.ls17_c00245{letter-spacing:0.438480px;}
.ls20_c00245{letter-spacing:0.473280px;}
.ls27_c00245{letter-spacing:0.501120px;}
.ls25_c00245{letter-spacing:0.542880px;}
.ls1f_c00245{letter-spacing:0.556800px;}
.ls1e_c00245{letter-spacing:0.603420px;}
.ls1c_c00245{letter-spacing:0.637320px;}
.ls1b_c00245{letter-spacing:0.638880px;}
.ls8_c00245{letter-spacing:0.723840px;}
.lse_c00245{letter-spacing:0.765600px;}
.ls2a_c00245{letter-spacing:0.772920px;}
.ls2d_c00245{letter-spacing:0.874620px;}
.ls18_c00245{letter-spacing:0.883920px;}
.lsc_c00245{letter-spacing:0.935640px;}
.ls1d_c00245{letter-spacing:0.942420px;}
.lsf_c00245{letter-spacing:0.960480px;}
.ls0_c00245{letter-spacing:1.017000px;}
.ls34_c00245{letter-spacing:1.118700px;}
.lsa_c00245{letter-spacing:1.240740px;}
.ls21_c00245{letter-spacing:1.329360px;}
.ls28_c00245{letter-spacing:1.419840px;}
.ls22_c00245{letter-spacing:1.663440px;}
.ls36_c00245{letter-spacing:1.878600px;}
.ls10_c00245{letter-spacing:1.983600px;}
.ls2b_c00245{letter-spacing:2.013660px;}
.ls23_c00245{letter-spacing:2.442960px;}
.ls16_c00245{letter-spacing:2.839680px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{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__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00245{word-spacing:-1.762560px;}
.ws5_c00245{word-spacing:-1.494000px;}
.ws4_c00245{word-spacing:-1.321800px;}
.ws6_c00245{word-spacing:0.000000px;}
.ws3_c00245{word-spacing:8.227980px;}
.ws2_c00245{word-spacing:11.129400px;}
.ws0_c00245{word-spacing:13.078200px;}
._10_c00245{margin-left:-26.116080px;}
._12_c00245{margin-left:-7.575360px;}
._11_c00245{margin-left:-6.211560px;}
._6_c00245{margin-left:-4.022040px;}
._4_c00245{margin-left:-2.323200px;}
._8_c00245{margin-left:-1.149480px;}
._c_c00245{width:1.370040px;}
._7_c00245{width:3.289200px;}
._5_c00245{width:4.719000px;}
._e_c00245{width:5.846400px;}
._3_c00245{width:7.100280px;}
._9_c00245{width:8.588640px;}
._a_c00245{width:10.711440px;}
._1_c00245{width:12.110400px;}
._b_c00245{width:13.669440px;}
._2_c00245{width:14.880480px;}
._0_c00245{width:17.174400px;}
._d_c00245{width:21.585840px;}
._f_c00245{width:32.912760px;}
.fc0_c00245{color:transparent;}
.fs5_c00245{font-size:54.720000px;}
.fs7_c00245{font-size:59.400000px;}
.fs0_c00245{font-size:60.600000px;}
.fs1_c00245{font-size:67.800000px;}
.fs4_c00245{font-size:69.000000px;}
.fs2_c00245{font-size:69.600000px;}
.fs3_c00245{font-size:72.600000px;}
.fs6_c00245{font-size:76.800000px;}
.y0_c00245{bottom:0.000000px;}
.y19_c00245{bottom:63.735000px;}
.y18_c00245{bottom:171.360000px;}
.y17_c00245{bottom:234.712200px;}
.y16_c00245{bottom:266.415000px;}
.y15_c00245{bottom:327.615000px;}
.y14_c00245{bottom:390.975000px;}
.y13_c00245{bottom:423.008400px;}
.y12_c00245{bottom:484.935000px;}
.y11_c00245{bottom:484.937400px;}
.y10_c00245{bottom:516.240000px;}
.yf_c00245{bottom:579.232200px;}
.ye_c00245{bottom:610.935000px;}
.yd_c00245{bottom:642.240000px;}
.yc_c00245{bottom:704.535000px;}
.yb_c00245{bottom:767.175000px;}
.ya_c00245{bottom:798.849600px;}
.y9_c00245{bottom:830.169600px;}
.y8_c00245{bottom:861.855000px;}
.y7_c00245{bottom:893.175000px;}
.y6_c00245{bottom:955.080000px;}
.y5_c00245{bottom:1018.810800px;}
.y4_c00245{bottom:1049.400000px;}
.y3_c00245{bottom:1080.720000px;}
.y2_c00245{bottom:1112.055000px;}
.y1_c00245{bottom:1188.720000px;}
.h6_c00245{height:36.443520px;}
.h9_c00245{height:58.297852px;}
.h2_c00245{height:59.475586px;}
.h3_c00245{height:68.308594px;}
.h7_c00245{height:68.339794px;}
.h4_c00245{height:71.252930px;}
.h5_c00245{height:71.964844px;}
.h8_c00245{height:75.337500px;}
.h1_c00245{height:1263.000000px;}
.h0_c00245{height:1263.240000px;}
.w1_c00245{width:892.500000px;}
.w0_c00245{width:892.800000px;}
.x0_c00245{left:0.000000px;}
.xd_c00245{left:120.300000px;}
.xc_c00245{left:121.976400px;}
.x7_c00245{left:123.801600px;}
.x1_c00245{left:125.205000px;}
.x3_c00245{left:154.620000px;}
.x4_c00245{left:171.900000px;}
.x11_c00245{left:176.205000px;}
.x8_c00245{left:177.285000px;}
.x2_c00245{left:179.085000px;}
.x15_c00245{left:243.525000px;}
.xe_c00245{left:270.180000px;}
.x14_c00245{left:287.985000px;}
.x16_c00245{left:337.845000px;}
.xf_c00245{left:346.125000px;}
.x17_c00245{left:365.445000px;}
.x12_c00245{left:367.755000px;}
.x18_c00245{left:378.915000px;}
.x13_c00245{left:388.260000px;}
.x19_c00245{left:399.135000px;}
.x1a_c00245{left:415.095000px;}
.x1e_c00245{left:424.710000px;}
.x9_c00245{left:440.280000px;}
.x1b_c00245{left:507.795000px;}
.x5_c00245{left:532.050000px;}
.xa_c00245{left:533.715000px;}
.x10_c00245{left:588.780000px;}
.x1c_c00245{left:603.855000px;}
.x6_c00245{left:618.675000px;}
.x1d_c00245{left:626.040000px;}
.xb_c00245{left:675.015000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls7c_c00245{letter-spacing:-2.334720pt;}
.ls6b_c00245{letter-spacing:-2.258667pt;}
.ls45_c00245{letter-spacing:-2.165333pt;}
.ls3e_c00245{letter-spacing:-2.146667pt;}
.ls3d_c00245{letter-spacing:-2.071520pt;}
.ls80_c00245{letter-spacing:-1.985920pt;}
.ls6c_c00245{letter-spacing:-1.981173pt;}
.ls6d_c00245{letter-spacing:-1.845653pt;}
.ls44_c00245{letter-spacing:-1.787573pt;}
.ls3f_c00245{letter-spacing:-1.716587pt;}
.ls89_c00245{letter-spacing:-1.713707pt;}
.ls66_c00245{letter-spacing:-1.664213pt;}
.ls83_c00245{letter-spacing:-1.577600pt;}
.ls7d_c00245{letter-spacing:-1.474560pt;}
.ls46_c00245{letter-spacing:-1.466240pt;}
.ls41_c00245{letter-spacing:-1.452000pt;}
.ls50_c00245{letter-spacing:-1.361067pt;}
.ls42_c00245{letter-spacing:-1.335840pt;}
.ls90_c00245{letter-spacing:-1.311573pt;}
.ls49_c00245{letter-spacing:-1.268267pt;}
.ls6a_c00245{letter-spacing:-1.245493pt;}
.ls6e_c00245{letter-spacing:-1.200320pt;}
.ls84_c00245{letter-spacing:-1.200213pt;}
.ls65_c00245{letter-spacing:-1.169280pt;}
.ls37_c00245{letter-spacing:-1.163093pt;}
.ls81_c00245{letter-spacing:-1.156907pt;}
.ls71_c00245{letter-spacing:-1.125973pt;}
.ls43_c00245{letter-spacing:-1.097067pt;}
.ls86_c00245{letter-spacing:-1.057920pt;}
.ls5a_c00245{letter-spacing:-1.039360pt;}
.ls8e_c00245{letter-spacing:-1.033173pt;}
.ls82_c00245{letter-spacing:-0.977493pt;}
.ls88_c00245{letter-spacing:-0.958933pt;}
.ls5e_c00245{letter-spacing:-0.872320pt;}
.ls59_c00245{letter-spacing:-0.866133pt;}
.ls51_c00245{letter-spacing:-0.841387pt;}
.ls52_c00245{letter-spacing:-0.829013pt;}
.ls4f_c00245{letter-spacing:-0.798080pt;}
.ls7b_c00245{letter-spacing:-0.760960pt;}
.ls74_c00245{letter-spacing:-0.742400pt;}
.ls4e_c00245{letter-spacing:-0.680533pt;}
.ls87_c00245{letter-spacing:-0.593920pt;}
.ls6f_c00245{letter-spacing:-0.581547pt;}
.ls73_c00245{letter-spacing:-0.544427pt;}
.ls8f_c00245{letter-spacing:-0.519680pt;}
.ls75_c00245{letter-spacing:-0.507307pt;}
.ls8c_c00245{letter-spacing:-0.476373pt;}
.ls8b_c00245{letter-spacing:-0.470187pt;}
.ls62_c00245{letter-spacing:-0.464000pt;}
.ls55_c00245{letter-spacing:-0.457813pt;}
.ls76_c00245{letter-spacing:-0.451627pt;}
.ls5c_c00245{letter-spacing:-0.439253pt;}
.ls57_c00245{letter-spacing:-0.433067pt;}
.ls3a_c00245{letter-spacing:-0.420693pt;}
.ls58_c00245{letter-spacing:-0.408320pt;}
.ls3c_c00245{letter-spacing:-0.402133pt;}
.ls47_c00245{letter-spacing:-0.377387pt;}
.ls68_c00245{letter-spacing:-0.365013pt;}
.ls3b_c00245{letter-spacing:-0.352640pt;}
.ls4b_c00245{letter-spacing:-0.340267pt;}
.ls4d_c00245{letter-spacing:-0.334080pt;}
.ls7e_c00245{letter-spacing:-0.321707pt;}
.ls54_c00245{letter-spacing:-0.315520pt;}
.ls4a_c00245{letter-spacing:-0.309333pt;}
.ls5d_c00245{letter-spacing:-0.303147pt;}
.ls48_c00245{letter-spacing:-0.296960pt;}
.ls69_c00245{letter-spacing:-0.247467pt;}
.ls5b_c00245{letter-spacing:-0.235093pt;}
.ls8a_c00245{letter-spacing:-0.228907pt;}
.ls38_c00245{letter-spacing:-0.222720pt;}
.ls7f_c00245{letter-spacing:-0.216533pt;}
.ls63_c00245{letter-spacing:-0.204160pt;}
.ls77_c00245{letter-spacing:-0.197973pt;}
.ls72_c00245{letter-spacing:-0.167040pt;}
.ls8d_c00245{letter-spacing:-0.160853pt;}
.ls67_c00245{letter-spacing:-0.142293pt;}
.ls5f_c00245{letter-spacing:-0.136107pt;}
.ls85_c00245{letter-spacing:-0.129920pt;}
.ls60_c00245{letter-spacing:-0.123733pt;}
.ls4c_c00245{letter-spacing:-0.117547pt;}
.ls61_c00245{letter-spacing:-0.098987pt;}
.ls64_c00245{letter-spacing:-0.092800pt;}
.ls53_c00245{letter-spacing:-0.080427pt;}
.ls91_c00245{letter-spacing:-0.063360pt;}
.ls56_c00245{letter-spacing:-0.061867pt;}
.ls39_c00245{letter-spacing:-0.037120pt;}
.ls78_c00245{letter-spacing:-0.030933pt;}
.ls7a_c00245{letter-spacing:-0.024747pt;}
.ls79_c00245{letter-spacing:-0.006187pt;}
.ls40_c00245{letter-spacing:0.000000pt;}
.ls5_c00245{letter-spacing:0.030933pt;}
.ls3_c00245{letter-spacing:0.043307pt;}
.ls15_c00245{letter-spacing:0.049493pt;}
.ls11_c00245{letter-spacing:0.068053pt;}
.ls7_c00245{letter-spacing:0.074240pt;}
.ls35_c00245{letter-spacing:0.092800pt;}
.ls9_c00245{letter-spacing:0.123733pt;}
.ls2c_c00245{letter-spacing:0.136107pt;}
.ls12_c00245{letter-spacing:0.142293pt;}
.ls31_c00245{letter-spacing:0.148480pt;}
.ls14_c00245{letter-spacing:0.154667pt;}
.ls70_c00245{letter-spacing:0.160853pt;}
.ls2_c00245{letter-spacing:0.161333pt;}
.ls2f_c00245{letter-spacing:0.173227pt;}
.ls1a_c00245{letter-spacing:0.179413pt;}
.ls19_c00245{letter-spacing:0.191787pt;}
.ls6_c00245{letter-spacing:0.197973pt;}
.ls4_c00245{letter-spacing:0.210347pt;}
.ls33_c00245{letter-spacing:0.216533pt;}
.ls26_c00245{letter-spacing:0.235093pt;}
.ls32_c00245{letter-spacing:0.241280pt;}
.ls2e_c00245{letter-spacing:0.253653pt;}
.lsb_c00245{letter-spacing:0.272213pt;}
.ls30_c00245{letter-spacing:0.284587pt;}
.ls29_c00245{letter-spacing:0.315520pt;}
.ls24_c00245{letter-spacing:0.321707pt;}
.lsd_c00245{letter-spacing:0.327893pt;}
.ls13_c00245{letter-spacing:0.352640pt;}
.ls1_c00245{letter-spacing:0.371200pt;}
.ls17_c00245{letter-spacing:0.389760pt;}
.ls20_c00245{letter-spacing:0.420693pt;}
.ls27_c00245{letter-spacing:0.445440pt;}
.ls25_c00245{letter-spacing:0.482560pt;}
.ls1f_c00245{letter-spacing:0.494933pt;}
.ls1e_c00245{letter-spacing:0.536373pt;}
.ls1c_c00245{letter-spacing:0.566507pt;}
.ls1b_c00245{letter-spacing:0.567893pt;}
.ls8_c00245{letter-spacing:0.643413pt;}
.lse_c00245{letter-spacing:0.680533pt;}
.ls2a_c00245{letter-spacing:0.687040pt;}
.ls2d_c00245{letter-spacing:0.777440pt;}
.ls18_c00245{letter-spacing:0.785707pt;}
.lsc_c00245{letter-spacing:0.831680pt;}
.ls1d_c00245{letter-spacing:0.837707pt;}
.lsf_c00245{letter-spacing:0.853760pt;}
.ls0_c00245{letter-spacing:0.904000pt;}
.ls34_c00245{letter-spacing:0.994400pt;}
.lsa_c00245{letter-spacing:1.102880pt;}
.ls21_c00245{letter-spacing:1.181653pt;}
.ls28_c00245{letter-spacing:1.262080pt;}
.ls22_c00245{letter-spacing:1.478613pt;}
.ls36_c00245{letter-spacing:1.669867pt;}
.ls10_c00245{letter-spacing:1.763200pt;}
.ls2b_c00245{letter-spacing:1.789920pt;}
.ls23_c00245{letter-spacing:2.171520pt;}
.ls16_c00245{letter-spacing:2.524160pt;}
.ws1_c00245{word-spacing:-1.566720pt;}
.ws5_c00245{word-spacing:-1.328000pt;}
.ws4_c00245{word-spacing:-1.174933pt;}
.ws6_c00245{word-spacing:0.000000pt;}
.ws3_c00245{word-spacing:7.313760pt;}
.ws2_c00245{word-spacing:9.892800pt;}
.ws0_c00245{word-spacing:11.625067pt;}
._10_c00245{margin-left:-23.214293pt;}
._12_c00245{margin-left:-6.733653pt;}
._11_c00245{margin-left:-5.521387pt;}
._6_c00245{margin-left:-3.575147pt;}
._4_c00245{margin-left:-2.065067pt;}
._8_c00245{margin-left:-1.021760pt;}
._c_c00245{width:1.217813pt;}
._7_c00245{width:2.923733pt;}
._5_c00245{width:4.194667pt;}
._e_c00245{width:5.196800pt;}
._3_c00245{width:6.311360pt;}
._9_c00245{width:7.634347pt;}
._a_c00245{width:9.521280pt;}
._1_c00245{width:10.764800pt;}
._b_c00245{width:12.150613pt;}
._2_c00245{width:13.227093pt;}
._0_c00245{width:15.266133pt;}
._d_c00245{width:19.187413pt;}
._f_c00245{width:29.255787pt;}
.fs5_c00245{font-size:48.640000pt;}
.fs7_c00245{font-size:52.800000pt;}
.fs0_c00245{font-size:53.866667pt;}
.fs1_c00245{font-size:60.266667pt;}
.fs4_c00245{font-size:61.333333pt;}
.fs2_c00245{font-size:61.866667pt;}
.fs3_c00245{font-size:64.533333pt;}
.fs6_c00245{font-size:68.266667pt;}
.y0_c00245{bottom:0.000000pt;}
.y19_c00245{bottom:56.653333pt;}
.y18_c00245{bottom:152.320000pt;}
.y17_c00245{bottom:208.633067pt;}
.y16_c00245{bottom:236.813333pt;}
.y15_c00245{bottom:291.213333pt;}
.y14_c00245{bottom:347.533333pt;}
.y13_c00245{bottom:376.007467pt;}
.y12_c00245{bottom:431.053333pt;}
.y11_c00245{bottom:431.055467pt;}
.y10_c00245{bottom:458.880000pt;}
.yf_c00245{bottom:514.873067pt;}
.ye_c00245{bottom:543.053333pt;}
.yd_c00245{bottom:570.880000pt;}
.yc_c00245{bottom:626.253333pt;}
.yb_c00245{bottom:681.933333pt;}
.ya_c00245{bottom:710.088533pt;}
.y9_c00245{bottom:737.928533pt;}
.y8_c00245{bottom:766.093333pt;}
.y7_c00245{bottom:793.933333pt;}
.y6_c00245{bottom:848.960000pt;}
.y5_c00245{bottom:905.609600pt;}
.y4_c00245{bottom:932.800000pt;}
.y3_c00245{bottom:960.640000pt;}
.y2_c00245{bottom:988.493333pt;}
.y1_c00245{bottom:1056.640000pt;}
.h6_c00245{height:32.394240pt;}
.h9_c00245{height:51.820312pt;}
.h2_c00245{height:52.867187pt;}
.h3_c00245{height:60.718750pt;}
.h7_c00245{height:60.746483pt;}
.h4_c00245{height:63.335938pt;}
.h5_c00245{height:63.968750pt;}
.h8_c00245{height:66.966667pt;}
.h1_c00245{height:1122.666667pt;}
.h0_c00245{height:1122.880000pt;}
.w1_c00245{width:793.333333pt;}
.w0_c00245{width:793.600000pt;}
.x0_c00245{left:0.000000pt;}
.xd_c00245{left:106.933333pt;}
.xc_c00245{left:108.423467pt;}
.x7_c00245{left:110.045867pt;}
.x1_c00245{left:111.293333pt;}
.x3_c00245{left:137.440000pt;}
.x4_c00245{left:152.800000pt;}
.x11_c00245{left:156.626667pt;}
.x8_c00245{left:157.586667pt;}
.x2_c00245{left:159.186667pt;}
.x15_c00245{left:216.466667pt;}
.xe_c00245{left:240.160000pt;}
.x14_c00245{left:255.986667pt;}
.x16_c00245{left:300.306667pt;}
.xf_c00245{left:307.666667pt;}
.x17_c00245{left:324.840000pt;}
.x12_c00245{left:326.893333pt;}
.x18_c00245{left:336.813333pt;}
.x13_c00245{left:345.120000pt;}
.x19_c00245{left:354.786667pt;}
.x1a_c00245{left:368.973333pt;}
.x1e_c00245{left:377.520000pt;}
.x9_c00245{left:391.360000pt;}
.x1b_c00245{left:451.373333pt;}
.x5_c00245{left:472.933333pt;}
.xa_c00245{left:474.413333pt;}
.x10_c00245{left:523.360000pt;}
.x1c_c00245{left:536.760000pt;}
.x6_c00245{left:549.933333pt;}
.x1d_c00245{left:556.480000pt;}
.xb_c00245{left:600.013333pt;}
}





/* 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_c00246 {
    display:none;
  }
  .loading-indicator_c00246.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00246 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_c00246 { 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_c00246" -> "#page-container .classname_c00246")
 */
.pf_c00246 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00246 { /* 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_c00246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00246 { /* 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_c00246 { /* 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_c00246 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00246 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00246 {overflow:visible;}
  }
}
.c_c00246 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00246 { /* 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_c00246:after { /* webkit #35443 */
  content: '';
}
.t_c00246:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00246 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 */
}
.__c00246 { /* 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_c00246 { /* info for Javascript */
  display:none;
}
.l_c00246 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00246 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00246 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00246: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_c00246 {
    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_c00246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00246.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_c00246 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00246;src:url('chunks/assets/font_3cfa9bc6ae038317e643e2cc.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.284668;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_c00246;src:url('chunks/assets/font_0f12a5adabb26039f86ecbc5.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.284180;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_c00246;src:url('chunks/assets/font_7daea8cb61ad28d72cf9ec34.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;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:ff4_c00246;src:url('chunks/assets/font_17a8bd937568d8566b8ef6a4.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.311035;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;}
.m9_c00246{transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);}
.m4_c00246{transform:matrix(0.198347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198347,0.000000,0.000000,0.250000,0,0);}
.m8_c00246{transform:matrix(0.204226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204226,0.000000,0.000000,0.250000,0,0);}
.m5_c00246{transform:matrix(0.232707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232707,0.000000,0.000000,0.250000,0,0);}
.m7_c00246{transform:matrix(0.239793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239793,0.000000,0.000000,0.250000,0,0);}
.mb_c00246{transform:matrix(0.240528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240528,0.000000,0.000000,0.250000,0,0);}
.ma_c00246{transform:matrix(0.241752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241752,0.000000,0.000000,0.250000,0,0);}
.m3_c00246{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m6_c00246{transform:matrix(0.244170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244170,0.000000,0.000000,0.250000,0,0);}
.m2_c00246{transform:matrix(0.247137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247137,0.000000,0.000000,0.250000,0,0);}
.m0_c00246{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_c00246{transform:matrix(0.255670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255670,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.ls93_c00246{letter-spacing:-2.457000px;}
.ls94_c00246{letter-spacing:-2.442960px;}
.ls90_c00246{letter-spacing:-2.415000px;}
.ls6f_c00246{letter-spacing:-2.373000px;}
.ls91_c00246{letter-spacing:-2.281500px;}
.ls95_c00246{letter-spacing:-2.208000px;}
.ls77_c00246{letter-spacing:-1.891620px;}
.ls6c_c00246{letter-spacing:-1.600080px;}
.ls6e_c00246{letter-spacing:-1.423800px;}
.ls8a_c00246{letter-spacing:-1.403460px;}
.ls6b_c00246{letter-spacing:-1.376340px;}
.ls88_c00246{letter-spacing:-1.267860px;}
.ls89_c00246{letter-spacing:-1.247520px;}
.ls7d_c00246{letter-spacing:-1.105140px;}
.ls79_c00246{letter-spacing:-1.078020px;}
.ls80_c00246{letter-spacing:-0.976320px;}
.ls92_c00246{letter-spacing:-0.926640px;}
.ls7b_c00246{letter-spacing:-0.820380px;}
.ls96_c00246{letter-spacing:-0.739020px;}
.ls83_c00246{letter-spacing:-0.725460px;}
.ls75_c00246{letter-spacing:-0.718680px;}
.ls76_c00246{letter-spacing:-0.691560px;}
.ls82_c00246{letter-spacing:-0.616980px;}
.ls8f_c00246{letter-spacing:-0.583080px;}
.ls81_c00246{letter-spacing:-0.569520px;}
.ls78_c00246{letter-spacing:-0.562740px;}
.ls71_c00246{letter-spacing:-0.549180px;}
.ls7c_c00246{letter-spacing:-0.494940px;}
.ls6a_c00246{letter-spacing:-0.400020px;}
.ls74_c00246{letter-spacing:-0.386460px;}
.ls8d_c00246{letter-spacing:-0.359340px;}
.ls86_c00246{letter-spacing:-0.352560px;}
.ls8b_c00246{letter-spacing:-0.332220px;}
.ls87_c00246{letter-spacing:-0.271200px;}
.ls70_c00246{letter-spacing:-0.183060px;}
.ls7a_c00246{letter-spacing:-0.176280px;}
.ls97_c00246{letter-spacing:-0.142380px;}
.ls7e_c00246{letter-spacing:-0.135600px;}
.ls69_c00246{letter-spacing:-0.128820px;}
.ls85_c00246{letter-spacing:-0.108480px;}
.ls8c_c00246{letter-spacing:-0.067800px;}
.ls73_c00246{letter-spacing:-0.047460px;}
.ls84_c00246{letter-spacing:-0.013560px;}
.ls6d_c00246{letter-spacing:0.000000px;}
.ls2d_c00246{letter-spacing:0.013560px;}
.ls13_c00246{letter-spacing:0.020340px;}
.ls17_c00246{letter-spacing:0.033900px;}
.ls7_c00246{letter-spacing:0.040680px;}
.ls4f_c00246{letter-spacing:0.074580px;}
.ls43_c00246{letter-spacing:0.094920px;}
.ls4b_c00246{letter-spacing:0.101700px;}
.ls59_c00246{letter-spacing:0.122040px;}
.ls16_c00246{letter-spacing:0.142380px;}
.ls37_c00246{letter-spacing:0.150480px;}
.ls40_c00246{letter-spacing:0.162720px;}
.ls5a_c00246{letter-spacing:0.169500px;}
.ls38_c00246{letter-spacing:0.176280px;}
.ls29_c00246{letter-spacing:0.183060px;}
.ls5f_c00246{letter-spacing:0.196620px;}
.ls45_c00246{letter-spacing:0.216960px;}
.ls2a_c00246{letter-spacing:0.223740px;}
.lse_c00246{letter-spacing:0.264420px;}
.ls2b_c00246{letter-spacing:0.284760px;}
.ls4c_c00246{letter-spacing:0.305100px;}
.ls4_c00246{letter-spacing:0.318660px;}
.ls24_c00246{letter-spacing:0.325440px;}
.ls3b_c00246{letter-spacing:0.339000px;}
.ls5d_c00246{letter-spacing:0.359340px;}
.ls5e_c00246{letter-spacing:0.366120px;}
.ls2f_c00246{letter-spacing:0.372900px;}
.ls3f_c00246{letter-spacing:0.379680px;}
.ls23_c00246{letter-spacing:0.386460px;}
.ls1f_c00246{letter-spacing:0.393240px;}
.ls3_c00246{letter-spacing:0.406800px;}
.ls11_c00246{letter-spacing:0.413580px;}
.ls46_c00246{letter-spacing:0.420360px;}
.ls48_c00246{letter-spacing:0.427140px;}
.ls44_c00246{letter-spacing:0.433920px;}
.ls64_c00246{letter-spacing:0.440700px;}
.ls3d_c00246{letter-spacing:0.447480px;}
.ls3c_c00246{letter-spacing:0.467820px;}
.ls58_c00246{letter-spacing:0.474600px;}
.ls57_c00246{letter-spacing:0.488160px;}
.ls39_c00246{letter-spacing:0.528840px;}
.ls35_c00246{letter-spacing:0.535620px;}
.ls1b_c00246{letter-spacing:0.542400px;}
.ls99_c00246{letter-spacing:0.547200px;}
.ls30_c00246{letter-spacing:0.549180px;}
.ls4e_c00246{letter-spacing:0.555960px;}
.ls54_c00246{letter-spacing:0.569520px;}
.ls0_c00246{letter-spacing:0.576300px;}
.ls60_c00246{letter-spacing:0.583080px;}
.lsa_c00246{letter-spacing:0.596640px;}
.ls12_c00246{letter-spacing:0.610200px;}
.ls8e_c00246{letter-spacing:0.630540px;}
.ls28_c00246{letter-spacing:0.637320px;}
.ls63_c00246{letter-spacing:0.644100px;}
.ls18_c00246{letter-spacing:0.657660px;}
.ls15_c00246{letter-spacing:0.664440px;}
.ls1e_c00246{letter-spacing:0.678000px;}
.ls25_c00246{letter-spacing:0.705120px;}
.ls20_c00246{letter-spacing:0.725460px;}
.ls65_c00246{letter-spacing:0.739020px;}
.ls14_c00246{letter-spacing:0.745800px;}
.lsb_c00246{letter-spacing:0.766140px;}
.ls53_c00246{letter-spacing:0.772920px;}
.ls41_c00246{letter-spacing:0.779700px;}
.ls27_c00246{letter-spacing:0.786480px;}
.lsf_c00246{letter-spacing:0.800040px;}
.lsc_c00246{letter-spacing:0.806820px;}
.ls1_c00246{letter-spacing:0.820380px;}
.ls7f_c00246{letter-spacing:0.847500px;}
.ls4a_c00246{letter-spacing:0.854280px;}
.ls98_c00246{letter-spacing:0.874620px;}
.ls1a_c00246{letter-spacing:0.888180px;}
.ls26_c00246{letter-spacing:0.928860px;}
.ls61_c00246{letter-spacing:0.949200px;}
.ls21_c00246{letter-spacing:0.955980px;}
.ls66_c00246{letter-spacing:0.962760px;}
.ls2_c00246{letter-spacing:0.989880px;}
.ls32_c00246{letter-spacing:1.003440px;}
.ls3e_c00246{letter-spacing:1.010220px;}
.ls3a_c00246{letter-spacing:1.017000px;}
.ls49_c00246{letter-spacing:1.044120px;}
.ls42_c00246{letter-spacing:1.057680px;}
.ls8_c00246{letter-spacing:1.091580px;}
.ls5c_c00246{letter-spacing:1.105140px;}
.ls50_c00246{letter-spacing:1.111920px;}
.ls5_c00246{letter-spacing:1.132260px;}
.ls51_c00246{letter-spacing:1.139040px;}
.ls47_c00246{letter-spacing:1.140720px;}
.ls22_c00246{letter-spacing:1.159380px;}
.ls1d_c00246{letter-spacing:1.186500px;}
.ls62_c00246{letter-spacing:1.261080px;}
.ls2c_c00246{letter-spacing:1.267860px;}
.ls36_c00246{letter-spacing:1.272240px;}
.ls55_c00246{letter-spacing:1.281420px;}
.ls67_c00246{letter-spacing:1.285200px;}
.ls5b_c00246{letter-spacing:1.328880px;}
.ls56_c00246{letter-spacing:1.362780px;}
.lsd_c00246{letter-spacing:1.444140px;}
.ls4d_c00246{letter-spacing:1.450920px;}
.ls9_c00246{letter-spacing:1.478040px;}
.ls72_c00246{letter-spacing:1.484820px;}
.ls34_c00246{letter-spacing:1.674660px;}
.ls52_c00246{letter-spacing:1.776360px;}
.ls31_c00246{letter-spacing:1.918740px;}
.ls2e_c00246{letter-spacing:1.932300px;}
.ls19_c00246{letter-spacing:2.156040px;}
.ls33_c00246{letter-spacing:2.162820px;}
.ls6_c00246{letter-spacing:2.203500px;}
.ls1c_c00246{letter-spacing:2.637420px;}
.ls10_c00246{letter-spacing:3.376440px;}
.ls68_c00246{letter-spacing:3.390000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{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__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00246{word-spacing:0.000000px;}
.ws1_c00246{word-spacing:1.728900px;}
.ws0_c00246{word-spacing:4.678200px;}
.ws2_c00246{word-spacing:15.512640px;}
.ws3_c00246{word-spacing:17.560200px;}
.ws4_c00246{word-spacing:25.601280px;}
._5_c00246{margin-left:-4.874820px;}
._4_c00246{margin-left:-2.691660px;}
._2_c00246{margin-left:-1.017000px;}
._0_c00246{width:1.979760px;}
._3_c00246{width:3.064560px;}
._1_c00246{width:4.339200px;}
._b_c00246{width:5.952840px;}
._a_c00246{width:7.661400px;}
._6_c00246{width:9.532680px;}
._12_c00246{width:11.092080px;}
._8_c00246{width:12.712500px;}
._13_c00246{width:13.722720px;}
._9_c00246{width:14.780400px;}
._7_c00246{width:15.878760px;}
._14_c00246{width:17.017800px;}
._d_c00246{width:18.204300px;}
._f_c00246{width:19.827300px;}
._10_c00246{width:21.275640px;}
._c_c00246{width:24.604620px;}
._11_c00246{width:28.970580px;}
._e_c00246{width:32.073000px;}
.fc0_c00246{color:transparent;}
.fs6_c00246{font-size:57.600000px;}
.fs3_c00246{font-size:58.800000px;}
.fs0_c00246{font-size:61.200000px;}
.fs1_c00246{font-size:67.800000px;}
.fs2_c00246{font-size:68.400000px;}
.fs4_c00246{font-size:69.000000px;}
.fs5_c00246{font-size:70.200000px;}
.y0_c00246{bottom:0.000000px;}
.y1a_c00246{bottom:75.600000px;}
.y19_c00246{bottom:154.085250px;}
.y18_c00246{bottom:184.680000px;}
.y17_c00246{bottom:216.015000px;}
.y16_c00246{bottom:247.330950px;}
.y15_c00246{bottom:278.654550px;}
.y14_c00246{bottom:309.622200px;}
.y13_c00246{bottom:340.200000px;}
.y12_c00246{bottom:402.476850px;}
.y11_c00246{bottom:434.173350px;}
.y10_c00246{bottom:465.480000px;}
.yf_c00246{bottom:559.447800px;}
.ye_c00246{bottom:622.095000px;}
.yd_c00246{bottom:653.059050px;}
.yc_c00246{bottom:715.316400px;}
.yb_c00246{bottom:746.640000px;}
.ya_c00246{bottom:809.655450px;}
.y9_c00246{bottom:841.335000px;}
.y8_c00246{bottom:903.236400px;}
.y7_c00246{bottom:934.560000px;}
.y5_c00246{bottom:996.486150px;}
.y6_c00246{bottom:996.495000px;}
.y4_c00246{bottom:1027.809750px;}
.y3_c00246{bottom:1090.440000px;}
.y2_c00246{bottom:1122.135000px;}
.y1_c00246{bottom:1197.375000px;}
.hb_c00246{height:56.531250px;}
.h2_c00246{height:60.064453px;}
.h3_c00246{height:66.541992px;}
.h8_c00246{height:66.554592px;}
.h7_c00246{height:66.570792px;}
.h4_c00246{height:66.577392px;}
.h6_c00246{height:67.097461px;}
.h9_c00246{height:69.539062px;}
.h5_c00246{height:70.713281px;}
.ha_c00246{height:70.748437px;}
.h1_c00246{height:1263.000000px;}
.h0_c00246{height:1263.240000px;}
.w1_c00246{width:892.500000px;}
.w0_c00246{width:892.800000px;}
.x0_c00246{left:0.000000px;}
.x1_c00246{left:124.845000px;}
.x3_c00246{left:151.170000px;}
.x2_c00246{left:179.055000px;}
.xa_c00246{left:205.110000px;}
.x7_c00246{left:283.695000px;}
.xb_c00246{left:306.180000px;}
.x5_c00246{left:365.220000px;}
.x8_c00246{left:377.445000px;}
.x6_c00246{left:381.570000px;}
.x9_c00246{left:397.965000px;}
.xc_c00246{left:408.930000px;}
.x12_c00246{left:425.790000px;}
.x4_c00246{left:445.140000px;}
.xd_c00246{left:478.290000px;}
.xe_c00246{left:535.125000px;}
.xf_c00246{left:628.380000px;}
.x10_c00246{left:659.415000px;}
.x11_c00246{left:683.190000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls93_c00246{letter-spacing:-2.184000pt;}
.ls94_c00246{letter-spacing:-2.171520pt;}
.ls90_c00246{letter-spacing:-2.146667pt;}
.ls6f_c00246{letter-spacing:-2.109333pt;}
.ls91_c00246{letter-spacing:-2.028000pt;}
.ls95_c00246{letter-spacing:-1.962667pt;}
.ls77_c00246{letter-spacing:-1.681440pt;}
.ls6c_c00246{letter-spacing:-1.422293pt;}
.ls6e_c00246{letter-spacing:-1.265600pt;}
.ls8a_c00246{letter-spacing:-1.247520pt;}
.ls6b_c00246{letter-spacing:-1.223413pt;}
.ls88_c00246{letter-spacing:-1.126987pt;}
.ls89_c00246{letter-spacing:-1.108907pt;}
.ls7d_c00246{letter-spacing:-0.982347pt;}
.ls79_c00246{letter-spacing:-0.958240pt;}
.ls80_c00246{letter-spacing:-0.867840pt;}
.ls92_c00246{letter-spacing:-0.823680pt;}
.ls7b_c00246{letter-spacing:-0.729227pt;}
.ls96_c00246{letter-spacing:-0.656907pt;}
.ls83_c00246{letter-spacing:-0.644853pt;}
.ls75_c00246{letter-spacing:-0.638827pt;}
.ls76_c00246{letter-spacing:-0.614720pt;}
.ls82_c00246{letter-spacing:-0.548427pt;}
.ls8f_c00246{letter-spacing:-0.518293pt;}
.ls81_c00246{letter-spacing:-0.506240pt;}
.ls78_c00246{letter-spacing:-0.500213pt;}
.ls71_c00246{letter-spacing:-0.488160pt;}
.ls7c_c00246{letter-spacing:-0.439947pt;}
.ls6a_c00246{letter-spacing:-0.355573pt;}
.ls74_c00246{letter-spacing:-0.343520pt;}
.ls8d_c00246{letter-spacing:-0.319413pt;}
.ls86_c00246{letter-spacing:-0.313387pt;}
.ls8b_c00246{letter-spacing:-0.295307pt;}
.ls87_c00246{letter-spacing:-0.241067pt;}
.ls70_c00246{letter-spacing:-0.162720pt;}
.ls7a_c00246{letter-spacing:-0.156693pt;}
.ls97_c00246{letter-spacing:-0.126560pt;}
.ls7e_c00246{letter-spacing:-0.120533pt;}
.ls69_c00246{letter-spacing:-0.114507pt;}
.ls85_c00246{letter-spacing:-0.096427pt;}
.ls8c_c00246{letter-spacing:-0.060267pt;}
.ls73_c00246{letter-spacing:-0.042187pt;}
.ls84_c00246{letter-spacing:-0.012053pt;}
.ls6d_c00246{letter-spacing:0.000000pt;}
.ls2d_c00246{letter-spacing:0.012053pt;}
.ls13_c00246{letter-spacing:0.018080pt;}
.ls17_c00246{letter-spacing:0.030133pt;}
.ls7_c00246{letter-spacing:0.036160pt;}
.ls4f_c00246{letter-spacing:0.066293pt;}
.ls43_c00246{letter-spacing:0.084373pt;}
.ls4b_c00246{letter-spacing:0.090400pt;}
.ls59_c00246{letter-spacing:0.108480pt;}
.ls16_c00246{letter-spacing:0.126560pt;}
.ls37_c00246{letter-spacing:0.133760pt;}
.ls40_c00246{letter-spacing:0.144640pt;}
.ls5a_c00246{letter-spacing:0.150667pt;}
.ls38_c00246{letter-spacing:0.156693pt;}
.ls29_c00246{letter-spacing:0.162720pt;}
.ls5f_c00246{letter-spacing:0.174773pt;}
.ls45_c00246{letter-spacing:0.192853pt;}
.ls2a_c00246{letter-spacing:0.198880pt;}
.lse_c00246{letter-spacing:0.235040pt;}
.ls2b_c00246{letter-spacing:0.253120pt;}
.ls4c_c00246{letter-spacing:0.271200pt;}
.ls4_c00246{letter-spacing:0.283253pt;}
.ls24_c00246{letter-spacing:0.289280pt;}
.ls3b_c00246{letter-spacing:0.301333pt;}
.ls5d_c00246{letter-spacing:0.319413pt;}
.ls5e_c00246{letter-spacing:0.325440pt;}
.ls2f_c00246{letter-spacing:0.331467pt;}
.ls3f_c00246{letter-spacing:0.337493pt;}
.ls23_c00246{letter-spacing:0.343520pt;}
.ls1f_c00246{letter-spacing:0.349547pt;}
.ls3_c00246{letter-spacing:0.361600pt;}
.ls11_c00246{letter-spacing:0.367627pt;}
.ls46_c00246{letter-spacing:0.373653pt;}
.ls48_c00246{letter-spacing:0.379680pt;}
.ls44_c00246{letter-spacing:0.385707pt;}
.ls64_c00246{letter-spacing:0.391733pt;}
.ls3d_c00246{letter-spacing:0.397760pt;}
.ls3c_c00246{letter-spacing:0.415840pt;}
.ls58_c00246{letter-spacing:0.421867pt;}
.ls57_c00246{letter-spacing:0.433920pt;}
.ls39_c00246{letter-spacing:0.470080pt;}
.ls35_c00246{letter-spacing:0.476107pt;}
.ls1b_c00246{letter-spacing:0.482133pt;}
.ls99_c00246{letter-spacing:0.486400pt;}
.ls30_c00246{letter-spacing:0.488160pt;}
.ls4e_c00246{letter-spacing:0.494187pt;}
.ls54_c00246{letter-spacing:0.506240pt;}
.ls0_c00246{letter-spacing:0.512267pt;}
.ls60_c00246{letter-spacing:0.518293pt;}
.lsa_c00246{letter-spacing:0.530347pt;}
.ls12_c00246{letter-spacing:0.542400pt;}
.ls8e_c00246{letter-spacing:0.560480pt;}
.ls28_c00246{letter-spacing:0.566507pt;}
.ls63_c00246{letter-spacing:0.572533pt;}
.ls18_c00246{letter-spacing:0.584587pt;}
.ls15_c00246{letter-spacing:0.590613pt;}
.ls1e_c00246{letter-spacing:0.602667pt;}
.ls25_c00246{letter-spacing:0.626773pt;}
.ls20_c00246{letter-spacing:0.644853pt;}
.ls65_c00246{letter-spacing:0.656907pt;}
.ls14_c00246{letter-spacing:0.662933pt;}
.lsb_c00246{letter-spacing:0.681013pt;}
.ls53_c00246{letter-spacing:0.687040pt;}
.ls41_c00246{letter-spacing:0.693067pt;}
.ls27_c00246{letter-spacing:0.699093pt;}
.lsf_c00246{letter-spacing:0.711147pt;}
.lsc_c00246{letter-spacing:0.717173pt;}
.ls1_c00246{letter-spacing:0.729227pt;}
.ls7f_c00246{letter-spacing:0.753333pt;}
.ls4a_c00246{letter-spacing:0.759360pt;}
.ls98_c00246{letter-spacing:0.777440pt;}
.ls1a_c00246{letter-spacing:0.789493pt;}
.ls26_c00246{letter-spacing:0.825653pt;}
.ls61_c00246{letter-spacing:0.843733pt;}
.ls21_c00246{letter-spacing:0.849760pt;}
.ls66_c00246{letter-spacing:0.855787pt;}
.ls2_c00246{letter-spacing:0.879893pt;}
.ls32_c00246{letter-spacing:0.891947pt;}
.ls3e_c00246{letter-spacing:0.897973pt;}
.ls3a_c00246{letter-spacing:0.904000pt;}
.ls49_c00246{letter-spacing:0.928107pt;}
.ls42_c00246{letter-spacing:0.940160pt;}
.ls8_c00246{letter-spacing:0.970293pt;}
.ls5c_c00246{letter-spacing:0.982347pt;}
.ls50_c00246{letter-spacing:0.988373pt;}
.ls5_c00246{letter-spacing:1.006453pt;}
.ls51_c00246{letter-spacing:1.012480pt;}
.ls47_c00246{letter-spacing:1.013973pt;}
.ls22_c00246{letter-spacing:1.030560pt;}
.ls1d_c00246{letter-spacing:1.054667pt;}
.ls62_c00246{letter-spacing:1.120960pt;}
.ls2c_c00246{letter-spacing:1.126987pt;}
.ls36_c00246{letter-spacing:1.130880pt;}
.ls55_c00246{letter-spacing:1.139040pt;}
.ls67_c00246{letter-spacing:1.142400pt;}
.ls5b_c00246{letter-spacing:1.181227pt;}
.ls56_c00246{letter-spacing:1.211360pt;}
.lsd_c00246{letter-spacing:1.283680pt;}
.ls4d_c00246{letter-spacing:1.289707pt;}
.ls9_c00246{letter-spacing:1.313813pt;}
.ls72_c00246{letter-spacing:1.319840pt;}
.ls34_c00246{letter-spacing:1.488587pt;}
.ls52_c00246{letter-spacing:1.578987pt;}
.ls31_c00246{letter-spacing:1.705547pt;}
.ls2e_c00246{letter-spacing:1.717600pt;}
.ls19_c00246{letter-spacing:1.916480pt;}
.ls33_c00246{letter-spacing:1.922507pt;}
.ls6_c00246{letter-spacing:1.958667pt;}
.ls1c_c00246{letter-spacing:2.344373pt;}
.ls10_c00246{letter-spacing:3.001280pt;}
.ls68_c00246{letter-spacing:3.013333pt;}
.ws5_c00246{word-spacing:0.000000pt;}
.ws1_c00246{word-spacing:1.536800pt;}
.ws0_c00246{word-spacing:4.158400pt;}
.ws2_c00246{word-spacing:13.789013pt;}
.ws3_c00246{word-spacing:15.609067pt;}
.ws4_c00246{word-spacing:22.756693pt;}
._5_c00246{margin-left:-4.333173pt;}
._4_c00246{margin-left:-2.392587pt;}
._2_c00246{margin-left:-0.904000pt;}
._0_c00246{width:1.759787pt;}
._3_c00246{width:2.724053pt;}
._1_c00246{width:3.857067pt;}
._b_c00246{width:5.291413pt;}
._a_c00246{width:6.810133pt;}
._6_c00246{width:8.473493pt;}
._12_c00246{width:9.859627pt;}
._8_c00246{width:11.300000pt;}
._13_c00246{width:12.197973pt;}
._9_c00246{width:13.138133pt;}
._7_c00246{width:14.114453pt;}
._14_c00246{width:15.126933pt;}
._d_c00246{width:16.181600pt;}
._f_c00246{width:17.624267pt;}
._10_c00246{width:18.911680pt;}
._c_c00246{width:21.870773pt;}
._11_c00246{width:25.751627pt;}
._e_c00246{width:28.509333pt;}
.fs6_c00246{font-size:51.200000pt;}
.fs3_c00246{font-size:52.266667pt;}
.fs0_c00246{font-size:54.400000pt;}
.fs1_c00246{font-size:60.266667pt;}
.fs2_c00246{font-size:60.800000pt;}
.fs4_c00246{font-size:61.333333pt;}
.fs5_c00246{font-size:62.400000pt;}
.y0_c00246{bottom:0.000000pt;}
.y1a_c00246{bottom:67.200000pt;}
.y19_c00246{bottom:136.964667pt;}
.y18_c00246{bottom:164.160000pt;}
.y17_c00246{bottom:192.013333pt;}
.y16_c00246{bottom:219.849733pt;}
.y15_c00246{bottom:247.692933pt;}
.y14_c00246{bottom:275.219733pt;}
.y13_c00246{bottom:302.400000pt;}
.y12_c00246{bottom:357.757200pt;}
.y11_c00246{bottom:385.931867pt;}
.y10_c00246{bottom:413.760000pt;}
.yf_c00246{bottom:497.286933pt;}
.ye_c00246{bottom:552.973333pt;}
.yd_c00246{bottom:580.496933pt;}
.yc_c00246{bottom:635.836800pt;}
.yb_c00246{bottom:663.680000pt;}
.ya_c00246{bottom:719.693733pt;}
.y9_c00246{bottom:747.853333pt;}
.y8_c00246{bottom:802.876800pt;}
.y7_c00246{bottom:830.720000pt;}
.y5_c00246{bottom:885.765467pt;}
.y6_c00246{bottom:885.773333pt;}
.y4_c00246{bottom:913.608667pt;}
.y3_c00246{bottom:969.280000pt;}
.y2_c00246{bottom:997.453333pt;}
.y1_c00246{bottom:1064.333333pt;}
.hb_c00246{height:50.250000pt;}
.h2_c00246{height:53.390625pt;}
.h3_c00246{height:59.148438pt;}
.h8_c00246{height:59.159638pt;}
.h7_c00246{height:59.174038pt;}
.h4_c00246{height:59.179904pt;}
.h6_c00246{height:59.642187pt;}
.h9_c00246{height:61.812500pt;}
.h5_c00246{height:62.856250pt;}
.ha_c00246{height:62.887500pt;}
.h1_c00246{height:1122.666667pt;}
.h0_c00246{height:1122.880000pt;}
.w1_c00246{width:793.333333pt;}
.w0_c00246{width:793.600000pt;}
.x0_c00246{left:0.000000pt;}
.x1_c00246{left:110.973333pt;}
.x3_c00246{left:134.373333pt;}
.x2_c00246{left:159.160000pt;}
.xa_c00246{left:182.320000pt;}
.x7_c00246{left:252.173333pt;}
.xb_c00246{left:272.160000pt;}
.x5_c00246{left:324.640000pt;}
.x8_c00246{left:335.506667pt;}
.x6_c00246{left:339.173333pt;}
.x9_c00246{left:353.746667pt;}
.xc_c00246{left:363.493333pt;}
.x12_c00246{left:378.480000pt;}
.x4_c00246{left:395.680000pt;}
.xd_c00246{left:425.146667pt;}
.xe_c00246{left:475.666667pt;}
.xf_c00246{left:558.560000pt;}
.x10_c00246{left:586.146667pt;}
.x11_c00246{left:607.280000pt;}
}





/* 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_c00247 {
    display:none;
  }
  .loading-indicator_c00247.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00247 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_c00247 { 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_c00247" -> "#page-container .classname_c00247")
 */
.pf_c00247 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00247 { /* 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_c00247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00247 { /* 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_c00247 { /* 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_c00247 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00247 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00247 {overflow:visible;}
  }
}
.c_c00247 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00247 { /* 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_c00247:after { /* webkit #35443 */
  content: '';
}
.t_c00247:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00247 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 */
}
.__c00247 { /* 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_c00247 { /* info for Javascript */
  display:none;
}
.l_c00247 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00247 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00247 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00247: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_c00247 {
    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_c00247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00247.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_c00247 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00247;src:url('chunks/assets/font_5a153d311965ad7e80ab38d7.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.284668;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_c00247;src:url('chunks/assets/font_a8ca234d848bdd4baa19fa9e.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;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_c00247;src:url('chunks/assets/font_3a35384ab5d107fb83351cd3.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.284180;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_c00247{transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);}
.m6_c00247{transform:matrix(0.223482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223482,0.000000,0.000000,0.250000,0,0);}
.m5_c00247{transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);}
.m2_c00247{transform:matrix(0.226376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226376,0.000000,0.000000,0.250000,0,0);}
.m1_c00247{transform:matrix(0.233510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233510,0.000000,0.000000,0.250000,0,0);}
.md_c00247{transform:matrix(0.235793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235793,0.000000,0.000000,0.250000,0,0);}
.mb_c00247{transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);}
.ma_c00247{transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);}
.mc_c00247{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m3_c00247{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m9_c00247{transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);}
.m0_c00247{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);}
.m7_c00247{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m8_c00247{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls8c_c00247{letter-spacing:-2.667000px;}
.ls3f_c00247{letter-spacing:-2.625000px;}
.ls48_c00247{letter-spacing:-2.436000px;}
.ls93_c00247{letter-spacing:-2.429040px;}
.ls97_c00247{letter-spacing:-2.310000px;}
.ls57_c00247{letter-spacing:-2.143680px;}
.ls5a_c00247{letter-spacing:-2.060160px;}
.ls87_c00247{letter-spacing:-2.004120px;}
.ls92_c00247{letter-spacing:-1.990560px;}
.ls90_c00247{letter-spacing:-1.983600px;}
.ls91_c00247{letter-spacing:-1.774800px;}
.ls81_c00247{letter-spacing:-1.767840px;}
.ls76_c00247{letter-spacing:-1.649520px;}
.ls96_c00247{letter-spacing:-1.600800px;}
.ls53_c00247{letter-spacing:-1.531200px;}
.ls4a_c00247{letter-spacing:-1.426800px;}
.ls6d_c00247{letter-spacing:-1.385040px;}
.ls55_c00247{letter-spacing:-1.343280px;}
.ls59_c00247{letter-spacing:-1.266720px;}
.ls7d_c00247{letter-spacing:-1.218000px;}
.ls67_c00247{letter-spacing:-1.169280px;}
.ls80_c00247{letter-spacing:-1.134480px;}
.ls95_c00247{letter-spacing:-0.981360px;}
.ls72_c00247{letter-spacing:-0.974400px;}
.ls85_c00247{letter-spacing:-0.939600px;}
.ls79_c00247{letter-spacing:-0.897840px;}
.ls7f_c00247{letter-spacing:-0.835200px;}
.ls94_c00247{letter-spacing:-0.828240px;}
.ls46_c00247{letter-spacing:-0.807360px;}
.ls7c_c00247{letter-spacing:-0.758640px;}
.ls56_c00247{letter-spacing:-0.730800px;}
.ls4f_c00247{letter-spacing:-0.647280px;}
.ls73_c00247{letter-spacing:-0.626400px;}
.ls7e_c00247{letter-spacing:-0.619440px;}
.ls42_c00247{letter-spacing:-0.591600px;}
.ls89_c00247{letter-spacing:-0.570720px;}
.ls64_c00247{letter-spacing:-0.549840px;}
.ls5f_c00247{letter-spacing:-0.542880px;}
.ls6a_c00247{letter-spacing:-0.515040px;}
.ls77_c00247{letter-spacing:-0.508080px;}
.ls78_c00247{letter-spacing:-0.494160px;}
.ls66_c00247{letter-spacing:-0.487200px;}
.ls51_c00247{letter-spacing:-0.480240px;}
.ls8e_c00247{letter-spacing:-0.452400px;}
.ls8b_c00247{letter-spacing:-0.445440px;}
.ls47_c00247{letter-spacing:-0.438480px;}
.ls3e_c00247{letter-spacing:-0.396720px;}
.ls83_c00247{letter-spacing:-0.389760px;}
.ls43_c00247{letter-spacing:-0.382800px;}
.ls68_c00247{letter-spacing:-0.368880px;}
.ls8f_c00247{letter-spacing:-0.361920px;}
.ls4d_c00247{letter-spacing:-0.299280px;}
.ls6b_c00247{letter-spacing:-0.285360px;}
.ls6e_c00247{letter-spacing:-0.257520px;}
.ls75_c00247{letter-spacing:-0.250560px;}
.ls5e_c00247{letter-spacing:-0.243600px;}
.ls8a_c00247{letter-spacing:-0.222720px;}
.ls4b_c00247{letter-spacing:-0.215760px;}
.ls44_c00247{letter-spacing:-0.208800px;}
.ls60_c00247{letter-spacing:-0.201840px;}
.ls54_c00247{letter-spacing:-0.194880px;}
.ls6c_c00247{letter-spacing:-0.187920px;}
.ls49_c00247{letter-spacing:-0.180960px;}
.ls5b_c00247{letter-spacing:-0.171000px;}
.ls58_c00247{letter-spacing:-0.167040px;}
.ls50_c00247{letter-spacing:-0.160080px;}
.ls7a_c00247{letter-spacing:-0.153120px;}
.ls69_c00247{letter-spacing:-0.146160px;}
.ls7b_c00247{letter-spacing:-0.139200px;}
.ls84_c00247{letter-spacing:-0.132240px;}
.ls41_c00247{letter-spacing:-0.125280px;}
.ls71_c00247{letter-spacing:-0.116280px;}
.ls65_c00247{letter-spacing:-0.111360px;}
.ls74_c00247{letter-spacing:-0.090480px;}
.ls61_c00247{letter-spacing:-0.083520px;}
.ls52_c00247{letter-spacing:-0.082080px;}
.ls8d_c00247{letter-spacing:-0.069600px;}
.ls5c_c00247{letter-spacing:-0.062640px;}
.ls62_c00247{letter-spacing:-0.048720px;}
.ls63_c00247{letter-spacing:-0.034800px;}
.ls4e_c00247{letter-spacing:-0.027840px;}
.ls5d_c00247{letter-spacing:-0.013680px;}
.ls45_c00247{letter-spacing:-0.006960px;}
.ls40_c00247{letter-spacing:0.000000px;}
.ls38_c00247{letter-spacing:0.006960px;}
.lsa_c00247{letter-spacing:0.013920px;}
.ls2b_c00247{letter-spacing:0.027840px;}
.ls26_c00247{letter-spacing:0.034800px;}
.ls18_c00247{letter-spacing:0.048720px;}
.ls7_c00247{letter-spacing:0.062640px;}
.ls12_c00247{letter-spacing:0.076560px;}
.ls10_c00247{letter-spacing:0.082080px;}
.ls8_c00247{letter-spacing:0.097440px;}
.ls2e_c00247{letter-spacing:0.111360px;}
.ls3_c00247{letter-spacing:0.146160px;}
.ls3c_c00247{letter-spacing:0.150480px;}
.ls17_c00247{letter-spacing:0.187920px;}
.ls1b_c00247{letter-spacing:0.201840px;}
.ls29_c00247{letter-spacing:0.215760px;}
.ls22_c00247{letter-spacing:0.243600px;}
.ls5_c00247{letter-spacing:0.257520px;}
.lsb_c00247{letter-spacing:0.264480px;}
.ls4c_c00247{letter-spacing:0.292320px;}
.ls2d_c00247{letter-spacing:0.299280px;}
.ls1d_c00247{letter-spacing:0.306240px;}
.ls31_c00247{letter-spacing:0.313200px;}
.ls1_c00247{letter-spacing:0.320160px;}
.ls4_c00247{letter-spacing:0.354960px;}
.ls39_c00247{letter-spacing:0.361920px;}
.ls28_c00247{letter-spacing:0.368880px;}
.ls20_c00247{letter-spacing:0.375840px;}
.ls6_c00247{letter-spacing:0.417600px;}
.ls23_c00247{letter-spacing:0.431520px;}
.lsd_c00247{letter-spacing:0.437760px;}
.ls3b_c00247{letter-spacing:0.444600px;}
.ls2f_c00247{letter-spacing:0.459360px;}
.ls1f_c00247{letter-spacing:0.466320px;}
.ls36_c00247{letter-spacing:0.473280px;}
.ls34_c00247{letter-spacing:0.478800px;}
.ls15_c00247{letter-spacing:0.487200px;}
.ls24_c00247{letter-spacing:0.522000px;}
.ls1e_c00247{letter-spacing:0.528960px;}
.lsc_c00247{letter-spacing:0.535920px;}
.ls2_c00247{letter-spacing:0.542880px;}
.ls35_c00247{letter-spacing:0.556800px;}
.ls13_c00247{letter-spacing:0.588240px;}
.ls9_c00247{letter-spacing:0.591600px;}
.ls14_c00247{letter-spacing:0.647280px;}
.ls16_c00247{letter-spacing:0.654240px;}
.ls21_c00247{letter-spacing:0.663480px;}
.ls82_c00247{letter-spacing:0.691560px;}
.ls11_c00247{letter-spacing:0.751680px;}
.ls30_c00247{letter-spacing:0.793440px;}
.ls6f_c00247{letter-spacing:0.835200px;}
.ls25_c00247{letter-spacing:0.849120px;}
.ls2a_c00247{letter-spacing:0.883920px;}
.ls32_c00247{letter-spacing:0.939060px;}
.ls0_c00247{letter-spacing:0.939600px;}
.ls1c_c00247{letter-spacing:0.950760px;}
.lsf_c00247{letter-spacing:0.964440px;}
.ls33_c00247{letter-spacing:1.019160px;}
.ls2c_c00247{letter-spacing:1.064880px;}
.ls86_c00247{letter-spacing:1.211040px;}
.lse_c00247{letter-spacing:1.224960px;}
.ls3d_c00247{letter-spacing:1.444320px;}
.ls1a_c00247{letter-spacing:1.983600px;}
.ls19_c00247{letter-spacing:2.317680px;}
.ls3a_c00247{letter-spacing:2.442960px;}
.ls37_c00247{letter-spacing:2.839680px;}
.ls27_c00247{letter-spacing:3.215520px;}
.ls70_c00247{letter-spacing:3.420000px;}
.ls88_c00247{letter-spacing:3.480000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{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__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00247{word-spacing:0.000000px;}
.ws2_c00247{word-spacing:1.156800px;}
.ws1_c00247{word-spacing:5.817600px;}
.ws0_c00247{word-spacing:39.017760px;}
._16_c00247{margin-left:-7.649040px;}
._c_c00247{margin-left:-4.913040px;}
._a_c00247{margin-left:-1.907760px;}
._5_c00247{width:2.164560px;}
._3_c00247{width:3.647040px;}
._7_c00247{width:4.934640px;}
._6_c00247{width:6.361440px;}
._4_c00247{width:7.864800px;}
._8_c00247{width:10.273680px;}
._1_c00247{width:12.256560px;}
._0_c00247{width:13.363200px;}
._2_c00247{width:14.713440px;}
._b_c00247{width:15.952080px;}
._9_c00247{width:19.021920px;}
._12_c00247{width:20.406720px;}
._17_c00247{width:21.472320px;}
._11_c00247{width:22.961040px;}
._13_c00247{width:24.986400px;}
._14_c00247{width:26.134800px;}
._15_c00247{width:31.828200px;}
._10_c00247{width:34.806960px;}
._f_c00247{width:36.776640px;}
._d_c00247{width:38.043360px;}
._e_c00247{width:42.971040px;}
.fc0_c00247{color:transparent;}
.fs0_c00247{font-size:61.200000px;}
.fs8_c00247{font-size:66.000000px;}
.fs5_c00247{font-size:66.600000px;}
.fs6_c00247{font-size:67.800000px;}
.fs3_c00247{font-size:68.400000px;}
.fs1_c00247{font-size:69.600000px;}
.fs4_c00247{font-size:72.000000px;}
.fs2_c00247{font-size:75.000000px;}
.fs7_c00247{font-size:76.200000px;}
.y0_c00247{bottom:0.000000px;}
.y1f_c00247{bottom:68.775000px;}
.y1e_c00247{bottom:176.040000px;}
.y1d_c00247{bottom:238.695000px;}
.y1c_c00247{bottom:238.700400px;}
.y1b_c00247{bottom:300.975000px;}
.y1a_c00247{bottom:332.655000px;}
.y19_c00247{bottom:395.634600px;}
.y17_c00247{bottom:427.312200px;}
.y18_c00247{bottom:427.320000px;}
.y16_c00247{bottom:459.015000px;}
.y15_c00247{bottom:520.935000px;}
.y14_c00247{bottom:583.192200px;}
.y13_c00247{bottom:614.895000px;}
.y12_c00247{bottom:646.197600px;}
.y11_c00247{bottom:677.535000px;}
.y10_c00247{bottom:677.542800px;}
.yf_c00247{bottom:708.862800px;}
.ye_c00247{bottom:739.800000px;}
.yd_c00247{bottom:802.440000px;}
.yc_c00247{bottom:802.444200px;}
.yb_c00247{bottom:834.495000px;}
.ya_c00247{bottom:897.137400px;}
.y9_c00247{bottom:928.440000px;}
.y8_c00247{bottom:959.760000px;}
.y7_c00247{bottom:959.765400px;}
.y6_c00247{bottom:990.717600px;}
.y5_c00247{bottom:1022.055000px;}
.y4_c00247{bottom:1053.375000px;}
.y3_c00247{bottom:1084.695000px;}
.y2_c00247{bottom:1116.375000px;}
.y1_c00247{bottom:1193.400000px;}
.h2_c00247{height:60.064453px;}
.ha_c00247{height:64.775391px;}
.h8_c00247{height:66.541992px;}
.h7_c00247{height:67.097461px;}
.h3_c00247{height:68.308594px;}
.h6_c00247{height:70.638506px;}
.h5_c00247{height:72.590625px;}
.h9_c00247{height:74.748926px;}
.h4_c00247{height:78.222656px;}
.h1_c00247{height:1263.000000px;}
.h0_c00247{height:1263.240000px;}
.w1_c00247{width:892.500000px;}
.w0_c00247{width:892.800000px;}
.x0_c00247{left:0.000000px;}
.xf_c00247{left:120.170400px;}
.xc_c00247{left:121.491600px;}
.x5_c00247{left:123.015000px;}
.x1_c00247{left:124.125000px;}
.x8_c00247{left:137.310000px;}
.x9_c00247{left:159.630000px;}
.x2_c00247{left:172.665000px;}
.x12_c00247{left:174.405000px;}
.xd_c00247{left:175.845000px;}
.x13_c00247{left:180.210000px;}
.x10_c00247{left:196.770000px;}
.x14_c00247{left:202.200000px;}
.x3_c00247{left:209.130000px;}
.x11_c00247{left:213.360000px;}
.x1b_c00247{left:242.445000px;}
.x1c_c00247{left:270.840000px;}
.xa_c00247{left:288.330000px;}
.x17_c00247{left:295.185000px;}
.x15_c00247{left:303.015000px;}
.xe_c00247{left:310.905000px;}
.xb_c00247{left:321.270000px;}
.x16_c00247{left:331.485000px;}
.x18_c00247{left:366.975000px;}
.x21_c00247{left:423.270000px;}
.x1d_c00247{left:424.605000px;}
.x1e_c00247{left:453.000000px;}
.x19_c00247{left:456.270000px;}
.x1f_c00247{left:513.525000px;}
.x20_c00247{left:541.230000px;}
.x1a_c00247{left:543.015000px;}
.x6_c00247{left:626.610000px;}
.x7_c00247{left:644.955000px;}
.x4_c00247{left:720.585000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls8c_c00247{letter-spacing:-2.370667pt;}
.ls3f_c00247{letter-spacing:-2.333333pt;}
.ls48_c00247{letter-spacing:-2.165333pt;}
.ls93_c00247{letter-spacing:-2.159147pt;}
.ls97_c00247{letter-spacing:-2.053333pt;}
.ls57_c00247{letter-spacing:-1.905493pt;}
.ls5a_c00247{letter-spacing:-1.831253pt;}
.ls87_c00247{letter-spacing:-1.781440pt;}
.ls92_c00247{letter-spacing:-1.769387pt;}
.ls90_c00247{letter-spacing:-1.763200pt;}
.ls91_c00247{letter-spacing:-1.577600pt;}
.ls81_c00247{letter-spacing:-1.571413pt;}
.ls76_c00247{letter-spacing:-1.466240pt;}
.ls96_c00247{letter-spacing:-1.422933pt;}
.ls53_c00247{letter-spacing:-1.361067pt;}
.ls4a_c00247{letter-spacing:-1.268267pt;}
.ls6d_c00247{letter-spacing:-1.231147pt;}
.ls55_c00247{letter-spacing:-1.194027pt;}
.ls59_c00247{letter-spacing:-1.125973pt;}
.ls7d_c00247{letter-spacing:-1.082667pt;}
.ls67_c00247{letter-spacing:-1.039360pt;}
.ls80_c00247{letter-spacing:-1.008427pt;}
.ls95_c00247{letter-spacing:-0.872320pt;}
.ls72_c00247{letter-spacing:-0.866133pt;}
.ls85_c00247{letter-spacing:-0.835200pt;}
.ls79_c00247{letter-spacing:-0.798080pt;}
.ls7f_c00247{letter-spacing:-0.742400pt;}
.ls94_c00247{letter-spacing:-0.736213pt;}
.ls46_c00247{letter-spacing:-0.717653pt;}
.ls7c_c00247{letter-spacing:-0.674347pt;}
.ls56_c00247{letter-spacing:-0.649600pt;}
.ls4f_c00247{letter-spacing:-0.575360pt;}
.ls73_c00247{letter-spacing:-0.556800pt;}
.ls7e_c00247{letter-spacing:-0.550613pt;}
.ls42_c00247{letter-spacing:-0.525867pt;}
.ls89_c00247{letter-spacing:-0.507307pt;}
.ls64_c00247{letter-spacing:-0.488747pt;}
.ls5f_c00247{letter-spacing:-0.482560pt;}
.ls6a_c00247{letter-spacing:-0.457813pt;}
.ls77_c00247{letter-spacing:-0.451627pt;}
.ls78_c00247{letter-spacing:-0.439253pt;}
.ls66_c00247{letter-spacing:-0.433067pt;}
.ls51_c00247{letter-spacing:-0.426880pt;}
.ls8e_c00247{letter-spacing:-0.402133pt;}
.ls8b_c00247{letter-spacing:-0.395947pt;}
.ls47_c00247{letter-spacing:-0.389760pt;}
.ls3e_c00247{letter-spacing:-0.352640pt;}
.ls83_c00247{letter-spacing:-0.346453pt;}
.ls43_c00247{letter-spacing:-0.340267pt;}
.ls68_c00247{letter-spacing:-0.327893pt;}
.ls8f_c00247{letter-spacing:-0.321707pt;}
.ls4d_c00247{letter-spacing:-0.266027pt;}
.ls6b_c00247{letter-spacing:-0.253653pt;}
.ls6e_c00247{letter-spacing:-0.228907pt;}
.ls75_c00247{letter-spacing:-0.222720pt;}
.ls5e_c00247{letter-spacing:-0.216533pt;}
.ls8a_c00247{letter-spacing:-0.197973pt;}
.ls4b_c00247{letter-spacing:-0.191787pt;}
.ls44_c00247{letter-spacing:-0.185600pt;}
.ls60_c00247{letter-spacing:-0.179413pt;}
.ls54_c00247{letter-spacing:-0.173227pt;}
.ls6c_c00247{letter-spacing:-0.167040pt;}
.ls49_c00247{letter-spacing:-0.160853pt;}
.ls5b_c00247{letter-spacing:-0.152000pt;}
.ls58_c00247{letter-spacing:-0.148480pt;}
.ls50_c00247{letter-spacing:-0.142293pt;}
.ls7a_c00247{letter-spacing:-0.136107pt;}
.ls69_c00247{letter-spacing:-0.129920pt;}
.ls7b_c00247{letter-spacing:-0.123733pt;}
.ls84_c00247{letter-spacing:-0.117547pt;}
.ls41_c00247{letter-spacing:-0.111360pt;}
.ls71_c00247{letter-spacing:-0.103360pt;}
.ls65_c00247{letter-spacing:-0.098987pt;}
.ls74_c00247{letter-spacing:-0.080427pt;}
.ls61_c00247{letter-spacing:-0.074240pt;}
.ls52_c00247{letter-spacing:-0.072960pt;}
.ls8d_c00247{letter-spacing:-0.061867pt;}
.ls5c_c00247{letter-spacing:-0.055680pt;}
.ls62_c00247{letter-spacing:-0.043307pt;}
.ls63_c00247{letter-spacing:-0.030933pt;}
.ls4e_c00247{letter-spacing:-0.024747pt;}
.ls5d_c00247{letter-spacing:-0.012160pt;}
.ls45_c00247{letter-spacing:-0.006187pt;}
.ls40_c00247{letter-spacing:0.000000pt;}
.ls38_c00247{letter-spacing:0.006187pt;}
.lsa_c00247{letter-spacing:0.012373pt;}
.ls2b_c00247{letter-spacing:0.024747pt;}
.ls26_c00247{letter-spacing:0.030933pt;}
.ls18_c00247{letter-spacing:0.043307pt;}
.ls7_c00247{letter-spacing:0.055680pt;}
.ls12_c00247{letter-spacing:0.068053pt;}
.ls10_c00247{letter-spacing:0.072960pt;}
.ls8_c00247{letter-spacing:0.086613pt;}
.ls2e_c00247{letter-spacing:0.098987pt;}
.ls3_c00247{letter-spacing:0.129920pt;}
.ls3c_c00247{letter-spacing:0.133760pt;}
.ls17_c00247{letter-spacing:0.167040pt;}
.ls1b_c00247{letter-spacing:0.179413pt;}
.ls29_c00247{letter-spacing:0.191787pt;}
.ls22_c00247{letter-spacing:0.216533pt;}
.ls5_c00247{letter-spacing:0.228907pt;}
.lsb_c00247{letter-spacing:0.235093pt;}
.ls4c_c00247{letter-spacing:0.259840pt;}
.ls2d_c00247{letter-spacing:0.266027pt;}
.ls1d_c00247{letter-spacing:0.272213pt;}
.ls31_c00247{letter-spacing:0.278400pt;}
.ls1_c00247{letter-spacing:0.284587pt;}
.ls4_c00247{letter-spacing:0.315520pt;}
.ls39_c00247{letter-spacing:0.321707pt;}
.ls28_c00247{letter-spacing:0.327893pt;}
.ls20_c00247{letter-spacing:0.334080pt;}
.ls6_c00247{letter-spacing:0.371200pt;}
.ls23_c00247{letter-spacing:0.383573pt;}
.lsd_c00247{letter-spacing:0.389120pt;}
.ls3b_c00247{letter-spacing:0.395200pt;}
.ls2f_c00247{letter-spacing:0.408320pt;}
.ls1f_c00247{letter-spacing:0.414507pt;}
.ls36_c00247{letter-spacing:0.420693pt;}
.ls34_c00247{letter-spacing:0.425600pt;}
.ls15_c00247{letter-spacing:0.433067pt;}
.ls24_c00247{letter-spacing:0.464000pt;}
.ls1e_c00247{letter-spacing:0.470187pt;}
.lsc_c00247{letter-spacing:0.476373pt;}
.ls2_c00247{letter-spacing:0.482560pt;}
.ls35_c00247{letter-spacing:0.494933pt;}
.ls13_c00247{letter-spacing:0.522880pt;}
.ls9_c00247{letter-spacing:0.525867pt;}
.ls14_c00247{letter-spacing:0.575360pt;}
.ls16_c00247{letter-spacing:0.581547pt;}
.ls21_c00247{letter-spacing:0.589760pt;}
.ls82_c00247{letter-spacing:0.614720pt;}
.ls11_c00247{letter-spacing:0.668160pt;}
.ls30_c00247{letter-spacing:0.705280pt;}
.ls6f_c00247{letter-spacing:0.742400pt;}
.ls25_c00247{letter-spacing:0.754773pt;}
.ls2a_c00247{letter-spacing:0.785707pt;}
.ls32_c00247{letter-spacing:0.834720pt;}
.ls0_c00247{letter-spacing:0.835200pt;}
.ls1c_c00247{letter-spacing:0.845120pt;}
.lsf_c00247{letter-spacing:0.857280pt;}
.ls33_c00247{letter-spacing:0.905920pt;}
.ls2c_c00247{letter-spacing:0.946560pt;}
.ls86_c00247{letter-spacing:1.076480pt;}
.lse_c00247{letter-spacing:1.088853pt;}
.ls3d_c00247{letter-spacing:1.283840pt;}
.ls1a_c00247{letter-spacing:1.763200pt;}
.ls19_c00247{letter-spacing:2.060160pt;}
.ls3a_c00247{letter-spacing:2.171520pt;}
.ls37_c00247{letter-spacing:2.524160pt;}
.ls27_c00247{letter-spacing:2.858240pt;}
.ls70_c00247{letter-spacing:3.040000pt;}
.ls88_c00247{letter-spacing:3.093333pt;}
.ws3_c00247{word-spacing:0.000000pt;}
.ws2_c00247{word-spacing:1.028267pt;}
.ws1_c00247{word-spacing:5.171200pt;}
.ws0_c00247{word-spacing:34.682453pt;}
._16_c00247{margin-left:-6.799147pt;}
._c_c00247{margin-left:-4.367147pt;}
._a_c00247{margin-left:-1.695787pt;}
._5_c00247{width:1.924053pt;}
._3_c00247{width:3.241813pt;}
._7_c00247{width:4.386347pt;}
._6_c00247{width:5.654613pt;}
._4_c00247{width:6.990933pt;}
._8_c00247{width:9.132160pt;}
._1_c00247{width:10.894720pt;}
._0_c00247{width:11.878400pt;}
._2_c00247{width:13.078613pt;}
._b_c00247{width:14.179627pt;}
._9_c00247{width:16.908373pt;}
._12_c00247{width:18.139307pt;}
._17_c00247{width:19.086507pt;}
._11_c00247{width:20.409813pt;}
._13_c00247{width:22.210133pt;}
._14_c00247{width:23.230933pt;}
._15_c00247{width:28.291733pt;}
._10_c00247{width:30.939520pt;}
._f_c00247{width:32.690347pt;}
._d_c00247{width:33.816320pt;}
._e_c00247{width:38.196480pt;}
.fs0_c00247{font-size:54.400000pt;}
.fs8_c00247{font-size:58.666667pt;}
.fs5_c00247{font-size:59.200000pt;}
.fs6_c00247{font-size:60.266667pt;}
.fs3_c00247{font-size:60.800000pt;}
.fs1_c00247{font-size:61.866667pt;}
.fs4_c00247{font-size:64.000000pt;}
.fs2_c00247{font-size:66.666667pt;}
.fs7_c00247{font-size:67.733333pt;}
.y0_c00247{bottom:0.000000pt;}
.y1f_c00247{bottom:61.133333pt;}
.y1e_c00247{bottom:156.480000pt;}
.y1d_c00247{bottom:212.173333pt;}
.y1c_c00247{bottom:212.178133pt;}
.y1b_c00247{bottom:267.533333pt;}
.y1a_c00247{bottom:295.693333pt;}
.y19_c00247{bottom:351.675200pt;}
.y17_c00247{bottom:379.833067pt;}
.y18_c00247{bottom:379.840000pt;}
.y16_c00247{bottom:408.013333pt;}
.y15_c00247{bottom:463.053333pt;}
.y14_c00247{bottom:518.393067pt;}
.y13_c00247{bottom:546.573333pt;}
.y12_c00247{bottom:574.397867pt;}
.y11_c00247{bottom:602.253333pt;}
.y10_c00247{bottom:602.260267pt;}
.yf_c00247{bottom:630.100267pt;}
.ye_c00247{bottom:657.600000pt;}
.yd_c00247{bottom:713.280000pt;}
.yc_c00247{bottom:713.283733pt;}
.yb_c00247{bottom:741.773333pt;}
.ya_c00247{bottom:797.455467pt;}
.y9_c00247{bottom:825.280000pt;}
.y8_c00247{bottom:853.120000pt;}
.y7_c00247{bottom:853.124800pt;}
.y6_c00247{bottom:880.637867pt;}
.y5_c00247{bottom:908.493333pt;}
.y4_c00247{bottom:936.333333pt;}
.y3_c00247{bottom:964.173333pt;}
.y2_c00247{bottom:992.333333pt;}
.y1_c00247{bottom:1060.800000pt;}
.h2_c00247{height:53.390625pt;}
.ha_c00247{height:57.578125pt;}
.h8_c00247{height:59.148438pt;}
.h7_c00247{height:59.642187pt;}
.h3_c00247{height:60.718750pt;}
.h6_c00247{height:62.789783pt;}
.h5_c00247{height:64.525000pt;}
.h9_c00247{height:66.443490pt;}
.h4_c00247{height:69.531250pt;}
.h1_c00247{height:1122.666667pt;}
.h0_c00247{height:1122.880000pt;}
.w1_c00247{width:793.333333pt;}
.w0_c00247{width:793.600000pt;}
.x0_c00247{left:0.000000pt;}
.xf_c00247{left:106.818133pt;}
.xc_c00247{left:107.992533pt;}
.x5_c00247{left:109.346667pt;}
.x1_c00247{left:110.333333pt;}
.x8_c00247{left:122.053333pt;}
.x9_c00247{left:141.893333pt;}
.x2_c00247{left:153.480000pt;}
.x12_c00247{left:155.026667pt;}
.xd_c00247{left:156.306667pt;}
.x13_c00247{left:160.186667pt;}
.x10_c00247{left:174.906667pt;}
.x14_c00247{left:179.733333pt;}
.x3_c00247{left:185.893333pt;}
.x11_c00247{left:189.653333pt;}
.x1b_c00247{left:215.506667pt;}
.x1c_c00247{left:240.746667pt;}
.xa_c00247{left:256.293333pt;}
.x17_c00247{left:262.386667pt;}
.x15_c00247{left:269.346667pt;}
.xe_c00247{left:276.360000pt;}
.xb_c00247{left:285.573333pt;}
.x16_c00247{left:294.653333pt;}
.x18_c00247{left:326.200000pt;}
.x21_c00247{left:376.240000pt;}
.x1d_c00247{left:377.426667pt;}
.x1e_c00247{left:402.666667pt;}
.x19_c00247{left:405.573333pt;}
.x1f_c00247{left:456.466667pt;}
.x20_c00247{left:481.093333pt;}
.x1a_c00247{left:482.680000pt;}
.x6_c00247{left:556.986667pt;}
.x7_c00247{left:573.293333pt;}
.x4_c00247{left:640.520000pt;}
}





/* 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_c00248 {
    display:none;
  }
  .loading-indicator_c00248.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00248 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_c00248 { 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_c00248" -> "#page-container .classname_c00248")
 */
.pf_c00248 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00248 { /* 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_c00248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00248 { /* 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_c00248 { /* 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_c00248 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00248 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00248 {overflow:visible;}
  }
}
.c_c00248 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00248 { /* 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_c00248:after { /* webkit #35443 */
  content: '';
}
.t_c00248:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00248 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 */
}
.__c00248 { /* 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_c00248 { /* info for Javascript */
  display:none;
}
.l_c00248 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00248 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00248 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00248: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_c00248 {
    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_c00248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00248.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_c00248 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00248;src:url('chunks/assets/font_cfab7b51ba9e04364a7cc09d.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.284668;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_c00248;src:url('chunks/assets/font_cb88afdaa88838c4b83a1dd5.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.284180;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_c00248;src:url('chunks/assets/font_fd3b279b291a49db4296c7f8.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;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;}
.m1_c00248{transform:matrix(0.208323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208323,0.000000,0.000000,0.250000,0,0);}
.m6_c00248{transform:matrix(0.237783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237783,0.000000,0.000000,0.250000,0,0);}
.m3_c00248{transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);}
.m2_c00248{transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);}
.m7_c00248{transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);}
.m5_c00248{transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);}
.m0_c00248{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);}
.m4_c00248{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls72_c00248{letter-spacing:-2.604000px;}
.ls95_c00248{letter-spacing:-2.415000px;}
.ls76_c00248{letter-spacing:-2.394000px;}
.ls85_c00248{letter-spacing:-2.361600px;}
.ls86_c00248{letter-spacing:-2.250900px;}
.ls89_c00248{letter-spacing:-2.168280px;}
.ls7e_c00248{letter-spacing:-2.134080px;}
.ls9f_c00248{letter-spacing:-2.045160px;}
.lsa2_c00248{letter-spacing:-2.016000px;}
.ls59_c00248{letter-spacing:-1.963080px;}
.ls99_c00248{letter-spacing:-1.908360px;}
.ls61_c00248{letter-spacing:-1.703160px;}
.ls92_c00248{letter-spacing:-1.682640px;}
.lsa0_c00248{letter-spacing:-1.662120px;}
.ls84_c00248{letter-spacing:-1.630980px;}
.ls91_c00248{letter-spacing:-1.566360px;}
.lsa1_c00248{letter-spacing:-1.511640px;}
.ls6e_c00248{letter-spacing:-1.409040px;}
.ls8a_c00248{letter-spacing:-1.292760px;}
.ls7b_c00248{letter-spacing:-1.197000px;}
.ls6d_c00248{letter-spacing:-1.183320px;}
.ls8d_c00248{letter-spacing:-1.149120px;}
.ls98_c00248{letter-spacing:-1.114920px;}
.ls70_c00248{letter-spacing:-1.046520px;}
.ls65_c00248{letter-spacing:-0.943920px;}
.ls9b_c00248{letter-spacing:-0.896040px;}
.ls69_c00248{letter-spacing:-0.834480px;}
.ls67_c00248{letter-spacing:-0.684000px;}
.ls81_c00248{letter-spacing:-0.663480px;}
.ls8f_c00248{letter-spacing:-0.649800px;}
.ls6b_c00248{letter-spacing:-0.646020px;}
.ls8b_c00248{letter-spacing:-0.581400px;}
.ls8c_c00248{letter-spacing:-0.540360px;}
.ls77_c00248{letter-spacing:-0.526680px;}
.ls7a_c00248{letter-spacing:-0.478800px;}
.ls90_c00248{letter-spacing:-0.471960px;}
.ls97_c00248{letter-spacing:-0.465120px;}
.ls7c_c00248{letter-spacing:-0.458280px;}
.ls7d_c00248{letter-spacing:-0.417240px;}
.ls5b_c00248{letter-spacing:-0.396720px;}
.ls78_c00248{letter-spacing:-0.376200px;}
.ls63_c00248{letter-spacing:-0.369360px;}
.ls88_c00248{letter-spacing:-0.342000px;}
.ls6a_c00248{letter-spacing:-0.314640px;}
.ls87_c00248{letter-spacing:-0.294120px;}
.ls62_c00248{letter-spacing:-0.287280px;}
.ls9c_c00248{letter-spacing:-0.280440px;}
.ls9e_c00248{letter-spacing:-0.266760px;}
.ls93_c00248{letter-spacing:-0.212040px;}
.ls6c_c00248{letter-spacing:-0.191520px;}
.ls8e_c00248{letter-spacing:-0.177840px;}
.ls9d_c00248{letter-spacing:-0.157320px;}
.ls73_c00248{letter-spacing:-0.154560px;}
.ls68_c00248{letter-spacing:-0.143640px;}
.ls5f_c00248{letter-spacing:-0.136800px;}
.ls64_c00248{letter-spacing:-0.102600px;}
.ls80_c00248{letter-spacing:-0.095760px;}
.ls5a_c00248{letter-spacing:-0.088920px;}
.ls5d_c00248{letter-spacing:-0.082080px;}
.ls5c_c00248{letter-spacing:-0.068400px;}
.ls75_c00248{letter-spacing:-0.061560px;}
.ls96_c00248{letter-spacing:-0.054720px;}
.ls6f_c00248{letter-spacing:-0.047880px;}
.ls7f_c00248{letter-spacing:-0.041040px;}
.ls79_c00248{letter-spacing:-0.013680px;}
.ls83_c00248{letter-spacing:-0.006840px;}
.ls60_c00248{letter-spacing:0.000000px;}
.ls4c_c00248{letter-spacing:0.006840px;}
.ls43_c00248{letter-spacing:0.013680px;}
.ls19_c00248{letter-spacing:0.027360px;}
.ls2a_c00248{letter-spacing:0.034200px;}
.ls9_c00248{letter-spacing:0.047880px;}
.lsa_c00248{letter-spacing:0.054720px;}
.ls24_c00248{letter-spacing:0.068400px;}
.ls20_c00248{letter-spacing:0.082080px;}
.ls3b_c00248{letter-spacing:0.095760px;}
.ls1d_c00248{letter-spacing:0.102600px;}
.ls13_c00248{letter-spacing:0.109440px;}
.ls26_c00248{letter-spacing:0.116280px;}
.ls21_c00248{letter-spacing:0.123120px;}
.ls7_c00248{letter-spacing:0.143640px;}
.ls3_c00248{letter-spacing:0.164160px;}
.ls33_c00248{letter-spacing:0.184680px;}
.ls54_c00248{letter-spacing:0.198360px;}
.ls37_c00248{letter-spacing:0.205200px;}
.ls40_c00248{letter-spacing:0.212040px;}
.ls18_c00248{letter-spacing:0.218880px;}
.ls2f_c00248{letter-spacing:0.225720px;}
.ls25_c00248{letter-spacing:0.232560px;}
.ls71_c00248{letter-spacing:0.239400px;}
.ls2d_c00248{letter-spacing:0.246240px;}
.ls3a_c00248{letter-spacing:0.266760px;}
.ls2e_c00248{letter-spacing:0.280440px;}
.ls55_c00248{letter-spacing:0.294120px;}
.ls17_c00248{letter-spacing:0.307800px;}
.ls1c_c00248{letter-spacing:0.321480px;}
.ls38_c00248{letter-spacing:0.335160px;}
.lsf_c00248{letter-spacing:0.342000px;}
.ls57_c00248{letter-spacing:0.348840px;}
.lsb_c00248{letter-spacing:0.355680px;}
.lse_c00248{letter-spacing:0.369360px;}
.ls50_c00248{letter-spacing:0.383040px;}
.ls4e_c00248{letter-spacing:0.389880px;}
.ls1f_c00248{letter-spacing:0.396720px;}
.ls1a_c00248{letter-spacing:0.417240px;}
.ls3f_c00248{letter-spacing:0.424080px;}
.ls14_c00248{letter-spacing:0.437760px;}
.lsc_c00248{letter-spacing:0.444600px;}
.ls48_c00248{letter-spacing:0.451440px;}
.ls2c_c00248{letter-spacing:0.458280px;}
.ls11_c00248{letter-spacing:0.485640px;}
.ls36_c00248{letter-spacing:0.492480px;}
.ls39_c00248{letter-spacing:0.499320px;}
.ls12_c00248{letter-spacing:0.547200px;}
.ls1e_c00248{letter-spacing:0.554040px;}
.ls74_c00248{letter-spacing:0.560880px;}
.ls2b_c00248{letter-spacing:0.567720px;}
.ls42_c00248{letter-spacing:0.571200px;}
.ls6_c00248{letter-spacing:0.581400px;}
.ls53_c00248{letter-spacing:0.595080px;}
.ls35_c00248{letter-spacing:0.629280px;}
.ls3d_c00248{letter-spacing:0.636120px;}
.ls1_c00248{letter-spacing:0.656640px;}
.ls22_c00248{letter-spacing:0.672000px;}
.ls66_c00248{letter-spacing:0.677160px;}
.ls4f_c00248{letter-spacing:0.678720px;}
.ls16_c00248{letter-spacing:0.690840px;}
.ls28_c00248{letter-spacing:0.704520px;}
.ls34_c00248{letter-spacing:0.718200px;}
.ls56_c00248{letter-spacing:0.731880px;}
.ls30_c00248{letter-spacing:0.752400px;}
.ls10_c00248{letter-spacing:0.807120px;}
.lsd_c00248{letter-spacing:0.841320px;}
.ls52_c00248{letter-spacing:0.846720px;}
.ls5_c00248{letter-spacing:0.848160px;}
.ls41_c00248{letter-spacing:0.873600px;}
.ls32_c00248{letter-spacing:0.875520px;}
.ls23_c00248{letter-spacing:0.909720px;}
.ls5e_c00248{letter-spacing:0.916560px;}
.ls3e_c00248{letter-spacing:0.987840px;}
.ls15_c00248{letter-spacing:0.991800px;}
.ls31_c00248{letter-spacing:1.012320px;}
.ls0_c00248{letter-spacing:1.048320px;}
.ls4b_c00248{letter-spacing:1.060200px;}
.ls45_c00248{letter-spacing:1.142280px;}
.ls4_c00248{letter-spacing:1.285920px;}
.ls1b_c00248{letter-spacing:1.290240px;}
.ls44_c00248{letter-spacing:1.347480px;}
.ls9a_c00248{letter-spacing:1.391040px;}
.ls58_c00248{letter-spacing:1.444320px;}
.ls3c_c00248{letter-spacing:1.477440px;}
.ls94_c00248{letter-spacing:1.545600px;}
.ls8_c00248{letter-spacing:1.648440px;}
.ls2_c00248{letter-spacing:1.737360px;}
.ls49_c00248{letter-spacing:1.744200px;}
.ls4a_c00248{letter-spacing:1.812600px;}
.ls51_c00248{letter-spacing:1.819440px;}
.ls29_c00248{letter-spacing:2.004120px;}
.ls27_c00248{letter-spacing:2.086200px;}
.ls4d_c00248{letter-spacing:2.216160px;}
.ls47_c00248{letter-spacing:2.236680px;}
.ls46_c00248{letter-spacing:2.715480px;}
.ls82_c00248{letter-spacing:3.420000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{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__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00248{word-spacing:-1.736160px;}
.ws3_c00248{word-spacing:-1.118400px;}
.ws7_c00248{word-spacing:0.000000px;}
.ws4_c00248{word-spacing:3.890400px;}
.ws1_c00248{word-spacing:4.023840px;}
.ws5_c00248{word-spacing:9.892320px;}
.ws0_c00248{word-spacing:12.772320px;}
.ws2_c00248{word-spacing:17.779200px;}
._15_c00248{margin-left:-8.536320px;}
._14_c00248{margin-left:-7.065720px;}
._13_c00248{margin-left:-5.998080px;}
._5_c00248{margin-left:-4.035600px;}
._11_c00248{margin-left:-2.928120px;}
._6_c00248{margin-left:-1.368000px;}
._8_c00248{width:1.183320px;}
._7_c00248{width:2.948040px;}
._b_c00248{width:4.466520px;}
._12_c00248{width:5.472000px;}
._9_c00248{width:6.853680px;}
._c_c00248{width:7.948680px;}
._4_c00248{width:8.952960px;}
._3_c00248{width:10.218960px;}
._a_c00248{width:11.545320px;}
._0_c00248{width:13.153920px;}
._2_c00248{width:14.692320px;}
._10_c00248{width:17.381640px;}
._1_c00248{width:19.158840px;}
._f_c00248{width:20.567880px;}
._d_c00248{width:21.962640px;}
._e_c00248{width:24.206760px;}
.fc0_c00248{color:transparent;}
.fs7_c00248{font-size:57.600000px;}
.fs3_c00248{font-size:58.200000px;}
.fs0_c00248{font-size:61.200000px;}
.fs1_c00248{font-size:67.200000px;}
.fs2_c00248{font-size:68.400000px;}
.fs6_c00248{font-size:69.000000px;}
.fs5_c00248{font-size:73.800000px;}
.fs4_c00248{font-size:74.400000px;}
.y0_c00248{bottom:0.000000px;}
.y1b_c00248{bottom:71.295000px;}
.y1a_c00248{bottom:147.600000px;}
.y19_c00248{bottom:209.895000px;}
.y18_c00248{bottom:241.200000px;}
.y17_c00248{bottom:303.840000px;}
.y16_c00248{bottom:334.800000px;}
.y15_c00248{bottom:397.458600px;}
.y14_c00248{bottom:460.455000px;}
.y13_c00248{bottom:491.775000px;}
.y12_c00248{bottom:554.391600px;}
.y11_c00248{bottom:586.095000px;}
.y10_c00248{bottom:648.015000px;}
.yf_c00248{bottom:710.646900px;}
.yd_c00248{bottom:741.602700px;}
.ye_c00248{bottom:741.615000px;}
.yc_c00248{bottom:772.912800px;}
.yb_c00248{bottom:804.240000px;}
.ya_c00248{bottom:804.240600px;}
.y9_c00248{bottom:835.567800px;}
.y8_c00248{bottom:866.895000px;}
.y7_c00248{bottom:929.168700px;}
.y6_c00248{bottom:960.855000px;}
.y5_c00248{bottom:1023.475500px;}
.y4_c00248{bottom:1054.426500px;}
.y3_c00248{bottom:1086.129900px;}
.y2_c00248{bottom:1117.440000px;}
.y1_c00248{bottom:1192.335000px;}
.h9_c00248{height:56.531250px;}
.h2_c00248{height:60.064453px;}
.h7_c00248{height:65.920312px;}
.h3_c00248{height:67.130859px;}
.h5_c00248{height:67.164459px;}
.h8_c00248{height:71.964844px;}
.h6_c00248{height:72.394629px;}
.h4_c00248{height:73.019531px;}
.h1_c00248{height:1263.000000px;}
.h0_c00248{height:1263.240000px;}
.w1_c00248{width:892.500000px;}
.w0_c00248{width:892.800000px;}
.x0_c00248{left:0.000000px;}
.x1_c00248{left:125.925000px;}
.x3_c00248{left:126.942000px;}
.x15_c00248{left:177.645000px;}
.x14_c00248{left:178.725000px;}
.xa_c00248{left:179.805000px;}
.x2_c00248{left:180.885000px;}
.x12_c00248{left:198.570000px;}
.x6_c00248{left:213.300000px;}
.x7_c00248{left:235.770000px;}
.xd_c00248{left:281.160000px;}
.x13_c00248{left:294.900000px;}
.x10_c00248{left:331.155000px;}
.x11_c00248{left:345.045000px;}
.xe_c00248{left:389.325000px;}
.xf_c00248{left:405.990000px;}
.x4_c00248{left:416.715000px;}
.x16_c00248{left:425.430000px;}
.x5_c00248{left:440.085000px;}
.x8_c00248{left:447.690000px;}
.x9_c00248{left:466.410000px;}
.xb_c00248{left:654.750000px;}
.xc_c00248{left:678.165000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls72_c00248{letter-spacing:-2.314667pt;}
.ls95_c00248{letter-spacing:-2.146667pt;}
.ls76_c00248{letter-spacing:-2.128000pt;}
.ls85_c00248{letter-spacing:-2.099200pt;}
.ls86_c00248{letter-spacing:-2.000800pt;}
.ls89_c00248{letter-spacing:-1.927360pt;}
.ls7e_c00248{letter-spacing:-1.896960pt;}
.ls9f_c00248{letter-spacing:-1.817920pt;}
.lsa2_c00248{letter-spacing:-1.792000pt;}
.ls59_c00248{letter-spacing:-1.744960pt;}
.ls99_c00248{letter-spacing:-1.696320pt;}
.ls61_c00248{letter-spacing:-1.513920pt;}
.ls92_c00248{letter-spacing:-1.495680pt;}
.lsa0_c00248{letter-spacing:-1.477440pt;}
.ls84_c00248{letter-spacing:-1.449760pt;}
.ls91_c00248{letter-spacing:-1.392320pt;}
.lsa1_c00248{letter-spacing:-1.343680pt;}
.ls6e_c00248{letter-spacing:-1.252480pt;}
.ls8a_c00248{letter-spacing:-1.149120pt;}
.ls7b_c00248{letter-spacing:-1.064000pt;}
.ls6d_c00248{letter-spacing:-1.051840pt;}
.ls8d_c00248{letter-spacing:-1.021440pt;}
.ls98_c00248{letter-spacing:-0.991040pt;}
.ls70_c00248{letter-spacing:-0.930240pt;}
.ls65_c00248{letter-spacing:-0.839040pt;}
.ls9b_c00248{letter-spacing:-0.796480pt;}
.ls69_c00248{letter-spacing:-0.741760pt;}
.ls67_c00248{letter-spacing:-0.608000pt;}
.ls81_c00248{letter-spacing:-0.589760pt;}
.ls8f_c00248{letter-spacing:-0.577600pt;}
.ls6b_c00248{letter-spacing:-0.574240pt;}
.ls8b_c00248{letter-spacing:-0.516800pt;}
.ls8c_c00248{letter-spacing:-0.480320pt;}
.ls77_c00248{letter-spacing:-0.468160pt;}
.ls7a_c00248{letter-spacing:-0.425600pt;}
.ls90_c00248{letter-spacing:-0.419520pt;}
.ls97_c00248{letter-spacing:-0.413440pt;}
.ls7c_c00248{letter-spacing:-0.407360pt;}
.ls7d_c00248{letter-spacing:-0.370880pt;}
.ls5b_c00248{letter-spacing:-0.352640pt;}
.ls78_c00248{letter-spacing:-0.334400pt;}
.ls63_c00248{letter-spacing:-0.328320pt;}
.ls88_c00248{letter-spacing:-0.304000pt;}
.ls6a_c00248{letter-spacing:-0.279680pt;}
.ls87_c00248{letter-spacing:-0.261440pt;}
.ls62_c00248{letter-spacing:-0.255360pt;}
.ls9c_c00248{letter-spacing:-0.249280pt;}
.ls9e_c00248{letter-spacing:-0.237120pt;}
.ls93_c00248{letter-spacing:-0.188480pt;}
.ls6c_c00248{letter-spacing:-0.170240pt;}
.ls8e_c00248{letter-spacing:-0.158080pt;}
.ls9d_c00248{letter-spacing:-0.139840pt;}
.ls73_c00248{letter-spacing:-0.137387pt;}
.ls68_c00248{letter-spacing:-0.127680pt;}
.ls5f_c00248{letter-spacing:-0.121600pt;}
.ls64_c00248{letter-spacing:-0.091200pt;}
.ls80_c00248{letter-spacing:-0.085120pt;}
.ls5a_c00248{letter-spacing:-0.079040pt;}
.ls5d_c00248{letter-spacing:-0.072960pt;}
.ls5c_c00248{letter-spacing:-0.060800pt;}
.ls75_c00248{letter-spacing:-0.054720pt;}
.ls96_c00248{letter-spacing:-0.048640pt;}
.ls6f_c00248{letter-spacing:-0.042560pt;}
.ls7f_c00248{letter-spacing:-0.036480pt;}
.ls79_c00248{letter-spacing:-0.012160pt;}
.ls83_c00248{letter-spacing:-0.006080pt;}
.ls60_c00248{letter-spacing:0.000000pt;}
.ls4c_c00248{letter-spacing:0.006080pt;}
.ls43_c00248{letter-spacing:0.012160pt;}
.ls19_c00248{letter-spacing:0.024320pt;}
.ls2a_c00248{letter-spacing:0.030400pt;}
.ls9_c00248{letter-spacing:0.042560pt;}
.lsa_c00248{letter-spacing:0.048640pt;}
.ls24_c00248{letter-spacing:0.060800pt;}
.ls20_c00248{letter-spacing:0.072960pt;}
.ls3b_c00248{letter-spacing:0.085120pt;}
.ls1d_c00248{letter-spacing:0.091200pt;}
.ls13_c00248{letter-spacing:0.097280pt;}
.ls26_c00248{letter-spacing:0.103360pt;}
.ls21_c00248{letter-spacing:0.109440pt;}
.ls7_c00248{letter-spacing:0.127680pt;}
.ls3_c00248{letter-spacing:0.145920pt;}
.ls33_c00248{letter-spacing:0.164160pt;}
.ls54_c00248{letter-spacing:0.176320pt;}
.ls37_c00248{letter-spacing:0.182400pt;}
.ls40_c00248{letter-spacing:0.188480pt;}
.ls18_c00248{letter-spacing:0.194560pt;}
.ls2f_c00248{letter-spacing:0.200640pt;}
.ls25_c00248{letter-spacing:0.206720pt;}
.ls71_c00248{letter-spacing:0.212800pt;}
.ls2d_c00248{letter-spacing:0.218880pt;}
.ls3a_c00248{letter-spacing:0.237120pt;}
.ls2e_c00248{letter-spacing:0.249280pt;}
.ls55_c00248{letter-spacing:0.261440pt;}
.ls17_c00248{letter-spacing:0.273600pt;}
.ls1c_c00248{letter-spacing:0.285760pt;}
.ls38_c00248{letter-spacing:0.297920pt;}
.lsf_c00248{letter-spacing:0.304000pt;}
.ls57_c00248{letter-spacing:0.310080pt;}
.lsb_c00248{letter-spacing:0.316160pt;}
.lse_c00248{letter-spacing:0.328320pt;}
.ls50_c00248{letter-spacing:0.340480pt;}
.ls4e_c00248{letter-spacing:0.346560pt;}
.ls1f_c00248{letter-spacing:0.352640pt;}
.ls1a_c00248{letter-spacing:0.370880pt;}
.ls3f_c00248{letter-spacing:0.376960pt;}
.ls14_c00248{letter-spacing:0.389120pt;}
.lsc_c00248{letter-spacing:0.395200pt;}
.ls48_c00248{letter-spacing:0.401280pt;}
.ls2c_c00248{letter-spacing:0.407360pt;}
.ls11_c00248{letter-spacing:0.431680pt;}
.ls36_c00248{letter-spacing:0.437760pt;}
.ls39_c00248{letter-spacing:0.443840pt;}
.ls12_c00248{letter-spacing:0.486400pt;}
.ls1e_c00248{letter-spacing:0.492480pt;}
.ls74_c00248{letter-spacing:0.498560pt;}
.ls2b_c00248{letter-spacing:0.504640pt;}
.ls42_c00248{letter-spacing:0.507733pt;}
.ls6_c00248{letter-spacing:0.516800pt;}
.ls53_c00248{letter-spacing:0.528960pt;}
.ls35_c00248{letter-spacing:0.559360pt;}
.ls3d_c00248{letter-spacing:0.565440pt;}
.ls1_c00248{letter-spacing:0.583680pt;}
.ls22_c00248{letter-spacing:0.597333pt;}
.ls66_c00248{letter-spacing:0.601920pt;}
.ls4f_c00248{letter-spacing:0.603307pt;}
.ls16_c00248{letter-spacing:0.614080pt;}
.ls28_c00248{letter-spacing:0.626240pt;}
.ls34_c00248{letter-spacing:0.638400pt;}
.ls56_c00248{letter-spacing:0.650560pt;}
.ls30_c00248{letter-spacing:0.668800pt;}
.ls10_c00248{letter-spacing:0.717440pt;}
.lsd_c00248{letter-spacing:0.747840pt;}
.ls52_c00248{letter-spacing:0.752640pt;}
.ls5_c00248{letter-spacing:0.753920pt;}
.ls41_c00248{letter-spacing:0.776533pt;}
.ls32_c00248{letter-spacing:0.778240pt;}
.ls23_c00248{letter-spacing:0.808640pt;}
.ls5e_c00248{letter-spacing:0.814720pt;}
.ls3e_c00248{letter-spacing:0.878080pt;}
.ls15_c00248{letter-spacing:0.881600pt;}
.ls31_c00248{letter-spacing:0.899840pt;}
.ls0_c00248{letter-spacing:0.931840pt;}
.ls4b_c00248{letter-spacing:0.942400pt;}
.ls45_c00248{letter-spacing:1.015360pt;}
.ls4_c00248{letter-spacing:1.143040pt;}
.ls1b_c00248{letter-spacing:1.146880pt;}
.ls44_c00248{letter-spacing:1.197760pt;}
.ls9a_c00248{letter-spacing:1.236480pt;}
.ls58_c00248{letter-spacing:1.283840pt;}
.ls3c_c00248{letter-spacing:1.313280pt;}
.ls94_c00248{letter-spacing:1.373867pt;}
.ls8_c00248{letter-spacing:1.465280pt;}
.ls2_c00248{letter-spacing:1.544320pt;}
.ls49_c00248{letter-spacing:1.550400pt;}
.ls4a_c00248{letter-spacing:1.611200pt;}
.ls51_c00248{letter-spacing:1.617280pt;}
.ls29_c00248{letter-spacing:1.781440pt;}
.ls27_c00248{letter-spacing:1.854400pt;}
.ls4d_c00248{letter-spacing:1.969920pt;}
.ls47_c00248{letter-spacing:1.988160pt;}
.ls46_c00248{letter-spacing:2.413760pt;}
.ls82_c00248{letter-spacing:3.040000pt;}
.ws6_c00248{word-spacing:-1.543253pt;}
.ws3_c00248{word-spacing:-0.994133pt;}
.ws7_c00248{word-spacing:0.000000pt;}
.ws4_c00248{word-spacing:3.458133pt;}
.ws1_c00248{word-spacing:3.576747pt;}
.ws5_c00248{word-spacing:8.793173pt;}
.ws0_c00248{word-spacing:11.353173pt;}
.ws2_c00248{word-spacing:15.803733pt;}
._15_c00248{margin-left:-7.587840pt;}
._14_c00248{margin-left:-6.280640pt;}
._13_c00248{margin-left:-5.331627pt;}
._5_c00248{margin-left:-3.587200pt;}
._11_c00248{margin-left:-2.602773pt;}
._6_c00248{margin-left:-1.216000pt;}
._8_c00248{width:1.051840pt;}
._7_c00248{width:2.620480pt;}
._b_c00248{width:3.970240pt;}
._12_c00248{width:4.864000pt;}
._9_c00248{width:6.092160pt;}
._c_c00248{width:7.065493pt;}
._4_c00248{width:7.958187pt;}
._3_c00248{width:9.083520pt;}
._a_c00248{width:10.262507pt;}
._0_c00248{width:11.692373pt;}
._2_c00248{width:13.059840pt;}
._10_c00248{width:15.450347pt;}
._1_c00248{width:17.030080pt;}
._f_c00248{width:18.282560pt;}
._d_c00248{width:19.522347pt;}
._e_c00248{width:21.517120pt;}
.fs7_c00248{font-size:51.200000pt;}
.fs3_c00248{font-size:51.733333pt;}
.fs0_c00248{font-size:54.400000pt;}
.fs1_c00248{font-size:59.733333pt;}
.fs2_c00248{font-size:60.800000pt;}
.fs6_c00248{font-size:61.333333pt;}
.fs5_c00248{font-size:65.600000pt;}
.fs4_c00248{font-size:66.133333pt;}
.y0_c00248{bottom:0.000000pt;}
.y1b_c00248{bottom:63.373333pt;}
.y1a_c00248{bottom:131.200000pt;}
.y19_c00248{bottom:186.573333pt;}
.y18_c00248{bottom:214.400000pt;}
.y17_c00248{bottom:270.080000pt;}
.y16_c00248{bottom:297.600000pt;}
.y15_c00248{bottom:353.296533pt;}
.y14_c00248{bottom:409.293333pt;}
.y13_c00248{bottom:437.133333pt;}
.y12_c00248{bottom:492.792533pt;}
.y11_c00248{bottom:520.973333pt;}
.y10_c00248{bottom:576.013333pt;}
.yf_c00248{bottom:631.686133pt;}
.yd_c00248{bottom:659.202400pt;}
.ye_c00248{bottom:659.213333pt;}
.yc_c00248{bottom:687.033600pt;}
.yb_c00248{bottom:714.880000pt;}
.ya_c00248{bottom:714.880533pt;}
.y9_c00248{bottom:742.726933pt;}
.y8_c00248{bottom:770.573333pt;}
.y7_c00248{bottom:825.927733pt;}
.y6_c00248{bottom:854.093333pt;}
.y5_c00248{bottom:909.756000pt;}
.y4_c00248{bottom:937.268000pt;}
.y3_c00248{bottom:965.448800pt;}
.y2_c00248{bottom:993.280000pt;}
.y1_c00248{bottom:1059.853333pt;}
.h9_c00248{height:50.250000pt;}
.h2_c00248{height:53.390625pt;}
.h7_c00248{height:58.595833pt;}
.h3_c00248{height:59.671875pt;}
.h5_c00248{height:59.701742pt;}
.h8_c00248{height:63.968750pt;}
.h6_c00248{height:64.350781pt;}
.h4_c00248{height:64.906250pt;}
.h1_c00248{height:1122.666667pt;}
.h0_c00248{height:1122.880000pt;}
.w1_c00248{width:793.333333pt;}
.w0_c00248{width:793.600000pt;}
.x0_c00248{left:0.000000pt;}
.x1_c00248{left:111.933333pt;}
.x3_c00248{left:112.837333pt;}
.x15_c00248{left:157.906667pt;}
.x14_c00248{left:158.866667pt;}
.xa_c00248{left:159.826667pt;}
.x2_c00248{left:160.786667pt;}
.x12_c00248{left:176.506667pt;}
.x6_c00248{left:189.600000pt;}
.x7_c00248{left:209.573333pt;}
.xd_c00248{left:249.920000pt;}
.x13_c00248{left:262.133333pt;}
.x10_c00248{left:294.360000pt;}
.x11_c00248{left:306.706667pt;}
.xe_c00248{left:346.066667pt;}
.xf_c00248{left:360.880000pt;}
.x4_c00248{left:370.413333pt;}
.x16_c00248{left:378.160000pt;}
.x5_c00248{left:391.186667pt;}
.x8_c00248{left:397.946667pt;}
.x9_c00248{left:414.586667pt;}
.xb_c00248{left:582.000000pt;}
.xc_c00248{left:602.813333pt;}
}





/* 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_c00249 {
    display:none;
  }
  .loading-indicator_c00249.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00249 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_c00249 { 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_c00249" -> "#page-container .classname_c00249")
 */
.pf_c00249 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00249 { /* 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_c00249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00249 { /* 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_c00249 { /* 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_c00249 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00249 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00249 {overflow:visible;}
  }
}
.c_c00249 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00249 { /* 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_c00249:after { /* webkit #35443 */
  content: '';
}
.t_c00249:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00249 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 */
}
.__c00249 { /* 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_c00249 { /* info for Javascript */
  display:none;
}
.l_c00249 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00249 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00249 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00249: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_c00249 {
    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_c00249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00249.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_c00249 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00249;src:url('chunks/assets/font_65c342bdfbb4d0e875068169.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.284668;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_c00249;src:url('chunks/assets/font_2e0f4bdf0433994c731e26ef.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.284180;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_c00249;src:url('chunks/assets/font_2fa0834f937fcecec182598d.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;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;}
.md_c00249{transform:matrix(0.158172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158172,0.000000,0.000000,0.250000,0,0);}
.m2_c00249{transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);}
.m7_c00249{transform:matrix(0.225277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225277,0.000000,0.000000,0.250000,0,0);}
.m6_c00249{transform:matrix(0.230432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230432,0.000000,0.000000,0.250000,0,0);}
.mb_c00249{transform:matrix(0.233678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233678,0.000000,0.000000,0.250000,0,0);}
.mc_c00249{transform:matrix(0.236991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236991,0.000000,0.000000,0.250000,0,0);}
.m0_c00249{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{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);}
.m5_c00249{transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);}
.m3_c00249{transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);}
.me_c00249{transform:matrix(0.254318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254318,0.000000,0.000000,0.250000,0,0);}
.ma_c00249{transform:matrix(0.254374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254374,0.000000,0.000000,0.250000,0,0);}
.m4_c00249{transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);}
.m8_c00249{transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);}
.m9_c00249{transform:matrix(0.259162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259162,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls80_c00249{letter-spacing:-2.751000px;}
.ls67_c00249{letter-spacing:-2.373000px;}
.ls65_c00249{letter-spacing:-2.352000px;}
.ls70_c00249{letter-spacing:-2.331000px;}
.ls77_c00249{letter-spacing:-1.338660px;}
.ls76_c00249{letter-spacing:-1.052280px;}
.ls78_c00249{letter-spacing:-0.859140px;}
.ls83_c00249{letter-spacing:-0.526140px;}
.ls79_c00249{letter-spacing:-0.439560px;}
.ls7b_c00249{letter-spacing:-0.366300px;}
.ls6b_c00249{letter-spacing:-0.333000px;}
.ls69_c00249{letter-spacing:0.000000px;}
.ls4a_c00249{letter-spacing:0.139860px;}
.ls44_c00249{letter-spacing:0.173160px;}
.ls82_c00249{letter-spacing:0.206460px;}
.ls8_c00249{letter-spacing:0.239760px;}
.ls12_c00249{letter-spacing:0.266400px;}
.ls84_c00249{letter-spacing:0.270000px;}
.ls45_c00249{letter-spacing:0.432900px;}
.ls20_c00249{letter-spacing:0.559440px;}
.ls1f_c00249{letter-spacing:0.572760px;}
.ls10_c00249{letter-spacing:0.586080px;}
.ls7f_c00249{letter-spacing:0.619380px;}
.ls19_c00249{letter-spacing:0.626040px;}
.ls4b_c00249{letter-spacing:0.652680px;}
.ls13_c00249{letter-spacing:0.698880px;}
.ls41_c00249{letter-spacing:0.765900px;}
.ls7c_c00249{letter-spacing:0.845820px;}
.ls33_c00249{letter-spacing:0.865800px;}
.ls27_c00249{letter-spacing:0.885780px;}
.ls2c_c00249{letter-spacing:0.892440px;}
.ls6e_c00249{letter-spacing:0.912420px;}
.ls7e_c00249{letter-spacing:0.925740px;}
.ls46_c00249{letter-spacing:0.952380px;}
.ls7_c00249{letter-spacing:0.965700px;}
.ls15_c00249{letter-spacing:0.979020px;}
.lse_c00249{letter-spacing:0.985680px;}
.ls24_c00249{letter-spacing:0.992340px;}
.ls7a_c00249{letter-spacing:0.994560px;}
.ls5f_c00249{letter-spacing:1.005660px;}
.ls5a_c00249{letter-spacing:1.028160px;}
.ls75_c00249{letter-spacing:1.038960px;}
.ls31_c00249{letter-spacing:1.055040px;}
.ls28_c00249{letter-spacing:1.058940px;}
.ls52_c00249{letter-spacing:1.065600px;}
.ls4f_c00249{letter-spacing:1.092240px;}
.ls47_c00249{letter-spacing:1.095360px;}
.ls1b_c00249{letter-spacing:1.125540px;}
.ls3a_c00249{letter-spacing:1.132200px;}
.ls22_c00249{letter-spacing:1.158840px;}
.ls39_c00249{letter-spacing:1.165500px;}
.ls35_c00249{letter-spacing:1.178820px;}
.ls55_c00249{letter-spacing:1.185480px;}
.lsf_c00249{letter-spacing:1.205460px;}
.ls0_c00249{letter-spacing:1.209600px;}
.ls2d_c00249{letter-spacing:1.212120px;}
.ls34_c00249{letter-spacing:1.225440px;}
.ls30_c00249{letter-spacing:1.229760px;}
.ls3f_c00249{letter-spacing:1.238760px;}
.lsc_c00249{letter-spacing:1.245420px;}
.ls3d_c00249{letter-spacing:1.283520px;}
.ls6f_c00249{letter-spacing:1.317120px;}
.ls63_c00249{letter-spacing:1.318680px;}
.ls51_c00249{letter-spacing:1.332000px;}
.ls1c_c00249{letter-spacing:1.385280px;}
.ls72_c00249{letter-spacing:1.405260px;}
.ls4c_c00249{letter-spacing:1.411200px;}
.ls6_c00249{letter-spacing:1.411920px;}
.ls14_c00249{letter-spacing:1.425240px;}
.ls32_c00249{letter-spacing:1.431900px;}
.ls54_c00249{letter-spacing:1.438560px;}
.ls71_c00249{letter-spacing:1.458540px;}
.ls4e_c00249{letter-spacing:1.465200px;}
.ls5_c00249{letter-spacing:1.478520px;}
.ls43_c00249{letter-spacing:1.498500px;}
.ls38_c00249{letter-spacing:1.505160px;}
.ls1a_c00249{letter-spacing:1.511820px;}
.ls59_c00249{letter-spacing:1.518480px;}
.ls50_c00249{letter-spacing:1.525140px;}
.ls58_c00249{letter-spacing:1.525440px;}
.ls2b_c00249{letter-spacing:1.545120px;}
.ls2a_c00249{letter-spacing:1.551780px;}
.ls5c_c00249{letter-spacing:1.565100px;}
.ls21_c00249{letter-spacing:1.591740px;}
.ls48_c00249{letter-spacing:1.606080px;}
.ls6c_c00249{letter-spacing:1.625040px;}
.ls1e_c00249{letter-spacing:1.665000px;}
.ls6a_c00249{letter-spacing:1.678320px;}
.ls73_c00249{letter-spacing:1.684980px;}
.ls60_c00249{letter-spacing:1.698300px;}
.ls56_c00249{letter-spacing:1.724940px;}
.ls74_c00249{letter-spacing:1.744920px;}
.ls5e_c00249{letter-spacing:1.751580px;}
.ls81_c00249{letter-spacing:1.758240px;}
.lsb_c00249{letter-spacing:1.771560px;}
.ls7d_c00249{letter-spacing:1.798200px;}
.ls5b_c00249{letter-spacing:1.851480px;}
.ls2e_c00249{letter-spacing:1.864800px;}
.ls26_c00249{letter-spacing:1.884780px;}
.ls16_c00249{letter-spacing:1.904760px;}
.ls1d_c00249{letter-spacing:1.944720px;}
.ls62_c00249{letter-spacing:1.958040px;}
.ls3_c00249{letter-spacing:1.964700px;}
.ls3e_c00249{letter-spacing:1.968960px;}
.ls6d_c00249{letter-spacing:1.984680px;}
.ls25_c00249{letter-spacing:1.991340px;}
.ls4_c00249{letter-spacing:2.024640px;}
.ls11_c00249{letter-spacing:2.031300px;}
.ls29_c00249{letter-spacing:2.037960px;}
.ls9_c00249{letter-spacing:2.051280px;}
.ls57_c00249{letter-spacing:2.077920px;}
.ls40_c00249{letter-spacing:2.097900px;}
.ls49_c00249{letter-spacing:2.237760px;}
.ls42_c00249{letter-spacing:2.244420px;}
.ls3b_c00249{letter-spacing:2.257740px;}
.ls4d_c00249{letter-spacing:2.284380px;}
.lsd_c00249{letter-spacing:2.297700px;}
.ls2_c00249{letter-spacing:2.324340px;}
.ls5d_c00249{letter-spacing:2.364300px;}
.ls64_c00249{letter-spacing:2.370960px;}
.ls66_c00249{letter-spacing:2.524140px;}
.ls3c_c00249{letter-spacing:2.533440px;}
.ls17_c00249{letter-spacing:2.597400px;}
.ls18_c00249{letter-spacing:2.630700px;}
.ls61_c00249{letter-spacing:2.670660px;}
.ls1_c00249{letter-spacing:2.803860px;}
.ls2f_c00249{letter-spacing:2.837160px;}
.ls23_c00249{letter-spacing:2.877120px;}
.ls53_c00249{letter-spacing:2.897100px;}
.ls37_c00249{letter-spacing:2.977020px;}
.ls36_c00249{letter-spacing:3.016980px;}
.lsa_c00249{letter-spacing:3.310020px;}
.ls68_c00249{letter-spacing:3.330000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{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__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00249{word-spacing:-0.708960px;}
.ws5_c00249{word-spacing:0.000000px;}
.ws1_c00249{word-spacing:0.219360px;}
.ws0_c00249{word-spacing:2.203200px;}
.ws2_c00249{word-spacing:12.012000px;}
.ws4_c00249{word-spacing:20.037600px;}
._e_c00249{margin-left:-7.805520px;}
._f_c00249{margin-left:-6.353640px;}
._1_c00249{margin-left:-4.515480px;}
._0_c00249{margin-left:-2.757240px;}
._d_c00249{margin-left:-1.132200px;}
._10_c00249{width:1.063080px;}
._c_c00249{width:2.464560px;}
._3_c00249{width:4.288680px;}
._6_c00249{width:5.994360px;}
._2_c00249{width:7.345980px;}
._14_c00249{width:8.458200px;}
._4_c00249{width:9.523800px;}
._11_c00249{width:11.601000px;}
._5_c00249{width:13.006980px;}
._7_c00249{width:14.206560px;}
._a_c00249{width:16.110540px;}
._12_c00249{width:18.249840px;}
._13_c00249{width:20.745060px;}
._8_c00249{width:22.024620px;}
._9_c00249{width:23.968560px;}
._b_c00249{width:26.036040px;}
.fc0_c00249{color:transparent;}
.fs4_c00249{font-size:54.000000px;}
.fs1_c00249{font-size:66.600000px;}
.fs0_c00249{font-size:67.200000px;}
.fs2_c00249{font-size:67.800000px;}
.fs3_c00249{font-size:78.600000px;}
.y0_c00249{bottom:0.000000px;}
.y1d_c00249{bottom:68.775006px;}
.y1c_c00249{bottom:175.314756px;}
.y1b_c00249{bottom:207.016356px;}
.y19_c00249{bottom:238.330056px;}
.y1a_c00249{bottom:238.335006px;}
.y18_c00249{bottom:270.015006px;}
.y17_c00249{bottom:332.655006px;}
.y16_c00249{bottom:395.645106px;}
.y15_c00249{bottom:427.696356px;}
.y14_c00249{bottom:459.015006px;}
.y13_c00249{bottom:521.640006px;}
.y12_c00249{bottom:583.939356px;}
.y11_c00249{bottom:646.560006px;}
.y10_c00249{bottom:677.880006px;}
.ye_c00249{bottom:740.879706px;}
.yf_c00249{bottom:740.880006px;}
.yd_c00249{bottom:772.215006px;}
.yc_c00249{bottom:803.520006px;}
.yb_c00249{bottom:866.521356px;}
.ya_c00249{bottom:897.840006px;}
.y9_c00249{bottom:960.847656px;}
.y8_c00249{bottom:991.800006px;}
.y7_c00249{bottom:1023.135006px;}
.y6_c00249{bottom:1023.136356px;}
.y5_c00249{bottom:1054.455006px;}
.y3_c00249{bottom:1085.770056px;}
.y4_c00249{bottom:1085.775006px;}
.y2_c00249{bottom:1117.455006px;}
.y1_c00249{bottom:1193.415006px;}
.h7_c00249{height:56.320312px;}
.h4_c00249{height:65.364258px;}
.h3_c00249{height:65.920312px;}
.h2_c00249{height:65.953125px;}
.h5_c00249{height:70.713281px;}
.h6_c00249{height:77.141602px;}
.h1_c00249{height:1263.000000px;}
.h0_c00249{height:1263.240006px;}
.w1_c00249{width:892.500000px;}
.w0_c00249{width:892.799998px;}
.x0_c00249{left:0.000000px;}
.x15_c00249{left:117.328649px;}
.x7_c00249{left:118.833448px;}
.x3_c00249{left:119.863799px;}
.x1_c00249{left:121.604999px;}
.x10_c00249{left:141.044998px;}
.x6_c00249{left:171.554998px;}
.xa_c00249{left:172.604998px;}
.x2_c00249{left:174.734998px;}
.x16_c00249{left:198.629998px;}
.x17_c00249{left:221.684998px;}
.x18_c00249{left:261.029998px;}
.x11_c00249{left:274.214999px;}
.xb_c00249{left:277.844999px;}
.x19_c00249{left:287.969998px;}
.x12_c00249{left:298.619999px;}
.xc_c00249{left:313.889999px;}
.x1a_c00249{left:319.199999px;}
.x8_c00249{left:334.619999px;}
.x9_c00249{left:356.954998px;}
.x22_c00249{left:422.174999px;}
.xd_c00249{left:442.769998px;}
.x1b_c00249{left:451.154998px;}
.x13_c00249{left:453.719998px;}
.x14_c00249{left:473.954998px;}
.xe_c00249{left:475.019998px;}
.x1d_c00249{left:487.004998px;}
.x1e_c00249{left:495.539999px;}
.x1c_c00249{left:518.174999px;}
.x1f_c00249{left:519.299998px;}
.xf_c00249{left:525.779999px;}
.x4_c00249{left:595.589998px;}
.x5_c00249{left:618.644999px;}
.x20_c00249{left:643.949998px;}
.x21_c00249{left:670.874998px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls80_c00249{letter-spacing:-2.445333pt;}
.ls67_c00249{letter-spacing:-2.109333pt;}
.ls65_c00249{letter-spacing:-2.090667pt;}
.ls70_c00249{letter-spacing:-2.072000pt;}
.ls77_c00249{letter-spacing:-1.189920pt;}
.ls76_c00249{letter-spacing:-0.935360pt;}
.ls78_c00249{letter-spacing:-0.763680pt;}
.ls83_c00249{letter-spacing:-0.467680pt;}
.ls79_c00249{letter-spacing:-0.390720pt;}
.ls7b_c00249{letter-spacing:-0.325600pt;}
.ls6b_c00249{letter-spacing:-0.296000pt;}
.ls69_c00249{letter-spacing:0.000000pt;}
.ls4a_c00249{letter-spacing:0.124320pt;}
.ls44_c00249{letter-spacing:0.153920pt;}
.ls82_c00249{letter-spacing:0.183520pt;}
.ls8_c00249{letter-spacing:0.213120pt;}
.ls12_c00249{letter-spacing:0.236800pt;}
.ls84_c00249{letter-spacing:0.240000pt;}
.ls45_c00249{letter-spacing:0.384800pt;}
.ls20_c00249{letter-spacing:0.497280pt;}
.ls1f_c00249{letter-spacing:0.509120pt;}
.ls10_c00249{letter-spacing:0.520960pt;}
.ls7f_c00249{letter-spacing:0.550560pt;}
.ls19_c00249{letter-spacing:0.556480pt;}
.ls4b_c00249{letter-spacing:0.580160pt;}
.ls13_c00249{letter-spacing:0.621227pt;}
.ls41_c00249{letter-spacing:0.680800pt;}
.ls7c_c00249{letter-spacing:0.751840pt;}
.ls33_c00249{letter-spacing:0.769600pt;}
.ls27_c00249{letter-spacing:0.787360pt;}
.ls2c_c00249{letter-spacing:0.793280pt;}
.ls6e_c00249{letter-spacing:0.811040pt;}
.ls7e_c00249{letter-spacing:0.822880pt;}
.ls46_c00249{letter-spacing:0.846560pt;}
.ls7_c00249{letter-spacing:0.858400pt;}
.ls15_c00249{letter-spacing:0.870240pt;}
.lse_c00249{letter-spacing:0.876160pt;}
.ls24_c00249{letter-spacing:0.882080pt;}
.ls7a_c00249{letter-spacing:0.884053pt;}
.ls5f_c00249{letter-spacing:0.893920pt;}
.ls5a_c00249{letter-spacing:0.913920pt;}
.ls75_c00249{letter-spacing:0.923520pt;}
.ls31_c00249{letter-spacing:0.937813pt;}
.ls28_c00249{letter-spacing:0.941280pt;}
.ls52_c00249{letter-spacing:0.947200pt;}
.ls4f_c00249{letter-spacing:0.970880pt;}
.ls47_c00249{letter-spacing:0.973653pt;}
.ls1b_c00249{letter-spacing:1.000480pt;}
.ls3a_c00249{letter-spacing:1.006400pt;}
.ls22_c00249{letter-spacing:1.030080pt;}
.ls39_c00249{letter-spacing:1.036000pt;}
.ls35_c00249{letter-spacing:1.047840pt;}
.ls55_c00249{letter-spacing:1.053760pt;}
.lsf_c00249{letter-spacing:1.071520pt;}
.ls0_c00249{letter-spacing:1.075200pt;}
.ls2d_c00249{letter-spacing:1.077440pt;}
.ls34_c00249{letter-spacing:1.089280pt;}
.ls30_c00249{letter-spacing:1.093120pt;}
.ls3f_c00249{letter-spacing:1.101120pt;}
.lsc_c00249{letter-spacing:1.107040pt;}
.ls3d_c00249{letter-spacing:1.140907pt;}
.ls6f_c00249{letter-spacing:1.170773pt;}
.ls63_c00249{letter-spacing:1.172160pt;}
.ls51_c00249{letter-spacing:1.184000pt;}
.ls1c_c00249{letter-spacing:1.231360pt;}
.ls72_c00249{letter-spacing:1.249120pt;}
.ls4c_c00249{letter-spacing:1.254400pt;}
.ls6_c00249{letter-spacing:1.255040pt;}
.ls14_c00249{letter-spacing:1.266880pt;}
.ls32_c00249{letter-spacing:1.272800pt;}
.ls54_c00249{letter-spacing:1.278720pt;}
.ls71_c00249{letter-spacing:1.296480pt;}
.ls4e_c00249{letter-spacing:1.302400pt;}
.ls5_c00249{letter-spacing:1.314240pt;}
.ls43_c00249{letter-spacing:1.332000pt;}
.ls38_c00249{letter-spacing:1.337920pt;}
.ls1a_c00249{letter-spacing:1.343840pt;}
.ls59_c00249{letter-spacing:1.349760pt;}
.ls50_c00249{letter-spacing:1.355680pt;}
.ls58_c00249{letter-spacing:1.355947pt;}
.ls2b_c00249{letter-spacing:1.373440pt;}
.ls2a_c00249{letter-spacing:1.379360pt;}
.ls5c_c00249{letter-spacing:1.391200pt;}
.ls21_c00249{letter-spacing:1.414880pt;}
.ls48_c00249{letter-spacing:1.427627pt;}
.ls6c_c00249{letter-spacing:1.444480pt;}
.ls1e_c00249{letter-spacing:1.480000pt;}
.ls6a_c00249{letter-spacing:1.491840pt;}
.ls73_c00249{letter-spacing:1.497760pt;}
.ls60_c00249{letter-spacing:1.509600pt;}
.ls56_c00249{letter-spacing:1.533280pt;}
.ls74_c00249{letter-spacing:1.551040pt;}
.ls5e_c00249{letter-spacing:1.556960pt;}
.ls81_c00249{letter-spacing:1.562880pt;}
.lsb_c00249{letter-spacing:1.574720pt;}
.ls7d_c00249{letter-spacing:1.598400pt;}
.ls5b_c00249{letter-spacing:1.645760pt;}
.ls2e_c00249{letter-spacing:1.657600pt;}
.ls26_c00249{letter-spacing:1.675360pt;}
.ls16_c00249{letter-spacing:1.693120pt;}
.ls1d_c00249{letter-spacing:1.728640pt;}
.ls62_c00249{letter-spacing:1.740480pt;}
.ls3_c00249{letter-spacing:1.746400pt;}
.ls3e_c00249{letter-spacing:1.750187pt;}
.ls6d_c00249{letter-spacing:1.764160pt;}
.ls25_c00249{letter-spacing:1.770080pt;}
.ls4_c00249{letter-spacing:1.799680pt;}
.ls11_c00249{letter-spacing:1.805600pt;}
.ls29_c00249{letter-spacing:1.811520pt;}
.ls9_c00249{letter-spacing:1.823360pt;}
.ls57_c00249{letter-spacing:1.847040pt;}
.ls40_c00249{letter-spacing:1.864800pt;}
.ls49_c00249{letter-spacing:1.989120pt;}
.ls42_c00249{letter-spacing:1.995040pt;}
.ls3b_c00249{letter-spacing:2.006880pt;}
.ls4d_c00249{letter-spacing:2.030560pt;}
.lsd_c00249{letter-spacing:2.042400pt;}
.ls2_c00249{letter-spacing:2.066080pt;}
.ls5d_c00249{letter-spacing:2.101600pt;}
.ls64_c00249{letter-spacing:2.107520pt;}
.ls66_c00249{letter-spacing:2.243680pt;}
.ls3c_c00249{letter-spacing:2.251947pt;}
.ls17_c00249{letter-spacing:2.308800pt;}
.ls18_c00249{letter-spacing:2.338400pt;}
.ls61_c00249{letter-spacing:2.373920pt;}
.ls1_c00249{letter-spacing:2.492320pt;}
.ls2f_c00249{letter-spacing:2.521920pt;}
.ls23_c00249{letter-spacing:2.557440pt;}
.ls53_c00249{letter-spacing:2.575200pt;}
.ls37_c00249{letter-spacing:2.646240pt;}
.ls36_c00249{letter-spacing:2.681760pt;}
.lsa_c00249{letter-spacing:2.942240pt;}
.ls68_c00249{letter-spacing:2.960000pt;}
.ws3_c00249{word-spacing:-0.630187pt;}
.ws5_c00249{word-spacing:0.000000pt;}
.ws1_c00249{word-spacing:0.194987pt;}
.ws0_c00249{word-spacing:1.958400pt;}
.ws2_c00249{word-spacing:10.677333pt;}
.ws4_c00249{word-spacing:17.811200pt;}
._e_c00249{margin-left:-6.938240pt;}
._f_c00249{margin-left:-5.647680pt;}
._1_c00249{margin-left:-4.013760pt;}
._0_c00249{margin-left:-2.450880pt;}
._d_c00249{margin-left:-1.006400pt;}
._10_c00249{width:0.944960pt;}
._c_c00249{width:2.190720pt;}
._3_c00249{width:3.812160pt;}
._6_c00249{width:5.328320pt;}
._2_c00249{width:6.529760pt;}
._14_c00249{width:7.518400pt;}
._4_c00249{width:8.465600pt;}
._11_c00249{width:10.312000pt;}
._5_c00249{width:11.561760pt;}
._7_c00249{width:12.628053pt;}
._a_c00249{width:14.320480pt;}
._12_c00249{width:16.222080pt;}
._13_c00249{width:18.440053pt;}
._8_c00249{width:19.577440pt;}
._9_c00249{width:21.305387pt;}
._b_c00249{width:23.143147pt;}
.fs4_c00249{font-size:48.000000pt;}
.fs1_c00249{font-size:59.200000pt;}
.fs0_c00249{font-size:59.733333pt;}
.fs2_c00249{font-size:60.266667pt;}
.fs3_c00249{font-size:69.866667pt;}
.y0_c00249{bottom:0.000000pt;}
.y1d_c00249{bottom:61.133339pt;}
.y1c_c00249{bottom:155.835339pt;}
.y1b_c00249{bottom:184.014539pt;}
.y19_c00249{bottom:211.848939pt;}
.y1a_c00249{bottom:211.853339pt;}
.y18_c00249{bottom:240.013339pt;}
.y17_c00249{bottom:295.693339pt;}
.y16_c00249{bottom:351.684539pt;}
.y15_c00249{bottom:380.174539pt;}
.y14_c00249{bottom:408.013339pt;}
.y13_c00249{bottom:463.680005pt;}
.y12_c00249{bottom:519.057205pt;}
.y11_c00249{bottom:574.720005pt;}
.y10_c00249{bottom:602.560005pt;}
.ye_c00249{bottom:658.559739pt;}
.yf_c00249{bottom:658.560005pt;}
.yd_c00249{bottom:686.413339pt;}
.yc_c00249{bottom:714.240005pt;}
.yb_c00249{bottom:770.241205pt;}
.ya_c00249{bottom:798.080005pt;}
.y9_c00249{bottom:854.086805pt;}
.y8_c00249{bottom:881.600005pt;}
.y7_c00249{bottom:909.453339pt;}
.y6_c00249{bottom:909.454539pt;}
.y5_c00249{bottom:937.293339pt;}
.y3_c00249{bottom:965.128939pt;}
.y4_c00249{bottom:965.133339pt;}
.y2_c00249{bottom:993.293339pt;}
.y1_c00249{bottom:1060.813339pt;}
.h7_c00249{height:50.062500pt;}
.h4_c00249{height:58.101562pt;}
.h3_c00249{height:58.595833pt;}
.h2_c00249{height:58.625000pt;}
.h5_c00249{height:62.856250pt;}
.h6_c00249{height:68.570312pt;}
.h1_c00249{height:1122.666667pt;}
.h0_c00249{height:1122.880005pt;}
.w1_c00249{width:793.333333pt;}
.w0_c00249{width:793.599999pt;}
.x0_c00249{left:0.000000pt;}
.x15_c00249{left:104.292132pt;}
.x7_c00249{left:105.629732pt;}
.x3_c00249{left:106.545599pt;}
.x1_c00249{left:108.093332pt;}
.x10_c00249{left:125.373332pt;}
.x6_c00249{left:152.493332pt;}
.xa_c00249{left:153.426665pt;}
.x2_c00249{left:155.319999pt;}
.x16_c00249{left:176.559999pt;}
.x17_c00249{left:197.053332pt;}
.x18_c00249{left:232.026665pt;}
.x11_c00249{left:243.746665pt;}
.xb_c00249{left:246.973332pt;}
.x19_c00249{left:255.973332pt;}
.x12_c00249{left:265.439999pt;}
.xc_c00249{left:279.013332pt;}
.x1a_c00249{left:283.733332pt;}
.x8_c00249{left:297.439999pt;}
.x9_c00249{left:317.293332pt;}
.x22_c00249{left:375.266665pt;}
.xd_c00249{left:393.573332pt;}
.x1b_c00249{left:401.026665pt;}
.x13_c00249{left:403.306665pt;}
.x14_c00249{left:421.293332pt;}
.xe_c00249{left:422.239999pt;}
.x1d_c00249{left:432.893332pt;}
.x1e_c00249{left:440.479999pt;}
.x1c_c00249{left:460.599999pt;}
.x1f_c00249{left:461.599999pt;}
.xf_c00249{left:467.359999pt;}
.x4_c00249{left:529.413332pt;}
.x5_c00249{left:549.906665pt;}
.x20_c00249{left:572.399999pt;}
.x21_c00249{left:596.333332pt;}
}





/* 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_c00250 {
    display:none;
  }
  .loading-indicator_c00250.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00250 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_c00250 { 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_c00250" -> "#page-container .classname_c00250")
 */
.pf_c00250 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00250 { /* 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_c00250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00250 { /* 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_c00250 { /* 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_c00250 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00250 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00250 {overflow:visible;}
  }
}
.c_c00250 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00250 { /* 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_c00250:after { /* webkit #35443 */
  content: '';
}
.t_c00250:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00250 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 */
}
.__c00250 { /* 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_c00250 { /* info for Javascript */
  display:none;
}
.l_c00250 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00250 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00250 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00250: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_c00250 {
    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_c00250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00250.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_c00250 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00250;src:url('chunks/assets/font_d80ff3b36c077c08fe72b60f.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.284668;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_c00250;src:url('chunks/assets/font_3a5b9e22a8fa74f855b9892b.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.284180;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_c00250;src:url('chunks/assets/font_4a645c101d9850722e86054e.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:0.666000;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_c00250;src:url('chunks/assets/font_4c76b6cf13d9725dcd2d611a.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;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;}
.m9_c00250{transform:matrix(0.118620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118620,0.000000,0.000000,0.250000,0,0);}
.m5_c00250{transform:matrix(0.135135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135135,0.000000,0.000000,0.250000,0,0);}
.m8_c00250{transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);}
.ma_c00250{transform:matrix(0.223631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223631,0.000000,0.000000,0.250000,0,0);}
.m6_c00250{transform:matrix(0.231157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231157,0.000000,0.000000,0.250000,0,0);}
.m2_c00250{transform:matrix(0.235093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235093,0.000000,0.000000,0.250000,0,0);}
.m4_c00250{transform:matrix(0.243504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243504,0.000000,0.000000,0.250000,0,0);}
.m1_c00250{transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);}
.m7_c00250{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.mc_c00250{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.m3_c00250{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m0_c00250{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);}
.mb_c00250{transform:matrix(0.261733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261733,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls7c_c00250{letter-spacing:-2.688000px;}
.ls3b_c00250{letter-spacing:-2.415000px;}
.ls48_c00250{letter-spacing:-2.401200px;}
.ls67_c00250{letter-spacing:-2.373000px;}
.ls7a_c00250{letter-spacing:-2.263200px;}
.ls6e_c00250{letter-spacing:-2.067120px;}
.ls78_c00250{letter-spacing:-1.842300px;}
.ls6d_c00250{letter-spacing:-1.829520px;}
.ls47_c00250{letter-spacing:-1.649100px;}
.ls4b_c00250{letter-spacing:-1.580100px;}
.ls3e_c00250{letter-spacing:-1.469700px;}
.ls58_c00250{letter-spacing:-1.462800px;}
.ls41_c00250{letter-spacing:-1.435200px;}
.ls40_c00250{letter-spacing:-1.428300px;}
.ls6b_c00250{letter-spacing:-1.421400px;}
.ls55_c00250{letter-spacing:-1.393800px;}
.ls59_c00250{letter-spacing:-1.283400px;}
.ls6c_c00250{letter-spacing:-1.269600px;}
.ls49_c00250{letter-spacing:-1.235100px;}
.ls72_c00250{letter-spacing:-1.200600px;}
.ls7b_c00250{letter-spacing:-1.179900px;}
.ls82_c00250{letter-spacing:-1.168500px;}
.ls38_c00250{letter-spacing:-1.159200px;}
.ls53_c00250{letter-spacing:-1.110900px;}
.ls5e_c00250{letter-spacing:-1.083300px;}
.ls44_c00250{letter-spacing:-1.021200px;}
.ls3c_c00250{letter-spacing:-1.000500px;}
.ls68_c00250{letter-spacing:-0.981120px;}
.ls32_c00250{letter-spacing:-0.945300px;}
.ls42_c00250{letter-spacing:-0.917700px;}
.ls3d_c00250{letter-spacing:-0.903900px;}
.ls4e_c00250{letter-spacing:-0.834900px;}
.ls74_c00250{letter-spacing:-0.821100px;}
.ls4c_c00250{letter-spacing:-0.814200px;}
.ls4d_c00250{letter-spacing:-0.807300px;}
.ls34_c00250{letter-spacing:-0.800400px;}
.ls5c_c00250{letter-spacing:-0.793500px;}
.ls70_c00250{letter-spacing:-0.779700px;}
.ls5b_c00250{letter-spacing:-0.738300px;}
.ls3a_c00250{letter-spacing:-0.710700px;}
.ls7d_c00250{letter-spacing:-0.690000px;}
.ls30_c00250{letter-spacing:-0.683100px;}
.ls3f_c00250{letter-spacing:-0.676200px;}
.ls2f_c00250{letter-spacing:-0.558900px;}
.ls76_c00250{letter-spacing:-0.531300px;}
.ls43_c00250{letter-spacing:-0.524400px;}
.ls39_c00250{letter-spacing:-0.517500px;}
.ls63_c00250{letter-spacing:-0.489900px;}
.ls64_c00250{letter-spacing:-0.441600px;}
.ls60_c00250{letter-spacing:-0.427800px;}
.ls75_c00250{letter-spacing:-0.420900px;}
.ls4a_c00250{letter-spacing:-0.407100px;}
.ls37_c00250{letter-spacing:-0.400200px;}
.ls56_c00250{letter-spacing:-0.358800px;}
.ls73_c00250{letter-spacing:-0.345000px;}
.ls46_c00250{letter-spacing:-0.331200px;}
.ls52_c00250{letter-spacing:-0.324300px;}
.ls4f_c00250{letter-spacing:-0.310500px;}
.ls36_c00250{letter-spacing:-0.296700px;}
.ls6a_c00250{letter-spacing:-0.289800px;}
.ls54_c00250{letter-spacing:-0.269100px;}
.ls62_c00250{letter-spacing:-0.248400px;}
.ls6f_c00250{letter-spacing:-0.241500px;}
.ls51_c00250{letter-spacing:-0.234600px;}
.ls2e_c00250{letter-spacing:-0.213900px;}
.ls65_c00250{letter-spacing:-0.200100px;}
.ls45_c00250{letter-spacing:-0.193200px;}
.ls31_c00250{letter-spacing:-0.179400px;}
.ls5d_c00250{letter-spacing:-0.172500px;}
.ls5a_c00250{letter-spacing:-0.158700px;}
.ls61_c00250{letter-spacing:-0.151800px;}
.ls2d_c00250{letter-spacing:-0.138000px;}
.ls77_c00250{letter-spacing:-0.117300px;}
.ls66_c00250{letter-spacing:-0.110400px;}
.ls5f_c00250{letter-spacing:-0.096600px;}
.ls57_c00250{letter-spacing:-0.048300px;}
.ls71_c00250{letter-spacing:-0.041400px;}
.ls79_c00250{letter-spacing:-0.027600px;}
.ls33_c00250{letter-spacing:-0.020700px;}
.ls50_c00250{letter-spacing:-0.013800px;}
.ls35_c00250{letter-spacing:0.000000px;}
.ls26_c00250{letter-spacing:0.020700px;}
.ls15_c00250{letter-spacing:0.041400px;}
.ls16_c00250{letter-spacing:0.048300px;}
.ls1b_c00250{letter-spacing:0.089700px;}
.ls27_c00250{letter-spacing:0.158700px;}
.ls23_c00250{letter-spacing:0.172500px;}
.lsd_c00250{letter-spacing:0.179400px;}
.ls21_c00250{letter-spacing:0.200100px;}
.ls28_c00250{letter-spacing:0.234600px;}
.ls69_c00250{letter-spacing:0.241500px;}
.ls1c_c00250{letter-spacing:0.276000px;}
.ls17_c00250{letter-spacing:0.303600px;}
.ls1_c00250{letter-spacing:0.338100px;}
.lsf_c00250{letter-spacing:0.345000px;}
.ls25_c00250{letter-spacing:0.379500px;}
.ls81_c00250{letter-spacing:0.386400px;}
.ls1f_c00250{letter-spacing:0.414000px;}
.ls2a_c00250{letter-spacing:0.462300px;}
.ls2_c00250{letter-spacing:0.510600px;}
.ls13_c00250{letter-spacing:0.531300px;}
.ls5_c00250{letter-spacing:0.571200px;}
.ls22_c00250{letter-spacing:0.586500px;}
.ls7_c00250{letter-spacing:0.614100px;}
.lsa_c00250{letter-spacing:0.626400px;}
.ls9_c00250{letter-spacing:0.627900px;}
.ls3_c00250{letter-spacing:0.641700px;}
.ls20_c00250{letter-spacing:0.672000px;}
.ls10_c00250{letter-spacing:0.678720px;}
.lse_c00250{letter-spacing:0.717600px;}
.ls1a_c00250{letter-spacing:0.752640px;}
.ls4_c00250{letter-spacing:0.873600px;}
.ls6_c00250{letter-spacing:0.952200px;}
.ls0_c00250{letter-spacing:0.987840px;}
.ls12_c00250{letter-spacing:1.048320px;}
.ls80_c00250{letter-spacing:1.090320px;}
.ls14_c00250{letter-spacing:1.097100px;}
.ls8_c00250{letter-spacing:1.124700px;}
.ls1e_c00250{letter-spacing:1.169280px;}
.ls1d_c00250{letter-spacing:1.359300px;}
.lsc_c00250{letter-spacing:1.386900px;}
.ls11_c00250{letter-spacing:1.391040px;}
.ls7e_c00250{letter-spacing:1.455900px;}
.ls19_c00250{letter-spacing:1.491840px;}
.ls18_c00250{letter-spacing:1.580100px;}
.ls2b_c00250{letter-spacing:1.842300px;}
.lsb_c00250{letter-spacing:1.955760px;}
.ls29_c00250{letter-spacing:2.056200px;}
.ls24_c00250{letter-spacing:2.539200px;}
.ls2c_c00250{letter-spacing:2.583900px;}
.ls7f_c00250{letter-spacing:3.540000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{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__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00250{word-spacing:-1.482720px;}
.ws6_c00250{word-spacing:-1.264800px;}
.ws0_c00250{word-spacing:-0.098400px;}
.ws8_c00250{word-spacing:0.000000px;}
.ws7_c00250{word-spacing:3.921600px;}
.ws5_c00250{word-spacing:5.839200px;}
.ws2_c00250{word-spacing:11.332320px;}
.ws1_c00250{word-spacing:13.610400px;}
.ws3_c00250{word-spacing:14.948640px;}
._12_c00250{margin-left:-7.816800px;}
._e_c00250{margin-left:-5.661360px;}
._8_c00250{margin-left:-4.315200px;}
._0_c00250{margin-left:-3.095700px;}
._1_c00250{margin-left:-1.322700px;}
._a_c00250{width:2.046360px;}
._d_c00250{width:3.193680px;}
._6_c00250{width:4.967400px;}
._9_c00250{width:6.640740px;}
._7_c00250{width:7.727400px;}
._14_c00250{width:8.943000px;}
._3_c00250{width:9.978000px;}
._f_c00250{width:11.558400px;}
._4_c00250{width:13.261500px;}
._5_c00250{width:14.959200px;}
._2_c00250{width:16.060800px;}
._b_c00250{width:19.492800px;}
._c_c00250{width:20.527500px;}
._13_c00250{width:23.184000px;}
._11_c00250{width:24.766560px;}
._10_c00250{width:25.806000px;}
._17_c00250{width:29.290500px;}
._15_c00250{width:31.222500px;}
._19_c00250{width:32.404860px;}
._18_c00250{width:34.092900px;}
._16_c00250{width:35.159940px;}
.fc0_c00250{color:transparent;}
.fs4_c00250{font-size:53.280000px;}
.fs8_c00250{font-size:57.000000px;}
.fs0_c00250{font-size:59.400000px;}
.fs1_c00250{font-size:67.200000px;}
.fs5_c00250{font-size:67.800000px;}
.fs2_c00250{font-size:69.000000px;}
.fs3_c00250{font-size:69.600000px;}
.fs7_c00250{font-size:70.800000px;}
.fs6_c00250{font-size:76.800000px;}
.y0_c00250{bottom:0.000000px;}
.y1e_c00250{bottom:69.495000px;}
.y1d_c00250{bottom:146.520000px;}
.y1c_c00250{bottom:208.800000px;}
.y1a_c00250{bottom:272.167500px;}
.y1b_c00250{bottom:272.175000px;}
.y19_c00250{bottom:303.493500px;}
.y17_c00250{bottom:334.091250px;}
.y18_c00250{bottom:334.095000px;}
.y16_c00250{bottom:365.055000px;}
.y15_c00250{bottom:427.695000px;}
.y14_c00250{bottom:491.055750px;}
.y12_c00250{bottom:521.631750px;}
.y13_c00250{bottom:521.640000px;}
.y10_c00250{bottom:552.969000px;}
.y11_c00250{bottom:552.975000px;}
.yf_c00250{bottom:584.640000px;}
.ye_c00250{bottom:646.925250px;}
.yd_c00250{bottom:678.613500px;}
.yc_c00250{bottom:709.560000px;}
.yb_c00250{bottom:772.200000px;}
.y9_c00250{bottom:834.131250px;}
.ya_c00250{bottom:834.135000px;}
.y8_c00250{bottom:865.440000px;}
.y7_c00250{bottom:865.443000px;}
.y6_c00250{bottom:928.440000px;}
.y5_c00250{bottom:959.400000px;}
.y4_c00250{bottom:1022.756250px;}
.y3_c00250{bottom:1053.720000px;}
.y2_c00250{bottom:1116.375000px;}
.y1_c00250{bottom:1191.240000px;}
.h6_c00250{height:35.484480px;}
.hb_c00250{height:55.942383px;}
.h2_c00250{height:58.297852px;}
.h3_c00250{height:67.719727px;}
.h4_c00250{height:67.734727px;}
.h7_c00250{height:67.758727px;}
.h5_c00250{height:68.274609px;}
.ha_c00250{height:69.486328px;}
.h8_c00250{height:70.713281px;}
.h9_c00250{height:75.375000px;}
.h1_c00250{height:1263.000000px;}
.h0_c00250{height:1263.240000px;}
.w1_c00250{width:892.500000px;}
.w0_c00250{width:892.800000px;}
.x0_c00250{left:0.000000px;}
.x18_c00250{left:124.522500px;}
.x1_c00250{left:125.565000px;}
.x21_c00250{left:177.285000px;}
.x17_c00250{left:178.725000px;}
.x2_c00250{left:179.805000px;}
.x4_c00250{left:247.125000px;}
.x5_c00250{left:275.550000px;}
.x6_c00250{left:291.510000px;}
.x16_c00250{left:297.015000px;}
.x3_c00250{left:307.815000px;}
.x12_c00250{left:340.755000px;}
.x13_c00250{left:364.485000px;}
.x1c_c00250{left:372.795000px;}
.x1d_c00250{left:392.940000px;}
.xe_c00250{left:415.605000px;}
.x22_c00250{left:425.070000px;}
.x19_c00250{left:439.755000px;}
.xf_c00250{left:442.740000px;}
.x7_c00250{left:451.605000px;}
.x1a_c00250{left:462.090000px;}
.x8_c00250{left:483.975000px;}
.x1b_c00250{left:494.820000px;}
.x10_c00250{left:504.885000px;}
.x9_c00250{left:512.550000px;}
.x11_c00250{left:532.335000px;}
.x1e_c00250{left:555.615000px;}
.x1f_c00250{left:570.045000px;}
.x20_c00250{left:588.810000px;}
.xa_c00250{left:621.735000px;}
.x14_c00250{left:651.390000px;}
.xb_c00250{left:659.685000px;}
.x15_c00250{left:676.245000px;}
.xc_c00250{left:697.485000px;}
.xd_c00250{left:728.445000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls7c_c00250{letter-spacing:-2.389333pt;}
.ls3b_c00250{letter-spacing:-2.146667pt;}
.ls48_c00250{letter-spacing:-2.134400pt;}
.ls67_c00250{letter-spacing:-2.109333pt;}
.ls7a_c00250{letter-spacing:-2.011733pt;}
.ls6e_c00250{letter-spacing:-1.837440pt;}
.ls78_c00250{letter-spacing:-1.637600pt;}
.ls6d_c00250{letter-spacing:-1.626240pt;}
.ls47_c00250{letter-spacing:-1.465867pt;}
.ls4b_c00250{letter-spacing:-1.404533pt;}
.ls3e_c00250{letter-spacing:-1.306400pt;}
.ls58_c00250{letter-spacing:-1.300267pt;}
.ls41_c00250{letter-spacing:-1.275733pt;}
.ls40_c00250{letter-spacing:-1.269600pt;}
.ls6b_c00250{letter-spacing:-1.263467pt;}
.ls55_c00250{letter-spacing:-1.238933pt;}
.ls59_c00250{letter-spacing:-1.140800pt;}
.ls6c_c00250{letter-spacing:-1.128533pt;}
.ls49_c00250{letter-spacing:-1.097867pt;}
.ls72_c00250{letter-spacing:-1.067200pt;}
.ls7b_c00250{letter-spacing:-1.048800pt;}
.ls82_c00250{letter-spacing:-1.038667pt;}
.ls38_c00250{letter-spacing:-1.030400pt;}
.ls53_c00250{letter-spacing:-0.987467pt;}
.ls5e_c00250{letter-spacing:-0.962933pt;}
.ls44_c00250{letter-spacing:-0.907733pt;}
.ls3c_c00250{letter-spacing:-0.889333pt;}
.ls68_c00250{letter-spacing:-0.872107pt;}
.ls32_c00250{letter-spacing:-0.840267pt;}
.ls42_c00250{letter-spacing:-0.815733pt;}
.ls3d_c00250{letter-spacing:-0.803467pt;}
.ls4e_c00250{letter-spacing:-0.742133pt;}
.ls74_c00250{letter-spacing:-0.729867pt;}
.ls4c_c00250{letter-spacing:-0.723733pt;}
.ls4d_c00250{letter-spacing:-0.717600pt;}
.ls34_c00250{letter-spacing:-0.711467pt;}
.ls5c_c00250{letter-spacing:-0.705333pt;}
.ls70_c00250{letter-spacing:-0.693067pt;}
.ls5b_c00250{letter-spacing:-0.656267pt;}
.ls3a_c00250{letter-spacing:-0.631733pt;}
.ls7d_c00250{letter-spacing:-0.613333pt;}
.ls30_c00250{letter-spacing:-0.607200pt;}
.ls3f_c00250{letter-spacing:-0.601067pt;}
.ls2f_c00250{letter-spacing:-0.496800pt;}
.ls76_c00250{letter-spacing:-0.472267pt;}
.ls43_c00250{letter-spacing:-0.466133pt;}
.ls39_c00250{letter-spacing:-0.460000pt;}
.ls63_c00250{letter-spacing:-0.435467pt;}
.ls64_c00250{letter-spacing:-0.392533pt;}
.ls60_c00250{letter-spacing:-0.380267pt;}
.ls75_c00250{letter-spacing:-0.374133pt;}
.ls4a_c00250{letter-spacing:-0.361867pt;}
.ls37_c00250{letter-spacing:-0.355733pt;}
.ls56_c00250{letter-spacing:-0.318933pt;}
.ls73_c00250{letter-spacing:-0.306667pt;}
.ls46_c00250{letter-spacing:-0.294400pt;}
.ls52_c00250{letter-spacing:-0.288267pt;}
.ls4f_c00250{letter-spacing:-0.276000pt;}
.ls36_c00250{letter-spacing:-0.263733pt;}
.ls6a_c00250{letter-spacing:-0.257600pt;}
.ls54_c00250{letter-spacing:-0.239200pt;}
.ls62_c00250{letter-spacing:-0.220800pt;}
.ls6f_c00250{letter-spacing:-0.214667pt;}
.ls51_c00250{letter-spacing:-0.208533pt;}
.ls2e_c00250{letter-spacing:-0.190133pt;}
.ls65_c00250{letter-spacing:-0.177867pt;}
.ls45_c00250{letter-spacing:-0.171733pt;}
.ls31_c00250{letter-spacing:-0.159467pt;}
.ls5d_c00250{letter-spacing:-0.153333pt;}
.ls5a_c00250{letter-spacing:-0.141067pt;}
.ls61_c00250{letter-spacing:-0.134933pt;}
.ls2d_c00250{letter-spacing:-0.122667pt;}
.ls77_c00250{letter-spacing:-0.104267pt;}
.ls66_c00250{letter-spacing:-0.098133pt;}
.ls5f_c00250{letter-spacing:-0.085867pt;}
.ls57_c00250{letter-spacing:-0.042933pt;}
.ls71_c00250{letter-spacing:-0.036800pt;}
.ls79_c00250{letter-spacing:-0.024533pt;}
.ls33_c00250{letter-spacing:-0.018400pt;}
.ls50_c00250{letter-spacing:-0.012267pt;}
.ls35_c00250{letter-spacing:0.000000pt;}
.ls26_c00250{letter-spacing:0.018400pt;}
.ls15_c00250{letter-spacing:0.036800pt;}
.ls16_c00250{letter-spacing:0.042933pt;}
.ls1b_c00250{letter-spacing:0.079733pt;}
.ls27_c00250{letter-spacing:0.141067pt;}
.ls23_c00250{letter-spacing:0.153333pt;}
.lsd_c00250{letter-spacing:0.159467pt;}
.ls21_c00250{letter-spacing:0.177867pt;}
.ls28_c00250{letter-spacing:0.208533pt;}
.ls69_c00250{letter-spacing:0.214667pt;}
.ls1c_c00250{letter-spacing:0.245333pt;}
.ls17_c00250{letter-spacing:0.269867pt;}
.ls1_c00250{letter-spacing:0.300533pt;}
.lsf_c00250{letter-spacing:0.306667pt;}
.ls25_c00250{letter-spacing:0.337333pt;}
.ls81_c00250{letter-spacing:0.343467pt;}
.ls1f_c00250{letter-spacing:0.368000pt;}
.ls2a_c00250{letter-spacing:0.410933pt;}
.ls2_c00250{letter-spacing:0.453867pt;}
.ls13_c00250{letter-spacing:0.472267pt;}
.ls5_c00250{letter-spacing:0.507733pt;}
.ls22_c00250{letter-spacing:0.521333pt;}
.ls7_c00250{letter-spacing:0.545867pt;}
.lsa_c00250{letter-spacing:0.556800pt;}
.ls9_c00250{letter-spacing:0.558133pt;}
.ls3_c00250{letter-spacing:0.570400pt;}
.ls20_c00250{letter-spacing:0.597333pt;}
.ls10_c00250{letter-spacing:0.603307pt;}
.lse_c00250{letter-spacing:0.637867pt;}
.ls1a_c00250{letter-spacing:0.669013pt;}
.ls4_c00250{letter-spacing:0.776533pt;}
.ls6_c00250{letter-spacing:0.846400pt;}
.ls0_c00250{letter-spacing:0.878080pt;}
.ls12_c00250{letter-spacing:0.931840pt;}
.ls80_c00250{letter-spacing:0.969173pt;}
.ls14_c00250{letter-spacing:0.975200pt;}
.ls8_c00250{letter-spacing:0.999733pt;}
.ls1e_c00250{letter-spacing:1.039360pt;}
.ls1d_c00250{letter-spacing:1.208267pt;}
.lsc_c00250{letter-spacing:1.232800pt;}
.ls11_c00250{letter-spacing:1.236480pt;}
.ls7e_c00250{letter-spacing:1.294133pt;}
.ls19_c00250{letter-spacing:1.326080pt;}
.ls18_c00250{letter-spacing:1.404533pt;}
.ls2b_c00250{letter-spacing:1.637600pt;}
.lsb_c00250{letter-spacing:1.738453pt;}
.ls29_c00250{letter-spacing:1.827733pt;}
.ls24_c00250{letter-spacing:2.257067pt;}
.ls2c_c00250{letter-spacing:2.296800pt;}
.ls7f_c00250{letter-spacing:3.146667pt;}
.ws4_c00250{word-spacing:-1.317973pt;}
.ws6_c00250{word-spacing:-1.124267pt;}
.ws0_c00250{word-spacing:-0.087467pt;}
.ws8_c00250{word-spacing:0.000000pt;}
.ws7_c00250{word-spacing:3.485867pt;}
.ws5_c00250{word-spacing:5.190400pt;}
.ws2_c00250{word-spacing:10.073173pt;}
.ws1_c00250{word-spacing:12.098133pt;}
.ws3_c00250{word-spacing:13.287680pt;}
._12_c00250{margin-left:-6.948267pt;}
._e_c00250{margin-left:-5.032320pt;}
._8_c00250{margin-left:-3.835733pt;}
._0_c00250{margin-left:-2.751733pt;}
._1_c00250{margin-left:-1.175733pt;}
._a_c00250{width:1.818987pt;}
._d_c00250{width:2.838827pt;}
._6_c00250{width:4.415467pt;}
._9_c00250{width:5.902880pt;}
._7_c00250{width:6.868800pt;}
._14_c00250{width:7.949333pt;}
._3_c00250{width:8.869333pt;}
._f_c00250{width:10.274133pt;}
._4_c00250{width:11.788000pt;}
._5_c00250{width:13.297067pt;}
._2_c00250{width:14.276267pt;}
._b_c00250{width:17.326933pt;}
._c_c00250{width:18.246667pt;}
._13_c00250{width:20.608000pt;}
._11_c00250{width:22.014720pt;}
._10_c00250{width:22.938667pt;}
._17_c00250{width:26.036000pt;}
._15_c00250{width:27.753333pt;}
._19_c00250{width:28.804320pt;}
._18_c00250{width:30.304800pt;}
._16_c00250{width:31.253280pt;}
.fs4_c00250{font-size:47.360000pt;}
.fs8_c00250{font-size:50.666667pt;}
.fs0_c00250{font-size:52.800000pt;}
.fs1_c00250{font-size:59.733333pt;}
.fs5_c00250{font-size:60.266667pt;}
.fs2_c00250{font-size:61.333333pt;}
.fs3_c00250{font-size:61.866667pt;}
.fs7_c00250{font-size:62.933333pt;}
.fs6_c00250{font-size:68.266667pt;}
.y0_c00250{bottom:0.000000pt;}
.y1e_c00250{bottom:61.773333pt;}
.y1d_c00250{bottom:130.240000pt;}
.y1c_c00250{bottom:185.600000pt;}
.y1a_c00250{bottom:241.926667pt;}
.y1b_c00250{bottom:241.933333pt;}
.y19_c00250{bottom:269.772000pt;}
.y17_c00250{bottom:296.970000pt;}
.y18_c00250{bottom:296.973333pt;}
.y16_c00250{bottom:324.493333pt;}
.y15_c00250{bottom:380.173333pt;}
.y14_c00250{bottom:436.494000pt;}
.y12_c00250{bottom:463.672667pt;}
.y13_c00250{bottom:463.680000pt;}
.y10_c00250{bottom:491.528000pt;}
.y11_c00250{bottom:491.533333pt;}
.yf_c00250{bottom:519.680000pt;}
.ye_c00250{bottom:575.044667pt;}
.yd_c00250{bottom:603.212000pt;}
.yc_c00250{bottom:630.720000pt;}
.yb_c00250{bottom:686.400000pt;}
.y9_c00250{bottom:741.450000pt;}
.ya_c00250{bottom:741.453333pt;}
.y8_c00250{bottom:769.280000pt;}
.y7_c00250{bottom:769.282667pt;}
.y6_c00250{bottom:825.280000pt;}
.y5_c00250{bottom:852.800000pt;}
.y4_c00250{bottom:909.116667pt;}
.y3_c00250{bottom:936.640000pt;}
.y2_c00250{bottom:992.333333pt;}
.y1_c00250{bottom:1058.880000pt;}
.h6_c00250{height:31.541760pt;}
.hb_c00250{height:49.726562pt;}
.h2_c00250{height:51.820312pt;}
.h3_c00250{height:60.195312pt;}
.h4_c00250{height:60.208646pt;}
.h7_c00250{height:60.229979pt;}
.h5_c00250{height:60.688542pt;}
.ha_c00250{height:61.765625pt;}
.h8_c00250{height:62.856250pt;}
.h9_c00250{height:67.000000pt;}
.h1_c00250{height:1122.666667pt;}
.h0_c00250{height:1122.880000pt;}
.w1_c00250{width:793.333333pt;}
.w0_c00250{width:793.600000pt;}
.x0_c00250{left:0.000000pt;}
.x18_c00250{left:110.686667pt;}
.x1_c00250{left:111.613333pt;}
.x21_c00250{left:157.586667pt;}
.x17_c00250{left:158.866667pt;}
.x2_c00250{left:159.826667pt;}
.x4_c00250{left:219.666667pt;}
.x5_c00250{left:244.933333pt;}
.x6_c00250{left:259.120000pt;}
.x16_c00250{left:264.013333pt;}
.x3_c00250{left:273.613333pt;}
.x12_c00250{left:302.893333pt;}
.x13_c00250{left:323.986667pt;}
.x1c_c00250{left:331.373333pt;}
.x1d_c00250{left:349.280000pt;}
.xe_c00250{left:369.426667pt;}
.x22_c00250{left:377.840000pt;}
.x19_c00250{left:390.893333pt;}
.xf_c00250{left:393.546667pt;}
.x7_c00250{left:401.426667pt;}
.x1a_c00250{left:410.746667pt;}
.x8_c00250{left:430.200000pt;}
.x1b_c00250{left:439.840000pt;}
.x10_c00250{left:448.786667pt;}
.x9_c00250{left:455.600000pt;}
.x11_c00250{left:473.186667pt;}
.x1e_c00250{left:493.880000pt;}
.x1f_c00250{left:506.706667pt;}
.x20_c00250{left:523.386667pt;}
.xa_c00250{left:552.653333pt;}
.x14_c00250{left:579.013333pt;}
.xb_c00250{left:586.386667pt;}
.x15_c00250{left:601.106667pt;}
.xc_c00250{left:619.986667pt;}
.xd_c00250{left:647.506667pt;}
}





/* 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_c00251 {
    display:none;
  }
  .loading-indicator_c00251.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00251 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_c00251 { 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_c00251" -> "#page-container .classname_c00251")
 */
.pf_c00251 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00251 { /* 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_c00251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00251 { /* 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_c00251 { /* 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_c00251 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00251 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00251 {overflow:visible;}
  }
}
.c_c00251 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00251 { /* 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_c00251:after { /* webkit #35443 */
  content: '';
}
.t_c00251:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00251 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 */
}
.__c00251 { /* 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_c00251 { /* info for Javascript */
  display:none;
}
.l_c00251 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00251 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00251 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00251: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_c00251 {
    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_c00251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00251.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_c00251 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00251;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.311035;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_c00251;src:url('chunks/assets/font_5e81ca9a56b3830077b0900e.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.284668;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_c00251;src:url('chunks/assets/font_800161559f0dc445fd596523.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;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:ff4_c00251;src:url('chunks/assets/font_a8df41b380a3b0233ef34097.woff2')format("woff");}.ff4_c00251{font-family:ff4_c00251;line-height:1.284180;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_c00251;src:url('chunks/assets/font_5b2199f757f4e45dd63ee004.woff2')format("woff");}.ff5_c00251{font-family:ff5_c00251;line-height:1.284180;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_c00251;src:url('chunks/assets/font_9fc92132ac60ffc67f9da4b2.woff2')format("woff");}.ff6_c00251{font-family:ff6_c00251;line-height:0.666000;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;}
.m8_c00251{transform:matrix(0.159910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159910,0.000000,0.000000,0.250000,0,0);}
.mc_c00251{transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);}
.mb_c00251{transform:matrix(0.225840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225840,0.000000,0.000000,0.250000,0,0);}
.m3_c00251{transform:matrix(0.233283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233283,0.000000,0.000000,0.250000,0,0);}
.me_c00251{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m0_c00251{transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);}
.ma_c00251{transform:matrix(0.239252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239252,0.000000,0.000000,0.250000,0,0);}
.m6_c00251{transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239744,0.000000,0.000000,0.250000,0,0);}
.m9_c00251{transform:matrix(0.246224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246224,0.000000,0.000000,0.250000,0,0);}
.m4_c00251{transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);}
.m7_c00251{transform:matrix(0.247343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247343,0.000000,0.000000,0.250000,0,0);}
.m2_c00251{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m5_c00251{transform:matrix(0.247987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247987,0.000000,0.000000,0.250000,0,0);}
.md_c00251{transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);}
.m1_c00251{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);}
.mf_c00251{transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls7a_c00251{letter-spacing:-2.562000px;}
.ls39_c00251{letter-spacing:-2.457540px;}
.ls3e_c00251{letter-spacing:-2.436000px;}
.ls82_c00251{letter-spacing:-2.373000px;}
.ls35_c00251{letter-spacing:-2.331000px;}
.ls4b_c00251{letter-spacing:-2.303760px;}
.ls48_c00251{letter-spacing:-2.234160px;}
.ls4f_c00251{letter-spacing:-2.205000px;}
.ls36_c00251{letter-spacing:-2.176380px;}
.ls77_c00251{letter-spacing:-2.037000px;}
.ls3a_c00251{letter-spacing:-2.029500px;}
.ls41_c00251{letter-spacing:-1.795680px;}
.ls86_c00251{letter-spacing:-1.656480px;}
.ls5b_c00251{letter-spacing:-1.649520px;}
.ls4e_c00251{letter-spacing:-1.600800px;}
.ls7e_c00251{letter-spacing:-1.531200px;}
.ls4a_c00251{letter-spacing:-1.503360px;}
.ls79_c00251{letter-spacing:-1.343280px;}
.ls3c_c00251{letter-spacing:-1.315440px;}
.ls40_c00251{letter-spacing:-1.266720px;}
.ls4d_c00251{letter-spacing:-1.245840px;}
.ls61_c00251{letter-spacing:-1.218000px;}
.ls55_c00251{letter-spacing:-1.169280px;}
.ls45_c00251{letter-spacing:-1.064880px;}
.ls6e_c00251{letter-spacing:-1.050960px;}
.ls88_c00251{letter-spacing:-1.037340px;}
.ls85_c00251{letter-spacing:-0.974400px;}
.ls4c_c00251{letter-spacing:-0.883920px;}
.ls49_c00251{letter-spacing:-0.842160px;}
.ls80_c00251{letter-spacing:-0.835200px;}
.ls59_c00251{letter-spacing:-0.807360px;}
.ls47_c00251{letter-spacing:-0.800400px;}
.ls51_c00251{letter-spacing:-0.779520px;}
.ls3b_c00251{letter-spacing:-0.751680px;}
.ls72_c00251{letter-spacing:-0.744720px;}
.ls70_c00251{letter-spacing:-0.682080px;}
.ls46_c00251{letter-spacing:-0.668160px;}
.ls6b_c00251{letter-spacing:-0.661200px;}
.ls6c_c00251{letter-spacing:-0.605520px;}
.ls75_c00251{letter-spacing:-0.584640px;}
.ls60_c00251{letter-spacing:-0.522000px;}
.ls81_c00251{letter-spacing:-0.494160px;}
.ls58_c00251{letter-spacing:-0.487200px;}
.ls7d_c00251{letter-spacing:-0.445440px;}
.ls68_c00251{letter-spacing:-0.438480px;}
.ls7f_c00251{letter-spacing:-0.424560px;}
.ls7b_c00251{letter-spacing:-0.396720px;}
.ls38_c00251{letter-spacing:-0.382800px;}
.ls3f_c00251{letter-spacing:-0.368880px;}
.ls3d_c00251{letter-spacing:-0.361920px;}
.ls84_c00251{letter-spacing:-0.354960px;}
.ls76_c00251{letter-spacing:-0.313200px;}
.ls67_c00251{letter-spacing:-0.299280px;}
.ls5e_c00251{letter-spacing:-0.292320px;}
.ls83_c00251{letter-spacing:-0.285360px;}
.ls64_c00251{letter-spacing:-0.278400px;}
.ls7c_c00251{letter-spacing:-0.271440px;}
.ls71_c00251{letter-spacing:-0.250560px;}
.ls43_c00251{letter-spacing:-0.243600px;}
.ls54_c00251{letter-spacing:-0.236640px;}
.ls6a_c00251{letter-spacing:-0.208800px;}
.ls66_c00251{letter-spacing:-0.201840px;}
.ls44_c00251{letter-spacing:-0.187920px;}
.ls50_c00251{letter-spacing:-0.174000px;}
.ls52_c00251{letter-spacing:-0.160080px;}
.ls53_c00251{letter-spacing:-0.153120px;}
.ls6d_c00251{letter-spacing:-0.118320px;}
.ls5d_c00251{letter-spacing:-0.111360px;}
.ls6f_c00251{letter-spacing:-0.097440px;}
.ls78_c00251{letter-spacing:-0.090480px;}
.ls62_c00251{letter-spacing:-0.083520px;}
.ls65_c00251{letter-spacing:-0.076560px;}
.ls5a_c00251{letter-spacing:-0.069600px;}
.ls56_c00251{letter-spacing:-0.062640px;}
.ls74_c00251{letter-spacing:-0.055680px;}
.ls5c_c00251{letter-spacing:-0.048720px;}
.ls69_c00251{letter-spacing:-0.034800px;}
.ls5f_c00251{letter-spacing:-0.020880px;}
.ls57_c00251{letter-spacing:-0.013920px;}
.ls37_c00251{letter-spacing:-0.006960px;}
.ls42_c00251{letter-spacing:0.000000px;}
.ls10_c00251{letter-spacing:0.006960px;}
.ls16_c00251{letter-spacing:0.020880px;}
.ls8_c00251{letter-spacing:0.027840px;}
.ls19_c00251{letter-spacing:0.041760px;}
.lsb_c00251{letter-spacing:0.062640px;}
.ls21_c00251{letter-spacing:0.076560px;}
.ls2d_c00251{letter-spacing:0.090480px;}
.ls22_c00251{letter-spacing:0.104400px;}
.ls7_c00251{letter-spacing:0.132240px;}
.ls34_c00251{letter-spacing:0.142380px;}
.lsf_c00251{letter-spacing:0.146160px;}
.ls1e_c00251{letter-spacing:0.160080px;}
.ls1b_c00251{letter-spacing:0.174000px;}
.ls2a_c00251{letter-spacing:0.208800px;}
.ls29_c00251{letter-spacing:0.215760px;}
.ls27_c00251{letter-spacing:0.222720px;}
.ls33_c00251{letter-spacing:0.229680px;}
.ls9_c00251{letter-spacing:0.264480px;}
.ls17_c00251{letter-spacing:0.271440px;}
.lse_c00251{letter-spacing:0.285360px;}
.ls1d_c00251{letter-spacing:0.306240px;}
.ls13_c00251{letter-spacing:0.313200px;}
.ls18_c00251{letter-spacing:0.320160px;}
.ls2f_c00251{letter-spacing:0.327120px;}
.ls25_c00251{letter-spacing:0.354960px;}
.ls2c_c00251{letter-spacing:0.396720px;}
.ls11_c00251{letter-spacing:0.431520px;}
.ls1c_c00251{letter-spacing:0.445440px;}
.ls15_c00251{letter-spacing:0.459360px;}
.ls26_c00251{letter-spacing:0.480240px;}
.ls1f_c00251{letter-spacing:0.494160px;}
.ls1a_c00251{letter-spacing:0.542880px;}
.ls32_c00251{letter-spacing:0.556800px;}
.lsd_c00251{letter-spacing:0.591600px;}
.ls63_c00251{letter-spacing:0.737760px;}
.ls31_c00251{letter-spacing:0.766140px;}
.ls89_c00251{letter-spacing:0.820620px;}
.ls12_c00251{letter-spacing:0.863040px;}
.ls23_c00251{letter-spacing:0.883920px;}
.ls5_c00251{letter-spacing:0.935640px;}
.ls30_c00251{letter-spacing:0.942420px;}
.ls4_c00251{letter-spacing:0.976320px;}
.ls20_c00251{letter-spacing:1.037040px;}
.ls2e_c00251{letter-spacing:1.057680px;}
.ls2_c00251{letter-spacing:1.064880px;}
.lsc_c00251{letter-spacing:1.134480px;}
.lsa_c00251{letter-spacing:1.190160px;}
.ls6_c00251{letter-spacing:1.254300px;}
.ls3_c00251{letter-spacing:1.301520px;}
.ls24_c00251{letter-spacing:1.362780px;}
.ls2b_c00251{letter-spacing:1.398960px;}
.ls1_c00251{letter-spacing:1.607760px;}
.ls0_c00251{letter-spacing:1.635600px;}
.ls28_c00251{letter-spacing:1.705200px;}
.ls14_c00251{letter-spacing:1.983600px;}
.ls73_c00251{letter-spacing:2.094960px;}
.ls87_c00251{letter-spacing:3.390000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{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__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00251{word-spacing:-0.359400px;}
.ws5_c00251{word-spacing:0.000000px;}
.ws4_c00251{word-spacing:0.048660px;}
.ws1_c00251{word-spacing:1.928880px;}
.ws2_c00251{word-spacing:13.829400px;}
.ws0_c00251{word-spacing:15.396000px;}
._e_c00251{margin-left:-18.634500px;}
._8_c00251{margin-left:-14.959380px;}
._0_c00251{margin-left:-6.542400px;}
._1_c00251{margin-left:-4.945200px;}
._14_c00251{margin-left:-3.353880px;}
._13_c00251{margin-left:-1.322400px;}
._9_c00251{width:1.315320px;}
._2_c00251{width:2.612340px;}
._5_c00251{width:4.467900px;}
._3_c00251{width:5.660460px;}
._4_c00251{width:7.691220px;}
._6_c00251{width:9.050640px;}
._16_c00251{width:10.314720px;}
._18_c00251{width:11.546640px;}
._15_c00251{width:13.161360px;}
._17_c00251{width:14.970960px;}
._a_c00251{width:16.035840px;}
._7_c00251{width:17.712780px;}
._12_c00251{width:18.778080px;}
._11_c00251{width:20.003040px;}
._b_c00251{width:21.715200px;}
._d_c00251{width:22.800960px;}
._f_c00251{width:24.735840px;}
._10_c00251{width:27.352800px;}
._c_c00251{width:29.092800px;}
._19_c00251{width:32.781600px;}
._1a_c00251{width:36.414720px;}
._1b_c00251{width:39.630240px;}
.fc0_c00251{color:transparent;}
.fs5_c00251{font-size:53.280000px;}
.fs6_c00251{font-size:58.200000px;}
.fs4_c00251{font-size:63.000000px;}
.fs0_c00251{font-size:66.600000px;}
.fs2_c00251{font-size:67.800000px;}
.fs1_c00251{font-size:69.600000px;}
.fs7_c00251{font-size:73.200000px;}
.fs3_c00251{font-size:73.800000px;}
.y0_c00251{bottom:0.000000px;}
.y1e_c00251{bottom:74.160006px;}
.y1d_c00251{bottom:213.495006px;}
.y1c_c00251{bottom:276.135006px;}
.y1b_c00251{bottom:338.055006px;}
.y1a_c00251{bottom:338.061606px;}
.y19_c00251{bottom:370.095006px;}
.y18_c00251{bottom:370.097406px;}
.y17_c00251{bottom:401.400006px;}
.y16_c00251{bottom:432.720006px;}
.y14_c00251{bottom:494.638806px;}
.y15_c00251{bottom:494.640006px;}
.y13_c00251{bottom:527.055006px;}
.y12_c00251{bottom:590.052006px;}
.y10_c00251{bottom:621.717606px;}
.y11_c00251{bottom:621.720006px;}
.yf_c00251{bottom:653.055006px;}
.ye_c00251{bottom:653.065806px;}
.yd_c00251{bottom:684.385806px;}
.yc_c00251{bottom:715.323006px;}
.yb_c00251{bottom:746.643006px;}
.ya_c00251{bottom:777.612006px;}
.y9_c00251{bottom:809.280006px;}
.y8_c00251{bottom:872.280006px;}
.y7_c00251{bottom:934.935006px;}
.y5_c00251{bottom:966.249606px;}
.y6_c00251{bottom:966.255006px;}
.y4_c00251{bottom:1029.255006px;}
.y3_c00251{bottom:1060.215006px;}
.y2_c00251{bottom:1123.935006px;}
.y1_c00251{bottom:1199.160006px;}
.h8_c00251{height:35.484480px;}
.hd_c00251{height:57.120117px;}
.h9_c00251{height:60.700781px;}
.h6_c00251{height:65.707031px;}
.hc_c00251{height:66.508887px;}
.h2_c00251{height:67.120312px;}
.h5_c00251{height:68.308594px;}
.ha_c00251{height:68.313394px;}
.h7_c00251{height:68.320594px;}
.h3_c00251{height:70.713281px;}
.h4_c00251{height:72.394629px;}
.hb_c00251{height:76.345312px;}
.h1_c00251{height:1263.000000px;}
.h0_c00251{height:1263.240006px;}
.w1_c00251{width:892.500000px;}
.w0_c00251{width:892.799998px;}
.x0_c00251{left:0.000000px;}
.x22_c00251{left:117.930598px;}
.x13_c00251{left:118.988998px;}
.x2_c00251{left:120.929999px;}
.x1_c00251{left:122.324999px;}
.x20_c00251{left:158.924998px;}
.x18_c00251{left:172.604998px;}
.x7_c00251{left:174.509999px;}
.x4_c00251{left:175.589999px;}
.x21_c00251{left:194.594999px;}
.x5_c00251{left:243.164998px;}
.x1b_c00251{left:264.824998px;}
.x6_c00251{left:270.644999px;}
.x23_c00251{left:288.839999px;}
.x1c_c00251{left:298.289999px;}
.x3_c00251{left:326.519999px;}
.x8_c00251{left:351.524999px;}
.xa_c00251{left:360.164999px;}
.x9_c00251{left:380.999999px;}
.xb_c00251{left:387.764998px;}
.x26_c00251{left:422.549998px;}
.xe_c00251{left:437.879999px;}
.xf_c00251{left:463.169999px;}
.x1e_c00251{left:469.814998px;}
.x16_c00251{left:480.959999px;}
.xc_c00251{left:487.964998px;}
.x14_c00251{left:490.844998px;}
.x10_c00251{left:497.339998px;}
.x1d_c00251{left:500.999998px;}
.x15_c00251{left:509.729999px;}
.x11_c00251{left:514.604998px;}
.xd_c00251{left:516.839998px;}
.x1f_c00251{left:531.344998px;}
.x17_c00251{left:538.019998px;}
.x24_c00251{left:540.929999px;}
.x12_c00251{left:543.119999px;}
.x19_c00251{left:549.599999px;}
.x25_c00251{left:557.534999px;}
.x1a_c00251{left:578.669999px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls7a_c00251{letter-spacing:-2.277333pt;}
.ls39_c00251{letter-spacing:-2.184480pt;}
.ls3e_c00251{letter-spacing:-2.165333pt;}
.ls82_c00251{letter-spacing:-2.109333pt;}
.ls35_c00251{letter-spacing:-2.072000pt;}
.ls4b_c00251{letter-spacing:-2.047787pt;}
.ls48_c00251{letter-spacing:-1.985920pt;}
.ls4f_c00251{letter-spacing:-1.960000pt;}
.ls36_c00251{letter-spacing:-1.934560pt;}
.ls77_c00251{letter-spacing:-1.810667pt;}
.ls3a_c00251{letter-spacing:-1.804000pt;}
.ls41_c00251{letter-spacing:-1.596160pt;}
.ls86_c00251{letter-spacing:-1.472427pt;}
.ls5b_c00251{letter-spacing:-1.466240pt;}
.ls4e_c00251{letter-spacing:-1.422933pt;}
.ls7e_c00251{letter-spacing:-1.361067pt;}
.ls4a_c00251{letter-spacing:-1.336320pt;}
.ls79_c00251{letter-spacing:-1.194027pt;}
.ls3c_c00251{letter-spacing:-1.169280pt;}
.ls40_c00251{letter-spacing:-1.125973pt;}
.ls4d_c00251{letter-spacing:-1.107413pt;}
.ls61_c00251{letter-spacing:-1.082667pt;}
.ls55_c00251{letter-spacing:-1.039360pt;}
.ls45_c00251{letter-spacing:-0.946560pt;}
.ls6e_c00251{letter-spacing:-0.934187pt;}
.ls88_c00251{letter-spacing:-0.922080pt;}
.ls85_c00251{letter-spacing:-0.866133pt;}
.ls4c_c00251{letter-spacing:-0.785707pt;}
.ls49_c00251{letter-spacing:-0.748587pt;}
.ls80_c00251{letter-spacing:-0.742400pt;}
.ls59_c00251{letter-spacing:-0.717653pt;}
.ls47_c00251{letter-spacing:-0.711467pt;}
.ls51_c00251{letter-spacing:-0.692907pt;}
.ls3b_c00251{letter-spacing:-0.668160pt;}
.ls72_c00251{letter-spacing:-0.661973pt;}
.ls70_c00251{letter-spacing:-0.606293pt;}
.ls46_c00251{letter-spacing:-0.593920pt;}
.ls6b_c00251{letter-spacing:-0.587733pt;}
.ls6c_c00251{letter-spacing:-0.538240pt;}
.ls75_c00251{letter-spacing:-0.519680pt;}
.ls60_c00251{letter-spacing:-0.464000pt;}
.ls81_c00251{letter-spacing:-0.439253pt;}
.ls58_c00251{letter-spacing:-0.433067pt;}
.ls7d_c00251{letter-spacing:-0.395947pt;}
.ls68_c00251{letter-spacing:-0.389760pt;}
.ls7f_c00251{letter-spacing:-0.377387pt;}
.ls7b_c00251{letter-spacing:-0.352640pt;}
.ls38_c00251{letter-spacing:-0.340267pt;}
.ls3f_c00251{letter-spacing:-0.327893pt;}
.ls3d_c00251{letter-spacing:-0.321707pt;}
.ls84_c00251{letter-spacing:-0.315520pt;}
.ls76_c00251{letter-spacing:-0.278400pt;}
.ls67_c00251{letter-spacing:-0.266027pt;}
.ls5e_c00251{letter-spacing:-0.259840pt;}
.ls83_c00251{letter-spacing:-0.253653pt;}
.ls64_c00251{letter-spacing:-0.247467pt;}
.ls7c_c00251{letter-spacing:-0.241280pt;}
.ls71_c00251{letter-spacing:-0.222720pt;}
.ls43_c00251{letter-spacing:-0.216533pt;}
.ls54_c00251{letter-spacing:-0.210347pt;}
.ls6a_c00251{letter-spacing:-0.185600pt;}
.ls66_c00251{letter-spacing:-0.179413pt;}
.ls44_c00251{letter-spacing:-0.167040pt;}
.ls50_c00251{letter-spacing:-0.154667pt;}
.ls52_c00251{letter-spacing:-0.142293pt;}
.ls53_c00251{letter-spacing:-0.136107pt;}
.ls6d_c00251{letter-spacing:-0.105173pt;}
.ls5d_c00251{letter-spacing:-0.098987pt;}
.ls6f_c00251{letter-spacing:-0.086613pt;}
.ls78_c00251{letter-spacing:-0.080427pt;}
.ls62_c00251{letter-spacing:-0.074240pt;}
.ls65_c00251{letter-spacing:-0.068053pt;}
.ls5a_c00251{letter-spacing:-0.061867pt;}
.ls56_c00251{letter-spacing:-0.055680pt;}
.ls74_c00251{letter-spacing:-0.049493pt;}
.ls5c_c00251{letter-spacing:-0.043307pt;}
.ls69_c00251{letter-spacing:-0.030933pt;}
.ls5f_c00251{letter-spacing:-0.018560pt;}
.ls57_c00251{letter-spacing:-0.012373pt;}
.ls37_c00251{letter-spacing:-0.006187pt;}
.ls42_c00251{letter-spacing:0.000000pt;}
.ls10_c00251{letter-spacing:0.006187pt;}
.ls16_c00251{letter-spacing:0.018560pt;}
.ls8_c00251{letter-spacing:0.024747pt;}
.ls19_c00251{letter-spacing:0.037120pt;}
.lsb_c00251{letter-spacing:0.055680pt;}
.ls21_c00251{letter-spacing:0.068053pt;}
.ls2d_c00251{letter-spacing:0.080427pt;}
.ls22_c00251{letter-spacing:0.092800pt;}
.ls7_c00251{letter-spacing:0.117547pt;}
.ls34_c00251{letter-spacing:0.126560pt;}
.lsf_c00251{letter-spacing:0.129920pt;}
.ls1e_c00251{letter-spacing:0.142293pt;}
.ls1b_c00251{letter-spacing:0.154667pt;}
.ls2a_c00251{letter-spacing:0.185600pt;}
.ls29_c00251{letter-spacing:0.191787pt;}
.ls27_c00251{letter-spacing:0.197973pt;}
.ls33_c00251{letter-spacing:0.204160pt;}
.ls9_c00251{letter-spacing:0.235093pt;}
.ls17_c00251{letter-spacing:0.241280pt;}
.lse_c00251{letter-spacing:0.253653pt;}
.ls1d_c00251{letter-spacing:0.272213pt;}
.ls13_c00251{letter-spacing:0.278400pt;}
.ls18_c00251{letter-spacing:0.284587pt;}
.ls2f_c00251{letter-spacing:0.290773pt;}
.ls25_c00251{letter-spacing:0.315520pt;}
.ls2c_c00251{letter-spacing:0.352640pt;}
.ls11_c00251{letter-spacing:0.383573pt;}
.ls1c_c00251{letter-spacing:0.395947pt;}
.ls15_c00251{letter-spacing:0.408320pt;}
.ls26_c00251{letter-spacing:0.426880pt;}
.ls1f_c00251{letter-spacing:0.439253pt;}
.ls1a_c00251{letter-spacing:0.482560pt;}
.ls32_c00251{letter-spacing:0.494933pt;}
.lsd_c00251{letter-spacing:0.525867pt;}
.ls63_c00251{letter-spacing:0.655787pt;}
.ls31_c00251{letter-spacing:0.681013pt;}
.ls89_c00251{letter-spacing:0.729440pt;}
.ls12_c00251{letter-spacing:0.767147pt;}
.ls23_c00251{letter-spacing:0.785707pt;}
.ls5_c00251{letter-spacing:0.831680pt;}
.ls30_c00251{letter-spacing:0.837707pt;}
.ls4_c00251{letter-spacing:0.867840pt;}
.ls20_c00251{letter-spacing:0.921813pt;}
.ls2e_c00251{letter-spacing:0.940160pt;}
.ls2_c00251{letter-spacing:0.946560pt;}
.lsc_c00251{letter-spacing:1.008427pt;}
.lsa_c00251{letter-spacing:1.057920pt;}
.ls6_c00251{letter-spacing:1.114933pt;}
.ls3_c00251{letter-spacing:1.156907pt;}
.ls24_c00251{letter-spacing:1.211360pt;}
.ls2b_c00251{letter-spacing:1.243520pt;}
.ls1_c00251{letter-spacing:1.429120pt;}
.ls0_c00251{letter-spacing:1.453867pt;}
.ls28_c00251{letter-spacing:1.515733pt;}
.ls14_c00251{letter-spacing:1.763200pt;}
.ls73_c00251{letter-spacing:1.862187pt;}
.ls87_c00251{letter-spacing:3.013333pt;}
.ws3_c00251{word-spacing:-0.319467pt;}
.ws5_c00251{word-spacing:0.000000pt;}
.ws4_c00251{word-spacing:0.043253pt;}
.ws1_c00251{word-spacing:1.714560pt;}
.ws2_c00251{word-spacing:12.292800pt;}
.ws0_c00251{word-spacing:13.685333pt;}
._e_c00251{margin-left:-16.564000pt;}
._8_c00251{margin-left:-13.297227pt;}
._0_c00251{margin-left:-5.815467pt;}
._1_c00251{margin-left:-4.395733pt;}
._14_c00251{margin-left:-2.981227pt;}
._13_c00251{margin-left:-1.175467pt;}
._9_c00251{width:1.169173pt;}
._2_c00251{width:2.322080pt;}
._5_c00251{width:3.971467pt;}
._3_c00251{width:5.031520pt;}
._4_c00251{width:6.836640pt;}
._6_c00251{width:8.045013pt;}
._16_c00251{width:9.168640pt;}
._18_c00251{width:10.263680pt;}
._15_c00251{width:11.698987pt;}
._17_c00251{width:13.307520pt;}
._a_c00251{width:14.254080pt;}
._7_c00251{width:15.744693pt;}
._12_c00251{width:16.691627pt;}
._11_c00251{width:17.780480pt;}
._b_c00251{width:19.302400pt;}
._d_c00251{width:20.267520pt;}
._f_c00251{width:21.987413pt;}
._10_c00251{width:24.313600pt;}
._c_c00251{width:25.860267pt;}
._19_c00251{width:29.139200pt;}
._1a_c00251{width:32.368640pt;}
._1b_c00251{width:35.226880pt;}
.fs5_c00251{font-size:47.360000pt;}
.fs6_c00251{font-size:51.733333pt;}
.fs4_c00251{font-size:56.000000pt;}
.fs0_c00251{font-size:59.200000pt;}
.fs2_c00251{font-size:60.266667pt;}
.fs1_c00251{font-size:61.866667pt;}
.fs7_c00251{font-size:65.066667pt;}
.fs3_c00251{font-size:65.600000pt;}
.y0_c00251{bottom:0.000000pt;}
.y1e_c00251{bottom:65.920005pt;}
.y1d_c00251{bottom:189.773339pt;}
.y1c_c00251{bottom:245.453339pt;}
.y1b_c00251{bottom:300.493339pt;}
.y1a_c00251{bottom:300.499205pt;}
.y19_c00251{bottom:328.973339pt;}
.y18_c00251{bottom:328.975472pt;}
.y17_c00251{bottom:356.800005pt;}
.y16_c00251{bottom:384.640005pt;}
.y14_c00251{bottom:439.678939pt;}
.y15_c00251{bottom:439.680005pt;}
.y13_c00251{bottom:468.493339pt;}
.y12_c00251{bottom:524.490672pt;}
.y10_c00251{bottom:552.637872pt;}
.y11_c00251{bottom:552.640005pt;}
.yf_c00251{bottom:580.493339pt;}
.ye_c00251{bottom:580.502939pt;}
.yd_c00251{bottom:608.342939pt;}
.yc_c00251{bottom:635.842672pt;}
.yb_c00251{bottom:663.682672pt;}
.ya_c00251{bottom:691.210672pt;}
.y9_c00251{bottom:719.360005pt;}
.y8_c00251{bottom:775.360005pt;}
.y7_c00251{bottom:831.053339pt;}
.y5_c00251{bottom:858.888539pt;}
.y6_c00251{bottom:858.893339pt;}
.y4_c00251{bottom:914.893339pt;}
.y3_c00251{bottom:942.413339pt;}
.y2_c00251{bottom:999.053339pt;}
.y1_c00251{bottom:1065.920005pt;}
.h8_c00251{height:31.541760pt;}
.hd_c00251{height:50.773437pt;}
.h9_c00251{height:53.956250pt;}
.h6_c00251{height:58.406250pt;}
.hc_c00251{height:59.119010pt;}
.h2_c00251{height:59.662500pt;}
.h5_c00251{height:60.718750pt;}
.ha_c00251{height:60.723017pt;}
.h7_c00251{height:60.729417pt;}
.h3_c00251{height:62.856250pt;}
.h4_c00251{height:64.350781pt;}
.hb_c00251{height:67.862500pt;}
.h1_c00251{height:1122.666667pt;}
.h0_c00251{height:1122.880005pt;}
.w1_c00251{width:793.333333pt;}
.w0_c00251{width:793.599999pt;}
.x0_c00251{left:0.000000pt;}
.x22_c00251{left:104.827199pt;}
.x13_c00251{left:105.767999pt;}
.x2_c00251{left:107.493332pt;}
.x1_c00251{left:108.733332pt;}
.x20_c00251{left:141.266665pt;}
.x18_c00251{left:153.426665pt;}
.x7_c00251{left:155.119999pt;}
.x4_c00251{left:156.079999pt;}
.x21_c00251{left:172.973332pt;}
.x5_c00251{left:216.146665pt;}
.x1b_c00251{left:235.399999pt;}
.x6_c00251{left:240.573332pt;}
.x23_c00251{left:256.746665pt;}
.x1c_c00251{left:265.146665pt;}
.x3_c00251{left:290.239999pt;}
.x8_c00251{left:312.466665pt;}
.xa_c00251{left:320.146665pt;}
.x9_c00251{left:338.666665pt;}
.xb_c00251{left:344.679999pt;}
.x26_c00251{left:375.599999pt;}
.xe_c00251{left:389.226665pt;}
.xf_c00251{left:411.706665pt;}
.x1e_c00251{left:417.613332pt;}
.x16_c00251{left:427.519999pt;}
.xc_c00251{left:433.746665pt;}
.x14_c00251{left:436.306665pt;}
.x10_c00251{left:442.079999pt;}
.x1d_c00251{left:445.333332pt;}
.x15_c00251{left:453.093332pt;}
.x11_c00251{left:457.426665pt;}
.xd_c00251{left:459.413332pt;}
.x1f_c00251{left:472.306665pt;}
.x17_c00251{left:478.239999pt;}
.x24_c00251{left:480.826665pt;}
.x12_c00251{left:482.773332pt;}
.x19_c00251{left:488.533332pt;}
.x25_c00251{left:495.586665pt;}
.x1a_c00251{left:514.373332pt;}
}





/* 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_c00252 {
    display:none;
  }
  .loading-indicator_c00252.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00252 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_c00252 { 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_c00252" -> "#page-container .classname_c00252")
 */
.pf_c00252 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00252 { /* 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_c00252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00252 { /* 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_c00252 { /* 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_c00252 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00252 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00252 {overflow:visible;}
  }
}
.c_c00252 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00252 { /* 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_c00252:after { /* webkit #35443 */
  content: '';
}
.t_c00252:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00252 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 */
}
.__c00252 { /* 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_c00252 { /* info for Javascript */
  display:none;
}
.l_c00252 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00252 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00252 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00252: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_c00252 {
    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_c00252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00252.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_c00252 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00252;src:url('chunks/assets/font_c825859e4c0846e65d39dba6.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.284668;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_c00252;src:url('chunks/assets/font_b70ba667b95bfb9e74f95aca.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.284180;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_c00252;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;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;}
.m3_c00252{transform:matrix(0.204259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204259,0.000000,0.000000,0.250000,0,0);}
.m5_c00252{transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);}
.m4_c00252{transform:matrix(0.222201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222201,0.000000,0.000000,0.250000,0,0);}
.ma_c00252{transform:matrix(0.227187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227187,0.000000,0.000000,0.250000,0,0);}
.mb_c00252{transform:matrix(0.235306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235306,0.000000,0.000000,0.250000,0,0);}
.m9_c00252{transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);}
.m2_c00252{transform:matrix(0.248491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248491,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{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);}
.m0_c00252{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.m8_c00252{transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);}
.m7_c00252{transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);}
.m6_c00252{transform:matrix(0.305358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305358,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls74_c00252{letter-spacing:-2.688000px;}
.ls71_c00252{letter-spacing:-2.436000px;}
.ls6e_c00252{letter-spacing:-2.331000px;}
.ls84_c00252{letter-spacing:-2.163000px;}
.ls6a_c00252{letter-spacing:-1.338660px;}
.ls6f_c00252{letter-spacing:-1.172160px;}
.ls69_c00252{letter-spacing:-1.052280px;}
.ls83_c00252{letter-spacing:-0.859140px;}
.ls80_c00252{letter-spacing:-0.526140px;}
.ls68_c00252{letter-spacing:-0.372960px;}
.ls7f_c00252{letter-spacing:-0.306360px;}
.ls6b_c00252{letter-spacing:-0.166500px;}
.ls6d_c00252{letter-spacing:-0.046620px;}
.ls6c_c00252{letter-spacing:0.000000px;}
.ls16_c00252{letter-spacing:0.026640px;}
.ls3c_c00252{letter-spacing:0.133200px;}
.ls4c_c00252{letter-spacing:0.233100px;}
.ls46_c00252{letter-spacing:0.259740px;}
.ls5_c00252{letter-spacing:0.266400px;}
.ls73_c00252{letter-spacing:0.273060px;}
.ls1a_c00252{letter-spacing:0.299700px;}
.ls20_c00252{letter-spacing:0.306360px;}
.ls70_c00252{letter-spacing:0.333000px;}
.ls79_c00252{letter-spacing:0.346320px;}
.ls4e_c00252{letter-spacing:0.412920px;}
.lsf_c00252{letter-spacing:0.423360px;}
.ls13_c00252{letter-spacing:0.432900px;}
.ls12_c00252{letter-spacing:0.446220px;}
.lsa_c00252{letter-spacing:0.466200px;}
.ls10_c00252{letter-spacing:0.490560px;}
.ls5b_c00252{letter-spacing:0.546120px;}
.ls4f_c00252{letter-spacing:0.551040px;}
.ls3f_c00252{letter-spacing:0.559440px;}
.ls78_c00252{letter-spacing:0.586080px;}
.ls7d_c00252{letter-spacing:0.606060px;}
.ls59_c00252{letter-spacing:0.626040px;}
.ls60_c00252{letter-spacing:0.626400px;}
.ls14_c00252{letter-spacing:0.646020px;}
.lsc_c00252{letter-spacing:0.652680px;}
.ls31_c00252{letter-spacing:0.672000px;}
.ls4d_c00252{letter-spacing:0.672660px;}
.lse_c00252{letter-spacing:0.678720px;}
.ls4a_c00252{letter-spacing:0.692640px;}
.ls64_c00252{letter-spacing:0.719280px;}
.ls56_c00252{letter-spacing:0.732480px;}
.ls34_c00252{letter-spacing:0.732600px;}
.ls61_c00252{letter-spacing:0.744720px;}
.ls4_c00252{letter-spacing:0.765900px;}
.ls51_c00252{letter-spacing:0.792540px;}
.ls15_c00252{letter-spacing:0.805860px;}
.ls5f_c00252{letter-spacing:0.812520px;}
.ls82_c00252{letter-spacing:0.813120px;}
.ls47_c00252{letter-spacing:0.819180px;}
.ls0_c00252{letter-spacing:0.828240px;}
.ls3b_c00252{letter-spacing:0.845820px;}
.ls5a_c00252{letter-spacing:0.865800px;}
.ls55_c00252{letter-spacing:0.873600px;}
.ls26_c00252{letter-spacing:0.885780px;}
.ls65_c00252{letter-spacing:0.887040px;}
.ls1_c00252{letter-spacing:0.904800px;}
.ls7a_c00252{letter-spacing:0.912420px;}
.ls45_c00252{letter-spacing:0.919080px;}
.ls72_c00252{letter-spacing:0.945720px;}
.lsd_c00252{letter-spacing:0.952380px;}
.ls7_c00252{letter-spacing:0.959040px;}
.ls2_c00252{letter-spacing:0.965700px;}
.ls42_c00252{letter-spacing:0.985680px;}
.ls11_c00252{letter-spacing:0.992340px;}
.ls53_c00252{letter-spacing:1.005660px;}
.ls8_c00252{letter-spacing:1.012320px;}
.ls48_c00252{letter-spacing:1.032300px;}
.ls1b_c00252{letter-spacing:1.038960px;}
.ls52_c00252{letter-spacing:1.045620px;}
.ls39_c00252{letter-spacing:1.052280px;}
.ls7c_c00252{letter-spacing:1.065600px;}
.ls4b_c00252{letter-spacing:1.072260px;}
.ls40_c00252{letter-spacing:1.085580px;}
.ls2e_c00252{letter-spacing:1.098900px;}
.ls38_c00252{letter-spacing:1.132200px;}
.ls3_c00252{letter-spacing:1.138860px;}
.ls19_c00252{letter-spacing:1.158840px;}
.ls5c_c00252{letter-spacing:1.165500px;}
.ls17_c00252{letter-spacing:1.169280px;}
.ls43_c00252{letter-spacing:1.185480px;}
.ls2a_c00252{letter-spacing:1.212120px;}
.ls54_c00252{letter-spacing:1.218780px;}
.ls28_c00252{letter-spacing:1.238760px;}
.ls1c_c00252{letter-spacing:1.285380px;}
.ls9_c00252{letter-spacing:1.332000px;}
.ls3e_c00252{letter-spacing:1.338660px;}
.ls7e_c00252{letter-spacing:1.345320px;}
.ls75_c00252{letter-spacing:1.411920px;}
.ls2f_c00252{letter-spacing:1.431900px;}
.ls21_c00252{letter-spacing:1.438080px;}
.ls76_c00252{letter-spacing:1.465200px;}
.ls27_c00252{letter-spacing:1.491840px;}
.ls1e_c00252{letter-spacing:1.505160px;}
.ls3d_c00252{letter-spacing:1.511820px;}
.ls30_c00252{letter-spacing:1.518480px;}
.ls58_c00252{letter-spacing:1.531800px;}
.ls37_c00252{letter-spacing:1.545120px;}
.ls35_c00252{letter-spacing:1.551780px;}
.ls66_c00252{letter-spacing:1.572480px;}
.ls25_c00252{letter-spacing:1.578420px;}
.ls2d_c00252{letter-spacing:1.665000px;}
.lsb_c00252{letter-spacing:1.671660px;}
.ls5d_c00252{letter-spacing:1.684980px;}
.ls1f_c00252{letter-spacing:1.704960px;}
.ls1d_c00252{letter-spacing:1.738260px;}
.ls32_c00252{letter-spacing:1.824840px;}
.ls49_c00252{letter-spacing:1.871460px;}
.ls2b_c00252{letter-spacing:1.878120px;}
.ls63_c00252{letter-spacing:1.958040px;}
.ls23_c00252{letter-spacing:2.011320px;}
.ls44_c00252{letter-spacing:2.024640px;}
.ls24_c00252{letter-spacing:2.031300px;}
.ls22_c00252{letter-spacing:2.051280px;}
.ls57_c00252{letter-spacing:2.057940px;}
.ls2c_c00252{letter-spacing:2.184480px;}
.ls6_c00252{letter-spacing:2.204460px;}
.ls41_c00252{letter-spacing:2.297700px;}
.ls62_c00252{letter-spacing:2.310720px;}
.ls3a_c00252{letter-spacing:2.344320px;}
.ls50_c00252{letter-spacing:2.357640px;}
.ls33_c00252{letter-spacing:2.364300px;}
.ls81_c00252{letter-spacing:2.404260px;}
.ls29_c00252{letter-spacing:2.737260px;}
.ls67_c00252{letter-spacing:2.940000px;}
.ls5e_c00252{letter-spacing:2.957040px;}
.ls18_c00252{letter-spacing:3.050280px;}
.ls7b_c00252{letter-spacing:3.150180px;}
.ls36_c00252{letter-spacing:3.310020px;}
.ls77_c00252{letter-spacing:3.330000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{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__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00252{word-spacing:-1.482720px;}
.ws4_c00252{word-spacing:0.000000px;}
.ws0_c00252{word-spacing:1.658880px;}
.ws3_c00252{word-spacing:17.639520px;}
.ws2_c00252{word-spacing:23.119200px;}
._a_c00252{margin-left:-5.447880px;}
._4_c00252{margin-left:-3.769560px;}
._8_c00252{margin-left:-2.544120px;}
._5_c00252{margin-left:-1.448160px;}
._0_c00252{width:1.101840px;}
._2_c00252{width:2.328060px;}
._3_c00252{width:3.547980px;}
._7_c00252{width:5.212500px;}
._6_c00252{width:7.154760px;}
._10_c00252{width:8.351640px;}
._1_c00252{width:9.375360px;}
._f_c00252{width:10.502820px;}
._9_c00252{width:11.844420px;}
._d_c00252{width:13.446540px;}
._b_c00252{width:15.984000px;}
._c_c00252{width:18.858180px;}
._e_c00252{width:20.286360px;}
._11_c00252{width:22.940160px;}
.fc0_c00252{color:transparent;}
.fs0_c00252{font-size:58.800000px;}
.fs5_c00252{font-size:61.800000px;}
.fs2_c00252{font-size:66.600000px;}
.fs3_c00252{font-size:67.200000px;}
.fs1_c00252{font-size:69.600000px;}
.fs4_c00252{font-size:76.800000px;}
.y0_c00252{bottom:0.000000px;}
.y1c_c00252{bottom:71.295000px;}
.y1b_c00252{bottom:148.320000px;}
.y1a_c00252{bottom:210.255000px;}
.y19_c00252{bottom:273.607650px;}
.y18_c00252{bottom:304.560000px;}
.y17_c00252{bottom:366.495000px;}
.y16_c00252{bottom:366.496350px;}
.y15_c00252{bottom:397.815000px;}
.y14_c00252{bottom:460.435050px;}
.y13_c00252{bottom:492.120000px;}
.y12_c00252{bottom:554.402700px;}
.y11_c00252{bottom:586.087650px;}
.y10_c00252{bottom:617.040000px;}
.yf_c00252{bottom:617.041050px;}
.ye_c00252{bottom:648.359700px;}
.yd_c00252{bottom:679.695000px;}
.yc_c00252{bottom:741.975000px;}
.yb_c00252{bottom:804.610050px;}
.ya_c00252{bottom:836.295000px;}
.y9_c00252{bottom:836.296350px;}
.y8_c00252{bottom:867.615000px;}
.y7_c00252{bottom:929.520000px;}
.y6_c00252{bottom:960.495000px;}
.y4_c00252{bottom:1023.132750px;}
.y5_c00252{bottom:1023.135000px;}
.y3_c00252{bottom:1085.403750px;}
.y2_c00252{bottom:1117.455000px;}
.y1_c00252{bottom:1192.695000px;}
.h2_c00252{height:57.708984px;}
.h8_c00252{height:60.653320px;}
.h4_c00252{height:65.364258px;}
.h5_c00252{height:65.920312px;}
.h3_c00252{height:68.274609px;}
.h6_c00252{height:72.590625px;}
.h7_c00252{height:75.375000px;}
.h1_c00252{height:1263.000000px;}
.h0_c00252{height:1263.240000px;}
.w1_c00252{width:892.500000px;}
.w0_c00252{width:892.800000px;}
.x0_c00252{left:0.000000px;}
.x1_c00252{left:124.485000px;}
.x6_c00252{left:126.213450px;}
.x7_c00252{left:167.910000px;}
.x3_c00252{left:179.194950px;}
.x5_c00252{left:180.390000px;}
.x8_c00252{left:188.130000px;}
.x2_c00252{left:269.655000px;}
.x13_c00252{left:280.815000px;}
.x15_c00252{left:330.810000px;}
.x16_c00252{left:361.005000px;}
.x17_c00252{left:427.230000px;}
.x14_c00252{left:442.605000px;}
.x9_c00252{left:448.365000px;}
.x11_c00252{left:472.950000px;}
.xa_c00252{left:480.825000px;}
.x12_c00252{left:495.645000px;}
.xd_c00252{left:535.230000px;}
.xe_c00252{left:562.245000px;}
.xf_c00252{left:618.390000px;}
.x10_c00252{left:646.740000px;}
.x4_c00252{left:672.735000px;}
.xb_c00252{left:683.100000px;}
.xc_c00252{left:717.675000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls74_c00252{letter-spacing:-2.389333pt;}
.ls71_c00252{letter-spacing:-2.165333pt;}
.ls6e_c00252{letter-spacing:-2.072000pt;}
.ls84_c00252{letter-spacing:-1.922667pt;}
.ls6a_c00252{letter-spacing:-1.189920pt;}
.ls6f_c00252{letter-spacing:-1.041920pt;}
.ls69_c00252{letter-spacing:-0.935360pt;}
.ls83_c00252{letter-spacing:-0.763680pt;}
.ls80_c00252{letter-spacing:-0.467680pt;}
.ls68_c00252{letter-spacing:-0.331520pt;}
.ls7f_c00252{letter-spacing:-0.272320pt;}
.ls6b_c00252{letter-spacing:-0.148000pt;}
.ls6d_c00252{letter-spacing:-0.041440pt;}
.ls6c_c00252{letter-spacing:0.000000pt;}
.ls16_c00252{letter-spacing:0.023680pt;}
.ls3c_c00252{letter-spacing:0.118400pt;}
.ls4c_c00252{letter-spacing:0.207200pt;}
.ls46_c00252{letter-spacing:0.230880pt;}
.ls5_c00252{letter-spacing:0.236800pt;}
.ls73_c00252{letter-spacing:0.242720pt;}
.ls1a_c00252{letter-spacing:0.266400pt;}
.ls20_c00252{letter-spacing:0.272320pt;}
.ls70_c00252{letter-spacing:0.296000pt;}
.ls79_c00252{letter-spacing:0.307840pt;}
.ls4e_c00252{letter-spacing:0.367040pt;}
.lsf_c00252{letter-spacing:0.376320pt;}
.ls13_c00252{letter-spacing:0.384800pt;}
.ls12_c00252{letter-spacing:0.396640pt;}
.lsa_c00252{letter-spacing:0.414400pt;}
.ls10_c00252{letter-spacing:0.436053pt;}
.ls5b_c00252{letter-spacing:0.485440pt;}
.ls4f_c00252{letter-spacing:0.489813pt;}
.ls3f_c00252{letter-spacing:0.497280pt;}
.ls78_c00252{letter-spacing:0.520960pt;}
.ls7d_c00252{letter-spacing:0.538720pt;}
.ls59_c00252{letter-spacing:0.556480pt;}
.ls60_c00252{letter-spacing:0.556800pt;}
.ls14_c00252{letter-spacing:0.574240pt;}
.lsc_c00252{letter-spacing:0.580160pt;}
.ls31_c00252{letter-spacing:0.597333pt;}
.ls4d_c00252{letter-spacing:0.597920pt;}
.lse_c00252{letter-spacing:0.603307pt;}
.ls4a_c00252{letter-spacing:0.615680pt;}
.ls64_c00252{letter-spacing:0.639360pt;}
.ls56_c00252{letter-spacing:0.651093pt;}
.ls34_c00252{letter-spacing:0.651200pt;}
.ls61_c00252{letter-spacing:0.661973pt;}
.ls4_c00252{letter-spacing:0.680800pt;}
.ls51_c00252{letter-spacing:0.704480pt;}
.ls15_c00252{letter-spacing:0.716320pt;}
.ls5f_c00252{letter-spacing:0.722240pt;}
.ls82_c00252{letter-spacing:0.722773pt;}
.ls47_c00252{letter-spacing:0.728160pt;}
.ls0_c00252{letter-spacing:0.736213pt;}
.ls3b_c00252{letter-spacing:0.751840pt;}
.ls5a_c00252{letter-spacing:0.769600pt;}
.ls55_c00252{letter-spacing:0.776533pt;}
.ls26_c00252{letter-spacing:0.787360pt;}
.ls65_c00252{letter-spacing:0.788480pt;}
.ls1_c00252{letter-spacing:0.804267pt;}
.ls7a_c00252{letter-spacing:0.811040pt;}
.ls45_c00252{letter-spacing:0.816960pt;}
.ls72_c00252{letter-spacing:0.840640pt;}
.lsd_c00252{letter-spacing:0.846560pt;}
.ls7_c00252{letter-spacing:0.852480pt;}
.ls2_c00252{letter-spacing:0.858400pt;}
.ls42_c00252{letter-spacing:0.876160pt;}
.ls11_c00252{letter-spacing:0.882080pt;}
.ls53_c00252{letter-spacing:0.893920pt;}
.ls8_c00252{letter-spacing:0.899840pt;}
.ls48_c00252{letter-spacing:0.917600pt;}
.ls1b_c00252{letter-spacing:0.923520pt;}
.ls52_c00252{letter-spacing:0.929440pt;}
.ls39_c00252{letter-spacing:0.935360pt;}
.ls7c_c00252{letter-spacing:0.947200pt;}
.ls4b_c00252{letter-spacing:0.953120pt;}
.ls40_c00252{letter-spacing:0.964960pt;}
.ls2e_c00252{letter-spacing:0.976800pt;}
.ls38_c00252{letter-spacing:1.006400pt;}
.ls3_c00252{letter-spacing:1.012320pt;}
.ls19_c00252{letter-spacing:1.030080pt;}
.ls5c_c00252{letter-spacing:1.036000pt;}
.ls17_c00252{letter-spacing:1.039360pt;}
.ls43_c00252{letter-spacing:1.053760pt;}
.ls2a_c00252{letter-spacing:1.077440pt;}
.ls54_c00252{letter-spacing:1.083360pt;}
.ls28_c00252{letter-spacing:1.101120pt;}
.ls1c_c00252{letter-spacing:1.142560pt;}
.ls9_c00252{letter-spacing:1.184000pt;}
.ls3e_c00252{letter-spacing:1.189920pt;}
.ls7e_c00252{letter-spacing:1.195840pt;}
.ls75_c00252{letter-spacing:1.255040pt;}
.ls2f_c00252{letter-spacing:1.272800pt;}
.ls21_c00252{letter-spacing:1.278293pt;}
.ls76_c00252{letter-spacing:1.302400pt;}
.ls27_c00252{letter-spacing:1.326080pt;}
.ls1e_c00252{letter-spacing:1.337920pt;}
.ls3d_c00252{letter-spacing:1.343840pt;}
.ls30_c00252{letter-spacing:1.349760pt;}
.ls58_c00252{letter-spacing:1.361600pt;}
.ls37_c00252{letter-spacing:1.373440pt;}
.ls35_c00252{letter-spacing:1.379360pt;}
.ls66_c00252{letter-spacing:1.397760pt;}
.ls25_c00252{letter-spacing:1.403040pt;}
.ls2d_c00252{letter-spacing:1.480000pt;}
.lsb_c00252{letter-spacing:1.485920pt;}
.ls5d_c00252{letter-spacing:1.497760pt;}
.ls1f_c00252{letter-spacing:1.515520pt;}
.ls1d_c00252{letter-spacing:1.545120pt;}
.ls32_c00252{letter-spacing:1.622080pt;}
.ls49_c00252{letter-spacing:1.663520pt;}
.ls2b_c00252{letter-spacing:1.669440pt;}
.ls63_c00252{letter-spacing:1.740480pt;}
.ls23_c00252{letter-spacing:1.787840pt;}
.ls44_c00252{letter-spacing:1.799680pt;}
.ls24_c00252{letter-spacing:1.805600pt;}
.ls22_c00252{letter-spacing:1.823360pt;}
.ls57_c00252{letter-spacing:1.829280pt;}
.ls2c_c00252{letter-spacing:1.941760pt;}
.ls6_c00252{letter-spacing:1.959520pt;}
.ls41_c00252{letter-spacing:2.042400pt;}
.ls62_c00252{letter-spacing:2.053973pt;}
.ls3a_c00252{letter-spacing:2.083840pt;}
.ls50_c00252{letter-spacing:2.095680pt;}
.ls33_c00252{letter-spacing:2.101600pt;}
.ls81_c00252{letter-spacing:2.137120pt;}
.ls29_c00252{letter-spacing:2.433120pt;}
.ls67_c00252{letter-spacing:2.613333pt;}
.ls5e_c00252{letter-spacing:2.628480pt;}
.ls18_c00252{letter-spacing:2.711360pt;}
.ls7b_c00252{letter-spacing:2.800160pt;}
.ls36_c00252{letter-spacing:2.942240pt;}
.ls77_c00252{letter-spacing:2.960000pt;}
.ws1_c00252{word-spacing:-1.317973pt;}
.ws4_c00252{word-spacing:0.000000pt;}
.ws0_c00252{word-spacing:1.474560pt;}
.ws3_c00252{word-spacing:15.679573pt;}
.ws2_c00252{word-spacing:20.550400pt;}
._a_c00252{margin-left:-4.842560pt;}
._4_c00252{margin-left:-3.350720pt;}
._8_c00252{margin-left:-2.261440pt;}
._5_c00252{margin-left:-1.287253pt;}
._0_c00252{width:0.979413pt;}
._2_c00252{width:2.069387pt;}
._3_c00252{width:3.153760pt;}
._7_c00252{width:4.633333pt;}
._6_c00252{width:6.359787pt;}
._10_c00252{width:7.423680pt;}
._1_c00252{width:8.333653pt;}
._f_c00252{width:9.335840pt;}
._9_c00252{width:10.528373pt;}
._d_c00252{width:11.952480pt;}
._b_c00252{width:14.208000pt;}
._c_c00252{width:16.762827pt;}
._e_c00252{width:18.032320pt;}
._11_c00252{width:20.391253pt;}
.fs0_c00252{font-size:52.266667pt;}
.fs5_c00252{font-size:54.933333pt;}
.fs2_c00252{font-size:59.200000pt;}
.fs3_c00252{font-size:59.733333pt;}
.fs1_c00252{font-size:61.866667pt;}
.fs4_c00252{font-size:68.266667pt;}
.y0_c00252{bottom:0.000000pt;}
.y1c_c00252{bottom:63.373333pt;}
.y1b_c00252{bottom:131.840000pt;}
.y1a_c00252{bottom:186.893333pt;}
.y19_c00252{bottom:243.206800pt;}
.y18_c00252{bottom:270.720000pt;}
.y17_c00252{bottom:325.773333pt;}
.y16_c00252{bottom:325.774533pt;}
.y15_c00252{bottom:353.613333pt;}
.y14_c00252{bottom:409.275600pt;}
.y13_c00252{bottom:437.440000pt;}
.y12_c00252{bottom:492.802400pt;}
.y11_c00252{bottom:520.966800pt;}
.y10_c00252{bottom:548.480000pt;}
.yf_c00252{bottom:548.480933pt;}
.ye_c00252{bottom:576.319733pt;}
.yd_c00252{bottom:604.173333pt;}
.yc_c00252{bottom:659.533333pt;}
.yb_c00252{bottom:715.208933pt;}
.ya_c00252{bottom:743.373333pt;}
.y9_c00252{bottom:743.374533pt;}
.y8_c00252{bottom:771.213333pt;}
.y7_c00252{bottom:826.240000pt;}
.y6_c00252{bottom:853.773333pt;}
.y4_c00252{bottom:909.451333pt;}
.y5_c00252{bottom:909.453333pt;}
.y3_c00252{bottom:964.803333pt;}
.y2_c00252{bottom:993.293333pt;}
.y1_c00252{bottom:1060.173333pt;}
.h2_c00252{height:51.296875pt;}
.h8_c00252{height:53.914062pt;}
.h4_c00252{height:58.101562pt;}
.h5_c00252{height:58.595833pt;}
.h3_c00252{height:60.688542pt;}
.h6_c00252{height:64.525000pt;}
.h7_c00252{height:67.000000pt;}
.h1_c00252{height:1122.666667pt;}
.h0_c00252{height:1122.880000pt;}
.w1_c00252{width:793.333333pt;}
.w0_c00252{width:793.600000pt;}
.x0_c00252{left:0.000000pt;}
.x1_c00252{left:110.653333pt;}
.x6_c00252{left:112.189733pt;}
.x7_c00252{left:149.253333pt;}
.x3_c00252{left:159.284400pt;}
.x5_c00252{left:160.346667pt;}
.x8_c00252{left:167.226667pt;}
.x2_c00252{left:239.693333pt;}
.x13_c00252{left:249.613333pt;}
.x15_c00252{left:294.053333pt;}
.x16_c00252{left:320.893333pt;}
.x17_c00252{left:379.760000pt;}
.x14_c00252{left:393.426667pt;}
.x9_c00252{left:398.546667pt;}
.x11_c00252{left:420.400000pt;}
.xa_c00252{left:427.400000pt;}
.x12_c00252{left:440.573333pt;}
.xd_c00252{left:475.760000pt;}
.xe_c00252{left:499.773333pt;}
.xf_c00252{left:549.680000pt;}
.x10_c00252{left:574.880000pt;}
.x4_c00252{left:597.986667pt;}
.xb_c00252{left:607.200000pt;}
.xc_c00252{left:637.933333pt;}
}





/* 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_c00253 {
    display:none;
  }
  .loading-indicator_c00253.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00253 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_c00253 { 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_c00253" -> "#page-container .classname_c00253")
 */
.pf_c00253 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00253 { /* 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_c00253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00253 { /* 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_c00253 { /* 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_c00253 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00253 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00253 {overflow:visible;}
  }
}
.c_c00253 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00253 { /* 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_c00253:after { /* webkit #35443 */
  content: '';
}
.t_c00253:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00253 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 */
}
.__c00253 { /* 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_c00253 { /* info for Javascript */
  display:none;
}
.l_c00253 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00253 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00253 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00253: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_c00253 {
    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_c00253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00253.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_c00253 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00253;src:url('chunks/assets/font_0f6b1c9c263e484634ca137e.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.284668;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_c00253;src:url('chunks/assets/font_ae34af37f35c7e0ca1717e6a.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.284180;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_c00253;src:url('chunks/assets/font_f7752009076f49b3b213782f.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;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;}
.md_c00253{transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);}
.m4_c00253{transform:matrix(0.156473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156473,0.000000,0.000000,0.250000,0,0);}
.m9_c00253{transform:matrix(0.218615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218615,0.000000,0.000000,0.250000,0,0);}
.m6_c00253{transform:matrix(0.222553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222553,0.000000,0.000000,0.250000,0,0);}
.mf_c00253{transform:matrix(0.225541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225541,0.000000,0.000000,0.250000,0,0);}
.m5_c00253{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.me_c00253{transform:matrix(0.243636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243636,0.000000,0.000000,0.250000,0,0);}
.mb_c00253{transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);}
.m7_c00253{transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);}
.m0_c00253{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m2_c00253{transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);}
.m3_c00253{transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);}
.m8_c00253{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.mc_c00253{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.ma_c00253{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m1_c00253{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);}
.v0_c00253{vertical-align:0.000000px;}
.v1_c00253{vertical-align:25.887000px;}
.ls39_c00253{letter-spacing:-2.898000px;}
.ls36_c00253{letter-spacing:-2.688000px;}
.ls78_c00253{letter-spacing:-2.625000px;}
.ls25_c00253{letter-spacing:-2.457000px;}
.ls7c_c00253{letter-spacing:-2.415000px;}
.ls24_c00253{letter-spacing:-2.352000px;}
.ls40_c00253{letter-spacing:-2.309580px;}
.ls27_c00253{letter-spacing:-2.204280px;}
.ls52_c00253{letter-spacing:-2.120040px;}
.ls28_c00253{letter-spacing:-1.951560px;}
.ls50_c00253{letter-spacing:-1.769040px;}
.ls55_c00253{letter-spacing:-1.677780px;}
.ls72_c00253{letter-spacing:-1.670760px;}
.ls5a_c00253{letter-spacing:-1.642680px;}
.ls42_c00253{letter-spacing:-1.635660px;}
.ls3c_c00253{letter-spacing:-1.509300px;}
.ls76_c00253{letter-spacing:-1.439100px;}
.ls59_c00253{letter-spacing:-1.361880px;}
.ls51_c00253{letter-spacing:-1.347840px;}
.ls5e_c00253{letter-spacing:-1.161600px;}
.ls5b_c00253{letter-spacing:-1.151280px;}
.ls3e_c00253{letter-spacing:-1.144260px;}
.ls38_c00253{letter-spacing:-1.102140px;}
.ls4a_c00253{letter-spacing:-1.095120px;}
.ls64_c00253{letter-spacing:-1.081080px;}
.ls6e_c00253{letter-spacing:-1.031940px;}
.ls75_c00253{letter-spacing:-0.919620px;}
.ls2f_c00253{letter-spacing:-0.877500px;}
.ls4e_c00253{letter-spacing:-0.863460px;}
.ls37_c00253{letter-spacing:-0.849420px;}
.ls46_c00253{letter-spacing:-0.814320px;}
.ls7b_c00253{letter-spacing:-0.793260px;}
.ls6a_c00253{letter-spacing:-0.765180px;}
.ls62_c00253{letter-spacing:-0.758160px;}
.ls56_c00253{letter-spacing:-0.751140px;}
.ls2b_c00253{letter-spacing:-0.744120px;}
.ls4f_c00253{letter-spacing:-0.730080px;}
.ls45_c00253{letter-spacing:-0.723060px;}
.ls6f_c00253{letter-spacing:-0.716040px;}
.ls31_c00253{letter-spacing:-0.666900px;}
.ls30_c00253{letter-spacing:-0.645840px;}
.ls79_c00253{letter-spacing:-0.617760px;}
.ls5d_c00253{letter-spacing:-0.580800px;}
.ls70_c00253{letter-spacing:-0.561600px;}
.ls53_c00253{letter-spacing:-0.533520px;}
.ls54_c00253{letter-spacing:-0.526500px;}
.ls68_c00253{letter-spacing:-0.512460px;}
.ls61_c00253{letter-spacing:-0.505440px;}
.ls35_c00253{letter-spacing:-0.491400px;}
.ls60_c00253{letter-spacing:-0.484380px;}
.ls48_c00253{letter-spacing:-0.470340px;}
.ls57_c00253{letter-spacing:-0.449280px;}
.ls6d_c00253{letter-spacing:-0.442260px;}
.ls69_c00253{letter-spacing:-0.435240px;}
.ls33_c00253{letter-spacing:-0.421200px;}
.ls2c_c00253{letter-spacing:-0.393120px;}
.ls2e_c00253{letter-spacing:-0.386100px;}
.ls65_c00253{letter-spacing:-0.379080px;}
.ls77_c00253{letter-spacing:-0.372060px;}
.ls7a_c00253{letter-spacing:-0.351000px;}
.ls26_c00253{letter-spacing:-0.343980px;}
.ls2a_c00253{letter-spacing:-0.336960px;}
.ls44_c00253{letter-spacing:-0.322920px;}
.ls43_c00253{letter-spacing:-0.294840px;}
.ls41_c00253{letter-spacing:-0.287820px;}
.ls3f_c00253{letter-spacing:-0.273780px;}
.ls47_c00253{letter-spacing:-0.259740px;}
.ls5c_c00253{letter-spacing:-0.245700px;}
.ls63_c00253{letter-spacing:-0.231660px;}
.ls34_c00253{letter-spacing:-0.210600px;}
.ls4b_c00253{letter-spacing:-0.196560px;}
.ls73_c00253{letter-spacing:-0.189540px;}
.ls29_c00253{letter-spacing:-0.182520px;}
.ls66_c00253{letter-spacing:-0.168480px;}
.ls67_c00253{letter-spacing:-0.154440px;}
.ls3a_c00253{letter-spacing:-0.147420px;}
.ls4c_c00253{letter-spacing:-0.140400px;}
.ls2d_c00253{letter-spacing:-0.126360px;}
.ls74_c00253{letter-spacing:-0.112320px;}
.ls49_c00253{letter-spacing:-0.105300px;}
.ls71_c00253{letter-spacing:-0.091260px;}
.ls6c_c00253{letter-spacing:-0.056160px;}
.ls3d_c00253{letter-spacing:-0.049140px;}
.ls3b_c00253{letter-spacing:-0.014040px;}
.ls6b_c00253{letter-spacing:-0.007020px;}
.ls32_c00253{letter-spacing:0.000000px;}
.ls1c_c00253{letter-spacing:0.007020px;}
.ls11_c00253{letter-spacing:0.028080px;}
.ls4d_c00253{letter-spacing:0.140400px;}
.ls21_c00253{letter-spacing:0.161460px;}
.ls1e_c00253{letter-spacing:0.175500px;}
.ls1a_c00253{letter-spacing:0.182520px;}
.ls1d_c00253{letter-spacing:0.189540px;}
.ls58_c00253{letter-spacing:0.266760px;}
.ls2_c00253{letter-spacing:0.273780px;}
.ls9_c00253{letter-spacing:0.308880px;}
.ls19_c00253{letter-spacing:0.358020px;}
.ls6_c00253{letter-spacing:0.456300px;}
.ls18_c00253{letter-spacing:0.463320px;}
.ls1b_c00253{letter-spacing:0.491400px;}
.ls7_c00253{letter-spacing:0.505440px;}
.ls10_c00253{letter-spacing:0.687960px;}
.lsc_c00253{letter-spacing:0.737100px;}
.ls22_c00253{letter-spacing:0.968760px;}
.ls5_c00253{letter-spacing:0.975780px;}
.ls5f_c00253{letter-spacing:0.976800px;}
.ls1_c00253{letter-spacing:1.214460px;}
.lsd_c00253{letter-spacing:1.263600px;}
.ls20_c00253{letter-spacing:1.386000px;}
.lsb_c00253{letter-spacing:1.465200px;}
.ls16_c00253{letter-spacing:1.504800px;}
.ls4_c00253{letter-spacing:1.762200px;}
.lsa_c00253{letter-spacing:1.808400px;}
.ls15_c00253{letter-spacing:1.834800px;}
.ls8_c00253{letter-spacing:1.841400px;}
.ls12_c00253{letter-spacing:1.947000px;}
.ls17_c00253{letter-spacing:1.960200px;}
.ls13_c00253{letter-spacing:2.092200px;}
.ls23_c00253{letter-spacing:2.105400px;}
.ls3_c00253{letter-spacing:2.224200px;}
.ls1f_c00253{letter-spacing:2.455200px;}
.ls0_c00253{letter-spacing:2.485080px;}
.ls14_c00253{letter-spacing:2.625480px;}
.lse_c00253{letter-spacing:2.970000px;}
.lsf_c00253{letter-spacing:3.121800px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{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__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00253{word-spacing:-16.405740px;}
.ws0_c00253{word-spacing:-3.292800px;}
.ws7_c00253{word-spacing:-3.069600px;}
.ws3_c00253{word-spacing:-1.455000px;}
.ws9_c00253{word-spacing:0.000000px;}
.ws6_c00253{word-spacing:6.354000px;}
.ws4_c00253{word-spacing:13.528800px;}
.ws5_c00253{word-spacing:14.251200px;}
.ws1_c00253{word-spacing:25.524000px;}
.ws8_c00253{word-spacing:32.904000px;}
._b_c00253{margin-left:-5.875740px;}
._12_c00253{margin-left:-4.153200px;}
._6_c00253{margin-left:-2.520180px;}
._15_c00253{margin-left:-1.460160px;}
._4_c00253{width:1.221480px;}
._5_c00253{width:2.990520px;}
._2_c00253{width:4.240080px;}
._13_c00253{width:5.292060px;}
._0_c00253{width:6.521580px;}
._11_c00253{width:7.588620px;}
._1_c00253{width:9.196200px;}
._3_c00253{width:10.537020px;}
._e_c00253{width:12.214800px;}
._f_c00253{width:13.460040px;}
._d_c00253{width:14.493600px;}
._c_c00253{width:16.404240px;}
._10_c00253{width:19.557720px;}
._14_c00253{width:21.485400px;}
._a_c00253{width:23.278260px;}
._7_c00253{width:26.760240px;}
._9_c00253{width:27.911520px;}
._8_c00253{width:30.761640px;}
._16_c00253{width:32.994000px;}
._17_c00253{width:34.440120px;}
._19_c00253{width:35.802000px;}
._18_c00253{width:36.925200px;}
.fc0_c00253{color:transparent;}
.fs5_c00253{font-size:30.600000px;}
.fs1_c00253{font-size:66.000000px;}
.fs0_c00253{font-size:67.200000px;}
.fs7_c00253{font-size:69.000000px;}
.fs2_c00253{font-size:70.200000px;}
.fs6_c00253{font-size:75.000000px;}
.fs3_c00253{font-size:76.800000px;}
.fs4_c00253{font-size:82.800000px;}
.y0_c00253{bottom:0.000000px;}
.y19_c00253{bottom:68.775006px;}
.y18_c00253{bottom:144.720006px;}
.y17_c00253{bottom:207.375006px;}
.y16_c00253{bottom:269.657706px;}
.y15_c00253{bottom:302.055006px;}
.y14_c00253{bottom:364.333056px;}
.y13_c00253{bottom:396.010806px;}
.y12_c00253{bottom:427.320006px;}
.y11_c00253{bottom:489.975006px;}
.y10_c00253{bottom:521.280006px;}
.yf_c00253{bottom:583.935006px;}
.ye_c00253{bottom:583.937256px;}
.yc_c00253{bottom:615.612606px;}
.yd_c00253{bottom:615.615006px;}
.yb_c00253{bottom:677.880006px;}
.ya_c00253{bottom:709.215006px;}
.y9_c00253{bottom:771.833256px;}
.y8_c00253{bottom:803.160006px;}
.y7_c00253{bottom:866.160006px;}
.y6_c00253{bottom:928.808256px;}
.y5_c00253{bottom:960.135006px;}
.y4_c00253{bottom:1022.775006px;}
.y3_c00253{bottom:1086.128256px;}
.y2_c00253{bottom:1117.455006px;}
.y1_c00253{bottom:1193.775006px;}
.h3_c00253{height:64.743164px;}
.h2_c00253{height:65.953125px;}
.h8_c00253{height:67.719727px;}
.h4_c00253{height:68.897461px;}
.h5_c00253{height:75.375000px;}
.h7_c00253{height:78.222656px;}
.h6_c00253{height:81.263672px;}
.h1_c00253{height:1263.000000px;}
.h0_c00253{height:1263.240006px;}
.w1_c00253{width:892.500000px;}
.w0_c00253{width:892.799998px;}
.x0_c00253{left:0.000000px;}
.x1f_c00253{left:120.786598px;}
.xd_c00253{left:122.369098px;}
.x5_c00253{left:123.665099px;}
.x1_c00253{left:124.844999px;}
.x1e_c00253{left:175.109998px;}
.xe_c00253{left:176.549998px;}
.x2_c00253{left:177.989998px;}
.x10_c00253{left:243.884998px;}
.x11_c00253{left:272.624999px;}
.x3_c00253{left:281.204998px;}
.x18_c00253{left:291.569998px;}
.x16_c00253{left:300.404999px;}
.x4_c00253{left:304.394999px;}
.xf_c00253{left:317.549999px;}
.x19_c00253{left:322.094999px;}
.x17_c00253{left:327.884999px;}
.x12_c00253{left:362.324998px;}
.x6_c00253{left:387.479999px;}
.x13_c00253{left:393.374998px;}
.x7_c00253{left:417.179999px;}
.x23_c00253{left:424.709999px;}
.x20_c00253{left:446.339998px;}
.x8_c00253{left:448.769998px;}
.xb_c00253{left:475.469998px;}
.x21_c00253{left:478.289999px;}
.xc_c00253{left:523.784999px;}
.x1a_c00253{left:529.664999px;}
.x1b_c00253{left:555.329998px;}
.x1c_c00253{left:590.219998px;}
.x9_c00253{left:607.244999px;}
.x14_c00253{left:620.804999px;}
.xa_c00253{left:629.579998px;}
.x1d_c00253{left:635.189999px;}
.x15_c00253{left:652.439999px;}
.x22_c00253{left:695.744999px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.v1_c00253{vertical-align:23.010667pt;}
.ls39_c00253{letter-spacing:-2.576000pt;}
.ls36_c00253{letter-spacing:-2.389333pt;}
.ls78_c00253{letter-spacing:-2.333333pt;}
.ls25_c00253{letter-spacing:-2.184000pt;}
.ls7c_c00253{letter-spacing:-2.146667pt;}
.ls24_c00253{letter-spacing:-2.090667pt;}
.ls40_c00253{letter-spacing:-2.052960pt;}
.ls27_c00253{letter-spacing:-1.959360pt;}
.ls52_c00253{letter-spacing:-1.884480pt;}
.ls28_c00253{letter-spacing:-1.734720pt;}
.ls50_c00253{letter-spacing:-1.572480pt;}
.ls55_c00253{letter-spacing:-1.491360pt;}
.ls72_c00253{letter-spacing:-1.485120pt;}
.ls5a_c00253{letter-spacing:-1.460160pt;}
.ls42_c00253{letter-spacing:-1.453920pt;}
.ls3c_c00253{letter-spacing:-1.341600pt;}
.ls76_c00253{letter-spacing:-1.279200pt;}
.ls59_c00253{letter-spacing:-1.210560pt;}
.ls51_c00253{letter-spacing:-1.198080pt;}
.ls5e_c00253{letter-spacing:-1.032533pt;}
.ls5b_c00253{letter-spacing:-1.023360pt;}
.ls3e_c00253{letter-spacing:-1.017120pt;}
.ls38_c00253{letter-spacing:-0.979680pt;}
.ls4a_c00253{letter-spacing:-0.973440pt;}
.ls64_c00253{letter-spacing:-0.960960pt;}
.ls6e_c00253{letter-spacing:-0.917280pt;}
.ls75_c00253{letter-spacing:-0.817440pt;}
.ls2f_c00253{letter-spacing:-0.780000pt;}
.ls4e_c00253{letter-spacing:-0.767520pt;}
.ls37_c00253{letter-spacing:-0.755040pt;}
.ls46_c00253{letter-spacing:-0.723840pt;}
.ls7b_c00253{letter-spacing:-0.705120pt;}
.ls6a_c00253{letter-spacing:-0.680160pt;}
.ls62_c00253{letter-spacing:-0.673920pt;}
.ls56_c00253{letter-spacing:-0.667680pt;}
.ls2b_c00253{letter-spacing:-0.661440pt;}
.ls4f_c00253{letter-spacing:-0.648960pt;}
.ls45_c00253{letter-spacing:-0.642720pt;}
.ls6f_c00253{letter-spacing:-0.636480pt;}
.ls31_c00253{letter-spacing:-0.592800pt;}
.ls30_c00253{letter-spacing:-0.574080pt;}
.ls79_c00253{letter-spacing:-0.549120pt;}
.ls5d_c00253{letter-spacing:-0.516267pt;}
.ls70_c00253{letter-spacing:-0.499200pt;}
.ls53_c00253{letter-spacing:-0.474240pt;}
.ls54_c00253{letter-spacing:-0.468000pt;}
.ls68_c00253{letter-spacing:-0.455520pt;}
.ls61_c00253{letter-spacing:-0.449280pt;}
.ls35_c00253{letter-spacing:-0.436800pt;}
.ls60_c00253{letter-spacing:-0.430560pt;}
.ls48_c00253{letter-spacing:-0.418080pt;}
.ls57_c00253{letter-spacing:-0.399360pt;}
.ls6d_c00253{letter-spacing:-0.393120pt;}
.ls69_c00253{letter-spacing:-0.386880pt;}
.ls33_c00253{letter-spacing:-0.374400pt;}
.ls2c_c00253{letter-spacing:-0.349440pt;}
.ls2e_c00253{letter-spacing:-0.343200pt;}
.ls65_c00253{letter-spacing:-0.336960pt;}
.ls77_c00253{letter-spacing:-0.330720pt;}
.ls7a_c00253{letter-spacing:-0.312000pt;}
.ls26_c00253{letter-spacing:-0.305760pt;}
.ls2a_c00253{letter-spacing:-0.299520pt;}
.ls44_c00253{letter-spacing:-0.287040pt;}
.ls43_c00253{letter-spacing:-0.262080pt;}
.ls41_c00253{letter-spacing:-0.255840pt;}
.ls3f_c00253{letter-spacing:-0.243360pt;}
.ls47_c00253{letter-spacing:-0.230880pt;}
.ls5c_c00253{letter-spacing:-0.218400pt;}
.ls63_c00253{letter-spacing:-0.205920pt;}
.ls34_c00253{letter-spacing:-0.187200pt;}
.ls4b_c00253{letter-spacing:-0.174720pt;}
.ls73_c00253{letter-spacing:-0.168480pt;}
.ls29_c00253{letter-spacing:-0.162240pt;}
.ls66_c00253{letter-spacing:-0.149760pt;}
.ls67_c00253{letter-spacing:-0.137280pt;}
.ls3a_c00253{letter-spacing:-0.131040pt;}
.ls4c_c00253{letter-spacing:-0.124800pt;}
.ls2d_c00253{letter-spacing:-0.112320pt;}
.ls74_c00253{letter-spacing:-0.099840pt;}
.ls49_c00253{letter-spacing:-0.093600pt;}
.ls71_c00253{letter-spacing:-0.081120pt;}
.ls6c_c00253{letter-spacing:-0.049920pt;}
.ls3d_c00253{letter-spacing:-0.043680pt;}
.ls3b_c00253{letter-spacing:-0.012480pt;}
.ls6b_c00253{letter-spacing:-0.006240pt;}
.ls32_c00253{letter-spacing:0.000000pt;}
.ls1c_c00253{letter-spacing:0.006240pt;}
.ls11_c00253{letter-spacing:0.024960pt;}
.ls4d_c00253{letter-spacing:0.124800pt;}
.ls21_c00253{letter-spacing:0.143520pt;}
.ls1e_c00253{letter-spacing:0.156000pt;}
.ls1a_c00253{letter-spacing:0.162240pt;}
.ls1d_c00253{letter-spacing:0.168480pt;}
.ls58_c00253{letter-spacing:0.237120pt;}
.ls2_c00253{letter-spacing:0.243360pt;}
.ls9_c00253{letter-spacing:0.274560pt;}
.ls19_c00253{letter-spacing:0.318240pt;}
.ls6_c00253{letter-spacing:0.405600pt;}
.ls18_c00253{letter-spacing:0.411840pt;}
.ls1b_c00253{letter-spacing:0.436800pt;}
.ls7_c00253{letter-spacing:0.449280pt;}
.ls10_c00253{letter-spacing:0.611520pt;}
.lsc_c00253{letter-spacing:0.655200pt;}
.ls22_c00253{letter-spacing:0.861120pt;}
.ls5_c00253{letter-spacing:0.867360pt;}
.ls5f_c00253{letter-spacing:0.868267pt;}
.ls1_c00253{letter-spacing:1.079520pt;}
.lsd_c00253{letter-spacing:1.123200pt;}
.ls20_c00253{letter-spacing:1.232000pt;}
.lsb_c00253{letter-spacing:1.302400pt;}
.ls16_c00253{letter-spacing:1.337600pt;}
.ls4_c00253{letter-spacing:1.566400pt;}
.lsa_c00253{letter-spacing:1.607467pt;}
.ls15_c00253{letter-spacing:1.630933pt;}
.ls8_c00253{letter-spacing:1.636800pt;}
.ls12_c00253{letter-spacing:1.730667pt;}
.ls17_c00253{letter-spacing:1.742400pt;}
.ls13_c00253{letter-spacing:1.859733pt;}
.ls23_c00253{letter-spacing:1.871467pt;}
.ls3_c00253{letter-spacing:1.977067pt;}
.ls1f_c00253{letter-spacing:2.182400pt;}
.ls0_c00253{letter-spacing:2.208960pt;}
.ls14_c00253{letter-spacing:2.333760pt;}
.lse_c00253{letter-spacing:2.640000pt;}
.lsf_c00253{letter-spacing:2.774933pt;}
.ws2_c00253{word-spacing:-14.582880pt;}
.ws0_c00253{word-spacing:-2.926933pt;}
.ws7_c00253{word-spacing:-2.728533pt;}
.ws3_c00253{word-spacing:-1.293333pt;}
.ws9_c00253{word-spacing:0.000000pt;}
.ws6_c00253{word-spacing:5.648000pt;}
.ws4_c00253{word-spacing:12.025600pt;}
.ws5_c00253{word-spacing:12.667733pt;}
.ws1_c00253{word-spacing:22.688000pt;}
.ws8_c00253{word-spacing:29.248000pt;}
._b_c00253{margin-left:-5.222880pt;}
._12_c00253{margin-left:-3.691733pt;}
._6_c00253{margin-left:-2.240160pt;}
._15_c00253{margin-left:-1.297920pt;}
._4_c00253{width:1.085760pt;}
._5_c00253{width:2.658240pt;}
._2_c00253{width:3.768960pt;}
._13_c00253{width:4.704053pt;}
._0_c00253{width:5.796960pt;}
._11_c00253{width:6.745440pt;}
._1_c00253{width:8.174400pt;}
._3_c00253{width:9.366240pt;}
._e_c00253{width:10.857600pt;}
._f_c00253{width:11.964480pt;}
._d_c00253{width:12.883200pt;}
._c_c00253{width:14.581547pt;}
._10_c00253{width:17.384640pt;}
._14_c00253{width:19.098133pt;}
._a_c00253{width:20.691787pt;}
._7_c00253{width:23.786880pt;}
._9_c00253{width:24.810240pt;}
._8_c00253{width:27.343680pt;}
._16_c00253{width:29.328000pt;}
._17_c00253{width:30.613440pt;}
._19_c00253{width:31.824000pt;}
._18_c00253{width:32.822400pt;}
.fs5_c00253{font-size:27.200000pt;}
.fs1_c00253{font-size:58.666667pt;}
.fs0_c00253{font-size:59.733333pt;}
.fs7_c00253{font-size:61.333333pt;}
.fs2_c00253{font-size:62.400000pt;}
.fs6_c00253{font-size:66.666667pt;}
.fs3_c00253{font-size:68.266667pt;}
.fs4_c00253{font-size:73.600000pt;}
.y0_c00253{bottom:0.000000pt;}
.y19_c00253{bottom:61.133339pt;}
.y18_c00253{bottom:128.640005pt;}
.y17_c00253{bottom:184.333339pt;}
.y16_c00253{bottom:239.695739pt;}
.y15_c00253{bottom:268.493339pt;}
.y14_c00253{bottom:323.851605pt;}
.y13_c00253{bottom:352.009605pt;}
.y12_c00253{bottom:379.840005pt;}
.y11_c00253{bottom:435.533339pt;}
.y10_c00253{bottom:463.360005pt;}
.yf_c00253{bottom:519.053339pt;}
.ye_c00253{bottom:519.055339pt;}
.yc_c00253{bottom:547.211205pt;}
.yd_c00253{bottom:547.213339pt;}
.yb_c00253{bottom:602.560005pt;}
.ya_c00253{bottom:630.413339pt;}
.y9_c00253{bottom:686.074005pt;}
.y8_c00253{bottom:713.920005pt;}
.y7_c00253{bottom:769.920005pt;}
.y6_c00253{bottom:825.607339pt;}
.y5_c00253{bottom:853.453339pt;}
.y4_c00253{bottom:909.133339pt;}
.y3_c00253{bottom:965.447339pt;}
.y2_c00253{bottom:993.293339pt;}
.y1_c00253{bottom:1061.133339pt;}
.h3_c00253{height:57.549479pt;}
.h2_c00253{height:58.625000pt;}
.h8_c00253{height:60.195312pt;}
.h4_c00253{height:61.242187pt;}
.h5_c00253{height:67.000000pt;}
.h7_c00253{height:69.531250pt;}
.h6_c00253{height:72.234375pt;}
.h1_c00253{height:1122.666667pt;}
.h0_c00253{height:1122.880005pt;}
.w1_c00253{width:793.333333pt;}
.w0_c00253{width:793.599999pt;}
.x0_c00253{left:0.000000pt;}
.x1f_c00253{left:107.365865pt;}
.xd_c00253{left:108.772532pt;}
.x5_c00253{left:109.924532pt;}
.x1_c00253{left:110.973332pt;}
.x1e_c00253{left:155.653332pt;}
.xe_c00253{left:156.933332pt;}
.x2_c00253{left:158.213332pt;}
.x10_c00253{left:216.786665pt;}
.x11_c00253{left:242.333332pt;}
.x3_c00253{left:249.959999pt;}
.x18_c00253{left:259.173332pt;}
.x16_c00253{left:267.026665pt;}
.x4_c00253{left:270.573332pt;}
.xf_c00253{left:282.266665pt;}
.x19_c00253{left:286.306665pt;}
.x17_c00253{left:291.453332pt;}
.x12_c00253{left:322.066665pt;}
.x6_c00253{left:344.426665pt;}
.x13_c00253{left:349.666665pt;}
.x7_c00253{left:370.826665pt;}
.x23_c00253{left:377.519999pt;}
.x20_c00253{left:396.746665pt;}
.x8_c00253{left:398.906665pt;}
.xb_c00253{left:422.639999pt;}
.x21_c00253{left:425.146665pt;}
.xc_c00253{left:465.586665pt;}
.x1a_c00253{left:470.813332pt;}
.x1b_c00253{left:493.626665pt;}
.x1c_c00253{left:524.639999pt;}
.x9_c00253{left:539.773332pt;}
.x14_c00253{left:551.826665pt;}
.xa_c00253{left:559.626665pt;}
.x1d_c00253{left:564.613332pt;}
.x15_c00253{left:579.946665pt;}
.x22_c00253{left:618.439999pt;}
}





/* 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_c00254 {
    display:none;
  }
  .loading-indicator_c00254.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00254 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_c00254 { 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_c00254" -> "#page-container .classname_c00254")
 */
.pf_c00254 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00254 { /* 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_c00254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00254 { /* 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_c00254 { /* 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_c00254 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00254 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00254 {overflow:visible;}
  }
}
.c_c00254 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00254 { /* 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_c00254:after { /* webkit #35443 */
  content: '';
}
.t_c00254:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00254 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 */
}
.__c00254 { /* 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_c00254 { /* info for Javascript */
  display:none;
}
.l_c00254 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00254 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00254 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00254: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_c00254 {
    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_c00254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00254.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_c00254 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00254;src:url('chunks/assets/font_7e3f0b0f28455732fbcefcc2.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.284668;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_c00254;src:url('chunks/assets/font_8507592081f5b294fbb9ee63.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.284180;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_c00254;src:url('chunks/assets/font_946de60c72d406b75d087bb1.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:0.666000;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_c00254;src:url('chunks/assets/font_bb4d439705236e3bd9c1d672.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;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;}
.m2_c00254{transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);}
.m4_c00254{transform:matrix(0.164868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164868,0.000000,0.000000,0.250000,0,0);}
.m3_c00254{transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);}
.m6_c00254{transform:matrix(0.238416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238416,0.000000,0.000000,0.250000,0,0);}
.m5_c00254{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m1_c00254{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);}
.m0_c00254{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls5b_c00254{letter-spacing:-2.373000px;}
.ls59_c00254{letter-spacing:-1.891620px;}
.ls5c_c00254{letter-spacing:-1.810260px;}
.ls6d_c00254{letter-spacing:-1.727040px;}
.ls5f_c00254{letter-spacing:-1.695000px;}
.ls64_c00254{letter-spacing:-1.613640px;}
.ls5e_c00254{letter-spacing:-1.457700px;}
.ls71_c00254{letter-spacing:-1.417020px;}
.ls6a_c00254{letter-spacing:-1.396680px;}
.ls60_c00254{letter-spacing:-1.220400px;}
.ls74_c00254{letter-spacing:-0.976320px;}
.ls61_c00254{letter-spacing:-0.867840px;}
.ls5a_c00254{letter-spacing:-0.806820px;}
.ls75_c00254{letter-spacing:-0.739020px;}
.ls67_c00254{letter-spacing:-0.732240px;}
.ls56_c00254{letter-spacing:-0.650880px;}
.ls65_c00254{letter-spacing:-0.589860px;}
.ls63_c00254{letter-spacing:-0.569520px;}
.ls76_c00254{letter-spacing:-0.501720px;}
.ls50_c00254{letter-spacing:-0.400020px;}
.ls58_c00254{letter-spacing:-0.386460px;}
.ls55_c00254{letter-spacing:-0.359340px;}
.ls51_c00254{letter-spacing:-0.264420px;}
.ls73_c00254{letter-spacing:-0.169500px;}
.ls53_c00254{letter-spacing:-0.162720px;}
.ls69_c00254{letter-spacing:-0.155940px;}
.ls66_c00254{letter-spacing:-0.142380px;}
.ls5d_c00254{letter-spacing:-0.135600px;}
.ls6f_c00254{letter-spacing:-0.134400px;}
.ls6b_c00254{letter-spacing:-0.128820px;}
.ls57_c00254{letter-spacing:-0.108480px;}
.ls70_c00254{letter-spacing:-0.067800px;}
.ls54_c00254{letter-spacing:0.000000px;}
.lsa_c00254{letter-spacing:0.013560px;}
.ls19_c00254{letter-spacing:0.027120px;}
.lsd_c00254{letter-spacing:0.033900px;}
.ls25_c00254{letter-spacing:0.040680px;}
.ls39_c00254{letter-spacing:0.061020px;}
.ls38_c00254{letter-spacing:0.081360px;}
.ls77_c00254{letter-spacing:0.098940px;}
.ls44_c00254{letter-spacing:0.128820px;}
.ls2f_c00254{letter-spacing:0.142380px;}
.ls10_c00254{letter-spacing:0.169500px;}
.ls7_c00254{letter-spacing:0.189840px;}
.ls6e_c00254{letter-spacing:0.203400px;}
.ls29_c00254{letter-spacing:0.210180px;}
.ls40_c00254{letter-spacing:0.216960px;}
.ls36_c00254{letter-spacing:0.230520px;}
.ls3f_c00254{letter-spacing:0.237300px;}
.lse_c00254{letter-spacing:0.264420px;}
.ls14_c00254{letter-spacing:0.277980px;}
.ls72_c00254{letter-spacing:0.284760px;}
.ls18_c00254{letter-spacing:0.311880px;}
.ls1c_c00254{letter-spacing:0.339000px;}
.lsf_c00254{letter-spacing:0.345780px;}
.ls21_c00254{letter-spacing:0.352560px;}
.ls22_c00254{letter-spacing:0.372900px;}
.ls1b_c00254{letter-spacing:0.379680px;}
.ls24_c00254{letter-spacing:0.406800px;}
.ls35_c00254{letter-spacing:0.447480px;}
.ls2d_c00254{letter-spacing:0.494940px;}
.ls6_c00254{letter-spacing:0.508500px;}
.ls41_c00254{letter-spacing:0.510720px;}
.ls2e_c00254{letter-spacing:0.522060px;}
.ls34_c00254{letter-spacing:0.535620px;}
.lsb_c00254{letter-spacing:0.551040px;}
.ls26_c00254{letter-spacing:0.555960px;}
.ls1e_c00254{letter-spacing:0.557760px;}
.ls4d_c00254{letter-spacing:0.623760px;}
.ls1f_c00254{letter-spacing:0.637320px;}
.ls2_c00254{letter-spacing:0.657660px;}
.ls2a_c00254{letter-spacing:0.671220px;}
.ls2b_c00254{letter-spacing:0.672000px;}
.ls68_c00254{letter-spacing:0.678000px;}
.ls1d_c00254{letter-spacing:0.678720px;}
.ls4_c00254{letter-spacing:0.691560px;}
.ls0_c00254{letter-spacing:0.705120px;}
.ls52_c00254{letter-spacing:0.718680px;}
.ls37_c00254{letter-spacing:0.725460px;}
.ls5_c00254{letter-spacing:0.766140px;}
.ls4e_c00254{letter-spacing:0.820380px;}
.ls11_c00254{letter-spacing:0.873600px;}
.ls12_c00254{letter-spacing:0.893760px;}
.ls62_c00254{letter-spacing:0.920640px;}
.ls3b_c00254{letter-spacing:0.942420px;}
.lsc_c00254{letter-spacing:0.949200px;}
.ls3d_c00254{letter-spacing:0.955980px;}
.ls33_c00254{letter-spacing:0.962760px;}
.ls3c_c00254{letter-spacing:0.987840px;}
.ls47_c00254{letter-spacing:1.003440px;}
.ls45_c00254{letter-spacing:1.030560px;}
.ls28_c00254{letter-spacing:1.044120px;}
.ls9_c00254{letter-spacing:1.084800px;}
.ls32_c00254{letter-spacing:1.091580px;}
.ls2c_c00254{letter-spacing:1.132260px;}
.ls3_c00254{letter-spacing:1.159380px;}
.ls20_c00254{letter-spacing:1.169280px;}
.ls6c_c00254{letter-spacing:1.172940px;}
.ls13_c00254{letter-spacing:1.267860px;}
.ls27_c00254{letter-spacing:1.290240px;}
.ls4c_c00254{letter-spacing:1.294980px;}
.ls1a_c00254{letter-spacing:1.403460px;}
.ls1_c00254{letter-spacing:1.444140px;}
.ls3a_c00254{letter-spacing:1.471260px;}
.ls8_c00254{letter-spacing:1.478040px;}
.ls30_c00254{letter-spacing:1.613640px;}
.ls3e_c00254{letter-spacing:1.674660px;}
.ls42_c00254{letter-spacing:1.742460px;}
.ls23_c00254{letter-spacing:1.918740px;}
.ls43_c00254{letter-spacing:1.932300px;}
.ls17_c00254{letter-spacing:2.002560px;}
.ls4b_c00254{letter-spacing:2.016000px;}
.ls15_c00254{letter-spacing:2.123520px;}
.ls49_c00254{letter-spacing:2.156040px;}
.ls48_c00254{letter-spacing:2.162820px;}
.ls16_c00254{letter-spacing:2.177280px;}
.ls31_c00254{letter-spacing:2.203500px;}
.ls4a_c00254{letter-spacing:2.358720px;}
.ls46_c00254{letter-spacing:2.637420px;}
.ls4f_c00254{letter-spacing:2.940000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{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__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00254{word-spacing:-1.736160px;}
.ws4_c00254{word-spacing:-1.538400px;}
.ws5_c00254{word-spacing:0.000000px;}
.ws0_c00254{word-spacing:1.491840px;}
.ws1_c00254{word-spacing:1.898880px;}
.ws3_c00254{word-spacing:4.939200px;}
._10_c00254{margin-left:-6.784920px;}
._c_c00254{margin-left:-5.403660px;}
._7_c00254{margin-left:-4.050000px;}
._5_c00254{margin-left:-2.448360px;}
._6_c00254{margin-left:-1.225260px;}
._3_c00254{width:1.521600px;}
._1_c00254{width:2.671320px;}
._0_c00254{width:3.701880px;}
._4_c00254{width:5.536380px;}
._a_c00254{width:6.563040px;}
._8_c00254{width:7.641060px;}
._2_c00254{width:8.644140px;}
._b_c00254{width:10.441200px;}
._9_c00254{width:12.621900px;}
._e_c00254{width:15.743520px;}
._f_c00254{width:17.024220px;}
._d_c00254{width:20.304960px;}
.fc0_c00254{color:transparent;}
.fs4_c00254{font-size:51.840000px;}
.fs5_c00254{font-size:53.280000px;}
.fs7_c00254{font-size:58.200000px;}
.fs0_c00254{font-size:58.800000px;}
.fs6_c00254{font-size:63.000000px;}
.fs2_c00254{font-size:67.200000px;}
.fs1_c00254{font-size:67.800000px;}
.fs3_c00254{font-size:73.800000px;}
.y0_c00254{bottom:0.000000px;}
.y18_c00254{bottom:65.895000px;}
.y16_c00254{bottom:142.928550px;}
.y17_c00254{bottom:142.935000px;}
.y15_c00254{bottom:204.135000px;}
.y14_c00254{bottom:235.455000px;}
.y13_c00254{bottom:298.792350px;}
.y12_c00254{bottom:329.760000px;}
.y11_c00254{bottom:392.055000px;}
.y10_c00254{bottom:455.400000px;}
.yf_c00254{bottom:486.369300px;}
.ye_c00254{bottom:517.320000px;}
.yd_c00254{bottom:579.615000px;}
.yc_c00254{bottom:642.609300px;}
.yb_c00254{bottom:673.560000px;}
.ya_c00254{bottom:736.200000px;}
.y9_c00254{bottom:798.855000px;}
.y8_c00254{bottom:798.859050px;}
.y7_c00254{bottom:861.133350px;}
.y6_c00254{bottom:892.440000px;}
.y5_c00254{bottom:954.720000px;}
.y4_c00254{bottom:1017.375000px;}
.y3_c00254{bottom:1080.015450px;}
.y2_c00254{bottom:1111.695000px;}
.y1_c00254{bottom:1186.560000px;}
.h5_c00254{height:34.525440px;}
.h7_c00254{height:35.484480px;}
.ha_c00254{height:57.120117px;}
.h2_c00254{height:57.708984px;}
.h6_c00254{height:65.920312px;}
.h3_c00254{height:66.541992px;}
.h9_c00254{height:70.087500px;}
.h8_c00254{height:70.110300px;}
.h4_c00254{height:72.430664px;}
.h1_c00254{height:1263.000000px;}
.h0_c00254{height:1263.240000px;}
.w1_c00254{width:892.500000px;}
.w0_c00254{width:892.800000px;}
.x0_c00254{left:0.000000px;}
.x1_c00254{left:125.205000px;}
.x2_c00254{left:179.805000px;}
.x4_c00254{left:181.123200px;}
.xc_c00254{left:263.550000px;}
.x3_c00254{left:280.830000px;}
.x7_c00254{left:322.170000px;}
.x8_c00254{left:353.055000px;}
.xe_c00254{left:426.510000px;}
.xd_c00254{left:441.885000px;}
.x9_c00254{left:449.280000px;}
.x5_c00254{left:468.015000px;}
.x6_c00254{left:520.950000px;}
.xa_c00254{left:541.635000px;}
.xb_c00254{left:681.495000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls5b_c00254{letter-spacing:-2.109333pt;}
.ls59_c00254{letter-spacing:-1.681440pt;}
.ls5c_c00254{letter-spacing:-1.609120pt;}
.ls6d_c00254{letter-spacing:-1.535147pt;}
.ls5f_c00254{letter-spacing:-1.506667pt;}
.ls64_c00254{letter-spacing:-1.434347pt;}
.ls5e_c00254{letter-spacing:-1.295733pt;}
.ls71_c00254{letter-spacing:-1.259573pt;}
.ls6a_c00254{letter-spacing:-1.241493pt;}
.ls60_c00254{letter-spacing:-1.084800pt;}
.ls74_c00254{letter-spacing:-0.867840pt;}
.ls61_c00254{letter-spacing:-0.771413pt;}
.ls5a_c00254{letter-spacing:-0.717173pt;}
.ls75_c00254{letter-spacing:-0.656907pt;}
.ls67_c00254{letter-spacing:-0.650880pt;}
.ls56_c00254{letter-spacing:-0.578560pt;}
.ls65_c00254{letter-spacing:-0.524320pt;}
.ls63_c00254{letter-spacing:-0.506240pt;}
.ls76_c00254{letter-spacing:-0.445973pt;}
.ls50_c00254{letter-spacing:-0.355573pt;}
.ls58_c00254{letter-spacing:-0.343520pt;}
.ls55_c00254{letter-spacing:-0.319413pt;}
.ls51_c00254{letter-spacing:-0.235040pt;}
.ls73_c00254{letter-spacing:-0.150667pt;}
.ls53_c00254{letter-spacing:-0.144640pt;}
.ls69_c00254{letter-spacing:-0.138613pt;}
.ls66_c00254{letter-spacing:-0.126560pt;}
.ls5d_c00254{letter-spacing:-0.120533pt;}
.ls6f_c00254{letter-spacing:-0.119467pt;}
.ls6b_c00254{letter-spacing:-0.114507pt;}
.ls57_c00254{letter-spacing:-0.096427pt;}
.ls70_c00254{letter-spacing:-0.060267pt;}
.ls54_c00254{letter-spacing:0.000000pt;}
.lsa_c00254{letter-spacing:0.012053pt;}
.ls19_c00254{letter-spacing:0.024107pt;}
.lsd_c00254{letter-spacing:0.030133pt;}
.ls25_c00254{letter-spacing:0.036160pt;}
.ls39_c00254{letter-spacing:0.054240pt;}
.ls38_c00254{letter-spacing:0.072320pt;}
.ls77_c00254{letter-spacing:0.087947pt;}
.ls44_c00254{letter-spacing:0.114507pt;}
.ls2f_c00254{letter-spacing:0.126560pt;}
.ls10_c00254{letter-spacing:0.150667pt;}
.ls7_c00254{letter-spacing:0.168747pt;}
.ls6e_c00254{letter-spacing:0.180800pt;}
.ls29_c00254{letter-spacing:0.186827pt;}
.ls40_c00254{letter-spacing:0.192853pt;}
.ls36_c00254{letter-spacing:0.204907pt;}
.ls3f_c00254{letter-spacing:0.210933pt;}
.lse_c00254{letter-spacing:0.235040pt;}
.ls14_c00254{letter-spacing:0.247093pt;}
.ls72_c00254{letter-spacing:0.253120pt;}
.ls18_c00254{letter-spacing:0.277227pt;}
.ls1c_c00254{letter-spacing:0.301333pt;}
.lsf_c00254{letter-spacing:0.307360pt;}
.ls21_c00254{letter-spacing:0.313387pt;}
.ls22_c00254{letter-spacing:0.331467pt;}
.ls1b_c00254{letter-spacing:0.337493pt;}
.ls24_c00254{letter-spacing:0.361600pt;}
.ls35_c00254{letter-spacing:0.397760pt;}
.ls2d_c00254{letter-spacing:0.439947pt;}
.ls6_c00254{letter-spacing:0.452000pt;}
.ls41_c00254{letter-spacing:0.453973pt;}
.ls2e_c00254{letter-spacing:0.464053pt;}
.ls34_c00254{letter-spacing:0.476107pt;}
.lsb_c00254{letter-spacing:0.489813pt;}
.ls26_c00254{letter-spacing:0.494187pt;}
.ls1e_c00254{letter-spacing:0.495787pt;}
.ls4d_c00254{letter-spacing:0.554453pt;}
.ls1f_c00254{letter-spacing:0.566507pt;}
.ls2_c00254{letter-spacing:0.584587pt;}
.ls2a_c00254{letter-spacing:0.596640pt;}
.ls2b_c00254{letter-spacing:0.597333pt;}
.ls68_c00254{letter-spacing:0.602667pt;}
.ls1d_c00254{letter-spacing:0.603307pt;}
.ls4_c00254{letter-spacing:0.614720pt;}
.ls0_c00254{letter-spacing:0.626773pt;}
.ls52_c00254{letter-spacing:0.638827pt;}
.ls37_c00254{letter-spacing:0.644853pt;}
.ls5_c00254{letter-spacing:0.681013pt;}
.ls4e_c00254{letter-spacing:0.729227pt;}
.ls11_c00254{letter-spacing:0.776533pt;}
.ls12_c00254{letter-spacing:0.794453pt;}
.ls62_c00254{letter-spacing:0.818347pt;}
.ls3b_c00254{letter-spacing:0.837707pt;}
.lsc_c00254{letter-spacing:0.843733pt;}
.ls3d_c00254{letter-spacing:0.849760pt;}
.ls33_c00254{letter-spacing:0.855787pt;}
.ls3c_c00254{letter-spacing:0.878080pt;}
.ls47_c00254{letter-spacing:0.891947pt;}
.ls45_c00254{letter-spacing:0.916053pt;}
.ls28_c00254{letter-spacing:0.928107pt;}
.ls9_c00254{letter-spacing:0.964267pt;}
.ls32_c00254{letter-spacing:0.970293pt;}
.ls2c_c00254{letter-spacing:1.006453pt;}
.ls3_c00254{letter-spacing:1.030560pt;}
.ls20_c00254{letter-spacing:1.039360pt;}
.ls6c_c00254{letter-spacing:1.042613pt;}
.ls13_c00254{letter-spacing:1.126987pt;}
.ls27_c00254{letter-spacing:1.146880pt;}
.ls4c_c00254{letter-spacing:1.151093pt;}
.ls1a_c00254{letter-spacing:1.247520pt;}
.ls1_c00254{letter-spacing:1.283680pt;}
.ls3a_c00254{letter-spacing:1.307787pt;}
.ls8_c00254{letter-spacing:1.313813pt;}
.ls30_c00254{letter-spacing:1.434347pt;}
.ls3e_c00254{letter-spacing:1.488587pt;}
.ls42_c00254{letter-spacing:1.548853pt;}
.ls23_c00254{letter-spacing:1.705547pt;}
.ls43_c00254{letter-spacing:1.717600pt;}
.ls17_c00254{letter-spacing:1.780053pt;}
.ls4b_c00254{letter-spacing:1.792000pt;}
.ls15_c00254{letter-spacing:1.887573pt;}
.ls49_c00254{letter-spacing:1.916480pt;}
.ls48_c00254{letter-spacing:1.922507pt;}
.ls16_c00254{letter-spacing:1.935360pt;}
.ls31_c00254{letter-spacing:1.958667pt;}
.ls4a_c00254{letter-spacing:2.096640pt;}
.ls46_c00254{letter-spacing:2.344373pt;}
.ls4f_c00254{letter-spacing:2.613333pt;}
.ws2_c00254{word-spacing:-1.543253pt;}
.ws4_c00254{word-spacing:-1.367467pt;}
.ws5_c00254{word-spacing:0.000000pt;}
.ws0_c00254{word-spacing:1.326080pt;}
.ws1_c00254{word-spacing:1.687893pt;}
.ws3_c00254{word-spacing:4.390400pt;}
._10_c00254{margin-left:-6.031040pt;}
._c_c00254{margin-left:-4.803253pt;}
._7_c00254{margin-left:-3.600000pt;}
._5_c00254{margin-left:-2.176320pt;}
._6_c00254{margin-left:-1.089120pt;}
._3_c00254{width:1.352533pt;}
._1_c00254{width:2.374507pt;}
._0_c00254{width:3.290560pt;}
._4_c00254{width:4.921227pt;}
._a_c00254{width:5.833813pt;}
._8_c00254{width:6.792053pt;}
._2_c00254{width:7.683680pt;}
._b_c00254{width:9.281067pt;}
._9_c00254{width:11.219467pt;}
._e_c00254{width:13.994240pt;}
._f_c00254{width:15.132640pt;}
._d_c00254{width:18.048853pt;}
.fs4_c00254{font-size:46.080000pt;}
.fs5_c00254{font-size:47.360000pt;}
.fs7_c00254{font-size:51.733333pt;}
.fs0_c00254{font-size:52.266667pt;}
.fs6_c00254{font-size:56.000000pt;}
.fs2_c00254{font-size:59.733333pt;}
.fs1_c00254{font-size:60.266667pt;}
.fs3_c00254{font-size:65.600000pt;}
.y0_c00254{bottom:0.000000pt;}
.y18_c00254{bottom:58.573333pt;}
.y16_c00254{bottom:127.047600pt;}
.y17_c00254{bottom:127.053333pt;}
.y15_c00254{bottom:181.453333pt;}
.y14_c00254{bottom:209.293333pt;}
.y13_c00254{bottom:265.593200pt;}
.y12_c00254{bottom:293.120000pt;}
.y11_c00254{bottom:348.493333pt;}
.y10_c00254{bottom:404.800000pt;}
.yf_c00254{bottom:432.328267pt;}
.ye_c00254{bottom:459.840000pt;}
.yd_c00254{bottom:515.213333pt;}
.yc_c00254{bottom:571.208267pt;}
.yb_c00254{bottom:598.720000pt;}
.ya_c00254{bottom:654.400000pt;}
.y9_c00254{bottom:710.093333pt;}
.y8_c00254{bottom:710.096933pt;}
.y7_c00254{bottom:765.451867pt;}
.y6_c00254{bottom:793.280000pt;}
.y5_c00254{bottom:848.640000pt;}
.y4_c00254{bottom:904.333333pt;}
.y3_c00254{bottom:960.013733pt;}
.y2_c00254{bottom:988.173333pt;}
.y1_c00254{bottom:1054.720000pt;}
.h5_c00254{height:30.689280pt;}
.h7_c00254{height:31.541760pt;}
.ha_c00254{height:50.773437pt;}
.h2_c00254{height:51.296875pt;}
.h6_c00254{height:58.595833pt;}
.h3_c00254{height:59.148438pt;}
.h9_c00254{height:62.300000pt;}
.h8_c00254{height:62.320267pt;}
.h4_c00254{height:64.382813pt;}
.h1_c00254{height:1122.666667pt;}
.h0_c00254{height:1122.880000pt;}
.w1_c00254{width:793.333333pt;}
.w0_c00254{width:793.600000pt;}
.x0_c00254{left:0.000000pt;}
.x1_c00254{left:111.293333pt;}
.x2_c00254{left:159.826667pt;}
.x4_c00254{left:160.998400pt;}
.xc_c00254{left:234.266667pt;}
.x3_c00254{left:249.626667pt;}
.x7_c00254{left:286.373333pt;}
.x8_c00254{left:313.826667pt;}
.xe_c00254{left:379.120000pt;}
.xd_c00254{left:392.786667pt;}
.x9_c00254{left:399.360000pt;}
.x5_c00254{left:416.013333pt;}
.x6_c00254{left:463.066667pt;}
.xa_c00254{left:481.453333pt;}
.xb_c00254{left:605.773333pt;}
}





/* 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_c00255 {
    display:none;
  }
  .loading-indicator_c00255.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00255 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_c00255 { 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_c00255" -> "#page-container .classname_c00255")
 */
.pf_c00255 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00255 { /* 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_c00255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00255 { /* 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_c00255 { /* 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_c00255 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00255 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00255 {overflow:visible;}
  }
}
.c_c00255 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00255 { /* 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_c00255:after { /* webkit #35443 */
  content: '';
}
.t_c00255:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00255 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 */
}
.__c00255 { /* 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_c00255 { /* info for Javascript */
  display:none;
}
.l_c00255 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00255 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00255 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00255: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_c00255 {
    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_c00255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00255.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_c00255 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00255;src:url('chunks/assets/font_edfd0a75ee194a6440ff79aa.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.284668;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_c00255;src:url('chunks/assets/font_83e8eb9b5c7a169c1478800b.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.284180;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_c00255;src:url('chunks/assets/font_bc0e00b53acd7f1a7e3692f7.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;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:ff4_c00255;src:url('chunks/assets/font_78f54feb87e78fc5f84d4cc5.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:0.666000;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_c00255;src:url('chunks/assets/font_1a91e107d5f03a29f59d585c.woff2')format("woff");}.ff5_c00255{font-family:ff5_c00255;line-height:1.311035;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_c00255;src:url('chunks/assets/font_589742f9319f0eef0de6c633.woff2')format("woff");}.ff6_c00255{font-family:ff6_c00255;line-height:1.284180;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;}
.m9_c00255{transform:matrix(0.127680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127680,0.000000,0.000000,0.250000,0,0);}
.m6_c00255{transform:matrix(0.168596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168596,0.000000,0.000000,0.250000,0,0);}
.m5_c00255{transform:matrix(0.170936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170936,0.000000,0.000000,0.250000,0,0);}
.mf_c00255{transform:matrix(0.205719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205719,0.000000,0.000000,0.250000,0,0);}
.m12_c00255{transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(0.222702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222702,0.000000,0.000000,0.250000,0,0);}
.m11_c00255{transform:matrix(0.223766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223766,0.000000,0.000000,0.250000,0,0);}
.m13_c00255{transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);}
.md_c00255{transform:matrix(0.226148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226148,0.000000,0.000000,0.250000,0,0);}
.me_c00255{transform:matrix(0.232791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232791,0.000000,0.000000,0.250000,0,0);}
.m3_c00255{transform:matrix(0.232993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232993,0.000000,0.000000,0.250000,0,0);}
.ma_c00255{transform:matrix(0.235348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235348,0.000000,0.000000,0.250000,0,0);}
.mc_c00255{transform:matrix(0.238863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238863,0.000000,0.000000,0.250000,0,0);}
.m8_c00255{transform:matrix(0.240706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240706,0.000000,0.000000,0.250000,0,0);}
.m10_c00255{transform:matrix(0.245152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245152,0.000000,0.000000,0.250000,0,0);}
.m7_c00255{transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);}
.mb_c00255{transform:matrix(0.246518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246518,0.000000,0.000000,0.250000,0,0);}
.m4_c00255{transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);}
.m0_c00255{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);}
.m2_c00255{transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls66_c00255{letter-spacing:-2.688000px;}
.ls83_c00255{letter-spacing:-2.562000px;}
.ls89_c00255{letter-spacing:-2.436000px;}
.ls85_c00255{letter-spacing:-2.415000px;}
.ls5a_c00255{letter-spacing:-2.394000px;}
.ls5d_c00255{letter-spacing:-2.168280px;}
.ls6e_c00255{letter-spacing:-2.134080px;}
.ls84_c00255{letter-spacing:-1.939800px;}
.ls5e_c00255{letter-spacing:-1.586880px;}
.ls77_c00255{letter-spacing:-1.313280px;}
.ls86_c00255{letter-spacing:-1.235100px;}
.ls69_c00255{letter-spacing:-1.197000px;}
.ls73_c00255{letter-spacing:-1.149120px;}
.ls78_c00255{letter-spacing:-1.080720px;}
.ls81_c00255{letter-spacing:-0.950760px;}
.ls87_c00255{letter-spacing:-0.820800px;}
.ls71_c00255{letter-spacing:-0.772920px;}
.ls74_c00255{letter-spacing:-0.745560px;}
.ls7d_c00255{letter-spacing:-0.684000px;}
.ls80_c00255{letter-spacing:-0.636120px;}
.ls72_c00255{letter-spacing:-0.540360px;}
.ls7b_c00255{letter-spacing:-0.526680px;}
.ls7a_c00255{letter-spacing:-0.485640px;}
.ls7f_c00255{letter-spacing:-0.478800px;}
.ls88_c00255{letter-spacing:-0.458280px;}
.ls6d_c00255{letter-spacing:-0.417240px;}
.ls70_c00255{letter-spacing:-0.376200px;}
.ls75_c00255{letter-spacing:-0.328320px;}
.ls6c_c00255{letter-spacing:-0.232560px;}
.ls6b_c00255{letter-spacing:-0.225720px;}
.ls5b_c00255{letter-spacing:-0.171000px;}
.ls63_c00255{letter-spacing:-0.157320px;}
.ls5c_c00255{letter-spacing:-0.150480px;}
.ls76_c00255{letter-spacing:-0.143640px;}
.ls68_c00255{letter-spacing:-0.109440px;}
.ls7c_c00255{letter-spacing:-0.068400px;}
.ls64_c00255{letter-spacing:-0.054720px;}
.ls79_c00255{letter-spacing:-0.041040px;}
.ls8c_c00255{letter-spacing:-0.006840px;}
.ls62_c00255{letter-spacing:0.000000px;}
.ls12_c00255{letter-spacing:0.006840px;}
.ls15_c00255{letter-spacing:0.041040px;}
.ls9_c00255{letter-spacing:0.075240px;}
.ls61_c00255{letter-spacing:0.095760px;}
.ls67_c00255{letter-spacing:0.116280px;}
.ls65_c00255{letter-spacing:0.136800px;}
.ls48_c00255{letter-spacing:0.157320px;}
.ls6f_c00255{letter-spacing:0.164160px;}
.ls35_c00255{letter-spacing:0.177840px;}
.ls3b_c00255{letter-spacing:0.198360px;}
.ls18_c00255{letter-spacing:0.212040px;}
.ls25_c00255{letter-spacing:0.218880px;}
.ls2f_c00255{letter-spacing:0.232560px;}
.ls34_c00255{letter-spacing:0.253080px;}
.ls5_c00255{letter-spacing:0.273600px;}
.ls51_c00255{letter-spacing:0.280440px;}
.ls42_c00255{letter-spacing:0.300960px;}
.ls6a_c00255{letter-spacing:0.321480px;}
.ls31_c00255{letter-spacing:0.335160px;}
.ls11_c00255{letter-spacing:0.342000px;}
.ls47_c00255{letter-spacing:0.355680px;}
.ls29_c00255{letter-spacing:0.376200px;}
.ls7e_c00255{letter-spacing:0.383040px;}
.ls37_c00255{letter-spacing:0.396720px;}
.ls28_c00255{letter-spacing:0.410400px;}
.ls4c_c00255{letter-spacing:0.417240px;}
.ls2_c00255{letter-spacing:0.424080px;}
.ls6_c00255{letter-spacing:0.437760px;}
.ls44_c00255{letter-spacing:0.458280px;}
.ls56_c00255{letter-spacing:0.465120px;}
.ls54_c00255{letter-spacing:0.471960px;}
.ls3_c00255{letter-spacing:0.485640px;}
.ls17_c00255{letter-spacing:0.492480px;}
.ls20_c00255{letter-spacing:0.499320px;}
.ls8b_c00255{letter-spacing:0.513000px;}
.ls8_c00255{letter-spacing:0.519840px;}
.ls4e_c00255{letter-spacing:0.526680px;}
.ls5f_c00255{letter-spacing:0.540360px;}
.ls8d_c00255{letter-spacing:0.547200px;}
.ls3c_c00255{letter-spacing:0.554040px;}
.ls32_c00255{letter-spacing:0.562740px;}
.ls3d_c00255{letter-spacing:0.567720px;}
.ls2d_c00255{letter-spacing:0.574560px;}
.ls21_c00255{letter-spacing:0.583080px;}
.ls19_c00255{letter-spacing:0.595080px;}
.ls50_c00255{letter-spacing:0.608760px;}
.ls4f_c00255{letter-spacing:0.615600px;}
.ls57_c00255{letter-spacing:0.622440px;}
.ls38_c00255{letter-spacing:0.656640px;}
.ls49_c00255{letter-spacing:0.670320px;}
.lsa_c00255{letter-spacing:0.677160px;}
.ls4b_c00255{letter-spacing:0.704520px;}
.ls10_c00255{letter-spacing:0.718200px;}
.lsf_c00255{letter-spacing:0.731880px;}
.ls14_c00255{letter-spacing:0.738720px;}
.ls41_c00255{letter-spacing:0.739020px;}
.ls1b_c00255{letter-spacing:0.745560px;}
.lsc_c00255{letter-spacing:0.752400px;}
.ls58_c00255{letter-spacing:0.759240px;}
.ls13_c00255{letter-spacing:0.759360px;}
.ls22_c00255{letter-spacing:0.766140px;}
.ls0_c00255{letter-spacing:0.772920px;}
.ls52_c00255{letter-spacing:0.806820px;}
.lsd_c00255{letter-spacing:0.807120px;}
.ls3e_c00255{letter-spacing:0.841320px;}
.ls4a_c00255{letter-spacing:0.848160px;}
.ls1_c00255{letter-spacing:0.861060px;}
.ls39_c00255{letter-spacing:0.875520px;}
.ls4d_c00255{letter-spacing:0.916560px;}
.ls1c_c00255{letter-spacing:0.930240px;}
.ls1d_c00255{letter-spacing:0.949200px;}
.ls82_c00255{letter-spacing:0.950760px;}
.ls36_c00255{letter-spacing:0.957600px;}
.ls26_c00255{letter-spacing:0.963900px;}
.ls55_c00255{letter-spacing:0.978120px;}
.ls59_c00255{letter-spacing:1.007340px;}
.ls2a_c00255{letter-spacing:1.012320px;}
.ls4_c00255{letter-spacing:1.017000px;}
.ls7_c00255{letter-spacing:1.060200px;}
.ls45_c00255{letter-spacing:1.067040px;}
.ls24_c00255{letter-spacing:1.087560px;}
.ls2e_c00255{letter-spacing:1.149120px;}
.ls8a_c00255{letter-spacing:1.213620px;}
.ls1e_c00255{letter-spacing:1.224360px;}
.ls46_c00255{letter-spacing:1.231200px;}
.lse_c00255{letter-spacing:1.240740px;}
.ls30_c00255{letter-spacing:1.251720px;}
.ls3a_c00255{letter-spacing:1.285920px;}
.ls27_c00255{letter-spacing:1.313760px;}
.ls23_c00255{letter-spacing:1.347480px;}
.ls33_c00255{letter-spacing:1.356000px;}
.ls40_c00255{letter-spacing:1.376340px;}
.ls2c_c00255{letter-spacing:1.450080px;}
.lsb_c00255{letter-spacing:1.648440px;}
.ls1a_c00255{letter-spacing:1.737360px;}
.ls43_c00255{letter-spacing:1.792080px;}
.ls16_c00255{letter-spacing:1.839960px;}
.ls2b_c00255{letter-spacing:2.065680px;}
.ls53_c00255{letter-spacing:2.086200px;}
.ls1f_c00255{letter-spacing:2.291400px;}
.ls3f_c00255{letter-spacing:2.489760px;}
.ls60_c00255{letter-spacing:3.420000px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{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__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00255{word-spacing:-0.322560px;}
.ws3_c00255{word-spacing:-0.172200px;}
.ws7_c00255{word-spacing:0.000000px;}
.ws6_c00255{word-spacing:0.410520px;}
.ws4_c00255{word-spacing:1.540260px;}
.ws0_c00255{word-spacing:9.238200px;}
.ws2_c00255{word-spacing:15.472200px;}
.ws5_c00255{word-spacing:22.858200px;}
._14_c00255{margin-left:-11.069520px;}
._c_c00255{margin-left:-7.612920px;}
._7_c00255{margin-left:-4.165560px;}
._e_c00255{margin-left:-2.993520px;}
._2_c00255{margin-left:-1.854000px;}
._0_c00255{width:1.139880px;}
._3_c00255{width:2.505840px;}
._b_c00255{width:4.145760px;}
._17_c00255{width:5.294160px;}
._1_c00255{width:6.743520px;}
._5_c00255{width:7.879200px;}
._6_c00255{width:9.077400px;}
._d_c00255{width:10.309920px;}
._4_c00255{width:11.457000px;}
._8_c00255{width:13.037040px;}
._a_c00255{width:14.894160px;}
._9_c00255{width:15.937200px;}
._18_c00255{width:18.262800px;}
._16_c00255{width:19.319520px;}
._15_c00255{width:20.663640px;}
._12_c00255{width:21.874320px;}
._f_c00255{width:23.256000px;}
._11_c00255{width:24.610320px;}
._10_c00255{width:27.004320px;}
._13_c00255{width:29.001600px;}
.fc0_c00255{color:transparent;}
.fs4_c00255{font-size:21.600000px;}
.fs6_c00255{font-size:57.600000px;}
.fs0_c00255{font-size:61.800000px;}
.fs1_c00255{font-size:67.800000px;}
.fs2_c00255{font-size:68.400000px;}
.fs8_c00255{font-size:69.000000px;}
.fs9_c00255{font-size:69.600000px;}
.fs5_c00255{font-size:71.400000px;}
.fs7_c00255{font-size:73.200000px;}
.fs3_c00255{font-size:76.800000px;}
.y0_c00255{bottom:0.000000px;}
.y1a_c00255{bottom:76.335006px;}
.y19_c00255{bottom:182.874606px;}
.y18_c00255{bottom:214.920006px;}
.y17_c00255{bottom:214.927806px;}
.y16_c00255{bottom:246.255006px;}
.y15_c00255{bottom:277.920006px;}
.y13_c00255{bottom:309.606906px;}
.y14_c00255{bottom:309.615006px;}
.y12_c00255{bottom:340.575006px;}
.y11_c00255{bottom:403.210806px;}
.y10_c00255{bottom:434.880006px;}
.yf_c00255{bottom:497.175006px;}
.ye_c00255{bottom:559.452606px;}
.yd_c00255{bottom:591.138906px;}
.yc_c00255{bottom:653.400006px;}
.yb_c00255{bottom:684.720006px;}
.ya_c00255{bottom:747.720006px;}
.y9_c00255{bottom:810.000006px;}
.y8_c00255{bottom:873.000006px;}
.y7_c00255{bottom:899.640006px;}
.y6_c00255{bottom:904.320006px;}
.y5_c00255{bottom:966.615006px;}
.y4_c00255{bottom:1029.975006px;}
.y3_c00255{bottom:1060.935006px;}
.y2_c00255{bottom:1123.935006px;}
.y1_c00255{bottom:1199.895006px;}
.h6_c00255{height:22.528125px;}
.h8_c00255{height:38.361600px;}
.hc_c00255{height:56.531250px;}
.h2_c00255{height:60.653320px;}
.h3_c00255{height:66.508887px;}
.h4_c00255{height:67.130859px;}
.ha_c00255{height:67.686035px;}
.h7_c00255{height:70.040332px;}
.hb_c00255{height:72.590625px;}
.h9_c00255{height:73.771875px;}
.h5_c00255{height:75.375000px;}
.h1_c00255{height:1263.000000px;}
.h0_c00255{height:1263.240006px;}
.w1_c00255{width:892.500000px;}
.w0_c00255{width:892.799998px;}
.x0_c00255{left:0.000000px;}
.x15_c00255{left:119.687699px;}
.xa_c00255{left:121.874999px;}
.x1_c00255{left:123.764999px;}
.x10_c00255{left:174.764998px;}
.xb_c00255{left:175.844999px;}
.x2_c00255{left:177.869998px;}
.x18_c00255{left:193.214999px;}
.x19_c00255{left:249.269999px;}
.x21_c00255{left:284.549999px;}
.x11_c00255{left:295.919999px;}
.x1a_c00255{left:303.644999px;}
.x22_c00255{left:308.579998px;}
.x3_c00255{left:320.594999px;}
.x4_c00255{left:333.869999px;}
.x1b_c00255{left:378.629998px;}
.x1c_c00255{left:404.234998px;}
.x23_c00255{left:411.089998px;}
.x25_c00255{left:424.349999px;}
.x24_c00255{left:446.264998px;}
.xc_c00255{left:448.124998px;}
.xd_c00255{left:479.729999px;}
.x5_c00255{left:483.149999px;}
.x1d_c00255{left:491.594998px;}
.xf_c00255{left:500.969998px;}
.x6_c00255{left:513.539999px;}
.x1e_c00255{left:514.814999px;}
.x12_c00255{left:553.814999px;}
.x13_c00255{left:570.404998px;}
.x14_c00255{left:597.884999px;}
.x16_c00255{left:613.094998px;}
.x1f_c00255{left:615.554999px;}
.x7_c00255{left:634.169999px;}
.x20_c00255{left:649.454998px;}
.x8_c00255{left:668.729999px;}
.x17_c00255{left:675.119999px;}
.xe_c00255{left:708.404998px;}
.x9_c00255{left:725.564999px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls66_c00255{letter-spacing:-2.389333pt;}
.ls83_c00255{letter-spacing:-2.277333pt;}
.ls89_c00255{letter-spacing:-2.165333pt;}
.ls85_c00255{letter-spacing:-2.146667pt;}
.ls5a_c00255{letter-spacing:-2.128000pt;}
.ls5d_c00255{letter-spacing:-1.927360pt;}
.ls6e_c00255{letter-spacing:-1.896960pt;}
.ls84_c00255{letter-spacing:-1.724267pt;}
.ls5e_c00255{letter-spacing:-1.410560pt;}
.ls77_c00255{letter-spacing:-1.167360pt;}
.ls86_c00255{letter-spacing:-1.097867pt;}
.ls69_c00255{letter-spacing:-1.064000pt;}
.ls73_c00255{letter-spacing:-1.021440pt;}
.ls78_c00255{letter-spacing:-0.960640pt;}
.ls81_c00255{letter-spacing:-0.845120pt;}
.ls87_c00255{letter-spacing:-0.729600pt;}
.ls71_c00255{letter-spacing:-0.687040pt;}
.ls74_c00255{letter-spacing:-0.662720pt;}
.ls7d_c00255{letter-spacing:-0.608000pt;}
.ls80_c00255{letter-spacing:-0.565440pt;}
.ls72_c00255{letter-spacing:-0.480320pt;}
.ls7b_c00255{letter-spacing:-0.468160pt;}
.ls7a_c00255{letter-spacing:-0.431680pt;}
.ls7f_c00255{letter-spacing:-0.425600pt;}
.ls88_c00255{letter-spacing:-0.407360pt;}
.ls6d_c00255{letter-spacing:-0.370880pt;}
.ls70_c00255{letter-spacing:-0.334400pt;}
.ls75_c00255{letter-spacing:-0.291840pt;}
.ls6c_c00255{letter-spacing:-0.206720pt;}
.ls6b_c00255{letter-spacing:-0.200640pt;}
.ls5b_c00255{letter-spacing:-0.152000pt;}
.ls63_c00255{letter-spacing:-0.139840pt;}
.ls5c_c00255{letter-spacing:-0.133760pt;}
.ls76_c00255{letter-spacing:-0.127680pt;}
.ls68_c00255{letter-spacing:-0.097280pt;}
.ls7c_c00255{letter-spacing:-0.060800pt;}
.ls64_c00255{letter-spacing:-0.048640pt;}
.ls79_c00255{letter-spacing:-0.036480pt;}
.ls8c_c00255{letter-spacing:-0.006080pt;}
.ls62_c00255{letter-spacing:0.000000pt;}
.ls12_c00255{letter-spacing:0.006080pt;}
.ls15_c00255{letter-spacing:0.036480pt;}
.ls9_c00255{letter-spacing:0.066880pt;}
.ls61_c00255{letter-spacing:0.085120pt;}
.ls67_c00255{letter-spacing:0.103360pt;}
.ls65_c00255{letter-spacing:0.121600pt;}
.ls48_c00255{letter-spacing:0.139840pt;}
.ls6f_c00255{letter-spacing:0.145920pt;}
.ls35_c00255{letter-spacing:0.158080pt;}
.ls3b_c00255{letter-spacing:0.176320pt;}
.ls18_c00255{letter-spacing:0.188480pt;}
.ls25_c00255{letter-spacing:0.194560pt;}
.ls2f_c00255{letter-spacing:0.206720pt;}
.ls34_c00255{letter-spacing:0.224960pt;}
.ls5_c00255{letter-spacing:0.243200pt;}
.ls51_c00255{letter-spacing:0.249280pt;}
.ls42_c00255{letter-spacing:0.267520pt;}
.ls6a_c00255{letter-spacing:0.285760pt;}
.ls31_c00255{letter-spacing:0.297920pt;}
.ls11_c00255{letter-spacing:0.304000pt;}
.ls47_c00255{letter-spacing:0.316160pt;}
.ls29_c00255{letter-spacing:0.334400pt;}
.ls7e_c00255{letter-spacing:0.340480pt;}
.ls37_c00255{letter-spacing:0.352640pt;}
.ls28_c00255{letter-spacing:0.364800pt;}
.ls4c_c00255{letter-spacing:0.370880pt;}
.ls2_c00255{letter-spacing:0.376960pt;}
.ls6_c00255{letter-spacing:0.389120pt;}
.ls44_c00255{letter-spacing:0.407360pt;}
.ls56_c00255{letter-spacing:0.413440pt;}
.ls54_c00255{letter-spacing:0.419520pt;}
.ls3_c00255{letter-spacing:0.431680pt;}
.ls17_c00255{letter-spacing:0.437760pt;}
.ls20_c00255{letter-spacing:0.443840pt;}
.ls8b_c00255{letter-spacing:0.456000pt;}
.ls8_c00255{letter-spacing:0.462080pt;}
.ls4e_c00255{letter-spacing:0.468160pt;}
.ls5f_c00255{letter-spacing:0.480320pt;}
.ls8d_c00255{letter-spacing:0.486400pt;}
.ls3c_c00255{letter-spacing:0.492480pt;}
.ls32_c00255{letter-spacing:0.500213pt;}
.ls3d_c00255{letter-spacing:0.504640pt;}
.ls2d_c00255{letter-spacing:0.510720pt;}
.ls21_c00255{letter-spacing:0.518293pt;}
.ls19_c00255{letter-spacing:0.528960pt;}
.ls50_c00255{letter-spacing:0.541120pt;}
.ls4f_c00255{letter-spacing:0.547200pt;}
.ls57_c00255{letter-spacing:0.553280pt;}
.ls38_c00255{letter-spacing:0.583680pt;}
.ls49_c00255{letter-spacing:0.595840pt;}
.lsa_c00255{letter-spacing:0.601920pt;}
.ls4b_c00255{letter-spacing:0.626240pt;}
.ls10_c00255{letter-spacing:0.638400pt;}
.lsf_c00255{letter-spacing:0.650560pt;}
.ls14_c00255{letter-spacing:0.656640pt;}
.ls41_c00255{letter-spacing:0.656907pt;}
.ls1b_c00255{letter-spacing:0.662720pt;}
.lsc_c00255{letter-spacing:0.668800pt;}
.ls58_c00255{letter-spacing:0.674880pt;}
.ls13_c00255{letter-spacing:0.674987pt;}
.ls22_c00255{letter-spacing:0.681013pt;}
.ls0_c00255{letter-spacing:0.687040pt;}
.ls52_c00255{letter-spacing:0.717173pt;}
.lsd_c00255{letter-spacing:0.717440pt;}
.ls3e_c00255{letter-spacing:0.747840pt;}
.ls4a_c00255{letter-spacing:0.753920pt;}
.ls1_c00255{letter-spacing:0.765387pt;}
.ls39_c00255{letter-spacing:0.778240pt;}
.ls4d_c00255{letter-spacing:0.814720pt;}
.ls1c_c00255{letter-spacing:0.826880pt;}
.ls1d_c00255{letter-spacing:0.843733pt;}
.ls82_c00255{letter-spacing:0.845120pt;}
.ls36_c00255{letter-spacing:0.851200pt;}
.ls26_c00255{letter-spacing:0.856800pt;}
.ls55_c00255{letter-spacing:0.869440pt;}
.ls59_c00255{letter-spacing:0.895413pt;}
.ls2a_c00255{letter-spacing:0.899840pt;}
.ls4_c00255{letter-spacing:0.904000pt;}
.ls7_c00255{letter-spacing:0.942400pt;}
.ls45_c00255{letter-spacing:0.948480pt;}
.ls24_c00255{letter-spacing:0.966720pt;}
.ls2e_c00255{letter-spacing:1.021440pt;}
.ls8a_c00255{letter-spacing:1.078773pt;}
.ls1e_c00255{letter-spacing:1.088320pt;}
.ls46_c00255{letter-spacing:1.094400pt;}
.lse_c00255{letter-spacing:1.102880pt;}
.ls30_c00255{letter-spacing:1.112640pt;}
.ls3a_c00255{letter-spacing:1.143040pt;}
.ls27_c00255{letter-spacing:1.167787pt;}
.ls23_c00255{letter-spacing:1.197760pt;}
.ls33_c00255{letter-spacing:1.205333pt;}
.ls40_c00255{letter-spacing:1.223413pt;}
.ls2c_c00255{letter-spacing:1.288960pt;}
.lsb_c00255{letter-spacing:1.465280pt;}
.ls1a_c00255{letter-spacing:1.544320pt;}
.ls43_c00255{letter-spacing:1.592960pt;}
.ls16_c00255{letter-spacing:1.635520pt;}
.ls2b_c00255{letter-spacing:1.836160pt;}
.ls53_c00255{letter-spacing:1.854400pt;}
.ls1f_c00255{letter-spacing:2.036800pt;}
.ls3f_c00255{letter-spacing:2.213120pt;}
.ls60_c00255{letter-spacing:3.040000pt;}
.ws1_c00255{word-spacing:-0.286720pt;}
.ws3_c00255{word-spacing:-0.153067pt;}
.ws7_c00255{word-spacing:0.000000pt;}
.ws6_c00255{word-spacing:0.364907pt;}
.ws4_c00255{word-spacing:1.369120pt;}
.ws0_c00255{word-spacing:8.211733pt;}
.ws2_c00255{word-spacing:13.753067pt;}
.ws5_c00255{word-spacing:20.318400pt;}
._14_c00255{margin-left:-9.839573pt;}
._c_c00255{margin-left:-6.767040pt;}
._7_c00255{margin-left:-3.702720pt;}
._e_c00255{margin-left:-2.660907pt;}
._2_c00255{margin-left:-1.648000pt;}
._0_c00255{width:1.013227pt;}
._3_c00255{width:2.227413pt;}
._b_c00255{width:3.685120pt;}
._17_c00255{width:4.705920pt;}
._1_c00255{width:5.994240pt;}
._5_c00255{width:7.003733pt;}
._6_c00255{width:8.068800pt;}
._d_c00255{width:9.164373pt;}
._4_c00255{width:10.184000pt;}
._8_c00255{width:11.588480pt;}
._a_c00255{width:13.239253pt;}
._9_c00255{width:14.166400pt;}
._18_c00255{width:16.233600pt;}
._16_c00255{width:17.172907pt;}
._15_c00255{width:18.367680pt;}
._12_c00255{width:19.443840pt;}
._f_c00255{width:20.672000pt;}
._11_c00255{width:21.875840pt;}
._10_c00255{width:24.003840pt;}
._13_c00255{width:25.779200pt;}
.fs4_c00255{font-size:19.200000pt;}
.fs6_c00255{font-size:51.200000pt;}
.fs0_c00255{font-size:54.933333pt;}
.fs1_c00255{font-size:60.266667pt;}
.fs2_c00255{font-size:60.800000pt;}
.fs8_c00255{font-size:61.333333pt;}
.fs9_c00255{font-size:61.866667pt;}
.fs5_c00255{font-size:63.466667pt;}
.fs7_c00255{font-size:65.066667pt;}
.fs3_c00255{font-size:68.266667pt;}
.y0_c00255{bottom:0.000000pt;}
.y1a_c00255{bottom:67.853339pt;}
.y19_c00255{bottom:162.555205pt;}
.y18_c00255{bottom:191.040005pt;}
.y17_c00255{bottom:191.046939pt;}
.y16_c00255{bottom:218.893339pt;}
.y15_c00255{bottom:247.040005pt;}
.y13_c00255{bottom:275.206139pt;}
.y14_c00255{bottom:275.213339pt;}
.y12_c00255{bottom:302.733339pt;}
.y11_c00255{bottom:358.409605pt;}
.y10_c00255{bottom:386.560005pt;}
.yf_c00255{bottom:441.933339pt;}
.ye_c00255{bottom:497.291205pt;}
.yd_c00255{bottom:525.456805pt;}
.yc_c00255{bottom:580.800005pt;}
.yb_c00255{bottom:608.640005pt;}
.ya_c00255{bottom:664.640005pt;}
.y9_c00255{bottom:720.000005pt;}
.y8_c00255{bottom:776.000005pt;}
.y7_c00255{bottom:799.680005pt;}
.y6_c00255{bottom:803.840005pt;}
.y5_c00255{bottom:859.213339pt;}
.y4_c00255{bottom:915.533339pt;}
.y3_c00255{bottom:943.053339pt;}
.y2_c00255{bottom:999.053339pt;}
.y1_c00255{bottom:1066.573339pt;}
.h6_c00255{height:20.025000pt;}
.h8_c00255{height:34.099200pt;}
.hc_c00255{height:50.250000pt;}
.h2_c00255{height:53.914062pt;}
.h3_c00255{height:59.119010pt;}
.h4_c00255{height:59.671875pt;}
.ha_c00255{height:60.165365pt;}
.h7_c00255{height:62.258073pt;}
.hb_c00255{height:64.525000pt;}
.h9_c00255{height:65.575000pt;}
.h5_c00255{height:67.000000pt;}
.h1_c00255{height:1122.666667pt;}
.h0_c00255{height:1122.880005pt;}
.w1_c00255{width:793.333333pt;}
.w0_c00255{width:793.599999pt;}
.x0_c00255{left:0.000000pt;}
.x15_c00255{left:106.389065pt;}
.xa_c00255{left:108.333332pt;}
.x1_c00255{left:110.013332pt;}
.x10_c00255{left:155.346665pt;}
.xb_c00255{left:156.306665pt;}
.x2_c00255{left:158.106665pt;}
.x18_c00255{left:171.746665pt;}
.x19_c00255{left:221.573332pt;}
.x21_c00255{left:252.933332pt;}
.x11_c00255{left:263.039999pt;}
.x1a_c00255{left:269.906665pt;}
.x22_c00255{left:274.293332pt;}
.x3_c00255{left:284.973332pt;}
.x4_c00255{left:296.773332pt;}
.x1b_c00255{left:336.559999pt;}
.x1c_c00255{left:359.319999pt;}
.x23_c00255{left:365.413332pt;}
.x25_c00255{left:377.199999pt;}
.x24_c00255{left:396.679999pt;}
.xc_c00255{left:398.333332pt;}
.xd_c00255{left:426.426665pt;}
.x5_c00255{left:429.466665pt;}
.x1d_c00255{left:436.973332pt;}
.xf_c00255{left:445.306665pt;}
.x6_c00255{left:456.479999pt;}
.x1e_c00255{left:457.613332pt;}
.x12_c00255{left:492.279999pt;}
.x13_c00255{left:507.026665pt;}
.x14_c00255{left:531.453332pt;}
.x16_c00255{left:544.973332pt;}
.x1f_c00255{left:547.159999pt;}
.x7_c00255{left:563.706665pt;}
.x20_c00255{left:577.293332pt;}
.x8_c00255{left:594.426665pt;}
.x17_c00255{left:600.106665pt;}
.xe_c00255{left:629.693332pt;}
.x9_c00255{left:644.946665pt;}
}





/* 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_c00256 {
    display:none;
  }
  .loading-indicator_c00256.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00256 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_c00256 { 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_c00256" -> "#page-container .classname_c00256")
 */
.pf_c00256 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00256 { /* 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_c00256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00256 { /* 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_c00256 { /* 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_c00256 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00256 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00256 {overflow:visible;}
  }
}
.c_c00256 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00256 { /* 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_c00256:after { /* webkit #35443 */
  content: '';
}
.t_c00256:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00256 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 */
}
.__c00256 { /* 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_c00256 { /* info for Javascript */
  display:none;
}
.l_c00256 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00256 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00256 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00256: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_c00256 {
    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_c00256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00256.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_c00256 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00256;src:url('chunks/assets/font_e8a1b331e3b52609c05e55ed.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.284668;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_c00256;src:url('chunks/assets/font_660a862686c4cb7a4905fb46.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.284180;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_c00256;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;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:ff4_c00256;src:url('chunks/assets/font_33ce0ae0d002726207663b9a.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:0.666000;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;}
.m7_c00256{transform:matrix(0.143698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143698,0.000000,0.000000,0.250000,0,0);}
.m2_c00256{transform:matrix(0.203451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203451,0.000000,0.000000,0.250000,0,0);}
.m1_c00256{transform:matrix(0.206277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206277,0.000000,0.000000,0.250000,0,0);}
.m4_c00256{transform:matrix(0.223035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223035,0.000000,0.000000,0.250000,0,0);}
.m5_c00256{transform:matrix(0.223166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223166,0.000000,0.000000,0.250000,0,0);}
.m9_c00256{transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);}
.m8_c00256{transform:matrix(0.247137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247137,0.000000,0.000000,0.250000,0,0);}
.m0_c00256{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);}
.m3_c00256{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m6_c00256{transform:matrix(0.264737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264737,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls5b_c00256{letter-spacing:-2.373000px;}
.ls6f_c00256{letter-spacing:-2.352660px;}
.ls83_c00256{letter-spacing:-2.331000px;}
.ls6b_c00256{letter-spacing:-1.891620px;}
.ls71_c00256{letter-spacing:-1.695000px;}
.ls63_c00256{letter-spacing:-1.600080px;}
.ls70_c00256{letter-spacing:-1.457700px;}
.ls7e_c00256{letter-spacing:-1.301760px;}
.ls72_c00256{letter-spacing:-1.220400px;}
.ls7c_c00256{letter-spacing:-0.935640px;}
.ls61_c00256{letter-spacing:-0.908520px;}
.ls6c_c00256{letter-spacing:-0.888180px;}
.ls5c_c00256{letter-spacing:-0.874620px;}
.ls78_c00256{letter-spacing:-0.847500px;}
.ls7f_c00256{letter-spacing:-0.820380px;}
.ls79_c00256{letter-spacing:-0.732240px;}
.ls6a_c00256{letter-spacing:-0.691560px;}
.ls81_c00256{letter-spacing:-0.515280px;}
.ls82_c00256{letter-spacing:-0.461040px;}
.ls80_c00256{letter-spacing:-0.400020px;}
.ls64_c00256{letter-spacing:-0.359340px;}
.ls7b_c00256{letter-spacing:-0.339000px;}
.ls62_c00256{letter-spacing:-0.305100px;}
.ls60_c00256{letter-spacing:-0.264420px;}
.ls65_c00256{letter-spacing:-0.210180px;}
.ls7d_c00256{letter-spacing:-0.149160px;}
.ls6e_c00256{letter-spacing:-0.135600px;}
.ls5f_c00256{letter-spacing:-0.128820px;}
.ls77_c00256{letter-spacing:-0.108480px;}
.ls66_c00256{letter-spacing:-0.074580px;}
.ls76_c00256{letter-spacing:-0.013560px;}
.ls5d_c00256{letter-spacing:0.000000px;}
.ls23_c00256{letter-spacing:0.020340px;}
.ls58_c00256{letter-spacing:0.027120px;}
.lse_c00256{letter-spacing:0.033900px;}
.lsa_c00256{letter-spacing:0.081360px;}
.ls7a_c00256{letter-spacing:0.088140px;}
.ls69_c00256{letter-spacing:0.094920px;}
.ls17_c00256{letter-spacing:0.101700px;}
.ls50_c00256{letter-spacing:0.108480px;}
.ls44_c00256{letter-spacing:0.115260px;}
.ls47_c00256{letter-spacing:0.135600px;}
.ls35_c00256{letter-spacing:0.142380px;}
.ls30_c00256{letter-spacing:0.162720px;}
.ls3e_c00256{letter-spacing:0.203400px;}
.ls6_c00256{letter-spacing:0.210180px;}
.ls67_c00256{letter-spacing:0.223740px;}
.ls55_c00256{letter-spacing:0.230520px;}
.ls74_c00256{letter-spacing:0.244080px;}
.ls34_c00256{letter-spacing:0.250860px;}
.ls4b_c00256{letter-spacing:0.264420px;}
.ls52_c00256{letter-spacing:0.277980px;}
.ls1b_c00256{letter-spacing:0.298320px;}
.ls1c_c00256{letter-spacing:0.311880px;}
.ls2f_c00256{letter-spacing:0.339000px;}
.ls22_c00256{letter-spacing:0.372900px;}
.ls10_c00256{letter-spacing:0.379680px;}
.ls21_c00256{letter-spacing:0.413580px;}
.ls28_c00256{letter-spacing:0.433920px;}
.ls56_c00256{letter-spacing:0.440700px;}
.ls54_c00256{letter-spacing:0.447480px;}
.ls25_c00256{letter-spacing:0.474600px;}
.lsd_c00256{letter-spacing:0.508500px;}
.ls1f_c00256{letter-spacing:0.515280px;}
.ls57_c00256{letter-spacing:0.549180px;}
.ls1a_c00256{letter-spacing:0.571200px;}
.ls5_c00256{letter-spacing:0.576300px;}
.ls13_c00256{letter-spacing:0.603420px;}
.ls32_c00256{letter-spacing:0.623760px;}
.ls68_c00256{letter-spacing:0.644100px;}
.ls27_c00256{letter-spacing:0.671220px;}
.ls36_c00256{letter-spacing:0.678720px;}
.ls3_c00256{letter-spacing:0.705120px;}
.ls33_c00256{letter-spacing:0.718680px;}
.ls42_c00256{letter-spacing:0.725460px;}
.ls14_c00256{letter-spacing:0.732240px;}
.ls24_c00256{letter-spacing:0.745800px;}
.ls4a_c00256{letter-spacing:0.752580px;}
.lsf_c00256{letter-spacing:0.759360px;}
.ls3c_c00256{letter-spacing:0.766140px;}
.ls53_c00256{letter-spacing:0.772920px;}
.ls2_c00256{letter-spacing:0.800040px;}
.ls16_c00256{letter-spacing:0.806820px;}
.ls18_c00256{letter-spacing:0.813600px;}
.ls3a_c00256{letter-spacing:0.820380px;}
.ls49_c00256{letter-spacing:0.827160px;}
.ls2a_c00256{letter-spacing:0.828240px;}
.ls11_c00256{letter-spacing:0.833940px;}
.ls41_c00256{letter-spacing:0.840720px;}
.ls4_c00256{letter-spacing:0.853440px;}
.ls51_c00256{letter-spacing:0.861060px;}
.ls2d_c00256{letter-spacing:0.867840px;}
.ls19_c00256{letter-spacing:0.873600px;}
.ls48_c00256{letter-spacing:0.888180px;}
.ls59_c00256{letter-spacing:0.894960px;}
.lsb_c00256{letter-spacing:0.942420px;}
.ls37_c00256{letter-spacing:0.954240px;}
.ls7_c00256{letter-spacing:0.983100px;}
.ls15_c00256{letter-spacing:0.987840px;}
.ls39_c00256{letter-spacing:0.996660px;}
.ls29_c00256{letter-spacing:1.010220px;}
.ls46_c00256{letter-spacing:1.030560px;}
.ls1_c00256{letter-spacing:1.044120px;}
.ls3b_c00256{letter-spacing:1.048320px;}
.ls4e_c00256{letter-spacing:1.078020px;}
.ls73_c00256{letter-spacing:1.102080px;}
.ls3f_c00256{letter-spacing:1.105140px;}
.ls40_c00256{letter-spacing:1.139040px;}
.ls9_c00256{letter-spacing:1.159380px;}
.ls4d_c00256{letter-spacing:1.169280px;}
.ls12_c00256{letter-spacing:1.179720px;}
.ls4c_c00256{letter-spacing:1.213620px;}
.ls0_c00256{letter-spacing:1.290240px;}
.ls6d_c00256{letter-spacing:1.294980px;}
.ls3d_c00256{letter-spacing:1.376340px;}
.ls45_c00256{letter-spacing:1.389900px;}
.ls8_c00256{letter-spacing:1.444140px;}
.ls2e_c00256{letter-spacing:1.457700px;}
.ls26_c00256{letter-spacing:1.484820px;}
.ls1e_c00256{letter-spacing:1.498380px;}
.ls43_c00256{letter-spacing:1.505160px;}
.ls75_c00256{letter-spacing:1.545840px;}
.ls5a_c00256{letter-spacing:1.714980px;}
.ls38_c00256{letter-spacing:1.783140px;}
.ls2c_c00256{letter-spacing:1.837440px;}
.ls31_c00256{letter-spacing:2.081460px;}
.ls2b_c00256{letter-spacing:2.122800px;}
.lsc_c00256{letter-spacing:2.203500px;}
.ls1d_c00256{letter-spacing:2.223840px;}
.ls4f_c00256{letter-spacing:2.637420px;}
.ls20_c00256{letter-spacing:3.376440px;}
.ls5e_c00256{letter-spacing:3.390000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{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__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00256{word-spacing:-1.736160px;}
.ws5_c00256{word-spacing:-1.482720px;}
.ws2_c00256{word-spacing:-0.098400px;}
.ws7_c00256{word-spacing:0.000000px;}
.ws1_c00256{word-spacing:10.024800px;}
.ws4_c00256{word-spacing:12.772320px;}
.ws6_c00256{word-spacing:17.284800px;}
.ws3_c00256{word-spacing:22.581600px;}
._e_c00256{margin-left:-10.083420px;}
._9_c00256{margin-left:-7.945620px;}
._0_c00256{margin-left:-4.040880px;}
._1_c00256{margin-left:-2.589960px;}
._8_c00256{margin-left:-1.039740px;}
._f_c00256{width:1.338720px;}
._2_c00256{width:2.733900px;}
._7_c00256{width:3.857820px;}
._10_c00256{width:5.589480px;}
._3_c00256{width:6.780000px;}
._5_c00256{width:8.298720px;}
._6_c00256{width:10.075080px;}
._4_c00256{width:11.187000px;}
._c_c00256{width:12.556560px;}
._a_c00256{width:14.183760px;}
._13_c00256{width:15.736380px;}
._11_c00256{width:18.821280px;}
._12_c00256{width:20.224740px;}
._b_c00256{width:21.682440px;}
._d_c00256{width:25.940580px;}
.fc0_c00256{color:transparent;}
.fs7_c00256{font-size:51.840000px;}
.fs0_c00256{font-size:60.600000px;}
.fs8_c00256{font-size:66.600000px;}
.fs1_c00256{font-size:67.200000px;}
.fs2_c00256{font-size:67.800000px;}
.fs4_c00256{font-size:69.000000px;}
.fs5_c00256{font-size:69.600000px;}
.fs3_c00256{font-size:71.400000px;}
.fs6_c00256{font-size:73.800000px;}
.y0_c00256{bottom:0.000000px;}
.y1b_c00256{bottom:70.575000px;}
.y1a_c00256{bottom:178.935000px;}
.y19_c00256{bottom:178.937100px;}
.y18_c00256{bottom:209.531850px;}
.y17_c00256{bottom:241.567350px;}
.y16_c00256{bottom:272.535000px;}
.y15_c00256{bottom:334.455000px;}
.y14_c00256{bottom:397.447800px;}
.y13_c00256{bottom:429.127350px;}
.y12_c00256{bottom:460.095000px;}
.y11_c00256{bottom:522.720000px;}
.y10_c00256{bottom:554.055000px;}
.ye_c00256{bottom:616.691400px;}
.yf_c00256{bottom:616.695000px;}
.yd_c00256{bottom:648.017100px;}
.yc_c00256{bottom:710.647350px;}
.yb_c00256{bottom:741.615000px;}
.ya_c00256{bottom:804.240000px;}
.y9_c00256{bottom:835.560000px;}
.y8_c00256{bottom:835.560450px;}
.y7_c00256{bottom:867.240000px;}
.y6_c00256{bottom:929.535000px;}
.y5_c00256{bottom:992.167350px;}
.y4_c00256{bottom:1023.129300px;}
.y3_c00256{bottom:1054.080000px;}
.y2_c00256{bottom:1116.375000px;}
.y1_c00256{bottom:1191.975000px;}
.ha_c00256{height:34.525440px;}
.h2_c00256{height:59.475586px;}
.hb_c00256{height:65.364258px;}
.h9_c00256{height:65.920312px;}
.h3_c00256{height:66.541992px;}
.h4_c00256{height:66.564792px;}
.h5_c00256{height:66.572592px;}
.h6_c00256{height:70.075195px;}
.h7_c00256{height:71.964844px;}
.h8_c00256{height:72.430664px;}
.h1_c00256{height:1263.000000px;}
.h0_c00256{height:1263.240000px;}
.w1_c00256{width:892.500000px;}
.w0_c00256{width:892.800000px;}
.x0_c00256{left:0.000000px;}
.x1_c00256{left:126.285000px;}
.x8_c00256{left:127.933350px;}
.x2_c00256{left:180.525000px;}
.xa_c00256{left:197.655000px;}
.xc_c00256{left:348.810000px;}
.xd_c00256{left:379.500000px;}
.x12_c00256{left:426.510000px;}
.xe_c00256{left:431.280000px;}
.xb_c00256{left:434.715000px;}
.x11_c00256{left:442.260000px;}
.x3_c00256{left:462.855000px;}
.x6_c00256{left:466.740000px;}
.x9_c00256{left:471.780000px;}
.x7_c00256{left:489.810000px;}
.x4_c00256{left:495.210000px;}
.xf_c00256{left:535.875000px;}
.x5_c00256{left:698.670000px;}
.x10_c00256{left:704.415000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls5b_c00256{letter-spacing:-2.109333pt;}
.ls6f_c00256{letter-spacing:-2.091253pt;}
.ls83_c00256{letter-spacing:-2.072000pt;}
.ls6b_c00256{letter-spacing:-1.681440pt;}
.ls71_c00256{letter-spacing:-1.506667pt;}
.ls63_c00256{letter-spacing:-1.422293pt;}
.ls70_c00256{letter-spacing:-1.295733pt;}
.ls7e_c00256{letter-spacing:-1.157120pt;}
.ls72_c00256{letter-spacing:-1.084800pt;}
.ls7c_c00256{letter-spacing:-0.831680pt;}
.ls61_c00256{letter-spacing:-0.807573pt;}
.ls6c_c00256{letter-spacing:-0.789493pt;}
.ls5c_c00256{letter-spacing:-0.777440pt;}
.ls78_c00256{letter-spacing:-0.753333pt;}
.ls7f_c00256{letter-spacing:-0.729227pt;}
.ls79_c00256{letter-spacing:-0.650880pt;}
.ls6a_c00256{letter-spacing:-0.614720pt;}
.ls81_c00256{letter-spacing:-0.458027pt;}
.ls82_c00256{letter-spacing:-0.409813pt;}
.ls80_c00256{letter-spacing:-0.355573pt;}
.ls64_c00256{letter-spacing:-0.319413pt;}
.ls7b_c00256{letter-spacing:-0.301333pt;}
.ls62_c00256{letter-spacing:-0.271200pt;}
.ls60_c00256{letter-spacing:-0.235040pt;}
.ls65_c00256{letter-spacing:-0.186827pt;}
.ls7d_c00256{letter-spacing:-0.132587pt;}
.ls6e_c00256{letter-spacing:-0.120533pt;}
.ls5f_c00256{letter-spacing:-0.114507pt;}
.ls77_c00256{letter-spacing:-0.096427pt;}
.ls66_c00256{letter-spacing:-0.066293pt;}
.ls76_c00256{letter-spacing:-0.012053pt;}
.ls5d_c00256{letter-spacing:0.000000pt;}
.ls23_c00256{letter-spacing:0.018080pt;}
.ls58_c00256{letter-spacing:0.024107pt;}
.lse_c00256{letter-spacing:0.030133pt;}
.lsa_c00256{letter-spacing:0.072320pt;}
.ls7a_c00256{letter-spacing:0.078347pt;}
.ls69_c00256{letter-spacing:0.084373pt;}
.ls17_c00256{letter-spacing:0.090400pt;}
.ls50_c00256{letter-spacing:0.096427pt;}
.ls44_c00256{letter-spacing:0.102453pt;}
.ls47_c00256{letter-spacing:0.120533pt;}
.ls35_c00256{letter-spacing:0.126560pt;}
.ls30_c00256{letter-spacing:0.144640pt;}
.ls3e_c00256{letter-spacing:0.180800pt;}
.ls6_c00256{letter-spacing:0.186827pt;}
.ls67_c00256{letter-spacing:0.198880pt;}
.ls55_c00256{letter-spacing:0.204907pt;}
.ls74_c00256{letter-spacing:0.216960pt;}
.ls34_c00256{letter-spacing:0.222987pt;}
.ls4b_c00256{letter-spacing:0.235040pt;}
.ls52_c00256{letter-spacing:0.247093pt;}
.ls1b_c00256{letter-spacing:0.265173pt;}
.ls1c_c00256{letter-spacing:0.277227pt;}
.ls2f_c00256{letter-spacing:0.301333pt;}
.ls22_c00256{letter-spacing:0.331467pt;}
.ls10_c00256{letter-spacing:0.337493pt;}
.ls21_c00256{letter-spacing:0.367627pt;}
.ls28_c00256{letter-spacing:0.385707pt;}
.ls56_c00256{letter-spacing:0.391733pt;}
.ls54_c00256{letter-spacing:0.397760pt;}
.ls25_c00256{letter-spacing:0.421867pt;}
.lsd_c00256{letter-spacing:0.452000pt;}
.ls1f_c00256{letter-spacing:0.458027pt;}
.ls57_c00256{letter-spacing:0.488160pt;}
.ls1a_c00256{letter-spacing:0.507733pt;}
.ls5_c00256{letter-spacing:0.512267pt;}
.ls13_c00256{letter-spacing:0.536373pt;}
.ls32_c00256{letter-spacing:0.554453pt;}
.ls68_c00256{letter-spacing:0.572533pt;}
.ls27_c00256{letter-spacing:0.596640pt;}
.ls36_c00256{letter-spacing:0.603307pt;}
.ls3_c00256{letter-spacing:0.626773pt;}
.ls33_c00256{letter-spacing:0.638827pt;}
.ls42_c00256{letter-spacing:0.644853pt;}
.ls14_c00256{letter-spacing:0.650880pt;}
.ls24_c00256{letter-spacing:0.662933pt;}
.ls4a_c00256{letter-spacing:0.668960pt;}
.lsf_c00256{letter-spacing:0.674987pt;}
.ls3c_c00256{letter-spacing:0.681013pt;}
.ls53_c00256{letter-spacing:0.687040pt;}
.ls2_c00256{letter-spacing:0.711147pt;}
.ls16_c00256{letter-spacing:0.717173pt;}
.ls18_c00256{letter-spacing:0.723200pt;}
.ls3a_c00256{letter-spacing:0.729227pt;}
.ls49_c00256{letter-spacing:0.735253pt;}
.ls2a_c00256{letter-spacing:0.736213pt;}
.ls11_c00256{letter-spacing:0.741280pt;}
.ls41_c00256{letter-spacing:0.747307pt;}
.ls4_c00256{letter-spacing:0.758613pt;}
.ls51_c00256{letter-spacing:0.765387pt;}
.ls2d_c00256{letter-spacing:0.771413pt;}
.ls19_c00256{letter-spacing:0.776533pt;}
.ls48_c00256{letter-spacing:0.789493pt;}
.ls59_c00256{letter-spacing:0.795520pt;}
.lsb_c00256{letter-spacing:0.837707pt;}
.ls37_c00256{letter-spacing:0.848213pt;}
.ls7_c00256{letter-spacing:0.873867pt;}
.ls15_c00256{letter-spacing:0.878080pt;}
.ls39_c00256{letter-spacing:0.885920pt;}
.ls29_c00256{letter-spacing:0.897973pt;}
.ls46_c00256{letter-spacing:0.916053pt;}
.ls1_c00256{letter-spacing:0.928107pt;}
.ls3b_c00256{letter-spacing:0.931840pt;}
.ls4e_c00256{letter-spacing:0.958240pt;}
.ls73_c00256{letter-spacing:0.979627pt;}
.ls3f_c00256{letter-spacing:0.982347pt;}
.ls40_c00256{letter-spacing:1.012480pt;}
.ls9_c00256{letter-spacing:1.030560pt;}
.ls4d_c00256{letter-spacing:1.039360pt;}
.ls12_c00256{letter-spacing:1.048640pt;}
.ls4c_c00256{letter-spacing:1.078773pt;}
.ls0_c00256{letter-spacing:1.146880pt;}
.ls6d_c00256{letter-spacing:1.151093pt;}
.ls3d_c00256{letter-spacing:1.223413pt;}
.ls45_c00256{letter-spacing:1.235467pt;}
.ls8_c00256{letter-spacing:1.283680pt;}
.ls2e_c00256{letter-spacing:1.295733pt;}
.ls26_c00256{letter-spacing:1.319840pt;}
.ls1e_c00256{letter-spacing:1.331893pt;}
.ls43_c00256{letter-spacing:1.337920pt;}
.ls75_c00256{letter-spacing:1.374080pt;}
.ls5a_c00256{letter-spacing:1.524427pt;}
.ls38_c00256{letter-spacing:1.585013pt;}
.ls2c_c00256{letter-spacing:1.633280pt;}
.ls31_c00256{letter-spacing:1.850187pt;}
.ls2b_c00256{letter-spacing:1.886933pt;}
.lsc_c00256{letter-spacing:1.958667pt;}
.ls1d_c00256{letter-spacing:1.976747pt;}
.ls4f_c00256{letter-spacing:2.344373pt;}
.ls20_c00256{letter-spacing:3.001280pt;}
.ls5e_c00256{letter-spacing:3.013333pt;}
.ws0_c00256{word-spacing:-1.543253pt;}
.ws5_c00256{word-spacing:-1.317973pt;}
.ws2_c00256{word-spacing:-0.087467pt;}
.ws7_c00256{word-spacing:0.000000pt;}
.ws1_c00256{word-spacing:8.910933pt;}
.ws4_c00256{word-spacing:11.353173pt;}
.ws6_c00256{word-spacing:15.364267pt;}
.ws3_c00256{word-spacing:20.072533pt;}
._e_c00256{margin-left:-8.963040pt;}
._9_c00256{margin-left:-7.062773pt;}
._0_c00256{margin-left:-3.591893pt;}
._1_c00256{margin-left:-2.302187pt;}
._8_c00256{margin-left:-0.924213pt;}
._f_c00256{width:1.189973pt;}
._2_c00256{width:2.430133pt;}
._7_c00256{width:3.429173pt;}
._10_c00256{width:4.968427pt;}
._3_c00256{width:6.026667pt;}
._5_c00256{width:7.376640pt;}
._6_c00256{width:8.955627pt;}
._4_c00256{width:9.944000pt;}
._c_c00256{width:11.161387pt;}
._a_c00256{width:12.607787pt;}
._13_c00256{width:13.987893pt;}
._11_c00256{width:16.730027pt;}
._12_c00256{width:17.977547pt;}
._b_c00256{width:19.273280pt;}
._d_c00256{width:23.058293pt;}
.fs7_c00256{font-size:46.080000pt;}
.fs0_c00256{font-size:53.866667pt;}
.fs8_c00256{font-size:59.200000pt;}
.fs1_c00256{font-size:59.733333pt;}
.fs2_c00256{font-size:60.266667pt;}
.fs4_c00256{font-size:61.333333pt;}
.fs5_c00256{font-size:61.866667pt;}
.fs3_c00256{font-size:63.466667pt;}
.fs6_c00256{font-size:65.600000pt;}
.y0_c00256{bottom:0.000000pt;}
.y1b_c00256{bottom:62.733333pt;}
.y1a_c00256{bottom:159.053333pt;}
.y19_c00256{bottom:159.055200pt;}
.y18_c00256{bottom:186.250533pt;}
.y17_c00256{bottom:214.726533pt;}
.y16_c00256{bottom:242.253333pt;}
.y15_c00256{bottom:297.293333pt;}
.y14_c00256{bottom:353.286933pt;}
.y13_c00256{bottom:381.446533pt;}
.y12_c00256{bottom:408.973333pt;}
.y11_c00256{bottom:464.640000pt;}
.y10_c00256{bottom:492.493333pt;}
.ye_c00256{bottom:548.170133pt;}
.yf_c00256{bottom:548.173333pt;}
.yd_c00256{bottom:576.015200pt;}
.yc_c00256{bottom:631.686533pt;}
.yb_c00256{bottom:659.213333pt;}
.ya_c00256{bottom:714.880000pt;}
.y9_c00256{bottom:742.720000pt;}
.y8_c00256{bottom:742.720400pt;}
.y7_c00256{bottom:770.880000pt;}
.y6_c00256{bottom:826.253333pt;}
.y5_c00256{bottom:881.926533pt;}
.y4_c00256{bottom:909.448267pt;}
.y3_c00256{bottom:936.960000pt;}
.y2_c00256{bottom:992.333333pt;}
.y1_c00256{bottom:1059.533333pt;}
.ha_c00256{height:30.689280pt;}
.h2_c00256{height:52.867187pt;}
.hb_c00256{height:58.101562pt;}
.h9_c00256{height:58.595833pt;}
.h3_c00256{height:59.148438pt;}
.h4_c00256{height:59.168704pt;}
.h5_c00256{height:59.175637pt;}
.h6_c00256{height:62.289062pt;}
.h7_c00256{height:63.968750pt;}
.h8_c00256{height:64.382813pt;}
.h1_c00256{height:1122.666667pt;}
.h0_c00256{height:1122.880000pt;}
.w1_c00256{width:793.333333pt;}
.w0_c00256{width:793.600000pt;}
.x0_c00256{left:0.000000pt;}
.x1_c00256{left:112.253333pt;}
.x8_c00256{left:113.718533pt;}
.x2_c00256{left:160.466667pt;}
.xa_c00256{left:175.693333pt;}
.xc_c00256{left:310.053333pt;}
.xd_c00256{left:337.333333pt;}
.x12_c00256{left:379.120000pt;}
.xe_c00256{left:383.360000pt;}
.xb_c00256{left:386.413333pt;}
.x11_c00256{left:393.120000pt;}
.x3_c00256{left:411.426667pt;}
.x6_c00256{left:414.880000pt;}
.x9_c00256{left:419.360000pt;}
.x7_c00256{left:435.386667pt;}
.x4_c00256{left:440.186667pt;}
.xf_c00256{left:476.333333pt;}
.x5_c00256{left:621.040000pt;}
.x10_c00256{left:626.146667pt;}
}





/* 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_c00257 {
    display:none;
  }
  .loading-indicator_c00257.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00257 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_c00257 { 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_c00257" -> "#page-container .classname_c00257")
 */
.pf_c00257 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00257 { /* 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_c00257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00257 { /* 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_c00257 { /* 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_c00257 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00257 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00257 {overflow:visible;}
  }
}
.c_c00257 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00257 { /* 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_c00257:after { /* webkit #35443 */
  content: '';
}
.t_c00257:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00257 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 */
}
.__c00257 { /* 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_c00257 { /* info for Javascript */
  display:none;
}
.l_c00257 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00257 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00257 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00257: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_c00257 {
    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_c00257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00257.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_c00257 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00257;src:url('chunks/assets/font_abe3765c90533a53d5df3afc.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.284668;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_c00257;src:url('chunks/assets/font_a482b47f20b96f4b95595e24.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.284180;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_c00257;src:url('chunks/assets/font_3c0023a3e5ae0b6db71e1abe.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;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:ff4_c00257;src:url('chunks/assets/font_fb2ef04f641610af403f2b3a.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:0.666000;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_c00257;src:url('chunks/assets/font_b7166f4a7030f39c94571e40.woff2')format("woff");}.ff5_c00257{font-family:ff5_c00257;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;}
.mb_c00257{transform:matrix(0.117647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117647,0.000000,0.000000,0.250000,0,0);}
.m4_c00257{transform:matrix(0.216417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216417,0.000000,0.000000,0.250000,0,0);}
.m6_c00257{transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);}
.m0_c00257{transform:matrix(0.245779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245779,0.000000,0.000000,0.250000,0,0);}
.m5_c00257{transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);}
.m3_c00257{transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);}
.m1_c00257{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);}
.m7_c00257{transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);}
.m2_c00257{transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);}
.m9_c00257{transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);}
.me_c00257{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.m8_c00257{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mc_c00257{transform:matrix(0.458645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458645,0.000000,0.000000,0.250000,0,0);}
.md_c00257{transform:matrix(0.505500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505500,0.000000,0.000000,0.250000,0,0);}
.ma_c00257{transform:matrix(0.518438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518438,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls68_c00257{letter-spacing:-2.373000px;}
.ls70_c00257{letter-spacing:-2.352000px;}
.ls6c_c00257{letter-spacing:-1.612800px;}
.ls6d_c00257{letter-spacing:-1.135680px;}
.ls76_c00257{letter-spacing:-0.409920px;}
.ls6f_c00257{letter-spacing:-0.389760px;}
.ls79_c00257{letter-spacing:-0.120960px;}
.ls7b_c00257{letter-spacing:-0.026880px;}
.ls69_c00257{letter-spacing:0.000000px;}
.ls7c_c00257{letter-spacing:0.013440px;}
.ls5d_c00257{letter-spacing:0.127680px;}
.ls7a_c00257{letter-spacing:0.154560px;}
.ls50_c00257{letter-spacing:0.215040px;}
.ls57_c00257{letter-spacing:0.241920px;}
.ls23_c00257{letter-spacing:0.255360px;}
.ls5e_c00257{letter-spacing:0.295680px;}
.ls26_c00257{letter-spacing:0.322560px;}
.ls59_c00257{letter-spacing:0.336000px;}
.ls82_c00257{letter-spacing:0.376320px;}
.ls81_c00257{letter-spacing:0.383040px;}
.ls3_c00257{letter-spacing:0.463680px;}
.ls2a_c00257{letter-spacing:0.477120px;}
.lsf_c00257{letter-spacing:0.504000px;}
.ls53_c00257{letter-spacing:0.510720px;}
.ls4e_c00257{letter-spacing:0.517440px;}
.ls5f_c00257{letter-spacing:0.522060px;}
.ls4a_c00257{letter-spacing:0.524160px;}
.ls4f_c00257{letter-spacing:0.530880px;}
.ls7d_c00257{letter-spacing:0.551040px;}
.ls6b_c00257{letter-spacing:0.571200px;}
.ls22_c00257{letter-spacing:0.584640px;}
.ls5c_c00257{letter-spacing:0.591360px;}
.ls54_c00257{letter-spacing:0.598080px;}
.ls7_c00257{letter-spacing:0.603420px;}
.ls17_c00257{letter-spacing:0.631680px;}
.ls34_c00257{letter-spacing:0.645120px;}
.ls25_c00257{letter-spacing:0.678720px;}
.ls38_c00257{letter-spacing:0.685440px;}
.ls2c_c00257{letter-spacing:0.698340px;}
.lsb_c00257{letter-spacing:0.705600px;}
.lsd_c00257{letter-spacing:0.719040px;}
.ls29_c00257{letter-spacing:0.766080px;}
.ls27_c00257{letter-spacing:0.772920px;}
.ls85_c00257{letter-spacing:0.779520px;}
.ls32_c00257{letter-spacing:0.799680px;}
.ls20_c00257{letter-spacing:0.813120px;}
.ls86_c00257{letter-spacing:0.820620px;}
.ls43_c00257{letter-spacing:0.833280px;}
.ls72_c00257{letter-spacing:0.840000px;}
.ls33_c00257{letter-spacing:0.866880px;}
.ls4_c00257{letter-spacing:0.873600px;}
.ls62_c00257{letter-spacing:0.880320px;}
.ls4d_c00257{letter-spacing:0.887040px;}
.ls8_c00257{letter-spacing:0.900480px;}
.ls2b_c00257{letter-spacing:0.907200px;}
.ls1d_c00257{letter-spacing:0.913920px;}
.ls83_c00257{letter-spacing:0.927360px;}
.ls5b_c00257{letter-spacing:0.934080px;}
.ls47_c00257{letter-spacing:0.935640px;}
.ls63_c00257{letter-spacing:0.942420px;}
.ls44_c00257{letter-spacing:0.960960px;}
.ls45_c00257{letter-spacing:0.974400px;}
.ls5_c00257{letter-spacing:0.987840px;}
.ls77_c00257{letter-spacing:0.994560px;}
.ls3d_c00257{letter-spacing:1.001280px;}
.ls28_c00257{letter-spacing:1.017000px;}
.ls3b_c00257{letter-spacing:1.021440px;}
.ls61_c00257{letter-spacing:1.055040px;}
.ls0_c00257{letter-spacing:1.057680px;}
.ls13_c00257{letter-spacing:1.068480px;}
.ls3e_c00257{letter-spacing:1.081920px;}
.ls1b_c00257{letter-spacing:1.115520px;}
.lse_c00257{letter-spacing:1.128960px;}
.ls4b_c00257{letter-spacing:1.135680px;}
.ls1e_c00257{letter-spacing:1.155840px;}
.ls56_c00257{letter-spacing:1.182720px;}
.ls9_c00257{letter-spacing:1.189440px;}
.ls64_c00257{letter-spacing:1.196160px;}
.ls1a_c00257{letter-spacing:1.202880px;}
.ls42_c00257{letter-spacing:1.240740px;}
.ls30_c00257{letter-spacing:1.254300px;}
.ls35_c00257{letter-spacing:1.263360px;}
.ls58_c00257{letter-spacing:1.276800px;}
.ls51_c00257{letter-spacing:1.290240px;}
.ls80_c00257{letter-spacing:1.296960px;}
.ls6_c00257{letter-spacing:1.301760px;}
.ls19_c00257{letter-spacing:1.303680px;}
.ls66_c00257{letter-spacing:1.310400px;}
.ls7e_c00257{letter-spacing:1.350030px;}
.ls71_c00257{letter-spacing:1.356000px;}
.ls78_c00257{letter-spacing:1.384320px;}
.ls24_c00257{letter-spacing:1.391040px;}
.ls5a_c00257{letter-spacing:1.411200px;}
.ls2f_c00257{letter-spacing:1.431360px;}
.ls74_c00257{letter-spacing:1.438080px;}
.ls41_c00257{letter-spacing:1.451520px;}
.ls1f_c00257{letter-spacing:1.464960px;}
.ls4c_c00257{letter-spacing:1.471680px;}
.ls3c_c00257{letter-spacing:1.485120px;}
.ls55_c00257{letter-spacing:1.525440px;}
.ls39_c00257{letter-spacing:1.538880px;}
.ls1_c00257{letter-spacing:1.552320px;}
.ls40_c00257{letter-spacing:1.565760px;}
.ls31_c00257{letter-spacing:1.572480px;}
.ls49_c00257{letter-spacing:1.599360px;}
.ls73_c00257{letter-spacing:1.639680px;}
.ls75_c00257{letter-spacing:1.646400px;}
.ls2d_c00257{letter-spacing:1.666560px;}
.ls46_c00257{letter-spacing:1.700160px;}
.ls18_c00257{letter-spacing:1.881600px;}
.ls3a_c00257{letter-spacing:1.901760px;}
.ls65_c00257{letter-spacing:1.948800px;}
.ls16_c00257{letter-spacing:1.979760px;}
.ls2_c00257{letter-spacing:2.016000px;}
.ls10_c00257{letter-spacing:2.036160px;}
.ls2e_c00257{letter-spacing:2.170560px;}
.ls6e_c00257{letter-spacing:2.204160px;}
.ls14_c00257{letter-spacing:2.210280px;}
.ls37_c00257{letter-spacing:2.244480px;}
.ls60_c00257{letter-spacing:2.493120px;}
.ls3f_c00257{letter-spacing:2.520000px;}
.ls11_c00257{letter-spacing:2.573760px;}
.ls52_c00257{letter-spacing:2.587200px;}
.lsc_c00257{letter-spacing:2.593920px;}
.lsa_c00257{letter-spacing:2.620800px;}
.ls36_c00257{letter-spacing:2.755200px;}
.ls21_c00257{letter-spacing:2.808960px;}
.ls48_c00257{letter-spacing:2.882880px;}
.ls1c_c00257{letter-spacing:2.909760px;}
.ls12_c00257{letter-spacing:2.976960px;}
.ls67_c00257{letter-spacing:3.030720px;}
.ls84_c00257{letter-spacing:3.292800px;}
.ls7f_c00257{letter-spacing:3.306240px;}
.ls6a_c00257{letter-spacing:3.360000px;}
.ls15_c00257{letter-spacing:3.369660px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{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__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00257{word-spacing:-1.799400px;}
.ws3_c00257{word-spacing:-1.762560px;}
.ws6_c00257{word-spacing:0.000000px;}
.ws5_c00257{word-spacing:6.215580px;}
.ws1_c00257{word-spacing:6.515580px;}
.ws2_c00257{word-spacing:9.336000px;}
.ws4_c00257{word-spacing:19.469400px;}
._8_c00257{margin-left:-7.808640px;}
._7_c00257{margin-left:-6.142080px;}
._0_c00257{margin-left:-5.019840px;}
._9_c00257{margin-left:-3.417120px;}
._f_c00257{margin-left:-2.184120px;}
._1_c00257{margin-left:-1.075200px;}
._5_c00257{width:1.715880px;}
._a_c00257{width:3.578760px;}
._6_c00257{width:5.275200px;}
._4_c00257{width:6.495240px;}
._13_c00257{width:7.560000px;}
._12_c00257{width:8.789760px;}
._b_c00257{width:10.252440px;}
._c_c00257{width:11.446440px;}
._2_c00257{width:13.023360px;}
._14_c00257{width:14.817600px;}
._10_c00257{width:16.705920px;}
._3_c00257{width:19.286400px;}
._11_c00257{width:20.323200px;}
._d_c00257{width:21.427560px;}
._16_c00257{width:22.491840px;}
._15_c00257{width:23.916480px;}
._e_c00257{width:27.673440px;}
.fc0_c00257{color:transparent;}
.fs3_c00257{font-size:24.480000px;}
.fs2_c00257{font-size:27.000600px;}
.fs4_c00257{font-size:58.200000px;}
.fs1_c00257{font-size:67.200000px;}
.fs0_c00257{font-size:67.800000px;}
.y0_c00257{bottom:0.000000px;}
.y1d_c00257{bottom:69.855000px;}
.y1c_c00257{bottom:209.170200px;}
.y1b_c00257{bottom:240.855000px;}
.y1a_c00257{bottom:303.135000px;}
.y18_c00257{bottom:366.130200px;}
.y19_c00257{bottom:366.135000px;}
.y17_c00257{bottom:397.815000px;}
.y16_c00257{bottom:397.821600px;}
.y15_c00257{bottom:429.120000px;}
.y14_c00257{bottom:429.124800px;}
.y13_c00257{bottom:460.440000px;}
.y12_c00257{bottom:515.895000px;}
.y11_c00257{bottom:522.735000px;}
.y10_c00257{bottom:586.090200px;}
.yf_c00257{bottom:617.775000px;}
.ye_c00257{bottom:648.735000px;}
.yc_c00257{bottom:711.355800px;}
.yd_c00257{bottom:711.360000px;}
.yb_c00257{bottom:742.335000px;}
.ya_c00257{bottom:773.655000px;}
.y9_c00257{bottom:836.655000px;}
.y8_c00257{bottom:836.659800px;}
.y7_c00257{bottom:867.972600px;}
.y6_c00257{bottom:930.972600px;}
.y5_c00257{bottom:961.935000px;}
.y4_c00257{bottom:1024.935000px;}
.y3_c00257{bottom:1055.880000px;}
.y2_c00257{bottom:1118.520000px;}
.y1_c00257{bottom:1194.855000px;}
.h7_c00257{height:16.303680px;}
.h6_c00257{height:28.160782px;}
.h8_c00257{height:57.120117px;}
.h4_c00257{height:65.953125px;}
.h5_c00257{height:65.962725px;}
.h3_c00257{height:66.508887px;}
.h2_c00257{height:66.541992px;}
.h1_c00257{height:1263.000000px;}
.h0_c00257{height:1263.240000px;}
.w1_c00257{width:892.500000px;}
.w0_c00257{width:892.800000px;}
.x0_c00257{left:0.000000px;}
.x10_c00257{left:120.600000px;}
.x3_c00257{left:122.790000px;}
.x1_c00257{left:124.485000px;}
.x11_c00257{left:143.310000px;}
.x4_c00257{left:150.510000px;}
.x1e_c00257{left:172.260000px;}
.xf_c00257{left:175.125000px;}
.x6_c00257{left:176.313000px;}
.x2_c00257{left:178.005000px;}
.x5_c00257{left:179.310000px;}
.x1a_c00257{left:192.420000px;}
.xd_c00257{left:210.495000px;}
.x1b_c00257{left:215.130000px;}
.xe_c00257{left:265.095000px;}
.x14_c00257{left:309.135000px;}
.xb_c00257{left:353.130000px;}
.xc_c00257{left:387.945000px;}
.x7_c00257{left:389.685000px;}
.x21_c00257{left:424.710000px;}
.x15_c00257{left:460.155000px;}
.x1f_c00257{left:475.470000px;}
.x16_c00257{left:483.495000px;}
.x20_c00257{left:500.940000px;}
.x17_c00257{left:513.975000px;}
.x8_c00257{left:540.210000px;}
.x9_c00257{left:555.300000px;}
.xa_c00257{left:582.990000px;}
.x18_c00257{left:601.140000px;}
.x1c_c00257{left:609.300000px;}
.x1d_c00257{left:632.370000px;}
.x12_c00257{left:660.870000px;}
.x13_c00257{left:685.995000px;}
.x19_c00257{left:695.880000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls68_c00257{letter-spacing:-2.109333pt;}
.ls70_c00257{letter-spacing:-2.090667pt;}
.ls6c_c00257{letter-spacing:-1.433600pt;}
.ls6d_c00257{letter-spacing:-1.009493pt;}
.ls76_c00257{letter-spacing:-0.364373pt;}
.ls6f_c00257{letter-spacing:-0.346453pt;}
.ls79_c00257{letter-spacing:-0.107520pt;}
.ls7b_c00257{letter-spacing:-0.023893pt;}
.ls69_c00257{letter-spacing:0.000000pt;}
.ls7c_c00257{letter-spacing:0.011947pt;}
.ls5d_c00257{letter-spacing:0.113493pt;}
.ls7a_c00257{letter-spacing:0.137387pt;}
.ls50_c00257{letter-spacing:0.191147pt;}
.ls57_c00257{letter-spacing:0.215040pt;}
.ls23_c00257{letter-spacing:0.226987pt;}
.ls5e_c00257{letter-spacing:0.262827pt;}
.ls26_c00257{letter-spacing:0.286720pt;}
.ls59_c00257{letter-spacing:0.298667pt;}
.ls82_c00257{letter-spacing:0.334507pt;}
.ls81_c00257{letter-spacing:0.340480pt;}
.ls3_c00257{letter-spacing:0.412160pt;}
.ls2a_c00257{letter-spacing:0.424107pt;}
.lsf_c00257{letter-spacing:0.448000pt;}
.ls53_c00257{letter-spacing:0.453973pt;}
.ls4e_c00257{letter-spacing:0.459947pt;}
.ls5f_c00257{letter-spacing:0.464053pt;}
.ls4a_c00257{letter-spacing:0.465920pt;}
.ls4f_c00257{letter-spacing:0.471893pt;}
.ls7d_c00257{letter-spacing:0.489813pt;}
.ls6b_c00257{letter-spacing:0.507733pt;}
.ls22_c00257{letter-spacing:0.519680pt;}
.ls5c_c00257{letter-spacing:0.525653pt;}
.ls54_c00257{letter-spacing:0.531627pt;}
.ls7_c00257{letter-spacing:0.536373pt;}
.ls17_c00257{letter-spacing:0.561493pt;}
.ls34_c00257{letter-spacing:0.573440pt;}
.ls25_c00257{letter-spacing:0.603307pt;}
.ls38_c00257{letter-spacing:0.609280pt;}
.ls2c_c00257{letter-spacing:0.620747pt;}
.lsb_c00257{letter-spacing:0.627200pt;}
.lsd_c00257{letter-spacing:0.639147pt;}
.ls29_c00257{letter-spacing:0.680960pt;}
.ls27_c00257{letter-spacing:0.687040pt;}
.ls85_c00257{letter-spacing:0.692907pt;}
.ls32_c00257{letter-spacing:0.710827pt;}
.ls20_c00257{letter-spacing:0.722773pt;}
.ls86_c00257{letter-spacing:0.729440pt;}
.ls43_c00257{letter-spacing:0.740693pt;}
.ls72_c00257{letter-spacing:0.746667pt;}
.ls33_c00257{letter-spacing:0.770560pt;}
.ls4_c00257{letter-spacing:0.776533pt;}
.ls62_c00257{letter-spacing:0.782507pt;}
.ls4d_c00257{letter-spacing:0.788480pt;}
.ls8_c00257{letter-spacing:0.800427pt;}
.ls2b_c00257{letter-spacing:0.806400pt;}
.ls1d_c00257{letter-spacing:0.812373pt;}
.ls83_c00257{letter-spacing:0.824320pt;}
.ls5b_c00257{letter-spacing:0.830293pt;}
.ls47_c00257{letter-spacing:0.831680pt;}
.ls63_c00257{letter-spacing:0.837707pt;}
.ls44_c00257{letter-spacing:0.854187pt;}
.ls45_c00257{letter-spacing:0.866133pt;}
.ls5_c00257{letter-spacing:0.878080pt;}
.ls77_c00257{letter-spacing:0.884053pt;}
.ls3d_c00257{letter-spacing:0.890027pt;}
.ls28_c00257{letter-spacing:0.904000pt;}
.ls3b_c00257{letter-spacing:0.907947pt;}
.ls61_c00257{letter-spacing:0.937813pt;}
.ls0_c00257{letter-spacing:0.940160pt;}
.ls13_c00257{letter-spacing:0.949760pt;}
.ls3e_c00257{letter-spacing:0.961707pt;}
.ls1b_c00257{letter-spacing:0.991573pt;}
.lse_c00257{letter-spacing:1.003520pt;}
.ls4b_c00257{letter-spacing:1.009493pt;}
.ls1e_c00257{letter-spacing:1.027413pt;}
.ls56_c00257{letter-spacing:1.051307pt;}
.ls9_c00257{letter-spacing:1.057280pt;}
.ls64_c00257{letter-spacing:1.063253pt;}
.ls1a_c00257{letter-spacing:1.069227pt;}
.ls42_c00257{letter-spacing:1.102880pt;}
.ls30_c00257{letter-spacing:1.114933pt;}
.ls35_c00257{letter-spacing:1.122987pt;}
.ls58_c00257{letter-spacing:1.134933pt;}
.ls51_c00257{letter-spacing:1.146880pt;}
.ls80_c00257{letter-spacing:1.152853pt;}
.ls6_c00257{letter-spacing:1.157120pt;}
.ls19_c00257{letter-spacing:1.158827pt;}
.ls66_c00257{letter-spacing:1.164800pt;}
.ls7e_c00257{letter-spacing:1.200027pt;}
.ls71_c00257{letter-spacing:1.205333pt;}
.ls78_c00257{letter-spacing:1.230507pt;}
.ls24_c00257{letter-spacing:1.236480pt;}
.ls5a_c00257{letter-spacing:1.254400pt;}
.ls2f_c00257{letter-spacing:1.272320pt;}
.ls74_c00257{letter-spacing:1.278293pt;}
.ls41_c00257{letter-spacing:1.290240pt;}
.ls1f_c00257{letter-spacing:1.302187pt;}
.ls4c_c00257{letter-spacing:1.308160pt;}
.ls3c_c00257{letter-spacing:1.320107pt;}
.ls55_c00257{letter-spacing:1.355947pt;}
.ls39_c00257{letter-spacing:1.367893pt;}
.ls1_c00257{letter-spacing:1.379840pt;}
.ls40_c00257{letter-spacing:1.391787pt;}
.ls31_c00257{letter-spacing:1.397760pt;}
.ls49_c00257{letter-spacing:1.421653pt;}
.ls73_c00257{letter-spacing:1.457493pt;}
.ls75_c00257{letter-spacing:1.463467pt;}
.ls2d_c00257{letter-spacing:1.481387pt;}
.ls46_c00257{letter-spacing:1.511253pt;}
.ls18_c00257{letter-spacing:1.672533pt;}
.ls3a_c00257{letter-spacing:1.690453pt;}
.ls65_c00257{letter-spacing:1.732267pt;}
.ls16_c00257{letter-spacing:1.759787pt;}
.ls2_c00257{letter-spacing:1.792000pt;}
.ls10_c00257{letter-spacing:1.809920pt;}
.ls2e_c00257{letter-spacing:1.929387pt;}
.ls6e_c00257{letter-spacing:1.959253pt;}
.ls14_c00257{letter-spacing:1.964693pt;}
.ls37_c00257{letter-spacing:1.995093pt;}
.ls60_c00257{letter-spacing:2.216107pt;}
.ls3f_c00257{letter-spacing:2.240000pt;}
.ls11_c00257{letter-spacing:2.287787pt;}
.ls52_c00257{letter-spacing:2.299733pt;}
.lsc_c00257{letter-spacing:2.305707pt;}
.lsa_c00257{letter-spacing:2.329600pt;}
.ls36_c00257{letter-spacing:2.449067pt;}
.ls21_c00257{letter-spacing:2.496853pt;}
.ls48_c00257{letter-spacing:2.562560pt;}
.ls1c_c00257{letter-spacing:2.586453pt;}
.ls12_c00257{letter-spacing:2.646187pt;}
.ls67_c00257{letter-spacing:2.693973pt;}
.ls84_c00257{letter-spacing:2.926933pt;}
.ls7f_c00257{letter-spacing:2.938880pt;}
.ls6a_c00257{letter-spacing:2.986667pt;}
.ls15_c00257{letter-spacing:2.995253pt;}
.ws0_c00257{word-spacing:-1.599467pt;}
.ws3_c00257{word-spacing:-1.566720pt;}
.ws6_c00257{word-spacing:0.000000pt;}
.ws5_c00257{word-spacing:5.524960pt;}
.ws1_c00257{word-spacing:5.791627pt;}
.ws2_c00257{word-spacing:8.298667pt;}
.ws4_c00257{word-spacing:17.306133pt;}
._8_c00257{margin-left:-6.941013pt;}
._7_c00257{margin-left:-5.459627pt;}
._0_c00257{margin-left:-4.462080pt;}
._9_c00257{margin-left:-3.037440pt;}
._f_c00257{margin-left:-1.941440pt;}
._1_c00257{margin-left:-0.955733pt;}
._5_c00257{width:1.525227pt;}
._a_c00257{width:3.181120pt;}
._6_c00257{width:4.689067pt;}
._4_c00257{width:5.773547pt;}
._13_c00257{width:6.720000pt;}
._12_c00257{width:7.813120pt;}
._b_c00257{width:9.113280pt;}
._c_c00257{width:10.174613pt;}
._2_c00257{width:11.576320pt;}
._14_c00257{width:13.171200pt;}
._10_c00257{width:14.849707pt;}
._3_c00257{width:17.143467pt;}
._11_c00257{width:18.065067pt;}
._d_c00257{width:19.046720pt;}
._16_c00257{width:19.992747pt;}
._15_c00257{width:21.259093pt;}
._e_c00257{width:24.598613pt;}
.fs3_c00257{font-size:21.760000pt;}
.fs2_c00257{font-size:24.000533pt;}
.fs4_c00257{font-size:51.733333pt;}
.fs1_c00257{font-size:59.733333pt;}
.fs0_c00257{font-size:60.266667pt;}
.y0_c00257{bottom:0.000000pt;}
.y1d_c00257{bottom:62.093333pt;}
.y1c_c00257{bottom:185.929067pt;}
.y1b_c00257{bottom:214.093333pt;}
.y1a_c00257{bottom:269.453333pt;}
.y18_c00257{bottom:325.449067pt;}
.y19_c00257{bottom:325.453333pt;}
.y17_c00257{bottom:353.613333pt;}
.y16_c00257{bottom:353.619200pt;}
.y15_c00257{bottom:381.440000pt;}
.y14_c00257{bottom:381.444267pt;}
.y13_c00257{bottom:409.280000pt;}
.y12_c00257{bottom:458.573333pt;}
.y11_c00257{bottom:464.653333pt;}
.y10_c00257{bottom:520.969067pt;}
.yf_c00257{bottom:549.133333pt;}
.ye_c00257{bottom:576.653333pt;}
.yc_c00257{bottom:632.316267pt;}
.yd_c00257{bottom:632.320000pt;}
.yb_c00257{bottom:659.853333pt;}
.ya_c00257{bottom:687.693333pt;}
.y9_c00257{bottom:743.693333pt;}
.y8_c00257{bottom:743.697600pt;}
.y7_c00257{bottom:771.531200pt;}
.y6_c00257{bottom:827.531200pt;}
.y5_c00257{bottom:855.053333pt;}
.y4_c00257{bottom:911.053333pt;}
.y3_c00257{bottom:938.560000pt;}
.y2_c00257{bottom:994.240000pt;}
.y1_c00257{bottom:1062.093333pt;}
.h7_c00257{height:14.492160pt;}
.h6_c00257{height:25.031806pt;}
.h8_c00257{height:50.773437pt;}
.h4_c00257{height:58.625000pt;}
.h5_c00257{height:58.633533pt;}
.h3_c00257{height:59.119010pt;}
.h2_c00257{height:59.148438pt;}
.h1_c00257{height:1122.666667pt;}
.h0_c00257{height:1122.880000pt;}
.w1_c00257{width:793.333333pt;}
.w0_c00257{width:793.600000pt;}
.x0_c00257{left:0.000000pt;}
.x10_c00257{left:107.200000pt;}
.x3_c00257{left:109.146667pt;}
.x1_c00257{left:110.653333pt;}
.x11_c00257{left:127.386667pt;}
.x4_c00257{left:133.786667pt;}
.x1e_c00257{left:153.120000pt;}
.xf_c00257{left:155.666667pt;}
.x6_c00257{left:156.722667pt;}
.x2_c00257{left:158.226667pt;}
.x5_c00257{left:159.386667pt;}
.x1a_c00257{left:171.040000pt;}
.xd_c00257{left:187.106667pt;}
.x1b_c00257{left:191.226667pt;}
.xe_c00257{left:235.640000pt;}
.x14_c00257{left:274.786667pt;}
.xb_c00257{left:313.893333pt;}
.xc_c00257{left:344.840000pt;}
.x7_c00257{left:346.386667pt;}
.x21_c00257{left:377.520000pt;}
.x15_c00257{left:409.026667pt;}
.x1f_c00257{left:422.640000pt;}
.x16_c00257{left:429.773333pt;}
.x20_c00257{left:445.280000pt;}
.x17_c00257{left:456.866667pt;}
.x8_c00257{left:480.186667pt;}
.x9_c00257{left:493.600000pt;}
.xa_c00257{left:518.213333pt;}
.x18_c00257{left:534.346667pt;}
.x1c_c00257{left:541.600000pt;}
.x1d_c00257{left:562.106667pt;}
.x12_c00257{left:587.440000pt;}
.x13_c00257{left:609.773333pt;}
.x19_c00257{left:618.560000pt;}
}





/* 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_c00258 {
    display:none;
  }
  .loading-indicator_c00258.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00258 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_c00258 { 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_c00258" -> "#page-container .classname_c00258")
 */
.pf_c00258 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00258 { /* 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_c00258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00258 { /* 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_c00258 { /* 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_c00258 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00258 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00258 {overflow:visible;}
  }
}
.c_c00258 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00258 { /* 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_c00258:after { /* webkit #35443 */
  content: '';
}
.t_c00258:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00258 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 */
}
.__c00258 { /* 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_c00258 { /* info for Javascript */
  display:none;
}
.l_c00258 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00258 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00258 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00258: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_c00258 {
    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_c00258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00258.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_c00258 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00258;src:url('chunks/assets/font_5041d0f933ae576a21563cd3.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.311035;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_c00258;src:url('chunks/assets/font_bd8a14af36103b46eda9006a.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.284180;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_c00258;src:url('chunks/assets/font_1d5e302f40c9797590a43f70.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.284668;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_c00258;src:url('chunks/assets/font_faec6e9f79b0aa2447218b8a.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:1.284180;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_c00258;src:url('chunks/assets/font_38a1e62d8e713c1a8fc71a3e.woff2')format("woff");}.ff5_c00258{font-family:ff5_c00258;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:ff6_c00258;src:url('chunks/assets/font_4c3e5688db9a064a231e32bc.woff2')format("woff");}.ff6_c00258{font-family:ff6_c00258;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;}
.m7_c00258{transform:matrix(0.116825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116825,0.000000,0.000000,0.250000,0,0);}
.m8_c00258{transform:matrix(0.144734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144734,0.000000,0.000000,0.250000,0,0);}
.m6_c00258{transform:matrix(0.211248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211248,0.000000,0.000000,0.250000,0,0);}
.m5_c00258{transform:matrix(0.214141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214141,0.000000,0.000000,0.250000,0,0);}
.mf_c00258{transform:matrix(0.216331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216331,0.000000,0.000000,0.250000,0,0);}
.mc_c00258{transform:matrix(0.237388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237388,0.000000,0.000000,0.250000,0,0);}
.m4_c00258{transform:matrix(0.237889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237889,0.000000,0.000000,0.250000,0,0);}
.m11_c00258{transform:matrix(0.239721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239721,0.000000,0.000000,0.250000,0,0);}
.m0_c00258{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.me_c00258{transform:matrix(0.242640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242640,0.000000,0.000000,0.250000,0,0);}
.md_c00258{transform:matrix(0.244440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244440,0.000000,0.000000,0.250000,0,0);}
.m10_c00258{transform:matrix(0.244630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244630,0.000000,0.000000,0.250000,0,0);}
.m2_c00258{transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);}
.mb_c00258{transform:matrix(0.248093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248093,0.000000,0.000000,0.250000,0,0);}
.m12_c00258{transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);}
.m13_c00258{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.ma_c00258{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m3_c00258{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{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);}
.m9_c00258{transform:matrix(0.283146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283146,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls61_c00258{letter-spacing:-2.688000px;}
.ls7b_c00258{letter-spacing:-2.541000px;}
.ls7c_c00258{letter-spacing:-2.533740px;}
.ls3a_c00258{letter-spacing:-2.415000px;}
.ls81_c00258{letter-spacing:-2.373000px;}
.ls36_c00258{letter-spacing:-2.310000px;}
.ls40_c00258{letter-spacing:-1.959600px;}
.ls44_c00258{letter-spacing:-1.911300px;}
.ls87_c00258{letter-spacing:-1.892400px;}
.ls7f_c00258{letter-spacing:-1.873080px;}
.ls7e_c00258{letter-spacing:-1.691580px;}
.ls6e_c00258{letter-spacing:-1.680000px;}
.ls79_c00258{letter-spacing:-1.635300px;}
.ls7d_c00258{letter-spacing:-1.633500px;}
.ls47_c00258{letter-spacing:-1.580100px;}
.ls69_c00258{letter-spacing:-1.538700px;}
.ls86_c00258{letter-spacing:-1.483500px;}
.ls78_c00258{letter-spacing:-1.400700px;}
.ls59_c00258{letter-spacing:-1.393800px;}
.ls45_c00258{letter-spacing:-1.235100px;}
.ls43_c00258{letter-spacing:-1.166100px;}
.ls75_c00258{letter-spacing:-1.159200px;}
.ls67_c00258{letter-spacing:-1.152300px;}
.ls50_c00258{letter-spacing:-1.110900px;}
.ls3f_c00258{letter-spacing:-1.021200px;}
.ls6c_c00258{letter-spacing:-1.014300px;}
.ls66_c00258{letter-spacing:-0.966000px;}
.ls85_c00258{letter-spacing:-0.952200px;}
.ls49_c00258{letter-spacing:-0.903900px;}
.ls6b_c00258{letter-spacing:-0.848700px;}
.ls48_c00258{letter-spacing:-0.814200px;}
.ls55_c00258{letter-spacing:-0.800400px;}
.ls5e_c00258{letter-spacing:-0.752100px;}
.ls6f_c00258{letter-spacing:-0.739200px;}
.ls62_c00258{letter-spacing:-0.738300px;}
.ls39_c00258{letter-spacing:-0.710700px;}
.ls41_c00258{letter-spacing:-0.703800px;}
.ls84_c00258{letter-spacing:-0.690000px;}
.ls51_c00258{letter-spacing:-0.683100px;}
.ls5f_c00258{letter-spacing:-0.641700px;}
.ls74_c00258{letter-spacing:-0.558900px;}
.ls5d_c00258{letter-spacing:-0.552000px;}
.ls56_c00258{letter-spacing:-0.545100px;}
.ls4a_c00258{letter-spacing:-0.531300px;}
.ls3e_c00258{letter-spacing:-0.524400px;}
.ls38_c00258{letter-spacing:-0.517500px;}
.ls77_c00258{letter-spacing:-0.503700px;}
.ls4c_c00258{letter-spacing:-0.469200px;}
.ls5b_c00258{letter-spacing:-0.427800px;}
.ls4f_c00258{letter-spacing:-0.420900px;}
.ls7a_c00258{letter-spacing:-0.413820px;}
.ls64_c00258{letter-spacing:-0.400200px;}
.ls60_c00258{letter-spacing:-0.386400px;}
.ls5c_c00258{letter-spacing:-0.372600px;}
.ls82_c00258{letter-spacing:-0.358800px;}
.ls3d_c00258{letter-spacing:-0.331200px;}
.ls6d_c00258{letter-spacing:-0.324300px;}
.ls52_c00258{letter-spacing:-0.269100px;}
.ls65_c00258{letter-spacing:-0.241500px;}
.ls57_c00258{letter-spacing:-0.234600px;}
.ls54_c00258{letter-spacing:-0.227700px;}
.ls4d_c00258{letter-spacing:-0.220800px;}
.ls37_c00258{letter-spacing:-0.200100px;}
.ls3c_c00258{letter-spacing:-0.193200px;}
.ls5a_c00258{letter-spacing:-0.186300px;}
.ls46_c00258{letter-spacing:-0.179400px;}
.ls72_c00258{letter-spacing:-0.172500px;}
.ls6a_c00258{letter-spacing:-0.151800px;}
.ls83_c00258{letter-spacing:-0.138000px;}
.ls76_c00258{letter-spacing:-0.131100px;}
.ls68_c00258{letter-spacing:-0.124200px;}
.ls4b_c00258{letter-spacing:-0.096600px;}
.ls73_c00258{letter-spacing:-0.069000px;}
.ls71_c00258{letter-spacing:-0.041400px;}
.ls53_c00258{letter-spacing:-0.020700px;}
.ls3b_c00258{letter-spacing:0.000000px;}
.ls35_c00258{letter-spacing:0.006900px;}
.lsb_c00258{letter-spacing:0.020700px;}
.ls7_c00258{letter-spacing:0.027600px;}
.ls27_c00258{letter-spacing:0.034500px;}
.ls5_c00258{letter-spacing:0.041400px;}
.lsf_c00258{letter-spacing:0.048300px;}
.ls14_c00258{letter-spacing:0.069000px;}
.lsc_c00258{letter-spacing:0.082800px;}
.ls21_c00258{letter-spacing:0.131100px;}
.ls6_c00258{letter-spacing:0.144900px;}
.ls15_c00258{letter-spacing:0.151800px;}
.ls11_c00258{letter-spacing:0.158700px;}
.lse_c00258{letter-spacing:0.172500px;}
.ls18_c00258{letter-spacing:0.193200px;}
.ls1a_c00258{letter-spacing:0.213900px;}
.ls22_c00258{letter-spacing:0.220800px;}
.ls28_c00258{letter-spacing:0.223740px;}
.ls63_c00258{letter-spacing:0.227700px;}
.ls80_c00258{letter-spacing:0.241500px;}
.ls1b_c00258{letter-spacing:0.248400px;}
.lsa_c00258{letter-spacing:0.276000px;}
.ls12_c00258{letter-spacing:0.282900px;}
.ls29_c00258{letter-spacing:0.284760px;}
.ls2c_c00258{letter-spacing:0.296700px;}
.ls2_c00258{letter-spacing:0.303600px;}
.ls1f_c00258{letter-spacing:0.324300px;}
.ls17_c00258{letter-spacing:0.331200px;}
.ls8_c00258{letter-spacing:0.359340px;}
.ls58_c00258{letter-spacing:0.393300px;}
.ls4e_c00258{letter-spacing:0.400200px;}
.ls33_c00258{letter-spacing:0.427140px;}
.ls10_c00258{letter-spacing:0.455400px;}
.ls2a_c00258{letter-spacing:0.469200px;}
.ls24_c00258{letter-spacing:0.476100px;}
.ls2d_c00258{letter-spacing:0.496800px;}
.lsd_c00258{letter-spacing:0.503700px;}
.ls30_c00258{letter-spacing:0.510600px;}
.ls34_c00258{letter-spacing:0.555960px;}
.ls32_c00258{letter-spacing:0.562740px;}
.ls20_c00258{letter-spacing:0.576300px;}
.ls2b_c00258{letter-spacing:0.614100px;}
.ls26_c00258{letter-spacing:0.616980px;}
.ls2f_c00258{letter-spacing:0.627900px;}
.ls25_c00258{letter-spacing:0.634740px;}
.ls42_c00258{letter-spacing:0.634800px;}
.ls1_c00258{letter-spacing:0.657660px;}
.ls0_c00258{letter-spacing:0.664440px;}
.ls31_c00258{letter-spacing:0.691560px;}
.ls3_c00258{letter-spacing:0.717600px;}
.ls9_c00258{letter-spacing:0.779700px;}
.ls13_c00258{letter-spacing:0.800400px;}
.ls1d_c00258{letter-spacing:1.003440px;}
.ls16_c00258{letter-spacing:1.097100px;}
.ls4_c00258{letter-spacing:1.248900px;}
.ls19_c00258{letter-spacing:1.469700px;}
.ls2e_c00258{letter-spacing:1.842300px;}
.ls1c_c00258{letter-spacing:2.070000px;}
.ls70_c00258{letter-spacing:2.160000px;}
.ls23_c00258{letter-spacing:2.283900px;}
.ls1e_c00258{letter-spacing:2.435700px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{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__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00258{word-spacing:0.000000px;}
.ws1_c00258{word-spacing:0.419640px;}
.ws3_c00258{word-spacing:0.791100px;}
.ws4_c00258{word-spacing:14.029440px;}
.ws0_c00258{word-spacing:18.980400px;}
.ws2_c00258{word-spacing:49.102800px;}
._15_c00258{margin-left:-5.144580px;}
._f_c00258{margin-left:-2.975100px;}
._e_c00258{margin-left:-1.491960px;}
._16_c00258{width:1.088160px;}
._0_c00258{width:2.223840px;}
._7_c00258{width:3.553500px;}
._1_c00258{width:4.986540px;}
._6_c00258{width:6.842760px;}
._8_c00258{width:8.107500px;}
._2_c00258{width:10.046400px;}
._c_c00258{width:11.853420px;}
._3_c00258{width:12.999600px;}
._4_c00258{width:14.973000px;}
._d_c00258{width:18.272760px;}
._b_c00258{width:19.458000px;}
._a_c00258{width:20.824200px;}
._9_c00258{width:22.652700px;}
._5_c00258{width:26.634000px;}
._11_c00258{width:44.567100px;}
._12_c00258{width:46.236900px;}
._10_c00258{width:49.300500px;}
._14_c00258{width:52.440000px;}
._13_c00258{width:54.399600px;}
.fc0_c00258{color:transparent;}
.fs5_c00258{font-size:42.600000px;}
.fs6_c00258{font-size:43.200000px;}
.fs4_c00258{font-size:48.000000px;}
.fs8_c00258{font-size:57.000000px;}
.fs0_c00258{font-size:66.000000px;}
.fs1_c00258{font-size:67.800000px;}
.fs2_c00258{font-size:69.000000px;}
.fs7_c00258{font-size:72.600000px;}
.fs3_c00258{font-size:76.800000px;}
.y0_c00258{bottom:0.000000px;}
.y1d_c00258{bottom:72.735000px;}
.y1c_c00258{bottom:149.415000px;}
.y1b_c00258{bottom:210.975000px;}
.y1a_c00258{bottom:274.695000px;}
.y19_c00258{bottom:274.695750px;}
.y18_c00258{bottom:304.935000px;}
.y17_c00258{bottom:368.298000px;}
.y16_c00258{bottom:398.175000px;}
.y15_c00258{bottom:461.535000px;}
.y14_c00258{bottom:525.240000px;}
.y13_c00258{bottom:530.295000px;}
.y12_c00258{bottom:555.486750px;}
.y11_c00258{bottom:587.175000px;}
.y10_c00258{bottom:648.375000px;}
.yf_c00258{bottom:681.135000px;}
.ye_c00258{bottom:744.113250px;}
.yd_c00258{bottom:775.059750px;}
.yc_c00258{bottom:806.385750px;}
.yb_c00258{bottom:838.074000px;}
.ya_c00258{bottom:869.055000px;}
.y9_c00258{bottom:930.600000px;}
.y7_c00258{bottom:992.891250px;}
.y8_c00258{bottom:992.895000px;}
.y6_c00258{bottom:1024.200000px;}
.y5_c00258{bottom:1024.205250px;}
.y3_c00258{bottom:1086.486750px;}
.y4_c00258{bottom:1086.495000px;}
.y2_c00258{bottom:1118.175000px;}
.y1_c00258{bottom:1194.135000px;}
.h6_c00258{height:44.430469px;}
.h7_c00258{height:45.056250px;}
.h5_c00258{height:48.375000px;}
.ha_c00258{height:55.942383px;}
.h9_c00258{height:66.508887px;}
.h2_c00258{height:66.515625px;}
.h3_c00258{height:67.719727px;}
.h8_c00258{height:71.252930px;}
.h4_c00258{height:75.375000px;}
.h1_c00258{height:1263.000000px;}
.h0_c00258{height:1263.240000px;}
.w1_c00258{width:892.500000px;}
.w0_c00258{width:892.800000px;}
.x0_c00258{left:0.000000px;}
.x1_c00258{left:125.565000px;}
.xe_c00258{left:148.230000px;}
.xf_c00258{left:160.440000px;}
.x10_c00258{left:170.385000px;}
.xb_c00258{left:179.445000px;}
.x3_c00258{left:180.633750px;}
.x14_c00258{left:246.045000px;}
.x4_c00258{left:247.485000px;}
.x5_c00258{left:274.845000px;}
.x13_c00258{left:279.390000px;}
.x2_c00258{left:301.710000px;}
.x15_c00258{left:335.415000px;}
.x6_c00258{left:363.405000px;}
.x16_c00258{left:369.885000px;}
.x8_c00258{left:391.755000px;}
.x7_c00258{left:394.005000px;}
.x17_c00258{left:398.265000px;}
.x1d_c00258{left:412.350000px;}
.x20_c00258{left:425.790000px;}
.x11_c00258{left:427.875000px;}
.x1e_c00258{left:429.045000px;}
.x12_c00258{left:448.020000px;}
.x9_c00258{left:518.565000px;}
.xa_c00258{left:546.240000px;}
.xc_c00258{left:566.910000px;}
.x18_c00258{left:589.425000px;}
.xd_c00258{left:599.610000px;}
.x19_c00258{left:623.385000px;}
.x1a_c00258{left:657.855000px;}
.x1b_c00258{left:683.805000px;}
.x1f_c00258{left:692.760000px;}
.x1c_c00258{left:712.200000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls61_c00258{letter-spacing:-2.389333pt;}
.ls7b_c00258{letter-spacing:-2.258667pt;}
.ls7c_c00258{letter-spacing:-2.252213pt;}
.ls3a_c00258{letter-spacing:-2.146667pt;}
.ls81_c00258{letter-spacing:-2.109333pt;}
.ls36_c00258{letter-spacing:-2.053333pt;}
.ls40_c00258{letter-spacing:-1.741867pt;}
.ls44_c00258{letter-spacing:-1.698933pt;}
.ls87_c00258{letter-spacing:-1.682133pt;}
.ls7f_c00258{letter-spacing:-1.664960pt;}
.ls7e_c00258{letter-spacing:-1.503627pt;}
.ls6e_c00258{letter-spacing:-1.493333pt;}
.ls79_c00258{letter-spacing:-1.453600pt;}
.ls7d_c00258{letter-spacing:-1.452000pt;}
.ls47_c00258{letter-spacing:-1.404533pt;}
.ls69_c00258{letter-spacing:-1.367733pt;}
.ls86_c00258{letter-spacing:-1.318667pt;}
.ls78_c00258{letter-spacing:-1.245067pt;}
.ls59_c00258{letter-spacing:-1.238933pt;}
.ls45_c00258{letter-spacing:-1.097867pt;}
.ls43_c00258{letter-spacing:-1.036533pt;}
.ls75_c00258{letter-spacing:-1.030400pt;}
.ls67_c00258{letter-spacing:-1.024267pt;}
.ls50_c00258{letter-spacing:-0.987467pt;}
.ls3f_c00258{letter-spacing:-0.907733pt;}
.ls6c_c00258{letter-spacing:-0.901600pt;}
.ls66_c00258{letter-spacing:-0.858667pt;}
.ls85_c00258{letter-spacing:-0.846400pt;}
.ls49_c00258{letter-spacing:-0.803467pt;}
.ls6b_c00258{letter-spacing:-0.754400pt;}
.ls48_c00258{letter-spacing:-0.723733pt;}
.ls55_c00258{letter-spacing:-0.711467pt;}
.ls5e_c00258{letter-spacing:-0.668533pt;}
.ls6f_c00258{letter-spacing:-0.657067pt;}
.ls62_c00258{letter-spacing:-0.656267pt;}
.ls39_c00258{letter-spacing:-0.631733pt;}
.ls41_c00258{letter-spacing:-0.625600pt;}
.ls84_c00258{letter-spacing:-0.613333pt;}
.ls51_c00258{letter-spacing:-0.607200pt;}
.ls5f_c00258{letter-spacing:-0.570400pt;}
.ls74_c00258{letter-spacing:-0.496800pt;}
.ls5d_c00258{letter-spacing:-0.490667pt;}
.ls56_c00258{letter-spacing:-0.484533pt;}
.ls4a_c00258{letter-spacing:-0.472267pt;}
.ls3e_c00258{letter-spacing:-0.466133pt;}
.ls38_c00258{letter-spacing:-0.460000pt;}
.ls77_c00258{letter-spacing:-0.447733pt;}
.ls4c_c00258{letter-spacing:-0.417067pt;}
.ls5b_c00258{letter-spacing:-0.380267pt;}
.ls4f_c00258{letter-spacing:-0.374133pt;}
.ls7a_c00258{letter-spacing:-0.367840pt;}
.ls64_c00258{letter-spacing:-0.355733pt;}
.ls60_c00258{letter-spacing:-0.343467pt;}
.ls5c_c00258{letter-spacing:-0.331200pt;}
.ls82_c00258{letter-spacing:-0.318933pt;}
.ls3d_c00258{letter-spacing:-0.294400pt;}
.ls6d_c00258{letter-spacing:-0.288267pt;}
.ls52_c00258{letter-spacing:-0.239200pt;}
.ls65_c00258{letter-spacing:-0.214667pt;}
.ls57_c00258{letter-spacing:-0.208533pt;}
.ls54_c00258{letter-spacing:-0.202400pt;}
.ls4d_c00258{letter-spacing:-0.196267pt;}
.ls37_c00258{letter-spacing:-0.177867pt;}
.ls3c_c00258{letter-spacing:-0.171733pt;}
.ls5a_c00258{letter-spacing:-0.165600pt;}
.ls46_c00258{letter-spacing:-0.159467pt;}
.ls72_c00258{letter-spacing:-0.153333pt;}
.ls6a_c00258{letter-spacing:-0.134933pt;}
.ls83_c00258{letter-spacing:-0.122667pt;}
.ls76_c00258{letter-spacing:-0.116533pt;}
.ls68_c00258{letter-spacing:-0.110400pt;}
.ls4b_c00258{letter-spacing:-0.085867pt;}
.ls73_c00258{letter-spacing:-0.061333pt;}
.ls71_c00258{letter-spacing:-0.036800pt;}
.ls53_c00258{letter-spacing:-0.018400pt;}
.ls3b_c00258{letter-spacing:0.000000pt;}
.ls35_c00258{letter-spacing:0.006133pt;}
.lsb_c00258{letter-spacing:0.018400pt;}
.ls7_c00258{letter-spacing:0.024533pt;}
.ls27_c00258{letter-spacing:0.030667pt;}
.ls5_c00258{letter-spacing:0.036800pt;}
.lsf_c00258{letter-spacing:0.042933pt;}
.ls14_c00258{letter-spacing:0.061333pt;}
.lsc_c00258{letter-spacing:0.073600pt;}
.ls21_c00258{letter-spacing:0.116533pt;}
.ls6_c00258{letter-spacing:0.128800pt;}
.ls15_c00258{letter-spacing:0.134933pt;}
.ls11_c00258{letter-spacing:0.141067pt;}
.lse_c00258{letter-spacing:0.153333pt;}
.ls18_c00258{letter-spacing:0.171733pt;}
.ls1a_c00258{letter-spacing:0.190133pt;}
.ls22_c00258{letter-spacing:0.196267pt;}
.ls28_c00258{letter-spacing:0.198880pt;}
.ls63_c00258{letter-spacing:0.202400pt;}
.ls80_c00258{letter-spacing:0.214667pt;}
.ls1b_c00258{letter-spacing:0.220800pt;}
.lsa_c00258{letter-spacing:0.245333pt;}
.ls12_c00258{letter-spacing:0.251467pt;}
.ls29_c00258{letter-spacing:0.253120pt;}
.ls2c_c00258{letter-spacing:0.263733pt;}
.ls2_c00258{letter-spacing:0.269867pt;}
.ls1f_c00258{letter-spacing:0.288267pt;}
.ls17_c00258{letter-spacing:0.294400pt;}
.ls8_c00258{letter-spacing:0.319413pt;}
.ls58_c00258{letter-spacing:0.349600pt;}
.ls4e_c00258{letter-spacing:0.355733pt;}
.ls33_c00258{letter-spacing:0.379680pt;}
.ls10_c00258{letter-spacing:0.404800pt;}
.ls2a_c00258{letter-spacing:0.417067pt;}
.ls24_c00258{letter-spacing:0.423200pt;}
.ls2d_c00258{letter-spacing:0.441600pt;}
.lsd_c00258{letter-spacing:0.447733pt;}
.ls30_c00258{letter-spacing:0.453867pt;}
.ls34_c00258{letter-spacing:0.494187pt;}
.ls32_c00258{letter-spacing:0.500213pt;}
.ls20_c00258{letter-spacing:0.512267pt;}
.ls2b_c00258{letter-spacing:0.545867pt;}
.ls26_c00258{letter-spacing:0.548427pt;}
.ls2f_c00258{letter-spacing:0.558133pt;}
.ls25_c00258{letter-spacing:0.564213pt;}
.ls42_c00258{letter-spacing:0.564267pt;}
.ls1_c00258{letter-spacing:0.584587pt;}
.ls0_c00258{letter-spacing:0.590613pt;}
.ls31_c00258{letter-spacing:0.614720pt;}
.ls3_c00258{letter-spacing:0.637867pt;}
.ls9_c00258{letter-spacing:0.693067pt;}
.ls13_c00258{letter-spacing:0.711467pt;}
.ls1d_c00258{letter-spacing:0.891947pt;}
.ls16_c00258{letter-spacing:0.975200pt;}
.ls4_c00258{letter-spacing:1.110133pt;}
.ls19_c00258{letter-spacing:1.306400pt;}
.ls2e_c00258{letter-spacing:1.637600pt;}
.ls1c_c00258{letter-spacing:1.840000pt;}
.ls70_c00258{letter-spacing:1.920000pt;}
.ls23_c00258{letter-spacing:2.030133pt;}
.ls1e_c00258{letter-spacing:2.165067pt;}
.ws5_c00258{word-spacing:0.000000pt;}
.ws1_c00258{word-spacing:0.373013pt;}
.ws3_c00258{word-spacing:0.703200pt;}
.ws4_c00258{word-spacing:12.470613pt;}
.ws0_c00258{word-spacing:16.871467pt;}
.ws2_c00258{word-spacing:43.646933pt;}
._15_c00258{margin-left:-4.572960pt;}
._f_c00258{margin-left:-2.644533pt;}
._e_c00258{margin-left:-1.326187pt;}
._16_c00258{width:0.967253pt;}
._0_c00258{width:1.976747pt;}
._7_c00258{width:3.158667pt;}
._1_c00258{width:4.432480pt;}
._6_c00258{width:6.082453pt;}
._8_c00258{width:7.206667pt;}
._2_c00258{width:8.930133pt;}
._c_c00258{width:10.536373pt;}
._3_c00258{width:11.555200pt;}
._4_c00258{width:13.309333pt;}
._d_c00258{width:16.242453pt;}
._b_c00258{width:17.296000pt;}
._a_c00258{width:18.510400pt;}
._9_c00258{width:20.135733pt;}
._5_c00258{width:23.674667pt;}
._11_c00258{width:39.615200pt;}
._12_c00258{width:41.099467pt;}
._10_c00258{width:43.822667pt;}
._14_c00258{width:46.613333pt;}
._13_c00258{width:48.355200pt;}
.fs5_c00258{font-size:37.866667pt;}
.fs6_c00258{font-size:38.400000pt;}
.fs4_c00258{font-size:42.666667pt;}
.fs8_c00258{font-size:50.666667pt;}
.fs0_c00258{font-size:58.666667pt;}
.fs1_c00258{font-size:60.266667pt;}
.fs2_c00258{font-size:61.333333pt;}
.fs7_c00258{font-size:64.533333pt;}
.fs3_c00258{font-size:68.266667pt;}
.y0_c00258{bottom:0.000000pt;}
.y1d_c00258{bottom:64.653333pt;}
.y1c_c00258{bottom:132.813333pt;}
.y1b_c00258{bottom:187.533333pt;}
.y1a_c00258{bottom:244.173333pt;}
.y19_c00258{bottom:244.174000pt;}
.y18_c00258{bottom:271.053333pt;}
.y17_c00258{bottom:327.376000pt;}
.y16_c00258{bottom:353.933333pt;}
.y15_c00258{bottom:410.253333pt;}
.y14_c00258{bottom:466.880000pt;}
.y13_c00258{bottom:471.373333pt;}
.y12_c00258{bottom:493.766000pt;}
.y11_c00258{bottom:521.933333pt;}
.y10_c00258{bottom:576.333333pt;}
.yf_c00258{bottom:605.453333pt;}
.ye_c00258{bottom:661.434000pt;}
.yd_c00258{bottom:688.942000pt;}
.yc_c00258{bottom:716.787333pt;}
.yb_c00258{bottom:744.954667pt;}
.ya_c00258{bottom:772.493333pt;}
.y9_c00258{bottom:827.200000pt;}
.y7_c00258{bottom:882.570000pt;}
.y8_c00258{bottom:882.573333pt;}
.y6_c00258{bottom:910.400000pt;}
.y5_c00258{bottom:910.404667pt;}
.y3_c00258{bottom:965.766000pt;}
.y4_c00258{bottom:965.773333pt;}
.y2_c00258{bottom:993.933333pt;}
.y1_c00258{bottom:1061.453333pt;}
.h6_c00258{height:39.493750pt;}
.h7_c00258{height:40.050000pt;}
.h5_c00258{height:43.000000pt;}
.ha_c00258{height:49.726562pt;}
.h9_c00258{height:59.119010pt;}
.h2_c00258{height:59.125000pt;}
.h3_c00258{height:60.195312pt;}
.h8_c00258{height:63.335938pt;}
.h4_c00258{height:67.000000pt;}
.h1_c00258{height:1122.666667pt;}
.h0_c00258{height:1122.880000pt;}
.w1_c00258{width:793.333333pt;}
.w0_c00258{width:793.600000pt;}
.x0_c00258{left:0.000000pt;}
.x1_c00258{left:111.613333pt;}
.xe_c00258{left:131.760000pt;}
.xf_c00258{left:142.613333pt;}
.x10_c00258{left:151.453333pt;}
.xb_c00258{left:159.506667pt;}
.x3_c00258{left:160.563333pt;}
.x14_c00258{left:218.706667pt;}
.x4_c00258{left:219.986667pt;}
.x5_c00258{left:244.306667pt;}
.x13_c00258{left:248.346667pt;}
.x2_c00258{left:268.186667pt;}
.x15_c00258{left:298.146667pt;}
.x6_c00258{left:323.026667pt;}
.x16_c00258{left:328.786667pt;}
.x8_c00258{left:348.226667pt;}
.x7_c00258{left:350.226667pt;}
.x17_c00258{left:354.013333pt;}
.x1d_c00258{left:366.533333pt;}
.x20_c00258{left:378.480000pt;}
.x11_c00258{left:380.333333pt;}
.x1e_c00258{left:381.373333pt;}
.x12_c00258{left:398.240000pt;}
.x9_c00258{left:460.946667pt;}
.xa_c00258{left:485.546667pt;}
.xc_c00258{left:503.920000pt;}
.x18_c00258{left:523.933333pt;}
.xd_c00258{left:532.986667pt;}
.x19_c00258{left:554.120000pt;}
.x1a_c00258{left:584.760000pt;}
.x1b_c00258{left:607.826667pt;}
.x1f_c00258{left:615.786667pt;}
.x1c_c00258{left:633.066667pt;}
}





/* 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_c00259 {
    display:none;
  }
  .loading-indicator_c00259.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00259 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_c00259 { 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_c00259" -> "#page-container .classname_c00259")
 */
.pf_c00259 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00259 { /* 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_c00259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00259 { /* 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_c00259 { /* 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_c00259 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00259 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00259 {overflow:visible;}
  }
}
.c_c00259 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00259 { /* 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_c00259:after { /* webkit #35443 */
  content: '';
}
.t_c00259:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00259 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 */
}
.__c00259 { /* 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_c00259 { /* info for Javascript */
  display:none;
}
.l_c00259 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00259 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00259 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00259: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_c00259 {
    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_c00259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00259.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_c00259 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00259;src:url('chunks/assets/font_924facee4867f5891c6e186a.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.284668;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_c00259;src:url('chunks/assets/font_54042b1bbbbfe56ef5c8d7df.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.284180;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_c00259;src:url('chunks/assets/font_2d3e29e5a506cc5a38c453c7.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;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;}
.m2_c00259{transform:matrix(0.226348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226348,0.000000,0.000000,0.250000,0,0);}
.m7_c00259{transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);}
.m8_c00259{transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);}
.m5_c00259{transform:matrix(0.232119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232119,0.000000,0.000000,0.250000,0,0);}
.m9_c00259{transform:matrix(0.234057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234057,0.000000,0.000000,0.250000,0,0);}
.m4_c00259{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m6_c00259{transform:matrix(0.246106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246106,0.000000,0.000000,0.250000,0,0);}
.m0_c00259{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{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);}
.m3_c00259{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls70_c00259{letter-spacing:-2.373000px;}
.ls64_c00259{letter-spacing:-2.352000px;}
.ls87_c00259{letter-spacing:-2.289000px;}
.ls69_c00259{letter-spacing:-2.100000px;}
.ls75_c00259{letter-spacing:-1.891620px;}
.ls7f_c00259{letter-spacing:-1.417020px;}
.ls74_c00259{letter-spacing:-1.410240px;}
.ls81_c00259{letter-spacing:-1.247520px;}
.ls7c_c00259{letter-spacing:-0.976320px;}
.ls7e_c00259{letter-spacing:-0.847500px;}
.ls7a_c00259{letter-spacing:-0.827160px;}
.ls78_c00259{letter-spacing:-0.739020px;}
.ls84_c00259{letter-spacing:-0.549180px;}
.ls79_c00259{letter-spacing:-0.501720px;}
.ls71_c00259{letter-spacing:-0.359340px;}
.ls83_c00259{letter-spacing:-0.352560px;}
.ls76_c00259{letter-spacing:-0.277980px;}
.ls66_c00259{letter-spacing:-0.128820px;}
.ls6b_c00259{letter-spacing:-0.074580px;}
.ls77_c00259{letter-spacing:-0.013560px;}
.ls65_c00259{letter-spacing:0.000000px;}
.ls34_c00259{letter-spacing:0.020340px;}
.ls3c_c00259{letter-spacing:0.027120px;}
.ls13_c00259{letter-spacing:0.033900px;}
.ls51_c00259{letter-spacing:0.040680px;}
.ls27_c00259{letter-spacing:0.061020px;}
.ls6c_c00259{letter-spacing:0.081360px;}
.ls7b_c00259{letter-spacing:0.149160px;}
.ls45_c00259{letter-spacing:0.155940px;}
.ls41_c00259{letter-spacing:0.183060px;}
.ls18_c00259{letter-spacing:0.210180px;}
.ls48_c00259{letter-spacing:0.216960px;}
.ls8_c00259{letter-spacing:0.230520px;}
.lsa_c00259{letter-spacing:0.237300px;}
.ls86_c00259{letter-spacing:0.291540px;}
.ls67_c00259{letter-spacing:0.298320px;}
.ls6f_c00259{letter-spacing:0.339000px;}
.ls3a_c00259{letter-spacing:0.345780px;}
.ls85_c00259{letter-spacing:0.372900px;}
.ls53_c00259{letter-spacing:0.379680px;}
.ls25_c00259{letter-spacing:0.386460px;}
.ls57_c00259{letter-spacing:0.393240px;}
.ls5_c00259{letter-spacing:0.406800px;}
.ls32_c00259{letter-spacing:0.413580px;}
.ls30_c00259{letter-spacing:0.420360px;}
.ls43_c00259{letter-spacing:0.444600px;}
.lsd_c00259{letter-spacing:0.461040px;}
.ls6a_c00259{letter-spacing:0.474600px;}
.ls1c_c00259{letter-spacing:0.478800px;}
.ls4e_c00259{letter-spacing:0.485640px;}
.ls47_c00259{letter-spacing:0.494940px;}
.ls1f_c00259{letter-spacing:0.501720px;}
.ls3_c00259{letter-spacing:0.508500px;}
.ls56_c00259{letter-spacing:0.547200px;}
.ls35_c00259{letter-spacing:0.549180px;}
.ls28_c00259{letter-spacing:0.555960px;}
.ls5c_c00259{letter-spacing:0.562740px;}
.ls62_c00259{letter-spacing:0.569520px;}
.ls73_c00259{letter-spacing:0.576300px;}
.ls2c_c00259{letter-spacing:0.583080px;}
.ls1_c00259{letter-spacing:0.589860px;}
.ls5d_c00259{letter-spacing:0.596640px;}
.ls3e_c00259{letter-spacing:0.623760px;}
.ls3f_c00259{letter-spacing:0.644100px;}
.ls2d_c00259{letter-spacing:0.650880px;}
.ls2e_c00259{letter-spacing:0.656640px;}
.lsc_c00259{letter-spacing:0.671220px;}
.ls5f_c00259{letter-spacing:0.678000px;}
.ls50_c00259{letter-spacing:0.684780px;}
.ls72_c00259{letter-spacing:0.691560px;}
.ls1a_c00259{letter-spacing:0.705120px;}
.ls9_c00259{letter-spacing:0.718680px;}
.ls14_c00259{letter-spacing:0.725460px;}
.ls4d_c00259{letter-spacing:0.739020px;}
.ls46_c00259{letter-spacing:0.745560px;}
.ls12_c00259{letter-spacing:0.752580px;}
.ls4a_c00259{letter-spacing:0.759360px;}
.ls3b_c00259{letter-spacing:0.786480px;}
.ls19_c00259{letter-spacing:0.800040px;}
.ls29_c00259{letter-spacing:0.800280px;}
.ls22_c00259{letter-spacing:0.806820px;}
.ls4_c00259{letter-spacing:0.820380px;}
.ls24_c00259{letter-spacing:0.827160px;}
.ls33_c00259{letter-spacing:0.854280px;}
.ls1e_c00259{letter-spacing:0.861060px;}
.ls0_c00259{letter-spacing:0.861840px;}
.ls2b_c00259{letter-spacing:0.867840px;}
.ls1b_c00259{letter-spacing:0.874620px;}
.ls68_c00259{letter-spacing:0.915300px;}
.lsf_c00259{letter-spacing:0.928860px;}
.ls20_c00259{letter-spacing:0.935640px;}
.ls61_c00259{letter-spacing:0.950760px;}
.ls44_c00259{letter-spacing:0.957600px;}
.ls5a_c00259{letter-spacing:0.989880px;}
.lsb_c00259{letter-spacing:1.010220px;}
.ls60_c00259{letter-spacing:1.030560px;}
.ls38_c00259{letter-spacing:1.037040px;}
.ls15_c00259{letter-spacing:1.044120px;}
.ls1d_c00259{letter-spacing:1.057680px;}
.ls17_c00259{letter-spacing:1.073880px;}
.ls58_c00259{letter-spacing:1.091580px;}
.ls42_c00259{letter-spacing:1.105140px;}
.ls52_c00259{letter-spacing:1.111920px;}
.ls21_c00259{letter-spacing:1.172940px;}
.ls82_c00259{letter-spacing:1.179720px;}
.ls49_c00259{letter-spacing:1.186500px;}
.ls16_c00259{letter-spacing:1.213620px;}
.ls7_c00259{letter-spacing:1.233960px;}
.ls2a_c00259{letter-spacing:1.240740px;}
.ls54_c00259{letter-spacing:1.247520px;}
.ls63_c00259{letter-spacing:1.288200px;}
.ls2_c00259{letter-spacing:1.294980px;}
.ls59_c00259{letter-spacing:1.349220px;}
.ls6e_c00259{letter-spacing:1.376340px;}
.ls4b_c00259{letter-spacing:1.383120px;}
.ls55_c00259{letter-spacing:1.396680px;}
.ls7d_c00259{letter-spacing:1.423800px;}
.ls39_c00259{letter-spacing:1.433760px;}
.ls26_c00259{letter-spacing:1.444140px;}
.ls80_c00259{letter-spacing:1.450920px;}
.ls6_c00259{letter-spacing:1.484820px;}
.ls10_c00259{letter-spacing:1.586520px;}
.ls37_c00259{letter-spacing:1.722120px;}
.ls2f_c00259{letter-spacing:1.742460px;}
.ls5b_c00259{letter-spacing:1.762800px;}
.ls5e_c00259{letter-spacing:1.918740px;}
.ls4f_c00259{letter-spacing:1.932300px;}
.ls4c_c00259{letter-spacing:1.986540px;}
.ls11_c00259{letter-spacing:2.162820px;}
.ls3d_c00259{letter-spacing:2.183160px;}
.lse_c00259{letter-spacing:2.203500px;}
.ls40_c00259{letter-spacing:2.495040px;}
.ls36_c00259{letter-spacing:2.637420px;}
.ls23_c00259{letter-spacing:2.827260px;}
.ls31_c00259{letter-spacing:3.376440px;}
.ls6d_c00259{letter-spacing:3.390000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{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__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00259{word-spacing:-1.585920px;}
.ws7_c00259{word-spacing:-1.302240px;}
.ws3_c00259{word-spacing:-0.031800px;}
.ws8_c00259{word-spacing:0.000000px;}
.ws5_c00259{word-spacing:5.885760px;}
.ws0_c00259{word-spacing:10.017840px;}
.ws4_c00259{word-spacing:15.045600px;}
.ws2_c00259{word-spacing:26.324400px;}
.ws6_c00259{word-spacing:28.130640px;}
._13_c00259{margin-left:-8.362800px;}
._11_c00259{margin-left:-6.037200px;}
._a_c00259{margin-left:-4.040880px;}
._9_c00259{margin-left:-2.969640px;}
._b_c00259{margin-left:-1.132260px;}
._8_c00259{width:1.193280px;}
._14_c00259{width:2.496600px;}
._d_c00259{width:3.891720px;}
._e_c00259{width:5.268060px;}
._1_c00259{width:6.800340px;}
._3_c00259{width:7.866720px;}
._2_c00259{width:9.559800px;}
._0_c00259{width:10.875120px;}
._4_c00259{width:12.187260px;}
._17_c00259{width:13.204560px;}
._10_c00259{width:14.690340px;}
._f_c00259{width:16.169760px;}
._16_c00259{width:19.154700px;}
._5_c00259{width:20.841720px;}
._6_c00259{width:23.648640px;}
._7_c00259{width:25.551540px;}
._12_c00259{width:27.304800px;}
._c_c00259{width:28.937040px;}
._15_c00259{width:30.510420px;}
.fc0_c00259{color:transparent;}
.fs4_c00259{font-size:60.000000px;}
.fs6_c00259{font-size:64.200000px;}
.fs8_c00259{font-size:65.400000px;}
.fs0_c00259{font-size:67.200000px;}
.fs2_c00259{font-size:67.800000px;}
.fs1_c00259{font-size:68.400000px;}
.fs5_c00259{font-size:69.600000px;}
.fs7_c00259{font-size:71.400000px;}
.fs3_c00259{font-size:73.800000px;}
.y0_c00259{bottom:0.000000px;}
.y1c_c00259{bottom:74.880000px;}
.y1b_c00259{bottom:150.480000px;}
.y1a_c00259{bottom:213.491400px;}
.y18_c00259{bottom:244.811400px;}
.y19_c00259{bottom:244.815000px;}
.y17_c00259{bottom:276.135450px;}
.y16_c00259{bottom:307.815000px;}
.y15_c00259{bottom:369.735450px;}
.y14_c00259{bottom:401.415000px;}
.y13_c00259{bottom:464.040000px;}
.y11_c00259{bottom:526.694250px;}
.y12_c00259{bottom:526.695000px;}
.y10_c00259{bottom:558.356850px;}
.yf_c00259{bottom:621.360000px;}
.ye_c00259{bottom:652.695000px;}
.yd_c00259{bottom:715.329300px;}
.yc_c00259{bottom:746.280000px;}
.yb_c00259{bottom:808.935000px;}
.y9_c00259{bottom:871.929300px;}
.ya_c00259{bottom:871.935000px;}
.y7_c00259{bottom:902.876400px;}
.y8_c00259{bottom:902.880000px;}
.y6_c00259{bottom:934.200000px;}
.y5_c00259{bottom:996.495000px;}
.y4_c00259{bottom:1059.491400px;}
.y3_c00259{bottom:1090.815450px;}
.y2_c00259{bottom:1122.495000px;}
.y1_c00259{bottom:1199.175000px;}
.h7_c00259{height:58.886719px;}
.hc_c00259{height:64.186523px;}
.h2_c00259{height:65.953125px;}
.h5_c00259{height:66.541992px;}
.ha_c00259{height:66.958594px;}
.h6_c00259{height:67.097461px;}
.h9_c00259{height:68.274609px;}
.hb_c00259{height:70.073395px;}
.h4_c00259{height:70.085700px;}
.h8_c00259{height:70.713281px;}
.h3_c00259{height:72.430664px;}
.h1_c00259{height:1263.000000px;}
.h0_c00259{height:1263.240000px;}
.w1_c00259{width:892.500000px;}
.w0_c00259{width:892.800000px;}
.x0_c00259{left:0.000000px;}
.xb_c00259{left:120.413850px;}
.x3_c00259{left:122.251050px;}
.x1_c00259{left:123.765000px;}
.x12_c00259{left:174.045000px;}
.xa_c00259{left:175.125000px;}
.x2_c00259{left:176.925000px;}
.x9_c00259{left:198.480000px;}
.xc_c00259{left:316.455000px;}
.x10_c00259{left:366.450000px;}
.x11_c00259{left:397.395000px;}
.x16_c00259{left:423.990000px;}
.x13_c00259{left:445.230000px;}
.x4_c00259{left:447.750000px;}
.xd_c00259{left:461.130000px;}
.x14_c00259{left:477.210000px;}
.x5_c00259{left:479.730000px;}
.xe_c00259{left:489.810000px;}
.xf_c00259{left:514.230000px;}
.x7_c00259{left:522.540000px;}
.x8_c00259{left:544.125000px;}
.x15_c00259{left:681.030000px;}
.x6_c00259{left:683.550000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls70_c00259{letter-spacing:-2.109333pt;}
.ls64_c00259{letter-spacing:-2.090667pt;}
.ls87_c00259{letter-spacing:-2.034667pt;}
.ls69_c00259{letter-spacing:-1.866667pt;}
.ls75_c00259{letter-spacing:-1.681440pt;}
.ls7f_c00259{letter-spacing:-1.259573pt;}
.ls74_c00259{letter-spacing:-1.253547pt;}
.ls81_c00259{letter-spacing:-1.108907pt;}
.ls7c_c00259{letter-spacing:-0.867840pt;}
.ls7e_c00259{letter-spacing:-0.753333pt;}
.ls7a_c00259{letter-spacing:-0.735253pt;}
.ls78_c00259{letter-spacing:-0.656907pt;}
.ls84_c00259{letter-spacing:-0.488160pt;}
.ls79_c00259{letter-spacing:-0.445973pt;}
.ls71_c00259{letter-spacing:-0.319413pt;}
.ls83_c00259{letter-spacing:-0.313387pt;}
.ls76_c00259{letter-spacing:-0.247093pt;}
.ls66_c00259{letter-spacing:-0.114507pt;}
.ls6b_c00259{letter-spacing:-0.066293pt;}
.ls77_c00259{letter-spacing:-0.012053pt;}
.ls65_c00259{letter-spacing:0.000000pt;}
.ls34_c00259{letter-spacing:0.018080pt;}
.ls3c_c00259{letter-spacing:0.024107pt;}
.ls13_c00259{letter-spacing:0.030133pt;}
.ls51_c00259{letter-spacing:0.036160pt;}
.ls27_c00259{letter-spacing:0.054240pt;}
.ls6c_c00259{letter-spacing:0.072320pt;}
.ls7b_c00259{letter-spacing:0.132587pt;}
.ls45_c00259{letter-spacing:0.138613pt;}
.ls41_c00259{letter-spacing:0.162720pt;}
.ls18_c00259{letter-spacing:0.186827pt;}
.ls48_c00259{letter-spacing:0.192853pt;}
.ls8_c00259{letter-spacing:0.204907pt;}
.lsa_c00259{letter-spacing:0.210933pt;}
.ls86_c00259{letter-spacing:0.259147pt;}
.ls67_c00259{letter-spacing:0.265173pt;}
.ls6f_c00259{letter-spacing:0.301333pt;}
.ls3a_c00259{letter-spacing:0.307360pt;}
.ls85_c00259{letter-spacing:0.331467pt;}
.ls53_c00259{letter-spacing:0.337493pt;}
.ls25_c00259{letter-spacing:0.343520pt;}
.ls57_c00259{letter-spacing:0.349547pt;}
.ls5_c00259{letter-spacing:0.361600pt;}
.ls32_c00259{letter-spacing:0.367627pt;}
.ls30_c00259{letter-spacing:0.373653pt;}
.ls43_c00259{letter-spacing:0.395200pt;}
.lsd_c00259{letter-spacing:0.409813pt;}
.ls6a_c00259{letter-spacing:0.421867pt;}
.ls1c_c00259{letter-spacing:0.425600pt;}
.ls4e_c00259{letter-spacing:0.431680pt;}
.ls47_c00259{letter-spacing:0.439947pt;}
.ls1f_c00259{letter-spacing:0.445973pt;}
.ls3_c00259{letter-spacing:0.452000pt;}
.ls56_c00259{letter-spacing:0.486400pt;}
.ls35_c00259{letter-spacing:0.488160pt;}
.ls28_c00259{letter-spacing:0.494187pt;}
.ls5c_c00259{letter-spacing:0.500213pt;}
.ls62_c00259{letter-spacing:0.506240pt;}
.ls73_c00259{letter-spacing:0.512267pt;}
.ls2c_c00259{letter-spacing:0.518293pt;}
.ls1_c00259{letter-spacing:0.524320pt;}
.ls5d_c00259{letter-spacing:0.530347pt;}
.ls3e_c00259{letter-spacing:0.554453pt;}
.ls3f_c00259{letter-spacing:0.572533pt;}
.ls2d_c00259{letter-spacing:0.578560pt;}
.ls2e_c00259{letter-spacing:0.583680pt;}
.lsc_c00259{letter-spacing:0.596640pt;}
.ls5f_c00259{letter-spacing:0.602667pt;}
.ls50_c00259{letter-spacing:0.608693pt;}
.ls72_c00259{letter-spacing:0.614720pt;}
.ls1a_c00259{letter-spacing:0.626773pt;}
.ls9_c00259{letter-spacing:0.638827pt;}
.ls14_c00259{letter-spacing:0.644853pt;}
.ls4d_c00259{letter-spacing:0.656907pt;}
.ls46_c00259{letter-spacing:0.662720pt;}
.ls12_c00259{letter-spacing:0.668960pt;}
.ls4a_c00259{letter-spacing:0.674987pt;}
.ls3b_c00259{letter-spacing:0.699093pt;}
.ls19_c00259{letter-spacing:0.711147pt;}
.ls29_c00259{letter-spacing:0.711360pt;}
.ls22_c00259{letter-spacing:0.717173pt;}
.ls4_c00259{letter-spacing:0.729227pt;}
.ls24_c00259{letter-spacing:0.735253pt;}
.ls33_c00259{letter-spacing:0.759360pt;}
.ls1e_c00259{letter-spacing:0.765387pt;}
.ls0_c00259{letter-spacing:0.766080pt;}
.ls2b_c00259{letter-spacing:0.771413pt;}
.ls1b_c00259{letter-spacing:0.777440pt;}
.ls68_c00259{letter-spacing:0.813600pt;}
.lsf_c00259{letter-spacing:0.825653pt;}
.ls20_c00259{letter-spacing:0.831680pt;}
.ls61_c00259{letter-spacing:0.845120pt;}
.ls44_c00259{letter-spacing:0.851200pt;}
.ls5a_c00259{letter-spacing:0.879893pt;}
.lsb_c00259{letter-spacing:0.897973pt;}
.ls60_c00259{letter-spacing:0.916053pt;}
.ls38_c00259{letter-spacing:0.921813pt;}
.ls15_c00259{letter-spacing:0.928107pt;}
.ls1d_c00259{letter-spacing:0.940160pt;}
.ls17_c00259{letter-spacing:0.954560pt;}
.ls58_c00259{letter-spacing:0.970293pt;}
.ls42_c00259{letter-spacing:0.982347pt;}
.ls52_c00259{letter-spacing:0.988373pt;}
.ls21_c00259{letter-spacing:1.042613pt;}
.ls82_c00259{letter-spacing:1.048640pt;}
.ls49_c00259{letter-spacing:1.054667pt;}
.ls16_c00259{letter-spacing:1.078773pt;}
.ls7_c00259{letter-spacing:1.096853pt;}
.ls2a_c00259{letter-spacing:1.102880pt;}
.ls54_c00259{letter-spacing:1.108907pt;}
.ls63_c00259{letter-spacing:1.145067pt;}
.ls2_c00259{letter-spacing:1.151093pt;}
.ls59_c00259{letter-spacing:1.199307pt;}
.ls6e_c00259{letter-spacing:1.223413pt;}
.ls4b_c00259{letter-spacing:1.229440pt;}
.ls55_c00259{letter-spacing:1.241493pt;}
.ls7d_c00259{letter-spacing:1.265600pt;}
.ls39_c00259{letter-spacing:1.274453pt;}
.ls26_c00259{letter-spacing:1.283680pt;}
.ls80_c00259{letter-spacing:1.289707pt;}
.ls6_c00259{letter-spacing:1.319840pt;}
.ls10_c00259{letter-spacing:1.410240pt;}
.ls37_c00259{letter-spacing:1.530773pt;}
.ls2f_c00259{letter-spacing:1.548853pt;}
.ls5b_c00259{letter-spacing:1.566933pt;}
.ls5e_c00259{letter-spacing:1.705547pt;}
.ls4f_c00259{letter-spacing:1.717600pt;}
.ls4c_c00259{letter-spacing:1.765813pt;}
.ls11_c00259{letter-spacing:1.922507pt;}
.ls3d_c00259{letter-spacing:1.940587pt;}
.lse_c00259{letter-spacing:1.958667pt;}
.ls40_c00259{letter-spacing:2.217813pt;}
.ls36_c00259{letter-spacing:2.344373pt;}
.ls23_c00259{letter-spacing:2.513120pt;}
.ls31_c00259{letter-spacing:3.001280pt;}
.ls6d_c00259{letter-spacing:3.013333pt;}
.ws1_c00259{word-spacing:-1.409707pt;}
.ws7_c00259{word-spacing:-1.157547pt;}
.ws3_c00259{word-spacing:-0.028267pt;}
.ws8_c00259{word-spacing:0.000000pt;}
.ws5_c00259{word-spacing:5.231787pt;}
.ws0_c00259{word-spacing:8.904747pt;}
.ws4_c00259{word-spacing:13.373867pt;}
.ws2_c00259{word-spacing:23.399467pt;}
.ws6_c00259{word-spacing:25.005013pt;}
._13_c00259{margin-left:-7.433600pt;}
._11_c00259{margin-left:-5.366400pt;}
._a_c00259{margin-left:-3.591893pt;}
._9_c00259{margin-left:-2.639680pt;}
._b_c00259{margin-left:-1.006453pt;}
._8_c00259{width:1.060693pt;}
._14_c00259{width:2.219200pt;}
._d_c00259{width:3.459307pt;}
._e_c00259{width:4.682720pt;}
._1_c00259{width:6.044747pt;}
._3_c00259{width:6.992640pt;}
._2_c00259{width:8.497600pt;}
._0_c00259{width:9.666773pt;}
._4_c00259{width:10.833120pt;}
._17_c00259{width:11.737387pt;}
._10_c00259{width:13.058080pt;}
._f_c00259{width:14.373120pt;}
._16_c00259{width:17.026400pt;}
._5_c00259{width:18.525973pt;}
._6_c00259{width:21.021013pt;}
._7_c00259{width:22.712480pt;}
._12_c00259{width:24.270933pt;}
._c_c00259{width:25.721813pt;}
._15_c00259{width:27.120373pt;}
.fs4_c00259{font-size:53.333333pt;}
.fs6_c00259{font-size:57.066667pt;}
.fs8_c00259{font-size:58.133333pt;}
.fs0_c00259{font-size:59.733333pt;}
.fs2_c00259{font-size:60.266667pt;}
.fs1_c00259{font-size:60.800000pt;}
.fs5_c00259{font-size:61.866667pt;}
.fs7_c00259{font-size:63.466667pt;}
.fs3_c00259{font-size:65.600000pt;}
.y0_c00259{bottom:0.000000pt;}
.y1c_c00259{bottom:66.560000pt;}
.y1b_c00259{bottom:133.760000pt;}
.y1a_c00259{bottom:189.770133pt;}
.y18_c00259{bottom:217.610133pt;}
.y19_c00259{bottom:217.613333pt;}
.y17_c00259{bottom:245.453733pt;}
.y16_c00259{bottom:273.613333pt;}
.y15_c00259{bottom:328.653733pt;}
.y14_c00259{bottom:356.813333pt;}
.y13_c00259{bottom:412.480000pt;}
.y11_c00259{bottom:468.172667pt;}
.y12_c00259{bottom:468.173333pt;}
.y10_c00259{bottom:496.317200pt;}
.yf_c00259{bottom:552.320000pt;}
.ye_c00259{bottom:580.173333pt;}
.yd_c00259{bottom:635.848267pt;}
.yc_c00259{bottom:663.360000pt;}
.yb_c00259{bottom:719.053333pt;}
.y9_c00259{bottom:775.048267pt;}
.ya_c00259{bottom:775.053333pt;}
.y7_c00259{bottom:802.556800pt;}
.y8_c00259{bottom:802.560000pt;}
.y6_c00259{bottom:830.400000pt;}
.y5_c00259{bottom:885.773333pt;}
.y4_c00259{bottom:941.770133pt;}
.y3_c00259{bottom:969.613733pt;}
.y2_c00259{bottom:997.773333pt;}
.y1_c00259{bottom:1065.933333pt;}
.h7_c00259{height:52.343750pt;}
.hc_c00259{height:57.054688pt;}
.h2_c00259{height:58.625000pt;}
.h5_c00259{height:59.148438pt;}
.ha_c00259{height:59.518750pt;}
.h6_c00259{height:59.642187pt;}
.h9_c00259{height:60.688542pt;}
.hb_c00259{height:62.287462pt;}
.h4_c00259{height:62.298400pt;}
.h8_c00259{height:62.856250pt;}
.h3_c00259{height:64.382813pt;}
.h1_c00259{height:1122.666667pt;}
.h0_c00259{height:1122.880000pt;}
.w1_c00259{width:793.333333pt;}
.w0_c00259{width:793.600000pt;}
.x0_c00259{left:0.000000pt;}
.xb_c00259{left:107.034533pt;}
.x3_c00259{left:108.667600pt;}
.x1_c00259{left:110.013333pt;}
.x12_c00259{left:154.706667pt;}
.xa_c00259{left:155.666667pt;}
.x2_c00259{left:157.266667pt;}
.x9_c00259{left:176.426667pt;}
.xc_c00259{left:281.293333pt;}
.x10_c00259{left:325.733333pt;}
.x11_c00259{left:353.240000pt;}
.x16_c00259{left:376.880000pt;}
.x13_c00259{left:395.760000pt;}
.x4_c00259{left:398.000000pt;}
.xd_c00259{left:409.893333pt;}
.x14_c00259{left:424.186667pt;}
.x5_c00259{left:426.426667pt;}
.xe_c00259{left:435.386667pt;}
.xf_c00259{left:457.093333pt;}
.x7_c00259{left:464.480000pt;}
.x8_c00259{left:483.666667pt;}
.x15_c00259{left:605.360000pt;}
.x6_c00259{left:607.600000pt;}
}





/* 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_c00260 {
    display:none;
  }
  .loading-indicator_c00260.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00260 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_c00260 { 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_c00260" -> "#page-container .classname_c00260")
 */
.pf_c00260 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00260 { /* 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_c00260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00260 { /* 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_c00260 { /* 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_c00260 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00260 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00260 {overflow:visible;}
  }
}
.c_c00260 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00260 { /* 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_c00260:after { /* webkit #35443 */
  content: '';
}
.t_c00260:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00260 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 */
}
.__c00260 { /* 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_c00260 { /* info for Javascript */
  display:none;
}
.l_c00260 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00260 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00260 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00260: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_c00260 {
    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_c00260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00260.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_c00260 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00260;src:url('chunks/assets/font_d19e66072485c195cbe69e2d.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.284668;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_c00260;src:url('chunks/assets/font_f8cb1a52fbb6612fe7d2078d.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.284180;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_c00260;src:url('chunks/assets/font_de506a52196e23fe02c3ba9c.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;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;}
.m7_c00260{transform:matrix(0.202692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202692,0.000000,0.000000,0.250000,0,0);}
.ma_c00260{transform:matrix(0.209829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209829,0.000000,0.000000,0.250000,0,0);}
.m8_c00260{transform:matrix(0.212744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212744,0.000000,0.000000,0.250000,0,0);}
.m6_c00260{transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);}
.m3_c00260{transform:matrix(0.237538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237538,0.000000,0.000000,0.250000,0,0);}
.m2_c00260{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m5_c00260{transform:matrix(0.244093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244093,0.000000,0.000000,0.250000,0,0);}
.m0_c00260{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m9_c00260{transform:matrix(0.248436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248436,0.000000,0.000000,0.250000,0,0);}
.m1_c00260{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);}
.m4_c00260{transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls87_c00260{letter-spacing:-2.604000px;}
.ls70_c00260{letter-spacing:-2.373000px;}
.ls69_c00260{letter-spacing:-2.366220px;}
.ls5d_c00260{letter-spacing:-2.352000px;}
.ls66_c00260{letter-spacing:-2.310000px;}
.ls6e_c00260{letter-spacing:-1.891620px;}
.ls7a_c00260{letter-spacing:-1.796700px;}
.ls77_c00260{letter-spacing:-1.695000px;}
.ls7b_c00260{letter-spacing:-1.661100px;}
.ls8f_c00260{letter-spacing:-1.600080px;}
.ls7f_c00260{letter-spacing:-1.417020px;}
.ls7c_c00260{letter-spacing:-1.410240px;}
.ls86_c00260{letter-spacing:-1.403460px;}
.ls6a_c00260{letter-spacing:-1.396680px;}
.ls6f_c00260{letter-spacing:-1.220400px;}
.ls89_c00260{letter-spacing:-1.078020px;}
.ls72_c00260{letter-spacing:-1.057680px;}
.ls76_c00260{letter-spacing:-0.854280px;}
.ls63_c00260{letter-spacing:-0.847500px;}
.ls65_c00260{letter-spacing:-0.725460px;}
.ls6d_c00260{letter-spacing:-0.691560px;}
.ls62_c00260{letter-spacing:-0.678000px;}
.ls8b_c00260{letter-spacing:-0.637320px;}
.ls7d_c00260{letter-spacing:-0.589860px;}
.ls75_c00260{letter-spacing:-0.501720px;}
.ls74_c00260{letter-spacing:-0.494940px;}
.ls90_c00260{letter-spacing:-0.450300px;}
.ls83_c00260{letter-spacing:-0.447480px;}
.ls64_c00260{letter-spacing:-0.400020px;}
.ls80_c00260{letter-spacing:-0.366120px;}
.ls73_c00260{letter-spacing:-0.339000px;}
.ls88_c00260{letter-spacing:-0.298320px;}
.ls84_c00260{letter-spacing:-0.271200px;}
.ls5f_c00260{letter-spacing:-0.264420px;}
.ls79_c00260{letter-spacing:-0.210180px;}
.ls81_c00260{letter-spacing:-0.183060px;}
.ls8e_c00260{letter-spacing:-0.176280px;}
.ls67_c00260{letter-spacing:-0.074580px;}
.ls68_c00260{letter-spacing:-0.067800px;}
.ls8d_c00260{letter-spacing:-0.061020px;}
.ls85_c00260{letter-spacing:-0.033900px;}
.ls60_c00260{letter-spacing:-0.013560px;}
.ls5e_c00260{letter-spacing:0.000000px;}
.ls42_c00260{letter-spacing:0.006780px;}
.ls1c_c00260{letter-spacing:0.013560px;}
.ls1f_c00260{letter-spacing:0.020340px;}
.ls2a_c00260{letter-spacing:0.027120px;}
.ls7_c00260{letter-spacing:0.033900px;}
.lsc_c00260{letter-spacing:0.040680px;}
.ls5a_c00260{letter-spacing:0.054240px;}
.ls9_c00260{letter-spacing:0.081360px;}
.ls6c_c00260{letter-spacing:0.094920px;}
.ls54_c00260{letter-spacing:0.108480px;}
.ls29_c00260{letter-spacing:0.142380px;}
.ls30_c00260{letter-spacing:0.155940px;}
.ls1_c00260{letter-spacing:0.162720px;}
.ls32_c00260{letter-spacing:0.169500px;}
.ls8a_c00260{letter-spacing:0.189840px;}
.ls4c_c00260{letter-spacing:0.210180px;}
.ls31_c00260{letter-spacing:0.216960px;}
.ls38_c00260{letter-spacing:0.264420px;}
.ls1a_c00260{letter-spacing:0.284760px;}
.ls44_c00260{letter-spacing:0.298320px;}
.ls61_c00260{letter-spacing:0.305100px;}
.ls26_c00260{letter-spacing:0.311880px;}
.ls4d_c00260{letter-spacing:0.318660px;}
.ls2c_c00260{letter-spacing:0.339000px;}
.ls17_c00260{letter-spacing:0.345780px;}
.ls6_c00260{letter-spacing:0.352560px;}
.ls2e_c00260{letter-spacing:0.359340px;}
.ls5_c00260{letter-spacing:0.366120px;}
.ls3c_c00260{letter-spacing:0.372900px;}
.ls2b_c00260{letter-spacing:0.379680px;}
.ls4e_c00260{letter-spacing:0.393240px;}
.ls2f_c00260{letter-spacing:0.400020px;}
.ls3f_c00260{letter-spacing:0.427140px;}
.lse_c00260{letter-spacing:0.467820px;}
.ls8_c00260{letter-spacing:0.474600px;}
.ls28_c00260{letter-spacing:0.494940px;}
.ls47_c00260{letter-spacing:0.501720px;}
.ls16_c00260{letter-spacing:0.508500px;}
.ls3a_c00260{letter-spacing:0.515280px;}
.ls13_c00260{letter-spacing:0.522060px;}
.ls23_c00260{letter-spacing:0.535620px;}
.ls11_c00260{letter-spacing:0.549180px;}
.ls56_c00260{letter-spacing:0.555960px;}
.ls48_c00260{letter-spacing:0.562740px;}
.ls78_c00260{letter-spacing:0.569520px;}
.ls0_c00260{letter-spacing:0.576300px;}
.ls19_c00260{letter-spacing:0.583080px;}
.ls43_c00260{letter-spacing:0.589860px;}
.ls59_c00260{letter-spacing:0.610200px;}
.ls6b_c00260{letter-spacing:0.626400px;}
.ls5b_c00260{letter-spacing:0.644100px;}
.lsa_c00260{letter-spacing:0.650880px;}
.ls4f_c00260{letter-spacing:0.664440px;}
.ls3_c00260{letter-spacing:0.678000px;}
.ls55_c00260{letter-spacing:0.705120px;}
.ls15_c00260{letter-spacing:0.725460px;}
.ls25_c00260{letter-spacing:0.745800px;}
.ls58_c00260{letter-spacing:0.766140px;}
.ls34_c00260{letter-spacing:0.779700px;}
.ls5c_c00260{letter-spacing:0.800040px;}
.ls10_c00260{letter-spacing:0.806820px;}
.ls18_c00260{letter-spacing:0.813600px;}
.ls33_c00260{letter-spacing:0.820380px;}
.ls52_c00260{letter-spacing:0.833940px;}
.ls3b_c00260{letter-spacing:0.840720px;}
.ls1e_c00260{letter-spacing:0.854280px;}
.ls51_c00260{letter-spacing:0.881400px;}
.ls4b_c00260{letter-spacing:0.894960px;}
.ls4_c00260{letter-spacing:0.969540px;}
.ls39_c00260{letter-spacing:0.989880px;}
.ls2d_c00260{letter-spacing:1.010220px;}
.ls46_c00260{letter-spacing:1.017000px;}
.ls20_c00260{letter-spacing:1.030560px;}
.ls36_c00260{letter-spacing:1.064460px;}
.ls8c_c00260{letter-spacing:1.078020px;}
.ls40_c00260{letter-spacing:1.091580px;}
.ls3d_c00260{letter-spacing:1.105140px;}
.ls35_c00260{letter-spacing:1.118700px;}
.ls57_c00260{letter-spacing:1.132260px;}
.ls49_c00260{letter-spacing:1.159380px;}
.ls37_c00260{letter-spacing:1.179720px;}
.ls53_c00260{letter-spacing:1.186500px;}
.ls22_c00260{letter-spacing:1.193280px;}
.ls14_c00260{letter-spacing:1.233960px;}
.ls1b_c00260{letter-spacing:1.267860px;}
.ls24_c00260{letter-spacing:1.280640px;}
.ls12_c00260{letter-spacing:1.444140px;}
.ls3e_c00260{letter-spacing:1.450920px;}
.ls2_c00260{letter-spacing:1.545840px;}
.lsd_c00260{letter-spacing:1.566180px;}
.ls50_c00260{letter-spacing:1.640760px;}
.ls41_c00260{letter-spacing:1.674660px;}
.ls45_c00260{letter-spacing:1.823820px;}
.ls27_c00260{letter-spacing:1.830600px;}
.ls7e_c00260{letter-spacing:1.918740px;}
.ls1d_c00260{letter-spacing:1.932300px;}
.lsf_c00260{letter-spacing:2.108580px;}
.lsb_c00260{letter-spacing:2.203500px;}
.ls4a_c00260{letter-spacing:2.223840px;}
.ls82_c00260{letter-spacing:3.118800px;}
.ls21_c00260{letter-spacing:3.356100px;}
.ls71_c00260{letter-spacing:3.390000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{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__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00260{word-spacing:-1.084800px;}
.ws3_c00260{word-spacing:-0.881400px;}
.ws7_c00260{word-spacing:0.000000px;}
.ws1_c00260{word-spacing:0.305100px;}
.ws0_c00260{word-spacing:3.254400px;}
.ws2_c00260{word-spacing:15.512640px;}
.ws6_c00260{word-spacing:19.526400px;}
.ws4_c00260{word-spacing:23.011320px;}
._1_c00260{margin-left:-5.139240px;}
._4_c00260{margin-left:-4.095120px;}
._5_c00260{margin-left:-2.474700px;}
._3_c00260{margin-left:-1.159380px;}
._0_c00260{width:1.803480px;}
._2_c00260{width:3.213720px;}
._e_c00260{width:4.725660px;}
._d_c00260{width:6.034200px;}
._c_c00260{width:7.241040px;}
._6_c00260{width:8.278380px;}
._8_c00260{width:9.593700px;}
._9_c00260{width:11.417520px;}
._a_c00260{width:13.234560px;}
._7_c00260{width:15.078720px;}
._b_c00260{width:16.350840px;}
._13_c00260{width:17.591880px;}
._f_c00260{width:19.526400px;}
._12_c00260{width:20.550180px;}
._11_c00260{width:23.058780px;}
._10_c00260{width:24.441900px;}
.fc0_c00260{color:transparent;}
.fs5_c00260{font-size:57.000000px;}
.fs2_c00260{font-size:66.000000px;}
.fs0_c00260{font-size:67.200000px;}
.fs1_c00260{font-size:67.800000px;}
.fs3_c00260{font-size:69.600000px;}
.fs4_c00260{font-size:74.400000px;}
.y0_c00260{bottom:0.000000px;}
.y1d_c00260{bottom:73.080000px;}
.y1c_c00260{bottom:180.354450px;}
.y1b_c00260{bottom:211.691400px;}
.y1a_c00260{bottom:243.015000px;}
.y18_c00260{bottom:305.647800px;}
.y19_c00260{bottom:305.655000px;}
.y17_c00260{bottom:368.295000px;}
.y15_c00260{bottom:399.233250px;}
.y16_c00260{bottom:399.240000px;}
.y14_c00260{bottom:462.609300px;}
.y13_c00260{bottom:493.560000px;}
.y12_c00260{bottom:524.893350px;}
.y11_c00260{bottom:556.200000px;}
.y10_c00260{bottom:618.849300px;}
.yf_c00260{bottom:649.800000px;}
.yd_c00260{bottom:712.449300px;}
.ye_c00260{bottom:712.455000px;}
.yc_c00260{bottom:743.400000px;}
.yb_c00260{bottom:743.407800px;}
.ya_c00260{bottom:806.055000px;}
.y9_c00260{bottom:837.015000px;}
.y8_c00260{bottom:900.007350px;}
.y7_c00260{bottom:930.969750px;}
.y6_c00260{bottom:993.600000px;}
.y4_c00260{bottom:1055.891850px;}
.y5_c00260{bottom:1055.895000px;}
.y3_c00260{bottom:1087.198500px;}
.y2_c00260{bottom:1118.895000px;}
.y1_c00260{bottom:1194.495000px;}
.hd_c00260{height:55.942383px;}
.h2_c00260{height:65.953125px;}
.h7_c00260{height:66.508887px;}
.h3_c00260{height:66.541992px;}
.h9_c00260{height:66.548592px;}
.hc_c00260{height:66.556392px;}
.h5_c00260{height:66.562992px;}
.h8_c00260{height:66.564792px;}
.h6_c00260{height:68.274609px;}
.h4_c00260{height:68.835938px;}
.ha_c00260{height:73.019531px;}
.hb_c00260{height:77.596875px;}
.h1_c00260{height:1263.000000px;}
.h0_c00260{height:1263.240000px;}
.w1_c00260{width:892.500000px;}
.w0_c00260{width:892.800000px;}
.x0_c00260{left:0.000000px;}
.x11_c00260{left:124.520550px;}
.x1_c00260{left:125.565000px;}
.x2_c00260{left:179.415000px;}
.xb_c00260{left:180.745950px;}
.x4_c00260{left:287.655000px;}
.x9_c00260{left:320.730000px;}
.xa_c00260{left:351.585000px;}
.xd_c00260{left:415.755000px;}
.x12_c00260{left:425.430000px;}
.x8_c00260{left:440.535000px;}
.xe_c00260{left:447.330000px;}
.x5_c00260{left:465.285000px;}
.x6_c00260{left:482.250000px;}
.x7_c00260{left:533.325000px;}
.xf_c00260{left:604.590000px;}
.x10_c00260{left:626.370000px;}
.x3_c00260{left:638.055000px;}
.xc_c00260{left:735.690000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls87_c00260{letter-spacing:-2.314667pt;}
.ls70_c00260{letter-spacing:-2.109333pt;}
.ls69_c00260{letter-spacing:-2.103307pt;}
.ls5d_c00260{letter-spacing:-2.090667pt;}
.ls66_c00260{letter-spacing:-2.053333pt;}
.ls6e_c00260{letter-spacing:-1.681440pt;}
.ls7a_c00260{letter-spacing:-1.597067pt;}
.ls77_c00260{letter-spacing:-1.506667pt;}
.ls7b_c00260{letter-spacing:-1.476533pt;}
.ls8f_c00260{letter-spacing:-1.422293pt;}
.ls7f_c00260{letter-spacing:-1.259573pt;}
.ls7c_c00260{letter-spacing:-1.253547pt;}
.ls86_c00260{letter-spacing:-1.247520pt;}
.ls6a_c00260{letter-spacing:-1.241493pt;}
.ls6f_c00260{letter-spacing:-1.084800pt;}
.ls89_c00260{letter-spacing:-0.958240pt;}
.ls72_c00260{letter-spacing:-0.940160pt;}
.ls76_c00260{letter-spacing:-0.759360pt;}
.ls63_c00260{letter-spacing:-0.753333pt;}
.ls65_c00260{letter-spacing:-0.644853pt;}
.ls6d_c00260{letter-spacing:-0.614720pt;}
.ls62_c00260{letter-spacing:-0.602667pt;}
.ls8b_c00260{letter-spacing:-0.566507pt;}
.ls7d_c00260{letter-spacing:-0.524320pt;}
.ls75_c00260{letter-spacing:-0.445973pt;}
.ls74_c00260{letter-spacing:-0.439947pt;}
.ls90_c00260{letter-spacing:-0.400267pt;}
.ls83_c00260{letter-spacing:-0.397760pt;}
.ls64_c00260{letter-spacing:-0.355573pt;}
.ls80_c00260{letter-spacing:-0.325440pt;}
.ls73_c00260{letter-spacing:-0.301333pt;}
.ls88_c00260{letter-spacing:-0.265173pt;}
.ls84_c00260{letter-spacing:-0.241067pt;}
.ls5f_c00260{letter-spacing:-0.235040pt;}
.ls79_c00260{letter-spacing:-0.186827pt;}
.ls81_c00260{letter-spacing:-0.162720pt;}
.ls8e_c00260{letter-spacing:-0.156693pt;}
.ls67_c00260{letter-spacing:-0.066293pt;}
.ls68_c00260{letter-spacing:-0.060267pt;}
.ls8d_c00260{letter-spacing:-0.054240pt;}
.ls85_c00260{letter-spacing:-0.030133pt;}
.ls60_c00260{letter-spacing:-0.012053pt;}
.ls5e_c00260{letter-spacing:0.000000pt;}
.ls42_c00260{letter-spacing:0.006027pt;}
.ls1c_c00260{letter-spacing:0.012053pt;}
.ls1f_c00260{letter-spacing:0.018080pt;}
.ls2a_c00260{letter-spacing:0.024107pt;}
.ls7_c00260{letter-spacing:0.030133pt;}
.lsc_c00260{letter-spacing:0.036160pt;}
.ls5a_c00260{letter-spacing:0.048213pt;}
.ls9_c00260{letter-spacing:0.072320pt;}
.ls6c_c00260{letter-spacing:0.084373pt;}
.ls54_c00260{letter-spacing:0.096427pt;}
.ls29_c00260{letter-spacing:0.126560pt;}
.ls30_c00260{letter-spacing:0.138613pt;}
.ls1_c00260{letter-spacing:0.144640pt;}
.ls32_c00260{letter-spacing:0.150667pt;}
.ls8a_c00260{letter-spacing:0.168747pt;}
.ls4c_c00260{letter-spacing:0.186827pt;}
.ls31_c00260{letter-spacing:0.192853pt;}
.ls38_c00260{letter-spacing:0.235040pt;}
.ls1a_c00260{letter-spacing:0.253120pt;}
.ls44_c00260{letter-spacing:0.265173pt;}
.ls61_c00260{letter-spacing:0.271200pt;}
.ls26_c00260{letter-spacing:0.277227pt;}
.ls4d_c00260{letter-spacing:0.283253pt;}
.ls2c_c00260{letter-spacing:0.301333pt;}
.ls17_c00260{letter-spacing:0.307360pt;}
.ls6_c00260{letter-spacing:0.313387pt;}
.ls2e_c00260{letter-spacing:0.319413pt;}
.ls5_c00260{letter-spacing:0.325440pt;}
.ls3c_c00260{letter-spacing:0.331467pt;}
.ls2b_c00260{letter-spacing:0.337493pt;}
.ls4e_c00260{letter-spacing:0.349547pt;}
.ls2f_c00260{letter-spacing:0.355573pt;}
.ls3f_c00260{letter-spacing:0.379680pt;}
.lse_c00260{letter-spacing:0.415840pt;}
.ls8_c00260{letter-spacing:0.421867pt;}
.ls28_c00260{letter-spacing:0.439947pt;}
.ls47_c00260{letter-spacing:0.445973pt;}
.ls16_c00260{letter-spacing:0.452000pt;}
.ls3a_c00260{letter-spacing:0.458027pt;}
.ls13_c00260{letter-spacing:0.464053pt;}
.ls23_c00260{letter-spacing:0.476107pt;}
.ls11_c00260{letter-spacing:0.488160pt;}
.ls56_c00260{letter-spacing:0.494187pt;}
.ls48_c00260{letter-spacing:0.500213pt;}
.ls78_c00260{letter-spacing:0.506240pt;}
.ls0_c00260{letter-spacing:0.512267pt;}
.ls19_c00260{letter-spacing:0.518293pt;}
.ls43_c00260{letter-spacing:0.524320pt;}
.ls59_c00260{letter-spacing:0.542400pt;}
.ls6b_c00260{letter-spacing:0.556800pt;}
.ls5b_c00260{letter-spacing:0.572533pt;}
.lsa_c00260{letter-spacing:0.578560pt;}
.ls4f_c00260{letter-spacing:0.590613pt;}
.ls3_c00260{letter-spacing:0.602667pt;}
.ls55_c00260{letter-spacing:0.626773pt;}
.ls15_c00260{letter-spacing:0.644853pt;}
.ls25_c00260{letter-spacing:0.662933pt;}
.ls58_c00260{letter-spacing:0.681013pt;}
.ls34_c00260{letter-spacing:0.693067pt;}
.ls5c_c00260{letter-spacing:0.711147pt;}
.ls10_c00260{letter-spacing:0.717173pt;}
.ls18_c00260{letter-spacing:0.723200pt;}
.ls33_c00260{letter-spacing:0.729227pt;}
.ls52_c00260{letter-spacing:0.741280pt;}
.ls3b_c00260{letter-spacing:0.747307pt;}
.ls1e_c00260{letter-spacing:0.759360pt;}
.ls51_c00260{letter-spacing:0.783467pt;}
.ls4b_c00260{letter-spacing:0.795520pt;}
.ls4_c00260{letter-spacing:0.861813pt;}
.ls39_c00260{letter-spacing:0.879893pt;}
.ls2d_c00260{letter-spacing:0.897973pt;}
.ls46_c00260{letter-spacing:0.904000pt;}
.ls20_c00260{letter-spacing:0.916053pt;}
.ls36_c00260{letter-spacing:0.946187pt;}
.ls8c_c00260{letter-spacing:0.958240pt;}
.ls40_c00260{letter-spacing:0.970293pt;}
.ls3d_c00260{letter-spacing:0.982347pt;}
.ls35_c00260{letter-spacing:0.994400pt;}
.ls57_c00260{letter-spacing:1.006453pt;}
.ls49_c00260{letter-spacing:1.030560pt;}
.ls37_c00260{letter-spacing:1.048640pt;}
.ls53_c00260{letter-spacing:1.054667pt;}
.ls22_c00260{letter-spacing:1.060693pt;}
.ls14_c00260{letter-spacing:1.096853pt;}
.ls1b_c00260{letter-spacing:1.126987pt;}
.ls24_c00260{letter-spacing:1.138347pt;}
.ls12_c00260{letter-spacing:1.283680pt;}
.ls3e_c00260{letter-spacing:1.289707pt;}
.ls2_c00260{letter-spacing:1.374080pt;}
.lsd_c00260{letter-spacing:1.392160pt;}
.ls50_c00260{letter-spacing:1.458453pt;}
.ls41_c00260{letter-spacing:1.488587pt;}
.ls45_c00260{letter-spacing:1.621173pt;}
.ls27_c00260{letter-spacing:1.627200pt;}
.ls7e_c00260{letter-spacing:1.705547pt;}
.ls1d_c00260{letter-spacing:1.717600pt;}
.lsf_c00260{letter-spacing:1.874293pt;}
.lsb_c00260{letter-spacing:1.958667pt;}
.ls4a_c00260{letter-spacing:1.976747pt;}
.ls82_c00260{letter-spacing:2.772267pt;}
.ls21_c00260{letter-spacing:2.983200pt;}
.ls71_c00260{letter-spacing:3.013333pt;}
.ws5_c00260{word-spacing:-0.964267pt;}
.ws3_c00260{word-spacing:-0.783467pt;}
.ws7_c00260{word-spacing:0.000000pt;}
.ws1_c00260{word-spacing:0.271200pt;}
.ws0_c00260{word-spacing:2.892800pt;}
.ws2_c00260{word-spacing:13.789013pt;}
.ws6_c00260{word-spacing:17.356800pt;}
.ws4_c00260{word-spacing:20.454507pt;}
._1_c00260{margin-left:-4.568213pt;}
._4_c00260{margin-left:-3.640107pt;}
._5_c00260{margin-left:-2.199733pt;}
._3_c00260{margin-left:-1.030560pt;}
._0_c00260{width:1.603093pt;}
._2_c00260{width:2.856640pt;}
._e_c00260{width:4.200587pt;}
._d_c00260{width:5.363733pt;}
._c_c00260{width:6.436480pt;}
._6_c00260{width:7.358560pt;}
._8_c00260{width:8.527733pt;}
._9_c00260{width:10.148907pt;}
._a_c00260{width:11.764053pt;}
._7_c00260{width:13.403307pt;}
._b_c00260{width:14.534080pt;}
._13_c00260{width:15.637227pt;}
._f_c00260{width:17.356800pt;}
._12_c00260{width:18.266827pt;}
._11_c00260{width:20.496693pt;}
._10_c00260{width:21.726133pt;}
.fs5_c00260{font-size:50.666667pt;}
.fs2_c00260{font-size:58.666667pt;}
.fs0_c00260{font-size:59.733333pt;}
.fs1_c00260{font-size:60.266667pt;}
.fs3_c00260{font-size:61.866667pt;}
.fs4_c00260{font-size:66.133333pt;}
.y0_c00260{bottom:0.000000pt;}
.y1d_c00260{bottom:64.960000pt;}
.y1c_c00260{bottom:160.315067pt;}
.y1b_c00260{bottom:188.170133pt;}
.y1a_c00260{bottom:216.013333pt;}
.y18_c00260{bottom:271.686933pt;}
.y19_c00260{bottom:271.693333pt;}
.y17_c00260{bottom:327.373333pt;}
.y15_c00260{bottom:354.874000pt;}
.y16_c00260{bottom:354.880000pt;}
.y14_c00260{bottom:411.208267pt;}
.y13_c00260{bottom:438.720000pt;}
.y12_c00260{bottom:466.571867pt;}
.y11_c00260{bottom:494.400000pt;}
.y10_c00260{bottom:550.088267pt;}
.yf_c00260{bottom:577.600000pt;}
.yd_c00260{bottom:633.288267pt;}
.ye_c00260{bottom:633.293333pt;}
.yc_c00260{bottom:660.800000pt;}
.yb_c00260{bottom:660.806933pt;}
.ya_c00260{bottom:716.493333pt;}
.y9_c00260{bottom:744.013333pt;}
.y8_c00260{bottom:800.006533pt;}
.y7_c00260{bottom:827.528667pt;}
.y6_c00260{bottom:883.200000pt;}
.y4_c00260{bottom:938.570533pt;}
.y5_c00260{bottom:938.573333pt;}
.y3_c00260{bottom:966.398667pt;}
.y2_c00260{bottom:994.573333pt;}
.y1_c00260{bottom:1061.773333pt;}
.hd_c00260{height:49.726562pt;}
.h2_c00260{height:58.625000pt;}
.h7_c00260{height:59.119010pt;}
.h3_c00260{height:59.148438pt;}
.h9_c00260{height:59.154304pt;}
.hc_c00260{height:59.161238pt;}
.h5_c00260{height:59.167104pt;}
.h8_c00260{height:59.168704pt;}
.h6_c00260{height:60.688542pt;}
.h4_c00260{height:61.187500pt;}
.ha_c00260{height:64.906250pt;}
.hb_c00260{height:68.975000pt;}
.h1_c00260{height:1122.666667pt;}
.h0_c00260{height:1122.880000pt;}
.w1_c00260{width:793.333333pt;}
.w0_c00260{width:793.600000pt;}
.x0_c00260{left:0.000000pt;}
.x11_c00260{left:110.684933pt;}
.x1_c00260{left:111.613333pt;}
.x2_c00260{left:159.480000pt;}
.xb_c00260{left:160.663067pt;}
.x4_c00260{left:255.693333pt;}
.x9_c00260{left:285.093333pt;}
.xa_c00260{left:312.520000pt;}
.xd_c00260{left:369.560000pt;}
.x12_c00260{left:378.160000pt;}
.x8_c00260{left:391.586667pt;}
.xe_c00260{left:397.626667pt;}
.x5_c00260{left:413.586667pt;}
.x6_c00260{left:428.666667pt;}
.x7_c00260{left:474.066667pt;}
.xf_c00260{left:537.413333pt;}
.x10_c00260{left:556.773333pt;}
.x3_c00260{left:567.160000pt;}
.xc_c00260{left:653.946667pt;}
}





/* 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_c00261 {
    display:none;
  }
  .loading-indicator_c00261.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00261 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_c00261 { 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_c00261" -> "#page-container .classname_c00261")
 */
.pf_c00261 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00261 { /* 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_c00261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00261 { /* 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_c00261 { /* 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_c00261 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00261 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00261 {overflow:visible;}
  }
}
.c_c00261 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00261 { /* 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_c00261:after { /* webkit #35443 */
  content: '';
}
.t_c00261:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00261 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 */
}
.__c00261 { /* 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_c00261 { /* info for Javascript */
  display:none;
}
.l_c00261 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00261 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00261 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00261: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_c00261 {
    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_c00261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00261.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_c00261 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00261;src:url('chunks/assets/font_9a66c0c0f0ebe588b0788617.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.284668;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_c00261;src:url('chunks/assets/font_415fdfa4b341058557c40662.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.284180;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_c00261;src:url('chunks/assets/font_6ff97a3e0bae8f84cc34a9a6.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:0.666000;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_c00261{transform:matrix(0.126160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126160,0.000000,0.000000,0.250000,0,0);}
.m6_c00261{transform:matrix(0.137627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137627,0.000000,0.000000,0.250000,0,0);}
.m9_c00261{transform:matrix(0.182223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182223,0.000000,0.000000,0.250000,0,0);}
.m8_c00261{transform:matrix(0.183337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183337,0.000000,0.000000,0.250000,0,0);}
.m5_c00261{transform:matrix(0.236478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236478,0.000000,0.000000,0.250000,0,0);}
.m0_c00261{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m1_c00261{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);}
.m3_c00261{transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);}
.m2_c00261{transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);}
.m7_c00261{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.ma_c00261{transform:matrix(0.253723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253723,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls8b_c00261{letter-spacing:-2.751000px;}
.ls6f_c00261{letter-spacing:-2.352000px;}
.ls8a_c00261{letter-spacing:-2.058000px;}
.ls70_c00261{letter-spacing:-1.968960px;}
.ls7b_c00261{letter-spacing:-1.612800px;}
.ls8e_c00261{letter-spacing:-1.384320px;}
.ls7a_c00261{letter-spacing:-1.135680px;}
.ls90_c00261{letter-spacing:-1.061760px;}
.ls7e_c00261{letter-spacing:-0.786240px;}
.ls79_c00261{letter-spacing:-0.483840px;}
.ls7d_c00261{letter-spacing:-0.389760px;}
.ls7c_c00261{letter-spacing:-0.161280px;}
.ls82_c00261{letter-spacing:-0.120960px;}
.ls91_c00261{letter-spacing:-0.060480px;}
.ls8c_c00261{letter-spacing:-0.026880px;}
.ls72_c00261{letter-spacing:0.000000px;}
.ls7f_c00261{letter-spacing:0.147840px;}
.ls1f_c00261{letter-spacing:0.208320px;}
.ls62_c00261{letter-spacing:0.215040px;}
.ls88_c00261{letter-spacing:0.221760px;}
.ls32_c00261{letter-spacing:0.235200px;}
.lsa_c00261{letter-spacing:0.383040px;}
.ls1a_c00261{letter-spacing:0.396480px;}
.ls30_c00261{letter-spacing:0.423360px;}
.ls6b_c00261{letter-spacing:0.456960px;}
.ls77_c00261{letter-spacing:0.463680px;}
.ls2d_c00261{letter-spacing:0.490560px;}
.ls84_c00261{letter-spacing:0.497280px;}
.ls14_c00261{letter-spacing:0.504000px;}
.ls9_c00261{letter-spacing:0.551040px;}
.lsf_c00261{letter-spacing:0.583080px;}
.ls22_c00261{letter-spacing:0.584640px;}
.ls5f_c00261{letter-spacing:0.598080px;}
.ls4e_c00261{letter-spacing:0.608760px;}
.ls40_c00261{letter-spacing:0.624960px;}
.ls5c_c00261{letter-spacing:0.665280px;}
.ls21_c00261{letter-spacing:0.678720px;}
.ls68_c00261{letter-spacing:0.698880px;}
.ls74_c00261{letter-spacing:0.705600px;}
.ls12_c00261{letter-spacing:0.719040px;}
.ls66_c00261{letter-spacing:0.725760px;}
.lsc_c00261{letter-spacing:0.739200px;}
.ls59_c00261{letter-spacing:0.759360px;}
.ls10_c00261{letter-spacing:0.766140px;}
.ls78_c00261{letter-spacing:0.779520px;}
.ls3b_c00261{letter-spacing:0.792960px;}
.ls19_c00261{letter-spacing:0.819840px;}
.ls92_c00261{letter-spacing:0.820620px;}
.ls47_c00261{letter-spacing:0.833280px;}
.ls6c_c00261{letter-spacing:0.840720px;}
.ls54_c00261{letter-spacing:0.846720px;}
.ls71_c00261{letter-spacing:0.853440px;}
.ls86_c00261{letter-spacing:0.882360px;}
.lsd_c00261{letter-spacing:0.887040px;}
.ls20_c00261{letter-spacing:0.913920px;}
.ls61_c00261{letter-spacing:0.920640px;}
.ls5d_c00261{letter-spacing:0.947520px;}
.ls0_c00261{letter-spacing:0.949200px;}
.ls43_c00261{letter-spacing:0.954240px;}
.ls38_c00261{letter-spacing:0.960960px;}
.ls1e_c00261{letter-spacing:0.987840px;}
.ls27_c00261{letter-spacing:0.994560px;}
.ls1c_c00261{letter-spacing:1.001280px;}
.ls28_c00261{letter-spacing:1.014720px;}
.ls45_c00261{letter-spacing:1.021440px;}
.ls48_c00261{letter-spacing:1.034880px;}
.ls23_c00261{letter-spacing:1.048320px;}
.ls4_c00261{letter-spacing:1.055040px;}
.ls41_c00261{letter-spacing:1.068480px;}
.ls4d_c00261{letter-spacing:1.073880px;}
.ls58_c00261{letter-spacing:1.081920px;}
.ls3a_c00261{letter-spacing:1.088640px;}
.ls6e_c00261{letter-spacing:1.095360px;}
.ls13_c00261{letter-spacing:1.128960px;}
.ls64_c00261{letter-spacing:1.135680px;}
.ls29_c00261{letter-spacing:1.139040px;}
.ls1d_c00261{letter-spacing:1.155840px;}
.ls49_c00261{letter-spacing:1.162560px;}
.ls4a_c00261{letter-spacing:1.176000px;}
.lse_c00261{letter-spacing:1.189440px;}
.ls46_c00261{letter-spacing:1.196160px;}
.ls5_c00261{letter-spacing:1.202880px;}
.ls26_c00261{letter-spacing:1.209600px;}
.ls83_c00261{letter-spacing:1.216320px;}
.ls3e_c00261{letter-spacing:1.236480px;}
.ls56_c00261{letter-spacing:1.240740px;}
.ls44_c00261{letter-spacing:1.249920px;}
.ls87_c00261{letter-spacing:1.256640px;}
.ls67_c00261{letter-spacing:1.276800px;}
.ls63_c00261{letter-spacing:1.290240px;}
.ls6d_c00261{letter-spacing:1.303680px;}
.ls76_c00261{letter-spacing:1.310400px;}
.ls6a_c00261{letter-spacing:1.330560px;}
.ls52_c00261{letter-spacing:1.370880px;}
.ls4c_c00261{letter-spacing:1.384320px;}
.ls50_c00261{letter-spacing:1.395360px;}
.ls69_c00261{letter-spacing:1.417920px;}
.ls4f_c00261{letter-spacing:1.431360px;}
.ls42_c00261{letter-spacing:1.451520px;}
.ls8_c00261{letter-spacing:1.512000px;}
.ls89_c00261{letter-spacing:1.525440px;}
.ls1_c00261{letter-spacing:1.552320px;}
.ls57_c00261{letter-spacing:1.559040px;}
.ls60_c00261{letter-spacing:1.565760px;}
.ls39_c00261{letter-spacing:1.572480px;}
.ls55_c00261{letter-spacing:1.592640px;}
.ls5b_c00261{letter-spacing:1.599360px;}
.ls2c_c00261{letter-spacing:1.606080px;}
.ls65_c00261{letter-spacing:1.619520px;}
.ls25_c00261{letter-spacing:1.632960px;}
.ls2a_c00261{letter-spacing:1.646400px;}
.ls2e_c00261{letter-spacing:1.659840px;}
.ls8f_c00261{letter-spacing:1.680000px;}
.ls31_c00261{letter-spacing:1.706880px;}
.ls36_c00261{letter-spacing:1.720320px;}
.ls5e_c00261{letter-spacing:1.733760px;}
.ls3f_c00261{letter-spacing:1.767360px;}
.ls15_c00261{letter-spacing:1.794240px;}
.ls85_c00261{letter-spacing:1.874880px;}
.ls3c_c00261{letter-spacing:1.881600px;}
.ls3_c00261{letter-spacing:1.901760px;}
.ls24_c00261{letter-spacing:1.915200px;}
.ls34_c00261{letter-spacing:1.935360px;}
.lsb_c00261{letter-spacing:1.948800px;}
.ls3d_c00261{letter-spacing:1.962240px;}
.ls51_c00261{letter-spacing:1.989120px;}
.ls17_c00261{letter-spacing:2.006880px;}
.ls81_c00261{letter-spacing:2.009280px;}
.ls4b_c00261{letter-spacing:2.036160px;}
.ls53_c00261{letter-spacing:2.049600px;}
.ls6_c00261{letter-spacing:2.083200px;}
.ls11_c00261{letter-spacing:2.143680px;}
.ls1b_c00261{letter-spacing:2.190720px;}
.ls8d_c00261{letter-spacing:2.237760px;}
.ls2b_c00261{letter-spacing:2.244480px;}
.ls80_c00261{letter-spacing:2.257920px;}
.ls7_c00261{letter-spacing:2.278080px;}
.ls5a_c00261{letter-spacing:2.304960px;}
.ls2f_c00261{letter-spacing:2.365440px;}
.ls2_c00261{letter-spacing:2.493120px;}
.ls16_c00261{letter-spacing:2.573760px;}
.ls33_c00261{letter-spacing:2.587200px;}
.ls73_c00261{letter-spacing:2.688000px;}
.ls37_c00261{letter-spacing:2.755200px;}
.ls18_c00261{letter-spacing:2.867940px;}
.ls35_c00261{letter-spacing:3.151680px;}
.ls75_c00261{letter-spacing:3.360000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{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__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00261{word-spacing:-1.762560px;}
.ws6_c00261{word-spacing:-1.065000px;}
.ws7_c00261{word-spacing:0.000000px;}
.ws2_c00261{word-spacing:5.189640px;}
.ws3_c00261{word-spacing:5.357760px;}
.ws5_c00261{word-spacing:11.572200px;}
.ws1_c00261{word-spacing:13.062660px;}
.ws0_c00261{word-spacing:27.187800px;}
._12_c00261{margin-left:-12.888960px;}
._15_c00261{margin-left:-7.268340px;}
._c_c00261{margin-left:-5.586720px;}
._13_c00261{margin-left:-4.099200px;}
._d_c00261{margin-left:-2.912460px;}
._b_c00261{margin-left:-1.794240px;}
._e_c00261{width:1.310400px;}
._f_c00261{width:2.446080px;}
._11_c00261{width:4.079040px;}
._10_c00261{width:5.624640px;}
._8_c00261{width:7.067640px;}
._14_c00261{width:8.723040px;}
._16_c00261{width:9.962160px;}
._9_c00261{width:10.987200px;}
._a_c00261{width:12.875520px;}
._0_c00261{width:20.919360px;}
._1_c00261{width:22.061760px;}
._3_c00261{width:24.501120px;}
._2_c00261{width:26.409600px;}
._7_c00261{width:27.538560px;}
._6_c00261{width:28.795200px;}
._4_c00261{width:31.006080px;}
._5_c00261{width:33.290880px;}
.fc0_c00261{color:transparent;}
.fs2_c00261{font-size:51.840000px;}
.fs7_c00261{font-size:58.200000px;}
.fs5_c00261{font-size:58.800000px;}
.fs0_c00261{font-size:67.200000px;}
.fs1_c00261{font-size:67.800000px;}
.fs3_c00261{font-size:68.400000px;}
.fs4_c00261{font-size:73.800000px;}
.fs6_c00261{font-size:78.600000px;}
.y0_c00261{bottom:0.000000px;}
.y1c_c00261{bottom:67.695000px;}
.y1b_c00261{bottom:175.320000px;}
.y1a_c00261{bottom:237.257400px;}
.y18_c00261{bottom:269.290200px;}
.y19_c00261{bottom:269.295000px;}
.y17_c00261{bottom:300.972600px;}
.y15_c00261{bottom:331.927800px;}
.y16_c00261{bottom:331.935000px;}
.y14_c00261{bottom:364.335000px;}
.y13_c00261{bottom:426.255000px;}
.y12_c00261{bottom:489.600000px;}
.y11_c00261{bottom:520.935000px;}
.y10_c00261{bottom:583.591200px;}
.yf_c00261{bottom:614.906400px;}
.ye_c00261{bottom:646.204800px;}
.yc_c00261{bottom:677.515800px;}
.yd_c00261{bottom:677.520000px;}
.yb_c00261{bottom:708.495000px;}
.ya_c00261{bottom:771.139800px;}
.y9_c00261{bottom:802.459800px;}
.y8_c00261{bottom:865.812600px;}
.y7_c00261{bottom:896.775000px;}
.y6_c00261{bottom:960.134400px;}
.y5_c00261{bottom:991.080000px;}
.y4_c00261{bottom:1054.449600px;}
.y3_c00261{bottom:1085.395200px;}
.y2_c00261{bottom:1117.080000px;}
.y1_c00261{bottom:1193.040000px;}
.h4_c00261{height:34.525440px;}
.ha_c00261{height:57.120117px;}
.h7_c00261{height:57.708984px;}
.h2_c00261{height:65.953125px;}
.h9_c00261{height:65.962725px;}
.h3_c00261{height:66.508887px;}
.h5_c00261{height:67.097461px;}
.h6_c00261{height:72.430664px;}
.h8_c00261{height:77.141602px;}
.h1_c00261{height:1263.000000px;}
.h0_c00261{height:1263.240000px;}
.w1_c00261{width:892.500000px;}
.w0_c00261{width:892.800000px;}
.x0_c00261{left:0.000000px;}
.x18_c00261{left:119.013000px;}
.xb_c00261{left:120.208800px;}
.x3_c00261{left:123.019200px;}
.x1_c00261{left:124.485000px;}
.xe_c00261{left:174.045000px;}
.xa_c00261{left:175.355400px;}
.x4_c00261{left:176.925000px;}
.x2_c00261{left:178.005000px;}
.x13_c00261{left:214.380000px;}
.x14_c00261{left:235.260000px;}
.x9_c00261{left:316.110000px;}
.x5_c00261{left:409.230000px;}
.xf_c00261{left:417.090000px;}
.x19_c00261{left:422.265000px;}
.xc_c00261{left:428.040000px;}
.x6_c00261{left:436.140000px;}
.x15_c00261{left:445.875000px;}
.x1a_c00261{left:451.410000px;}
.xd_c00261{left:471.990000px;}
.x16_c00261{left:477.570000px;}
.x10_c00261{left:488.715000px;}
.x1b_c00261{left:512.460000px;}
.x11_c00261{left:518.775000px;}
.x1c_c00261{left:533.355000px;}
.x7_c00261{left:579.990000px;}
.x12_c00261{left:603.270000px;}
.x8_c00261{left:610.950000px;}
.x17_c00261{left:681.045000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls8b_c00261{letter-spacing:-2.445333pt;}
.ls6f_c00261{letter-spacing:-2.090667pt;}
.ls8a_c00261{letter-spacing:-1.829333pt;}
.ls70_c00261{letter-spacing:-1.750187pt;}
.ls7b_c00261{letter-spacing:-1.433600pt;}
.ls8e_c00261{letter-spacing:-1.230507pt;}
.ls7a_c00261{letter-spacing:-1.009493pt;}
.ls90_c00261{letter-spacing:-0.943787pt;}
.ls7e_c00261{letter-spacing:-0.698880pt;}
.ls79_c00261{letter-spacing:-0.430080pt;}
.ls7d_c00261{letter-spacing:-0.346453pt;}
.ls7c_c00261{letter-spacing:-0.143360pt;}
.ls82_c00261{letter-spacing:-0.107520pt;}
.ls91_c00261{letter-spacing:-0.053760pt;}
.ls8c_c00261{letter-spacing:-0.023893pt;}
.ls72_c00261{letter-spacing:0.000000pt;}
.ls7f_c00261{letter-spacing:0.131413pt;}
.ls1f_c00261{letter-spacing:0.185173pt;}
.ls62_c00261{letter-spacing:0.191147pt;}
.ls88_c00261{letter-spacing:0.197120pt;}
.ls32_c00261{letter-spacing:0.209067pt;}
.lsa_c00261{letter-spacing:0.340480pt;}
.ls1a_c00261{letter-spacing:0.352427pt;}
.ls30_c00261{letter-spacing:0.376320pt;}
.ls6b_c00261{letter-spacing:0.406187pt;}
.ls77_c00261{letter-spacing:0.412160pt;}
.ls2d_c00261{letter-spacing:0.436053pt;}
.ls84_c00261{letter-spacing:0.442027pt;}
.ls14_c00261{letter-spacing:0.448000pt;}
.ls9_c00261{letter-spacing:0.489813pt;}
.lsf_c00261{letter-spacing:0.518293pt;}
.ls22_c00261{letter-spacing:0.519680pt;}
.ls5f_c00261{letter-spacing:0.531627pt;}
.ls4e_c00261{letter-spacing:0.541120pt;}
.ls40_c00261{letter-spacing:0.555520pt;}
.ls5c_c00261{letter-spacing:0.591360pt;}
.ls21_c00261{letter-spacing:0.603307pt;}
.ls68_c00261{letter-spacing:0.621227pt;}
.ls74_c00261{letter-spacing:0.627200pt;}
.ls12_c00261{letter-spacing:0.639147pt;}
.ls66_c00261{letter-spacing:0.645120pt;}
.lsc_c00261{letter-spacing:0.657067pt;}
.ls59_c00261{letter-spacing:0.674987pt;}
.ls10_c00261{letter-spacing:0.681013pt;}
.ls78_c00261{letter-spacing:0.692907pt;}
.ls3b_c00261{letter-spacing:0.704853pt;}
.ls19_c00261{letter-spacing:0.728747pt;}
.ls92_c00261{letter-spacing:0.729440pt;}
.ls47_c00261{letter-spacing:0.740693pt;}
.ls6c_c00261{letter-spacing:0.747307pt;}
.ls54_c00261{letter-spacing:0.752640pt;}
.ls71_c00261{letter-spacing:0.758613pt;}
.ls86_c00261{letter-spacing:0.784320pt;}
.lsd_c00261{letter-spacing:0.788480pt;}
.ls20_c00261{letter-spacing:0.812373pt;}
.ls61_c00261{letter-spacing:0.818347pt;}
.ls5d_c00261{letter-spacing:0.842240pt;}
.ls0_c00261{letter-spacing:0.843733pt;}
.ls43_c00261{letter-spacing:0.848213pt;}
.ls38_c00261{letter-spacing:0.854187pt;}
.ls1e_c00261{letter-spacing:0.878080pt;}
.ls27_c00261{letter-spacing:0.884053pt;}
.ls1c_c00261{letter-spacing:0.890027pt;}
.ls28_c00261{letter-spacing:0.901973pt;}
.ls45_c00261{letter-spacing:0.907947pt;}
.ls48_c00261{letter-spacing:0.919893pt;}
.ls23_c00261{letter-spacing:0.931840pt;}
.ls4_c00261{letter-spacing:0.937813pt;}
.ls41_c00261{letter-spacing:0.949760pt;}
.ls4d_c00261{letter-spacing:0.954560pt;}
.ls58_c00261{letter-spacing:0.961707pt;}
.ls3a_c00261{letter-spacing:0.967680pt;}
.ls6e_c00261{letter-spacing:0.973653pt;}
.ls13_c00261{letter-spacing:1.003520pt;}
.ls64_c00261{letter-spacing:1.009493pt;}
.ls29_c00261{letter-spacing:1.012480pt;}
.ls1d_c00261{letter-spacing:1.027413pt;}
.ls49_c00261{letter-spacing:1.033387pt;}
.ls4a_c00261{letter-spacing:1.045333pt;}
.lse_c00261{letter-spacing:1.057280pt;}
.ls46_c00261{letter-spacing:1.063253pt;}
.ls5_c00261{letter-spacing:1.069227pt;}
.ls26_c00261{letter-spacing:1.075200pt;}
.ls83_c00261{letter-spacing:1.081173pt;}
.ls3e_c00261{letter-spacing:1.099093pt;}
.ls56_c00261{letter-spacing:1.102880pt;}
.ls44_c00261{letter-spacing:1.111040pt;}
.ls87_c00261{letter-spacing:1.117013pt;}
.ls67_c00261{letter-spacing:1.134933pt;}
.ls63_c00261{letter-spacing:1.146880pt;}
.ls6d_c00261{letter-spacing:1.158827pt;}
.ls76_c00261{letter-spacing:1.164800pt;}
.ls6a_c00261{letter-spacing:1.182720pt;}
.ls52_c00261{letter-spacing:1.218560pt;}
.ls4c_c00261{letter-spacing:1.230507pt;}
.ls50_c00261{letter-spacing:1.240320pt;}
.ls69_c00261{letter-spacing:1.260373pt;}
.ls4f_c00261{letter-spacing:1.272320pt;}
.ls42_c00261{letter-spacing:1.290240pt;}
.ls8_c00261{letter-spacing:1.344000pt;}
.ls89_c00261{letter-spacing:1.355947pt;}
.ls1_c00261{letter-spacing:1.379840pt;}
.ls57_c00261{letter-spacing:1.385813pt;}
.ls60_c00261{letter-spacing:1.391787pt;}
.ls39_c00261{letter-spacing:1.397760pt;}
.ls55_c00261{letter-spacing:1.415680pt;}
.ls5b_c00261{letter-spacing:1.421653pt;}
.ls2c_c00261{letter-spacing:1.427627pt;}
.ls65_c00261{letter-spacing:1.439573pt;}
.ls25_c00261{letter-spacing:1.451520pt;}
.ls2a_c00261{letter-spacing:1.463467pt;}
.ls2e_c00261{letter-spacing:1.475413pt;}
.ls8f_c00261{letter-spacing:1.493333pt;}
.ls31_c00261{letter-spacing:1.517227pt;}
.ls36_c00261{letter-spacing:1.529173pt;}
.ls5e_c00261{letter-spacing:1.541120pt;}
.ls3f_c00261{letter-spacing:1.570987pt;}
.ls15_c00261{letter-spacing:1.594880pt;}
.ls85_c00261{letter-spacing:1.666560pt;}
.ls3c_c00261{letter-spacing:1.672533pt;}
.ls3_c00261{letter-spacing:1.690453pt;}
.ls24_c00261{letter-spacing:1.702400pt;}
.ls34_c00261{letter-spacing:1.720320pt;}
.lsb_c00261{letter-spacing:1.732267pt;}
.ls3d_c00261{letter-spacing:1.744213pt;}
.ls51_c00261{letter-spacing:1.768107pt;}
.ls17_c00261{letter-spacing:1.783893pt;}
.ls81_c00261{letter-spacing:1.786027pt;}
.ls4b_c00261{letter-spacing:1.809920pt;}
.ls53_c00261{letter-spacing:1.821867pt;}
.ls6_c00261{letter-spacing:1.851733pt;}
.ls11_c00261{letter-spacing:1.905493pt;}
.ls1b_c00261{letter-spacing:1.947307pt;}
.ls8d_c00261{letter-spacing:1.989120pt;}
.ls2b_c00261{letter-spacing:1.995093pt;}
.ls80_c00261{letter-spacing:2.007040pt;}
.ls7_c00261{letter-spacing:2.024960pt;}
.ls5a_c00261{letter-spacing:2.048853pt;}
.ls2f_c00261{letter-spacing:2.102613pt;}
.ls2_c00261{letter-spacing:2.216107pt;}
.ls16_c00261{letter-spacing:2.287787pt;}
.ls33_c00261{letter-spacing:2.299733pt;}
.ls73_c00261{letter-spacing:2.389333pt;}
.ls37_c00261{letter-spacing:2.449067pt;}
.ls18_c00261{letter-spacing:2.549280pt;}
.ls35_c00261{letter-spacing:2.801493pt;}
.ls75_c00261{letter-spacing:2.986667pt;}
.ws4_c00261{word-spacing:-1.566720pt;}
.ws6_c00261{word-spacing:-0.946667pt;}
.ws7_c00261{word-spacing:0.000000pt;}
.ws2_c00261{word-spacing:4.613013pt;}
.ws3_c00261{word-spacing:4.762453pt;}
.ws5_c00261{word-spacing:10.286400pt;}
.ws1_c00261{word-spacing:11.611253pt;}
.ws0_c00261{word-spacing:24.166933pt;}
._12_c00261{margin-left:-11.456853pt;}
._15_c00261{margin-left:-6.460747pt;}
._c_c00261{margin-left:-4.965973pt;}
._13_c00261{margin-left:-3.643733pt;}
._d_c00261{margin-left:-2.588853pt;}
._b_c00261{margin-left:-1.594880pt;}
._e_c00261{width:1.164800pt;}
._f_c00261{width:2.174293pt;}
._11_c00261{width:3.625813pt;}
._10_c00261{width:4.999680pt;}
._8_c00261{width:6.282347pt;}
._14_c00261{width:7.753813pt;}
._16_c00261{width:8.855253pt;}
._9_c00261{width:9.766400pt;}
._a_c00261{width:11.444907pt;}
._0_c00261{width:18.594987pt;}
._1_c00261{width:19.610453pt;}
._3_c00261{width:21.778773pt;}
._2_c00261{width:23.475200pt;}
._7_c00261{width:24.478720pt;}
._6_c00261{width:25.595733pt;}
._4_c00261{width:27.560960pt;}
._5_c00261{width:29.591893pt;}
.fs2_c00261{font-size:46.080000pt;}
.fs7_c00261{font-size:51.733333pt;}
.fs5_c00261{font-size:52.266667pt;}
.fs0_c00261{font-size:59.733333pt;}
.fs1_c00261{font-size:60.266667pt;}
.fs3_c00261{font-size:60.800000pt;}
.fs4_c00261{font-size:65.600000pt;}
.fs6_c00261{font-size:69.866667pt;}
.y0_c00261{bottom:0.000000pt;}
.y1c_c00261{bottom:60.173333pt;}
.y1b_c00261{bottom:155.840000pt;}
.y1a_c00261{bottom:210.895467pt;}
.y18_c00261{bottom:239.369067pt;}
.y19_c00261{bottom:239.373333pt;}
.y17_c00261{bottom:267.531200pt;}
.y15_c00261{bottom:295.046933pt;}
.y16_c00261{bottom:295.053333pt;}
.y14_c00261{bottom:323.853333pt;}
.y13_c00261{bottom:378.893333pt;}
.y12_c00261{bottom:435.200000pt;}
.y11_c00261{bottom:463.053333pt;}
.y10_c00261{bottom:518.747733pt;}
.yf_c00261{bottom:546.583467pt;}
.ye_c00261{bottom:574.404267pt;}
.yc_c00261{bottom:602.236267pt;}
.yd_c00261{bottom:602.240000pt;}
.yb_c00261{bottom:629.773333pt;}
.ya_c00261{bottom:685.457600pt;}
.y9_c00261{bottom:713.297600pt;}
.y8_c00261{bottom:769.611200pt;}
.y7_c00261{bottom:797.133333pt;}
.y6_c00261{bottom:853.452800pt;}
.y5_c00261{bottom:880.960000pt;}
.y4_c00261{bottom:937.288533pt;}
.y3_c00261{bottom:964.795733pt;}
.y2_c00261{bottom:992.960000pt;}
.y1_c00261{bottom:1060.480000pt;}
.h4_c00261{height:30.689280pt;}
.ha_c00261{height:50.773437pt;}
.h7_c00261{height:51.296875pt;}
.h2_c00261{height:58.625000pt;}
.h9_c00261{height:58.633533pt;}
.h3_c00261{height:59.119010pt;}
.h5_c00261{height:59.642187pt;}
.h6_c00261{height:64.382813pt;}
.h8_c00261{height:68.570312pt;}
.h1_c00261{height:1122.666667pt;}
.h0_c00261{height:1122.880000pt;}
.w1_c00261{width:793.333333pt;}
.w0_c00261{width:793.600000pt;}
.x0_c00261{left:0.000000pt;}
.x18_c00261{left:105.789333pt;}
.xb_c00261{left:106.852267pt;}
.x3_c00261{left:109.350400pt;}
.x1_c00261{left:110.653333pt;}
.xe_c00261{left:154.706667pt;}
.xa_c00261{left:155.871467pt;}
.x4_c00261{left:157.266667pt;}
.x2_c00261{left:158.226667pt;}
.x13_c00261{left:190.560000pt;}
.x14_c00261{left:209.120000pt;}
.x9_c00261{left:280.986667pt;}
.x5_c00261{left:363.760000pt;}
.xf_c00261{left:370.746667pt;}
.x19_c00261{left:375.346667pt;}
.xc_c00261{left:380.480000pt;}
.x6_c00261{left:387.680000pt;}
.x15_c00261{left:396.333333pt;}
.x1a_c00261{left:401.253333pt;}
.xd_c00261{left:419.546667pt;}
.x16_c00261{left:424.506667pt;}
.x10_c00261{left:434.413333pt;}
.x1b_c00261{left:455.520000pt;}
.x11_c00261{left:461.133333pt;}
.x1c_c00261{left:474.093333pt;}
.x7_c00261{left:515.546667pt;}
.x12_c00261{left:536.240000pt;}
.x8_c00261{left:543.066667pt;}
.x17_c00261{left:605.373333pt;}
}





/* 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_c00262 {
    display:none;
  }
  .loading-indicator_c00262.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00262 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_c00262 { 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_c00262" -> "#page-container .classname_c00262")
 */
.pf_c00262 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00262 { /* 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_c00262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00262 { /* 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_c00262 { /* 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_c00262 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00262 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00262 {overflow:visible;}
  }
}
.c_c00262 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00262 { /* 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_c00262:after { /* webkit #35443 */
  content: '';
}
.t_c00262:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00262 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 */
}
.__c00262 { /* 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_c00262 { /* info for Javascript */
  display:none;
}
.l_c00262 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00262 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00262 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00262: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_c00262 {
    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_c00262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00262.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_c00262 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00262;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.311035;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_c00262;src:url('chunks/assets/font_8bc15714c09204601fdbac54.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.284180;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_c00262;src:url('chunks/assets/font_8b87844162870f126295f832.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.284668;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_c00262;src:url('chunks/assets/font_bc7b4b5444ae39f1f70f55c6.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.284180;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_c00262{transform:matrix(0.199912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199912,0.000000,0.000000,0.250000,0,0);}
.m3_c00262{transform:matrix(0.207717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207717,0.000000,0.000000,0.250000,0,0);}
.m6_c00262{transform:matrix(0.211863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211863,0.000000,0.000000,0.250000,0,0);}
.m5_c00262{transform:matrix(0.214804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214804,0.000000,0.000000,0.250000,0,0);}
.m0_c00262{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m1_c00262{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);}
.m4_c00262{transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);}
.m7_c00262{transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls79_c00262{letter-spacing:-2.541000px;}
.ls76_c00262{letter-spacing:-2.331000px;}
.ls6e_c00262{letter-spacing:-2.310000px;}
.ls7d_c00262{letter-spacing:-2.142000px;}
.ls75_c00262{letter-spacing:-1.951380px;}
.ls77_c00262{letter-spacing:-1.818180px;}
.ls70_c00262{letter-spacing:-1.338660px;}
.ls84_c00262{letter-spacing:-1.318680px;}
.ls71_c00262{letter-spacing:-1.172160px;}
.ls86_c00262{letter-spacing:-1.138860px;}
.ls88_c00262{letter-spacing:-0.622740px;}
.ls74_c00262{letter-spacing:-0.526140px;}
.ls82_c00262{letter-spacing:-0.446220px;}
.ls85_c00262{letter-spacing:-0.286380px;}
.ls81_c00262{letter-spacing:-0.273060px;}
.ls72_c00262{letter-spacing:-0.166500px;}
.ls80_c00262{letter-spacing:-0.159840px;}
.ls73_c00262{letter-spacing:0.000000px;}
.ls15_c00262{letter-spacing:0.173160px;}
.ls6b_c00262{letter-spacing:0.219780px;}
.ls16_c00262{letter-spacing:0.233100px;}
.ls3f_c00262{letter-spacing:0.239760px;}
.ls64_c00262{letter-spacing:0.299700px;}
.ls51_c00262{letter-spacing:0.346320px;}
.ls4b_c00262{letter-spacing:0.392940px;}
.ls1c_c00262{letter-spacing:0.412920px;}
.ls4a_c00262{letter-spacing:0.419580px;}
.ls13_c00262{letter-spacing:0.472860px;}
.ls83_c00262{letter-spacing:0.506160px;}
.ls14_c00262{letter-spacing:0.532800px;}
.lsa_c00262{letter-spacing:0.552780px;}
.ls45_c00262{letter-spacing:0.559440px;}
.lsf_c00262{letter-spacing:0.586080px;}
.ls78_c00262{letter-spacing:0.592740px;}
.ls2c_c00262{letter-spacing:0.632700px;}
.ls19_c00262{letter-spacing:0.646020px;}
.ls69_c00262{letter-spacing:0.659340px;}
.ls3b_c00262{letter-spacing:0.685980px;}
.ls36_c00262{letter-spacing:0.712620px;}
.ls6_c00262{letter-spacing:0.739200px;}
.ls37_c00262{letter-spacing:0.739260px;}
.ls9_c00262{letter-spacing:0.765900px;}
.ls48_c00262{letter-spacing:0.779220px;}
.ls4f_c00262{letter-spacing:0.785880px;}
.ls6d_c00262{letter-spacing:0.792540px;}
.ls20_c00262{letter-spacing:0.799200px;}
.ls5f_c00262{letter-spacing:0.825840px;}
.ls87_c00262{letter-spacing:0.845820px;}
.lse_c00262{letter-spacing:0.852480px;}
.ls58_c00262{letter-spacing:0.859140px;}
.ls4_c00262{letter-spacing:0.865800px;}
.ls28_c00262{letter-spacing:0.872460px;}
.ls30_c00262{letter-spacing:0.879120px;}
.ls7f_c00262{letter-spacing:0.885780px;}
.ls35_c00262{letter-spacing:0.892440px;}
.ls3c_c00262{letter-spacing:0.905760px;}
.ls54_c00262{letter-spacing:0.925740px;}
.ls12_c00262{letter-spacing:0.932400px;}
.lsc_c00262{letter-spacing:0.959040px;}
.ls3e_c00262{letter-spacing:0.965700px;}
.ls5_c00262{letter-spacing:1.001280px;}
.lsd_c00262{letter-spacing:1.012320px;}
.ls53_c00262{letter-spacing:1.025640px;}
.ls44_c00262{letter-spacing:1.032300px;}
.ls65_c00262{letter-spacing:1.038960px;}
.ls46_c00262{letter-spacing:1.052280px;}
.ls1d_c00262{letter-spacing:1.092240px;}
.ls66_c00262{letter-spacing:1.105560px;}
.ls39_c00262{letter-spacing:1.125540px;}
.ls8_c00262{letter-spacing:1.138860px;}
.ls0_c00262{letter-spacing:1.158840px;}
.ls7e_c00262{letter-spacing:1.165500px;}
.ls50_c00262{letter-spacing:1.172160px;}
.ls1_c00262{letter-spacing:1.178820px;}
.ls11_c00262{letter-spacing:1.205460px;}
.ls60_c00262{letter-spacing:1.212120px;}
.ls4d_c00262{letter-spacing:1.232100px;}
.ls29_c00262{letter-spacing:1.238760px;}
.ls33_c00262{letter-spacing:1.245420px;}
.ls17_c00262{letter-spacing:1.252080px;}
.ls7_c00262{letter-spacing:1.272060px;}
.ls5b_c00262{letter-spacing:1.285380px;}
.ls2a_c00262{letter-spacing:1.298700px;}
.ls5c_c00262{letter-spacing:1.318680px;}
.ls1a_c00262{letter-spacing:1.325340px;}
.ls4c_c00262{letter-spacing:1.338660px;}
.ls6f_c00262{letter-spacing:1.345320px;}
.ls57_c00262{letter-spacing:1.351980px;}
.ls7c_c00262{letter-spacing:1.371960px;}
.ls24_c00262{letter-spacing:1.378620px;}
.ls55_c00262{letter-spacing:1.398600px;}
.ls5e_c00262{letter-spacing:1.418580px;}
.ls3a_c00262{letter-spacing:1.438560px;}
.ls2d_c00262{letter-spacing:1.451880px;}
.ls23_c00262{letter-spacing:1.465200px;}
.ls34_c00262{letter-spacing:1.471860px;}
.ls1e_c00262{letter-spacing:1.491840px;}
.ls59_c00262{letter-spacing:1.518480px;}
.ls18_c00262{letter-spacing:1.525140px;}
.ls62_c00262{letter-spacing:1.531800px;}
.ls61_c00262{letter-spacing:1.578420px;}
.ls1b_c00262{letter-spacing:1.585080px;}
.ls32_c00262{letter-spacing:1.691640px;}
.ls52_c00262{letter-spacing:1.698300px;}
.ls2f_c00262{letter-spacing:1.704960px;}
.ls6c_c00262{letter-spacing:1.718280px;}
.ls38_c00262{letter-spacing:1.724940px;}
.ls49_c00262{letter-spacing:1.731600px;}
.ls3d_c00262{letter-spacing:1.738260px;}
.ls41_c00262{letter-spacing:1.751580px;}
.ls3_c00262{letter-spacing:1.771560px;}
.ls22_c00262{letter-spacing:1.864800px;}
.ls5d_c00262{letter-spacing:1.871460px;}
.ls40_c00262{letter-spacing:1.884780px;}
.ls68_c00262{letter-spacing:1.911420px;}
.ls27_c00262{letter-spacing:1.931400px;}
.ls67_c00262{letter-spacing:1.938060px;}
.ls4e_c00262{letter-spacing:1.971360px;}
.ls1f_c00262{letter-spacing:1.991340px;}
.ls2b_c00262{letter-spacing:2.011320px;}
.ls26_c00262{letter-spacing:2.064600px;}
.ls6a_c00262{letter-spacing:2.077920px;}
.ls63_c00262{letter-spacing:2.191140px;}
.lsb_c00262{letter-spacing:2.204460px;}
.ls47_c00262{letter-spacing:2.297700px;}
.ls56_c00262{letter-spacing:2.324340px;}
.ls43_c00262{letter-spacing:2.344320px;}
.ls5a_c00262{letter-spacing:2.357640px;}
.ls10_c00262{letter-spacing:2.504160px;}
.ls2_c00262{letter-spacing:2.537460px;}
.ls42_c00262{letter-spacing:2.597400px;}
.ls31_c00262{letter-spacing:2.730600px;}
.ls25_c00262{letter-spacing:2.737260px;}
.ls7a_c00262{letter-spacing:3.036960px;}
.ls21_c00262{letter-spacing:3.170160px;}
.ls2e_c00262{letter-spacing:3.310020px;}
.ls7b_c00262{letter-spacing:3.330000px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{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__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:-0.379620px;}
.ws2_c00262{word-spacing:-0.346320px;}
.ws4_c00262{word-spacing:-0.233100px;}
.ws6_c00262{word-spacing:0.000000px;}
.ws1_c00262{word-spacing:1.352040px;}
.ws5_c00262{word-spacing:1.671660px;}
.ws3_c00262{word-spacing:15.384600px;}
._1_c00262{margin-left:-5.561100px;}
._d_c00262{margin-left:-3.330000px;}
._4_c00262{margin-left:-1.855200px;}
._3_c00262{width:1.538880px;}
._0_c00262{width:2.703960px;}
._5_c00262{width:4.073940px;}
._2_c00262{width:5.374620px;}
._c_c00262{width:7.259400px;}
._6_c00262{width:9.509640px;}
._b_c00262{width:10.917720px;}
._7_c00262{width:12.221100px;}
._9_c00262{width:14.082960px;}
._e_c00262{width:15.848820px;}
._11_c00262{width:17.309340px;}
._8_c00262{width:20.079900px;}
._f_c00262{width:21.671640px;}
._10_c00262{width:23.310000px;}
._a_c00262{width:25.308000px;}
.fc0_c00262{color:transparent;}
.fs5_c00262{font-size:58.200000px;}
.fs4_c00262{font-size:61.200000px;}
.fs0_c00262{font-size:66.000000px;}
.fs1_c00262{font-size:66.600000px;}
.fs2_c00262{font-size:67.200000px;}
.fs3_c00262{font-size:72.600000px;}
.y0_c00262{bottom:0.000000px;}
.y1d_c00262{bottom:72.375000px;}
.y1c_c00262{bottom:148.315500px;}
.y1b_c00262{bottom:178.918200px;}
.y1a_c00262{bottom:241.938450px;}
.y19_c00262{bottom:305.291700px;}
.y18_c00262{bottom:367.562700px;}
.y17_c00262{bottom:430.200000px;}
.y16_c00262{bottom:430.201350px;}
.y15_c00262{bottom:461.520000px;}
.y14_c00262{bottom:523.825350px;}
.y13_c00262{bottom:554.777700px;}
.y12_c00262{bottom:586.446000px;}
.y11_c00262{bottom:617.415000px;}
.y10_c00262{bottom:680.040000px;}
.yf_c00262{bottom:680.041050px;}
.yd_c00262{bottom:742.691700px;}
.ye_c00262{bottom:742.695000px;}
.yc_c00262{bottom:774.360000px;}
.yb_c00262{bottom:774.362700px;}
.ya_c00262{bottom:805.698000px;}
.y9_c00262{bottom:837.000000px;}
.y8_c00262{bottom:898.555050px;}
.y7_c00262{bottom:930.240000px;}
.y6_c00262{bottom:930.255000px;}
.y5_c00262{bottom:961.207350px;}
.y4_c00262{bottom:1023.495000px;}
.y3_c00262{bottom:1054.815000px;}
.y2_c00262{bottom:1117.455000px;}
.y1_c00262{bottom:1192.695000px;}
.h7_c00262{height:57.120117px;}
.h6_c00262{height:60.064453px;}
.h3_c00262{height:65.364258px;}
.h4_c00262{height:65.920312px;}
.h2_c00262{height:66.515625px;}
.h5_c00262{height:71.252930px;}
.h1_c00262{height:1263.000000px;}
.h0_c00262{height:1263.240000px;}
.w1_c00262{width:892.500000px;}
.w0_c00262{width:892.800000px;}
.x0_c00262{left:0.000000px;}
.x1_c00262{left:121.965000px;}
.x7_c00262{left:123.857250px;}
.x11_c00262{left:125.049600px;}
.xa_c00262{left:159.150000px;}
.x2_c00262{left:176.205000px;}
.x4_c00262{left:177.390000px;}
.xf_c00262{left:178.830000px;}
.xb_c00262{left:186.675000px;}
.x12_c00262{left:189.390000px;}
.x10_c00262{left:206.820000px;}
.x13_c00262{left:217.005000px;}
.x3_c00262{left:305.685000px;}
.x14_c00262{left:425.790000px;}
.xc_c00262{left:447.045000px;}
.xd_c00262{left:479.025000px;}
.x8_c00262{left:650.730000px;}
.x9_c00262{left:670.095000px;}
.xe_c00262{left:681.060000px;}
.x5_c00262{left:705.855000px;}
.x6_c00262{left:727.380000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls79_c00262{letter-spacing:-2.258667pt;}
.ls76_c00262{letter-spacing:-2.072000pt;}
.ls6e_c00262{letter-spacing:-2.053333pt;}
.ls7d_c00262{letter-spacing:-1.904000pt;}
.ls75_c00262{letter-spacing:-1.734560pt;}
.ls77_c00262{letter-spacing:-1.616160pt;}
.ls70_c00262{letter-spacing:-1.189920pt;}
.ls84_c00262{letter-spacing:-1.172160pt;}
.ls71_c00262{letter-spacing:-1.041920pt;}
.ls86_c00262{letter-spacing:-1.012320pt;}
.ls88_c00262{letter-spacing:-0.553547pt;}
.ls74_c00262{letter-spacing:-0.467680pt;}
.ls82_c00262{letter-spacing:-0.396640pt;}
.ls85_c00262{letter-spacing:-0.254560pt;}
.ls81_c00262{letter-spacing:-0.242720pt;}
.ls72_c00262{letter-spacing:-0.148000pt;}
.ls80_c00262{letter-spacing:-0.142080pt;}
.ls73_c00262{letter-spacing:0.000000pt;}
.ls15_c00262{letter-spacing:0.153920pt;}
.ls6b_c00262{letter-spacing:0.195360pt;}
.ls16_c00262{letter-spacing:0.207200pt;}
.ls3f_c00262{letter-spacing:0.213120pt;}
.ls64_c00262{letter-spacing:0.266400pt;}
.ls51_c00262{letter-spacing:0.307840pt;}
.ls4b_c00262{letter-spacing:0.349280pt;}
.ls1c_c00262{letter-spacing:0.367040pt;}
.ls4a_c00262{letter-spacing:0.372960pt;}
.ls13_c00262{letter-spacing:0.420320pt;}
.ls83_c00262{letter-spacing:0.449920pt;}
.ls14_c00262{letter-spacing:0.473600pt;}
.lsa_c00262{letter-spacing:0.491360pt;}
.ls45_c00262{letter-spacing:0.497280pt;}
.lsf_c00262{letter-spacing:0.520960pt;}
.ls78_c00262{letter-spacing:0.526880pt;}
.ls2c_c00262{letter-spacing:0.562400pt;}
.ls19_c00262{letter-spacing:0.574240pt;}
.ls69_c00262{letter-spacing:0.586080pt;}
.ls3b_c00262{letter-spacing:0.609760pt;}
.ls36_c00262{letter-spacing:0.633440pt;}
.ls6_c00262{letter-spacing:0.657067pt;}
.ls37_c00262{letter-spacing:0.657120pt;}
.ls9_c00262{letter-spacing:0.680800pt;}
.ls48_c00262{letter-spacing:0.692640pt;}
.ls4f_c00262{letter-spacing:0.698560pt;}
.ls6d_c00262{letter-spacing:0.704480pt;}
.ls20_c00262{letter-spacing:0.710400pt;}
.ls5f_c00262{letter-spacing:0.734080pt;}
.ls87_c00262{letter-spacing:0.751840pt;}
.lse_c00262{letter-spacing:0.757760pt;}
.ls58_c00262{letter-spacing:0.763680pt;}
.ls4_c00262{letter-spacing:0.769600pt;}
.ls28_c00262{letter-spacing:0.775520pt;}
.ls30_c00262{letter-spacing:0.781440pt;}
.ls7f_c00262{letter-spacing:0.787360pt;}
.ls35_c00262{letter-spacing:0.793280pt;}
.ls3c_c00262{letter-spacing:0.805120pt;}
.ls54_c00262{letter-spacing:0.822880pt;}
.ls12_c00262{letter-spacing:0.828800pt;}
.lsc_c00262{letter-spacing:0.852480pt;}
.ls3e_c00262{letter-spacing:0.858400pt;}
.ls5_c00262{letter-spacing:0.890027pt;}
.lsd_c00262{letter-spacing:0.899840pt;}
.ls53_c00262{letter-spacing:0.911680pt;}
.ls44_c00262{letter-spacing:0.917600pt;}
.ls65_c00262{letter-spacing:0.923520pt;}
.ls46_c00262{letter-spacing:0.935360pt;}
.ls1d_c00262{letter-spacing:0.970880pt;}
.ls66_c00262{letter-spacing:0.982720pt;}
.ls39_c00262{letter-spacing:1.000480pt;}
.ls8_c00262{letter-spacing:1.012320pt;}
.ls0_c00262{letter-spacing:1.030080pt;}
.ls7e_c00262{letter-spacing:1.036000pt;}
.ls50_c00262{letter-spacing:1.041920pt;}
.ls1_c00262{letter-spacing:1.047840pt;}
.ls11_c00262{letter-spacing:1.071520pt;}
.ls60_c00262{letter-spacing:1.077440pt;}
.ls4d_c00262{letter-spacing:1.095200pt;}
.ls29_c00262{letter-spacing:1.101120pt;}
.ls33_c00262{letter-spacing:1.107040pt;}
.ls17_c00262{letter-spacing:1.112960pt;}
.ls7_c00262{letter-spacing:1.130720pt;}
.ls5b_c00262{letter-spacing:1.142560pt;}
.ls2a_c00262{letter-spacing:1.154400pt;}
.ls5c_c00262{letter-spacing:1.172160pt;}
.ls1a_c00262{letter-spacing:1.178080pt;}
.ls4c_c00262{letter-spacing:1.189920pt;}
.ls6f_c00262{letter-spacing:1.195840pt;}
.ls57_c00262{letter-spacing:1.201760pt;}
.ls7c_c00262{letter-spacing:1.219520pt;}
.ls24_c00262{letter-spacing:1.225440pt;}
.ls55_c00262{letter-spacing:1.243200pt;}
.ls5e_c00262{letter-spacing:1.260960pt;}
.ls3a_c00262{letter-spacing:1.278720pt;}
.ls2d_c00262{letter-spacing:1.290560pt;}
.ls23_c00262{letter-spacing:1.302400pt;}
.ls34_c00262{letter-spacing:1.308320pt;}
.ls1e_c00262{letter-spacing:1.326080pt;}
.ls59_c00262{letter-spacing:1.349760pt;}
.ls18_c00262{letter-spacing:1.355680pt;}
.ls62_c00262{letter-spacing:1.361600pt;}
.ls61_c00262{letter-spacing:1.403040pt;}
.ls1b_c00262{letter-spacing:1.408960pt;}
.ls32_c00262{letter-spacing:1.503680pt;}
.ls52_c00262{letter-spacing:1.509600pt;}
.ls2f_c00262{letter-spacing:1.515520pt;}
.ls6c_c00262{letter-spacing:1.527360pt;}
.ls38_c00262{letter-spacing:1.533280pt;}
.ls49_c00262{letter-spacing:1.539200pt;}
.ls3d_c00262{letter-spacing:1.545120pt;}
.ls41_c00262{letter-spacing:1.556960pt;}
.ls3_c00262{letter-spacing:1.574720pt;}
.ls22_c00262{letter-spacing:1.657600pt;}
.ls5d_c00262{letter-spacing:1.663520pt;}
.ls40_c00262{letter-spacing:1.675360pt;}
.ls68_c00262{letter-spacing:1.699040pt;}
.ls27_c00262{letter-spacing:1.716800pt;}
.ls67_c00262{letter-spacing:1.722720pt;}
.ls4e_c00262{letter-spacing:1.752320pt;}
.ls1f_c00262{letter-spacing:1.770080pt;}
.ls2b_c00262{letter-spacing:1.787840pt;}
.ls26_c00262{letter-spacing:1.835200pt;}
.ls6a_c00262{letter-spacing:1.847040pt;}
.ls63_c00262{letter-spacing:1.947680pt;}
.lsb_c00262{letter-spacing:1.959520pt;}
.ls47_c00262{letter-spacing:2.042400pt;}
.ls56_c00262{letter-spacing:2.066080pt;}
.ls43_c00262{letter-spacing:2.083840pt;}
.ls5a_c00262{letter-spacing:2.095680pt;}
.ls10_c00262{letter-spacing:2.225920pt;}
.ls2_c00262{letter-spacing:2.255520pt;}
.ls42_c00262{letter-spacing:2.308800pt;}
.ls31_c00262{letter-spacing:2.427200pt;}
.ls25_c00262{letter-spacing:2.433120pt;}
.ls7a_c00262{letter-spacing:2.699520pt;}
.ls21_c00262{letter-spacing:2.817920pt;}
.ls2e_c00262{letter-spacing:2.942240pt;}
.ls7b_c00262{letter-spacing:2.960000pt;}
.ws0_c00262{word-spacing:-0.337440pt;}
.ws2_c00262{word-spacing:-0.307840pt;}
.ws4_c00262{word-spacing:-0.207200pt;}
.ws6_c00262{word-spacing:0.000000pt;}
.ws1_c00262{word-spacing:1.201813pt;}
.ws5_c00262{word-spacing:1.485920pt;}
.ws3_c00262{word-spacing:13.675200pt;}
._1_c00262{margin-left:-4.943200pt;}
._d_c00262{margin-left:-2.960000pt;}
._4_c00262{margin-left:-1.649067pt;}
._3_c00262{width:1.367893pt;}
._0_c00262{width:2.403520pt;}
._5_c00262{width:3.621280pt;}
._2_c00262{width:4.777440pt;}
._c_c00262{width:6.452800pt;}
._6_c00262{width:8.453013pt;}
._b_c00262{width:9.704640pt;}
._7_c00262{width:10.863200pt;}
._9_c00262{width:12.518187pt;}
._e_c00262{width:14.087840pt;}
._11_c00262{width:15.386080pt;}
._8_c00262{width:17.848800pt;}
._f_c00262{width:19.263680pt;}
._10_c00262{width:20.720000pt;}
._a_c00262{width:22.496000pt;}
.fs5_c00262{font-size:51.733333pt;}
.fs4_c00262{font-size:54.400000pt;}
.fs0_c00262{font-size:58.666667pt;}
.fs1_c00262{font-size:59.200000pt;}
.fs2_c00262{font-size:59.733333pt;}
.fs3_c00262{font-size:64.533333pt;}
.y0_c00262{bottom:0.000000pt;}
.y1d_c00262{bottom:64.333333pt;}
.y1c_c00262{bottom:131.836000pt;}
.y1b_c00262{bottom:159.038400pt;}
.y1a_c00262{bottom:215.056400pt;}
.y19_c00262{bottom:271.370400pt;}
.y18_c00262{bottom:326.722400pt;}
.y17_c00262{bottom:382.400000pt;}
.y16_c00262{bottom:382.401200pt;}
.y15_c00262{bottom:410.240000pt;}
.y14_c00262{bottom:465.622533pt;}
.y13_c00262{bottom:493.135733pt;}
.y12_c00262{bottom:521.285333pt;}
.y11_c00262{bottom:548.813333pt;}
.y10_c00262{bottom:604.480000pt;}
.yf_c00262{bottom:604.480933pt;}
.yd_c00262{bottom:660.170400pt;}
.ye_c00262{bottom:660.173333pt;}
.yc_c00262{bottom:688.320000pt;}
.yb_c00262{bottom:688.322400pt;}
.ya_c00262{bottom:716.176000pt;}
.y9_c00262{bottom:744.000000pt;}
.y8_c00262{bottom:798.715600pt;}
.y7_c00262{bottom:826.880000pt;}
.y6_c00262{bottom:826.893333pt;}
.y5_c00262{bottom:854.406533pt;}
.y4_c00262{bottom:909.773333pt;}
.y3_c00262{bottom:937.613333pt;}
.y2_c00262{bottom:993.293333pt;}
.y1_c00262{bottom:1060.173333pt;}
.h7_c00262{height:50.773437pt;}
.h6_c00262{height:53.390625pt;}
.h3_c00262{height:58.101562pt;}
.h4_c00262{height:58.595833pt;}
.h2_c00262{height:59.125000pt;}
.h5_c00262{height:63.335938pt;}
.h1_c00262{height:1122.666667pt;}
.h0_c00262{height:1122.880000pt;}
.w1_c00262{width:793.333333pt;}
.w0_c00262{width:793.600000pt;}
.x0_c00262{left:0.000000pt;}
.x1_c00262{left:108.413333pt;}
.x7_c00262{left:110.095333pt;}
.x11_c00262{left:111.155200pt;}
.xa_c00262{left:141.466667pt;}
.x2_c00262{left:156.626667pt;}
.x4_c00262{left:157.680000pt;}
.xf_c00262{left:158.960000pt;}
.xb_c00262{left:165.933333pt;}
.x12_c00262{left:168.346667pt;}
.x10_c00262{left:183.840000pt;}
.x13_c00262{left:192.893333pt;}
.x3_c00262{left:271.720000pt;}
.x14_c00262{left:378.480000pt;}
.xc_c00262{left:397.373333pt;}
.xd_c00262{left:425.800000pt;}
.x8_c00262{left:578.426667pt;}
.x9_c00262{left:595.640000pt;}
.xe_c00262{left:605.386667pt;}
.x5_c00262{left:627.426667pt;}
.x6_c00262{left:646.560000pt;}
}





/* 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_c00263 {
    display:none;
  }
  .loading-indicator_c00263.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00263 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_c00263 { 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_c00263" -> "#page-container .classname_c00263")
 */
.pf_c00263 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00263 { /* 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_c00263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00263 { /* 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_c00263 { /* 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_c00263 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00263 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00263 {overflow:visible;}
  }
}
.c_c00263 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00263 { /* 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_c00263:after { /* webkit #35443 */
  content: '';
}
.t_c00263:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00263 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 */
}
.__c00263 { /* 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_c00263 { /* info for Javascript */
  display:none;
}
.l_c00263 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00263 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00263 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00263: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_c00263 {
    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_c00263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00263.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_c00263 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00263;src:url('chunks/assets/font_e5f147b7685934ed71c0e9f0.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.284668;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_c00263;src:url('chunks/assets/font_1057daee8941d7a897250db3.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.284180;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_c00263;src:url('chunks/assets/font_845025ba7030d18796aa42af.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;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:ff4_c00263;src:url('chunks/assets/font_5c5263c38725a908372b2305.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;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;}
.m2_c00263{transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);}
.m5_c00263{transform:matrix(0.243388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243388,0.000000,0.000000,0.250000,0,0);}
.m4_c00263{transform:matrix(0.247431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247431,0.000000,0.000000,0.250000,0,0);}
.m1_c00263{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m3_c00263{transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);}
.m0_c00263{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);}
.v0_c00263{vertical-align:0.000000px;}
.ls92_c00263{letter-spacing:-2.583000px;}
.ls53_c00263{letter-spacing:-2.457540px;}
.ls42_c00263{letter-spacing:-2.436000px;}
.ls8e_c00263{letter-spacing:-2.373360px;}
.ls71_c00263{letter-spacing:-2.373000px;}
.ls46_c00263{letter-spacing:-2.352480px;}
.ls57_c00263{letter-spacing:-2.296800px;}
.ls8c_c00263{letter-spacing:-2.258280px;}
.ls58_c00263{letter-spacing:-2.234160px;}
.ls5b_c00263{letter-spacing:-2.199360px;}
.ls59_c00263{letter-spacing:-2.136720px;}
.ls7a_c00263{letter-spacing:-1.999980px;}
.ls6d_c00263{letter-spacing:-1.933560px;}
.ls4f_c00263{letter-spacing:-1.904040px;}
.ls62_c00263{letter-spacing:-1.886160px;}
.ls66_c00263{letter-spacing:-1.823520px;}
.ls56_c00263{letter-spacing:-1.774800px;}
.ls8a_c00263{letter-spacing:-1.767840px;}
.ls8b_c00263{letter-spacing:-1.763820px;}
.ls50_c00263{letter-spacing:-1.741680px;}
.ls5a_c00263{letter-spacing:-1.719540px;}
.ls6a_c00263{letter-spacing:-1.675260px;}
.ls4c_c00263{letter-spacing:-1.649520px;}
.ls76_c00263{letter-spacing:-1.630980px;}
.ls72_c00263{letter-spacing:-1.586700px;}
.ls88_c00263{letter-spacing:-1.579920px;}
.ls60_c00263{letter-spacing:-1.531200px;}
.ls4b_c00263{letter-spacing:-1.503360px;}
.ls49_c00263{letter-spacing:-1.454640px;}
.ls69_c00263{letter-spacing:-1.446480px;}
.ls8f_c00263{letter-spacing:-1.190160px;}
.ls6e_c00263{letter-spacing:-1.169280px;}
.ls7d_c00263{letter-spacing:-0.981360px;}
.ls7e_c00263{letter-spacing:-0.974400px;}
.ls90_c00263{letter-spacing:-0.939600px;}
.ls5f_c00263{letter-spacing:-0.883920px;}
.ls52_c00263{letter-spacing:-0.828240px;}
.ls75_c00263{letter-spacing:-0.814320px;}
.ls87_c00263{letter-spacing:-0.758640px;}
.ls85_c00263{letter-spacing:-0.716880px;}
.ls77_c00263{letter-spacing:-0.699780px;}
.ls44_c00263{letter-spacing:-0.668160px;}
.ls3f_c00263{letter-spacing:-0.584640px;}
.ls5e_c00263{letter-spacing:-0.570720px;}
.ls61_c00263{letter-spacing:-0.563760px;}
.ls83_c00263{letter-spacing:-0.508080px;}
.ls6c_c00263{letter-spacing:-0.501120px;}
.ls4d_c00263{letter-spacing:-0.487200px;}
.ls55_c00263{letter-spacing:-0.466320px;}
.ls79_c00263{letter-spacing:-0.459000px;}
.ls40_c00263{letter-spacing:-0.452400px;}
.ls67_c00263{letter-spacing:-0.417600px;}
.ls65_c00263{letter-spacing:-0.410640px;}
.ls48_c00263{letter-spacing:-0.403680px;}
.ls45_c00263{letter-spacing:-0.382800px;}
.ls41_c00263{letter-spacing:-0.361920px;}
.ls4e_c00263{letter-spacing:-0.320160px;}
.ls84_c00263{letter-spacing:-0.313200px;}
.ls91_c00263{letter-spacing:-0.302580px;}
.ls6b_c00263{letter-spacing:-0.271440px;}
.ls51_c00263{letter-spacing:-0.257520px;}
.ls43_c00263{letter-spacing:-0.243600px;}
.ls7b_c00263{letter-spacing:-0.236640px;}
.ls68_c00263{letter-spacing:-0.229680px;}
.ls5d_c00263{letter-spacing:-0.208800px;}
.ls47_c00263{letter-spacing:-0.187920px;}
.ls86_c00263{letter-spacing:-0.180960px;}
.ls8d_c00263{letter-spacing:-0.167040px;}
.ls70_c00263{letter-spacing:-0.160080px;}
.ls7c_c00263{letter-spacing:-0.153120px;}
.ls81_c00263{letter-spacing:-0.146160px;}
.ls74_c00263{letter-spacing:-0.132240px;}
.ls64_c00263{letter-spacing:-0.118320px;}
.ls73_c00263{letter-spacing:-0.104400px;}
.ls7f_c00263{letter-spacing:-0.090480px;}
.ls3e_c00263{letter-spacing:-0.062640px;}
.ls54_c00263{letter-spacing:-0.055680px;}
.ls78_c00263{letter-spacing:-0.041760px;}
.ls6f_c00263{letter-spacing:-0.034800px;}
.ls80_c00263{letter-spacing:-0.027840px;}
.ls82_c00263{letter-spacing:-0.013920px;}
.ls4a_c00263{letter-spacing:-0.006960px;}
.ls5c_c00263{letter-spacing:0.000000px;}
.ls8_c00263{letter-spacing:0.006960px;}
.lsd_c00263{letter-spacing:0.020880px;}
.lsa_c00263{letter-spacing:0.041760px;}
.ls2c_c00263{letter-spacing:0.055680px;}
.ls3c_c00263{letter-spacing:0.062640px;}
.ls1e_c00263{letter-spacing:0.076560px;}
.ls27_c00263{letter-spacing:0.083520px;}
.ls2_c00263{letter-spacing:0.104400px;}
.ls32_c00263{letter-spacing:0.111360px;}
.ls13_c00263{letter-spacing:0.118320px;}
.ls37_c00263{letter-spacing:0.125280px;}
.ls1c_c00263{letter-spacing:0.132240px;}
.ls10_c00263{letter-spacing:0.146160px;}
.ls31_c00263{letter-spacing:0.153120px;}
.lsc_c00263{letter-spacing:0.160080px;}
.ls28_c00263{letter-spacing:0.174000px;}
.ls63_c00263{letter-spacing:0.180960px;}
.ls21_c00263{letter-spacing:0.194880px;}
.ls12_c00263{letter-spacing:0.201840px;}
.ls2e_c00263{letter-spacing:0.208800px;}
.ls1b_c00263{letter-spacing:0.215760px;}
.ls33_c00263{letter-spacing:0.222720px;}
.ls7_c00263{letter-spacing:0.243600px;}
.ls18_c00263{letter-spacing:0.250560px;}
.ls2b_c00263{letter-spacing:0.257520px;}
.ls1f_c00263{letter-spacing:0.278400px;}
.ls35_c00263{letter-spacing:0.292320px;}
.ls14_c00263{letter-spacing:0.306240px;}
.ls36_c00263{letter-spacing:0.313200px;}
.ls9_c00263{letter-spacing:0.320160px;}
.ls30_c00263{letter-spacing:0.334080px;}
.ls15_c00263{letter-spacing:0.341040px;}
.ls22_c00263{letter-spacing:0.354960px;}
.lsb_c00263{letter-spacing:0.361920px;}
.ls2f_c00263{letter-spacing:0.375840px;}
.ls1d_c00263{letter-spacing:0.452400px;}
.ls2a_c00263{letter-spacing:0.466320px;}
.ls25_c00263{letter-spacing:0.480240px;}
.ls16_c00263{letter-spacing:0.501120px;}
.ls23_c00263{letter-spacing:0.528960px;}
.ls11_c00263{letter-spacing:0.535920px;}
.ls26_c00263{letter-spacing:0.542880px;}
.ls20_c00263{letter-spacing:0.556800px;}
.ls1a_c00263{letter-spacing:0.563760px;}
.ls89_c00263{letter-spacing:0.570720px;}
.ls5_c00263{letter-spacing:0.577680px;}
.ls19_c00263{letter-spacing:0.591600px;}
.lsf_c00263{letter-spacing:0.619440px;}
.ls3a_c00263{letter-spacing:0.633360px;}
.ls93_c00263{letter-spacing:0.653400px;}
.ls3_c00263{letter-spacing:0.702960px;}
.ls6_c00263{letter-spacing:0.716880px;}
.ls3b_c00263{letter-spacing:0.758640px;}
.ls24_c00263{letter-spacing:0.800400px;}
.ls29_c00263{letter-spacing:0.876960px;}
.ls2d_c00263{letter-spacing:0.883920px;}
.ls39_c00263{letter-spacing:1.037040px;}
.ls1_c00263{letter-spacing:1.085760px;}
.ls4_c00263{letter-spacing:1.183200px;}
.ls0_c00263{letter-spacing:1.447680px;}
.ls3d_c00263{letter-spacing:1.878600px;}
.ls17_c00263{letter-spacing:1.983600px;}
.lse_c00263{letter-spacing:2.164560px;}
.ls38_c00263{letter-spacing:2.442960px;}
.ls34_c00263{letter-spacing:2.839680px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{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__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00263{word-spacing:0.000000px;}
.ws4_c00263{word-spacing:2.309100px;}
.ws2_c00263{word-spacing:2.447520px;}
.ws5_c00263{word-spacing:10.777680px;}
.ws1_c00263{word-spacing:12.410040px;}
.ws3_c00263{word-spacing:22.851600px;}
.ws0_c00263{word-spacing:31.043760px;}
._1c_c00263{margin-left:-7.398480px;}
._13_c00263{margin-left:-5.665440px;}
._1_c00263{margin-left:-4.217760px;}
._0_c00263{margin-left:-2.867520px;}
._7_c00263{margin-left:-1.865280px;}
._2_c00263{width:2.016480px;}
._6_c00263{width:3.097200px;}
._8_c00263{width:4.247520px;}
._3_c00263{width:5.502000px;}
._5_c00263{width:7.001760px;}
._4_c00263{width:8.314080px;}
._11_c00263{width:9.340320px;}
._14_c00263{width:10.450200px;}
._e_c00263{width:11.845920px;}
._f_c00263{width:13.404960px;}
._10_c00263{width:18.506640px;}
._12_c00263{width:20.580720px;}
._17_c00263{width:22.132800px;}
._15_c00263{width:23.573520px;}
._16_c00263{width:25.167360px;}
._b_c00263{width:26.816880px;}
._9_c00263{width:28.083600px;}
._d_c00263{width:29.120640px;}
._a_c00263{width:30.352560px;}
._19_c00263{width:31.410480px;}
._18_c00263{width:32.600640px;}
._c_c00263{width:33.964800px;}
._1b_c00263{width:35.718720px;}
._1a_c00263{width:38.523600px;}
.fc0_c00263{color:transparent;}
.fs6_c00263{font-size:59.400000px;}
.fs0_c00263{font-size:60.600000px;}
.fs5_c00263{font-size:61.200000px;}
.fs4_c00263{font-size:65.400000px;}
.fs3_c00263{font-size:67.800000px;}
.fs1_c00263{font-size:69.600000px;}
.fs2_c00263{font-size:73.800000px;}
.y0_c00263{bottom:0.000000px;}
.y1d_c00263{bottom:69.135000px;}
.y1b_c00263{bottom:176.752200px;}
.y1c_c00263{bottom:176.760000px;}
.y1a_c00263{bottom:208.455000px;}
.y19_c00263{bottom:271.455000px;}
.y18_c00263{bottom:334.101600px;}
.y17_c00263{bottom:366.135000px;}
.y16_c00263{bottom:366.137400px;}
.y15_c00263{bottom:397.445400px;}
.y14_c00263{bottom:428.782800px;}
.y13_c00263{bottom:459.737400px;}
.y12_c00263{bottom:491.040000px;}
.y11_c00263{bottom:552.975000px;}
.y10_c00263{bottom:616.697400px;}
.yf_c00263{bottom:648.000000px;}
.ye_c00263{bottom:679.335000px;}
.yd_c00263{bottom:741.975000px;}
.yc_c00263{bottom:773.295000px;}
.yb_c00263{bottom:804.615000px;}
.ya_c00263{bottom:835.935000px;}
.y9_c00263{bottom:898.200000px;}
.y8_c00263{bottom:929.520000px;}
.y7_c00263{bottom:992.175000px;}
.y5_c00263{bottom:1023.489600px;}
.y6_c00263{bottom:1023.495000px;}
.y3_c00263{bottom:1086.489600px;}
.y4_c00263{bottom:1086.495000px;}
.y2_c00263{bottom:1118.175000px;}
.y1_c00263{bottom:1194.495000px;}
.h7_c00263{height:58.297852px;}
.h2_c00263{height:59.475586px;}
.h3_c00263{height:68.308594px;}
.h5_c00263{height:70.713281px;}
.h4_c00263{height:72.394629px;}
.h6_c00263{height:72.425829px;}
.h1_c00263{height:1263.000000px;}
.h0_c00263{height:1263.240000px;}
.w1_c00263{width:892.500000px;}
.w0_c00263{width:892.800000px;}
.x0_c00263{left:0.000000px;}
.x13_c00263{left:120.078600px;}
.xf_c00263{left:121.163400px;}
.x1_c00263{left:124.125000px;}
.x16_c00263{left:173.700000px;}
.x10_c00263{left:174.765000px;}
.xa_c00263{left:176.801400px;}
.x3_c00263{left:178.116000px;}
.x4_c00263{left:245.325000px;}
.xb_c00263{left:246.405000px;}
.x2_c00263{left:255.255000px;}
.x5_c00263{left:272.670000px;}
.xc_c00263{left:275.160000px;}
.x6_c00263{left:352.245000px;}
.x7_c00263{left:381.720000px;}
.x17_c00263{left:404.880000px;}
.x19_c00263{left:423.630000px;}
.x18_c00263{left:432.405000px;}
.xd_c00263{left:484.365000px;}
.xe_c00263{left:512.070000px;}
.x8_c00263{left:593.805000px;}
.x9_c00263{left:622.485000px;}
.x11_c00263{left:627.630000px;}
.x14_c00263{left:647.085000px;}
.x12_c00263{left:648.270000px;}
.x15_c00263{left:681.315000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls92_c00263{letter-spacing:-2.296000pt;}
.ls53_c00263{letter-spacing:-2.184480pt;}
.ls42_c00263{letter-spacing:-2.165333pt;}
.ls8e_c00263{letter-spacing:-2.109653pt;}
.ls71_c00263{letter-spacing:-2.109333pt;}
.ls46_c00263{letter-spacing:-2.091093pt;}
.ls57_c00263{letter-spacing:-2.041600pt;}
.ls8c_c00263{letter-spacing:-2.007360pt;}
.ls58_c00263{letter-spacing:-1.985920pt;}
.ls5b_c00263{letter-spacing:-1.954987pt;}
.ls59_c00263{letter-spacing:-1.899307pt;}
.ls7a_c00263{letter-spacing:-1.777760pt;}
.ls6d_c00263{letter-spacing:-1.718720pt;}
.ls4f_c00263{letter-spacing:-1.692480pt;}
.ls62_c00263{letter-spacing:-1.676587pt;}
.ls66_c00263{letter-spacing:-1.620907pt;}
.ls56_c00263{letter-spacing:-1.577600pt;}
.ls8a_c00263{letter-spacing:-1.571413pt;}
.ls8b_c00263{letter-spacing:-1.567840pt;}
.ls50_c00263{letter-spacing:-1.548160pt;}
.ls5a_c00263{letter-spacing:-1.528480pt;}
.ls6a_c00263{letter-spacing:-1.489120pt;}
.ls4c_c00263{letter-spacing:-1.466240pt;}
.ls76_c00263{letter-spacing:-1.449760pt;}
.ls72_c00263{letter-spacing:-1.410400pt;}
.ls88_c00263{letter-spacing:-1.404373pt;}
.ls60_c00263{letter-spacing:-1.361067pt;}
.ls4b_c00263{letter-spacing:-1.336320pt;}
.ls49_c00263{letter-spacing:-1.293013pt;}
.ls69_c00263{letter-spacing:-1.285760pt;}
.ls8f_c00263{letter-spacing:-1.057920pt;}
.ls6e_c00263{letter-spacing:-1.039360pt;}
.ls7d_c00263{letter-spacing:-0.872320pt;}
.ls7e_c00263{letter-spacing:-0.866133pt;}
.ls90_c00263{letter-spacing:-0.835200pt;}
.ls5f_c00263{letter-spacing:-0.785707pt;}
.ls52_c00263{letter-spacing:-0.736213pt;}
.ls75_c00263{letter-spacing:-0.723840pt;}
.ls87_c00263{letter-spacing:-0.674347pt;}
.ls85_c00263{letter-spacing:-0.637227pt;}
.ls77_c00263{letter-spacing:-0.622027pt;}
.ls44_c00263{letter-spacing:-0.593920pt;}
.ls3f_c00263{letter-spacing:-0.519680pt;}
.ls5e_c00263{letter-spacing:-0.507307pt;}
.ls61_c00263{letter-spacing:-0.501120pt;}
.ls83_c00263{letter-spacing:-0.451627pt;}
.ls6c_c00263{letter-spacing:-0.445440pt;}
.ls4d_c00263{letter-spacing:-0.433067pt;}
.ls55_c00263{letter-spacing:-0.414507pt;}
.ls79_c00263{letter-spacing:-0.408000pt;}
.ls40_c00263{letter-spacing:-0.402133pt;}
.ls67_c00263{letter-spacing:-0.371200pt;}
.ls65_c00263{letter-spacing:-0.365013pt;}
.ls48_c00263{letter-spacing:-0.358827pt;}
.ls45_c00263{letter-spacing:-0.340267pt;}
.ls41_c00263{letter-spacing:-0.321707pt;}
.ls4e_c00263{letter-spacing:-0.284587pt;}
.ls84_c00263{letter-spacing:-0.278400pt;}
.ls91_c00263{letter-spacing:-0.268960pt;}
.ls6b_c00263{letter-spacing:-0.241280pt;}
.ls51_c00263{letter-spacing:-0.228907pt;}
.ls43_c00263{letter-spacing:-0.216533pt;}
.ls7b_c00263{letter-spacing:-0.210347pt;}
.ls68_c00263{letter-spacing:-0.204160pt;}
.ls5d_c00263{letter-spacing:-0.185600pt;}
.ls47_c00263{letter-spacing:-0.167040pt;}
.ls86_c00263{letter-spacing:-0.160853pt;}
.ls8d_c00263{letter-spacing:-0.148480pt;}
.ls70_c00263{letter-spacing:-0.142293pt;}
.ls7c_c00263{letter-spacing:-0.136107pt;}
.ls81_c00263{letter-spacing:-0.129920pt;}
.ls74_c00263{letter-spacing:-0.117547pt;}
.ls64_c00263{letter-spacing:-0.105173pt;}
.ls73_c00263{letter-spacing:-0.092800pt;}
.ls7f_c00263{letter-spacing:-0.080427pt;}
.ls3e_c00263{letter-spacing:-0.055680pt;}
.ls54_c00263{letter-spacing:-0.049493pt;}
.ls78_c00263{letter-spacing:-0.037120pt;}
.ls6f_c00263{letter-spacing:-0.030933pt;}
.ls80_c00263{letter-spacing:-0.024747pt;}
.ls82_c00263{letter-spacing:-0.012373pt;}
.ls4a_c00263{letter-spacing:-0.006187pt;}
.ls5c_c00263{letter-spacing:0.000000pt;}
.ls8_c00263{letter-spacing:0.006187pt;}
.lsd_c00263{letter-spacing:0.018560pt;}
.lsa_c00263{letter-spacing:0.037120pt;}
.ls2c_c00263{letter-spacing:0.049493pt;}
.ls3c_c00263{letter-spacing:0.055680pt;}
.ls1e_c00263{letter-spacing:0.068053pt;}
.ls27_c00263{letter-spacing:0.074240pt;}
.ls2_c00263{letter-spacing:0.092800pt;}
.ls32_c00263{letter-spacing:0.098987pt;}
.ls13_c00263{letter-spacing:0.105173pt;}
.ls37_c00263{letter-spacing:0.111360pt;}
.ls1c_c00263{letter-spacing:0.117547pt;}
.ls10_c00263{letter-spacing:0.129920pt;}
.ls31_c00263{letter-spacing:0.136107pt;}
.lsc_c00263{letter-spacing:0.142293pt;}
.ls28_c00263{letter-spacing:0.154667pt;}
.ls63_c00263{letter-spacing:0.160853pt;}
.ls21_c00263{letter-spacing:0.173227pt;}
.ls12_c00263{letter-spacing:0.179413pt;}
.ls2e_c00263{letter-spacing:0.185600pt;}
.ls1b_c00263{letter-spacing:0.191787pt;}
.ls33_c00263{letter-spacing:0.197973pt;}
.ls7_c00263{letter-spacing:0.216533pt;}
.ls18_c00263{letter-spacing:0.222720pt;}
.ls2b_c00263{letter-spacing:0.228907pt;}
.ls1f_c00263{letter-spacing:0.247467pt;}
.ls35_c00263{letter-spacing:0.259840pt;}
.ls14_c00263{letter-spacing:0.272213pt;}
.ls36_c00263{letter-spacing:0.278400pt;}
.ls9_c00263{letter-spacing:0.284587pt;}
.ls30_c00263{letter-spacing:0.296960pt;}
.ls15_c00263{letter-spacing:0.303147pt;}
.ls22_c00263{letter-spacing:0.315520pt;}
.lsb_c00263{letter-spacing:0.321707pt;}
.ls2f_c00263{letter-spacing:0.334080pt;}
.ls1d_c00263{letter-spacing:0.402133pt;}
.ls2a_c00263{letter-spacing:0.414507pt;}
.ls25_c00263{letter-spacing:0.426880pt;}
.ls16_c00263{letter-spacing:0.445440pt;}
.ls23_c00263{letter-spacing:0.470187pt;}
.ls11_c00263{letter-spacing:0.476373pt;}
.ls26_c00263{letter-spacing:0.482560pt;}
.ls20_c00263{letter-spacing:0.494933pt;}
.ls1a_c00263{letter-spacing:0.501120pt;}
.ls89_c00263{letter-spacing:0.507307pt;}
.ls5_c00263{letter-spacing:0.513493pt;}
.ls19_c00263{letter-spacing:0.525867pt;}
.lsf_c00263{letter-spacing:0.550613pt;}
.ls3a_c00263{letter-spacing:0.562987pt;}
.ls93_c00263{letter-spacing:0.580800pt;}
.ls3_c00263{letter-spacing:0.624853pt;}
.ls6_c00263{letter-spacing:0.637227pt;}
.ls3b_c00263{letter-spacing:0.674347pt;}
.ls24_c00263{letter-spacing:0.711467pt;}
.ls29_c00263{letter-spacing:0.779520pt;}
.ls2d_c00263{letter-spacing:0.785707pt;}
.ls39_c00263{letter-spacing:0.921813pt;}
.ls1_c00263{letter-spacing:0.965120pt;}
.ls4_c00263{letter-spacing:1.051733pt;}
.ls0_c00263{letter-spacing:1.286827pt;}
.ls3d_c00263{letter-spacing:1.669867pt;}
.ls17_c00263{letter-spacing:1.763200pt;}
.lse_c00263{letter-spacing:1.924053pt;}
.ls38_c00263{letter-spacing:2.171520pt;}
.ls34_c00263{letter-spacing:2.524160pt;}
.ws6_c00263{word-spacing:0.000000pt;}
.ws4_c00263{word-spacing:2.052533pt;}
.ws2_c00263{word-spacing:2.175573pt;}
.ws5_c00263{word-spacing:9.580160pt;}
.ws1_c00263{word-spacing:11.031147pt;}
.ws3_c00263{word-spacing:20.312533pt;}
.ws0_c00263{word-spacing:27.594453pt;}
._1c_c00263{margin-left:-6.576427pt;}
._13_c00263{margin-left:-5.035947pt;}
._1_c00263{margin-left:-3.749120pt;}
._0_c00263{margin-left:-2.548907pt;}
._7_c00263{margin-left:-1.658027pt;}
._2_c00263{width:1.792427pt;}
._6_c00263{width:2.753067pt;}
._8_c00263{width:3.775573pt;}
._3_c00263{width:4.890667pt;}
._5_c00263{width:6.223787pt;}
._4_c00263{width:7.390293pt;}
._11_c00263{width:8.302507pt;}
._14_c00263{width:9.289067pt;}
._e_c00263{width:10.529707pt;}
._f_c00263{width:11.915520pt;}
._10_c00263{width:16.450347pt;}
._12_c00263{width:18.293973pt;}
._17_c00263{width:19.673600pt;}
._15_c00263{width:20.954240pt;}
._16_c00263{width:22.370987pt;}
._b_c00263{width:23.837227pt;}
._9_c00263{width:24.963200pt;}
._d_c00263{width:25.885013pt;}
._a_c00263{width:26.980053pt;}
._19_c00263{width:27.920427pt;}
._18_c00263{width:28.978347pt;}
._c_c00263{width:30.190933pt;}
._1b_c00263{width:31.749973pt;}
._1a_c00263{width:34.243200pt;}
.fs6_c00263{font-size:52.800000pt;}
.fs0_c00263{font-size:53.866667pt;}
.fs5_c00263{font-size:54.400000pt;}
.fs4_c00263{font-size:58.133333pt;}
.fs3_c00263{font-size:60.266667pt;}
.fs1_c00263{font-size:61.866667pt;}
.fs2_c00263{font-size:65.600000pt;}
.y0_c00263{bottom:0.000000pt;}
.y1d_c00263{bottom:61.453333pt;}
.y1b_c00263{bottom:157.113067pt;}
.y1c_c00263{bottom:157.120000pt;}
.y1a_c00263{bottom:185.293333pt;}
.y19_c00263{bottom:241.293333pt;}
.y18_c00263{bottom:296.979200pt;}
.y17_c00263{bottom:325.453333pt;}
.y16_c00263{bottom:325.455467pt;}
.y15_c00263{bottom:353.284800pt;}
.y14_c00263{bottom:381.140267pt;}
.y13_c00263{bottom:408.655467pt;}
.y12_c00263{bottom:436.480000pt;}
.y11_c00263{bottom:491.533333pt;}
.y10_c00263{bottom:548.175467pt;}
.yf_c00263{bottom:576.000000pt;}
.ye_c00263{bottom:603.853333pt;}
.yd_c00263{bottom:659.533333pt;}
.yc_c00263{bottom:687.373333pt;}
.yb_c00263{bottom:715.213333pt;}
.ya_c00263{bottom:743.053333pt;}
.y9_c00263{bottom:798.400000pt;}
.y8_c00263{bottom:826.240000pt;}
.y7_c00263{bottom:881.933333pt;}
.y5_c00263{bottom:909.768533pt;}
.y6_c00263{bottom:909.773333pt;}
.y3_c00263{bottom:965.768533pt;}
.y4_c00263{bottom:965.773333pt;}
.y2_c00263{bottom:993.933333pt;}
.y1_c00263{bottom:1061.773333pt;}
.h7_c00263{height:51.820312pt;}
.h2_c00263{height:52.867187pt;}
.h3_c00263{height:60.718750pt;}
.h5_c00263{height:62.856250pt;}
.h4_c00263{height:64.350781pt;}
.h6_c00263{height:64.378515pt;}
.h1_c00263{height:1122.666667pt;}
.h0_c00263{height:1122.880000pt;}
.w1_c00263{width:793.333333pt;}
.w0_c00263{width:793.600000pt;}
.x0_c00263{left:0.000000pt;}
.x13_c00263{left:106.736533pt;}
.xf_c00263{left:107.700800pt;}
.x1_c00263{left:110.333333pt;}
.x16_c00263{left:154.400000pt;}
.x10_c00263{left:155.346667pt;}
.xa_c00263{left:157.156800pt;}
.x3_c00263{left:158.325333pt;}
.x4_c00263{left:218.066667pt;}
.xb_c00263{left:219.026667pt;}
.x2_c00263{left:226.893333pt;}
.x5_c00263{left:242.373333pt;}
.xc_c00263{left:244.586667pt;}
.x6_c00263{left:313.106667pt;}
.x7_c00263{left:339.306667pt;}
.x17_c00263{left:359.893333pt;}
.x19_c00263{left:376.560000pt;}
.x18_c00263{left:384.360000pt;}
.xd_c00263{left:430.546667pt;}
.xe_c00263{left:455.173333pt;}
.x8_c00263{left:527.826667pt;}
.x9_c00263{left:553.320000pt;}
.x11_c00263{left:557.893333pt;}
.x14_c00263{left:575.186667pt;}
.x12_c00263{left:576.240000pt;}
.x15_c00263{left:605.613333pt;}
}





/* 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_c00264 {
    display:none;
  }
  .loading-indicator_c00264.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00264 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_c00264 { 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_c00264" -> "#page-container .classname_c00264")
 */
.pf_c00264 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00264 { /* 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_c00264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00264 { /* 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_c00264 { /* 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_c00264 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00264 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00264 {overflow:visible;}
  }
}
.c_c00264 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00264 { /* 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_c00264:after { /* webkit #35443 */
  content: '';
}
.t_c00264:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00264 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 */
}
.__c00264 { /* 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_c00264 { /* info for Javascript */
  display:none;
}
.l_c00264 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00264 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00264 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00264: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_c00264 {
    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_c00264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00264.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_c00264 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00264;src:url('chunks/assets/font_660db5181ac4100a500741b2.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;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:ff2_c00264;src:url('chunks/assets/font_09037892063f32cfcdea39b6.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.284180;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_c00264;src:url('chunks/assets/font_6d45c7bd2de1ce5b8cb6eac6.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.284180;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_c00264;src:url('chunks/assets/font_6ab7dffc94e96440fdd79ed8.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00264{transform:matrix(0.118779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118779,0.000000,0.000000,0.250000,0,0);}
.m2_c00264{transform:matrix(0.125966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125966,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{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);}
.m3_c00264{transform:matrix(0.408352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408352,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.v1_c00264{vertical-align:73.458000px;}
.v2_c00264{vertical-align:174.300000px;}
.ls8_c00264{letter-spacing:-2.688000px;}
.lse_c00264{letter-spacing:-2.478000px;}
.ls9_c00264{letter-spacing:-1.726200px;}
.lsd_c00264{letter-spacing:-0.804420px;}
.lsf_c00264{letter-spacing:0.000000px;}
.lsa_c00264{letter-spacing:0.241680px;}
.lsb_c00264{letter-spacing:0.368880px;}
.ls4_c00264{letter-spacing:0.559680px;}
.ls6_c00264{letter-spacing:0.769560px;}
.lsc_c00264{letter-spacing:0.820440px;}
.ls3_c00264{letter-spacing:0.871320px;}
.ls0_c00264{letter-spacing:0.973080px;}
.ls5_c00264{letter-spacing:1.265640px;}
.ls1_c00264{letter-spacing:1.291080px;}
.ls2_c00264{letter-spacing:1.520040px;}
.ls10_c00264{letter-spacing:1.650030px;}
.ls7_c00264{letter-spacing:2.877600px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{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__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00264{word-spacing:-113.424000px;}
.ws5_c00264{word-spacing:0.000000px;}
.ws3_c00264{word-spacing:0.152640px;}
.ws1_c00264{word-spacing:1.226880px;}
.ws2_c00264{word-spacing:1.799520px;}
.ws0_c00264{word-spacing:7.045800px;}
._4_c00264{margin-left:-34.236000px;}
._1_c00264{margin-left:-5.198520px;}
._3_c00264{margin-left:-3.364440px;}
._0_c00264{width:1.941480px;}
._2_c00264{width:139.557480px;}
.fc0_c00264{color:transparent;}
.fs7_c00264{font-size:33.000600px;}
.fs1_c00264{font-size:63.000000px;}
.fs2_c00264{font-size:63.600000px;}
.fs3_c00264{font-size:65.400000px;}
.fs4_c00264{font-size:70.800000px;}
.fs0_c00264{font-size:76.800000px;}
.fs6_c00264{font-size:92.400000px;}
.fs5_c00264{font-size:408.000000px;}
.y0_c00264{bottom:0.000000px;}
.y3_c00264{bottom:148.315506px;}
.y2_c00264{bottom:166.680006px;}
.y6_c00264{bottom:541.800006px;}
.y8_c00264{bottom:552.615006px;}
.y7_c00264{bottom:565.935006px;}
.y5_c00264{bottom:1079.280006px;}
.y1_c00264{bottom:1080.735006px;}
.y4_c00264{bottom:1145.520006px;}
.h9_c00264{height:34.418595px;}
.h3_c00264{height:62.388867px;}
.h5_c00264{height:64.186523px;}
.h6_c00264{height:69.486328px;}
.h2_c00264{height:80.100000px;}
.h8_c00264{height:96.370313px;}
.h4_c00264{height:135.864867px;}
.h7_c00264{height:425.531250px;}
.h1_c00264{height:1263.000000px;}
.h0_c00264{height:1263.240006px;}
.w1_c00264{width:892.500000px;}
.w0_c00264{width:892.799998px;}
.x0_c00264{left:0.000000px;}
.x3_c00264{left:118.732499px;}
.x2_c00264{left:121.214999px;}
.x1_c00264{left:124.274998px;}
.x4_c00264{left:332.150398px;}
.x7_c00264{left:655.049998px;}
.x8_c00264{left:665.489998px;}
.x5_c00264{left:671.669999px;}
.x6_c00264{left:799.979998px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.v1_c00264{vertical-align:65.296000pt;}
.v2_c00264{vertical-align:154.933333pt;}
.ls8_c00264{letter-spacing:-2.389333pt;}
.lse_c00264{letter-spacing:-2.202667pt;}
.ls9_c00264{letter-spacing:-1.534400pt;}
.lsd_c00264{letter-spacing:-0.715040pt;}
.lsf_c00264{letter-spacing:0.000000pt;}
.lsa_c00264{letter-spacing:0.214827pt;}
.lsb_c00264{letter-spacing:0.327893pt;}
.ls4_c00264{letter-spacing:0.497493pt;}
.ls6_c00264{letter-spacing:0.684053pt;}
.lsc_c00264{letter-spacing:0.729280pt;}
.ls3_c00264{letter-spacing:0.774507pt;}
.ls0_c00264{letter-spacing:0.864960pt;}
.ls5_c00264{letter-spacing:1.125013pt;}
.ls1_c00264{letter-spacing:1.147627pt;}
.ls2_c00264{letter-spacing:1.351147pt;}
.ls10_c00264{letter-spacing:1.466693pt;}
.ls7_c00264{letter-spacing:2.557867pt;}
.ws4_c00264{word-spacing:-100.821333pt;}
.ws5_c00264{word-spacing:0.000000pt;}
.ws3_c00264{word-spacing:0.135680pt;}
.ws1_c00264{word-spacing:1.090560pt;}
.ws2_c00264{word-spacing:1.599573pt;}
.ws0_c00264{word-spacing:6.262933pt;}
._4_c00264{margin-left:-30.432000pt;}
._1_c00264{margin-left:-4.620907pt;}
._3_c00264{margin-left:-2.990613pt;}
._0_c00264{width:1.725760pt;}
._2_c00264{width:124.051093pt;}
.fs7_c00264{font-size:29.333867pt;}
.fs1_c00264{font-size:56.000000pt;}
.fs2_c00264{font-size:56.533333pt;}
.fs3_c00264{font-size:58.133333pt;}
.fs4_c00264{font-size:62.933333pt;}
.fs0_c00264{font-size:68.266667pt;}
.fs6_c00264{font-size:82.133333pt;}
.fs5_c00264{font-size:362.666667pt;}
.y0_c00264{bottom:0.000000pt;}
.y3_c00264{bottom:131.836005pt;}
.y2_c00264{bottom:148.160005pt;}
.y6_c00264{bottom:481.600005pt;}
.y8_c00264{bottom:491.213339pt;}
.y7_c00264{bottom:503.053339pt;}
.y5_c00264{bottom:959.360005pt;}
.y1_c00264{bottom:960.653339pt;}
.y4_c00264{bottom:1018.240005pt;}
.h9_c00264{height:30.594306pt;}
.h3_c00264{height:55.456771pt;}
.h5_c00264{height:57.054688pt;}
.h6_c00264{height:61.765625pt;}
.h2_c00264{height:71.200000pt;}
.h8_c00264{height:85.662500pt;}
.h4_c00264{height:120.768771pt;}
.h7_c00264{height:378.250000pt;}
.h1_c00264{height:1122.666667pt;}
.h0_c00264{height:1122.880005pt;}
.w1_c00264{width:793.333333pt;}
.w0_c00264{width:793.599999pt;}
.x0_c00264{left:0.000000pt;}
.x3_c00264{left:105.539999pt;}
.x2_c00264{left:107.746665pt;}
.x1_c00264{left:110.466665pt;}
.x4_c00264{left:295.244799pt;}
.x7_c00264{left:582.266665pt;}
.x8_c00264{left:591.546665pt;}
.x5_c00264{left:597.039999pt;}
.x6_c00264{left:711.093332pt;}
}





/* 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_c00265 {
    display:none;
  }
  .loading-indicator_c00265.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00265 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_c00265 { 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_c00265" -> "#page-container .classname_c00265")
 */
.pf_c00265 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00265 { /* 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_c00265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00265 { /* 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_c00265 { /* 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_c00265 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00265 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00265 {overflow:visible;}
  }
}
.c_c00265 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00265 { /* 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_c00265:after { /* webkit #35443 */
  content: '';
}
.t_c00265:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00265 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 */
}
.__c00265 { /* 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_c00265 { /* info for Javascript */
  display:none;
}
.l_c00265 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00265 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00265 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00265: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_c00265 {
    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_c00265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00265.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_c00265 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00265;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;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:ff2_c00265;src:url('chunks/assets/font_93e4af592ed102648afddddf.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;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_c00265;src:url('chunks/assets/font_800f56195be6d3ea37b14e68.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.284180;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_c00265;src:url('chunks/assets/font_15d9c87f2ac806831ec0b8ca.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;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:ff5_c00265;src:url('chunks/assets/font_3c7a882291b651f3d43026ff.woff2')format("woff");}.ff5_c00265{font-family:ff5_c00265;line-height:0.666000;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_c00265;src:url('chunks/assets/font_e6bf666efd3cba3641c79ddf.woff2')format("woff");}.ff6_c00265{font-family:ff6_c00265;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00265{transform:matrix(0.127261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127261,0.000000,0.000000,0.250000,0,0);}
.m2_c00265{transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);}
.m1_c00265{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);}
.m4_c00265{transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);}
.m3_c00265{transform:matrix(0.284042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284042,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls9_c00265{letter-spacing:-2.457000px;}
.ls10_c00265{letter-spacing:-1.142760px;}
.lsa_c00265{letter-spacing:-0.826440px;}
.lsc_c00265{letter-spacing:0.000000px;}
.ls5_c00265{letter-spacing:0.146280px;}
.ls7_c00265{letter-spacing:0.356160px;}
.lsf_c00265{letter-spacing:0.372360px;}
.lsb_c00265{letter-spacing:0.534240px;}
.ls11_c00265{letter-spacing:0.553320px;}
.ls8_c00265{letter-spacing:0.655080px;}
.ls12_c00265{letter-spacing:0.833160px;}
.ls1_c00265{letter-spacing:0.941280px;}
.ls0_c00265{letter-spacing:0.973080px;}
.ls3_c00265{letter-spacing:1.233840px;}
.lsd_c00265{letter-spacing:1.260000px;}
.ls6_c00265{letter-spacing:1.265640px;}
.ls2_c00265{letter-spacing:2.009760px;}
.lse_c00265{letter-spacing:3.210000px;}
.ls4_c00265{letter-spacing:18.436800px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{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__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00265{word-spacing:-0.216240px;}
.ws3_c00265{word-spacing:0.000000px;}
.ws2_c00265{word-spacing:0.152640px;}
.ws0_c00265{word-spacing:4.946760px;}
._1_c00265{margin-left:-11.787120px;}
._0_c00265{margin-left:-1.113000px;}
._3_c00265{width:1.755360px;}
._2_c00265{width:3.644280px;}
.fc0_c00265{color:transparent;}
.fs5_c00265{font-size:25.200000px;}
.fs8_c00265{font-size:54.600000px;}
.fs1_c00265{font-size:58.200000px;}
.fs3_c00265{font-size:60.600000px;}
.fs6_c00265{font-size:61.200000px;}
.fs2_c00265{font-size:63.600000px;}
.fs7_c00265{font-size:64.200000px;}
.fs0_c00265{font-size:70.200000px;}
.fs4_c00265{font-size:77.760000px;}
.y0_c00265{bottom:0.000000px;}
.yb_c00265{bottom:147.955500px;}
.y3_c00265{bottom:148.315500px;}
.ya_c00265{bottom:166.320000px;}
.y2_c00265{bottom:166.680000px;}
.y7_c00265{bottom:289.455000px;}
.y9_c00265{bottom:640.800000px;}
.y6_c00265{bottom:888.495000px;}
.y5_c00265{bottom:894.600000px;}
.y4_c00265{bottom:918.015000px;}
.y1_c00265{bottom:1082.535000px;}
.y8_c00265{bottom:1144.815000px;}
.h6_c00265{height:26.282813px;}
.h5_c00265{height:51.788160px;}
.h9_c00265{height:56.946094px;}
.h7_c00265{height:60.064453px;}
.h3_c00265{height:62.388867px;}
.h8_c00265{height:63.008789px;}
.h4_c00265{height:63.203906px;}
.h2_c00265{height:73.216406px;}
.h1_c00265{height:1263.000000px;}
.h0_c00265{height:1263.240000px;}
.w1_c00265{width:892.500000px;}
.w0_c00265{width:892.800000px;}
.x0_c00265{left:0.000000px;}
.x2_c00265{left:116.595000px;}
.x1_c00265{left:118.590000px;}
.x5_c00265{left:346.500000px;}
.x4_c00265{left:350.655000px;}
.x3_c00265{left:352.095000px;}
.x9_c00265{left:383.565000px;}
.x8_c00265{left:424.725000px;}
.x6_c00265{left:670.230000px;}
.x7_c00265{left:742.950000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls9_c00265{letter-spacing:-2.184000pt;}
.ls10_c00265{letter-spacing:-1.015787pt;}
.lsa_c00265{letter-spacing:-0.734613pt;}
.lsc_c00265{letter-spacing:0.000000pt;}
.ls5_c00265{letter-spacing:0.130027pt;}
.ls7_c00265{letter-spacing:0.316587pt;}
.lsf_c00265{letter-spacing:0.330987pt;}
.lsb_c00265{letter-spacing:0.474880pt;}
.ls11_c00265{letter-spacing:0.491840pt;}
.ls8_c00265{letter-spacing:0.582293pt;}
.ls12_c00265{letter-spacing:0.740587pt;}
.ls1_c00265{letter-spacing:0.836693pt;}
.ls0_c00265{letter-spacing:0.864960pt;}
.ls3_c00265{letter-spacing:1.096747pt;}
.lsd_c00265{letter-spacing:1.120000pt;}
.ls6_c00265{letter-spacing:1.125013pt;}
.ls2_c00265{letter-spacing:1.786453pt;}
.lse_c00265{letter-spacing:2.853333pt;}
.ls4_c00265{letter-spacing:16.388267pt;}
.ws1_c00265{word-spacing:-0.192213pt;}
.ws3_c00265{word-spacing:0.000000pt;}
.ws2_c00265{word-spacing:0.135680pt;}
.ws0_c00265{word-spacing:4.397120pt;}
._1_c00265{margin-left:-10.477440pt;}
._0_c00265{margin-left:-0.989333pt;}
._3_c00265{width:1.560320pt;}
._2_c00265{width:3.239360pt;}
.fs5_c00265{font-size:22.400000pt;}
.fs8_c00265{font-size:48.533333pt;}
.fs1_c00265{font-size:51.733333pt;}
.fs3_c00265{font-size:53.866667pt;}
.fs6_c00265{font-size:54.400000pt;}
.fs2_c00265{font-size:56.533333pt;}
.fs7_c00265{font-size:57.066667pt;}
.fs0_c00265{font-size:62.400000pt;}
.fs4_c00265{font-size:69.120000pt;}
.y0_c00265{bottom:0.000000pt;}
.yb_c00265{bottom:131.516000pt;}
.y3_c00265{bottom:131.836000pt;}
.ya_c00265{bottom:147.840000pt;}
.y2_c00265{bottom:148.160000pt;}
.y7_c00265{bottom:257.293333pt;}
.y9_c00265{bottom:569.600000pt;}
.y6_c00265{bottom:789.773333pt;}
.y5_c00265{bottom:795.200000pt;}
.y4_c00265{bottom:816.013333pt;}
.y1_c00265{bottom:962.253333pt;}
.y8_c00265{bottom:1017.613333pt;}
.h6_c00265{height:23.362500pt;}
.h5_c00265{height:46.033920pt;}
.h9_c00265{height:50.618750pt;}
.h7_c00265{height:53.390625pt;}
.h3_c00265{height:55.456771pt;}
.h8_c00265{height:56.007812pt;}
.h4_c00265{height:56.181250pt;}
.h2_c00265{height:65.081250pt;}
.h1_c00265{height:1122.666667pt;}
.h0_c00265{height:1122.880000pt;}
.w1_c00265{width:793.333333pt;}
.w0_c00265{width:793.600000pt;}
.x0_c00265{left:0.000000pt;}
.x2_c00265{left:103.640000pt;}
.x1_c00265{left:105.413333pt;}
.x5_c00265{left:308.000000pt;}
.x4_c00265{left:311.693333pt;}
.x3_c00265{left:312.973333pt;}
.x9_c00265{left:340.946667pt;}
.x8_c00265{left:377.533333pt;}
.x6_c00265{left:595.760000pt;}
.x7_c00265{left:660.400000pt;}
}





/* 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_c00266 {
    display:none;
  }
  .loading-indicator_c00266.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00266 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_c00266 { 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_c00266" -> "#page-container .classname_c00266")
 */
.pf_c00266 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00266 { /* 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_c00266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00266 { /* 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_c00266 { /* 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_c00266 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00266 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00266 {overflow:visible;}
  }
}
.c_c00266 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00266 { /* 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_c00266:after { /* webkit #35443 */
  content: '';
}
.t_c00266:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00266 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 */
}
.__c00266 { /* 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_c00266 { /* info for Javascript */
  display:none;
}
.l_c00266 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00266 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00266 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00266: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_c00266 {
    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_c00266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00266.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_c00266 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00266;src:url('chunks/assets/font_48ffde8233efaf9c9329ccc5.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;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:ff2_c00266;src:url('chunks/assets/font_b970daa937769edd38e15e49.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:0.666000;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_c00266;src:url('chunks/assets/font_025d4ff67cd25e6611a8e870.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:1.284180;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_c00266;src:url('chunks/assets/font_7b43523c119a22bee660e180.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:1.284668;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;}
.m3_c00266{transform:matrix(0.041872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041872,0.000000,0.000000,0.250000,0,0);}
.m6_c00266{transform:matrix(0.043578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043578,0.000000,0.000000,0.250000,0,0);}
.m2_c00266{transform:matrix(0.044271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044271,0.000000,0.000000,0.250000,0,0);}
.m5_c00266{transform:matrix(0.110755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110755,0.000000,0.000000,0.250000,0,0);}
.m0_c00266{transform:matrix(0.119715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119715,0.000000,0.000000,0.250000,0,0);}
.m4_c00266{transform:matrix(0.125512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125512,0.000000,0.000000,0.250000,0,0);}
.m7_c00266{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m1_c00266{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);}
.v0_c00266{vertical-align:0.000000px;}
.ls10_c00266{letter-spacing:-3.465000px;}
.ls8_c00266{letter-spacing:-2.667000px;}
.ls11_c00266{letter-spacing:-2.037000px;}
.lsf_c00266{letter-spacing:-1.652400px;}
.lsa_c00266{letter-spacing:-1.392840px;}
.ls12_c00266{letter-spacing:-0.386287px;}
.ls9_c00266{letter-spacing:0.000000px;}
.ls3_c00266{letter-spacing:0.152640px;}
.ls4_c00266{letter-spacing:0.356160px;}
.lse_c00266{letter-spacing:0.737760px;}
.ls0_c00266{letter-spacing:0.769560px;}
.lsc_c00266{letter-spacing:0.890400px;}
.lsd_c00266{letter-spacing:0.934920px;}
.ls5_c00266{letter-spacing:1.157520px;}
.ls2_c00266{letter-spacing:1.176600px;}
.ls6_c00266{letter-spacing:1.265640px;}
.lsb_c00266{letter-spacing:1.551840px;}
.ls1_c00266{letter-spacing:2.009760px;}
.ls7_c00266{letter-spacing:2.773440px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{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__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00266{word-spacing:-1.679040px;}
.ws4_c00266{word-spacing:0.000000px;}
.ws3_c00266{word-spacing:1.663440px;}
.ws2_c00266{word-spacing:3.205440px;}
.ws0_c00266{word-spacing:5.634960px;}
._0_c00266{margin-left:-4.827240px;}
._1_c00266{margin-left:-2.321400px;}
._2_c00266{width:2.136960px;}
._3_c00266{width:3.593760px;}
.fc0_c00266{color:transparent;}
.fsb_c00266{font-size:34.800600px;}
.fs7_c00266{font-size:58.200000px;}
.fs9_c00266{font-size:63.000000px;}
.fs3_c00266{font-size:63.600000px;}
.fs5_c00266{font-size:64.800000px;}
.fs0_c00266{font-size:76.200000px;}
.fsa_c00266{font-size:86.400000px;}
.fs6_c00266{font-size:99.000000px;}
.fs1_c00266{font-size:131.400000px;}
.fs2_c00266{font-size:276.480000px;}
.fs4_c00266{font-size:292.320000px;}
.fs8_c00266{font-size:313.920000px;}
.y0_c00266{bottom:0.000000px;}
.y8_c00266{bottom:150.845700px;}
.y5_c00266{bottom:151.204800px;}
.y7_c00266{bottom:169.560000px;}
.y4_c00266{bottom:169.935000px;}
.yf_c00266{bottom:643.320000px;}
.ye_c00266{bottom:651.615000px;}
.yd_c00266{bottom:677.535000px;}
.y6_c00266{bottom:853.200000px;}
.yc_c00266{bottom:928.080000px;}
.y3_c00266{bottom:941.760000px;}
.yb_c00266{bottom:1080.015000px;}
.ya_c00266{bottom:1081.080000px;}
.y2_c00266{bottom:1082.175000px;}
.y1_c00266{bottom:1082.535000px;}
.y9_c00266{bottom:1148.055000px;}
.hd_c00266{height:36.295938px;}
.h9_c00266{height:57.120117px;}
.hc_c00266{height:57.542400px;}
.hb_c00266{height:61.831055px;}
.h5_c00266{height:62.388867px;}
.h7_c00266{height:63.597656px;}
.h2_c00266{height:79.474219px;}
.h8_c00266{height:97.163086px;}
.h3_c00266{height:137.046094px;}
.h4_c00266{height:184.135680px;}
.h6_c00266{height:194.685120px;}
.ha_c00266{height:209.070720px;}
.h1_c00266{height:1263.000000px;}
.h0_c00266{height:1263.240000px;}
.w1_c00266{width:892.500000px;}
.w0_c00266{width:892.800000px;}
.x0_c00266{left:0.000000px;}
.x5_c00266{left:115.859700px;}
.x4_c00266{left:118.515000px;}
.x1_c00266{left:120.675000px;}
.x2_c00266{left:231.915000px;}
.x3_c00266{left:257.775000px;}
.x8_c00266{left:382.168800px;}
.x7_c00266{left:383.250000px;}
.x6_c00266{left:431.280000px;}
.xa_c00266{left:633.345000px;}
.xe_c00266{left:655.935000px;}
.xd_c00266{left:658.710000px;}
.x9_c00266{left:670.230000px;}
.xc_c00266{left:686.175000px;}
.xb_c00266{left:797.535000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls10_c00266{letter-spacing:-3.080000pt;}
.ls8_c00266{letter-spacing:-2.370667pt;}
.ls11_c00266{letter-spacing:-1.810667pt;}
.lsf_c00266{letter-spacing:-1.468800pt;}
.lsa_c00266{letter-spacing:-1.238080pt;}
.ls12_c00266{letter-spacing:-0.343366pt;}
.ls9_c00266{letter-spacing:0.000000pt;}
.ls3_c00266{letter-spacing:0.135680pt;}
.ls4_c00266{letter-spacing:0.316587pt;}
.lse_c00266{letter-spacing:0.655787pt;}
.ls0_c00266{letter-spacing:0.684053pt;}
.lsc_c00266{letter-spacing:0.791467pt;}
.lsd_c00266{letter-spacing:0.831040pt;}
.ls5_c00266{letter-spacing:1.028907pt;}
.ls2_c00266{letter-spacing:1.045867pt;}
.ls6_c00266{letter-spacing:1.125013pt;}
.lsb_c00266{letter-spacing:1.379413pt;}
.ls1_c00266{letter-spacing:1.786453pt;}
.ls7_c00266{letter-spacing:2.465280pt;}
.ws1_c00266{word-spacing:-1.492480pt;}
.ws4_c00266{word-spacing:0.000000pt;}
.ws3_c00266{word-spacing:1.478613pt;}
.ws2_c00266{word-spacing:2.849280pt;}
.ws0_c00266{word-spacing:5.008853pt;}
._0_c00266{margin-left:-4.290880pt;}
._1_c00266{margin-left:-2.063467pt;}
._2_c00266{width:1.899520pt;}
._3_c00266{width:3.194453pt;}
.fsb_c00266{font-size:30.933867pt;}
.fs7_c00266{font-size:51.733333pt;}
.fs9_c00266{font-size:56.000000pt;}
.fs3_c00266{font-size:56.533333pt;}
.fs5_c00266{font-size:57.600000pt;}
.fs0_c00266{font-size:67.733333pt;}
.fsa_c00266{font-size:76.800000pt;}
.fs6_c00266{font-size:88.000000pt;}
.fs1_c00266{font-size:116.800000pt;}
.fs2_c00266{font-size:245.760000pt;}
.fs4_c00266{font-size:259.840000pt;}
.fs8_c00266{font-size:279.040000pt;}
.y0_c00266{bottom:0.000000pt;}
.y8_c00266{bottom:134.085067pt;}
.y5_c00266{bottom:134.404267pt;}
.y7_c00266{bottom:150.720000pt;}
.y4_c00266{bottom:151.053333pt;}
.yf_c00266{bottom:571.840000pt;}
.ye_c00266{bottom:579.213333pt;}
.yd_c00266{bottom:602.253333pt;}
.y6_c00266{bottom:758.400000pt;}
.yc_c00266{bottom:824.960000pt;}
.y3_c00266{bottom:837.120000pt;}
.yb_c00266{bottom:960.013333pt;}
.ya_c00266{bottom:960.960000pt;}
.y2_c00266{bottom:961.933333pt;}
.y1_c00266{bottom:962.253333pt;}
.y9_c00266{bottom:1020.493333pt;}
.hd_c00266{height:32.263056pt;}
.h9_c00266{height:50.773437pt;}
.hc_c00266{height:51.148800pt;}
.hb_c00266{height:54.960938pt;}
.h5_c00266{height:55.456771pt;}
.h7_c00266{height:56.531250pt;}
.h2_c00266{height:70.643750pt;}
.h8_c00266{height:86.367188pt;}
.h3_c00266{height:121.818750pt;}
.h4_c00266{height:163.676160pt;}
.h6_c00266{height:173.053440pt;}
.ha_c00266{height:185.840640pt;}
.h1_c00266{height:1122.666667pt;}
.h0_c00266{height:1122.880000pt;}
.w1_c00266{width:793.333333pt;}
.w0_c00266{width:793.600000pt;}
.x0_c00266{left:0.000000pt;}
.x5_c00266{left:102.986400pt;}
.x4_c00266{left:105.346667pt;}
.x1_c00266{left:107.266667pt;}
.x2_c00266{left:206.146667pt;}
.x3_c00266{left:229.133333pt;}
.x8_c00266{left:339.705600pt;}
.x7_c00266{left:340.666667pt;}
.x6_c00266{left:383.360000pt;}
.xa_c00266{left:562.973333pt;}
.xe_c00266{left:583.053333pt;}
.xd_c00266{left:585.520000pt;}
.x9_c00266{left:595.760000pt;}
.xc_c00266{left:609.933333pt;}
.xb_c00266{left:708.920000pt;}
}





/* 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_c00267 {
    display:none;
  }
  .loading-indicator_c00267.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00267 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_c00267 { 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_c00267" -> "#page-container .classname_c00267")
 */
.pf_c00267 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00267 { /* 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_c00267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00267 { /* 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_c00267 { /* 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_c00267 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00267 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00267 {overflow:visible;}
  }
}
.c_c00267 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00267 { /* 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_c00267:after { /* webkit #35443 */
  content: '';
}
.t_c00267:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00267 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 */
}
.__c00267 { /* 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_c00267 { /* info for Javascript */
  display:none;
}
.l_c00267 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00267 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00267 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00267: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_c00267 {
    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_c00267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00267.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_c00267 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00267;src:url('chunks/assets/font_305a21963189c939d889b2c6.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:0.666000;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_c00267;src:url('chunks/assets/font_4e7403e2fefd3a543f1b03cd.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;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_c00267;src:url('chunks/assets/font_dd7a2446e61ff035917a2fd0.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:1.284180;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_c00267;src:url('chunks/assets/font_3c51df77bb77cd58d25967ff.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00267{transform:matrix(0.051020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051020,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{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);}
.v0_c00267{vertical-align:0.000000px;}
.lsb_c00267{letter-spacing:-1.006860px;}
.ls11_c00267{letter-spacing:-0.453600px;}
.lsd_c00267{letter-spacing:-0.340200px;}
.lsa_c00267{letter-spacing:0.000000px;}
.ls4_c00267{letter-spacing:0.409860px;}
.ls1_c00267{letter-spacing:0.800100px;}
.lsc_c00267{letter-spacing:0.875700px;}
.ls7_c00267{letter-spacing:0.882000px;}
.ls10_c00267{letter-spacing:1.083600px;}
.ls0_c00267{letter-spacing:1.089900px;}
.ls6_c00267{letter-spacing:1.117440px;}
.ls2_c00267{letter-spacing:1.122660px;}
.lse_c00267{letter-spacing:1.203300px;}
.ls8_c00267{letter-spacing:1.316700px;}
.ls12_c00267{letter-spacing:1.335600px;}
.lsf_c00267{letter-spacing:1.411200px;}
.ls9_c00267{letter-spacing:1.461600px;}
.ls5_c00267{letter-spacing:1.499400px;}
.ls3_c00267{letter-spacing:1.694700px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{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__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00267{word-spacing:-17.635860px;}
.ws5_c00267{word-spacing:0.000000px;}
.ws2_c00267{word-spacing:1.507560px;}
.ws3_c00267{word-spacing:1.671240px;}
.ws4_c00267{word-spacing:5.090400px;}
.ws0_c00267{word-spacing:6.208440px;}
._2_c00267{margin-left:-3.717000px;}
._3_c00267{margin-left:-1.578600px;}
._0_c00267{width:1.309800px;}
._1_c00267{width:9.932220px;}
.fc0_c00267{color:transparent;}
.fs1_c00267{font-size:58.200000px;}
.fs3_c00267{font-size:59.400000px;}
.fs2_c00267{font-size:63.000000px;}
.fs0_c00267{font-size:282.240000px;}
.y0_c00267{bottom:0.000000px;}
.y4_c00267{bottom:150.120000px;}
.y6_c00267{bottom:168.113250px;}
.y3_c00267{bottom:168.840000px;}
.y2_c00267{bottom:186.840000px;}
.y1_c00267{bottom:636.480000px;}
.y5_c00267{bottom:684.722250px;}
.h3_c00267{height:61.800293px;}
.h5_c00267{height:61.831055px;}
.h4_c00267{height:61.952344px;}
.h2_c00267{height:187.971840px;}
.h1_c00267{height:1263.000000px;}
.h0_c00267{height:1263.240000px;}
.w1_c00267{width:892.500000px;}
.w0_c00267{width:892.800000px;}
.x0_c00267{left:0.000000px;}
.x3_c00267{left:119.985000px;}
.x2_c00267{left:121.395000px;}
.x1_c00267{left:293.055000px;}
.x5_c00267{left:438.285000px;}
.x4_c00267{left:689.940000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.lsb_c00267{letter-spacing:-0.894987pt;}
.ls11_c00267{letter-spacing:-0.403200pt;}
.lsd_c00267{letter-spacing:-0.302400pt;}
.lsa_c00267{letter-spacing:0.000000pt;}
.ls4_c00267{letter-spacing:0.364320pt;}
.ls1_c00267{letter-spacing:0.711200pt;}
.lsc_c00267{letter-spacing:0.778400pt;}
.ls7_c00267{letter-spacing:0.784000pt;}
.ls10_c00267{letter-spacing:0.963200pt;}
.ls0_c00267{letter-spacing:0.968800pt;}
.ls6_c00267{letter-spacing:0.993280pt;}
.ls2_c00267{letter-spacing:0.997920pt;}
.lse_c00267{letter-spacing:1.069600pt;}
.ls8_c00267{letter-spacing:1.170400pt;}
.ls12_c00267{letter-spacing:1.187200pt;}
.lsf_c00267{letter-spacing:1.254400pt;}
.ls9_c00267{letter-spacing:1.299200pt;}
.ls5_c00267{letter-spacing:1.332800pt;}
.ls3_c00267{letter-spacing:1.506400pt;}
.ws1_c00267{word-spacing:-15.676320pt;}
.ws5_c00267{word-spacing:0.000000pt;}
.ws2_c00267{word-spacing:1.340053pt;}
.ws3_c00267{word-spacing:1.485547pt;}
.ws4_c00267{word-spacing:4.524800pt;}
.ws0_c00267{word-spacing:5.518613pt;}
._2_c00267{margin-left:-3.304000pt;}
._3_c00267{margin-left:-1.403200pt;}
._0_c00267{width:1.164267pt;}
._1_c00267{width:8.828640pt;}
.fs1_c00267{font-size:51.733333pt;}
.fs3_c00267{font-size:52.800000pt;}
.fs2_c00267{font-size:56.000000pt;}
.fs0_c00267{font-size:250.880000pt;}
.y0_c00267{bottom:0.000000pt;}
.y4_c00267{bottom:133.440000pt;}
.y6_c00267{bottom:149.434000pt;}
.y3_c00267{bottom:150.080000pt;}
.y2_c00267{bottom:166.080000pt;}
.y1_c00267{bottom:565.760000pt;}
.y5_c00267{bottom:608.642000pt;}
.h3_c00267{height:54.933594pt;}
.h5_c00267{height:54.960938pt;}
.h4_c00267{height:55.068750pt;}
.h2_c00267{height:167.086080pt;}
.h1_c00267{height:1122.666667pt;}
.h0_c00267{height:1122.880000pt;}
.w1_c00267{width:793.333333pt;}
.w0_c00267{width:793.600000pt;}
.x0_c00267{left:0.000000pt;}
.x3_c00267{left:106.653333pt;}
.x2_c00267{left:107.906667pt;}
.x1_c00267{left:260.493333pt;}
.x5_c00267{left:389.586667pt;}
.x4_c00267{left:613.280000pt;}
}





/* 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_c00268 {
    display:none;
  }
  .loading-indicator_c00268.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00268 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_c00268 { 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_c00268" -> "#page-container .classname_c00268")
 */
.pf_c00268 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00268 { /* 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_c00268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00268 { /* 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_c00268 { /* 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_c00268 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00268 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00268 {overflow:visible;}
  }
}
.c_c00268 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00268 { /* 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_c00268:after { /* webkit #35443 */
  content: '';
}
.t_c00268:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00268 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 */
}
.__c00268 { /* 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_c00268 { /* info for Javascript */
  display:none;
}
.l_c00268 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00268 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00268 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00268: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_c00268 {
    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_c00268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00268.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_c00268 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00268;src:url('chunks/assets/font_31c97b1658d47dceb604b076.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.284668;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_c00268;src:url('chunks/assets/font_178d870edc308636061239ef.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.284180;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_c00268;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;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:ff4_c00268;src:url('chunks/assets/font_08bd988497efe14d7ab4a111.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:0.666000;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;}
.mc_c00268{transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);}
.ma_c00268{transform:matrix(0.183865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183865,0.000000,0.000000,0.250000,0,0);}
.m9_c00268{transform:matrix(0.186418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186418,0.000000,0.000000,0.250000,0,0);}
.m5_c00268{transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);}
.m8_c00268{transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);}
.m3_c00268{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.md_c00268{transform:matrix(0.228064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228064,0.000000,0.000000,0.250000,0,0);}
.m2_c00268{transform:matrix(0.243704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243704,0.000000,0.000000,0.250000,0,0);}
.m6_c00268{transform:matrix(0.245888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245888,0.000000,0.000000,0.250000,0,0);}
.m7_c00268{transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);}
.m0_c00268{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m4_c00268{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.mb_c00268{transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{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);}
.v0_c00268{vertical-align:0.000000px;}
.ls85_c00268{letter-spacing:-2.688000px;}
.ls5b_c00268{letter-spacing:-2.394000px;}
.ls78_c00268{letter-spacing:-2.373000px;}
.ls54_c00268{letter-spacing:-2.352000px;}
.ls92_c00268{letter-spacing:-2.310000px;}
.ls56_c00268{letter-spacing:-2.209320px;}
.ls6b_c00268{letter-spacing:-2.168280px;}
.ls8d_c00268{letter-spacing:-2.134080px;}
.ls60_c00268{letter-spacing:-2.045160px;}
.ls7d_c00268{letter-spacing:-1.963080px;}
.ls91_c00268{letter-spacing:-1.819440px;}
.ls58_c00268{letter-spacing:-1.682640px;}
.ls61_c00268{letter-spacing:-1.586880px;}
.ls55_c00268{letter-spacing:-1.422720px;}
.ls7b_c00268{letter-spacing:-1.409040px;}
.ls8a_c00268{letter-spacing:-1.197000px;}
.ls5c_c00268{letter-spacing:-0.964440px;}
.ls64_c00268{letter-spacing:-0.957600px;}
.ls67_c00268{letter-spacing:-0.950760px;}
.ls6a_c00268{letter-spacing:-0.868680px;}
.ls5f_c00268{letter-spacing:-0.834480px;}
.ls7f_c00268{letter-spacing:-0.759240px;}
.ls6d_c00268{letter-spacing:-0.684000px;}
.ls79_c00268{letter-spacing:-0.663480px;}
.ls82_c00268{letter-spacing:-0.622440px;}
.ls6c_c00268{letter-spacing:-0.574560px;}
.ls69_c00268{letter-spacing:-0.533520px;}
.ls71_c00268{letter-spacing:-0.526680px;}
.ls7e_c00268{letter-spacing:-0.499320px;}
.ls7a_c00268{letter-spacing:-0.492480px;}
.ls5e_c00268{letter-spacing:-0.471960px;}
.ls81_c00268{letter-spacing:-0.458280px;}
.ls8c_c00268{letter-spacing:-0.403560px;}
.ls86_c00268{letter-spacing:-0.376200px;}
.ls63_c00268{letter-spacing:-0.355680px;}
.ls66_c00268{letter-spacing:-0.342000px;}
.ls77_c00268{letter-spacing:-0.239400px;}
.ls7c_c00268{letter-spacing:-0.232560px;}
.ls8b_c00268{letter-spacing:-0.225720px;}
.ls74_c00268{letter-spacing:-0.212040px;}
.ls88_c00268{letter-spacing:-0.198360px;}
.ls90_c00268{letter-spacing:-0.191520px;}
.ls72_c00268{letter-spacing:-0.184680px;}
.ls65_c00268{letter-spacing:-0.177840px;}
.ls76_c00268{letter-spacing:-0.171000px;}
.ls6e_c00268{letter-spacing:-0.164160px;}
.ls70_c00268{letter-spacing:-0.157320px;}
.ls5a_c00268{letter-spacing:-0.150480px;}
.ls5d_c00268{letter-spacing:-0.143640px;}
.ls8f_c00268{letter-spacing:-0.109440px;}
.ls57_c00268{letter-spacing:-0.102600px;}
.ls62_c00268{letter-spacing:-0.068400px;}
.ls68_c00268{letter-spacing:-0.054720px;}
.ls80_c00268{letter-spacing:-0.041040px;}
.ls8e_c00268{letter-spacing:-0.034200px;}
.ls6f_c00268{letter-spacing:-0.027360px;}
.ls73_c00268{letter-spacing:-0.013680px;}
.ls89_c00268{letter-spacing:-0.006840px;}
.ls59_c00268{letter-spacing:0.000000px;}
.ls8_c00268{letter-spacing:0.006840px;}
.ls43_c00268{letter-spacing:0.027360px;}
.ls31_c00268{letter-spacing:0.034200px;}
.ls3d_c00268{letter-spacing:0.041040px;}
.ls48_c00268{letter-spacing:0.068400px;}
.ls21_c00268{letter-spacing:0.075240px;}
.ls7_c00268{letter-spacing:0.095760px;}
.ls1a_c00268{letter-spacing:0.102600px;}
.ls36_c00268{letter-spacing:0.164160px;}
.ls75_c00268{letter-spacing:0.184680px;}
.ls3f_c00268{letter-spacing:0.212040px;}
.ls46_c00268{letter-spacing:0.225720px;}
.ls38_c00268{letter-spacing:0.239400px;}
.ls32_c00268{letter-spacing:0.246240px;}
.ls34_c00268{letter-spacing:0.253080px;}
.ls24_c00268{letter-spacing:0.266760px;}
.ls53_c00268{letter-spacing:0.273600px;}
.ls41_c00268{letter-spacing:0.280440px;}
.ls3b_c00268{letter-spacing:0.307800px;}
.ls40_c00268{letter-spacing:0.321480px;}
.ls45_c00268{letter-spacing:0.335160px;}
.ls33_c00268{letter-spacing:0.342000px;}
.ls29_c00268{letter-spacing:0.348840px;}
.ls3_c00268{letter-spacing:0.355680px;}
.lsa_c00268{letter-spacing:0.359340px;}
.ls2e_c00268{letter-spacing:0.362520px;}
.ls4c_c00268{letter-spacing:0.369360px;}
.ls4_c00268{letter-spacing:0.376200px;}
.ls14_c00268{letter-spacing:0.383040px;}
.ls3c_c00268{letter-spacing:0.393240px;}
.ls12_c00268{letter-spacing:0.396720px;}
.ls2c_c00268{letter-spacing:0.403560px;}
.ls18_c00268{letter-spacing:0.410400px;}
.ls84_c00268{letter-spacing:0.420360px;}
.lse_c00268{letter-spacing:0.424080px;}
.ls26_c00268{letter-spacing:0.451440px;}
.ls19_c00268{letter-spacing:0.458280px;}
.ls30_c00268{letter-spacing:0.465120px;}
.ls1b_c00268{letter-spacing:0.499320px;}
.ls1e_c00268{letter-spacing:0.501720px;}
.ls27_c00268{letter-spacing:0.506160px;}
.ls11_c00268{letter-spacing:0.519840px;}
.ls37_c00268{letter-spacing:0.540360px;}
.ls16_c00268{letter-spacing:0.554040px;}
.lsd_c00268{letter-spacing:0.555960px;}
.ls2a_c00268{letter-spacing:0.560880px;}
.ls13_c00268{letter-spacing:0.567720px;}
.ls4d_c00268{letter-spacing:0.583080px;}
.ls2f_c00268{letter-spacing:0.595080px;}
.ls4e_c00268{letter-spacing:0.603420px;}
.ls2b_c00268{letter-spacing:0.615600px;}
.ls4b_c00268{letter-spacing:0.649800px;}
.ls15_c00268{letter-spacing:0.677160px;}
.ls87_c00268{letter-spacing:0.684000px;}
.ls1f_c00268{letter-spacing:0.711360px;}
.ls83_c00268{letter-spacing:0.718200px;}
.ls4a_c00268{letter-spacing:0.725460px;}
.ls3a_c00268{letter-spacing:0.731880px;}
.ls25_c00268{letter-spacing:0.752400px;}
.lsb_c00268{letter-spacing:0.766140px;}
.ls5_c00268{letter-spacing:0.772920px;}
.ls49_c00268{letter-spacing:0.786600px;}
.ls2d_c00268{letter-spacing:0.855000px;}
.lsf_c00268{letter-spacing:0.894960px;}
.lsc_c00268{letter-spacing:0.908520px;}
.ls35_c00268{letter-spacing:0.937080px;}
.ls22_c00268{letter-spacing:0.950760px;}
.ls20_c00268{letter-spacing:0.964440px;}
.ls1c_c00268{letter-spacing:0.991800px;}
.ls39_c00268{letter-spacing:1.003440px;}
.ls28_c00268{letter-spacing:1.005480px;}
.ls42_c00268{letter-spacing:1.012320px;}
.ls1d_c00268{letter-spacing:1.017000px;}
.ls52_c00268{letter-spacing:1.026000px;}
.ls1_c00268{letter-spacing:1.242000px;}
.ls9_c00268{letter-spacing:1.251720px;}
.ls4f_c00268{letter-spacing:1.267860px;}
.ls50_c00268{letter-spacing:1.272240px;}
.ls17_c00268{letter-spacing:1.285920px;}
.ls0_c00268{letter-spacing:1.359300px;}
.ls2_c00268{letter-spacing:1.393800px;}
.ls51_c00268{letter-spacing:1.518480px;}
.ls3e_c00268{letter-spacing:1.613640px;}
.ls23_c00268{letter-spacing:1.648440px;}
.ls6_c00268{letter-spacing:1.976760px;}
.ls10_c00268{letter-spacing:2.086200px;}
.ls47_c00268{letter-spacing:2.236680px;}
.ls44_c00268{letter-spacing:2.715480px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{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__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00268{word-spacing:-1.317960px;}
.ws4_c00268{word-spacing:-1.136100px;}
.ws6_c00268{word-spacing:0.000000px;}
.ws0_c00268{word-spacing:9.026760px;}
.ws5_c00268{word-spacing:13.445580px;}
.ws3_c00268{word-spacing:22.133400px;}
.ws1_c00268{word-spacing:22.992120px;}
._1_c00268{margin-left:-8.694000px;}
._5_c00268{margin-left:-5.380440px;}
._a_c00268{margin-left:-2.987580px;}
._0_c00268{margin-left:-1.055700px;}
._d_c00268{width:1.094880px;}
._8_c00268{width:2.102280px;}
._3_c00268{width:3.591000px;}
._9_c00268{width:5.210520px;}
._12_c00268{width:6.350700px;}
._4_c00268{width:7.667640px;}
._2_c00268{width:9.789600px;}
._b_c00268{width:11.426520px;}
._c_c00268{width:13.197480px;}
._11_c00268{width:14.282160px;}
._7_c00268{width:16.236600px;}
._6_c00268{width:17.645640px;}
._e_c00268{width:19.526400px;}
._f_c00268{width:20.595240px;}
._10_c00268{width:24.829200px;}
.fc0_c00268{color:transparent;}
.fs5_c00268{font-size:51.840000px;}
.fs6_c00268{font-size:66.000000px;}
.fs0_c00268{font-size:67.200000px;}
.fs3_c00268{font-size:67.800000px;}
.fs2_c00268{font-size:68.400000px;}
.fs1_c00268{font-size:69.000000px;}
.fs4_c00268{font-size:76.800000px;}
.y0_c00268{bottom:0.000000px;}
.y20_c00268{bottom:67.695000px;}
.y1f_c00268{bottom:145.071900px;}
.y1e_c00268{bottom:176.040000px;}
.y1d_c00268{bottom:239.055000px;}
.y1c_c00268{bottom:301.695000px;}
.y1b_c00268{bottom:301.703100px;}
.y1a_c00268{bottom:332.295000px;}
.y19_c00268{bottom:393.848700px;}
.y18_c00268{bottom:425.535000px;}
.y16_c00268{bottom:487.796850px;}
.y17_c00268{bottom:487.800000px;}
.y15_c00268{bottom:550.800000px;}
.y14_c00268{bottom:550.807800px;}
.y12_c00268{bottom:582.127800px;}
.y13_c00268{bottom:582.135000px;}
.y10_c00268{bottom:613.449000px;}
.y11_c00268{bottom:613.455000px;}
.yf_c00268{bottom:644.400000px;}
.yd_c00268{bottom:676.086900px;}
.ye_c00268{bottom:676.095000px;}
.yc_c00268{bottom:707.055000px;}
.yb_c00268{bottom:769.680600px;}
.ya_c00268{bottom:801.007800px;}
.y9_c00268{bottom:832.335000px;}
.y8_c00268{bottom:894.975000px;}
.y7_c00268{bottom:926.280000px;}
.y6_c00268{bottom:988.567800px;}
.y4_c00268{bottom:1019.888700px;}
.y5_c00268{bottom:1019.895000px;}
.y3_c00268{bottom:1081.431600px;}
.y2_c00268{bottom:1113.135000px;}
.y1_c00268{bottom:1189.080000px;}
.ha_c00268{height:34.525440px;}
.hb_c00268{height:64.775391px;}
.h2_c00268{height:65.953125px;}
.h7_c00268{height:66.508887px;}
.h4_c00268{height:67.130859px;}
.h8_c00268{height:67.143459px;}
.h5_c00268{height:67.156059px;}
.h3_c00268{height:67.686035px;}
.h6_c00268{height:70.713281px;}
.h9_c00268{height:75.375000px;}
.h1_c00268{height:1263.000000px;}
.h0_c00268{height:1263.240000px;}
.w1_c00268{width:892.500000px;}
.w0_c00268{width:892.800000px;}
.x0_c00268{left:0.000000px;}
.x1_c00268{left:123.765000px;}
.x3_c00268{left:178.468500px;}
.x2_c00268{left:235.815000px;}
.x14_c00268{left:261.975000px;}
.x15_c00268{left:288.900000px;}
.xb_c00268{left:393.315000px;}
.xc_c00268{left:415.635000px;}
.x18_c00268{left:425.790000px;}
.x4_c00268{left:444.780000px;}
.x11_c00268{left:447.345000px;}
.x16_c00268{left:468.360000px;}
.x5_c00268{left:474.600000px;}
.x12_c00268{left:479.010000px;}
.x6_c00268{left:491.580000px;}
.x17_c00268{left:523.920000px;}
.x7_c00268{left:526.215000px;}
.xf_c00268{left:536.190000px;}
.x8_c00268{left:552.405000px;}
.x10_c00268{left:556.125000px;}
.xd_c00268{left:577.650000px;}
.x9_c00268{left:580.800000px;}
.xe_c00268{left:596.355000px;}
.x13_c00268{left:680.265000px;}
.xa_c00268{left:734.925000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls85_c00268{letter-spacing:-2.389333pt;}
.ls5b_c00268{letter-spacing:-2.128000pt;}
.ls78_c00268{letter-spacing:-2.109333pt;}
.ls54_c00268{letter-spacing:-2.090667pt;}
.ls92_c00268{letter-spacing:-2.053333pt;}
.ls56_c00268{letter-spacing:-1.963840pt;}
.ls6b_c00268{letter-spacing:-1.927360pt;}
.ls8d_c00268{letter-spacing:-1.896960pt;}
.ls60_c00268{letter-spacing:-1.817920pt;}
.ls7d_c00268{letter-spacing:-1.744960pt;}
.ls91_c00268{letter-spacing:-1.617280pt;}
.ls58_c00268{letter-spacing:-1.495680pt;}
.ls61_c00268{letter-spacing:-1.410560pt;}
.ls55_c00268{letter-spacing:-1.264640pt;}
.ls7b_c00268{letter-spacing:-1.252480pt;}
.ls8a_c00268{letter-spacing:-1.064000pt;}
.ls5c_c00268{letter-spacing:-0.857280pt;}
.ls64_c00268{letter-spacing:-0.851200pt;}
.ls67_c00268{letter-spacing:-0.845120pt;}
.ls6a_c00268{letter-spacing:-0.772160pt;}
.ls5f_c00268{letter-spacing:-0.741760pt;}
.ls7f_c00268{letter-spacing:-0.674880pt;}
.ls6d_c00268{letter-spacing:-0.608000pt;}
.ls79_c00268{letter-spacing:-0.589760pt;}
.ls82_c00268{letter-spacing:-0.553280pt;}
.ls6c_c00268{letter-spacing:-0.510720pt;}
.ls69_c00268{letter-spacing:-0.474240pt;}
.ls71_c00268{letter-spacing:-0.468160pt;}
.ls7e_c00268{letter-spacing:-0.443840pt;}
.ls7a_c00268{letter-spacing:-0.437760pt;}
.ls5e_c00268{letter-spacing:-0.419520pt;}
.ls81_c00268{letter-spacing:-0.407360pt;}
.ls8c_c00268{letter-spacing:-0.358720pt;}
.ls86_c00268{letter-spacing:-0.334400pt;}
.ls63_c00268{letter-spacing:-0.316160pt;}
.ls66_c00268{letter-spacing:-0.304000pt;}
.ls77_c00268{letter-spacing:-0.212800pt;}
.ls7c_c00268{letter-spacing:-0.206720pt;}
.ls8b_c00268{letter-spacing:-0.200640pt;}
.ls74_c00268{letter-spacing:-0.188480pt;}
.ls88_c00268{letter-spacing:-0.176320pt;}
.ls90_c00268{letter-spacing:-0.170240pt;}
.ls72_c00268{letter-spacing:-0.164160pt;}
.ls65_c00268{letter-spacing:-0.158080pt;}
.ls76_c00268{letter-spacing:-0.152000pt;}
.ls6e_c00268{letter-spacing:-0.145920pt;}
.ls70_c00268{letter-spacing:-0.139840pt;}
.ls5a_c00268{letter-spacing:-0.133760pt;}
.ls5d_c00268{letter-spacing:-0.127680pt;}
.ls8f_c00268{letter-spacing:-0.097280pt;}
.ls57_c00268{letter-spacing:-0.091200pt;}
.ls62_c00268{letter-spacing:-0.060800pt;}
.ls68_c00268{letter-spacing:-0.048640pt;}
.ls80_c00268{letter-spacing:-0.036480pt;}
.ls8e_c00268{letter-spacing:-0.030400pt;}
.ls6f_c00268{letter-spacing:-0.024320pt;}
.ls73_c00268{letter-spacing:-0.012160pt;}
.ls89_c00268{letter-spacing:-0.006080pt;}
.ls59_c00268{letter-spacing:0.000000pt;}
.ls8_c00268{letter-spacing:0.006080pt;}
.ls43_c00268{letter-spacing:0.024320pt;}
.ls31_c00268{letter-spacing:0.030400pt;}
.ls3d_c00268{letter-spacing:0.036480pt;}
.ls48_c00268{letter-spacing:0.060800pt;}
.ls21_c00268{letter-spacing:0.066880pt;}
.ls7_c00268{letter-spacing:0.085120pt;}
.ls1a_c00268{letter-spacing:0.091200pt;}
.ls36_c00268{letter-spacing:0.145920pt;}
.ls75_c00268{letter-spacing:0.164160pt;}
.ls3f_c00268{letter-spacing:0.188480pt;}
.ls46_c00268{letter-spacing:0.200640pt;}
.ls38_c00268{letter-spacing:0.212800pt;}
.ls32_c00268{letter-spacing:0.218880pt;}
.ls34_c00268{letter-spacing:0.224960pt;}
.ls24_c00268{letter-spacing:0.237120pt;}
.ls53_c00268{letter-spacing:0.243200pt;}
.ls41_c00268{letter-spacing:0.249280pt;}
.ls3b_c00268{letter-spacing:0.273600pt;}
.ls40_c00268{letter-spacing:0.285760pt;}
.ls45_c00268{letter-spacing:0.297920pt;}
.ls33_c00268{letter-spacing:0.304000pt;}
.ls29_c00268{letter-spacing:0.310080pt;}
.ls3_c00268{letter-spacing:0.316160pt;}
.lsa_c00268{letter-spacing:0.319413pt;}
.ls2e_c00268{letter-spacing:0.322240pt;}
.ls4c_c00268{letter-spacing:0.328320pt;}
.ls4_c00268{letter-spacing:0.334400pt;}
.ls14_c00268{letter-spacing:0.340480pt;}
.ls3c_c00268{letter-spacing:0.349547pt;}
.ls12_c00268{letter-spacing:0.352640pt;}
.ls2c_c00268{letter-spacing:0.358720pt;}
.ls18_c00268{letter-spacing:0.364800pt;}
.ls84_c00268{letter-spacing:0.373653pt;}
.lse_c00268{letter-spacing:0.376960pt;}
.ls26_c00268{letter-spacing:0.401280pt;}
.ls19_c00268{letter-spacing:0.407360pt;}
.ls30_c00268{letter-spacing:0.413440pt;}
.ls1b_c00268{letter-spacing:0.443840pt;}
.ls1e_c00268{letter-spacing:0.445973pt;}
.ls27_c00268{letter-spacing:0.449920pt;}
.ls11_c00268{letter-spacing:0.462080pt;}
.ls37_c00268{letter-spacing:0.480320pt;}
.ls16_c00268{letter-spacing:0.492480pt;}
.lsd_c00268{letter-spacing:0.494187pt;}
.ls2a_c00268{letter-spacing:0.498560pt;}
.ls13_c00268{letter-spacing:0.504640pt;}
.ls4d_c00268{letter-spacing:0.518293pt;}
.ls2f_c00268{letter-spacing:0.528960pt;}
.ls4e_c00268{letter-spacing:0.536373pt;}
.ls2b_c00268{letter-spacing:0.547200pt;}
.ls4b_c00268{letter-spacing:0.577600pt;}
.ls15_c00268{letter-spacing:0.601920pt;}
.ls87_c00268{letter-spacing:0.608000pt;}
.ls1f_c00268{letter-spacing:0.632320pt;}
.ls83_c00268{letter-spacing:0.638400pt;}
.ls4a_c00268{letter-spacing:0.644853pt;}
.ls3a_c00268{letter-spacing:0.650560pt;}
.ls25_c00268{letter-spacing:0.668800pt;}
.lsb_c00268{letter-spacing:0.681013pt;}
.ls5_c00268{letter-spacing:0.687040pt;}
.ls49_c00268{letter-spacing:0.699200pt;}
.ls2d_c00268{letter-spacing:0.760000pt;}
.lsf_c00268{letter-spacing:0.795520pt;}
.lsc_c00268{letter-spacing:0.807573pt;}
.ls35_c00268{letter-spacing:0.832960pt;}
.ls22_c00268{letter-spacing:0.845120pt;}
.ls20_c00268{letter-spacing:0.857280pt;}
.ls1c_c00268{letter-spacing:0.881600pt;}
.ls39_c00268{letter-spacing:0.891947pt;}
.ls28_c00268{letter-spacing:0.893760pt;}
.ls42_c00268{letter-spacing:0.899840pt;}
.ls1d_c00268{letter-spacing:0.904000pt;}
.ls52_c00268{letter-spacing:0.912000pt;}
.ls1_c00268{letter-spacing:1.104000pt;}
.ls9_c00268{letter-spacing:1.112640pt;}
.ls4f_c00268{letter-spacing:1.126987pt;}
.ls50_c00268{letter-spacing:1.130880pt;}
.ls17_c00268{letter-spacing:1.143040pt;}
.ls0_c00268{letter-spacing:1.208267pt;}
.ls2_c00268{letter-spacing:1.238933pt;}
.ls51_c00268{letter-spacing:1.349760pt;}
.ls3e_c00268{letter-spacing:1.434347pt;}
.ls23_c00268{letter-spacing:1.465280pt;}
.ls6_c00268{letter-spacing:1.757120pt;}
.ls10_c00268{letter-spacing:1.854400pt;}
.ls47_c00268{letter-spacing:1.988160pt;}
.ls44_c00268{letter-spacing:2.413760pt;}
.ws2_c00268{word-spacing:-1.171520pt;}
.ws4_c00268{word-spacing:-1.009867pt;}
.ws6_c00268{word-spacing:0.000000pt;}
.ws0_c00268{word-spacing:8.023787pt;}
.ws5_c00268{word-spacing:11.951627pt;}
.ws3_c00268{word-spacing:19.674133pt;}
.ws1_c00268{word-spacing:20.437440pt;}
._1_c00268{margin-left:-7.728000pt;}
._5_c00268{margin-left:-4.782613pt;}
._a_c00268{margin-left:-2.655627pt;}
._0_c00268{margin-left:-0.938400pt;}
._d_c00268{width:0.973227pt;}
._8_c00268{width:1.868693pt;}
._3_c00268{width:3.192000pt;}
._9_c00268{width:4.631573pt;}
._12_c00268{width:5.645067pt;}
._4_c00268{width:6.815680pt;}
._2_c00268{width:8.701867pt;}
._b_c00268{width:10.156907pt;}
._c_c00268{width:11.731093pt;}
._11_c00268{width:12.695253pt;}
._7_c00268{width:14.432533pt;}
._6_c00268{width:15.685013pt;}
._e_c00268{width:17.356800pt;}
._f_c00268{width:18.306880pt;}
._10_c00268{width:22.070400pt;}
.fs5_c00268{font-size:46.080000pt;}
.fs6_c00268{font-size:58.666667pt;}
.fs0_c00268{font-size:59.733333pt;}
.fs3_c00268{font-size:60.266667pt;}
.fs2_c00268{font-size:60.800000pt;}
.fs1_c00268{font-size:61.333333pt;}
.fs4_c00268{font-size:68.266667pt;}
.y0_c00268{bottom:0.000000pt;}
.y20_c00268{bottom:60.173333pt;}
.y1f_c00268{bottom:128.952800pt;}
.y1e_c00268{bottom:156.480000pt;}
.y1d_c00268{bottom:212.493333pt;}
.y1c_c00268{bottom:268.173333pt;}
.y1b_c00268{bottom:268.180533pt;}
.y1a_c00268{bottom:295.373333pt;}
.y19_c00268{bottom:350.087733pt;}
.y18_c00268{bottom:378.253333pt;}
.y16_c00268{bottom:433.597200pt;}
.y17_c00268{bottom:433.600000pt;}
.y15_c00268{bottom:489.600000pt;}
.y14_c00268{bottom:489.606933pt;}
.y12_c00268{bottom:517.446933pt;}
.y13_c00268{bottom:517.453333pt;}
.y10_c00268{bottom:545.288000pt;}
.y11_c00268{bottom:545.293333pt;}
.yf_c00268{bottom:572.800000pt;}
.yd_c00268{bottom:600.966133pt;}
.ye_c00268{bottom:600.973333pt;}
.yc_c00268{bottom:628.493333pt;}
.yb_c00268{bottom:684.160533pt;}
.ya_c00268{bottom:712.006933pt;}
.y9_c00268{bottom:739.853333pt;}
.y8_c00268{bottom:795.533333pt;}
.y7_c00268{bottom:823.360000pt;}
.y6_c00268{bottom:878.726933pt;}
.y4_c00268{bottom:906.567733pt;}
.y5_c00268{bottom:906.573333pt;}
.y3_c00268{bottom:961.272533pt;}
.y2_c00268{bottom:989.453333pt;}
.y1_c00268{bottom:1056.960000pt;}
.ha_c00268{height:30.689280pt;}
.hb_c00268{height:57.578125pt;}
.h2_c00268{height:58.625000pt;}
.h7_c00268{height:59.119010pt;}
.h4_c00268{height:59.671875pt;}
.h8_c00268{height:59.683075pt;}
.h5_c00268{height:59.694275pt;}
.h3_c00268{height:60.165365pt;}
.h6_c00268{height:62.856250pt;}
.h9_c00268{height:67.000000pt;}
.h1_c00268{height:1122.666667pt;}
.h0_c00268{height:1122.880000pt;}
.w1_c00268{width:793.333333pt;}
.w0_c00268{width:793.600000pt;}
.x0_c00268{left:0.000000pt;}
.x1_c00268{left:110.013333pt;}
.x3_c00268{left:158.638667pt;}
.x2_c00268{left:209.613333pt;}
.x14_c00268{left:232.866667pt;}
.x15_c00268{left:256.800000pt;}
.xb_c00268{left:349.613333pt;}
.xc_c00268{left:369.453333pt;}
.x18_c00268{left:378.480000pt;}
.x4_c00268{left:395.360000pt;}
.x11_c00268{left:397.640000pt;}
.x16_c00268{left:416.320000pt;}
.x5_c00268{left:421.866667pt;}
.x12_c00268{left:425.786667pt;}
.x6_c00268{left:436.960000pt;}
.x17_c00268{left:465.706667pt;}
.x7_c00268{left:467.746667pt;}
.xf_c00268{left:476.613333pt;}
.x8_c00268{left:491.026667pt;}
.x10_c00268{left:494.333333pt;}
.xd_c00268{left:513.466667pt;}
.x9_c00268{left:516.266667pt;}
.xe_c00268{left:530.093333pt;}
.x13_c00268{left:604.680000pt;}
.xa_c00268{left:653.266667pt;}
}





/* 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_c00269 {
    display:none;
  }
  .loading-indicator_c00269.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00269 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_c00269 { 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_c00269" -> "#page-container .classname_c00269")
 */
.pf_c00269 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00269 { /* 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_c00269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00269 { /* 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_c00269 { /* 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_c00269 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00269 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00269 {overflow:visible;}
  }
}
.c_c00269 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00269 { /* 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_c00269:after { /* webkit #35443 */
  content: '';
}
.t_c00269:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00269 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 */
}
.__c00269 { /* 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_c00269 { /* info for Javascript */
  display:none;
}
.l_c00269 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00269 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00269 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00269: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_c00269 {
    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_c00269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00269.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_c00269 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00269;src:url('chunks/assets/font_ee757f9008e171f740333d1d.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.284668;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_c00269;src:url('chunks/assets/font_7c4f85d1559ee2814650e15e.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.284180;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_c00269;src:url('chunks/assets/font_ecc24d7946b2b730982daff1.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:0.666000;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_c00269;src:url('chunks/assets/font_02523b5e893ca7c1802e159b.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;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;}
.ma_c00269{transform:matrix(0.120370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120370,0.000000,0.000000,0.250000,0,0);}
.m9_c00269{transform:matrix(0.160321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160321,0.000000,0.000000,0.250000,0,0);}
.mf_c00269{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m7_c00269{transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);}
.m5_c00269{transform:matrix(0.226838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226838,0.000000,0.000000,0.250000,0,0);}
.mc_c00269{transform:matrix(0.232768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232768,0.000000,0.000000,0.250000,0,0);}
.m8_c00269{transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);}
.m4_c00269{transform:matrix(0.237487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237487,0.000000,0.000000,0.250000,0,0);}
.me_c00269{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m0_c00269{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m6_c00269{transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);}
.m3_c00269{transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);}
.m1_c00269{transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);}
.m2_c00269{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);}
.md_c00269{transform:matrix(0.256930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256930,0.000000,0.000000,0.250000,0,0);}
.mb_c00269{transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls76_c00269{letter-spacing:-2.688000px;}
.ls79_c00269{letter-spacing:-2.394000px;}
.lsa9_c00269{letter-spacing:-2.373000px;}
.ls75_c00269{letter-spacing:-2.352000px;}
.ls77_c00269{letter-spacing:-2.265600px;}
.ls7b_c00269{letter-spacing:-2.168280px;}
.ls8e_c00269{letter-spacing:-2.099880px;}
.ls82_c00269{letter-spacing:-1.928880px;}
.lsa2_c00269{letter-spacing:-1.915200px;}
.ls88_c00269{letter-spacing:-1.771560px;}
.ls83_c00269{letter-spacing:-1.682640px;}
.ls98_c00269{letter-spacing:-1.662120px;}
.lsa1_c00269{letter-spacing:-1.456920px;}
.ls8b_c00269{letter-spacing:-1.422720px;}
.ls8a_c00269{letter-spacing:-1.272240px;}
.lsa0_c00269{letter-spacing:-1.197000px;}
.ls78_c00269{letter-spacing:-1.101240px;}
.ls89_c00269{letter-spacing:-1.046520px;}
.ls7d_c00269{letter-spacing:-1.032840px;}
.ls81_c00269{letter-spacing:-0.868680px;}
.ls7c_c00269{letter-spacing:-0.861840px;}
.ls84_c00269{letter-spacing:-0.745560px;}
.ls93_c00269{letter-spacing:-0.684000px;}
.ls7a_c00269{letter-spacing:-0.677160px;}
.ls9f_c00269{letter-spacing:-0.663480px;}
.ls95_c00269{letter-spacing:-0.649800px;}
.ls7e_c00269{letter-spacing:-0.540360px;}
.ls87_c00269{letter-spacing:-0.533520px;}
.ls94_c00269{letter-spacing:-0.526680px;}
.ls99_c00269{letter-spacing:-0.478800px;}
.ls92_c00269{letter-spacing:-0.458280px;}
.lsa5_c00269{letter-spacing:-0.430920px;}
.lsac_c00269{letter-spacing:-0.376200px;}
.ls8f_c00269{letter-spacing:-0.348840px;}
.lsa4_c00269{letter-spacing:-0.225720px;}
.ls7f_c00269{letter-spacing:-0.184680px;}
.ls8d_c00269{letter-spacing:-0.150480px;}
.ls97_c00269{letter-spacing:-0.143640px;}
.ls85_c00269{letter-spacing:-0.109440px;}
.lsa8_c00269{letter-spacing:-0.102600px;}
.lsa7_c00269{letter-spacing:-0.095760px;}
.lsab_c00269{letter-spacing:-0.088920px;}
.ls9e_c00269{letter-spacing:-0.061560px;}
.ls9b_c00269{letter-spacing:-0.054720px;}
.ls80_c00269{letter-spacing:0.000000px;}
.ls4_c00269{letter-spacing:0.006840px;}
.ls31_c00269{letter-spacing:0.061020px;}
.ls25_c00269{letter-spacing:0.075240px;}
.lsae_c00269{letter-spacing:0.098940px;}
.ls60_c00269{letter-spacing:0.109440px;}
.ls21_c00269{letter-spacing:0.136800px;}
.lsaa_c00269{letter-spacing:0.164160px;}
.ls27_c00269{letter-spacing:0.177840px;}
.ls4c_c00269{letter-spacing:0.184680px;}
.ls5c_c00269{letter-spacing:0.191520px;}
.ls58_c00269{letter-spacing:0.205200px;}
.ls6e_c00269{letter-spacing:0.218880px;}
.lsd_c00269{letter-spacing:0.246240px;}
.ls38_c00269{letter-spacing:0.284760px;}
.ls36_c00269{letter-spacing:0.294120px;}
.ls47_c00269{letter-spacing:0.300960px;}
.ls50_c00269{letter-spacing:0.321480px;}
.lsa_c00269{letter-spacing:0.335160px;}
.ls1c_c00269{letter-spacing:0.342000px;}
.ls63_c00269{letter-spacing:0.362520px;}
.ls23_c00269{letter-spacing:0.369360px;}
.ls1_c00269{letter-spacing:0.376200px;}
.ls49_c00269{letter-spacing:0.403560px;}
.ls35_c00269{letter-spacing:0.410400px;}
.lsad_c00269{letter-spacing:0.424080px;}
.ls86_c00269{letter-spacing:0.427140px;}
.ls16_c00269{letter-spacing:0.437760px;}
.ls1e_c00269{letter-spacing:0.451440px;}
.ls0_c00269{letter-spacing:0.471960px;}
.ls7_c00269{letter-spacing:0.485640px;}
.ls61_c00269{letter-spacing:0.492480px;}
.ls2f_c00269{letter-spacing:0.499320px;}
.ls3f_c00269{letter-spacing:0.506160px;}
.ls12_c00269{letter-spacing:0.513000px;}
.ls6a_c00269{letter-spacing:0.522060px;}
.ls56_c00269{letter-spacing:0.526680px;}
.ls3c_c00269{letter-spacing:0.533520px;}
.ls4e_c00269{letter-spacing:0.547200px;}
.ls29_c00269{letter-spacing:0.554040px;}
.ls6_c00269{letter-spacing:0.574560px;}
.ls4b_c00269{letter-spacing:0.581400px;}
.ls6c_c00269{letter-spacing:0.583080px;}
.ls14_c00269{letter-spacing:0.588240px;}
.ls44_c00269{letter-spacing:0.595080px;}
.ls59_c00269{letter-spacing:0.601920px;}
.ls37_c00269{letter-spacing:0.608760px;}
.ls20_c00269{letter-spacing:0.622440px;}
.ls91_c00269{letter-spacing:0.636120px;}
.ls2c_c00269{letter-spacing:0.649800px;}
.ls13_c00269{letter-spacing:0.656640px;}
.ls90_c00269{letter-spacing:0.663480px;}
.ls24_c00269{letter-spacing:0.677160px;}
.ls2e_c00269{letter-spacing:0.690840px;}
.ls64_c00269{letter-spacing:0.697680px;}
.ls55_c00269{letter-spacing:0.704520px;}
.ls71_c00269{letter-spacing:0.711360px;}
.ls62_c00269{letter-spacing:0.718200px;}
.ls5a_c00269{letter-spacing:0.725040px;}
.ls53_c00269{letter-spacing:0.731880px;}
.ls33_c00269{letter-spacing:0.739020px;}
.ls1a_c00269{letter-spacing:0.752400px;}
.ls6d_c00269{letter-spacing:0.766140px;}
.lsb_c00269{letter-spacing:0.772920px;}
.ls8_c00269{letter-spacing:0.779760px;}
.ls30_c00269{letter-spacing:0.786600px;}
.ls6b_c00269{letter-spacing:0.793440px;}
.ls96_c00269{letter-spacing:0.800280px;}
.ls68_c00269{letter-spacing:0.807120px;}
.ls3e_c00269{letter-spacing:0.813960px;}
.ls9d_c00269{letter-spacing:0.827640px;}
.ls15_c00269{letter-spacing:0.834480px;}
.ls1d_c00269{letter-spacing:0.841320px;}
.ls43_c00269{letter-spacing:0.848160px;}
.ls51_c00269{letter-spacing:0.854280px;}
.ls41_c00269{letter-spacing:0.855000px;}
.ls48_c00269{letter-spacing:0.861840px;}
.ls5e_c00269{letter-spacing:0.889200px;}
.ls26_c00269{letter-spacing:0.916560px;}
.ls69_c00269{letter-spacing:0.930240px;}
.ls54_c00269{letter-spacing:0.935640px;}
.ls5f_c00269{letter-spacing:0.950760px;}
.ls9a_c00269{letter-spacing:0.962760px;}
.ls10_c00269{letter-spacing:0.964440px;}
.lsc_c00269{letter-spacing:1.003440px;}
.ls2_c00269{letter-spacing:1.012320px;}
.ls3d_c00269{letter-spacing:1.046520px;}
.ls66_c00269{letter-spacing:1.053360px;}
.ls74_c00269{letter-spacing:1.060200px;}
.ls57_c00269{letter-spacing:1.067040px;}
.ls70_c00269{letter-spacing:1.087560px;}
.ls65_c00269{letter-spacing:1.101240px;}
.ls11_c00269{letter-spacing:1.139040px;}
.lsf_c00269{letter-spacing:1.145820px;}
.ls1b_c00269{letter-spacing:1.149120px;}
.lse_c00269{letter-spacing:1.155960px;}
.ls5d_c00269{letter-spacing:1.176480px;}
.ls4d_c00269{letter-spacing:1.238040px;}
.ls3b_c00269{letter-spacing:1.251720px;}
.ls40_c00269{letter-spacing:1.285920px;}
.ls73_c00269{letter-spacing:1.333800px;}
.ls52_c00269{letter-spacing:1.362780px;}
.ls1f_c00269{letter-spacing:1.395360px;}
.ls72_c00269{letter-spacing:1.402200px;}
.ls46_c00269{letter-spacing:1.422720px;}
.ls5_c00269{letter-spacing:1.450080px;}
.ls67_c00269{letter-spacing:1.504800px;}
.ls9_c00269{letter-spacing:1.511640px;}
.ls39_c00269{letter-spacing:1.545840px;}
.ls32_c00269{letter-spacing:1.552620px;}
.ls3a_c00269{letter-spacing:1.566180px;}
.ls45_c00269{letter-spacing:1.600080px;}
.ls18_c00269{letter-spacing:1.634760px;}
.ls19_c00269{letter-spacing:1.648440px;}
.lsa6_c00269{letter-spacing:1.682640px;}
.ls34_c00269{letter-spacing:1.710000px;}
.ls5b_c00269{letter-spacing:1.716840px;}
.ls17_c00269{letter-spacing:1.737360px;}
.ls3_c00269{letter-spacing:1.757880px;}
.ls42_c00269{letter-spacing:1.792080px;}
.ls6f_c00269{letter-spacing:1.826280px;}
.ls2d_c00269{letter-spacing:2.004120px;}
.ls22_c00269{letter-spacing:2.017800px;}
.ls8c_c00269{letter-spacing:2.088240px;}
.ls4f_c00269{letter-spacing:2.352960px;}
.ls9c_c00269{letter-spacing:2.460000px;}
.ls4a_c00269{letter-spacing:2.715480px;}
.ls2b_c00269{letter-spacing:2.941200px;}
.ls2a_c00269{letter-spacing:2.961720px;}
.ls28_c00269{letter-spacing:3.091680px;}
.lsa3_c00269{letter-spacing:3.420000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{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__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00269{word-spacing:-2.031120px;}
.ws5_c00269{word-spacing:0.000000px;}
.ws4_c00269{word-spacing:0.460260px;}
.ws0_c00269{word-spacing:5.189640px;}
.ws3_c00269{word-spacing:15.449400px;}
.ws1_c00269{word-spacing:25.459320px;}
._11_c00269{margin-left:-13.762080px;}
._7_c00269{margin-left:-12.517200px;}
._12_c00269{margin-left:-6.498000px;}
._19_c00269{margin-left:-5.145600px;}
._9_c00269{margin-left:-4.122720px;}
._4_c00269{margin-left:-2.626560px;}
._c_c00269{margin-left:-1.443240px;}
._0_c00269{width:1.862400px;}
._1_c00269{width:3.378960px;}
._5_c00269{width:4.809480px;}
._3_c00269{width:6.881040px;}
._b_c00269{width:7.914000px;}
._8_c00269{width:9.439200px;}
._a_c00269{width:11.042280px;}
._18_c00269{width:12.131640px;}
._17_c00269{width:13.189200px;}
._16_c00269{width:14.423040px;}
._2_c00269{width:15.955800px;}
._1a_c00269{width:17.418120px;}
._6_c00269{width:19.812240px;}
._e_c00269{width:21.703320px;}
._13_c00269{width:22.780800px;}
._d_c00269{width:23.907720px;}
._f_c00269{width:25.833720px;}
._10_c00269{width:27.627960px;}
._14_c00269{width:29.963520px;}
._15_c00269{width:32.706720px;}
.fc0_c00269{color:transparent;}
.fs6_c00269{font-size:49.200000px;}
.fs5_c00269{font-size:51.840000px;}
.fs4_c00269{font-size:53.280000px;}
.fs7_c00269{font-size:58.200000px;}
.fs0_c00269{font-size:67.200000px;}
.fs3_c00269{font-size:67.800000px;}
.fs2_c00269{font-size:68.400000px;}
.fs1_c00269{font-size:76.800000px;}
.y0_c00269{bottom:0.000000px;}
.y1e_c00269{bottom:70.575000px;}
.y1d_c00269{bottom:147.232800px;}
.y1c_c00269{bottom:178.560000px;}
.y1b_c00269{bottom:241.200000px;}
.y19_c00269{bottom:303.488700px;}
.y1a_c00269{bottom:303.495000px;}
.y17_c00269{bottom:335.170500px;}
.y18_c00269{bottom:335.175000px;}
.y16_c00269{bottom:366.497700px;}
.y15_c00269{bottom:397.807800px;}
.y14_c00269{bottom:429.135000px;}
.y13_c00269{bottom:491.055000px;}
.y12_c00269{bottom:554.058600px;}
.y11_c00269{bottom:585.727800px;}
.y10_c00269{bottom:617.047800px;}
.yf_c00269{bottom:648.375000px;}
.ye_c00269{bottom:679.695000px;}
.yd_c00269{bottom:742.311600px;}
.yc_c00269{bottom:774.000600px;}
.yb_c00269{bottom:805.327800px;}
.ya_c00269{bottom:836.655000px;}
.y9_c00269{bottom:899.280000px;}
.y8_c00269{bottom:930.600000px;}
.y6_c00269{bottom:993.231900px;}
.y7_c00269{bottom:993.240000px;}
.y5_c00269{bottom:1024.200000px;}
.y4_c00269{bottom:1024.203600px;}
.y3_c00269{bottom:1087.200000px;}
.y2_c00269{bottom:1118.535000px;}
.y1_c00269{bottom:1195.200000px;}
.h9_c00269{height:34.525440px;}
.h6_c00269{height:35.484480px;}
.hb_c00269{height:51.314062px;}
.hd_c00269{height:57.120117px;}
.h2_c00269{height:65.953125px;}
.h5_c00269{height:66.508887px;}
.h4_c00269{height:67.130859px;}
.ha_c00269{height:67.159659px;}
.h8_c00269{height:67.164459px;}
.h7_c00269{height:67.188459px;}
.hc_c00269{height:70.713281px;}
.h3_c00269{height:75.337500px;}
.h1_c00269{height:1263.000000px;}
.h0_c00269{height:1263.240000px;}
.w1_c00269{width:892.500000px;}
.w0_c00269{width:892.800000px;}
.x0_c00269{left:0.000000px;}
.x14_c00269{left:118.290000px;}
.x12_c00269{left:120.201900px;}
.x1_c00269{left:124.845000px;}
.x1a_c00269{left:173.295000px;}
.x13_c00269{left:174.405000px;}
.xe_c00269{left:176.070000px;}
.x5_c00269{left:177.390000px;}
.x1b_c00269{left:180.615000px;}
.x1c_c00269{left:205.770000px;}
.x2_c00269{left:267.465000px;}
.xa_c00269{left:291.930000px;}
.xb_c00269{left:322.485000px;}
.x3_c00269{left:339.750000px;}
.x8_c00269{left:379.980000px;}
.x9_c00269{left:397.350000px;}
.x20_c00269{left:422.550000px;}
.x1e_c00269{left:428.775000px;}
.x17_c00269{left:445.320000px;}
.x18_c00269{left:477.570000px;}
.x15_c00269{left:486.015000px;}
.x1f_c00269{left:503.250000px;}
.xf_c00269{left:507.750000px;}
.x16_c00269{left:509.235000px;}
.x10_c00269{left:523.110000px;}
.x1d_c00269{left:564.960000px;}
.x4_c00269{left:577.215000px;}
.x11_c00269{left:597.255000px;}
.xc_c00269{left:610.350000px;}
.xd_c00269{left:626.565000px;}
.x19_c00269{left:681.690000px;}
.x6_c00269{left:698.175000px;}
.x7_c00269{left:719.595000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls76_c00269{letter-spacing:-2.389333pt;}
.ls79_c00269{letter-spacing:-2.128000pt;}
.lsa9_c00269{letter-spacing:-2.109333pt;}
.ls75_c00269{letter-spacing:-2.090667pt;}
.ls77_c00269{letter-spacing:-2.013867pt;}
.ls7b_c00269{letter-spacing:-1.927360pt;}
.ls8e_c00269{letter-spacing:-1.866560pt;}
.ls82_c00269{letter-spacing:-1.714560pt;}
.lsa2_c00269{letter-spacing:-1.702400pt;}
.ls88_c00269{letter-spacing:-1.574720pt;}
.ls83_c00269{letter-spacing:-1.495680pt;}
.ls98_c00269{letter-spacing:-1.477440pt;}
.lsa1_c00269{letter-spacing:-1.295040pt;}
.ls8b_c00269{letter-spacing:-1.264640pt;}
.ls8a_c00269{letter-spacing:-1.130880pt;}
.lsa0_c00269{letter-spacing:-1.064000pt;}
.ls78_c00269{letter-spacing:-0.978880pt;}
.ls89_c00269{letter-spacing:-0.930240pt;}
.ls7d_c00269{letter-spacing:-0.918080pt;}
.ls81_c00269{letter-spacing:-0.772160pt;}
.ls7c_c00269{letter-spacing:-0.766080pt;}
.ls84_c00269{letter-spacing:-0.662720pt;}
.ls93_c00269{letter-spacing:-0.608000pt;}
.ls7a_c00269{letter-spacing:-0.601920pt;}
.ls9f_c00269{letter-spacing:-0.589760pt;}
.ls95_c00269{letter-spacing:-0.577600pt;}
.ls7e_c00269{letter-spacing:-0.480320pt;}
.ls87_c00269{letter-spacing:-0.474240pt;}
.ls94_c00269{letter-spacing:-0.468160pt;}
.ls99_c00269{letter-spacing:-0.425600pt;}
.ls92_c00269{letter-spacing:-0.407360pt;}
.lsa5_c00269{letter-spacing:-0.383040pt;}
.lsac_c00269{letter-spacing:-0.334400pt;}
.ls8f_c00269{letter-spacing:-0.310080pt;}
.lsa4_c00269{letter-spacing:-0.200640pt;}
.ls7f_c00269{letter-spacing:-0.164160pt;}
.ls8d_c00269{letter-spacing:-0.133760pt;}
.ls97_c00269{letter-spacing:-0.127680pt;}
.ls85_c00269{letter-spacing:-0.097280pt;}
.lsa8_c00269{letter-spacing:-0.091200pt;}
.lsa7_c00269{letter-spacing:-0.085120pt;}
.lsab_c00269{letter-spacing:-0.079040pt;}
.ls9e_c00269{letter-spacing:-0.054720pt;}
.ls9b_c00269{letter-spacing:-0.048640pt;}
.ls80_c00269{letter-spacing:0.000000pt;}
.ls4_c00269{letter-spacing:0.006080pt;}
.ls31_c00269{letter-spacing:0.054240pt;}
.ls25_c00269{letter-spacing:0.066880pt;}
.lsae_c00269{letter-spacing:0.087947pt;}
.ls60_c00269{letter-spacing:0.097280pt;}
.ls21_c00269{letter-spacing:0.121600pt;}
.lsaa_c00269{letter-spacing:0.145920pt;}
.ls27_c00269{letter-spacing:0.158080pt;}
.ls4c_c00269{letter-spacing:0.164160pt;}
.ls5c_c00269{letter-spacing:0.170240pt;}
.ls58_c00269{letter-spacing:0.182400pt;}
.ls6e_c00269{letter-spacing:0.194560pt;}
.lsd_c00269{letter-spacing:0.218880pt;}
.ls38_c00269{letter-spacing:0.253120pt;}
.ls36_c00269{letter-spacing:0.261440pt;}
.ls47_c00269{letter-spacing:0.267520pt;}
.ls50_c00269{letter-spacing:0.285760pt;}
.lsa_c00269{letter-spacing:0.297920pt;}
.ls1c_c00269{letter-spacing:0.304000pt;}
.ls63_c00269{letter-spacing:0.322240pt;}
.ls23_c00269{letter-spacing:0.328320pt;}
.ls1_c00269{letter-spacing:0.334400pt;}
.ls49_c00269{letter-spacing:0.358720pt;}
.ls35_c00269{letter-spacing:0.364800pt;}
.lsad_c00269{letter-spacing:0.376960pt;}
.ls86_c00269{letter-spacing:0.379680pt;}
.ls16_c00269{letter-spacing:0.389120pt;}
.ls1e_c00269{letter-spacing:0.401280pt;}
.ls0_c00269{letter-spacing:0.419520pt;}
.ls7_c00269{letter-spacing:0.431680pt;}
.ls61_c00269{letter-spacing:0.437760pt;}
.ls2f_c00269{letter-spacing:0.443840pt;}
.ls3f_c00269{letter-spacing:0.449920pt;}
.ls12_c00269{letter-spacing:0.456000pt;}
.ls6a_c00269{letter-spacing:0.464053pt;}
.ls56_c00269{letter-spacing:0.468160pt;}
.ls3c_c00269{letter-spacing:0.474240pt;}
.ls4e_c00269{letter-spacing:0.486400pt;}
.ls29_c00269{letter-spacing:0.492480pt;}
.ls6_c00269{letter-spacing:0.510720pt;}
.ls4b_c00269{letter-spacing:0.516800pt;}
.ls6c_c00269{letter-spacing:0.518293pt;}
.ls14_c00269{letter-spacing:0.522880pt;}
.ls44_c00269{letter-spacing:0.528960pt;}
.ls59_c00269{letter-spacing:0.535040pt;}
.ls37_c00269{letter-spacing:0.541120pt;}
.ls20_c00269{letter-spacing:0.553280pt;}
.ls91_c00269{letter-spacing:0.565440pt;}
.ls2c_c00269{letter-spacing:0.577600pt;}
.ls13_c00269{letter-spacing:0.583680pt;}
.ls90_c00269{letter-spacing:0.589760pt;}
.ls24_c00269{letter-spacing:0.601920pt;}
.ls2e_c00269{letter-spacing:0.614080pt;}
.ls64_c00269{letter-spacing:0.620160pt;}
.ls55_c00269{letter-spacing:0.626240pt;}
.ls71_c00269{letter-spacing:0.632320pt;}
.ls62_c00269{letter-spacing:0.638400pt;}
.ls5a_c00269{letter-spacing:0.644480pt;}
.ls53_c00269{letter-spacing:0.650560pt;}
.ls33_c00269{letter-spacing:0.656907pt;}
.ls1a_c00269{letter-spacing:0.668800pt;}
.ls6d_c00269{letter-spacing:0.681013pt;}
.lsb_c00269{letter-spacing:0.687040pt;}
.ls8_c00269{letter-spacing:0.693120pt;}
.ls30_c00269{letter-spacing:0.699200pt;}
.ls6b_c00269{letter-spacing:0.705280pt;}
.ls96_c00269{letter-spacing:0.711360pt;}
.ls68_c00269{letter-spacing:0.717440pt;}
.ls3e_c00269{letter-spacing:0.723520pt;}
.ls9d_c00269{letter-spacing:0.735680pt;}
.ls15_c00269{letter-spacing:0.741760pt;}
.ls1d_c00269{letter-spacing:0.747840pt;}
.ls43_c00269{letter-spacing:0.753920pt;}
.ls51_c00269{letter-spacing:0.759360pt;}
.ls41_c00269{letter-spacing:0.760000pt;}
.ls48_c00269{letter-spacing:0.766080pt;}
.ls5e_c00269{letter-spacing:0.790400pt;}
.ls26_c00269{letter-spacing:0.814720pt;}
.ls69_c00269{letter-spacing:0.826880pt;}
.ls54_c00269{letter-spacing:0.831680pt;}
.ls5f_c00269{letter-spacing:0.845120pt;}
.ls9a_c00269{letter-spacing:0.855787pt;}
.ls10_c00269{letter-spacing:0.857280pt;}
.lsc_c00269{letter-spacing:0.891947pt;}
.ls2_c00269{letter-spacing:0.899840pt;}
.ls3d_c00269{letter-spacing:0.930240pt;}
.ls66_c00269{letter-spacing:0.936320pt;}
.ls74_c00269{letter-spacing:0.942400pt;}
.ls57_c00269{letter-spacing:0.948480pt;}
.ls70_c00269{letter-spacing:0.966720pt;}
.ls65_c00269{letter-spacing:0.978880pt;}
.ls11_c00269{letter-spacing:1.012480pt;}
.lsf_c00269{letter-spacing:1.018507pt;}
.ls1b_c00269{letter-spacing:1.021440pt;}
.lse_c00269{letter-spacing:1.027520pt;}
.ls5d_c00269{letter-spacing:1.045760pt;}
.ls4d_c00269{letter-spacing:1.100480pt;}
.ls3b_c00269{letter-spacing:1.112640pt;}
.ls40_c00269{letter-spacing:1.143040pt;}
.ls73_c00269{letter-spacing:1.185600pt;}
.ls52_c00269{letter-spacing:1.211360pt;}
.ls1f_c00269{letter-spacing:1.240320pt;}
.ls72_c00269{letter-spacing:1.246400pt;}
.ls46_c00269{letter-spacing:1.264640pt;}
.ls5_c00269{letter-spacing:1.288960pt;}
.ls67_c00269{letter-spacing:1.337600pt;}
.ls9_c00269{letter-spacing:1.343680pt;}
.ls39_c00269{letter-spacing:1.374080pt;}
.ls32_c00269{letter-spacing:1.380107pt;}
.ls3a_c00269{letter-spacing:1.392160pt;}
.ls45_c00269{letter-spacing:1.422293pt;}
.ls18_c00269{letter-spacing:1.453120pt;}
.ls19_c00269{letter-spacing:1.465280pt;}
.lsa6_c00269{letter-spacing:1.495680pt;}
.ls34_c00269{letter-spacing:1.520000pt;}
.ls5b_c00269{letter-spacing:1.526080pt;}
.ls17_c00269{letter-spacing:1.544320pt;}
.ls3_c00269{letter-spacing:1.562560pt;}
.ls42_c00269{letter-spacing:1.592960pt;}
.ls6f_c00269{letter-spacing:1.623360pt;}
.ls2d_c00269{letter-spacing:1.781440pt;}
.ls22_c00269{letter-spacing:1.793600pt;}
.ls8c_c00269{letter-spacing:1.856213pt;}
.ls4f_c00269{letter-spacing:2.091520pt;}
.ls9c_c00269{letter-spacing:2.186667pt;}
.ls4a_c00269{letter-spacing:2.413760pt;}
.ls2b_c00269{letter-spacing:2.614400pt;}
.ls2a_c00269{letter-spacing:2.632640pt;}
.ls28_c00269{letter-spacing:2.748160pt;}
.lsa3_c00269{letter-spacing:3.040000pt;}
.ws2_c00269{word-spacing:-1.805440pt;}
.ws5_c00269{word-spacing:0.000000pt;}
.ws4_c00269{word-spacing:0.409120pt;}
.ws0_c00269{word-spacing:4.613013pt;}
.ws3_c00269{word-spacing:13.732800pt;}
.ws1_c00269{word-spacing:22.630507pt;}
._11_c00269{margin-left:-12.232960pt;}
._7_c00269{margin-left:-11.126400pt;}
._12_c00269{margin-left:-5.776000pt;}
._19_c00269{margin-left:-4.573867pt;}
._9_c00269{margin-left:-3.664640pt;}
._4_c00269{margin-left:-2.334720pt;}
._c_c00269{margin-left:-1.282880pt;}
._0_c00269{width:1.655467pt;}
._1_c00269{width:3.003520pt;}
._5_c00269{width:4.275093pt;}
._3_c00269{width:6.116480pt;}
._b_c00269{width:7.034667pt;}
._8_c00269{width:8.390400pt;}
._a_c00269{width:9.815360pt;}
._18_c00269{width:10.783680pt;}
._17_c00269{width:11.723733pt;}
._16_c00269{width:12.820480pt;}
._2_c00269{width:14.182933pt;}
._1a_c00269{width:15.482773pt;}
._6_c00269{width:17.610880pt;}
._e_c00269{width:19.291840pt;}
._13_c00269{width:20.249600pt;}
._d_c00269{width:21.251307pt;}
._f_c00269{width:22.963307pt;}
._10_c00269{width:24.558187pt;}
._14_c00269{width:26.634240pt;}
._15_c00269{width:29.072640pt;}
.fs6_c00269{font-size:43.733333pt;}
.fs5_c00269{font-size:46.080000pt;}
.fs4_c00269{font-size:47.360000pt;}
.fs7_c00269{font-size:51.733333pt;}
.fs0_c00269{font-size:59.733333pt;}
.fs3_c00269{font-size:60.266667pt;}
.fs2_c00269{font-size:60.800000pt;}
.fs1_c00269{font-size:68.266667pt;}
.y0_c00269{bottom:0.000000pt;}
.y1e_c00269{bottom:62.733333pt;}
.y1d_c00269{bottom:130.873600pt;}
.y1c_c00269{bottom:158.720000pt;}
.y1b_c00269{bottom:214.400000pt;}
.y19_c00269{bottom:269.767733pt;}
.y1a_c00269{bottom:269.773333pt;}
.y17_c00269{bottom:297.929333pt;}
.y18_c00269{bottom:297.933333pt;}
.y16_c00269{bottom:325.775733pt;}
.y15_c00269{bottom:353.606933pt;}
.y14_c00269{bottom:381.453333pt;}
.y13_c00269{bottom:436.493333pt;}
.y12_c00269{bottom:492.496533pt;}
.y11_c00269{bottom:520.646933pt;}
.y10_c00269{bottom:548.486933pt;}
.yf_c00269{bottom:576.333333pt;}
.ye_c00269{bottom:604.173333pt;}
.yd_c00269{bottom:659.832533pt;}
.yc_c00269{bottom:688.000533pt;}
.yb_c00269{bottom:715.846933pt;}
.ya_c00269{bottom:743.693333pt;}
.y9_c00269{bottom:799.360000pt;}
.y8_c00269{bottom:827.200000pt;}
.y6_c00269{bottom:882.872800pt;}
.y7_c00269{bottom:882.880000pt;}
.y5_c00269{bottom:910.400000pt;}
.y4_c00269{bottom:910.403200pt;}
.y3_c00269{bottom:966.400000pt;}
.y2_c00269{bottom:994.253333pt;}
.y1_c00269{bottom:1062.400000pt;}
.h9_c00269{height:30.689280pt;}
.h6_c00269{height:31.541760pt;}
.hb_c00269{height:45.612500pt;}
.hd_c00269{height:50.773437pt;}
.h2_c00269{height:58.625000pt;}
.h5_c00269{height:59.119010pt;}
.h4_c00269{height:59.671875pt;}
.ha_c00269{height:59.697475pt;}
.h8_c00269{height:59.701742pt;}
.h7_c00269{height:59.723075pt;}
.hc_c00269{height:62.856250pt;}
.h3_c00269{height:66.966667pt;}
.h1_c00269{height:1122.666667pt;}
.h0_c00269{height:1122.880000pt;}
.w1_c00269{width:793.333333pt;}
.w0_c00269{width:793.600000pt;}
.x0_c00269{left:0.000000pt;}
.x14_c00269{left:105.146667pt;}
.x12_c00269{left:106.846133pt;}
.x1_c00269{left:110.973333pt;}
.x1a_c00269{left:154.040000pt;}
.x13_c00269{left:155.026667pt;}
.xe_c00269{left:156.506667pt;}
.x5_c00269{left:157.680000pt;}
.x1b_c00269{left:160.546667pt;}
.x1c_c00269{left:182.906667pt;}
.x2_c00269{left:237.746667pt;}
.xa_c00269{left:259.493333pt;}
.xb_c00269{left:286.653333pt;}
.x3_c00269{left:302.000000pt;}
.x8_c00269{left:337.760000pt;}
.x9_c00269{left:353.200000pt;}
.x20_c00269{left:375.600000pt;}
.x1e_c00269{left:381.133333pt;}
.x17_c00269{left:395.840000pt;}
.x18_c00269{left:424.506667pt;}
.x15_c00269{left:432.013333pt;}
.x1f_c00269{left:447.333333pt;}
.xf_c00269{left:451.333333pt;}
.x16_c00269{left:452.653333pt;}
.x10_c00269{left:464.986667pt;}
.x1d_c00269{left:502.186667pt;}
.x4_c00269{left:513.080000pt;}
.x11_c00269{left:530.893333pt;}
.xc_c00269{left:542.533333pt;}
.xd_c00269{left:556.946667pt;}
.x19_c00269{left:605.946667pt;}
.x6_c00269{left:620.600000pt;}
.x7_c00269{left:639.640000pt;}
}





/* 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_c00270 {
    display:none;
  }
  .loading-indicator_c00270.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00270 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_c00270 { 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_c00270" -> "#page-container .classname_c00270")
 */
.pf_c00270 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00270 { /* 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_c00270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00270 { /* 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_c00270 { /* 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_c00270 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00270 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00270 {overflow:visible;}
  }
}
.c_c00270 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00270 { /* 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_c00270:after { /* webkit #35443 */
  content: '';
}
.t_c00270:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00270 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 */
}
.__c00270 { /* 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_c00270 { /* info for Javascript */
  display:none;
}
.l_c00270 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00270 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00270 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00270: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_c00270 {
    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_c00270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00270.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_c00270 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00270;src:url('chunks/assets/font_0aa8c59fcd5a087e0efc4ee2.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.284668;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_c00270;src:url('chunks/assets/font_0f12a5adabb26039f86ecbc5.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.284180;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_c00270;src:url('chunks/assets/font_729eca291e2b69bb94012d29.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:0.666000;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_c00270;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;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;}
.m5_c00270{transform:matrix(0.166216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166216,0.000000,0.000000,0.250000,0,0);}
.m3_c00270{transform:matrix(0.224743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224743,0.000000,0.000000,0.250000,0,0);}
.m4_c00270{transform:matrix(0.226306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226306,0.000000,0.000000,0.250000,0,0);}
.m9_c00270{transform:matrix(0.226679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226679,0.000000,0.000000,0.250000,0,0);}
.ma_c00270{transform:matrix(0.232287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232287,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(0.241391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241391,0.000000,0.000000,0.250000,0,0);}
.m7_c00270{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m6_c00270{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m2_c00270{transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);}
.m0_c00270{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);}
.m8_c00270{transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls6b_c00270{letter-spacing:-2.373000px;}
.ls58_c00270{letter-spacing:-2.352000px;}
.ls7b_c00270{letter-spacing:-2.268000px;}
.ls59_c00270{letter-spacing:-2.096640px;}
.ls5e_c00270{letter-spacing:-2.022720px;}
.ls79_c00270{letter-spacing:-1.962240px;}
.ls71_c00270{letter-spacing:-1.921920px;}
.ls5d_c00270{letter-spacing:-1.767360px;}
.ls54_c00270{letter-spacing:-1.612800px;}
.ls74_c00270{letter-spacing:-1.599360px;}
.ls57_c00270{letter-spacing:-1.350720px;}
.ls66_c00270{letter-spacing:-1.128960px;}
.ls69_c00270{letter-spacing:-1.061760px;}
.ls72_c00270{letter-spacing:-0.873600px;}
.ls73_c00270{letter-spacing:-0.853440px;}
.ls76_c00270{letter-spacing:-0.779520px;}
.ls78_c00270{letter-spacing:-0.719040px;}
.ls5f_c00270{letter-spacing:-0.638400px;}
.ls60_c00270{letter-spacing:-0.598080px;}
.ls5c_c00270{letter-spacing:-0.389760px;}
.ls5a_c00270{letter-spacing:-0.383040px;}
.ls7a_c00270{letter-spacing:-0.322560px;}
.ls55_c00270{letter-spacing:-0.282240px;}
.ls75_c00270{letter-spacing:-0.264480px;}
.ls6e_c00270{letter-spacing:-0.241920px;}
.ls5b_c00270{letter-spacing:-0.161280px;}
.ls56_c00270{letter-spacing:-0.134400px;}
.ls68_c00270{letter-spacing:-0.026880px;}
.ls53_c00270{letter-spacing:0.000000px;}
.ls61_c00270{letter-spacing:0.020160px;}
.ls12_c00270{letter-spacing:0.120960px;}
.ls2b_c00270{letter-spacing:0.154560px;}
.ls6c_c00270{letter-spacing:0.161280px;}
.ls11_c00270{letter-spacing:0.174720px;}
.ls17_c00270{letter-spacing:0.181440px;}
.ls13_c00270{letter-spacing:0.201600px;}
.ls30_c00270{letter-spacing:0.215040px;}
.ls28_c00270{letter-spacing:0.228480px;}
.ls49_c00270{letter-spacing:0.241920px;}
.ls36_c00270{letter-spacing:0.288960px;}
.ls50_c00270{letter-spacing:0.295680px;}
.ls3a_c00270{letter-spacing:0.329280px;}
.ls22_c00270{letter-spacing:0.349440px;}
.lsd_c00270{letter-spacing:0.359340px;}
.ls70_c00270{letter-spacing:0.369600px;}
.ls67_c00270{letter-spacing:0.383040px;}
.ls5_c00270{letter-spacing:0.396480px;}
.ls4e_c00270{letter-spacing:0.427140px;}
.lsb_c00270{letter-spacing:0.430080px;}
.ls3e_c00270{letter-spacing:0.447480px;}
.ls6f_c00270{letter-spacing:0.463680px;}
.ls21_c00270{letter-spacing:0.477120px;}
.ls29_c00270{letter-spacing:0.483840px;}
.ls16_c00270{letter-spacing:0.504000px;}
.lse_c00270{letter-spacing:0.510720px;}
.ls10_c00270{letter-spacing:0.549180px;}
.ls4d_c00270{letter-spacing:0.562740px;}
.ls63_c00270{letter-spacing:0.564480px;}
.ls24_c00270{letter-spacing:0.576300px;}
.ls3d_c00270{letter-spacing:0.583080px;}
.lsc_c00270{letter-spacing:0.584640px;}
.ls3_c00270{letter-spacing:0.591360px;}
.ls2d_c00270{letter-spacing:0.598080px;}
.ls40_c00270{letter-spacing:0.651840px;}
.ls32_c00270{letter-spacing:0.658560px;}
.ls7_c00270{letter-spacing:0.672000px;}
.ls8_c00270{letter-spacing:0.678720px;}
.ls2e_c00270{letter-spacing:0.698880px;}
.ls4_c00270{letter-spacing:0.719040px;}
.ls38_c00270{letter-spacing:0.725460px;}
.ls31_c00270{letter-spacing:0.745920px;}
.ls27_c00270{letter-spacing:0.772800px;}
.ls18_c00270{letter-spacing:0.779520px;}
.ls48_c00270{letter-spacing:0.826560px;}
.ls41_c00270{letter-spacing:0.833280px;}
.ls35_c00270{letter-spacing:0.853440px;}
.lsf_c00270{letter-spacing:0.854280px;}
.ls9_c00270{letter-spacing:0.860160px;}
.ls1c_c00270{letter-spacing:0.880320px;}
.ls14_c00270{letter-spacing:0.894960px;}
.ls62_c00270{letter-spacing:0.907200px;}
.ls46_c00270{letter-spacing:0.940800px;}
.ls4b_c00270{letter-spacing:0.974400px;}
.ls64_c00270{letter-spacing:0.981120px;}
.ls23_c00270{letter-spacing:0.987840px;}
.ls4f_c00270{letter-spacing:0.989880px;}
.ls4c_c00270{letter-spacing:1.001280px;}
.ls1f_c00270{letter-spacing:1.003440px;}
.ls2_c00270{letter-spacing:1.028100px;}
.ls65_c00270{letter-spacing:1.028160px;}
.ls39_c00270{letter-spacing:1.048320px;}
.ls3c_c00270{letter-spacing:1.055040px;}
.ls77_c00270{letter-spacing:1.071240px;}
.ls43_c00270{letter-spacing:1.075200px;}
.ls19_c00270{letter-spacing:1.095360px;}
.ls37_c00270{letter-spacing:1.102080px;}
.ls33_c00270{letter-spacing:1.122240px;}
.ls2a_c00270{letter-spacing:1.149120px;}
.ls25_c00270{letter-spacing:1.155840px;}
.ls1_c00270{letter-spacing:1.173000px;}
.ls1e_c00270{letter-spacing:1.176000px;}
.ls3b_c00270{letter-spacing:1.263360px;}
.lsa_c00270{letter-spacing:1.317120px;}
.ls6_c00270{letter-spacing:1.323840px;}
.ls15_c00270{letter-spacing:1.337280px;}
.ls20_c00270{letter-spacing:1.357440px;}
.ls1b_c00270{letter-spacing:1.424640px;}
.ls51_c00270{letter-spacing:1.545840px;}
.ls1d_c00270{letter-spacing:1.599360px;}
.ls4a_c00270{letter-spacing:1.626240px;}
.ls3f_c00270{letter-spacing:1.659840px;}
.ls26_c00270{letter-spacing:1.700160px;}
.ls52_c00270{letter-spacing:1.714980px;}
.ls34_c00270{letter-spacing:1.800960px;}
.ls1a_c00270{letter-spacing:1.868160px;}
.ls0_c00270{letter-spacing:1.966500px;}
.ls45_c00270{letter-spacing:2.016000px;}
.ls47_c00270{letter-spacing:2.028600px;}
.ls2c_c00270{letter-spacing:2.291520px;}
.ls6a_c00270{letter-spacing:2.493120px;}
.ls44_c00270{letter-spacing:2.573760px;}
.ls2f_c00270{letter-spacing:2.755200px;}
.ls42_c00270{letter-spacing:3.030720px;}
.ls6d_c00270{letter-spacing:3.360000px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{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__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00270{word-spacing:-1.320360px;}
.ws5_c00270{word-spacing:0.000000px;}
.ws2_c00270{word-spacing:10.222800px;}
.ws4_c00270{word-spacing:15.179520px;}
.ws0_c00270{word-spacing:27.326760px;}
.ws3_c00270{word-spacing:29.523900px;}
._b_c00270{margin-left:-12.317760px;}
._16_c00270{margin-left:-7.254240px;}
._0_c00270{margin-left:-6.003000px;}
._10_c00270{margin-left:-4.556160px;}
._f_c00270{margin-left:-2.841600px;}
._1_c00270{margin-left:-1.648200px;}
._3_c00270{width:2.318400px;}
._15_c00270{width:3.353280px;}
._5_c00270{width:4.462080px;}
._2_c00270{width:5.765760px;}
._6_c00270{width:7.392000px;}
._7_c00270{width:9.576000px;}
._8_c00270{width:10.731840px;}
._9_c00270{width:12.413760px;}
._4_c00270{width:13.500480px;}
._11_c00270{width:14.822400px;}
._13_c00270{width:16.007040px;}
._12_c00270{width:21.631680px;}
._a_c00270{width:24.460800px;}
._d_c00270{width:26.150400px;}
._c_c00270{width:28.008960px;}
._14_c00270{width:29.293920px;}
._e_c00270{width:31.556400px;}
.fc0_c00270{color:transparent;}
.fs5_c00270{font-size:53.280000px;}
.fs0_c00270{font-size:60.600000px;}
.fs8_c00270{font-size:64.800000px;}
.fs2_c00270{font-size:67.200000px;}
.fs3_c00270{font-size:67.800000px;}
.fs1_c00270{font-size:69.000000px;}
.fs7_c00270{font-size:69.600000px;}
.fs6_c00270{font-size:71.400000px;}
.fs4_c00270{font-size:73.800000px;}
.y0_c00270{bottom:0.000000px;}
.y19_c00270{bottom:71.655000px;}
.y18_c00270{bottom:148.680000px;}
.y17_c00270{bottom:179.640000px;}
.y16_c00270{bottom:242.655000px;}
.y15_c00270{bottom:273.624000px;}
.y14_c00270{bottom:335.901600px;}
.y13_c00270{bottom:367.200000px;}
.y12_c00270{bottom:429.854400px;}
.y11_c00270{bottom:460.800000px;}
.y10_c00270{bottom:523.800000px;}
.yf_c00270{bottom:554.775000px;}
.ye_c00270{bottom:617.400600px;}
.yd_c00270{bottom:648.715800px;}
.yc_c00270{bottom:679.695000px;}
.yb_c00270{bottom:741.975000px;}
.ya_c00270{bottom:804.981600px;}
.y9_c00270{bottom:836.280000px;}
.y8_c00270{bottom:898.920000px;}
.y7_c00270{bottom:930.240000px;}
.y6_c00270{bottom:992.892600px;}
.y5_c00270{bottom:1023.855000px;}
.y4_c00270{bottom:1023.856800px;}
.y3_c00270{bottom:1085.395200px;}
.y2_c00270{bottom:1117.080000px;}
.y1_c00270{bottom:1192.695000px;}
.h7_c00270{height:35.484480px;}
.h2_c00270{height:59.475586px;}
.hd_c00270{height:63.597656px;}
.h4_c00270{height:65.953125px;}
.h5_c00270{height:66.508887px;}
.h3_c00270{height:67.686035px;}
.hc_c00270{height:68.308594px;}
.h9_c00270{height:70.075195px;}
.ha_c00270{height:70.713281px;}
.hb_c00270{height:72.394664px;}
.h8_c00270{height:72.428264px;}
.h6_c00270{height:72.430664px;}
.h1_c00270{height:1263.000000px;}
.h0_c00270{height:1263.240000px;}
.w1_c00270{width:892.500000px;}
.w0_c00270{width:892.800000px;}
.x0_c00270{left:0.000000px;}
.x1_c00270{left:120.165000px;}
.xd_c00270{left:121.503600px;}
.x3_c00270{left:175.226400px;}
.xa_c00270{left:186.645000px;}
.x13_c00270{left:229.335000px;}
.x2_c00270{left:263.895000px;}
.x6_c00270{left:330.240000px;}
.x7_c00270{left:345.720000px;}
.x8_c00270{left:375.270000px;}
.x14_c00270{left:376.755000px;}
.x15_c00270{left:390.495000px;}
.x9_c00270{left:405.270000px;}
.x16_c00270{left:422.910000px;}
.x12_c00270{left:432.180000px;}
.xe_c00270{left:444.960000px;}
.xf_c00270{left:537.675000px;}
.xb_c00270{left:606.450000px;}
.x4_c00270{left:617.550000px;}
.x5_c00270{left:635.940000px;}
.xc_c00270{left:644.370000px;}
.x10_c00270{left:677.535000px;}
.x11_c00270{left:734.940000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls6b_c00270{letter-spacing:-2.109333pt;}
.ls58_c00270{letter-spacing:-2.090667pt;}
.ls7b_c00270{letter-spacing:-2.016000pt;}
.ls59_c00270{letter-spacing:-1.863680pt;}
.ls5e_c00270{letter-spacing:-1.797973pt;}
.ls79_c00270{letter-spacing:-1.744213pt;}
.ls71_c00270{letter-spacing:-1.708373pt;}
.ls5d_c00270{letter-spacing:-1.570987pt;}
.ls54_c00270{letter-spacing:-1.433600pt;}
.ls74_c00270{letter-spacing:-1.421653pt;}
.ls57_c00270{letter-spacing:-1.200640pt;}
.ls66_c00270{letter-spacing:-1.003520pt;}
.ls69_c00270{letter-spacing:-0.943787pt;}
.ls72_c00270{letter-spacing:-0.776533pt;}
.ls73_c00270{letter-spacing:-0.758613pt;}
.ls76_c00270{letter-spacing:-0.692907pt;}
.ls78_c00270{letter-spacing:-0.639147pt;}
.ls5f_c00270{letter-spacing:-0.567467pt;}
.ls60_c00270{letter-spacing:-0.531627pt;}
.ls5c_c00270{letter-spacing:-0.346453pt;}
.ls5a_c00270{letter-spacing:-0.340480pt;}
.ls7a_c00270{letter-spacing:-0.286720pt;}
.ls55_c00270{letter-spacing:-0.250880pt;}
.ls75_c00270{letter-spacing:-0.235093pt;}
.ls6e_c00270{letter-spacing:-0.215040pt;}
.ls5b_c00270{letter-spacing:-0.143360pt;}
.ls56_c00270{letter-spacing:-0.119467pt;}
.ls68_c00270{letter-spacing:-0.023893pt;}
.ls53_c00270{letter-spacing:0.000000pt;}
.ls61_c00270{letter-spacing:0.017920pt;}
.ls12_c00270{letter-spacing:0.107520pt;}
.ls2b_c00270{letter-spacing:0.137387pt;}
.ls6c_c00270{letter-spacing:0.143360pt;}
.ls11_c00270{letter-spacing:0.155307pt;}
.ls17_c00270{letter-spacing:0.161280pt;}
.ls13_c00270{letter-spacing:0.179200pt;}
.ls30_c00270{letter-spacing:0.191147pt;}
.ls28_c00270{letter-spacing:0.203093pt;}
.ls49_c00270{letter-spacing:0.215040pt;}
.ls36_c00270{letter-spacing:0.256853pt;}
.ls50_c00270{letter-spacing:0.262827pt;}
.ls3a_c00270{letter-spacing:0.292693pt;}
.ls22_c00270{letter-spacing:0.310613pt;}
.lsd_c00270{letter-spacing:0.319413pt;}
.ls70_c00270{letter-spacing:0.328533pt;}
.ls67_c00270{letter-spacing:0.340480pt;}
.ls5_c00270{letter-spacing:0.352427pt;}
.ls4e_c00270{letter-spacing:0.379680pt;}
.lsb_c00270{letter-spacing:0.382293pt;}
.ls3e_c00270{letter-spacing:0.397760pt;}
.ls6f_c00270{letter-spacing:0.412160pt;}
.ls21_c00270{letter-spacing:0.424107pt;}
.ls29_c00270{letter-spacing:0.430080pt;}
.ls16_c00270{letter-spacing:0.448000pt;}
.lse_c00270{letter-spacing:0.453973pt;}
.ls10_c00270{letter-spacing:0.488160pt;}
.ls4d_c00270{letter-spacing:0.500213pt;}
.ls63_c00270{letter-spacing:0.501760pt;}
.ls24_c00270{letter-spacing:0.512267pt;}
.ls3d_c00270{letter-spacing:0.518293pt;}
.lsc_c00270{letter-spacing:0.519680pt;}
.ls3_c00270{letter-spacing:0.525653pt;}
.ls2d_c00270{letter-spacing:0.531627pt;}
.ls40_c00270{letter-spacing:0.579413pt;}
.ls32_c00270{letter-spacing:0.585387pt;}
.ls7_c00270{letter-spacing:0.597333pt;}
.ls8_c00270{letter-spacing:0.603307pt;}
.ls2e_c00270{letter-spacing:0.621227pt;}
.ls4_c00270{letter-spacing:0.639147pt;}
.ls38_c00270{letter-spacing:0.644853pt;}
.ls31_c00270{letter-spacing:0.663040pt;}
.ls27_c00270{letter-spacing:0.686933pt;}
.ls18_c00270{letter-spacing:0.692907pt;}
.ls48_c00270{letter-spacing:0.734720pt;}
.ls41_c00270{letter-spacing:0.740693pt;}
.ls35_c00270{letter-spacing:0.758613pt;}
.lsf_c00270{letter-spacing:0.759360pt;}
.ls9_c00270{letter-spacing:0.764587pt;}
.ls1c_c00270{letter-spacing:0.782507pt;}
.ls14_c00270{letter-spacing:0.795520pt;}
.ls62_c00270{letter-spacing:0.806400pt;}
.ls46_c00270{letter-spacing:0.836267pt;}
.ls4b_c00270{letter-spacing:0.866133pt;}
.ls64_c00270{letter-spacing:0.872107pt;}
.ls23_c00270{letter-spacing:0.878080pt;}
.ls4f_c00270{letter-spacing:0.879893pt;}
.ls4c_c00270{letter-spacing:0.890027pt;}
.ls1f_c00270{letter-spacing:0.891947pt;}
.ls2_c00270{letter-spacing:0.913867pt;}
.ls65_c00270{letter-spacing:0.913920pt;}
.ls39_c00270{letter-spacing:0.931840pt;}
.ls3c_c00270{letter-spacing:0.937813pt;}
.ls77_c00270{letter-spacing:0.952213pt;}
.ls43_c00270{letter-spacing:0.955733pt;}
.ls19_c00270{letter-spacing:0.973653pt;}
.ls37_c00270{letter-spacing:0.979627pt;}
.ls33_c00270{letter-spacing:0.997547pt;}
.ls2a_c00270{letter-spacing:1.021440pt;}
.ls25_c00270{letter-spacing:1.027413pt;}
.ls1_c00270{letter-spacing:1.042667pt;}
.ls1e_c00270{letter-spacing:1.045333pt;}
.ls3b_c00270{letter-spacing:1.122987pt;}
.lsa_c00270{letter-spacing:1.170773pt;}
.ls6_c00270{letter-spacing:1.176747pt;}
.ls15_c00270{letter-spacing:1.188693pt;}
.ls20_c00270{letter-spacing:1.206613pt;}
.ls1b_c00270{letter-spacing:1.266347pt;}
.ls51_c00270{letter-spacing:1.374080pt;}
.ls1d_c00270{letter-spacing:1.421653pt;}
.ls4a_c00270{letter-spacing:1.445547pt;}
.ls3f_c00270{letter-spacing:1.475413pt;}
.ls26_c00270{letter-spacing:1.511253pt;}
.ls52_c00270{letter-spacing:1.524427pt;}
.ls34_c00270{letter-spacing:1.600853pt;}
.ls1a_c00270{letter-spacing:1.660587pt;}
.ls0_c00270{letter-spacing:1.748000pt;}
.ls45_c00270{letter-spacing:1.792000pt;}
.ls47_c00270{letter-spacing:1.803200pt;}
.ls2c_c00270{letter-spacing:2.036907pt;}
.ls6a_c00270{letter-spacing:2.216107pt;}
.ls44_c00270{letter-spacing:2.287787pt;}
.ls2f_c00270{letter-spacing:2.449067pt;}
.ls42_c00270{letter-spacing:2.693973pt;}
.ls6d_c00270{letter-spacing:2.986667pt;}
.ws1_c00270{word-spacing:-1.173653pt;}
.ws5_c00270{word-spacing:0.000000pt;}
.ws2_c00270{word-spacing:9.086933pt;}
.ws4_c00270{word-spacing:13.492907pt;}
.ws0_c00270{word-spacing:24.290453pt;}
.ws3_c00270{word-spacing:26.243467pt;}
._b_c00270{margin-left:-10.949120pt;}
._16_c00270{margin-left:-6.448213pt;}
._0_c00270{margin-left:-5.336000pt;}
._10_c00270{margin-left:-4.049920pt;}
._f_c00270{margin-left:-2.525867pt;}
._1_c00270{margin-left:-1.465067pt;}
._3_c00270{width:2.060800pt;}
._15_c00270{width:2.980693pt;}
._5_c00270{width:3.966293pt;}
._2_c00270{width:5.125120pt;}
._6_c00270{width:6.570667pt;}
._7_c00270{width:8.512000pt;}
._8_c00270{width:9.539413pt;}
._9_c00270{width:11.034453pt;}
._4_c00270{width:12.000427pt;}
._11_c00270{width:13.175467pt;}
._13_c00270{width:14.228480pt;}
._12_c00270{width:19.228160pt;}
._a_c00270{width:21.742933pt;}
._d_c00270{width:23.244800pt;}
._c_c00270{width:24.896853pt;}
._14_c00270{width:26.039040pt;}
._e_c00270{width:28.050133pt;}
.fs5_c00270{font-size:47.360000pt;}
.fs0_c00270{font-size:53.866667pt;}
.fs8_c00270{font-size:57.600000pt;}
.fs2_c00270{font-size:59.733333pt;}
.fs3_c00270{font-size:60.266667pt;}
.fs1_c00270{font-size:61.333333pt;}
.fs7_c00270{font-size:61.866667pt;}
.fs6_c00270{font-size:63.466667pt;}
.fs4_c00270{font-size:65.600000pt;}
.y0_c00270{bottom:0.000000pt;}
.y19_c00270{bottom:63.693333pt;}
.y18_c00270{bottom:132.160000pt;}
.y17_c00270{bottom:159.680000pt;}
.y16_c00270{bottom:215.693333pt;}
.y15_c00270{bottom:243.221333pt;}
.y14_c00270{bottom:298.579200pt;}
.y13_c00270{bottom:326.400000pt;}
.y12_c00270{bottom:382.092800pt;}
.y11_c00270{bottom:409.600000pt;}
.y10_c00270{bottom:465.600000pt;}
.yf_c00270{bottom:493.133333pt;}
.ye_c00270{bottom:548.800533pt;}
.yd_c00270{bottom:576.636267pt;}
.yc_c00270{bottom:604.173333pt;}
.yb_c00270{bottom:659.533333pt;}
.ya_c00270{bottom:715.539200pt;}
.y9_c00270{bottom:743.360000pt;}
.y8_c00270{bottom:799.040000pt;}
.y7_c00270{bottom:826.880000pt;}
.y6_c00270{bottom:882.571200pt;}
.y5_c00270{bottom:910.093333pt;}
.y4_c00270{bottom:910.094933pt;}
.y3_c00270{bottom:964.795733pt;}
.y2_c00270{bottom:992.960000pt;}
.y1_c00270{bottom:1060.173333pt;}
.h7_c00270{height:31.541760pt;}
.h2_c00270{height:52.867187pt;}
.hd_c00270{height:56.531250pt;}
.h4_c00270{height:58.625000pt;}
.h5_c00270{height:59.119010pt;}
.h3_c00270{height:60.165365pt;}
.hc_c00270{height:60.718750pt;}
.h9_c00270{height:62.289062pt;}
.ha_c00270{height:62.856250pt;}
.hb_c00270{height:64.350812pt;}
.h8_c00270{height:64.380679pt;}
.h6_c00270{height:64.382813pt;}
.h1_c00270{height:1122.666667pt;}
.h0_c00270{height:1122.880000pt;}
.w1_c00270{width:793.333333pt;}
.w0_c00270{width:793.600000pt;}
.x0_c00270{left:0.000000pt;}
.x1_c00270{left:106.813333pt;}
.xd_c00270{left:108.003200pt;}
.x3_c00270{left:155.756800pt;}
.xa_c00270{left:165.906667pt;}
.x13_c00270{left:203.853333pt;}
.x2_c00270{left:234.573333pt;}
.x6_c00270{left:293.546667pt;}
.x7_c00270{left:307.306667pt;}
.x8_c00270{left:333.573333pt;}
.x14_c00270{left:334.893333pt;}
.x15_c00270{left:347.106667pt;}
.x9_c00270{left:360.240000pt;}
.x16_c00270{left:375.920000pt;}
.x12_c00270{left:384.160000pt;}
.xe_c00270{left:395.520000pt;}
.xf_c00270{left:477.933333pt;}
.xb_c00270{left:539.066667pt;}
.x4_c00270{left:548.933333pt;}
.x5_c00270{left:565.280000pt;}
.xc_c00270{left:572.773333pt;}
.x10_c00270{left:602.253333pt;}
.x11_c00270{left:653.280000pt;}
}





/* 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_c00271 {
    display:none;
  }
  .loading-indicator_c00271.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00271 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_c00271 { 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_c00271" -> "#page-container .classname_c00271")
 */
.pf_c00271 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00271 { /* 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_c00271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00271 { /* 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_c00271 { /* 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_c00271 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00271 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00271 {overflow:visible;}
  }
}
.c_c00271 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00271 { /* 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_c00271:after { /* webkit #35443 */
  content: '';
}
.t_c00271:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00271 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 */
}
.__c00271 { /* 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_c00271 { /* info for Javascript */
  display:none;
}
.l_c00271 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00271 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00271 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00271: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_c00271 {
    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_c00271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00271.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_c00271 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00271;src:url('chunks/assets/font_07e81e2ab5794907485c0831.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.284668;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_c00271;src:url('chunks/assets/font_13785842fba575cbbf48c7b9.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.284180;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_c00271;src:url('chunks/assets/font_5f168088880343e77bef8216.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;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:ff4_c00271;src:url('chunks/assets/font_de475864de73514cb92e849c.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;line-height:0.666000;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;}
.m5_c00271{transform:matrix(0.146432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146432,0.000000,0.000000,0.250000,0,0);}
.m6_c00271{transform:matrix(0.204259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204259,0.000000,0.000000,0.250000,0,0);}
.m2_c00271{transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);}
.m4_c00271{transform:matrix(0.227529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227529,0.000000,0.000000,0.250000,0,0);}
.m0_c00271{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m3_c00271{transform:matrix(0.248854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248854,0.000000,0.000000,0.250000,0,0);}
.m1_c00271{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);}
.v0_c00271{vertical-align:0.000000px;}
.ls5e_c00271{letter-spacing:-2.583000px;}
.ls55_c00271{letter-spacing:-2.457540px;}
.ls8f_c00271{letter-spacing:-2.436000px;}
.ls5d_c00271{letter-spacing:-2.394000px;}
.ls54_c00271{letter-spacing:-2.352000px;}
.ls57_c00271{letter-spacing:-2.280420px;}
.ls5c_c00271{letter-spacing:-2.250900px;}
.ls5a_c00271{letter-spacing:-2.168280px;}
.ls8d_c00271{letter-spacing:-2.147760px;}
.ls90_c00271{letter-spacing:-2.088540px;}
.ls79_c00271{letter-spacing:-1.933560px;}
.ls87_c00271{letter-spacing:-1.741680px;}
.ls7e_c00271{letter-spacing:-1.730520px;}
.ls5f_c00271{letter-spacing:-1.682640px;}
.ls6d_c00271{letter-spacing:-1.638360px;}
.ls56_c00271{letter-spacing:-1.608840px;}
.ls8e_c00271{letter-spacing:-1.601460px;}
.ls7d_c00271{letter-spacing:-1.564560px;}
.ls77_c00271{letter-spacing:-1.542420px;}
.ls61_c00271{letter-spacing:-1.476000px;}
.ls70_c00271{letter-spacing:-1.461240px;}
.ls81_c00271{letter-spacing:-1.450080px;}
.ls6a_c00271{letter-spacing:-1.394820px;}
.ls8a_c00271{letter-spacing:-1.292760px;}
.ls7f_c00271{letter-spacing:-1.203840px;}
.ls85_c00271{letter-spacing:-1.080720px;}
.ls6e_c00271{letter-spacing:-0.971280px;}
.ls88_c00271{letter-spacing:-0.896040px;}
.ls76_c00271{letter-spacing:-0.870480px;}
.ls80_c00271{letter-spacing:-0.868680px;}
.ls86_c00271{letter-spacing:-0.861840px;}
.ls60_c00271{letter-spacing:-0.834480px;}
.ls7c_c00271{letter-spacing:-0.760140px;}
.ls65_c00271{letter-spacing:-0.684000px;}
.ls82_c00271{letter-spacing:-0.670320px;}
.ls72_c00271{letter-spacing:-0.663480px;}
.ls83_c00271{letter-spacing:-0.574560px;}
.ls8b_c00271{letter-spacing:-0.540360px;}
.ls66_c00271{letter-spacing:-0.526680px;}
.ls67_c00271{letter-spacing:-0.478800px;}
.ls6c_c00271{letter-spacing:-0.475200px;}
.ls73_c00271{letter-spacing:-0.471960px;}
.ls7a_c00271{letter-spacing:-0.458280px;}
.ls89_c00271{letter-spacing:-0.444600px;}
.ls6b_c00271{letter-spacing:-0.376200px;}
.ls84_c00271{letter-spacing:-0.348840px;}
.ls75_c00271{letter-spacing:-0.259920px;}
.ls58_c00271{letter-spacing:-0.171000px;}
.ls63_c00271{letter-spacing:-0.157320px;}
.ls59_c00271{letter-spacing:-0.150480px;}
.ls91_c00271{letter-spacing:-0.102600px;}
.ls71_c00271{letter-spacing:-0.095760px;}
.ls8c_c00271{letter-spacing:-0.068400px;}
.ls62_c00271{letter-spacing:-0.041040px;}
.ls7b_c00271{letter-spacing:-0.014040px;}
.ls64_c00271{letter-spacing:0.000000px;}
.ls47_c00271{letter-spacing:0.006840px;}
.ls30_c00271{letter-spacing:0.013680px;}
.ls5b_c00271{letter-spacing:0.041040px;}
.ls25_c00271{letter-spacing:0.047880px;}
.ls36_c00271{letter-spacing:0.082080px;}
.ls18_c00271{letter-spacing:0.095760px;}
.ls3c_c00271{letter-spacing:0.102600px;}
.ls34_c00271{letter-spacing:0.109440px;}
.ls3a_c00271{letter-spacing:0.136800px;}
.ls31_c00271{letter-spacing:0.212040px;}
.ls51_c00271{letter-spacing:0.232560px;}
.ls42_c00271{letter-spacing:0.246240px;}
.ls2f_c00271{letter-spacing:0.253080px;}
.ls14_c00271{letter-spacing:0.259920px;}
.ls4c_c00271{letter-spacing:0.294120px;}
.ls0_c00271{letter-spacing:0.300960px;}
.ls1e_c00271{letter-spacing:0.307800px;}
.ls4d_c00271{letter-spacing:0.321480px;}
.ls46_c00271{letter-spacing:0.335160px;}
.ls50_c00271{letter-spacing:0.342000px;}
.ls52_c00271{letter-spacing:0.355680px;}
.ls10_c00271{letter-spacing:0.362520px;}
.ls4a_c00271{letter-spacing:0.369360px;}
.ls43_c00271{letter-spacing:0.376200px;}
.ls19_c00271{letter-spacing:0.417240px;}
.ls1_c00271{letter-spacing:0.424080px;}
.ls11_c00271{letter-spacing:0.430920px;}
.ls4b_c00271{letter-spacing:0.451440px;}
.ls35_c00271{letter-spacing:0.458280px;}
.ls2a_c00271{letter-spacing:0.465120px;}
.ls2_c00271{letter-spacing:0.485640px;}
.ls28_c00271{letter-spacing:0.499320px;}
.ls21_c00271{letter-spacing:0.513000px;}
.ls2d_c00271{letter-spacing:0.540360px;}
.ls9_c00271{letter-spacing:0.554040px;}
.lsb_c00271{letter-spacing:0.560880px;}
.lsa_c00271{letter-spacing:0.567720px;}
.ls3d_c00271{letter-spacing:0.574560px;}
.ls1f_c00271{letter-spacing:0.622440px;}
.ls32_c00271{letter-spacing:0.636120px;}
.ls16_c00271{letter-spacing:0.642960px;}
.ls2b_c00271{letter-spacing:0.677160px;}
.ls69_c00271{letter-spacing:0.731880px;}
.ls3e_c00271{letter-spacing:0.745560px;}
.ls6_c00271{letter-spacing:0.752400px;}
.lsc_c00271{letter-spacing:0.759240px;}
.lsf_c00271{letter-spacing:0.779760px;}
.ls7_c00271{letter-spacing:0.807120px;}
.lsd_c00271{letter-spacing:0.813960px;}
.ls92_c00271{letter-spacing:0.820620px;}
.ls13_c00271{letter-spacing:0.827640px;}
.ls38_c00271{letter-spacing:0.855000px;}
.ls74_c00271{letter-spacing:0.861840px;}
.ls15_c00271{letter-spacing:0.882360px;}
.ls1a_c00271{letter-spacing:0.889200px;}
.ls1b_c00271{letter-spacing:0.896040px;}
.ls53_c00271{letter-spacing:0.909720px;}
.ls8_c00271{letter-spacing:0.916560px;}
.ls78_c00271{letter-spacing:0.930240px;}
.ls6f_c00271{letter-spacing:0.937080px;}
.ls22_c00271{letter-spacing:0.964440px;}
.ls2c_c00271{letter-spacing:0.971280px;}
.ls27_c00271{letter-spacing:0.978120px;}
.lse_c00271{letter-spacing:1.012320px;}
.ls5_c00271{letter-spacing:1.032840px;}
.ls17_c00271{letter-spacing:1.060200px;}
.ls48_c00271{letter-spacing:1.087560px;}
.ls3_c00271{letter-spacing:1.114920px;}
.ls1d_c00271{letter-spacing:1.142280px;}
.ls26_c00271{letter-spacing:1.169640px;}
.ls40_c00271{letter-spacing:1.176480px;}
.ls44_c00271{letter-spacing:1.251720px;}
.ls3b_c00271{letter-spacing:1.272240px;}
.ls4_c00271{letter-spacing:1.285920px;}
.ls20_c00271{letter-spacing:1.292760px;}
.ls23_c00271{letter-spacing:1.409040px;}
.ls24_c00271{letter-spacing:1.443240px;}
.ls49_c00271{letter-spacing:1.511640px;}
.ls12_c00271{letter-spacing:1.648440px;}
.ls2e_c00271{letter-spacing:1.737360px;}
.ls41_c00271{letter-spacing:1.744200px;}
.ls4f_c00271{letter-spacing:1.757880px;}
.ls1c_c00271{letter-spacing:1.792080px;}
.ls37_c00271{letter-spacing:1.812600px;}
.ls39_c00271{letter-spacing:1.826280px;}
.ls29_c00271{letter-spacing:1.990440px;}
.ls45_c00271{letter-spacing:2.387160px;}
.ls33_c00271{letter-spacing:2.701800px;}
.ls68_c00271{letter-spacing:2.715480px;}
.ls3f_c00271{letter-spacing:2.961720px;}
.ls4e_c00271{letter-spacing:3.116880px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{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__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00271{word-spacing:0.000000px;}
.ws1_c00271{word-spacing:2.021280px;}
.ws0_c00271{word-spacing:2.314200px;}
.ws3_c00271{word-spacing:6.608100px;}
.ws4_c00271{word-spacing:8.210640px;}
.ws2_c00271{word-spacing:19.475400px;}
._c_c00271{margin-left:-5.047920px;}
._b_c00271{margin-left:-3.696120px;}
._a_c00271{margin-left:-2.610360px;}
._1_c00271{margin-left:-1.062720px;}
._7_c00271{width:1.096920px;}
._10_c00271{width:2.144520px;}
._8_c00271{width:3.201120px;}
._6_c00271{width:4.879440px;}
._0_c00271{width:6.767460px;}
._f_c00271{width:7.797600px;}
._2_c00271{width:9.354120px;}
._e_c00271{width:10.431000px;}
._d_c00271{width:11.648520px;}
._9_c00271{width:13.269600px;}
._13_c00271{width:14.808600px;}
._11_c00271{width:18.597600px;}
._14_c00271{width:20.495220px;}
._3_c00271{width:21.546000px;}
._5_c00271{width:26.026200px;}
._4_c00271{width:28.372320px;}
._12_c00271{width:33.498360px;}
.fc0_c00271{color:transparent;}
.fs5_c00271{font-size:50.400000px;}
.fs7_c00271{font-size:58.200000px;}
.fs3_c00271{font-size:59.400000px;}
.fs0_c00271{font-size:67.200000px;}
.fs2_c00271{font-size:68.400000px;}
.fs6_c00271{font-size:69.600000px;}
.fs4_c00271{font-size:70.200000px;}
.fs1_c00271{font-size:73.800000px;}
.y0_c00271{bottom:0.000000px;}
.y1a_c00271{bottom:68.415006px;}
.y19_c00271{bottom:145.440006px;}
.y18_c00271{bottom:206.655006px;}
.y17_c00271{bottom:238.695006px;}
.y16_c00271{bottom:270.015006px;}
.y15_c00271{bottom:333.008706px;}
.y14_c00271{bottom:364.692606px;}
.y13_c00271{bottom:426.611706px;}
.y12_c00271{bottom:458.640006px;}
.y11_c00271{bottom:520.935006px;}
.y10_c00271{bottom:552.615006px;}
.yf_c00271{bottom:615.249906px;}
.ye_c00271{bottom:646.560006px;}
.yd_c00271{bottom:708.848706px;}
.yb_c00271{bottom:740.529906px;}
.yc_c00271{bottom:740.535006px;}
.ya_c00271{bottom:771.840006px;}
.y9_c00271{bottom:834.840006px;}
.y8_c00271{bottom:898.201806px;}
.y7_c00271{bottom:929.152806px;}
.y6_c00271{bottom:960.480006px;}
.y5_c00271{bottom:991.455006px;}
.y4_c00271{bottom:1054.095006px;}
.y3_c00271{bottom:1085.767806px;}
.y2_c00271{bottom:1117.095006px;}
.y1_c00271{bottom:1193.055006px;}
.h7_c00271{height:33.566400px;}
.ha_c00271{height:57.120117px;}
.h2_c00271{height:65.953125px;}
.h4_c00271{height:67.130859px;}
.h6_c00271{height:68.897461px;}
.h8_c00271{height:68.907061px;}
.h5_c00271{height:68.922661px;}
.h3_c00271{height:72.394629px;}
.h9_c00271{height:72.590625px;}
.h1_c00271{height:1263.000000px;}
.h0_c00271{height:1263.240006px;}
.w1_c00271{width:892.500000px;}
.w0_c00271{width:892.799998px;}
.x0_c00271{left:0.000000px;}
.x9_c00271{left:112.644898px;}
.x7_c00271{left:113.729999px;}
.x1_c00271{left:116.204999px;}
.x8_c00271{left:167.564999px;}
.x6_c00271{left:168.644998px;}
.x2_c00271{left:170.279999px;}
.xc_c00271{left:203.414998px;}
.xa_c00271{left:223.169998px;}
.xb_c00271{left:256.589999px;}
.xd_c00271{left:308.519999px;}
.x3_c00271{left:325.769999px;}
.xe_c00271{left:329.729999px;}
.x4_c00271{left:356.279998px;}
.xf_c00271{left:364.529998px;}
.x12_c00271{left:416.789999px;}
.x5_c00271{left:423.869999px;}
.x10_c00271{left:494.069999px;}
.x11_c00271{left:515.069999px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls5e_c00271{letter-spacing:-2.296000pt;}
.ls55_c00271{letter-spacing:-2.184480pt;}
.ls8f_c00271{letter-spacing:-2.165333pt;}
.ls5d_c00271{letter-spacing:-2.128000pt;}
.ls54_c00271{letter-spacing:-2.090667pt;}
.ls57_c00271{letter-spacing:-2.027040pt;}
.ls5c_c00271{letter-spacing:-2.000800pt;}
.ls5a_c00271{letter-spacing:-1.927360pt;}
.ls8d_c00271{letter-spacing:-1.909120pt;}
.ls90_c00271{letter-spacing:-1.856480pt;}
.ls79_c00271{letter-spacing:-1.718720pt;}
.ls87_c00271{letter-spacing:-1.548160pt;}
.ls7e_c00271{letter-spacing:-1.538240pt;}
.ls5f_c00271{letter-spacing:-1.495680pt;}
.ls6d_c00271{letter-spacing:-1.456320pt;}
.ls56_c00271{letter-spacing:-1.430080pt;}
.ls8e_c00271{letter-spacing:-1.423520pt;}
.ls7d_c00271{letter-spacing:-1.390720pt;}
.ls77_c00271{letter-spacing:-1.371040pt;}
.ls61_c00271{letter-spacing:-1.312000pt;}
.ls70_c00271{letter-spacing:-1.298880pt;}
.ls81_c00271{letter-spacing:-1.288960pt;}
.ls6a_c00271{letter-spacing:-1.239840pt;}
.ls8a_c00271{letter-spacing:-1.149120pt;}
.ls7f_c00271{letter-spacing:-1.070080pt;}
.ls85_c00271{letter-spacing:-0.960640pt;}
.ls6e_c00271{letter-spacing:-0.863360pt;}
.ls88_c00271{letter-spacing:-0.796480pt;}
.ls76_c00271{letter-spacing:-0.773760pt;}
.ls80_c00271{letter-spacing:-0.772160pt;}
.ls86_c00271{letter-spacing:-0.766080pt;}
.ls60_c00271{letter-spacing:-0.741760pt;}
.ls7c_c00271{letter-spacing:-0.675680pt;}
.ls65_c00271{letter-spacing:-0.608000pt;}
.ls82_c00271{letter-spacing:-0.595840pt;}
.ls72_c00271{letter-spacing:-0.589760pt;}
.ls83_c00271{letter-spacing:-0.510720pt;}
.ls8b_c00271{letter-spacing:-0.480320pt;}
.ls66_c00271{letter-spacing:-0.468160pt;}
.ls67_c00271{letter-spacing:-0.425600pt;}
.ls6c_c00271{letter-spacing:-0.422400pt;}
.ls73_c00271{letter-spacing:-0.419520pt;}
.ls7a_c00271{letter-spacing:-0.407360pt;}
.ls89_c00271{letter-spacing:-0.395200pt;}
.ls6b_c00271{letter-spacing:-0.334400pt;}
.ls84_c00271{letter-spacing:-0.310080pt;}
.ls75_c00271{letter-spacing:-0.231040pt;}
.ls58_c00271{letter-spacing:-0.152000pt;}
.ls63_c00271{letter-spacing:-0.139840pt;}
.ls59_c00271{letter-spacing:-0.133760pt;}
.ls91_c00271{letter-spacing:-0.091200pt;}
.ls71_c00271{letter-spacing:-0.085120pt;}
.ls8c_c00271{letter-spacing:-0.060800pt;}
.ls62_c00271{letter-spacing:-0.036480pt;}
.ls7b_c00271{letter-spacing:-0.012480pt;}
.ls64_c00271{letter-spacing:0.000000pt;}
.ls47_c00271{letter-spacing:0.006080pt;}
.ls30_c00271{letter-spacing:0.012160pt;}
.ls5b_c00271{letter-spacing:0.036480pt;}
.ls25_c00271{letter-spacing:0.042560pt;}
.ls36_c00271{letter-spacing:0.072960pt;}
.ls18_c00271{letter-spacing:0.085120pt;}
.ls3c_c00271{letter-spacing:0.091200pt;}
.ls34_c00271{letter-spacing:0.097280pt;}
.ls3a_c00271{letter-spacing:0.121600pt;}
.ls31_c00271{letter-spacing:0.188480pt;}
.ls51_c00271{letter-spacing:0.206720pt;}
.ls42_c00271{letter-spacing:0.218880pt;}
.ls2f_c00271{letter-spacing:0.224960pt;}
.ls14_c00271{letter-spacing:0.231040pt;}
.ls4c_c00271{letter-spacing:0.261440pt;}
.ls0_c00271{letter-spacing:0.267520pt;}
.ls1e_c00271{letter-spacing:0.273600pt;}
.ls4d_c00271{letter-spacing:0.285760pt;}
.ls46_c00271{letter-spacing:0.297920pt;}
.ls50_c00271{letter-spacing:0.304000pt;}
.ls52_c00271{letter-spacing:0.316160pt;}
.ls10_c00271{letter-spacing:0.322240pt;}
.ls4a_c00271{letter-spacing:0.328320pt;}
.ls43_c00271{letter-spacing:0.334400pt;}
.ls19_c00271{letter-spacing:0.370880pt;}
.ls1_c00271{letter-spacing:0.376960pt;}
.ls11_c00271{letter-spacing:0.383040pt;}
.ls4b_c00271{letter-spacing:0.401280pt;}
.ls35_c00271{letter-spacing:0.407360pt;}
.ls2a_c00271{letter-spacing:0.413440pt;}
.ls2_c00271{letter-spacing:0.431680pt;}
.ls28_c00271{letter-spacing:0.443840pt;}
.ls21_c00271{letter-spacing:0.456000pt;}
.ls2d_c00271{letter-spacing:0.480320pt;}
.ls9_c00271{letter-spacing:0.492480pt;}
.lsb_c00271{letter-spacing:0.498560pt;}
.lsa_c00271{letter-spacing:0.504640pt;}
.ls3d_c00271{letter-spacing:0.510720pt;}
.ls1f_c00271{letter-spacing:0.553280pt;}
.ls32_c00271{letter-spacing:0.565440pt;}
.ls16_c00271{letter-spacing:0.571520pt;}
.ls2b_c00271{letter-spacing:0.601920pt;}
.ls69_c00271{letter-spacing:0.650560pt;}
.ls3e_c00271{letter-spacing:0.662720pt;}
.ls6_c00271{letter-spacing:0.668800pt;}
.lsc_c00271{letter-spacing:0.674880pt;}
.lsf_c00271{letter-spacing:0.693120pt;}
.ls7_c00271{letter-spacing:0.717440pt;}
.lsd_c00271{letter-spacing:0.723520pt;}
.ls92_c00271{letter-spacing:0.729440pt;}
.ls13_c00271{letter-spacing:0.735680pt;}
.ls38_c00271{letter-spacing:0.760000pt;}
.ls74_c00271{letter-spacing:0.766080pt;}
.ls15_c00271{letter-spacing:0.784320pt;}
.ls1a_c00271{letter-spacing:0.790400pt;}
.ls1b_c00271{letter-spacing:0.796480pt;}
.ls53_c00271{letter-spacing:0.808640pt;}
.ls8_c00271{letter-spacing:0.814720pt;}
.ls78_c00271{letter-spacing:0.826880pt;}
.ls6f_c00271{letter-spacing:0.832960pt;}
.ls22_c00271{letter-spacing:0.857280pt;}
.ls2c_c00271{letter-spacing:0.863360pt;}
.ls27_c00271{letter-spacing:0.869440pt;}
.lse_c00271{letter-spacing:0.899840pt;}
.ls5_c00271{letter-spacing:0.918080pt;}
.ls17_c00271{letter-spacing:0.942400pt;}
.ls48_c00271{letter-spacing:0.966720pt;}
.ls3_c00271{letter-spacing:0.991040pt;}
.ls1d_c00271{letter-spacing:1.015360pt;}
.ls26_c00271{letter-spacing:1.039680pt;}
.ls40_c00271{letter-spacing:1.045760pt;}
.ls44_c00271{letter-spacing:1.112640pt;}
.ls3b_c00271{letter-spacing:1.130880pt;}
.ls4_c00271{letter-spacing:1.143040pt;}
.ls20_c00271{letter-spacing:1.149120pt;}
.ls23_c00271{letter-spacing:1.252480pt;}
.ls24_c00271{letter-spacing:1.282880pt;}
.ls49_c00271{letter-spacing:1.343680pt;}
.ls12_c00271{letter-spacing:1.465280pt;}
.ls2e_c00271{letter-spacing:1.544320pt;}
.ls41_c00271{letter-spacing:1.550400pt;}
.ls4f_c00271{letter-spacing:1.562560pt;}
.ls1c_c00271{letter-spacing:1.592960pt;}
.ls37_c00271{letter-spacing:1.611200pt;}
.ls39_c00271{letter-spacing:1.623360pt;}
.ls29_c00271{letter-spacing:1.769280pt;}
.ls45_c00271{letter-spacing:2.121920pt;}
.ls33_c00271{letter-spacing:2.401600pt;}
.ls68_c00271{letter-spacing:2.413760pt;}
.ls3f_c00271{letter-spacing:2.632640pt;}
.ls4e_c00271{letter-spacing:2.770560pt;}
.ws5_c00271{word-spacing:0.000000pt;}
.ws1_c00271{word-spacing:1.796693pt;}
.ws0_c00271{word-spacing:2.057067pt;}
.ws3_c00271{word-spacing:5.873867pt;}
.ws4_c00271{word-spacing:7.298347pt;}
.ws2_c00271{word-spacing:17.311467pt;}
._c_c00271{margin-left:-4.487040pt;}
._b_c00271{margin-left:-3.285440pt;}
._a_c00271{margin-left:-2.320320pt;}
._1_c00271{margin-left:-0.944640pt;}
._7_c00271{width:0.975040pt;}
._10_c00271{width:1.906240pt;}
._8_c00271{width:2.845440pt;}
._6_c00271{width:4.337280pt;}
._0_c00271{width:6.015520pt;}
._f_c00271{width:6.931200pt;}
._2_c00271{width:8.314773pt;}
._e_c00271{width:9.272000pt;}
._d_c00271{width:10.354240pt;}
._9_c00271{width:11.795200pt;}
._13_c00271{width:13.163200pt;}
._11_c00271{width:16.531200pt;}
._14_c00271{width:18.217973pt;}
._3_c00271{width:19.152000pt;}
._5_c00271{width:23.134400pt;}
._4_c00271{width:25.219840pt;}
._12_c00271{width:29.776320pt;}
.fs5_c00271{font-size:44.800000pt;}
.fs7_c00271{font-size:51.733333pt;}
.fs3_c00271{font-size:52.800000pt;}
.fs0_c00271{font-size:59.733333pt;}
.fs2_c00271{font-size:60.800000pt;}
.fs6_c00271{font-size:61.866667pt;}
.fs4_c00271{font-size:62.400000pt;}
.fs1_c00271{font-size:65.600000pt;}
.y0_c00271{bottom:0.000000pt;}
.y1a_c00271{bottom:60.813339pt;}
.y19_c00271{bottom:129.280005pt;}
.y18_c00271{bottom:183.693339pt;}
.y17_c00271{bottom:212.173339pt;}
.y16_c00271{bottom:240.013339pt;}
.y15_c00271{bottom:296.007739pt;}
.y14_c00271{bottom:324.171205pt;}
.y13_c00271{bottom:379.210405pt;}
.y12_c00271{bottom:407.680005pt;}
.y11_c00271{bottom:463.053339pt;}
.y10_c00271{bottom:491.213339pt;}
.yf_c00271{bottom:546.888805pt;}
.ye_c00271{bottom:574.720005pt;}
.yd_c00271{bottom:630.087739pt;}
.yb_c00271{bottom:658.248805pt;}
.yc_c00271{bottom:658.253339pt;}
.ya_c00271{bottom:686.080005pt;}
.y9_c00271{bottom:742.080005pt;}
.y8_c00271{bottom:798.401605pt;}
.y7_c00271{bottom:825.913605pt;}
.y6_c00271{bottom:853.760005pt;}
.y5_c00271{bottom:881.293339pt;}
.y4_c00271{bottom:936.973339pt;}
.y3_c00271{bottom:965.126939pt;}
.y2_c00271{bottom:992.973339pt;}
.y1_c00271{bottom:1060.493339pt;}
.h7_c00271{height:29.836800pt;}
.ha_c00271{height:50.773437pt;}
.h2_c00271{height:58.625000pt;}
.h4_c00271{height:59.671875pt;}
.h6_c00271{height:61.242187pt;}
.h8_c00271{height:61.250721pt;}
.h5_c00271{height:61.264588pt;}
.h3_c00271{height:64.350781pt;}
.h9_c00271{height:64.525000pt;}
.h1_c00271{height:1122.666667pt;}
.h0_c00271{height:1122.880005pt;}
.w1_c00271{width:793.333333pt;}
.w0_c00271{width:793.599999pt;}
.x0_c00271{left:0.000000pt;}
.x9_c00271{left:100.128799pt;}
.x7_c00271{left:101.093332pt;}
.x1_c00271{left:103.293332pt;}
.x8_c00271{left:148.946665pt;}
.x6_c00271{left:149.906665pt;}
.x2_c00271{left:151.359999pt;}
.xc_c00271{left:180.813332pt;}
.xa_c00271{left:198.373332pt;}
.xb_c00271{left:228.079999pt;}
.xd_c00271{left:274.239999pt;}
.x3_c00271{left:289.573332pt;}
.xe_c00271{left:293.093332pt;}
.x4_c00271{left:316.693332pt;}
.xf_c00271{left:324.026665pt;}
.x12_c00271{left:370.479999pt;}
.x5_c00271{left:376.773332pt;}
.x10_c00271{left:439.173332pt;}
.x11_c00271{left:457.839999pt;}
}





/* 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_c00272 {
    display:none;
  }
  .loading-indicator_c00272.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00272 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_c00272 { 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_c00272" -> "#page-container .classname_c00272")
 */
.pf_c00272 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00272 { /* 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_c00272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00272 { /* 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_c00272 { /* 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_c00272 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00272 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00272 {overflow:visible;}
  }
}
.c_c00272 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00272 { /* 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_c00272:after { /* webkit #35443 */
  content: '';
}
.t_c00272:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00272 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 */
}
.__c00272 { /* 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_c00272 { /* info for Javascript */
  display:none;
}
.l_c00272 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00272 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00272 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00272: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_c00272 {
    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_c00272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00272.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_c00272 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00272;src:url('chunks/assets/font_748d99e1256362de1615be9e.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;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:ff2_c00272;src:url('chunks/assets/font_410adce79bd7faacb7adc405.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.284180;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_c00272;src:url('chunks/assets/font_90c164980a547ea2546a8d66.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.284668;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_c00272;src:url('chunks/assets/font_5e75b2b39dedf49eef7b1f7d.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;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:ff5_c00272;src:url('chunks/assets/font_8dbca1e50a64e463a2dbd625.woff2')format("woff");}.ff5_c00272{font-family:ff5_c00272;line-height:0.666000;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_c00272{transform:matrix(0.047897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047897,0.000000,0.000000,0.250000,0,0);}
.m3_c00272{transform:matrix(0.115105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115105,0.000000,0.000000,0.250000,0,0);}
.m2_c00272{transform:matrix(0.127453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127453,0.000000,0.000000,0.250000,0,0);}
.m0_c00272{transform:matrix(0.128824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128824,0.000000,0.000000,0.250000,0,0);}
.m7_c00272{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.m6_c00272{transform:matrix(0.188566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188566,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{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);}
.m5_c00272{transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.lsb_c00272{letter-spacing:-10.836000px;}
.ls5_c00272{letter-spacing:-2.562000px;}
.lsd_c00272{letter-spacing:-2.205000px;}
.lsf_c00272{letter-spacing:-2.058000px;}
.ls6_c00272{letter-spacing:-1.701300px;}
.lsa_c00272{letter-spacing:0.000000px;}
.ls7_c00272{letter-spacing:0.038520px;}
.lsc_c00272{letter-spacing:0.046200px;}
.ls8_c00272{letter-spacing:0.166920px;}
.ls9_c00272{letter-spacing:0.686940px;}
.ls0_c00272{letter-spacing:0.853860px;}
.ls1_c00272{letter-spacing:0.969420px;}
.ls3_c00272{letter-spacing:1.059300px;}
.ls2_c00272{letter-spacing:1.277580px;}
.lse_c00272{letter-spacing:1.920030px;}
.ls4_c00272{letter-spacing:2.395800px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{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__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00272{word-spacing:-0.616320px;}
.ws3_c00272{word-spacing:0.000000px;}
.ws1_c00272{word-spacing:1.771920px;}
.ws0_c00272{word-spacing:6.034800px;}
._1_c00272{margin-left:-4.956600px;}
._0_c00272{width:1.174860px;}
.fc0_c00272{color:transparent;}
.fs9_c00272{font-size:38.400600px;}
.fs6_c00272{font-size:50.400000px;}
.fs2_c00272{font-size:52.800000px;}
.fsa_c00272{font-size:58.800000px;}
.fs5_c00272{font-size:63.000000px;}
.fsb_c00272{font-size:63.360000px;}
.fs1_c00272{font-size:64.200000px;}
.fs4_c00272{font-size:66.000000px;}
.fs0_c00272{font-size:73.200000px;}
.fs8_c00272{font-size:82.200000px;}
.fs7_c00272{font-size:308.160600px;}
.fs3_c00272{font-size:309.600000px;}
.y0_c00272{bottom:0.000000px;}
.y4_c00272{bottom:148.324506px;}
.y3_c00272{bottom:166.685706px;}
.y2_c00272{bottom:185.400006px;}
.y6_c00272{bottom:478.800006px;}
.yc_c00272{bottom:506.535006px;}
.yd_c00272{bottom:515.535006px;}
.y5_c00272{bottom:532.095006px;}
.yb_c00272{bottom:541.455006px;}
.ya_c00272{bottom:550.800006px;}
.y9_c00272{bottom:575.280006px;}
.y8_c00272{bottom:1078.935006px;}
.y1_c00272{bottom:1080.360006px;}
.y7_c00272{bottom:1144.800006px;}
.hb_c00272{height:37.688089px;}
.hd_c00272{height:42.197760px;}
.h8_c00272{height:49.464844px;}
.h4_c00272{height:51.820313px;}
.hc_c00272{height:61.326563px;}
.h7_c00272{height:61.831055px;}
.h3_c00272{height:62.977441px;}
.h6_c00272{height:64.775391px;}
.h2_c00272{height:76.345312px;}
.ha_c00272{height:85.732031px;}
.h9_c00272{height:205.234960px;}
.h5_c00272{height:322.903125px;}
.h1_c00272{height:1263.000000px;}
.h0_c00272{height:1263.240006px;}
.w1_c00272{width:892.500000px;}
.w0_c00272{width:892.799998px;}
.x0_c00272{left:0.000000px;}
.x1_c00272{left:119.309999px;}
.x3_c00272{left:120.869998px;}
.x2_c00272{left:122.474998px;}
.x5_c00272{left:371.324998px;}
.x4_c00272{left:373.214999px;}
.xa_c00272{left:664.334998px;}
.x8_c00272{left:666.299998px;}
.x6_c00272{left:674.909999px;}
.x9_c00272{left:711.014998px;}
.xb_c00272{left:712.439999px;}
.x7_c00272{left:797.159999px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.lsb_c00272{letter-spacing:-9.632000pt;}
.ls5_c00272{letter-spacing:-2.277333pt;}
.lsd_c00272{letter-spacing:-1.960000pt;}
.lsf_c00272{letter-spacing:-1.829333pt;}
.ls6_c00272{letter-spacing:-1.512267pt;}
.lsa_c00272{letter-spacing:0.000000pt;}
.ls7_c00272{letter-spacing:0.034240pt;}
.lsc_c00272{letter-spacing:0.041067pt;}
.ls8_c00272{letter-spacing:0.148373pt;}
.ls9_c00272{letter-spacing:0.610613pt;}
.ls0_c00272{letter-spacing:0.758987pt;}
.ls1_c00272{letter-spacing:0.861707pt;}
.ls3_c00272{letter-spacing:0.941600pt;}
.ls2_c00272{letter-spacing:1.135627pt;}
.lse_c00272{letter-spacing:1.706693pt;}
.ls4_c00272{letter-spacing:2.129600pt;}
.ws2_c00272{word-spacing:-0.547840pt;}
.ws3_c00272{word-spacing:0.000000pt;}
.ws1_c00272{word-spacing:1.575040pt;}
.ws0_c00272{word-spacing:5.364267pt;}
._1_c00272{margin-left:-4.405867pt;}
._0_c00272{width:1.044320pt;}
.fs9_c00272{font-size:34.133867pt;}
.fs6_c00272{font-size:44.800000pt;}
.fs2_c00272{font-size:46.933333pt;}
.fsa_c00272{font-size:52.266667pt;}
.fs5_c00272{font-size:56.000000pt;}
.fsb_c00272{font-size:56.320000pt;}
.fs1_c00272{font-size:57.066667pt;}
.fs4_c00272{font-size:58.666667pt;}
.fs0_c00272{font-size:65.066667pt;}
.fs8_c00272{font-size:73.066667pt;}
.fs7_c00272{font-size:273.920533pt;}
.fs3_c00272{font-size:275.200000pt;}
.y0_c00272{bottom:0.000000pt;}
.y4_c00272{bottom:131.844005pt;}
.y3_c00272{bottom:148.165072pt;}
.y2_c00272{bottom:164.800005pt;}
.y6_c00272{bottom:425.600005pt;}
.yc_c00272{bottom:450.253339pt;}
.yd_c00272{bottom:458.253339pt;}
.y5_c00272{bottom:472.973339pt;}
.yb_c00272{bottom:481.293339pt;}
.ya_c00272{bottom:489.600005pt;}
.y9_c00272{bottom:511.360005pt;}
.y8_c00272{bottom:959.053339pt;}
.y1_c00272{bottom:960.320005pt;}
.y7_c00272{bottom:1017.600005pt;}
.hb_c00272{height:33.500523pt;}
.hd_c00272{height:37.509120pt;}
.h8_c00272{height:43.968750pt;}
.h4_c00272{height:46.062500pt;}
.hc_c00272{height:54.512500pt;}
.h7_c00272{height:54.960938pt;}
.h3_c00272{height:55.979948pt;}
.h6_c00272{height:57.578125pt;}
.h2_c00272{height:67.862500pt;}
.ha_c00272{height:76.206250pt;}
.h9_c00272{height:182.431075pt;}
.h5_c00272{height:287.025000pt;}
.h1_c00272{height:1122.666667pt;}
.h0_c00272{height:1122.880005pt;}
.w1_c00272{width:793.333333pt;}
.w0_c00272{width:793.599999pt;}
.x0_c00272{left:0.000000pt;}
.x1_c00272{left:106.053332pt;}
.x3_c00272{left:107.439999pt;}
.x2_c00272{left:108.866665pt;}
.x5_c00272{left:330.066665pt;}
.x4_c00272{left:331.746665pt;}
.xa_c00272{left:590.519999pt;}
.x8_c00272{left:592.266665pt;}
.x6_c00272{left:599.919999pt;}
.x9_c00272{left:632.013332pt;}
.xb_c00272{left:633.279999pt;}
.x7_c00272{left:708.586665pt;}
}





/* 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_c00273 {
    display:none;
  }
  .loading-indicator_c00273.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00273 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_c00273 { 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_c00273" -> "#page-container .classname_c00273")
 */
.pf_c00273 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00273 { /* 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_c00273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00273 { /* 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_c00273 { /* 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_c00273 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00273 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00273 {overflow:visible;}
  }
}
.c_c00273 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00273 { /* 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_c00273:after { /* webkit #35443 */
  content: '';
}
.t_c00273:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00273 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 */
}
.__c00273 { /* 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_c00273 { /* info for Javascript */
  display:none;
}
.l_c00273 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00273 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00273 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00273: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_c00273 {
    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_c00273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00273.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_c00273 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00273;src:url('chunks/assets/font_10181687b1096a7e6dc52185.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.284668;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_c00273;src:url('chunks/assets/font_862dfeda78eab33e43a8b6f9.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.284180;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_c00273;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;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:ff4_c00273;src:url('chunks/assets/font_fa527bd09eea87eb4d7bc872.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:0.666000;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;}
.m6_c00273{transform:matrix(0.105903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105903,0.000000,0.000000,0.250000,0,0);}
.m5_c00273{transform:matrix(0.167538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167538,0.000000,0.000000,0.250000,0,0);}
.m3_c00273{transform:matrix(0.185071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185071,0.000000,0.000000,0.250000,0,0);}
.m2_c00273{transform:matrix(0.187677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187677,0.000000,0.000000,0.250000,0,0);}
.m8_c00273{transform:matrix(0.212788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212788,0.000000,0.000000,0.250000,0,0);}
.m1_c00273{transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);}
.ma_c00273{transform:matrix(0.227051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227051,0.000000,0.000000,0.250000,0,0);}
.m4_c00273{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m9_c00273{transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239254,0.000000,0.000000,0.250000,0,0);}
.m0_c00273{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);}
.m7_c00273{transform:matrix(0.253710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253710,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls69_c00273{letter-spacing:-2.373000px;}
.ls95_c00273{letter-spacing:-2.332320px;}
.ls7c_c00273{letter-spacing:-2.310000px;}
.ls93_c00273{letter-spacing:-2.291640px;}
.ls99_c00273{letter-spacing:-2.163000px;}
.ls70_c00273{letter-spacing:-2.079000px;}
.ls84_c00273{letter-spacing:-1.891620px;}
.ls77_c00273{letter-spacing:-1.572960px;}
.ls78_c00273{letter-spacing:-1.417020px;}
.ls83_c00273{letter-spacing:-1.410240px;}
.ls7a_c00273{letter-spacing:-1.403460px;}
.ls79_c00273{letter-spacing:-1.247520px;}
.ls90_c00273{letter-spacing:-1.220400px;}
.ls86_c00273{letter-spacing:-1.010220px;}
.ls97_c00273{letter-spacing:-0.976320px;}
.ls92_c00273{letter-spacing:-0.928860px;}
.ls91_c00273{letter-spacing:-0.915300px;}
.ls66_c00273{letter-spacing:-0.847500px;}
.ls8c_c00273{letter-spacing:-0.739020px;}
.ls82_c00273{letter-spacing:-0.691560px;}
.ls6b_c00273{letter-spacing:-0.657660px;}
.ls72_c00273{letter-spacing:-0.650880px;}
.ls98_c00273{letter-spacing:-0.616980px;}
.ls94_c00273{letter-spacing:-0.569520px;}
.ls85_c00273{letter-spacing:-0.522060px;}
.ls8e_c00273{letter-spacing:-0.515280px;}
.ls8b_c00273{letter-spacing:-0.494940px;}
.ls81_c00273{letter-spacing:-0.386460px;}
.ls6d_c00273{letter-spacing:-0.359340px;}
.ls68_c00273{letter-spacing:-0.264420px;}
.ls96_c00273{letter-spacing:-0.210180px;}
.ls7f_c00273{letter-spacing:-0.183060px;}
.ls6f_c00273{letter-spacing:-0.149160px;}
.ls75_c00273{letter-spacing:-0.142380px;}
.ls74_c00273{letter-spacing:-0.135600px;}
.ls73_c00273{letter-spacing:-0.128820px;}
.ls89_c00273{letter-spacing:-0.094920px;}
.ls8f_c00273{letter-spacing:-0.081360px;}
.ls6c_c00273{letter-spacing:-0.067800px;}
.ls65_c00273{letter-spacing:-0.061020px;}
.ls80_c00273{letter-spacing:-0.027120px;}
.ls71_c00273{letter-spacing:-0.013560px;}
.ls76_c00273{letter-spacing:0.000000px;}
.ls7e_c00273{letter-spacing:0.020340px;}
.ls32_c00273{letter-spacing:0.027120px;}
.ls10_c00273{letter-spacing:0.033900px;}
.ls43_c00273{letter-spacing:0.040680px;}
.ls45_c00273{letter-spacing:0.047460px;}
.ls38_c00273{letter-spacing:0.061020px;}
.ls61_c00273{letter-spacing:0.067800px;}
.ls36_c00273{letter-spacing:0.081360px;}
.ls7b_c00273{letter-spacing:0.101700px;}
.ls25_c00273{letter-spacing:0.122040px;}
.ls1c_c00273{letter-spacing:0.128820px;}
.ls5b_c00273{letter-spacing:0.142380px;}
.ls7d_c00273{letter-spacing:0.149160px;}
.ls87_c00273{letter-spacing:0.155940px;}
.ls57_c00273{letter-spacing:0.162720px;}
.ls6e_c00273{letter-spacing:0.169500px;}
.ls26_c00273{letter-spacing:0.189840px;}
.lsd_c00273{letter-spacing:0.203400px;}
.ls8d_c00273{letter-spacing:0.216960px;}
.ls2c_c00273{letter-spacing:0.230520px;}
.ls58_c00273{letter-spacing:0.237300px;}
.ls6a_c00273{letter-spacing:0.244080px;}
.ls2b_c00273{letter-spacing:0.257640px;}
.ls4d_c00273{letter-spacing:0.277980px;}
.ls19_c00273{letter-spacing:0.298320px;}
.ls4b_c00273{letter-spacing:0.305100px;}
.ls54_c00273{letter-spacing:0.311880px;}
.ls3b_c00273{letter-spacing:0.339000px;}
.ls15_c00273{letter-spacing:0.345780px;}
.ls1d_c00273{letter-spacing:0.352560px;}
.ls3f_c00273{letter-spacing:0.359340px;}
.ls5_c00273{letter-spacing:0.372900px;}
.ls56_c00273{letter-spacing:0.379680px;}
.ls12_c00273{letter-spacing:0.386460px;}
.ls22_c00273{letter-spacing:0.393240px;}
.lse_c00273{letter-spacing:0.400020px;}
.lsf_c00273{letter-spacing:0.413580px;}
.ls4_c00273{letter-spacing:0.420360px;}
.ls60_c00273{letter-spacing:0.433920px;}
.ls2_c00273{letter-spacing:0.440700px;}
.ls49_c00273{letter-spacing:0.447480px;}
.ls59_c00273{letter-spacing:0.454260px;}
.ls62_c00273{letter-spacing:0.461040px;}
.ls14_c00273{letter-spacing:0.467820px;}
.ls18_c00273{letter-spacing:0.474600px;}
.ls51_c00273{letter-spacing:0.481380px;}
.ls47_c00273{letter-spacing:0.488160px;}
.ls67_c00273{letter-spacing:0.494940px;}
.ls28_c00273{letter-spacing:0.508500px;}
.ls1a_c00273{letter-spacing:0.528840px;}
.ls63_c00273{letter-spacing:0.535620px;}
.ls2e_c00273{letter-spacing:0.549180px;}
.ls5f_c00273{letter-spacing:0.562740px;}
.ls23_c00273{letter-spacing:0.576300px;}
.ls48_c00273{letter-spacing:0.583080px;}
.ls20_c00273{letter-spacing:0.589860px;}
.ls5c_c00273{letter-spacing:0.610200px;}
.lsb_c00273{letter-spacing:0.623760px;}
.ls5e_c00273{letter-spacing:0.644100px;}
.ls4a_c00273{letter-spacing:0.671220px;}
.ls0_c00273{letter-spacing:0.678000px;}
.ls24_c00273{letter-spacing:0.684780px;}
.ls5a_c00273{letter-spacing:0.718680px;}
.ls3e_c00273{letter-spacing:0.725460px;}
.ls8_c00273{letter-spacing:0.732240px;}
.ls11_c00273{letter-spacing:0.739020px;}
.ls29_c00273{letter-spacing:0.759360px;}
.ls31_c00273{letter-spacing:0.766140px;}
.ls41_c00273{letter-spacing:0.793260px;}
.ls46_c00273{letter-spacing:0.800040px;}
.ls35_c00273{letter-spacing:0.806820px;}
.ls30_c00273{letter-spacing:0.813600px;}
.ls2a_c00273{letter-spacing:0.820380px;}
.ls88_c00273{letter-spacing:0.827160px;}
.ls1f_c00273{letter-spacing:0.833940px;}
.lsc_c00273{letter-spacing:0.847500px;}
.ls53_c00273{letter-spacing:0.849600px;}
.ls37_c00273{letter-spacing:0.861060px;}
.ls16_c00273{letter-spacing:0.894960px;}
.ls4f_c00273{letter-spacing:1.037340px;}
.ls39_c00273{letter-spacing:1.044120px;}
.ls21_c00273{letter-spacing:1.078020px;}
.ls52_c00273{letter-spacing:1.090320px;}
.ls13_c00273{letter-spacing:1.091580px;}
.ls1e_c00273{letter-spacing:1.118700px;}
.ls33_c00273{letter-spacing:1.132260px;}
.ls4c_c00273{letter-spacing:1.159380px;}
.lsa_c00273{letter-spacing:1.193280px;}
.ls1_c00273{letter-spacing:1.200060px;}
.ls1b_c00273{letter-spacing:1.206840px;}
.ls64_c00273{letter-spacing:1.285200px;}
.ls40_c00273{letter-spacing:1.362780px;}
.ls3a_c00273{letter-spacing:1.403460px;}
.ls3c_c00273{letter-spacing:1.471260px;}
.ls7_c00273{letter-spacing:1.484820px;}
.ls17_c00273{letter-spacing:1.498380px;}
.ls44_c00273{letter-spacing:1.505160px;}
.ls2d_c00273{letter-spacing:1.613640px;}
.ls42_c00273{letter-spacing:1.674660px;}
.ls55_c00273{letter-spacing:1.823820px;}
.ls3d_c00273{letter-spacing:1.830600px;}
.ls50_c00273{letter-spacing:1.918740px;}
.ls6_c00273{letter-spacing:2.162820px;}
.ls9_c00273{letter-spacing:2.203500px;}
.ls2f_c00273{letter-spacing:2.223840px;}
.ls34_c00273{letter-spacing:2.373000px;}
.ls27_c00273{letter-spacing:2.773020px;}
.ls3_c00273{letter-spacing:2.800140px;}
.ls5d_c00273{letter-spacing:2.881500px;}
.ls4e_c00273{letter-spacing:3.376440px;}
.ls8a_c00273{letter-spacing:3.390000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{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__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00273{word-spacing:-1.491600px;}
.ws5_c00273{word-spacing:0.000000px;}
.ws3_c00273{word-spacing:0.305100px;}
.ws0_c00273{word-spacing:5.533560px;}
.ws4_c00273{word-spacing:6.874920px;}
.ws2_c00273{word-spacing:19.526400px;}
._13_c00273{margin-left:-5.600280px;}
._b_c00273{margin-left:-4.020540px;}
._c_c00273{margin-left:-2.637420px;}
._14_c00273{margin-left:-1.551660px;}
._2_c00273{width:2.006880px;}
._5_c00273{width:3.342540px;}
._1_c00273{width:4.908720px;}
._0_c00273{width:6.305400px;}
._3_c00273{width:7.600380px;}
._4_c00273{width:9.180120px;}
._16_c00273{width:10.780200px;}
._f_c00273{width:11.937480px;}
._d_c00273{width:13.037940px;}
._9_c00273{width:14.692260px;}
._10_c00273{width:16.272000px;}
._e_c00273{width:18.000900px;}
._6_c00273{width:19.275540px;}
._7_c00273{width:20.882400px;}
._12_c00273{width:21.906180px;}
._a_c00273{width:22.918500px;}
._8_c00273{width:25.031760px;}
._11_c00273{width:26.948400px;}
._15_c00273{width:28.523460px;}
.fc0_c00273{color:transparent;}
.fs4_c00273{font-size:51.840000px;}
.fs2_c00273{font-size:59.400000px;}
.fs0_c00273{font-size:61.200000px;}
.fs6_c00273{font-size:61.800000px;}
.fs3_c00273{font-size:66.000000px;}
.fs1_c00273{font-size:67.800000px;}
.fs5_c00273{font-size:70.800000px;}
.y0_c00273{bottom:0.000000px;}
.y20_c00273{bottom:67.695015px;}
.y1f_c00273{bottom:145.083315px;}
.y1e_c00273{bottom:175.695015px;}
.y1d_c00273{bottom:206.651415px;}
.y1c_c00273{bottom:237.975015px;}
.y1b_c00273{bottom:237.980715px;}
.y1a_c00273{bottom:300.255015px;}
.y19_c00273{bottom:300.260265px;}
.y17_c00273{bottom:330.851415px;}
.y18_c00273{bottom:330.855015px;}
.y15_c00273{bottom:362.171865px;}
.y16_c00273{bottom:362.175015px;}
.y14_c00273{bottom:425.175015px;}
.y13_c00273{bottom:456.480015px;}
.y12_c00273{bottom:519.474465px;}
.y11_c00273{bottom:550.807815px;}
.y10_c00273{bottom:613.455015px;}
.ye_c00273{bottom:675.729315px;}
.yf_c00273{bottom:675.735015px;}
.yd_c00273{bottom:706.676115px;}
.yc_c00273{bottom:737.643765px;}
.yb_c00273{bottom:768.967365px;}
.ya_c00273{bottom:799.931415px;}
.y9_c00273{bottom:831.255015px;}
.y8_c00273{bottom:893.880015px;}
.y7_c00273{bottom:956.175015px;}
.y6_c00273{bottom:987.131415px;}
.y4_c00273{bottom:1018.444215px;}
.y5_c00273{bottom:1018.455015px;}
.y3_c00273{bottom:1081.091415px;}
.y2_c00273{bottom:1112.415015px;}
.y1_c00273{bottom:1187.655015px;}
.ha_c00273{height:34.525440px;}
.h6_c00273{height:58.297852px;}
.h2_c00273{height:60.064453px;}
.hf_c00273{height:60.653320px;}
.he_c00273{height:66.508887px;}
.h3_c00273{height:66.541992px;}
.hd_c00273{height:66.554592px;}
.h5_c00273{height:66.556392px;}
.h7_c00273{height:66.557592px;}
.h8_c00273{height:66.564792px;}
.hb_c00273{height:66.570792px;}
.h4_c00273{height:66.585192px;}
.h9_c00273{height:68.835938px;}
.hc_c00273{height:69.451758px;}
.h1_c00273{height:1263.000000px;}
.h0_c00273{height:1263.240015px;}
.w1_c00273{width:892.500000px;}
.w0_c00273{width:892.800015px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:121.605015px;}
.x2_c00273{left:175.828815px;}
.x14_c00273{left:290.850015px;}
.xb_c00273{left:295.575015px;}
.x15_c00273{left:321.390015px;}
.x12_c00273{left:397.590015px;}
.x13_c00273{left:413.445015px;}
.x16_c00273{left:422.910015px;}
.x9_c00273{left:434.895015px;}
.x5_c00273{left:445.320015px;}
.x6_c00273{left:477.210015px;}
.xe_c00273{left:494.445015px;}
.x3_c00273{left:505.050015px;}
.xa_c00273{left:508.665015px;}
.xf_c00273{left:530.775015px;}
.x4_c00273{left:537.015015px;}
.xc_c00273{left:623.175015px;}
.x8_c00273{left:626.535015px;}
.x10_c00273{left:627.675015px;}
.xd_c00273{left:651.045015px;}
.x11_c00273{left:656.085015px;}
.x7_c00273{left:679.320015px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls69_c00273{letter-spacing:-2.109333pt;}
.ls95_c00273{letter-spacing:-2.073173pt;}
.ls7c_c00273{letter-spacing:-2.053333pt;}
.ls93_c00273{letter-spacing:-2.037013pt;}
.ls99_c00273{letter-spacing:-1.922667pt;}
.ls70_c00273{letter-spacing:-1.848000pt;}
.ls84_c00273{letter-spacing:-1.681440pt;}
.ls77_c00273{letter-spacing:-1.398187pt;}
.ls78_c00273{letter-spacing:-1.259573pt;}
.ls83_c00273{letter-spacing:-1.253547pt;}
.ls7a_c00273{letter-spacing:-1.247520pt;}
.ls79_c00273{letter-spacing:-1.108907pt;}
.ls90_c00273{letter-spacing:-1.084800pt;}
.ls86_c00273{letter-spacing:-0.897973pt;}
.ls97_c00273{letter-spacing:-0.867840pt;}
.ls92_c00273{letter-spacing:-0.825653pt;}
.ls91_c00273{letter-spacing:-0.813600pt;}
.ls66_c00273{letter-spacing:-0.753333pt;}
.ls8c_c00273{letter-spacing:-0.656907pt;}
.ls82_c00273{letter-spacing:-0.614720pt;}
.ls6b_c00273{letter-spacing:-0.584587pt;}
.ls72_c00273{letter-spacing:-0.578560pt;}
.ls98_c00273{letter-spacing:-0.548427pt;}
.ls94_c00273{letter-spacing:-0.506240pt;}
.ls85_c00273{letter-spacing:-0.464053pt;}
.ls8e_c00273{letter-spacing:-0.458027pt;}
.ls8b_c00273{letter-spacing:-0.439947pt;}
.ls81_c00273{letter-spacing:-0.343520pt;}
.ls6d_c00273{letter-spacing:-0.319413pt;}
.ls68_c00273{letter-spacing:-0.235040pt;}
.ls96_c00273{letter-spacing:-0.186827pt;}
.ls7f_c00273{letter-spacing:-0.162720pt;}
.ls6f_c00273{letter-spacing:-0.132587pt;}
.ls75_c00273{letter-spacing:-0.126560pt;}
.ls74_c00273{letter-spacing:-0.120533pt;}
.ls73_c00273{letter-spacing:-0.114507pt;}
.ls89_c00273{letter-spacing:-0.084373pt;}
.ls8f_c00273{letter-spacing:-0.072320pt;}
.ls6c_c00273{letter-spacing:-0.060267pt;}
.ls65_c00273{letter-spacing:-0.054240pt;}
.ls80_c00273{letter-spacing:-0.024107pt;}
.ls71_c00273{letter-spacing:-0.012053pt;}
.ls76_c00273{letter-spacing:0.000000pt;}
.ls7e_c00273{letter-spacing:0.018080pt;}
.ls32_c00273{letter-spacing:0.024107pt;}
.ls10_c00273{letter-spacing:0.030133pt;}
.ls43_c00273{letter-spacing:0.036160pt;}
.ls45_c00273{letter-spacing:0.042187pt;}
.ls38_c00273{letter-spacing:0.054240pt;}
.ls61_c00273{letter-spacing:0.060267pt;}
.ls36_c00273{letter-spacing:0.072320pt;}
.ls7b_c00273{letter-spacing:0.090400pt;}
.ls25_c00273{letter-spacing:0.108480pt;}
.ls1c_c00273{letter-spacing:0.114507pt;}
.ls5b_c00273{letter-spacing:0.126560pt;}
.ls7d_c00273{letter-spacing:0.132587pt;}
.ls87_c00273{letter-spacing:0.138613pt;}
.ls57_c00273{letter-spacing:0.144640pt;}
.ls6e_c00273{letter-spacing:0.150667pt;}
.ls26_c00273{letter-spacing:0.168747pt;}
.lsd_c00273{letter-spacing:0.180800pt;}
.ls8d_c00273{letter-spacing:0.192853pt;}
.ls2c_c00273{letter-spacing:0.204907pt;}
.ls58_c00273{letter-spacing:0.210933pt;}
.ls6a_c00273{letter-spacing:0.216960pt;}
.ls2b_c00273{letter-spacing:0.229013pt;}
.ls4d_c00273{letter-spacing:0.247093pt;}
.ls19_c00273{letter-spacing:0.265173pt;}
.ls4b_c00273{letter-spacing:0.271200pt;}
.ls54_c00273{letter-spacing:0.277227pt;}
.ls3b_c00273{letter-spacing:0.301333pt;}
.ls15_c00273{letter-spacing:0.307360pt;}
.ls1d_c00273{letter-spacing:0.313387pt;}
.ls3f_c00273{letter-spacing:0.319413pt;}
.ls5_c00273{letter-spacing:0.331467pt;}
.ls56_c00273{letter-spacing:0.337493pt;}
.ls12_c00273{letter-spacing:0.343520pt;}
.ls22_c00273{letter-spacing:0.349547pt;}
.lse_c00273{letter-spacing:0.355573pt;}
.lsf_c00273{letter-spacing:0.367627pt;}
.ls4_c00273{letter-spacing:0.373653pt;}
.ls60_c00273{letter-spacing:0.385707pt;}
.ls2_c00273{letter-spacing:0.391733pt;}
.ls49_c00273{letter-spacing:0.397760pt;}
.ls59_c00273{letter-spacing:0.403787pt;}
.ls62_c00273{letter-spacing:0.409813pt;}
.ls14_c00273{letter-spacing:0.415840pt;}
.ls18_c00273{letter-spacing:0.421867pt;}
.ls51_c00273{letter-spacing:0.427893pt;}
.ls47_c00273{letter-spacing:0.433920pt;}
.ls67_c00273{letter-spacing:0.439947pt;}
.ls28_c00273{letter-spacing:0.452000pt;}
.ls1a_c00273{letter-spacing:0.470080pt;}
.ls63_c00273{letter-spacing:0.476107pt;}
.ls2e_c00273{letter-spacing:0.488160pt;}
.ls5f_c00273{letter-spacing:0.500213pt;}
.ls23_c00273{letter-spacing:0.512267pt;}
.ls48_c00273{letter-spacing:0.518293pt;}
.ls20_c00273{letter-spacing:0.524320pt;}
.ls5c_c00273{letter-spacing:0.542400pt;}
.lsb_c00273{letter-spacing:0.554453pt;}
.ls5e_c00273{letter-spacing:0.572533pt;}
.ls4a_c00273{letter-spacing:0.596640pt;}
.ls0_c00273{letter-spacing:0.602667pt;}
.ls24_c00273{letter-spacing:0.608693pt;}
.ls5a_c00273{letter-spacing:0.638827pt;}
.ls3e_c00273{letter-spacing:0.644853pt;}
.ls8_c00273{letter-spacing:0.650880pt;}
.ls11_c00273{letter-spacing:0.656907pt;}
.ls29_c00273{letter-spacing:0.674987pt;}
.ls31_c00273{letter-spacing:0.681013pt;}
.ls41_c00273{letter-spacing:0.705120pt;}
.ls46_c00273{letter-spacing:0.711147pt;}
.ls35_c00273{letter-spacing:0.717173pt;}
.ls30_c00273{letter-spacing:0.723200pt;}
.ls2a_c00273{letter-spacing:0.729227pt;}
.ls88_c00273{letter-spacing:0.735253pt;}
.ls1f_c00273{letter-spacing:0.741280pt;}
.lsc_c00273{letter-spacing:0.753333pt;}
.ls53_c00273{letter-spacing:0.755200pt;}
.ls37_c00273{letter-spacing:0.765387pt;}
.ls16_c00273{letter-spacing:0.795520pt;}
.ls4f_c00273{letter-spacing:0.922080pt;}
.ls39_c00273{letter-spacing:0.928107pt;}
.ls21_c00273{letter-spacing:0.958240pt;}
.ls52_c00273{letter-spacing:0.969173pt;}
.ls13_c00273{letter-spacing:0.970293pt;}
.ls1e_c00273{letter-spacing:0.994400pt;}
.ls33_c00273{letter-spacing:1.006453pt;}
.ls4c_c00273{letter-spacing:1.030560pt;}
.lsa_c00273{letter-spacing:1.060693pt;}
.ls1_c00273{letter-spacing:1.066720pt;}
.ls1b_c00273{letter-spacing:1.072747pt;}
.ls64_c00273{letter-spacing:1.142400pt;}
.ls40_c00273{letter-spacing:1.211360pt;}
.ls3a_c00273{letter-spacing:1.247520pt;}
.ls3c_c00273{letter-spacing:1.307787pt;}
.ls7_c00273{letter-spacing:1.319840pt;}
.ls17_c00273{letter-spacing:1.331893pt;}
.ls44_c00273{letter-spacing:1.337920pt;}
.ls2d_c00273{letter-spacing:1.434347pt;}
.ls42_c00273{letter-spacing:1.488587pt;}
.ls55_c00273{letter-spacing:1.621173pt;}
.ls3d_c00273{letter-spacing:1.627200pt;}
.ls50_c00273{letter-spacing:1.705547pt;}
.ls6_c00273{letter-spacing:1.922507pt;}
.ls9_c00273{letter-spacing:1.958667pt;}
.ls2f_c00273{letter-spacing:1.976747pt;}
.ls34_c00273{letter-spacing:2.109333pt;}
.ls27_c00273{letter-spacing:2.464907pt;}
.ls3_c00273{letter-spacing:2.489013pt;}
.ls5d_c00273{letter-spacing:2.561333pt;}
.ls4e_c00273{letter-spacing:3.001280pt;}
.ls8a_c00273{letter-spacing:3.013333pt;}
.ws1_c00273{word-spacing:-1.325867pt;}
.ws5_c00273{word-spacing:0.000000pt;}
.ws3_c00273{word-spacing:0.271200pt;}
.ws0_c00273{word-spacing:4.918720pt;}
.ws4_c00273{word-spacing:6.111040pt;}
.ws2_c00273{word-spacing:17.356800pt;}
._13_c00273{margin-left:-4.978027pt;}
._b_c00273{margin-left:-3.573813pt;}
._c_c00273{margin-left:-2.344373pt;}
._14_c00273{margin-left:-1.379253pt;}
._2_c00273{width:1.783893pt;}
._5_c00273{width:2.971147pt;}
._1_c00273{width:4.363307pt;}
._0_c00273{width:5.604800pt;}
._3_c00273{width:6.755893pt;}
._4_c00273{width:8.160107pt;}
._16_c00273{width:9.582400pt;}
._f_c00273{width:10.611093pt;}
._d_c00273{width:11.589280pt;}
._9_c00273{width:13.059787pt;}
._10_c00273{width:14.464000pt;}
._e_c00273{width:16.000800pt;}
._6_c00273{width:17.133813pt;}
._7_c00273{width:18.562133pt;}
._12_c00273{width:19.472160pt;}
._a_c00273{width:20.372000pt;}
._8_c00273{width:22.250453pt;}
._11_c00273{width:23.954133pt;}
._15_c00273{width:25.354187pt;}
.fs4_c00273{font-size:46.080000pt;}
.fs2_c00273{font-size:52.800000pt;}
.fs0_c00273{font-size:54.400000pt;}
.fs6_c00273{font-size:54.933333pt;}
.fs3_c00273{font-size:58.666667pt;}
.fs1_c00273{font-size:60.266667pt;}
.fs5_c00273{font-size:62.933333pt;}
.y0_c00273{bottom:0.000000pt;}
.y20_c00273{bottom:60.173347pt;}
.y1f_c00273{bottom:128.962947pt;}
.y1e_c00273{bottom:156.173347pt;}
.y1d_c00273{bottom:183.690147pt;}
.y1c_c00273{bottom:211.533347pt;}
.y1b_c00273{bottom:211.538413pt;}
.y1a_c00273{bottom:266.893347pt;}
.y19_c00273{bottom:266.898013pt;}
.y17_c00273{bottom:294.090147pt;}
.y18_c00273{bottom:294.093347pt;}
.y15_c00273{bottom:321.930547pt;}
.y16_c00273{bottom:321.933347pt;}
.y14_c00273{bottom:377.933347pt;}
.y13_c00273{bottom:405.760013pt;}
.y12_c00273{bottom:461.755080pt;}
.y11_c00273{bottom:489.606947pt;}
.y10_c00273{bottom:545.293347pt;}
.ye_c00273{bottom:600.648280pt;}
.yf_c00273{bottom:600.653347pt;}
.yd_c00273{bottom:628.156547pt;}
.yc_c00273{bottom:655.683347pt;}
.yb_c00273{bottom:683.526547pt;}
.ya_c00273{bottom:711.050147pt;}
.y9_c00273{bottom:738.893347pt;}
.y8_c00273{bottom:794.560013pt;}
.y7_c00273{bottom:849.933347pt;}
.y6_c00273{bottom:877.450147pt;}
.y4_c00273{bottom:905.283747pt;}
.y5_c00273{bottom:905.293347pt;}
.y3_c00273{bottom:960.970147pt;}
.y2_c00273{bottom:988.813347pt;}
.y1_c00273{bottom:1055.693347pt;}
.ha_c00273{height:30.689280pt;}
.h6_c00273{height:51.820312pt;}
.h2_c00273{height:53.390625pt;}
.hf_c00273{height:53.914062pt;}
.he_c00273{height:59.119010pt;}
.h3_c00273{height:59.148438pt;}
.hd_c00273{height:59.159638pt;}
.h5_c00273{height:59.161238pt;}
.h7_c00273{height:59.162304pt;}
.h8_c00273{height:59.168704pt;}
.hb_c00273{height:59.174038pt;}
.h4_c00273{height:59.186837pt;}
.h9_c00273{height:61.187500pt;}
.hc_c00273{height:61.734896pt;}
.h1_c00273{height:1122.666667pt;}
.h0_c00273{height:1122.880013pt;}
.w1_c00273{width:793.333333pt;}
.w0_c00273{width:793.600013pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:108.093347pt;}
.x2_c00273{left:156.292280pt;}
.x14_c00273{left:258.533347pt;}
.xb_c00273{left:262.733347pt;}
.x15_c00273{left:285.680013pt;}
.x12_c00273{left:353.413347pt;}
.x13_c00273{left:367.506680pt;}
.x16_c00273{left:375.920013pt;}
.x9_c00273{left:386.573347pt;}
.x5_c00273{left:395.840013pt;}
.x6_c00273{left:424.186680pt;}
.xe_c00273{left:439.506680pt;}
.x3_c00273{left:448.933347pt;}
.xa_c00273{left:452.146680pt;}
.xf_c00273{left:471.800013pt;}
.x4_c00273{left:477.346680pt;}
.xc_c00273{left:553.933347pt;}
.x8_c00273{left:556.920013pt;}
.x10_c00273{left:557.933347pt;}
.xd_c00273{left:578.706680pt;}
.x11_c00273{left:583.186680pt;}
.x7_c00273{left:603.840013pt;}
}





/* 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_c00274 {
    display:none;
  }
  .loading-indicator_c00274.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00274 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_c00274 { 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_c00274" -> "#page-container .classname_c00274")
 */
.pf_c00274 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00274 { /* 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_c00274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00274 { /* 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_c00274 { /* 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_c00274 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00274 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00274 {overflow:visible;}
  }
}
.c_c00274 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00274 { /* 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_c00274:after { /* webkit #35443 */
  content: '';
}
.t_c00274:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00274 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 */
}
.__c00274 { /* 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_c00274 { /* info for Javascript */
  display:none;
}
.l_c00274 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00274 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00274 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00274: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_c00274 {
    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_c00274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00274.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_c00274 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00274;src:url('chunks/assets/font_b2c24b38b2ba1b287d682811.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.284668;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_c00274;src:url('chunks/assets/font_e69a00c5ce19b2d0f2f0220b.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.284180;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_c00274;src:url('chunks/assets/font_cd3bf07561b0d7ee94043727.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;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:ff4_c00274;src:url('chunks/assets/font_cfa9df1bfe175a2c5cbfb01e.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:1.284180;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;}
.m7_c00274{transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140309,0.000000,0.000000,0.250000,0,0);}
.m9_c00274{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5_c00274{transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);}
.m0_c00274{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m8_c00274{transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);}
.ma_c00274{transform:matrix(0.242412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242412,0.000000,0.000000,0.250000,0,0);}
.m4_c00274{transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);}
.m2_c00274{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m6_c00274{transform:matrix(0.247659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247659,0.000000,0.000000,0.250000,0,0);}
.m3_c00274{transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);}
.m1_c00274{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);}
.v0_c00274{vertical-align:0.000000px;}
.ls82_c00274{letter-spacing:-2.688000px;}
.ls50_c00274{letter-spacing:-2.562000px;}
.ls57_c00274{letter-spacing:-2.436000px;}
.ls80_c00274{letter-spacing:-2.310000px;}
.ls96_c00274{letter-spacing:-2.255040px;}
.ls95_c00274{letter-spacing:-2.241120px;}
.ls91_c00274{letter-spacing:-2.234160px;}
.ls58_c00274{letter-spacing:-1.983600px;}
.ls53_c00274{letter-spacing:-1.858320px;}
.ls7e_c00274{letter-spacing:-1.809600px;}
.ls93_c00274{letter-spacing:-1.774800px;}
.ls85_c00274{letter-spacing:-1.767840px;}
.ls86_c00274{letter-spacing:-1.649520px;}
.ls56_c00274{letter-spacing:-1.600800px;}
.ls5c_c00274{letter-spacing:-1.545120px;}
.ls7a_c00274{letter-spacing:-1.531200px;}
.ls92_c00274{letter-spacing:-1.503360px;}
.ls75_c00274{letter-spacing:-1.426800px;}
.ls77_c00274{letter-spacing:-1.343280px;}
.ls94_c00274{letter-spacing:-1.245840px;}
.ls54_c00274{letter-spacing:-1.190160px;}
.ls5a_c00274{letter-spacing:-1.113600px;}
.ls90_c00274{letter-spacing:-1.078800px;}
.ls8e_c00274{letter-spacing:-1.064880px;}
.ls8b_c00274{letter-spacing:-0.974400px;}
.ls5e_c00274{letter-spacing:-0.883920px;}
.ls6d_c00274{letter-spacing:-0.876960px;}
.ls9a_c00274{letter-spacing:-0.842160px;}
.ls6e_c00274{letter-spacing:-0.689040px;}
.ls69_c00274{letter-spacing:-0.675120px;}
.ls5d_c00274{letter-spacing:-0.668160px;}
.ls6f_c00274{letter-spacing:-0.626400px;}
.ls78_c00274{letter-spacing:-0.591600px;}
.ls7f_c00274{letter-spacing:-0.570720px;}
.ls97_c00274{letter-spacing:-0.563760px;}
.ls81_c00274{letter-spacing:-0.542880px;}
.ls61_c00274{letter-spacing:-0.535920px;}
.ls76_c00274{letter-spacing:-0.508080px;}
.ls63_c00274{letter-spacing:-0.501120px;}
.ls70_c00274{letter-spacing:-0.487200px;}
.ls5b_c00274{letter-spacing:-0.459360px;}
.ls8f_c00274{letter-spacing:-0.452400px;}
.ls60_c00274{letter-spacing:-0.438480px;}
.ls99_c00274{letter-spacing:-0.424560px;}
.ls7d_c00274{letter-spacing:-0.396720px;}
.ls74_c00274{letter-spacing:-0.382800px;}
.ls8a_c00274{letter-spacing:-0.368880px;}
.ls73_c00274{letter-spacing:-0.334080px;}
.ls6b_c00274{letter-spacing:-0.327120px;}
.ls52_c00274{letter-spacing:-0.285360px;}
.ls79_c00274{letter-spacing:-0.278400px;}
.ls66_c00274{letter-spacing:-0.264480px;}
.ls71_c00274{letter-spacing:-0.257520px;}
.ls6a_c00274{letter-spacing:-0.250560px;}
.ls88_c00274{letter-spacing:-0.243600px;}
.ls8c_c00274{letter-spacing:-0.236640px;}
.ls7b_c00274{letter-spacing:-0.229680px;}
.ls67_c00274{letter-spacing:-0.208800px;}
.ls55_c00274{letter-spacing:-0.187920px;}
.ls62_c00274{letter-spacing:-0.180960px;}
.ls64_c00274{letter-spacing:-0.167040px;}
.ls65_c00274{letter-spacing:-0.160080px;}
.ls87_c00274{letter-spacing:-0.153120px;}
.ls8d_c00274{letter-spacing:-0.139200px;}
.ls59_c00274{letter-spacing:-0.125280px;}
.ls5f_c00274{letter-spacing:-0.104400px;}
.ls7c_c00274{letter-spacing:-0.090480px;}
.ls6c_c00274{letter-spacing:-0.076560px;}
.ls68_c00274{letter-spacing:-0.055680px;}
.ls89_c00274{letter-spacing:-0.034800px;}
.ls51_c00274{letter-spacing:0.000000px;}
.ls10_c00274{letter-spacing:0.013920px;}
.ls1b_c00274{letter-spacing:0.027840px;}
.lsc_c00274{letter-spacing:0.034800px;}
.ls9_c00274{letter-spacing:0.041760px;}
.ls2_c00274{letter-spacing:0.048720px;}
.ls1e_c00274{letter-spacing:0.062640px;}
.lsa_c00274{letter-spacing:0.069600px;}
.ls72_c00274{letter-spacing:0.083520px;}
.ls24_c00274{letter-spacing:0.118320px;}
.ls23_c00274{letter-spacing:0.132240px;}
.ls13_c00274{letter-spacing:0.160080px;}
.lsd_c00274{letter-spacing:0.167040px;}
.ls4f_c00274{letter-spacing:0.187920px;}
.ls12_c00274{letter-spacing:0.222720px;}
.ls7_c00274{letter-spacing:0.243600px;}
.lsf_c00274{letter-spacing:0.250560px;}
.ls33_c00274{letter-spacing:0.271440px;}
.ls40_c00274{letter-spacing:0.285360px;}
.ls18_c00274{letter-spacing:0.292320px;}
.ls22_c00274{letter-spacing:0.306240px;}
.ls8_c00274{letter-spacing:0.320160px;}
.ls11_c00274{letter-spacing:0.327120px;}
.ls98_c00274{letter-spacing:0.410400px;}
.ls19_c00274{letter-spacing:0.410640px;}
.ls1f_c00274{letter-spacing:0.417600px;}
.ls39_c00274{letter-spacing:0.431520px;}
.ls0_c00274{letter-spacing:0.444600px;}
.ls16_c00274{letter-spacing:0.452400px;}
.ls43_c00274{letter-spacing:0.466320px;}
.ls3a_c00274{letter-spacing:0.494160px;}
.ls9b_c00274{letter-spacing:0.547200px;}
.ls45_c00274{letter-spacing:0.556800px;}
.ls1c_c00274{letter-spacing:0.570720px;}
.ls4a_c00274{letter-spacing:0.591600px;}
.ls47_c00274{letter-spacing:0.594720px;}
.ls3e_c00274{letter-spacing:0.605520px;}
.ls15_c00274{letter-spacing:0.608760px;}
.ls44_c00274{letter-spacing:0.642960px;}
.ls4_c00274{letter-spacing:0.649800px;}
.ls3_c00274{letter-spacing:0.656640px;}
.lse_c00274{letter-spacing:0.675120px;}
.ls2b_c00274{letter-spacing:0.689040px;}
.ls42_c00274{letter-spacing:0.690840px;}
.ls46_c00274{letter-spacing:0.709920px;}
.lsb_c00274{letter-spacing:0.730800px;}
.ls36_c00274{letter-spacing:0.765600px;}
.ls29_c00274{letter-spacing:0.800400px;}
.ls4b_c00274{letter-spacing:0.813960px;}
.ls4e_c00274{letter-spacing:0.861840px;}
.ls4d_c00274{letter-spacing:0.875520px;}
.ls1a_c00274{letter-spacing:0.876960px;}
.ls30_c00274{letter-spacing:0.897840px;}
.ls4c_c00274{letter-spacing:0.902880px;}
.ls1_c00274{letter-spacing:0.916560px;}
.ls5_c00274{letter-spacing:0.946560px;}
.ls6_c00274{letter-spacing:0.984960px;}
.ls49_c00274{letter-spacing:0.991200px;}
.ls84_c00274{letter-spacing:0.995280px;}
.ls34_c00274{letter-spacing:1.016160px;}
.ls17_c00274{letter-spacing:1.037040px;}
.ls14_c00274{letter-spacing:1.073880px;}
.ls2a_c00274{letter-spacing:1.155360px;}
.ls28_c00274{letter-spacing:1.190160px;}
.ls2f_c00274{letter-spacing:1.231920px;}
.ls32_c00274{letter-spacing:1.238880px;}
.ls83_c00274{letter-spacing:1.287600px;}
.ls41_c00274{letter-spacing:1.322400px;}
.ls3b_c00274{letter-spacing:1.329360px;}
.ls3f_c00274{letter-spacing:1.336320px;}
.ls48_c00274{letter-spacing:1.347480px;}
.ls37_c00274{letter-spacing:1.350240px;}
.ls3c_c00274{letter-spacing:1.371120px;}
.ls26_c00274{letter-spacing:1.475520px;}
.ls3d_c00274{letter-spacing:1.517280px;}
.ls20_c00274{letter-spacing:1.593720px;}
.ls35_c00274{letter-spacing:1.600800px;}
.ls31_c00274{letter-spacing:1.621680px;}
.ls27_c00274{letter-spacing:1.642560px;}
.ls38_c00274{letter-spacing:1.656480px;}
.ls25_c00274{letter-spacing:1.737360px;}
.ls1d_c00274{letter-spacing:1.879200px;}
.ls2c_c00274{letter-spacing:1.920960px;}
.ls2d_c00274{letter-spacing:1.983600px;}
.ls2e_c00274{letter-spacing:2.018400px;}
.ls21_c00274{letter-spacing:2.164560px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{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__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00274{word-spacing:-0.145920px;}
.ws7_c00274{word-spacing:0.000000px;}
.ws4_c00274{word-spacing:0.169800px;}
.ws5_c00274{word-spacing:0.187440px;}
.ws0_c00274{word-spacing:2.894160px;}
.ws3_c00274{word-spacing:8.038800px;}
.ws1_c00274{word-spacing:10.835760px;}
.ws6_c00274{word-spacing:33.417840px;}
._11_c00274{margin-left:-5.916000px;}
._10_c00274{margin-left:-4.767120px;}
._13_c00274{margin-left:-3.597240px;}
._1_c00274{margin-left:-2.259360px;}
._14_c00274{margin-left:-1.239960px;}
._2_c00274{width:1.102560px;}
._7_c00274{width:2.207640px;}
._0_c00274{width:3.249000px;}
._4_c00274{width:4.322160px;}
._6_c00274{width:5.336640px;}
._15_c00274{width:6.392160px;}
._5_c00274{width:7.459800px;}
._9_c00274{width:8.548200px;}
._3_c00274{width:9.612960px;}
._8_c00274{width:10.709400px;}
._a_c00274{width:14.467800px;}
._d_c00274{width:16.228800px;}
._e_c00274{width:19.592400px;}
._12_c00274{width:21.538800px;}
._b_c00274{width:22.550400px;}
._f_c00274{width:24.209760px;}
._c_c00274{width:25.300320px;}
._16_c00274{width:32.809440px;}
._17_c00274{width:36.456480px;}
._18_c00274{width:39.393600px;}
.fc0_c00274{color:transparent;}
.fs7_c00274{font-size:57.600000px;}
.fs5_c00274{font-size:63.000000px;}
.fs3_c00274{font-size:66.000000px;}
.fs1_c00274{font-size:68.400000px;}
.fs2_c00274{font-size:69.600000px;}
.fs6_c00274{font-size:70.800000px;}
.fs0_c00274{font-size:73.200000px;}
.fs4_c00274{font-size:76.800000px;}
.y0_c00274{bottom:0.000000px;}
.y18_c00274{bottom:69.495006px;}
.y17_c00274{bottom:145.080006px;}
.y16_c00274{bottom:207.735006px;}
.y15_c00274{bottom:238.695006px;}
.y14_c00274{bottom:301.695006px;}
.y13_c00274{bottom:364.335006px;}
.y12_c00274{bottom:396.015006px;}
.y11_c00274{bottom:459.015006px;}
.y10_c00274{bottom:522.015006px;}
.yf_c00274{bottom:584.277606px;}
.ye_c00274{bottom:615.622806px;}
.yd_c00274{bottom:646.942806px;}
.yc_c00274{bottom:677.880006px;}
.yb_c00274{bottom:740.175006px;}
.ya_c00274{bottom:803.520006px;}
.y9_c00274{bottom:834.840006px;}
.y8_c00274{bottom:866.160006px;}
.y7_c00274{bottom:897.480006px;}
.y6_c00274{bottom:960.140406px;}
.y5_c00274{bottom:991.460406px;}
.y4_c00274{bottom:1022.415006px;}
.y3_c00274{bottom:1084.680006px;}
.y2_c00274{bottom:1116.360006px;}
.y1_c00274{bottom:1192.680006px;}
.h8_c00274{height:56.531250px;}
.h3_c00274{height:68.308594px;}
.h6_c00274{height:68.318194px;}
.h4_c00274{height:68.835938px;}
.h7_c00274{height:69.451758px;}
.h2_c00274{height:71.841797px;}
.h5_c00274{height:75.375000px;}
.h1_c00274{height:1263.000000px;}
.h0_c00274{height:1263.240006px;}
.w1_c00274{width:892.500000px;}
.w0_c00274{width:892.799998px;}
.x0_c00274{left:0.000000px;}
.x10_c00274{left:121.142998px;}
.x6_c00274{left:122.220598px;}
.x1_c00274{left:124.124999px;}
.xc_c00274{left:175.484998px;}
.x5_c00274{left:176.924998px;}
.x2_c00274{left:178.214999px;}
.xa_c00274{left:231.449999px;}
.x11_c00274{left:252.374998px;}
.xb_c00274{left:262.364999px;}
.x14_c00274{left:425.129999px;}
.x12_c00274{left:437.924999px;}
.x15_c00274{left:456.044999px;}
.xd_c00274{left:460.964998px;}
.x7_c00274{left:463.799998px;}
.x13_c00274{left:472.889998px;}
.x8_c00274{left:485.129999px;}
.xe_c00274{left:493.049998px;}
.x9_c00274{left:504.329998px;}
.x16_c00274{left:558.899999px;}
.x3_c00274{left:622.244999px;}
.x4_c00274{left:650.639998px;}
.xf_c00274{left:709.499998px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls82_c00274{letter-spacing:-2.389333pt;}
.ls50_c00274{letter-spacing:-2.277333pt;}
.ls57_c00274{letter-spacing:-2.165333pt;}
.ls80_c00274{letter-spacing:-2.053333pt;}
.ls96_c00274{letter-spacing:-2.004480pt;}
.ls95_c00274{letter-spacing:-1.992107pt;}
.ls91_c00274{letter-spacing:-1.985920pt;}
.ls58_c00274{letter-spacing:-1.763200pt;}
.ls53_c00274{letter-spacing:-1.651840pt;}
.ls7e_c00274{letter-spacing:-1.608533pt;}
.ls93_c00274{letter-spacing:-1.577600pt;}
.ls85_c00274{letter-spacing:-1.571413pt;}
.ls86_c00274{letter-spacing:-1.466240pt;}
.ls56_c00274{letter-spacing:-1.422933pt;}
.ls5c_c00274{letter-spacing:-1.373440pt;}
.ls7a_c00274{letter-spacing:-1.361067pt;}
.ls92_c00274{letter-spacing:-1.336320pt;}
.ls75_c00274{letter-spacing:-1.268267pt;}
.ls77_c00274{letter-spacing:-1.194027pt;}
.ls94_c00274{letter-spacing:-1.107413pt;}
.ls54_c00274{letter-spacing:-1.057920pt;}
.ls5a_c00274{letter-spacing:-0.989867pt;}
.ls90_c00274{letter-spacing:-0.958933pt;}
.ls8e_c00274{letter-spacing:-0.946560pt;}
.ls8b_c00274{letter-spacing:-0.866133pt;}
.ls5e_c00274{letter-spacing:-0.785707pt;}
.ls6d_c00274{letter-spacing:-0.779520pt;}
.ls9a_c00274{letter-spacing:-0.748587pt;}
.ls6e_c00274{letter-spacing:-0.612480pt;}
.ls69_c00274{letter-spacing:-0.600107pt;}
.ls5d_c00274{letter-spacing:-0.593920pt;}
.ls6f_c00274{letter-spacing:-0.556800pt;}
.ls78_c00274{letter-spacing:-0.525867pt;}
.ls7f_c00274{letter-spacing:-0.507307pt;}
.ls97_c00274{letter-spacing:-0.501120pt;}
.ls81_c00274{letter-spacing:-0.482560pt;}
.ls61_c00274{letter-spacing:-0.476373pt;}
.ls76_c00274{letter-spacing:-0.451627pt;}
.ls63_c00274{letter-spacing:-0.445440pt;}
.ls70_c00274{letter-spacing:-0.433067pt;}
.ls5b_c00274{letter-spacing:-0.408320pt;}
.ls8f_c00274{letter-spacing:-0.402133pt;}
.ls60_c00274{letter-spacing:-0.389760pt;}
.ls99_c00274{letter-spacing:-0.377387pt;}
.ls7d_c00274{letter-spacing:-0.352640pt;}
.ls74_c00274{letter-spacing:-0.340267pt;}
.ls8a_c00274{letter-spacing:-0.327893pt;}
.ls73_c00274{letter-spacing:-0.296960pt;}
.ls6b_c00274{letter-spacing:-0.290773pt;}
.ls52_c00274{letter-spacing:-0.253653pt;}
.ls79_c00274{letter-spacing:-0.247467pt;}
.ls66_c00274{letter-spacing:-0.235093pt;}
.ls71_c00274{letter-spacing:-0.228907pt;}
.ls6a_c00274{letter-spacing:-0.222720pt;}
.ls88_c00274{letter-spacing:-0.216533pt;}
.ls8c_c00274{letter-spacing:-0.210347pt;}
.ls7b_c00274{letter-spacing:-0.204160pt;}
.ls67_c00274{letter-spacing:-0.185600pt;}
.ls55_c00274{letter-spacing:-0.167040pt;}
.ls62_c00274{letter-spacing:-0.160853pt;}
.ls64_c00274{letter-spacing:-0.148480pt;}
.ls65_c00274{letter-spacing:-0.142293pt;}
.ls87_c00274{letter-spacing:-0.136107pt;}
.ls8d_c00274{letter-spacing:-0.123733pt;}
.ls59_c00274{letter-spacing:-0.111360pt;}
.ls5f_c00274{letter-spacing:-0.092800pt;}
.ls7c_c00274{letter-spacing:-0.080427pt;}
.ls6c_c00274{letter-spacing:-0.068053pt;}
.ls68_c00274{letter-spacing:-0.049493pt;}
.ls89_c00274{letter-spacing:-0.030933pt;}
.ls51_c00274{letter-spacing:0.000000pt;}
.ls10_c00274{letter-spacing:0.012373pt;}
.ls1b_c00274{letter-spacing:0.024747pt;}
.lsc_c00274{letter-spacing:0.030933pt;}
.ls9_c00274{letter-spacing:0.037120pt;}
.ls2_c00274{letter-spacing:0.043307pt;}
.ls1e_c00274{letter-spacing:0.055680pt;}
.lsa_c00274{letter-spacing:0.061867pt;}
.ls72_c00274{letter-spacing:0.074240pt;}
.ls24_c00274{letter-spacing:0.105173pt;}
.ls23_c00274{letter-spacing:0.117547pt;}
.ls13_c00274{letter-spacing:0.142293pt;}
.lsd_c00274{letter-spacing:0.148480pt;}
.ls4f_c00274{letter-spacing:0.167040pt;}
.ls12_c00274{letter-spacing:0.197973pt;}
.ls7_c00274{letter-spacing:0.216533pt;}
.lsf_c00274{letter-spacing:0.222720pt;}
.ls33_c00274{letter-spacing:0.241280pt;}
.ls40_c00274{letter-spacing:0.253653pt;}
.ls18_c00274{letter-spacing:0.259840pt;}
.ls22_c00274{letter-spacing:0.272213pt;}
.ls8_c00274{letter-spacing:0.284587pt;}
.ls11_c00274{letter-spacing:0.290773pt;}
.ls98_c00274{letter-spacing:0.364800pt;}
.ls19_c00274{letter-spacing:0.365013pt;}
.ls1f_c00274{letter-spacing:0.371200pt;}
.ls39_c00274{letter-spacing:0.383573pt;}
.ls0_c00274{letter-spacing:0.395200pt;}
.ls16_c00274{letter-spacing:0.402133pt;}
.ls43_c00274{letter-spacing:0.414507pt;}
.ls3a_c00274{letter-spacing:0.439253pt;}
.ls9b_c00274{letter-spacing:0.486400pt;}
.ls45_c00274{letter-spacing:0.494933pt;}
.ls1c_c00274{letter-spacing:0.507307pt;}
.ls4a_c00274{letter-spacing:0.525867pt;}
.ls47_c00274{letter-spacing:0.528640pt;}
.ls3e_c00274{letter-spacing:0.538240pt;}
.ls15_c00274{letter-spacing:0.541120pt;}
.ls44_c00274{letter-spacing:0.571520pt;}
.ls4_c00274{letter-spacing:0.577600pt;}
.ls3_c00274{letter-spacing:0.583680pt;}
.lse_c00274{letter-spacing:0.600107pt;}
.ls2b_c00274{letter-spacing:0.612480pt;}
.ls42_c00274{letter-spacing:0.614080pt;}
.ls46_c00274{letter-spacing:0.631040pt;}
.lsb_c00274{letter-spacing:0.649600pt;}
.ls36_c00274{letter-spacing:0.680533pt;}
.ls29_c00274{letter-spacing:0.711467pt;}
.ls4b_c00274{letter-spacing:0.723520pt;}
.ls4e_c00274{letter-spacing:0.766080pt;}
.ls4d_c00274{letter-spacing:0.778240pt;}
.ls1a_c00274{letter-spacing:0.779520pt;}
.ls30_c00274{letter-spacing:0.798080pt;}
.ls4c_c00274{letter-spacing:0.802560pt;}
.ls1_c00274{letter-spacing:0.814720pt;}
.ls5_c00274{letter-spacing:0.841387pt;}
.ls6_c00274{letter-spacing:0.875520pt;}
.ls49_c00274{letter-spacing:0.881067pt;}
.ls84_c00274{letter-spacing:0.884693pt;}
.ls34_c00274{letter-spacing:0.903253pt;}
.ls17_c00274{letter-spacing:0.921813pt;}
.ls14_c00274{letter-spacing:0.954560pt;}
.ls2a_c00274{letter-spacing:1.026987pt;}
.ls28_c00274{letter-spacing:1.057920pt;}
.ls2f_c00274{letter-spacing:1.095040pt;}
.ls32_c00274{letter-spacing:1.101227pt;}
.ls83_c00274{letter-spacing:1.144533pt;}
.ls41_c00274{letter-spacing:1.175467pt;}
.ls3b_c00274{letter-spacing:1.181653pt;}
.ls3f_c00274{letter-spacing:1.187840pt;}
.ls48_c00274{letter-spacing:1.197760pt;}
.ls37_c00274{letter-spacing:1.200213pt;}
.ls3c_c00274{letter-spacing:1.218773pt;}
.ls26_c00274{letter-spacing:1.311573pt;}
.ls3d_c00274{letter-spacing:1.348693pt;}
.ls20_c00274{letter-spacing:1.416640pt;}
.ls35_c00274{letter-spacing:1.422933pt;}
.ls31_c00274{letter-spacing:1.441493pt;}
.ls27_c00274{letter-spacing:1.460053pt;}
.ls38_c00274{letter-spacing:1.472427pt;}
.ls25_c00274{letter-spacing:1.544320pt;}
.ls1d_c00274{letter-spacing:1.670400pt;}
.ls2c_c00274{letter-spacing:1.707520pt;}
.ls2d_c00274{letter-spacing:1.763200pt;}
.ls2e_c00274{letter-spacing:1.794133pt;}
.ls21_c00274{letter-spacing:1.924053pt;}
.ws2_c00274{word-spacing:-0.129707pt;}
.ws7_c00274{word-spacing:0.000000pt;}
.ws4_c00274{word-spacing:0.150933pt;}
.ws5_c00274{word-spacing:0.166613pt;}
.ws0_c00274{word-spacing:2.572587pt;}
.ws3_c00274{word-spacing:7.145600pt;}
.ws1_c00274{word-spacing:9.631787pt;}
.ws6_c00274{word-spacing:29.704747pt;}
._11_c00274{margin-left:-5.258667pt;}
._10_c00274{margin-left:-4.237440pt;}
._13_c00274{margin-left:-3.197547pt;}
._1_c00274{margin-left:-2.008320pt;}
._14_c00274{margin-left:-1.102187pt;}
._2_c00274{width:0.980053pt;}
._7_c00274{width:1.962347pt;}
._0_c00274{width:2.888000pt;}
._4_c00274{width:3.841920pt;}
._6_c00274{width:4.743680pt;}
._15_c00274{width:5.681920pt;}
._5_c00274{width:6.630933pt;}
._9_c00274{width:7.598400pt;}
._3_c00274{width:8.544853pt;}
._8_c00274{width:9.519467pt;}
._a_c00274{width:12.860267pt;}
._d_c00274{width:14.425600pt;}
._e_c00274{width:17.415467pt;}
._12_c00274{width:19.145600pt;}
._b_c00274{width:20.044800pt;}
._f_c00274{width:21.519787pt;}
._c_c00274{width:22.489173pt;}
._16_c00274{width:29.163947pt;}
._17_c00274{width:32.405760pt;}
._18_c00274{width:35.016533pt;}
.fs7_c00274{font-size:51.200000pt;}
.fs5_c00274{font-size:56.000000pt;}
.fs3_c00274{font-size:58.666667pt;}
.fs1_c00274{font-size:60.800000pt;}
.fs2_c00274{font-size:61.866667pt;}
.fs6_c00274{font-size:62.933333pt;}
.fs0_c00274{font-size:65.066667pt;}
.fs4_c00274{font-size:68.266667pt;}
.y0_c00274{bottom:0.000000pt;}
.y18_c00274{bottom:61.773339pt;}
.y17_c00274{bottom:128.960005pt;}
.y16_c00274{bottom:184.653339pt;}
.y15_c00274{bottom:212.173339pt;}
.y14_c00274{bottom:268.173339pt;}
.y13_c00274{bottom:323.853339pt;}
.y12_c00274{bottom:352.013339pt;}
.y11_c00274{bottom:408.013339pt;}
.y10_c00274{bottom:464.013339pt;}
.yf_c00274{bottom:519.357872pt;}
.ye_c00274{bottom:547.220272pt;}
.yd_c00274{bottom:575.060272pt;}
.yc_c00274{bottom:602.560005pt;}
.yb_c00274{bottom:657.933339pt;}
.ya_c00274{bottom:714.240005pt;}
.y9_c00274{bottom:742.080005pt;}
.y8_c00274{bottom:769.920005pt;}
.y7_c00274{bottom:797.760005pt;}
.y6_c00274{bottom:853.458139pt;}
.y5_c00274{bottom:881.298139pt;}
.y4_c00274{bottom:908.813339pt;}
.y3_c00274{bottom:964.160005pt;}
.y2_c00274{bottom:992.320005pt;}
.y1_c00274{bottom:1060.160005pt;}
.h8_c00274{height:50.250000pt;}
.h3_c00274{height:60.718750pt;}
.h6_c00274{height:60.727283pt;}
.h4_c00274{height:61.187500pt;}
.h7_c00274{height:61.734896pt;}
.h2_c00274{height:63.859375pt;}
.h5_c00274{height:67.000000pt;}
.h1_c00274{height:1122.666667pt;}
.h0_c00274{height:1122.880005pt;}
.w1_c00274{width:793.333333pt;}
.w0_c00274{width:793.599999pt;}
.x0_c00274{left:0.000000pt;}
.x10_c00274{left:107.682665pt;}
.x6_c00274{left:108.640532pt;}
.x1_c00274{left:110.333332pt;}
.xc_c00274{left:155.986665pt;}
.x5_c00274{left:157.266665pt;}
.x2_c00274{left:158.413332pt;}
.xa_c00274{left:205.733332pt;}
.x11_c00274{left:224.333332pt;}
.xb_c00274{left:233.213332pt;}
.x14_c00274{left:377.893332pt;}
.x12_c00274{left:389.266665pt;}
.x15_c00274{left:405.373332pt;}
.xd_c00274{left:409.746665pt;}
.x7_c00274{left:412.266665pt;}
.x13_c00274{left:420.346665pt;}
.x8_c00274{left:431.226665pt;}
.xe_c00274{left:438.266665pt;}
.x9_c00274{left:448.293332pt;}
.x16_c00274{left:496.799999pt;}
.x3_c00274{left:553.106665pt;}
.x4_c00274{left:578.346665pt;}
.xf_c00274{left:630.666665pt;}
}





/* 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_c00275 {
    display:none;
  }
  .loading-indicator_c00275.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00275 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_c00275 { 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_c00275" -> "#page-container .classname_c00275")
 */
.pf_c00275 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00275 { /* 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_c00275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00275 { /* 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_c00275 { /* 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_c00275 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00275 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00275 {overflow:visible;}
  }
}
.c_c00275 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00275 { /* 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_c00275:after { /* webkit #35443 */
  content: '';
}
.t_c00275:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00275 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 */
}
.__c00275 { /* 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_c00275 { /* info for Javascript */
  display:none;
}
.l_c00275 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00275 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00275 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00275: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_c00275 {
    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_c00275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00275.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_c00275 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00275;src:url('chunks/assets/font_058882174d61838a086bf0de.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.284668;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_c00275;src:url('chunks/assets/font_4e46f484b1dcbe8743a62eab.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.284180;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_c00275;src:url('chunks/assets/font_e5cc58055fcca96b297ee0ca.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;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:ff4_c00275;src:url('chunks/assets/font_7afb1f7f079528304be3f270.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:0.666000;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;}
.m7_c00275{transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);}
.m6_c00275{transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);}
.m5_c00275{transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);}
.m2_c00275{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m0_c00275{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m4_c00275{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m1_c00275{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);}
.m8_c00275{transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);}
.m3_c00275{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls7a_c00275{letter-spacing:-2.394000px;}
.ls61_c00275{letter-spacing:-2.373000px;}
.ls51_c00275{letter-spacing:-2.352000px;}
.ls75_c00275{letter-spacing:-2.209320px;}
.ls78_c00275{letter-spacing:-2.168280px;}
.ls5e_c00275{letter-spacing:-2.127240px;}
.ls5d_c00275{letter-spacing:-1.963080px;}
.ls6c_c00275{letter-spacing:-1.703160px;}
.ls7d_c00275{letter-spacing:-1.566360px;}
.ls66_c00275{letter-spacing:-1.409040px;}
.ls7b_c00275{letter-spacing:-1.388520px;}
.ls88_c00275{letter-spacing:-1.197000px;}
.ls84_c00275{letter-spacing:-1.080720px;}
.ls86_c00275{letter-spacing:-0.984960px;}
.ls7f_c00275{letter-spacing:-0.896040px;}
.ls83_c00275{letter-spacing:-0.868680px;}
.ls7c_c00275{letter-spacing:-0.834480px;}
.ls65_c00275{letter-spacing:-0.759240px;}
.ls6a_c00275{letter-spacing:-0.704520px;}
.ls56_c00275{letter-spacing:-0.684000px;}
.ls59_c00275{letter-spacing:-0.629280px;}
.ls81_c00275{letter-spacing:-0.622440px;}
.ls5a_c00275{letter-spacing:-0.601920px;}
.ls6e_c00275{letter-spacing:-0.560880px;}
.ls82_c00275{letter-spacing:-0.533520px;}
.ls5f_c00275{letter-spacing:-0.526680px;}
.ls5b_c00275{letter-spacing:-0.478800px;}
.ls72_c00275{letter-spacing:-0.458280px;}
.ls8b_c00275{letter-spacing:-0.450300px;}
.ls6b_c00275{letter-spacing:-0.376200px;}
.ls77_c00275{letter-spacing:-0.342000px;}
.ls71_c00275{letter-spacing:-0.273600px;}
.ls6d_c00275{letter-spacing:-0.232560px;}
.ls58_c00275{letter-spacing:-0.225720px;}
.ls69_c00275{letter-spacing:-0.188160px;}
.ls79_c00275{letter-spacing:-0.177840px;}
.ls7e_c00275{letter-spacing:-0.150480px;}
.ls87_c00275{letter-spacing:-0.136800px;}
.ls70_c00275{letter-spacing:-0.135600px;}
.ls64_c00275{letter-spacing:-0.129960px;}
.ls68_c00275{letter-spacing:-0.123120px;}
.ls85_c00275{letter-spacing:-0.109440px;}
.ls76_c00275{letter-spacing:-0.102600px;}
.ls67_c00275{letter-spacing:-0.095760px;}
.ls57_c00275{letter-spacing:-0.088920px;}
.ls74_c00275{letter-spacing:-0.082080px;}
.ls52_c00275{letter-spacing:-0.075240px;}
.ls62_c00275{letter-spacing:-0.054720px;}
.ls60_c00275{letter-spacing:-0.041040px;}
.ls54_c00275{letter-spacing:-0.027360px;}
.ls73_c00275{letter-spacing:-0.006840px;}
.ls53_c00275{letter-spacing:0.000000px;}
.ls3e_c00275{letter-spacing:0.006840px;}
.ls10_c00275{letter-spacing:0.027360px;}
.ls6f_c00275{letter-spacing:0.047880px;}
.ls7_c00275{letter-spacing:0.082080px;}
.ls3d_c00275{letter-spacing:0.095760px;}
.ls55_c00275{letter-spacing:0.109440px;}
.ls30_c00275{letter-spacing:0.136800px;}
.ls63_c00275{letter-spacing:0.143640px;}
.ls42_c00275{letter-spacing:0.155940px;}
.ls4c_c00275{letter-spacing:0.164160px;}
.ls2b_c00275{letter-spacing:0.184680px;}
.ls45_c00275{letter-spacing:0.196620px;}
.ls12_c00275{letter-spacing:0.198360px;}
.ls2_c00275{letter-spacing:0.212040px;}
.ls13_c00275{letter-spacing:0.232560px;}
.ls2c_c00275{letter-spacing:0.239400px;}
.lsf_c00275{letter-spacing:0.246240px;}
.ls20_c00275{letter-spacing:0.259920px;}
.ls0_c00275{letter-spacing:0.266760px;}
.ls6_c00275{letter-spacing:0.273600px;}
.ls3b_c00275{letter-spacing:0.280440px;}
.ls49_c00275{letter-spacing:0.300960px;}
.ls1c_c00275{letter-spacing:0.307800px;}
.ls5c_c00275{letter-spacing:0.314640px;}
.lsa_c00275{letter-spacing:0.325440px;}
.ls19_c00275{letter-spacing:0.328320px;}
.ls34_c00275{letter-spacing:0.335160px;}
.ls1d_c00275{letter-spacing:0.342000px;}
.ls11_c00275{letter-spacing:0.355680px;}
.ls3f_c00275{letter-spacing:0.359340px;}
.ls32_c00275{letter-spacing:0.389880px;}
.ls23_c00275{letter-spacing:0.393240px;}
.lsb_c00275{letter-spacing:0.396720px;}
.ls14_c00275{letter-spacing:0.410400px;}
.ls3_c00275{letter-spacing:0.417240px;}
.ls27_c00275{letter-spacing:0.437760px;}
.ls31_c00275{letter-spacing:0.447480px;}
.ls16_c00275{letter-spacing:0.451440px;}
.ls41_c00275{letter-spacing:0.465120px;}
.lse_c00275{letter-spacing:0.471960px;}
.ls18_c00275{letter-spacing:0.485640px;}
.ls26_c00275{letter-spacing:0.499320px;}
.ls4a_c00275{letter-spacing:0.501720px;}
.ls40_c00275{letter-spacing:0.522060px;}
.ls1f_c00275{letter-spacing:0.533520px;}
.ls29_c00275{letter-spacing:0.554040px;}
.ls47_c00275{letter-spacing:0.567720px;}
.ls4e_c00275{letter-spacing:0.581400px;}
.ls4f_c00275{letter-spacing:0.601920px;}
.ls5_c00275{letter-spacing:0.623760px;}
.ls39_c00275{letter-spacing:0.626400px;}
.ls9_c00275{letter-spacing:0.636120px;}
.ls2e_c00275{letter-spacing:0.642960px;}
.ls48_c00275{letter-spacing:0.670320px;}
.ls2a_c00275{letter-spacing:0.677160px;}
.ls8_c00275{letter-spacing:0.697680px;}
.ls44_c00275{letter-spacing:0.704520px;}
.ls8a_c00275{letter-spacing:0.725040px;}
.ls2d_c00275{letter-spacing:0.725460px;}
.ls1b_c00275{letter-spacing:0.731880px;}
.ls1e_c00275{letter-spacing:0.759240px;}
.ls43_c00275{letter-spacing:0.779700px;}
.ls22_c00275{letter-spacing:0.800280px;}
.ls80_c00275{letter-spacing:0.813600px;}
.ls4d_c00275{letter-spacing:0.916560px;}
.ls17_c00275{letter-spacing:0.943920px;}
.lsd_c00275{letter-spacing:0.964440px;}
.ls46_c00275{letter-spacing:0.991800px;}
.ls1a_c00275{letter-spacing:1.003440px;}
.ls50_c00275{letter-spacing:1.039680px;}
.ls3c_c00275{letter-spacing:1.087560px;}
.ls15_c00275{letter-spacing:1.190160px;}
.ls4_c00275{letter-spacing:1.193280px;}
.ls1_c00275{letter-spacing:1.299600px;}
.ls2f_c00275{letter-spacing:1.333800px;}
.ls36_c00275{letter-spacing:1.415880px;}
.ls21_c00275{letter-spacing:1.600560px;}
.ls24_c00275{letter-spacing:1.627920px;}
.ls25_c00275{letter-spacing:1.648440px;}
.ls28_c00275{letter-spacing:1.737360px;}
.ls37_c00275{letter-spacing:1.744200px;}
.ls38_c00275{letter-spacing:1.812600px;}
.ls3a_c00275{letter-spacing:2.067120px;}
.lsc_c00275{letter-spacing:2.236680px;}
.ls4b_c00275{letter-spacing:2.250360px;}
.ls33_c00275{letter-spacing:2.715480px;}
.ls35_c00275{letter-spacing:2.961720px;}
.ls89_c00275{letter-spacing:3.420000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{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__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00275{word-spacing:0.000000px;}
.ws3_c00275{word-spacing:0.303900px;}
.ws1_c00275{word-spacing:5.879640px;}
.ws2_c00275{word-spacing:7.733400px;}
.ws5_c00275{word-spacing:7.760400px;}
.ws6_c00275{word-spacing:10.938120px;}
.ws0_c00275{word-spacing:13.598160px;}
.ws4_c00275{word-spacing:13.679520px;}
._10_c00275{margin-left:-4.534920px;}
._f_c00275{margin-left:-2.571840px;}
._0_c00275{margin-left:-1.012320px;}
._1_c00275{width:1.251720px;}
._e_c00275{width:2.414520px;}
._d_c00275{width:3.789360px;}
._a_c00275{width:4.870080px;}
._12_c00275{width:6.094440px;}
._b_c00275{width:7.284600px;}
._c_c00275{width:8.334960px;}
._16_c00275{width:9.370680px;}
._2_c00275{width:10.509000px;}
._11_c00275{width:11.523120px;}
._14_c00275{width:12.688200px;}
._4_c00275{width:14.076720px;}
._3_c00275{width:15.663600px;}
._15_c00275{width:17.234040px;}
._13_c00275{width:19.390800px;}
._7_c00275{width:23.474880px;}
._9_c00275{width:26.908560px;}
._6_c00275{width:28.030320px;}
._5_c00275{width:31.425000px;}
._8_c00275{width:35.130240px;}
.fc0_c00275{color:transparent;}
.fs4_c00275{font-size:14.400600px;}
.fs3_c00275{font-size:51.840000px;}
.fs6_c00275{font-size:57.000000px;}
.fs0_c00275{font-size:67.200000px;}
.fs2_c00275{font-size:67.800000px;}
.fs1_c00275{font-size:68.400000px;}
.fs5_c00275{font-size:69.600000px;}
.y0_c00275{bottom:0.000000px;}
.y1a_c00275{bottom:68.415000px;}
.y19_c00275{bottom:145.080000px;}
.y18_c00275{bottom:207.719700px;}
.y17_c00275{bottom:238.687800px;}
.y16_c00275{bottom:270.015000px;}
.y15_c00275{bottom:332.295000px;}
.y14_c00275{bottom:363.255000px;}
.y13_c00275{bottom:426.240000px;}
.y12_c00275{bottom:426.240600px;}
.y11_c00275{bottom:488.895000px;}
.y10_c00275{bottom:520.200000px;}
.yf_c00275{bottom:583.206900px;}
.ye_c00275{bottom:614.175000px;}
.yd_c00275{bottom:676.455000px;}
.yc_c00275{bottom:763.200000px;}
.yb_c00275{bottom:770.392800px;}
.ya_c00275{bottom:801.720000px;}
.y9_c00275{bottom:864.375000px;}
.y8_c00275{bottom:895.695000px;}
.y6_c00275{bottom:958.687800px;}
.y7_c00275{bottom:958.695000px;}
.y5_c00275{bottom:990.006900px;}
.y4_c00275{bottom:1020.975000px;}
.y3_c00275{bottom:1051.560000px;}
.y2_c00275{bottom:1113.855000px;}
.y1_c00275{bottom:1189.080000px;}
.h7_c00275{height:14.133401px;}
.h6_c00275{height:34.525440px;}
.ha_c00275{height:55.942383px;}
.h2_c00275{height:65.953125px;}
.h9_c00275{height:66.508887px;}
.h3_c00275{height:67.130859px;}
.h4_c00275{height:67.163259px;}
.h8_c00275{height:68.274609px;}
.h5_c00275{height:70.713281px;}
.h1_c00275{height:1263.000000px;}
.h0_c00275{height:1263.240000px;}
.w1_c00275{width:892.500000px;}
.w0_c00275{width:892.800000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:124.845000px;}
.x2_c00275{left:179.085000px;}
.xb_c00275{left:180.390000px;}
.x8_c00275{left:289.095000px;}
.xe_c00275{left:319.650000px;}
.x9_c00275{left:350.805000px;}
.xf_c00275{left:361.230000px;}
.xa_c00275{left:377.925000px;}
.x10_c00275{left:382.950000px;}
.x13_c00275{left:426.510000px;}
.x3_c00275{left:430.380000px;}
.x4_c00275{left:446.370000px;}
.x5_c00275{left:469.440000px;}
.x6_c00275{left:502.770000px;}
.xc_c00275{left:553.125000px;}
.xd_c00275{left:581.550000px;}
.x11_c00275{left:654.810000px;}
.x12_c00275{left:678.270000px;}
.x7_c00275{left:726.120000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls7a_c00275{letter-spacing:-2.128000pt;}
.ls61_c00275{letter-spacing:-2.109333pt;}
.ls51_c00275{letter-spacing:-2.090667pt;}
.ls75_c00275{letter-spacing:-1.963840pt;}
.ls78_c00275{letter-spacing:-1.927360pt;}
.ls5e_c00275{letter-spacing:-1.890880pt;}
.ls5d_c00275{letter-spacing:-1.744960pt;}
.ls6c_c00275{letter-spacing:-1.513920pt;}
.ls7d_c00275{letter-spacing:-1.392320pt;}
.ls66_c00275{letter-spacing:-1.252480pt;}
.ls7b_c00275{letter-spacing:-1.234240pt;}
.ls88_c00275{letter-spacing:-1.064000pt;}
.ls84_c00275{letter-spacing:-0.960640pt;}
.ls86_c00275{letter-spacing:-0.875520pt;}
.ls7f_c00275{letter-spacing:-0.796480pt;}
.ls83_c00275{letter-spacing:-0.772160pt;}
.ls7c_c00275{letter-spacing:-0.741760pt;}
.ls65_c00275{letter-spacing:-0.674880pt;}
.ls6a_c00275{letter-spacing:-0.626240pt;}
.ls56_c00275{letter-spacing:-0.608000pt;}
.ls59_c00275{letter-spacing:-0.559360pt;}
.ls81_c00275{letter-spacing:-0.553280pt;}
.ls5a_c00275{letter-spacing:-0.535040pt;}
.ls6e_c00275{letter-spacing:-0.498560pt;}
.ls82_c00275{letter-spacing:-0.474240pt;}
.ls5f_c00275{letter-spacing:-0.468160pt;}
.ls5b_c00275{letter-spacing:-0.425600pt;}
.ls72_c00275{letter-spacing:-0.407360pt;}
.ls8b_c00275{letter-spacing:-0.400267pt;}
.ls6b_c00275{letter-spacing:-0.334400pt;}
.ls77_c00275{letter-spacing:-0.304000pt;}
.ls71_c00275{letter-spacing:-0.243200pt;}
.ls6d_c00275{letter-spacing:-0.206720pt;}
.ls58_c00275{letter-spacing:-0.200640pt;}
.ls69_c00275{letter-spacing:-0.167253pt;}
.ls79_c00275{letter-spacing:-0.158080pt;}
.ls7e_c00275{letter-spacing:-0.133760pt;}
.ls87_c00275{letter-spacing:-0.121600pt;}
.ls70_c00275{letter-spacing:-0.120533pt;}
.ls64_c00275{letter-spacing:-0.115520pt;}
.ls68_c00275{letter-spacing:-0.109440pt;}
.ls85_c00275{letter-spacing:-0.097280pt;}
.ls76_c00275{letter-spacing:-0.091200pt;}
.ls67_c00275{letter-spacing:-0.085120pt;}
.ls57_c00275{letter-spacing:-0.079040pt;}
.ls74_c00275{letter-spacing:-0.072960pt;}
.ls52_c00275{letter-spacing:-0.066880pt;}
.ls62_c00275{letter-spacing:-0.048640pt;}
.ls60_c00275{letter-spacing:-0.036480pt;}
.ls54_c00275{letter-spacing:-0.024320pt;}
.ls73_c00275{letter-spacing:-0.006080pt;}
.ls53_c00275{letter-spacing:0.000000pt;}
.ls3e_c00275{letter-spacing:0.006080pt;}
.ls10_c00275{letter-spacing:0.024320pt;}
.ls6f_c00275{letter-spacing:0.042560pt;}
.ls7_c00275{letter-spacing:0.072960pt;}
.ls3d_c00275{letter-spacing:0.085120pt;}
.ls55_c00275{letter-spacing:0.097280pt;}
.ls30_c00275{letter-spacing:0.121600pt;}
.ls63_c00275{letter-spacing:0.127680pt;}
.ls42_c00275{letter-spacing:0.138613pt;}
.ls4c_c00275{letter-spacing:0.145920pt;}
.ls2b_c00275{letter-spacing:0.164160pt;}
.ls45_c00275{letter-spacing:0.174773pt;}
.ls12_c00275{letter-spacing:0.176320pt;}
.ls2_c00275{letter-spacing:0.188480pt;}
.ls13_c00275{letter-spacing:0.206720pt;}
.ls2c_c00275{letter-spacing:0.212800pt;}
.lsf_c00275{letter-spacing:0.218880pt;}
.ls20_c00275{letter-spacing:0.231040pt;}
.ls0_c00275{letter-spacing:0.237120pt;}
.ls6_c00275{letter-spacing:0.243200pt;}
.ls3b_c00275{letter-spacing:0.249280pt;}
.ls49_c00275{letter-spacing:0.267520pt;}
.ls1c_c00275{letter-spacing:0.273600pt;}
.ls5c_c00275{letter-spacing:0.279680pt;}
.lsa_c00275{letter-spacing:0.289280pt;}
.ls19_c00275{letter-spacing:0.291840pt;}
.ls34_c00275{letter-spacing:0.297920pt;}
.ls1d_c00275{letter-spacing:0.304000pt;}
.ls11_c00275{letter-spacing:0.316160pt;}
.ls3f_c00275{letter-spacing:0.319413pt;}
.ls32_c00275{letter-spacing:0.346560pt;}
.ls23_c00275{letter-spacing:0.349547pt;}
.lsb_c00275{letter-spacing:0.352640pt;}
.ls14_c00275{letter-spacing:0.364800pt;}
.ls3_c00275{letter-spacing:0.370880pt;}
.ls27_c00275{letter-spacing:0.389120pt;}
.ls31_c00275{letter-spacing:0.397760pt;}
.ls16_c00275{letter-spacing:0.401280pt;}
.ls41_c00275{letter-spacing:0.413440pt;}
.lse_c00275{letter-spacing:0.419520pt;}
.ls18_c00275{letter-spacing:0.431680pt;}
.ls26_c00275{letter-spacing:0.443840pt;}
.ls4a_c00275{letter-spacing:0.445973pt;}
.ls40_c00275{letter-spacing:0.464053pt;}
.ls1f_c00275{letter-spacing:0.474240pt;}
.ls29_c00275{letter-spacing:0.492480pt;}
.ls47_c00275{letter-spacing:0.504640pt;}
.ls4e_c00275{letter-spacing:0.516800pt;}
.ls4f_c00275{letter-spacing:0.535040pt;}
.ls5_c00275{letter-spacing:0.554453pt;}
.ls39_c00275{letter-spacing:0.556800pt;}
.ls9_c00275{letter-spacing:0.565440pt;}
.ls2e_c00275{letter-spacing:0.571520pt;}
.ls48_c00275{letter-spacing:0.595840pt;}
.ls2a_c00275{letter-spacing:0.601920pt;}
.ls8_c00275{letter-spacing:0.620160pt;}
.ls44_c00275{letter-spacing:0.626240pt;}
.ls8a_c00275{letter-spacing:0.644480pt;}
.ls2d_c00275{letter-spacing:0.644853pt;}
.ls1b_c00275{letter-spacing:0.650560pt;}
.ls1e_c00275{letter-spacing:0.674880pt;}
.ls43_c00275{letter-spacing:0.693067pt;}
.ls22_c00275{letter-spacing:0.711360pt;}
.ls80_c00275{letter-spacing:0.723200pt;}
.ls4d_c00275{letter-spacing:0.814720pt;}
.ls17_c00275{letter-spacing:0.839040pt;}
.lsd_c00275{letter-spacing:0.857280pt;}
.ls46_c00275{letter-spacing:0.881600pt;}
.ls1a_c00275{letter-spacing:0.891947pt;}
.ls50_c00275{letter-spacing:0.924160pt;}
.ls3c_c00275{letter-spacing:0.966720pt;}
.ls15_c00275{letter-spacing:1.057920pt;}
.ls4_c00275{letter-spacing:1.060693pt;}
.ls1_c00275{letter-spacing:1.155200pt;}
.ls2f_c00275{letter-spacing:1.185600pt;}
.ls36_c00275{letter-spacing:1.258560pt;}
.ls21_c00275{letter-spacing:1.422720pt;}
.ls24_c00275{letter-spacing:1.447040pt;}
.ls25_c00275{letter-spacing:1.465280pt;}
.ls28_c00275{letter-spacing:1.544320pt;}
.ls37_c00275{letter-spacing:1.550400pt;}
.ls38_c00275{letter-spacing:1.611200pt;}
.ls3a_c00275{letter-spacing:1.837440pt;}
.lsc_c00275{letter-spacing:1.988160pt;}
.ls4b_c00275{letter-spacing:2.000320pt;}
.ls33_c00275{letter-spacing:2.413760pt;}
.ls35_c00275{letter-spacing:2.632640pt;}
.ls89_c00275{letter-spacing:3.040000pt;}
.ws7_c00275{word-spacing:0.000000pt;}
.ws3_c00275{word-spacing:0.270133pt;}
.ws1_c00275{word-spacing:5.226347pt;}
.ws2_c00275{word-spacing:6.874133pt;}
.ws5_c00275{word-spacing:6.898133pt;}
.ws6_c00275{word-spacing:9.722773pt;}
.ws0_c00275{word-spacing:12.087253pt;}
.ws4_c00275{word-spacing:12.159573pt;}
._10_c00275{margin-left:-4.031040pt;}
._f_c00275{margin-left:-2.286080pt;}
._0_c00275{margin-left:-0.899840pt;}
._1_c00275{width:1.112640pt;}
._e_c00275{width:2.146240pt;}
._d_c00275{width:3.368320pt;}
._a_c00275{width:4.328960pt;}
._12_c00275{width:5.417280pt;}
._b_c00275{width:6.475200pt;}
._c_c00275{width:7.408853pt;}
._16_c00275{width:8.329493pt;}
._2_c00275{width:9.341333pt;}
._11_c00275{width:10.242773pt;}
._14_c00275{width:11.278400pt;}
._4_c00275{width:12.512640pt;}
._3_c00275{width:13.923200pt;}
._15_c00275{width:15.319147pt;}
._13_c00275{width:17.236267pt;}
._7_c00275{width:20.866560pt;}
._9_c00275{width:23.918720pt;}
._6_c00275{width:24.915840pt;}
._5_c00275{width:27.933333pt;}
._8_c00275{width:31.226880pt;}
.fs4_c00275{font-size:12.800533pt;}
.fs3_c00275{font-size:46.080000pt;}
.fs6_c00275{font-size:50.666667pt;}
.fs0_c00275{font-size:59.733333pt;}
.fs2_c00275{font-size:60.266667pt;}
.fs1_c00275{font-size:60.800000pt;}
.fs5_c00275{font-size:61.866667pt;}
.y0_c00275{bottom:0.000000pt;}
.y1a_c00275{bottom:60.813333pt;}
.y19_c00275{bottom:128.960000pt;}
.y18_c00275{bottom:184.639733pt;}
.y17_c00275{bottom:212.166933pt;}
.y16_c00275{bottom:240.013333pt;}
.y15_c00275{bottom:295.373333pt;}
.y14_c00275{bottom:322.893333pt;}
.y13_c00275{bottom:378.880000pt;}
.y12_c00275{bottom:378.880533pt;}
.y11_c00275{bottom:434.573333pt;}
.y10_c00275{bottom:462.400000pt;}
.yf_c00275{bottom:518.406133pt;}
.ye_c00275{bottom:545.933333pt;}
.yd_c00275{bottom:601.293333pt;}
.yc_c00275{bottom:678.400000pt;}
.yb_c00275{bottom:684.793600pt;}
.ya_c00275{bottom:712.640000pt;}
.y9_c00275{bottom:768.333333pt;}
.y8_c00275{bottom:796.173333pt;}
.y6_c00275{bottom:852.166933pt;}
.y7_c00275{bottom:852.173333pt;}
.y5_c00275{bottom:880.006133pt;}
.y4_c00275{bottom:907.533333pt;}
.y3_c00275{bottom:934.720000pt;}
.y2_c00275{bottom:990.093333pt;}
.y1_c00275{bottom:1056.960000pt;}
.h7_c00275{height:12.563023pt;}
.h6_c00275{height:30.689280pt;}
.ha_c00275{height:49.726562pt;}
.h2_c00275{height:58.625000pt;}
.h9_c00275{height:59.119010pt;}
.h3_c00275{height:59.671875pt;}
.h4_c00275{height:59.700675pt;}
.h8_c00275{height:60.688542pt;}
.h5_c00275{height:62.856250pt;}
.h1_c00275{height:1122.666667pt;}
.h0_c00275{height:1122.880000pt;}
.w1_c00275{width:793.333333pt;}
.w0_c00275{width:793.600000pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:110.973333pt;}
.x2_c00275{left:159.186667pt;}
.xb_c00275{left:160.346667pt;}
.x8_c00275{left:256.973333pt;}
.xe_c00275{left:284.133333pt;}
.x9_c00275{left:311.826667pt;}
.xf_c00275{left:321.093333pt;}
.xa_c00275{left:335.933333pt;}
.x10_c00275{left:340.400000pt;}
.x13_c00275{left:379.120000pt;}
.x3_c00275{left:382.560000pt;}
.x4_c00275{left:396.773333pt;}
.x5_c00275{left:417.280000pt;}
.x6_c00275{left:446.906667pt;}
.xc_c00275{left:491.666667pt;}
.xd_c00275{left:516.933333pt;}
.x11_c00275{left:582.053333pt;}
.x12_c00275{left:602.906667pt;}
.x7_c00275{left:645.440000pt;}
}





/* 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_c00276 {
    display:none;
  }
  .loading-indicator_c00276.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00276 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_c00276 { 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_c00276" -> "#page-container .classname_c00276")
 */
.pf_c00276 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00276 { /* 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_c00276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00276 { /* 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_c00276 { /* 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_c00276 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00276 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00276 {overflow:visible;}
  }
}
.c_c00276 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00276 { /* 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_c00276:after { /* webkit #35443 */
  content: '';
}
.t_c00276:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00276 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 */
}
.__c00276 { /* 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_c00276 { /* info for Javascript */
  display:none;
}
.l_c00276 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00276 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00276 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00276: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_c00276 {
    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_c00276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00276.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_c00276 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00276;src:url('chunks/assets/font_d0b2789b168e9630f612817c.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.284668;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_c00276;src:url('chunks/assets/font_43ea77c05e05a58da32ca81d.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;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_c00276;src:url('chunks/assets/font_a28039a5f56b55e93c038c28.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.284180;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_c00276;src:url('chunks/assets/font_570f2d5c7c4cb8ff3144c103.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:0.666000;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;}
.m8_c00276{transform:matrix(0.171299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171299,0.000000,0.000000,0.250000,0,0);}
.m2_c00276{transform:matrix(0.204259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204259,0.000000,0.000000,0.250000,0,0);}
.m3_c00276{transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);}
.m6_c00276{transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);}
.m0_c00276{transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);}
.mf_c00276{transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);}
.md_c00276{transform:matrix(0.235594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235594,0.000000,0.000000,0.250000,0,0);}
.m7_c00276{transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);}
.ma_c00276{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m4_c00276{transform:matrix(0.246746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246746,0.000000,0.000000,0.250000,0,0);}
.me_c00276{transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);}
.m1_c00276{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);}
.m5_c00276{transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);}
.mb_c00276{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.mc_c00276{transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);}
.m9_c00276{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls66_c00276{letter-spacing:-2.562000px;}
.ls67_c00276{letter-spacing:-2.436000px;}
.ls6a_c00276{letter-spacing:-2.394000px;}
.ls7e_c00276{letter-spacing:-2.373000px;}
.ls89_c00276{letter-spacing:-2.346120px;}
.ls77_c00276{letter-spacing:-2.168280px;}
.ls80_c00276{letter-spacing:-2.134080px;}
.ls69_c00276{letter-spacing:-1.703160px;}
.ls86_c00276{letter-spacing:-1.682640px;}
.ls8c_c00276{letter-spacing:-1.590000px;}
.ls71_c00276{letter-spacing:-1.272240px;}
.ls7f_c00276{letter-spacing:-1.121760px;}
.ls75_c00276{letter-spacing:-1.080720px;}
.ls6c_c00276{letter-spacing:-0.957600px;}
.ls8d_c00276{letter-spacing:-0.834480px;}
.ls6e_c00276{letter-spacing:-0.684000px;}
.ls74_c00276{letter-spacing:-0.615600px;}
.ls87_c00276{letter-spacing:-0.533520px;}
.ls68_c00276{letter-spacing:-0.526680px;}
.ls7b_c00276{letter-spacing:-0.478800px;}
.ls6f_c00276{letter-spacing:-0.458280px;}
.ls79_c00276{letter-spacing:-0.376200px;}
.ls85_c00276{letter-spacing:-0.342000px;}
.ls84_c00276{letter-spacing:-0.294120px;}
.ls88_c00276{letter-spacing:-0.239400px;}
.ls8a_c00276{letter-spacing:-0.171000px;}
.ls76_c00276{letter-spacing:-0.150480px;}
.ls7a_c00276{letter-spacing:-0.109440px;}
.ls73_c00276{letter-spacing:-0.095760px;}
.ls78_c00276{letter-spacing:-0.054720px;}
.ls6d_c00276{letter-spacing:0.000000px;}
.ls64_c00276{letter-spacing:0.006840px;}
.ls63_c00276{letter-spacing:0.034200px;}
.ls5f_c00276{letter-spacing:0.041040px;}
.ls7d_c00276{letter-spacing:0.061560px;}
.ls54_c00276{letter-spacing:0.082080px;}
.ls72_c00276{letter-spacing:0.102600px;}
.ls3c_c00276{letter-spacing:0.109440px;}
.ls18_c00276{letter-spacing:0.171000px;}
.ls3d_c00276{letter-spacing:0.191520px;}
.ls83_c00276{letter-spacing:0.198360px;}
.ls28_c00276{letter-spacing:0.212040px;}
.ls40_c00276{letter-spacing:0.218880px;}
.ls51_c00276{letter-spacing:0.232560px;}
.ls3_c00276{letter-spacing:0.239400px;}
.ls1e_c00276{letter-spacing:0.253080px;}
.ls20_c00276{letter-spacing:0.259920px;}
.ls33_c00276{letter-spacing:0.273600px;}
.ls2f_c00276{letter-spacing:0.287280px;}
.ls2e_c00276{letter-spacing:0.294120px;}
.ls47_c00276{letter-spacing:0.300960px;}
.lsf_c00276{letter-spacing:0.307800px;}
.ls11_c00276{letter-spacing:0.321480px;}
.ls46_c00276{letter-spacing:0.328320px;}
.ls5d_c00276{letter-spacing:0.335160px;}
.ls65_c00276{letter-spacing:0.355680px;}
.lse_c00276{letter-spacing:0.362520px;}
.ls0_c00276{letter-spacing:0.365400px;}
.ls38_c00276{letter-spacing:0.369360px;}
.ls5c_c00276{letter-spacing:0.376200px;}
.ls81_c00276{letter-spacing:0.383040px;}
.ls13_c00276{letter-spacing:0.403560px;}
.lsc_c00276{letter-spacing:0.410400px;}
.ls14_c00276{letter-spacing:0.417240px;}
.ls60_c00276{letter-spacing:0.444600px;}
.ls26_c00276{letter-spacing:0.478800px;}
.ls5e_c00276{letter-spacing:0.485640px;}
.ls50_c00276{letter-spacing:0.499320px;}
.ls15_c00276{letter-spacing:0.513000px;}
.ls3f_c00276{letter-spacing:0.519840px;}
.ls32_c00276{letter-spacing:0.526680px;}
.ls5a_c00276{letter-spacing:0.547200px;}
.ls6_c00276{letter-spacing:0.554040px;}
.ls2d_c00276{letter-spacing:0.567720px;}
.ls2b_c00276{letter-spacing:0.574560px;}
.ls44_c00276{letter-spacing:0.581400px;}
.ls30_c00276{letter-spacing:0.588240px;}
.ls36_c00276{letter-spacing:0.595080px;}
.ls7_c00276{letter-spacing:0.601920px;}
.ls8b_c00276{letter-spacing:0.622440px;}
.lsa_c00276{letter-spacing:0.629280px;}
.ls12_c00276{letter-spacing:0.649800px;}
.ls49_c00276{letter-spacing:0.656640px;}
.ls56_c00276{letter-spacing:0.663480px;}
.ls1b_c00276{letter-spacing:0.677160px;}
.ls17_c00276{letter-spacing:0.684000px;}
.ls5_c00276{letter-spacing:0.711360px;}
.ls31_c00276{letter-spacing:0.718200px;}
.ls35_c00276{letter-spacing:0.731880px;}
.ls29_c00276{letter-spacing:0.745560px;}
.ls3a_c00276{letter-spacing:0.752400px;}
.ls1_c00276{letter-spacing:0.759240px;}
.ls6b_c00276{letter-spacing:0.772920px;}
.ls4b_c00276{letter-spacing:0.786600px;}
.ls4c_c00276{letter-spacing:0.800280px;}
.ls1f_c00276{letter-spacing:0.807120px;}
.ls1c_c00276{letter-spacing:0.813960px;}
.ls23_c00276{letter-spacing:0.820800px;}
.ls5b_c00276{letter-spacing:0.834480px;}
.ls53_c00276{letter-spacing:0.848160px;}
.ls3e_c00276{letter-spacing:0.855000px;}
.ls7c_c00276{letter-spacing:0.861840px;}
.ls39_c00276{letter-spacing:0.889200px;}
.ls62_c00276{letter-spacing:0.902880px;}
.ls2_c00276{letter-spacing:0.916560px;}
.ls42_c00276{letter-spacing:0.930240px;}
.ls10_c00276{letter-spacing:0.937080px;}
.lsb_c00276{letter-spacing:0.950760px;}
.ls22_c00276{letter-spacing:0.964440px;}
.ls45_c00276{letter-spacing:0.978120px;}
.ls19_c00276{letter-spacing:0.991800px;}
.ls9_c00276{letter-spacing:1.012320px;}
.ls4f_c00276{letter-spacing:1.060200px;}
.ls2a_c00276{letter-spacing:1.067040px;}
.ls25_c00276{letter-spacing:1.073880px;}
.ls3b_c00276{letter-spacing:1.108080px;}
.ls4_c00276{letter-spacing:1.162800px;}
.ls1d_c00276{letter-spacing:1.190160px;}
.ls4d_c00276{letter-spacing:1.224360px;}
.lsd_c00276{letter-spacing:1.251720px;}
.ls1a_c00276{letter-spacing:1.320120px;}
.ls52_c00276{letter-spacing:1.347480px;}
.ls41_c00276{letter-spacing:1.504800px;}
.ls27_c00276{letter-spacing:1.545840px;}
.ls59_c00276{letter-spacing:1.559520px;}
.ls24_c00276{letter-spacing:1.648440px;}
.ls55_c00276{letter-spacing:1.655280px;}
.ls2c_c00276{letter-spacing:1.682640px;}
.ls37_c00276{letter-spacing:1.737360px;}
.ls82_c00276{letter-spacing:1.744200px;}
.ls8_c00276{letter-spacing:1.792080px;}
.ls48_c00276{letter-spacing:1.812600px;}
.ls4a_c00276{letter-spacing:1.874160px;}
.ls57_c00276{letter-spacing:1.887840px;}
.ls4e_c00276{letter-spacing:2.291400px;}
.ls34_c00276{letter-spacing:2.352960px;}
.ls61_c00276{letter-spacing:2.435040px;}
.ls43_c00276{letter-spacing:2.715480px;}
.ls21_c00276{letter-spacing:2.961720px;}
.ls58_c00276{letter-spacing:3.078000px;}
.ls16_c00276{letter-spacing:3.091680px;}
.ls70_c00276{letter-spacing:3.420000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{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__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00276{word-spacing:-1.559520px;}
.ws2_c00276{word-spacing:-0.034200px;}
.ws4_c00276{word-spacing:0.000000px;}
.ws3_c00276{word-spacing:4.856400px;}
.ws1_c00276{word-spacing:9.097200px;}
._10_c00276{margin-left:-15.327720px;}
._15_c00276{margin-left:-9.582840px;}
._13_c00276{margin-left:-7.445160px;}
._14_c00276{margin-left:-5.985000px;}
._e_c00276{margin-left:-4.418640px;}
._4_c00276{margin-left:-2.855880px;}
._f_c00276{margin-left:-1.778400px;}
._c_c00276{width:1.279080px;}
._5_c00276{width:2.729160px;}
._3_c00276{width:4.032000px;}
._a_c00276{width:6.005520px;}
._b_c00276{width:7.079400px;}
._7_c00276{width:8.730000px;}
._d_c00276{width:10.152000px;}
._6_c00276{width:11.199480px;}
._9_c00276{width:13.083120px;}
._8_c00276{width:14.726520px;}
._12_c00276{width:15.814080px;}
._2_c00276{width:17.236800px;}
._11_c00276{width:18.941760px;}
._1_c00276{width:20.205360px;}
._0_c00276{width:22.194480px;}
.fc0_c00276{color:transparent;}
.fs5_c00276{font-size:51.840000px;}
.fs1_c00276{font-size:63.000000px;}
.fs7_c00276{font-size:63.600000px;}
.fs6_c00276{font-size:67.800000px;}
.fs2_c00276{font-size:68.400000px;}
.fs3_c00276{font-size:69.600000px;}
.fs0_c00276{font-size:73.200000px;}
.fs4_c00276{font-size:73.800000px;}
.y0_c00276{bottom:0.000000px;}
.y1f_c00276{bottom:69.855006px;}
.y1e_c00276{bottom:146.535006px;}
.y1d_c00276{bottom:176.400006px;}
.y1c_c00276{bottom:208.791606px;}
.y1b_c00276{bottom:240.495006px;}
.y1a_c00276{bottom:240.496806px;}
.y19_c00276{bottom:302.768706px;}
.y18_c00276{bottom:365.765106px;}
.y17_c00276{bottom:397.451406px;}
.y16_c00276{bottom:460.088706px;}
.y15_c00276{bottom:491.775006px;}
.y14_c00276{bottom:491.776806px;}
.y13_c00276{bottom:554.057706px;}
.y12_c00276{bottom:616.688706px;}
.y11_c00276{bottom:648.375006px;}
.y10_c00276{bottom:709.935006px;}
.yf_c00276{bottom:742.320006px;}
.ye_c00276{bottom:773.643606px;}
.yd_c00276{bottom:804.970806px;}
.yc_c00276{bottom:836.640006px;}
.yb_c00276{bottom:899.280006px;}
.y9_c00276{bottom:962.279706px;}
.ya_c00276{bottom:962.280006px;}
.y8_c00276{bottom:993.247806px;}
.y6_c00276{bottom:1024.567806px;}
.y7_c00276{bottom:1024.575006px;}
.y4_c00276{bottom:1055.889006px;}
.y5_c00276{bottom:1055.895006px;}
.y3_c00276{bottom:1086.840006px;}
.y2_c00276{bottom:1118.520006px;}
.y1_c00276{bottom:1194.840006px;}
.h7_c00276{height:34.525440px;}
.hf_c00276{height:66.332812px;}
.h10_c00276{height:67.097461px;}
.h3_c00276{height:67.130859px;}
.h6_c00276{height:67.132059px;}
.hd_c00276{height:67.156059px;}
.he_c00276{height:67.164459px;}
.h9_c00276{height:70.713281px;}
.h2_c00276{height:71.841797px;}
.h8_c00276{height:72.416264px;}
.hb_c00276{height:72.419864px;}
.hc_c00276{height:72.423464px;}
.h5_c00276{height:72.454664px;}
.ha_c00276{height:72.455864px;}
.h4_c00276{height:72.590625px;}
.h1_c00276{height:1263.000000px;}
.h0_c00276{height:1263.240006px;}
.w1_c00276{width:892.500000px;}
.w0_c00276{width:892.799998px;}
.x0_c00276{left:0.000000px;}
.x18_c00276{left:120.258299px;}
.x12_c00276{left:121.281898px;}
.xc_c00276{left:122.346599px;}
.x2_c00276{left:123.689998px;}
.x1_c00276{left:125.204999px;}
.x13_c00276{left:174.768298px;}
.xe_c00276{left:176.204998px;}
.x19_c00276{left:258.477598px;}
.xa_c00276{left:287.249999px;}
.x1c_c00276{left:288.329998px;}
.xb_c00276{left:319.544999px;}
.x14_c00276{left:405.989999px;}
.x6_c00276{left:418.499998px;}
.x1e_c00276{left:424.709999px;}
.x15_c00276{left:429.404998px;}
.xf_c00276{left:448.574998px;}
.xd_c00276{left:456.629999px;}
.x7_c00276{left:470.354998px;}
.x10_c00276{left:480.449998px;}
.x3_c00276{left:513.509999px;}
.x1a_c00276{left:522.884999px;}
.x4_c00276{left:538.349999px;}
.x1b_c00276{left:543.974999px;}
.x8_c00276{left:597.569999px;}
.x9_c00276{left:622.289999px;}
.x16_c00276{left:641.189999px;}
.x17_c00276{left:669.629999px;}
.x1d_c00276{left:679.574998px;}
.x11_c00276{left:698.039999px;}
.x5_c00276{left:740.309999px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls66_c00276{letter-spacing:-2.277333pt;}
.ls67_c00276{letter-spacing:-2.165333pt;}
.ls6a_c00276{letter-spacing:-2.128000pt;}
.ls7e_c00276{letter-spacing:-2.109333pt;}
.ls89_c00276{letter-spacing:-2.085440pt;}
.ls77_c00276{letter-spacing:-1.927360pt;}
.ls80_c00276{letter-spacing:-1.896960pt;}
.ls69_c00276{letter-spacing:-1.513920pt;}
.ls86_c00276{letter-spacing:-1.495680pt;}
.ls8c_c00276{letter-spacing:-1.413333pt;}
.ls71_c00276{letter-spacing:-1.130880pt;}
.ls7f_c00276{letter-spacing:-0.997120pt;}
.ls75_c00276{letter-spacing:-0.960640pt;}
.ls6c_c00276{letter-spacing:-0.851200pt;}
.ls8d_c00276{letter-spacing:-0.741760pt;}
.ls6e_c00276{letter-spacing:-0.608000pt;}
.ls74_c00276{letter-spacing:-0.547200pt;}
.ls87_c00276{letter-spacing:-0.474240pt;}
.ls68_c00276{letter-spacing:-0.468160pt;}
.ls7b_c00276{letter-spacing:-0.425600pt;}
.ls6f_c00276{letter-spacing:-0.407360pt;}
.ls79_c00276{letter-spacing:-0.334400pt;}
.ls85_c00276{letter-spacing:-0.304000pt;}
.ls84_c00276{letter-spacing:-0.261440pt;}
.ls88_c00276{letter-spacing:-0.212800pt;}
.ls8a_c00276{letter-spacing:-0.152000pt;}
.ls76_c00276{letter-spacing:-0.133760pt;}
.ls7a_c00276{letter-spacing:-0.097280pt;}
.ls73_c00276{letter-spacing:-0.085120pt;}
.ls78_c00276{letter-spacing:-0.048640pt;}
.ls6d_c00276{letter-spacing:0.000000pt;}
.ls64_c00276{letter-spacing:0.006080pt;}
.ls63_c00276{letter-spacing:0.030400pt;}
.ls5f_c00276{letter-spacing:0.036480pt;}
.ls7d_c00276{letter-spacing:0.054720pt;}
.ls54_c00276{letter-spacing:0.072960pt;}
.ls72_c00276{letter-spacing:0.091200pt;}
.ls3c_c00276{letter-spacing:0.097280pt;}
.ls18_c00276{letter-spacing:0.152000pt;}
.ls3d_c00276{letter-spacing:0.170240pt;}
.ls83_c00276{letter-spacing:0.176320pt;}
.ls28_c00276{letter-spacing:0.188480pt;}
.ls40_c00276{letter-spacing:0.194560pt;}
.ls51_c00276{letter-spacing:0.206720pt;}
.ls3_c00276{letter-spacing:0.212800pt;}
.ls1e_c00276{letter-spacing:0.224960pt;}
.ls20_c00276{letter-spacing:0.231040pt;}
.ls33_c00276{letter-spacing:0.243200pt;}
.ls2f_c00276{letter-spacing:0.255360pt;}
.ls2e_c00276{letter-spacing:0.261440pt;}
.ls47_c00276{letter-spacing:0.267520pt;}
.lsf_c00276{letter-spacing:0.273600pt;}
.ls11_c00276{letter-spacing:0.285760pt;}
.ls46_c00276{letter-spacing:0.291840pt;}
.ls5d_c00276{letter-spacing:0.297920pt;}
.ls65_c00276{letter-spacing:0.316160pt;}
.lse_c00276{letter-spacing:0.322240pt;}
.ls0_c00276{letter-spacing:0.324800pt;}
.ls38_c00276{letter-spacing:0.328320pt;}
.ls5c_c00276{letter-spacing:0.334400pt;}
.ls81_c00276{letter-spacing:0.340480pt;}
.ls13_c00276{letter-spacing:0.358720pt;}
.lsc_c00276{letter-spacing:0.364800pt;}
.ls14_c00276{letter-spacing:0.370880pt;}
.ls60_c00276{letter-spacing:0.395200pt;}
.ls26_c00276{letter-spacing:0.425600pt;}
.ls5e_c00276{letter-spacing:0.431680pt;}
.ls50_c00276{letter-spacing:0.443840pt;}
.ls15_c00276{letter-spacing:0.456000pt;}
.ls3f_c00276{letter-spacing:0.462080pt;}
.ls32_c00276{letter-spacing:0.468160pt;}
.ls5a_c00276{letter-spacing:0.486400pt;}
.ls6_c00276{letter-spacing:0.492480pt;}
.ls2d_c00276{letter-spacing:0.504640pt;}
.ls2b_c00276{letter-spacing:0.510720pt;}
.ls44_c00276{letter-spacing:0.516800pt;}
.ls30_c00276{letter-spacing:0.522880pt;}
.ls36_c00276{letter-spacing:0.528960pt;}
.ls7_c00276{letter-spacing:0.535040pt;}
.ls8b_c00276{letter-spacing:0.553280pt;}
.lsa_c00276{letter-spacing:0.559360pt;}
.ls12_c00276{letter-spacing:0.577600pt;}
.ls49_c00276{letter-spacing:0.583680pt;}
.ls56_c00276{letter-spacing:0.589760pt;}
.ls1b_c00276{letter-spacing:0.601920pt;}
.ls17_c00276{letter-spacing:0.608000pt;}
.ls5_c00276{letter-spacing:0.632320pt;}
.ls31_c00276{letter-spacing:0.638400pt;}
.ls35_c00276{letter-spacing:0.650560pt;}
.ls29_c00276{letter-spacing:0.662720pt;}
.ls3a_c00276{letter-spacing:0.668800pt;}
.ls1_c00276{letter-spacing:0.674880pt;}
.ls6b_c00276{letter-spacing:0.687040pt;}
.ls4b_c00276{letter-spacing:0.699200pt;}
.ls4c_c00276{letter-spacing:0.711360pt;}
.ls1f_c00276{letter-spacing:0.717440pt;}
.ls1c_c00276{letter-spacing:0.723520pt;}
.ls23_c00276{letter-spacing:0.729600pt;}
.ls5b_c00276{letter-spacing:0.741760pt;}
.ls53_c00276{letter-spacing:0.753920pt;}
.ls3e_c00276{letter-spacing:0.760000pt;}
.ls7c_c00276{letter-spacing:0.766080pt;}
.ls39_c00276{letter-spacing:0.790400pt;}
.ls62_c00276{letter-spacing:0.802560pt;}
.ls2_c00276{letter-spacing:0.814720pt;}
.ls42_c00276{letter-spacing:0.826880pt;}
.ls10_c00276{letter-spacing:0.832960pt;}
.lsb_c00276{letter-spacing:0.845120pt;}
.ls22_c00276{letter-spacing:0.857280pt;}
.ls45_c00276{letter-spacing:0.869440pt;}
.ls19_c00276{letter-spacing:0.881600pt;}
.ls9_c00276{letter-spacing:0.899840pt;}
.ls4f_c00276{letter-spacing:0.942400pt;}
.ls2a_c00276{letter-spacing:0.948480pt;}
.ls25_c00276{letter-spacing:0.954560pt;}
.ls3b_c00276{letter-spacing:0.984960pt;}
.ls4_c00276{letter-spacing:1.033600pt;}
.ls1d_c00276{letter-spacing:1.057920pt;}
.ls4d_c00276{letter-spacing:1.088320pt;}
.lsd_c00276{letter-spacing:1.112640pt;}
.ls1a_c00276{letter-spacing:1.173440pt;}
.ls52_c00276{letter-spacing:1.197760pt;}
.ls41_c00276{letter-spacing:1.337600pt;}
.ls27_c00276{letter-spacing:1.374080pt;}
.ls59_c00276{letter-spacing:1.386240pt;}
.ls24_c00276{letter-spacing:1.465280pt;}
.ls55_c00276{letter-spacing:1.471360pt;}
.ls2c_c00276{letter-spacing:1.495680pt;}
.ls37_c00276{letter-spacing:1.544320pt;}
.ls82_c00276{letter-spacing:1.550400pt;}
.ls8_c00276{letter-spacing:1.592960pt;}
.ls48_c00276{letter-spacing:1.611200pt;}
.ls4a_c00276{letter-spacing:1.665920pt;}
.ls57_c00276{letter-spacing:1.678080pt;}
.ls4e_c00276{letter-spacing:2.036800pt;}
.ls34_c00276{letter-spacing:2.091520pt;}
.ls61_c00276{letter-spacing:2.164480pt;}
.ls43_c00276{letter-spacing:2.413760pt;}
.ls21_c00276{letter-spacing:2.632640pt;}
.ls58_c00276{letter-spacing:2.736000pt;}
.ls16_c00276{letter-spacing:2.748160pt;}
.ls70_c00276{letter-spacing:3.040000pt;}
.ws0_c00276{word-spacing:-1.386240pt;}
.ws2_c00276{word-spacing:-0.030400pt;}
.ws4_c00276{word-spacing:0.000000pt;}
.ws3_c00276{word-spacing:4.316800pt;}
.ws1_c00276{word-spacing:8.086400pt;}
._10_c00276{margin-left:-13.624640pt;}
._15_c00276{margin-left:-8.518080pt;}
._13_c00276{margin-left:-6.617920pt;}
._14_c00276{margin-left:-5.320000pt;}
._e_c00276{margin-left:-3.927680pt;}
._4_c00276{margin-left:-2.538560pt;}
._f_c00276{margin-left:-1.580800pt;}
._c_c00276{width:1.136960pt;}
._5_c00276{width:2.425920pt;}
._3_c00276{width:3.584000pt;}
._a_c00276{width:5.338240pt;}
._b_c00276{width:6.292800pt;}
._7_c00276{width:7.760000pt;}
._d_c00276{width:9.024000pt;}
._6_c00276{width:9.955093pt;}
._9_c00276{width:11.629440pt;}
._8_c00276{width:13.090240pt;}
._12_c00276{width:14.056960pt;}
._2_c00276{width:15.321600pt;}
._11_c00276{width:16.837120pt;}
._1_c00276{width:17.960320pt;}
._0_c00276{width:19.728427pt;}
.fs5_c00276{font-size:46.080000pt;}
.fs1_c00276{font-size:56.000000pt;}
.fs7_c00276{font-size:56.533333pt;}
.fs6_c00276{font-size:60.266667pt;}
.fs2_c00276{font-size:60.800000pt;}
.fs3_c00276{font-size:61.866667pt;}
.fs0_c00276{font-size:65.066667pt;}
.fs4_c00276{font-size:65.600000pt;}
.y0_c00276{bottom:0.000000pt;}
.y1f_c00276{bottom:62.093339pt;}
.y1e_c00276{bottom:130.253339pt;}
.y1d_c00276{bottom:156.800005pt;}
.y1c_c00276{bottom:185.592539pt;}
.y1b_c00276{bottom:213.773339pt;}
.y1a_c00276{bottom:213.774939pt;}
.y19_c00276{bottom:269.127739pt;}
.y18_c00276{bottom:325.124539pt;}
.y17_c00276{bottom:353.290139pt;}
.y16_c00276{bottom:408.967739pt;}
.y15_c00276{bottom:437.133339pt;}
.y14_c00276{bottom:437.134939pt;}
.y13_c00276{bottom:492.495739pt;}
.y12_c00276{bottom:548.167739pt;}
.y11_c00276{bottom:576.333339pt;}
.y10_c00276{bottom:631.053339pt;}
.yf_c00276{bottom:659.840005pt;}
.ye_c00276{bottom:687.683205pt;}
.yd_c00276{bottom:715.529605pt;}
.yc_c00276{bottom:743.680005pt;}
.yb_c00276{bottom:799.360005pt;}
.y9_c00276{bottom:855.359739pt;}
.ya_c00276{bottom:855.360005pt;}
.y8_c00276{bottom:882.886939pt;}
.y6_c00276{bottom:910.726939pt;}
.y7_c00276{bottom:910.733339pt;}
.y4_c00276{bottom:938.568005pt;}
.y5_c00276{bottom:938.573339pt;}
.y3_c00276{bottom:966.080005pt;}
.y2_c00276{bottom:994.240005pt;}
.y1_c00276{bottom:1062.080005pt;}
.h7_c00276{height:30.689280pt;}
.hf_c00276{height:58.962500pt;}
.h10_c00276{height:59.642187pt;}
.h3_c00276{height:59.671875pt;}
.h6_c00276{height:59.672942pt;}
.hd_c00276{height:59.694275pt;}
.he_c00276{height:59.701742pt;}
.h9_c00276{height:62.856250pt;}
.h2_c00276{height:63.859375pt;}
.h8_c00276{height:64.370012pt;}
.hb_c00276{height:64.373213pt;}
.hc_c00276{height:64.376413pt;}
.h5_c00276{height:64.404146pt;}
.ha_c00276{height:64.405213pt;}
.h4_c00276{height:64.525000pt;}
.h1_c00276{height:1122.666667pt;}
.h0_c00276{height:1122.880005pt;}
.w1_c00276{width:793.333333pt;}
.w0_c00276{width:793.599999pt;}
.x0_c00276{left:0.000000pt;}
.x18_c00276{left:106.896265pt;}
.x12_c00276{left:107.806132pt;}
.xc_c00276{left:108.752532pt;}
.x2_c00276{left:109.946665pt;}
.x1_c00276{left:111.293332pt;}
.x13_c00276{left:155.349599pt;}
.xe_c00276{left:156.626665pt;}
.x19_c00276{left:229.757865pt;}
.xa_c00276{left:255.333332pt;}
.x1c_c00276{left:256.293332pt;}
.xb_c00276{left:284.039999pt;}
.x14_c00276{left:360.879999pt;}
.x6_c00276{left:371.999999pt;}
.x1e_c00276{left:377.519999pt;}
.x15_c00276{left:381.693332pt;}
.xf_c00276{left:398.733332pt;}
.xd_c00276{left:405.893332pt;}
.x7_c00276{left:418.093332pt;}
.x10_c00276{left:427.066665pt;}
.x3_c00276{left:456.453332pt;}
.x1a_c00276{left:464.786665pt;}
.x4_c00276{left:478.533332pt;}
.x1b_c00276{left:483.533332pt;}
.x8_c00276{left:531.173332pt;}
.x9_c00276{left:553.146665pt;}
.x16_c00276{left:569.946665pt;}
.x17_c00276{left:595.226665pt;}
.x1d_c00276{left:604.066665pt;}
.x11_c00276{left:620.479999pt;}
.x5_c00276{left:658.053332pt;}
}





/* 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_c00277 {
    display:none;
  }
  .loading-indicator_c00277.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00277 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_c00277 { 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_c00277" -> "#page-container .classname_c00277")
 */
.pf_c00277 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00277 { /* 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_c00277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00277 { /* 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_c00277 { /* 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_c00277 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00277 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00277 {overflow:visible;}
  }
}
.c_c00277 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00277 { /* 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_c00277:after { /* webkit #35443 */
  content: '';
}
.t_c00277:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00277 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 */
}
.__c00277 { /* 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_c00277 { /* info for Javascript */
  display:none;
}
.l_c00277 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00277 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00277 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00277: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_c00277 {
    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_c00277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00277.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_c00277 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00277;src:url('chunks/assets/font_61d5b1b26ba455f19537ec7b.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.284668;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_c00277;src:url('chunks/assets/font_f153b5729f643c5faf0d5885.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.284180;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_c00277;src:url('chunks/assets/font_56e5b822edfe8f46bc67fcb5.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;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;}
.m4_c00277{transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);}
.ma_c00277{transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);}
.m7_c00277{transform:matrix(0.230432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230432,0.000000,0.000000,0.250000,0,0);}
.m8_c00277{transform:matrix(0.233678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233678,0.000000,0.000000,0.250000,0,0);}
.m9_c00277{transform:matrix(0.234161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234161,0.000000,0.000000,0.250000,0,0);}
.m1_c00277{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);}
.m3_c00277{transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);}
.m0_c00277{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m2_c00277{transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);}
.m6_c00277{transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);}
.m5_c00277{transform:matrix(0.260277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260277,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls74_c00277{letter-spacing:-2.604000px;}
.ls87_c00277{letter-spacing:-2.331000px;}
.ls92_c00277{letter-spacing:-2.121000px;}
.ls82_c00277{letter-spacing:-1.818180px;}
.ls8a_c00277{letter-spacing:-1.411920px;}
.ls8b_c00277{letter-spacing:-1.338660px;}
.ls91_c00277{letter-spacing:-1.172160px;}
.ls89_c00277{letter-spacing:-1.005660px;}
.ls95_c00277{letter-spacing:-0.959040px;}
.ls8c_c00277{letter-spacing:-0.885780px;}
.ls76_c00277{letter-spacing:-0.879120px;}
.ls81_c00277{letter-spacing:-0.859140px;}
.ls75_c00277{letter-spacing:-0.779220px;}
.ls96_c00277{letter-spacing:-0.622740px;}
.ls80_c00277{letter-spacing:-0.572760px;}
.ls7a_c00277{letter-spacing:-0.559440px;}
.ls79_c00277{letter-spacing:-0.526140px;}
.ls85_c00277{letter-spacing:-0.486180px;}
.ls78_c00277{letter-spacing:-0.392940px;}
.ls84_c00277{letter-spacing:-0.306360px;}
.ls90_c00277{letter-spacing:-0.273060px;}
.ls88_c00277{letter-spacing:-0.073260px;}
.ls73_c00277{letter-spacing:-0.053280px;}
.ls8e_c00277{letter-spacing:-0.046620px;}
.ls8d_c00277{letter-spacing:-0.027120px;}
.ls70_c00277{letter-spacing:0.000000px;}
.ls4b_c00277{letter-spacing:0.026640px;}
.ls3f_c00277{letter-spacing:0.053280px;}
.ls77_c00277{letter-spacing:0.086580px;}
.ls8f_c00277{letter-spacing:0.142380px;}
.ls25_c00277{letter-spacing:0.206460px;}
.ls3e_c00277{letter-spacing:0.233100px;}
.ls4c_c00277{letter-spacing:0.264420px;}
.ls4d_c00277{letter-spacing:0.266400px;}
.ls4_c00277{letter-spacing:0.299700px;}
.ls69_c00277{letter-spacing:0.306360px;}
.lsf_c00277{letter-spacing:0.346320px;}
.ls45_c00277{letter-spacing:0.359340px;}
.ls12_c00277{letter-spacing:0.386280px;}
.ls94_c00277{letter-spacing:0.419580px;}
.ls86_c00277{letter-spacing:0.427140px;}
.ls4a_c00277{letter-spacing:0.446220px;}
.ls46_c00277{letter-spacing:0.461040px;}
.ls83_c00277{letter-spacing:0.466200px;}
.ls49_c00277{letter-spacing:0.492840px;}
.ls60_c00277{letter-spacing:0.526140px;}
.ls51_c00277{letter-spacing:0.532800px;}
.ls37_c00277{letter-spacing:0.539460px;}
.ls2f_c00277{letter-spacing:0.546120px;}
.ls55_c00277{letter-spacing:0.552780px;}
.ls53_c00277{letter-spacing:0.562740px;}
.ls20_c00277{letter-spacing:0.576300px;}
.ls7c_c00277{letter-spacing:0.579420px;}
.ls2c_c00277{letter-spacing:0.583080px;}
.ls14_c00277{letter-spacing:0.586080px;}
.ls2d_c00277{letter-spacing:0.603420px;}
.ls50_c00277{letter-spacing:0.606060px;}
.ls5d_c00277{letter-spacing:0.612720px;}
.ls54_c00277{letter-spacing:0.623760px;}
.lsb_c00277{letter-spacing:0.639360px;}
.ls39_c00277{letter-spacing:0.646020px;}
.ls47_c00277{letter-spacing:0.699300px;}
.ls19_c00277{letter-spacing:0.712620px;}
.ls3c_c00277{letter-spacing:0.719280px;}
.ls6_c00277{letter-spacing:0.732600px;}
.ls1d_c00277{letter-spacing:0.739260px;}
.ls5f_c00277{letter-spacing:0.745920px;}
.ls24_c00277{letter-spacing:0.765900px;}
.ls36_c00277{letter-spacing:0.779220px;}
.ls56_c00277{letter-spacing:0.779700px;}
.ls4f_c00277{letter-spacing:0.785880px;}
.ls2b_c00277{letter-spacing:0.792540px;}
.ls48_c00277{letter-spacing:0.805860px;}
.ls28_c00277{letter-spacing:0.840720px;}
.ls65_c00277{letter-spacing:0.845820px;}
.ls41_c00277{letter-spacing:0.852480px;}
.ls7f_c00277{letter-spacing:0.865800px;}
.ls7e_c00277{letter-spacing:0.885780px;}
.ls72_c00277{letter-spacing:0.892440px;}
.ls0_c00277{letter-spacing:0.894960px;}
.ls63_c00277{letter-spacing:0.899100px;}
.ls5b_c00277{letter-spacing:0.939060px;}
.ls7b_c00277{letter-spacing:0.952380px;}
.ls43_c00277{letter-spacing:0.959040px;}
.ls21_c00277{letter-spacing:0.972360px;}
.ls30_c00277{letter-spacing:0.985680px;}
.ls3_c00277{letter-spacing:0.992340px;}
.ls62_c00277{letter-spacing:1.005660px;}
.ls3d_c00277{letter-spacing:1.012320px;}
.ls5_c00277{letter-spacing:1.025640px;}
.ls35_c00277{letter-spacing:1.035000px;}
.lsa_c00277{letter-spacing:1.052280px;}
.lse_c00277{letter-spacing:1.065600px;}
.ls5a_c00277{letter-spacing:1.078920px;}
.ls10_c00277{letter-spacing:1.098900px;}
.lsc_c00277{letter-spacing:1.105560px;}
.ls1b_c00277{letter-spacing:1.118700px;}
.ls7d_c00277{letter-spacing:1.118880px;}
.ls38_c00277{letter-spacing:1.138860px;}
.ls34_c00277{letter-spacing:1.152300px;}
.ls1e_c00277{letter-spacing:1.158840px;}
.ls9_c00277{letter-spacing:1.205460px;}
.ls68_c00277{letter-spacing:1.212120px;}
.ls6a_c00277{letter-spacing:1.240740px;}
.ls5e_c00277{letter-spacing:1.245420px;}
.ls66_c00277{letter-spacing:1.252080px;}
.ls59_c00277{letter-spacing:1.272060px;}
.ls58_c00277{letter-spacing:1.285380px;}
.ls6d_c00277{letter-spacing:1.312020px;}
.ls61_c00277{letter-spacing:1.332000px;}
.ls4e_c00277{letter-spacing:1.356000px;}
.ls23_c00277{letter-spacing:1.411920px;}
.ls93_c00277{letter-spacing:1.425240px;}
.ls6c_c00277{letter-spacing:1.431900px;}
.ls8_c00277{letter-spacing:1.438560px;}
.ls6b_c00277{letter-spacing:1.465200px;}
.ls2_c00277{letter-spacing:1.478520px;}
.ls44_c00277{letter-spacing:1.498500px;}
.ls1f_c00277{letter-spacing:1.518480px;}
.ls15_c00277{letter-spacing:1.585080px;}
.ls64_c00277{letter-spacing:1.605060px;}
.ls1c_c00277{letter-spacing:1.665000px;}
.ls42_c00277{letter-spacing:1.671660px;}
.ls17_c00277{letter-spacing:1.691640px;}
.ls27_c00277{letter-spacing:1.698300px;}
.ls57_c00277{letter-spacing:1.704960px;}
.ls3a_c00277{letter-spacing:1.718280px;}
.ls52_c00277{letter-spacing:1.798200px;}
.ls11_c00277{letter-spacing:1.818180px;}
.ls29_c00277{letter-spacing:1.864800px;}
.ls26_c00277{letter-spacing:1.871460px;}
.ls5c_c00277{letter-spacing:2.011320px;}
.ls2e_c00277{letter-spacing:2.057940px;}
.ls31_c00277{letter-spacing:2.104560px;}
.ls7_c00277{letter-spacing:2.171160px;}
.ls40_c00277{letter-spacing:2.204460px;}
.ls16_c00277{letter-spacing:2.297700px;}
.ls18_c00277{letter-spacing:2.350980px;}
.ls33_c00277{letter-spacing:2.357640px;}
.ls1a_c00277{letter-spacing:2.370960px;}
.ls1_c00277{letter-spacing:2.444220px;}
.lsd_c00277{letter-spacing:2.557440px;}
.ls13_c00277{letter-spacing:2.597400px;}
.ls67_c00277{letter-spacing:2.737260px;}
.ls2a_c00277{letter-spacing:2.837160px;}
.ls6e_c00277{letter-spacing:2.910000px;}
.ls32_c00277{letter-spacing:2.990340px;}
.ls71_c00277{letter-spacing:3.016980px;}
.ls3b_c00277{letter-spacing:3.116880px;}
.ls22_c00277{letter-spacing:3.310020px;}
.ls6f_c00277{letter-spacing:3.330000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{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__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00277{word-spacing:-1.762560px;}
.ws1_c00277{word-spacing:-1.494000px;}
.ws3_c00277{word-spacing:-1.425000px;}
.ws7_c00277{word-spacing:0.000000px;}
.ws0_c00277{word-spacing:1.766760px;}
.ws5_c00277{word-spacing:7.340400px;}
.ws4_c00277{word-spacing:14.904180px;}
.ws2_c00277{word-spacing:26.362800px;}
._11_c00277{margin-left:-6.926400px;}
._0_c00277{margin-left:-5.094900px;}
._b_c00277{margin-left:-3.529800px;}
._9_c00277{margin-left:-1.385280px;}
._1_c00277{width:2.031300px;}
._2_c00277{width:4.169160px;}
._8_c00277{width:5.960700px;}
._a_c00277{width:7.099560px;}
._13_c00277{width:8.358300px;}
._14_c00277{width:10.042920px;}
._3_c00277{width:11.228760px;}
._7_c00277{width:12.693960px;}
._4_c00277{width:14.052600px;}
._12_c00277{width:15.078720px;}
._6_c00277{width:16.130520px;}
._5_c00277{width:18.581400px;}
._15_c00277{width:20.432880px;}
._10_c00277{width:21.491820px;}
._c_c00277{width:23.416560px;}
._e_c00277{width:25.301340px;}
._d_c00277{width:26.353620px;}
._f_c00277{width:27.572400px;}
.fc0_c00277{color:transparent;}
.fs0_c00277{font-size:58.200000px;}
.fs5_c00277{font-size:60.600000px;}
.fs2_c00277{font-size:66.600000px;}
.fs1_c00277{font-size:67.800000px;}
.fs4_c00277{font-size:69.000000px;}
.fs3_c00277{font-size:74.400000px;}
.y0_c00277{bottom:0.000000px;}
.y1a_c00277{bottom:69.480015px;}
.y19_c00277{bottom:146.880015px;}
.y18_c00277{bottom:209.533665px;}
.y17_c00277{bottom:240.486015px;}
.y16_c00277{bottom:271.455015px;}
.y15_c00277{bottom:333.735015px;}
.y14_c00277{bottom:364.335015px;}
.y13_c00277{bottom:395.295015px;}
.y12_c00277{bottom:427.335015px;}
.y11_c00277{bottom:458.655015px;}
.y10_c00277{bottom:521.647665px;}
.yf_c00277{bottom:552.596415px;}
.ye_c00277{bottom:615.600015px;}
.yd_c00277{bottom:646.215015px;}
.yc_c00277{bottom:709.222665px;}
.yb_c00277{bottom:740.175015px;}
.ya_c00277{bottom:802.815015px;}
.y9_c00277{bottom:866.182665px;}
.y8_c00277{bottom:897.135015px;}
.y7_c00277{bottom:958.680015px;}
.y6_c00277{bottom:1020.982665px;}
.y4_c00277{bottom:1051.931415px;}
.y5_c00277{bottom:1051.935015px;}
.y3_c00277{bottom:1083.250065px;}
.y2_c00277{bottom:1114.935015px;}
.y1_c00277{bottom:1190.520015px;}
.h2_c00277{height:57.120117px;}
.h8_c00277{height:63.203906px;}
.h4_c00277{height:65.364258px;}
.h7_c00277{height:65.378658px;}
.h3_c00277{height:66.508887px;}
.h6_c00277{height:67.686035px;}
.h5_c00277{height:73.019531px;}
.h1_c00277{height:1263.000000px;}
.h0_c00277{height:1263.240015px;}
.w1_c00277{width:892.500000px;}
.w0_c00277{width:892.800015px;}
.x0_c00277{left:0.000000px;}
.x1_c00277{left:124.845015px;}
.x14_c00277{left:177.285015px;}
.x2_c00277{left:179.445015px;}
.x10_c00277{left:273.255015px;}
.x11_c00277{left:294.090015px;}
.xa_c00277{left:300.945015px;}
.x12_c00277{left:324.945015px;}
.xb_c00277{left:332.970015px;}
.xc_c00277{left:409.950015px;}
.x15_c00277{left:416.085015px;}
.x7_c00277{left:418.605015px;}
.x18_c00277{left:425.790015px;}
.xd_c00277{left:436.860015px;}
.x16_c00277{left:446.985015px;}
.x8_c00277{left:449.505015px;}
.x3_c00277{left:465.870015px;}
.x4_c00277{left:494.865015px;}
.xe_c00277{left:579.630015px;}
.xf_c00277{left:609.870015px;}
.x17_c00277{left:625.605015px;}
.x9_c00277{left:628.845015px;}
.x13_c00277{left:654.390015px;}
.x5_c00277{left:655.950015px;}
.x6_c00277{left:684.720015px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls74_c00277{letter-spacing:-2.314667pt;}
.ls87_c00277{letter-spacing:-2.072000pt;}
.ls92_c00277{letter-spacing:-1.885333pt;}
.ls82_c00277{letter-spacing:-1.616160pt;}
.ls8a_c00277{letter-spacing:-1.255040pt;}
.ls8b_c00277{letter-spacing:-1.189920pt;}
.ls91_c00277{letter-spacing:-1.041920pt;}
.ls89_c00277{letter-spacing:-0.893920pt;}
.ls95_c00277{letter-spacing:-0.852480pt;}
.ls8c_c00277{letter-spacing:-0.787360pt;}
.ls76_c00277{letter-spacing:-0.781440pt;}
.ls81_c00277{letter-spacing:-0.763680pt;}
.ls75_c00277{letter-spacing:-0.692640pt;}
.ls96_c00277{letter-spacing:-0.553547pt;}
.ls80_c00277{letter-spacing:-0.509120pt;}
.ls7a_c00277{letter-spacing:-0.497280pt;}
.ls79_c00277{letter-spacing:-0.467680pt;}
.ls85_c00277{letter-spacing:-0.432160pt;}
.ls78_c00277{letter-spacing:-0.349280pt;}
.ls84_c00277{letter-spacing:-0.272320pt;}
.ls90_c00277{letter-spacing:-0.242720pt;}
.ls88_c00277{letter-spacing:-0.065120pt;}
.ls73_c00277{letter-spacing:-0.047360pt;}
.ls8e_c00277{letter-spacing:-0.041440pt;}
.ls8d_c00277{letter-spacing:-0.024107pt;}
.ls70_c00277{letter-spacing:0.000000pt;}
.ls4b_c00277{letter-spacing:0.023680pt;}
.ls3f_c00277{letter-spacing:0.047360pt;}
.ls77_c00277{letter-spacing:0.076960pt;}
.ls8f_c00277{letter-spacing:0.126560pt;}
.ls25_c00277{letter-spacing:0.183520pt;}
.ls3e_c00277{letter-spacing:0.207200pt;}
.ls4c_c00277{letter-spacing:0.235040pt;}
.ls4d_c00277{letter-spacing:0.236800pt;}
.ls4_c00277{letter-spacing:0.266400pt;}
.ls69_c00277{letter-spacing:0.272320pt;}
.lsf_c00277{letter-spacing:0.307840pt;}
.ls45_c00277{letter-spacing:0.319413pt;}
.ls12_c00277{letter-spacing:0.343360pt;}
.ls94_c00277{letter-spacing:0.372960pt;}
.ls86_c00277{letter-spacing:0.379680pt;}
.ls4a_c00277{letter-spacing:0.396640pt;}
.ls46_c00277{letter-spacing:0.409813pt;}
.ls83_c00277{letter-spacing:0.414400pt;}
.ls49_c00277{letter-spacing:0.438080pt;}
.ls60_c00277{letter-spacing:0.467680pt;}
.ls51_c00277{letter-spacing:0.473600pt;}
.ls37_c00277{letter-spacing:0.479520pt;}
.ls2f_c00277{letter-spacing:0.485440pt;}
.ls55_c00277{letter-spacing:0.491360pt;}
.ls53_c00277{letter-spacing:0.500213pt;}
.ls20_c00277{letter-spacing:0.512267pt;}
.ls7c_c00277{letter-spacing:0.515040pt;}
.ls2c_c00277{letter-spacing:0.518293pt;}
.ls14_c00277{letter-spacing:0.520960pt;}
.ls2d_c00277{letter-spacing:0.536373pt;}
.ls50_c00277{letter-spacing:0.538720pt;}
.ls5d_c00277{letter-spacing:0.544640pt;}
.ls54_c00277{letter-spacing:0.554453pt;}
.lsb_c00277{letter-spacing:0.568320pt;}
.ls39_c00277{letter-spacing:0.574240pt;}
.ls47_c00277{letter-spacing:0.621600pt;}
.ls19_c00277{letter-spacing:0.633440pt;}
.ls3c_c00277{letter-spacing:0.639360pt;}
.ls6_c00277{letter-spacing:0.651200pt;}
.ls1d_c00277{letter-spacing:0.657120pt;}
.ls5f_c00277{letter-spacing:0.663040pt;}
.ls24_c00277{letter-spacing:0.680800pt;}
.ls36_c00277{letter-spacing:0.692640pt;}
.ls56_c00277{letter-spacing:0.693067pt;}
.ls4f_c00277{letter-spacing:0.698560pt;}
.ls2b_c00277{letter-spacing:0.704480pt;}
.ls48_c00277{letter-spacing:0.716320pt;}
.ls28_c00277{letter-spacing:0.747307pt;}
.ls65_c00277{letter-spacing:0.751840pt;}
.ls41_c00277{letter-spacing:0.757760pt;}
.ls7f_c00277{letter-spacing:0.769600pt;}
.ls7e_c00277{letter-spacing:0.787360pt;}
.ls72_c00277{letter-spacing:0.793280pt;}
.ls0_c00277{letter-spacing:0.795520pt;}
.ls63_c00277{letter-spacing:0.799200pt;}
.ls5b_c00277{letter-spacing:0.834720pt;}
.ls7b_c00277{letter-spacing:0.846560pt;}
.ls43_c00277{letter-spacing:0.852480pt;}
.ls21_c00277{letter-spacing:0.864320pt;}
.ls30_c00277{letter-spacing:0.876160pt;}
.ls3_c00277{letter-spacing:0.882080pt;}
.ls62_c00277{letter-spacing:0.893920pt;}
.ls3d_c00277{letter-spacing:0.899840pt;}
.ls5_c00277{letter-spacing:0.911680pt;}
.ls35_c00277{letter-spacing:0.920000pt;}
.lsa_c00277{letter-spacing:0.935360pt;}
.lse_c00277{letter-spacing:0.947200pt;}
.ls5a_c00277{letter-spacing:0.959040pt;}
.ls10_c00277{letter-spacing:0.976800pt;}
.lsc_c00277{letter-spacing:0.982720pt;}
.ls1b_c00277{letter-spacing:0.994400pt;}
.ls7d_c00277{letter-spacing:0.994560pt;}
.ls38_c00277{letter-spacing:1.012320pt;}
.ls34_c00277{letter-spacing:1.024267pt;}
.ls1e_c00277{letter-spacing:1.030080pt;}
.ls9_c00277{letter-spacing:1.071520pt;}
.ls68_c00277{letter-spacing:1.077440pt;}
.ls6a_c00277{letter-spacing:1.102880pt;}
.ls5e_c00277{letter-spacing:1.107040pt;}
.ls66_c00277{letter-spacing:1.112960pt;}
.ls59_c00277{letter-spacing:1.130720pt;}
.ls58_c00277{letter-spacing:1.142560pt;}
.ls6d_c00277{letter-spacing:1.166240pt;}
.ls61_c00277{letter-spacing:1.184000pt;}
.ls4e_c00277{letter-spacing:1.205333pt;}
.ls23_c00277{letter-spacing:1.255040pt;}
.ls93_c00277{letter-spacing:1.266880pt;}
.ls6c_c00277{letter-spacing:1.272800pt;}
.ls8_c00277{letter-spacing:1.278720pt;}
.ls6b_c00277{letter-spacing:1.302400pt;}
.ls2_c00277{letter-spacing:1.314240pt;}
.ls44_c00277{letter-spacing:1.332000pt;}
.ls1f_c00277{letter-spacing:1.349760pt;}
.ls15_c00277{letter-spacing:1.408960pt;}
.ls64_c00277{letter-spacing:1.426720pt;}
.ls1c_c00277{letter-spacing:1.480000pt;}
.ls42_c00277{letter-spacing:1.485920pt;}
.ls17_c00277{letter-spacing:1.503680pt;}
.ls27_c00277{letter-spacing:1.509600pt;}
.ls57_c00277{letter-spacing:1.515520pt;}
.ls3a_c00277{letter-spacing:1.527360pt;}
.ls52_c00277{letter-spacing:1.598400pt;}
.ls11_c00277{letter-spacing:1.616160pt;}
.ls29_c00277{letter-spacing:1.657600pt;}
.ls26_c00277{letter-spacing:1.663520pt;}
.ls5c_c00277{letter-spacing:1.787840pt;}
.ls2e_c00277{letter-spacing:1.829280pt;}
.ls31_c00277{letter-spacing:1.870720pt;}
.ls7_c00277{letter-spacing:1.929920pt;}
.ls40_c00277{letter-spacing:1.959520pt;}
.ls16_c00277{letter-spacing:2.042400pt;}
.ls18_c00277{letter-spacing:2.089760pt;}
.ls33_c00277{letter-spacing:2.095680pt;}
.ls1a_c00277{letter-spacing:2.107520pt;}
.ls1_c00277{letter-spacing:2.172640pt;}
.lsd_c00277{letter-spacing:2.273280pt;}
.ls13_c00277{letter-spacing:2.308800pt;}
.ls67_c00277{letter-spacing:2.433120pt;}
.ls2a_c00277{letter-spacing:2.521920pt;}
.ls6e_c00277{letter-spacing:2.586667pt;}
.ls32_c00277{letter-spacing:2.658080pt;}
.ls71_c00277{letter-spacing:2.681760pt;}
.ls3b_c00277{letter-spacing:2.770560pt;}
.ls22_c00277{letter-spacing:2.942240pt;}
.ls6f_c00277{letter-spacing:2.960000pt;}
.ws6_c00277{word-spacing:-1.566720pt;}
.ws1_c00277{word-spacing:-1.328000pt;}
.ws3_c00277{word-spacing:-1.266667pt;}
.ws7_c00277{word-spacing:0.000000pt;}
.ws0_c00277{word-spacing:1.570453pt;}
.ws5_c00277{word-spacing:6.524800pt;}
.ws4_c00277{word-spacing:13.248160pt;}
.ws2_c00277{word-spacing:23.433600pt;}
._11_c00277{margin-left:-6.156800pt;}
._0_c00277{margin-left:-4.528800pt;}
._b_c00277{margin-left:-3.137600pt;}
._9_c00277{margin-left:-1.231360pt;}
._1_c00277{width:1.805600pt;}
._2_c00277{width:3.705920pt;}
._8_c00277{width:5.298400pt;}
._a_c00277{width:6.310720pt;}
._13_c00277{width:7.429600pt;}
._14_c00277{width:8.927040pt;}
._3_c00277{width:9.981120pt;}
._7_c00277{width:11.283520pt;}
._4_c00277{width:12.491200pt;}
._12_c00277{width:13.403307pt;}
._6_c00277{width:14.338240pt;}
._5_c00277{width:16.516800pt;}
._15_c00277{width:18.162560pt;}
._10_c00277{width:19.103840pt;}
._c_c00277{width:20.814720pt;}
._e_c00277{width:22.490080pt;}
._d_c00277{width:23.425440pt;}
._f_c00277{width:24.508800pt;}
.fs0_c00277{font-size:51.733333pt;}
.fs5_c00277{font-size:53.866667pt;}
.fs2_c00277{font-size:59.200000pt;}
.fs1_c00277{font-size:60.266667pt;}
.fs4_c00277{font-size:61.333333pt;}
.fs3_c00277{font-size:66.133333pt;}
.y0_c00277{bottom:0.000000pt;}
.y1a_c00277{bottom:61.760013pt;}
.y19_c00277{bottom:130.560013pt;}
.y18_c00277{bottom:186.252147pt;}
.y17_c00277{bottom:213.765347pt;}
.y16_c00277{bottom:241.293347pt;}
.y15_c00277{bottom:296.653347pt;}
.y14_c00277{bottom:323.853347pt;}
.y13_c00277{bottom:351.373347pt;}
.y12_c00277{bottom:379.853347pt;}
.y11_c00277{bottom:407.693347pt;}
.y10_c00277{bottom:463.686813pt;}
.yf_c00277{bottom:491.196813pt;}
.ye_c00277{bottom:547.200013pt;}
.yd_c00277{bottom:574.413347pt;}
.yc_c00277{bottom:630.420147pt;}
.yb_c00277{bottom:657.933347pt;}
.ya_c00277{bottom:713.613347pt;}
.y9_c00277{bottom:769.940147pt;}
.y8_c00277{bottom:797.453347pt;}
.y7_c00277{bottom:852.160013pt;}
.y6_c00277{bottom:907.540147pt;}
.y4_c00277{bottom:935.050147pt;}
.y5_c00277{bottom:935.053347pt;}
.y3_c00277{bottom:962.888947pt;}
.y2_c00277{bottom:991.053347pt;}
.y1_c00277{bottom:1058.240013pt;}
.h2_c00277{height:50.773437pt;}
.h8_c00277{height:56.181250pt;}
.h4_c00277{height:58.101562pt;}
.h7_c00277{height:58.114363pt;}
.h3_c00277{height:59.119010pt;}
.h6_c00277{height:60.165365pt;}
.h5_c00277{height:64.906250pt;}
.h1_c00277{height:1122.666667pt;}
.h0_c00277{height:1122.880013pt;}
.w1_c00277{width:793.333333pt;}
.w0_c00277{width:793.600013pt;}
.x0_c00277{left:0.000000pt;}
.x1_c00277{left:110.973347pt;}
.x14_c00277{left:157.586680pt;}
.x2_c00277{left:159.506680pt;}
.x10_c00277{left:242.893347pt;}
.x11_c00277{left:261.413347pt;}
.xa_c00277{left:267.506680pt;}
.x12_c00277{left:288.840013pt;}
.xb_c00277{left:295.973347pt;}
.xc_c00277{left:364.400013pt;}
.x15_c00277{left:369.853347pt;}
.x7_c00277{left:372.093347pt;}
.x18_c00277{left:378.480013pt;}
.xd_c00277{left:388.320013pt;}
.x16_c00277{left:397.320013pt;}
.x8_c00277{left:399.560013pt;}
.x3_c00277{left:414.106680pt;}
.x4_c00277{left:439.880013pt;}
.xe_c00277{left:515.226680pt;}
.xf_c00277{left:542.106680pt;}
.x17_c00277{left:556.093347pt;}
.x9_c00277{left:558.973347pt;}
.x13_c00277{left:581.680013pt;}
.x5_c00277{left:583.066680pt;}
.x6_c00277{left:608.640013pt;}
}





/* 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_c00278 {
    display:none;
  }
  .loading-indicator_c00278.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00278 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_c00278 { 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_c00278" -> "#page-container .classname_c00278")
 */
.pf_c00278 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00278 { /* 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_c00278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00278 { /* 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_c00278 { /* 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_c00278 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00278 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00278 {overflow:visible;}
  }
}
.c_c00278 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00278 { /* 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_c00278:after { /* webkit #35443 */
  content: '';
}
.t_c00278:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00278 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 */
}
.__c00278 { /* 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_c00278 { /* info for Javascript */
  display:none;
}
.l_c00278 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00278 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00278 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00278: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_c00278 {
    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_c00278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00278.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_c00278 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00278;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.311035;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_c00278;src:url('chunks/assets/font_5a03fe3c7d1b673781619c6c.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.284180;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_c00278;src:url('chunks/assets/font_baecc9892e90c9b0c812eb85.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:1.284668;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_c00278;src:url('chunks/assets/font_c90c8c2f585f02f9977669e1.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:1.284180;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_c00278;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff5_c00278{font-family:ff5_c00278;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;}
.m4_c00278{transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);}
.m0_c00278{transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);}
.ma_c00278{transform:matrix(0.240160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240160,0.000000,0.000000,0.250000,0,0);}
.m8_c00278{transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);}
.m9_c00278{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m5_c00278{transform:matrix(0.244859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244859,0.000000,0.000000,0.250000,0,0);}
.m2_c00278{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m7_c00278{transform:matrix(0.247235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247235,0.000000,0.000000,0.250000,0,0);}
.m6_c00278{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m3_c00278{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{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);}
.v0_c00278{vertical-align:0.000000px;}
.ls79_c00278{letter-spacing:-2.646000px;}
.ls77_c00278{letter-spacing:-2.541000px;}
.ls7a_c00278{letter-spacing:-2.494800px;}
.ls53_c00278{letter-spacing:-2.436000px;}
.ls91_c00278{letter-spacing:-2.373000px;}
.ls42_c00278{letter-spacing:-2.331000px;}
.ls52_c00278{letter-spacing:-2.310720px;}
.ls9b_c00278{letter-spacing:-2.268000px;}
.ls7d_c00278{letter-spacing:-2.234160px;}
.ls8b_c00278{letter-spacing:-2.136720px;}
.ls88_c00278{letter-spacing:-1.948800px;}
.ls5f_c00278{letter-spacing:-1.886160px;}
.ls84_c00278{letter-spacing:-1.774800px;}
.ls61_c00278{letter-spacing:-1.649520px;}
.ls86_c00278{letter-spacing:-1.468560px;}
.ls92_c00278{letter-spacing:-1.426800px;}
.ls4d_c00278{letter-spacing:-1.398960px;}
.ls57_c00278{letter-spacing:-1.266720px;}
.ls4c_c00278{letter-spacing:-1.218000px;}
.ls7e_c00278{letter-spacing:-1.197120px;}
.ls48_c00278{letter-spacing:-1.169280px;}
.ls59_c00278{letter-spacing:-0.974400px;}
.ls7b_c00278{letter-spacing:-0.932640px;}
.ls85_c00278{letter-spacing:-0.883920px;}
.ls68_c00278{letter-spacing:-0.856080px;}
.ls50_c00278{letter-spacing:-0.835200px;}
.ls89_c00278{letter-spacing:-0.828240px;}
.ls9a_c00278{letter-spacing:-0.730800px;}
.ls70_c00278{letter-spacing:-0.696000px;}
.ls8a_c00278{letter-spacing:-0.668160px;}
.ls71_c00278{letter-spacing:-0.633360px;}
.ls94_c00278{letter-spacing:-0.612480px;}
.ls4a_c00278{letter-spacing:-0.584640px;}
.ls74_c00278{letter-spacing:-0.570720px;}
.ls83_c00278{letter-spacing:-0.563760px;}
.ls54_c00278{letter-spacing:-0.515040px;}
.ls90_c00278{letter-spacing:-0.501120px;}
.ls7f_c00278{letter-spacing:-0.487200px;}
.ls97_c00278{letter-spacing:-0.480240px;}
.ls7c_c00278{letter-spacing:-0.452400px;}
.ls4e_c00278{letter-spacing:-0.445440px;}
.ls5c_c00278{letter-spacing:-0.438480px;}
.ls8e_c00278{letter-spacing:-0.424560px;}
.ls64_c00278{letter-spacing:-0.410640px;}
.ls8c_c00278{letter-spacing:-0.403680px;}
.ls51_c00278{letter-spacing:-0.396720px;}
.ls62_c00278{letter-spacing:-0.389760px;}
.ls98_c00278{letter-spacing:-0.382800px;}
.ls58_c00278{letter-spacing:-0.368880px;}
.ls93_c00278{letter-spacing:-0.341040px;}
.ls69_c00278{letter-spacing:-0.320160px;}
.ls46_c00278{letter-spacing:-0.313200px;}
.ls6f_c00278{letter-spacing:-0.306240px;}
.ls80_c00278{letter-spacing:-0.299280px;}
.ls44_c00278{letter-spacing:-0.292320px;}
.ls95_c00278{letter-spacing:-0.278400px;}
.ls5b_c00278{letter-spacing:-0.264480px;}
.ls67_c00278{letter-spacing:-0.257520px;}
.ls73_c00278{letter-spacing:-0.250560px;}
.ls55_c00278{letter-spacing:-0.243600px;}
.ls72_c00278{letter-spacing:-0.236640px;}
.ls8f_c00278{letter-spacing:-0.229680px;}
.ls45_c00278{letter-spacing:-0.208800px;}
.ls56_c00278{letter-spacing:-0.194880px;}
.ls6a_c00278{letter-spacing:-0.187920px;}
.ls60_c00278{letter-spacing:-0.180960px;}
.ls87_c00278{letter-spacing:-0.167040px;}
.ls5e_c00278{letter-spacing:-0.153120px;}
.ls6b_c00278{letter-spacing:-0.146160px;}
.ls66_c00278{letter-spacing:-0.139200px;}
.ls6e_c00278{letter-spacing:-0.118320px;}
.ls99_c00278{letter-spacing:-0.111360px;}
.ls4f_c00278{letter-spacing:-0.104400px;}
.ls5d_c00278{letter-spacing:-0.097440px;}
.ls43_c00278{letter-spacing:-0.090480px;}
.ls96_c00278{letter-spacing:-0.083520px;}
.ls6d_c00278{letter-spacing:-0.062640px;}
.ls6c_c00278{letter-spacing:-0.048720px;}
.ls65_c00278{letter-spacing:-0.027840px;}
.ls49_c00278{letter-spacing:-0.020880px;}
.ls82_c00278{letter-spacing:-0.006960px;}
.ls4b_c00278{letter-spacing:0.000000px;}
.ls15_c00278{letter-spacing:0.006960px;}
.ls2_c00278{letter-spacing:0.013920px;}
.ls26_c00278{letter-spacing:0.020880px;}
.ls78_c00278{letter-spacing:0.047460px;}
.ls47_c00278{letter-spacing:0.062640px;}
.ls3c_c00278{letter-spacing:0.069600px;}
.lsa_c00278{letter-spacing:0.076560px;}
.ls35_c00278{letter-spacing:0.090480px;}
.ls23_c00278{letter-spacing:0.104400px;}
.ls12_c00278{letter-spacing:0.111360px;}
.ls19_c00278{letter-spacing:0.125280px;}
.ls28_c00278{letter-spacing:0.132240px;}
.ls9_c00278{letter-spacing:0.139200px;}
.ls34_c00278{letter-spacing:0.146160px;}
.ls32_c00278{letter-spacing:0.160080px;}
.lsb_c00278{letter-spacing:0.174000px;}
.lsd_c00278{letter-spacing:0.180960px;}
.ls18_c00278{letter-spacing:0.187920px;}
.ls11_c00278{letter-spacing:0.194880px;}
.ls13_c00278{letter-spacing:0.201840px;}
.ls5_c00278{letter-spacing:0.208800px;}
.ls3d_c00278{letter-spacing:0.222720px;}
.ls4_c00278{letter-spacing:0.229680px;}
.ls1e_c00278{letter-spacing:0.236640px;}
.ls2a_c00278{letter-spacing:0.250560px;}
.ls24_c00278{letter-spacing:0.257520px;}
.ls8_c00278{letter-spacing:0.264480px;}
.ls21_c00278{letter-spacing:0.285360px;}
.ls1_c00278{letter-spacing:0.306240px;}
.ls2e_c00278{letter-spacing:0.313200px;}
.ls3_c00278{letter-spacing:0.320160px;}
.ls37_c00278{letter-spacing:0.334080px;}
.ls27_c00278{letter-spacing:0.348000px;}
.ls1a_c00278{letter-spacing:0.354960px;}
.ls17_c00278{letter-spacing:0.361920px;}
.ls2b_c00278{letter-spacing:0.368880px;}
.ls38_c00278{letter-spacing:0.382800px;}
.ls33_c00278{letter-spacing:0.403680px;}
.ls1f_c00278{letter-spacing:0.417600px;}
.ls10_c00278{letter-spacing:0.445440px;}
.ls41_c00278{letter-spacing:0.452400px;}
.ls3e_c00278{letter-spacing:0.459360px;}
.ls1c_c00278{letter-spacing:0.494160px;}
.ls1b_c00278{letter-spacing:0.501120px;}
.ls6_c00278{letter-spacing:0.542880px;}
.ls2f_c00278{letter-spacing:0.562740px;}
.ls36_c00278{letter-spacing:0.570720px;}
.ls0_c00278{letter-spacing:0.576300px;}
.lse_c00278{letter-spacing:0.583080px;}
.ls81_c00278{letter-spacing:0.591600px;}
.lsf_c00278{letter-spacing:0.603420px;}
.ls40_c00278{letter-spacing:0.619440px;}
.ls25_c00278{letter-spacing:0.654240px;}
.ls8d_c00278{letter-spacing:0.709920px;}
.ls22_c00278{letter-spacing:0.779520px;}
.lsc_c00278{letter-spacing:0.840720px;}
.ls1d_c00278{letter-spacing:0.883920px;}
.ls63_c00278{letter-spacing:0.904800px;}
.ls3a_c00278{letter-spacing:0.925680px;}
.ls29_c00278{letter-spacing:1.002240px;}
.ls31_c00278{letter-spacing:1.017000px;}
.ls76_c00278{letter-spacing:1.037040px;}
.ls3b_c00278{letter-spacing:1.085760px;}
.ls39_c00278{letter-spacing:1.127520px;}
.ls5a_c00278{letter-spacing:1.145820px;}
.ls14_c00278{letter-spacing:1.398960px;}
.ls2d_c00278{letter-spacing:1.760880px;}
.ls20_c00278{letter-spacing:1.816560px;}
.ls7_c00278{letter-spacing:1.983600px;}
.ls75_c00278{letter-spacing:2.164560px;}
.ls30_c00278{letter-spacing:2.386560px;}
.ls3f_c00278{letter-spacing:2.784000px;}
.ls16_c00278{letter-spacing:2.888400px;}
.ls2c_c00278{letter-spacing:2.902320px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{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__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00278{word-spacing:0.000000px;}
.ws1_c00278{word-spacing:0.015000px;}
.ws2_c00278{word-spacing:1.890180px;}
.ws3_c00278{word-spacing:4.438200px;}
.ws0_c00278{word-spacing:6.202800px;}
._1a_c00278{margin-left:-9.514320px;}
._8_c00278{margin-left:-3.786720px;}
._6_c00278{margin-left:-2.618160px;}
._9_c00278{margin-left:-1.294560px;}
._0_c00278{width:1.197120px;}
._1b_c00278{width:2.282880px;}
._3_c00278{width:3.410400px;}
._1_c00278{width:4.565760px;}
._2_c00278{width:5.811600px;}
._4_c00278{width:6.813840px;}
._a_c00278{width:7.906560px;}
._5_c00278{width:9.650880px;}
._b_c00278{width:11.458800px;}
._13_c00278{width:12.726000px;}
._19_c00278{width:14.805600px;}
._17_c00278{width:16.177680px;}
._1c_c00278{width:17.734080px;}
._7_c00278{width:18.785040px;}
._18_c00278{width:20.225760px;}
._16_c00278{width:22.160640px;}
._10_c00278{width:23.761440px;}
._15_c00278{width:24.784560px;}
._14_c00278{width:26.454960px;}
._d_c00278{width:28.090560px;}
._11_c00278{width:30.004560px;}
._f_c00278{width:31.438320px;}
._e_c00278{width:32.642400px;}
._12_c00278{width:34.097040px;}
._c_c00278{width:35.509920px;}
.fc0_c00278{color:transparent;}
.fs5_c00278{font-size:64.800000px;}
.fs0_c00278{font-size:66.600000px;}
.fs1_c00278{font-size:67.800000px;}
.fs2_c00278{font-size:69.600000px;}
.fs3_c00278{font-size:72.600000px;}
.fs4_c00278{font-size:75.600000px;}
.y0_c00278{bottom:0.000000px;}
.y1f_c00278{bottom:72.375000px;}
.y1e_c00278{bottom:148.705800px;}
.y1d_c00278{bottom:179.643000px;}
.y1c_c00278{bottom:210.980400px;}
.y1b_c00278{bottom:241.935000px;}
.y1a_c00278{bottom:241.940400px;}
.y19_c00278{bottom:272.895000px;}
.y18_c00278{bottom:304.215000px;}
.y17_c00278{bottom:367.215000px;}
.y16_c00278{bottom:430.200000px;}
.y14_c00278{bottom:461.514600px;}
.y15_c00278{bottom:461.520000px;}
.y13_c00278{bottom:524.520000px;}
.y12_c00278{bottom:555.120000px;}
.y11_c00278{bottom:618.855000px;}
.y10_c00278{bottom:618.860400px;}
.yf_c00278{bottom:649.815000px;}
.ye_c00278{bottom:649.817400px;}
.yd_c00278{bottom:681.120000px;}
.yc_c00278{bottom:712.440000px;}
.yb_c00278{bottom:743.777400px;}
.ya_c00278{bottom:775.080000px;}
.y9_c00278{bottom:806.400000px;}
.y8_c00278{bottom:870.130800px;}
.y7_c00278{bottom:932.040000px;}
.y6_c00278{bottom:993.975000px;}
.y4_c00278{bottom:1056.970800px;}
.y5_c00278{bottom:1056.975000px;}
.y3_c00278{bottom:1087.554600px;}
.y2_c00278{bottom:1119.240000px;}
.y1_c00278{bottom:1196.655000px;}
.ha_c00278{height:63.597656px;}
.h7_c00278{height:66.508887px;}
.h2_c00278{height:67.120312px;}
.h3_c00278{height:68.308594px;}
.h5_c00278{height:68.325394px;}
.h4_c00278{height:68.330194px;}
.h9_c00278{height:70.713281px;}
.h6_c00278{height:71.252930px;}
.h8_c00278{height:74.160352px;}
.h1_c00278{height:1263.000000px;}
.h0_c00278{height:1263.240000px;}
.w1_c00278{width:892.500000px;}
.w0_c00278{width:892.800000px;}
.x0_c00278{left:0.000000px;}
.x17_c00278{left:119.502600px;}
.x7_c00278{left:121.522200px;}
.x3_c00278{left:124.030200px;}
.x1_c00278{left:125.565000px;}
.x16_c00278{left:174.045000px;}
.xe_c00278{left:175.230000px;}
.x6_c00278{left:176.280000px;}
.x5_c00278{left:177.645000px;}
.x2_c00278{left:178.695000px;}
.xa_c00278{left:234.195000px;}
.xb_c00278{left:254.055000px;}
.xc_c00278{left:334.080000px;}
.x4_c00278{left:360.540000px;}
.xf_c00278{left:372.405000px;}
.x11_c00278{left:391.485000px;}
.x10_c00278{left:402.600000px;}
.xd_c00278{left:406.290000px;}
.x12_c00278{left:419.880000px;}
.x1a_c00278{left:422.910000px;}
.x13_c00278{left:477.900000px;}
.x14_c00278{left:495.525000px;}
.x15_c00278{left:523.560000px;}
.x18_c00278{left:534.420000px;}
.x19_c00278{left:552.795000px;}
.x8_c00278{left:650.370000px;}
.x9_c00278{left:671.595000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls79_c00278{letter-spacing:-2.352000pt;}
.ls77_c00278{letter-spacing:-2.258667pt;}
.ls7a_c00278{letter-spacing:-2.217600pt;}
.ls53_c00278{letter-spacing:-2.165333pt;}
.ls91_c00278{letter-spacing:-2.109333pt;}
.ls42_c00278{letter-spacing:-2.072000pt;}
.ls52_c00278{letter-spacing:-2.053973pt;}
.ls9b_c00278{letter-spacing:-2.016000pt;}
.ls7d_c00278{letter-spacing:-1.985920pt;}
.ls8b_c00278{letter-spacing:-1.899307pt;}
.ls88_c00278{letter-spacing:-1.732267pt;}
.ls5f_c00278{letter-spacing:-1.676587pt;}
.ls84_c00278{letter-spacing:-1.577600pt;}
.ls61_c00278{letter-spacing:-1.466240pt;}
.ls86_c00278{letter-spacing:-1.305387pt;}
.ls92_c00278{letter-spacing:-1.268267pt;}
.ls4d_c00278{letter-spacing:-1.243520pt;}
.ls57_c00278{letter-spacing:-1.125973pt;}
.ls4c_c00278{letter-spacing:-1.082667pt;}
.ls7e_c00278{letter-spacing:-1.064107pt;}
.ls48_c00278{letter-spacing:-1.039360pt;}
.ls59_c00278{letter-spacing:-0.866133pt;}
.ls7b_c00278{letter-spacing:-0.829013pt;}
.ls85_c00278{letter-spacing:-0.785707pt;}
.ls68_c00278{letter-spacing:-0.760960pt;}
.ls50_c00278{letter-spacing:-0.742400pt;}
.ls89_c00278{letter-spacing:-0.736213pt;}
.ls9a_c00278{letter-spacing:-0.649600pt;}
.ls70_c00278{letter-spacing:-0.618667pt;}
.ls8a_c00278{letter-spacing:-0.593920pt;}
.ls71_c00278{letter-spacing:-0.562987pt;}
.ls94_c00278{letter-spacing:-0.544427pt;}
.ls4a_c00278{letter-spacing:-0.519680pt;}
.ls74_c00278{letter-spacing:-0.507307pt;}
.ls83_c00278{letter-spacing:-0.501120pt;}
.ls54_c00278{letter-spacing:-0.457813pt;}
.ls90_c00278{letter-spacing:-0.445440pt;}
.ls7f_c00278{letter-spacing:-0.433067pt;}
.ls97_c00278{letter-spacing:-0.426880pt;}
.ls7c_c00278{letter-spacing:-0.402133pt;}
.ls4e_c00278{letter-spacing:-0.395947pt;}
.ls5c_c00278{letter-spacing:-0.389760pt;}
.ls8e_c00278{letter-spacing:-0.377387pt;}
.ls64_c00278{letter-spacing:-0.365013pt;}
.ls8c_c00278{letter-spacing:-0.358827pt;}
.ls51_c00278{letter-spacing:-0.352640pt;}
.ls62_c00278{letter-spacing:-0.346453pt;}
.ls98_c00278{letter-spacing:-0.340267pt;}
.ls58_c00278{letter-spacing:-0.327893pt;}
.ls93_c00278{letter-spacing:-0.303147pt;}
.ls69_c00278{letter-spacing:-0.284587pt;}
.ls46_c00278{letter-spacing:-0.278400pt;}
.ls6f_c00278{letter-spacing:-0.272213pt;}
.ls80_c00278{letter-spacing:-0.266027pt;}
.ls44_c00278{letter-spacing:-0.259840pt;}
.ls95_c00278{letter-spacing:-0.247467pt;}
.ls5b_c00278{letter-spacing:-0.235093pt;}
.ls67_c00278{letter-spacing:-0.228907pt;}
.ls73_c00278{letter-spacing:-0.222720pt;}
.ls55_c00278{letter-spacing:-0.216533pt;}
.ls72_c00278{letter-spacing:-0.210347pt;}
.ls8f_c00278{letter-spacing:-0.204160pt;}
.ls45_c00278{letter-spacing:-0.185600pt;}
.ls56_c00278{letter-spacing:-0.173227pt;}
.ls6a_c00278{letter-spacing:-0.167040pt;}
.ls60_c00278{letter-spacing:-0.160853pt;}
.ls87_c00278{letter-spacing:-0.148480pt;}
.ls5e_c00278{letter-spacing:-0.136107pt;}
.ls6b_c00278{letter-spacing:-0.129920pt;}
.ls66_c00278{letter-spacing:-0.123733pt;}
.ls6e_c00278{letter-spacing:-0.105173pt;}
.ls99_c00278{letter-spacing:-0.098987pt;}
.ls4f_c00278{letter-spacing:-0.092800pt;}
.ls5d_c00278{letter-spacing:-0.086613pt;}
.ls43_c00278{letter-spacing:-0.080427pt;}
.ls96_c00278{letter-spacing:-0.074240pt;}
.ls6d_c00278{letter-spacing:-0.055680pt;}
.ls6c_c00278{letter-spacing:-0.043307pt;}
.ls65_c00278{letter-spacing:-0.024747pt;}
.ls49_c00278{letter-spacing:-0.018560pt;}
.ls82_c00278{letter-spacing:-0.006187pt;}
.ls4b_c00278{letter-spacing:0.000000pt;}
.ls15_c00278{letter-spacing:0.006187pt;}
.ls2_c00278{letter-spacing:0.012373pt;}
.ls26_c00278{letter-spacing:0.018560pt;}
.ls78_c00278{letter-spacing:0.042187pt;}
.ls47_c00278{letter-spacing:0.055680pt;}
.ls3c_c00278{letter-spacing:0.061867pt;}
.lsa_c00278{letter-spacing:0.068053pt;}
.ls35_c00278{letter-spacing:0.080427pt;}
.ls23_c00278{letter-spacing:0.092800pt;}
.ls12_c00278{letter-spacing:0.098987pt;}
.ls19_c00278{letter-spacing:0.111360pt;}
.ls28_c00278{letter-spacing:0.117547pt;}
.ls9_c00278{letter-spacing:0.123733pt;}
.ls34_c00278{letter-spacing:0.129920pt;}
.ls32_c00278{letter-spacing:0.142293pt;}
.lsb_c00278{letter-spacing:0.154667pt;}
.lsd_c00278{letter-spacing:0.160853pt;}
.ls18_c00278{letter-spacing:0.167040pt;}
.ls11_c00278{letter-spacing:0.173227pt;}
.ls13_c00278{letter-spacing:0.179413pt;}
.ls5_c00278{letter-spacing:0.185600pt;}
.ls3d_c00278{letter-spacing:0.197973pt;}
.ls4_c00278{letter-spacing:0.204160pt;}
.ls1e_c00278{letter-spacing:0.210347pt;}
.ls2a_c00278{letter-spacing:0.222720pt;}
.ls24_c00278{letter-spacing:0.228907pt;}
.ls8_c00278{letter-spacing:0.235093pt;}
.ls21_c00278{letter-spacing:0.253653pt;}
.ls1_c00278{letter-spacing:0.272213pt;}
.ls2e_c00278{letter-spacing:0.278400pt;}
.ls3_c00278{letter-spacing:0.284587pt;}
.ls37_c00278{letter-spacing:0.296960pt;}
.ls27_c00278{letter-spacing:0.309333pt;}
.ls1a_c00278{letter-spacing:0.315520pt;}
.ls17_c00278{letter-spacing:0.321707pt;}
.ls2b_c00278{letter-spacing:0.327893pt;}
.ls38_c00278{letter-spacing:0.340267pt;}
.ls33_c00278{letter-spacing:0.358827pt;}
.ls1f_c00278{letter-spacing:0.371200pt;}
.ls10_c00278{letter-spacing:0.395947pt;}
.ls41_c00278{letter-spacing:0.402133pt;}
.ls3e_c00278{letter-spacing:0.408320pt;}
.ls1c_c00278{letter-spacing:0.439253pt;}
.ls1b_c00278{letter-spacing:0.445440pt;}
.ls6_c00278{letter-spacing:0.482560pt;}
.ls2f_c00278{letter-spacing:0.500213pt;}
.ls36_c00278{letter-spacing:0.507307pt;}
.ls0_c00278{letter-spacing:0.512267pt;}
.lse_c00278{letter-spacing:0.518293pt;}
.ls81_c00278{letter-spacing:0.525867pt;}
.lsf_c00278{letter-spacing:0.536373pt;}
.ls40_c00278{letter-spacing:0.550613pt;}
.ls25_c00278{letter-spacing:0.581547pt;}
.ls8d_c00278{letter-spacing:0.631040pt;}
.ls22_c00278{letter-spacing:0.692907pt;}
.lsc_c00278{letter-spacing:0.747307pt;}
.ls1d_c00278{letter-spacing:0.785707pt;}
.ls63_c00278{letter-spacing:0.804267pt;}
.ls3a_c00278{letter-spacing:0.822827pt;}
.ls29_c00278{letter-spacing:0.890880pt;}
.ls31_c00278{letter-spacing:0.904000pt;}
.ls76_c00278{letter-spacing:0.921813pt;}
.ls3b_c00278{letter-spacing:0.965120pt;}
.ls39_c00278{letter-spacing:1.002240pt;}
.ls5a_c00278{letter-spacing:1.018507pt;}
.ls14_c00278{letter-spacing:1.243520pt;}
.ls2d_c00278{letter-spacing:1.565227pt;}
.ls20_c00278{letter-spacing:1.614720pt;}
.ls7_c00278{letter-spacing:1.763200pt;}
.ls75_c00278{letter-spacing:1.924053pt;}
.ls30_c00278{letter-spacing:2.121387pt;}
.ls3f_c00278{letter-spacing:2.474667pt;}
.ls16_c00278{letter-spacing:2.567467pt;}
.ls2c_c00278{letter-spacing:2.579840pt;}
.ws4_c00278{word-spacing:0.000000pt;}
.ws1_c00278{word-spacing:0.013333pt;}
.ws2_c00278{word-spacing:1.680160pt;}
.ws3_c00278{word-spacing:3.945067pt;}
.ws0_c00278{word-spacing:5.513600pt;}
._1a_c00278{margin-left:-8.457173pt;}
._8_c00278{margin-left:-3.365973pt;}
._6_c00278{margin-left:-2.327253pt;}
._9_c00278{margin-left:-1.150720pt;}
._0_c00278{width:1.064107pt;}
._1b_c00278{width:2.029227pt;}
._3_c00278{width:3.031467pt;}
._1_c00278{width:4.058453pt;}
._2_c00278{width:5.165867pt;}
._4_c00278{width:6.056747pt;}
._a_c00278{width:7.028053pt;}
._5_c00278{width:8.578560pt;}
._b_c00278{width:10.185600pt;}
._13_c00278{width:11.312000pt;}
._19_c00278{width:13.160533pt;}
._17_c00278{width:14.380160pt;}
._1c_c00278{width:15.763627pt;}
._7_c00278{width:16.697813pt;}
._18_c00278{width:17.978453pt;}
._16_c00278{width:19.698347pt;}
._10_c00278{width:21.121280pt;}
._15_c00278{width:22.030720pt;}
._14_c00278{width:23.515520pt;}
._d_c00278{width:24.969387pt;}
._11_c00278{width:26.670720pt;}
._f_c00278{width:27.945173pt;}
._e_c00278{width:29.015467pt;}
._12_c00278{width:30.308480pt;}
._c_c00278{width:31.564373pt;}
.fs5_c00278{font-size:57.600000pt;}
.fs0_c00278{font-size:59.200000pt;}
.fs1_c00278{font-size:60.266667pt;}
.fs2_c00278{font-size:61.866667pt;}
.fs3_c00278{font-size:64.533333pt;}
.fs4_c00278{font-size:67.200000pt;}
.y0_c00278{bottom:0.000000pt;}
.y1f_c00278{bottom:64.333333pt;}
.y1e_c00278{bottom:132.182933pt;}
.y1d_c00278{bottom:159.682667pt;}
.y1c_c00278{bottom:187.538133pt;}
.y1b_c00278{bottom:215.053333pt;}
.y1a_c00278{bottom:215.058133pt;}
.y19_c00278{bottom:242.573333pt;}
.y18_c00278{bottom:270.413333pt;}
.y17_c00278{bottom:326.413333pt;}
.y16_c00278{bottom:382.400000pt;}
.y14_c00278{bottom:410.235200pt;}
.y15_c00278{bottom:410.240000pt;}
.y13_c00278{bottom:466.240000pt;}
.y12_c00278{bottom:493.440000pt;}
.y11_c00278{bottom:550.093333pt;}
.y10_c00278{bottom:550.098133pt;}
.yf_c00278{bottom:577.613333pt;}
.ye_c00278{bottom:577.615467pt;}
.yd_c00278{bottom:605.440000pt;}
.yc_c00278{bottom:633.280000pt;}
.yb_c00278{bottom:661.135467pt;}
.ya_c00278{bottom:688.960000pt;}
.y9_c00278{bottom:716.800000pt;}
.y8_c00278{bottom:773.449600pt;}
.y7_c00278{bottom:828.480000pt;}
.y6_c00278{bottom:883.533333pt;}
.y4_c00278{bottom:939.529600pt;}
.y5_c00278{bottom:939.533333pt;}
.y3_c00278{bottom:966.715200pt;}
.y2_c00278{bottom:994.880000pt;}
.y1_c00278{bottom:1063.693333pt;}
.ha_c00278{height:56.531250pt;}
.h7_c00278{height:59.119010pt;}
.h2_c00278{height:59.662500pt;}
.h3_c00278{height:60.718750pt;}
.h5_c00278{height:60.733683pt;}
.h4_c00278{height:60.737950pt;}
.h9_c00278{height:62.856250pt;}
.h6_c00278{height:63.335938pt;}
.h8_c00278{height:65.920312pt;}
.h1_c00278{height:1122.666667pt;}
.h0_c00278{height:1122.880000pt;}
.w1_c00278{width:793.333333pt;}
.w0_c00278{width:793.600000pt;}
.x0_c00278{left:0.000000pt;}
.x17_c00278{left:106.224533pt;}
.x7_c00278{left:108.019733pt;}
.x3_c00278{left:110.249067pt;}
.x1_c00278{left:111.613333pt;}
.x16_c00278{left:154.706667pt;}
.xe_c00278{left:155.760000pt;}
.x6_c00278{left:156.693333pt;}
.x5_c00278{left:157.906667pt;}
.x2_c00278{left:158.840000pt;}
.xa_c00278{left:208.173333pt;}
.xb_c00278{left:225.826667pt;}
.xc_c00278{left:296.960000pt;}
.x4_c00278{left:320.480000pt;}
.xf_c00278{left:331.026667pt;}
.x11_c00278{left:347.986667pt;}
.x10_c00278{left:357.866667pt;}
.xd_c00278{left:361.146667pt;}
.x12_c00278{left:373.226667pt;}
.x1a_c00278{left:375.920000pt;}
.x13_c00278{left:424.800000pt;}
.x14_c00278{left:440.466667pt;}
.x15_c00278{left:465.386667pt;}
.x18_c00278{left:475.040000pt;}
.x19_c00278{left:491.373333pt;}
.x8_c00278{left:578.106667pt;}
.x9_c00278{left:596.973333pt;}
}





/* 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_c00279 {
    display:none;
  }
  .loading-indicator_c00279.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00279 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_c00279 { 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_c00279" -> "#page-container .classname_c00279")
 */
.pf_c00279 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00279 { /* 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_c00279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00279 { /* 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_c00279 { /* 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_c00279 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00279 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00279 {overflow:visible;}
  }
}
.c_c00279 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00279 { /* 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_c00279:after { /* webkit #35443 */
  content: '';
}
.t_c00279:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00279 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 */
}
.__c00279 { /* 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_c00279 { /* info for Javascript */
  display:none;
}
.l_c00279 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00279 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00279 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00279: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_c00279 {
    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_c00279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00279.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_c00279 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00279;src:url('chunks/assets/font_06ce06a395d3da4b7b545662.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.284668;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_c00279;src:url('chunks/assets/font_e746696d4cc05a0a8c19d695.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.284180;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_c00279;src:url('chunks/assets/font_df7419b91c6395f8226f5bc9.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:0.666000;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;}
.m7_c00279{transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224368,0.000000,0.000000,0.250000,0,0);}
.m4_c00279{transform:matrix(0.238197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238197,0.000000,0.000000,0.250000,0,0);}
.m8_c00279{transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);}
.m0_c00279{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m3_c00279{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m5_c00279{transform:matrix(0.247474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247474,0.000000,0.000000,0.250000,0,0);}
.m6_c00279{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m1_c00279{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);}
.m2_c00279{transform:matrix(0.425676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425676,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls78_c00279{letter-spacing:-2.394000px;}
.ls4c_c00279{letter-spacing:-2.352000px;}
.ls70_c00279{letter-spacing:-2.168280px;}
.ls64_c00279{letter-spacing:-2.134080px;}
.ls53_c00279{letter-spacing:-2.127240px;}
.ls84_c00279{letter-spacing:-2.099880px;}
.ls5d_c00279{letter-spacing:-1.963080px;}
.ls6d_c00279{letter-spacing:-1.730520px;}
.ls75_c00279{letter-spacing:-1.682640px;}
.ls7b_c00279{letter-spacing:-1.566360px;}
.ls83_c00279{letter-spacing:-1.258560px;}
.ls4e_c00279{letter-spacing:-1.197000px;}
.ls80_c00279{letter-spacing:-1.080720px;}
.ls76_c00279{letter-spacing:-1.060200px;}
.ls7a_c00279{letter-spacing:-0.957600px;}
.ls7e_c00279{letter-spacing:-0.943920px;}
.ls7f_c00279{letter-spacing:-0.896040px;}
.ls7c_c00279{letter-spacing:-0.868680px;}
.ls4f_c00279{letter-spacing:-0.684000px;}
.ls73_c00279{letter-spacing:-0.649800px;}
.ls82_c00279{letter-spacing:-0.533520px;}
.ls4d_c00279{letter-spacing:-0.526680px;}
.ls68_c00279{letter-spacing:-0.492480px;}
.ls62_c00279{letter-spacing:-0.478800px;}
.ls61_c00279{letter-spacing:-0.465120px;}
.ls69_c00279{letter-spacing:-0.458280px;}
.ls6f_c00279{letter-spacing:-0.444600px;}
.ls85_c00279{letter-spacing:-0.424080px;}
.ls5e_c00279{letter-spacing:-0.417240px;}
.ls79_c00279{letter-spacing:-0.389880px;}
.ls5b_c00279{letter-spacing:-0.376200px;}
.ls51_c00279{letter-spacing:-0.369360px;}
.ls65_c00279{letter-spacing:-0.355680px;}
.ls5c_c00279{letter-spacing:-0.335160px;}
.ls54_c00279{letter-spacing:-0.259920px;}
.ls7d_c00279{letter-spacing:-0.232560px;}
.ls63_c00279{letter-spacing:-0.225720px;}
.ls74_c00279{letter-spacing:-0.191520px;}
.ls56_c00279{letter-spacing:-0.184680px;}
.ls72_c00279{letter-spacing:-0.177840px;}
.ls60_c00279{letter-spacing:-0.171000px;}
.ls50_c00279{letter-spacing:-0.143640px;}
.ls77_c00279{letter-spacing:-0.109440px;}
.ls6e_c00279{letter-spacing:-0.102600px;}
.ls5a_c00279{letter-spacing:-0.082080px;}
.ls52_c00279{letter-spacing:-0.068400px;}
.ls55_c00279{letter-spacing:-0.054720px;}
.ls58_c00279{letter-spacing:-0.041040px;}
.ls6c_c00279{letter-spacing:-0.021240px;}
.ls86_c00279{letter-spacing:-0.020520px;}
.ls66_c00279{letter-spacing:-0.013680px;}
.ls6b_c00279{letter-spacing:-0.006840px;}
.ls57_c00279{letter-spacing:0.000000px;}
.ls3b_c00279{letter-spacing:0.006840px;}
.ls1a_c00279{letter-spacing:0.027360px;}
.ls48_c00279{letter-spacing:0.034200px;}
.lsa_c00279{letter-spacing:0.041040px;}
.ls4_c00279{letter-spacing:0.047880px;}
.ls17_c00279{letter-spacing:0.075240px;}
.ls3a_c00279{letter-spacing:0.095760px;}
.ls87_c00279{letter-spacing:0.098940px;}
.ls1_c00279{letter-spacing:0.123120px;}
.ls36_c00279{letter-spacing:0.136800px;}
.ls23_c00279{letter-spacing:0.177840px;}
.ls1c_c00279{letter-spacing:0.184680px;}
.ls7_c00279{letter-spacing:0.212040px;}
.ls3c_c00279{letter-spacing:0.232560px;}
.ls18_c00279{letter-spacing:0.239400px;}
.ls38_c00279{letter-spacing:0.246240px;}
.ls25_c00279{letter-spacing:0.253080px;}
.ls6a_c00279{letter-spacing:0.266760px;}
.ls42_c00279{letter-spacing:0.273600px;}
.ls1e_c00279{letter-spacing:0.280440px;}
.ls44_c00279{letter-spacing:0.287280px;}
.ls49_c00279{letter-spacing:0.294120px;}
.ls11_c00279{letter-spacing:0.307800px;}
.ls71_c00279{letter-spacing:0.314640px;}
.ls59_c00279{letter-spacing:0.328320px;}
.ls3f_c00279{letter-spacing:0.335160px;}
.ls12_c00279{letter-spacing:0.342000px;}
.ls10_c00279{letter-spacing:0.348840px;}
.ls1f_c00279{letter-spacing:0.362520px;}
.ls9_c00279{letter-spacing:0.417240px;}
.ls81_c00279{letter-spacing:0.423360px;}
.ls28_c00279{letter-spacing:0.430080px;}
.ls4b_c00279{letter-spacing:0.430920px;}
.ls19_c00279{letter-spacing:0.451440px;}
.ls5_c00279{letter-spacing:0.458280px;}
.ls46_c00279{letter-spacing:0.477120px;}
.ls3e_c00279{letter-spacing:0.478800px;}
.lsd_c00279{letter-spacing:0.485640px;}
.ls20_c00279{letter-spacing:0.499320px;}
.ls14_c00279{letter-spacing:0.506160px;}
.lse_c00279{letter-spacing:0.513000px;}
.ls3_c00279{letter-spacing:0.519840px;}
.ls22_c00279{letter-spacing:0.526680px;}
.ls0_c00279{letter-spacing:0.554040px;}
.ls2d_c00279{letter-spacing:0.571200px;}
.ls16_c00279{letter-spacing:0.581400px;}
.ls8_c00279{letter-spacing:0.601920px;}
.ls27_c00279{letter-spacing:0.636120px;}
.ls43_c00279{letter-spacing:0.638400px;}
.ls29_c00279{letter-spacing:0.642960px;}
.ls6_c00279{letter-spacing:0.656640px;}
.ls13_c00279{letter-spacing:0.672000px;}
.ls1b_c00279{letter-spacing:0.677160px;}
.ls40_c00279{letter-spacing:0.678720px;}
.ls45_c00279{letter-spacing:0.705600px;}
.lsc_c00279{letter-spacing:0.731880px;}
.ls47_c00279{letter-spacing:0.745920px;}
.ls1d_c00279{letter-spacing:0.752400px;}
.ls2_c00279{letter-spacing:0.772920px;}
.ls3d_c00279{letter-spacing:0.793440px;}
.ls2f_c00279{letter-spacing:0.848160px;}
.ls2e_c00279{letter-spacing:0.868680px;}
.ls2c_c00279{letter-spacing:0.873600px;}
.ls5f_c00279{letter-spacing:0.909720px;}
.ls21_c00279{letter-spacing:1.012320px;}
.ls2b_c00279{letter-spacing:1.060200px;}
.ls39_c00279{letter-spacing:1.087560px;}
.ls15_c00279{letter-spacing:1.149120px;}
.ls41_c00279{letter-spacing:1.169280px;}
.ls33_c00279{letter-spacing:1.176480px;}
.ls31_c00279{letter-spacing:1.272240px;}
.lsb_c00279{letter-spacing:1.290240px;}
.ls4a_c00279{letter-spacing:1.299600px;}
.ls2a_c00279{letter-spacing:1.333800px;}
.ls37_c00279{letter-spacing:1.564680px;}
.ls24_c00279{letter-spacing:1.627920px;}
.lsf_c00279{letter-spacing:1.648440px;}
.ls34_c00279{letter-spacing:1.744200px;}
.ls67_c00279{letter-spacing:1.757880px;}
.ls35_c00279{letter-spacing:1.812600px;}
.ls30_c00279{letter-spacing:2.250360px;}
.ls32_c00279{letter-spacing:2.961720px;}
.ls26_c00279{letter-spacing:3.091680px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{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__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00279{word-spacing:0.000000px;}
.ws0_c00279{word-spacing:2.583840px;}
.ws1_c00279{word-spacing:3.139200px;}
.ws2_c00279{word-spacing:8.260800px;}
.ws3_c00279{word-spacing:13.705440px;}
._10_c00279{margin-left:-10.684080px;}
._11_c00279{margin-left:-6.197040px;}
._b_c00279{margin-left:-1.525320px;}
._c_c00279{width:1.039680px;}
._f_c00279{width:2.188920px;}
._a_c00279{width:3.278040px;}
._9_c00279{width:4.515120px;}
._8_c00279{width:6.121800px;}
._d_c00279{width:8.187480px;}
._5_c00279{width:9.302400px;}
._7_c00279{width:11.156040px;}
._6_c00279{width:12.640320px;}
._0_c00279{width:14.336640px;}
._1_c00279{width:15.444720px;}
._4_c00279{width:18.214920px;}
._13_c00279{width:19.664280px;}
._2_c00279{width:20.800440px;}
._3_c00279{width:23.050800px;}
._12_c00279{width:24.694800px;}
._e_c00279{width:32.274600px;}
.fc0_c00279{color:transparent;}
.fs3_c00279{font-size:51.840000px;}
.fs2_c00279{font-size:53.280000px;}
.fs5_c00279{font-size:58.200000px;}
.fs0_c00279{font-size:67.200000px;}
.fs1_c00279{font-size:68.400000px;}
.fs4_c00279{font-size:70.800000px;}
.y0_c00279{bottom:0.000000px;}
.y1d_c00279{bottom:70.575000px;}
.y1c_c00279{bottom:146.895000px;}
.y1b_c00279{bottom:208.455000px;}
.y1a_c00279{bottom:239.760000px;}
.y19_c00279{bottom:271.095000px;}
.y18_c00279{bottom:302.055000px;}
.y17_c00279{bottom:364.695000px;}
.y16_c00279{bottom:364.703100px;}
.y14_c00279{bottom:395.288700px;}
.y15_c00279{bottom:395.295000px;}
.y13_c00279{bottom:426.978600px;}
.y12_c00279{bottom:489.966900px;}
.y11_c00279{bottom:520.935000px;}
.y10_c00279{bottom:584.289000px;}
.yf_c00279{bottom:615.240000px;}
.ye_c00279{bottom:677.889900px;}
.yd_c00279{bottom:709.200000px;}
.yc_c00279{bottom:771.481800px;}
.yb_c00279{bottom:802.432800px;}
.ya_c00279{bottom:833.745600px;}
.y9_c00279{bottom:865.072800px;}
.y8_c00279{bottom:896.400000px;}
.y6_c00279{bottom:958.687800px;}
.y7_c00279{bottom:958.695000px;}
.y5_c00279{bottom:990.015000px;}
.y4_c00279{bottom:1052.647800px;}
.y3_c00279{bottom:1083.975000px;}
.y2_c00279{bottom:1115.280000px;}
.y1_c00279{bottom:1190.535000px;}
.h6_c00279{height:34.525440px;}
.h4_c00279{height:35.484480px;}
.he_c00279{height:57.120117px;}
.hd_c00279{height:65.920312px;}
.h2_c00279{height:65.953125px;}
.h3_c00279{height:67.130859px;}
.h9_c00279{height:67.154859px;}
.hc_c00279{height:67.156059px;}
.h5_c00279{height:67.159659px;}
.hb_c00279{height:67.163259px;}
.h8_c00279{height:67.183659px;}
.h7_c00279{height:67.188459px;}
.ha_c00279{height:69.451758px;}
.h1_c00279{height:1263.000000px;}
.h0_c00279{height:1263.240000px;}
.w1_c00279{width:892.500000px;}
.w0_c00279{width:892.800000px;}
.x0_c00279{left:0.000000px;}
.x1_c00279{left:123.765000px;}
.x2_c00279{left:125.133300px;}
.x12_c00279{left:176.565000px;}
.x3_c00279{left:178.365000px;}
.x8_c00279{left:281.325000px;}
.xe_c00279{left:293.010000px;}
.x7_c00279{left:301.695000px;}
.x9_c00279{left:315.645000px;}
.xf_c00279{left:323.550000px;}
.xc_c00279{left:419.205000px;}
.x6_c00279{left:422.280000px;}
.x13_c00279{left:425.430000px;}
.xd_c00279{left:445.860000px;}
.x4_c00279{left:465.495000px;}
.x5_c00279{left:493.710000px;}
.x10_c00279{left:595.575000px;}
.x11_c00279{left:612.165000px;}
.xa_c00279{left:657.255000px;}
.xb_c00279{left:676.725000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls78_c00279{letter-spacing:-2.128000pt;}
.ls4c_c00279{letter-spacing:-2.090667pt;}
.ls70_c00279{letter-spacing:-1.927360pt;}
.ls64_c00279{letter-spacing:-1.896960pt;}
.ls53_c00279{letter-spacing:-1.890880pt;}
.ls84_c00279{letter-spacing:-1.866560pt;}
.ls5d_c00279{letter-spacing:-1.744960pt;}
.ls6d_c00279{letter-spacing:-1.538240pt;}
.ls75_c00279{letter-spacing:-1.495680pt;}
.ls7b_c00279{letter-spacing:-1.392320pt;}
.ls83_c00279{letter-spacing:-1.118720pt;}
.ls4e_c00279{letter-spacing:-1.064000pt;}
.ls80_c00279{letter-spacing:-0.960640pt;}
.ls76_c00279{letter-spacing:-0.942400pt;}
.ls7a_c00279{letter-spacing:-0.851200pt;}
.ls7e_c00279{letter-spacing:-0.839040pt;}
.ls7f_c00279{letter-spacing:-0.796480pt;}
.ls7c_c00279{letter-spacing:-0.772160pt;}
.ls4f_c00279{letter-spacing:-0.608000pt;}
.ls73_c00279{letter-spacing:-0.577600pt;}
.ls82_c00279{letter-spacing:-0.474240pt;}
.ls4d_c00279{letter-spacing:-0.468160pt;}
.ls68_c00279{letter-spacing:-0.437760pt;}
.ls62_c00279{letter-spacing:-0.425600pt;}
.ls61_c00279{letter-spacing:-0.413440pt;}
.ls69_c00279{letter-spacing:-0.407360pt;}
.ls6f_c00279{letter-spacing:-0.395200pt;}
.ls85_c00279{letter-spacing:-0.376960pt;}
.ls5e_c00279{letter-spacing:-0.370880pt;}
.ls79_c00279{letter-spacing:-0.346560pt;}
.ls5b_c00279{letter-spacing:-0.334400pt;}
.ls51_c00279{letter-spacing:-0.328320pt;}
.ls65_c00279{letter-spacing:-0.316160pt;}
.ls5c_c00279{letter-spacing:-0.297920pt;}
.ls54_c00279{letter-spacing:-0.231040pt;}
.ls7d_c00279{letter-spacing:-0.206720pt;}
.ls63_c00279{letter-spacing:-0.200640pt;}
.ls74_c00279{letter-spacing:-0.170240pt;}
.ls56_c00279{letter-spacing:-0.164160pt;}
.ls72_c00279{letter-spacing:-0.158080pt;}
.ls60_c00279{letter-spacing:-0.152000pt;}
.ls50_c00279{letter-spacing:-0.127680pt;}
.ls77_c00279{letter-spacing:-0.097280pt;}
.ls6e_c00279{letter-spacing:-0.091200pt;}
.ls5a_c00279{letter-spacing:-0.072960pt;}
.ls52_c00279{letter-spacing:-0.060800pt;}
.ls55_c00279{letter-spacing:-0.048640pt;}
.ls58_c00279{letter-spacing:-0.036480pt;}
.ls6c_c00279{letter-spacing:-0.018880pt;}
.ls86_c00279{letter-spacing:-0.018240pt;}
.ls66_c00279{letter-spacing:-0.012160pt;}
.ls6b_c00279{letter-spacing:-0.006080pt;}
.ls57_c00279{letter-spacing:0.000000pt;}
.ls3b_c00279{letter-spacing:0.006080pt;}
.ls1a_c00279{letter-spacing:0.024320pt;}
.ls48_c00279{letter-spacing:0.030400pt;}
.lsa_c00279{letter-spacing:0.036480pt;}
.ls4_c00279{letter-spacing:0.042560pt;}
.ls17_c00279{letter-spacing:0.066880pt;}
.ls3a_c00279{letter-spacing:0.085120pt;}
.ls87_c00279{letter-spacing:0.087947pt;}
.ls1_c00279{letter-spacing:0.109440pt;}
.ls36_c00279{letter-spacing:0.121600pt;}
.ls23_c00279{letter-spacing:0.158080pt;}
.ls1c_c00279{letter-spacing:0.164160pt;}
.ls7_c00279{letter-spacing:0.188480pt;}
.ls3c_c00279{letter-spacing:0.206720pt;}
.ls18_c00279{letter-spacing:0.212800pt;}
.ls38_c00279{letter-spacing:0.218880pt;}
.ls25_c00279{letter-spacing:0.224960pt;}
.ls6a_c00279{letter-spacing:0.237120pt;}
.ls42_c00279{letter-spacing:0.243200pt;}
.ls1e_c00279{letter-spacing:0.249280pt;}
.ls44_c00279{letter-spacing:0.255360pt;}
.ls49_c00279{letter-spacing:0.261440pt;}
.ls11_c00279{letter-spacing:0.273600pt;}
.ls71_c00279{letter-spacing:0.279680pt;}
.ls59_c00279{letter-spacing:0.291840pt;}
.ls3f_c00279{letter-spacing:0.297920pt;}
.ls12_c00279{letter-spacing:0.304000pt;}
.ls10_c00279{letter-spacing:0.310080pt;}
.ls1f_c00279{letter-spacing:0.322240pt;}
.ls9_c00279{letter-spacing:0.370880pt;}
.ls81_c00279{letter-spacing:0.376320pt;}
.ls28_c00279{letter-spacing:0.382293pt;}
.ls4b_c00279{letter-spacing:0.383040pt;}
.ls19_c00279{letter-spacing:0.401280pt;}
.ls5_c00279{letter-spacing:0.407360pt;}
.ls46_c00279{letter-spacing:0.424107pt;}
.ls3e_c00279{letter-spacing:0.425600pt;}
.lsd_c00279{letter-spacing:0.431680pt;}
.ls20_c00279{letter-spacing:0.443840pt;}
.ls14_c00279{letter-spacing:0.449920pt;}
.lse_c00279{letter-spacing:0.456000pt;}
.ls3_c00279{letter-spacing:0.462080pt;}
.ls22_c00279{letter-spacing:0.468160pt;}
.ls0_c00279{letter-spacing:0.492480pt;}
.ls2d_c00279{letter-spacing:0.507733pt;}
.ls16_c00279{letter-spacing:0.516800pt;}
.ls8_c00279{letter-spacing:0.535040pt;}
.ls27_c00279{letter-spacing:0.565440pt;}
.ls43_c00279{letter-spacing:0.567467pt;}
.ls29_c00279{letter-spacing:0.571520pt;}
.ls6_c00279{letter-spacing:0.583680pt;}
.ls13_c00279{letter-spacing:0.597333pt;}
.ls1b_c00279{letter-spacing:0.601920pt;}
.ls40_c00279{letter-spacing:0.603307pt;}
.ls45_c00279{letter-spacing:0.627200pt;}
.lsc_c00279{letter-spacing:0.650560pt;}
.ls47_c00279{letter-spacing:0.663040pt;}
.ls1d_c00279{letter-spacing:0.668800pt;}
.ls2_c00279{letter-spacing:0.687040pt;}
.ls3d_c00279{letter-spacing:0.705280pt;}
.ls2f_c00279{letter-spacing:0.753920pt;}
.ls2e_c00279{letter-spacing:0.772160pt;}
.ls2c_c00279{letter-spacing:0.776533pt;}
.ls5f_c00279{letter-spacing:0.808640pt;}
.ls21_c00279{letter-spacing:0.899840pt;}
.ls2b_c00279{letter-spacing:0.942400pt;}
.ls39_c00279{letter-spacing:0.966720pt;}
.ls15_c00279{letter-spacing:1.021440pt;}
.ls41_c00279{letter-spacing:1.039360pt;}
.ls33_c00279{letter-spacing:1.045760pt;}
.ls31_c00279{letter-spacing:1.130880pt;}
.lsb_c00279{letter-spacing:1.146880pt;}
.ls4a_c00279{letter-spacing:1.155200pt;}
.ls2a_c00279{letter-spacing:1.185600pt;}
.ls37_c00279{letter-spacing:1.390827pt;}
.ls24_c00279{letter-spacing:1.447040pt;}
.lsf_c00279{letter-spacing:1.465280pt;}
.ls34_c00279{letter-spacing:1.550400pt;}
.ls67_c00279{letter-spacing:1.562560pt;}
.ls35_c00279{letter-spacing:1.611200pt;}
.ls30_c00279{letter-spacing:2.000320pt;}
.ls32_c00279{letter-spacing:2.632640pt;}
.ls26_c00279{letter-spacing:2.748160pt;}
.ws4_c00279{word-spacing:0.000000pt;}
.ws0_c00279{word-spacing:2.296747pt;}
.ws1_c00279{word-spacing:2.790400pt;}
.ws2_c00279{word-spacing:7.342933pt;}
.ws3_c00279{word-spacing:12.182613pt;}
._10_c00279{margin-left:-9.496960pt;}
._11_c00279{margin-left:-5.508480pt;}
._b_c00279{margin-left:-1.355840pt;}
._c_c00279{width:0.924160pt;}
._f_c00279{width:1.945707pt;}
._a_c00279{width:2.913813pt;}
._9_c00279{width:4.013440pt;}
._8_c00279{width:5.441600pt;}
._d_c00279{width:7.277760pt;}
._5_c00279{width:8.268800pt;}
._7_c00279{width:9.916480pt;}
._6_c00279{width:11.235840pt;}
._0_c00279{width:12.743680pt;}
._1_c00279{width:13.728640pt;}
._4_c00279{width:16.191040pt;}
._13_c00279{width:17.479360pt;}
._2_c00279{width:18.489280pt;}
._3_c00279{width:20.489600pt;}
._12_c00279{width:21.950933pt;}
._e_c00279{width:28.688533pt;}
.fs3_c00279{font-size:46.080000pt;}
.fs2_c00279{font-size:47.360000pt;}
.fs5_c00279{font-size:51.733333pt;}
.fs0_c00279{font-size:59.733333pt;}
.fs1_c00279{font-size:60.800000pt;}
.fs4_c00279{font-size:62.933333pt;}
.y0_c00279{bottom:0.000000pt;}
.y1d_c00279{bottom:62.733333pt;}
.y1c_c00279{bottom:130.573333pt;}
.y1b_c00279{bottom:185.293333pt;}
.y1a_c00279{bottom:213.120000pt;}
.y19_c00279{bottom:240.973333pt;}
.y18_c00279{bottom:268.493333pt;}
.y17_c00279{bottom:324.173333pt;}
.y16_c00279{bottom:324.180533pt;}
.y14_c00279{bottom:351.367733pt;}
.y15_c00279{bottom:351.373333pt;}
.y13_c00279{bottom:379.536533pt;}
.y12_c00279{bottom:435.526133pt;}
.y11_c00279{bottom:463.053333pt;}
.y10_c00279{bottom:519.368000pt;}
.yf_c00279{bottom:546.880000pt;}
.ye_c00279{bottom:602.568800pt;}
.yd_c00279{bottom:630.400000pt;}
.yc_c00279{bottom:685.761600pt;}
.yb_c00279{bottom:713.273600pt;}
.ya_c00279{bottom:741.107200pt;}
.y9_c00279{bottom:768.953600pt;}
.y8_c00279{bottom:796.800000pt;}
.y6_c00279{bottom:852.166933pt;}
.y7_c00279{bottom:852.173333pt;}
.y5_c00279{bottom:880.013333pt;}
.y4_c00279{bottom:935.686933pt;}
.y3_c00279{bottom:963.533333pt;}
.y2_c00279{bottom:991.360000pt;}
.y1_c00279{bottom:1058.253333pt;}
.h6_c00279{height:30.689280pt;}
.h4_c00279{height:31.541760pt;}
.he_c00279{height:50.773437pt;}
.hd_c00279{height:58.595833pt;}
.h2_c00279{height:58.625000pt;}
.h3_c00279{height:59.671875pt;}
.h9_c00279{height:59.693208pt;}
.hc_c00279{height:59.694275pt;}
.h5_c00279{height:59.697475pt;}
.hb_c00279{height:59.700675pt;}
.h8_c00279{height:59.718808pt;}
.h7_c00279{height:59.723075pt;}
.ha_c00279{height:61.734896pt;}
.h1_c00279{height:1122.666667pt;}
.h0_c00279{height:1122.880000pt;}
.w1_c00279{width:793.333333pt;}
.w0_c00279{width:793.600000pt;}
.x0_c00279{left:0.000000pt;}
.x1_c00279{left:110.013333pt;}
.x2_c00279{left:111.229600pt;}
.x12_c00279{left:156.946667pt;}
.x3_c00279{left:158.546667pt;}
.x8_c00279{left:250.066667pt;}
.xe_c00279{left:260.453333pt;}
.x7_c00279{left:268.173333pt;}
.x9_c00279{left:280.573333pt;}
.xf_c00279{left:287.600000pt;}
.xc_c00279{left:372.626667pt;}
.x6_c00279{left:375.360000pt;}
.x13_c00279{left:378.160000pt;}
.xd_c00279{left:396.320000pt;}
.x4_c00279{left:413.773333pt;}
.x5_c00279{left:438.853333pt;}
.x10_c00279{left:529.400000pt;}
.x11_c00279{left:544.146667pt;}
.xa_c00279{left:584.226667pt;}
.xb_c00279{left:601.533333pt;}
}





/* 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_c00280 {
    display:none;
  }
  .loading-indicator_c00280.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00280 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_c00280 { 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_c00280" -> "#page-container .classname_c00280")
 */
.pf_c00280 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00280 { /* 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_c00280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00280 { /* 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_c00280 { /* 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_c00280 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00280 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00280 {overflow:visible;}
  }
}
.c_c00280 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00280 { /* 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_c00280:after { /* webkit #35443 */
  content: '';
}
.t_c00280:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00280 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 */
}
.__c00280 { /* 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_c00280 { /* info for Javascript */
  display:none;
}
.l_c00280 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00280 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00280 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00280: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_c00280 {
    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_c00280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00280.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_c00280 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00280;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.311035;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_c00280;src:url('chunks/assets/font_0d76987ff965ab43f10264de.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.284668;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_c00280;src:url('chunks/assets/font_5f6b6ed157a0fa74698c3adf.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.284180;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_c00280;src:url('chunks/assets/font_f0b78ba10bd0851798a95613.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:0.666000;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_c00280;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;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;}
.m3_c00280{transform:matrix(0.140541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140541,0.000000,0.000000,0.250000,0,0);}
.m2_c00280{transform:matrix(0.211248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211248,0.000000,0.000000,0.250000,0,0);}
.m0_c00280{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m4_c00280{transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{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);}
.v0_c00280{vertical-align:0.000000px;}
.ls4a_c00280{letter-spacing:-2.688000px;}
.ls54_c00280{letter-spacing:-2.352000px;}
.ls3d_c00280{letter-spacing:-2.310000px;}
.ls44_c00280{letter-spacing:-1.083300px;}
.ls42_c00280{letter-spacing:-1.014300px;}
.ls41_c00280{letter-spacing:-0.945300px;}
.ls45_c00280{letter-spacing:-0.821100px;}
.ls56_c00280{letter-spacing:-0.800400px;}
.ls50_c00280{letter-spacing:-0.531300px;}
.ls51_c00280{letter-spacing:-0.441600px;}
.ls55_c00280{letter-spacing:-0.386400px;}
.ls53_c00280{letter-spacing:-0.379500px;}
.ls58_c00280{letter-spacing:-0.346920px;}
.ls52_c00280{letter-spacing:-0.317400px;}
.ls4c_c00280{letter-spacing:-0.220800px;}
.ls47_c00280{letter-spacing:-0.200100px;}
.ls48_c00280{letter-spacing:-0.151800px;}
.ls4f_c00280{letter-spacing:-0.124200px;}
.ls3f_c00280{letter-spacing:-0.110400px;}
.ls57_c00280{letter-spacing:-0.096600px;}
.ls4d_c00280{letter-spacing:-0.082800px;}
.ls40_c00280{letter-spacing:-0.062100px;}
.ls4b_c00280{letter-spacing:-0.020700px;}
.ls3e_c00280{letter-spacing:0.000000px;}
.ls22_c00280{letter-spacing:0.006900px;}
.ls11_c00280{letter-spacing:0.013800px;}
.ls8_c00280{letter-spacing:0.027600px;}
.ls34_c00280{letter-spacing:0.034500px;}
.ls28_c00280{letter-spacing:0.041400px;}
.ls15_c00280{letter-spacing:0.048300px;}
.ls38_c00280{letter-spacing:0.055200px;}
.ls43_c00280{letter-spacing:0.082800px;}
.ls1b_c00280{letter-spacing:0.110400px;}
.lsa_c00280{letter-spacing:0.138000px;}
.ls20_c00280{letter-spacing:0.227700px;}
.ls0_c00280{letter-spacing:0.241500px;}
.ls21_c00280{letter-spacing:0.248400px;}
.ls1d_c00280{letter-spacing:0.255300px;}
.ls4_c00280{letter-spacing:0.262200px;}
.ls49_c00280{letter-spacing:0.276000px;}
.ls35_c00280{letter-spacing:0.294120px;}
.ls23_c00280{letter-spacing:0.296700px;}
.lsb_c00280{letter-spacing:0.310500px;}
.ls18_c00280{letter-spacing:0.317400px;}
.ls1e_c00280{letter-spacing:0.331200px;}
.lsd_c00280{letter-spacing:0.345000px;}
.ls7_c00280{letter-spacing:0.351900px;}
.lsc_c00280{letter-spacing:0.358800px;}
.ls2e_c00280{letter-spacing:0.379500px;}
.ls1f_c00280{letter-spacing:0.400200px;}
.ls16_c00280{letter-spacing:0.407100px;}
.ls19_c00280{letter-spacing:0.420900px;}
.ls1c_c00280{letter-spacing:0.427800px;}
.ls37_c00280{letter-spacing:0.469200px;}
.ls36_c00280{letter-spacing:0.478800px;}
.ls6_c00280{letter-spacing:0.496800px;}
.ls3_c00280{letter-spacing:0.545100px;}
.lsf_c00280{letter-spacing:0.565800px;}
.ls2d_c00280{letter-spacing:0.572700px;}
.ls2f_c00280{letter-spacing:0.579600px;}
.ls30_c00280{letter-spacing:0.586500px;}
.ls27_c00280{letter-spacing:0.621000px;}
.ls33_c00280{letter-spacing:0.627900px;}
.ls4e_c00280{letter-spacing:0.634800px;}
.ls29_c00280{letter-spacing:0.641700px;}
.ls2a_c00280{letter-spacing:0.663480px;}
.ls31_c00280{letter-spacing:0.676200px;}
.ls25_c00280{letter-spacing:0.724500px;}
.ls13_c00280{letter-spacing:0.731880px;}
.ls24_c00280{letter-spacing:0.752100px;}
.ls5_c00280{letter-spacing:0.765900px;}
.ls32_c00280{letter-spacing:0.800280px;}
.ls3b_c00280{letter-spacing:0.862500px;}
.ls2_c00280{letter-spacing:0.883200px;}
.ls26_c00280{letter-spacing:0.950760px;}
.ls10_c00280{letter-spacing:1.097100px;}
.ls2c_c00280{letter-spacing:1.110900px;}
.ls12_c00280{letter-spacing:1.251720px;}
.ls46_c00280{letter-spacing:1.283400px;}
.ls3c_c00280{letter-spacing:1.331700px;}
.ls2b_c00280{letter-spacing:1.338600px;}
.ls17_c00280{letter-spacing:1.359300px;}
.lse_c00280{letter-spacing:1.469700px;}
.ls14_c00280{letter-spacing:1.545600px;}
.ls9_c00280{letter-spacing:1.587000px;}
.ls3a_c00280{letter-spacing:1.842300px;}
.ls39_c00280{letter-spacing:2.056200px;}
.ls1a_c00280{letter-spacing:2.539200px;}
.ls1_c00280{letter-spacing:2.559900px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{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__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00280{word-spacing:-0.031800px;}
.ws5_c00280{word-spacing:0.000000px;}
.ws1_c00280{word-spacing:0.137760px;}
.ws0_c00280{word-spacing:5.077680px;}
.ws2_c00280{word-spacing:6.957600px;}
.ws4_c00280{word-spacing:14.982000px;}
._a_c00280{margin-left:-5.030100px;}
._5_c00280{margin-left:-3.312000px;}
._7_c00280{margin-left:-1.290300px;}
._6_c00280{width:1.221300px;}
._1_c00280{width:2.318400px;}
._0_c00280{width:4.002000px;}
._2_c00280{width:5.796000px;}
._8_c00280{width:6.927000px;}
._b_c00280{width:8.245500px;}
._4_c00280{width:9.473700px;}
._3_c00280{width:10.488000px;}
._9_c00280{width:12.840900px;}
._c_c00280{width:14.811660px;}
.fc0_c00280{color:transparent;}
.fs4_c00280{font-size:53.280000px;}
.fs6_c00280{font-size:58.800000px;}
.fs0_c00280{font-size:66.000000px;}
.fs5_c00280{font-size:67.200000px;}
.fs2_c00280{font-size:68.400000px;}
.fs1_c00280{font-size:69.000000px;}
.fs3_c00280{font-size:76.800000px;}
.y0_c00280{bottom:0.000000px;}
.yf_c00280{bottom:69.855006px;}
.ye_c00280{bottom:615.246756px;}
.yd_c00280{bottom:647.280006px;}
.yc_c00280{bottom:709.935006px;}
.yb_c00280{bottom:771.480006px;}
.ya_c00280{bottom:771.493506px;}
.y9_c00280{bottom:803.526756px;}
.y8_c00280{bottom:835.215006px;}
.y7_c00280{bottom:897.480006px;}
.y6_c00280{bottom:960.135006px;}
.y5_c00280{bottom:991.086756px;}
.y4_c00280{bottom:1022.775006px;}
.y3_c00280{bottom:1085.406756px;}
.y2_c00280{bottom:1117.095006px;}
.y1_c00280{bottom:1193.055006px;}
.h6_c00280{height:35.484480px;}
.h8_c00280{height:57.708984px;}
.h2_c00280{height:66.515625px;}
.h3_c00280{height:67.719727px;}
.h4_c00280{height:67.752727px;}
.h7_c00280{height:70.087500px;}
.h5_c00280{height:75.375000px;}
.h1_c00280{height:1263.000000px;}
.h0_c00280{height:1263.240006px;}
.w1_c00280{width:892.500000px;}
.w0_c00280{width:892.799998px;}
.x0_c00280{left:0.000000px;}
.x4_c00280{left:120.769499px;}
.x2_c00280{left:121.874999px;}
.x1_c00280{left:123.044999px;}
.xb_c00280{left:174.044998px;}
.x3_c00280{left:175.124998px;}
.xa_c00280{left:197.399999px;}
.x8_c00280{left:417.254998px;}
.xc_c00280{left:425.069999px;}
.x5_c00280{left:460.349999px;}
.x6_c00280{left:492.329998px;}
.x9_c00280{left:498.209999px;}
.x7_c00280{left:696.149999px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls4a_c00280{letter-spacing:-2.389333pt;}
.ls54_c00280{letter-spacing:-2.090667pt;}
.ls3d_c00280{letter-spacing:-2.053333pt;}
.ls44_c00280{letter-spacing:-0.962933pt;}
.ls42_c00280{letter-spacing:-0.901600pt;}
.ls41_c00280{letter-spacing:-0.840267pt;}
.ls45_c00280{letter-spacing:-0.729867pt;}
.ls56_c00280{letter-spacing:-0.711467pt;}
.ls50_c00280{letter-spacing:-0.472267pt;}
.ls51_c00280{letter-spacing:-0.392533pt;}
.ls55_c00280{letter-spacing:-0.343467pt;}
.ls53_c00280{letter-spacing:-0.337333pt;}
.ls58_c00280{letter-spacing:-0.308373pt;}
.ls52_c00280{letter-spacing:-0.282133pt;}
.ls4c_c00280{letter-spacing:-0.196267pt;}
.ls47_c00280{letter-spacing:-0.177867pt;}
.ls48_c00280{letter-spacing:-0.134933pt;}
.ls4f_c00280{letter-spacing:-0.110400pt;}
.ls3f_c00280{letter-spacing:-0.098133pt;}
.ls57_c00280{letter-spacing:-0.085867pt;}
.ls4d_c00280{letter-spacing:-0.073600pt;}
.ls40_c00280{letter-spacing:-0.055200pt;}
.ls4b_c00280{letter-spacing:-0.018400pt;}
.ls3e_c00280{letter-spacing:0.000000pt;}
.ls22_c00280{letter-spacing:0.006133pt;}
.ls11_c00280{letter-spacing:0.012267pt;}
.ls8_c00280{letter-spacing:0.024533pt;}
.ls34_c00280{letter-spacing:0.030667pt;}
.ls28_c00280{letter-spacing:0.036800pt;}
.ls15_c00280{letter-spacing:0.042933pt;}
.ls38_c00280{letter-spacing:0.049067pt;}
.ls43_c00280{letter-spacing:0.073600pt;}
.ls1b_c00280{letter-spacing:0.098133pt;}
.lsa_c00280{letter-spacing:0.122667pt;}
.ls20_c00280{letter-spacing:0.202400pt;}
.ls0_c00280{letter-spacing:0.214667pt;}
.ls21_c00280{letter-spacing:0.220800pt;}
.ls1d_c00280{letter-spacing:0.226933pt;}
.ls4_c00280{letter-spacing:0.233067pt;}
.ls49_c00280{letter-spacing:0.245333pt;}
.ls35_c00280{letter-spacing:0.261440pt;}
.ls23_c00280{letter-spacing:0.263733pt;}
.lsb_c00280{letter-spacing:0.276000pt;}
.ls18_c00280{letter-spacing:0.282133pt;}
.ls1e_c00280{letter-spacing:0.294400pt;}
.lsd_c00280{letter-spacing:0.306667pt;}
.ls7_c00280{letter-spacing:0.312800pt;}
.lsc_c00280{letter-spacing:0.318933pt;}
.ls2e_c00280{letter-spacing:0.337333pt;}
.ls1f_c00280{letter-spacing:0.355733pt;}
.ls16_c00280{letter-spacing:0.361867pt;}
.ls19_c00280{letter-spacing:0.374133pt;}
.ls1c_c00280{letter-spacing:0.380267pt;}
.ls37_c00280{letter-spacing:0.417067pt;}
.ls36_c00280{letter-spacing:0.425600pt;}
.ls6_c00280{letter-spacing:0.441600pt;}
.ls3_c00280{letter-spacing:0.484533pt;}
.lsf_c00280{letter-spacing:0.502933pt;}
.ls2d_c00280{letter-spacing:0.509067pt;}
.ls2f_c00280{letter-spacing:0.515200pt;}
.ls30_c00280{letter-spacing:0.521333pt;}
.ls27_c00280{letter-spacing:0.552000pt;}
.ls33_c00280{letter-spacing:0.558133pt;}
.ls4e_c00280{letter-spacing:0.564267pt;}
.ls29_c00280{letter-spacing:0.570400pt;}
.ls2a_c00280{letter-spacing:0.589760pt;}
.ls31_c00280{letter-spacing:0.601067pt;}
.ls25_c00280{letter-spacing:0.644000pt;}
.ls13_c00280{letter-spacing:0.650560pt;}
.ls24_c00280{letter-spacing:0.668533pt;}
.ls5_c00280{letter-spacing:0.680800pt;}
.ls32_c00280{letter-spacing:0.711360pt;}
.ls3b_c00280{letter-spacing:0.766667pt;}
.ls2_c00280{letter-spacing:0.785067pt;}
.ls26_c00280{letter-spacing:0.845120pt;}
.ls10_c00280{letter-spacing:0.975200pt;}
.ls2c_c00280{letter-spacing:0.987467pt;}
.ls12_c00280{letter-spacing:1.112640pt;}
.ls46_c00280{letter-spacing:1.140800pt;}
.ls3c_c00280{letter-spacing:1.183733pt;}
.ls2b_c00280{letter-spacing:1.189867pt;}
.ls17_c00280{letter-spacing:1.208267pt;}
.lse_c00280{letter-spacing:1.306400pt;}
.ls14_c00280{letter-spacing:1.373867pt;}
.ls9_c00280{letter-spacing:1.410667pt;}
.ls3a_c00280{letter-spacing:1.637600pt;}
.ls39_c00280{letter-spacing:1.827733pt;}
.ls1a_c00280{letter-spacing:2.257067pt;}
.ls1_c00280{letter-spacing:2.275467pt;}
.ws3_c00280{word-spacing:-0.028267pt;}
.ws5_c00280{word-spacing:0.000000pt;}
.ws1_c00280{word-spacing:0.122453pt;}
.ws0_c00280{word-spacing:4.513493pt;}
.ws2_c00280{word-spacing:6.184533pt;}
.ws4_c00280{word-spacing:13.317333pt;}
._a_c00280{margin-left:-4.471200pt;}
._5_c00280{margin-left:-2.944000pt;}
._7_c00280{margin-left:-1.146933pt;}
._6_c00280{width:1.085600pt;}
._1_c00280{width:2.060800pt;}
._0_c00280{width:3.557333pt;}
._2_c00280{width:5.152000pt;}
._8_c00280{width:6.157333pt;}
._b_c00280{width:7.329333pt;}
._4_c00280{width:8.421067pt;}
._3_c00280{width:9.322667pt;}
._9_c00280{width:11.414133pt;}
._c_c00280{width:13.165920pt;}
.fs4_c00280{font-size:47.360000pt;}
.fs6_c00280{font-size:52.266667pt;}
.fs0_c00280{font-size:58.666667pt;}
.fs5_c00280{font-size:59.733333pt;}
.fs2_c00280{font-size:60.800000pt;}
.fs1_c00280{font-size:61.333333pt;}
.fs3_c00280{font-size:68.266667pt;}
.y0_c00280{bottom:0.000000pt;}
.yf_c00280{bottom:62.093339pt;}
.ye_c00280{bottom:546.886005pt;}
.yd_c00280{bottom:575.360005pt;}
.yc_c00280{bottom:631.053339pt;}
.yb_c00280{bottom:685.760005pt;}
.ya_c00280{bottom:685.772005pt;}
.y9_c00280{bottom:714.246005pt;}
.y8_c00280{bottom:742.413339pt;}
.y7_c00280{bottom:797.760005pt;}
.y6_c00280{bottom:853.453339pt;}
.y5_c00280{bottom:880.966005pt;}
.y4_c00280{bottom:909.133339pt;}
.y3_c00280{bottom:964.806005pt;}
.y2_c00280{bottom:992.973339pt;}
.y1_c00280{bottom:1060.493339pt;}
.h6_c00280{height:31.541760pt;}
.h8_c00280{height:51.296875pt;}
.h2_c00280{height:59.125000pt;}
.h3_c00280{height:60.195312pt;}
.h4_c00280{height:60.224646pt;}
.h7_c00280{height:62.300000pt;}
.h5_c00280{height:67.000000pt;}
.h1_c00280{height:1122.666667pt;}
.h0_c00280{height:1122.880005pt;}
.w1_c00280{width:793.333333pt;}
.w0_c00280{width:793.599999pt;}
.x0_c00280{left:0.000000pt;}
.x4_c00280{left:107.350665pt;}
.x2_c00280{left:108.333332pt;}
.x1_c00280{left:109.373332pt;}
.xb_c00280{left:154.706665pt;}
.x3_c00280{left:155.666665pt;}
.xa_c00280{left:175.466665pt;}
.x8_c00280{left:370.893332pt;}
.xc_c00280{left:377.839999pt;}
.x5_c00280{left:409.199999pt;}
.x6_c00280{left:437.626665pt;}
.x9_c00280{left:442.853332pt;}
.x7_c00280{left:618.799999pt;}
}





/* 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_c00281 {
    display:none;
  }
  .loading-indicator_c00281.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00281 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_c00281 { 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_c00281" -> "#page-container .classname_c00281")
 */
.pf_c00281 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00281 { /* 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_c00281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00281 { /* 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_c00281 { /* 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_c00281 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00281 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00281 {overflow:visible;}
  }
}
.c_c00281 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00281 { /* 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_c00281:after { /* webkit #35443 */
  content: '';
}
.t_c00281:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00281 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 */
}
.__c00281 { /* 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_c00281 { /* info for Javascript */
  display:none;
}
.l_c00281 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00281 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00281 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00281: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_c00281 {
    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_c00281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00281.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_c00281 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00281;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;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:ff2_c00281;src:url('chunks/assets/font_ecf25a04584c626ba254b840.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.284180;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_c00281;src:url('chunks/assets/font_fea22891fc6361e4dc473280.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.284668;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_c00281;src:url('chunks/assets/font_82aba439aee1dd81151f1f13.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:0.666000;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;}
.m3_c00281{transform:matrix(0.049757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049757,0.000000,0.000000,0.250000,0,0);}
.m2_c00281{transform:matrix(0.116774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116774,0.000000,0.000000,0.250000,0,0);}
.m0_c00281{transform:matrix(0.124079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124079,0.000000,0.000000,0.250000,0,0);}
.m4_c00281{transform:matrix(0.242569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242569,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{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);}
.v0_c00281{vertical-align:0.000000px;}
.v1_c00281{vertical-align:73.458000px;}
.lsa_c00281{letter-spacing:-2.520000px;}
.ls10_c00281{letter-spacing:-1.932000px;}
.ls12_c00281{letter-spacing:-1.302000px;}
.lsb_c00281{letter-spacing:-1.077300px;}
.lsd_c00281{letter-spacing:-0.900900px;}
.lsf_c00281{letter-spacing:-0.804420px;}
.ls11_c00281{letter-spacing:0.000000px;}
.ls5_c00281{letter-spacing:0.472500px;}
.ls8_c00281{letter-spacing:0.680400px;}
.ls3_c00281{letter-spacing:1.008000px;}
.ls4_c00281{letter-spacing:1.190700px;}
.lse_c00281{letter-spacing:1.209600px;}
.ls0_c00281{letter-spacing:1.297800px;}
.ls6_c00281{letter-spacing:1.335600px;}
.lsc_c00281{letter-spacing:1.411200px;}
.ls2_c00281{letter-spacing:1.499400px;}
.ls7_c00281{letter-spacing:1.587600px;}
.ls1_c00281{letter-spacing:1.606500px;}
.ls9_c00281{letter-spacing:2.877600px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{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__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00281{word-spacing:-0.302400px;}
.ws2_c00281{word-spacing:-0.100800px;}
.ws4_c00281{word-spacing:0.000000px;}
.ws1_c00281{word-spacing:0.756000px;}
.ws0_c00281{word-spacing:3.742200px;}
._4_c00281{margin-left:-5.755200px;}
._3_c00281{margin-left:-4.464600px;}
._0_c00281{margin-left:-1.537200px;}
._2_c00281{width:3.481500px;}
._1_c00281{width:407.156400px;}
.fc0_c00281{color:transparent;}
.fs5_c00281{font-size:37.200000px;}
.fs3_c00281{font-size:55.200000px;}
.fs1_c00281{font-size:63.000000px;}
.fs2_c00281{font-size:65.400000px;}
.fs0_c00281{font-size:72.000000px;}
.fs4_c00281{font-size:296.640000px;}
.y0_c00281{bottom:0.000000px;}
.y3_c00281{bottom:150.835506px;}
.y2_c00281{bottom:169.200006px;}
.y7_c00281{bottom:525.975006px;}
.y6_c00281{bottom:534.615006px;}
.y5_c00281{bottom:1080.000006px;}
.y1_c00281{bottom:1081.455006px;}
.y4_c00281{bottom:1147.680006px;}
.h8_c00281{height:36.509766px;}
.h6_c00281{height:54.175781px;}
.h3_c00281{height:61.800293px;}
.h5_c00281{height:64.186523px;}
.h2_c00281{height:75.093750px;}
.h4_c00281{height:135.258293px;}
.h7_c00281{height:197.562240px;}
.h1_c00281{height:1263.000000px;}
.h0_c00281{height:1263.240006px;}
.w1_c00281{width:892.500000px;}
.w0_c00281{width:892.799998px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:115.709998px;}
.x2_c00281{left:118.874999px;}
.x3_c00281{left:382.547248px;}
.x6_c00281{left:656.279999px;}
.x4_c00281{left:668.789999px;}
.x5_c00281{left:792.134998px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.v1_c00281{vertical-align:65.296000pt;}
.lsa_c00281{letter-spacing:-2.240000pt;}
.ls10_c00281{letter-spacing:-1.717333pt;}
.ls12_c00281{letter-spacing:-1.157333pt;}
.lsb_c00281{letter-spacing:-0.957600pt;}
.lsd_c00281{letter-spacing:-0.800800pt;}
.lsf_c00281{letter-spacing:-0.715040pt;}
.ls11_c00281{letter-spacing:0.000000pt;}
.ls5_c00281{letter-spacing:0.420000pt;}
.ls8_c00281{letter-spacing:0.604800pt;}
.ls3_c00281{letter-spacing:0.896000pt;}
.ls4_c00281{letter-spacing:1.058400pt;}
.lse_c00281{letter-spacing:1.075200pt;}
.ls0_c00281{letter-spacing:1.153600pt;}
.ls6_c00281{letter-spacing:1.187200pt;}
.lsc_c00281{letter-spacing:1.254400pt;}
.ls2_c00281{letter-spacing:1.332800pt;}
.ls7_c00281{letter-spacing:1.411200pt;}
.ls1_c00281{letter-spacing:1.428000pt;}
.ls9_c00281{letter-spacing:2.557867pt;}
.ws3_c00281{word-spacing:-0.268800pt;}
.ws2_c00281{word-spacing:-0.089600pt;}
.ws4_c00281{word-spacing:0.000000pt;}
.ws1_c00281{word-spacing:0.672000pt;}
.ws0_c00281{word-spacing:3.326400pt;}
._4_c00281{margin-left:-5.115733pt;}
._3_c00281{margin-left:-3.968533pt;}
._0_c00281{margin-left:-1.366400pt;}
._2_c00281{width:3.094667pt;}
._1_c00281{width:361.916800pt;}
.fs5_c00281{font-size:33.066667pt;}
.fs3_c00281{font-size:49.066667pt;}
.fs1_c00281{font-size:56.000000pt;}
.fs2_c00281{font-size:58.133333pt;}
.fs0_c00281{font-size:64.000000pt;}
.fs4_c00281{font-size:263.680000pt;}
.y0_c00281{bottom:0.000000pt;}
.y3_c00281{bottom:134.076005pt;}
.y2_c00281{bottom:150.400005pt;}
.y7_c00281{bottom:467.533339pt;}
.y6_c00281{bottom:475.213339pt;}
.y5_c00281{bottom:960.000005pt;}
.y1_c00281{bottom:961.293339pt;}
.y4_c00281{bottom:1020.160005pt;}
.h8_c00281{height:32.453125pt;}
.h6_c00281{height:48.156250pt;}
.h3_c00281{height:54.933594pt;}
.h5_c00281{height:57.054688pt;}
.h2_c00281{height:66.750000pt;}
.h4_c00281{height:120.229594pt;}
.h7_c00281{height:175.610880pt;}
.h1_c00281{height:1122.666667pt;}
.h0_c00281{height:1122.880005pt;}
.w1_c00281{width:793.333333pt;}
.w0_c00281{width:793.599999pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:102.853332pt;}
.x2_c00281{left:105.666665pt;}
.x3_c00281{left:340.041999pt;}
.x6_c00281{left:583.359999pt;}
.x4_c00281{left:594.479999pt;}
.x5_c00281{left:704.119999pt;}
}





/* 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_c00282 {
    display:none;
  }
  .loading-indicator_c00282.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00282 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_c00282 { 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_c00282" -> "#page-container .classname_c00282")
 */
.pf_c00282 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00282 { /* 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_c00282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00282 { /* 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_c00282 { /* 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_c00282 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00282 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00282 {overflow:visible;}
  }
}
.c_c00282 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00282 { /* 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_c00282:after { /* webkit #35443 */
  content: '';
}
.t_c00282:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00282 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 */
}
.__c00282 { /* 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_c00282 { /* info for Javascript */
  display:none;
}
.l_c00282 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00282 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00282 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00282: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_c00282 {
    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_c00282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00282.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_c00282 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00282;src:url('chunks/assets/font_c2a38bc647e97c1212322926.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.284668;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_c00282;src:url('chunks/assets/font_34a84ecaef2d7bd4b1ecc205.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.284180;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_c00282;src:url('chunks/assets/font_d45014fd6951cbfc58af2689.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:0.666000;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_c00282{transform:matrix(0.070652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070652,0.000000,0.000000,0.250000,0,0);}
.m0_c00282{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_c00282{transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls5_c00282{letter-spacing:-1.392840px;}
.ls4_c00282{letter-spacing:0.000000px;}
.lsa_c00282{letter-spacing:0.372360px;}
.ls7_c00282{letter-spacing:0.597840px;}
.ls6_c00282{letter-spacing:0.693240px;}
.ls8_c00282{letter-spacing:0.788640px;}
.ls0_c00282{letter-spacing:0.973080px;}
.ls1_c00282{letter-spacing:1.055760px;}
.ls2_c00282{letter-spacing:1.291080px;}
.ls3_c00282{letter-spacing:1.596360px;}
.ls9_c00282{letter-spacing:3.210000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{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__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00282{word-spacing:0.000000px;}
.ws2_c00282{word-spacing:0.356160px;}
.ws1_c00282{word-spacing:1.195680px;}
.ws0_c00282{word-spacing:5.634960px;}
.fc0_c00282{color:transparent;}
.fs0_c00282{font-size:62.400000px;}
.fs1_c00282{font-size:63.600000px;}
.fs2_c00282{font-size:64.200000px;}
.fs3_c00282{font-size:198.720000px;}
.y0_c00282{bottom:0.000000px;}
.y4_c00282{bottom:156.242400px;}
.y3_c00282{bottom:173.875500px;}
.y2_c00282{bottom:192.240000px;}
.y1_c00282{bottom:351.360000px;}
.y6_c00282{bottom:365.775000px;}
.y5_c00282{bottom:1144.440000px;}
.h2_c00282{height:61.242188px;}
.h3_c00282{height:62.388867px;}
.h4_c00282{height:63.008789px;}
.h5_c00282{height:132.347520px;}
.h1_c00282{height:1263.000000px;}
.h0_c00282{height:1263.240000px;}
.w1_c00282{width:892.500000px;}
.w0_c00282{width:892.800000px;}
.x0_c00282{left:0.000000px;}
.x3_c00282{left:114.055200px;}
.x2_c00282{left:115.995000px;}
.x1_c00282{left:329.220000px;}
.x6_c00282{left:373.695000px;}
.x4_c00282{left:684.270000px;}
.x5_c00282{left:757.350000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls5_c00282{letter-spacing:-1.238080pt;}
.ls4_c00282{letter-spacing:0.000000pt;}
.lsa_c00282{letter-spacing:0.330987pt;}
.ls7_c00282{letter-spacing:0.531413pt;}
.ls6_c00282{letter-spacing:0.616213pt;}
.ls8_c00282{letter-spacing:0.701013pt;}
.ls0_c00282{letter-spacing:0.864960pt;}
.ls1_c00282{letter-spacing:0.938453pt;}
.ls2_c00282{letter-spacing:1.147627pt;}
.ls3_c00282{letter-spacing:1.418987pt;}
.ls9_c00282{letter-spacing:2.853333pt;}
.ws3_c00282{word-spacing:0.000000pt;}
.ws2_c00282{word-spacing:0.316587pt;}
.ws1_c00282{word-spacing:1.062827pt;}
.ws0_c00282{word-spacing:5.008853pt;}
.fs0_c00282{font-size:55.466667pt;}
.fs1_c00282{font-size:56.533333pt;}
.fs2_c00282{font-size:57.066667pt;}
.fs3_c00282{font-size:176.640000pt;}
.y0_c00282{bottom:0.000000pt;}
.y4_c00282{bottom:138.882133pt;}
.y3_c00282{bottom:154.556000pt;}
.y2_c00282{bottom:170.880000pt;}
.y1_c00282{bottom:312.320000pt;}
.y6_c00282{bottom:325.133333pt;}
.y5_c00282{bottom:1017.280000pt;}
.h2_c00282{height:54.437500pt;}
.h3_c00282{height:55.456771pt;}
.h4_c00282{height:56.007812pt;}
.h5_c00282{height:117.642240pt;}
.h1_c00282{height:1122.666667pt;}
.h0_c00282{height:1122.880000pt;}
.w1_c00282{width:793.333333pt;}
.w0_c00282{width:793.600000pt;}
.x0_c00282{left:0.000000pt;}
.x3_c00282{left:101.382400pt;}
.x2_c00282{left:103.106667pt;}
.x1_c00282{left:292.640000pt;}
.x6_c00282{left:332.173333pt;}
.x4_c00282{left:608.240000pt;}
.x5_c00282{left:673.200000pt;}
}





/* 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_c00283 {
    display:none;
  }
  .loading-indicator_c00283.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00283 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_c00283 { 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_c00283" -> "#page-container .classname_c00283")
 */
.pf_c00283 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00283 { /* 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_c00283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00283 { /* 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_c00283 { /* 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_c00283 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00283 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00283 {overflow:visible;}
  }
}
.c_c00283 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00283 { /* 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_c00283:after { /* webkit #35443 */
  content: '';
}
.t_c00283:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00283 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 */
}
.__c00283 { /* 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_c00283 { /* info for Javascript */
  display:none;
}
.l_c00283 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00283 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00283 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00283: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_c00283 {
    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_c00283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00283.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_c00283 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00283;src:url('chunks/assets/font_f6a4439ba3646abbe9ed43b5.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.311035;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_c00283;src:url('chunks/assets/font_09bb6c8fccafaecc41b85092.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.284180;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_c00283;src:url('chunks/assets/font_bd17ff6619f76d4e171f7667.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.284668;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_c00283;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;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:ff5_c00283;src:url('chunks/assets/font_2b33c611a070a85034dea00a.woff2')format("woff");}.ff5_c00283{font-family:ff5_c00283;line-height:0.666000;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;}
.m6_c00283{transform:matrix(0.087037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087037,0.000000,0.000000,0.250000,0,0);}
.m5_c00283{transform:matrix(0.113556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113556,0.000000,0.000000,0.250000,0,0);}
.m0_c00283{transform:matrix(0.127666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127666,0.000000,0.000000,0.250000,0,0);}
.m1_c00283{transform:matrix(0.246278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246278,0.000000,0.000000,0.250000,0,0);}
.m2_c00283{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);}
.m3_c00283{transform:matrix(0.252701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252701,0.000000,0.000000,0.250000,0,0);}
.m4_c00283{transform:matrix(0.261176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261176,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.v1_c00283{vertical-align:54.691200px;}
.lse_c00283{letter-spacing:-2.541000px;}
.ls4_c00283{letter-spacing:-2.268000px;}
.ls3_c00283{letter-spacing:-2.247000px;}
.lsd_c00283{letter-spacing:-1.392600px;}
.ls9_c00283{letter-spacing:-0.498960px;}
.ls8_c00283{letter-spacing:-0.479520px;}
.lsb_c00283{letter-spacing:-0.097200px;}
.ls7_c00283{letter-spacing:-0.090720px;}
.lsc_c00283{letter-spacing:-0.084240px;}
.lsf_c00283{letter-spacing:0.000000px;}
.lsa_c00283{letter-spacing:0.272160px;}
.ls5_c00283{letter-spacing:0.324000px;}
.ls1_c00283{letter-spacing:0.336960px;}
.ls0_c00283{letter-spacing:0.648000px;}
.ls2_c00283{letter-spacing:1.531200px;}
.ls6_c00283{letter-spacing:3.240000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{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__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00283{word-spacing:0.000000px;}
.ws0_c00283{word-spacing:2.203200px;}
.ws2_c00283{word-spacing:4.082400px;}
.ws1_c00283{word-spacing:5.611680px;}
._3_c00283{margin-left:-1.742400px;}
._2_c00283{width:3.032640px;}
._1_c00283{width:4.620240px;}
._0_c00283{width:268.907040px;}
.fc0_c00283{color:transparent;}
.fs0_c00283{font-size:64.200000px;}
.fs1_c00283{font-size:64.800000px;}
.fs2_c00283{font-size:66.000000px;}
.fs3_c00283{font-size:72.600000px;}
.fs4_c00283{font-size:194.400000px;}
.y0_c00283{bottom:0.000000px;}
.y4_c00283{bottom:147.954600px;}
.y3_c00283{bottom:152.280000px;}
.y2_c00283{bottom:171.360000px;}
.y7_c00283{bottom:766.455000px;}
.y6_c00283{bottom:1072.815000px;}
.y1_c00283{bottom:1085.775000px;}
.y5_c00283{bottom:1137.975000px;}
.h3_c00283{height:63.566016px;}
.h2_c00283{height:64.701562px;}
.h5_c00283{height:64.775391px;}
.h6_c00283{height:75.719531px;}
.h4_c00283{height:118.257216px;}
.h7_c00283{height:129.470400px;}
.h1_c00283{height:1263.000000px;}
.h0_c00283{height:1263.240000px;}
.w1_c00283{width:892.500000px;}
.w0_c00283{width:892.800000px;}
.x0_c00283{left:0.000000px;}
.x1_c00283{left:94.890000px;}
.x5_c00283{left:111.525000px;}
.x2_c00283{left:114.195000px;}
.x3_c00283{left:135.045000px;}
.x4_c00283{left:201.150000px;}
.x6_c00283{left:267.405000px;}
.x7_c00283{left:377.872800px;}
.xa_c00283{left:570.255000px;}
.x8_c00283{left:684.630000px;}
.x9_c00283{left:769.845000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.v1_c00283{vertical-align:48.614400pt;}
.lse_c00283{letter-spacing:-2.258667pt;}
.ls4_c00283{letter-spacing:-2.016000pt;}
.ls3_c00283{letter-spacing:-1.997333pt;}
.lsd_c00283{letter-spacing:-1.237867pt;}
.ls9_c00283{letter-spacing:-0.443520pt;}
.ls8_c00283{letter-spacing:-0.426240pt;}
.lsb_c00283{letter-spacing:-0.086400pt;}
.ls7_c00283{letter-spacing:-0.080640pt;}
.lsc_c00283{letter-spacing:-0.074880pt;}
.lsf_c00283{letter-spacing:0.000000pt;}
.lsa_c00283{letter-spacing:0.241920pt;}
.ls5_c00283{letter-spacing:0.288000pt;}
.ls1_c00283{letter-spacing:0.299520pt;}
.ls0_c00283{letter-spacing:0.576000pt;}
.ls2_c00283{letter-spacing:1.361067pt;}
.ls6_c00283{letter-spacing:2.880000pt;}
.ws3_c00283{word-spacing:0.000000pt;}
.ws0_c00283{word-spacing:1.958400pt;}
.ws2_c00283{word-spacing:3.628800pt;}
.ws1_c00283{word-spacing:4.988160pt;}
._3_c00283{margin-left:-1.548800pt;}
._2_c00283{width:2.695680pt;}
._1_c00283{width:4.106880pt;}
._0_c00283{width:239.028480pt;}
.fs0_c00283{font-size:57.066667pt;}
.fs1_c00283{font-size:57.600000pt;}
.fs2_c00283{font-size:58.666667pt;}
.fs3_c00283{font-size:64.533333pt;}
.fs4_c00283{font-size:172.800000pt;}
.y0_c00283{bottom:0.000000pt;}
.y4_c00283{bottom:131.515200pt;}
.y3_c00283{bottom:135.360000pt;}
.y2_c00283{bottom:152.320000pt;}
.y7_c00283{bottom:681.293333pt;}
.y6_c00283{bottom:953.613333pt;}
.y1_c00283{bottom:965.133333pt;}
.y5_c00283{bottom:1011.533333pt;}
.h3_c00283{height:56.503125pt;}
.h2_c00283{height:57.512500pt;}
.h5_c00283{height:57.578125pt;}
.h6_c00283{height:67.306250pt;}
.h4_c00283{height:105.117525pt;}
.h7_c00283{height:115.084800pt;}
.h1_c00283{height:1122.666667pt;}
.h0_c00283{height:1122.880000pt;}
.w1_c00283{width:793.333333pt;}
.w0_c00283{width:793.600000pt;}
.x0_c00283{left:0.000000pt;}
.x1_c00283{left:84.346667pt;}
.x5_c00283{left:99.133333pt;}
.x2_c00283{left:101.506667pt;}
.x3_c00283{left:120.040000pt;}
.x4_c00283{left:178.800000pt;}
.x6_c00283{left:237.693333pt;}
.x7_c00283{left:335.886933pt;}
.xa_c00283{left:506.893333pt;}
.x8_c00283{left:608.560000pt;}
.x9_c00283{left:684.306667pt;}
}





/* 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_c00284 {
    display:none;
  }
  .loading-indicator_c00284.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00284 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_c00284 { 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_c00284" -> "#page-container .classname_c00284")
 */
.pf_c00284 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00284 { /* 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_c00284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00284 { /* 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_c00284 { /* 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_c00284 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00284 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00284 {overflow:visible;}
  }
}
.c_c00284 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00284 { /* 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_c00284:after { /* webkit #35443 */
  content: '';
}
.t_c00284:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00284 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 */
}
.__c00284 { /* 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_c00284 { /* info for Javascript */
  display:none;
}
.l_c00284 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00284 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00284 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00284: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_c00284 {
    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_c00284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00284.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_c00284 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00284;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;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:ff2_c00284;src:url('chunks/assets/font_4e5e5dde42a1eb3bc6d5e60b.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.284668;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_c00284;src:url('chunks/assets/font_f75d4ddcca29c9a51d227e4d.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:0.666000;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_c00284;src:url('chunks/assets/font_93e4af592ed102648afddddf.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;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:ff5_c00284;src:url('chunks/assets/font_f783bcd447fd4bac6b3c751e.woff2')format("woff");}.ff5_c00284{font-family:ff5_c00284;line-height:1.284180;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_c00284{transform:matrix(0.117798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117798,0.000000,0.000000,0.250000,0,0);}
.m0_c00284{transform:matrix(0.120664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120664,0.000000,0.000000,0.250000,0,0);}
.m1_c00284{transform:matrix(0.139368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139368,0.000000,0.000000,0.250000,0,0);}
.m3_c00284{transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);}
.m2_c00284{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);}
.v0_c00284{vertical-align:0.000000px;}
.v1_c00284{vertical-align:69.139200px;}
.ls8_c00284{letter-spacing:-2.940000px;}
.ls9_c00284{letter-spacing:-2.541000px;}
.lsf_c00284{letter-spacing:-2.394000px;}
.lsb_c00284{letter-spacing:-0.441000px;}
.lsa_c00284{letter-spacing:0.000000px;}
.ls1_c00284{letter-spacing:0.199680px;}
.ls4_c00284{letter-spacing:0.792480px;}
.ls5_c00284{letter-spacing:0.998400px;}
.ls3_c00284{letter-spacing:1.216800px;}
.ls2_c00284{letter-spacing:1.410240px;}
.lsc_c00284{letter-spacing:1.422720px;}
.lsd_c00284{letter-spacing:1.441440px;}
.lse_c00284{letter-spacing:1.572480px;}
.ls0_c00284{letter-spacing:1.616160px;}
.ls6_c00284{letter-spacing:1.909440px;}
.ls7_c00284{letter-spacing:2.966040px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{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__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00284{word-spacing:0.000000px;}
.ws3_c00284{word-spacing:0.599040px;}
.ws2_c00284{word-spacing:2.258880px;}
.ws1_c00284{word-spacing:3.681600px;}
.ws0_c00284{word-spacing:3.978000px;}
._3_c00284{margin-left:-5.968080px;}
._2_c00284{width:1.185600px;}
._1_c00284{width:2.620800px;}
._0_c00284{width:521.451840px;}
.fc0_c00284{color:transparent;}
.fs2_c00284{font-size:52.800000px;}
.fs5_c00284{font-size:58.800000px;}
.fs4_c00284{font-size:61.200000px;}
.fs6_c00284{font-size:62.400000px;}
.fs7_c00284{font-size:64.200000px;}
.fs8_c00284{font-size:68.400000px;}
.fs1_c00284{font-size:72.600000px;}
.fs0_c00284{font-size:84.000000px;}
.fs3_c00284{font-size:86.400000px;}
.y0_c00284{bottom:0.000000px;}
.y8_c00284{bottom:168.496806px;}
.y7_c00284{bottom:169.557606px;}
.y6_c00284{bottom:187.560006px;}
.y5_c00284{bottom:870.840006px;}
.y4_c00284{bottom:885.615006px;}
.y3_c00284{bottom:908.640006px;}
.y2_c00284{bottom:918.000006px;}
.y1_c00284{bottom:1078.575006px;}
.ya_c00284{bottom:1080.360006px;}
.y9_c00284{bottom:1146.975006px;}
.h4_c00284{height:51.820313px;}
.h5_c00284{height:57.542400px;}
.h6_c00284{height:60.064453px;}
.h9_c00284{height:61.211719px;}
.h7_c00284{height:61.326563px;}
.ha_c00284{height:63.008789px;}
.hb_c00284{height:67.130859px;}
.h3_c00284{height:71.252930px;}
.h2_c00284{height:87.609375px;}
.h8_c00284{height:130.350919px;}
.h1_c00284{height:1263.000000px;}
.h0_c00284{height:1263.240006px;}
.w1_c00284{width:892.500000px;}
.w0_c00284{width:892.799998px;}
.x0_c00284{left:0.000000px;}
.x5_c00284{left:117.245399px;}
.x1_c00284{left:119.549999px;}
.x4_c00284{left:122.609999px;}
.x3_c00284{left:254.894999px;}
.x2_c00284{left:261.869999px;}
.x6_c00284{left:387.562199px;}
.x7_c00284{left:675.629999px;}
.x8_c00284{left:790.649998px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.v1_c00284{vertical-align:61.457067pt;}
.ls8_c00284{letter-spacing:-2.613333pt;}
.ls9_c00284{letter-spacing:-2.258667pt;}
.lsf_c00284{letter-spacing:-2.128000pt;}
.lsb_c00284{letter-spacing:-0.392000pt;}
.lsa_c00284{letter-spacing:0.000000pt;}
.ls1_c00284{letter-spacing:0.177493pt;}
.ls4_c00284{letter-spacing:0.704427pt;}
.ls5_c00284{letter-spacing:0.887467pt;}
.ls3_c00284{letter-spacing:1.081600pt;}
.ls2_c00284{letter-spacing:1.253547pt;}
.lsc_c00284{letter-spacing:1.264640pt;}
.lsd_c00284{letter-spacing:1.281280pt;}
.lse_c00284{letter-spacing:1.397760pt;}
.ls0_c00284{letter-spacing:1.436587pt;}
.ls6_c00284{letter-spacing:1.697280pt;}
.ls7_c00284{letter-spacing:2.636480pt;}
.ws4_c00284{word-spacing:0.000000pt;}
.ws3_c00284{word-spacing:0.532480pt;}
.ws2_c00284{word-spacing:2.007893pt;}
.ws1_c00284{word-spacing:3.272533pt;}
.ws0_c00284{word-spacing:3.536000pt;}
._3_c00284{margin-left:-5.304960pt;}
._2_c00284{width:1.053867pt;}
._1_c00284{width:2.329600pt;}
._0_c00284{width:463.512747pt;}
.fs2_c00284{font-size:46.933333pt;}
.fs5_c00284{font-size:52.266667pt;}
.fs4_c00284{font-size:54.400000pt;}
.fs6_c00284{font-size:55.466667pt;}
.fs7_c00284{font-size:57.066667pt;}
.fs8_c00284{font-size:60.800000pt;}
.fs1_c00284{font-size:64.533333pt;}
.fs0_c00284{font-size:74.666667pt;}
.fs3_c00284{font-size:76.800000pt;}
.y0_c00284{bottom:0.000000pt;}
.y8_c00284{bottom:149.774939pt;}
.y7_c00284{bottom:150.717872pt;}
.y6_c00284{bottom:166.720005pt;}
.y5_c00284{bottom:774.080005pt;}
.y4_c00284{bottom:787.213339pt;}
.y3_c00284{bottom:807.680005pt;}
.y2_c00284{bottom:816.000005pt;}
.y1_c00284{bottom:958.733339pt;}
.ya_c00284{bottom:960.320005pt;}
.y9_c00284{bottom:1019.533339pt;}
.h4_c00284{height:46.062500pt;}
.h5_c00284{height:51.148800pt;}
.h6_c00284{height:53.390625pt;}
.h9_c00284{height:54.410417pt;}
.h7_c00284{height:54.512500pt;}
.ha_c00284{height:56.007812pt;}
.hb_c00284{height:59.671875pt;}
.h3_c00284{height:63.335938pt;}
.h2_c00284{height:77.875000pt;}
.h8_c00284{height:115.867483pt;}
.h1_c00284{height:1122.666667pt;}
.h0_c00284{height:1122.880005pt;}
.w1_c00284{width:793.333333pt;}
.w0_c00284{width:793.599999pt;}
.x0_c00284{left:0.000000pt;}
.x5_c00284{left:104.218132pt;}
.x1_c00284{left:106.266665pt;}
.x4_c00284{left:108.986665pt;}
.x3_c00284{left:226.573332pt;}
.x2_c00284{left:232.773332pt;}
.x6_c00284{left:344.499732pt;}
.x7_c00284{left:600.559999pt;}
.x8_c00284{left:702.799999pt;}
}





/* 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_c00285 {
    display:none;
  }
  .loading-indicator_c00285.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00285 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_c00285 { 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_c00285" -> "#page-container .classname_c00285")
 */
.pf_c00285 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00285 { /* 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_c00285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00285 { /* 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_c00285 { /* 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_c00285 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00285 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00285 {overflow:visible;}
  }
}
.c_c00285 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00285 { /* 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_c00285:after { /* webkit #35443 */
  content: '';
}
.t_c00285:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00285 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 */
}
.__c00285 { /* 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_c00285 { /* info for Javascript */
  display:none;
}
.l_c00285 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00285 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00285 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00285: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_c00285 {
    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_c00285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00285.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_c00285 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00285;src:url('chunks/assets/font_323bc81ae75d83fa8c093573.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.284668;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_c00285;src:url('chunks/assets/font_1a3302a0b106a5b674e42236.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:0.666000;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_c00285;src:url('chunks/assets/font_242126ea53829a25cbbfa55c.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.284180;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_c00285;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff4_c00285{font-family:ff4_c00285;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;}
.m7_c00285{transform:matrix(0.120041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120041,0.000000,0.000000,0.250000,0,0);}
.mc_c00285{transform:matrix(0.152030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152030,0.000000,0.000000,0.250000,0,0);}
.m8_c00285{transform:matrix(0.226911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226911,0.000000,0.000000,0.250000,0,0);}
.md_c00285{transform:matrix(0.245308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245308,0.000000,0.000000,0.250000,0,0);}
.mb_c00285{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m2_c00285{transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);}
.m0_c00285{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.ma_c00285{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.me_c00285{transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{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);}
.m3_c00285{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.m9_c00285{transform:matrix(0.258585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258585,0.000000,0.000000,0.250000,0,0);}
.m5_c00285{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m4_c00285{transform:matrix(0.268186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268186,0.000000,0.000000,0.250000,0,0);}
.m6_c00285{transform:matrix(0.293199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293199,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls96_c00285{letter-spacing:-2.583000px;}
.ls79_c00285{letter-spacing:-2.487060px;}
.ls3d_c00285{letter-spacing:-2.457000px;}
.ls81_c00285{letter-spacing:-2.415000px;}
.ls7b_c00285{letter-spacing:-2.407860px;}
.ls28_c00285{letter-spacing:-2.352000px;}
.ls4a_c00285{letter-spacing:-2.309580px;}
.ls37_c00285{letter-spacing:-2.288520px;}
.ls60_c00285{letter-spacing:-2.204280px;}
.ls7a_c00285{letter-spacing:-2.066400px;}
.ls87_c00285{letter-spacing:-2.049840px;}
.ls95_c00285{letter-spacing:-2.029500px;}
.ls61_c00285{letter-spacing:-1.951560px;}
.ls2a_c00285{letter-spacing:-1.930500px;}
.ls6e_c00285{letter-spacing:-1.916460px;}
.ls66_c00285{letter-spacing:-1.670760px;}
.ls4f_c00285{letter-spacing:-1.635660px;}
.ls75_c00285{letter-spacing:-1.628640px;}
.ls8a_c00285{letter-spacing:-1.425060px;}
.ls47_c00285{letter-spacing:-1.382940px;}
.ls3c_c00285{letter-spacing:-1.333800px;}
.ls97_c00285{letter-spacing:-1.319760px;}
.ls74_c00285{letter-spacing:-1.270620px;}
.ls78_c00285{letter-spacing:-1.151280px;}
.ls94_c00285{letter-spacing:-1.130220px;}
.ls73_c00285{letter-spacing:-1.095120px;}
.ls52_c00285{letter-spacing:-1.038960px;}
.ls34_c00285{letter-spacing:-1.031940px;}
.ls8e_c00285{letter-spacing:-1.024920px;}
.ls83_c00285{letter-spacing:-1.017900px;}
.ls3a_c00285{letter-spacing:-0.947700px;}
.ls55_c00285{letter-spacing:-0.919620px;}
.ls4b_c00285{letter-spacing:-0.912600px;}
.ls77_c00285{letter-spacing:-0.905580px;}
.ls44_c00285{letter-spacing:-0.856440px;}
.ls51_c00285{letter-spacing:-0.849420px;}
.ls76_c00285{letter-spacing:-0.835380px;}
.ls89_c00285{letter-spacing:-0.821340px;}
.ls2c_c00285{letter-spacing:-0.814320px;}
.ls5d_c00285{letter-spacing:-0.793260px;}
.ls84_c00285{letter-spacing:-0.779220px;}
.ls2b_c00285{letter-spacing:-0.765180px;}
.ls72_c00285{letter-spacing:-0.744120px;}
.ls8f_c00285{letter-spacing:-0.723060px;}
.ls71_c00285{letter-spacing:-0.702000px;}
.ls59_c00285{letter-spacing:-0.659880px;}
.ls41_c00285{letter-spacing:-0.610740px;}
.ls7e_c00285{letter-spacing:-0.589680px;}
.ls42_c00285{letter-spacing:-0.575640px;}
.ls38_c00285{letter-spacing:-0.561600px;}
.ls68_c00285{letter-spacing:-0.547560px;}
.ls2d_c00285{letter-spacing:-0.540540px;}
.ls65_c00285{letter-spacing:-0.533520px;}
.ls46_c00285{letter-spacing:-0.526500px;}
.ls53_c00285{letter-spacing:-0.519480px;}
.ls43_c00285{letter-spacing:-0.512460px;}
.ls8b_c00285{letter-spacing:-0.505440px;}
.ls6b_c00285{letter-spacing:-0.498420px;}
.ls7d_c00285{letter-spacing:-0.484380px;}
.ls6a_c00285{letter-spacing:-0.470340px;}
.ls45_c00285{letter-spacing:-0.456300px;}
.ls32_c00285{letter-spacing:-0.442260px;}
.ls93_c00285{letter-spacing:-0.435240px;}
.ls2e_c00285{letter-spacing:-0.421200px;}
.ls91_c00285{letter-spacing:-0.414180px;}
.ls88_c00285{letter-spacing:-0.407160px;}
.ls82_c00285{letter-spacing:-0.400140px;}
.ls49_c00285{letter-spacing:-0.396480px;}
.ls86_c00285{letter-spacing:-0.393120px;}
.ls56_c00285{letter-spacing:-0.372060px;}
.ls36_c00285{letter-spacing:-0.358020px;}
.ls3b_c00285{letter-spacing:-0.351000px;}
.ls40_c00285{letter-spacing:-0.343980px;}
.ls57_c00285{letter-spacing:-0.336960px;}
.ls90_c00285{letter-spacing:-0.329940px;}
.ls8d_c00285{letter-spacing:-0.315900px;}
.ls85_c00285{letter-spacing:-0.308880px;}
.ls6f_c00285{letter-spacing:-0.301860px;}
.ls5a_c00285{letter-spacing:-0.294840px;}
.ls63_c00285{letter-spacing:-0.280800px;}
.ls4c_c00285{letter-spacing:-0.266760px;}
.ls54_c00285{letter-spacing:-0.238680px;}
.ls35_c00285{letter-spacing:-0.231660px;}
.ls29_c00285{letter-spacing:-0.224640px;}
.ls64_c00285{letter-spacing:-0.210600px;}
.ls3f_c00285{letter-spacing:-0.203580px;}
.ls4d_c00285{letter-spacing:-0.196560px;}
.ls39_c00285{letter-spacing:-0.182520px;}
.ls70_c00285{letter-spacing:-0.175500px;}
.ls31_c00285{letter-spacing:-0.168480px;}
.ls5c_c00285{letter-spacing:-0.161460px;}
.ls58_c00285{letter-spacing:-0.154440px;}
.ls6d_c00285{letter-spacing:-0.140400px;}
.ls5f_c00285{letter-spacing:-0.133380px;}
.ls3e_c00285{letter-spacing:-0.126360px;}
.ls7c_c00285{letter-spacing:-0.119340px;}
.ls5e_c00285{letter-spacing:-0.098280px;}
.ls30_c00285{letter-spacing:-0.091260px;}
.ls33_c00285{letter-spacing:-0.077220px;}
.ls7f_c00285{letter-spacing:-0.070200px;}
.ls69_c00285{letter-spacing:-0.063180px;}
.ls4e_c00285{letter-spacing:-0.056160px;}
.ls92_c00285{letter-spacing:-0.049140px;}
.ls6c_c00285{letter-spacing:-0.042120px;}
.ls62_c00285{letter-spacing:-0.021060px;}
.ls67_c00285{letter-spacing:-0.007020px;}
.ls2f_c00285{letter-spacing:0.000000px;}
.lsc_c00285{letter-spacing:0.007020px;}
.ls2_c00285{letter-spacing:0.014040px;}
.ls20_c00285{letter-spacing:0.021060px;}
.ls15_c00285{letter-spacing:0.035100px;}
.ls50_c00285{letter-spacing:0.042120px;}
.ls8_c00285{letter-spacing:0.049140px;}
.ls27_c00285{letter-spacing:0.063180px;}
.lsb_c00285{letter-spacing:0.070200px;}
.lsd_c00285{letter-spacing:0.091260px;}
.ls1f_c00285{letter-spacing:0.098280px;}
.ls25_c00285{letter-spacing:0.112320px;}
.ls24_c00285{letter-spacing:0.119340px;}
.ls8c_c00285{letter-spacing:0.126360px;}
.ls13_c00285{letter-spacing:0.133380px;}
.ls22_c00285{letter-spacing:0.140400px;}
.ls14_c00285{letter-spacing:0.147420px;}
.ls1d_c00285{letter-spacing:0.161460px;}
.ls1e_c00285{letter-spacing:0.175500px;}
.ls1_c00285{letter-spacing:0.224640px;}
.ls26_c00285{letter-spacing:0.231660px;}
.ls3_c00285{letter-spacing:0.245700px;}
.ls7_c00285{letter-spacing:0.259740px;}
.ls1b_c00285{letter-spacing:0.266760px;}
.ls98_c00285{letter-spacing:0.267900px;}
.ls17_c00285{letter-spacing:0.273780px;}
.ls9_c00285{letter-spacing:0.294840px;}
.ls10_c00285{letter-spacing:0.308880px;}
.ls1c_c00285{letter-spacing:0.315900px;}
.ls16_c00285{letter-spacing:0.343980px;}
.ls5_c00285{letter-spacing:0.372060px;}
.lsa_c00285{letter-spacing:0.421200px;}
.ls23_c00285{letter-spacing:0.456300px;}
.ls19_c00285{letter-spacing:0.491400px;}
.ls0_c00285{letter-spacing:0.512460px;}
.ls80_c00285{letter-spacing:0.547560px;}
.ls21_c00285{letter-spacing:0.603720px;}
.ls6_c00285{letter-spacing:1.045980px;}
.ls11_c00285{letter-spacing:1.214460px;}
.ls18_c00285{letter-spacing:1.425060px;}
.lsf_c00285{letter-spacing:1.769040px;}
.ls12_c00285{letter-spacing:1.818180px;}
.lse_c00285{letter-spacing:2.183220px;}
.ls4_c00285{letter-spacing:2.485080px;}
.ls1a_c00285{letter-spacing:2.815020px;}
.ls5b_c00285{letter-spacing:3.360000px;}
.ls48_c00285{letter-spacing:3.510000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{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__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00285{word-spacing:0.000000px;}
._1a_c00285{margin-left:-9.579240px;}
._9_c00285{margin-left:-5.356260px;}
._0_c00285{margin-left:-4.340880px;}
._e_c00285{margin-left:-2.899260px;}
._c_c00285{margin-left:-1.635660px;}
._d_c00285{width:1.193400px;}
._6_c00285{width:2.400840px;}
._8_c00285{width:3.496260px;}
._a_c00285{width:4.633200px;}
._7_c00285{width:6.121440px;}
._1_c00285{width:7.405800px;}
._b_c00285{width:8.508240px;}
._5_c00285{width:9.729720px;}
._f_c00285{width:11.203920px;}
._2_c00285{width:12.242880px;}
._3_c00285{width:14.264640px;}
._11_c00285{width:15.900300px;}
._4_c00285{width:18.041400px;}
._10_c00285{width:19.824480px;}
._1b_c00285{width:26.367120px;}
._18_c00285{width:28.767960px;}
._19_c00285{width:30.045600px;}
._15_c00285{width:31.484700px;}
._14_c00285{width:33.345000px;}
._13_c00285{width:35.451000px;}
._17_c00285{width:37.149840px;}
._12_c00285{width:38.722320px;}
._16_c00285{width:43.776720px;}
.fc0_c00285{color:transparent;}
.fs2_c00285{font-size:51.840000px;}
.fs5_c00285{font-size:53.280000px;}
.fs6_c00285{font-size:57.000000px;}
.fs0_c00285{font-size:67.200000px;}
.fs4_c00285{font-size:69.000000px;}
.fs1_c00285{font-size:70.200000px;}
.fs3_c00285{font-size:73.800000px;}
.y0_c00285{bottom:0.000000px;}
.y22_c00285{bottom:70.215000px;}
.y20_c00285{bottom:229.303350px;}
.y21_c00285{bottom:229.335000px;}
.y1f_c00285{bottom:290.868750px;}
.y1e_c00285{bottom:321.475950px;}
.y1d_c00285{bottom:352.083150px;}
.y1c_c00285{bottom:382.690350px;}
.y1a_c00285{bottom:413.279250px;}
.y1b_c00285{bottom:413.280000px;}
.y19_c00285{bottom:444.255000px;}
.y18_c00285{bottom:444.259350px;}
.y16_c00285{bottom:475.192050px;}
.y17_c00285{bottom:475.200000px;}
.y15_c00285{bottom:536.775000px;}
.y14_c00285{bottom:598.695000px;}
.y13_c00285{bottom:660.255000px;}
.y12_c00285{bottom:660.269700px;}
.y11_c00285{bottom:721.449000px;}
.y10_c00285{bottom:752.424750px;}
.yf_c00285{bottom:783.365400px;}
.ye_c00285{bottom:813.972600px;}
.yd_c00285{bottom:845.299350px;}
.yc_c00285{bottom:876.240000px;}
.yb_c00285{bottom:876.247800px;}
.ya_c00285{bottom:906.855000px;}
.y9_c00285{bottom:906.856800px;}
.y8_c00285{bottom:937.815000px;}
.y7_c00285{bottom:937.818900px;}
.y6_c00285{bottom:968.040000px;}
.y4_c00285{bottom:998.650950px;}
.y5_c00285{bottom:998.655000px;}
.y3_c00285{bottom:1029.240600px;}
.y2_c00285{bottom:1090.455000px;}
.y1_c00285{bottom:1192.335000px;}
.h4_c00285{height:34.525440px;}
.h7_c00285{height:35.484480px;}
.h9_c00285{height:55.942383px;}
.h2_c00285{height:65.953125px;}
.h3_c00285{height:68.897461px;}
.h6_c00285{height:71.964844px;}
.h5_c00285{height:72.394629px;}
.h8_c00285{height:72.521229px;}
.h1_c00285{height:1263.000000px;}
.h0_c00285{height:1263.240000px;}
.w1_c00285{width:892.500000px;}
.w0_c00285{width:892.800000px;}
.x0_c00285{left:0.000000px;}
.x1_c00285{left:122.685000px;}
.x6_c00285{left:123.767700px;}
.x2_c00285{left:176.591100px;}
.xd_c00285{left:249.600000px;}
.x7_c00285{left:273.390000px;}
.xe_c00285{left:290.415000px;}
.x8_c00285{left:302.610000px;}
.x9_c00285{left:324.090000px;}
.xa_c00285{left:352.950000px;}
.x1a_c00285{left:364.935000px;}
.x14_c00285{left:375.600000px;}
.xb_c00285{left:387.135000px;}
.x4_c00285{left:394.050000px;}
.x1b_c00285{left:406.125000px;}
.x5_c00285{left:412.395000px;}
.x1d_c00285{left:425.430000px;}
.xc_c00285{left:432.150000px;}
.x1c_c00285{left:450.840000px;}
.xf_c00285{left:474.495000px;}
.x18_c00285{left:489.360000px;}
.x16_c00285{left:492.495000px;}
.x19_c00285{left:518.205000px;}
.x10_c00285{left:522.915000px;}
.x17_c00285{left:564.870000px;}
.x11_c00285{left:625.860000px;}
.x12_c00285{left:641.685000px;}
.x15_c00285{left:645.285000px;}
.x13_c00285{left:656.250000px;}
.x3_c00285{left:739.290000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls96_c00285{letter-spacing:-2.296000pt;}
.ls79_c00285{letter-spacing:-2.210720pt;}
.ls3d_c00285{letter-spacing:-2.184000pt;}
.ls81_c00285{letter-spacing:-2.146667pt;}
.ls7b_c00285{letter-spacing:-2.140320pt;}
.ls28_c00285{letter-spacing:-2.090667pt;}
.ls4a_c00285{letter-spacing:-2.052960pt;}
.ls37_c00285{letter-spacing:-2.034240pt;}
.ls60_c00285{letter-spacing:-1.959360pt;}
.ls7a_c00285{letter-spacing:-1.836800pt;}
.ls87_c00285{letter-spacing:-1.822080pt;}
.ls95_c00285{letter-spacing:-1.804000pt;}
.ls61_c00285{letter-spacing:-1.734720pt;}
.ls2a_c00285{letter-spacing:-1.716000pt;}
.ls6e_c00285{letter-spacing:-1.703520pt;}
.ls66_c00285{letter-spacing:-1.485120pt;}
.ls4f_c00285{letter-spacing:-1.453920pt;}
.ls75_c00285{letter-spacing:-1.447680pt;}
.ls8a_c00285{letter-spacing:-1.266720pt;}
.ls47_c00285{letter-spacing:-1.229280pt;}
.ls3c_c00285{letter-spacing:-1.185600pt;}
.ls97_c00285{letter-spacing:-1.173120pt;}
.ls74_c00285{letter-spacing:-1.129440pt;}
.ls78_c00285{letter-spacing:-1.023360pt;}
.ls94_c00285{letter-spacing:-1.004640pt;}
.ls73_c00285{letter-spacing:-0.973440pt;}
.ls52_c00285{letter-spacing:-0.923520pt;}
.ls34_c00285{letter-spacing:-0.917280pt;}
.ls8e_c00285{letter-spacing:-0.911040pt;}
.ls83_c00285{letter-spacing:-0.904800pt;}
.ls3a_c00285{letter-spacing:-0.842400pt;}
.ls55_c00285{letter-spacing:-0.817440pt;}
.ls4b_c00285{letter-spacing:-0.811200pt;}
.ls77_c00285{letter-spacing:-0.804960pt;}
.ls44_c00285{letter-spacing:-0.761280pt;}
.ls51_c00285{letter-spacing:-0.755040pt;}
.ls76_c00285{letter-spacing:-0.742560pt;}
.ls89_c00285{letter-spacing:-0.730080pt;}
.ls2c_c00285{letter-spacing:-0.723840pt;}
.ls5d_c00285{letter-spacing:-0.705120pt;}
.ls84_c00285{letter-spacing:-0.692640pt;}
.ls2b_c00285{letter-spacing:-0.680160pt;}
.ls72_c00285{letter-spacing:-0.661440pt;}
.ls8f_c00285{letter-spacing:-0.642720pt;}
.ls71_c00285{letter-spacing:-0.624000pt;}
.ls59_c00285{letter-spacing:-0.586560pt;}
.ls41_c00285{letter-spacing:-0.542880pt;}
.ls7e_c00285{letter-spacing:-0.524160pt;}
.ls42_c00285{letter-spacing:-0.511680pt;}
.ls38_c00285{letter-spacing:-0.499200pt;}
.ls68_c00285{letter-spacing:-0.486720pt;}
.ls2d_c00285{letter-spacing:-0.480480pt;}
.ls65_c00285{letter-spacing:-0.474240pt;}
.ls46_c00285{letter-spacing:-0.468000pt;}
.ls53_c00285{letter-spacing:-0.461760pt;}
.ls43_c00285{letter-spacing:-0.455520pt;}
.ls8b_c00285{letter-spacing:-0.449280pt;}
.ls6b_c00285{letter-spacing:-0.443040pt;}
.ls7d_c00285{letter-spacing:-0.430560pt;}
.ls6a_c00285{letter-spacing:-0.418080pt;}
.ls45_c00285{letter-spacing:-0.405600pt;}
.ls32_c00285{letter-spacing:-0.393120pt;}
.ls93_c00285{letter-spacing:-0.386880pt;}
.ls2e_c00285{letter-spacing:-0.374400pt;}
.ls91_c00285{letter-spacing:-0.368160pt;}
.ls88_c00285{letter-spacing:-0.361920pt;}
.ls82_c00285{letter-spacing:-0.355680pt;}
.ls49_c00285{letter-spacing:-0.352427pt;}
.ls86_c00285{letter-spacing:-0.349440pt;}
.ls56_c00285{letter-spacing:-0.330720pt;}
.ls36_c00285{letter-spacing:-0.318240pt;}
.ls3b_c00285{letter-spacing:-0.312000pt;}
.ls40_c00285{letter-spacing:-0.305760pt;}
.ls57_c00285{letter-spacing:-0.299520pt;}
.ls90_c00285{letter-spacing:-0.293280pt;}
.ls8d_c00285{letter-spacing:-0.280800pt;}
.ls85_c00285{letter-spacing:-0.274560pt;}
.ls6f_c00285{letter-spacing:-0.268320pt;}
.ls5a_c00285{letter-spacing:-0.262080pt;}
.ls63_c00285{letter-spacing:-0.249600pt;}
.ls4c_c00285{letter-spacing:-0.237120pt;}
.ls54_c00285{letter-spacing:-0.212160pt;}
.ls35_c00285{letter-spacing:-0.205920pt;}
.ls29_c00285{letter-spacing:-0.199680pt;}
.ls64_c00285{letter-spacing:-0.187200pt;}
.ls3f_c00285{letter-spacing:-0.180960pt;}
.ls4d_c00285{letter-spacing:-0.174720pt;}
.ls39_c00285{letter-spacing:-0.162240pt;}
.ls70_c00285{letter-spacing:-0.156000pt;}
.ls31_c00285{letter-spacing:-0.149760pt;}
.ls5c_c00285{letter-spacing:-0.143520pt;}
.ls58_c00285{letter-spacing:-0.137280pt;}
.ls6d_c00285{letter-spacing:-0.124800pt;}
.ls5f_c00285{letter-spacing:-0.118560pt;}
.ls3e_c00285{letter-spacing:-0.112320pt;}
.ls7c_c00285{letter-spacing:-0.106080pt;}
.ls5e_c00285{letter-spacing:-0.087360pt;}
.ls30_c00285{letter-spacing:-0.081120pt;}
.ls33_c00285{letter-spacing:-0.068640pt;}
.ls7f_c00285{letter-spacing:-0.062400pt;}
.ls69_c00285{letter-spacing:-0.056160pt;}
.ls4e_c00285{letter-spacing:-0.049920pt;}
.ls92_c00285{letter-spacing:-0.043680pt;}
.ls6c_c00285{letter-spacing:-0.037440pt;}
.ls62_c00285{letter-spacing:-0.018720pt;}
.ls67_c00285{letter-spacing:-0.006240pt;}
.ls2f_c00285{letter-spacing:0.000000pt;}
.lsc_c00285{letter-spacing:0.006240pt;}
.ls2_c00285{letter-spacing:0.012480pt;}
.ls20_c00285{letter-spacing:0.018720pt;}
.ls15_c00285{letter-spacing:0.031200pt;}
.ls50_c00285{letter-spacing:0.037440pt;}
.ls8_c00285{letter-spacing:0.043680pt;}
.ls27_c00285{letter-spacing:0.056160pt;}
.lsb_c00285{letter-spacing:0.062400pt;}
.lsd_c00285{letter-spacing:0.081120pt;}
.ls1f_c00285{letter-spacing:0.087360pt;}
.ls25_c00285{letter-spacing:0.099840pt;}
.ls24_c00285{letter-spacing:0.106080pt;}
.ls8c_c00285{letter-spacing:0.112320pt;}
.ls13_c00285{letter-spacing:0.118560pt;}
.ls22_c00285{letter-spacing:0.124800pt;}
.ls14_c00285{letter-spacing:0.131040pt;}
.ls1d_c00285{letter-spacing:0.143520pt;}
.ls1e_c00285{letter-spacing:0.156000pt;}
.ls1_c00285{letter-spacing:0.199680pt;}
.ls26_c00285{letter-spacing:0.205920pt;}
.ls3_c00285{letter-spacing:0.218400pt;}
.ls7_c00285{letter-spacing:0.230880pt;}
.ls1b_c00285{letter-spacing:0.237120pt;}
.ls98_c00285{letter-spacing:0.238133pt;}
.ls17_c00285{letter-spacing:0.243360pt;}
.ls9_c00285{letter-spacing:0.262080pt;}
.ls10_c00285{letter-spacing:0.274560pt;}
.ls1c_c00285{letter-spacing:0.280800pt;}
.ls16_c00285{letter-spacing:0.305760pt;}
.ls5_c00285{letter-spacing:0.330720pt;}
.lsa_c00285{letter-spacing:0.374400pt;}
.ls23_c00285{letter-spacing:0.405600pt;}
.ls19_c00285{letter-spacing:0.436800pt;}
.ls0_c00285{letter-spacing:0.455520pt;}
.ls80_c00285{letter-spacing:0.486720pt;}
.ls21_c00285{letter-spacing:0.536640pt;}
.ls6_c00285{letter-spacing:0.929760pt;}
.ls11_c00285{letter-spacing:1.079520pt;}
.ls18_c00285{letter-spacing:1.266720pt;}
.lsf_c00285{letter-spacing:1.572480pt;}
.ls12_c00285{letter-spacing:1.616160pt;}
.lse_c00285{letter-spacing:1.940640pt;}
.ls4_c00285{letter-spacing:2.208960pt;}
.ls1a_c00285{letter-spacing:2.502240pt;}
.ls5b_c00285{letter-spacing:2.986667pt;}
.ls48_c00285{letter-spacing:3.120000pt;}
.ws0_c00285{word-spacing:0.000000pt;}
._1a_c00285{margin-left:-8.514880pt;}
._9_c00285{margin-left:-4.761120pt;}
._0_c00285{margin-left:-3.858560pt;}
._e_c00285{margin-left:-2.577120pt;}
._c_c00285{margin-left:-1.453920pt;}
._d_c00285{width:1.060800pt;}
._6_c00285{width:2.134080pt;}
._8_c00285{width:3.107787pt;}
._a_c00285{width:4.118400pt;}
._7_c00285{width:5.441280pt;}
._1_c00285{width:6.582933pt;}
._b_c00285{width:7.562880pt;}
._5_c00285{width:8.648640pt;}
._f_c00285{width:9.959040pt;}
._2_c00285{width:10.882560pt;}
._3_c00285{width:12.679680pt;}
._11_c00285{width:14.133600pt;}
._4_c00285{width:16.036800pt;}
._10_c00285{width:17.621760pt;}
._1b_c00285{width:23.437440pt;}
._18_c00285{width:25.571520pt;}
._19_c00285{width:26.707200pt;}
._15_c00285{width:27.986400pt;}
._14_c00285{width:29.640000pt;}
._13_c00285{width:31.512000pt;}
._17_c00285{width:33.022080pt;}
._12_c00285{width:34.419840pt;}
._16_c00285{width:38.912640pt;}
.fs2_c00285{font-size:46.080000pt;}
.fs5_c00285{font-size:47.360000pt;}
.fs6_c00285{font-size:50.666667pt;}
.fs0_c00285{font-size:59.733333pt;}
.fs4_c00285{font-size:61.333333pt;}
.fs1_c00285{font-size:62.400000pt;}
.fs3_c00285{font-size:65.600000pt;}
.y0_c00285{bottom:0.000000pt;}
.y22_c00285{bottom:62.413333pt;}
.y20_c00285{bottom:203.825200pt;}
.y21_c00285{bottom:203.853333pt;}
.y1f_c00285{bottom:258.550000pt;}
.y1e_c00285{bottom:285.756400pt;}
.y1d_c00285{bottom:312.962800pt;}
.y1c_c00285{bottom:340.169200pt;}
.y1a_c00285{bottom:367.359333pt;}
.y1b_c00285{bottom:367.360000pt;}
.y19_c00285{bottom:394.893333pt;}
.y18_c00285{bottom:394.897200pt;}
.y16_c00285{bottom:422.392933pt;}
.y17_c00285{bottom:422.400000pt;}
.y15_c00285{bottom:477.133333pt;}
.y14_c00285{bottom:532.173333pt;}
.y13_c00285{bottom:586.893333pt;}
.y12_c00285{bottom:586.906400pt;}
.y11_c00285{bottom:641.288000pt;}
.y10_c00285{bottom:668.822000pt;}
.yf_c00285{bottom:696.324800pt;}
.ye_c00285{bottom:723.531200pt;}
.yd_c00285{bottom:751.377200pt;}
.yc_c00285{bottom:778.880000pt;}
.yb_c00285{bottom:778.886933pt;}
.ya_c00285{bottom:806.093333pt;}
.y9_c00285{bottom:806.094933pt;}
.y8_c00285{bottom:833.613333pt;}
.y7_c00285{bottom:833.616800pt;}
.y6_c00285{bottom:860.480000pt;}
.y4_c00285{bottom:887.689733pt;}
.y5_c00285{bottom:887.693333pt;}
.y3_c00285{bottom:914.880533pt;}
.y2_c00285{bottom:969.293333pt;}
.y1_c00285{bottom:1059.853333pt;}
.h4_c00285{height:30.689280pt;}
.h7_c00285{height:31.541760pt;}
.h9_c00285{height:49.726562pt;}
.h2_c00285{height:58.625000pt;}
.h3_c00285{height:61.242187pt;}
.h6_c00285{height:63.968750pt;}
.h5_c00285{height:64.350781pt;}
.h8_c00285{height:64.463315pt;}
.h1_c00285{height:1122.666667pt;}
.h0_c00285{height:1122.880000pt;}
.w1_c00285{width:793.333333pt;}
.w0_c00285{width:793.600000pt;}
.x0_c00285{left:0.000000pt;}
.x1_c00285{left:109.053333pt;}
.x6_c00285{left:110.015733pt;}
.x2_c00285{left:156.969867pt;}
.xd_c00285{left:221.866667pt;}
.x7_c00285{left:243.013333pt;}
.xe_c00285{left:258.146667pt;}
.x8_c00285{left:268.986667pt;}
.x9_c00285{left:288.080000pt;}
.xa_c00285{left:313.733333pt;}
.x1a_c00285{left:324.386667pt;}
.x14_c00285{left:333.866667pt;}
.xb_c00285{left:344.120000pt;}
.x4_c00285{left:350.266667pt;}
.x1b_c00285{left:361.000000pt;}
.x5_c00285{left:366.573333pt;}
.x1d_c00285{left:378.160000pt;}
.xc_c00285{left:384.133333pt;}
.x1c_c00285{left:400.746667pt;}
.xf_c00285{left:421.773333pt;}
.x18_c00285{left:434.986667pt;}
.x16_c00285{left:437.773333pt;}
.x19_c00285{left:460.626667pt;}
.x10_c00285{left:464.813333pt;}
.x17_c00285{left:502.106667pt;}
.x11_c00285{left:556.320000pt;}
.x12_c00285{left:570.386667pt;}
.x15_c00285{left:573.586667pt;}
.x13_c00285{left:583.333333pt;}
.x3_c00285{left:657.146667pt;}
}





/* 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_c00286 {
    display:none;
  }
  .loading-indicator_c00286.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00286 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_c00286 { 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_c00286" -> "#page-container .classname_c00286")
 */
.pf_c00286 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00286 { /* 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_c00286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00286 { /* 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_c00286 { /* 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_c00286 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00286 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00286 {overflow:visible;}
  }
}
.c_c00286 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00286 { /* 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_c00286:after { /* webkit #35443 */
  content: '';
}
.t_c00286:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00286 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 */
}
.__c00286 { /* 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_c00286 { /* info for Javascript */
  display:none;
}
.l_c00286 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00286 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00286 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00286: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_c00286 {
    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_c00286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00286.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_c00286 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00286;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.311035;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_c00286;src:url('chunks/assets/font_d9ef20aad46dd4172fbbc3df.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.284180;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_c00286;src:url('chunks/assets/font_98d62d3771efaf7bda6a2d5a.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:0.666000;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_c00286;src:url('chunks/assets/font_ecff4258497758c16a6108d0.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.284668;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_c00286;src:url('chunks/assets/font_7740c6f8ef3198e39f30fc96.woff2')format("woff");}.ff5_c00286{font-family:ff5_c00286;line-height:1.284180;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_c00286;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff6_c00286{font-family:ff6_c00286;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;}
.m2_c00286{transform:matrix(0.143056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143056,0.000000,0.000000,0.250000,0,0);}
.md_c00286{transform:matrix(0.178647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178647,0.000000,0.000000,0.250000,0,0);}
.mc_c00286{transform:matrix(0.179660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179660,0.000000,0.000000,0.250000,0,0);}
.m4_c00286{transform:matrix(0.213580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213580,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{transform:matrix(0.233067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233067,0.000000,0.000000,0.250000,0,0);}
.m0_c00286{transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);}
.me_c00286{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m6_c00286{transform:matrix(0.241978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241978,0.000000,0.000000,0.250000,0,0);}
.m7_c00286{transform:matrix(0.243444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243444,0.000000,0.000000,0.250000,0,0);}
.m5_c00286{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{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);}
.mb_c00286{transform:matrix(0.268659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268659,0.000000,0.000000,0.250000,0,0);}
.ma_c00286{transform:matrix(0.276407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276407,0.000000,0.000000,0.250000,0,0);}
.m8_c00286{transform:matrix(0.284554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284554,0.000000,0.000000,0.250000,0,0);}
.m9_c00286{transform:matrix(0.302933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302933,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls70_c00286{letter-spacing:-2.436000px;}
.ls9b_c00286{letter-spacing:-2.394000px;}
.lsb2_c00286{letter-spacing:-2.373000px;}
.ls69_c00286{letter-spacing:-2.331000px;}
.ls6f_c00286{letter-spacing:-2.234160px;}
.ls99_c00286{letter-spacing:-2.199360px;}
.ls96_c00286{letter-spacing:-2.060160px;}
.ls6d_c00286{letter-spacing:-2.025360px;}
.lsa1_c00286{letter-spacing:-1.872240px;}
.ls8e_c00286{letter-spacing:-1.809600px;}
.ls7c_c00286{letter-spacing:-1.774800px;}
.ls74_c00286{letter-spacing:-1.760880px;}
.ls90_c00286{letter-spacing:-1.649520px;}
.lsa2_c00286{letter-spacing:-1.531200px;}
.ls83_c00286{letter-spacing:-1.475520px;}
.ls91_c00286{letter-spacing:-1.343280px;}
.ls72_c00286{letter-spacing:-1.315440px;}
.ls77_c00286{letter-spacing:-1.294560px;}
.ls73_c00286{letter-spacing:-1.266720px;}
.ls9e_c00286{letter-spacing:-1.169280px;}
.ls79_c00286{letter-spacing:-1.134480px;}
.lsa8_c00286{letter-spacing:-1.120980px;}
.ls7f_c00286{letter-spacing:-1.113600px;}
.ls75_c00286{letter-spacing:-1.106640px;}
.lsab_c00286{letter-spacing:-1.063860px;}
.lsad_c00286{letter-spacing:-0.956760px;}
.lsa5_c00286{letter-spacing:-0.949620px;}
.lsa6_c00286{letter-spacing:-0.835380px;}
.ls7e_c00286{letter-spacing:-0.828240px;}
.ls9d_c00286{letter-spacing:-0.689040px;}
.lsac_c00286{letter-spacing:-0.678300px;}
.lsaa_c00286{letter-spacing:-0.671160px;}
.ls7b_c00286{letter-spacing:-0.668160px;}
.lsb1_c00286{letter-spacing:-0.654240px;}
.ls94_c00286{letter-spacing:-0.619440px;}
.ls71_c00286{letter-spacing:-0.549840px;}
.ls98_c00286{letter-spacing:-0.501120px;}
.ls6c_c00286{letter-spacing:-0.473280px;}
.ls6e_c00286{letter-spacing:-0.452400px;}
.lsa4_c00286{letter-spacing:-0.449820px;}
.ls92_c00286{letter-spacing:-0.445440px;}
.ls86_c00286{letter-spacing:-0.382800px;}
.lsb0_c00286{letter-spacing:-0.375840px;}
.ls78_c00286{letter-spacing:-0.361920px;}
.lsa0_c00286{letter-spacing:-0.354960px;}
.lsae_c00286{letter-spacing:-0.299280px;}
.ls80_c00286{letter-spacing:-0.278400px;}
.ls88_c00286{letter-spacing:-0.271440px;}
.ls7a_c00286{letter-spacing:-0.243600px;}
.ls82_c00286{letter-spacing:-0.208800px;}
.ls7d_c00286{letter-spacing:-0.187920px;}
.ls84_c00286{letter-spacing:-0.180960px;}
.lsa3_c00286{letter-spacing:-0.149940px;}
.ls9f_c00286{letter-spacing:-0.139200px;}
.ls97_c00286{letter-spacing:-0.118320px;}
.lsa7_c00286{letter-spacing:-0.114240px;}
.ls93_c00286{letter-spacing:-0.111360px;}
.ls81_c00286{letter-spacing:-0.097440px;}
.ls87_c00286{letter-spacing:-0.090480px;}
.ls8d_c00286{letter-spacing:-0.069600px;}
.lsa9_c00286{letter-spacing:-0.057120px;}
.ls9c_c00286{letter-spacing:-0.048720px;}
.ls8b_c00286{letter-spacing:-0.034800px;}
.lsaf_c00286{letter-spacing:-0.027840px;}
.ls8f_c00286{letter-spacing:-0.013920px;}
.ls76_c00286{letter-spacing:-0.006960px;}
.ls6b_c00286{letter-spacing:0.000000px;}
.ls1e_c00286{letter-spacing:0.006960px;}
.ls38_c00286{letter-spacing:0.013920px;}
.ls2a_c00286{letter-spacing:0.020880px;}
.ls0_c00286{letter-spacing:0.027840px;}
.ls47_c00286{letter-spacing:0.041760px;}
.ls46_c00286{letter-spacing:0.048720px;}
.ls5d_c00286{letter-spacing:0.069600px;}
.ls5a_c00286{letter-spacing:0.076560px;}
.ls9a_c00286{letter-spacing:0.083520px;}
.lsd_c00286{letter-spacing:0.090480px;}
.ls2d_c00286{letter-spacing:0.125280px;}
.ls3d_c00286{letter-spacing:0.132240px;}
.lsf_c00286{letter-spacing:0.153120px;}
.lsb4_c00286{letter-spacing:0.160080px;}
.ls23_c00286{letter-spacing:0.167040px;}
.ls13_c00286{letter-spacing:0.174000px;}
.ls1c_c00286{letter-spacing:0.201840px;}
.ls24_c00286{letter-spacing:0.208800px;}
.ls5c_c00286{letter-spacing:0.215760px;}
.ls1a_c00286{letter-spacing:0.222720px;}
.ls40_c00286{letter-spacing:0.250560px;}
.ls60_c00286{letter-spacing:0.257520px;}
.ls53_c00286{letter-spacing:0.264480px;}
.ls11_c00286{letter-spacing:0.271440px;}
.ls12_c00286{letter-spacing:0.278400px;}
.ls62_c00286{letter-spacing:0.285360px;}
.ls3_c00286{letter-spacing:0.292320px;}
.lse_c00286{letter-spacing:0.313200px;}
.ls4b_c00286{letter-spacing:0.320160px;}
.ls27_c00286{letter-spacing:0.327120px;}
.ls10_c00286{letter-spacing:0.334080px;}
.ls4d_c00286{letter-spacing:0.348000px;}
.ls3c_c00286{letter-spacing:0.361920px;}
.lsc_c00286{letter-spacing:0.396720px;}
.ls49_c00286{letter-spacing:0.417600px;}
.ls1b_c00286{letter-spacing:0.424560px;}
.ls2c_c00286{letter-spacing:0.431520px;}
.ls95_c00286{letter-spacing:0.438480px;}
.lsb3_c00286{letter-spacing:0.445440px;}
.ls41_c00286{letter-spacing:0.452400px;}
.ls50_c00286{letter-spacing:0.459360px;}
.ls26_c00286{letter-spacing:0.466320px;}
.ls51_c00286{letter-spacing:0.473280px;}
.ls58_c00286{letter-spacing:0.480240px;}
.ls4f_c00286{letter-spacing:0.487200px;}
.ls45_c00286{letter-spacing:0.494160px;}
.ls20_c00286{letter-spacing:0.508080px;}
.ls5_c00286{letter-spacing:0.528960px;}
.ls21_c00286{letter-spacing:0.535920px;}
.lsb_c00286{letter-spacing:0.542880px;}
.lsb5_c00286{letter-spacing:0.547200px;}
.ls18_c00286{letter-spacing:0.549840px;}
.lsa_c00286{letter-spacing:0.563760px;}
.ls15_c00286{letter-spacing:0.570720px;}
.ls44_c00286{letter-spacing:0.577680px;}
.ls25_c00286{letter-spacing:0.584640px;}
.ls4_c00286{letter-spacing:0.591600px;}
.ls66_c00286{letter-spacing:0.598560px;}
.ls64_c00286{letter-spacing:0.605520px;}
.ls54_c00286{letter-spacing:0.610200px;}
.ls4c_c00286{letter-spacing:0.612480px;}
.ls1_c00286{letter-spacing:0.619440px;}
.ls34_c00286{letter-spacing:0.626400px;}
.ls3b_c00286{letter-spacing:0.633360px;}
.ls4a_c00286{letter-spacing:0.640320px;}
.ls6_c00286{letter-spacing:0.675120px;}
.ls57_c00286{letter-spacing:0.682080px;}
.ls31_c00286{letter-spacing:0.689040px;}
.ls61_c00286{letter-spacing:0.702960px;}
.ls33_c00286{letter-spacing:0.709920px;}
.ls55_c00286{letter-spacing:0.716880px;}
.ls22_c00286{letter-spacing:0.723840px;}
.ls3f_c00286{letter-spacing:0.751680px;}
.ls29_c00286{letter-spacing:0.758640px;}
.ls1d_c00286{letter-spacing:0.765600px;}
.ls39_c00286{letter-spacing:0.772560px;}
.ls4e_c00286{letter-spacing:0.779520px;}
.ls63_c00286{letter-spacing:0.800400px;}
.ls30_c00286{letter-spacing:0.814320px;}
.ls5e_c00286{letter-spacing:0.835200px;}
.ls37_c00286{letter-spacing:0.883920px;}
.ls2e_c00286{letter-spacing:0.925680px;}
.ls32_c00286{letter-spacing:0.932640px;}
.ls48_c00286{letter-spacing:0.953520px;}
.ls8_c00286{letter-spacing:0.962760px;}
.ls8c_c00286{letter-spacing:0.967440px;}
.ls16_c00286{letter-spacing:1.016160px;}
.ls52_c00286{letter-spacing:1.037040px;}
.ls35_c00286{letter-spacing:1.044000px;}
.ls59_c00286{letter-spacing:1.057920px;}
.ls1f_c00286{letter-spacing:1.092720px;}
.ls56_c00286{letter-spacing:1.118700px;}
.ls89_c00286{letter-spacing:1.183200px;}
.ls2b_c00286{letter-spacing:1.315440px;}
.ls43_c00286{letter-spacing:1.329360px;}
.ls36_c00286{letter-spacing:1.350240px;}
.ls65_c00286{letter-spacing:1.389900px;}
.ls3e_c00286{letter-spacing:1.398960px;}
.ls3a_c00286{letter-spacing:1.454640px;}
.ls85_c00286{letter-spacing:1.475520px;}
.ls9_c00286{letter-spacing:1.498380px;}
.ls28_c00286{letter-spacing:1.600800px;}
.ls67_c00286{letter-spacing:1.607760px;}
.ls6a_c00286{letter-spacing:1.614240px;}
.ls2f_c00286{letter-spacing:1.642560px;}
.ls17_c00286{letter-spacing:1.677360px;}
.ls5b_c00286{letter-spacing:1.705200px;}
.ls7_c00286{letter-spacing:1.789920px;}
.ls19_c00286{letter-spacing:1.983600px;}
.ls68_c00286{letter-spacing:2.268960px;}
.ls42_c00286{letter-spacing:2.366400px;}
.ls14_c00286{letter-spacing:2.442960px;}
.ls2_c00286{letter-spacing:2.818800px;}
.ls5f_c00286{letter-spacing:2.839680px;}
.ls8a_c00286{letter-spacing:3.480000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{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__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00286{word-spacing:0.000000px;}
.ws1_c00286{word-spacing:0.892200px;}
.ws3_c00286{word-spacing:4.737300px;}
.ws2_c00286{word-spacing:7.678800px;}
.ws0_c00286{word-spacing:16.418880px;}
._15_c00286{margin-left:-7.534080px;}
._13_c00286{margin-left:-4.123920px;}
._4_c00286{margin-left:-3.006720px;}
._12_c00286{margin-left:-1.489440px;}
._9_c00286{width:1.555680px;}
._2_c00286{width:2.575200px;}
._3_c00286{width:3.904560px;}
._1_c00286{width:5.498400px;}
._5_c00286{width:6.598080px;}
._0_c00286{width:8.602560px;}
._7_c00286{width:9.709200px;}
._17_c00286{width:10.918260px;}
._6_c00286{width:11.936400px;}
._8_c00286{width:13.150800px;}
._14_c00286{width:14.633280px;}
._a_c00286{width:16.397760px;}
._16_c00286{width:18.190320px;}
._c_c00286{width:20.392800px;}
._b_c00286{width:22.244160px;}
._11_c00286{width:28.306320px;}
._f_c00286{width:31.890720px;}
._d_c00286{width:33.964800px;}
._e_c00286{width:37.096800px;}
._10_c00286{width:38.454000px;}
.fc0_c00286{color:transparent;}
.fs2_c00286{font-size:51.840000px;}
.fs7_c00286{font-size:57.600000px;}
.fs0_c00286{font-size:66.600000px;}
.fs4_c00286{font-size:67.800000px;}
.fs1_c00286{font-size:68.400000px;}
.fs3_c00286{font-size:69.600000px;}
.fs5_c00286{font-size:71.400000px;}
.fs6_c00286{font-size:73.800000px;}
.y0_c00286{bottom:0.000000px;}
.y20_c00286{bottom:70.575000px;}
.y1f_c00286{bottom:160.217400px;}
.y1e_c00286{bottom:191.520000px;}
.y1d_c00286{bottom:252.735000px;}
.y1c_c00286{bottom:283.695000px;}
.y1b_c00286{bottom:314.648400px;}
.y1a_c00286{bottom:345.260400px;}
.y19_c00286{bottom:376.215000px;}
.y18_c00286{bottom:438.495000px;}
.y17_c00286{bottom:501.865800px;}
.y16_c00286{bottom:532.820400px;}
.y15_c00286{bottom:563.775000px;}
.y14_c00286{bottom:594.735000px;}
.y13_c00286{bottom:594.755400px;}
.y12_c00286{bottom:625.362000px;}
.y11_c00286{bottom:656.299200px;}
.y10_c00286{bottom:686.905800px;}
.yf_c00286{bottom:717.860400px;}
.ye_c00286{bottom:748.815000px;}
.yd_c00286{bottom:748.836600px;}
.yc_c00286{bottom:779.791200px;}
.yb_c00286{bottom:810.728400px;}
.ya_c00286{bottom:841.700400px;}
.y9_c00286{bottom:872.655000px;}
.y8_c00286{bottom:934.200000px;}
.y7_c00286{bottom:995.775000px;}
.y6_c00286{bottom:995.776200px;}
.y5_c00286{bottom:1026.000000px;}
.y3_c00286{bottom:1087.930800px;}
.y4_c00286{bottom:1087.935000px;}
.y2_c00286{bottom:1118.520000px;}
.y1_c00286{bottom:1195.935000px;}
.h4_c00286{height:34.525440px;}
.h9_c00286{height:56.531250px;}
.h3_c00286{height:67.097461px;}
.h2_c00286{height:67.120312px;}
.h6_c00286{height:67.130859px;}
.h5_c00286{height:68.308594px;}
.h8_c00286{height:70.713281px;}
.h7_c00286{height:72.430664px;}
.h1_c00286{height:1263.000000px;}
.h0_c00286{height:1263.240000px;}
.w1_c00286{width:892.500000px;}
.w0_c00286{width:892.800000px;}
.x0_c00286{left:0.000000px;}
.x12_c00286{left:119.488800px;}
.xf_c00286{left:120.789600px;}
.x1_c00286{left:123.045000px;}
.x17_c00286{left:134.400000px;}
.x18_c00286{left:172.605000px;}
.x5_c00286{left:173.785200px;}
.x9_c00286{left:175.605000px;}
.x6_c00286{left:271.230000px;}
.x7_c00286{left:287.550000px;}
.x13_c00286{left:341.775000px;}
.x2_c00286{left:355.845000px;}
.x14_c00286{left:363.795000px;}
.x8_c00286{left:387.900000px;}
.x10_c00286{left:412.320000px;}
.x1c_c00286{left:423.630000px;}
.xc_c00286{left:434.580000px;}
.x19_c00286{left:448.125000px;}
.x3_c00286{left:450.360000px;}
.xd_c00286{left:451.965000px;}
.x11_c00286{left:460.755000px;}
.xe_c00286{left:479.670000px;}
.x4_c00286{left:491.805000px;}
.xa_c00286{left:599.205000px;}
.xb_c00286{left:627.135000px;}
.x1b_c00286{left:669.360000px;}
.x1a_c00286{left:698.685000px;}
.x15_c00286{left:723.120000px;}
.x16_c00286{left:743.010000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls70_c00286{letter-spacing:-2.165333pt;}
.ls9b_c00286{letter-spacing:-2.128000pt;}
.lsb2_c00286{letter-spacing:-2.109333pt;}
.ls69_c00286{letter-spacing:-2.072000pt;}
.ls6f_c00286{letter-spacing:-1.985920pt;}
.ls99_c00286{letter-spacing:-1.954987pt;}
.ls96_c00286{letter-spacing:-1.831253pt;}
.ls6d_c00286{letter-spacing:-1.800320pt;}
.lsa1_c00286{letter-spacing:-1.664213pt;}
.ls8e_c00286{letter-spacing:-1.608533pt;}
.ls7c_c00286{letter-spacing:-1.577600pt;}
.ls74_c00286{letter-spacing:-1.565227pt;}
.ls90_c00286{letter-spacing:-1.466240pt;}
.lsa2_c00286{letter-spacing:-1.361067pt;}
.ls83_c00286{letter-spacing:-1.311573pt;}
.ls91_c00286{letter-spacing:-1.194027pt;}
.ls72_c00286{letter-spacing:-1.169280pt;}
.ls77_c00286{letter-spacing:-1.150720pt;}
.ls73_c00286{letter-spacing:-1.125973pt;}
.ls9e_c00286{letter-spacing:-1.039360pt;}
.ls79_c00286{letter-spacing:-1.008427pt;}
.lsa8_c00286{letter-spacing:-0.996427pt;}
.ls7f_c00286{letter-spacing:-0.989867pt;}
.ls75_c00286{letter-spacing:-0.983680pt;}
.lsab_c00286{letter-spacing:-0.945653pt;}
.lsad_c00286{letter-spacing:-0.850453pt;}
.lsa5_c00286{letter-spacing:-0.844107pt;}
.lsa6_c00286{letter-spacing:-0.742560pt;}
.ls7e_c00286{letter-spacing:-0.736213pt;}
.ls9d_c00286{letter-spacing:-0.612480pt;}
.lsac_c00286{letter-spacing:-0.602933pt;}
.lsaa_c00286{letter-spacing:-0.596587pt;}
.ls7b_c00286{letter-spacing:-0.593920pt;}
.lsb1_c00286{letter-spacing:-0.581547pt;}
.ls94_c00286{letter-spacing:-0.550613pt;}
.ls71_c00286{letter-spacing:-0.488747pt;}
.ls98_c00286{letter-spacing:-0.445440pt;}
.ls6c_c00286{letter-spacing:-0.420693pt;}
.ls6e_c00286{letter-spacing:-0.402133pt;}
.lsa4_c00286{letter-spacing:-0.399840pt;}
.ls92_c00286{letter-spacing:-0.395947pt;}
.ls86_c00286{letter-spacing:-0.340267pt;}
.lsb0_c00286{letter-spacing:-0.334080pt;}
.ls78_c00286{letter-spacing:-0.321707pt;}
.lsa0_c00286{letter-spacing:-0.315520pt;}
.lsae_c00286{letter-spacing:-0.266027pt;}
.ls80_c00286{letter-spacing:-0.247467pt;}
.ls88_c00286{letter-spacing:-0.241280pt;}
.ls7a_c00286{letter-spacing:-0.216533pt;}
.ls82_c00286{letter-spacing:-0.185600pt;}
.ls7d_c00286{letter-spacing:-0.167040pt;}
.ls84_c00286{letter-spacing:-0.160853pt;}
.lsa3_c00286{letter-spacing:-0.133280pt;}
.ls9f_c00286{letter-spacing:-0.123733pt;}
.ls97_c00286{letter-spacing:-0.105173pt;}
.lsa7_c00286{letter-spacing:-0.101547pt;}
.ls93_c00286{letter-spacing:-0.098987pt;}
.ls81_c00286{letter-spacing:-0.086613pt;}
.ls87_c00286{letter-spacing:-0.080427pt;}
.ls8d_c00286{letter-spacing:-0.061867pt;}
.lsa9_c00286{letter-spacing:-0.050773pt;}
.ls9c_c00286{letter-spacing:-0.043307pt;}
.ls8b_c00286{letter-spacing:-0.030933pt;}
.lsaf_c00286{letter-spacing:-0.024747pt;}
.ls8f_c00286{letter-spacing:-0.012373pt;}
.ls76_c00286{letter-spacing:-0.006187pt;}
.ls6b_c00286{letter-spacing:0.000000pt;}
.ls1e_c00286{letter-spacing:0.006187pt;}
.ls38_c00286{letter-spacing:0.012373pt;}
.ls2a_c00286{letter-spacing:0.018560pt;}
.ls0_c00286{letter-spacing:0.024747pt;}
.ls47_c00286{letter-spacing:0.037120pt;}
.ls46_c00286{letter-spacing:0.043307pt;}
.ls5d_c00286{letter-spacing:0.061867pt;}
.ls5a_c00286{letter-spacing:0.068053pt;}
.ls9a_c00286{letter-spacing:0.074240pt;}
.lsd_c00286{letter-spacing:0.080427pt;}
.ls2d_c00286{letter-spacing:0.111360pt;}
.ls3d_c00286{letter-spacing:0.117547pt;}
.lsf_c00286{letter-spacing:0.136107pt;}
.lsb4_c00286{letter-spacing:0.142293pt;}
.ls23_c00286{letter-spacing:0.148480pt;}
.ls13_c00286{letter-spacing:0.154667pt;}
.ls1c_c00286{letter-spacing:0.179413pt;}
.ls24_c00286{letter-spacing:0.185600pt;}
.ls5c_c00286{letter-spacing:0.191787pt;}
.ls1a_c00286{letter-spacing:0.197973pt;}
.ls40_c00286{letter-spacing:0.222720pt;}
.ls60_c00286{letter-spacing:0.228907pt;}
.ls53_c00286{letter-spacing:0.235093pt;}
.ls11_c00286{letter-spacing:0.241280pt;}
.ls12_c00286{letter-spacing:0.247467pt;}
.ls62_c00286{letter-spacing:0.253653pt;}
.ls3_c00286{letter-spacing:0.259840pt;}
.lse_c00286{letter-spacing:0.278400pt;}
.ls4b_c00286{letter-spacing:0.284587pt;}
.ls27_c00286{letter-spacing:0.290773pt;}
.ls10_c00286{letter-spacing:0.296960pt;}
.ls4d_c00286{letter-spacing:0.309333pt;}
.ls3c_c00286{letter-spacing:0.321707pt;}
.lsc_c00286{letter-spacing:0.352640pt;}
.ls49_c00286{letter-spacing:0.371200pt;}
.ls1b_c00286{letter-spacing:0.377387pt;}
.ls2c_c00286{letter-spacing:0.383573pt;}
.ls95_c00286{letter-spacing:0.389760pt;}
.lsb3_c00286{letter-spacing:0.395947pt;}
.ls41_c00286{letter-spacing:0.402133pt;}
.ls50_c00286{letter-spacing:0.408320pt;}
.ls26_c00286{letter-spacing:0.414507pt;}
.ls51_c00286{letter-spacing:0.420693pt;}
.ls58_c00286{letter-spacing:0.426880pt;}
.ls4f_c00286{letter-spacing:0.433067pt;}
.ls45_c00286{letter-spacing:0.439253pt;}
.ls20_c00286{letter-spacing:0.451627pt;}
.ls5_c00286{letter-spacing:0.470187pt;}
.ls21_c00286{letter-spacing:0.476373pt;}
.lsb_c00286{letter-spacing:0.482560pt;}
.lsb5_c00286{letter-spacing:0.486400pt;}
.ls18_c00286{letter-spacing:0.488747pt;}
.lsa_c00286{letter-spacing:0.501120pt;}
.ls15_c00286{letter-spacing:0.507307pt;}
.ls44_c00286{letter-spacing:0.513493pt;}
.ls25_c00286{letter-spacing:0.519680pt;}
.ls4_c00286{letter-spacing:0.525867pt;}
.ls66_c00286{letter-spacing:0.532053pt;}
.ls64_c00286{letter-spacing:0.538240pt;}
.ls54_c00286{letter-spacing:0.542400pt;}
.ls4c_c00286{letter-spacing:0.544427pt;}
.ls1_c00286{letter-spacing:0.550613pt;}
.ls34_c00286{letter-spacing:0.556800pt;}
.ls3b_c00286{letter-spacing:0.562987pt;}
.ls4a_c00286{letter-spacing:0.569173pt;}
.ls6_c00286{letter-spacing:0.600107pt;}
.ls57_c00286{letter-spacing:0.606293pt;}
.ls31_c00286{letter-spacing:0.612480pt;}
.ls61_c00286{letter-spacing:0.624853pt;}
.ls33_c00286{letter-spacing:0.631040pt;}
.ls55_c00286{letter-spacing:0.637227pt;}
.ls22_c00286{letter-spacing:0.643413pt;}
.ls3f_c00286{letter-spacing:0.668160pt;}
.ls29_c00286{letter-spacing:0.674347pt;}
.ls1d_c00286{letter-spacing:0.680533pt;}
.ls39_c00286{letter-spacing:0.686720pt;}
.ls4e_c00286{letter-spacing:0.692907pt;}
.ls63_c00286{letter-spacing:0.711467pt;}
.ls30_c00286{letter-spacing:0.723840pt;}
.ls5e_c00286{letter-spacing:0.742400pt;}
.ls37_c00286{letter-spacing:0.785707pt;}
.ls2e_c00286{letter-spacing:0.822827pt;}
.ls32_c00286{letter-spacing:0.829013pt;}
.ls48_c00286{letter-spacing:0.847573pt;}
.ls8_c00286{letter-spacing:0.855787pt;}
.ls8c_c00286{letter-spacing:0.859947pt;}
.ls16_c00286{letter-spacing:0.903253pt;}
.ls52_c00286{letter-spacing:0.921813pt;}
.ls35_c00286{letter-spacing:0.928000pt;}
.ls59_c00286{letter-spacing:0.940373pt;}
.ls1f_c00286{letter-spacing:0.971307pt;}
.ls56_c00286{letter-spacing:0.994400pt;}
.ls89_c00286{letter-spacing:1.051733pt;}
.ls2b_c00286{letter-spacing:1.169280pt;}
.ls43_c00286{letter-spacing:1.181653pt;}
.ls36_c00286{letter-spacing:1.200213pt;}
.ls65_c00286{letter-spacing:1.235467pt;}
.ls3e_c00286{letter-spacing:1.243520pt;}
.ls3a_c00286{letter-spacing:1.293013pt;}
.ls85_c00286{letter-spacing:1.311573pt;}
.ls9_c00286{letter-spacing:1.331893pt;}
.ls28_c00286{letter-spacing:1.422933pt;}
.ls67_c00286{letter-spacing:1.429120pt;}
.ls6a_c00286{letter-spacing:1.434880pt;}
.ls2f_c00286{letter-spacing:1.460053pt;}
.ls17_c00286{letter-spacing:1.490987pt;}
.ls5b_c00286{letter-spacing:1.515733pt;}
.ls7_c00286{letter-spacing:1.591040pt;}
.ls19_c00286{letter-spacing:1.763200pt;}
.ls68_c00286{letter-spacing:2.016853pt;}
.ls42_c00286{letter-spacing:2.103467pt;}
.ls14_c00286{letter-spacing:2.171520pt;}
.ls2_c00286{letter-spacing:2.505600pt;}
.ls5f_c00286{letter-spacing:2.524160pt;}
.ls8a_c00286{letter-spacing:3.093333pt;}
.ws4_c00286{word-spacing:0.000000pt;}
.ws1_c00286{word-spacing:0.793067pt;}
.ws3_c00286{word-spacing:4.210933pt;}
.ws2_c00286{word-spacing:6.825600pt;}
.ws0_c00286{word-spacing:14.594560pt;}
._15_c00286{margin-left:-6.696960pt;}
._13_c00286{margin-left:-3.665707pt;}
._4_c00286{margin-left:-2.672640pt;}
._12_c00286{margin-left:-1.323947pt;}
._9_c00286{width:1.382827pt;}
._2_c00286{width:2.289067pt;}
._3_c00286{width:3.470720pt;}
._1_c00286{width:4.887467pt;}
._5_c00286{width:5.864960pt;}
._0_c00286{width:7.646720pt;}
._7_c00286{width:8.630400pt;}
._17_c00286{width:9.705120pt;}
._6_c00286{width:10.610133pt;}
._8_c00286{width:11.689600pt;}
._14_c00286{width:13.007360pt;}
._a_c00286{width:14.575787pt;}
._16_c00286{width:16.169173pt;}
._c_c00286{width:18.126933pt;}
._b_c00286{width:19.772587pt;}
._11_c00286{width:25.161173pt;}
._f_c00286{width:28.347307pt;}
._d_c00286{width:30.190933pt;}
._e_c00286{width:32.974933pt;}
._10_c00286{width:34.181333pt;}
.fs2_c00286{font-size:46.080000pt;}
.fs7_c00286{font-size:51.200000pt;}
.fs0_c00286{font-size:59.200000pt;}
.fs4_c00286{font-size:60.266667pt;}
.fs1_c00286{font-size:60.800000pt;}
.fs3_c00286{font-size:61.866667pt;}
.fs5_c00286{font-size:63.466667pt;}
.fs6_c00286{font-size:65.600000pt;}
.y0_c00286{bottom:0.000000pt;}
.y20_c00286{bottom:62.733333pt;}
.y1f_c00286{bottom:142.415467pt;}
.y1e_c00286{bottom:170.240000pt;}
.y1d_c00286{bottom:224.653333pt;}
.y1c_c00286{bottom:252.173333pt;}
.y1b_c00286{bottom:279.687467pt;}
.y1a_c00286{bottom:306.898133pt;}
.y19_c00286{bottom:334.413333pt;}
.y18_c00286{bottom:389.773333pt;}
.y17_c00286{bottom:446.102933pt;}
.y16_c00286{bottom:473.618133pt;}
.y15_c00286{bottom:501.133333pt;}
.y14_c00286{bottom:528.653333pt;}
.y13_c00286{bottom:528.671467pt;}
.y12_c00286{bottom:555.877333pt;}
.y11_c00286{bottom:583.377067pt;}
.y10_c00286{bottom:610.582933pt;}
.yf_c00286{bottom:638.098133pt;}
.ye_c00286{bottom:665.613333pt;}
.yd_c00286{bottom:665.632533pt;}
.yc_c00286{bottom:693.147733pt;}
.yb_c00286{bottom:720.647467pt;}
.ya_c00286{bottom:748.178133pt;}
.y9_c00286{bottom:775.693333pt;}
.y8_c00286{bottom:830.400000pt;}
.y7_c00286{bottom:885.133333pt;}
.y6_c00286{bottom:885.134400pt;}
.y5_c00286{bottom:912.000000pt;}
.y3_c00286{bottom:967.049600pt;}
.y4_c00286{bottom:967.053333pt;}
.y2_c00286{bottom:994.240000pt;}
.y1_c00286{bottom:1063.053333pt;}
.h4_c00286{height:30.689280pt;}
.h9_c00286{height:50.250000pt;}
.h3_c00286{height:59.642187pt;}
.h2_c00286{height:59.662500pt;}
.h6_c00286{height:59.671875pt;}
.h5_c00286{height:60.718750pt;}
.h8_c00286{height:62.856250pt;}
.h7_c00286{height:64.382813pt;}
.h1_c00286{height:1122.666667pt;}
.h0_c00286{height:1122.880000pt;}
.w1_c00286{width:793.333333pt;}
.w0_c00286{width:793.600000pt;}
.x0_c00286{left:0.000000pt;}
.x12_c00286{left:106.212267pt;}
.xf_c00286{left:107.368533pt;}
.x1_c00286{left:109.373333pt;}
.x17_c00286{left:119.466667pt;}
.x18_c00286{left:153.426667pt;}
.x5_c00286{left:154.475733pt;}
.x9_c00286{left:156.093333pt;}
.x6_c00286{left:241.093333pt;}
.x7_c00286{left:255.600000pt;}
.x13_c00286{left:303.800000pt;}
.x2_c00286{left:316.306667pt;}
.x14_c00286{left:323.373333pt;}
.x8_c00286{left:344.800000pt;}
.x10_c00286{left:366.506667pt;}
.x1c_c00286{left:376.560000pt;}
.xc_c00286{left:386.293333pt;}
.x19_c00286{left:398.333333pt;}
.x3_c00286{left:400.320000pt;}
.xd_c00286{left:401.746667pt;}
.x11_c00286{left:409.560000pt;}
.xe_c00286{left:426.373333pt;}
.x4_c00286{left:437.160000pt;}
.xa_c00286{left:532.626667pt;}
.xb_c00286{left:557.453333pt;}
.x1b_c00286{left:594.986667pt;}
.x1a_c00286{left:621.053333pt;}
.x15_c00286{left:642.773333pt;}
.x16_c00286{left:660.453333pt;}
}





/* 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_c00287 {
    display:none;
  }
  .loading-indicator_c00287.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00287 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_c00287 { 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_c00287" -> "#page-container .classname_c00287")
 */
.pf_c00287 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00287 { /* 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_c00287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00287 { /* 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_c00287 { /* 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_c00287 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00287 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00287 {overflow:visible;}
  }
}
.c_c00287 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00287 { /* 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_c00287:after { /* webkit #35443 */
  content: '';
}
.t_c00287:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00287 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 */
}
.__c00287 { /* 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_c00287 { /* info for Javascript */
  display:none;
}
.l_c00287 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00287 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00287 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00287: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_c00287 {
    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_c00287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00287.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_c00287 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00287;src:url('chunks/assets/font_f233ad8156e31aff0d7941f2.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.284668;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_c00287;src:url('chunks/assets/font_344613c6388e13d9a0aed108.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.284180;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;}
.m7_c00287{transform:matrix(0.223631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223631,0.000000,0.000000,0.250000,0,0);}
.m3_c00287{transform:matrix(0.238015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238015,0.000000,0.000000,0.250000,0,0);}
.m4_c00287{transform:matrix(0.241493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241493,0.000000,0.000000,0.250000,0,0);}
.m0_c00287{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m8_c00287{transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);}
.m1_c00287{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);}
.m5_c00287{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m2_c00287{transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);}
.m6_c00287{transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls8d_c00287{letter-spacing:-2.688000px;}
.ls79_c00287{letter-spacing:-2.373000px;}
.ls68_c00287{letter-spacing:-2.352000px;}
.ls77_c00287{letter-spacing:-1.986540px;}
.ls8f_c00287{letter-spacing:-1.974000px;}
.ls71_c00287{letter-spacing:-1.891620px;}
.ls85_c00287{letter-spacing:-1.715340px;}
.ls76_c00287{letter-spacing:-1.661100px;}
.ls74_c00287{letter-spacing:-1.647540px;}
.ls78_c00287{letter-spacing:-1.613640px;}
.ls6f_c00287{letter-spacing:-1.410240px;}
.ls8a_c00287{letter-spacing:-1.403460px;}
.ls6e_c00287{letter-spacing:-1.349220px;}
.ls72_c00287{letter-spacing:-1.267860px;}
.ls88_c00287{letter-spacing:-1.247520px;}
.ls7b_c00287{letter-spacing:-1.220400px;}
.ls7c_c00287{letter-spacing:-1.071240px;}
.ls70_c00287{letter-spacing:-0.739020px;}
.ls73_c00287{letter-spacing:-0.494940px;}
.ls89_c00287{letter-spacing:-0.359340px;}
.ls7d_c00287{letter-spacing:-0.264420px;}
.ls7a_c00287{letter-spacing:-0.210180px;}
.ls75_c00287{letter-spacing:-0.176280px;}
.ls7f_c00287{letter-spacing:-0.149160px;}
.ls84_c00287{letter-spacing:-0.128820px;}
.ls82_c00287{letter-spacing:-0.074580px;}
.ls69_c00287{letter-spacing:0.000000px;}
.ls8_c00287{letter-spacing:0.020340px;}
.ls14_c00287{letter-spacing:0.027120px;}
.ls23_c00287{letter-spacing:0.033900px;}
.lsb_c00287{letter-spacing:0.040680px;}
.ls4d_c00287{letter-spacing:0.081360px;}
.ls50_c00287{letter-spacing:0.101700px;}
.ls27_c00287{letter-spacing:0.122040px;}
.ls8c_c00287{letter-spacing:0.176280px;}
.ls44_c00287{letter-spacing:0.189840px;}
.ls60_c00287{letter-spacing:0.210180px;}
.ls30_c00287{letter-spacing:0.216960px;}
.ls20_c00287{letter-spacing:0.271200px;}
.ls81_c00287{letter-spacing:0.298320px;}
.ls17_c00287{letter-spacing:0.339000px;}
.ls59_c00287{letter-spacing:0.359340px;}
.ls87_c00287{letter-spacing:0.379680px;}
.ls2d_c00287{letter-spacing:0.386460px;}
.lsf_c00287{letter-spacing:0.393240px;}
.ls6_c00287{letter-spacing:0.413580px;}
.ls28_c00287{letter-spacing:0.433920px;}
.ls4b_c00287{letter-spacing:0.454260px;}
.ls21_c00287{letter-spacing:0.461040px;}
.ls48_c00287{letter-spacing:0.467820px;}
.ls8e_c00287{letter-spacing:0.508500px;}
.ls67_c00287{letter-spacing:0.515280px;}
.ls66_c00287{letter-spacing:0.522060px;}
.ls2b_c00287{letter-spacing:0.528840px;}
.ls80_c00287{letter-spacing:0.535620px;}
.ls5d_c00287{letter-spacing:0.549180px;}
.ls61_c00287{letter-spacing:0.555960px;}
.ls0_c00287{letter-spacing:0.583080px;}
.ls47_c00287{letter-spacing:0.610200px;}
.ls4_c00287{letter-spacing:0.630540px;}
.ls11_c00287{letter-spacing:0.637320px;}
.ls4e_c00287{letter-spacing:0.657660px;}
.ls16_c00287{letter-spacing:0.678000px;}
.ls6d_c00287{letter-spacing:0.691560px;}
.ls86_c00287{letter-spacing:0.705120px;}
.ls36_c00287{letter-spacing:0.732240px;}
.ls2a_c00287{letter-spacing:0.739020px;}
.ls4f_c00287{letter-spacing:0.759360px;}
.ls1_c00287{letter-spacing:0.766140px;}
.ls10_c00287{letter-spacing:0.786480px;}
.ls3f_c00287{letter-spacing:0.800040px;}
.ls29_c00287{letter-spacing:0.806820px;}
.ls26_c00287{letter-spacing:0.820380px;}
.ls22_c00287{letter-spacing:0.833940px;}
.ls51_c00287{letter-spacing:0.847500px;}
.ls7_c00287{letter-spacing:0.854280px;}
.ls5b_c00287{letter-spacing:0.861060px;}
.ls3e_c00287{letter-spacing:0.867840px;}
.ls25_c00287{letter-spacing:0.881400px;}
.ls63_c00287{letter-spacing:0.928860px;}
.ls41_c00287{letter-spacing:0.935640px;}
.ls3a_c00287{letter-spacing:0.942420px;}
.ls5f_c00287{letter-spacing:0.955980px;}
.ls56_c00287{letter-spacing:0.962760px;}
.ls13_c00287{letter-spacing:0.969540px;}
.ls35_c00287{letter-spacing:1.010220px;}
.ls3b_c00287{letter-spacing:1.030560px;}
.ls38_c00287{letter-spacing:1.044120px;}
.ls1e_c00287{letter-spacing:1.050900px;}
.ls57_c00287{letter-spacing:1.057680px;}
.lsc_c00287{letter-spacing:1.064460px;}
.ls32_c00287{letter-spacing:1.078020px;}
.lse_c00287{letter-spacing:1.121760px;}
.ls19_c00287{letter-spacing:1.139040px;}
.ls2_c00287{letter-spacing:1.152600px;}
.ls65_c00287{letter-spacing:1.159380px;}
.ls4c_c00287{letter-spacing:1.166160px;}
.ls1c_c00287{letter-spacing:1.186500px;}
.ls39_c00287{letter-spacing:1.213620px;}
.ls1d_c00287{letter-spacing:1.254300px;}
.ls2e_c00287{letter-spacing:1.261080px;}
.ls3_c00287{letter-spacing:1.267860px;}
.ls15_c00287{letter-spacing:1.294980px;}
.ls5c_c00287{letter-spacing:1.301760px;}
.ls33_c00287{letter-spacing:1.308540px;}
.ls49_c00287{letter-spacing:1.342440px;}
.ls43_c00287{letter-spacing:1.349220px;}
.ls3c_c00287{letter-spacing:1.362780px;}
.ls7e_c00287{letter-spacing:1.369560px;}
.ls8b_c00287{letter-spacing:1.376340px;}
.ls42_c00287{letter-spacing:1.396680px;}
.ls31_c00287{letter-spacing:1.403460px;}
.ls55_c00287{letter-spacing:1.417020px;}
.ls40_c00287{letter-spacing:1.423800px;}
.ls4a_c00287{letter-spacing:1.444140px;}
.ls3d_c00287{letter-spacing:1.450920px;}
.lsd_c00287{letter-spacing:1.456920px;}
.ls34_c00287{letter-spacing:1.478040px;}
.ls46_c00287{letter-spacing:1.484820px;}
.ls6a_c00287{letter-spacing:1.511940px;}
.ls18_c00287{letter-spacing:1.539060px;}
.ls45_c00287{letter-spacing:1.613640px;}
.ls1b_c00287{letter-spacing:1.633980px;}
.ls5a_c00287{letter-spacing:1.640760px;}
.ls53_c00287{letter-spacing:1.661100px;}
.ls1a_c00287{letter-spacing:1.688220px;}
.ls54_c00287{letter-spacing:1.708560px;}
.ls6c_c00287{letter-spacing:1.722120px;}
.ls64_c00287{letter-spacing:1.742460px;}
.ls37_c00287{letter-spacing:1.776360px;}
.ls5e_c00287{letter-spacing:1.817040px;}
.ls52_c00287{letter-spacing:1.830600px;}
.ls1f_c00287{letter-spacing:1.918740px;}
.ls83_c00287{letter-spacing:2.108580px;}
.ls24_c00287{letter-spacing:2.156040px;}
.ls9_c00287{letter-spacing:2.162820px;}
.ls2f_c00287{letter-spacing:2.203500px;}
.ls62_c00287{letter-spacing:2.223840px;}
.ls12_c00287{letter-spacing:2.311980px;}
.lsa_c00287{letter-spacing:2.637420px;}
.ls58_c00287{letter-spacing:2.698440px;}
.ls2c_c00287{letter-spacing:3.356100px;}
.ls5_c00287{letter-spacing:3.376440px;}
.ls6b_c00287{letter-spacing:3.390000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{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__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00287{word-spacing:-0.569520px;}
.ws1_c00287{word-spacing:-0.474600px;}
.ws6_c00287{word-spacing:0.000000px;}
.ws5_c00287{word-spacing:1.225740px;}
.ws0_c00287{word-spacing:1.945860px;}
.ws4_c00287{word-spacing:8.678400px;}
.ws3_c00287{word-spacing:9.492000px;}
._f_c00287{margin-left:-7.254600px;}
._3_c00287{margin-left:-6.210480px;}
._e_c00287{margin-left:-4.529040px;}
._1_c00287{margin-left:-3.322200px;}
._4_c00287{margin-left:-1.681440px;}
._2_c00287{width:1.830600px;}
._6_c00287{width:3.051000px;}
._0_c00287{width:5.044320px;}
._8_c00287{width:6.400320px;}
._5_c00287{width:7.951560px;}
._9_c00287{width:9.661500px;}
._7_c00287{width:11.349720px;}
._d_c00287{width:13.051500px;}
._b_c00287{width:14.876700px;}
._c_c00287{width:16.685820px;}
._a_c00287{width:19.628100px;}
._14_c00287{width:29.262480px;}
._11_c00287{width:30.733740px;}
._12_c00287{width:31.804980px;}
._10_c00287{width:32.883000px;}
._13_c00287{width:34.116960px;}
.fc0_c00287{color:transparent;}
.fs5_c00287{font-size:56.400000px;}
.fs0_c00287{font-size:67.200000px;}
.fs1_c00287{font-size:67.800000px;}
.fs2_c00287{font-size:68.400000px;}
.fs3_c00287{font-size:73.800000px;}
.fs4_c00287{font-size:76.800000px;}
.y0_c00287{bottom:0.000000px;}
.y1a_c00287{bottom:70.920006px;}
.y19_c00287{bottom:252.377856px;}
.y18_c00287{bottom:313.923306px;}
.y17_c00287{bottom:344.535006px;}
.y16_c00287{bottom:405.375006px;}
.y15_c00287{bottom:437.047356px;}
.y13_c00287{bottom:468.014556px;}
.y14_c00287{bottom:468.015006px;}
.y12_c00287{bottom:498.609306px;}
.y11_c00287{bottom:529.560006px;}
.yf_c00287{bottom:592.202556px;}
.y10_c00287{bottom:592.215006px;}
.ye_c00287{bottom:654.849756px;}
.yd_c00287{bottom:685.444506px;}
.yc_c00287{bottom:716.395206px;}
.yb_c00287{bottom:747.006906px;}
.ya_c00287{bottom:777.974556px;}
.y9_c00287{bottom:839.520006px;}
.y7_c00287{bottom:900.729306px;}
.y8_c00287{bottom:900.735006px;}
.y6_c00287{bottom:931.682856px;}
.y5_c00287{bottom:993.262206px;}
.y4_c00287{bottom:1023.840006px;}
.y3_c00287{bottom:1085.411406px;}
.y2_c00287{bottom:1116.735006px;}
.y1_c00287{bottom:1192.320006px;}
.ha_c00287{height:55.353516px;}
.h2_c00287{height:65.953125px;}
.h9_c00287{height:66.530592px;}
.h3_c00287{height:66.541992px;}
.h5_c00287{height:66.564792px;}
.h6_c00287{height:66.591792px;}
.h4_c00287{height:67.097461px;}
.h7_c00287{height:72.430664px;}
.h8_c00287{height:75.375000px;}
.h1_c00287{height:1263.000000px;}
.h0_c00287{height:1263.240006px;}
.w1_c00287{width:892.500000px;}
.w0_c00287{width:892.799998px;}
.x0_c00287{left:0.000000px;}
.x1_c00287{left:121.964999px;}
.x5_c00287{left:123.093598px;}
.xe_c00287{left:124.334998px;}
.xa_c00287{left:166.859998px;}
.x2_c00287{left:175.844999px;}
.x7_c00287{left:178.817698px;}
.xb_c00287{left:187.889998px;}
.xf_c00287{left:200.339999px;}
.xc_c00287{left:236.054998px;}
.xd_c00287{left:260.489999px;}
.x6_c00287{left:342.494999px;}
.x10_c00287{left:424.709999px;}
.x8_c00287{left:561.074998px;}
.x3_c00287{left:667.109998px;}
.x9_c00287{left:684.899999px;}
.x4_c00287{left:695.189999px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls8d_c00287{letter-spacing:-2.389333pt;}
.ls79_c00287{letter-spacing:-2.109333pt;}
.ls68_c00287{letter-spacing:-2.090667pt;}
.ls77_c00287{letter-spacing:-1.765813pt;}
.ls8f_c00287{letter-spacing:-1.754667pt;}
.ls71_c00287{letter-spacing:-1.681440pt;}
.ls85_c00287{letter-spacing:-1.524747pt;}
.ls76_c00287{letter-spacing:-1.476533pt;}
.ls74_c00287{letter-spacing:-1.464480pt;}
.ls78_c00287{letter-spacing:-1.434347pt;}
.ls6f_c00287{letter-spacing:-1.253547pt;}
.ls8a_c00287{letter-spacing:-1.247520pt;}
.ls6e_c00287{letter-spacing:-1.199307pt;}
.ls72_c00287{letter-spacing:-1.126987pt;}
.ls88_c00287{letter-spacing:-1.108907pt;}
.ls7b_c00287{letter-spacing:-1.084800pt;}
.ls7c_c00287{letter-spacing:-0.952213pt;}
.ls70_c00287{letter-spacing:-0.656907pt;}
.ls73_c00287{letter-spacing:-0.439947pt;}
.ls89_c00287{letter-spacing:-0.319413pt;}
.ls7d_c00287{letter-spacing:-0.235040pt;}
.ls7a_c00287{letter-spacing:-0.186827pt;}
.ls75_c00287{letter-spacing:-0.156693pt;}
.ls7f_c00287{letter-spacing:-0.132587pt;}
.ls84_c00287{letter-spacing:-0.114507pt;}
.ls82_c00287{letter-spacing:-0.066293pt;}
.ls69_c00287{letter-spacing:0.000000pt;}
.ls8_c00287{letter-spacing:0.018080pt;}
.ls14_c00287{letter-spacing:0.024107pt;}
.ls23_c00287{letter-spacing:0.030133pt;}
.lsb_c00287{letter-spacing:0.036160pt;}
.ls4d_c00287{letter-spacing:0.072320pt;}
.ls50_c00287{letter-spacing:0.090400pt;}
.ls27_c00287{letter-spacing:0.108480pt;}
.ls8c_c00287{letter-spacing:0.156693pt;}
.ls44_c00287{letter-spacing:0.168747pt;}
.ls60_c00287{letter-spacing:0.186827pt;}
.ls30_c00287{letter-spacing:0.192853pt;}
.ls20_c00287{letter-spacing:0.241067pt;}
.ls81_c00287{letter-spacing:0.265173pt;}
.ls17_c00287{letter-spacing:0.301333pt;}
.ls59_c00287{letter-spacing:0.319413pt;}
.ls87_c00287{letter-spacing:0.337493pt;}
.ls2d_c00287{letter-spacing:0.343520pt;}
.lsf_c00287{letter-spacing:0.349547pt;}
.ls6_c00287{letter-spacing:0.367627pt;}
.ls28_c00287{letter-spacing:0.385707pt;}
.ls4b_c00287{letter-spacing:0.403787pt;}
.ls21_c00287{letter-spacing:0.409813pt;}
.ls48_c00287{letter-spacing:0.415840pt;}
.ls8e_c00287{letter-spacing:0.452000pt;}
.ls67_c00287{letter-spacing:0.458027pt;}
.ls66_c00287{letter-spacing:0.464053pt;}
.ls2b_c00287{letter-spacing:0.470080pt;}
.ls80_c00287{letter-spacing:0.476107pt;}
.ls5d_c00287{letter-spacing:0.488160pt;}
.ls61_c00287{letter-spacing:0.494187pt;}
.ls0_c00287{letter-spacing:0.518293pt;}
.ls47_c00287{letter-spacing:0.542400pt;}
.ls4_c00287{letter-spacing:0.560480pt;}
.ls11_c00287{letter-spacing:0.566507pt;}
.ls4e_c00287{letter-spacing:0.584587pt;}
.ls16_c00287{letter-spacing:0.602667pt;}
.ls6d_c00287{letter-spacing:0.614720pt;}
.ls86_c00287{letter-spacing:0.626773pt;}
.ls36_c00287{letter-spacing:0.650880pt;}
.ls2a_c00287{letter-spacing:0.656907pt;}
.ls4f_c00287{letter-spacing:0.674987pt;}
.ls1_c00287{letter-spacing:0.681013pt;}
.ls10_c00287{letter-spacing:0.699093pt;}
.ls3f_c00287{letter-spacing:0.711147pt;}
.ls29_c00287{letter-spacing:0.717173pt;}
.ls26_c00287{letter-spacing:0.729227pt;}
.ls22_c00287{letter-spacing:0.741280pt;}
.ls51_c00287{letter-spacing:0.753333pt;}
.ls7_c00287{letter-spacing:0.759360pt;}
.ls5b_c00287{letter-spacing:0.765387pt;}
.ls3e_c00287{letter-spacing:0.771413pt;}
.ls25_c00287{letter-spacing:0.783467pt;}
.ls63_c00287{letter-spacing:0.825653pt;}
.ls41_c00287{letter-spacing:0.831680pt;}
.ls3a_c00287{letter-spacing:0.837707pt;}
.ls5f_c00287{letter-spacing:0.849760pt;}
.ls56_c00287{letter-spacing:0.855787pt;}
.ls13_c00287{letter-spacing:0.861813pt;}
.ls35_c00287{letter-spacing:0.897973pt;}
.ls3b_c00287{letter-spacing:0.916053pt;}
.ls38_c00287{letter-spacing:0.928107pt;}
.ls1e_c00287{letter-spacing:0.934133pt;}
.ls57_c00287{letter-spacing:0.940160pt;}
.lsc_c00287{letter-spacing:0.946187pt;}
.ls32_c00287{letter-spacing:0.958240pt;}
.lse_c00287{letter-spacing:0.997120pt;}
.ls19_c00287{letter-spacing:1.012480pt;}
.ls2_c00287{letter-spacing:1.024533pt;}
.ls65_c00287{letter-spacing:1.030560pt;}
.ls4c_c00287{letter-spacing:1.036587pt;}
.ls1c_c00287{letter-spacing:1.054667pt;}
.ls39_c00287{letter-spacing:1.078773pt;}
.ls1d_c00287{letter-spacing:1.114933pt;}
.ls2e_c00287{letter-spacing:1.120960pt;}
.ls3_c00287{letter-spacing:1.126987pt;}
.ls15_c00287{letter-spacing:1.151093pt;}
.ls5c_c00287{letter-spacing:1.157120pt;}
.ls33_c00287{letter-spacing:1.163147pt;}
.ls49_c00287{letter-spacing:1.193280pt;}
.ls43_c00287{letter-spacing:1.199307pt;}
.ls3c_c00287{letter-spacing:1.211360pt;}
.ls7e_c00287{letter-spacing:1.217387pt;}
.ls8b_c00287{letter-spacing:1.223413pt;}
.ls42_c00287{letter-spacing:1.241493pt;}
.ls31_c00287{letter-spacing:1.247520pt;}
.ls55_c00287{letter-spacing:1.259573pt;}
.ls40_c00287{letter-spacing:1.265600pt;}
.ls4a_c00287{letter-spacing:1.283680pt;}
.ls3d_c00287{letter-spacing:1.289707pt;}
.lsd_c00287{letter-spacing:1.295040pt;}
.ls34_c00287{letter-spacing:1.313813pt;}
.ls46_c00287{letter-spacing:1.319840pt;}
.ls6a_c00287{letter-spacing:1.343947pt;}
.ls18_c00287{letter-spacing:1.368053pt;}
.ls45_c00287{letter-spacing:1.434347pt;}
.ls1b_c00287{letter-spacing:1.452427pt;}
.ls5a_c00287{letter-spacing:1.458453pt;}
.ls53_c00287{letter-spacing:1.476533pt;}
.ls1a_c00287{letter-spacing:1.500640pt;}
.ls54_c00287{letter-spacing:1.518720pt;}
.ls6c_c00287{letter-spacing:1.530773pt;}
.ls64_c00287{letter-spacing:1.548853pt;}
.ls37_c00287{letter-spacing:1.578987pt;}
.ls5e_c00287{letter-spacing:1.615147pt;}
.ls52_c00287{letter-spacing:1.627200pt;}
.ls1f_c00287{letter-spacing:1.705547pt;}
.ls83_c00287{letter-spacing:1.874293pt;}
.ls24_c00287{letter-spacing:1.916480pt;}
.ls9_c00287{letter-spacing:1.922507pt;}
.ls2f_c00287{letter-spacing:1.958667pt;}
.ls62_c00287{letter-spacing:1.976747pt;}
.ls12_c00287{letter-spacing:2.055093pt;}
.lsa_c00287{letter-spacing:2.344373pt;}
.ls58_c00287{letter-spacing:2.398613pt;}
.ls2c_c00287{letter-spacing:2.983200pt;}
.ls5_c00287{letter-spacing:3.001280pt;}
.ls6b_c00287{letter-spacing:3.013333pt;}
.ws2_c00287{word-spacing:-0.506240pt;}
.ws1_c00287{word-spacing:-0.421867pt;}
.ws6_c00287{word-spacing:0.000000pt;}
.ws5_c00287{word-spacing:1.089547pt;}
.ws0_c00287{word-spacing:1.729653pt;}
.ws4_c00287{word-spacing:7.714133pt;}
.ws3_c00287{word-spacing:8.437333pt;}
._f_c00287{margin-left:-6.448533pt;}
._3_c00287{margin-left:-5.520427pt;}
._e_c00287{margin-left:-4.025813pt;}
._1_c00287{margin-left:-2.953067pt;}
._4_c00287{margin-left:-1.494613pt;}
._2_c00287{width:1.627200pt;}
._6_c00287{width:2.712000pt;}
._0_c00287{width:4.483840pt;}
._8_c00287{width:5.689173pt;}
._5_c00287{width:7.068053pt;}
._9_c00287{width:8.588000pt;}
._7_c00287{width:10.088640pt;}
._d_c00287{width:11.601333pt;}
._b_c00287{width:13.223733pt;}
._c_c00287{width:14.831840pt;}
._a_c00287{width:17.447200pt;}
._14_c00287{width:26.011093pt;}
._11_c00287{width:27.318880pt;}
._12_c00287{width:28.271093pt;}
._10_c00287{width:29.229333pt;}
._13_c00287{width:30.326187pt;}
.fs5_c00287{font-size:50.133333pt;}
.fs0_c00287{font-size:59.733333pt;}
.fs1_c00287{font-size:60.266667pt;}
.fs2_c00287{font-size:60.800000pt;}
.fs3_c00287{font-size:65.600000pt;}
.fs4_c00287{font-size:68.266667pt;}
.y0_c00287{bottom:0.000000pt;}
.y1a_c00287{bottom:63.040005pt;}
.y19_c00287{bottom:224.335872pt;}
.y18_c00287{bottom:279.042939pt;}
.y17_c00287{bottom:306.253339pt;}
.y16_c00287{bottom:360.333339pt;}
.y15_c00287{bottom:388.486539pt;}
.y13_c00287{bottom:416.012939pt;}
.y14_c00287{bottom:416.013339pt;}
.y12_c00287{bottom:443.208272pt;}
.y11_c00287{bottom:470.720005pt;}
.yf_c00287{bottom:526.402272pt;}
.y10_c00287{bottom:526.413339pt;}
.ye_c00287{bottom:582.088672pt;}
.yd_c00287{bottom:609.284005pt;}
.yc_c00287{bottom:636.795739pt;}
.yb_c00287{bottom:664.006139pt;}
.ya_c00287{bottom:691.532939pt;}
.y9_c00287{bottom:746.240005pt;}
.y7_c00287{bottom:800.648272pt;}
.y8_c00287{bottom:800.653339pt;}
.y6_c00287{bottom:828.162539pt;}
.y5_c00287{bottom:882.899739pt;}
.y4_c00287{bottom:910.080005pt;}
.y3_c00287{bottom:964.810139pt;}
.y2_c00287{bottom:992.653339pt;}
.y1_c00287{bottom:1059.840005pt;}
.ha_c00287{height:49.203125pt;}
.h2_c00287{height:58.625000pt;}
.h9_c00287{height:59.138304pt;}
.h3_c00287{height:59.148438pt;}
.h5_c00287{height:59.168704pt;}
.h6_c00287{height:59.192704pt;}
.h4_c00287{height:59.642187pt;}
.h7_c00287{height:64.382813pt;}
.h8_c00287{height:67.000000pt;}
.h1_c00287{height:1122.666667pt;}
.h0_c00287{height:1122.880005pt;}
.w1_c00287{width:793.333333pt;}
.w0_c00287{width:793.599999pt;}
.x0_c00287{left:0.000000pt;}
.x1_c00287{left:108.413332pt;}
.x5_c00287{left:109.416532pt;}
.xe_c00287{left:110.519999pt;}
.xa_c00287{left:148.319999pt;}
.x2_c00287{left:156.306665pt;}
.x7_c00287{left:158.949065pt;}
.xb_c00287{left:167.013332pt;}
.xf_c00287{left:178.079999pt;}
.xc_c00287{left:209.826665pt;}
.xd_c00287{left:231.546665pt;}
.x6_c00287{left:304.439999pt;}
.x10_c00287{left:377.519999pt;}
.x8_c00287{left:498.733332pt;}
.x3_c00287{left:592.986665pt;}
.x9_c00287{left:608.799999pt;}
.x4_c00287{left:617.946665pt;}
}





/* 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_c00288 {
    display:none;
  }
  .loading-indicator_c00288.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00288 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_c00288 { 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_c00288" -> "#page-container .classname_c00288")
 */
.pf_c00288 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00288 { /* 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_c00288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00288 { /* 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_c00288 { /* 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_c00288 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00288 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00288 {overflow:visible;}
  }
}
.c_c00288 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00288 { /* 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_c00288:after { /* webkit #35443 */
  content: '';
}
.t_c00288:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00288 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 */
}
.__c00288 { /* 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_c00288 { /* info for Javascript */
  display:none;
}
.l_c00288 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00288 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00288 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00288: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_c00288 {
    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_c00288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00288.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_c00288 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00288;src:url('chunks/assets/font_9ca1bb4d1a5d54d555f8f077.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.284668;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_c00288;src:url('chunks/assets/font_46cefa4a61b41062f1ad4a6a.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.284180;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_c00288;src:url('chunks/assets/font_5481260fbd83078cb521f334.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:0.666000;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;}
.ma_c00288{transform:matrix(0.137182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137182,0.000000,0.000000,0.250000,0,0);}
.m8_c00288{transform:matrix(0.200009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200009,0.000000,0.000000,0.250000,0,0);}
.m9_c00288{transform:matrix(0.206676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206676,0.000000,0.000000,0.250000,0,0);}
.md_c00288{transform:matrix(0.229373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229373,0.000000,0.000000,0.250000,0,0);}
.m11_c00288{transform:matrix(0.233669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233669,0.000000,0.000000,0.250000,0,0);}
.m6_c00288{transform:matrix(0.238547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238547,0.000000,0.000000,0.250000,0,0);}
.m3_c00288{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m5_c00288{transform:matrix(0.246797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246797,0.000000,0.000000,0.250000,0,0);}
.m4_c00288{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m1_c00288{transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);}
.mc_c00288{transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);}
.m7_c00288{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.mb_c00288{transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);}
.m2_c00288{transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);}
.m0_c00288{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);}
.mf_c00288{transform:matrix(0.472414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472414,0.000000,0.000000,0.250000,0,0);}
.m10_c00288{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.me_c00288{transform:matrix(0.813906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.813906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.813906,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls2d_c00288{letter-spacing:-2.478000px;}
.ls6a_c00288{letter-spacing:-2.415000px;}
.ls84_c00288{letter-spacing:-2.393040px;}
.ls67_c00288{letter-spacing:-2.352000px;}
.ls8f_c00288{letter-spacing:-2.331000px;}
.ls33_c00288{letter-spacing:-2.308080px;}
.ls86_c00288{letter-spacing:-2.060280px;}
.ls49_c00288{letter-spacing:-2.053200px;}
.ls3c_c00288{letter-spacing:-1.996560px;}
.ls35_c00288{letter-spacing:-1.989480px;}
.ls3f_c00288{letter-spacing:-1.890360px;}
.ls34_c00288{letter-spacing:-1.854960px;}
.ls36_c00288{letter-spacing:-1.819560px;}
.ls7b_c00288{letter-spacing:-1.614240px;}
.ls3e_c00288{letter-spacing:-1.508040px;}
.ls41_c00288{letter-spacing:-1.479720px;}
.ls44_c00288{letter-spacing:-1.323960px;}
.ls85_c00288{letter-spacing:-1.295640px;}
.ls66_c00288{letter-spacing:-1.288560px;}
.ls32_c00288{letter-spacing:-1.281480px;}
.ls39_c00288{letter-spacing:-1.210680px;}
.ls88_c00288{letter-spacing:-1.146960px;}
.ls73_c00288{letter-spacing:-1.118640px;}
.ls62_c00288{letter-spacing:-1.111560px;}
.ls3d_c00288{letter-spacing:-1.097400px;}
.ls81_c00288{letter-spacing:-1.047840px;}
.ls54_c00288{letter-spacing:-1.040760px;}
.ls46_c00288{letter-spacing:-1.026600px;}
.ls38_c00288{letter-spacing:-1.012440px;}
.ls69_c00288{letter-spacing:-0.998280px;}
.ls40_c00288{letter-spacing:-0.969960px;}
.ls4c_c00288{letter-spacing:-0.934560px;}
.ls31_c00288{letter-spacing:-0.863760px;}
.ls6e_c00288{letter-spacing:-0.828360px;}
.ls45_c00288{letter-spacing:-0.814200px;}
.ls2e_c00288{letter-spacing:-0.800040px;}
.ls42_c00288{letter-spacing:-0.785880px;}
.ls3b_c00288{letter-spacing:-0.750480px;}
.ls2c_c00288{letter-spacing:-0.729240px;}
.ls51_c00288{letter-spacing:-0.722160px;}
.ls7e_c00288{letter-spacing:-0.679680px;}
.ls75_c00288{letter-spacing:-0.658440px;}
.ls4e_c00288{letter-spacing:-0.644280px;}
.ls87_c00288{letter-spacing:-0.637200px;}
.ls8c_c00288{letter-spacing:-0.623040px;}
.ls5f_c00288{letter-spacing:-0.615960px;}
.ls48_c00288{letter-spacing:-0.566400px;}
.ls71_c00288{letter-spacing:-0.559320px;}
.ls83_c00288{letter-spacing:-0.552240px;}
.ls74_c00288{letter-spacing:-0.538080px;}
.ls5d_c00288{letter-spacing:-0.509760px;}
.ls4f_c00288{letter-spacing:-0.502680px;}
.ls6f_c00288{letter-spacing:-0.488520px;}
.ls7d_c00288{letter-spacing:-0.474360px;}
.ls2f_c00288{letter-spacing:-0.460200px;}
.ls76_c00288{letter-spacing:-0.453120px;}
.ls70_c00288{letter-spacing:-0.446040px;}
.ls8b_c00288{letter-spacing:-0.438960px;}
.ls5c_c00288{letter-spacing:-0.424800px;}
.ls5b_c00288{letter-spacing:-0.403560px;}
.ls5e_c00288{letter-spacing:-0.396480px;}
.ls4a_c00288{letter-spacing:-0.389400px;}
.ls37_c00288{letter-spacing:-0.382320px;}
.ls82_c00288{letter-spacing:-0.354000px;}
.ls3a_c00288{letter-spacing:-0.346920px;}
.ls63_c00288{letter-spacing:-0.332760px;}
.ls50_c00288{letter-spacing:-0.318600px;}
.ls47_c00288{letter-spacing:-0.290280px;}
.ls8e_c00288{letter-spacing:-0.283200px;}
.ls43_c00288{letter-spacing:-0.276120px;}
.ls6c_c00288{letter-spacing:-0.254880px;}
.ls60_c00288{letter-spacing:-0.247800px;}
.ls77_c00288{letter-spacing:-0.226560px;}
.ls8d_c00288{letter-spacing:-0.219480px;}
.ls57_c00288{letter-spacing:-0.212400px;}
.ls4b_c00288{letter-spacing:-0.205320px;}
.ls53_c00288{letter-spacing:-0.198240px;}
.ls56_c00288{letter-spacing:-0.191160px;}
.ls5a_c00288{letter-spacing:-0.177000px;}
.ls78_c00288{letter-spacing:-0.169920px;}
.ls6b_c00288{letter-spacing:-0.162840px;}
.ls79_c00288{letter-spacing:-0.148680px;}
.ls7c_c00288{letter-spacing:-0.141600px;}
.ls8a_c00288{letter-spacing:-0.127440px;}
.ls68_c00288{letter-spacing:-0.120360px;}
.ls72_c00288{letter-spacing:-0.113280px;}
.ls6d_c00288{letter-spacing:-0.099120px;}
.ls4d_c00288{letter-spacing:-0.084960px;}
.ls52_c00288{letter-spacing:-0.077880px;}
.ls7a_c00288{letter-spacing:-0.063720px;}
.ls7f_c00288{letter-spacing:-0.042480px;}
.ls65_c00288{letter-spacing:-0.035400px;}
.ls55_c00288{letter-spacing:-0.021240px;}
.ls58_c00288{letter-spacing:-0.014160px;}
.ls80_c00288{letter-spacing:-0.007080px;}
.ls30_c00288{letter-spacing:0.000000px;}
.ls26_c00288{letter-spacing:0.007080px;}
.lsb_c00288{letter-spacing:0.014160px;}
.lsf_c00288{letter-spacing:0.021240px;}
.ls10_c00288{letter-spacing:0.028320px;}
.ls1f_c00288{letter-spacing:0.035400px;}
.ls59_c00288{letter-spacing:0.042480px;}
.ls14_c00288{letter-spacing:0.056640px;}
.ls15_c00288{letter-spacing:0.077880px;}
.ls64_c00288{letter-spacing:0.092040px;}
.lse_c00288{letter-spacing:0.113280px;}
.ls61_c00288{letter-spacing:0.141600px;}
.ls21_c00288{letter-spacing:0.148680px;}
.ls11_c00288{letter-spacing:0.162840px;}
.lsd_c00288{letter-spacing:0.191160px;}
.ls1e_c00288{letter-spacing:0.205320px;}
.ls6_c00288{letter-spacing:0.219480px;}
.ls2_c00288{letter-spacing:0.226560px;}
.ls19_c00288{letter-spacing:0.233640px;}
.ls23_c00288{letter-spacing:0.247800px;}
.ls27_c00288{letter-spacing:0.269040px;}
.lsc_c00288{letter-spacing:0.276120px;}
.ls28_c00288{letter-spacing:0.311520px;}
.ls17_c00288{letter-spacing:0.332760px;}
.ls13_c00288{letter-spacing:0.431880px;}
.ls25_c00288{letter-spacing:0.460200px;}
.ls18_c00288{letter-spacing:0.502680px;}
.ls1c_c00288{letter-spacing:0.509760px;}
.ls12_c00288{letter-spacing:0.523920px;}
.ls22_c00288{letter-spacing:0.608880px;}
.ls2a_c00288{letter-spacing:0.623040px;}
.ls1b_c00288{letter-spacing:0.736320px;}
.ls29_c00288{letter-spacing:0.778800px;}
.ls16_c00288{letter-spacing:0.870840px;}
.ls1d_c00288{letter-spacing:1.019160px;}
.ls24_c00288{letter-spacing:1.128600px;}
.ls9_c00288{letter-spacing:1.224360px;}
.ls4_c00288{letter-spacing:1.224840px;}
.ls1a_c00288{letter-spacing:1.313280px;}
.ls2b_c00288{letter-spacing:1.444320px;}
.ls3_c00288{letter-spacing:1.458480px;}
.lsa_c00288{letter-spacing:1.472640px;}
.ls20_c00288{letter-spacing:1.522200px;}
.ls5_c00288{letter-spacing:1.557600px;}
.ls7_c00288{letter-spacing:1.614240px;}
.ls89_c00288{letter-spacing:1.830000px;}
.ls0_c00288{letter-spacing:2.099880px;}
.ls8_c00288{letter-spacing:2.147760px;}
.ls1_c00288{letter-spacing:2.763360px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{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__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00288{word-spacing:0.000000px;}
.ws1_c00288{word-spacing:2.202480px;}
.ws3_c00288{word-spacing:5.483400px;}
.ws2_c00288{word-spacing:19.540800px;}
.ws0_c00288{word-spacing:20.722560px;}
._0_c00288{margin-left:-11.812680px;}
._8_c00288{margin-left:-6.470640px;}
._1_c00288{margin-left:-4.568640px;}
._14_c00288{margin-left:-3.260160px;}
._9_c00288{margin-left:-1.908240px;}
._13_c00288{width:1.472640px;}
._3_c00288{width:2.718720px;}
._19_c00288{width:3.865680px;}
._2_c00288{width:5.416200px;}
._6_c00288{width:6.513600px;}
._1c_c00288{width:7.603920px;}
._4_c00288{width:8.637600px;}
._10_c00288{width:9.791640px;}
._7_c00288{width:10.881960px;}
._5_c00288{width:12.241320px;}
._1a_c00288{width:13.664400px;}
._1b_c00288{width:15.207840px;}
._11_c00288{width:16.269840px;}
._c_c00288{width:17.891160px;}
._12_c00288{width:19.094760px;}
._f_c00288{width:20.942640px;}
._e_c00288{width:22.443600px;}
._d_c00288{width:23.817120px;}
._a_c00288{width:24.935760px;}
._b_c00288{width:26.542920px;}
._20_c00288{width:33.290160px;}
._21_c00288{width:35.782320px;}
._22_c00288{width:37.800120px;}
._23_c00288{width:41.524200px;}
._16_c00288{width:43.131360px;}
._17_c00288{width:44.858880px;}
._15_c00288{width:47.195280px;}
._18_c00288{width:48.575880px;}
._1d_c00288{width:82.862400px;}
._1e_c00288{width:112.842000px;}
._1f_c00288{width:156.574800px;}
.fc0_c00288{color:transparent;}
.fs6_c00288{font-size:8.640000px;}
.fs7_c00288{font-size:36.600000px;}
.fs5_c00288{font-size:56.160000px;}
.fs0_c00288{font-size:61.200000px;}
.fs8_c00288{font-size:66.600000px;}
.fs3_c00288{font-size:67.200000px;}
.fs1_c00288{font-size:68.400000px;}
.fs4_c00288{font-size:69.000000px;}
.fs2_c00288{font-size:70.800000px;}
.y0_c00288{bottom:0.000000px;}
.y20_c00288{bottom:70.920000px;}
.y1f_c00288{bottom:220.688700px;}
.y1e_c00288{bottom:252.000000px;}
.y1d_c00288{bottom:280.815000px;}
.y1c_c00288{bottom:283.695000px;}
.y1b_c00288{bottom:314.295000px;}
.y1a_c00288{bottom:375.855000px;}
.y19_c00288{bottom:375.857700px;}
.y18_c00288{bottom:406.815000px;}
.y17_c00288{bottom:406.817700px;}
.y16_c00288{bottom:437.775000px;}
.y15_c00288{bottom:437.780400px;}
.y14_c00288{bottom:468.737700px;}
.y13_c00288{bottom:499.695000px;}
.y12_c00288{bottom:560.897400px;}
.y11_c00288{bottom:592.208700px;}
.y10_c00288{bottom:623.520000px;}
.yf_c00288{bottom:686.516700px;}
.ye_c00288{bottom:717.491700px;}
.yd_c00288{bottom:748.100400px;}
.yc_c00288{bottom:779.040000px;}
.yb_c00288{bottom:779.042700px;}
.ya_c00288{bottom:810.000000px;}
.y9_c00288{bottom:840.975000px;}
.y8_c00288{bottom:902.880000px;}
.y7_c00288{bottom:964.455000px;}
.y6_c00288{bottom:995.040000px;}
.y5_c00288{bottom:1026.000000px;}
.y4_c00288{bottom:1026.002700px;}
.y3_c00288{bottom:1087.935000px;}
.y2_c00288{bottom:1118.880000px;}
.y1_c00288{bottom:1195.200000px;}
.h7_c00288{height:5.754240px;}
.h8_c00288{height:35.920898px;}
.h6_c00288{height:37.402560px;}
.h2_c00288{height:60.064453px;}
.ha_c00288{height:65.364258px;}
.h4_c00288{height:65.953125px;}
.h5_c00288{height:67.719727px;}
.h3_c00288{height:69.486328px;}
.h9_c00288{height:69.511528px;}
.h1_c00288{height:1263.000000px;}
.h0_c00288{height:1263.240000px;}
.w1_c00288{width:892.500000px;}
.w0_c00288{width:892.800000px;}
.x0_c00288{left:0.000000px;}
.x14_c00288{left:120.265200px;}
.xf_c00288{left:121.467900px;}
.x1_c00288{left:123.405000px;}
.x4_c00288{left:174.495000px;}
.x7_c00288{left:175.598100px;}
.x5_c00288{left:242.805000px;}
.x6_c00288{left:267.585000px;}
.x12_c00288{left:305.835000px;}
.x2_c00288{left:316.935000px;}
.x13_c00288{left:328.530000px;}
.x22_c00288{left:345.750000px;}
.x9_c00288{left:374.205000px;}
.xa_c00288{left:404.025000px;}
.x1b_c00288{left:421.755000px;}
.x25_c00288{left:425.430000px;}
.x1c_c00288{left:444.930000px;}
.x15_c00288{left:452.445000px;}
.xc_c00288{left:461.925000px;}
.x1f_c00288{left:475.755000px;}
.xd_c00288{left:479.325000px;}
.x16_c00288{left:485.850000px;}
.xe_c00288{left:507.390000px;}
.x1d_c00288{left:508.515000px;}
.x23_c00288{left:512.280000px;}
.x3_c00288{left:526.785000px;}
.x20_c00288{left:540.465000px;}
.x24_c00288{left:575.475000px;}
.x10_c00288{left:604.410000px;}
.x1e_c00288{left:610.020000px;}
.x19_c00288{left:616.695000px;}
.x11_c00288{left:660.765000px;}
.x17_c00288{left:695.085000px;}
.x1a_c00288{left:698.730000px;}
.x21_c00288{left:710.115000px;}
.x18_c00288{left:727.815000px;}
.xb_c00288{left:731.325000px;}
.x8_c00288{left:733.440000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls2d_c00288{letter-spacing:-2.202667pt;}
.ls6a_c00288{letter-spacing:-2.146667pt;}
.ls84_c00288{letter-spacing:-2.127147pt;}
.ls67_c00288{letter-spacing:-2.090667pt;}
.ls8f_c00288{letter-spacing:-2.072000pt;}
.ls33_c00288{letter-spacing:-2.051627pt;}
.ls86_c00288{letter-spacing:-1.831360pt;}
.ls49_c00288{letter-spacing:-1.825067pt;}
.ls3c_c00288{letter-spacing:-1.774720pt;}
.ls35_c00288{letter-spacing:-1.768427pt;}
.ls3f_c00288{letter-spacing:-1.680320pt;}
.ls34_c00288{letter-spacing:-1.648853pt;}
.ls36_c00288{letter-spacing:-1.617387pt;}
.ls7b_c00288{letter-spacing:-1.434880pt;}
.ls3e_c00288{letter-spacing:-1.340480pt;}
.ls41_c00288{letter-spacing:-1.315307pt;}
.ls44_c00288{letter-spacing:-1.176853pt;}
.ls85_c00288{letter-spacing:-1.151680pt;}
.ls66_c00288{letter-spacing:-1.145387pt;}
.ls32_c00288{letter-spacing:-1.139093pt;}
.ls39_c00288{letter-spacing:-1.076160pt;}
.ls88_c00288{letter-spacing:-1.019520pt;}
.ls73_c00288{letter-spacing:-0.994347pt;}
.ls62_c00288{letter-spacing:-0.988053pt;}
.ls3d_c00288{letter-spacing:-0.975467pt;}
.ls81_c00288{letter-spacing:-0.931413pt;}
.ls54_c00288{letter-spacing:-0.925120pt;}
.ls46_c00288{letter-spacing:-0.912533pt;}
.ls38_c00288{letter-spacing:-0.899947pt;}
.ls69_c00288{letter-spacing:-0.887360pt;}
.ls40_c00288{letter-spacing:-0.862187pt;}
.ls4c_c00288{letter-spacing:-0.830720pt;}
.ls31_c00288{letter-spacing:-0.767787pt;}
.ls6e_c00288{letter-spacing:-0.736320pt;}
.ls45_c00288{letter-spacing:-0.723733pt;}
.ls2e_c00288{letter-spacing:-0.711147pt;}
.ls42_c00288{letter-spacing:-0.698560pt;}
.ls3b_c00288{letter-spacing:-0.667093pt;}
.ls2c_c00288{letter-spacing:-0.648213pt;}
.ls51_c00288{letter-spacing:-0.641920pt;}
.ls7e_c00288{letter-spacing:-0.604160pt;}
.ls75_c00288{letter-spacing:-0.585280pt;}
.ls4e_c00288{letter-spacing:-0.572693pt;}
.ls87_c00288{letter-spacing:-0.566400pt;}
.ls8c_c00288{letter-spacing:-0.553813pt;}
.ls5f_c00288{letter-spacing:-0.547520pt;}
.ls48_c00288{letter-spacing:-0.503467pt;}
.ls71_c00288{letter-spacing:-0.497173pt;}
.ls83_c00288{letter-spacing:-0.490880pt;}
.ls74_c00288{letter-spacing:-0.478293pt;}
.ls5d_c00288{letter-spacing:-0.453120pt;}
.ls4f_c00288{letter-spacing:-0.446827pt;}
.ls6f_c00288{letter-spacing:-0.434240pt;}
.ls7d_c00288{letter-spacing:-0.421653pt;}
.ls2f_c00288{letter-spacing:-0.409067pt;}
.ls76_c00288{letter-spacing:-0.402773pt;}
.ls70_c00288{letter-spacing:-0.396480pt;}
.ls8b_c00288{letter-spacing:-0.390187pt;}
.ls5c_c00288{letter-spacing:-0.377600pt;}
.ls5b_c00288{letter-spacing:-0.358720pt;}
.ls5e_c00288{letter-spacing:-0.352427pt;}
.ls4a_c00288{letter-spacing:-0.346133pt;}
.ls37_c00288{letter-spacing:-0.339840pt;}
.ls82_c00288{letter-spacing:-0.314667pt;}
.ls3a_c00288{letter-spacing:-0.308373pt;}
.ls63_c00288{letter-spacing:-0.295787pt;}
.ls50_c00288{letter-spacing:-0.283200pt;}
.ls47_c00288{letter-spacing:-0.258027pt;}
.ls8e_c00288{letter-spacing:-0.251733pt;}
.ls43_c00288{letter-spacing:-0.245440pt;}
.ls6c_c00288{letter-spacing:-0.226560pt;}
.ls60_c00288{letter-spacing:-0.220267pt;}
.ls77_c00288{letter-spacing:-0.201387pt;}
.ls8d_c00288{letter-spacing:-0.195093pt;}
.ls57_c00288{letter-spacing:-0.188800pt;}
.ls4b_c00288{letter-spacing:-0.182507pt;}
.ls53_c00288{letter-spacing:-0.176213pt;}
.ls56_c00288{letter-spacing:-0.169920pt;}
.ls5a_c00288{letter-spacing:-0.157333pt;}
.ls78_c00288{letter-spacing:-0.151040pt;}
.ls6b_c00288{letter-spacing:-0.144747pt;}
.ls79_c00288{letter-spacing:-0.132160pt;}
.ls7c_c00288{letter-spacing:-0.125867pt;}
.ls8a_c00288{letter-spacing:-0.113280pt;}
.ls68_c00288{letter-spacing:-0.106987pt;}
.ls72_c00288{letter-spacing:-0.100693pt;}
.ls6d_c00288{letter-spacing:-0.088107pt;}
.ls4d_c00288{letter-spacing:-0.075520pt;}
.ls52_c00288{letter-spacing:-0.069227pt;}
.ls7a_c00288{letter-spacing:-0.056640pt;}
.ls7f_c00288{letter-spacing:-0.037760pt;}
.ls65_c00288{letter-spacing:-0.031467pt;}
.ls55_c00288{letter-spacing:-0.018880pt;}
.ls58_c00288{letter-spacing:-0.012587pt;}
.ls80_c00288{letter-spacing:-0.006293pt;}
.ls30_c00288{letter-spacing:0.000000pt;}
.ls26_c00288{letter-spacing:0.006293pt;}
.lsb_c00288{letter-spacing:0.012587pt;}
.lsf_c00288{letter-spacing:0.018880pt;}
.ls10_c00288{letter-spacing:0.025173pt;}
.ls1f_c00288{letter-spacing:0.031467pt;}
.ls59_c00288{letter-spacing:0.037760pt;}
.ls14_c00288{letter-spacing:0.050347pt;}
.ls15_c00288{letter-spacing:0.069227pt;}
.ls64_c00288{letter-spacing:0.081813pt;}
.lse_c00288{letter-spacing:0.100693pt;}
.ls61_c00288{letter-spacing:0.125867pt;}
.ls21_c00288{letter-spacing:0.132160pt;}
.ls11_c00288{letter-spacing:0.144747pt;}
.lsd_c00288{letter-spacing:0.169920pt;}
.ls1e_c00288{letter-spacing:0.182507pt;}
.ls6_c00288{letter-spacing:0.195093pt;}
.ls2_c00288{letter-spacing:0.201387pt;}
.ls19_c00288{letter-spacing:0.207680pt;}
.ls23_c00288{letter-spacing:0.220267pt;}
.ls27_c00288{letter-spacing:0.239147pt;}
.lsc_c00288{letter-spacing:0.245440pt;}
.ls28_c00288{letter-spacing:0.276907pt;}
.ls17_c00288{letter-spacing:0.295787pt;}
.ls13_c00288{letter-spacing:0.383893pt;}
.ls25_c00288{letter-spacing:0.409067pt;}
.ls18_c00288{letter-spacing:0.446827pt;}
.ls1c_c00288{letter-spacing:0.453120pt;}
.ls12_c00288{letter-spacing:0.465707pt;}
.ls22_c00288{letter-spacing:0.541227pt;}
.ls2a_c00288{letter-spacing:0.553813pt;}
.ls1b_c00288{letter-spacing:0.654507pt;}
.ls29_c00288{letter-spacing:0.692267pt;}
.ls16_c00288{letter-spacing:0.774080pt;}
.ls1d_c00288{letter-spacing:0.905920pt;}
.ls24_c00288{letter-spacing:1.003200pt;}
.ls9_c00288{letter-spacing:1.088320pt;}
.ls4_c00288{letter-spacing:1.088747pt;}
.ls1a_c00288{letter-spacing:1.167360pt;}
.ls2b_c00288{letter-spacing:1.283840pt;}
.ls3_c00288{letter-spacing:1.296427pt;}
.lsa_c00288{letter-spacing:1.309013pt;}
.ls20_c00288{letter-spacing:1.353067pt;}
.ls5_c00288{letter-spacing:1.384533pt;}
.ls7_c00288{letter-spacing:1.434880pt;}
.ls89_c00288{letter-spacing:1.626667pt;}
.ls0_c00288{letter-spacing:1.866560pt;}
.ls8_c00288{letter-spacing:1.909120pt;}
.ls1_c00288{letter-spacing:2.456320pt;}
.ws4_c00288{word-spacing:0.000000pt;}
.ws1_c00288{word-spacing:1.957760pt;}
.ws3_c00288{word-spacing:4.874133pt;}
.ws2_c00288{word-spacing:17.369600pt;}
.ws0_c00288{word-spacing:18.420053pt;}
._0_c00288{margin-left:-10.500160pt;}
._8_c00288{margin-left:-5.751680pt;}
._1_c00288{margin-left:-4.061013pt;}
._14_c00288{margin-left:-2.897920pt;}
._9_c00288{margin-left:-1.696213pt;}
._13_c00288{width:1.309013pt;}
._3_c00288{width:2.416640pt;}
._19_c00288{width:3.436160pt;}
._2_c00288{width:4.814400pt;}
._6_c00288{width:5.789867pt;}
._1c_c00288{width:6.759040pt;}
._4_c00288{width:7.677867pt;}
._10_c00288{width:8.703680pt;}
._7_c00288{width:9.672853pt;}
._5_c00288{width:10.881173pt;}
._1a_c00288{width:12.146133pt;}
._1b_c00288{width:13.518080pt;}
._11_c00288{width:14.462080pt;}
._c_c00288{width:15.903253pt;}
._12_c00288{width:16.973120pt;}
._f_c00288{width:18.615680pt;}
._e_c00288{width:19.949867pt;}
._d_c00288{width:21.170773pt;}
._a_c00288{width:22.165120pt;}
._b_c00288{width:23.593707pt;}
._20_c00288{width:29.591253pt;}
._21_c00288{width:31.806507pt;}
._22_c00288{width:33.600107pt;}
._23_c00288{width:36.910400pt;}
._16_c00288{width:38.338987pt;}
._17_c00288{width:39.874560pt;}
._15_c00288{width:41.951360pt;}
._18_c00288{width:43.178560pt;}
._1d_c00288{width:73.655467pt;}
._1e_c00288{width:100.304000pt;}
._1f_c00288{width:139.177600pt;}
.fs6_c00288{font-size:7.680000pt;}
.fs7_c00288{font-size:32.533333pt;}
.fs5_c00288{font-size:49.920000pt;}
.fs0_c00288{font-size:54.400000pt;}
.fs8_c00288{font-size:59.200000pt;}
.fs3_c00288{font-size:59.733333pt;}
.fs1_c00288{font-size:60.800000pt;}
.fs4_c00288{font-size:61.333333pt;}
.fs2_c00288{font-size:62.933333pt;}
.y0_c00288{bottom:0.000000pt;}
.y20_c00288{bottom:63.040000pt;}
.y1f_c00288{bottom:196.167733pt;}
.y1e_c00288{bottom:224.000000pt;}
.y1d_c00288{bottom:249.613333pt;}
.y1c_c00288{bottom:252.173333pt;}
.y1b_c00288{bottom:279.373333pt;}
.y1a_c00288{bottom:334.093333pt;}
.y19_c00288{bottom:334.095733pt;}
.y18_c00288{bottom:361.613333pt;}
.y17_c00288{bottom:361.615733pt;}
.y16_c00288{bottom:389.133333pt;}
.y15_c00288{bottom:389.138133pt;}
.y14_c00288{bottom:416.655733pt;}
.y13_c00288{bottom:444.173333pt;}
.y12_c00288{bottom:498.575467pt;}
.y11_c00288{bottom:526.407733pt;}
.y10_c00288{bottom:554.240000pt;}
.yf_c00288{bottom:610.237067pt;}
.ye_c00288{bottom:637.770400pt;}
.yd_c00288{bottom:664.978133pt;}
.yc_c00288{bottom:692.480000pt;}
.yb_c00288{bottom:692.482400pt;}
.ya_c00288{bottom:720.000000pt;}
.y9_c00288{bottom:747.533333pt;}
.y8_c00288{bottom:802.560000pt;}
.y7_c00288{bottom:857.293333pt;}
.y6_c00288{bottom:884.480000pt;}
.y5_c00288{bottom:912.000000pt;}
.y4_c00288{bottom:912.002400pt;}
.y3_c00288{bottom:967.053333pt;}
.y2_c00288{bottom:994.560000pt;}
.y1_c00288{bottom:1062.400000pt;}
.h7_c00288{height:5.114880pt;}
.h8_c00288{height:31.929687pt;}
.h6_c00288{height:33.246720pt;}
.h2_c00288{height:53.390625pt;}
.ha_c00288{height:58.101562pt;}
.h4_c00288{height:58.625000pt;}
.h5_c00288{height:60.195312pt;}
.h3_c00288{height:61.765625pt;}
.h9_c00288{height:61.788025pt;}
.h1_c00288{height:1122.666667pt;}
.h0_c00288{height:1122.880000pt;}
.w1_c00288{width:793.333333pt;}
.w0_c00288{width:793.600000pt;}
.x0_c00288{left:0.000000pt;}
.x14_c00288{left:106.902400pt;}
.xf_c00288{left:107.971467pt;}
.x1_c00288{left:109.693333pt;}
.x4_c00288{left:155.106667pt;}
.x7_c00288{left:156.087200pt;}
.x5_c00288{left:215.826667pt;}
.x6_c00288{left:237.853333pt;}
.x12_c00288{left:271.853333pt;}
.x2_c00288{left:281.720000pt;}
.x13_c00288{left:292.026667pt;}
.x22_c00288{left:307.333333pt;}
.x9_c00288{left:332.626667pt;}
.xa_c00288{left:359.133333pt;}
.x1b_c00288{left:374.893333pt;}
.x25_c00288{left:378.160000pt;}
.x1c_c00288{left:395.493333pt;}
.x15_c00288{left:402.173333pt;}
.xc_c00288{left:410.600000pt;}
.x1f_c00288{left:422.893333pt;}
.xd_c00288{left:426.066667pt;}
.x16_c00288{left:431.866667pt;}
.xe_c00288{left:451.013333pt;}
.x1d_c00288{left:452.013333pt;}
.x23_c00288{left:455.360000pt;}
.x3_c00288{left:468.253333pt;}
.x20_c00288{left:480.413333pt;}
.x24_c00288{left:511.533333pt;}
.x10_c00288{left:537.253333pt;}
.x1e_c00288{left:542.240000pt;}
.x19_c00288{left:548.173333pt;}
.x11_c00288{left:587.346667pt;}
.x17_c00288{left:617.853333pt;}
.x1a_c00288{left:621.093333pt;}
.x21_c00288{left:631.213333pt;}
.x18_c00288{left:646.946667pt;}
.xb_c00288{left:650.066667pt;}
.x8_c00288{left:651.946667pt;}
}





/* 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_c00289 {
    display:none;
  }
  .loading-indicator_c00289.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00289 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_c00289 { 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_c00289" -> "#page-container .classname_c00289")
 */
.pf_c00289 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00289 { /* 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_c00289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00289 { /* 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_c00289 { /* 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_c00289 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00289 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00289 {overflow:visible;}
  }
}
.c_c00289 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00289 { /* 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_c00289:after { /* webkit #35443 */
  content: '';
}
.t_c00289:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00289 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 */
}
.__c00289 { /* 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_c00289 { /* info for Javascript */
  display:none;
}
.l_c00289 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00289 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00289 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00289: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_c00289 {
    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_c00289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00289.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_c00289 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00289;src:url('chunks/assets/font_a78b2632dda65e30cdfa7426.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.284668;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_c00289;src:url('chunks/assets/font_700d663bc9ac1e8e254a9372.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.284180;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;}
.ma_c00289{transform:matrix(0.198852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198852,0.000000,0.000000,0.250000,0,0);}
.m9_c00289{transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);}
.mc_c00289{transform:matrix(0.242013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242013,0.000000,0.000000,0.250000,0,0);}
.m2_c00289{transform:matrix(0.245209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245209,0.000000,0.000000,0.250000,0,0);}
.m8_c00289{transform:matrix(0.245595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245595,0.000000,0.000000,0.250000,0,0);}
.m3_c00289{transform:matrix(0.245959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245959,0.000000,0.000000,0.250000,0,0);}
.md_c00289{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m7_c00289{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m5_c00289{transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);}
.m0_c00289{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);}
.m4_c00289{transform:matrix(0.253601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253601,0.000000,0.000000,0.250000,0,0);}
.mb_c00289{transform:matrix(0.270653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270653,0.000000,0.000000,0.250000,0,0);}
.m6_c00289{transform:matrix(0.292591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292591,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls8c_c00289{letter-spacing:-2.478000px;}
.ls5d_c00289{letter-spacing:-2.436000px;}
.ls62_c00289{letter-spacing:-2.234160px;}
.ls6b_c00289{letter-spacing:-2.136720px;}
.ls6e_c00289{letter-spacing:-1.927920px;}
.ls60_c00289{letter-spacing:-1.774800px;}
.ls65_c00289{letter-spacing:-1.760880px;}
.ls88_c00289{letter-spacing:-1.649520px;}
.ls99_c00289{letter-spacing:-1.552080px;}
.ls76_c00289{letter-spacing:-1.531200px;}
.ls58_c00289{letter-spacing:-1.426800px;}
.ls85_c00289{letter-spacing:-1.343280px;}
.ls5f_c00289{letter-spacing:-1.315440px;}
.ls69_c00289{letter-spacing:-1.294560px;}
.ls5e_c00289{letter-spacing:-1.266720px;}
.ls73_c00289{letter-spacing:-1.218000px;}
.ls6c_c00289{letter-spacing:-1.190160px;}
.ls90_c00289{letter-spacing:-1.169280px;}
.ls61_c00289{letter-spacing:-1.078800px;}
.ls5b_c00289{letter-spacing:-1.064880px;}
.ls8b_c00289{letter-spacing:-1.057920px;}
.ls68_c00289{letter-spacing:-1.023120px;}
.ls56_c00289{letter-spacing:-0.974400px;}
.ls77_c00289{letter-spacing:-0.904800px;}
.ls9a_c00289{letter-spacing:-0.892800px;}
.ls66_c00289{letter-spacing:-0.842160px;}
.ls7d_c00289{letter-spacing:-0.814320px;}
.ls7e_c00289{letter-spacing:-0.716880px;}
.ls52_c00289{letter-spacing:-0.689040px;}
.ls6d_c00289{letter-spacing:-0.668160px;}
.ls8f_c00289{letter-spacing:-0.563760px;}
.ls57_c00289{letter-spacing:-0.508080px;}
.ls86_c00289{letter-spacing:-0.501120px;}
.ls53_c00289{letter-spacing:-0.473280px;}
.ls98_c00289{letter-spacing:-0.459360px;}
.ls5c_c00289{letter-spacing:-0.452400px;}
.ls93_c00289{letter-spacing:-0.431520px;}
.ls89_c00289{letter-spacing:-0.403680px;}
.ls70_c00289{letter-spacing:-0.361920px;}
.ls94_c00289{letter-spacing:-0.354960px;}
.ls83_c00289{letter-spacing:-0.334080px;}
.ls64_c00289{letter-spacing:-0.320160px;}
.ls74_c00289{letter-spacing:-0.313200px;}
.ls6f_c00289{letter-spacing:-0.306240px;}
.ls7f_c00289{letter-spacing:-0.285360px;}
.ls92_c00289{letter-spacing:-0.264480px;}
.ls80_c00289{letter-spacing:-0.250560px;}
.ls5a_c00289{letter-spacing:-0.243600px;}
.ls7b_c00289{letter-spacing:-0.208800px;}
.ls63_c00289{letter-spacing:-0.187920px;}
.ls6a_c00289{letter-spacing:-0.180960px;}
.ls72_c00289{letter-spacing:-0.160080px;}
.ls75_c00289{letter-spacing:-0.153120px;}
.ls8e_c00289{letter-spacing:-0.146160px;}
.ls55_c00289{letter-spacing:-0.132240px;}
.ls7c_c00289{letter-spacing:-0.111360px;}
.ls91_c00289{letter-spacing:-0.104400px;}
.ls78_c00289{letter-spacing:-0.097440px;}
.ls81_c00289{letter-spacing:-0.090480px;}
.ls84_c00289{letter-spacing:-0.076560px;}
.ls7a_c00289{letter-spacing:-0.055680px;}
.ls87_c00289{letter-spacing:-0.048720px;}
.ls51_c00289{letter-spacing:-0.041760px;}
.ls96_c00289{letter-spacing:-0.034800px;}
.ls82_c00289{letter-spacing:-0.027840px;}
.ls8a_c00289{letter-spacing:-0.013920px;}
.ls59_c00289{letter-spacing:-0.006960px;}
.ls54_c00289{letter-spacing:0.000000px;}
.ls4d_c00289{letter-spacing:0.013920px;}
.lsa_c00289{letter-spacing:0.020880px;}
.ls14_c00289{letter-spacing:0.027840px;}
.ls2a_c00289{letter-spacing:0.048720px;}
.ls8d_c00289{letter-spacing:0.055680px;}
.ls1a_c00289{letter-spacing:0.062640px;}
.ls40_c00289{letter-spacing:0.069600px;}
.ls4e_c00289{letter-spacing:0.083520px;}
.ls2_c00289{letter-spacing:0.090480px;}
.ls36_c00289{letter-spacing:0.097440px;}
.ls46_c00289{letter-spacing:0.104400px;}
.ls4c_c00289{letter-spacing:0.118320px;}
.ls2b_c00289{letter-spacing:0.125280px;}
.ls2c_c00289{letter-spacing:0.132240px;}
.ls42_c00289{letter-spacing:0.139200px;}
.ls3a_c00289{letter-spacing:0.153120px;}
.ls34_c00289{letter-spacing:0.160080px;}
.ls41_c00289{letter-spacing:0.174000px;}
.ls31_c00289{letter-spacing:0.201840px;}
.ls22_c00289{letter-spacing:0.208800px;}
.ls26_c00289{letter-spacing:0.215760px;}
.lsf_c00289{letter-spacing:0.222720px;}
.lsd_c00289{letter-spacing:0.229680px;}
.ls5_c00289{letter-spacing:0.236640px;}
.ls25_c00289{letter-spacing:0.250560px;}
.ls43_c00289{letter-spacing:0.285360px;}
.ls17_c00289{letter-spacing:0.292320px;}
.ls10_c00289{letter-spacing:0.299280px;}
.ls39_c00289{letter-spacing:0.306240px;}
.ls24_c00289{letter-spacing:0.313200px;}
.ls3b_c00289{letter-spacing:0.320160px;}
.ls21_c00289{letter-spacing:0.334080px;}
.ls1c_c00289{letter-spacing:0.348000px;}
.ls44_c00289{letter-spacing:0.375840px;}
.ls37_c00289{letter-spacing:0.382800px;}
.ls79_c00289{letter-spacing:0.389760px;}
.ls3f_c00289{letter-spacing:0.396720px;}
.ls97_c00289{letter-spacing:0.403680px;}
.ls49_c00289{letter-spacing:0.410640px;}
.ls1e_c00289{letter-spacing:0.424560px;}
.ls45_c00289{letter-spacing:0.438480px;}
.ls3e_c00289{letter-spacing:0.466320px;}
.ls13_c00289{letter-spacing:0.473280px;}
.ls3d_c00289{letter-spacing:0.480240px;}
.ls30_c00289{letter-spacing:0.528960px;}
.lse_c00289{letter-spacing:0.542880px;}
.ls3_c00289{letter-spacing:0.556800px;}
.ls67_c00289{letter-spacing:0.591600px;}
.ls4a_c00289{letter-spacing:0.598560px;}
.ls47_c00289{letter-spacing:0.605520px;}
.ls32_c00289{letter-spacing:0.619440px;}
.lsb_c00289{letter-spacing:0.640320px;}
.ls29_c00289{letter-spacing:0.675120px;}
.ls35_c00289{letter-spacing:0.730800px;}
.ls27_c00289{letter-spacing:0.751680px;}
.ls2e_c00289{letter-spacing:0.765600px;}
.ls1_c00289{letter-spacing:0.766140px;}
.ls95_c00289{letter-spacing:0.786480px;}
.ls23_c00289{letter-spacing:0.793440px;}
.ls28_c00289{letter-spacing:0.828240px;}
.ls1d_c00289{letter-spacing:0.863040px;}
.ls19_c00289{letter-spacing:0.894960px;}
.ls20_c00289{letter-spacing:0.925680px;}
.ls3c_c00289{letter-spacing:0.935640px;}
.ls1f_c00289{letter-spacing:0.939600px;}
.ls0_c00289{letter-spacing:0.942420px;}
.ls4_c00289{letter-spacing:0.953520px;}
.ls7_c00289{letter-spacing:1.002240px;}
.ls48_c00289{letter-spacing:1.057680px;}
.ls8_c00289{letter-spacing:1.113600px;}
.ls38_c00289{letter-spacing:1.118700px;}
.ls4b_c00289{letter-spacing:1.127520px;}
.ls1b_c00289{letter-spacing:1.139040px;}
.ls15_c00289{letter-spacing:1.155360px;}
.ls33_c00289{letter-spacing:1.190160px;}
.ls16_c00289{letter-spacing:1.197120px;}
.ls2d_c00289{letter-spacing:1.266720px;}
.ls18_c00289{letter-spacing:1.308540px;}
.ls2f_c00289{letter-spacing:1.447680px;}
.ls4f_c00289{letter-spacing:1.552080px;}
.lsc_c00289{letter-spacing:1.802640px;}
.ls12_c00289{letter-spacing:1.979760px;}
.ls11_c00289{letter-spacing:2.108580px;}
.ls50_c00289{letter-spacing:2.148000px;}
.ls6_c00289{letter-spacing:2.495040px;}
.ls9_c00289{letter-spacing:2.839680px;}
.ls71_c00289{letter-spacing:3.480000px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{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__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00289{word-spacing:-0.054000px;}
.ws5_c00289{word-spacing:0.000000px;}
.ws1_c00289{word-spacing:5.189640px;}
.ws0_c00289{word-spacing:7.605660px;}
.ws4_c00289{word-spacing:10.140600px;}
.ws3_c00289{word-spacing:14.009400px;}
._e_c00289{margin-left:-8.846400px;}
._b_c00289{margin-left:-6.515580px;}
._19_c00289{margin-left:-5.373120px;}
._c_c00289{margin-left:-3.733200px;}
._a_c00289{margin-left:-1.740000px;}
._17_c00289{width:1.016160px;}
._d_c00289{width:2.032320px;}
._2_c00289{width:3.132000px;}
._9_c00289{width:4.628400px;}
._5_c00289{width:5.888160px;}
._1_c00289{width:7.147920px;}
._0_c00289{width:8.651280px;}
._7_c00289{width:9.757920px;}
._8_c00289{width:11.741520px;}
._6_c00289{width:12.841200px;}
._4_c00289{width:14.685600px;}
._18_c00289{width:16.098480px;}
._3_c00289{width:18.606240px;}
._16_c00289{width:23.441280px;}
._14_c00289{width:27.596400px;}
._11_c00289{width:29.510400px;}
._13_c00289{width:31.431360px;}
._15_c00289{width:32.468400px;}
._10_c00289{width:33.839520px;}
._12_c00289{width:34.967040px;}
._f_c00289{width:37.507440px;}
.fc0_c00289{color:transparent;}
.fs4_c00289{font-size:57.600000px;}
.fs0_c00289{font-size:60.000000px;}
.fs1_c00289{font-size:67.800000px;}
.fs2_c00289{font-size:69.600000px;}
.fs3_c00289{font-size:70.800000px;}
.y0_c00289{bottom:0.000000px;}
.y26_c00289{bottom:74.535000px;}
.y25_c00289{bottom:164.521800px;}
.y24_c00289{bottom:195.128400px;}
.y23_c00289{bottom:225.735000px;}
.y22_c00289{bottom:287.640000px;}
.y21_c00289{bottom:287.647200px;}
.y20_c00289{bottom:318.601800px;}
.y1f_c00289{bottom:349.208400px;}
.y1e_c00289{bottom:379.815000px;}
.y1d_c00289{bottom:379.820400px;}
.y1c_c00289{bottom:410.775000px;}
.y1b_c00289{bottom:410.780400px;}
.y1a_c00289{bottom:441.735000px;}
.y19_c00289{bottom:504.360000px;}
.y18_c00289{bottom:566.993400px;}
.y17_c00289{bottom:597.600000px;}
.y16_c00289{bottom:597.603000px;}
.y14_c00289{bottom:628.568400px;}
.y15_c00289{bottom:628.575000px;}
.y12_c00289{bottom:659.168400px;}
.y13_c00289{bottom:659.175000px;}
.y11_c00289{bottom:689.775000px;}
.y10_c00289{bottom:689.791200px;}
.yf_c00289{bottom:720.745800px;}
.ye_c00289{bottom:751.700400px;}
.yd_c00289{bottom:782.655000px;}
.yc_c00289{bottom:844.560000px;}
.yb_c00289{bottom:875.175000px;}
.ya_c00289{bottom:875.180400px;}
.y8_c00289{bottom:906.127200px;}
.y9_c00289{bottom:906.135000px;}
.y7_c00289{bottom:966.975000px;}
.y6_c00289{bottom:966.976200px;}
.y5_c00289{bottom:997.200000px;}
.y4_c00289{bottom:1058.400000px;}
.y3_c00289{bottom:1089.723000px;}
.y2_c00289{bottom:1120.695000px;}
.y1_c00289{bottom:1196.295000px;}
.h5_c00289{height:56.531250px;}
.h2_c00289{height:58.886719px;}
.h3_c00289{height:68.308594px;}
.h4_c00289{height:69.486328px;}
.h1_c00289{height:1263.000000px;}
.h0_c00289{height:1263.240000px;}
.w1_c00289{width:892.500000px;}
.w0_c00289{width:892.800000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:118.005000px;}
.x11_c00289{left:119.685600px;}
.x21_c00289{left:121.449600px;}
.x2_c00289{left:171.525000px;}
.x8_c00289{left:172.640400px;}
.x4_c00289{left:174.508800px;}
.x5_c00289{left:242.445000px;}
.x6_c00289{left:270.255000px;}
.x7_c00289{left:287.550000px;}
.x20_c00289{left:291.060000px;}
.x3_c00289{left:322.335000px;}
.xf_c00289{left:335.790000px;}
.x12_c00289{left:348.240000px;}
.xb_c00289{left:358.365000px;}
.x13_c00289{left:374.940000px;}
.xc_c00289{left:386.175000px;}
.x9_c00289{left:402.240000px;}
.x10_c00289{left:408.630000px;}
.x22_c00289{left:421.110000px;}
.xa_c00289{left:427.605000px;}
.x16_c00289{left:431.835000px;}
.x18_c00289{left:434.340000px;}
.x14_c00289{left:447.720000px;}
.x19_c00289{left:451.050000px;}
.x17_c00289{left:454.890000px;}
.x1a_c00289{left:457.095000px;}
.xd_c00289{left:472.845000px;}
.x1c_c00289{left:485.970000px;}
.x15_c00289{left:489.525000px;}
.xe_c00289{left:500.565000px;}
.x1d_c00289{left:508.080000px;}
.x1b_c00289{left:694.695000px;}
.x1e_c00289{left:710.820000px;}
.x1f_c00289{left:732.570000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls8c_c00289{letter-spacing:-2.202667pt;}
.ls5d_c00289{letter-spacing:-2.165333pt;}
.ls62_c00289{letter-spacing:-1.985920pt;}
.ls6b_c00289{letter-spacing:-1.899307pt;}
.ls6e_c00289{letter-spacing:-1.713707pt;}
.ls60_c00289{letter-spacing:-1.577600pt;}
.ls65_c00289{letter-spacing:-1.565227pt;}
.ls88_c00289{letter-spacing:-1.466240pt;}
.ls99_c00289{letter-spacing:-1.379627pt;}
.ls76_c00289{letter-spacing:-1.361067pt;}
.ls58_c00289{letter-spacing:-1.268267pt;}
.ls85_c00289{letter-spacing:-1.194027pt;}
.ls5f_c00289{letter-spacing:-1.169280pt;}
.ls69_c00289{letter-spacing:-1.150720pt;}
.ls5e_c00289{letter-spacing:-1.125973pt;}
.ls73_c00289{letter-spacing:-1.082667pt;}
.ls6c_c00289{letter-spacing:-1.057920pt;}
.ls90_c00289{letter-spacing:-1.039360pt;}
.ls61_c00289{letter-spacing:-0.958933pt;}
.ls5b_c00289{letter-spacing:-0.946560pt;}
.ls8b_c00289{letter-spacing:-0.940373pt;}
.ls68_c00289{letter-spacing:-0.909440pt;}
.ls56_c00289{letter-spacing:-0.866133pt;}
.ls77_c00289{letter-spacing:-0.804267pt;}
.ls9a_c00289{letter-spacing:-0.793600pt;}
.ls66_c00289{letter-spacing:-0.748587pt;}
.ls7d_c00289{letter-spacing:-0.723840pt;}
.ls7e_c00289{letter-spacing:-0.637227pt;}
.ls52_c00289{letter-spacing:-0.612480pt;}
.ls6d_c00289{letter-spacing:-0.593920pt;}
.ls8f_c00289{letter-spacing:-0.501120pt;}
.ls57_c00289{letter-spacing:-0.451627pt;}
.ls86_c00289{letter-spacing:-0.445440pt;}
.ls53_c00289{letter-spacing:-0.420693pt;}
.ls98_c00289{letter-spacing:-0.408320pt;}
.ls5c_c00289{letter-spacing:-0.402133pt;}
.ls93_c00289{letter-spacing:-0.383573pt;}
.ls89_c00289{letter-spacing:-0.358827pt;}
.ls70_c00289{letter-spacing:-0.321707pt;}
.ls94_c00289{letter-spacing:-0.315520pt;}
.ls83_c00289{letter-spacing:-0.296960pt;}
.ls64_c00289{letter-spacing:-0.284587pt;}
.ls74_c00289{letter-spacing:-0.278400pt;}
.ls6f_c00289{letter-spacing:-0.272213pt;}
.ls7f_c00289{letter-spacing:-0.253653pt;}
.ls92_c00289{letter-spacing:-0.235093pt;}
.ls80_c00289{letter-spacing:-0.222720pt;}
.ls5a_c00289{letter-spacing:-0.216533pt;}
.ls7b_c00289{letter-spacing:-0.185600pt;}
.ls63_c00289{letter-spacing:-0.167040pt;}
.ls6a_c00289{letter-spacing:-0.160853pt;}
.ls72_c00289{letter-spacing:-0.142293pt;}
.ls75_c00289{letter-spacing:-0.136107pt;}
.ls8e_c00289{letter-spacing:-0.129920pt;}
.ls55_c00289{letter-spacing:-0.117547pt;}
.ls7c_c00289{letter-spacing:-0.098987pt;}
.ls91_c00289{letter-spacing:-0.092800pt;}
.ls78_c00289{letter-spacing:-0.086613pt;}
.ls81_c00289{letter-spacing:-0.080427pt;}
.ls84_c00289{letter-spacing:-0.068053pt;}
.ls7a_c00289{letter-spacing:-0.049493pt;}
.ls87_c00289{letter-spacing:-0.043307pt;}
.ls51_c00289{letter-spacing:-0.037120pt;}
.ls96_c00289{letter-spacing:-0.030933pt;}
.ls82_c00289{letter-spacing:-0.024747pt;}
.ls8a_c00289{letter-spacing:-0.012373pt;}
.ls59_c00289{letter-spacing:-0.006187pt;}
.ls54_c00289{letter-spacing:0.000000pt;}
.ls4d_c00289{letter-spacing:0.012373pt;}
.lsa_c00289{letter-spacing:0.018560pt;}
.ls14_c00289{letter-spacing:0.024747pt;}
.ls2a_c00289{letter-spacing:0.043307pt;}
.ls8d_c00289{letter-spacing:0.049493pt;}
.ls1a_c00289{letter-spacing:0.055680pt;}
.ls40_c00289{letter-spacing:0.061867pt;}
.ls4e_c00289{letter-spacing:0.074240pt;}
.ls2_c00289{letter-spacing:0.080427pt;}
.ls36_c00289{letter-spacing:0.086613pt;}
.ls46_c00289{letter-spacing:0.092800pt;}
.ls4c_c00289{letter-spacing:0.105173pt;}
.ls2b_c00289{letter-spacing:0.111360pt;}
.ls2c_c00289{letter-spacing:0.117547pt;}
.ls42_c00289{letter-spacing:0.123733pt;}
.ls3a_c00289{letter-spacing:0.136107pt;}
.ls34_c00289{letter-spacing:0.142293pt;}
.ls41_c00289{letter-spacing:0.154667pt;}
.ls31_c00289{letter-spacing:0.179413pt;}
.ls22_c00289{letter-spacing:0.185600pt;}
.ls26_c00289{letter-spacing:0.191787pt;}
.lsf_c00289{letter-spacing:0.197973pt;}
.lsd_c00289{letter-spacing:0.204160pt;}
.ls5_c00289{letter-spacing:0.210347pt;}
.ls25_c00289{letter-spacing:0.222720pt;}
.ls43_c00289{letter-spacing:0.253653pt;}
.ls17_c00289{letter-spacing:0.259840pt;}
.ls10_c00289{letter-spacing:0.266027pt;}
.ls39_c00289{letter-spacing:0.272213pt;}
.ls24_c00289{letter-spacing:0.278400pt;}
.ls3b_c00289{letter-spacing:0.284587pt;}
.ls21_c00289{letter-spacing:0.296960pt;}
.ls1c_c00289{letter-spacing:0.309333pt;}
.ls44_c00289{letter-spacing:0.334080pt;}
.ls37_c00289{letter-spacing:0.340267pt;}
.ls79_c00289{letter-spacing:0.346453pt;}
.ls3f_c00289{letter-spacing:0.352640pt;}
.ls97_c00289{letter-spacing:0.358827pt;}
.ls49_c00289{letter-spacing:0.365013pt;}
.ls1e_c00289{letter-spacing:0.377387pt;}
.ls45_c00289{letter-spacing:0.389760pt;}
.ls3e_c00289{letter-spacing:0.414507pt;}
.ls13_c00289{letter-spacing:0.420693pt;}
.ls3d_c00289{letter-spacing:0.426880pt;}
.ls30_c00289{letter-spacing:0.470187pt;}
.lse_c00289{letter-spacing:0.482560pt;}
.ls3_c00289{letter-spacing:0.494933pt;}
.ls67_c00289{letter-spacing:0.525867pt;}
.ls4a_c00289{letter-spacing:0.532053pt;}
.ls47_c00289{letter-spacing:0.538240pt;}
.ls32_c00289{letter-spacing:0.550613pt;}
.lsb_c00289{letter-spacing:0.569173pt;}
.ls29_c00289{letter-spacing:0.600107pt;}
.ls35_c00289{letter-spacing:0.649600pt;}
.ls27_c00289{letter-spacing:0.668160pt;}
.ls2e_c00289{letter-spacing:0.680533pt;}
.ls1_c00289{letter-spacing:0.681013pt;}
.ls95_c00289{letter-spacing:0.699093pt;}
.ls23_c00289{letter-spacing:0.705280pt;}
.ls28_c00289{letter-spacing:0.736213pt;}
.ls1d_c00289{letter-spacing:0.767147pt;}
.ls19_c00289{letter-spacing:0.795520pt;}
.ls20_c00289{letter-spacing:0.822827pt;}
.ls3c_c00289{letter-spacing:0.831680pt;}
.ls1f_c00289{letter-spacing:0.835200pt;}
.ls0_c00289{letter-spacing:0.837707pt;}
.ls4_c00289{letter-spacing:0.847573pt;}
.ls7_c00289{letter-spacing:0.890880pt;}
.ls48_c00289{letter-spacing:0.940160pt;}
.ls8_c00289{letter-spacing:0.989867pt;}
.ls38_c00289{letter-spacing:0.994400pt;}
.ls4b_c00289{letter-spacing:1.002240pt;}
.ls1b_c00289{letter-spacing:1.012480pt;}
.ls15_c00289{letter-spacing:1.026987pt;}
.ls33_c00289{letter-spacing:1.057920pt;}
.ls16_c00289{letter-spacing:1.064107pt;}
.ls2d_c00289{letter-spacing:1.125973pt;}
.ls18_c00289{letter-spacing:1.163147pt;}
.ls2f_c00289{letter-spacing:1.286827pt;}
.ls4f_c00289{letter-spacing:1.379627pt;}
.lsc_c00289{letter-spacing:1.602347pt;}
.ls12_c00289{letter-spacing:1.759787pt;}
.ls11_c00289{letter-spacing:1.874293pt;}
.ls50_c00289{letter-spacing:1.909333pt;}
.ls6_c00289{letter-spacing:2.217813pt;}
.ls9_c00289{letter-spacing:2.524160pt;}
.ls71_c00289{letter-spacing:3.093333pt;}
.ws2_c00289{word-spacing:-0.048000pt;}
.ws5_c00289{word-spacing:0.000000pt;}
.ws1_c00289{word-spacing:4.613013pt;}
.ws0_c00289{word-spacing:6.760587pt;}
.ws4_c00289{word-spacing:9.013867pt;}
.ws3_c00289{word-spacing:12.452800pt;}
._e_c00289{margin-left:-7.863467pt;}
._b_c00289{margin-left:-5.791627pt;}
._19_c00289{margin-left:-4.776107pt;}
._c_c00289{margin-left:-3.318400pt;}
._a_c00289{margin-left:-1.546667pt;}
._17_c00289{width:0.903253pt;}
._d_c00289{width:1.806507pt;}
._2_c00289{width:2.784000pt;}
._9_c00289{width:4.114133pt;}
._5_c00289{width:5.233920pt;}
._1_c00289{width:6.353707pt;}
._0_c00289{width:7.690027pt;}
._7_c00289{width:8.673707pt;}
._8_c00289{width:10.436907pt;}
._6_c00289{width:11.414400pt;}
._4_c00289{width:13.053867pt;}
._18_c00289{width:14.309760pt;}
._3_c00289{width:16.538880pt;}
._16_c00289{width:20.836693pt;}
._14_c00289{width:24.530133pt;}
._11_c00289{width:26.231467pt;}
._13_c00289{width:27.938987pt;}
._15_c00289{width:28.860800pt;}
._10_c00289{width:30.079573pt;}
._12_c00289{width:31.081813pt;}
._f_c00289{width:33.339947pt;}
.fs4_c00289{font-size:51.200000pt;}
.fs0_c00289{font-size:53.333333pt;}
.fs1_c00289{font-size:60.266667pt;}
.fs2_c00289{font-size:61.866667pt;}
.fs3_c00289{font-size:62.933333pt;}
.y0_c00289{bottom:0.000000pt;}
.y26_c00289{bottom:66.253333pt;}
.y25_c00289{bottom:146.241600pt;}
.y24_c00289{bottom:173.447467pt;}
.y23_c00289{bottom:200.653333pt;}
.y22_c00289{bottom:255.680000pt;}
.y21_c00289{bottom:255.686400pt;}
.y20_c00289{bottom:283.201600pt;}
.y1f_c00289{bottom:310.407467pt;}
.y1e_c00289{bottom:337.613333pt;}
.y1d_c00289{bottom:337.618133pt;}
.y1c_c00289{bottom:365.133333pt;}
.y1b_c00289{bottom:365.138133pt;}
.y1a_c00289{bottom:392.653333pt;}
.y19_c00289{bottom:448.320000pt;}
.y18_c00289{bottom:503.994133pt;}
.y17_c00289{bottom:531.200000pt;}
.y16_c00289{bottom:531.202667pt;}
.y14_c00289{bottom:558.727467pt;}
.y15_c00289{bottom:558.733333pt;}
.y12_c00289{bottom:585.927467pt;}
.y13_c00289{bottom:585.933333pt;}
.y11_c00289{bottom:613.133333pt;}
.y10_c00289{bottom:613.147733pt;}
.yf_c00289{bottom:640.662933pt;}
.ye_c00289{bottom:668.178133pt;}
.yd_c00289{bottom:695.693333pt;}
.yc_c00289{bottom:750.720000pt;}
.yb_c00289{bottom:777.933333pt;}
.ya_c00289{bottom:777.938133pt;}
.y8_c00289{bottom:805.446400pt;}
.y9_c00289{bottom:805.453333pt;}
.y7_c00289{bottom:859.533333pt;}
.y6_c00289{bottom:859.534400pt;}
.y5_c00289{bottom:886.400000pt;}
.y4_c00289{bottom:940.800000pt;}
.y3_c00289{bottom:968.642667pt;}
.y2_c00289{bottom:996.173333pt;}
.y1_c00289{bottom:1063.373333pt;}
.h5_c00289{height:50.250000pt;}
.h2_c00289{height:52.343750pt;}
.h3_c00289{height:60.718750pt;}
.h4_c00289{height:61.765625pt;}
.h1_c00289{height:1122.666667pt;}
.h0_c00289{height:1122.880000pt;}
.w1_c00289{width:793.333333pt;}
.w0_c00289{width:793.600000pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:104.893333pt;}
.x11_c00289{left:106.387200pt;}
.x21_c00289{left:107.955200pt;}
.x2_c00289{left:152.466667pt;}
.x8_c00289{left:153.458133pt;}
.x4_c00289{left:155.118933pt;}
.x5_c00289{left:215.506667pt;}
.x6_c00289{left:240.226667pt;}
.x7_c00289{left:255.600000pt;}
.x20_c00289{left:258.720000pt;}
.x3_c00289{left:286.520000pt;}
.xf_c00289{left:298.480000pt;}
.x12_c00289{left:309.546667pt;}
.xb_c00289{left:318.546667pt;}
.x13_c00289{left:333.280000pt;}
.xc_c00289{left:343.266667pt;}
.x9_c00289{left:357.546667pt;}
.x10_c00289{left:363.226667pt;}
.x22_c00289{left:374.320000pt;}
.xa_c00289{left:380.093333pt;}
.x16_c00289{left:383.853333pt;}
.x18_c00289{left:386.080000pt;}
.x14_c00289{left:397.973333pt;}
.x19_c00289{left:400.933333pt;}
.x17_c00289{left:404.346667pt;}
.x1a_c00289{left:406.306667pt;}
.xd_c00289{left:420.306667pt;}
.x1c_c00289{left:431.973333pt;}
.x15_c00289{left:435.133333pt;}
.xe_c00289{left:444.946667pt;}
.x1d_c00289{left:451.626667pt;}
.x1b_c00289{left:617.506667pt;}
.x1e_c00289{left:631.840000pt;}
.x1f_c00289{left:651.173333pt;}
}





/* 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_c00290 {
    display:none;
  }
  .loading-indicator_c00290.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00290 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_c00290 { 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_c00290" -> "#page-container .classname_c00290")
 */
.pf_c00290 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00290 { /* 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_c00290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00290 { /* 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_c00290 { /* 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_c00290 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00290 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00290 {overflow:visible;}
  }
}
.c_c00290 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00290 { /* 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_c00290:after { /* webkit #35443 */
  content: '';
}
.t_c00290:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00290 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 */
}
.__c00290 { /* 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_c00290 { /* info for Javascript */
  display:none;
}
.l_c00290 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00290 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00290 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00290: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_c00290 {
    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_c00290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00290.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_c00290 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00290;src:url('chunks/assets/font_db0157be516c64576772fdfe.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.284668;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_c00290;src:url('chunks/assets/font_9af21669ed757946684d8662.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.284180;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_c00290;src:url('chunks/assets/font_43e8e3656ad8852399364dce.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;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:ff4_c00290;src:url('chunks/assets/font_12c3c5bb33c4807d539d5c54.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:0.666000;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;}
.m6_c00290{transform:matrix(0.118553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118553,0.000000,0.000000,0.250000,0,0);}
.m1_c00290{transform:matrix(0.206623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206623,0.000000,0.000000,0.250000,0,0);}
.m8_c00290{transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);}
.m7_c00290{transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);}
.m2_c00290{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m0_c00290{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);}
.m4_c00290{transform:matrix(0.269547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269547,0.000000,0.000000,0.250000,0,0);}
.m5_c00290{transform:matrix(0.280814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280814,0.000000,0.000000,0.250000,0,0);}
.m3_c00290{transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls5f_c00290{letter-spacing:-2.478000px;}
.ls49_c00290{letter-spacing:-2.400120px;}
.ls5b_c00290{letter-spacing:-2.378880px;}
.ls4d_c00290{letter-spacing:-2.060280px;}
.ls53_c00290{letter-spacing:-1.833720px;}
.ls96_c00290{letter-spacing:-1.387680px;}
.ls68_c00290{letter-spacing:-1.345200px;}
.ls55_c00290{letter-spacing:-1.323960px;}
.ls46_c00290{letter-spacing:-1.295640px;}
.ls6b_c00290{letter-spacing:-1.281480px;}
.ls9f_c00290{letter-spacing:-1.231920px;}
.ls81_c00290{letter-spacing:-1.132800px;}
.ls80_c00290{letter-spacing:-1.111560px;}
.ls7f_c00290{letter-spacing:-1.069080px;}
.ls5a_c00290{letter-spacing:-1.040760px;}
.ls94_c00290{letter-spacing:-1.019520px;}
.ls57_c00290{letter-spacing:-0.977040px;}
.ls67_c00290{letter-spacing:-0.934560px;}
.ls9c_c00290{letter-spacing:-0.920400px;}
.ls86_c00290{letter-spacing:-0.906240px;}
.ls93_c00290{letter-spacing:-0.885000px;}
.ls6c_c00290{letter-spacing:-0.800040px;}
.ls44_c00290{letter-spacing:-0.792960px;}
.ls61_c00290{letter-spacing:-0.785880px;}
.ls45_c00290{letter-spacing:-0.722160px;}
.ls84_c00290{letter-spacing:-0.708000px;}
.ls95_c00290{letter-spacing:-0.686760px;}
.ls4b_c00290{letter-spacing:-0.672600px;}
.ls99_c00290{letter-spacing:-0.658440px;}
.ls47_c00290{letter-spacing:-0.644280px;}
.ls90_c00290{letter-spacing:-0.630120px;}
.ls4f_c00290{letter-spacing:-0.623040px;}
.ls74_c00290{letter-spacing:-0.615960px;}
.ls8e_c00290{letter-spacing:-0.608880px;}
.ls9d_c00290{letter-spacing:-0.594720px;}
.ls8f_c00290{letter-spacing:-0.587640px;}
.ls5d_c00290{letter-spacing:-0.566400px;}
.ls66_c00290{letter-spacing:-0.559320px;}
.ls9e_c00290{letter-spacing:-0.538080px;}
.ls73_c00290{letter-spacing:-0.502680px;}
.lsa0_c00290{letter-spacing:-0.488520px;}
.ls71_c00290{letter-spacing:-0.460200px;}
.ls70_c00290{letter-spacing:-0.453120px;}
.ls5c_c00290{letter-spacing:-0.438960px;}
.ls85_c00290{letter-spacing:-0.424800px;}
.ls9a_c00290{letter-spacing:-0.396480px;}
.ls88_c00290{letter-spacing:-0.386400px;}
.ls52_c00290{letter-spacing:-0.382320px;}
.ls87_c00290{letter-spacing:-0.375240px;}
.ls91_c00290{letter-spacing:-0.368160px;}
.ls58_c00290{letter-spacing:-0.361080px;}
.ls41_c00290{letter-spacing:-0.354000px;}
.ls65_c00290{letter-spacing:-0.346920px;}
.ls89_c00290{letter-spacing:-0.339840px;}
.ls5e_c00290{letter-spacing:-0.332760px;}
.ls9b_c00290{letter-spacing:-0.325680px;}
.ls6a_c00290{letter-spacing:-0.318600px;}
.ls56_c00290{letter-spacing:-0.311520px;}
.ls48_c00290{letter-spacing:-0.290280px;}
.ls83_c00290{letter-spacing:-0.276120px;}
.ls78_c00290{letter-spacing:-0.269040px;}
.ls72_c00290{letter-spacing:-0.261960px;}
.ls76_c00290{letter-spacing:-0.247800px;}
.ls42_c00290{letter-spacing:-0.240720px;}
.ls8c_c00290{letter-spacing:-0.233640px;}
.ls6d_c00290{letter-spacing:-0.226560px;}
.ls92_c00290{letter-spacing:-0.205320px;}
.ls60_c00290{letter-spacing:-0.198240px;}
.ls97_c00290{letter-spacing:-0.184080px;}
.ls8b_c00290{letter-spacing:-0.177000px;}
.ls82_c00290{letter-spacing:-0.169920px;}
.ls6e_c00290{letter-spacing:-0.162840px;}
.ls77_c00290{letter-spacing:-0.155760px;}
.ls4e_c00290{letter-spacing:-0.148680px;}
.ls64_c00290{letter-spacing:-0.141600px;}
.ls50_c00290{letter-spacing:-0.134520px;}
.ls62_c00290{letter-spacing:-0.127440px;}
.ls8a_c00290{letter-spacing:-0.120360px;}
.ls7e_c00290{letter-spacing:-0.106200px;}
.ls7c_c00290{letter-spacing:-0.099120px;}
.lsa1_c00290{letter-spacing:-0.092040px;}
.ls59_c00290{letter-spacing:-0.084960px;}
.ls75_c00290{letter-spacing:-0.077880px;}
.ls7d_c00290{letter-spacing:-0.070800px;}
.ls63_c00290{letter-spacing:-0.063720px;}
.ls69_c00290{letter-spacing:-0.056640px;}
.ls54_c00290{letter-spacing:-0.049560px;}
.ls7b_c00290{letter-spacing:-0.042480px;}
.ls51_c00290{letter-spacing:-0.035400px;}
.ls4c_c00290{letter-spacing:-0.028320px;}
.ls4a_c00290{letter-spacing:-0.014160px;}
.ls98_c00290{letter-spacing:-0.007080px;}
.ls43_c00290{letter-spacing:0.000000px;}
.ls18_c00290{letter-spacing:0.007080px;}
.ls31_c00290{letter-spacing:0.014160px;}
.lsf_c00290{letter-spacing:0.028320px;}
.ls3c_c00290{letter-spacing:0.042480px;}
.ls15_c00290{letter-spacing:0.056640px;}
.ls3d_c00290{letter-spacing:0.063720px;}
.ls3b_c00290{letter-spacing:0.077880px;}
.ls2b_c00290{letter-spacing:0.084960px;}
.ls2_c00290{letter-spacing:0.099120px;}
.ls3a_c00290{letter-spacing:0.113280px;}
.ls11_c00290{letter-spacing:0.127440px;}
.ls10_c00290{letter-spacing:0.141600px;}
.ls9_c00290{letter-spacing:0.162840px;}
.ls14_c00290{letter-spacing:0.177000px;}
.ls37_c00290{letter-spacing:0.184080px;}
.ls35_c00290{letter-spacing:0.219480px;}
.ls30_c00290{letter-spacing:0.220800px;}
.ls1f_c00290{letter-spacing:0.226560px;}
.ls20_c00290{letter-spacing:0.254880px;}
.ls2e_c00290{letter-spacing:0.269040px;}
.ls38_c00290{letter-spacing:0.276120px;}
.ls2d_c00290{letter-spacing:0.297360px;}
.ls1d_c00290{letter-spacing:0.318600px;}
.ls16_c00290{letter-spacing:0.325680px;}
.ls22_c00290{letter-spacing:0.332760px;}
.ls1_c00290{letter-spacing:0.351900px;}
.ls4_c00290{letter-spacing:0.375240px;}
.lsd_c00290{letter-spacing:0.396480px;}
.ls3f_c00290{letter-spacing:0.403560px;}
.ls26_c00290{letter-spacing:0.446040px;}
.ls7_c00290{letter-spacing:0.453120px;}
.ls33_c00290{letter-spacing:0.474360px;}
.ls21_c00290{letter-spacing:0.502680px;}
.ls19_c00290{letter-spacing:0.509760px;}
.ls25_c00290{letter-spacing:0.538080px;}
.ls6f_c00290{letter-spacing:0.552240px;}
.ls17_c00290{letter-spacing:0.573480px;}
.ls24_c00290{letter-spacing:0.593400px;}
.ls8_c00290{letter-spacing:0.594720px;}
.ls1e_c00290{letter-spacing:0.608880px;}
.ls1a_c00290{letter-spacing:0.615960px;}
.ls29_c00290{letter-spacing:0.627900px;}
.lse_c00290{letter-spacing:0.658440px;}
.ls27_c00290{letter-spacing:0.662400px;}
.lsa_c00290{letter-spacing:0.665520px;}
.ls8d_c00290{letter-spacing:0.703800px;}
.ls0_c00290{letter-spacing:0.731400px;}
.ls39_c00290{letter-spacing:0.750480px;}
.lsb_c00290{letter-spacing:0.771720px;}
.ls3e_c00290{letter-spacing:0.778800px;}
.ls1b_c00290{letter-spacing:0.800040px;}
.ls6_c00290{letter-spacing:0.870840px;}
.ls28_c00290{letter-spacing:0.897000px;}
.lsa2_c00290{letter-spacing:0.986100px;}
.ls36_c00290{letter-spacing:1.033680px;}
.ls23_c00290{letter-spacing:1.131600px;}
.ls3_c00290{letter-spacing:1.196520px;}
.ls2c_c00290{letter-spacing:1.200600px;}
.ls1c_c00290{letter-spacing:1.239000px;}
.ls2f_c00290{letter-spacing:1.248900px;}
.ls2a_c00290{letter-spacing:1.260240px;}
.lsc_c00290{letter-spacing:1.373520px;}
.ls40_c00290{letter-spacing:1.444320px;}
.ls13_c00290{letter-spacing:1.500960px;}
.ls5_c00290{letter-spacing:1.522200px;}
.ls32_c00290{letter-spacing:1.766400px;}
.ls12_c00290{letter-spacing:2.088600px;}
.ls34_c00290{letter-spacing:2.230200px;}
.ls7a_c00290{letter-spacing:3.300000px;}
.ls79_c00290{letter-spacing:3.540000px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{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__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00290{word-spacing:0.000000px;}
.ws1_c00290{word-spacing:6.086400px;}
.ws0_c00290{word-spacing:6.833100px;}
._17_c00290{margin-left:-5.311920px;}
._c_c00290{margin-left:-1.925760px;}
._16_c00290{width:2.008080px;}
._4_c00290{width:3.414480px;}
._2_c00290{width:4.844040px;}
._10_c00290{width:6.244560px;}
._0_c00290{width:7.272600px;}
._1_c00290{width:8.283600px;}
._d_c00290{width:9.388080px;}
._e_c00290{width:10.542120px;}
._f_c00290{width:12.014760px;}
._3_c00290{width:13.664400px;}
._11_c00290{width:14.689560px;}
._14_c00290{width:16.050360px;}
._12_c00290{width:19.611600px;}
._13_c00290{width:21.055920px;}
._15_c00290{width:22.935000px;}
._1b_c00290{width:24.667800px;}
._18_c00290{width:26.443800px;}
._19_c00290{width:27.654480px;}
._1a_c00290{width:28.827660px;}
._1e_c00290{width:29.967480px;}
._6_c00290{width:34.090200px;}
._a_c00290{width:35.640720px;}
._7_c00290{width:37.276200px;}
._8_c00290{width:39.138240px;}
._5_c00290{width:40.929480px;}
._9_c00290{width:43.166760px;}
._b_c00290{width:44.200440px;}
._1c_c00290{width:48.384720px;}
._1d_c00290{width:50.133480px;}
.fc0_c00290{color:transparent;}
.fs4_c00290{font-size:53.280000px;}
.fs5_c00290{font-size:57.000000px;}
.fs0_c00290{font-size:61.200000px;}
.fs3_c00290{font-size:66.000000px;}
.fs1_c00290{font-size:69.000000px;}
.fs2_c00290{font-size:70.800000px;}
.y0_c00290{bottom:0.000000px;}
.y22_c00290{bottom:65.880000px;}
.y21_c00290{bottom:126.373500px;}
.y20_c00290{bottom:157.330800px;}
.y1f_c00290{bottom:188.288100px;}
.y1e_c00290{bottom:218.909100px;}
.y1d_c00290{bottom:250.220400px;}
.y1c_c00290{bottom:312.135000px;}
.y1b_c00290{bottom:374.055000px;}
.y1a_c00290{bottom:374.063100px;}
.y19_c00290{bottom:435.977700px;}
.y18_c00290{bottom:466.935000px;}
.y17_c00290{bottom:497.895000px;}
.y16_c00290{bottom:528.503400px;}
.y15_c00290{bottom:558.737700px;}
.y14_c00290{bottom:589.688700px;}
.y13_c00290{bottom:621.000000px;}
.y12_c00290{bottom:682.575000px;}
.y11_c00290{bottom:682.580400px;}
.y10_c00290{bottom:713.526000px;}
.yf_c00290{bottom:744.855000px;}
.ye_c00290{bottom:744.857100px;}
.yd_c00290{bottom:775.460400px;}
.yb_c00290{bottom:806.399400px;}
.yc_c00290{bottom:806.400000px;}
.ya_c00290{bottom:837.356700px;}
.y9_c00290{bottom:868.331700px;}
.y8_c00290{bottom:898.935000px;}
.y7_c00290{bottom:898.959600px;}
.y6_c00290{bottom:929.545200px;}
.y5_c00290{bottom:991.831500px;}
.y4_c00290{bottom:1053.374400px;}
.y3_c00290{bottom:1083.623700px;}
.y2_c00290{bottom:1114.935000px;}
.y1_c00290{bottom:1191.975000px;}
.h5_c00290{height:35.484480px;}
.h7_c00290{height:55.942383px;}
.h2_c00290{height:60.064453px;}
.h4_c00290{height:68.835938px;}
.h3_c00290{height:69.486328px;}
.h6_c00290{height:69.511528px;}
.h1_c00290{height:1263.000000px;}
.h0_c00290{height:1263.240000px;}
.w1_c00290{width:892.500000px;}
.w0_c00290{width:892.800000px;}
.x0_c00290{left:0.000000px;}
.x12_c00290{left:120.051300px;}
.x6_c00290{left:121.135200px;}
.x3_c00290{left:122.670300px;}
.x1_c00290{left:124.125000px;}
.xf_c00290{left:174.045000px;}
.x2_c00290{left:176.565000px;}
.x7_c00290{left:185.235000px;}
.x8_c00290{left:207.570000px;}
.x13_c00290{left:360.825000px;}
.x14_c00290{left:423.630000px;}
.x10_c00290{left:439.725000px;}
.xe_c00290{left:444.255000px;}
.x4_c00290{left:453.750000px;}
.x11_c00290{left:459.750000px;}
.x5_c00290{left:473.790000px;}
.x9_c00290{left:518.835000px;}
.xa_c00290{left:559.275000px;}
.xb_c00290{left:584.235000px;}
.xc_c00290{left:601.305000px;}
.xd_c00290{left:646.020000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls5f_c00290{letter-spacing:-2.202667pt;}
.ls49_c00290{letter-spacing:-2.133440pt;}
.ls5b_c00290{letter-spacing:-2.114560pt;}
.ls4d_c00290{letter-spacing:-1.831360pt;}
.ls53_c00290{letter-spacing:-1.629973pt;}
.ls96_c00290{letter-spacing:-1.233493pt;}
.ls68_c00290{letter-spacing:-1.195733pt;}
.ls55_c00290{letter-spacing:-1.176853pt;}
.ls46_c00290{letter-spacing:-1.151680pt;}
.ls6b_c00290{letter-spacing:-1.139093pt;}
.ls9f_c00290{letter-spacing:-1.095040pt;}
.ls81_c00290{letter-spacing:-1.006933pt;}
.ls80_c00290{letter-spacing:-0.988053pt;}
.ls7f_c00290{letter-spacing:-0.950293pt;}
.ls5a_c00290{letter-spacing:-0.925120pt;}
.ls94_c00290{letter-spacing:-0.906240pt;}
.ls57_c00290{letter-spacing:-0.868480pt;}
.ls67_c00290{letter-spacing:-0.830720pt;}
.ls9c_c00290{letter-spacing:-0.818133pt;}
.ls86_c00290{letter-spacing:-0.805547pt;}
.ls93_c00290{letter-spacing:-0.786667pt;}
.ls6c_c00290{letter-spacing:-0.711147pt;}
.ls44_c00290{letter-spacing:-0.704853pt;}
.ls61_c00290{letter-spacing:-0.698560pt;}
.ls45_c00290{letter-spacing:-0.641920pt;}
.ls84_c00290{letter-spacing:-0.629333pt;}
.ls95_c00290{letter-spacing:-0.610453pt;}
.ls4b_c00290{letter-spacing:-0.597867pt;}
.ls99_c00290{letter-spacing:-0.585280pt;}
.ls47_c00290{letter-spacing:-0.572693pt;}
.ls90_c00290{letter-spacing:-0.560107pt;}
.ls4f_c00290{letter-spacing:-0.553813pt;}
.ls74_c00290{letter-spacing:-0.547520pt;}
.ls8e_c00290{letter-spacing:-0.541227pt;}
.ls9d_c00290{letter-spacing:-0.528640pt;}
.ls8f_c00290{letter-spacing:-0.522347pt;}
.ls5d_c00290{letter-spacing:-0.503467pt;}
.ls66_c00290{letter-spacing:-0.497173pt;}
.ls9e_c00290{letter-spacing:-0.478293pt;}
.ls73_c00290{letter-spacing:-0.446827pt;}
.lsa0_c00290{letter-spacing:-0.434240pt;}
.ls71_c00290{letter-spacing:-0.409067pt;}
.ls70_c00290{letter-spacing:-0.402773pt;}
.ls5c_c00290{letter-spacing:-0.390187pt;}
.ls85_c00290{letter-spacing:-0.377600pt;}
.ls9a_c00290{letter-spacing:-0.352427pt;}
.ls88_c00290{letter-spacing:-0.343467pt;}
.ls52_c00290{letter-spacing:-0.339840pt;}
.ls87_c00290{letter-spacing:-0.333547pt;}
.ls91_c00290{letter-spacing:-0.327253pt;}
.ls58_c00290{letter-spacing:-0.320960pt;}
.ls41_c00290{letter-spacing:-0.314667pt;}
.ls65_c00290{letter-spacing:-0.308373pt;}
.ls89_c00290{letter-spacing:-0.302080pt;}
.ls5e_c00290{letter-spacing:-0.295787pt;}
.ls9b_c00290{letter-spacing:-0.289493pt;}
.ls6a_c00290{letter-spacing:-0.283200pt;}
.ls56_c00290{letter-spacing:-0.276907pt;}
.ls48_c00290{letter-spacing:-0.258027pt;}
.ls83_c00290{letter-spacing:-0.245440pt;}
.ls78_c00290{letter-spacing:-0.239147pt;}
.ls72_c00290{letter-spacing:-0.232853pt;}
.ls76_c00290{letter-spacing:-0.220267pt;}
.ls42_c00290{letter-spacing:-0.213973pt;}
.ls8c_c00290{letter-spacing:-0.207680pt;}
.ls6d_c00290{letter-spacing:-0.201387pt;}
.ls92_c00290{letter-spacing:-0.182507pt;}
.ls60_c00290{letter-spacing:-0.176213pt;}
.ls97_c00290{letter-spacing:-0.163627pt;}
.ls8b_c00290{letter-spacing:-0.157333pt;}
.ls82_c00290{letter-spacing:-0.151040pt;}
.ls6e_c00290{letter-spacing:-0.144747pt;}
.ls77_c00290{letter-spacing:-0.138453pt;}
.ls4e_c00290{letter-spacing:-0.132160pt;}
.ls64_c00290{letter-spacing:-0.125867pt;}
.ls50_c00290{letter-spacing:-0.119573pt;}
.ls62_c00290{letter-spacing:-0.113280pt;}
.ls8a_c00290{letter-spacing:-0.106987pt;}
.ls7e_c00290{letter-spacing:-0.094400pt;}
.ls7c_c00290{letter-spacing:-0.088107pt;}
.lsa1_c00290{letter-spacing:-0.081813pt;}
.ls59_c00290{letter-spacing:-0.075520pt;}
.ls75_c00290{letter-spacing:-0.069227pt;}
.ls7d_c00290{letter-spacing:-0.062933pt;}
.ls63_c00290{letter-spacing:-0.056640pt;}
.ls69_c00290{letter-spacing:-0.050347pt;}
.ls54_c00290{letter-spacing:-0.044053pt;}
.ls7b_c00290{letter-spacing:-0.037760pt;}
.ls51_c00290{letter-spacing:-0.031467pt;}
.ls4c_c00290{letter-spacing:-0.025173pt;}
.ls4a_c00290{letter-spacing:-0.012587pt;}
.ls98_c00290{letter-spacing:-0.006293pt;}
.ls43_c00290{letter-spacing:0.000000pt;}
.ls18_c00290{letter-spacing:0.006293pt;}
.ls31_c00290{letter-spacing:0.012587pt;}
.lsf_c00290{letter-spacing:0.025173pt;}
.ls3c_c00290{letter-spacing:0.037760pt;}
.ls15_c00290{letter-spacing:0.050347pt;}
.ls3d_c00290{letter-spacing:0.056640pt;}
.ls3b_c00290{letter-spacing:0.069227pt;}
.ls2b_c00290{letter-spacing:0.075520pt;}
.ls2_c00290{letter-spacing:0.088107pt;}
.ls3a_c00290{letter-spacing:0.100693pt;}
.ls11_c00290{letter-spacing:0.113280pt;}
.ls10_c00290{letter-spacing:0.125867pt;}
.ls9_c00290{letter-spacing:0.144747pt;}
.ls14_c00290{letter-spacing:0.157333pt;}
.ls37_c00290{letter-spacing:0.163627pt;}
.ls35_c00290{letter-spacing:0.195093pt;}
.ls30_c00290{letter-spacing:0.196267pt;}
.ls1f_c00290{letter-spacing:0.201387pt;}
.ls20_c00290{letter-spacing:0.226560pt;}
.ls2e_c00290{letter-spacing:0.239147pt;}
.ls38_c00290{letter-spacing:0.245440pt;}
.ls2d_c00290{letter-spacing:0.264320pt;}
.ls1d_c00290{letter-spacing:0.283200pt;}
.ls16_c00290{letter-spacing:0.289493pt;}
.ls22_c00290{letter-spacing:0.295787pt;}
.ls1_c00290{letter-spacing:0.312800pt;}
.ls4_c00290{letter-spacing:0.333547pt;}
.lsd_c00290{letter-spacing:0.352427pt;}
.ls3f_c00290{letter-spacing:0.358720pt;}
.ls26_c00290{letter-spacing:0.396480pt;}
.ls7_c00290{letter-spacing:0.402773pt;}
.ls33_c00290{letter-spacing:0.421653pt;}
.ls21_c00290{letter-spacing:0.446827pt;}
.ls19_c00290{letter-spacing:0.453120pt;}
.ls25_c00290{letter-spacing:0.478293pt;}
.ls6f_c00290{letter-spacing:0.490880pt;}
.ls17_c00290{letter-spacing:0.509760pt;}
.ls24_c00290{letter-spacing:0.527467pt;}
.ls8_c00290{letter-spacing:0.528640pt;}
.ls1e_c00290{letter-spacing:0.541227pt;}
.ls1a_c00290{letter-spacing:0.547520pt;}
.ls29_c00290{letter-spacing:0.558133pt;}
.lse_c00290{letter-spacing:0.585280pt;}
.ls27_c00290{letter-spacing:0.588800pt;}
.lsa_c00290{letter-spacing:0.591573pt;}
.ls8d_c00290{letter-spacing:0.625600pt;}
.ls0_c00290{letter-spacing:0.650133pt;}
.ls39_c00290{letter-spacing:0.667093pt;}
.lsb_c00290{letter-spacing:0.685973pt;}
.ls3e_c00290{letter-spacing:0.692267pt;}
.ls1b_c00290{letter-spacing:0.711147pt;}
.ls6_c00290{letter-spacing:0.774080pt;}
.ls28_c00290{letter-spacing:0.797333pt;}
.lsa2_c00290{letter-spacing:0.876533pt;}
.ls36_c00290{letter-spacing:0.918827pt;}
.ls23_c00290{letter-spacing:1.005867pt;}
.ls3_c00290{letter-spacing:1.063573pt;}
.ls2c_c00290{letter-spacing:1.067200pt;}
.ls1c_c00290{letter-spacing:1.101333pt;}
.ls2f_c00290{letter-spacing:1.110133pt;}
.ls2a_c00290{letter-spacing:1.120213pt;}
.lsc_c00290{letter-spacing:1.220907pt;}
.ls40_c00290{letter-spacing:1.283840pt;}
.ls13_c00290{letter-spacing:1.334187pt;}
.ls5_c00290{letter-spacing:1.353067pt;}
.ls32_c00290{letter-spacing:1.570133pt;}
.ls12_c00290{letter-spacing:1.856533pt;}
.ls34_c00290{letter-spacing:1.982400pt;}
.ls7a_c00290{letter-spacing:2.933333pt;}
.ls79_c00290{letter-spacing:3.146667pt;}
.ws2_c00290{word-spacing:0.000000pt;}
.ws1_c00290{word-spacing:5.410133pt;}
.ws0_c00290{word-spacing:6.073867pt;}
._17_c00290{margin-left:-4.721707pt;}
._c_c00290{margin-left:-1.711787pt;}
._16_c00290{width:1.784960pt;}
._4_c00290{width:3.035093pt;}
._2_c00290{width:4.305813pt;}
._10_c00290{width:5.550720pt;}
._0_c00290{width:6.464533pt;}
._1_c00290{width:7.363200pt;}
._d_c00290{width:8.344960pt;}
._e_c00290{width:9.370773pt;}
._f_c00290{width:10.679787pt;}
._3_c00290{width:12.146133pt;}
._11_c00290{width:13.057387pt;}
._14_c00290{width:14.266987pt;}
._12_c00290{width:17.432533pt;}
._13_c00290{width:18.716373pt;}
._15_c00290{width:20.386667pt;}
._1b_c00290{width:21.926933pt;}
._18_c00290{width:23.505600pt;}
._19_c00290{width:24.581760pt;}
._1a_c00290{width:25.624587pt;}
._1e_c00290{width:26.637760pt;}
._6_c00290{width:30.302400pt;}
._a_c00290{width:31.680640pt;}
._7_c00290{width:33.134400pt;}
._8_c00290{width:34.789547pt;}
._5_c00290{width:36.381760pt;}
._9_c00290{width:38.370453pt;}
._b_c00290{width:39.289280pt;}
._1c_c00290{width:43.008640pt;}
._1d_c00290{width:44.563093pt;}
.fs4_c00290{font-size:47.360000pt;}
.fs5_c00290{font-size:50.666667pt;}
.fs0_c00290{font-size:54.400000pt;}
.fs3_c00290{font-size:58.666667pt;}
.fs1_c00290{font-size:61.333333pt;}
.fs2_c00290{font-size:62.933333pt;}
.y0_c00290{bottom:0.000000pt;}
.y22_c00290{bottom:58.560000pt;}
.y21_c00290{bottom:112.332000pt;}
.y20_c00290{bottom:139.849600pt;}
.y1f_c00290{bottom:167.367200pt;}
.y1e_c00290{bottom:194.585867pt;}
.y1d_c00290{bottom:222.418133pt;}
.y1c_c00290{bottom:277.453333pt;}
.y1b_c00290{bottom:332.493333pt;}
.y1a_c00290{bottom:332.500533pt;}
.y19_c00290{bottom:387.535733pt;}
.y18_c00290{bottom:415.053333pt;}
.y17_c00290{bottom:442.573333pt;}
.y16_c00290{bottom:469.780800pt;}
.y15_c00290{bottom:496.655733pt;}
.y14_c00290{bottom:524.167733pt;}
.y13_c00290{bottom:552.000000pt;}
.y12_c00290{bottom:606.733333pt;}
.y11_c00290{bottom:606.738133pt;}
.y10_c00290{bottom:634.245333pt;}
.yf_c00290{bottom:662.093333pt;}
.ye_c00290{bottom:662.095200pt;}
.yd_c00290{bottom:689.298133pt;}
.yb_c00290{bottom:716.799467pt;}
.yc_c00290{bottom:716.800000pt;}
.ya_c00290{bottom:744.317067pt;}
.y9_c00290{bottom:771.850400pt;}
.y8_c00290{bottom:799.053333pt;}
.y7_c00290{bottom:799.075200pt;}
.y6_c00290{bottom:826.262400pt;}
.y5_c00290{bottom:881.628000pt;}
.y4_c00290{bottom:936.332800pt;}
.y3_c00290{bottom:963.221067pt;}
.y2_c00290{bottom:991.053333pt;}
.y1_c00290{bottom:1059.533333pt;}
.h5_c00290{height:31.541760pt;}
.h7_c00290{height:49.726562pt;}
.h2_c00290{height:53.390625pt;}
.h4_c00290{height:61.187500pt;}
.h3_c00290{height:61.765625pt;}
.h6_c00290{height:61.788025pt;}
.h1_c00290{height:1122.666667pt;}
.h0_c00290{height:1122.880000pt;}
.w1_c00290{width:793.333333pt;}
.w0_c00290{width:793.600000pt;}
.x0_c00290{left:0.000000pt;}
.x12_c00290{left:106.712267pt;}
.x6_c00290{left:107.675733pt;}
.x3_c00290{left:109.040267pt;}
.x1_c00290{left:110.333333pt;}
.xf_c00290{left:154.706667pt;}
.x2_c00290{left:156.946667pt;}
.x7_c00290{left:164.653333pt;}
.x8_c00290{left:184.506667pt;}
.x13_c00290{left:320.733333pt;}
.x14_c00290{left:376.560000pt;}
.x10_c00290{left:390.866667pt;}
.xe_c00290{left:394.893333pt;}
.x4_c00290{left:403.333333pt;}
.x11_c00290{left:408.666667pt;}
.x5_c00290{left:421.146667pt;}
.x9_c00290{left:461.186667pt;}
.xa_c00290{left:497.133333pt;}
.xb_c00290{left:519.320000pt;}
.xc_c00290{left:534.493333pt;}
.xd_c00290{left:574.240000pt;}
}





/* 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_c00291 {
    display:none;
  }
  .loading-indicator_c00291.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00291 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_c00291 { 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_c00291" -> "#page-container .classname_c00291")
 */
.pf_c00291 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00291 { /* 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_c00291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00291 { /* 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_c00291 { /* 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_c00291 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00291 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00291 {overflow:visible;}
  }
}
.c_c00291 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00291 { /* 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_c00291:after { /* webkit #35443 */
  content: '';
}
.t_c00291:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00291 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 */
}
.__c00291 { /* 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_c00291 { /* info for Javascript */
  display:none;
}
.l_c00291 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00291 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00291 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00291: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_c00291 {
    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_c00291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00291.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_c00291 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00291;src:url('chunks/assets/font_0b276aba81307910edc2e65f.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.284668;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_c00291;src:url('chunks/assets/font_09037892063f32cfcdea39b6.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.284180;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_c00291;src:url('chunks/assets/font_969c63d8a656c3bbd2a179fb.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.284180;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_c00291;src:url('chunks/assets/font_c2f74c48fb5b5dc3f70def76.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;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:ff5_c00291;src:url('chunks/assets/font_40bd666c5fb60798a8a2f665.woff2')format("woff");}.ff5_c00291{font-family:ff5_c00291;line-height:0.666000;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;}
.m5_c00291{transform:matrix(0.048611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048611,0.000000,0.000000,0.250000,0,0);}
.m4_c00291{transform:matrix(0.114019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114019,0.000000,0.000000,0.250000,0,0);}
.m0_c00291{transform:matrix(0.118841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118841,0.000000,0.000000,0.250000,0,0);}
.m3_c00291{transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(0.241174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241174,0.000000,0.000000,0.250000,0,0);}
.m2_c00291{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);}
.v0_c00291{vertical-align:0.000000px;}
.ls3_c00291{letter-spacing:-2.373000px;}
.ls4_c00291{letter-spacing:-2.268000px;}
.ls9_c00291{letter-spacing:-2.226000px;}
.ls8_c00291{letter-spacing:-1.931040px;}
.ls7_c00291{letter-spacing:0.000000px;}
.ls5_c00291{letter-spacing:0.218280px;}
.ls6_c00291{letter-spacing:0.487920px;}
.ls1_c00291{letter-spacing:0.969420px;}
.ls0_c00291{letter-spacing:1.393140px;}
.ls2_c00291{letter-spacing:2.773440px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{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__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00291{word-spacing:-2.272680px;}
.ws1_c00291{word-spacing:0.000000px;}
._1_c00291{margin-left:-5.741280px;}
._0_c00291{margin-left:-1.970940px;}
.fc0_c00291{color:transparent;}
.fs6_c00291{font-size:33.000600px;}
.fs4_c00291{font-size:54.600000px;}
.fs3_c00291{font-size:58.200000px;}
.fs7_c00291{font-size:63.600000px;}
.fs2_c00291{font-size:64.200000px;}
.fs1_c00291{font-size:64.800000px;}
.fs0_c00291{font-size:67.800000px;}
.fs5_c00291{font-size:83.520000px;}
.fs8_c00291{font-size:259.200600px;}
.y0_c00291{bottom:0.000000px;}
.y3_c00291{bottom:152.278815px;}
.y2_c00291{bottom:170.640015px;}
.y4_c00291{bottom:521.295015px;}
.ya_c00291{bottom:673.920015px;}
.y7_c00291{bottom:857.520015px;}
.y6_c00291{bottom:865.095015px;}
.y5_c00291{bottom:890.295015px;}
.y9_c00291{bottom:1077.480015px;}
.y1_c00291{bottom:1081.455015px;}
.y8_c00291{bottom:1145.880015px;}
.h8_c00291{height:34.418595px;}
.h7_c00291{height:55.624320px;}
.h6_c00291{height:56.946094px;}
.h5_c00291{height:60.700781px;}
.ha_c00291{height:62.419922px;}
.h4_c00291{height:62.977441px;}
.h3_c00291{height:63.566016px;}
.h9_c00291{height:63.597656px;}
.h2_c00291{height:66.541992px;}
.hb_c00291{height:172.627600px;}
.h1_c00291{height:1263.000000px;}
.h0_c00291{height:1263.240015px;}
.w1_c00291{width:892.500000px;}
.w0_c00291{width:892.800015px;}
.x0_c00291{left:0.000000px;}
.x4_c00291{left:113.321865px;}
.x2_c00291{left:116.175015px;}
.x1_c00291{left:122.130015px;}
.x3_c00291{left:135.840015px;}
.x5_c00291{left:286.455015px;}
.x7_c00291{left:399.255015px;}
.x6_c00291{left:400.725015px;}
.xa_c00291{left:484.575015px;}
.x8_c00291{left:672.750015px;}
.x9_c00291{left:796.080015px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls3_c00291{letter-spacing:-2.109333pt;}
.ls4_c00291{letter-spacing:-2.016000pt;}
.ls9_c00291{letter-spacing:-1.978667pt;}
.ls8_c00291{letter-spacing:-1.716480pt;}
.ls7_c00291{letter-spacing:0.000000pt;}
.ls5_c00291{letter-spacing:0.194027pt;}
.ls6_c00291{letter-spacing:0.433707pt;}
.ls1_c00291{letter-spacing:0.861707pt;}
.ls0_c00291{letter-spacing:1.238347pt;}
.ls2_c00291{letter-spacing:2.465280pt;}
.ws0_c00291{word-spacing:-2.020160pt;}
.ws1_c00291{word-spacing:0.000000pt;}
._1_c00291{margin-left:-5.103360pt;}
._0_c00291{margin-left:-1.751947pt;}
.fs6_c00291{font-size:29.333867pt;}
.fs4_c00291{font-size:48.533333pt;}
.fs3_c00291{font-size:51.733333pt;}
.fs7_c00291{font-size:56.533333pt;}
.fs2_c00291{font-size:57.066667pt;}
.fs1_c00291{font-size:57.600000pt;}
.fs0_c00291{font-size:60.266667pt;}
.fs5_c00291{font-size:74.240000pt;}
.fs8_c00291{font-size:230.400533pt;}
.y0_c00291{bottom:0.000000pt;}
.y3_c00291{bottom:135.358947pt;}
.y2_c00291{bottom:151.680013pt;}
.y4_c00291{bottom:463.373347pt;}
.ya_c00291{bottom:599.040013pt;}
.y7_c00291{bottom:762.240013pt;}
.y6_c00291{bottom:768.973347pt;}
.y5_c00291{bottom:791.373347pt;}
.y9_c00291{bottom:957.760013pt;}
.y1_c00291{bottom:961.293347pt;}
.y8_c00291{bottom:1018.560013pt;}
.h8_c00291{height:30.594306pt;}
.h7_c00291{height:49.443840pt;}
.h6_c00291{height:50.618750pt;}
.h5_c00291{height:53.956250pt;}
.ha_c00291{height:55.484375pt;}
.h4_c00291{height:55.979948pt;}
.h3_c00291{height:56.503125pt;}
.h9_c00291{height:56.531250pt;}
.h2_c00291{height:59.148438pt;}
.hb_c00291{height:153.446755pt;}
.h1_c00291{height:1122.666667pt;}
.h0_c00291{height:1122.880013pt;}
.w1_c00291{width:793.333333pt;}
.w0_c00291{width:793.600013pt;}
.x0_c00291{left:0.000000pt;}
.x4_c00291{left:100.730547pt;}
.x2_c00291{left:103.266680pt;}
.x1_c00291{left:108.560013pt;}
.x3_c00291{left:120.746680pt;}
.x5_c00291{left:254.626680pt;}
.x7_c00291{left:354.893347pt;}
.x6_c00291{left:356.200013pt;}
.xa_c00291{left:430.733347pt;}
.x8_c00291{left:598.000013pt;}
.x9_c00291{left:707.626680pt;}
}





/* 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_c00292 {
    display:none;
  }
  .loading-indicator_c00292.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00292 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_c00292 { 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_c00292" -> "#page-container .classname_c00292")
 */
.pf_c00292 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00292 { /* 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_c00292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00292 { /* 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_c00292 { /* 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_c00292 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00292 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00292 {overflow:visible;}
  }
}
.c_c00292 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00292 { /* 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_c00292:after { /* webkit #35443 */
  content: '';
}
.t_c00292:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00292 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 */
}
.__c00292 { /* 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_c00292 { /* info for Javascript */
  display:none;
}
.l_c00292 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00292 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00292 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00292: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_c00292 {
    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_c00292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00292.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_c00292 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00292;src:url('chunks/assets/font_6ae19fe25da52973c3f184a4.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.284668;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_c00292;src:url('chunks/assets/font_52738c837ea74319da32a814.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.284180;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_c00292;src:url('chunks/assets/font_c7c3a560cfd60b2f924d1890.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;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:ff4_c00292;src:url('chunks/assets/font_3d32b596b8d232cd1849a5c9.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:0.666000;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;}
.m3_c00292{transform:matrix(0.110881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110881,0.000000,0.000000,0.250000,0,0);}
.m0_c00292{transform:matrix(0.118490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118490,0.000000,0.000000,0.250000,0,0);}
.m2_c00292{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_c00292{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);}
.v0_c00292{vertical-align:0.000000px;}
.ls9_c00292{letter-spacing:-2.289000px;}
.ls3_c00292{letter-spacing:-2.142000px;}
.ls4_c00292{letter-spacing:-2.111520px;}
.ls7_c00292{letter-spacing:0.000000px;}
.ls8_c00292{letter-spacing:0.372780px;}
.ls1_c00292{letter-spacing:0.566040px;}
.ls6_c00292{letter-spacing:0.845880px;}
.ls5_c00292{letter-spacing:1.526400px;}
.ls0_c00292{letter-spacing:1.570920px;}
.ls2_c00292{letter-spacing:2.583300px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{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__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00292{word-spacing:0.000000px;}
.ws1_c00292{word-spacing:0.089040px;}
.ws0_c00292{word-spacing:4.502880px;}
._0_c00292{margin-left:-8.248920px;}
._2_c00292{margin-left:-5.526300px;}
._1_c00292{margin-left:-2.970120px;}
.fc0_c00292{color:transparent;}
.fs5_c00292{font-size:33.000600px;}
.fs2_c00292{font-size:58.200000px;}
.fs0_c00292{font-size:61.200000px;}
.fs3_c00292{font-size:63.000000px;}
.fs1_c00292{font-size:63.600000px;}
.fs6_c00292{font-size:65.400000px;}
.fs4_c00292{font-size:79.200000px;}
.y0_c00292{bottom:0.000000px;}
.y3_c00292{bottom:152.635515px;}
.y2_c00292{bottom:171.000015px;}
.ya_c00292{bottom:462.975015px;}
.y4_c00292{bottom:521.295015px;}
.y7_c00292{bottom:653.760015px;}
.y6_c00292{bottom:661.335015px;}
.y5_c00292{bottom:683.295015px;}
.y9_c00292{bottom:1077.480015px;}
.y1_c00292{bottom:1081.095015px;}
.y8_c00292{bottom:1146.615015px;}
.h7_c00292{height:34.418595px;}
.h6_c00292{height:52.747200px;}
.h2_c00292{height:60.064453px;}
.h4_c00292{height:60.700781px;}
.h5_c00292{height:61.831055px;}
.h3_c00292{height:62.388867px;}
.h8_c00292{height:64.186523px;}
.h1_c00292{height:1263.000000px;}
.h0_c00292{height:1263.240015px;}
.w1_c00292{width:892.500000px;}
.w0_c00292{width:892.800015px;}
.x0_c00292{left:0.000000px;}
.x3_c00292{left:114.049515px;}
.x2_c00292{left:116.355015px;}
.x1_c00292{left:120.720015px;}
.x4_c00292{left:301.215015px;}
.x6_c00292{left:514.440015px;}
.x5_c00292{left:517.590015px;}
.x9_c00292{left:637.830015px;}
.x7_c00292{left:672.750015px;}
.x8_c00292{left:796.080015px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls9_c00292{letter-spacing:-2.034667pt;}
.ls3_c00292{letter-spacing:-1.904000pt;}
.ls4_c00292{letter-spacing:-1.876907pt;}
.ls7_c00292{letter-spacing:0.000000pt;}
.ls8_c00292{letter-spacing:0.331360pt;}
.ls1_c00292{letter-spacing:0.503147pt;}
.ls6_c00292{letter-spacing:0.751893pt;}
.ls5_c00292{letter-spacing:1.356800pt;}
.ls0_c00292{letter-spacing:1.396373pt;}
.ls2_c00292{letter-spacing:2.296267pt;}
.ws2_c00292{word-spacing:0.000000pt;}
.ws1_c00292{word-spacing:0.079147pt;}
.ws0_c00292{word-spacing:4.002560pt;}
._0_c00292{margin-left:-7.332373pt;}
._2_c00292{margin-left:-4.912267pt;}
._1_c00292{margin-left:-2.640107pt;}
.fs5_c00292{font-size:29.333867pt;}
.fs2_c00292{font-size:51.733333pt;}
.fs0_c00292{font-size:54.400000pt;}
.fs3_c00292{font-size:56.000000pt;}
.fs1_c00292{font-size:56.533333pt;}
.fs6_c00292{font-size:58.133333pt;}
.fs4_c00292{font-size:70.400000pt;}
.y0_c00292{bottom:0.000000pt;}
.y3_c00292{bottom:135.676013pt;}
.y2_c00292{bottom:152.000013pt;}
.ya_c00292{bottom:411.533347pt;}
.y4_c00292{bottom:463.373347pt;}
.y7_c00292{bottom:581.120013pt;}
.y6_c00292{bottom:587.853347pt;}
.y5_c00292{bottom:607.373347pt;}
.y9_c00292{bottom:957.760013pt;}
.y1_c00292{bottom:960.973347pt;}
.y8_c00292{bottom:1019.213347pt;}
.h7_c00292{height:30.594306pt;}
.h6_c00292{height:46.886400pt;}
.h2_c00292{height:53.390625pt;}
.h4_c00292{height:53.956250pt;}
.h5_c00292{height:54.960938pt;}
.h3_c00292{height:55.456771pt;}
.h8_c00292{height:57.054688pt;}
.h1_c00292{height:1122.666667pt;}
.h0_c00292{height:1122.880013pt;}
.w1_c00292{width:793.333333pt;}
.w0_c00292{width:793.600013pt;}
.x0_c00292{left:0.000000pt;}
.x3_c00292{left:101.377347pt;}
.x2_c00292{left:103.426680pt;}
.x1_c00292{left:107.306680pt;}
.x4_c00292{left:267.746680pt;}
.x6_c00292{left:457.280013pt;}
.x5_c00292{left:460.080013pt;}
.x9_c00292{left:566.960013pt;}
.x7_c00292{left:598.000013pt;}
.x8_c00292{left:707.626680pt;}
}





/* 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_c00293 {
    display:none;
  }
  .loading-indicator_c00293.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00293 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_c00293 { 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_c00293" -> "#page-container .classname_c00293")
 */
.pf_c00293 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00293 { /* 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_c00293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00293 { /* 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_c00293 { /* 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_c00293 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00293 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00293 {overflow:visible;}
  }
}
.c_c00293 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00293 { /* 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_c00293:after { /* webkit #35443 */
  content: '';
}
.t_c00293:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00293 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 */
}
.__c00293 { /* 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_c00293 { /* info for Javascript */
  display:none;
}
.l_c00293 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00293 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00293 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00293: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_c00293 {
    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_c00293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00293.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_c00293 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00293;src:url('chunks/assets/font_f24dfb4a8ec930051dea0781.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.311035;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_c00293;src:url('chunks/assets/font_49f39b826322b6e5a74f6138.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.284668;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_c00293;src:url('chunks/assets/font_5441d43b2e22cac92c9afcb8.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.284180;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_c00293;src:url('chunks/assets/font_1e18d2afdc989c6eccf170f9.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:1.284180;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_c00293;src:url('chunks/assets/font_a7960160031dee07acc83100.woff2')format("woff");}.ff5_c00293{font-family:ff5_c00293;line-height:0.666000;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_c00293;src:url('chunks/assets/font_0ba6f80919aa92e7a80e3c6f.woff2')format("woff");}.ff6_c00293{font-family:ff6_c00293;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;}
.m5_c00293{transform:matrix(0.159470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159470,0.000000,0.000000,0.250000,0,0);}
.m7_c00293{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4_c00293{transform:matrix(0.239874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239874,0.000000,0.000000,0.250000,0,0);}
.m0_c00293{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m3_c00293{transform:matrix(0.244728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244728,0.000000,0.000000,0.250000,0,0);}
.m6_c00293{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m2_c00293{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m1_c00293{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);}
.v0_c00293{vertical-align:0.000000px;}
.ls71_c00293{letter-spacing:-2.457000px;}
.ls74_c00293{letter-spacing:-2.436000px;}
.ls62_c00293{letter-spacing:-2.415000px;}
.ls50_c00293{letter-spacing:-2.310000px;}
.ls72_c00293{letter-spacing:-2.225340px;}
.ls5b_c00293{letter-spacing:-2.118300px;}
.ls5e_c00293{letter-spacing:-1.959600px;}
.ls73_c00293{letter-spacing:-1.909440px;}
.ls58_c00293{letter-spacing:-1.842300px;}
.ls64_c00293{letter-spacing:-1.531800px;}
.ls60_c00293{letter-spacing:-1.428300px;}
.ls6c_c00293{letter-spacing:-1.276500px;}
.ls7a_c00293{letter-spacing:-1.235100px;}
.ls6d_c00293{letter-spacing:-1.110900px;}
.ls57_c00293{letter-spacing:-1.083300px;}
.ls81_c00293{letter-spacing:-0.966000px;}
.ls69_c00293{letter-spacing:-0.945300px;}
.ls61_c00293{letter-spacing:-0.876300px;}
.ls65_c00293{letter-spacing:-0.834900px;}
.ls77_c00293{letter-spacing:-0.821100px;}
.ls7e_c00293{letter-spacing:-0.800400px;}
.ls5f_c00293{letter-spacing:-0.690000px;}
.ls55_c00293{letter-spacing:-0.676200px;}
.ls63_c00293{letter-spacing:-0.503700px;}
.ls53_c00293{letter-spacing:-0.489900px;}
.ls85_c00293{letter-spacing:-0.450300px;}
.ls66_c00293{letter-spacing:-0.448500px;}
.ls70_c00293{letter-spacing:-0.400200px;}
.ls79_c00293{letter-spacing:-0.379500px;}
.ls83_c00293{letter-spacing:-0.358800px;}
.ls6f_c00293{letter-spacing:-0.331200px;}
.ls56_c00293{letter-spacing:-0.310500px;}
.ls7d_c00293{letter-spacing:-0.296700px;}
.ls76_c00293{letter-spacing:-0.269100px;}
.ls7b_c00293{letter-spacing:-0.241500px;}
.ls5a_c00293{letter-spacing:-0.220800px;}
.ls7c_c00293{letter-spacing:-0.213900px;}
.ls5c_c00293{letter-spacing:-0.200100px;}
.ls6a_c00293{letter-spacing:-0.124200px;}
.ls78_c00293{letter-spacing:-0.103500px;}
.ls54_c00293{letter-spacing:-0.089700px;}
.ls59_c00293{letter-spacing:-0.082800px;}
.ls67_c00293{letter-spacing:-0.075900px;}
.ls52_c00293{letter-spacing:-0.062100px;}
.ls6e_c00293{letter-spacing:-0.048300px;}
.ls5d_c00293{letter-spacing:-0.041400px;}
.ls51_c00293{letter-spacing:0.000000px;}
.ls8_c00293{letter-spacing:0.013800px;}
.ls42_c00293{letter-spacing:0.020700px;}
.ls2d_c00293{letter-spacing:0.027600px;}
.ls18_c00293{letter-spacing:0.041400px;}
.ls82_c00293{letter-spacing:0.055200px;}
.ls1e_c00293{letter-spacing:0.075900px;}
.ls41_c00293{letter-spacing:0.089700px;}
.ls1b_c00293{letter-spacing:0.124200px;}
.ls16_c00293{letter-spacing:0.131100px;}
.ls4c_c00293{letter-spacing:0.142380px;}
.ls19_c00293{letter-spacing:0.144900px;}
.ls3f_c00293{letter-spacing:0.151800px;}
.ls37_c00293{letter-spacing:0.158700px;}
.ls26_c00293{letter-spacing:0.165600px;}
.lsb_c00293{letter-spacing:0.179400px;}
.lsa_c00293{letter-spacing:0.186300px;}
.ls84_c00293{letter-spacing:0.213900px;}
.ls80_c00293{letter-spacing:0.227700px;}
.ls1f_c00293{letter-spacing:0.241500px;}
.ls23_c00293{letter-spacing:0.248400px;}
.ls2f_c00293{letter-spacing:0.269100px;}
.ls38_c00293{letter-spacing:0.276000px;}
.ls2a_c00293{letter-spacing:0.289800px;}
.ls3e_c00293{letter-spacing:0.296700px;}
.ls4a_c00293{letter-spacing:0.303600px;}
.ls40_c00293{letter-spacing:0.310500px;}
.ls1c_c00293{letter-spacing:0.317400px;}
.ls3d_c00293{letter-spacing:0.324300px;}
.ls2c_c00293{letter-spacing:0.331200px;}
.ls2e_c00293{letter-spacing:0.351900px;}
.ls3_c00293{letter-spacing:0.358800px;}
.ls3c_c00293{letter-spacing:0.379500px;}
.ls1_c00293{letter-spacing:0.393300px;}
.ls7f_c00293{letter-spacing:0.400200px;}
.ls5_c00293{letter-spacing:0.407100px;}
.ls48_c00293{letter-spacing:0.414000px;}
.ls36_c00293{letter-spacing:0.427800px;}
.ls22_c00293{letter-spacing:0.441600px;}
.lsd_c00293{letter-spacing:0.455400px;}
.ls4_c00293{letter-spacing:0.489900px;}
.ls10_c00293{letter-spacing:0.503700px;}
.lsc_c00293{letter-spacing:0.517500px;}
.ls6b_c00293{letter-spacing:0.531300px;}
.ls30_c00293{letter-spacing:0.552000px;}
.ls1d_c00293{letter-spacing:0.572700px;}
.ls68_c00293{letter-spacing:0.586500px;}
.ls47_c00293{letter-spacing:0.603420px;}
.lse_c00293{letter-spacing:0.641700px;}
.ls6_c00293{letter-spacing:0.648600px;}
.ls34_c00293{letter-spacing:0.662400px;}
.ls4e_c00293{letter-spacing:0.676200px;}
.ls11_c00293{letter-spacing:0.683100px;}
.ls0_c00293{letter-spacing:0.696900px;}
.ls2_c00293{letter-spacing:0.717600px;}
.ls32_c00293{letter-spacing:0.724500px;}
.ls28_c00293{letter-spacing:0.738300px;}
.ls24_c00293{letter-spacing:0.752100px;}
.ls27_c00293{letter-spacing:0.759000px;}
.ls33_c00293{letter-spacing:0.765900px;}
.ls15_c00293{letter-spacing:0.766140px;}
.ls3b_c00293{letter-spacing:0.779700px;}
.ls2b_c00293{letter-spacing:0.793500px;}
.ls31_c00293{letter-spacing:0.814200px;}
.ls12_c00293{letter-spacing:0.867840px;}
.ls4f_c00293{letter-spacing:0.883200px;}
.ls75_c00293{letter-spacing:0.910800px;}
.ls17_c00293{letter-spacing:0.924600px;}
.ls39_c00293{letter-spacing:0.935640px;}
.ls46_c00293{letter-spacing:0.942420px;}
.ls49_c00293{letter-spacing:0.952200px;}
.ls21_c00293{letter-spacing:0.979800px;}
.ls43_c00293{letter-spacing:1.057680px;}
.lsf_c00293{letter-spacing:1.069500px;}
.ls9_c00293{letter-spacing:1.097100px;}
.ls35_c00293{letter-spacing:1.117800px;}
.ls14_c00293{letter-spacing:1.139040px;}
.ls7_c00293{letter-spacing:1.193700px;}
.ls3a_c00293{letter-spacing:1.338600px;}
.ls20_c00293{letter-spacing:1.359300px;}
.ls13_c00293{letter-spacing:1.437360px;}
.ls1a_c00293{letter-spacing:1.444140px;}
.ls45_c00293{letter-spacing:1.469700px;}
.ls29_c00293{letter-spacing:1.490400px;}
.ls44_c00293{letter-spacing:1.600800px;}
.ls4d_c00293{letter-spacing:2.056200px;}
.ls4b_c00293{letter-spacing:2.495040px;}
.ls25_c00293{letter-spacing:2.539200px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{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__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00293{word-spacing:0.000000px;}
.ws3_c00293{word-spacing:2.198580px;}
.ws1_c00293{word-spacing:6.929400px;}
.ws0_c00293{word-spacing:7.049640px;}
.ws2_c00293{word-spacing:28.860600px;}
._14_c00293{margin-left:-7.277640px;}
._15_c00293{margin-left:-4.140840px;}
._6_c00293{margin-left:-2.346000px;}
._8_c00293{margin-left:-1.297200px;}
._5_c00293{width:1.023900px;}
._4_c00293{width:2.594400px;}
._2_c00293{width:3.946800px;}
._0_c00293{width:5.899500px;}
._9_c00293{width:7.060140px;}
._1_c00293{width:8.238600px;}
._3_c00293{width:10.356900px;}
._a_c00293{width:12.309600px;}
._7_c00293{width:13.482600px;}
._d_c00293{width:17.394900px;}
._b_c00293{width:21.224400px;}
._e_c00293{width:23.190900px;}
._13_c00293{width:24.612300px;}
._12_c00293{width:26.040600px;}
._f_c00293{width:27.475800px;}
._11_c00293{width:30.491100px;}
._10_c00293{width:32.533500px;}
._c_c00293{width:45.402000px;}
._16_c00293{width:1077.189120px;}
.fc0_c00293{color:transparent;}
.fs5_c00293{font-size:23.040000px;}
.fs7_c00293{font-size:57.000000px;}
.fs0_c00293{font-size:66.000000px;}
.fs2_c00293{font-size:67.800000px;}
.fs1_c00293{font-size:69.000000px;}
.fs4_c00293{font-size:69.600000px;}
.fs3_c00293{font-size:70.200000px;}
.fs6_c00293{font-size:108.000000px;}
.y0_c00293{bottom:0.000000px;}
.y19_c00293{bottom:69.855015px;}
.y18_c00293{bottom:215.295015px;}
.y17_c00293{bottom:221.411265px;}
.y16_c00293{bottom:252.375015px;}
.y15_c00293{bottom:313.935765px;}
.y14_c00293{bottom:344.175015px;}
.y13_c00293{bottom:405.727515px;}
.y12_c00293{bottom:436.674015px;}
.y11_c00293{bottom:467.655015px;}
.y10_c00293{bottom:530.295015px;}
.yf_c00293{bottom:593.291265px;}
.ye_c00293{bottom:623.892765px;}
.yd_c00293{bottom:654.477015px;}
.yc_c00293{bottom:685.458015px;}
.yb_c00293{bottom:715.680015px;}
.ya_c00293{bottom:777.615015px;}
.y8_c00293{bottom:839.513265px;}
.y9_c00293{bottom:839.520015px;}
.y7_c00293{bottom:901.095765px;}
.y6_c00293{bottom:931.680015px;}
.y5_c00293{bottom:992.874765px;}
.y4_c00293{bottom:1054.089765px;}
.y3_c00293{bottom:1084.674015px;}
.y2_c00293{bottom:1115.655015px;}
.y1_c00293{bottom:1191.615015px;}
.h9_c00293{height:15.344640px;}
.hb_c00293{height:55.942383px;}
.h2_c00293{height:66.515625px;}
.h3_c00293{height:67.719727px;}
.h5_c00293{height:67.734727px;}
.h4_c00293{height:67.740727px;}
.h6_c00293{height:68.863184px;}
.h8_c00293{height:70.143750px;}
.h7_c00293{height:70.748437px;}
.ha_c00293{height:112.640625px;}
.h1_c00293{height:1263.000000px;}
.h0_c00293{height:1263.240015px;}
.w1_c00293{width:892.500000px;}
.w0_c00293{width:892.800015px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:120.525015px;}
.x2_c00293{left:122.160015px;}
.xc_c00293{left:160.920015px;}
.x5_c00293{left:173.073765px;}
.x3_c00293{left:174.495765px;}
.x8_c00293{left:280.350015px;}
.x4_c00293{left:352.170015px;}
.xa_c00293{left:358.395015px;}
.xb_c00293{left:380.340015px;}
.xd_c00293{left:405.825015px;}
.x6_c00293{left:413.805015px;}
.xe_c00293{left:421.830015px;}
.x9_c00293{left:429.810015px;}
.x7_c00293{left:442.575015px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls71_c00293{letter-spacing:-2.184000pt;}
.ls74_c00293{letter-spacing:-2.165333pt;}
.ls62_c00293{letter-spacing:-2.146667pt;}
.ls50_c00293{letter-spacing:-2.053333pt;}
.ls72_c00293{letter-spacing:-1.978080pt;}
.ls5b_c00293{letter-spacing:-1.882933pt;}
.ls5e_c00293{letter-spacing:-1.741867pt;}
.ls73_c00293{letter-spacing:-1.697280pt;}
.ls58_c00293{letter-spacing:-1.637600pt;}
.ls64_c00293{letter-spacing:-1.361600pt;}
.ls60_c00293{letter-spacing:-1.269600pt;}
.ls6c_c00293{letter-spacing:-1.134667pt;}
.ls7a_c00293{letter-spacing:-1.097867pt;}
.ls6d_c00293{letter-spacing:-0.987467pt;}
.ls57_c00293{letter-spacing:-0.962933pt;}
.ls81_c00293{letter-spacing:-0.858667pt;}
.ls69_c00293{letter-spacing:-0.840267pt;}
.ls61_c00293{letter-spacing:-0.778933pt;}
.ls65_c00293{letter-spacing:-0.742133pt;}
.ls77_c00293{letter-spacing:-0.729867pt;}
.ls7e_c00293{letter-spacing:-0.711467pt;}
.ls5f_c00293{letter-spacing:-0.613333pt;}
.ls55_c00293{letter-spacing:-0.601067pt;}
.ls63_c00293{letter-spacing:-0.447733pt;}
.ls53_c00293{letter-spacing:-0.435467pt;}
.ls85_c00293{letter-spacing:-0.400267pt;}
.ls66_c00293{letter-spacing:-0.398667pt;}
.ls70_c00293{letter-spacing:-0.355733pt;}
.ls79_c00293{letter-spacing:-0.337333pt;}
.ls83_c00293{letter-spacing:-0.318933pt;}
.ls6f_c00293{letter-spacing:-0.294400pt;}
.ls56_c00293{letter-spacing:-0.276000pt;}
.ls7d_c00293{letter-spacing:-0.263733pt;}
.ls76_c00293{letter-spacing:-0.239200pt;}
.ls7b_c00293{letter-spacing:-0.214667pt;}
.ls5a_c00293{letter-spacing:-0.196267pt;}
.ls7c_c00293{letter-spacing:-0.190133pt;}
.ls5c_c00293{letter-spacing:-0.177867pt;}
.ls6a_c00293{letter-spacing:-0.110400pt;}
.ls78_c00293{letter-spacing:-0.092000pt;}
.ls54_c00293{letter-spacing:-0.079733pt;}
.ls59_c00293{letter-spacing:-0.073600pt;}
.ls67_c00293{letter-spacing:-0.067467pt;}
.ls52_c00293{letter-spacing:-0.055200pt;}
.ls6e_c00293{letter-spacing:-0.042933pt;}
.ls5d_c00293{letter-spacing:-0.036800pt;}
.ls51_c00293{letter-spacing:0.000000pt;}
.ls8_c00293{letter-spacing:0.012267pt;}
.ls42_c00293{letter-spacing:0.018400pt;}
.ls2d_c00293{letter-spacing:0.024533pt;}
.ls18_c00293{letter-spacing:0.036800pt;}
.ls82_c00293{letter-spacing:0.049067pt;}
.ls1e_c00293{letter-spacing:0.067467pt;}
.ls41_c00293{letter-spacing:0.079733pt;}
.ls1b_c00293{letter-spacing:0.110400pt;}
.ls16_c00293{letter-spacing:0.116533pt;}
.ls4c_c00293{letter-spacing:0.126560pt;}
.ls19_c00293{letter-spacing:0.128800pt;}
.ls3f_c00293{letter-spacing:0.134933pt;}
.ls37_c00293{letter-spacing:0.141067pt;}
.ls26_c00293{letter-spacing:0.147200pt;}
.lsb_c00293{letter-spacing:0.159467pt;}
.lsa_c00293{letter-spacing:0.165600pt;}
.ls84_c00293{letter-spacing:0.190133pt;}
.ls80_c00293{letter-spacing:0.202400pt;}
.ls1f_c00293{letter-spacing:0.214667pt;}
.ls23_c00293{letter-spacing:0.220800pt;}
.ls2f_c00293{letter-spacing:0.239200pt;}
.ls38_c00293{letter-spacing:0.245333pt;}
.ls2a_c00293{letter-spacing:0.257600pt;}
.ls3e_c00293{letter-spacing:0.263733pt;}
.ls4a_c00293{letter-spacing:0.269867pt;}
.ls40_c00293{letter-spacing:0.276000pt;}
.ls1c_c00293{letter-spacing:0.282133pt;}
.ls3d_c00293{letter-spacing:0.288267pt;}
.ls2c_c00293{letter-spacing:0.294400pt;}
.ls2e_c00293{letter-spacing:0.312800pt;}
.ls3_c00293{letter-spacing:0.318933pt;}
.ls3c_c00293{letter-spacing:0.337333pt;}
.ls1_c00293{letter-spacing:0.349600pt;}
.ls7f_c00293{letter-spacing:0.355733pt;}
.ls5_c00293{letter-spacing:0.361867pt;}
.ls48_c00293{letter-spacing:0.368000pt;}
.ls36_c00293{letter-spacing:0.380267pt;}
.ls22_c00293{letter-spacing:0.392533pt;}
.lsd_c00293{letter-spacing:0.404800pt;}
.ls4_c00293{letter-spacing:0.435467pt;}
.ls10_c00293{letter-spacing:0.447733pt;}
.lsc_c00293{letter-spacing:0.460000pt;}
.ls6b_c00293{letter-spacing:0.472267pt;}
.ls30_c00293{letter-spacing:0.490667pt;}
.ls1d_c00293{letter-spacing:0.509067pt;}
.ls68_c00293{letter-spacing:0.521333pt;}
.ls47_c00293{letter-spacing:0.536373pt;}
.lse_c00293{letter-spacing:0.570400pt;}
.ls6_c00293{letter-spacing:0.576533pt;}
.ls34_c00293{letter-spacing:0.588800pt;}
.ls4e_c00293{letter-spacing:0.601067pt;}
.ls11_c00293{letter-spacing:0.607200pt;}
.ls0_c00293{letter-spacing:0.619467pt;}
.ls2_c00293{letter-spacing:0.637867pt;}
.ls32_c00293{letter-spacing:0.644000pt;}
.ls28_c00293{letter-spacing:0.656267pt;}
.ls24_c00293{letter-spacing:0.668533pt;}
.ls27_c00293{letter-spacing:0.674667pt;}
.ls33_c00293{letter-spacing:0.680800pt;}
.ls15_c00293{letter-spacing:0.681013pt;}
.ls3b_c00293{letter-spacing:0.693067pt;}
.ls2b_c00293{letter-spacing:0.705333pt;}
.ls31_c00293{letter-spacing:0.723733pt;}
.ls12_c00293{letter-spacing:0.771413pt;}
.ls4f_c00293{letter-spacing:0.785067pt;}
.ls75_c00293{letter-spacing:0.809600pt;}
.ls17_c00293{letter-spacing:0.821867pt;}
.ls39_c00293{letter-spacing:0.831680pt;}
.ls46_c00293{letter-spacing:0.837707pt;}
.ls49_c00293{letter-spacing:0.846400pt;}
.ls21_c00293{letter-spacing:0.870933pt;}
.ls43_c00293{letter-spacing:0.940160pt;}
.lsf_c00293{letter-spacing:0.950667pt;}
.ls9_c00293{letter-spacing:0.975200pt;}
.ls35_c00293{letter-spacing:0.993600pt;}
.ls14_c00293{letter-spacing:1.012480pt;}
.ls7_c00293{letter-spacing:1.061067pt;}
.ls3a_c00293{letter-spacing:1.189867pt;}
.ls20_c00293{letter-spacing:1.208267pt;}
.ls13_c00293{letter-spacing:1.277653pt;}
.ls1a_c00293{letter-spacing:1.283680pt;}
.ls45_c00293{letter-spacing:1.306400pt;}
.ls29_c00293{letter-spacing:1.324800pt;}
.ls44_c00293{letter-spacing:1.422933pt;}
.ls4d_c00293{letter-spacing:1.827733pt;}
.ls4b_c00293{letter-spacing:2.217813pt;}
.ls25_c00293{letter-spacing:2.257067pt;}
.ws4_c00293{word-spacing:0.000000pt;}
.ws3_c00293{word-spacing:1.954293pt;}
.ws1_c00293{word-spacing:6.159467pt;}
.ws0_c00293{word-spacing:6.266347pt;}
.ws2_c00293{word-spacing:25.653867pt;}
._14_c00293{margin-left:-6.469013pt;}
._15_c00293{margin-left:-3.680747pt;}
._6_c00293{margin-left:-2.085333pt;}
._8_c00293{margin-left:-1.153067pt;}
._5_c00293{width:0.910133pt;}
._4_c00293{width:2.306133pt;}
._2_c00293{width:3.508267pt;}
._0_c00293{width:5.244000pt;}
._9_c00293{width:6.275680pt;}
._1_c00293{width:7.323200pt;}
._3_c00293{width:9.206133pt;}
._a_c00293{width:10.941867pt;}
._7_c00293{width:11.984533pt;}
._d_c00293{width:15.462133pt;}
._b_c00293{width:18.866133pt;}
._e_c00293{width:20.614133pt;}
._13_c00293{width:21.877600pt;}
._12_c00293{width:23.147200pt;}
._f_c00293{width:24.422933pt;}
._11_c00293{width:27.103200pt;}
._10_c00293{width:28.918667pt;}
._c_c00293{width:40.357333pt;}
._16_c00293{width:957.501440pt;}
.fs5_c00293{font-size:20.480000pt;}
.fs7_c00293{font-size:50.666667pt;}
.fs0_c00293{font-size:58.666667pt;}
.fs2_c00293{font-size:60.266667pt;}
.fs1_c00293{font-size:61.333333pt;}
.fs4_c00293{font-size:61.866667pt;}
.fs3_c00293{font-size:62.400000pt;}
.fs6_c00293{font-size:96.000000pt;}
.y0_c00293{bottom:0.000000pt;}
.y19_c00293{bottom:62.093347pt;}
.y18_c00293{bottom:191.373347pt;}
.y17_c00293{bottom:196.810013pt;}
.y16_c00293{bottom:224.333347pt;}
.y15_c00293{bottom:279.054013pt;}
.y14_c00293{bottom:305.933347pt;}
.y13_c00293{bottom:360.646680pt;}
.y12_c00293{bottom:388.154680pt;}
.y11_c00293{bottom:415.693347pt;}
.y10_c00293{bottom:471.373347pt;}
.yf_c00293{bottom:527.370013pt;}
.ye_c00293{bottom:554.571347pt;}
.yd_c00293{bottom:581.757347pt;}
.yc_c00293{bottom:609.296013pt;}
.yb_c00293{bottom:636.160013pt;}
.ya_c00293{bottom:691.213347pt;}
.y8_c00293{bottom:746.234013pt;}
.y9_c00293{bottom:746.240013pt;}
.y7_c00293{bottom:800.974013pt;}
.y6_c00293{bottom:828.160013pt;}
.y5_c00293{bottom:882.555347pt;}
.y4_c00293{bottom:936.968680pt;}
.y3_c00293{bottom:964.154680pt;}
.y2_c00293{bottom:991.693347pt;}
.y1_c00293{bottom:1059.213347pt;}
.h9_c00293{height:13.639680pt;}
.hb_c00293{height:49.726562pt;}
.h2_c00293{height:59.125000pt;}
.h3_c00293{height:60.195312pt;}
.h5_c00293{height:60.208646pt;}
.h4_c00293{height:60.213979pt;}
.h6_c00293{height:61.211719pt;}
.h8_c00293{height:62.350000pt;}
.h7_c00293{height:62.887500pt;}
.ha_c00293{height:100.125000pt;}
.h1_c00293{height:1122.666667pt;}
.h0_c00293{height:1122.880013pt;}
.w1_c00293{width:793.333333pt;}
.w0_c00293{width:793.600013pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:107.133347pt;}
.x2_c00293{left:108.586680pt;}
.xc_c00293{left:143.040013pt;}
.x5_c00293{left:153.843347pt;}
.x3_c00293{left:155.107347pt;}
.x8_c00293{left:249.200013pt;}
.x4_c00293{left:313.040013pt;}
.xa_c00293{left:318.573347pt;}
.xb_c00293{left:338.080013pt;}
.xd_c00293{left:360.733347pt;}
.x6_c00293{left:367.826680pt;}
.xe_c00293{left:374.960013pt;}
.x9_c00293{left:382.053347pt;}
.x7_c00293{left:393.400013pt;}
}





/* 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_c00294 {
    display:none;
  }
  .loading-indicator_c00294.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00294 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_c00294 { 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_c00294" -> "#page-container .classname_c00294")
 */
.pf_c00294 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00294 { /* 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_c00294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00294 { /* 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_c00294 { /* 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_c00294 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00294 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00294 {overflow:visible;}
  }
}
.c_c00294 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00294 { /* 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_c00294:after { /* webkit #35443 */
  content: '';
}
.t_c00294:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00294 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 */
}
.__c00294 { /* 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_c00294 { /* info for Javascript */
  display:none;
}
.l_c00294 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00294 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00294 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00294: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_c00294 {
    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_c00294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00294.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_c00294 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00294;src:url('chunks/assets/font_436b4a8bbcc0918388137536.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.284668;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_c00294;src:url('chunks/assets/font_30d2e877fad6ed5a361be269.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.284180;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_c00294;src:url('chunks/assets/font_a607048a877942169a3d53a5.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:0.666000;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_c00294;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;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;}
.m4_c00294{transform:matrix(0.138998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138998,0.000000,0.000000,0.250000,0,0);}
.m6_c00294{transform:matrix(0.186898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186898,0.000000,0.000000,0.250000,0,0);}
.m5_c00294{transform:matrix(0.192020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192020,0.000000,0.000000,0.250000,0,0);}
.m3_c00294{transform:matrix(0.210459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210459,0.000000,0.000000,0.250000,0,0);}
.m8_c00294{transform:matrix(0.239853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239853,0.000000,0.000000,0.250000,0,0);}
.m0_c00294{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m7_c00294{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m2_c00294{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m1_c00294{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);}
.v0_c00294{vertical-align:0.000000px;}
.ls60_c00294{letter-spacing:-2.436000px;}
.ls73_c00294{letter-spacing:-2.415000px;}
.ls5d_c00294{letter-spacing:-2.352000px;}
.ls66_c00294{letter-spacing:-2.234160px;}
.ls87_c00294{letter-spacing:-1.774800px;}
.ls7d_c00294{letter-spacing:-1.767840px;}
.ls6a_c00294{letter-spacing:-1.760880px;}
.ls63_c00294{letter-spacing:-1.503360px;}
.ls77_c00294{letter-spacing:-1.426800px;}
.ls8b_c00294{letter-spacing:-1.412880px;}
.ls64_c00294{letter-spacing:-1.294560px;}
.ls65_c00294{letter-spacing:-1.238880px;}
.ls82_c00294{letter-spacing:-1.218000px;}
.ls86_c00294{letter-spacing:-1.023120px;}
.ls70_c00294{letter-spacing:-0.988320px;}
.ls6b_c00294{letter-spacing:-0.925680px;}
.ls79_c00294{letter-spacing:-0.897840px;}
.ls8c_c00294{letter-spacing:-0.883920px;}
.ls69_c00294{letter-spacing:-0.828240px;}
.ls78_c00294{letter-spacing:-0.758640px;}
.ls7f_c00294{letter-spacing:-0.689040px;}
.ls8a_c00294{letter-spacing:-0.668160px;}
.ls80_c00294{letter-spacing:-0.621000px;}
.ls7a_c00294{letter-spacing:-0.508080px;}
.ls7c_c00294{letter-spacing:-0.494160px;}
.ls89_c00294{letter-spacing:-0.466320px;}
.ls5f_c00294{letter-spacing:-0.452400px;}
.ls76_c00294{letter-spacing:-0.445440px;}
.ls67_c00294{letter-spacing:-0.403680px;}
.ls62_c00294{letter-spacing:-0.243600px;}
.ls6f_c00294{letter-spacing:-0.208800px;}
.ls85_c00294{letter-spacing:-0.187920px;}
.ls74_c00294{letter-spacing:-0.180960px;}
.ls88_c00294{letter-spacing:-0.179400px;}
.ls81_c00294{letter-spacing:-0.146160px;}
.ls75_c00294{letter-spacing:-0.118320px;}
.ls71_c00294{letter-spacing:-0.111360px;}
.ls5e_c00294{letter-spacing:-0.104400px;}
.ls68_c00294{letter-spacing:-0.097440px;}
.ls6d_c00294{letter-spacing:-0.090480px;}
.ls7b_c00294{letter-spacing:-0.062640px;}
.ls83_c00294{letter-spacing:-0.034800px;}
.ls6e_c00294{letter-spacing:-0.020880px;}
.ls84_c00294{letter-spacing:-0.006960px;}
.ls61_c00294{letter-spacing:0.000000px;}
.ls52_c00294{letter-spacing:0.006960px;}
.ls3_c00294{letter-spacing:0.027840px;}
.ls5c_c00294{letter-spacing:0.034800px;}
.lsc_c00294{letter-spacing:0.055680px;}
.ls26_c00294{letter-spacing:0.090480px;}
.ls4d_c00294{letter-spacing:0.110400px;}
.ls21_c00294{letter-spacing:0.111360px;}
.ls3a_c00294{letter-spacing:0.125280px;}
.ls33_c00294{letter-spacing:0.146160px;}
.ls12_c00294{letter-spacing:0.167040px;}
.ls2d_c00294{letter-spacing:0.174000px;}
.ls30_c00294{letter-spacing:0.208800px;}
.ls3f_c00294{letter-spacing:0.222720px;}
.ls2b_c00294{letter-spacing:0.229680px;}
.ls4b_c00294{letter-spacing:0.236640px;}
.ls7e_c00294{letter-spacing:0.243600px;}
.ls10_c00294{letter-spacing:0.250560px;}
.ls2_c00294{letter-spacing:0.264480px;}
.lsf_c00294{letter-spacing:0.271440px;}
.ls56_c00294{letter-spacing:0.285360px;}
.ls5_c00294{letter-spacing:0.292320px;}
.ls2e_c00294{letter-spacing:0.299280px;}
.ls3d_c00294{letter-spacing:0.306240px;}
.lsb_c00294{letter-spacing:0.320160px;}
.ls34_c00294{letter-spacing:0.327120px;}
.ls38_c00294{letter-spacing:0.334080px;}
.lsd_c00294{letter-spacing:0.348000px;}
.ls48_c00294{letter-spacing:0.351900px;}
.ls54_c00294{letter-spacing:0.361920px;}
.ls47_c00294{letter-spacing:0.365700px;}
.ls6_c00294{letter-spacing:0.379500px;}
.ls55_c00294{letter-spacing:0.389760px;}
.ls24_c00294{letter-spacing:0.410640px;}
.ls72_c00294{letter-spacing:0.417600px;}
.ls42_c00294{letter-spacing:0.445440px;}
.ls50_c00294{letter-spacing:0.452400px;}
.ls27_c00294{letter-spacing:0.466320px;}
.ls1b_c00294{letter-spacing:0.494160px;}
.ls49_c00294{letter-spacing:0.508080px;}
.ls5a_c00294{letter-spacing:0.515040px;}
.ls11_c00294{letter-spacing:0.522000px;}
.ls29_c00294{letter-spacing:0.535920px;}
.lse_c00294{letter-spacing:0.542880px;}
.ls8_c00294{letter-spacing:0.556800px;}
.ls1e_c00294{letter-spacing:0.565800px;}
.ls20_c00294{letter-spacing:0.577680px;}
.ls5b_c00294{letter-spacing:0.586500px;}
.lsa_c00294{letter-spacing:0.591600px;}
.ls15_c00294{letter-spacing:0.619440px;}
.ls14_c00294{letter-spacing:0.633360px;}
.ls53_c00294{letter-spacing:0.640320px;}
.ls45_c00294{letter-spacing:0.709920px;}
.ls1a_c00294{letter-spacing:0.716880px;}
.ls2c_c00294{letter-spacing:0.723840px;}
.ls51_c00294{letter-spacing:0.737760px;}
.ls43_c00294{letter-spacing:0.744720px;}
.ls17_c00294{letter-spacing:0.751680px;}
.ls2f_c00294{letter-spacing:0.758640px;}
.ls36_c00294{letter-spacing:0.759000px;}
.ls16_c00294{letter-spacing:0.793440px;}
.ls13_c00294{letter-spacing:0.800400px;}
.ls8d_c00294{letter-spacing:0.820620px;}
.ls18_c00294{letter-spacing:0.821280px;}
.ls9_c00294{letter-spacing:0.828000px;}
.ls39_c00294{letter-spacing:0.849120px;}
.ls32_c00294{letter-spacing:0.856080px;}
.ls7_c00294{letter-spacing:0.876300px;}
.ls4_c00294{letter-spacing:0.883920px;}
.ls40_c00294{letter-spacing:0.890880px;}
.ls22_c00294{letter-spacing:0.904800px;}
.ls23_c00294{letter-spacing:0.925680px;}
.ls1f_c00294{letter-spacing:0.960480px;}
.ls19_c00294{letter-spacing:1.028100px;}
.ls35_c00294{letter-spacing:1.037040px;}
.ls6c_c00294{letter-spacing:1.085760px;}
.ls1d_c00294{letter-spacing:1.141440px;}
.ls1c_c00294{letter-spacing:1.155360px;}
.ls4a_c00294{letter-spacing:1.190160px;}
.ls31_c00294{letter-spacing:1.231920px;}
.ls25_c00294{letter-spacing:1.245840px;}
.ls59_c00294{letter-spacing:1.262700px;}
.ls44_c00294{letter-spacing:1.280640px;}
.ls57_c00294{letter-spacing:1.350240px;}
.ls28_c00294{letter-spacing:1.398960px;}
.ls3c_c00294{letter-spacing:1.461600px;}
.ls4f_c00294{letter-spacing:1.475520px;}
.ls2a_c00294{letter-spacing:1.600800px;}
.ls41_c00294{letter-spacing:1.607760px;}
.ls46_c00294{letter-spacing:1.983600px;}
.ls3e_c00294{letter-spacing:2.088000px;}
.ls1_c00294{letter-spacing:2.318400px;}
.ls4e_c00294{letter-spacing:2.442960px;}
.ls3b_c00294{letter-spacing:2.888400px;}
.ls58_c00294{letter-spacing:3.056700px;}
.ls4c_c00294{letter-spacing:3.091200px;}
.ls37_c00294{letter-spacing:3.145920px;}
.ls0_c00294{letter-spacing:3.256800px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{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__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00294{word-spacing:-0.224400px;}
.ws5_c00294{word-spacing:0.000000px;}
.ws0_c00294{word-spacing:1.659000px;}
.ws2_c00294{word-spacing:4.461000px;}
.ws3_c00294{word-spacing:14.994000px;}
.ws4_c00294{word-spacing:15.437100px;}
._0_c00294{margin-left:-5.713200px;}
._a_c00294{margin-left:-3.876720px;}
._1_c00294{margin-left:-2.811600px;}
._4_c00294{margin-left:-1.385040px;}
._5_c00294{width:1.461600px;}
._8_c00294{width:2.819340px;}
._3_c00294{width:4.036800px;}
._2_c00294{width:5.498400px;}
._10_c00294{width:6.535440px;}
._6_c00294{width:7.586400px;}
._9_c00294{width:10.021860px;}
._d_c00294{width:11.407440px;}
._e_c00294{width:12.813360px;}
._f_c00294{width:13.970220px;}
._7_c00294{width:16.335120px;}
._b_c00294{width:19.738560px;}
._c_c00294{width:20.949600px;}
.fc0_c00294{color:transparent;}
.fs3_c00294{font-size:53.280000px;}
.fs4_c00294{font-size:58.200000px;}
.fs0_c00294{font-size:67.200000px;}
.fs1_c00294{font-size:69.000000px;}
.fs2_c00294{font-size:69.600000px;}
.y0_c00294{bottom:0.000000px;}
.y18_c00294{bottom:67.335000px;}
.y17_c00294{bottom:156.600000px;}
.y16_c00294{bottom:217.815000px;}
.y15_c00294{bottom:311.055000px;}
.y14_c00294{bottom:373.342800px;}
.y13_c00294{bottom:404.280000px;}
.y12_c00294{bottom:435.255000px;}
.y11_c00294{bottom:496.816200px;}
.y10_c00294{bottom:527.770800px;}
.yf_c00294{bottom:558.360000px;}
.ye_c00294{bottom:620.288400px;}
.yd_c00294{bottom:650.896200px;}
.yc_c00294{bottom:681.850800px;}
.yb_c00294{bottom:712.440000px;}
.ya_c00294{bottom:775.080000px;}
.y9_c00294{bottom:838.820400px;}
.y8_c00294{bottom:869.776200px;}
.y7_c00294{bottom:900.000000px;}
.y6_c00294{bottom:961.935000px;}
.y5_c00294{bottom:1023.856200px;}
.y3_c00294{bottom:1085.396400px;}
.y4_c00294{bottom:1085.400000px;}
.y2_c00294{bottom:1115.655000px;}
.y1_c00294{bottom:1193.040000px;}
.h4_c00294{height:35.484480px;}
.h7_c00294{height:57.120117px;}
.h2_c00294{height:65.953125px;}
.h5_c00294{height:67.719727px;}
.h3_c00294{height:68.308594px;}
.h6_c00294{height:71.964844px;}
.h1_c00294{height:1263.000000px;}
.h0_c00294{height:1263.240000px;}
.w1_c00294{width:892.500000px;}
.w0_c00294{width:892.800000px;}
.x0_c00294{left:0.000000px;}
.x12_c00294{left:122.239800px;}
.xb_c00294{left:123.292200px;}
.x1_c00294{left:126.285000px;}
.x13_c00294{left:174.765000px;}
.xc_c00294{left:175.845000px;}
.x3_c00294{left:177.022800px;}
.x6_c00294{left:178.484400px;}
.x4_c00294{left:245.325000px;}
.x5_c00294{left:272.775000px;}
.x2_c00294{left:295.620000px;}
.x10_c00294{left:305.460000px;}
.x15_c00294{left:319.815000px;}
.x11_c00294{left:322.740000px;}
.x16_c00294{left:349.170000px;}
.x14_c00294{left:354.660000px;}
.x17_c00294{left:425.430000px;}
.xd_c00294{left:433.725000px;}
.x7_c00294{left:443.025000px;}
.xe_c00294{left:466.020000px;}
.x8_c00294{left:474.330000px;}
.x9_c00294{left:492.120000px;}
.xa_c00294{left:549.540000px;}
.xf_c00294{left:622.725000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls60_c00294{letter-spacing:-2.165333pt;}
.ls73_c00294{letter-spacing:-2.146667pt;}
.ls5d_c00294{letter-spacing:-2.090667pt;}
.ls66_c00294{letter-spacing:-1.985920pt;}
.ls87_c00294{letter-spacing:-1.577600pt;}
.ls7d_c00294{letter-spacing:-1.571413pt;}
.ls6a_c00294{letter-spacing:-1.565227pt;}
.ls63_c00294{letter-spacing:-1.336320pt;}
.ls77_c00294{letter-spacing:-1.268267pt;}
.ls8b_c00294{letter-spacing:-1.255893pt;}
.ls64_c00294{letter-spacing:-1.150720pt;}
.ls65_c00294{letter-spacing:-1.101227pt;}
.ls82_c00294{letter-spacing:-1.082667pt;}
.ls86_c00294{letter-spacing:-0.909440pt;}
.ls70_c00294{letter-spacing:-0.878507pt;}
.ls6b_c00294{letter-spacing:-0.822827pt;}
.ls79_c00294{letter-spacing:-0.798080pt;}
.ls8c_c00294{letter-spacing:-0.785707pt;}
.ls69_c00294{letter-spacing:-0.736213pt;}
.ls78_c00294{letter-spacing:-0.674347pt;}
.ls7f_c00294{letter-spacing:-0.612480pt;}
.ls8a_c00294{letter-spacing:-0.593920pt;}
.ls80_c00294{letter-spacing:-0.552000pt;}
.ls7a_c00294{letter-spacing:-0.451627pt;}
.ls7c_c00294{letter-spacing:-0.439253pt;}
.ls89_c00294{letter-spacing:-0.414507pt;}
.ls5f_c00294{letter-spacing:-0.402133pt;}
.ls76_c00294{letter-spacing:-0.395947pt;}
.ls67_c00294{letter-spacing:-0.358827pt;}
.ls62_c00294{letter-spacing:-0.216533pt;}
.ls6f_c00294{letter-spacing:-0.185600pt;}
.ls85_c00294{letter-spacing:-0.167040pt;}
.ls74_c00294{letter-spacing:-0.160853pt;}
.ls88_c00294{letter-spacing:-0.159467pt;}
.ls81_c00294{letter-spacing:-0.129920pt;}
.ls75_c00294{letter-spacing:-0.105173pt;}
.ls71_c00294{letter-spacing:-0.098987pt;}
.ls5e_c00294{letter-spacing:-0.092800pt;}
.ls68_c00294{letter-spacing:-0.086613pt;}
.ls6d_c00294{letter-spacing:-0.080427pt;}
.ls7b_c00294{letter-spacing:-0.055680pt;}
.ls83_c00294{letter-spacing:-0.030933pt;}
.ls6e_c00294{letter-spacing:-0.018560pt;}
.ls84_c00294{letter-spacing:-0.006187pt;}
.ls61_c00294{letter-spacing:0.000000pt;}
.ls52_c00294{letter-spacing:0.006187pt;}
.ls3_c00294{letter-spacing:0.024747pt;}
.ls5c_c00294{letter-spacing:0.030933pt;}
.lsc_c00294{letter-spacing:0.049493pt;}
.ls26_c00294{letter-spacing:0.080427pt;}
.ls4d_c00294{letter-spacing:0.098133pt;}
.ls21_c00294{letter-spacing:0.098987pt;}
.ls3a_c00294{letter-spacing:0.111360pt;}
.ls33_c00294{letter-spacing:0.129920pt;}
.ls12_c00294{letter-spacing:0.148480pt;}
.ls2d_c00294{letter-spacing:0.154667pt;}
.ls30_c00294{letter-spacing:0.185600pt;}
.ls3f_c00294{letter-spacing:0.197973pt;}
.ls2b_c00294{letter-spacing:0.204160pt;}
.ls4b_c00294{letter-spacing:0.210347pt;}
.ls7e_c00294{letter-spacing:0.216533pt;}
.ls10_c00294{letter-spacing:0.222720pt;}
.ls2_c00294{letter-spacing:0.235093pt;}
.lsf_c00294{letter-spacing:0.241280pt;}
.ls56_c00294{letter-spacing:0.253653pt;}
.ls5_c00294{letter-spacing:0.259840pt;}
.ls2e_c00294{letter-spacing:0.266027pt;}
.ls3d_c00294{letter-spacing:0.272213pt;}
.lsb_c00294{letter-spacing:0.284587pt;}
.ls34_c00294{letter-spacing:0.290773pt;}
.ls38_c00294{letter-spacing:0.296960pt;}
.lsd_c00294{letter-spacing:0.309333pt;}
.ls48_c00294{letter-spacing:0.312800pt;}
.ls54_c00294{letter-spacing:0.321707pt;}
.ls47_c00294{letter-spacing:0.325067pt;}
.ls6_c00294{letter-spacing:0.337333pt;}
.ls55_c00294{letter-spacing:0.346453pt;}
.ls24_c00294{letter-spacing:0.365013pt;}
.ls72_c00294{letter-spacing:0.371200pt;}
.ls42_c00294{letter-spacing:0.395947pt;}
.ls50_c00294{letter-spacing:0.402133pt;}
.ls27_c00294{letter-spacing:0.414507pt;}
.ls1b_c00294{letter-spacing:0.439253pt;}
.ls49_c00294{letter-spacing:0.451627pt;}
.ls5a_c00294{letter-spacing:0.457813pt;}
.ls11_c00294{letter-spacing:0.464000pt;}
.ls29_c00294{letter-spacing:0.476373pt;}
.lse_c00294{letter-spacing:0.482560pt;}
.ls8_c00294{letter-spacing:0.494933pt;}
.ls1e_c00294{letter-spacing:0.502933pt;}
.ls20_c00294{letter-spacing:0.513493pt;}
.ls5b_c00294{letter-spacing:0.521333pt;}
.lsa_c00294{letter-spacing:0.525867pt;}
.ls15_c00294{letter-spacing:0.550613pt;}
.ls14_c00294{letter-spacing:0.562987pt;}
.ls53_c00294{letter-spacing:0.569173pt;}
.ls45_c00294{letter-spacing:0.631040pt;}
.ls1a_c00294{letter-spacing:0.637227pt;}
.ls2c_c00294{letter-spacing:0.643413pt;}
.ls51_c00294{letter-spacing:0.655787pt;}
.ls43_c00294{letter-spacing:0.661973pt;}
.ls17_c00294{letter-spacing:0.668160pt;}
.ls2f_c00294{letter-spacing:0.674347pt;}
.ls36_c00294{letter-spacing:0.674667pt;}
.ls16_c00294{letter-spacing:0.705280pt;}
.ls13_c00294{letter-spacing:0.711467pt;}
.ls8d_c00294{letter-spacing:0.729440pt;}
.ls18_c00294{letter-spacing:0.730027pt;}
.ls9_c00294{letter-spacing:0.736000pt;}
.ls39_c00294{letter-spacing:0.754773pt;}
.ls32_c00294{letter-spacing:0.760960pt;}
.ls7_c00294{letter-spacing:0.778933pt;}
.ls4_c00294{letter-spacing:0.785707pt;}
.ls40_c00294{letter-spacing:0.791893pt;}
.ls22_c00294{letter-spacing:0.804267pt;}
.ls23_c00294{letter-spacing:0.822827pt;}
.ls1f_c00294{letter-spacing:0.853760pt;}
.ls19_c00294{letter-spacing:0.913867pt;}
.ls35_c00294{letter-spacing:0.921813pt;}
.ls6c_c00294{letter-spacing:0.965120pt;}
.ls1d_c00294{letter-spacing:1.014613pt;}
.ls1c_c00294{letter-spacing:1.026987pt;}
.ls4a_c00294{letter-spacing:1.057920pt;}
.ls31_c00294{letter-spacing:1.095040pt;}
.ls25_c00294{letter-spacing:1.107413pt;}
.ls59_c00294{letter-spacing:1.122400pt;}
.ls44_c00294{letter-spacing:1.138347pt;}
.ls57_c00294{letter-spacing:1.200213pt;}
.ls28_c00294{letter-spacing:1.243520pt;}
.ls3c_c00294{letter-spacing:1.299200pt;}
.ls4f_c00294{letter-spacing:1.311573pt;}
.ls2a_c00294{letter-spacing:1.422933pt;}
.ls41_c00294{letter-spacing:1.429120pt;}
.ls46_c00294{letter-spacing:1.763200pt;}
.ls3e_c00294{letter-spacing:1.856000pt;}
.ls1_c00294{letter-spacing:2.060800pt;}
.ls4e_c00294{letter-spacing:2.171520pt;}
.ls3b_c00294{letter-spacing:2.567467pt;}
.ls58_c00294{letter-spacing:2.717067pt;}
.ls4c_c00294{letter-spacing:2.747733pt;}
.ls37_c00294{letter-spacing:2.796373pt;}
.ls0_c00294{letter-spacing:2.894933pt;}
.ws1_c00294{word-spacing:-0.199467pt;}
.ws5_c00294{word-spacing:0.000000pt;}
.ws0_c00294{word-spacing:1.474667pt;}
.ws2_c00294{word-spacing:3.965333pt;}
.ws3_c00294{word-spacing:13.328000pt;}
.ws4_c00294{word-spacing:13.721867pt;}
._0_c00294{margin-left:-5.078400pt;}
._a_c00294{margin-left:-3.445973pt;}
._1_c00294{margin-left:-2.499200pt;}
._4_c00294{margin-left:-1.231147pt;}
._5_c00294{width:1.299200pt;}
._8_c00294{width:2.506080pt;}
._3_c00294{width:3.588267pt;}
._2_c00294{width:4.887467pt;}
._10_c00294{width:5.809280pt;}
._6_c00294{width:6.743467pt;}
._9_c00294{width:8.908320pt;}
._d_c00294{width:10.139947pt;}
._e_c00294{width:11.389653pt;}
._f_c00294{width:12.417973pt;}
._7_c00294{width:14.520107pt;}
._b_c00294{width:17.545387pt;}
._c_c00294{width:18.621867pt;}
.fs3_c00294{font-size:47.360000pt;}
.fs4_c00294{font-size:51.733333pt;}
.fs0_c00294{font-size:59.733333pt;}
.fs1_c00294{font-size:61.333333pt;}
.fs2_c00294{font-size:61.866667pt;}
.y0_c00294{bottom:0.000000pt;}
.y18_c00294{bottom:59.853333pt;}
.y17_c00294{bottom:139.200000pt;}
.y16_c00294{bottom:193.613333pt;}
.y15_c00294{bottom:276.493333pt;}
.y14_c00294{bottom:331.860267pt;}
.y13_c00294{bottom:359.360000pt;}
.y12_c00294{bottom:386.893333pt;}
.y11_c00294{bottom:441.614400pt;}
.y10_c00294{bottom:469.129600pt;}
.yf_c00294{bottom:496.320000pt;}
.ye_c00294{bottom:551.367467pt;}
.yd_c00294{bottom:578.574400pt;}
.yc_c00294{bottom:606.089600pt;}
.yb_c00294{bottom:633.280000pt;}
.ya_c00294{bottom:688.960000pt;}
.y9_c00294{bottom:745.618133pt;}
.y8_c00294{bottom:773.134400pt;}
.y7_c00294{bottom:800.000000pt;}
.y6_c00294{bottom:855.053333pt;}
.y5_c00294{bottom:910.094400pt;}
.y3_c00294{bottom:964.796800pt;}
.y4_c00294{bottom:964.800000pt;}
.y2_c00294{bottom:991.693333pt;}
.y1_c00294{bottom:1060.480000pt;}
.h4_c00294{height:31.541760pt;}
.h7_c00294{height:50.773437pt;}
.h2_c00294{height:58.625000pt;}
.h5_c00294{height:60.195312pt;}
.h3_c00294{height:60.718750pt;}
.h6_c00294{height:63.968750pt;}
.h1_c00294{height:1122.666667pt;}
.h0_c00294{height:1122.880000pt;}
.w1_c00294{width:793.333333pt;}
.w0_c00294{width:793.600000pt;}
.x0_c00294{left:0.000000pt;}
.x12_c00294{left:108.657600pt;}
.xb_c00294{left:109.593067pt;}
.x1_c00294{left:112.253333pt;}
.x13_c00294{left:155.346667pt;}
.xc_c00294{left:156.306667pt;}
.x3_c00294{left:157.353600pt;}
.x6_c00294{left:158.652800pt;}
.x4_c00294{left:218.066667pt;}
.x5_c00294{left:242.466667pt;}
.x2_c00294{left:262.773333pt;}
.x10_c00294{left:271.520000pt;}
.x15_c00294{left:284.280000pt;}
.x11_c00294{left:286.880000pt;}
.x16_c00294{left:310.373333pt;}
.x14_c00294{left:315.253333pt;}
.x17_c00294{left:378.160000pt;}
.xd_c00294{left:385.533333pt;}
.x7_c00294{left:393.800000pt;}
.xe_c00294{left:414.240000pt;}
.x8_c00294{left:421.626667pt;}
.x9_c00294{left:437.440000pt;}
.xa_c00294{left:488.480000pt;}
.xf_c00294{left:553.533333pt;}
}





/* 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_c00295 {
    display:none;
  }
  .loading-indicator_c00295.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00295 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_c00295 { 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_c00295" -> "#page-container .classname_c00295")
 */
.pf_c00295 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00295 { /* 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_c00295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00295 { /* 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_c00295 { /* 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_c00295 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00295 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00295 {overflow:visible;}
  }
}
.c_c00295 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00295 { /* 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_c00295:after { /* webkit #35443 */
  content: '';
}
.t_c00295:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00295 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 */
}
.__c00295 { /* 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_c00295 { /* info for Javascript */
  display:none;
}
.l_c00295 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00295 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00295 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00295: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_c00295 {
    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_c00295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00295.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_c00295 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00295;src:url('chunks/assets/font_a550b9374b95781fa6f8ca6e.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.284668;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_c00295;src:url('chunks/assets/font_a2ae7c6ab464a6dedc0eff43.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.284180;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_c00295;src:url('chunks/assets/font_806d6d5fa4774b0e8a5e07d6.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;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:ff4_c00295;src:url('chunks/assets/font_066385a6289b87e23dd029d3.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;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:ff5_c00295;src:url('chunks/assets/font_e58600a5a2ed37f6ca631901.woff2')format("woff");}.ff5_c00295{font-family:ff5_c00295;line-height:1.311035;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;}
.m3_c00295{transform:matrix(0.177439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177439,0.000000,0.000000,0.250000,0,0);}
.m4_c00295{transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);}
.mb_c00295{transform:matrix(0.228064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228064,0.000000,0.000000,0.250000,0,0);}
.m5_c00295{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m8_c00295{transform:matrix(0.243024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243024,0.000000,0.000000,0.250000,0,0);}
.ma_c00295{transform:matrix(0.243239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243239,0.000000,0.000000,0.250000,0,0);}
.m0_c00295{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m2_c00295{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m9_c00295{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m7_c00295{transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{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);}
.m6_c00295{transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls5f_c00295{letter-spacing:-2.436000px;}
.ls90_c00295{letter-spacing:-2.429040px;}
.ls64_c00295{letter-spacing:-2.422080px;}
.ls8a_c00295{letter-spacing:-2.352480px;}
.ls48_c00295{letter-spacing:-2.352000px;}
.ls65_c00295{letter-spacing:-2.331000px;}
.ls67_c00295{letter-spacing:-2.310000px;}
.ls8f_c00295{letter-spacing:-2.296800px;}
.ls88_c00295{letter-spacing:-2.255040px;}
.ls81_c00295{letter-spacing:-2.234160px;}
.ls8e_c00295{letter-spacing:-2.136720px;}
.ls7f_c00295{letter-spacing:-2.025360px;}
.ls84_c00295{letter-spacing:-1.600800px;}
.ls6b_c00295{letter-spacing:-1.531200px;}
.ls87_c00295{letter-spacing:-1.503360px;}
.ls6d_c00295{letter-spacing:-1.475520px;}
.ls5b_c00295{letter-spacing:-1.426800px;}
.ls5a_c00295{letter-spacing:-1.343280px;}
.ls78_c00295{letter-spacing:-1.294560px;}
.ls89_c00295{letter-spacing:-1.238880px;}
.ls72_c00295{letter-spacing:-1.218000px;}
.ls8c_c00295{letter-spacing:-1.190160px;}
.ls60_c00295{letter-spacing:-1.169280px;}
.ls8d_c00295{letter-spacing:-1.148400px;}
.ls92_c00295{letter-spacing:-1.099680px;}
.ls71_c00295{letter-spacing:-0.974400px;}
.ls52_c00295{letter-spacing:-0.897840px;}
.ls7a_c00295{letter-spacing:-0.835200px;}
.ls68_c00295{letter-spacing:-0.751680px;}
.ls86_c00295{letter-spacing:-0.675120px;}
.ls83_c00295{letter-spacing:-0.668160px;}
.ls66_c00295{letter-spacing:-0.605520px;}
.ls91_c00295{letter-spacing:-0.570720px;}
.ls7d_c00295{letter-spacing:-0.508080px;}
.ls85_c00295{letter-spacing:-0.487200px;}
.ls7e_c00295{letter-spacing:-0.473280px;}
.ls80_c00295{letter-spacing:-0.452400px;}
.ls4b_c00295{letter-spacing:-0.445440px;}
.ls70_c00295{letter-spacing:-0.431520px;}
.ls77_c00295{letter-spacing:-0.403680px;}
.ls4e_c00295{letter-spacing:-0.396720px;}
.ls62_c00295{letter-spacing:-0.375840px;}
.ls74_c00295{letter-spacing:-0.334080px;}
.ls6a_c00295{letter-spacing:-0.313200px;}
.ls51_c00295{letter-spacing:-0.278400px;}
.ls63_c00295{letter-spacing:-0.257520px;}
.ls82_c00295{letter-spacing:-0.243600px;}
.ls73_c00295{letter-spacing:-0.236640px;}
.ls56_c00295{letter-spacing:-0.208800px;}
.ls69_c00295{letter-spacing:-0.201840px;}
.ls58_c00295{letter-spacing:-0.194880px;}
.ls59_c00295{letter-spacing:-0.187920px;}
.ls4f_c00295{letter-spacing:-0.180960px;}
.ls61_c00295{letter-spacing:-0.174000px;}
.ls4a_c00295{letter-spacing:-0.160080px;}
.ls5d_c00295{letter-spacing:-0.153120px;}
.ls4d_c00295{letter-spacing:-0.139200px;}
.ls7c_c00295{letter-spacing:-0.132240px;}
.ls6f_c00295{letter-spacing:-0.104400px;}
.ls53_c00295{letter-spacing:-0.097440px;}
.ls57_c00295{letter-spacing:-0.083520px;}
.ls50_c00295{letter-spacing:-0.069600px;}
.ls6e_c00295{letter-spacing:-0.041760px;}
.ls54_c00295{letter-spacing:-0.034800px;}
.ls49_c00295{letter-spacing:-0.027840px;}
.ls6c_c00295{letter-spacing:-0.020880px;}
.ls76_c00295{letter-spacing:-0.013920px;}
.ls75_c00295{letter-spacing:-0.006960px;}
.ls4c_c00295{letter-spacing:0.000000px;}
.ls32_c00295{letter-spacing:0.006960px;}
.ls21_c00295{letter-spacing:0.027840px;}
.ls38_c00295{letter-spacing:0.048720px;}
.ls1e_c00295{letter-spacing:0.055680px;}
.lsf_c00295{letter-spacing:0.062640px;}
.ls7b_c00295{letter-spacing:0.069600px;}
.ls2f_c00295{letter-spacing:0.076560px;}
.ls28_c00295{letter-spacing:0.090480px;}
.lse_c00295{letter-spacing:0.097440px;}
.ls19_c00295{letter-spacing:0.104400px;}
.lsc_c00295{letter-spacing:0.111360px;}
.ls15_c00295{letter-spacing:0.132240px;}
.ls47_c00295{letter-spacing:0.146160px;}
.ls45_c00295{letter-spacing:0.160080px;}
.ls44_c00295{letter-spacing:0.167040px;}
.ls24_c00295{letter-spacing:0.174000px;}
.ls1c_c00295{letter-spacing:0.180960px;}
.ls39_c00295{letter-spacing:0.194880px;}
.ls55_c00295{letter-spacing:0.201840px;}
.ls20_c00295{letter-spacing:0.208800px;}
.ls7_c00295{letter-spacing:0.222720px;}
.ls30_c00295{letter-spacing:0.229680px;}
.ls43_c00295{letter-spacing:0.236640px;}
.ls3e_c00295{letter-spacing:0.243600px;}
.ls2a_c00295{letter-spacing:0.250560px;}
.ls1d_c00295{letter-spacing:0.257520px;}
.ls2c_c00295{letter-spacing:0.264480px;}
.lsd_c00295{letter-spacing:0.292320px;}
.ls26_c00295{letter-spacing:0.313200px;}
.ls29_c00295{letter-spacing:0.320160px;}
.ls5c_c00295{letter-spacing:0.327120px;}
.ls23_c00295{letter-spacing:0.334080px;}
.ls40_c00295{letter-spacing:0.348000px;}
.ls1b_c00295{letter-spacing:0.368880px;}
.ls35_c00295{letter-spacing:0.382800px;}
.ls14_c00295{letter-spacing:0.403680px;}
.ls3c_c00295{letter-spacing:0.459360px;}
.ls12_c00295{letter-spacing:0.466320px;}
.ls4_c00295{letter-spacing:0.473280px;}
.ls8b_c00295{letter-spacing:0.480240px;}
.ls42_c00295{letter-spacing:0.522000px;}
.ls6_c00295{letter-spacing:0.542880px;}
.ls17_c00295{letter-spacing:0.570720px;}
.ls2d_c00295{letter-spacing:0.583080px;}
.ls18_c00295{letter-spacing:0.584640px;}
.ls13_c00295{letter-spacing:0.598560px;}
.ls34_c00295{letter-spacing:0.631800px;}
.ls8_c00295{letter-spacing:0.661200px;}
.lsb_c00295{letter-spacing:0.668160px;}
.ls2_c00295{letter-spacing:0.709920px;}
.ls37_c00295{letter-spacing:0.716880px;}
.ls5e_c00295{letter-spacing:0.730800px;}
.ls1_c00295{letter-spacing:0.751680px;}
.ls1a_c00295{letter-spacing:0.759360px;}
.ls10_c00295{letter-spacing:0.765600px;}
.ls2e_c00295{letter-spacing:0.766140px;}
.ls2b_c00295{letter-spacing:0.793440px;}
.ls3f_c00295{letter-spacing:0.849120px;}
.ls3a_c00295{letter-spacing:0.867840px;}
.ls1f_c00295{letter-spacing:0.883920px;}
.ls41_c00295{letter-spacing:0.925680px;}
.lsa_c00295{letter-spacing:1.002240px;}
.ls25_c00295{letter-spacing:1.057680px;}
.ls27_c00295{letter-spacing:1.127520px;}
.ls0_c00295{letter-spacing:1.139040px;}
.ls11_c00295{letter-spacing:1.141440px;}
.ls16_c00295{letter-spacing:1.240740px;}
.ls31_c00295{letter-spacing:1.398960px;}
.ls9_c00295{letter-spacing:1.447680px;}
.ls5_c00295{letter-spacing:1.517280px;}
.ls3b_c00295{letter-spacing:1.640760px;}
.ls36_c00295{letter-spacing:1.760880px;}
.ls3d_c00295{letter-spacing:1.816560px;}
.ls3_c00295{letter-spacing:1.823520px;}
.ls33_c00295{letter-spacing:1.951560px;}
.ls22_c00295{letter-spacing:1.983600px;}
.ls46_c00295{letter-spacing:2.442960px;}
.ls79_c00295{letter-spacing:3.390000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{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__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00295{word-spacing:-0.450360px;}
.ws6_c00295{word-spacing:0.000000px;}
.ws2_c00295{word-spacing:2.812200px;}
.ws3_c00295{word-spacing:6.840600px;}
.ws4_c00295{word-spacing:12.018060px;}
.ws0_c00295{word-spacing:13.949640px;}
.ws1_c00295{word-spacing:17.257440px;}
._13_c00295{margin-left:-3.946320px;}
._18_c00295{margin-left:-2.535720px;}
._5_c00295{margin-left:-1.343280px;}
._3_c00295{width:1.781760px;}
._4_c00295{width:3.647040px;}
._6_c00295{width:5.526240px;}
._8_c00295{width:6.737280px;}
._7_c00295{width:7.990080px;}
._9_c00295{width:9.284640px;}
._a_c00295{width:10.335600px;}
._2_c00295{width:12.026880px;}
._0_c00295{width:13.251840px;}
._1_c00295{width:14.504640px;}
._12_c00295{width:15.506880px;}
._11_c00295{width:17.191200px;}
._10_c00295{width:18.708480px;}
._f_c00295{width:19.808160px;}
._b_c00295{width:21.861360px;}
._14_c00295{width:22.968000px;}
._15_c00295{width:24.248640px;}
._d_c00295{width:25.257840px;}
._e_c00295{width:26.615040px;}
._c_c00295{width:28.048800px;}
._16_c00295{width:29.934960px;}
._17_c00295{width:36.685560px;}
.fc0_c00295{color:transparent;}
.fs5_c00295{font-size:61.200000px;}
.fs4_c00295{font-size:66.000000px;}
.fs3_c00295{font-size:66.600000px;}
.fs0_c00295{font-size:67.200000px;}
.fs1_c00295{font-size:67.800000px;}
.fs2_c00295{font-size:69.600000px;}
.fs6_c00295{font-size:70.200000px;}
.y0_c00295{bottom:0.000000px;}
.y20_c00295{bottom:70.935000px;}
.y1f_c00295{bottom:128.889600px;}
.y1e_c00295{bottom:159.478800px;}
.y1d_c00295{bottom:189.720000px;}
.y1c_c00295{bottom:252.015000px;}
.y1a_c00295{bottom:313.572600px;}
.y1b_c00295{bottom:313.575000px;}
.y19_c00295{bottom:343.100400px;}
.y18_c00295{bottom:374.055000px;}
.y17_c00295{bottom:374.061600px;}
.y16_c00295{bottom:436.318800px;}
.y15_c00295{bottom:466.560000px;}
.y14_c00295{bottom:528.855000px;}
.y13_c00295{bottom:559.455000px;}
.y12_c00295{bottom:590.775000px;}
.y11_c00295{bottom:651.613800px;}
.y10_c00295{bottom:682.203000px;}
.yf_c00295{bottom:713.175000px;}
.yd_c00295{bottom:774.717600px;}
.ye_c00295{bottom:774.720000px;}
.yc_c00295{bottom:806.055000px;}
.yb_c00295{bottom:806.060400px;}
.ya_c00295{bottom:837.015000px;}
.y8_c00295{bottom:899.653200px;}
.y9_c00295{bottom:899.655000px;}
.y7_c00295{bottom:932.400000px;}
.y6_c00295{bottom:994.700400px;}
.y5_c00295{bottom:1025.289600px;}
.y4_c00295{bottom:1055.548200px;}
.y3_c00295{bottom:1086.502800px;}
.y2_c00295{bottom:1117.440000px;}
.y1_c00295{bottom:1193.400000px;}
.hb_c00295{height:64.775391px;}
.h4_c00295{height:65.364258px;}
.h2_c00295{height:65.953125px;}
.h8_c00295{height:66.508887px;}
.h3_c00295{height:68.308594px;}
.h5_c00295{height:68.315794px;}
.h7_c00295{height:68.318194px;}
.h6_c00295{height:68.835938px;}
.ha_c00295{height:68.863184px;}
.h9_c00295{height:70.143750px;}
.h1_c00295{height:1263.000000px;}
.h0_c00295{height:1263.240000px;}
.w1_c00295{width:892.500000px;}
.w0_c00295{width:892.800000px;}
.x0_c00295{left:0.000000px;}
.x1_c00295{left:124.485000px;}
.x12_c00295{left:171.997200px;}
.x2_c00295{left:177.645000px;}
.x7_c00295{left:209.670000px;}
.x8_c00295{left:241.515000px;}
.x15_c00295{left:290.685000px;}
.x16_c00295{left:318.435000px;}
.x3_c00295{left:327.795000px;}
.x9_c00295{left:337.620000px;}
.x11_c00295{left:351.420000px;}
.x4_c00295{left:353.370000px;}
.xa_c00295{left:417.435000px;}
.x19_c00295{left:426.510000px;}
.xf_c00295{left:436.800000px;}
.xb_c00295{left:441.030000px;}
.x10_c00295{left:459.915000px;}
.x13_c00295{left:462.045000px;}
.x14_c00295{left:495.120000px;}
.x17_c00295{left:520.725000px;}
.xc_c00295{left:548.055000px;}
.x18_c00295{left:549.480000px;}
.xd_c00295{left:580.890000px;}
.xe_c00295{left:600.300000px;}
.x5_c00295{left:673.140000px;}
.x6_c00295{left:709.380000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls5f_c00295{letter-spacing:-2.165333pt;}
.ls90_c00295{letter-spacing:-2.159147pt;}
.ls64_c00295{letter-spacing:-2.152960pt;}
.ls8a_c00295{letter-spacing:-2.091093pt;}
.ls48_c00295{letter-spacing:-2.090667pt;}
.ls65_c00295{letter-spacing:-2.072000pt;}
.ls67_c00295{letter-spacing:-2.053333pt;}
.ls8f_c00295{letter-spacing:-2.041600pt;}
.ls88_c00295{letter-spacing:-2.004480pt;}
.ls81_c00295{letter-spacing:-1.985920pt;}
.ls8e_c00295{letter-spacing:-1.899307pt;}
.ls7f_c00295{letter-spacing:-1.800320pt;}
.ls84_c00295{letter-spacing:-1.422933pt;}
.ls6b_c00295{letter-spacing:-1.361067pt;}
.ls87_c00295{letter-spacing:-1.336320pt;}
.ls6d_c00295{letter-spacing:-1.311573pt;}
.ls5b_c00295{letter-spacing:-1.268267pt;}
.ls5a_c00295{letter-spacing:-1.194027pt;}
.ls78_c00295{letter-spacing:-1.150720pt;}
.ls89_c00295{letter-spacing:-1.101227pt;}
.ls72_c00295{letter-spacing:-1.082667pt;}
.ls8c_c00295{letter-spacing:-1.057920pt;}
.ls60_c00295{letter-spacing:-1.039360pt;}
.ls8d_c00295{letter-spacing:-1.020800pt;}
.ls92_c00295{letter-spacing:-0.977493pt;}
.ls71_c00295{letter-spacing:-0.866133pt;}
.ls52_c00295{letter-spacing:-0.798080pt;}
.ls7a_c00295{letter-spacing:-0.742400pt;}
.ls68_c00295{letter-spacing:-0.668160pt;}
.ls86_c00295{letter-spacing:-0.600107pt;}
.ls83_c00295{letter-spacing:-0.593920pt;}
.ls66_c00295{letter-spacing:-0.538240pt;}
.ls91_c00295{letter-spacing:-0.507307pt;}
.ls7d_c00295{letter-spacing:-0.451627pt;}
.ls85_c00295{letter-spacing:-0.433067pt;}
.ls7e_c00295{letter-spacing:-0.420693pt;}
.ls80_c00295{letter-spacing:-0.402133pt;}
.ls4b_c00295{letter-spacing:-0.395947pt;}
.ls70_c00295{letter-spacing:-0.383573pt;}
.ls77_c00295{letter-spacing:-0.358827pt;}
.ls4e_c00295{letter-spacing:-0.352640pt;}
.ls62_c00295{letter-spacing:-0.334080pt;}
.ls74_c00295{letter-spacing:-0.296960pt;}
.ls6a_c00295{letter-spacing:-0.278400pt;}
.ls51_c00295{letter-spacing:-0.247467pt;}
.ls63_c00295{letter-spacing:-0.228907pt;}
.ls82_c00295{letter-spacing:-0.216533pt;}
.ls73_c00295{letter-spacing:-0.210347pt;}
.ls56_c00295{letter-spacing:-0.185600pt;}
.ls69_c00295{letter-spacing:-0.179413pt;}
.ls58_c00295{letter-spacing:-0.173227pt;}
.ls59_c00295{letter-spacing:-0.167040pt;}
.ls4f_c00295{letter-spacing:-0.160853pt;}
.ls61_c00295{letter-spacing:-0.154667pt;}
.ls4a_c00295{letter-spacing:-0.142293pt;}
.ls5d_c00295{letter-spacing:-0.136107pt;}
.ls4d_c00295{letter-spacing:-0.123733pt;}
.ls7c_c00295{letter-spacing:-0.117547pt;}
.ls6f_c00295{letter-spacing:-0.092800pt;}
.ls53_c00295{letter-spacing:-0.086613pt;}
.ls57_c00295{letter-spacing:-0.074240pt;}
.ls50_c00295{letter-spacing:-0.061867pt;}
.ls6e_c00295{letter-spacing:-0.037120pt;}
.ls54_c00295{letter-spacing:-0.030933pt;}
.ls49_c00295{letter-spacing:-0.024747pt;}
.ls6c_c00295{letter-spacing:-0.018560pt;}
.ls76_c00295{letter-spacing:-0.012373pt;}
.ls75_c00295{letter-spacing:-0.006187pt;}
.ls4c_c00295{letter-spacing:0.000000pt;}
.ls32_c00295{letter-spacing:0.006187pt;}
.ls21_c00295{letter-spacing:0.024747pt;}
.ls38_c00295{letter-spacing:0.043307pt;}
.ls1e_c00295{letter-spacing:0.049493pt;}
.lsf_c00295{letter-spacing:0.055680pt;}
.ls7b_c00295{letter-spacing:0.061867pt;}
.ls2f_c00295{letter-spacing:0.068053pt;}
.ls28_c00295{letter-spacing:0.080427pt;}
.lse_c00295{letter-spacing:0.086613pt;}
.ls19_c00295{letter-spacing:0.092800pt;}
.lsc_c00295{letter-spacing:0.098987pt;}
.ls15_c00295{letter-spacing:0.117547pt;}
.ls47_c00295{letter-spacing:0.129920pt;}
.ls45_c00295{letter-spacing:0.142293pt;}
.ls44_c00295{letter-spacing:0.148480pt;}
.ls24_c00295{letter-spacing:0.154667pt;}
.ls1c_c00295{letter-spacing:0.160853pt;}
.ls39_c00295{letter-spacing:0.173227pt;}
.ls55_c00295{letter-spacing:0.179413pt;}
.ls20_c00295{letter-spacing:0.185600pt;}
.ls7_c00295{letter-spacing:0.197973pt;}
.ls30_c00295{letter-spacing:0.204160pt;}
.ls43_c00295{letter-spacing:0.210347pt;}
.ls3e_c00295{letter-spacing:0.216533pt;}
.ls2a_c00295{letter-spacing:0.222720pt;}
.ls1d_c00295{letter-spacing:0.228907pt;}
.ls2c_c00295{letter-spacing:0.235093pt;}
.lsd_c00295{letter-spacing:0.259840pt;}
.ls26_c00295{letter-spacing:0.278400pt;}
.ls29_c00295{letter-spacing:0.284587pt;}
.ls5c_c00295{letter-spacing:0.290773pt;}
.ls23_c00295{letter-spacing:0.296960pt;}
.ls40_c00295{letter-spacing:0.309333pt;}
.ls1b_c00295{letter-spacing:0.327893pt;}
.ls35_c00295{letter-spacing:0.340267pt;}
.ls14_c00295{letter-spacing:0.358827pt;}
.ls3c_c00295{letter-spacing:0.408320pt;}
.ls12_c00295{letter-spacing:0.414507pt;}
.ls4_c00295{letter-spacing:0.420693pt;}
.ls8b_c00295{letter-spacing:0.426880pt;}
.ls42_c00295{letter-spacing:0.464000pt;}
.ls6_c00295{letter-spacing:0.482560pt;}
.ls17_c00295{letter-spacing:0.507307pt;}
.ls2d_c00295{letter-spacing:0.518293pt;}
.ls18_c00295{letter-spacing:0.519680pt;}
.ls13_c00295{letter-spacing:0.532053pt;}
.ls34_c00295{letter-spacing:0.561600pt;}
.ls8_c00295{letter-spacing:0.587733pt;}
.lsb_c00295{letter-spacing:0.593920pt;}
.ls2_c00295{letter-spacing:0.631040pt;}
.ls37_c00295{letter-spacing:0.637227pt;}
.ls5e_c00295{letter-spacing:0.649600pt;}
.ls1_c00295{letter-spacing:0.668160pt;}
.ls1a_c00295{letter-spacing:0.674987pt;}
.ls10_c00295{letter-spacing:0.680533pt;}
.ls2e_c00295{letter-spacing:0.681013pt;}
.ls2b_c00295{letter-spacing:0.705280pt;}
.ls3f_c00295{letter-spacing:0.754773pt;}
.ls3a_c00295{letter-spacing:0.771413pt;}
.ls1f_c00295{letter-spacing:0.785707pt;}
.ls41_c00295{letter-spacing:0.822827pt;}
.lsa_c00295{letter-spacing:0.890880pt;}
.ls25_c00295{letter-spacing:0.940160pt;}
.ls27_c00295{letter-spacing:1.002240pt;}
.ls0_c00295{letter-spacing:1.012480pt;}
.ls11_c00295{letter-spacing:1.014613pt;}
.ls16_c00295{letter-spacing:1.102880pt;}
.ls31_c00295{letter-spacing:1.243520pt;}
.ls9_c00295{letter-spacing:1.286827pt;}
.ls5_c00295{letter-spacing:1.348693pt;}
.ls3b_c00295{letter-spacing:1.458453pt;}
.ls36_c00295{letter-spacing:1.565227pt;}
.ls3d_c00295{letter-spacing:1.614720pt;}
.ls3_c00295{letter-spacing:1.620907pt;}
.ls33_c00295{letter-spacing:1.734720pt;}
.ls22_c00295{letter-spacing:1.763200pt;}
.ls46_c00295{letter-spacing:2.171520pt;}
.ls79_c00295{letter-spacing:3.013333pt;}
.ws5_c00295{word-spacing:-0.400320pt;}
.ws6_c00295{word-spacing:0.000000pt;}
.ws2_c00295{word-spacing:2.499733pt;}
.ws3_c00295{word-spacing:6.080533pt;}
.ws4_c00295{word-spacing:10.682720pt;}
.ws0_c00295{word-spacing:12.399680pt;}
.ws1_c00295{word-spacing:15.339947pt;}
._13_c00295{margin-left:-3.507840pt;}
._18_c00295{margin-left:-2.253973pt;}
._5_c00295{margin-left:-1.194027pt;}
._3_c00295{width:1.583787pt;}
._4_c00295{width:3.241813pt;}
._6_c00295{width:4.912213pt;}
._8_c00295{width:5.988693pt;}
._7_c00295{width:7.102293pt;}
._9_c00295{width:8.253013pt;}
._a_c00295{width:9.187200pt;}
._2_c00295{width:10.690560pt;}
._0_c00295{width:11.779413pt;}
._1_c00295{width:12.893013pt;}
._12_c00295{width:13.783893pt;}
._11_c00295{width:15.281067pt;}
._10_c00295{width:16.629760pt;}
._f_c00295{width:17.607253pt;}
._b_c00295{width:19.432320pt;}
._14_c00295{width:20.416000pt;}
._15_c00295{width:21.554347pt;}
._d_c00295{width:22.451413pt;}
._e_c00295{width:23.657813pt;}
._c_c00295{width:24.932267pt;}
._16_c00295{width:26.608853pt;}
._17_c00295{width:32.609387pt;}
.fs5_c00295{font-size:54.400000pt;}
.fs4_c00295{font-size:58.666667pt;}
.fs3_c00295{font-size:59.200000pt;}
.fs0_c00295{font-size:59.733333pt;}
.fs1_c00295{font-size:60.266667pt;}
.fs2_c00295{font-size:61.866667pt;}
.fs6_c00295{font-size:62.400000pt;}
.y0_c00295{bottom:0.000000pt;}
.y20_c00295{bottom:63.053333pt;}
.y1f_c00295{bottom:114.568533pt;}
.y1e_c00295{bottom:141.758933pt;}
.y1d_c00295{bottom:168.640000pt;}
.y1c_c00295{bottom:224.013333pt;}
.y1a_c00295{bottom:278.731200pt;}
.y1b_c00295{bottom:278.733333pt;}
.y19_c00295{bottom:304.978133pt;}
.y18_c00295{bottom:332.493333pt;}
.y17_c00295{bottom:332.499200pt;}
.y16_c00295{bottom:387.838933pt;}
.y15_c00295{bottom:414.720000pt;}
.y14_c00295{bottom:470.093333pt;}
.y13_c00295{bottom:497.293333pt;}
.y12_c00295{bottom:525.133333pt;}
.y11_c00295{bottom:579.212267pt;}
.y10_c00295{bottom:606.402667pt;}
.yf_c00295{bottom:633.933333pt;}
.yd_c00295{bottom:688.637867pt;}
.ye_c00295{bottom:688.640000pt;}
.yc_c00295{bottom:716.493333pt;}
.yb_c00295{bottom:716.498133pt;}
.ya_c00295{bottom:744.013333pt;}
.y8_c00295{bottom:799.691733pt;}
.y9_c00295{bottom:799.693333pt;}
.y7_c00295{bottom:828.800000pt;}
.y6_c00295{bottom:884.178133pt;}
.y5_c00295{bottom:911.368533pt;}
.y4_c00295{bottom:938.265067pt;}
.y3_c00295{bottom:965.780267pt;}
.y2_c00295{bottom:993.280000pt;}
.y1_c00295{bottom:1060.800000pt;}
.hb_c00295{height:57.578125pt;}
.h4_c00295{height:58.101562pt;}
.h2_c00295{height:58.625000pt;}
.h8_c00295{height:59.119010pt;}
.h3_c00295{height:60.718750pt;}
.h5_c00295{height:60.725150pt;}
.h7_c00295{height:60.727283pt;}
.h6_c00295{height:61.187500pt;}
.ha_c00295{height:61.211719pt;}
.h9_c00295{height:62.350000pt;}
.h1_c00295{height:1122.666667pt;}
.h0_c00295{height:1122.880000pt;}
.w1_c00295{width:793.333333pt;}
.w0_c00295{width:793.600000pt;}
.x0_c00295{left:0.000000pt;}
.x1_c00295{left:110.653333pt;}
.x12_c00295{left:152.886400pt;}
.x2_c00295{left:157.906667pt;}
.x7_c00295{left:186.373333pt;}
.x8_c00295{left:214.680000pt;}
.x15_c00295{left:258.386667pt;}
.x16_c00295{left:283.053333pt;}
.x3_c00295{left:291.373333pt;}
.x9_c00295{left:300.106667pt;}
.x11_c00295{left:312.373333pt;}
.x4_c00295{left:314.106667pt;}
.xa_c00295{left:371.053333pt;}
.x19_c00295{left:379.120000pt;}
.xf_c00295{left:388.266667pt;}
.xb_c00295{left:392.026667pt;}
.x10_c00295{left:408.813333pt;}
.x13_c00295{left:410.706667pt;}
.x14_c00295{left:440.106667pt;}
.x17_c00295{left:462.866667pt;}
.xc_c00295{left:487.160000pt;}
.x18_c00295{left:488.426667pt;}
.xd_c00295{left:516.346667pt;}
.xe_c00295{left:533.600000pt;}
.x5_c00295{left:598.346667pt;}
.x6_c00295{left:630.560000pt;}
}





/* 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_c00296 {
    display:none;
  }
  .loading-indicator_c00296.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00296 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_c00296 { 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_c00296" -> "#page-container .classname_c00296")
 */
.pf_c00296 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00296 { /* 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_c00296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00296 { /* 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_c00296 { /* 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_c00296 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00296 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00296 {overflow:visible;}
  }
}
.c_c00296 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00296 { /* 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_c00296:after { /* webkit #35443 */
  content: '';
}
.t_c00296:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00296 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 */
}
.__c00296 { /* 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_c00296 { /* info for Javascript */
  display:none;
}
.l_c00296 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00296 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00296 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00296: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_c00296 {
    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_c00296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00296.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_c00296 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00296;src:url('chunks/assets/font_189d046a226fc1b44484c010.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.284668;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_c00296;src:url('chunks/assets/font_a7c9e61cf8458f4f1eb9ab08.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.284180;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_c00296;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;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;}
.m3_c00296{transform:matrix(0.176605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176605,0.000000,0.000000,0.250000,0,0);}
.m2_c00296{transform:matrix(0.209489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209489,0.000000,0.000000,0.250000,0,0);}
.m7_c00296{transform:matrix(0.235226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235226,0.000000,0.000000,0.250000,0,0);}
.m9_c00296{transform:matrix(0.237797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237797,0.000000,0.000000,0.250000,0,0);}
.m4_c00296{transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);}
.m5_c00296{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m0_c00296{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m6_c00296{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m8_c00296{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{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);}
.v0_c00296{vertical-align:0.000000px;}
.ls56_c00296{letter-spacing:-2.457000px;}
.ls89_c00296{letter-spacing:-2.415000px;}
.ls8f_c00296{letter-spacing:-2.407860px;}
.ls4f_c00296{letter-spacing:-2.352000px;}
.ls7a_c00296{letter-spacing:-2.260440px;}
.ls6b_c00296{letter-spacing:-2.204280px;}
.ls71_c00296{letter-spacing:-2.070900px;}
.ls92_c00296{letter-spacing:-2.035800px;}
.ls68_c00296{letter-spacing:-1.951560px;}
.ls63_c00296{letter-spacing:-1.832220px;}
.ls75_c00296{letter-spacing:-1.670760px;}
.ls87_c00296{letter-spacing:-1.642680px;}
.ls7b_c00296{letter-spacing:-1.635660px;}
.ls83_c00296{letter-spacing:-1.544400px;}
.ls78_c00296{letter-spacing:-1.509300px;}
.ls70_c00296{letter-spacing:-1.495260px;}
.ls96_c00296{letter-spacing:-1.361880px;}
.ls9a_c00296{letter-spacing:-1.291680px;}
.ls58_c00296{letter-spacing:-1.200420px;}
.ls73_c00296{letter-spacing:-1.186380px;}
.ls99_c00296{letter-spacing:-1.165320px;}
.ls98_c00296{letter-spacing:-1.151280px;}
.ls7f_c00296{letter-spacing:-0.989820px;}
.ls80_c00296{letter-spacing:-0.947700px;}
.ls97_c00296{letter-spacing:-0.884520px;}
.ls59_c00296{letter-spacing:-0.814320px;}
.ls6e_c00296{letter-spacing:-0.793260px;}
.ls50_c00296{letter-spacing:-0.765180px;}
.ls94_c00296{letter-spacing:-0.666900px;}
.ls79_c00296{letter-spacing:-0.659880px;}
.ls7d_c00296{letter-spacing:-0.631800px;}
.ls7e_c00296{letter-spacing:-0.610740px;}
.ls8b_c00296{letter-spacing:-0.547560px;}
.ls93_c00296{letter-spacing:-0.526500px;}
.ls5e_c00296{letter-spacing:-0.512460px;}
.ls76_c00296{letter-spacing:-0.477360px;}
.ls6a_c00296{letter-spacing:-0.470340px;}
.ls8e_c00296{letter-spacing:-0.456300px;}
.ls5f_c00296{letter-spacing:-0.449280px;}
.ls9d_c00296{letter-spacing:-0.428220px;}
.ls74_c00296{letter-spacing:-0.414180px;}
.ls90_c00296{letter-spacing:-0.386100px;}
.ls8c_c00296{letter-spacing:-0.365700px;}
.ls52_c00296{letter-spacing:-0.358020px;}
.ls9e_c00296{letter-spacing:-0.346920px;}
.ls77_c00296{letter-spacing:-0.343980px;}
.ls6c_c00296{letter-spacing:-0.336960px;}
.ls5a_c00296{letter-spacing:-0.316200px;}
.ls5d_c00296{letter-spacing:-0.301860px;}
.ls55_c00296{letter-spacing:-0.294840px;}
.ls81_c00296{letter-spacing:-0.287820px;}
.ls82_c00296{letter-spacing:-0.266760px;}
.ls61_c00296{letter-spacing:-0.245700px;}
.ls85_c00296{letter-spacing:-0.238680px;}
.ls7c_c00296{letter-spacing:-0.231660px;}
.ls88_c00296{letter-spacing:-0.224640px;}
.ls5c_c00296{letter-spacing:-0.217620px;}
.ls6f_c00296{letter-spacing:-0.203580px;}
.ls67_c00296{letter-spacing:-0.196560px;}
.ls9c_c00296{letter-spacing:-0.189540px;}
.ls8a_c00296{letter-spacing:-0.182520px;}
.ls72_c00296{letter-spacing:-0.168480px;}
.ls62_c00296{letter-spacing:-0.161460px;}
.ls8d_c00296{letter-spacing:-0.154440px;}
.ls9b_c00296{letter-spacing:-0.147420px;}
.ls54_c00296{letter-spacing:-0.140400px;}
.ls57_c00296{letter-spacing:-0.133380px;}
.ls86_c00296{letter-spacing:-0.126360px;}
.ls84_c00296{letter-spacing:-0.112320px;}
.ls91_c00296{letter-spacing:-0.098280px;}
.ls51_c00296{letter-spacing:-0.091260px;}
.ls65_c00296{letter-spacing:-0.077220px;}
.ls69_c00296{letter-spacing:-0.056160px;}
.ls95_c00296{letter-spacing:-0.042120px;}
.ls64_c00296{letter-spacing:-0.035100px;}
.ls60_c00296{letter-spacing:-0.028080px;}
.ls6d_c00296{letter-spacing:-0.014040px;}
.ls5b_c00296{letter-spacing:-0.007020px;}
.ls53_c00296{letter-spacing:0.000000px;}
.ls38_c00296{letter-spacing:0.007020px;}
.ls32_c00296{letter-spacing:0.014040px;}
.ls3a_c00296{letter-spacing:0.049140px;}
.ls2f_c00296{letter-spacing:0.056160px;}
.ls1b_c00296{letter-spacing:0.063180px;}
.ls3b_c00296{letter-spacing:0.070200px;}
.lsd_c00296{letter-spacing:0.077220px;}
.lsa_c00296{letter-spacing:0.091260px;}
.ls0_c00296{letter-spacing:0.105300px;}
.ls15_c00296{letter-spacing:0.112320px;}
.ls43_c00296{letter-spacing:0.119340px;}
.ls29_c00296{letter-spacing:0.133380px;}
.ls9_c00296{letter-spacing:0.147420px;}
.ls26_c00296{letter-spacing:0.154440px;}
.ls5_c00296{letter-spacing:0.161460px;}
.ls20_c00296{letter-spacing:0.175500px;}
.ls1c_c00296{letter-spacing:0.196560px;}
.ls28_c00296{letter-spacing:0.203580px;}
.ls2d_c00296{letter-spacing:0.210600px;}
.ls18_c00296{letter-spacing:0.224640px;}
.ls27_c00296{letter-spacing:0.252720px;}
.ls1d_c00296{letter-spacing:0.259740px;}
.ls13_c00296{letter-spacing:0.266760px;}
.ls22_c00296{letter-spacing:0.273780px;}
.ls16_c00296{letter-spacing:0.280800px;}
.ls3d_c00296{letter-spacing:0.287820px;}
.ls2c_c00296{letter-spacing:0.308880px;}
.ls7_c00296{letter-spacing:0.315900px;}
.ls4a_c00296{letter-spacing:0.322920px;}
.ls21_c00296{letter-spacing:0.336960px;}
.ls34_c00296{letter-spacing:0.358020px;}
.ls11_c00296{letter-spacing:0.365040px;}
.ls3e_c00296{letter-spacing:0.365700px;}
.ls4e_c00296{letter-spacing:0.372060px;}
.ls35_c00296{letter-spacing:0.379080px;}
.ls3_c00296{letter-spacing:0.400140px;}
.lsc_c00296{letter-spacing:0.407160px;}
.ls12_c00296{letter-spacing:0.414180px;}
.ls19_c00296{letter-spacing:0.428220px;}
.ls36_c00296{letter-spacing:0.442260px;}
.ls33_c00296{letter-spacing:0.456300px;}
.ls23_c00296{letter-spacing:0.491400px;}
.ls1e_c00296{letter-spacing:0.505440px;}
.ls2a_c00296{letter-spacing:0.526500px;}
.ls49_c00296{letter-spacing:0.532800px;}
.ls25_c00296{letter-spacing:0.561600px;}
.lsf_c00296{letter-spacing:0.565800px;}
.ls10_c00296{letter-spacing:0.568620px;}
.ls39_c00296{letter-spacing:0.575640px;}
.ls44_c00296{letter-spacing:0.589680px;}
.ls4_c00296{letter-spacing:0.596700px;}
.ls47_c00296{letter-spacing:0.603720px;}
.ls2_c00296{letter-spacing:0.617760px;}
.ls66_c00296{letter-spacing:0.624780px;}
.ls41_c00296{letter-spacing:0.638820px;}
.ls8_c00296{letter-spacing:0.652860px;}
.ls3f_c00296{letter-spacing:0.676200px;}
.ls1a_c00296{letter-spacing:0.730080px;}
.ls46_c00296{letter-spacing:0.737100px;}
.ls6_c00296{letter-spacing:0.779220px;}
.ls4b_c00296{letter-spacing:0.793500px;}
.ls14_c00296{letter-spacing:0.842400px;}
.ls37_c00296{letter-spacing:0.869400px;}
.ls4c_c00296{letter-spacing:0.903900px;}
.ls31_c00296{letter-spacing:0.905580px;}
.lse_c00296{letter-spacing:0.989820px;}
.lsb_c00296{letter-spacing:1.028100px;}
.ls4d_c00296{letter-spacing:1.069500px;}
.ls42_c00296{letter-spacing:1.102140px;}
.ls24_c00296{letter-spacing:1.172340px;}
.ls2e_c00296{letter-spacing:1.354860px;}
.ls17_c00296{letter-spacing:1.425060px;}
.ls48_c00296{letter-spacing:1.533600px;}
.ls1f_c00296{letter-spacing:1.755000px;}
.ls3c_c00296{letter-spacing:1.804140px;}
.ls40_c00296{letter-spacing:1.818180px;}
.ls1_c00296{letter-spacing:1.867320px;}
.ls2b_c00296{letter-spacing:2.183220px;}
.ls30_c00296{letter-spacing:2.871180px;}
.ls45_c00296{letter-spacing:3.091200px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{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__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:-0.284400px;}
.ws5_c00296{word-spacing:0.000000px;}
.ws2_c00296{word-spacing:5.478000px;}
.ws3_c00296{word-spacing:8.896800px;}
.ws1_c00296{word-spacing:11.361000px;}
.ws4_c00296{word-spacing:25.218000px;}
._12_c00296{margin-left:-15.955800px;}
._13_c00296{margin-left:-6.577740px;}
._14_c00296{margin-left:-4.204980px;}
._6_c00296{margin-left:-1.909440px;}
._c_c00296{width:1.411020px;}
._8_c00296{width:2.879160px;}
._9_c00296{width:4.703400px;}
._7_c00296{width:5.924880px;}
._d_c00296{width:7.581600px;}
._a_c00296{width:8.704800px;}
._b_c00296{width:9.940320px;}
._0_c00296{width:11.912940px;}
._4_c00296{width:13.492440px;}
._5_c00296{width:14.545440px;}
._f_c00296{width:15.577380px;}
._1_c00296{width:16.918200px;}
._11_c00296{width:18.603000px;}
._3_c00296{width:19.705140px;}
._2_c00296{width:21.389940px;}
._10_c00296{width:23.313420px;}
._e_c00296{width:26.282880px;}
.fc0_c00296{color:transparent;}
.fs3_c00296{font-size:51.000000px;}
.fs5_c00296{font-size:58.800000px;}
.fs0_c00296{font-size:67.200000px;}
.fs2_c00296{font-size:69.000000px;}
.fs1_c00296{font-size:70.200000px;}
.fs4_c00296{font-size:72.000000px;}
.y0_c00296{bottom:0.000000px;}
.y1f_c00296{bottom:73.815000px;}
.y1e_c00296{bottom:131.752500px;}
.y1d_c00296{bottom:163.079250px;}
.y1c_c00296{bottom:194.055000px;}
.y1b_c00296{bottom:255.255000px;}
.y1a_c00296{bottom:317.175000px;}
.y19_c00296{bottom:317.182950px;}
.y18_c00296{bottom:379.099350px;}
.y17_c00296{bottom:410.040000px;}
.y16_c00296{bottom:471.608250px;}
.y15_c00296{bottom:502.935000px;}
.y14_c00296{bottom:502.936350px;}
.y13_c00296{bottom:533.175000px;}
.y12_c00296{bottom:594.736800px;}
.y11_c00296{bottom:625.696800px;}
.y10_c00296{bottom:656.655000px;}
.yf_c00296{bottom:718.575000px;}
.ye_c00296{bottom:718.582650px;}
.yd_c00296{bottom:749.523300px;}
.yc_c00296{bottom:780.850050px;}
.yb_c00296{bottom:811.808250px;}
.ya_c00296{bottom:843.139350px;}
.y9_c00296{bottom:874.080600px;}
.y8_c00296{bottom:904.687800px;}
.y7_c00296{bottom:935.290350px;}
.y6_c00296{bottom:965.880000px;}
.y5_c00296{bottom:1027.455000px;}
.y4_c00296{bottom:1090.815000px;}
.y3_c00296{bottom:1090.816800px;}
.y2_c00296{bottom:1121.775000px;}
.y1_c00296{bottom:1199.175000px;}
.h7_c00296{height:57.708984px;}
.h2_c00296{height:65.953125px;}
.h3_c00296{height:68.897461px;}
.h4_c00296{height:68.916061px;}
.h6_c00296{height:70.628906px;}
.h5_c00296{height:71.964844px;}
.h1_c00296{height:1263.000000px;}
.h0_c00296{height:1263.240000px;}
.w1_c00296{width:892.500000px;}
.w0_c00296{width:892.800000px;}
.x0_c00296{left:0.000000px;}
.x8_c00296{left:120.996150px;}
.x7_c00296{left:122.258100px;}
.x2_c00296{left:123.675000px;}
.x1_c00296{left:124.845000px;}
.x15_c00296{left:173.685000px;}
.xa_c00296{left:174.765000px;}
.x4_c00296{left:176.205000px;}
.xb_c00296{left:275.940000px;}
.xc_c00296{left:294.045000px;}
.xd_c00296{left:329.445000px;}
.xe_c00296{left:347.925000px;}
.xf_c00296{left:376.005000px;}
.x10_c00296{left:408.525000px;}
.x16_c00296{left:425.430000px;}
.x5_c00296{left:451.725000px;}
.x3_c00296{left:454.290000px;}
.x6_c00296{left:484.020000px;}
.x13_c00296{left:497.685000px;}
.x14_c00296{left:526.125000px;}
.x9_c00296{left:550.620000px;}
.x11_c00296{left:644.925000px;}
.x12_c00296{left:674.025000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls56_c00296{letter-spacing:-2.184000pt;}
.ls89_c00296{letter-spacing:-2.146667pt;}
.ls8f_c00296{letter-spacing:-2.140320pt;}
.ls4f_c00296{letter-spacing:-2.090667pt;}
.ls7a_c00296{letter-spacing:-2.009280pt;}
.ls6b_c00296{letter-spacing:-1.959360pt;}
.ls71_c00296{letter-spacing:-1.840800pt;}
.ls92_c00296{letter-spacing:-1.809600pt;}
.ls68_c00296{letter-spacing:-1.734720pt;}
.ls63_c00296{letter-spacing:-1.628640pt;}
.ls75_c00296{letter-spacing:-1.485120pt;}
.ls87_c00296{letter-spacing:-1.460160pt;}
.ls7b_c00296{letter-spacing:-1.453920pt;}
.ls83_c00296{letter-spacing:-1.372800pt;}
.ls78_c00296{letter-spacing:-1.341600pt;}
.ls70_c00296{letter-spacing:-1.329120pt;}
.ls96_c00296{letter-spacing:-1.210560pt;}
.ls9a_c00296{letter-spacing:-1.148160pt;}
.ls58_c00296{letter-spacing:-1.067040pt;}
.ls73_c00296{letter-spacing:-1.054560pt;}
.ls99_c00296{letter-spacing:-1.035840pt;}
.ls98_c00296{letter-spacing:-1.023360pt;}
.ls7f_c00296{letter-spacing:-0.879840pt;}
.ls80_c00296{letter-spacing:-0.842400pt;}
.ls97_c00296{letter-spacing:-0.786240pt;}
.ls59_c00296{letter-spacing:-0.723840pt;}
.ls6e_c00296{letter-spacing:-0.705120pt;}
.ls50_c00296{letter-spacing:-0.680160pt;}
.ls94_c00296{letter-spacing:-0.592800pt;}
.ls79_c00296{letter-spacing:-0.586560pt;}
.ls7d_c00296{letter-spacing:-0.561600pt;}
.ls7e_c00296{letter-spacing:-0.542880pt;}
.ls8b_c00296{letter-spacing:-0.486720pt;}
.ls93_c00296{letter-spacing:-0.468000pt;}
.ls5e_c00296{letter-spacing:-0.455520pt;}
.ls76_c00296{letter-spacing:-0.424320pt;}
.ls6a_c00296{letter-spacing:-0.418080pt;}
.ls8e_c00296{letter-spacing:-0.405600pt;}
.ls5f_c00296{letter-spacing:-0.399360pt;}
.ls9d_c00296{letter-spacing:-0.380640pt;}
.ls74_c00296{letter-spacing:-0.368160pt;}
.ls90_c00296{letter-spacing:-0.343200pt;}
.ls8c_c00296{letter-spacing:-0.325067pt;}
.ls52_c00296{letter-spacing:-0.318240pt;}
.ls9e_c00296{letter-spacing:-0.308373pt;}
.ls77_c00296{letter-spacing:-0.305760pt;}
.ls6c_c00296{letter-spacing:-0.299520pt;}
.ls5a_c00296{letter-spacing:-0.281067pt;}
.ls5d_c00296{letter-spacing:-0.268320pt;}
.ls55_c00296{letter-spacing:-0.262080pt;}
.ls81_c00296{letter-spacing:-0.255840pt;}
.ls82_c00296{letter-spacing:-0.237120pt;}
.ls61_c00296{letter-spacing:-0.218400pt;}
.ls85_c00296{letter-spacing:-0.212160pt;}
.ls7c_c00296{letter-spacing:-0.205920pt;}
.ls88_c00296{letter-spacing:-0.199680pt;}
.ls5c_c00296{letter-spacing:-0.193440pt;}
.ls6f_c00296{letter-spacing:-0.180960pt;}
.ls67_c00296{letter-spacing:-0.174720pt;}
.ls9c_c00296{letter-spacing:-0.168480pt;}
.ls8a_c00296{letter-spacing:-0.162240pt;}
.ls72_c00296{letter-spacing:-0.149760pt;}
.ls62_c00296{letter-spacing:-0.143520pt;}
.ls8d_c00296{letter-spacing:-0.137280pt;}
.ls9b_c00296{letter-spacing:-0.131040pt;}
.ls54_c00296{letter-spacing:-0.124800pt;}
.ls57_c00296{letter-spacing:-0.118560pt;}
.ls86_c00296{letter-spacing:-0.112320pt;}
.ls84_c00296{letter-spacing:-0.099840pt;}
.ls91_c00296{letter-spacing:-0.087360pt;}
.ls51_c00296{letter-spacing:-0.081120pt;}
.ls65_c00296{letter-spacing:-0.068640pt;}
.ls69_c00296{letter-spacing:-0.049920pt;}
.ls95_c00296{letter-spacing:-0.037440pt;}
.ls64_c00296{letter-spacing:-0.031200pt;}
.ls60_c00296{letter-spacing:-0.024960pt;}
.ls6d_c00296{letter-spacing:-0.012480pt;}
.ls5b_c00296{letter-spacing:-0.006240pt;}
.ls53_c00296{letter-spacing:0.000000pt;}
.ls38_c00296{letter-spacing:0.006240pt;}
.ls32_c00296{letter-spacing:0.012480pt;}
.ls3a_c00296{letter-spacing:0.043680pt;}
.ls2f_c00296{letter-spacing:0.049920pt;}
.ls1b_c00296{letter-spacing:0.056160pt;}
.ls3b_c00296{letter-spacing:0.062400pt;}
.lsd_c00296{letter-spacing:0.068640pt;}
.lsa_c00296{letter-spacing:0.081120pt;}
.ls0_c00296{letter-spacing:0.093600pt;}
.ls15_c00296{letter-spacing:0.099840pt;}
.ls43_c00296{letter-spacing:0.106080pt;}
.ls29_c00296{letter-spacing:0.118560pt;}
.ls9_c00296{letter-spacing:0.131040pt;}
.ls26_c00296{letter-spacing:0.137280pt;}
.ls5_c00296{letter-spacing:0.143520pt;}
.ls20_c00296{letter-spacing:0.156000pt;}
.ls1c_c00296{letter-spacing:0.174720pt;}
.ls28_c00296{letter-spacing:0.180960pt;}
.ls2d_c00296{letter-spacing:0.187200pt;}
.ls18_c00296{letter-spacing:0.199680pt;}
.ls27_c00296{letter-spacing:0.224640pt;}
.ls1d_c00296{letter-spacing:0.230880pt;}
.ls13_c00296{letter-spacing:0.237120pt;}
.ls22_c00296{letter-spacing:0.243360pt;}
.ls16_c00296{letter-spacing:0.249600pt;}
.ls3d_c00296{letter-spacing:0.255840pt;}
.ls2c_c00296{letter-spacing:0.274560pt;}
.ls7_c00296{letter-spacing:0.280800pt;}
.ls4a_c00296{letter-spacing:0.287040pt;}
.ls21_c00296{letter-spacing:0.299520pt;}
.ls34_c00296{letter-spacing:0.318240pt;}
.ls11_c00296{letter-spacing:0.324480pt;}
.ls3e_c00296{letter-spacing:0.325067pt;}
.ls4e_c00296{letter-spacing:0.330720pt;}
.ls35_c00296{letter-spacing:0.336960pt;}
.ls3_c00296{letter-spacing:0.355680pt;}
.lsc_c00296{letter-spacing:0.361920pt;}
.ls12_c00296{letter-spacing:0.368160pt;}
.ls19_c00296{letter-spacing:0.380640pt;}
.ls36_c00296{letter-spacing:0.393120pt;}
.ls33_c00296{letter-spacing:0.405600pt;}
.ls23_c00296{letter-spacing:0.436800pt;}
.ls1e_c00296{letter-spacing:0.449280pt;}
.ls2a_c00296{letter-spacing:0.468000pt;}
.ls49_c00296{letter-spacing:0.473600pt;}
.ls25_c00296{letter-spacing:0.499200pt;}
.lsf_c00296{letter-spacing:0.502933pt;}
.ls10_c00296{letter-spacing:0.505440pt;}
.ls39_c00296{letter-spacing:0.511680pt;}
.ls44_c00296{letter-spacing:0.524160pt;}
.ls4_c00296{letter-spacing:0.530400pt;}
.ls47_c00296{letter-spacing:0.536640pt;}
.ls2_c00296{letter-spacing:0.549120pt;}
.ls66_c00296{letter-spacing:0.555360pt;}
.ls41_c00296{letter-spacing:0.567840pt;}
.ls8_c00296{letter-spacing:0.580320pt;}
.ls3f_c00296{letter-spacing:0.601067pt;}
.ls1a_c00296{letter-spacing:0.648960pt;}
.ls46_c00296{letter-spacing:0.655200pt;}
.ls6_c00296{letter-spacing:0.692640pt;}
.ls4b_c00296{letter-spacing:0.705333pt;}
.ls14_c00296{letter-spacing:0.748800pt;}
.ls37_c00296{letter-spacing:0.772800pt;}
.ls4c_c00296{letter-spacing:0.803467pt;}
.ls31_c00296{letter-spacing:0.804960pt;}
.lse_c00296{letter-spacing:0.879840pt;}
.lsb_c00296{letter-spacing:0.913867pt;}
.ls4d_c00296{letter-spacing:0.950667pt;}
.ls42_c00296{letter-spacing:0.979680pt;}
.ls24_c00296{letter-spacing:1.042080pt;}
.ls2e_c00296{letter-spacing:1.204320pt;}
.ls17_c00296{letter-spacing:1.266720pt;}
.ls48_c00296{letter-spacing:1.363200pt;}
.ls1f_c00296{letter-spacing:1.560000pt;}
.ls3c_c00296{letter-spacing:1.603680pt;}
.ls40_c00296{letter-spacing:1.616160pt;}
.ls1_c00296{letter-spacing:1.659840pt;}
.ls2b_c00296{letter-spacing:1.940640pt;}
.ls30_c00296{letter-spacing:2.552160pt;}
.ls45_c00296{letter-spacing:2.747733pt;}
.ws0_c00296{word-spacing:-0.252800pt;}
.ws5_c00296{word-spacing:0.000000pt;}
.ws2_c00296{word-spacing:4.869333pt;}
.ws3_c00296{word-spacing:7.908267pt;}
.ws1_c00296{word-spacing:10.098667pt;}
.ws4_c00296{word-spacing:22.416000pt;}
._12_c00296{margin-left:-14.182933pt;}
._13_c00296{margin-left:-5.846880pt;}
._14_c00296{margin-left:-3.737760pt;}
._6_c00296{margin-left:-1.697280pt;}
._c_c00296{width:1.254240pt;}
._8_c00296{width:2.559253pt;}
._9_c00296{width:4.180800pt;}
._7_c00296{width:5.266560pt;}
._d_c00296{width:6.739200pt;}
._a_c00296{width:7.737600pt;}
._b_c00296{width:8.835840pt;}
._0_c00296{width:10.589280pt;}
._4_c00296{width:11.993280pt;}
._5_c00296{width:12.929280pt;}
._f_c00296{width:13.846560pt;}
._1_c00296{width:15.038400pt;}
._11_c00296{width:16.536000pt;}
._3_c00296{width:17.515680pt;}
._2_c00296{width:19.013280pt;}
._10_c00296{width:20.723040pt;}
._e_c00296{width:23.362560pt;}
.fs3_c00296{font-size:45.333333pt;}
.fs5_c00296{font-size:52.266667pt;}
.fs0_c00296{font-size:59.733333pt;}
.fs2_c00296{font-size:61.333333pt;}
.fs1_c00296{font-size:62.400000pt;}
.fs4_c00296{font-size:64.000000pt;}
.y0_c00296{bottom:0.000000pt;}
.y1f_c00296{bottom:65.613333pt;}
.y1e_c00296{bottom:117.113333pt;}
.y1d_c00296{bottom:144.959333pt;}
.y1c_c00296{bottom:172.493333pt;}
.y1b_c00296{bottom:226.893333pt;}
.y1a_c00296{bottom:281.933333pt;}
.y19_c00296{bottom:281.940400pt;}
.y18_c00296{bottom:336.977200pt;}
.y17_c00296{bottom:364.480000pt;}
.y16_c00296{bottom:419.207333pt;}
.y15_c00296{bottom:447.053333pt;}
.y14_c00296{bottom:447.054533pt;}
.y13_c00296{bottom:473.933333pt;}
.y12_c00296{bottom:528.654933pt;}
.y11_c00296{bottom:556.174933pt;}
.y10_c00296{bottom:583.693333pt;}
.yf_c00296{bottom:638.733333pt;}
.ye_c00296{bottom:638.740133pt;}
.yd_c00296{bottom:666.242933pt;}
.yc_c00296{bottom:694.088933pt;}
.yb_c00296{bottom:721.607333pt;}
.ya_c00296{bottom:749.457200pt;}
.y9_c00296{bottom:776.960533pt;}
.y8_c00296{bottom:804.166933pt;}
.y7_c00296{bottom:831.369200pt;}
.y6_c00296{bottom:858.560000pt;}
.y5_c00296{bottom:913.293333pt;}
.y4_c00296{bottom:969.613333pt;}
.y3_c00296{bottom:969.614933pt;}
.y2_c00296{bottom:997.133333pt;}
.y1_c00296{bottom:1065.933333pt;}
.h7_c00296{height:51.296875pt;}
.h2_c00296{height:58.625000pt;}
.h3_c00296{height:61.242187pt;}
.h4_c00296{height:61.258721pt;}
.h6_c00296{height:62.781250pt;}
.h5_c00296{height:63.968750pt;}
.h1_c00296{height:1122.666667pt;}
.h0_c00296{height:1122.880000pt;}
.w1_c00296{width:793.333333pt;}
.w0_c00296{width:793.600000pt;}
.x0_c00296{left:0.000000pt;}
.x8_c00296{left:107.552133pt;}
.x7_c00296{left:108.673867pt;}
.x2_c00296{left:109.933333pt;}
.x1_c00296{left:110.973333pt;}
.x15_c00296{left:154.386667pt;}
.xa_c00296{left:155.346667pt;}
.x4_c00296{left:156.626667pt;}
.xb_c00296{left:245.280000pt;}
.xc_c00296{left:261.373333pt;}
.xd_c00296{left:292.840000pt;}
.xe_c00296{left:309.266667pt;}
.xf_c00296{left:334.226667pt;}
.x10_c00296{left:363.133333pt;}
.x16_c00296{left:378.160000pt;}
.x5_c00296{left:401.533333pt;}
.x3_c00296{left:403.813333pt;}
.x6_c00296{left:430.240000pt;}
.x13_c00296{left:442.386667pt;}
.x14_c00296{left:467.666667pt;}
.x9_c00296{left:489.440000pt;}
.x11_c00296{left:573.266667pt;}
.x12_c00296{left:599.133333pt;}
}





/* 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_c00297 {
    display:none;
  }
  .loading-indicator_c00297.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00297 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_c00297 { 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_c00297" -> "#page-container .classname_c00297")
 */
.pf_c00297 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00297 { /* 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_c00297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00297 { /* 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_c00297 { /* 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_c00297 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00297 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00297 {overflow:visible;}
  }
}
.c_c00297 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00297 { /* 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_c00297:after { /* webkit #35443 */
  content: '';
}
.t_c00297:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00297 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 */
}
.__c00297 { /* 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_c00297 { /* info for Javascript */
  display:none;
}
.l_c00297 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00297 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00297 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00297: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_c00297 {
    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_c00297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00297.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_c00297 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00297;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.311035;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_c00297;src:url('chunks/assets/font_40982d43005960dff3fd8edd.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.284180;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_c00297;src:url('chunks/assets/font_b0cb8f11e56743f7bf420ae6.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.284668;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_c00297;src:url('chunks/assets/font_5abd120c77e719e0c8db6b42.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:1.284180;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_c00297;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff5_c00297{font-family:ff5_c00297;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;}
.m2_c00297{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m4_c00297{transform:matrix(0.197328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197328,0.000000,0.000000,0.250000,0,0);}
.m0_c00297{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m3_c00297{transform:matrix(0.242646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242646,0.000000,0.000000,0.250000,0,0);}
.m7_c00297{transform:matrix(0.246578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246578,0.000000,0.000000,0.250000,0,0);}
.m8_c00297{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.ma_c00297{transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);}
.m5_c00297{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.mc_c00297{transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);}
.m9_c00297{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m6_c00297{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m1_c00297{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);}
.mb_c00297{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls60_c00297{letter-spacing:-2.415000px;}
.ls5f_c00297{letter-spacing:-2.352000px;}
.ls5d_c00297{letter-spacing:-2.310000px;}
.ls69_c00297{letter-spacing:-2.152800px;}
.ls7e_c00297{letter-spacing:-1.959600px;}
.ls62_c00297{letter-spacing:-1.538700px;}
.ls90_c00297{letter-spacing:-1.483500px;}
.ls72_c00297{letter-spacing:-1.393800px;}
.ls8a_c00297{letter-spacing:-1.331700px;}
.ls84_c00297{letter-spacing:-1.276500px;}
.ls65_c00297{letter-spacing:-1.110900px;}
.ls68_c00297{letter-spacing:-1.083300px;}
.ls92_c00297{letter-spacing:-1.048800px;}
.ls74_c00297{letter-spacing:-1.014300px;}
.ls79_c00297{letter-spacing:-0.945300px;}
.ls7f_c00297{letter-spacing:-0.862500px;}
.ls80_c00297{letter-spacing:-0.814200px;}
.ls63_c00297{letter-spacing:-0.765900px;}
.ls93_c00297{letter-spacing:-0.683100px;}
.ls70_c00297{letter-spacing:-0.676200px;}
.ls71_c00297{letter-spacing:-0.634800px;}
.ls94_c00297{letter-spacing:-0.614100px;}
.ls82_c00297{letter-spacing:-0.586500px;}
.ls86_c00297{letter-spacing:-0.558900px;}
.ls76_c00297{letter-spacing:-0.489900px;}
.ls61_c00297{letter-spacing:-0.476100px;}
.ls77_c00297{letter-spacing:-0.461040px;}
.ls6c_c00297{letter-spacing:-0.414000px;}
.ls67_c00297{letter-spacing:-0.400200px;}
.ls96_c00297{letter-spacing:-0.379500px;}
.ls5e_c00297{letter-spacing:-0.365700px;}
.ls7a_c00297{letter-spacing:-0.345000px;}
.ls89_c00297{letter-spacing:-0.317400px;}
.ls8b_c00297{letter-spacing:-0.289800px;}
.ls6e_c00297{letter-spacing:-0.220800px;}
.ls91_c00297{letter-spacing:-0.207000px;}
.ls78_c00297{letter-spacing:-0.200100px;}
.ls88_c00297{letter-spacing:-0.193200px;}
.ls6f_c00297{letter-spacing:-0.172500px;}
.ls6b_c00297{letter-spacing:-0.158700px;}
.ls8d_c00297{letter-spacing:-0.131100px;}
.ls73_c00297{letter-spacing:-0.124200px;}
.ls6d_c00297{letter-spacing:-0.103500px;}
.ls7d_c00297{letter-spacing:-0.089700px;}
.ls8c_c00297{letter-spacing:-0.082800px;}
.ls83_c00297{letter-spacing:-0.075900px;}
.ls81_c00297{letter-spacing:-0.055200px;}
.ls95_c00297{letter-spacing:-0.048300px;}
.ls7c_c00297{letter-spacing:-0.041400px;}
.ls7b_c00297{letter-spacing:-0.027600px;}
.ls6a_c00297{letter-spacing:-0.020700px;}
.ls75_c00297{letter-spacing:-0.013800px;}
.ls66_c00297{letter-spacing:0.000000px;}
.ls7_c00297{letter-spacing:0.020700px;}
.ls28_c00297{letter-spacing:0.034500px;}
.ls2_c00297{letter-spacing:0.041400px;}
.ls3a_c00297{letter-spacing:0.048300px;}
.ls4c_c00297{letter-spacing:0.075900px;}
.ls55_c00297{letter-spacing:0.082800px;}
.ls15_c00297{letter-spacing:0.089700px;}
.ls2f_c00297{letter-spacing:0.117300px;}
.ls59_c00297{letter-spacing:0.131100px;}
.ls3f_c00297{letter-spacing:0.144900px;}
.lse_c00297{letter-spacing:0.158700px;}
.ls45_c00297{letter-spacing:0.172500px;}
.ls12_c00297{letter-spacing:0.186300px;}
.ls16_c00297{letter-spacing:0.227700px;}
.lsc_c00297{letter-spacing:0.241500px;}
.ls1c_c00297{letter-spacing:0.248400px;}
.ls39_c00297{letter-spacing:0.262200px;}
.ls97_c00297{letter-spacing:0.267900px;}
.ls1b_c00297{letter-spacing:0.276000px;}
.ls2a_c00297{letter-spacing:0.282900px;}
.lsa_c00297{letter-spacing:0.296700px;}
.lsd_c00297{letter-spacing:0.303600px;}
.ls42_c00297{letter-spacing:0.317400px;}
.ls8_c00297{letter-spacing:0.324300px;}
.ls58_c00297{letter-spacing:0.331200px;}
.ls56_c00297{letter-spacing:0.338100px;}
.ls44_c00297{letter-spacing:0.351900px;}
.ls37_c00297{letter-spacing:0.358800px;}
.ls5b_c00297{letter-spacing:0.386400px;}
.lsf_c00297{letter-spacing:0.400200px;}
.ls11_c00297{letter-spacing:0.407100px;}
.ls50_c00297{letter-spacing:0.414000px;}
.ls3_c00297{letter-spacing:0.434700px;}
.ls4d_c00297{letter-spacing:0.455400px;}
.ls21_c00297{letter-spacing:0.476100px;}
.ls22_c00297{letter-spacing:0.489900px;}
.ls51_c00297{letter-spacing:0.503700px;}
.lsb_c00297{letter-spacing:0.510600px;}
.ls49_c00297{letter-spacing:0.517500px;}
.ls23_c00297{letter-spacing:0.545100px;}
.ls32_c00297{letter-spacing:0.552000px;}
.ls17_c00297{letter-spacing:0.558900px;}
.ls27_c00297{letter-spacing:0.565800px;}
.ls3b_c00297{letter-spacing:0.567720px;}
.ls26_c00297{letter-spacing:0.572700px;}
.ls1f_c00297{letter-spacing:0.579600px;}
.ls9_c00297{letter-spacing:0.586500px;}
.ls10_c00297{letter-spacing:0.593400px;}
.ls3c_c00297{letter-spacing:0.603420px;}
.ls25_c00297{letter-spacing:0.614100px;}
.ls34_c00297{letter-spacing:0.616980px;}
.ls3e_c00297{letter-spacing:0.621000px;}
.ls38_c00297{letter-spacing:0.641700px;}
.ls53_c00297{letter-spacing:0.662400px;}
.ls4e_c00297{letter-spacing:0.669300px;}
.ls13_c00297{letter-spacing:0.676200px;}
.ls5_c00297{letter-spacing:0.683100px;}
.ls20_c00297{letter-spacing:0.696900px;}
.ls54_c00297{letter-spacing:0.724500px;}
.ls8f_c00297{letter-spacing:0.738300px;}
.ls3d_c00297{letter-spacing:0.752100px;}
.ls29_c00297{letter-spacing:0.759000px;}
.ls4_c00297{letter-spacing:0.759360px;}
.ls43_c00297{letter-spacing:0.765900px;}
.ls2d_c00297{letter-spacing:0.766140px;}
.ls1a_c00297{letter-spacing:0.772800px;}
.ls31_c00297{letter-spacing:0.779700px;}
.ls2b_c00297{letter-spacing:0.793500px;}
.ls1_c00297{letter-spacing:0.828000px;}
.ls4f_c00297{letter-spacing:0.855600px;}
.ls87_c00297{letter-spacing:0.862500px;}
.ls64_c00297{letter-spacing:0.876300px;}
.ls36_c00297{letter-spacing:0.883200px;}
.ls18_c00297{letter-spacing:0.910800px;}
.ls2c_c00297{letter-spacing:0.942420px;}
.ls30_c00297{letter-spacing:0.952200px;}
.ls35_c00297{letter-spacing:0.959100px;}
.ls4b_c00297{letter-spacing:0.979800px;}
.ls46_c00297{letter-spacing:1.041900px;}
.ls5c_c00297{letter-spacing:1.055700px;}
.ls40_c00297{letter-spacing:1.071240px;}
.ls14_c00297{letter-spacing:1.097100px;}
.ls4a_c00297{letter-spacing:1.131600px;}
.ls19_c00297{letter-spacing:1.172940px;}
.ls48_c00297{letter-spacing:1.179900px;}
.ls1d_c00297{letter-spacing:1.200600px;}
.ls41_c00297{letter-spacing:1.254300px;}
.ls57_c00297{letter-spacing:1.311000px;}
.ls5a_c00297{letter-spacing:1.352400px;}
.ls47_c00297{letter-spacing:1.359300px;}
.ls0_c00297{letter-spacing:1.362780px;}
.ls52_c00297{letter-spacing:1.442100px;}
.ls1e_c00297{letter-spacing:1.469700px;}
.ls24_c00297{letter-spacing:2.014800px;}
.ls6_c00297{letter-spacing:2.056200px;}
.ls33_c00297{letter-spacing:2.495040px;}
.ls85_c00297{letter-spacing:2.539200px;}
.ls2e_c00297{letter-spacing:3.070500px;}
.ls8e_c00297{letter-spacing:3.450000px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{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__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00297{word-spacing:-0.591120px;}
.ws6_c00297{word-spacing:0.000000px;}
.ws3_c00297{word-spacing:1.848660px;}
.ws1_c00297{word-spacing:10.012200px;}
.ws4_c00297{word-spacing:11.196000px;}
.ws2_c00297{word-spacing:13.751700px;}
.ws5_c00297{word-spacing:24.532200px;}
._e_c00297{margin-left:-4.609200px;}
._0_c00297{margin-left:-2.484000px;}
._10_c00297{margin-left:-1.090200px;}
._14_c00297{width:1.257900px;}
._f_c00297{width:2.277000px;}
._d_c00297{width:3.663900px;}
._13_c00297{width:4.974900px;}
._3_c00297{width:6.320400px;}
._1_c00297{width:7.783200px;}
._6_c00297{width:9.108000px;}
._4_c00297{width:10.715700px;}
._c_c00297{width:12.075000px;}
._2_c00297{width:13.482600px;}
._5_c00297{width:14.731500px;}
._12_c00297{width:16.008000px;}
._a_c00297{width:17.132700px;}
._11_c00297{width:18.291900px;}
._8_c00297{width:19.678800px;}
._7_c00297{width:21.169200px;}
._b_c00297{width:22.425000px;}
._9_c00297{width:24.115500px;}
.fc0_c00297{color:transparent;}
.fs5_c00297{font-size:57.000000px;}
.fs0_c00297{font-size:66.000000px;}
.fs3_c00297{font-size:67.200000px;}
.fs1_c00297{font-size:67.800000px;}
.fs4_c00297{font-size:68.400000px;}
.fs2_c00297{font-size:69.000000px;}
.y0_c00297{bottom:0.000000px;}
.y1f_c00297{bottom:70.575000px;}
.y1e_c00297{bottom:128.895000px;}
.y1d_c00297{bottom:128.898750px;}
.y1c_c00297{bottom:159.120750px;}
.y1a_c00297{bottom:189.354000px;}
.y1b_c00297{bottom:189.360000px;}
.y18_c00297{bottom:220.331250px;}
.y19_c00297{bottom:220.335000px;}
.y17_c00297{bottom:251.295000px;}
.y16_c00297{bottom:313.200000px;}
.y15_c00297{bottom:375.135750px;}
.y14_c00297{bottom:405.711750px;}
.y13_c00297{bottom:437.055000px;}
.y12_c00297{bottom:498.975000px;}
.y10_c00297{bottom:560.532750px;}
.y11_c00297{bottom:560.535000px;}
.yf_c00297{bottom:622.098000px;}
.ye_c00297{bottom:652.320000px;}
.yd_c00297{bottom:714.236250px;}
.yc_c00297{bottom:745.200000px;}
.yb_c00297{bottom:776.535000px;}
.ya_c00297{bottom:838.072500px;}
.y9_c00297{bottom:869.053500px;}
.y8_c00297{bottom:899.655000px;}
.y6_c00297{bottom:961.197000px;}
.y7_c00297{bottom:961.200000px;}
.y5_c00297{bottom:991.815750px;}
.y4_c00297{bottom:1022.396250px;}
.y3_c00297{bottom:1053.015000px;}
.y2_c00297{bottom:1115.280000px;}
.y1_c00297{bottom:1191.975000px;}
.h9_c00297{height:55.942383px;}
.h4_c00297{height:65.953125px;}
.h2_c00297{height:66.515625px;}
.h3_c00297{height:67.719727px;}
.h6_c00297{height:67.731727px;}
.h5_c00297{height:67.734727px;}
.h7_c00297{height:67.752727px;}
.h8_c00297{height:71.964844px;}
.h1_c00297{height:1263.000000px;}
.h0_c00297{height:1263.240000px;}
.w1_c00297{width:892.500000px;}
.w0_c00297{width:892.800000px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:124.125000px;}
.x8_c00297{left:125.175000px;}
.x2_c00297{left:177.645000px;}
.xa_c00297{left:180.987750px;}
.x7_c00297{left:296.460000px;}
.xd_c00297{left:321.300000px;}
.xe_c00297{left:343.620000px;}
.x9_c00297{left:347.490000px;}
.x16_c00297{left:379.260000px;}
.xb_c00297{left:382.845000px;}
.xf_c00297{left:408.420000px;}
.xc_c00297{left:410.205000px;}
.x17_c00297{left:426.510000px;}
.x3_c00297{left:433.725000px;}
.x14_c00297{left:440.130000px;}
.x15_c00297{left:456.240000px;}
.x4_c00297{left:464.940000px;}
.x10_c00297{left:467.760000px;}
.x11_c00297{left:518.970000px;}
.x5_c00297{left:573.375000px;}
.x6_c00297{left:595.725000px;}
.x12_c00297{left:624.135000px;}
.x13_c00297{left:651.810000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls60_c00297{letter-spacing:-2.146667pt;}
.ls5f_c00297{letter-spacing:-2.090667pt;}
.ls5d_c00297{letter-spacing:-2.053333pt;}
.ls69_c00297{letter-spacing:-1.913600pt;}
.ls7e_c00297{letter-spacing:-1.741867pt;}
.ls62_c00297{letter-spacing:-1.367733pt;}
.ls90_c00297{letter-spacing:-1.318667pt;}
.ls72_c00297{letter-spacing:-1.238933pt;}
.ls8a_c00297{letter-spacing:-1.183733pt;}
.ls84_c00297{letter-spacing:-1.134667pt;}
.ls65_c00297{letter-spacing:-0.987467pt;}
.ls68_c00297{letter-spacing:-0.962933pt;}
.ls92_c00297{letter-spacing:-0.932267pt;}
.ls74_c00297{letter-spacing:-0.901600pt;}
.ls79_c00297{letter-spacing:-0.840267pt;}
.ls7f_c00297{letter-spacing:-0.766667pt;}
.ls80_c00297{letter-spacing:-0.723733pt;}
.ls63_c00297{letter-spacing:-0.680800pt;}
.ls93_c00297{letter-spacing:-0.607200pt;}
.ls70_c00297{letter-spacing:-0.601067pt;}
.ls71_c00297{letter-spacing:-0.564267pt;}
.ls94_c00297{letter-spacing:-0.545867pt;}
.ls82_c00297{letter-spacing:-0.521333pt;}
.ls86_c00297{letter-spacing:-0.496800pt;}
.ls76_c00297{letter-spacing:-0.435467pt;}
.ls61_c00297{letter-spacing:-0.423200pt;}
.ls77_c00297{letter-spacing:-0.409813pt;}
.ls6c_c00297{letter-spacing:-0.368000pt;}
.ls67_c00297{letter-spacing:-0.355733pt;}
.ls96_c00297{letter-spacing:-0.337333pt;}
.ls5e_c00297{letter-spacing:-0.325067pt;}
.ls7a_c00297{letter-spacing:-0.306667pt;}
.ls89_c00297{letter-spacing:-0.282133pt;}
.ls8b_c00297{letter-spacing:-0.257600pt;}
.ls6e_c00297{letter-spacing:-0.196267pt;}
.ls91_c00297{letter-spacing:-0.184000pt;}
.ls78_c00297{letter-spacing:-0.177867pt;}
.ls88_c00297{letter-spacing:-0.171733pt;}
.ls6f_c00297{letter-spacing:-0.153333pt;}
.ls6b_c00297{letter-spacing:-0.141067pt;}
.ls8d_c00297{letter-spacing:-0.116533pt;}
.ls73_c00297{letter-spacing:-0.110400pt;}
.ls6d_c00297{letter-spacing:-0.092000pt;}
.ls7d_c00297{letter-spacing:-0.079733pt;}
.ls8c_c00297{letter-spacing:-0.073600pt;}
.ls83_c00297{letter-spacing:-0.067467pt;}
.ls81_c00297{letter-spacing:-0.049067pt;}
.ls95_c00297{letter-spacing:-0.042933pt;}
.ls7c_c00297{letter-spacing:-0.036800pt;}
.ls7b_c00297{letter-spacing:-0.024533pt;}
.ls6a_c00297{letter-spacing:-0.018400pt;}
.ls75_c00297{letter-spacing:-0.012267pt;}
.ls66_c00297{letter-spacing:0.000000pt;}
.ls7_c00297{letter-spacing:0.018400pt;}
.ls28_c00297{letter-spacing:0.030667pt;}
.ls2_c00297{letter-spacing:0.036800pt;}
.ls3a_c00297{letter-spacing:0.042933pt;}
.ls4c_c00297{letter-spacing:0.067467pt;}
.ls55_c00297{letter-spacing:0.073600pt;}
.ls15_c00297{letter-spacing:0.079733pt;}
.ls2f_c00297{letter-spacing:0.104267pt;}
.ls59_c00297{letter-spacing:0.116533pt;}
.ls3f_c00297{letter-spacing:0.128800pt;}
.lse_c00297{letter-spacing:0.141067pt;}
.ls45_c00297{letter-spacing:0.153333pt;}
.ls12_c00297{letter-spacing:0.165600pt;}
.ls16_c00297{letter-spacing:0.202400pt;}
.lsc_c00297{letter-spacing:0.214667pt;}
.ls1c_c00297{letter-spacing:0.220800pt;}
.ls39_c00297{letter-spacing:0.233067pt;}
.ls97_c00297{letter-spacing:0.238133pt;}
.ls1b_c00297{letter-spacing:0.245333pt;}
.ls2a_c00297{letter-spacing:0.251467pt;}
.lsa_c00297{letter-spacing:0.263733pt;}
.lsd_c00297{letter-spacing:0.269867pt;}
.ls42_c00297{letter-spacing:0.282133pt;}
.ls8_c00297{letter-spacing:0.288267pt;}
.ls58_c00297{letter-spacing:0.294400pt;}
.ls56_c00297{letter-spacing:0.300533pt;}
.ls44_c00297{letter-spacing:0.312800pt;}
.ls37_c00297{letter-spacing:0.318933pt;}
.ls5b_c00297{letter-spacing:0.343467pt;}
.lsf_c00297{letter-spacing:0.355733pt;}
.ls11_c00297{letter-spacing:0.361867pt;}
.ls50_c00297{letter-spacing:0.368000pt;}
.ls3_c00297{letter-spacing:0.386400pt;}
.ls4d_c00297{letter-spacing:0.404800pt;}
.ls21_c00297{letter-spacing:0.423200pt;}
.ls22_c00297{letter-spacing:0.435467pt;}
.ls51_c00297{letter-spacing:0.447733pt;}
.lsb_c00297{letter-spacing:0.453867pt;}
.ls49_c00297{letter-spacing:0.460000pt;}
.ls23_c00297{letter-spacing:0.484533pt;}
.ls32_c00297{letter-spacing:0.490667pt;}
.ls17_c00297{letter-spacing:0.496800pt;}
.ls27_c00297{letter-spacing:0.502933pt;}
.ls3b_c00297{letter-spacing:0.504640pt;}
.ls26_c00297{letter-spacing:0.509067pt;}
.ls1f_c00297{letter-spacing:0.515200pt;}
.ls9_c00297{letter-spacing:0.521333pt;}
.ls10_c00297{letter-spacing:0.527467pt;}
.ls3c_c00297{letter-spacing:0.536373pt;}
.ls25_c00297{letter-spacing:0.545867pt;}
.ls34_c00297{letter-spacing:0.548427pt;}
.ls3e_c00297{letter-spacing:0.552000pt;}
.ls38_c00297{letter-spacing:0.570400pt;}
.ls53_c00297{letter-spacing:0.588800pt;}
.ls4e_c00297{letter-spacing:0.594933pt;}
.ls13_c00297{letter-spacing:0.601067pt;}
.ls5_c00297{letter-spacing:0.607200pt;}
.ls20_c00297{letter-spacing:0.619467pt;}
.ls54_c00297{letter-spacing:0.644000pt;}
.ls8f_c00297{letter-spacing:0.656267pt;}
.ls3d_c00297{letter-spacing:0.668533pt;}
.ls29_c00297{letter-spacing:0.674667pt;}
.ls4_c00297{letter-spacing:0.674987pt;}
.ls43_c00297{letter-spacing:0.680800pt;}
.ls2d_c00297{letter-spacing:0.681013pt;}
.ls1a_c00297{letter-spacing:0.686933pt;}
.ls31_c00297{letter-spacing:0.693067pt;}
.ls2b_c00297{letter-spacing:0.705333pt;}
.ls1_c00297{letter-spacing:0.736000pt;}
.ls4f_c00297{letter-spacing:0.760533pt;}
.ls87_c00297{letter-spacing:0.766667pt;}
.ls64_c00297{letter-spacing:0.778933pt;}
.ls36_c00297{letter-spacing:0.785067pt;}
.ls18_c00297{letter-spacing:0.809600pt;}
.ls2c_c00297{letter-spacing:0.837707pt;}
.ls30_c00297{letter-spacing:0.846400pt;}
.ls35_c00297{letter-spacing:0.852533pt;}
.ls4b_c00297{letter-spacing:0.870933pt;}
.ls46_c00297{letter-spacing:0.926133pt;}
.ls5c_c00297{letter-spacing:0.938400pt;}
.ls40_c00297{letter-spacing:0.952213pt;}
.ls14_c00297{letter-spacing:0.975200pt;}
.ls4a_c00297{letter-spacing:1.005867pt;}
.ls19_c00297{letter-spacing:1.042613pt;}
.ls48_c00297{letter-spacing:1.048800pt;}
.ls1d_c00297{letter-spacing:1.067200pt;}
.ls41_c00297{letter-spacing:1.114933pt;}
.ls57_c00297{letter-spacing:1.165333pt;}
.ls5a_c00297{letter-spacing:1.202133pt;}
.ls47_c00297{letter-spacing:1.208267pt;}
.ls0_c00297{letter-spacing:1.211360pt;}
.ls52_c00297{letter-spacing:1.281867pt;}
.ls1e_c00297{letter-spacing:1.306400pt;}
.ls24_c00297{letter-spacing:1.790933pt;}
.ls6_c00297{letter-spacing:1.827733pt;}
.ls33_c00297{letter-spacing:2.217813pt;}
.ls85_c00297{letter-spacing:2.257067pt;}
.ls2e_c00297{letter-spacing:2.729333pt;}
.ls8e_c00297{letter-spacing:3.066667pt;}
.ws0_c00297{word-spacing:-0.525440pt;}
.ws6_c00297{word-spacing:0.000000pt;}
.ws3_c00297{word-spacing:1.643253pt;}
.ws1_c00297{word-spacing:8.899733pt;}
.ws4_c00297{word-spacing:9.952000pt;}
.ws2_c00297{word-spacing:12.223733pt;}
.ws5_c00297{word-spacing:21.806400pt;}
._e_c00297{margin-left:-4.097067pt;}
._0_c00297{margin-left:-2.208000pt;}
._10_c00297{margin-left:-0.969067pt;}
._14_c00297{width:1.118133pt;}
._f_c00297{width:2.024000pt;}
._d_c00297{width:3.256800pt;}
._13_c00297{width:4.422133pt;}
._3_c00297{width:5.618133pt;}
._1_c00297{width:6.918400pt;}
._6_c00297{width:8.096000pt;}
._4_c00297{width:9.525067pt;}
._c_c00297{width:10.733333pt;}
._2_c00297{width:11.984533pt;}
._5_c00297{width:13.094667pt;}
._12_c00297{width:14.229333pt;}
._a_c00297{width:15.229067pt;}
._11_c00297{width:16.259467pt;}
._8_c00297{width:17.492267pt;}
._7_c00297{width:18.817067pt;}
._b_c00297{width:19.933333pt;}
._9_c00297{width:21.436000pt;}
.fs5_c00297{font-size:50.666667pt;}
.fs0_c00297{font-size:58.666667pt;}
.fs3_c00297{font-size:59.733333pt;}
.fs1_c00297{font-size:60.266667pt;}
.fs4_c00297{font-size:60.800000pt;}
.fs2_c00297{font-size:61.333333pt;}
.y0_c00297{bottom:0.000000pt;}
.y1f_c00297{bottom:62.733333pt;}
.y1e_c00297{bottom:114.573333pt;}
.y1d_c00297{bottom:114.576667pt;}
.y1c_c00297{bottom:141.440667pt;}
.y1a_c00297{bottom:168.314667pt;}
.y1b_c00297{bottom:168.320000pt;}
.y18_c00297{bottom:195.850000pt;}
.y19_c00297{bottom:195.853333pt;}
.y17_c00297{bottom:223.373333pt;}
.y16_c00297{bottom:278.400000pt;}
.y15_c00297{bottom:333.454000pt;}
.y14_c00297{bottom:360.632667pt;}
.y13_c00297{bottom:388.493333pt;}
.y12_c00297{bottom:443.533333pt;}
.y10_c00297{bottom:498.251333pt;}
.y11_c00297{bottom:498.253333pt;}
.yf_c00297{bottom:552.976000pt;}
.ye_c00297{bottom:579.840000pt;}
.yd_c00297{bottom:634.876667pt;}
.yc_c00297{bottom:662.400000pt;}
.yb_c00297{bottom:690.253333pt;}
.ya_c00297{bottom:744.953333pt;}
.y9_c00297{bottom:772.492000pt;}
.y8_c00297{bottom:799.693333pt;}
.y6_c00297{bottom:854.397333pt;}
.y7_c00297{bottom:854.400000pt;}
.y5_c00297{bottom:881.614000pt;}
.y4_c00297{bottom:908.796667pt;}
.y3_c00297{bottom:936.013333pt;}
.y2_c00297{bottom:991.360000pt;}
.y1_c00297{bottom:1059.533333pt;}
.h9_c00297{height:49.726562pt;}
.h4_c00297{height:58.625000pt;}
.h2_c00297{height:59.125000pt;}
.h3_c00297{height:60.195312pt;}
.h6_c00297{height:60.205979pt;}
.h5_c00297{height:60.208646pt;}
.h7_c00297{height:60.224646pt;}
.h8_c00297{height:63.968750pt;}
.h1_c00297{height:1122.666667pt;}
.h0_c00297{height:1122.880000pt;}
.w1_c00297{width:793.333333pt;}
.w0_c00297{width:793.600000pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:110.333333pt;}
.x8_c00297{left:111.266667pt;}
.x2_c00297{left:157.906667pt;}
.xa_c00297{left:160.878000pt;}
.x7_c00297{left:263.520000pt;}
.xd_c00297{left:285.600000pt;}
.xe_c00297{left:305.440000pt;}
.x9_c00297{left:308.880000pt;}
.x16_c00297{left:337.120000pt;}
.xb_c00297{left:340.306667pt;}
.xf_c00297{left:363.040000pt;}
.xc_c00297{left:364.626667pt;}
.x17_c00297{left:379.120000pt;}
.x3_c00297{left:385.533333pt;}
.x14_c00297{left:391.226667pt;}
.x15_c00297{left:405.546667pt;}
.x4_c00297{left:413.280000pt;}
.x10_c00297{left:415.786667pt;}
.x11_c00297{left:461.306667pt;}
.x5_c00297{left:509.666667pt;}
.x6_c00297{left:529.533333pt;}
.x12_c00297{left:554.786667pt;}
.x13_c00297{left:579.386667pt;}
}





/* 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_c00298 {
    display:none;
  }
  .loading-indicator_c00298.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00298 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_c00298 { 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_c00298" -> "#page-container .classname_c00298")
 */
.pf_c00298 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00298 { /* 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_c00298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00298 { /* 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_c00298 { /* 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_c00298 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00298 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00298 {overflow:visible;}
  }
}
.c_c00298 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00298 { /* 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_c00298:after { /* webkit #35443 */
  content: '';
}
.t_c00298:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00298 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 */
}
.__c00298 { /* 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_c00298 { /* info for Javascript */
  display:none;
}
.l_c00298 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00298 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00298 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00298: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_c00298 {
    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_c00298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00298.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_c00298 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00298;src:url('chunks/assets/font_b4ef21e01c71a51d7357d3a6.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.311035;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_c00298;src:url('chunks/assets/font_2b5365edfbf4fc556cbeb878.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.284180;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_c00298;src:url('chunks/assets/font_e5e14f150a0a10ce4230ca3b.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:1.284668;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_c00298;src:url('chunks/assets/font_5abd120c77e719e0c8db6b42.woff2')format("woff");}.ff4_c00298{font-family:ff4_c00298;line-height:1.284180;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_c00298;src:url('chunks/assets/font_0fd3ab6e4058fa79c99ccd0c.woff2')format("woff");}.ff5_c00298{font-family:ff5_c00298;line-height:0.666000;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_c00298;src:url('chunks/assets/font_2d25a1a6efed6def007f8982.woff2')format("woff");}.ff6_c00298{font-family:ff6_c00298;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;}
.m10_c00298{transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);}
.mf_c00298{transform:matrix(0.161122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161122,0.000000,0.000000,0.250000,0,0);}
.m7_c00298{transform:matrix(0.183677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183677,0.000000,0.000000,0.250000,0,0);}
.m4_c00298{transform:matrix(0.191904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191904,0.000000,0.000000,0.250000,0,0);}
.m6_c00298{transform:matrix(0.194533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194533,0.000000,0.000000,0.250000,0,0);}
.m3_c00298{transform:matrix(0.195669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195669,0.000000,0.000000,0.250000,0,0);}
.me_c00298{transform:matrix(0.196957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196957,0.000000,0.000000,0.250000,0,0);}
.md_c00298{transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);}
.m5_c00298{transform:matrix(0.214288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214288,0.000000,0.000000,0.250000,0,0);}
.m11_c00298{transform:matrix(0.214862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214862,0.000000,0.000000,0.250000,0,0);}
.m14_c00298{transform:matrix(0.235222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235222,0.000000,0.000000,0.250000,0,0);}
.m16_c00298{transform:matrix(0.239406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239406,0.000000,0.000000,0.250000,0,0);}
.m2_c00298{transform:matrix(0.239705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239705,0.000000,0.000000,0.250000,0,0);}
.m1_c00298{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m0_c00298{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);}
.m13_c00298{transform:matrix(0.258355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258355,0.000000,0.000000,0.250000,0,0);}
.m15_c00298{transform:matrix(0.292119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292119,0.000000,0.000000,0.250000,0,0);}
.m12_c00298{transform:matrix(0.353348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353348,0.000000,0.000000,0.250000,0,0);}
.mc_c00298{transform:matrix(0.375007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375007,0.000000,0.000000,0.250000,0,0);}
.m8_c00298{transform:matrix(0.690110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690110,0.000000,0.000000,0.250000,0,0);}
.mb_c00298{transform:matrix(1.013329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.013329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.013329,0.000000,0.000000,0.250000,0,0);}
.m9_c00298{transform:matrix(1.260713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.260713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.260713,0.000000,0.000000,0.250000,0,0);}
.ma_c00298{transform:matrix(1.830640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.830640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.830640,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls7d_c00298{letter-spacing:-3.801000px;}
.ls99_c00298{letter-spacing:-3.465000px;}
.ls62_c00298{letter-spacing:-2.457000px;}
.ls7b_c00298{letter-spacing:-2.435940px;}
.ls80_c00298{letter-spacing:-2.352000px;}
.ls71_c00298{letter-spacing:-2.204280px;}
.ls67_c00298{letter-spacing:-2.035800px;}
.ls77_c00298{letter-spacing:-1.951560px;}
.ls5b_c00298{letter-spacing:-1.916460px;}
.ls93_c00298{letter-spacing:-1.769040px;}
.ls69_c00298{letter-spacing:-1.642680px;}
.ls4e_c00298{letter-spacing:-1.635660px;}
.ls87_c00298{letter-spacing:-1.509300px;}
.ls7c_c00298{letter-spacing:-1.446120px;}
.ls83_c00298{letter-spacing:-1.270620px;}
.ls64_c00298{letter-spacing:-1.249560px;}
.ls85_c00298{letter-spacing:-1.017900px;}
.ls8e_c00298{letter-spacing:-1.008021px;}
.ls55_c00298{letter-spacing:-0.989820px;}
.ls8d_c00298{letter-spacing:-0.945021px;}
.ls82_c00298{letter-spacing:-0.877500px;}
.ls89_c00298{letter-spacing:-0.861000px;}
.ls8c_c00298{letter-spacing:-0.840000px;}
.ls61_c00298{letter-spacing:-0.821340px;}
.ls58_c00298{letter-spacing:-0.814320px;}
.ls65_c00298{letter-spacing:-0.807300px;}
.ls6c_c00298{letter-spacing:-0.786240px;}
.ls74_c00298{letter-spacing:-0.765180px;}
.ls52_c00298{letter-spacing:-0.680940px;}
.ls5f_c00298{letter-spacing:-0.666900px;}
.ls95_c00298{letter-spacing:-0.659880px;}
.ls76_c00298{letter-spacing:-0.610740px;}
.ls90_c00298{letter-spacing:-0.561600px;}
.ls68_c00298{letter-spacing:-0.533520px;}
.ls66_c00298{letter-spacing:-0.526500px;}
.ls97_c00298{letter-spacing:-0.512460px;}
.ls72_c00298{letter-spacing:-0.505440px;}
.ls60_c00298{letter-spacing:-0.491400px;}
.ls5e_c00298{letter-spacing:-0.428220px;}
.ls6e_c00298{letter-spacing:-0.421200px;}
.ls84_c00298{letter-spacing:-0.400140px;}
.ls98_c00298{letter-spacing:-0.379080px;}
.ls86_c00298{letter-spacing:-0.351000px;}
.ls7a_c00298{letter-spacing:-0.343980px;}
.ls54_c00298{letter-spacing:-0.301860px;}
.ls6b_c00298{letter-spacing:-0.273780px;}
.ls7e_c00298{letter-spacing:-0.259740px;}
.ls53_c00298{letter-spacing:-0.224640px;}
.ls78_c00298{letter-spacing:-0.203580px;}
.ls51_c00298{letter-spacing:-0.196560px;}
.ls59_c00298{letter-spacing:-0.189540px;}
.ls57_c00298{letter-spacing:-0.182520px;}
.ls6a_c00298{letter-spacing:-0.168480px;}
.ls5c_c00298{letter-spacing:-0.154440px;}
.ls79_c00298{letter-spacing:-0.140400px;}
.ls7f_c00298{letter-spacing:-0.133380px;}
.ls4f_c00298{letter-spacing:-0.126360px;}
.ls56_c00298{letter-spacing:-0.105300px;}
.ls75_c00298{letter-spacing:-0.091260px;}
.ls70_c00298{letter-spacing:-0.063180px;}
.ls88_c00298{letter-spacing:-0.049140px;}
.ls63_c00298{letter-spacing:-0.042120px;}
.ls5d_c00298{letter-spacing:-0.035100px;}
.ls5a_c00298{letter-spacing:-0.014040px;}
.ls6d_c00298{letter-spacing:-0.007020px;}
.ls50_c00298{letter-spacing:0.000000px;}
.ls10_c00298{letter-spacing:0.007020px;}
.ls2_c00298{letter-spacing:0.014040px;}
.ls7_c00298{letter-spacing:0.028080px;}
.ls32_c00298{letter-spacing:0.042120px;}
.ls9_c00298{letter-spacing:0.049140px;}
.ls43_c00298{letter-spacing:0.063180px;}
.ls3f_c00298{letter-spacing:0.070200px;}
.ls3a_c00298{letter-spacing:0.077220px;}
.lsa_c00298{letter-spacing:0.091260px;}
.ls1c_c00298{letter-spacing:0.098280px;}
.ls6f_c00298{letter-spacing:0.105300px;}
.ls45_c00298{letter-spacing:0.115620px;}
.ls24_c00298{letter-spacing:0.119340px;}
.ls13_c00298{letter-spacing:0.126360px;}
.ls14_c00298{letter-spacing:0.133380px;}
.ls1a_c00298{letter-spacing:0.147420px;}
.lsc_c00298{letter-spacing:0.154440px;}
.ls2c_c00298{letter-spacing:0.161460px;}
.lse_c00298{letter-spacing:0.168480px;}
.ls6_c00298{letter-spacing:0.203580px;}
.ls1_c00298{letter-spacing:0.224640px;}
.ls1d_c00298{letter-spacing:0.238680px;}
.ls44_c00298{letter-spacing:0.245700px;}
.ls29_c00298{letter-spacing:0.259740px;}
.ls8b_c00298{letter-spacing:0.268140px;}
.ls73_c00298{letter-spacing:0.294840px;}
.ls4c_c00298{letter-spacing:0.301860px;}
.ls8_c00298{letter-spacing:0.308880px;}
.ls1b_c00298{letter-spacing:0.315900px;}
.ls12_c00298{letter-spacing:0.351900px;}
.lsd_c00298{letter-spacing:0.358020px;}
.ls2e_c00298{letter-spacing:0.372060px;}
.ls28_c00298{letter-spacing:0.414180px;}
.ls23_c00298{letter-spacing:0.428220px;}
.ls37_c00298{letter-spacing:0.449280px;}
.ls31_c00298{letter-spacing:0.456300px;}
.ls40_c00298{letter-spacing:0.463320px;}
.ls26_c00298{letter-spacing:0.489900px;}
.ls36_c00298{letter-spacing:0.491400px;}
.ls81_c00298{letter-spacing:0.526500px;}
.ls4a_c00298{letter-spacing:0.533520px;}
.ls21_c00298{letter-spacing:0.547560px;}
.ls2d_c00298{letter-spacing:0.561600px;}
.ls38_c00298{letter-spacing:0.568620px;}
.lsf_c00298{letter-spacing:0.575640px;}
.ls25_c00298{letter-spacing:0.586500px;}
.ls3e_c00298{letter-spacing:0.610740px;}
.ls15_c00298{letter-spacing:0.638820px;}
.ls4b_c00298{letter-spacing:0.645840px;}
.ls9a_c00298{letter-spacing:0.653400px;}
.ls1f_c00298{letter-spacing:0.661200px;}
.ls33_c00298{letter-spacing:0.673920px;}
.ls2a_c00298{letter-spacing:0.694980px;}
.ls96_c00298{letter-spacing:0.702000px;}
.ls35_c00298{letter-spacing:0.717600px;}
.ls11_c00298{letter-spacing:0.731400px;}
.ls19_c00298{letter-spacing:0.737100px;}
.ls1e_c00298{letter-spacing:0.744120px;}
.ls42_c00298{letter-spacing:0.745200px;}
.ls41_c00298{letter-spacing:0.751140px;}
.ls3d_c00298{letter-spacing:0.758160px;}
.ls0_c00298{letter-spacing:0.759000px;}
.ls2f_c00298{letter-spacing:0.772200px;}
.ls16_c00298{letter-spacing:0.821340px;}
.ls27_c00298{letter-spacing:0.828000px;}
.ls39_c00298{letter-spacing:0.972900px;}
.ls49_c00298{letter-spacing:0.975780px;}
.ls30_c00298{letter-spacing:0.989820px;}
.ls3b_c00298{letter-spacing:1.028100px;}
.ls4_c00298{letter-spacing:1.088100px;}
.ls34_c00298{letter-spacing:1.131600px;}
.ls2b_c00298{letter-spacing:1.214460px;}
.ls8a_c00298{letter-spacing:1.230000px;}
.ls5_c00298{letter-spacing:1.263600px;}
.ls8f_c00298{letter-spacing:1.350030px;}
.ls4d_c00298{letter-spacing:1.352400px;}
.ls20_c00298{letter-spacing:1.386900px;}
.ls47_c00298{letter-spacing:1.425060px;}
.ls18_c00298{letter-spacing:1.467180px;}
.ls3_c00298{letter-spacing:1.747980px;}
.lsb_c00298{letter-spacing:1.804140px;}
.ls17_c00298{letter-spacing:1.818180px;}
.ls22_c00298{letter-spacing:1.860300px;}
.ls94_c00298{letter-spacing:2.070030px;}
.ls3c_c00298{letter-spacing:2.414880px;}
.ls48_c00298{letter-spacing:2.597400px;}
.ls46_c00298{letter-spacing:2.611440px;}
.ls91_c00298{letter-spacing:3.376620px;}
.ls92_c00298{letter-spacing:3.510000px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{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__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00298{word-spacing:0.000000px;}
.ws1_c00298{word-spacing:8.165100px;}
.ws2_c00298{word-spacing:8.439000px;}
.ws4_c00298{word-spacing:11.595600px;}
.ws0_c00298{word-spacing:22.974000px;}
.ws5_c00298{word-spacing:24.147000px;}
.ws3_c00298{word-spacing:27.390600px;}
._17_c00298{margin-left:-7.371000px;}
._f_c00298{margin-left:-5.594940px;}
._7_c00298{margin-left:-3.566160px;}
._9_c00298{margin-left:-1.937520px;}
._4_c00298{width:1.404000px;}
._8_c00298{width:2.449980px;}
._6_c00298{width:4.057560px;}
._19_c00298{width:5.104500px;}
._5_c00298{width:6.163560px;}
._e_c00298{width:7.187520px;}
._a_c00298{width:8.700600px;}
._11_c00298{width:9.940320px;}
._c_c00298{width:11.042460px;}
._10_c00298{width:13.267800px;}
._b_c00298{width:14.864880px;}
._d_c00298{width:16.440840px;}
._18_c00298{width:17.473560px;}
._1_c00298{width:19.670040px;}
._0_c00298{width:23.099640px;}
._15_c00298{width:24.232080px;}
._2_c00298{width:26.360100px;}
._3_c00298{width:27.469260px;}
._12_c00298{width:29.519400px;}
._14_c00298{width:31.210620px;}
._13_c00298{width:35.823060px;}
._16_c00298{width:123.947100px;}
.fc0_c00298{color:transparent;}
.fs7_c00298{font-size:20.160000px;}
.fs8_c00298{font-size:24.000000px;}
.fs6_c00298{font-size:24.600000px;}
.fs9_c00298{font-size:27.000600px;}
.fsa_c00298{font-size:28.800600px;}
.fsb_c00298{font-size:41.400600px;}
.fs0_c00298{font-size:58.800000px;}
.fsd_c00298{font-size:59.400000px;}
.fs5_c00298{font-size:67.200000px;}
.fs1_c00298{font-size:69.000000px;}
.fs3_c00298{font-size:69.600000px;}
.fs2_c00298{font-size:70.200000px;}
.fsc_c00298{font-size:99.000000px;}
.fs4_c00298{font-size:108.600000px;}
.y0_c00298{bottom:0.000000px;}
.y1f_c00298{bottom:66.975006px;}
.y1e_c00298{bottom:183.240006px;}
.y1d_c00298{bottom:215.656806px;}
.y1c_c00298{bottom:246.618906px;}
.y1b_c00298{bottom:276.840006px;}
.y1a_c00298{bottom:285.840006px;}
.y19_c00298{bottom:307.800006px;}
.y17_c00298{bottom:370.092156px;}
.y18_c00298{bottom:370.095006px;}
.y16_c00298{bottom:403.560006px;}
.y14_c00298{bottom:466.208256px;}
.y15_c00298{bottom:466.215006px;}
.y13_c00298{bottom:497.535006px;}
.y12_c00298{bottom:558.361506px;}
.y11_c00298{bottom:589.688256px;}
.y10_c00298{bottom:621.015006px;}
.yf_c00298{bottom:682.560006px;}
.ye_c00298{bottom:744.855006px;}
.yd_c00298{bottom:744.859356px;}
.yc_c00298{bottom:775.800006px;}
.yb_c00298{bottom:775.801056px;}
.y9_c00298{bottom:837.730356px;}
.ya_c00298{bottom:837.735006px;}
.y8_c00298{bottom:868.320006px;}
.y7_c00298{bottom:929.529606px;}
.y6_c00298{bottom:960.136806px;}
.y5_c00298{bottom:991.095006px;}
.y4_c00298{bottom:1053.001056px;}
.y3_c00298{bottom:1083.608256px;}
.y2_c00298{bottom:1114.935006px;}
.y1_c00298{bottom:1191.255006px;}
.h8_c00298{height:13.426560px;}
.h6_c00298{height:24.143555px;}
.h7_c00298{height:24.792187px;}
.h9_c00298{height:25.031250px;}
.ha_c00298{height:28.160782px;}
.hb_c00298{height:28.266214px;}
.hc_c00298{height:40.632425px;}
.he_c00298{height:58.297852px;}
.h2_c00298{height:59.259375px;}
.h5_c00298{height:65.953125px;}
.h3_c00298{height:68.897461px;}
.hd_c00298{height:97.163086px;}
.h4_c00298{height:106.584961px;}
.h1_c00298{height:1263.000000px;}
.h0_c00298{height:1263.240006px;}
.w1_c00298{width:892.500000px;}
.w0_c00298{width:892.799998px;}
.x0_c00298{left:0.000000px;}
.x5_c00298{left:120.760349px;}
.x3_c00298{left:121.995149px;}
.x1_c00298{left:123.404999px;}
.x16_c00298{left:140.189998px;}
.x11_c00298{left:156.509998px;}
.x7_c00298{left:173.048098px;}
.x4_c00298{left:174.764998px;}
.x2_c00298{left:175.844999px;}
.x12_c00298{left:189.209998px;}
.x17_c00298{left:193.964999px;}
.xd_c00298{left:216.509998px;}
.x18_c00298{left:234.959999px;}
.xe_c00298{left:237.299999px;}
.x8_c00298{left:241.364998px;}
.x19_c00298{left:266.894999px;}
.x9_c00298{left:269.534999px;}
.x6_c00298{left:338.129998px;}
.x13_c00298{left:352.364999px;}
.x1a_c00298{left:359.114999px;}
.x14_c00298{left:384.659999px;}
.x25_c00298{left:398.879999px;}
.x2a_c00298{left:425.789999px;}
.x26_c00298{left:439.724999px;}
.xa_c00298{left:441.524999px;}
.xb_c00298{left:472.784998px;}
.x27_c00298{left:500.564998px;}
.x15_c00298{left:529.844998px;}
.xf_c00298{left:601.124998px;}
.xc_c00298{left:602.474999px;}
.x1b_c00298{left:609.119999px;}
.x1c_c00298{left:627.029999px;}
.x10_c00298{left:637.049998px;}
.x1d_c00298{left:638.939999px;}
.x1e_c00298{left:667.304999px;}
.x1f_c00298{left:681.074998px;}
.x28_c00298{left:690.824998px;}
.x20_c00298{left:691.919999px;}
.x21_c00298{left:698.789999px;}
.x22_c00298{left:704.474999px;}
.x23_c00298{left:720.569999px;}
.x29_c00298{left:736.364998px;}
.x24_c00298{left:739.484998px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls7d_c00298{letter-spacing:-3.378667pt;}
.ls99_c00298{letter-spacing:-3.080000pt;}
.ls62_c00298{letter-spacing:-2.184000pt;}
.ls7b_c00298{letter-spacing:-2.165280pt;}
.ls80_c00298{letter-spacing:-2.090667pt;}
.ls71_c00298{letter-spacing:-1.959360pt;}
.ls67_c00298{letter-spacing:-1.809600pt;}
.ls77_c00298{letter-spacing:-1.734720pt;}
.ls5b_c00298{letter-spacing:-1.703520pt;}
.ls93_c00298{letter-spacing:-1.572480pt;}
.ls69_c00298{letter-spacing:-1.460160pt;}
.ls4e_c00298{letter-spacing:-1.453920pt;}
.ls87_c00298{letter-spacing:-1.341600pt;}
.ls7c_c00298{letter-spacing:-1.285440pt;}
.ls83_c00298{letter-spacing:-1.129440pt;}
.ls64_c00298{letter-spacing:-1.110720pt;}
.ls85_c00298{letter-spacing:-0.904800pt;}
.ls8e_c00298{letter-spacing:-0.896019pt;}
.ls55_c00298{letter-spacing:-0.879840pt;}
.ls8d_c00298{letter-spacing:-0.840019pt;}
.ls82_c00298{letter-spacing:-0.780000pt;}
.ls89_c00298{letter-spacing:-0.765333pt;}
.ls8c_c00298{letter-spacing:-0.746667pt;}
.ls61_c00298{letter-spacing:-0.730080pt;}
.ls58_c00298{letter-spacing:-0.723840pt;}
.ls65_c00298{letter-spacing:-0.717600pt;}
.ls6c_c00298{letter-spacing:-0.698880pt;}
.ls74_c00298{letter-spacing:-0.680160pt;}
.ls52_c00298{letter-spacing:-0.605280pt;}
.ls5f_c00298{letter-spacing:-0.592800pt;}
.ls95_c00298{letter-spacing:-0.586560pt;}
.ls76_c00298{letter-spacing:-0.542880pt;}
.ls90_c00298{letter-spacing:-0.499200pt;}
.ls68_c00298{letter-spacing:-0.474240pt;}
.ls66_c00298{letter-spacing:-0.468000pt;}
.ls97_c00298{letter-spacing:-0.455520pt;}
.ls72_c00298{letter-spacing:-0.449280pt;}
.ls60_c00298{letter-spacing:-0.436800pt;}
.ls5e_c00298{letter-spacing:-0.380640pt;}
.ls6e_c00298{letter-spacing:-0.374400pt;}
.ls84_c00298{letter-spacing:-0.355680pt;}
.ls98_c00298{letter-spacing:-0.336960pt;}
.ls86_c00298{letter-spacing:-0.312000pt;}
.ls7a_c00298{letter-spacing:-0.305760pt;}
.ls54_c00298{letter-spacing:-0.268320pt;}
.ls6b_c00298{letter-spacing:-0.243360pt;}
.ls7e_c00298{letter-spacing:-0.230880pt;}
.ls53_c00298{letter-spacing:-0.199680pt;}
.ls78_c00298{letter-spacing:-0.180960pt;}
.ls51_c00298{letter-spacing:-0.174720pt;}
.ls59_c00298{letter-spacing:-0.168480pt;}
.ls57_c00298{letter-spacing:-0.162240pt;}
.ls6a_c00298{letter-spacing:-0.149760pt;}
.ls5c_c00298{letter-spacing:-0.137280pt;}
.ls79_c00298{letter-spacing:-0.124800pt;}
.ls7f_c00298{letter-spacing:-0.118560pt;}
.ls4f_c00298{letter-spacing:-0.112320pt;}
.ls56_c00298{letter-spacing:-0.093600pt;}
.ls75_c00298{letter-spacing:-0.081120pt;}
.ls70_c00298{letter-spacing:-0.056160pt;}
.ls88_c00298{letter-spacing:-0.043680pt;}
.ls63_c00298{letter-spacing:-0.037440pt;}
.ls5d_c00298{letter-spacing:-0.031200pt;}
.ls5a_c00298{letter-spacing:-0.012480pt;}
.ls6d_c00298{letter-spacing:-0.006240pt;}
.ls50_c00298{letter-spacing:0.000000pt;}
.ls10_c00298{letter-spacing:0.006240pt;}
.ls2_c00298{letter-spacing:0.012480pt;}
.ls7_c00298{letter-spacing:0.024960pt;}
.ls32_c00298{letter-spacing:0.037440pt;}
.ls9_c00298{letter-spacing:0.043680pt;}
.ls43_c00298{letter-spacing:0.056160pt;}
.ls3f_c00298{letter-spacing:0.062400pt;}
.ls3a_c00298{letter-spacing:0.068640pt;}
.lsa_c00298{letter-spacing:0.081120pt;}
.ls1c_c00298{letter-spacing:0.087360pt;}
.ls6f_c00298{letter-spacing:0.093600pt;}
.ls45_c00298{letter-spacing:0.102773pt;}
.ls24_c00298{letter-spacing:0.106080pt;}
.ls13_c00298{letter-spacing:0.112320pt;}
.ls14_c00298{letter-spacing:0.118560pt;}
.ls1a_c00298{letter-spacing:0.131040pt;}
.lsc_c00298{letter-spacing:0.137280pt;}
.ls2c_c00298{letter-spacing:0.143520pt;}
.lse_c00298{letter-spacing:0.149760pt;}
.ls6_c00298{letter-spacing:0.180960pt;}
.ls1_c00298{letter-spacing:0.199680pt;}
.ls1d_c00298{letter-spacing:0.212160pt;}
.ls44_c00298{letter-spacing:0.218400pt;}
.ls29_c00298{letter-spacing:0.230880pt;}
.ls8b_c00298{letter-spacing:0.238347pt;}
.ls73_c00298{letter-spacing:0.262080pt;}
.ls4c_c00298{letter-spacing:0.268320pt;}
.ls8_c00298{letter-spacing:0.274560pt;}
.ls1b_c00298{letter-spacing:0.280800pt;}
.ls12_c00298{letter-spacing:0.312800pt;}
.lsd_c00298{letter-spacing:0.318240pt;}
.ls2e_c00298{letter-spacing:0.330720pt;}
.ls28_c00298{letter-spacing:0.368160pt;}
.ls23_c00298{letter-spacing:0.380640pt;}
.ls37_c00298{letter-spacing:0.399360pt;}
.ls31_c00298{letter-spacing:0.405600pt;}
.ls40_c00298{letter-spacing:0.411840pt;}
.ls26_c00298{letter-spacing:0.435467pt;}
.ls36_c00298{letter-spacing:0.436800pt;}
.ls81_c00298{letter-spacing:0.468000pt;}
.ls4a_c00298{letter-spacing:0.474240pt;}
.ls21_c00298{letter-spacing:0.486720pt;}
.ls2d_c00298{letter-spacing:0.499200pt;}
.ls38_c00298{letter-spacing:0.505440pt;}
.lsf_c00298{letter-spacing:0.511680pt;}
.ls25_c00298{letter-spacing:0.521333pt;}
.ls3e_c00298{letter-spacing:0.542880pt;}
.ls15_c00298{letter-spacing:0.567840pt;}
.ls4b_c00298{letter-spacing:0.574080pt;}
.ls9a_c00298{letter-spacing:0.580800pt;}
.ls1f_c00298{letter-spacing:0.587733pt;}
.ls33_c00298{letter-spacing:0.599040pt;}
.ls2a_c00298{letter-spacing:0.617760pt;}
.ls96_c00298{letter-spacing:0.624000pt;}
.ls35_c00298{letter-spacing:0.637867pt;}
.ls11_c00298{letter-spacing:0.650133pt;}
.ls19_c00298{letter-spacing:0.655200pt;}
.ls1e_c00298{letter-spacing:0.661440pt;}
.ls42_c00298{letter-spacing:0.662400pt;}
.ls41_c00298{letter-spacing:0.667680pt;}
.ls3d_c00298{letter-spacing:0.673920pt;}
.ls0_c00298{letter-spacing:0.674667pt;}
.ls2f_c00298{letter-spacing:0.686400pt;}
.ls16_c00298{letter-spacing:0.730080pt;}
.ls27_c00298{letter-spacing:0.736000pt;}
.ls39_c00298{letter-spacing:0.864800pt;}
.ls49_c00298{letter-spacing:0.867360pt;}
.ls30_c00298{letter-spacing:0.879840pt;}
.ls3b_c00298{letter-spacing:0.913867pt;}
.ls4_c00298{letter-spacing:0.967200pt;}
.ls34_c00298{letter-spacing:1.005867pt;}
.ls2b_c00298{letter-spacing:1.079520pt;}
.ls8a_c00298{letter-spacing:1.093333pt;}
.ls5_c00298{letter-spacing:1.123200pt;}
.ls8f_c00298{letter-spacing:1.200027pt;}
.ls4d_c00298{letter-spacing:1.202133pt;}
.ls20_c00298{letter-spacing:1.232800pt;}
.ls47_c00298{letter-spacing:1.266720pt;}
.ls18_c00298{letter-spacing:1.304160pt;}
.ls3_c00298{letter-spacing:1.553760pt;}
.lsb_c00298{letter-spacing:1.603680pt;}
.ls17_c00298{letter-spacing:1.616160pt;}
.ls22_c00298{letter-spacing:1.653600pt;}
.ls94_c00298{letter-spacing:1.840027pt;}
.ls3c_c00298{letter-spacing:2.146560pt;}
.ls48_c00298{letter-spacing:2.308800pt;}
.ls46_c00298{letter-spacing:2.321280pt;}
.ls91_c00298{letter-spacing:3.001440pt;}
.ls92_c00298{letter-spacing:3.120000pt;}
.ws6_c00298{word-spacing:0.000000pt;}
.ws1_c00298{word-spacing:7.257867pt;}
.ws2_c00298{word-spacing:7.501333pt;}
.ws4_c00298{word-spacing:10.307200pt;}
.ws0_c00298{word-spacing:20.421333pt;}
.ws5_c00298{word-spacing:21.464000pt;}
.ws3_c00298{word-spacing:24.347200pt;}
._17_c00298{margin-left:-6.552000pt;}
._f_c00298{margin-left:-4.973280pt;}
._7_c00298{margin-left:-3.169920pt;}
._9_c00298{margin-left:-1.722240pt;}
._4_c00298{width:1.248000pt;}
._8_c00298{width:2.177760pt;}
._6_c00298{width:3.606720pt;}
._19_c00298{width:4.537333pt;}
._5_c00298{width:5.478720pt;}
._e_c00298{width:6.388907pt;}
._a_c00298{width:7.733867pt;}
._11_c00298{width:8.835840pt;}
._c_c00298{width:9.815520pt;}
._10_c00298{width:11.793600pt;}
._b_c00298{width:13.213227pt;}
._d_c00298{width:14.614080pt;}
._18_c00298{width:15.532053pt;}
._1_c00298{width:17.484480pt;}
._0_c00298{width:20.533013pt;}
._15_c00298{width:21.539627pt;}
._2_c00298{width:23.431200pt;}
._3_c00298{width:24.417120pt;}
._12_c00298{width:26.239467pt;}
._14_c00298{width:27.742773pt;}
._13_c00298{width:31.842720pt;}
._16_c00298{width:110.175200pt;}
.fs7_c00298{font-size:17.920000pt;}
.fs8_c00298{font-size:21.333333pt;}
.fs6_c00298{font-size:21.866667pt;}
.fs9_c00298{font-size:24.000533pt;}
.fsa_c00298{font-size:25.600533pt;}
.fsb_c00298{font-size:36.800533pt;}
.fs0_c00298{font-size:52.266667pt;}
.fsd_c00298{font-size:52.800000pt;}
.fs5_c00298{font-size:59.733333pt;}
.fs1_c00298{font-size:61.333333pt;}
.fs3_c00298{font-size:61.866667pt;}
.fs2_c00298{font-size:62.400000pt;}
.fsc_c00298{font-size:88.000000pt;}
.fs4_c00298{font-size:96.533333pt;}
.y0_c00298{bottom:0.000000pt;}
.y1f_c00298{bottom:59.533339pt;}
.y1e_c00298{bottom:162.880005pt;}
.y1d_c00298{bottom:191.694939pt;}
.y1c_c00298{bottom:219.216805pt;}
.y1b_c00298{bottom:246.080005pt;}
.y1a_c00298{bottom:254.080005pt;}
.y19_c00298{bottom:273.600005pt;}
.y17_c00298{bottom:328.970805pt;}
.y18_c00298{bottom:328.973339pt;}
.y16_c00298{bottom:358.720005pt;}
.y14_c00298{bottom:414.407339pt;}
.y15_c00298{bottom:414.413339pt;}
.y13_c00298{bottom:442.253339pt;}
.y12_c00298{bottom:496.321339pt;}
.y11_c00298{bottom:524.167339pt;}
.y10_c00298{bottom:552.013339pt;}
.yf_c00298{bottom:606.720005pt;}
.ye_c00298{bottom:662.093339pt;}
.yd_c00298{bottom:662.097205pt;}
.yc_c00298{bottom:689.600005pt;}
.yb_c00298{bottom:689.600939pt;}
.y9_c00298{bottom:744.649205pt;}
.ya_c00298{bottom:744.653339pt;}
.y8_c00298{bottom:771.840005pt;}
.y7_c00298{bottom:826.248539pt;}
.y6_c00298{bottom:853.454939pt;}
.y5_c00298{bottom:880.973339pt;}
.y4_c00298{bottom:936.000939pt;}
.y3_c00298{bottom:963.207339pt;}
.y2_c00298{bottom:991.053339pt;}
.y1_c00298{bottom:1058.893339pt;}
.h8_c00298{height:11.934720pt;}
.h6_c00298{height:21.460937pt;}
.h7_c00298{height:22.037500pt;}
.h9_c00298{height:22.250000pt;}
.ha_c00298{height:25.031806pt;}
.hb_c00298{height:25.125523pt;}
.hc_c00298{height:36.117711pt;}
.he_c00298{height:51.820312pt;}
.h2_c00298{height:52.675000pt;}
.h5_c00298{height:58.625000pt;}
.h3_c00298{height:61.242187pt;}
.hd_c00298{height:86.367188pt;}
.h4_c00298{height:94.742188pt;}
.h1_c00298{height:1122.666667pt;}
.h0_c00298{height:1122.880005pt;}
.w1_c00298{width:793.333333pt;}
.w0_c00298{width:793.599999pt;}
.x0_c00298{left:0.000000pt;}
.x5_c00298{left:107.342532pt;}
.x3_c00298{left:108.440132pt;}
.x1_c00298{left:109.693332pt;}
.x16_c00298{left:124.613332pt;}
.x11_c00298{left:139.119999pt;}
.x7_c00298{left:153.820532pt;}
.x4_c00298{left:155.346665pt;}
.x2_c00298{left:156.306665pt;}
.x12_c00298{left:168.186665pt;}
.x17_c00298{left:172.413332pt;}
.xd_c00298{left:192.453332pt;}
.x18_c00298{left:208.853332pt;}
.xe_c00298{left:210.933332pt;}
.x8_c00298{left:214.546665pt;}
.x19_c00298{left:237.239999pt;}
.x9_c00298{left:239.586665pt;}
.x6_c00298{left:300.559999pt;}
.x13_c00298{left:313.213332pt;}
.x1a_c00298{left:319.213332pt;}
.x14_c00298{left:341.919999pt;}
.x25_c00298{left:354.559999pt;}
.x2a_c00298{left:378.479999pt;}
.x26_c00298{left:390.866665pt;}
.xa_c00298{left:392.466665pt;}
.xb_c00298{left:420.253332pt;}
.x27_c00298{left:444.946665pt;}
.x15_c00298{left:470.973332pt;}
.xf_c00298{left:534.333332pt;}
.xc_c00298{left:535.533332pt;}
.x1b_c00298{left:541.439999pt;}
.x1c_c00298{left:557.359999pt;}
.x10_c00298{left:566.266665pt;}
.x1d_c00298{left:567.946665pt;}
.x1e_c00298{left:593.159999pt;}
.x1f_c00298{left:605.399999pt;}
.x28_c00298{left:614.066665pt;}
.x20_c00298{left:615.039999pt;}
.x21_c00298{left:621.146665pt;}
.x22_c00298{left:626.199999pt;}
.x23_c00298{left:640.506665pt;}
.x29_c00298{left:654.546665pt;}
.x24_c00298{left:657.319999pt;}
}





/* 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_c00299 {
    display:none;
  }
  .loading-indicator_c00299.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00299 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_c00299 { 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_c00299" -> "#page-container .classname_c00299")
 */
.pf_c00299 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00299 { /* 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_c00299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00299 { /* 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_c00299 { /* 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_c00299 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00299 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00299 {overflow:visible;}
  }
}
.c_c00299 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00299 { /* 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_c00299:after { /* webkit #35443 */
  content: '';
}
.t_c00299:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00299 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 */
}
.__c00299 { /* 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_c00299 { /* info for Javascript */
  display:none;
}
.l_c00299 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00299 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00299 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00299: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_c00299 {
    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_c00299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00299.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_c00299 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00299;src:url('chunks/assets/font_7021c3642259ba612759e90b.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.284668;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_c00299;src:url('chunks/assets/font_2b439318432ca4ae2b81e59d.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.284180;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_c00299;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;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:ff4_c00299;src:url('chunks/assets/font_f2c0bc9d71fece8d077b1377.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:0.666000;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;}
.m6_c00299{transform:matrix(0.136824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136824,0.000000,0.000000,0.250000,0,0);}
.m5_c00299{transform:matrix(0.145270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145270,0.000000,0.000000,0.250000,0,0);}
.m9_c00299{transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);}
.m7_c00299{transform:matrix(0.193921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193921,0.000000,0.000000,0.250000,0,0);}
.m8_c00299{transform:matrix(0.199308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199308,0.000000,0.000000,0.250000,0,0);}
.m4_c00299{transform:matrix(0.229441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229441,0.000000,0.000000,0.250000,0,0);}
.m1_c00299{transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);}
.m0_c00299{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);}
.m3_c00299{transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);}
.m2_c00299{transform:matrix(0.255831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255831,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.lsae_c00299{letter-spacing:-2.604000px;}
.lsa3_c00299{letter-spacing:-2.541000px;}
.ls8a_c00299{letter-spacing:-2.394000px;}
.ls8d_c00299{letter-spacing:-2.168280px;}
.lsb1_c00299{letter-spacing:-2.134080px;}
.lsaf_c00299{letter-spacing:-1.963080px;}
.ls86_c00299{letter-spacing:-1.682640px;}
.lsb5_c00299{letter-spacing:-1.612800px;}
.ls8c_c00299{letter-spacing:-1.443240px;}
.lsa9_c00299{letter-spacing:-1.231200px;}
.ls99_c00299{letter-spacing:-1.197000px;}
.ls9b_c00299{letter-spacing:-1.176480px;}
.ls8f_c00299{letter-spacing:-0.896040px;}
.ls87_c00299{letter-spacing:-0.834480px;}
.ls84_c00299{letter-spacing:-0.772920px;}
.ls94_c00299{letter-spacing:-0.759240px;}
.ls9f_c00299{letter-spacing:-0.684000px;}
.lsa5_c00299{letter-spacing:-0.677160px;}
.lsa4_c00299{letter-spacing:-0.670320px;}
.ls82_c00299{letter-spacing:-0.636120px;}
.ls88_c00299{letter-spacing:-0.601920px;}
.ls8b_c00299{letter-spacing:-0.533520px;}
.ls7c_c00299{letter-spacing:-0.526680px;}
.ls89_c00299{letter-spacing:-0.506160px;}
.ls9a_c00299{letter-spacing:-0.478800px;}
.ls91_c00299{letter-spacing:-0.458280px;}
.ls85_c00299{letter-spacing:-0.444600px;}
.ls97_c00299{letter-spacing:-0.437760px;}
.lsa8_c00299{letter-spacing:-0.417240px;}
.lsb0_c00299{letter-spacing:-0.389880px;}
.ls9e_c00299{letter-spacing:-0.376200px;}
.ls9d_c00299{letter-spacing:-0.225720px;}
.ls80_c00299{letter-spacing:-0.212040px;}
.ls90_c00299{letter-spacing:-0.177840px;}
.ls83_c00299{letter-spacing:-0.169500px;}
.lsb3_c00299{letter-spacing:-0.150480px;}
.lsa7_c00299{letter-spacing:-0.143640px;}
.lsb2_c00299{letter-spacing:-0.129960px;}
.lsac_c00299{letter-spacing:-0.116280px;}
.ls7d_c00299{letter-spacing:-0.088920px;}
.lsaa_c00299{letter-spacing:-0.068400px;}
.lsa1_c00299{letter-spacing:-0.041040px;}
.ls81_c00299{letter-spacing:-0.020520px;}
.ls7e_c00299{letter-spacing:0.000000px;}
.ls24_c00299{letter-spacing:0.006840px;}
.ls23_c00299{letter-spacing:0.041040px;}
.ls21_c00299{letter-spacing:0.068400px;}
.ls5f_c00299{letter-spacing:0.082080px;}
.ls3f_c00299{letter-spacing:0.088920px;}
.ls17_c00299{letter-spacing:0.142380px;}
.ls73_c00299{letter-spacing:0.143640px;}
.lsad_c00299{letter-spacing:0.164160px;}
.ls45_c00299{letter-spacing:0.171000px;}
.lsa_c00299{letter-spacing:0.177840px;}
.ls6e_c00299{letter-spacing:0.184680px;}
.ls27_c00299{letter-spacing:0.191520px;}
.ls78_c00299{letter-spacing:0.205200px;}
.ls6f_c00299{letter-spacing:0.212040px;}
.ls67_c00299{letter-spacing:0.246240px;}
.ls71_c00299{letter-spacing:0.253080px;}
.ls49_c00299{letter-spacing:0.266760px;}
.ls3_c00299{letter-spacing:0.307800px;}
.ls76_c00299{letter-spacing:0.314640px;}
.ls40_c00299{letter-spacing:0.321480px;}
.ls1d_c00299{letter-spacing:0.335160px;}
.ls98_c00299{letter-spacing:0.342000px;}
.ls1b_c00299{letter-spacing:0.376200px;}
.ls8_c00299{letter-spacing:0.383040px;}
.ls4a_c00299{letter-spacing:0.403560px;}
.ls37_c00299{letter-spacing:0.410400px;}
.ls1a_c00299{letter-spacing:0.430920px;}
.ls52_c00299{letter-spacing:0.437760px;}
.ls19_c00299{letter-spacing:0.438960px;}
.ls79_c00299{letter-spacing:0.444600px;}
.lsa0_c00299{letter-spacing:0.451440px;}
.ls33_c00299{letter-spacing:0.465120px;}
.ls9_c00299{letter-spacing:0.478800px;}
.ls1e_c00299{letter-spacing:0.485640px;}
.ls57_c00299{letter-spacing:0.513000px;}
.ls2_c00299{letter-spacing:0.526680px;}
.ls29_c00299{letter-spacing:0.547200px;}
.ls10_c00299{letter-spacing:0.574560px;}
.ls4f_c00299{letter-spacing:0.581400px;}
.ls28_c00299{letter-spacing:0.588240px;}
.ls38_c00299{letter-spacing:0.595080px;}
.ls69_c00299{letter-spacing:0.601920px;}
.ls12_c00299{letter-spacing:0.603420px;}
.ls66_c00299{letter-spacing:0.615600px;}
.ls2c_c00299{letter-spacing:0.629280px;}
.ls9c_c00299{letter-spacing:0.636120px;}
.ls4d_c00299{letter-spacing:0.649800px;}
.ls7_c00299{letter-spacing:0.656640px;}
.ls56_c00299{letter-spacing:0.663480px;}
.ls2b_c00299{letter-spacing:0.677160px;}
.ls70_c00299{letter-spacing:0.684000px;}
.ls6d_c00299{letter-spacing:0.690840px;}
.ls3e_c00299{letter-spacing:0.697680px;}
.ls41_c00299{letter-spacing:0.718200px;}
.lsd_c00299{letter-spacing:0.725040px;}
.ls15_c00299{letter-spacing:0.738720px;}
.ls95_c00299{letter-spacing:0.745560px;}
.ls34_c00299{letter-spacing:0.752400px;}
.ls51_c00299{letter-spacing:0.759240px;}
.ls61_c00299{letter-spacing:0.759360px;}
.ls50_c00299{letter-spacing:0.766080px;}
.ls5b_c00299{letter-spacing:0.779760px;}
.ls5c_c00299{letter-spacing:0.786600px;}
.lsa6_c00299{letter-spacing:0.793440px;}
.ls31_c00299{letter-spacing:0.807120px;}
.ls6b_c00299{letter-spacing:0.813960px;}
.lsb4_c00299{letter-spacing:0.834480px;}
.lse_c00299{letter-spacing:0.841320px;}
.ls14_c00299{letter-spacing:0.848160px;}
.ls6_c00299{letter-spacing:0.855000px;}
.ls2f_c00299{letter-spacing:0.861840px;}
.ls22_c00299{letter-spacing:0.867840px;}
.ls46_c00299{letter-spacing:0.868680px;}
.ls7a_c00299{letter-spacing:0.889200px;}
.ls65_c00299{letter-spacing:0.909720px;}
.ls4b_c00299{letter-spacing:0.916560px;}
.ls55_c00299{letter-spacing:0.937080px;}
.ls11_c00299{letter-spacing:0.942420px;}
.ls48_c00299{letter-spacing:0.950760px;}
.ls60_c00299{letter-spacing:0.964440px;}
.lsa2_c00299{letter-spacing:0.978120px;}
.lsab_c00299{letter-spacing:0.984960px;}
.ls3a_c00299{letter-spacing:1.012320px;}
.ls2a_c00299{letter-spacing:1.046520px;}
.ls0_c00299{letter-spacing:1.057680px;}
.ls2d_c00299{letter-spacing:1.060200px;}
.ls1f_c00299{letter-spacing:1.064460px;}
.ls3b_c00299{letter-spacing:1.073880px;}
.ls1_c00299{letter-spacing:1.080720px;}
.ls5a_c00299{letter-spacing:1.094400px;}
.lsc_c00299{letter-spacing:1.101240px;}
.ls58_c00299{letter-spacing:1.128600px;}
.ls93_c00299{letter-spacing:1.135440px;}
.ls25_c00299{letter-spacing:1.139040px;}
.ls42_c00299{letter-spacing:1.149120px;}
.ls20_c00299{letter-spacing:1.186500px;}
.lsf_c00299{letter-spacing:1.203840px;}
.ls72_c00299{letter-spacing:1.217520px;}
.ls74_c00299{letter-spacing:1.224360px;}
.ls62_c00299{letter-spacing:1.231200px;}
.ls64_c00299{letter-spacing:1.238040px;}
.ls26_c00299{letter-spacing:1.244880px;}
.ls1c_c00299{letter-spacing:1.251720px;}
.ls3d_c00299{letter-spacing:1.272240px;}
.ls32_c00299{letter-spacing:1.285920px;}
.ls39_c00299{letter-spacing:1.292760px;}
.ls4e_c00299{letter-spacing:1.320120px;}
.ls6c_c00299{letter-spacing:1.326960px;}
.ls13_c00299{letter-spacing:1.347480px;}
.ls54_c00299{letter-spacing:1.362780px;}
.ls2e_c00299{letter-spacing:1.409040px;}
.ls5d_c00299{letter-spacing:1.422720px;}
.ls53_c00299{letter-spacing:1.429560px;}
.ls44_c00299{letter-spacing:1.470600px;}
.ls4c_c00299{letter-spacing:1.518480px;}
.ls77_c00299{letter-spacing:1.580040px;}
.ls5e_c00299{letter-spacing:1.600560px;}
.ls18_c00299{letter-spacing:1.607160px;}
.ls36_c00299{letter-spacing:1.634760px;}
.ls43_c00299{letter-spacing:1.648440px;}
.ls68_c00299{letter-spacing:1.737360px;}
.ls96_c00299{letter-spacing:1.751040px;}
.lsb_c00299{letter-spacing:1.757880px;}
.ls35_c00299{letter-spacing:1.792080px;}
.ls4_c00299{letter-spacing:1.798920px;}
.ls3c_c00299{letter-spacing:1.805760px;}
.ls5_c00299{letter-spacing:1.812600px;}
.ls30_c00299{letter-spacing:2.202480px;}
.ls47_c00299{letter-spacing:2.209320px;}
.ls6a_c00299{letter-spacing:2.270880px;}
.ls75_c00299{letter-spacing:2.291400px;}
.ls8e_c00299{letter-spacing:2.387160px;}
.ls59_c00299{letter-spacing:2.455560px;}
.ls7f_c00299{letter-spacing:2.482920px;}
.ls16_c00299{letter-spacing:2.495040px;}
.ls7b_c00299{letter-spacing:2.583900px;}
.ls63_c00299{letter-spacing:3.091680px;}
.ls92_c00299{letter-spacing:3.420000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{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__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00299{word-spacing:0.000000px;}
.ws1_c00299{word-spacing:3.278580px;}
.ws2_c00299{word-spacing:5.309640px;}
.ws3_c00299{word-spacing:6.608880px;}
.ws0_c00299{word-spacing:15.480600px;}
.ws5_c00299{word-spacing:21.240600px;}
.ws4_c00299{word-spacing:25.972200px;}
._d_c00299{margin-left:-6.571920px;}
._11_c00299{margin-left:-4.842720px;}
._b_c00299{margin-left:-3.069360px;}
._a_c00299{margin-left:-1.600560px;}
._10_c00299{width:1.450500px;}
._f_c00299{width:2.652360px;}
._9_c00299{width:3.803040px;}
._c_c00299{width:5.384640px;}
._e_c00299{width:7.220700px;}
._4_c00299{width:8.844120px;}
._0_c00299{width:10.560960px;}
._14_c00299{width:11.835540px;}
._18_c00299{width:12.904740px;}
._2_c00299{width:14.145120px;}
._15_c00299{width:16.669080px;}
._1_c00299{width:17.790840px;}
._13_c00299{width:20.362680px;}
._3_c00299{width:22.743000px;}
._16_c00299{width:23.905800px;}
._12_c00299{width:25.903080px;}
._17_c00299{width:27.230040px;}
._8_c00299{width:36.949680px;}
._7_c00299{width:39.193200px;}
._5_c00299{width:40.356000px;}
._6_c00299{width:41.573520px;}
.fc0_c00299{color:transparent;}
.fs5_c00299{font-size:53.280000px;}
.fs8_c00299{font-size:57.600000px;}
.fs0_c00299{font-size:59.400000px;}
.fs4_c00299{font-size:67.200000px;}
.fs1_c00299{font-size:67.800000px;}
.fs2_c00299{font-size:68.400000px;}
.fs3_c00299{font-size:70.800000px;}
.fs6_c00299{font-size:72.600000px;}
.fs7_c00299{font-size:74.400000px;}
.y0_c00299{bottom:0.000000px;}
.y21_c00299{bottom:68.775000px;}
.y20_c00299{bottom:126.368100px;}
.y1f_c00299{bottom:156.960000px;}
.y1e_c00299{bottom:218.535000px;}
.y1d_c00299{bottom:249.495000px;}
.y1c_c00299{bottom:249.511200px;}
.y1b_c00299{bottom:280.103100px;}
.y1a_c00299{bottom:310.695000px;}
.y19_c00299{bottom:371.886900px;}
.y17_c00299{bottom:402.852300px;}
.y18_c00299{bottom:402.855000px;}
.y16_c00299{bottom:435.975000px;}
.y14_c00299{bottom:498.966900px;}
.y15_c00299{bottom:498.975000px;}
.y12_c00299{bottom:529.926900px;}
.y13_c00299{bottom:529.935000px;}
.y11_c00299{bottom:560.906100px;}
.y10_c00299{bottom:592.216200px;}
.yf_c00299{bottom:622.808100px;}
.ye_c00299{bottom:653.400000px;}
.yd_c00299{bottom:653.406900px;}
.yc_c00299{bottom:684.375000px;}
.yb_c00299{bottom:745.935000px;}
.ya_c00299{bottom:776.535000px;}
.y8_c00299{bottom:838.437900px;}
.y9_c00299{bottom:838.440000px;}
.y7_c00299{bottom:900.015000px;}
.y6_c00299{bottom:930.600000px;}
.y5_c00299{bottom:992.175000px;}
.y4_c00299{bottom:1053.000900px;}
.y3_c00299{bottom:1083.592800px;}
.y2_c00299{bottom:1114.920000px;}
.y1_c00299{bottom:1190.175000px;}
.h8_c00299{height:35.484480px;}
.hb_c00299{height:56.531250px;}
.h2_c00299{height:58.297852px;}
.h3_c00299{height:67.130859px;}
.h6_c00299{height:67.163259px;}
.h4_c00299{height:69.451758px;}
.h5_c00299{height:70.043100px;}
.h7_c00299{height:70.087500px;}
.h9_c00299{height:71.252930px;}
.ha_c00299{height:73.019531px;}
.h1_c00299{height:1263.000000px;}
.h0_c00299{height:1263.240000px;}
.w1_c00299{width:892.500000px;}
.w0_c00299{width:892.800000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:123.045000px;}
.xa_c00299{left:124.160400px;}
.x12_c00299{left:162.960000px;}
.x2_c00299{left:176.565000px;}
.x5_c00299{left:177.900000px;}
.x13_c00299{left:198.570000px;}
.x3_c00299{left:309.645000px;}
.xb_c00299{left:367.050000px;}
.x19_c00299{left:425.070000px;}
.xc_c00299{left:438.045000px;}
.x4_c00299{left:444.135000px;}
.xf_c00299{left:447.840000px;}
.xd_c00299{left:470.535000px;}
.x14_c00299{left:477.255000px;}
.x11_c00299{left:506.010000px;}
.xe_c00299{left:507.435000px;}
.x10_c00299{left:510.840000px;}
.x15_c00299{left:512.460000px;}
.x6_c00299{left:627.450000px;}
.x8_c00299{left:633.630000px;}
.x7_c00299{left:650.700000px;}
.x9_c00299{left:662.400000px;}
.x16_c00299{left:677.415000px;}
.x17_c00299{left:713.055000px;}
.x18_c00299{left:736.785000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.lsae_c00299{letter-spacing:-2.314667pt;}
.lsa3_c00299{letter-spacing:-2.258667pt;}
.ls8a_c00299{letter-spacing:-2.128000pt;}
.ls8d_c00299{letter-spacing:-1.927360pt;}
.lsb1_c00299{letter-spacing:-1.896960pt;}
.lsaf_c00299{letter-spacing:-1.744960pt;}
.ls86_c00299{letter-spacing:-1.495680pt;}
.lsb5_c00299{letter-spacing:-1.433600pt;}
.ls8c_c00299{letter-spacing:-1.282880pt;}
.lsa9_c00299{letter-spacing:-1.094400pt;}
.ls99_c00299{letter-spacing:-1.064000pt;}
.ls9b_c00299{letter-spacing:-1.045760pt;}
.ls8f_c00299{letter-spacing:-0.796480pt;}
.ls87_c00299{letter-spacing:-0.741760pt;}
.ls84_c00299{letter-spacing:-0.687040pt;}
.ls94_c00299{letter-spacing:-0.674880pt;}
.ls9f_c00299{letter-spacing:-0.608000pt;}
.lsa5_c00299{letter-spacing:-0.601920pt;}
.lsa4_c00299{letter-spacing:-0.595840pt;}
.ls82_c00299{letter-spacing:-0.565440pt;}
.ls88_c00299{letter-spacing:-0.535040pt;}
.ls8b_c00299{letter-spacing:-0.474240pt;}
.ls7c_c00299{letter-spacing:-0.468160pt;}
.ls89_c00299{letter-spacing:-0.449920pt;}
.ls9a_c00299{letter-spacing:-0.425600pt;}
.ls91_c00299{letter-spacing:-0.407360pt;}
.ls85_c00299{letter-spacing:-0.395200pt;}
.ls97_c00299{letter-spacing:-0.389120pt;}
.lsa8_c00299{letter-spacing:-0.370880pt;}
.lsb0_c00299{letter-spacing:-0.346560pt;}
.ls9e_c00299{letter-spacing:-0.334400pt;}
.ls9d_c00299{letter-spacing:-0.200640pt;}
.ls80_c00299{letter-spacing:-0.188480pt;}
.ls90_c00299{letter-spacing:-0.158080pt;}
.ls83_c00299{letter-spacing:-0.150667pt;}
.lsb3_c00299{letter-spacing:-0.133760pt;}
.lsa7_c00299{letter-spacing:-0.127680pt;}
.lsb2_c00299{letter-spacing:-0.115520pt;}
.lsac_c00299{letter-spacing:-0.103360pt;}
.ls7d_c00299{letter-spacing:-0.079040pt;}
.lsaa_c00299{letter-spacing:-0.060800pt;}
.lsa1_c00299{letter-spacing:-0.036480pt;}
.ls81_c00299{letter-spacing:-0.018240pt;}
.ls7e_c00299{letter-spacing:0.000000pt;}
.ls24_c00299{letter-spacing:0.006080pt;}
.ls23_c00299{letter-spacing:0.036480pt;}
.ls21_c00299{letter-spacing:0.060800pt;}
.ls5f_c00299{letter-spacing:0.072960pt;}
.ls3f_c00299{letter-spacing:0.079040pt;}
.ls17_c00299{letter-spacing:0.126560pt;}
.ls73_c00299{letter-spacing:0.127680pt;}
.lsad_c00299{letter-spacing:0.145920pt;}
.ls45_c00299{letter-spacing:0.152000pt;}
.lsa_c00299{letter-spacing:0.158080pt;}
.ls6e_c00299{letter-spacing:0.164160pt;}
.ls27_c00299{letter-spacing:0.170240pt;}
.ls78_c00299{letter-spacing:0.182400pt;}
.ls6f_c00299{letter-spacing:0.188480pt;}
.ls67_c00299{letter-spacing:0.218880pt;}
.ls71_c00299{letter-spacing:0.224960pt;}
.ls49_c00299{letter-spacing:0.237120pt;}
.ls3_c00299{letter-spacing:0.273600pt;}
.ls76_c00299{letter-spacing:0.279680pt;}
.ls40_c00299{letter-spacing:0.285760pt;}
.ls1d_c00299{letter-spacing:0.297920pt;}
.ls98_c00299{letter-spacing:0.304000pt;}
.ls1b_c00299{letter-spacing:0.334400pt;}
.ls8_c00299{letter-spacing:0.340480pt;}
.ls4a_c00299{letter-spacing:0.358720pt;}
.ls37_c00299{letter-spacing:0.364800pt;}
.ls1a_c00299{letter-spacing:0.383040pt;}
.ls52_c00299{letter-spacing:0.389120pt;}
.ls19_c00299{letter-spacing:0.390187pt;}
.ls79_c00299{letter-spacing:0.395200pt;}
.lsa0_c00299{letter-spacing:0.401280pt;}
.ls33_c00299{letter-spacing:0.413440pt;}
.ls9_c00299{letter-spacing:0.425600pt;}
.ls1e_c00299{letter-spacing:0.431680pt;}
.ls57_c00299{letter-spacing:0.456000pt;}
.ls2_c00299{letter-spacing:0.468160pt;}
.ls29_c00299{letter-spacing:0.486400pt;}
.ls10_c00299{letter-spacing:0.510720pt;}
.ls4f_c00299{letter-spacing:0.516800pt;}
.ls28_c00299{letter-spacing:0.522880pt;}
.ls38_c00299{letter-spacing:0.528960pt;}
.ls69_c00299{letter-spacing:0.535040pt;}
.ls12_c00299{letter-spacing:0.536373pt;}
.ls66_c00299{letter-spacing:0.547200pt;}
.ls2c_c00299{letter-spacing:0.559360pt;}
.ls9c_c00299{letter-spacing:0.565440pt;}
.ls4d_c00299{letter-spacing:0.577600pt;}
.ls7_c00299{letter-spacing:0.583680pt;}
.ls56_c00299{letter-spacing:0.589760pt;}
.ls2b_c00299{letter-spacing:0.601920pt;}
.ls70_c00299{letter-spacing:0.608000pt;}
.ls6d_c00299{letter-spacing:0.614080pt;}
.ls3e_c00299{letter-spacing:0.620160pt;}
.ls41_c00299{letter-spacing:0.638400pt;}
.lsd_c00299{letter-spacing:0.644480pt;}
.ls15_c00299{letter-spacing:0.656640pt;}
.ls95_c00299{letter-spacing:0.662720pt;}
.ls34_c00299{letter-spacing:0.668800pt;}
.ls51_c00299{letter-spacing:0.674880pt;}
.ls61_c00299{letter-spacing:0.674987pt;}
.ls50_c00299{letter-spacing:0.680960pt;}
.ls5b_c00299{letter-spacing:0.693120pt;}
.ls5c_c00299{letter-spacing:0.699200pt;}
.lsa6_c00299{letter-spacing:0.705280pt;}
.ls31_c00299{letter-spacing:0.717440pt;}
.ls6b_c00299{letter-spacing:0.723520pt;}
.lsb4_c00299{letter-spacing:0.741760pt;}
.lse_c00299{letter-spacing:0.747840pt;}
.ls14_c00299{letter-spacing:0.753920pt;}
.ls6_c00299{letter-spacing:0.760000pt;}
.ls2f_c00299{letter-spacing:0.766080pt;}
.ls22_c00299{letter-spacing:0.771413pt;}
.ls46_c00299{letter-spacing:0.772160pt;}
.ls7a_c00299{letter-spacing:0.790400pt;}
.ls65_c00299{letter-spacing:0.808640pt;}
.ls4b_c00299{letter-spacing:0.814720pt;}
.ls55_c00299{letter-spacing:0.832960pt;}
.ls11_c00299{letter-spacing:0.837707pt;}
.ls48_c00299{letter-spacing:0.845120pt;}
.ls60_c00299{letter-spacing:0.857280pt;}
.lsa2_c00299{letter-spacing:0.869440pt;}
.lsab_c00299{letter-spacing:0.875520pt;}
.ls3a_c00299{letter-spacing:0.899840pt;}
.ls2a_c00299{letter-spacing:0.930240pt;}
.ls0_c00299{letter-spacing:0.940160pt;}
.ls2d_c00299{letter-spacing:0.942400pt;}
.ls1f_c00299{letter-spacing:0.946187pt;}
.ls3b_c00299{letter-spacing:0.954560pt;}
.ls1_c00299{letter-spacing:0.960640pt;}
.ls5a_c00299{letter-spacing:0.972800pt;}
.lsc_c00299{letter-spacing:0.978880pt;}
.ls58_c00299{letter-spacing:1.003200pt;}
.ls93_c00299{letter-spacing:1.009280pt;}
.ls25_c00299{letter-spacing:1.012480pt;}
.ls42_c00299{letter-spacing:1.021440pt;}
.ls20_c00299{letter-spacing:1.054667pt;}
.lsf_c00299{letter-spacing:1.070080pt;}
.ls72_c00299{letter-spacing:1.082240pt;}
.ls74_c00299{letter-spacing:1.088320pt;}
.ls62_c00299{letter-spacing:1.094400pt;}
.ls64_c00299{letter-spacing:1.100480pt;}
.ls26_c00299{letter-spacing:1.106560pt;}
.ls1c_c00299{letter-spacing:1.112640pt;}
.ls3d_c00299{letter-spacing:1.130880pt;}
.ls32_c00299{letter-spacing:1.143040pt;}
.ls39_c00299{letter-spacing:1.149120pt;}
.ls4e_c00299{letter-spacing:1.173440pt;}
.ls6c_c00299{letter-spacing:1.179520pt;}
.ls13_c00299{letter-spacing:1.197760pt;}
.ls54_c00299{letter-spacing:1.211360pt;}
.ls2e_c00299{letter-spacing:1.252480pt;}
.ls5d_c00299{letter-spacing:1.264640pt;}
.ls53_c00299{letter-spacing:1.270720pt;}
.ls44_c00299{letter-spacing:1.307200pt;}
.ls4c_c00299{letter-spacing:1.349760pt;}
.ls77_c00299{letter-spacing:1.404480pt;}
.ls5e_c00299{letter-spacing:1.422720pt;}
.ls18_c00299{letter-spacing:1.428587pt;}
.ls36_c00299{letter-spacing:1.453120pt;}
.ls43_c00299{letter-spacing:1.465280pt;}
.ls68_c00299{letter-spacing:1.544320pt;}
.ls96_c00299{letter-spacing:1.556480pt;}
.lsb_c00299{letter-spacing:1.562560pt;}
.ls35_c00299{letter-spacing:1.592960pt;}
.ls4_c00299{letter-spacing:1.599040pt;}
.ls3c_c00299{letter-spacing:1.605120pt;}
.ls5_c00299{letter-spacing:1.611200pt;}
.ls30_c00299{letter-spacing:1.957760pt;}
.ls47_c00299{letter-spacing:1.963840pt;}
.ls6a_c00299{letter-spacing:2.018560pt;}
.ls75_c00299{letter-spacing:2.036800pt;}
.ls8e_c00299{letter-spacing:2.121920pt;}
.ls59_c00299{letter-spacing:2.182720pt;}
.ls7f_c00299{letter-spacing:2.207040pt;}
.ls16_c00299{letter-spacing:2.217813pt;}
.ls7b_c00299{letter-spacing:2.296800pt;}
.ls63_c00299{letter-spacing:2.748160pt;}
.ls92_c00299{letter-spacing:3.040000pt;}
.ws6_c00299{word-spacing:0.000000pt;}
.ws1_c00299{word-spacing:2.914293pt;}
.ws2_c00299{word-spacing:4.719680pt;}
.ws3_c00299{word-spacing:5.874560pt;}
.ws0_c00299{word-spacing:13.760533pt;}
.ws5_c00299{word-spacing:18.880533pt;}
.ws4_c00299{word-spacing:23.086400pt;}
._d_c00299{margin-left:-5.841707pt;}
._11_c00299{margin-left:-4.304640pt;}
._b_c00299{margin-left:-2.728320pt;}
._a_c00299{margin-left:-1.422720pt;}
._10_c00299{width:1.289333pt;}
._f_c00299{width:2.357653pt;}
._9_c00299{width:3.380480pt;}
._c_c00299{width:4.786347pt;}
._e_c00299{width:6.418400pt;}
._4_c00299{width:7.861440pt;}
._0_c00299{width:9.387520pt;}
._14_c00299{width:10.520480pt;}
._18_c00299{width:11.470880pt;}
._2_c00299{width:12.573440pt;}
._15_c00299{width:14.816960pt;}
._1_c00299{width:15.814080pt;}
._13_c00299{width:18.100160pt;}
._3_c00299{width:20.216000pt;}
._16_c00299{width:21.249600pt;}
._12_c00299{width:23.024960pt;}
._17_c00299{width:24.204480pt;}
._8_c00299{width:32.844160pt;}
._7_c00299{width:34.838400pt;}
._5_c00299{width:35.872000pt;}
._6_c00299{width:36.954240pt;}
.fs5_c00299{font-size:47.360000pt;}
.fs8_c00299{font-size:51.200000pt;}
.fs0_c00299{font-size:52.800000pt;}
.fs4_c00299{font-size:59.733333pt;}
.fs1_c00299{font-size:60.266667pt;}
.fs2_c00299{font-size:60.800000pt;}
.fs3_c00299{font-size:62.933333pt;}
.fs6_c00299{font-size:64.533333pt;}
.fs7_c00299{font-size:66.133333pt;}
.y0_c00299{bottom:0.000000pt;}
.y21_c00299{bottom:61.133333pt;}
.y20_c00299{bottom:112.327200pt;}
.y1f_c00299{bottom:139.520000pt;}
.y1e_c00299{bottom:194.253333pt;}
.y1d_c00299{bottom:221.773333pt;}
.y1c_c00299{bottom:221.787733pt;}
.y1b_c00299{bottom:248.980533pt;}
.y1a_c00299{bottom:276.173333pt;}
.y19_c00299{bottom:330.566133pt;}
.y17_c00299{bottom:358.090933pt;}
.y18_c00299{bottom:358.093333pt;}
.y16_c00299{bottom:387.533333pt;}
.y14_c00299{bottom:443.526133pt;}
.y15_c00299{bottom:443.533333pt;}
.y12_c00299{bottom:471.046133pt;}
.y13_c00299{bottom:471.053333pt;}
.y11_c00299{bottom:498.583200pt;}
.y10_c00299{bottom:526.414400pt;}
.yf_c00299{bottom:553.607200pt;}
.ye_c00299{bottom:580.800000pt;}
.yd_c00299{bottom:580.806133pt;}
.yc_c00299{bottom:608.333333pt;}
.yb_c00299{bottom:663.053333pt;}
.ya_c00299{bottom:690.253333pt;}
.y8_c00299{bottom:745.278133pt;}
.y9_c00299{bottom:745.280000pt;}
.y7_c00299{bottom:800.013333pt;}
.y6_c00299{bottom:827.200000pt;}
.y5_c00299{bottom:881.933333pt;}
.y4_c00299{bottom:936.000800pt;}
.y3_c00299{bottom:963.193600pt;}
.y2_c00299{bottom:991.040000pt;}
.y1_c00299{bottom:1057.933333pt;}
.h8_c00299{height:31.541760pt;}
.hb_c00299{height:50.250000pt;}
.h2_c00299{height:51.820312pt;}
.h3_c00299{height:59.671875pt;}
.h6_c00299{height:59.700675pt;}
.h4_c00299{height:61.734896pt;}
.h5_c00299{height:62.260533pt;}
.h7_c00299{height:62.300000pt;}
.h9_c00299{height:63.335938pt;}
.ha_c00299{height:64.906250pt;}
.h1_c00299{height:1122.666667pt;}
.h0_c00299{height:1122.880000pt;}
.w1_c00299{width:793.333333pt;}
.w0_c00299{width:793.600000pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:109.373333pt;}
.xa_c00299{left:110.364800pt;}
.x12_c00299{left:144.853333pt;}
.x2_c00299{left:156.946667pt;}
.x5_c00299{left:158.133333pt;}
.x13_c00299{left:176.506667pt;}
.x3_c00299{left:275.240000pt;}
.xb_c00299{left:326.266667pt;}
.x19_c00299{left:377.840000pt;}
.xc_c00299{left:389.373333pt;}
.x4_c00299{left:394.786667pt;}
.xf_c00299{left:398.080000pt;}
.xd_c00299{left:418.253333pt;}
.x14_c00299{left:424.226667pt;}
.x11_c00299{left:449.786667pt;}
.xe_c00299{left:451.053333pt;}
.x10_c00299{left:454.080000pt;}
.x15_c00299{left:455.520000pt;}
.x6_c00299{left:557.733333pt;}
.x8_c00299{left:563.226667pt;}
.x7_c00299{left:578.400000pt;}
.x9_c00299{left:588.800000pt;}
.x16_c00299{left:602.146667pt;}
.x17_c00299{left:633.826667pt;}
.x18_c00299{left:654.920000pt;}
}





/* 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_c00300 {
    display:none;
  }
  .loading-indicator_c00300.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00300 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_c00300 { 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_c00300" -> "#page-container .classname_c00300")
 */
.pf_c00300 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00300 { /* 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_c00300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00300 { /* 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_c00300 { /* 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_c00300 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00300 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00300 {overflow:visible;}
  }
}
.c_c00300 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00300 { /* 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_c00300:after { /* webkit #35443 */
  content: '';
}
.t_c00300:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00300 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 */
}
.__c00300 { /* 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_c00300 { /* info for Javascript */
  display:none;
}
.l_c00300 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00300 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00300 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00300: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_c00300 {
    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_c00300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00300.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_c00300 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00300;src:url('chunks/assets/font_b734311c389b411727641d26.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.284668;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_c00300;src:url('chunks/assets/font_fad0158ce1a09a0d75cbd5fd.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.284180;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_c00300;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;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;}
.m7_c00300{transform:matrix(0.240673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240673,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m5_c00300{transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);}
.m3_c00300{transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);}
.m6_c00300{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m2_c00300{transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);}
.m0_c00300{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);}
.m4_c00300{transform:matrix(0.253428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253428,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.v1_c00300{vertical-align:28.860000px;}
.ls81_c00300{letter-spacing:-2.394000px;}
.ls7b_c00300{letter-spacing:-2.373000px;}
.ls93_c00300{letter-spacing:-2.331000px;}
.ls77_c00300{letter-spacing:-2.045160px;}
.ls80_c00300{letter-spacing:-1.682640px;}
.ls86_c00300{letter-spacing:-1.443240px;}
.ls92_c00300{letter-spacing:-1.258560px;}
.ls7d_c00300{letter-spacing:-1.251720px;}
.ls7e_c00300{letter-spacing:-1.203840px;}
.ls95_c00300{letter-spacing:-0.697680px;}
.ls8e_c00300{letter-spacing:-0.684000px;}
.ls7f_c00300{letter-spacing:-0.601920px;}
.ls85_c00300{letter-spacing:-0.581400px;}
.ls76_c00300{letter-spacing:-0.526680px;}
.ls83_c00300{letter-spacing:-0.506160px;}
.ls79_c00300{letter-spacing:-0.458280px;}
.ls78_c00300{letter-spacing:-0.376200px;}
.ls88_c00300{letter-spacing:-0.348840px;}
.ls84_c00300{letter-spacing:-0.342000px;}
.ls8d_c00300{letter-spacing:-0.266760px;}
.ls87_c00300{letter-spacing:-0.088920px;}
.ls74_c00300{letter-spacing:-0.082080px;}
.ls75_c00300{letter-spacing:0.000000px;}
.ls9_c00300{letter-spacing:0.082080px;}
.ls10_c00300{letter-spacing:0.102600px;}
.ls22_c00300{letter-spacing:0.129960px;}
.ls29_c00300{letter-spacing:0.177840px;}
.ls25_c00300{letter-spacing:0.184680px;}
.ls8f_c00300{letter-spacing:0.198360px;}
.ls1_c00300{letter-spacing:0.205200px;}
.ls58_c00300{letter-spacing:0.246240px;}
.ls1b_c00300{letter-spacing:0.273600px;}
.ls43_c00300{letter-spacing:0.307800px;}
.ls5c_c00300{letter-spacing:0.335160px;}
.lse_c00300{letter-spacing:0.342000px;}
.lsc_c00300{letter-spacing:0.351900px;}
.ls20_c00300{letter-spacing:0.362520px;}
.lsb_c00300{letter-spacing:0.365700px;}
.ls1f_c00300{letter-spacing:0.369360px;}
.ls1d_c00300{letter-spacing:0.376200px;}
.ls26_c00300{letter-spacing:0.379500px;}
.ls66_c00300{letter-spacing:0.386400px;}
.ls69_c00300{letter-spacing:0.403560px;}
.ls27_c00300{letter-spacing:0.417240px;}
.ls6d_c00300{letter-spacing:0.465120px;}
.ls21_c00300{letter-spacing:0.485640px;}
.ls53_c00300{letter-spacing:0.513000px;}
.ls24_c00300{letter-spacing:0.524400px;}
.ls2a_c00300{letter-spacing:0.538200px;}
.ls28_c00300{letter-spacing:0.547200px;}
.ls2b_c00300{letter-spacing:0.581400px;}
.ls5a_c00300{letter-spacing:0.586500px;}
.ls51_c00300{letter-spacing:0.593400px;}
.ls2e_c00300{letter-spacing:0.601920px;}
.ls7c_c00300{letter-spacing:0.608760px;}
.ls40_c00300{letter-spacing:0.615600px;}
.ls8b_c00300{letter-spacing:0.629280px;}
.ls8c_c00300{letter-spacing:0.649800px;}
.ls59_c00300{letter-spacing:0.662400px;}
.ls5e_c00300{letter-spacing:0.677160px;}
.ls5d_c00300{letter-spacing:0.704520px;}
.ls36_c00300{letter-spacing:0.718200px;}
.ls0_c00300{letter-spacing:0.725040px;}
.ls4f_c00300{letter-spacing:0.752400px;}
.ls57_c00300{letter-spacing:0.766080px;}
.ls70_c00300{letter-spacing:0.772920px;}
.ls3b_c00300{letter-spacing:0.793440px;}
.ls41_c00300{letter-spacing:0.800280px;}
.ls6_c00300{letter-spacing:0.813960px;}
.ls8a_c00300{letter-spacing:0.841320px;}
.lsa_c00300{letter-spacing:0.848160px;}
.ls1a_c00300{letter-spacing:0.855000px;}
.ls31_c00300{letter-spacing:0.868680px;}
.ls18_c00300{letter-spacing:0.896040px;}
.ls19_c00300{letter-spacing:0.902880px;}
.ls8_c00300{letter-spacing:0.916560px;}
.ls4e_c00300{letter-spacing:0.923400px;}
.ls61_c00300{letter-spacing:0.937080px;}
.ls2c_c00300{letter-spacing:0.952200px;}
.ls45_c00300{letter-spacing:0.957600px;}
.ls4_c00300{letter-spacing:0.964440px;}
.ls23_c00300{letter-spacing:0.972900px;}
.ls62_c00300{letter-spacing:0.978120px;}
.ls35_c00300{letter-spacing:1.026000px;}
.ls90_c00300{letter-spacing:1.028100px;}
.ls3_c00300{letter-spacing:1.032840px;}
.ls71_c00300{letter-spacing:1.039680px;}
.ls11_c00300{letter-spacing:1.053360px;}
.ls3f_c00300{letter-spacing:1.060200px;}
.ls6c_c00300{letter-spacing:1.080720px;}
.ls6b_c00300{letter-spacing:1.094400px;}
.ls7_c00300{letter-spacing:1.101240px;}
.ls5f_c00300{letter-spacing:1.108080px;}
.ls56_c00300{letter-spacing:1.121760px;}
.ls50_c00300{letter-spacing:1.131600px;}
.ls64_c00300{letter-spacing:1.142280px;}
.ls65_c00300{letter-spacing:1.149120px;}
.ls44_c00300{letter-spacing:1.155960px;}
.ls3d_c00300{letter-spacing:1.169640px;}
.ls46_c00300{letter-spacing:1.217520px;}
.ls12_c00300{letter-spacing:1.224360px;}
.ls63_c00300{letter-spacing:1.238040px;}
.ls6f_c00300{letter-spacing:1.244880px;}
.ls5b_c00300{letter-spacing:1.265400px;}
.ls2f_c00300{letter-spacing:1.306440px;}
.ls34_c00300{letter-spacing:1.313280px;}
.ls48_c00300{letter-spacing:1.320120px;}
.ls54_c00300{letter-spacing:1.347480px;}
.ls72_c00300{letter-spacing:1.361160px;}
.ls4c_c00300{letter-spacing:1.374840px;}
.ls4a_c00300{letter-spacing:1.395360px;}
.ls32_c00300{letter-spacing:1.415880px;}
.ls49_c00300{letter-spacing:1.436400px;}
.ls33_c00300{letter-spacing:1.491120px;}
.ls3a_c00300{letter-spacing:1.497960px;}
.ls38_c00300{letter-spacing:1.511640px;}
.ls2d_c00300{letter-spacing:1.532160px;}
.ls42_c00300{letter-spacing:1.545840px;}
.ls6e_c00300{letter-spacing:1.552680px;}
.ls4b_c00300{letter-spacing:1.641600px;}
.ls3e_c00300{letter-spacing:1.648440px;}
.ls14_c00300{letter-spacing:1.655280px;}
.ls5_c00300{letter-spacing:1.682640px;}
.ls73_c00300{letter-spacing:1.714980px;}
.ls67_c00300{letter-spacing:1.716840px;}
.ls3c_c00300{letter-spacing:1.737360px;}
.ls15_c00300{letter-spacing:1.744200px;}
.lsd_c00300{letter-spacing:1.826280px;}
.ls82_c00300{letter-spacing:1.833120px;}
.ls52_c00300{letter-spacing:1.901520px;}
.ls60_c00300{letter-spacing:1.915200px;}
.ls17_c00300{letter-spacing:1.959600px;}
.ls47_c00300{letter-spacing:2.004120px;}
.ls30_c00300{letter-spacing:2.140920px;}
.ls39_c00300{letter-spacing:2.154600px;}
.ls1c_c00300{letter-spacing:2.168280px;}
.ls4d_c00300{letter-spacing:2.195640px;}
.ls89_c00300{letter-spacing:2.202480px;}
.ls7a_c00300{letter-spacing:2.291400px;}
.ls6a_c00300{letter-spacing:2.352960px;}
.ls2_c00300{letter-spacing:2.482920px;}
.ls94_c00300{letter-spacing:2.496600px;}
.ls37_c00300{letter-spacing:2.510280px;}
.ls1e_c00300{letter-spacing:2.592360px;}
.lsf_c00300{letter-spacing:2.715480px;}
.ls55_c00300{letter-spacing:2.783880px;}
.ls13_c00300{letter-spacing:2.961720px;}
.ls16_c00300{letter-spacing:3.056700px;}
.ls68_c00300{letter-spacing:3.091680px;}
.ls91_c00300{letter-spacing:3.420000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{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__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00300{word-spacing:-17.948160px;}
.ws5_c00300{word-spacing:0.000000px;}
.ws2_c00300{word-spacing:6.095400px;}
.ws0_c00300{word-spacing:12.206100px;}
.ws1_c00300{word-spacing:22.660200px;}
.ws3_c00300{word-spacing:26.415000px;}
._10_c00300{margin-left:-11.876400px;}
._d_c00300{margin-left:-9.965880px;}
._1d_c00300{margin-left:-6.812640px;}
._b_c00300{margin-left:-5.568300px;}
._1a_c00300{margin-left:-4.213440px;}
._c_c00300{margin-left:-2.581200px;}
._1b_c00300{margin-left:-1.271700px;}
._1c_c00300{width:1.015920px;}
._a_c00300{width:2.339280px;}
._f_c00300{width:4.275000px;}
._6_c00300{width:5.389920px;}
._9_c00300{width:6.491160px;}
._7_c00300{width:7.704000px;}
._e_c00300{width:9.712800px;}
._4_c00300{width:11.887920px;}
._8_c00300{width:13.816800px;}
._19_c00300{width:14.835960px;}
._2_c00300{width:15.868800px;}
._5_c00300{width:16.874280px;}
._3_c00300{width:19.288800px;}
._0_c00300{width:21.628080px;}
._1_c00300{width:22.886640px;}
._11_c00300{width:24.541920px;}
._12_c00300{width:26.457120px;}
._15_c00300{width:28.358640px;}
._16_c00300{width:29.412000px;}
._18_c00300{width:30.738960px;}
._13_c00300{width:31.901760px;}
._14_c00300{width:36.395640px;}
._17_c00300{width:37.551600px;}
.fc0_c00300{color:transparent;}
.fs5_c00300{font-size:32.400600px;}
.fs6_c00300{font-size:57.600000px;}
.fs0_c00300{font-size:60.600000px;}
.fs4_c00300{font-size:66.600000px;}
.fs3_c00300{font-size:67.800000px;}
.fs1_c00300{font-size:68.400000px;}
.fs2_c00300{font-size:69.000000px;}
.y0_c00300{bottom:0.000000px;}
.y1a_c00300{bottom:71.295000px;}
.y19_c00300{bottom:191.158800px;}
.y18_c00300{bottom:222.126900px;}
.y17_c00300{bottom:253.095000px;}
.y16_c00300{bottom:316.095000px;}
.y15_c00300{bottom:378.726900px;}
.y14_c00300{bottom:409.695000px;}
.y13_c00300{bottom:440.655000px;}
.y12_c00300{bottom:502.206900px;}
.y11_c00300{bottom:533.169900px;}
.y10_c00300{bottom:564.497100px;}
.yf_c00300{bottom:595.089000px;}
.ye_c00300{bottom:626.040000px;}
.yd_c00300{bottom:687.600000px;}
.yc_c00300{bottom:718.575000px;}
.yb_c00300{bottom:749.520000px;}
.ya_c00300{bottom:811.449000px;}
.y9_c00300{bottom:842.400000px;}
.y8_c00300{bottom:842.408100px;}
.y7_c00300{bottom:904.703400px;}
.y6_c00300{bottom:934.560000px;}
.y5_c00300{bottom:996.495000px;}
.y4_c00300{bottom:1027.080000px;}
.y3_c00300{bottom:1089.006000px;}
.y2_c00300{bottom:1119.615000px;}
.y1_c00300{bottom:1196.655000px;}
.h9_c00300{height:56.531250px;}
.h2_c00300{height:59.475586px;}
.h7_c00300{height:65.364258px;}
.h3_c00300{height:67.130859px;}
.h8_c00300{height:67.135659px;}
.h6_c00300{height:67.151259px;}
.h4_c00300{height:67.686035px;}
.h5_c00300{height:70.713281px;}
.h1_c00300{height:1263.000000px;}
.h0_c00300{height:1263.240000px;}
.w1_c00300{width:892.500000px;}
.w0_c00300{width:892.800000px;}
.x0_c00300{left:0.000000px;}
.x14_c00300{left:120.572700px;}
.xc_c00300{left:121.847700px;}
.x2_c00300{left:124.725900px;}
.x1_c00300{left:125.925000px;}
.xd_c00300{left:174.045000px;}
.xb_c00300{left:175.125000px;}
.x9_c00300{left:176.556300px;}
.x3_c00300{left:177.645000px;}
.x6_c00300{left:179.550600px;}
.xe_c00300{left:280.785000px;}
.x5_c00300{left:303.180000px;}
.xf_c00300{left:307.260000px;}
.x7_c00300{left:412.005000px;}
.x15_c00300{left:425.070000px;}
.x8_c00300{left:430.845000px;}
.x10_c00300{left:562.140000px;}
.x11_c00300{left:594.900000px;}
.xa_c00300{left:673.320000px;}
.x12_c00300{left:691.725000px;}
.x13_c00300{left:713.715000px;}
.x4_c00300{left:744.300000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.v1_c00300{vertical-align:25.653333pt;}
.ls81_c00300{letter-spacing:-2.128000pt;}
.ls7b_c00300{letter-spacing:-2.109333pt;}
.ls93_c00300{letter-spacing:-2.072000pt;}
.ls77_c00300{letter-spacing:-1.817920pt;}
.ls80_c00300{letter-spacing:-1.495680pt;}
.ls86_c00300{letter-spacing:-1.282880pt;}
.ls92_c00300{letter-spacing:-1.118720pt;}
.ls7d_c00300{letter-spacing:-1.112640pt;}
.ls7e_c00300{letter-spacing:-1.070080pt;}
.ls95_c00300{letter-spacing:-0.620160pt;}
.ls8e_c00300{letter-spacing:-0.608000pt;}
.ls7f_c00300{letter-spacing:-0.535040pt;}
.ls85_c00300{letter-spacing:-0.516800pt;}
.ls76_c00300{letter-spacing:-0.468160pt;}
.ls83_c00300{letter-spacing:-0.449920pt;}
.ls79_c00300{letter-spacing:-0.407360pt;}
.ls78_c00300{letter-spacing:-0.334400pt;}
.ls88_c00300{letter-spacing:-0.310080pt;}
.ls84_c00300{letter-spacing:-0.304000pt;}
.ls8d_c00300{letter-spacing:-0.237120pt;}
.ls87_c00300{letter-spacing:-0.079040pt;}
.ls74_c00300{letter-spacing:-0.072960pt;}
.ls75_c00300{letter-spacing:0.000000pt;}
.ls9_c00300{letter-spacing:0.072960pt;}
.ls10_c00300{letter-spacing:0.091200pt;}
.ls22_c00300{letter-spacing:0.115520pt;}
.ls29_c00300{letter-spacing:0.158080pt;}
.ls25_c00300{letter-spacing:0.164160pt;}
.ls8f_c00300{letter-spacing:0.176320pt;}
.ls1_c00300{letter-spacing:0.182400pt;}
.ls58_c00300{letter-spacing:0.218880pt;}
.ls1b_c00300{letter-spacing:0.243200pt;}
.ls43_c00300{letter-spacing:0.273600pt;}
.ls5c_c00300{letter-spacing:0.297920pt;}
.lse_c00300{letter-spacing:0.304000pt;}
.lsc_c00300{letter-spacing:0.312800pt;}
.ls20_c00300{letter-spacing:0.322240pt;}
.lsb_c00300{letter-spacing:0.325067pt;}
.ls1f_c00300{letter-spacing:0.328320pt;}
.ls1d_c00300{letter-spacing:0.334400pt;}
.ls26_c00300{letter-spacing:0.337333pt;}
.ls66_c00300{letter-spacing:0.343467pt;}
.ls69_c00300{letter-spacing:0.358720pt;}
.ls27_c00300{letter-spacing:0.370880pt;}
.ls6d_c00300{letter-spacing:0.413440pt;}
.ls21_c00300{letter-spacing:0.431680pt;}
.ls53_c00300{letter-spacing:0.456000pt;}
.ls24_c00300{letter-spacing:0.466133pt;}
.ls2a_c00300{letter-spacing:0.478400pt;}
.ls28_c00300{letter-spacing:0.486400pt;}
.ls2b_c00300{letter-spacing:0.516800pt;}
.ls5a_c00300{letter-spacing:0.521333pt;}
.ls51_c00300{letter-spacing:0.527467pt;}
.ls2e_c00300{letter-spacing:0.535040pt;}
.ls7c_c00300{letter-spacing:0.541120pt;}
.ls40_c00300{letter-spacing:0.547200pt;}
.ls8b_c00300{letter-spacing:0.559360pt;}
.ls8c_c00300{letter-spacing:0.577600pt;}
.ls59_c00300{letter-spacing:0.588800pt;}
.ls5e_c00300{letter-spacing:0.601920pt;}
.ls5d_c00300{letter-spacing:0.626240pt;}
.ls36_c00300{letter-spacing:0.638400pt;}
.ls0_c00300{letter-spacing:0.644480pt;}
.ls4f_c00300{letter-spacing:0.668800pt;}
.ls57_c00300{letter-spacing:0.680960pt;}
.ls70_c00300{letter-spacing:0.687040pt;}
.ls3b_c00300{letter-spacing:0.705280pt;}
.ls41_c00300{letter-spacing:0.711360pt;}
.ls6_c00300{letter-spacing:0.723520pt;}
.ls8a_c00300{letter-spacing:0.747840pt;}
.lsa_c00300{letter-spacing:0.753920pt;}
.ls1a_c00300{letter-spacing:0.760000pt;}
.ls31_c00300{letter-spacing:0.772160pt;}
.ls18_c00300{letter-spacing:0.796480pt;}
.ls19_c00300{letter-spacing:0.802560pt;}
.ls8_c00300{letter-spacing:0.814720pt;}
.ls4e_c00300{letter-spacing:0.820800pt;}
.ls61_c00300{letter-spacing:0.832960pt;}
.ls2c_c00300{letter-spacing:0.846400pt;}
.ls45_c00300{letter-spacing:0.851200pt;}
.ls4_c00300{letter-spacing:0.857280pt;}
.ls23_c00300{letter-spacing:0.864800pt;}
.ls62_c00300{letter-spacing:0.869440pt;}
.ls35_c00300{letter-spacing:0.912000pt;}
.ls90_c00300{letter-spacing:0.913867pt;}
.ls3_c00300{letter-spacing:0.918080pt;}
.ls71_c00300{letter-spacing:0.924160pt;}
.ls11_c00300{letter-spacing:0.936320pt;}
.ls3f_c00300{letter-spacing:0.942400pt;}
.ls6c_c00300{letter-spacing:0.960640pt;}
.ls6b_c00300{letter-spacing:0.972800pt;}
.ls7_c00300{letter-spacing:0.978880pt;}
.ls5f_c00300{letter-spacing:0.984960pt;}
.ls56_c00300{letter-spacing:0.997120pt;}
.ls50_c00300{letter-spacing:1.005867pt;}
.ls64_c00300{letter-spacing:1.015360pt;}
.ls65_c00300{letter-spacing:1.021440pt;}
.ls44_c00300{letter-spacing:1.027520pt;}
.ls3d_c00300{letter-spacing:1.039680pt;}
.ls46_c00300{letter-spacing:1.082240pt;}
.ls12_c00300{letter-spacing:1.088320pt;}
.ls63_c00300{letter-spacing:1.100480pt;}
.ls6f_c00300{letter-spacing:1.106560pt;}
.ls5b_c00300{letter-spacing:1.124800pt;}
.ls2f_c00300{letter-spacing:1.161280pt;}
.ls34_c00300{letter-spacing:1.167360pt;}
.ls48_c00300{letter-spacing:1.173440pt;}
.ls54_c00300{letter-spacing:1.197760pt;}
.ls72_c00300{letter-spacing:1.209920pt;}
.ls4c_c00300{letter-spacing:1.222080pt;}
.ls4a_c00300{letter-spacing:1.240320pt;}
.ls32_c00300{letter-spacing:1.258560pt;}
.ls49_c00300{letter-spacing:1.276800pt;}
.ls33_c00300{letter-spacing:1.325440pt;}
.ls3a_c00300{letter-spacing:1.331520pt;}
.ls38_c00300{letter-spacing:1.343680pt;}
.ls2d_c00300{letter-spacing:1.361920pt;}
.ls42_c00300{letter-spacing:1.374080pt;}
.ls6e_c00300{letter-spacing:1.380160pt;}
.ls4b_c00300{letter-spacing:1.459200pt;}
.ls3e_c00300{letter-spacing:1.465280pt;}
.ls14_c00300{letter-spacing:1.471360pt;}
.ls5_c00300{letter-spacing:1.495680pt;}
.ls73_c00300{letter-spacing:1.524427pt;}
.ls67_c00300{letter-spacing:1.526080pt;}
.ls3c_c00300{letter-spacing:1.544320pt;}
.ls15_c00300{letter-spacing:1.550400pt;}
.lsd_c00300{letter-spacing:1.623360pt;}
.ls82_c00300{letter-spacing:1.629440pt;}
.ls52_c00300{letter-spacing:1.690240pt;}
.ls60_c00300{letter-spacing:1.702400pt;}
.ls17_c00300{letter-spacing:1.741867pt;}
.ls47_c00300{letter-spacing:1.781440pt;}
.ls30_c00300{letter-spacing:1.903040pt;}
.ls39_c00300{letter-spacing:1.915200pt;}
.ls1c_c00300{letter-spacing:1.927360pt;}
.ls4d_c00300{letter-spacing:1.951680pt;}
.ls89_c00300{letter-spacing:1.957760pt;}
.ls7a_c00300{letter-spacing:2.036800pt;}
.ls6a_c00300{letter-spacing:2.091520pt;}
.ls2_c00300{letter-spacing:2.207040pt;}
.ls94_c00300{letter-spacing:2.219200pt;}
.ls37_c00300{letter-spacing:2.231360pt;}
.ls1e_c00300{letter-spacing:2.304320pt;}
.lsf_c00300{letter-spacing:2.413760pt;}
.ls55_c00300{letter-spacing:2.474560pt;}
.ls13_c00300{letter-spacing:2.632640pt;}
.ls16_c00300{letter-spacing:2.717067pt;}
.ls68_c00300{letter-spacing:2.748160pt;}
.ls91_c00300{letter-spacing:3.040000pt;}
.ws4_c00300{word-spacing:-15.953920pt;}
.ws5_c00300{word-spacing:0.000000pt;}
.ws2_c00300{word-spacing:5.418133pt;}
.ws0_c00300{word-spacing:10.849867pt;}
.ws1_c00300{word-spacing:20.142400pt;}
.ws3_c00300{word-spacing:23.480000pt;}
._10_c00300{margin-left:-10.556800pt;}
._d_c00300{margin-left:-8.858560pt;}
._1d_c00300{margin-left:-6.055680pt;}
._b_c00300{margin-left:-4.949600pt;}
._1a_c00300{margin-left:-3.745280pt;}
._c_c00300{margin-left:-2.294400pt;}
._1b_c00300{margin-left:-1.130400pt;}
._1c_c00300{width:0.903040pt;}
._a_c00300{width:2.079360pt;}
._f_c00300{width:3.800000pt;}
._6_c00300{width:4.791040pt;}
._9_c00300{width:5.769920pt;}
._7_c00300{width:6.848000pt;}
._e_c00300{width:8.633600pt;}
._4_c00300{width:10.567040pt;}
._8_c00300{width:12.281600pt;}
._19_c00300{width:13.187520pt;}
._2_c00300{width:14.105600pt;}
._5_c00300{width:14.999360pt;}
._3_c00300{width:17.145600pt;}
._0_c00300{width:19.224960pt;}
._1_c00300{width:20.343680pt;}
._11_c00300{width:21.815040pt;}
._12_c00300{width:23.517440pt;}
._15_c00300{width:25.207680pt;}
._16_c00300{width:26.144000pt;}
._18_c00300{width:27.323520pt;}
._13_c00300{width:28.357120pt;}
._14_c00300{width:32.351680pt;}
._17_c00300{width:33.379200pt;}
.fs5_c00300{font-size:28.800533pt;}
.fs6_c00300{font-size:51.200000pt;}
.fs0_c00300{font-size:53.866667pt;}
.fs4_c00300{font-size:59.200000pt;}
.fs3_c00300{font-size:60.266667pt;}
.fs1_c00300{font-size:60.800000pt;}
.fs2_c00300{font-size:61.333333pt;}
.y0_c00300{bottom:0.000000pt;}
.y1a_c00300{bottom:63.373333pt;}
.y19_c00300{bottom:169.918933pt;}
.y18_c00300{bottom:197.446133pt;}
.y17_c00300{bottom:224.973333pt;}
.y16_c00300{bottom:280.973333pt;}
.y15_c00300{bottom:336.646133pt;}
.y14_c00300{bottom:364.173333pt;}
.y13_c00300{bottom:391.693333pt;}
.y12_c00300{bottom:446.406133pt;}
.y11_c00300{bottom:473.928800pt;}
.y10_c00300{bottom:501.775200pt;}
.yf_c00300{bottom:528.968000pt;}
.ye_c00300{bottom:556.480000pt;}
.yd_c00300{bottom:611.200000pt;}
.yc_c00300{bottom:638.733333pt;}
.yb_c00300{bottom:666.240000pt;}
.ya_c00300{bottom:721.288000pt;}
.y9_c00300{bottom:748.800000pt;}
.y8_c00300{bottom:748.807200pt;}
.y7_c00300{bottom:804.180800pt;}
.y6_c00300{bottom:830.720000pt;}
.y5_c00300{bottom:885.773333pt;}
.y4_c00300{bottom:912.960000pt;}
.y3_c00300{bottom:968.005333pt;}
.y2_c00300{bottom:995.213333pt;}
.y1_c00300{bottom:1063.693333pt;}
.h9_c00300{height:50.250000pt;}
.h2_c00300{height:52.867187pt;}
.h7_c00300{height:58.101562pt;}
.h3_c00300{height:59.671875pt;}
.h8_c00300{height:59.676142pt;}
.h6_c00300{height:59.690008pt;}
.h4_c00300{height:60.165365pt;}
.h5_c00300{height:62.856250pt;}
.h1_c00300{height:1122.666667pt;}
.h0_c00300{height:1122.880000pt;}
.w1_c00300{width:793.333333pt;}
.w0_c00300{width:793.600000pt;}
.x0_c00300{left:0.000000pt;}
.x14_c00300{left:107.175733pt;}
.xc_c00300{left:108.309067pt;}
.x2_c00300{left:110.867467pt;}
.x1_c00300{left:111.933333pt;}
.xd_c00300{left:154.706667pt;}
.xb_c00300{left:155.666667pt;}
.x9_c00300{left:156.938933pt;}
.x3_c00300{left:157.906667pt;}
.x6_c00300{left:159.600533pt;}
.xe_c00300{left:249.586667pt;}
.x5_c00300{left:269.493333pt;}
.xf_c00300{left:273.120000pt;}
.x7_c00300{left:366.226667pt;}
.x15_c00300{left:377.840000pt;}
.x8_c00300{left:382.973333pt;}
.x10_c00300{left:499.680000pt;}
.x11_c00300{left:528.800000pt;}
.xa_c00300{left:598.506667pt;}
.x12_c00300{left:614.866667pt;}
.x13_c00300{left:634.413333pt;}
.x4_c00300{left:661.600000pt;}
}





/* 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_c00301 {
    display:none;
  }
  .loading-indicator_c00301.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00301 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_c00301 { 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_c00301" -> "#page-container .classname_c00301")
 */
.pf_c00301 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00301 { /* 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_c00301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00301 { /* 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_c00301 { /* 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_c00301 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00301 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00301 {overflow:visible;}
  }
}
.c_c00301 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00301 { /* 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_c00301:after { /* webkit #35443 */
  content: '';
}
.t_c00301:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00301 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 */
}
.__c00301 { /* 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_c00301 { /* info for Javascript */
  display:none;
}
.l_c00301 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00301 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00301 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00301: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_c00301 {
    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_c00301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00301.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_c00301 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00301;src:url('chunks/assets/font_20a7cec46d53b059d6a3530a.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.284668;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_c00301;src:url('chunks/assets/font_6f2646f5e23574e4b5173ede.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.284180;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_c00301;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;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;}
.m6_c00301{transform:matrix(0.191412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191412,0.000000,0.000000,0.250000,0,0);}
.m8_c00301{transform:matrix(0.198852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198852,0.000000,0.000000,0.250000,0,0);}
.m7_c00301{transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);}
.ma_c00301{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m0_c00301{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m3_c00301{transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);}
.m1_c00301{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);}
.mb_c00301{transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);}
.m5_c00301{transform:matrix(0.252228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252228,0.000000,0.000000,0.250000,0,0);}
.m9_c00301{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.m4_c00301{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.m2_c00301{transform:matrix(0.260708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260708,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls77_c00301{letter-spacing:-3.696000px;}
.ls7b_c00301{letter-spacing:-2.478000px;}
.ls84_c00301{letter-spacing:-2.373000px;}
.ls68_c00301{letter-spacing:-2.352000px;}
.ls73_c00301{letter-spacing:-1.612800px;}
.ls74_c00301{letter-spacing:-1.572480px;}
.ls6e_c00301{letter-spacing:-1.135680px;}
.ls83_c00301{letter-spacing:-1.061760px;}
.ls86_c00301{letter-spacing:-0.846720px;}
.ls72_c00301{letter-spacing:-0.719040px;}
.ls71_c00301{letter-spacing:-0.638400px;}
.ls80_c00301{letter-spacing:-0.504000px;}
.ls89_c00301{letter-spacing:-0.461040px;}
.ls8a_c00301{letter-spacing:-0.450300px;}
.ls70_c00301{letter-spacing:-0.389760px;}
.ls88_c00301{letter-spacing:-0.339000px;}
.ls81_c00301{letter-spacing:-0.120960px;}
.ls69_c00301{letter-spacing:-0.060480px;}
.ls7e_c00301{letter-spacing:-0.026880px;}
.ls6b_c00301{letter-spacing:0.000000px;}
.ls66_c00301{letter-spacing:0.026880px;}
.ls57_c00301{letter-spacing:0.080640px;}
.ls23_c00301{letter-spacing:0.087360px;}
.ls22_c00301{letter-spacing:0.120960px;}
.ls3b_c00301{letter-spacing:0.161280px;}
.ls7c_c00301{letter-spacing:0.168000px;}
.ls4e_c00301{letter-spacing:0.322560px;}
.ls65_c00301{letter-spacing:0.329280px;}
.ls6d_c00301{letter-spacing:0.342720px;}
.ls1e_c00301{letter-spacing:0.396480px;}
.ls7f_c00301{letter-spacing:0.430080px;}
.ls5b_c00301{letter-spacing:0.456960px;}
.ls6a_c00301{letter-spacing:0.463680px;}
.ls1b_c00301{letter-spacing:0.477120px;}
.ls39_c00301{letter-spacing:0.501720px;}
.ls31_c00301{letter-spacing:0.504000px;}
.lsc_c00301{letter-spacing:0.583080px;}
.ls79_c00301{letter-spacing:0.584640px;}
.ls2_c00301{letter-spacing:0.598080px;}
.ls7a_c00301{letter-spacing:0.698880px;}
.ls56_c00301{letter-spacing:0.705600px;}
.ls2e_c00301{letter-spacing:0.719040px;}
.ls61_c00301{letter-spacing:0.745920px;}
.lsd_c00301{letter-spacing:0.766140px;}
.ls9_c00301{letter-spacing:0.772800px;}
.ls48_c00301{letter-spacing:0.786240px;}
.ls3c_c00301{letter-spacing:0.819840px;}
.ls5d_c00301{letter-spacing:0.833280px;}
.ls3_c00301{letter-spacing:0.846720px;}
.ls29_c00301{letter-spacing:0.853440px;}
.ls17_c00301{letter-spacing:0.867840px;}
.ls1a_c00301{letter-spacing:0.887040px;}
.ls75_c00301{letter-spacing:0.907200px;}
.ls54_c00301{letter-spacing:0.913920px;}
.ls5e_c00301{letter-spacing:0.927360px;}
.ls5_c00301{letter-spacing:0.934080px;}
.ls4b_c00301{letter-spacing:0.935640px;}
.ls20_c00301{letter-spacing:0.942420px;}
.ls53_c00301{letter-spacing:0.947520px;}
.ls87_c00301{letter-spacing:0.967680px;}
.ls38_c00301{letter-spacing:0.981120px;}
.ls1d_c00301{letter-spacing:0.987840px;}
.ls16_c00301{letter-spacing:1.001280px;}
.ls21_c00301{letter-spacing:1.028160px;}
.ls10_c00301{letter-spacing:1.048320px;}
.ls85_c00301{letter-spacing:1.055040px;}
.ls0_c00301{letter-spacing:1.057680px;}
.ls3d_c00301{letter-spacing:1.061760px;}
.ls14_c00301{letter-spacing:1.068480px;}
.ls1f_c00301{letter-spacing:1.071240px;}
.ls40_c00301{letter-spacing:1.102080px;}
.ls2b_c00301{letter-spacing:1.108800px;}
.ls52_c00301{letter-spacing:1.128960px;}
.ls50_c00301{letter-spacing:1.135680px;}
.ls24_c00301{letter-spacing:1.139040px;}
.ls3f_c00301{letter-spacing:1.142400px;}
.ls1c_c00301{letter-spacing:1.155840px;}
.ls6c_c00301{letter-spacing:1.162560px;}
.ls55_c00301{letter-spacing:1.169280px;}
.ls4f_c00301{letter-spacing:1.176000px;}
.ls2a_c00301{letter-spacing:1.182720px;}
.ls44_c00301{letter-spacing:1.196160px;}
.ls15_c00301{letter-spacing:1.202880px;}
.ls59_c00301{letter-spacing:1.216320px;}
.ls42_c00301{letter-spacing:1.240740px;}
.ls36_c00301{letter-spacing:1.243200px;}
.ls82_c00301{letter-spacing:1.276800px;}
.ls34_c00301{letter-spacing:1.283520px;}
.ls33_c00301{letter-spacing:1.317120px;}
.ls4_c00301{letter-spacing:1.337280px;}
.ls46_c00301{letter-spacing:1.350720px;}
.ls26_c00301{letter-spacing:1.357440px;}
.ls12_c00301{letter-spacing:1.392300px;}
.ls41_c00301{letter-spacing:1.404480px;}
.ls8_c00301{letter-spacing:1.411200px;}
.ls5c_c00301{letter-spacing:1.417920px;}
.lsa_c00301{letter-spacing:1.424640px;}
.ls5f_c00301{letter-spacing:1.431360px;}
.ls30_c00301{letter-spacing:1.451520px;}
.ls11_c00301{letter-spacing:1.463700px;}
.ls64_c00301{letter-spacing:1.464960px;}
.ls62_c00301{letter-spacing:1.471680px;}
.ls63_c00301{letter-spacing:1.505280px;}
.ls60_c00301{letter-spacing:1.518720px;}
.ls43_c00301{letter-spacing:1.559040px;}
.ls32_c00301{letter-spacing:1.565760px;}
.ls13_c00301{letter-spacing:1.606080px;}
.ls18_c00301{letter-spacing:1.674660px;}
.ls5a_c00301{letter-spacing:1.680000px;}
.ls47_c00301{letter-spacing:1.700160px;}
.lsf_c00301{letter-spacing:1.706880px;}
.ls78_c00301{letter-spacing:1.807680px;}
.ls1_c00301{letter-spacing:1.834560px;}
.ls6_c00301{letter-spacing:1.841280px;}
.ls45_c00301{letter-spacing:1.848000px;}
.ls3a_c00301{letter-spacing:1.868160px;}
.ls2f_c00301{letter-spacing:1.881600px;}
.ls19_c00301{letter-spacing:1.895040px;}
.ls2c_c00301{letter-spacing:1.901760px;}
.ls2d_c00301{letter-spacing:1.915200px;}
.ls76_c00301{letter-spacing:1.935360px;}
.ls3e_c00301{letter-spacing:1.948800px;}
.ls4c_c00301{letter-spacing:1.989120px;}
.ls25_c00301{letter-spacing:2.022720px;}
.ls4d_c00301{letter-spacing:2.036160px;}
.ls37_c00301{letter-spacing:2.143680px;}
.ls4a_c00301{letter-spacing:2.304960px;}
.ls58_c00301{letter-spacing:2.345280px;}
.ls7d_c00301{letter-spacing:2.358720px;}
.ls35_c00301{letter-spacing:2.452800px;}
.ls28_c00301{letter-spacing:2.479680px;}
.ls7_c00301{letter-spacing:2.493120px;}
.ls67_c00301{letter-spacing:2.495040px;}
.ls51_c00301{letter-spacing:2.587200px;}
.lse_c00301{letter-spacing:2.620800px;}
.lsb_c00301{letter-spacing:2.688000px;}
.ls27_c00301{letter-spacing:2.755200px;}
.ls49_c00301{letter-spacing:3.030720px;}
.ls6f_c00301{letter-spacing:3.360000px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{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__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00301{word-spacing:-0.359400px;}
.ws6_c00301{word-spacing:0.000000px;}
.ws1_c00301{word-spacing:1.600260px;}
.ws2_c00301{word-spacing:13.949640px;}
.ws0_c00301{word-spacing:14.040600px;}
.ws4_c00301{word-spacing:22.769400px;}
.ws3_c00301{word-spacing:28.477440px;}
._16_c00301{margin-left:-8.952480px;}
._8_c00301{margin-left:-6.081600px;}
._e_c00301{margin-left:-4.999680px;}
._7_c00301{margin-left:-3.615360px;}
._5_c00301{margin-left:-1.612800px;}
._6_c00301{width:1.982400px;}
._9_c00301{width:3.552720px;}
._b_c00301{width:4.800840px;}
._a_c00301{width:6.291480px;}
._4_c00301{width:8.225280px;}
._0_c00301{width:9.367680px;}
._c_c00301{width:11.328120px;}
._2_c00301{width:12.626880px;}
._d_c00301{width:13.663560px;}
._10_c00301{width:14.810880px;}
._1_c00301{width:15.879360px;}
._f_c00301{width:16.895880px;}
._11_c00301{width:19.063680px;}
._17_c00301{width:20.190000px;}
._3_c00301{width:21.443520px;}
._18_c00301{width:23.923200px;}
._12_c00301{width:25.347840px;}
._14_c00301{width:28.089600px;}
._13_c00301{width:29.739840px;}
._15_c00301{width:31.416000px;}
.fc0_c00301{color:transparent;}
.fs5_c00301{font-size:57.000000px;}
.fs0_c00301{font-size:67.200000px;}
.fs1_c00301{font-size:67.800000px;}
.fs4_c00301{font-size:70.800000px;}
.fs2_c00301{font-size:71.400000px;}
.fs3_c00301{font-size:105.600000px;}
.y0_c00301{bottom:0.000000px;}
.y1b_c00301{bottom:68.055006px;}
.y1a_c00301{bottom:188.640006px;}
.y19_c00301{bottom:250.215006px;}
.y18_c00301{bottom:281.175006px;}
.y17_c00301{bottom:312.135006px;}
.y16_c00301{bottom:373.336806px;}
.y15_c00301{bottom:403.560006px;}
.y14_c00301{bottom:403.564806px;}
.y13_c00301{bottom:434.887206px;}
.y12_c00301{bottom:465.480006px;}
.y11_c00301{bottom:527.055006px;}
.y10_c00301{bottom:558.375006px;}
.yf_c00301{bottom:621.012606px;}
.yd_c00301{bottom:651.972606px;}
.ye_c00301{bottom:651.975006px;}
.yc_c00301{bottom:682.935006px;}
.yb_c00301{bottom:682.942206px;}
.ya_c00301{bottom:713.535006px;}
.y9_c00301{bottom:775.095006px;}
.y8_c00301{bottom:806.415006px;}
.y7_c00301{bottom:867.975006px;}
.y6_c00301{bottom:928.795806px;}
.y5_c00301{bottom:959.775006px;}
.y4_c00301{bottom:1020.975006px;}
.y3_c00301{bottom:1082.517606px;}
.y2_c00301{bottom:1113.480006px;}
.y1_c00301{bottom:1188.735006px;}
.h8_c00301{height:55.942383px;}
.h2_c00301{height:65.953125px;}
.h3_c00301{height:66.508887px;}
.h6_c00301{height:69.486328px;}
.h4_c00301{height:70.040332px;}
.h7_c00301{height:70.713281px;}
.h5_c00301{height:103.640625px;}
.h1_c00301{height:1263.000000px;}
.h0_c00301{height:1263.240006px;}
.w1_c00301{width:892.500000px;}
.w0_c00301{width:892.799998px;}
.x0_c00301{left:0.000000px;}
.x1_c00301{left:122.324999px;}
.x3_c00301{left:123.453599px;}
.x9_c00301{left:124.742398px;}
.x14_c00301{left:158.954998px;}
.x2_c00301{left:176.564999px;}
.x5_c00301{left:178.259998px;}
.x12_c00301{left:253.979998px;}
.x4_c00301{left:281.564999px;}
.xa_c00301{left:361.604999px;}
.x13_c00301{left:366.659999px;}
.xb_c00301{left:383.954998px;}
.x15_c00301{left:394.169999px;}
.x17_c00301{left:426.149999px;}
.x16_c00301{left:428.579998px;}
.xe_c00301{left:470.399999px;}
.xc_c00301{left:487.604998px;}
.xf_c00301{left:510.314998px;}
.xd_c00301{left:513.164999px;}
.x7_c00301{left:542.069999px;}
.x8_c00301{left:565.019998px;}
.x6_c00301{left:650.309999px;}
.x10_c00301{left:684.974999px;}
.x11_c00301{left:723.869999px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls77_c00301{letter-spacing:-3.285333pt;}
.ls7b_c00301{letter-spacing:-2.202667pt;}
.ls84_c00301{letter-spacing:-2.109333pt;}
.ls68_c00301{letter-spacing:-2.090667pt;}
.ls73_c00301{letter-spacing:-1.433600pt;}
.ls74_c00301{letter-spacing:-1.397760pt;}
.ls6e_c00301{letter-spacing:-1.009493pt;}
.ls83_c00301{letter-spacing:-0.943787pt;}
.ls86_c00301{letter-spacing:-0.752640pt;}
.ls72_c00301{letter-spacing:-0.639147pt;}
.ls71_c00301{letter-spacing:-0.567467pt;}
.ls80_c00301{letter-spacing:-0.448000pt;}
.ls89_c00301{letter-spacing:-0.409813pt;}
.ls8a_c00301{letter-spacing:-0.400267pt;}
.ls70_c00301{letter-spacing:-0.346453pt;}
.ls88_c00301{letter-spacing:-0.301333pt;}
.ls81_c00301{letter-spacing:-0.107520pt;}
.ls69_c00301{letter-spacing:-0.053760pt;}
.ls7e_c00301{letter-spacing:-0.023893pt;}
.ls6b_c00301{letter-spacing:0.000000pt;}
.ls66_c00301{letter-spacing:0.023893pt;}
.ls57_c00301{letter-spacing:0.071680pt;}
.ls23_c00301{letter-spacing:0.077653pt;}
.ls22_c00301{letter-spacing:0.107520pt;}
.ls3b_c00301{letter-spacing:0.143360pt;}
.ls7c_c00301{letter-spacing:0.149333pt;}
.ls4e_c00301{letter-spacing:0.286720pt;}
.ls65_c00301{letter-spacing:0.292693pt;}
.ls6d_c00301{letter-spacing:0.304640pt;}
.ls1e_c00301{letter-spacing:0.352427pt;}
.ls7f_c00301{letter-spacing:0.382293pt;}
.ls5b_c00301{letter-spacing:0.406187pt;}
.ls6a_c00301{letter-spacing:0.412160pt;}
.ls1b_c00301{letter-spacing:0.424107pt;}
.ls39_c00301{letter-spacing:0.445973pt;}
.ls31_c00301{letter-spacing:0.448000pt;}
.lsc_c00301{letter-spacing:0.518293pt;}
.ls79_c00301{letter-spacing:0.519680pt;}
.ls2_c00301{letter-spacing:0.531627pt;}
.ls7a_c00301{letter-spacing:0.621227pt;}
.ls56_c00301{letter-spacing:0.627200pt;}
.ls2e_c00301{letter-spacing:0.639147pt;}
.ls61_c00301{letter-spacing:0.663040pt;}
.lsd_c00301{letter-spacing:0.681013pt;}
.ls9_c00301{letter-spacing:0.686933pt;}
.ls48_c00301{letter-spacing:0.698880pt;}
.ls3c_c00301{letter-spacing:0.728747pt;}
.ls5d_c00301{letter-spacing:0.740693pt;}
.ls3_c00301{letter-spacing:0.752640pt;}
.ls29_c00301{letter-spacing:0.758613pt;}
.ls17_c00301{letter-spacing:0.771413pt;}
.ls1a_c00301{letter-spacing:0.788480pt;}
.ls75_c00301{letter-spacing:0.806400pt;}
.ls54_c00301{letter-spacing:0.812373pt;}
.ls5e_c00301{letter-spacing:0.824320pt;}
.ls5_c00301{letter-spacing:0.830293pt;}
.ls4b_c00301{letter-spacing:0.831680pt;}
.ls20_c00301{letter-spacing:0.837707pt;}
.ls53_c00301{letter-spacing:0.842240pt;}
.ls87_c00301{letter-spacing:0.860160pt;}
.ls38_c00301{letter-spacing:0.872107pt;}
.ls1d_c00301{letter-spacing:0.878080pt;}
.ls16_c00301{letter-spacing:0.890027pt;}
.ls21_c00301{letter-spacing:0.913920pt;}
.ls10_c00301{letter-spacing:0.931840pt;}
.ls85_c00301{letter-spacing:0.937813pt;}
.ls0_c00301{letter-spacing:0.940160pt;}
.ls3d_c00301{letter-spacing:0.943787pt;}
.ls14_c00301{letter-spacing:0.949760pt;}
.ls1f_c00301{letter-spacing:0.952213pt;}
.ls40_c00301{letter-spacing:0.979627pt;}
.ls2b_c00301{letter-spacing:0.985600pt;}
.ls52_c00301{letter-spacing:1.003520pt;}
.ls50_c00301{letter-spacing:1.009493pt;}
.ls24_c00301{letter-spacing:1.012480pt;}
.ls3f_c00301{letter-spacing:1.015467pt;}
.ls1c_c00301{letter-spacing:1.027413pt;}
.ls6c_c00301{letter-spacing:1.033387pt;}
.ls55_c00301{letter-spacing:1.039360pt;}
.ls4f_c00301{letter-spacing:1.045333pt;}
.ls2a_c00301{letter-spacing:1.051307pt;}
.ls44_c00301{letter-spacing:1.063253pt;}
.ls15_c00301{letter-spacing:1.069227pt;}
.ls59_c00301{letter-spacing:1.081173pt;}
.ls42_c00301{letter-spacing:1.102880pt;}
.ls36_c00301{letter-spacing:1.105067pt;}
.ls82_c00301{letter-spacing:1.134933pt;}
.ls34_c00301{letter-spacing:1.140907pt;}
.ls33_c00301{letter-spacing:1.170773pt;}
.ls4_c00301{letter-spacing:1.188693pt;}
.ls46_c00301{letter-spacing:1.200640pt;}
.ls26_c00301{letter-spacing:1.206613pt;}
.ls12_c00301{letter-spacing:1.237600pt;}
.ls41_c00301{letter-spacing:1.248427pt;}
.ls8_c00301{letter-spacing:1.254400pt;}
.ls5c_c00301{letter-spacing:1.260373pt;}
.lsa_c00301{letter-spacing:1.266347pt;}
.ls5f_c00301{letter-spacing:1.272320pt;}
.ls30_c00301{letter-spacing:1.290240pt;}
.ls11_c00301{letter-spacing:1.301067pt;}
.ls64_c00301{letter-spacing:1.302187pt;}
.ls62_c00301{letter-spacing:1.308160pt;}
.ls63_c00301{letter-spacing:1.338027pt;}
.ls60_c00301{letter-spacing:1.349973pt;}
.ls43_c00301{letter-spacing:1.385813pt;}
.ls32_c00301{letter-spacing:1.391787pt;}
.ls13_c00301{letter-spacing:1.427627pt;}
.ls18_c00301{letter-spacing:1.488587pt;}
.ls5a_c00301{letter-spacing:1.493333pt;}
.ls47_c00301{letter-spacing:1.511253pt;}
.lsf_c00301{letter-spacing:1.517227pt;}
.ls78_c00301{letter-spacing:1.606827pt;}
.ls1_c00301{letter-spacing:1.630720pt;}
.ls6_c00301{letter-spacing:1.636693pt;}
.ls45_c00301{letter-spacing:1.642667pt;}
.ls3a_c00301{letter-spacing:1.660587pt;}
.ls2f_c00301{letter-spacing:1.672533pt;}
.ls19_c00301{letter-spacing:1.684480pt;}
.ls2c_c00301{letter-spacing:1.690453pt;}
.ls2d_c00301{letter-spacing:1.702400pt;}
.ls76_c00301{letter-spacing:1.720320pt;}
.ls3e_c00301{letter-spacing:1.732267pt;}
.ls4c_c00301{letter-spacing:1.768107pt;}
.ls25_c00301{letter-spacing:1.797973pt;}
.ls4d_c00301{letter-spacing:1.809920pt;}
.ls37_c00301{letter-spacing:1.905493pt;}
.ls4a_c00301{letter-spacing:2.048853pt;}
.ls58_c00301{letter-spacing:2.084693pt;}
.ls7d_c00301{letter-spacing:2.096640pt;}
.ls35_c00301{letter-spacing:2.180267pt;}
.ls28_c00301{letter-spacing:2.204160pt;}
.ls7_c00301{letter-spacing:2.216107pt;}
.ls67_c00301{letter-spacing:2.217813pt;}
.ls51_c00301{letter-spacing:2.299733pt;}
.lse_c00301{letter-spacing:2.329600pt;}
.lsb_c00301{letter-spacing:2.389333pt;}
.ls27_c00301{letter-spacing:2.449067pt;}
.ls49_c00301{letter-spacing:2.693973pt;}
.ls6f_c00301{letter-spacing:2.986667pt;}
.ws5_c00301{word-spacing:-0.319467pt;}
.ws6_c00301{word-spacing:0.000000pt;}
.ws1_c00301{word-spacing:1.422453pt;}
.ws2_c00301{word-spacing:12.399680pt;}
.ws0_c00301{word-spacing:12.480533pt;}
.ws4_c00301{word-spacing:20.239467pt;}
.ws3_c00301{word-spacing:25.313280pt;}
._16_c00301{margin-left:-7.957760pt;}
._8_c00301{margin-left:-5.405867pt;}
._e_c00301{margin-left:-4.444160pt;}
._7_c00301{margin-left:-3.213653pt;}
._5_c00301{margin-left:-1.433600pt;}
._6_c00301{width:1.762133pt;}
._9_c00301{width:3.157973pt;}
._b_c00301{width:4.267413pt;}
._a_c00301{width:5.592427pt;}
._4_c00301{width:7.311360pt;}
._0_c00301{width:8.326827pt;}
._c_c00301{width:10.069440pt;}
._2_c00301{width:11.223893pt;}
._d_c00301{width:12.145387pt;}
._10_c00301{width:13.165227pt;}
._1_c00301{width:14.114987pt;}
._f_c00301{width:15.018560pt;}
._11_c00301{width:16.945493pt;}
._17_c00301{width:17.946667pt;}
._3_c00301{width:19.060907pt;}
._18_c00301{width:21.265067pt;}
._12_c00301{width:22.531413pt;}
._14_c00301{width:24.968533pt;}
._13_c00301{width:26.435413pt;}
._15_c00301{width:27.925333pt;}
.fs5_c00301{font-size:50.666667pt;}
.fs0_c00301{font-size:59.733333pt;}
.fs1_c00301{font-size:60.266667pt;}
.fs4_c00301{font-size:62.933333pt;}
.fs2_c00301{font-size:63.466667pt;}
.fs3_c00301{font-size:93.866667pt;}
.y0_c00301{bottom:0.000000pt;}
.y1b_c00301{bottom:60.493339pt;}
.y1a_c00301{bottom:167.680005pt;}
.y19_c00301{bottom:222.413339pt;}
.y18_c00301{bottom:249.933339pt;}
.y17_c00301{bottom:277.453339pt;}
.y16_c00301{bottom:331.854939pt;}
.y15_c00301{bottom:358.720005pt;}
.y14_c00301{bottom:358.724272pt;}
.y13_c00301{bottom:386.566405pt;}
.y12_c00301{bottom:413.760005pt;}
.y11_c00301{bottom:468.493339pt;}
.y10_c00301{bottom:496.333339pt;}
.yf_c00301{bottom:552.011205pt;}
.yd_c00301{bottom:579.531205pt;}
.ye_c00301{bottom:579.533339pt;}
.yc_c00301{bottom:607.053339pt;}
.yb_c00301{bottom:607.059739pt;}
.ya_c00301{bottom:634.253339pt;}
.y9_c00301{bottom:688.973339pt;}
.y8_c00301{bottom:716.813339pt;}
.y7_c00301{bottom:771.533339pt;}
.y6_c00301{bottom:825.596272pt;}
.y5_c00301{bottom:853.133339pt;}
.y4_c00301{bottom:907.533339pt;}
.y3_c00301{bottom:962.237872pt;}
.y2_c00301{bottom:989.760005pt;}
.y1_c00301{bottom:1056.653339pt;}
.h8_c00301{height:49.726562pt;}
.h2_c00301{height:58.625000pt;}
.h3_c00301{height:59.119010pt;}
.h6_c00301{height:61.765625pt;}
.h4_c00301{height:62.258073pt;}
.h7_c00301{height:62.856250pt;}
.h5_c00301{height:92.125000pt;}
.h1_c00301{height:1122.666667pt;}
.h0_c00301{height:1122.880005pt;}
.w1_c00301{width:793.333333pt;}
.w0_c00301{width:793.599999pt;}
.x0_c00301{left:0.000000pt;}
.x1_c00301{left:108.733332pt;}
.x3_c00301{left:109.736532pt;}
.x9_c00301{left:110.882132pt;}
.x14_c00301{left:141.293332pt;}
.x2_c00301{left:156.946665pt;}
.x5_c00301{left:158.453332pt;}
.x12_c00301{left:225.759999pt;}
.x4_c00301{left:250.279999pt;}
.xa_c00301{left:321.426665pt;}
.x13_c00301{left:325.919999pt;}
.xb_c00301{left:341.293332pt;}
.x15_c00301{left:350.373332pt;}
.x17_c00301{left:378.799999pt;}
.x16_c00301{left:380.959999pt;}
.xe_c00301{left:418.133332pt;}
.xc_c00301{left:433.426665pt;}
.xf_c00301{left:453.613332pt;}
.xd_c00301{left:456.146665pt;}
.x7_c00301{left:481.839999pt;}
.x8_c00301{left:502.239999pt;}
.x6_c00301{left:578.053332pt;}
.x10_c00301{left:608.866665pt;}
.x11_c00301{left:643.439999pt;}
}





/* 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_c00302 {
    display:none;
  }
  .loading-indicator_c00302.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00302 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_c00302 { 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_c00302" -> "#page-container .classname_c00302")
 */
.pf_c00302 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00302 { /* 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_c00302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00302 { /* 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_c00302 { /* 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_c00302 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00302 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00302 {overflow:visible;}
  }
}
.c_c00302 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00302 { /* 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_c00302:after { /* webkit #35443 */
  content: '';
}
.t_c00302:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00302 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 */
}
.__c00302 { /* 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_c00302 { /* info for Javascript */
  display:none;
}
.l_c00302 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00302 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00302 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00302: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_c00302 {
    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_c00302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00302.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_c00302 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00302;src:url('chunks/assets/font_b63a99745b1afd38d3124c6f.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.284668;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_c00302;src:url('chunks/assets/font_4ff3223ec85962d712725c96.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.311035;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_c00302;src:url('chunks/assets/font_d7dae1c06e1289b46ce26b64.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.284180;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_c00302;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;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:ff5_c00302;src:url('chunks/assets/font_e222441754f81972fa174da3.woff2')format("woff");}.ff5_c00302{font-family:ff5_c00302;line-height:1.284180;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_c00302;src:url('chunks/assets/font_134135b10c2e1192cebab4f6.woff2')format("woff");}.ff6_c00302{font-family:ff6_c00302;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:ff7_c00302;src:url('chunks/assets/font_607358ef4a892bd24a464d47.woff2')format("woff");}.ff7_c00302{font-family:ff7_c00302;line-height:0.666000;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;}
.m10_c00302{transform:matrix(0.109459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109459,0.000000,0.000000,0.250000,0,0);}
.m14_c00302{transform:matrix(0.195708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195708,0.000000,0.000000,0.250000,0,0);}
.m9_c00302{transform:matrix(0.199082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199082,0.000000,0.000000,0.250000,0,0);}
.m13_c00302{transform:matrix(0.204131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204131,0.000000,0.000000,0.250000,0,0);}
.me_c00302{transform:matrix(0.224409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224409,0.000000,0.000000,0.250000,0,0);}
.mc_c00302{transform:matrix(0.230718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230718,0.000000,0.000000,0.250000,0,0);}
.m12_c00302{transform:matrix(0.235533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235533,0.000000,0.000000,0.250000,0,0);}
.m11_c00302{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7_c00302{transform:matrix(0.237679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237679,0.000000,0.000000,0.250000,0,0);}
.mf_c00302{transform:matrix(0.238554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238554,0.000000,0.000000,0.250000,0,0);}
.md_c00302{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.mb_c00302{transform:matrix(0.243264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243264,0.000000,0.000000,0.250000,0,0);}
.m5_c00302{transform:matrix(0.243989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243989,0.000000,0.000000,0.250000,0,0);}
.m0_c00302{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.ma_c00302{transform:matrix(0.248403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248403,0.000000,0.000000,0.250000,0,0);}
.m1_c00302{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);}
.m8_c00302{transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);}
.m4_c00302{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);}
.m6_c00302{transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);}
.m2_c00302{transform:matrix(0.257197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257197,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls91_c00302{letter-spacing:-2.604000px;}
.ls82_c00302{letter-spacing:-2.373000px;}
.ls77_c00302{letter-spacing:-2.352000px;}
.ls8a_c00302{letter-spacing:-1.627200px;}
.ls89_c00302{letter-spacing:-1.410240px;}
.ls8b_c00302{letter-spacing:-0.996660px;}
.ls87_c00302{letter-spacing:-0.928860px;}
.ls7c_c00302{letter-spacing:-0.867840px;}
.ls8d_c00302{letter-spacing:-0.739020px;}
.ls8c_c00302{letter-spacing:-0.501720px;}
.ls95_c00302{letter-spacing:-0.264420px;}
.ls8e_c00302{letter-spacing:-0.257640px;}
.ls8f_c00302{letter-spacing:-0.223740px;}
.ls85_c00302{letter-spacing:-0.210180px;}
.ls88_c00302{letter-spacing:-0.013560px;}
.ls7a_c00302{letter-spacing:0.000000px;}
.ls93_c00302{letter-spacing:0.027120px;}
.ls46_c00302{letter-spacing:0.033900px;}
.lse_c00302{letter-spacing:0.155940px;}
.ls1d_c00302{letter-spacing:0.189840px;}
.ls7b_c00302{letter-spacing:0.216960px;}
.ls5d_c00302{letter-spacing:0.223740px;}
.ls32_c00302{letter-spacing:0.277980px;}
.ls53_c00302{letter-spacing:0.314640px;}
.ls6c_c00302{letter-spacing:0.339000px;}
.ls61_c00302{letter-spacing:0.382800px;}
.ls2a_c00302{letter-spacing:0.386460px;}
.ls84_c00302{letter-spacing:0.501720px;}
.ls56_c00302{letter-spacing:0.514080px;}
.ls63_c00302{letter-spacing:0.515280px;}
.ls11_c00302{letter-spacing:0.542400px;}
.ls8_c00302{letter-spacing:0.555960px;}
.ls72_c00302{letter-spacing:0.569520px;}
.ls5e_c00302{letter-spacing:0.576300px;}
.ls66_c00302{letter-spacing:0.596640px;}
.lsc_c00302{letter-spacing:0.630540px;}
.ls62_c00302{letter-spacing:0.636120px;}
.ls58_c00302{letter-spacing:0.637320px;}
.ls18_c00302{letter-spacing:0.656640px;}
.ls51_c00302{letter-spacing:0.684780px;}
.ls54_c00302{letter-spacing:0.691560px;}
.ls16_c00302{letter-spacing:0.705120px;}
.ls41_c00302{letter-spacing:0.711900px;}
.ls30_c00302{letter-spacing:0.732240px;}
.ls42_c00302{letter-spacing:0.779700px;}
.ls21_c00302{letter-spacing:0.793260px;}
.ls6_c00302{letter-spacing:0.800040px;}
.ls60_c00302{letter-spacing:0.800280px;}
.ls26_c00302{letter-spacing:0.813600px;}
.ls5a_c00302{letter-spacing:0.820380px;}
.ls97_c00302{letter-spacing:0.820620px;}
.ls47_c00302{letter-spacing:0.840720px;}
.ls52_c00302{letter-spacing:0.841320px;}
.ls73_c00302{letter-spacing:0.867840px;}
.ls90_c00302{letter-spacing:0.871200px;}
.ls68_c00302{letter-spacing:0.888180px;}
.ls4d_c00302{letter-spacing:0.901740px;}
.ls2c_c00302{letter-spacing:0.922080px;}
.ls19_c00302{letter-spacing:0.928860px;}
.lsd_c00302{letter-spacing:0.930240px;}
.ls22_c00302{letter-spacing:0.962760px;}
.ls5c_c00302{letter-spacing:0.969540px;}
.ls37_c00302{letter-spacing:0.976320px;}
.ls3d_c00302{letter-spacing:0.983100px;}
.ls55_c00302{letter-spacing:1.013880px;}
.ls4b_c00302{letter-spacing:1.030560px;}
.ls4_c00302{letter-spacing:1.037340px;}
.lsa_c00302{letter-spacing:1.057680px;}
.ls34_c00302{letter-spacing:1.071240px;}
.ls6e_c00302{letter-spacing:1.105140px;}
.ls36_c00302{letter-spacing:1.111920px;}
.ls86_c00302{letter-spacing:1.118700px;}
.ls40_c00302{letter-spacing:1.125480px;}
.ls12_c00302{letter-spacing:1.128600px;}
.ls1a_c00302{letter-spacing:1.145820px;}
.ls2b_c00302{letter-spacing:1.179720px;}
.ls10_c00302{letter-spacing:1.200060px;}
.ls4c_c00302{letter-spacing:1.206840px;}
.ls64_c00302{letter-spacing:1.224360px;}
.ls15_c00302{letter-spacing:1.233960px;}
.ls38_c00302{letter-spacing:1.240740px;}
.ls1b_c00302{letter-spacing:1.254300px;}
.ls83_c00302{letter-spacing:1.267860px;}
.lsf_c00302{letter-spacing:1.279080px;}
.ls75_c00302{letter-spacing:1.281420px;}
.lsb_c00302{letter-spacing:1.285920px;}
.ls4f_c00302{letter-spacing:1.294980px;}
.ls3f_c00302{letter-spacing:1.315320px;}
.ls92_c00302{letter-spacing:1.322100px;}
.ls74_c00302{letter-spacing:1.335660px;}
.ls17_c00302{letter-spacing:1.342440px;}
.ls2f_c00302{letter-spacing:1.349220px;}
.ls3a_c00302{letter-spacing:1.356000px;}
.ls13_c00302{letter-spacing:1.362780px;}
.ls45_c00302{letter-spacing:1.369560px;}
.ls1_c00302{letter-spacing:1.374840px;}
.ls76_c00302{letter-spacing:1.376340px;}
.ls70_c00302{letter-spacing:1.403460px;}
.ls6f_c00302{letter-spacing:1.410240px;}
.ls94_c00302{letter-spacing:1.417020px;}
.ls7d_c00302{letter-spacing:1.464480px;}
.ls23_c00302{letter-spacing:1.478040px;}
.ls4a_c00302{letter-spacing:1.484820px;}
.ls81_c00302{letter-spacing:1.505160px;}
.ls67_c00302{letter-spacing:1.511940px;}
.ls78_c00302{letter-spacing:1.525500px;}
.ls14_c00302{letter-spacing:1.539060px;}
.ls1c_c00302{letter-spacing:1.545840px;}
.ls33_c00302{letter-spacing:1.572960px;}
.ls2e_c00302{letter-spacing:1.586520px;}
.ls65_c00302{letter-spacing:1.606860px;}
.ls5f_c00302{letter-spacing:1.620420px;}
.ls20_c00302{letter-spacing:1.633980px;}
.ls7e_c00302{letter-spacing:1.667880px;}
.ls4e_c00302{letter-spacing:1.715340px;}
.ls24_c00302{letter-spacing:1.735680px;}
.ls6d_c00302{letter-spacing:1.749240px;}
.ls1e_c00302{letter-spacing:1.756020px;}
.ls28_c00302{letter-spacing:1.762800px;}
.ls44_c00302{letter-spacing:1.769580px;}
.ls50_c00302{letter-spacing:1.776360px;}
.ls0_c00302{letter-spacing:1.796700px;}
.ls31_c00302{letter-spacing:1.810260px;}
.ls7f_c00302{letter-spacing:1.817040px;}
.ls9_c00302{letter-spacing:1.871280px;}
.ls49_c00302{letter-spacing:1.891620px;}
.ls96_c00302{letter-spacing:1.905180px;}
.ls5_c00302{letter-spacing:1.911960px;}
.ls25_c00302{letter-spacing:1.925520px;}
.ls59_c00302{letter-spacing:1.979760px;}
.ls35_c00302{letter-spacing:2.020440px;}
.ls29_c00302{letter-spacing:2.081460px;}
.ls5b_c00302{letter-spacing:2.115360px;}
.ls1f_c00302{letter-spacing:2.122140px;}
.ls3_c00302{letter-spacing:2.128920px;}
.ls69_c00302{letter-spacing:2.162820px;}
.ls43_c00302{letter-spacing:2.203500px;}
.ls57_c00302{letter-spacing:2.230620px;}
.ls7_c00302{letter-spacing:2.271300px;}
.ls6b_c00302{letter-spacing:2.325540px;}
.ls27_c00302{letter-spacing:2.373000px;}
.ls80_c00302{letter-spacing:2.481480px;}
.ls3b_c00302{letter-spacing:2.488260px;}
.ls48_c00302{letter-spacing:2.495040px;}
.ls39_c00302{letter-spacing:2.617080px;}
.ls3e_c00302{letter-spacing:2.650980px;}
.ls2d_c00302{letter-spacing:2.786580px;}
.ls71_c00302{letter-spacing:2.915400px;}
.ls6a_c00302{letter-spacing:2.942520px;}
.ls2_c00302{letter-spacing:3.125580px;}
.ls3c_c00302{letter-spacing:3.356100px;}
.ls79_c00302{letter-spacing:3.390000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{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__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00302{word-spacing:0.000000px;}
.ws0_c00302{word-spacing:8.182560px;}
._2_c00302{margin-left:-5.410440px;}
._9_c00302{margin-left:-4.149360px;}
._3_c00302{margin-left:-2.684880px;}
._0_c00302{margin-left:-1.662300px;}
._e_c00302{width:1.078020px;}
._1_c00302{width:2.101800px;}
._4_c00302{width:4.108680px;}
._5_c00302{width:6.271500px;}
._10_c00302{width:7.274940px;}
._6_c00302{width:8.671620px;}
._7_c00302{width:9.922320px;}
._8_c00302{width:11.125980px;}
._11_c00302{width:12.244680px;}
._f_c00302{width:13.322700px;}
._a_c00302{width:14.563440px;}
._12_c00302{width:16.956780px;}
._13_c00302{width:20.895960px;}
._d_c00302{width:43.744560px;}
._b_c00302{width:45.588720px;}
._c_c00302{width:47.636280px;}
.fc0_c00302{color:transparent;}
.fs7_c00302{font-size:53.280000px;}
.fs8_c00302{font-size:58.200000px;}
.fs3_c00302{font-size:63.000000px;}
.fs5_c00302{font-size:66.000000px;}
.fs0_c00302{font-size:67.200000px;}
.fs1_c00302{font-size:67.800000px;}
.fs2_c00302{font-size:68.400000px;}
.fs4_c00302{font-size:71.400000px;}
.fs6_c00302{font-size:74.400000px;}
.y0_c00302{bottom:0.000000px;}
.y24_c00302{bottom:65.160000px;}
.y23_c00302{bottom:125.285250px;}
.y21_c00302{bottom:155.872350px;}
.y22_c00302{bottom:155.880000px;}
.y20_c00302{bottom:186.840000px;}
.y1f_c00302{bottom:248.775000px;}
.y1e_c00302{bottom:279.735000px;}
.y1d_c00302{bottom:310.695000px;}
.y1b_c00302{bottom:341.283300px;}
.y1c_c00302{bottom:341.295000px;}
.y1a_c00302{bottom:372.589950px;}
.y19_c00302{bottom:434.169300px;}
.y18_c00302{bottom:465.120000px;}
.y17_c00302{bottom:526.335000px;}
.y16_c00302{bottom:526.341900px;}
.y15_c00302{bottom:588.260250px;}
.y13_c00302{bottom:618.847350px;}
.y14_c00302{bottom:618.855000px;}
.y11_c00302{bottom:649.807350px;}
.y12_c00302{bottom:649.815000px;}
.y10_c00302{bottom:680.775000px;}
.yf_c00302{bottom:680.776650px;}
.ye_c00302{bottom:711.354450px;}
.yc_c00302{bottom:742.687350px;}
.yd_c00302{bottom:742.695000px;}
.ya_c00302{bottom:773.641650px;}
.yb_c00302{bottom:773.655000px;}
.y9_c00302{bottom:804.609300px;}
.y8_c00302{bottom:835.559700px;}
.y7_c00302{bottom:897.495000px;}
.y6_c00302{bottom:928.455000px;}
.y5_c00302{bottom:959.040000px;}
.y4_c00302{bottom:989.655000px;}
.y3_c00302{bottom:1050.856650px;}
.y2_c00302{bottom:1112.775000px;}
.y1_c00302{bottom:1189.815000px;}
.hd_c00302{height:35.484480px;}
.he_c00302{height:57.120117px;}
.ha_c00302{height:64.743164px;}
.h2_c00302{height:65.953125px;}
.h4_c00302{height:66.541992px;}
.h8_c00302{height:67.069861px;}
.h5_c00302{height:67.097461px;}
.h6_c00302{height:67.098661px;}
.h7_c00302{height:67.128061px;}
.h3_c00302{height:68.934375px;}
.h9_c00302{height:70.040332px;}
.hc_c00302{height:70.713281px;}
.hb_c00302{height:74.981250px;}
.h1_c00302{height:1263.000000px;}
.h0_c00302{height:1263.240000px;}
.w1_c00302{width:892.500000px;}
.w0_c00302{width:892.800000px;}
.x0_c00302{left:0.000000px;}
.x2c_c00302{left:121.184250px;}
.x6_c00302{left:122.917650px;}
.x1_c00302{left:126.285000px;}
.x1d_c00302{left:173.071650px;}
.x2b_c00302{left:174.405000px;}
.x13_c00302{left:175.603050px;}
.x5_c00302{left:177.615000px;}
.x2_c00302{left:179.115000px;}
.xf_c00302{left:187.230000px;}
.x2d_c00302{left:196.020000px;}
.x10_c00302{left:216.690000px;}
.x18_c00302{left:226.800000px;}
.x7_c00302{left:305.280000px;}
.x8_c00302{left:328.710000px;}
.x1f_c00302{left:330.990000px;}
.x20_c00302{left:383.505000px;}
.xb_c00302{left:407.520000px;}
.x3_c00302{left:424.335000px;}
.x2e_c00302{left:425.790000px;}
.xc_c00302{left:431.100000px;}
.x21_c00302{left:438.135000px;}
.x4_c00302{left:441.345000px;}
.x22_c00302{left:479.580000px;}
.x28_c00302{left:484.470000px;}
.xd_c00302{left:497.340000px;}
.x29_c00302{left:501.465000px;}
.x23_c00302{left:515.535000px;}
.x19_c00302{left:542.070000px;}
.x24_c00302{left:550.095000px;}
.xe_c00302{left:552.780000px;}
.x1a_c00302{left:559.065000px;}
.x1e_c00302{left:566.295000px;}
.x11_c00302{left:574.365000px;}
.x14_c00302{left:581.310000px;}
.x25_c00302{left:584.805000px;}
.x12_c00302{left:595.980000px;}
.x15_c00302{left:598.245000px;}
.x26_c00302{left:602.595000px;}
.x2a_c00302{left:608.895000px;}
.x27_c00302{left:630.615000px;}
.x1b_c00302{left:639.255000px;}
.x1c_c00302{left:667.215000px;}
.x16_c00302{left:678.495000px;}
.x9_c00302{left:694.620000px;}
.x17_c00302{left:706.815000px;}
.xa_c00302{left:715.710000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls91_c00302{letter-spacing:-2.314667pt;}
.ls82_c00302{letter-spacing:-2.109333pt;}
.ls77_c00302{letter-spacing:-2.090667pt;}
.ls8a_c00302{letter-spacing:-1.446400pt;}
.ls89_c00302{letter-spacing:-1.253547pt;}
.ls8b_c00302{letter-spacing:-0.885920pt;}
.ls87_c00302{letter-spacing:-0.825653pt;}
.ls7c_c00302{letter-spacing:-0.771413pt;}
.ls8d_c00302{letter-spacing:-0.656907pt;}
.ls8c_c00302{letter-spacing:-0.445973pt;}
.ls95_c00302{letter-spacing:-0.235040pt;}
.ls8e_c00302{letter-spacing:-0.229013pt;}
.ls8f_c00302{letter-spacing:-0.198880pt;}
.ls85_c00302{letter-spacing:-0.186827pt;}
.ls88_c00302{letter-spacing:-0.012053pt;}
.ls7a_c00302{letter-spacing:0.000000pt;}
.ls93_c00302{letter-spacing:0.024107pt;}
.ls46_c00302{letter-spacing:0.030133pt;}
.lse_c00302{letter-spacing:0.138613pt;}
.ls1d_c00302{letter-spacing:0.168747pt;}
.ls7b_c00302{letter-spacing:0.192853pt;}
.ls5d_c00302{letter-spacing:0.198880pt;}
.ls32_c00302{letter-spacing:0.247093pt;}
.ls53_c00302{letter-spacing:0.279680pt;}
.ls6c_c00302{letter-spacing:0.301333pt;}
.ls61_c00302{letter-spacing:0.340267pt;}
.ls2a_c00302{letter-spacing:0.343520pt;}
.ls84_c00302{letter-spacing:0.445973pt;}
.ls56_c00302{letter-spacing:0.456960pt;}
.ls63_c00302{letter-spacing:0.458027pt;}
.ls11_c00302{letter-spacing:0.482133pt;}
.ls8_c00302{letter-spacing:0.494187pt;}
.ls72_c00302{letter-spacing:0.506240pt;}
.ls5e_c00302{letter-spacing:0.512267pt;}
.ls66_c00302{letter-spacing:0.530347pt;}
.lsc_c00302{letter-spacing:0.560480pt;}
.ls62_c00302{letter-spacing:0.565440pt;}
.ls58_c00302{letter-spacing:0.566507pt;}
.ls18_c00302{letter-spacing:0.583680pt;}
.ls51_c00302{letter-spacing:0.608693pt;}
.ls54_c00302{letter-spacing:0.614720pt;}
.ls16_c00302{letter-spacing:0.626773pt;}
.ls41_c00302{letter-spacing:0.632800pt;}
.ls30_c00302{letter-spacing:0.650880pt;}
.ls42_c00302{letter-spacing:0.693067pt;}
.ls21_c00302{letter-spacing:0.705120pt;}
.ls6_c00302{letter-spacing:0.711147pt;}
.ls60_c00302{letter-spacing:0.711360pt;}
.ls26_c00302{letter-spacing:0.723200pt;}
.ls5a_c00302{letter-spacing:0.729227pt;}
.ls97_c00302{letter-spacing:0.729440pt;}
.ls47_c00302{letter-spacing:0.747307pt;}
.ls52_c00302{letter-spacing:0.747840pt;}
.ls73_c00302{letter-spacing:0.771413pt;}
.ls90_c00302{letter-spacing:0.774400pt;}
.ls68_c00302{letter-spacing:0.789493pt;}
.ls4d_c00302{letter-spacing:0.801547pt;}
.ls2c_c00302{letter-spacing:0.819627pt;}
.ls19_c00302{letter-spacing:0.825653pt;}
.lsd_c00302{letter-spacing:0.826880pt;}
.ls22_c00302{letter-spacing:0.855787pt;}
.ls5c_c00302{letter-spacing:0.861813pt;}
.ls37_c00302{letter-spacing:0.867840pt;}
.ls3d_c00302{letter-spacing:0.873867pt;}
.ls55_c00302{letter-spacing:0.901227pt;}
.ls4b_c00302{letter-spacing:0.916053pt;}
.ls4_c00302{letter-spacing:0.922080pt;}
.lsa_c00302{letter-spacing:0.940160pt;}
.ls34_c00302{letter-spacing:0.952213pt;}
.ls6e_c00302{letter-spacing:0.982347pt;}
.ls36_c00302{letter-spacing:0.988373pt;}
.ls86_c00302{letter-spacing:0.994400pt;}
.ls40_c00302{letter-spacing:1.000427pt;}
.ls12_c00302{letter-spacing:1.003200pt;}
.ls1a_c00302{letter-spacing:1.018507pt;}
.ls2b_c00302{letter-spacing:1.048640pt;}
.ls10_c00302{letter-spacing:1.066720pt;}
.ls4c_c00302{letter-spacing:1.072747pt;}
.ls64_c00302{letter-spacing:1.088320pt;}
.ls15_c00302{letter-spacing:1.096853pt;}
.ls38_c00302{letter-spacing:1.102880pt;}
.ls1b_c00302{letter-spacing:1.114933pt;}
.ls83_c00302{letter-spacing:1.126987pt;}
.lsf_c00302{letter-spacing:1.136960pt;}
.ls75_c00302{letter-spacing:1.139040pt;}
.lsb_c00302{letter-spacing:1.143040pt;}
.ls4f_c00302{letter-spacing:1.151093pt;}
.ls3f_c00302{letter-spacing:1.169173pt;}
.ls92_c00302{letter-spacing:1.175200pt;}
.ls74_c00302{letter-spacing:1.187253pt;}
.ls17_c00302{letter-spacing:1.193280pt;}
.ls2f_c00302{letter-spacing:1.199307pt;}
.ls3a_c00302{letter-spacing:1.205333pt;}
.ls13_c00302{letter-spacing:1.211360pt;}
.ls45_c00302{letter-spacing:1.217387pt;}
.ls1_c00302{letter-spacing:1.222080pt;}
.ls76_c00302{letter-spacing:1.223413pt;}
.ls70_c00302{letter-spacing:1.247520pt;}
.ls6f_c00302{letter-spacing:1.253547pt;}
.ls94_c00302{letter-spacing:1.259573pt;}
.ls7d_c00302{letter-spacing:1.301760pt;}
.ls23_c00302{letter-spacing:1.313813pt;}
.ls4a_c00302{letter-spacing:1.319840pt;}
.ls81_c00302{letter-spacing:1.337920pt;}
.ls67_c00302{letter-spacing:1.343947pt;}
.ls78_c00302{letter-spacing:1.356000pt;}
.ls14_c00302{letter-spacing:1.368053pt;}
.ls1c_c00302{letter-spacing:1.374080pt;}
.ls33_c00302{letter-spacing:1.398187pt;}
.ls2e_c00302{letter-spacing:1.410240pt;}
.ls65_c00302{letter-spacing:1.428320pt;}
.ls5f_c00302{letter-spacing:1.440373pt;}
.ls20_c00302{letter-spacing:1.452427pt;}
.ls7e_c00302{letter-spacing:1.482560pt;}
.ls4e_c00302{letter-spacing:1.524747pt;}
.ls24_c00302{letter-spacing:1.542827pt;}
.ls6d_c00302{letter-spacing:1.554880pt;}
.ls1e_c00302{letter-spacing:1.560907pt;}
.ls28_c00302{letter-spacing:1.566933pt;}
.ls44_c00302{letter-spacing:1.572960pt;}
.ls50_c00302{letter-spacing:1.578987pt;}
.ls0_c00302{letter-spacing:1.597067pt;}
.ls31_c00302{letter-spacing:1.609120pt;}
.ls7f_c00302{letter-spacing:1.615147pt;}
.ls9_c00302{letter-spacing:1.663360pt;}
.ls49_c00302{letter-spacing:1.681440pt;}
.ls96_c00302{letter-spacing:1.693493pt;}
.ls5_c00302{letter-spacing:1.699520pt;}
.ls25_c00302{letter-spacing:1.711573pt;}
.ls59_c00302{letter-spacing:1.759787pt;}
.ls35_c00302{letter-spacing:1.795947pt;}
.ls29_c00302{letter-spacing:1.850187pt;}
.ls5b_c00302{letter-spacing:1.880320pt;}
.ls1f_c00302{letter-spacing:1.886347pt;}
.ls3_c00302{letter-spacing:1.892373pt;}
.ls69_c00302{letter-spacing:1.922507pt;}
.ls43_c00302{letter-spacing:1.958667pt;}
.ls57_c00302{letter-spacing:1.982773pt;}
.ls7_c00302{letter-spacing:2.018933pt;}
.ls6b_c00302{letter-spacing:2.067147pt;}
.ls27_c00302{letter-spacing:2.109333pt;}
.ls80_c00302{letter-spacing:2.205760pt;}
.ls3b_c00302{letter-spacing:2.211787pt;}
.ls48_c00302{letter-spacing:2.217813pt;}
.ls39_c00302{letter-spacing:2.326293pt;}
.ls3e_c00302{letter-spacing:2.356427pt;}
.ls2d_c00302{letter-spacing:2.476960pt;}
.ls71_c00302{letter-spacing:2.591467pt;}
.ls6a_c00302{letter-spacing:2.615573pt;}
.ls2_c00302{letter-spacing:2.778293pt;}
.ls3c_c00302{letter-spacing:2.983200pt;}
.ls79_c00302{letter-spacing:3.013333pt;}
.ws1_c00302{word-spacing:0.000000pt;}
.ws0_c00302{word-spacing:7.273387pt;}
._2_c00302{margin-left:-4.809280pt;}
._9_c00302{margin-left:-3.688320pt;}
._3_c00302{margin-left:-2.386560pt;}
._0_c00302{margin-left:-1.477600pt;}
._e_c00302{width:0.958240pt;}
._1_c00302{width:1.868267pt;}
._4_c00302{width:3.652160pt;}
._5_c00302{width:5.574667pt;}
._10_c00302{width:6.466613pt;}
._6_c00302{width:7.708107pt;}
._7_c00302{width:8.819840pt;}
._8_c00302{width:9.889760pt;}
._11_c00302{width:10.884160pt;}
._f_c00302{width:11.842400pt;}
._a_c00302{width:12.945280pt;}
._12_c00302{width:15.072693pt;}
._13_c00302{width:18.574187pt;}
._d_c00302{width:38.884053pt;}
._b_c00302{width:40.523307pt;}
._c_c00302{width:42.343360pt;}
.fs7_c00302{font-size:47.360000pt;}
.fs8_c00302{font-size:51.733333pt;}
.fs3_c00302{font-size:56.000000pt;}
.fs5_c00302{font-size:58.666667pt;}
.fs0_c00302{font-size:59.733333pt;}
.fs1_c00302{font-size:60.266667pt;}
.fs2_c00302{font-size:60.800000pt;}
.fs4_c00302{font-size:63.466667pt;}
.fs6_c00302{font-size:66.133333pt;}
.y0_c00302{bottom:0.000000pt;}
.y24_c00302{bottom:57.920000pt;}
.y23_c00302{bottom:111.364667pt;}
.y21_c00302{bottom:138.553200pt;}
.y22_c00302{bottom:138.560000pt;}
.y20_c00302{bottom:166.080000pt;}
.y1f_c00302{bottom:221.133333pt;}
.y1e_c00302{bottom:248.653333pt;}
.y1d_c00302{bottom:276.173333pt;}
.y1b_c00302{bottom:303.362933pt;}
.y1c_c00302{bottom:303.373333pt;}
.y1a_c00302{bottom:331.191067pt;}
.y19_c00302{bottom:385.928267pt;}
.y18_c00302{bottom:413.440000pt;}
.y17_c00302{bottom:467.853333pt;}
.y16_c00302{bottom:467.859467pt;}
.y15_c00302{bottom:522.898000pt;}
.y13_c00302{bottom:550.086533pt;}
.y14_c00302{bottom:550.093333pt;}
.y11_c00302{bottom:577.606533pt;}
.y12_c00302{bottom:577.613333pt;}
.y10_c00302{bottom:605.133333pt;}
.yf_c00302{bottom:605.134800pt;}
.ye_c00302{bottom:632.315067pt;}
.yc_c00302{bottom:660.166533pt;}
.yd_c00302{bottom:660.173333pt;}
.ya_c00302{bottom:687.681467pt;}
.yb_c00302{bottom:687.693333pt;}
.y9_c00302{bottom:715.208267pt;}
.y8_c00302{bottom:742.719733pt;}
.y7_c00302{bottom:797.773333pt;}
.y6_c00302{bottom:825.293333pt;}
.y5_c00302{bottom:852.480000pt;}
.y4_c00302{bottom:879.693333pt;}
.y3_c00302{bottom:934.094800pt;}
.y2_c00302{bottom:989.133333pt;}
.y1_c00302{bottom:1057.613333pt;}
.hd_c00302{height:31.541760pt;}
.he_c00302{height:50.773437pt;}
.ha_c00302{height:57.549479pt;}
.h2_c00302{height:58.625000pt;}
.h4_c00302{height:59.148438pt;}
.h8_c00302{height:59.617654pt;}
.h5_c00302{height:59.642187pt;}
.h6_c00302{height:59.643254pt;}
.h7_c00302{height:59.669387pt;}
.h3_c00302{height:61.275000pt;}
.h9_c00302{height:62.258073pt;}
.hc_c00302{height:62.856250pt;}
.hb_c00302{height:66.650000pt;}
.h1_c00302{height:1122.666667pt;}
.h0_c00302{height:1122.880000pt;}
.w1_c00302{width:793.333333pt;}
.w0_c00302{width:793.600000pt;}
.x0_c00302{left:0.000000pt;}
.x2c_c00302{left:107.719333pt;}
.x6_c00302{left:109.260133pt;}
.x1_c00302{left:112.253333pt;}
.x1d_c00302{left:153.841467pt;}
.x2b_c00302{left:155.026667pt;}
.x13_c00302{left:156.091600pt;}
.x5_c00302{left:157.880000pt;}
.x2_c00302{left:159.213333pt;}
.xf_c00302{left:166.426667pt;}
.x2d_c00302{left:174.240000pt;}
.x10_c00302{left:192.613333pt;}
.x18_c00302{left:201.600000pt;}
.x7_c00302{left:271.360000pt;}
.x8_c00302{left:292.186667pt;}
.x1f_c00302{left:294.213333pt;}
.x20_c00302{left:340.893333pt;}
.xb_c00302{left:362.240000pt;}
.x3_c00302{left:377.186667pt;}
.x2e_c00302{left:378.480000pt;}
.xc_c00302{left:383.200000pt;}
.x21_c00302{left:389.453333pt;}
.x4_c00302{left:392.306667pt;}
.x22_c00302{left:426.293333pt;}
.x28_c00302{left:430.640000pt;}
.xd_c00302{left:442.080000pt;}
.x29_c00302{left:445.746667pt;}
.x23_c00302{left:458.253333pt;}
.x19_c00302{left:481.840000pt;}
.x24_c00302{left:488.973333pt;}
.xe_c00302{left:491.360000pt;}
.x1a_c00302{left:496.946667pt;}
.x1e_c00302{left:503.373333pt;}
.x11_c00302{left:510.546667pt;}
.x14_c00302{left:516.720000pt;}
.x25_c00302{left:519.826667pt;}
.x12_c00302{left:529.760000pt;}
.x15_c00302{left:531.773333pt;}
.x26_c00302{left:535.640000pt;}
.x2a_c00302{left:541.240000pt;}
.x27_c00302{left:560.546667pt;}
.x1b_c00302{left:568.226667pt;}
.x1c_c00302{left:593.080000pt;}
.x16_c00302{left:603.106667pt;}
.x9_c00302{left:617.440000pt;}
.x17_c00302{left:628.280000pt;}
.xa_c00302{left:636.186667pt;}
}





/* 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_c00303 {
    display:none;
  }
  .loading-indicator_c00303.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00303 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_c00303 { 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_c00303" -> "#page-container .classname_c00303")
 */
.pf_c00303 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00303 { /* 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_c00303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00303 { /* 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_c00303 { /* 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_c00303 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00303 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00303 {overflow:visible;}
  }
}
.c_c00303 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00303 { /* 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_c00303:after { /* webkit #35443 */
  content: '';
}
.t_c00303:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00303 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 */
}
.__c00303 { /* 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_c00303 { /* info for Javascript */
  display:none;
}
.l_c00303 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00303 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00303 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00303: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_c00303 {
    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_c00303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00303.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_c00303 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00303;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;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:ff2_c00303;src:url('chunks/assets/font_1f53ca3e6fbf77650003ef83.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.284668;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_c00303;src:url('chunks/assets/font_93e4af592ed102648afddddf.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;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:ff4_c00303;src:url('chunks/assets/font_abb156c2f0ca607177636fbb.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;line-height:1.284180;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_c00303;src:url('chunks/assets/font_a54bc3cf0c51dd11ac210b55.woff2')format("woff");}.ff5_c00303{font-family:ff5_c00303;line-height:0.666000;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_c00303{transform:matrix(0.061747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061747,0.000000,0.000000,0.250000,0,0);}
.m0_c00303{transform:matrix(0.118548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118548,0.000000,0.000000,0.250000,0,0);}
.m3_c00303{transform:matrix(0.123867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123867,0.000000,0.000000,0.250000,0,0);}
.m2_c00303{transform:matrix(0.234430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234430,0.000000,0.000000,0.250000,0,0);}
.m1_c00303{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);}
.v0_c00303{vertical-align:0.000000px;}
.lsf_c00303{letter-spacing:-2.520000px;}
.ls7_c00303{letter-spacing:-2.394000px;}
.ls9_c00303{letter-spacing:-2.310000px;}
.ls11_c00303{letter-spacing:-1.097820px;}
.lsb_c00303{letter-spacing:-0.853860px;}
.lse_c00303{letter-spacing:-0.486000px;}
.lsd_c00303{letter-spacing:-0.128400px;}
.ls8_c00303{letter-spacing:0.000000px;}
.ls6_c00303{letter-spacing:0.057780px;}
.ls1_c00303{letter-spacing:0.250380px;}
.lsa_c00303{letter-spacing:0.442980px;}
.ls0_c00303{letter-spacing:0.468660px;}
.ls2_c00303{letter-spacing:0.558540px;}
.ls10_c00303{letter-spacing:0.667680px;}
.ls3_c00303{letter-spacing:0.674100px;}
.ls12_c00303{letter-spacing:0.789660px;}
.lsc_c00303{letter-spacing:0.821760px;}
.ls5_c00303{letter-spacing:1.669200px;}
.ls4_c00303{letter-spacing:3.065040px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{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__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00303{word-spacing:-2.054400px;}
.ws4_c00303{word-spacing:0.000000px;}
.ws1_c00303{word-spacing:2.388240px;}
.ws0_c00303{word-spacing:3.272280px;}
.ws3_c00303{word-spacing:6.188880px;}
._2_c00303{margin-left:-6.356880px;}
._0_c00303{width:2.330460px;}
._1_c00303{width:3.726540px;}
.fc0_c00303{color:transparent;}
.fs1_c00303{font-size:60.000000px;}
.fs6_c00303{font-size:61.800000px;}
.fs3_c00303{font-size:64.200000px;}
.fs4_c00303{font-size:64.800000px;}
.fs2_c00303{font-size:66.000000px;}
.fs0_c00303{font-size:68.400000px;}
.fs5_c00303{font-size:72.000000px;}
.fs7_c00303{font-size:239.040000px;}
.y0_c00303{bottom:0.000000px;}
.y5_c00303{bottom:152.278815px;}
.yb_c00303{bottom:169.221765px;}
.y4_c00303{bottom:170.645715px;}
.ya_c00303{bottom:187.920015px;}
.y3_c00303{bottom:189.360015px;}
.y9_c00303{bottom:587.895015px;}
.y2_c00303{bottom:824.415015px;}
.y8_c00303{bottom:844.560015px;}
.y7_c00303{bottom:1077.480015px;}
.y1_c00303{bottom:1081.455015px;}
.y6_c00303{bottom:1145.520015px;}
.h3_c00303{height:58.886719px;}
.h8_c00303{height:60.653320px;}
.h5_c00303{height:62.977441px;}
.h6_c00303{height:63.597656px;}
.h4_c00303{height:68.835938px;}
.h7_c00303{height:70.664062px;}
.h2_c00303{height:71.339063px;}
.h9_c00303{height:159.200640px;}
.h1_c00303{height:1263.000000px;}
.h0_c00303{height:1263.240015px;}
.w1_c00303{width:892.500000px;}
.w0_c00303{width:892.800015px;}
.x0_c00303{left:0.000000px;}
.x5_c00303{left:112.168065px;}
.x3_c00303{left:113.940015px;}
.x1_c00303{left:119.985015px;}
.x4_c00303{left:135.795015px;}
.x2_c00303{left:280.995015px;}
.xa_c00303{left:378.930015px;}
.x9_c00303{left:506.895015px;}
.x8_c00303{left:646.110015px;}
.x6_c00303{left:671.670015px;}
.x7_c00303{left:795.300015px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.lsf_c00303{letter-spacing:-2.240000pt;}
.ls7_c00303{letter-spacing:-2.128000pt;}
.ls9_c00303{letter-spacing:-2.053333pt;}
.ls11_c00303{letter-spacing:-0.975840pt;}
.lsb_c00303{letter-spacing:-0.758987pt;}
.lse_c00303{letter-spacing:-0.432000pt;}
.lsd_c00303{letter-spacing:-0.114133pt;}
.ls8_c00303{letter-spacing:0.000000pt;}
.ls6_c00303{letter-spacing:0.051360pt;}
.ls1_c00303{letter-spacing:0.222560pt;}
.lsa_c00303{letter-spacing:0.393760pt;}
.ls0_c00303{letter-spacing:0.416587pt;}
.ls2_c00303{letter-spacing:0.496480pt;}
.ls10_c00303{letter-spacing:0.593493pt;}
.ls3_c00303{letter-spacing:0.599200pt;}
.ls12_c00303{letter-spacing:0.701920pt;}
.lsc_c00303{letter-spacing:0.730453pt;}
.ls5_c00303{letter-spacing:1.483733pt;}
.ls4_c00303{letter-spacing:2.724480pt;}
.ws2_c00303{word-spacing:-1.826133pt;}
.ws4_c00303{word-spacing:0.000000pt;}
.ws1_c00303{word-spacing:2.122880pt;}
.ws0_c00303{word-spacing:2.908693pt;}
.ws3_c00303{word-spacing:5.501227pt;}
._2_c00303{margin-left:-5.650560pt;}
._0_c00303{width:2.071520pt;}
._1_c00303{width:3.312480pt;}
.fs1_c00303{font-size:53.333333pt;}
.fs6_c00303{font-size:54.933333pt;}
.fs3_c00303{font-size:57.066667pt;}
.fs4_c00303{font-size:57.600000pt;}
.fs2_c00303{font-size:58.666667pt;}
.fs0_c00303{font-size:60.800000pt;}
.fs5_c00303{font-size:64.000000pt;}
.fs7_c00303{font-size:212.480000pt;}
.y0_c00303{bottom:0.000000pt;}
.y5_c00303{bottom:135.358947pt;}
.yb_c00303{bottom:150.419347pt;}
.y4_c00303{bottom:151.685080pt;}
.ya_c00303{bottom:167.040013pt;}
.y3_c00303{bottom:168.320013pt;}
.y9_c00303{bottom:522.573347pt;}
.y2_c00303{bottom:732.813347pt;}
.y8_c00303{bottom:750.720013pt;}
.y7_c00303{bottom:957.760013pt;}
.y1_c00303{bottom:961.293347pt;}
.y6_c00303{bottom:1018.240013pt;}
.h3_c00303{height:52.343750pt;}
.h8_c00303{height:53.914062pt;}
.h5_c00303{height:55.979948pt;}
.h6_c00303{height:56.531250pt;}
.h4_c00303{height:61.187500pt;}
.h7_c00303{height:62.812500pt;}
.h2_c00303{height:63.412500pt;}
.h9_c00303{height:141.511680pt;}
.h1_c00303{height:1122.666667pt;}
.h0_c00303{height:1122.880013pt;}
.w1_c00303{width:793.333333pt;}
.w0_c00303{width:793.600013pt;}
.x0_c00303{left:0.000000pt;}
.x5_c00303{left:99.704947pt;}
.x3_c00303{left:101.280013pt;}
.x1_c00303{left:106.653347pt;}
.x4_c00303{left:120.706680pt;}
.x2_c00303{left:249.773347pt;}
.xa_c00303{left:336.826680pt;}
.x9_c00303{left:450.573347pt;}
.x8_c00303{left:574.320013pt;}
.x6_c00303{left:597.040013pt;}
.x7_c00303{left:706.933347pt;}
}





/* 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_c00304 {
    display:none;
  }
  .loading-indicator_c00304.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00304 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_c00304 { 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_c00304" -> "#page-container .classname_c00304")
 */
.pf_c00304 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00304 { /* 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_c00304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00304 { /* 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_c00304 { /* 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_c00304 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00304 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00304 {overflow:visible;}
  }
}
.c_c00304 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00304 { /* 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_c00304:after { /* webkit #35443 */
  content: '';
}
.t_c00304:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00304 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 */
}
.__c00304 { /* 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_c00304 { /* info for Javascript */
  display:none;
}
.l_c00304 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00304 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00304 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00304: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_c00304 {
    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_c00304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00304.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_c00304 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00304;src:url('chunks/assets/font_e5dabf7264765bc0b2f95ad7.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.284180;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_c00304;src:url('chunks/assets/font_6c631303bbb909a157276d1f.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:0.666000;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_c00304;src:url('chunks/assets/font_69c2475941412e5250f54432.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;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:ff4_c00304;src:url('chunks/assets/font_4cf0092f0db8a0c6054d2d4e.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:1.284668;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_c00304{transform:matrix(0.113426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113426,0.000000,0.000000,0.250000,0,0);}
.m6_c00304{transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);}
.m9_c00304{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m4_c00304{transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);}
.m3_c00304{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m0_c00304{transform:matrix(0.236524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236524,0.000000,0.000000,0.250000,0,0);}
.m8_c00304{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m1_c00304{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);}
.m7_c00304{transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);}
.m5_c00304{transform:matrix(0.301864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301864,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.v1_c00304{vertical-align:178.500000px;}
.ls4_c00304{letter-spacing:-2.226000px;}
.ls5_c00304{letter-spacing:-0.095400px;}
.lsb_c00304{letter-spacing:-0.057240px;}
.ls6_c00304{letter-spacing:0.000000px;}
.ls3_c00304{letter-spacing:0.400680px;}
.ls0_c00304{letter-spacing:0.610560px;}
.ls7_c00304{letter-spacing:0.642360px;}
.lsa_c00304{letter-spacing:0.680520px;}
.ls8_c00304{letter-spacing:0.973080px;}
.ls1_c00304{letter-spacing:1.017600px;}
.ls2_c00304{letter-spacing:1.265640px;}
.lsd_c00304{letter-spacing:2.966040px;}
.ls9_c00304{letter-spacing:3.030000px;}
.lsc_c00304{letter-spacing:3.210000px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{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__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00304{word-spacing:-106.918967px;}
.ws3_c00304{word-spacing:0.000000px;}
.ws1_c00304{word-spacing:0.343440px;}
.ws2_c00304{word-spacing:4.299360px;}
._2_c00304{margin-left:-15.061333px;}
._1_c00304{width:1.144800px;}
._0_c00304{width:3.345360px;}
.fc0_c00304{color:transparent;}
.fsc_c00304{font-size:31.200000px;}
.fs7_c00304{font-size:33.000600px;}
.fs1_c00304{font-size:51.840000px;}
.fsd_c00304{font-size:56.400000px;}
.fs5_c00304{font-size:60.600000px;}
.fs6_c00304{font-size:61.800000px;}
.fs9_c00304{font-size:63.000000px;}
.fs0_c00304{font-size:63.600000px;}
.fsa_c00304{font-size:64.200000px;}
.fs3_c00304{font-size:73.200000px;}
.fse_c00304{font-size:77.760000px;}
.fs4_c00304{font-size:84.960000px;}
.fs8_c00304{font-size:90.720000px;}
.fsb_c00304{font-size:93.600000px;}
.fs2_c00304{font-size:384.600600px;}
.y0_c00304{bottom:0.000000px;}
.y3_c00304{bottom:151.920015px;}
.yc_c00304{bottom:168.841215px;}
.y2_c00304{bottom:170.280015px;}
.yb_c00304{bottom:186.840015px;}
.y1_c00304{bottom:188.640015px;}
.ya_c00304{bottom:418.680015px;}
.y9_c00304{bottom:433.815015px;}
.y8_c00304{bottom:457.920015px;}
.y13_c00304{bottom:636.480015px;}
.y12_c00304{bottom:643.335015px;}
.y7_c00304{bottom:655.575015px;}
.y11_c00304{bottom:666.735015px;}
.y10_c00304{bottom:866.880015px;}
.yf_c00304{bottom:874.095015px;}
.ye_c00304{bottom:901.095015px;}
.y4_c00304{bottom:910.095015px;}
.y6_c00304{bottom:924.480015px;}
.y5_c00304{bottom:930.255015px;}
.yd_c00304{bottom:1144.815015px;}
.hd_c00304{height:32.540625px;}
.h8_c00304{height:34.418595px;}
.h3_c00304{height:34.525440px;}
.hf_c00304{height:51.788160px;}
.h5_c00304{height:56.583360px;}
.he_c00304{height:58.823438px;}
.h6_c00304{height:59.475586px;}
.h9_c00304{height:60.419520px;}
.h7_c00304{height:60.653320px;}
.ha_c00304{height:61.831055px;}
.hc_c00304{height:62.337600px;}
.h2_c00304{height:62.388867px;}
.hb_c00304{height:63.008789px;}
.h4_c00304{height:401.126407px;}
.h1_c00304{height:1263.000000px;}
.h0_c00304{height:1263.240015px;}
.w1_c00304{width:892.500000px;}
.w0_c00304{width:892.800015px;}
.x0_c00304{left:0.000000px;}
.x3_c00304{left:117.360015px;}
.x1_c00304{left:118.530015px;}
.x4_c00304{left:139.050015px;}
.x2_c00304{left:140.130015px;}
.x5_c00304{left:358.155015px;}
.x6_c00304{left:373.695015px;}
.xa_c00304{left:382.905015px;}
.x9_c00304{left:384.135015px;}
.x8_c00304{left:388.620015px;}
.x7_c00304{left:511.470015px;}
.xe_c00304{left:569.895015px;}
.xd_c00304{left:573.750015px;}
.xb_c00304{left:674.550015px;}
.xc_c00304{left:747.165015px;}
.x10_c00304{left:762.840015px;}
.xf_c00304{left:765.390015px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.v1_c00304{vertical-align:158.666667pt;}
.ls4_c00304{letter-spacing:-1.978667pt;}
.ls5_c00304{letter-spacing:-0.084800pt;}
.lsb_c00304{letter-spacing:-0.050880pt;}
.ls6_c00304{letter-spacing:0.000000pt;}
.ls3_c00304{letter-spacing:0.356160pt;}
.ls0_c00304{letter-spacing:0.542720pt;}
.ls7_c00304{letter-spacing:0.570987pt;}
.lsa_c00304{letter-spacing:0.604907pt;}
.ls8_c00304{letter-spacing:0.864960pt;}
.ls1_c00304{letter-spacing:0.904533pt;}
.ls2_c00304{letter-spacing:1.125013pt;}
.lsd_c00304{letter-spacing:2.636480pt;}
.ls9_c00304{letter-spacing:2.693333pt;}
.lsc_c00304{letter-spacing:2.853333pt;}
.ws0_c00304{word-spacing:-95.039082pt;}
.ws3_c00304{word-spacing:0.000000pt;}
.ws1_c00304{word-spacing:0.305280pt;}
.ws2_c00304{word-spacing:3.821653pt;}
._2_c00304{margin-left:-13.387852pt;}
._1_c00304{width:1.017600pt;}
._0_c00304{width:2.973653pt;}
.fsc_c00304{font-size:27.733333pt;}
.fs7_c00304{font-size:29.333867pt;}
.fs1_c00304{font-size:46.080000pt;}
.fsd_c00304{font-size:50.133333pt;}
.fs5_c00304{font-size:53.866667pt;}
.fs6_c00304{font-size:54.933333pt;}
.fs9_c00304{font-size:56.000000pt;}
.fs0_c00304{font-size:56.533333pt;}
.fsa_c00304{font-size:57.066667pt;}
.fs3_c00304{font-size:65.066667pt;}
.fse_c00304{font-size:69.120000pt;}
.fs4_c00304{font-size:75.520000pt;}
.fs8_c00304{font-size:80.640000pt;}
.fsb_c00304{font-size:83.200000pt;}
.fs2_c00304{font-size:341.867200pt;}
.y0_c00304{bottom:0.000000pt;}
.y3_c00304{bottom:135.040013pt;}
.yc_c00304{bottom:150.081080pt;}
.y2_c00304{bottom:151.360013pt;}
.yb_c00304{bottom:166.080013pt;}
.y1_c00304{bottom:167.680013pt;}
.ya_c00304{bottom:372.160013pt;}
.y9_c00304{bottom:385.613347pt;}
.y8_c00304{bottom:407.040013pt;}
.y13_c00304{bottom:565.760013pt;}
.y12_c00304{bottom:571.853347pt;}
.y7_c00304{bottom:582.733347pt;}
.y11_c00304{bottom:592.653347pt;}
.y10_c00304{bottom:770.560013pt;}
.yf_c00304{bottom:776.973347pt;}
.ye_c00304{bottom:800.973347pt;}
.y4_c00304{bottom:808.973347pt;}
.y6_c00304{bottom:821.760013pt;}
.y5_c00304{bottom:826.893347pt;}
.yd_c00304{bottom:1017.613347pt;}
.hd_c00304{height:28.925000pt;}
.h8_c00304{height:30.594306pt;}
.h3_c00304{height:30.689280pt;}
.hf_c00304{height:46.033920pt;}
.h5_c00304{height:50.296320pt;}
.he_c00304{height:52.287500pt;}
.h6_c00304{height:52.867187pt;}
.h9_c00304{height:53.706240pt;}
.h7_c00304{height:53.914062pt;}
.ha_c00304{height:54.960938pt;}
.hc_c00304{height:55.411200pt;}
.h2_c00304{height:55.456771pt;}
.hb_c00304{height:56.007812pt;}
.h4_c00304{height:356.556806pt;}
.h1_c00304{height:1122.666667pt;}
.h0_c00304{height:1122.880013pt;}
.w1_c00304{width:793.333333pt;}
.w0_c00304{width:793.600013pt;}
.x0_c00304{left:0.000000pt;}
.x3_c00304{left:104.320013pt;}
.x1_c00304{left:105.360013pt;}
.x4_c00304{left:123.600013pt;}
.x2_c00304{left:124.560013pt;}
.x5_c00304{left:318.360013pt;}
.x6_c00304{left:332.173347pt;}
.xa_c00304{left:340.360013pt;}
.x9_c00304{left:341.453347pt;}
.x8_c00304{left:345.440013pt;}
.x7_c00304{left:454.640013pt;}
.xe_c00304{left:506.573347pt;}
.xd_c00304{left:510.000013pt;}
.xb_c00304{left:599.600013pt;}
.xc_c00304{left:664.146680pt;}
.x10_c00304{left:678.080013pt;}
.xf_c00304{left:680.346680pt;}
}





/* 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_c00305 {
    display:none;
  }
  .loading-indicator_c00305.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00305 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_c00305 { 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_c00305" -> "#page-container .classname_c00305")
 */
.pf_c00305 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00305 { /* 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_c00305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00305 { /* 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_c00305 { /* 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_c00305 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00305 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00305 {overflow:visible;}
  }
}
.c_c00305 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00305 { /* 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_c00305:after { /* webkit #35443 */
  content: '';
}
.t_c00305:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00305 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 */
}
.__c00305 { /* 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_c00305 { /* info for Javascript */
  display:none;
}
.l_c00305 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00305 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00305 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00305: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_c00305 {
    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_c00305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00305.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_c00305 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00305;src:url('chunks/assets/font_5bfa9df2eb0a4345e5f1dd0a.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.284668;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_c00305;src:url('chunks/assets/font_16205ada64970a23512850de.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.284180;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_c00305;src:url('chunks/assets/font_82406d96961972b068ab2870.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:0.666000;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_c00305;src:url('chunks/assets/font_ac294708e142cb07f183cf20.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;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;}
.m4_c00305{transform:matrix(0.160090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160090,0.000000,0.000000,0.250000,0,0);}
.m2_c00305{transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);}
.m1_c00305{transform:matrix(0.184149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184149,0.000000,0.000000,0.250000,0,0);}
.m3_c00305{transform:matrix(0.186706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186706,0.000000,0.000000,0.250000,0,0);}
.m9_c00305{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.mb_c00305{transform:matrix(0.236469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236469,0.000000,0.000000,0.250000,0,0);}
.ma_c00305{transform:matrix(0.241779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241779,0.000000,0.000000,0.250000,0,0);}
.m6_c00305{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.mc_c00305{transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);}
.m0_c00305{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);}
.m5_c00305{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m7_c00305{transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);}
.m8_c00305{transform:matrix(0.258002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258002,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.lsa5_c00305{letter-spacing:-2.541000px;}
.ls8a_c00305{letter-spacing:-2.415000px;}
.ls7f_c00305{letter-spacing:-2.394000px;}
.ls9e_c00305{letter-spacing:-2.373000px;}
.ls98_c00305{letter-spacing:-2.352000px;}
.lsa6_c00305{letter-spacing:-2.170740px;}
.ls9b_c00305{letter-spacing:-1.891620px;}
.ls79_c00305{letter-spacing:-1.830600px;}
.ls92_c00305{letter-spacing:-1.600080px;}
.ls8c_c00305{letter-spacing:-1.430580px;}
.lsa1_c00305{letter-spacing:-1.410240px;}
.ls8f_c00305{letter-spacing:-1.403460px;}
.lsa3_c00305{letter-spacing:-1.220400px;}
.lsa4_c00305{letter-spacing:-1.010220px;}
.lsa8_c00305{letter-spacing:-0.976320px;}
.ls83_c00305{letter-spacing:-0.867840px;}
.ls8b_c00305{letter-spacing:-0.847500px;}
.ls87_c00305{letter-spacing:-0.725460px;}
.ls9d_c00305{letter-spacing:-0.623760px;}
.ls7e_c00305{letter-spacing:-0.522060px;}
.lsaa_c00305{letter-spacing:-0.450300px;}
.lsa2_c00305{letter-spacing:-0.440700px;}
.ls99_c00305{letter-spacing:-0.422400px;}
.ls96_c00305{letter-spacing:-0.359340px;}
.ls82_c00305{letter-spacing:-0.325440px;}
.ls91_c00305{letter-spacing:-0.311880px;}
.ls93_c00305{letter-spacing:-0.305100px;}
.ls8d_c00305{letter-spacing:-0.264420px;}
.lsa0_c00305{letter-spacing:-0.257640px;}
.ls86_c00305{letter-spacing:-0.244080px;}
.lsa7_c00305{letter-spacing:-0.210180px;}
.ls8e_c00305{letter-spacing:-0.189840px;}
.ls9c_c00305{letter-spacing:-0.135600px;}
.ls80_c00305{letter-spacing:-0.128820px;}
.ls9a_c00305{letter-spacing:-0.081360px;}
.ls9f_c00305{letter-spacing:-0.013560px;}
.ls7b_c00305{letter-spacing:0.000000px;}
.ls24_c00305{letter-spacing:0.033900px;}
.ls58_c00305{letter-spacing:0.040680px;}
.ls74_c00305{letter-spacing:0.149160px;}
.ls6b_c00305{letter-spacing:0.155940px;}
.ls18_c00305{letter-spacing:0.169500px;}
.ls47_c00305{letter-spacing:0.210180px;}
.ls4a_c00305{letter-spacing:0.216960px;}
.ls64_c00305{letter-spacing:0.237300px;}
.ls33_c00305{letter-spacing:0.264420px;}
.ls65_c00305{letter-spacing:0.298320px;}
.ls5f_c00305{letter-spacing:0.311880px;}
.ls10_c00305{letter-spacing:0.325440px;}
.ls44_c00305{letter-spacing:0.339000px;}
.ls81_c00305{letter-spacing:0.359340px;}
.ls3d_c00305{letter-spacing:0.379680px;}
.ls63_c00305{letter-spacing:0.393240px;}
.ls56_c00305{letter-spacing:0.413580px;}
.ls7c_c00305{letter-spacing:0.433920px;}
.ls37_c00305{letter-spacing:0.440700px;}
.ls5a_c00305{letter-spacing:0.454260px;}
.ls49_c00305{letter-spacing:0.488160px;}
.ls4e_c00305{letter-spacing:0.494940px;}
.ls84_c00305{letter-spacing:0.501720px;}
.ls55_c00305{letter-spacing:0.515280px;}
.ls67_c00305{letter-spacing:0.528840px;}
.ls41_c00305{letter-spacing:0.555960px;}
.ls0_c00305{letter-spacing:0.562740px;}
.ls28_c00305{letter-spacing:0.569520px;}
.ls68_c00305{letter-spacing:0.576300px;}
.ls48_c00305{letter-spacing:0.583080px;}
.ls42_c00305{letter-spacing:0.616980px;}
.ls53_c00305{letter-spacing:0.630540px;}
.ls85_c00305{letter-spacing:0.644100px;}
.ls94_c00305{letter-spacing:0.657660px;}
.ls5d_c00305{letter-spacing:0.675120px;}
.ls61_c00305{letter-spacing:0.678000px;}
.ls59_c00305{letter-spacing:0.684780px;}
.ls5e_c00305{letter-spacing:0.691560px;}
.ls2_c00305{letter-spacing:0.698340px;}
.ls7_c00305{letter-spacing:0.705120px;}
.ls70_c00305{letter-spacing:0.711900px;}
.ls75_c00305{letter-spacing:0.739020px;}
.ls57_c00305{letter-spacing:0.745800px;}
.ls19_c00305{letter-spacing:0.752580px;}
.ls90_c00305{letter-spacing:0.766140px;}
.ls30_c00305{letter-spacing:0.786480px;}
.ls4f_c00305{letter-spacing:0.793260px;}
.ls27_c00305{letter-spacing:0.800040px;}
.ls13_c00305{letter-spacing:0.813600px;}
.ls6d_c00305{letter-spacing:0.820380px;}
.ls39_c00305{letter-spacing:0.833940px;}
.ls3e_c00305{letter-spacing:0.840720px;}
.ls51_c00305{letter-spacing:0.861060px;}
.ls35_c00305{letter-spacing:0.867840px;}
.ls71_c00305{letter-spacing:0.881400px;}
.ls73_c00305{letter-spacing:0.901740px;}
.ls7d_c00305{letter-spacing:0.908520px;}
.ls3a_c00305{letter-spacing:0.922080px;}
.ls2b_c00305{letter-spacing:0.928860px;}
.ls1b_c00305{letter-spacing:0.962760px;}
.ls66_c00305{letter-spacing:0.969540px;}
.ls1c_c00305{letter-spacing:0.983100px;}
.ls40_c00305{letter-spacing:0.989880px;}
.ls12_c00305{letter-spacing:0.996660px;}
.lsa_c00305{letter-spacing:1.003440px;}
.ls26_c00305{letter-spacing:1.010220px;}
.ls3_c00305{letter-spacing:1.023780px;}
.ls14_c00305{letter-spacing:1.037340px;}
.ls17_c00305{letter-spacing:1.057680px;}
.lse_c00305{letter-spacing:1.078020px;}
.lsa9_c00305{letter-spacing:1.084800px;}
.ls2a_c00305{letter-spacing:1.091580px;}
.ls1e_c00305{letter-spacing:1.105140px;}
.ls1_c00305{letter-spacing:1.111920px;}
.ls2d_c00305{letter-spacing:1.145820px;}
.ls5b_c00305{letter-spacing:1.152600px;}
.ls29_c00305{letter-spacing:1.166160px;}
.lsb_c00305{letter-spacing:1.179720px;}
.ls5_c00305{letter-spacing:1.186500px;}
.ls2c_c00305{letter-spacing:1.213620px;}
.ls3c_c00305{letter-spacing:1.240740px;}
.ls11_c00305{letter-spacing:1.261080px;}
.ls52_c00305{letter-spacing:1.267860px;}
.ls6_c00305{letter-spacing:1.294980px;}
.ls38_c00305{letter-spacing:1.301760px;}
.ls22_c00305{letter-spacing:1.308540px;}
.ls4d_c00305{letter-spacing:1.315320px;}
.ls95_c00305{letter-spacing:1.338660px;}
.ls1d_c00305{letter-spacing:1.369560px;}
.ls76_c00305{letter-spacing:1.396680px;}
.ls2f_c00305{letter-spacing:1.410240px;}
.ls5c_c00305{letter-spacing:1.440720px;}
.ls15_c00305{letter-spacing:1.444140px;}
.ls31_c00305{letter-spacing:1.457700px;}
.lsd_c00305{letter-spacing:1.478040px;}
.ls4_c00305{letter-spacing:1.484820px;}
.ls32_c00305{letter-spacing:1.485180px;}
.ls8_c00305{letter-spacing:1.491600px;}
.ls20_c00305{letter-spacing:1.498380px;}
.ls7a_c00305{letter-spacing:1.505160px;}
.ls6c_c00305{letter-spacing:1.511820px;}
.ls50_c00305{letter-spacing:1.518480px;}
.ls43_c00305{letter-spacing:1.518720px;}
.ls62_c00305{letter-spacing:1.545840px;}
.ls60_c00305{letter-spacing:1.552620px;}
.ls69_c00305{letter-spacing:1.558440px;}
.ls45_c00305{letter-spacing:1.578420px;}
.ls72_c00305{letter-spacing:1.606860px;}
.ls88_c00305{letter-spacing:1.613640px;}
.ls6f_c00305{letter-spacing:1.633980px;}
.ls77_c00305{letter-spacing:1.640760px;}
.ls3b_c00305{letter-spacing:1.647540px;}
.ls6a_c00305{letter-spacing:1.665000px;}
.ls97_c00305{letter-spacing:1.683000px;}
.ls2e_c00305{letter-spacing:1.742460px;}
.ls23_c00305{letter-spacing:1.762800px;}
.ls3f_c00305{letter-spacing:1.769580px;}
.ls4b_c00305{letter-spacing:1.817040px;}
.ls54_c00305{letter-spacing:1.871280px;}
.ls78_c00305{letter-spacing:1.878600px;}
.lsf_c00305{letter-spacing:1.891620px;}
.ls1f_c00305{letter-spacing:1.918740px;}
.ls6e_c00305{letter-spacing:1.924740px;}
.ls34_c00305{letter-spacing:1.932300px;}
.ls21_c00305{letter-spacing:1.938060px;}
.ls4c_c00305{letter-spacing:2.156040px;}
.ls1a_c00305{letter-spacing:2.162820px;}
.ls9_c00305{letter-spacing:2.203500px;}
.lsc_c00305{letter-spacing:2.223840px;}
.ls46_c00305{letter-spacing:2.549280px;}
.ls16_c00305{letter-spacing:2.800140px;}
.ls36_c00305{letter-spacing:2.881500px;}
.ls25_c00305{letter-spacing:3.376440px;}
.ls89_c00305{letter-spacing:3.390000px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{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__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00305{word-spacing:0.000000px;}
.ws1_c00305{word-spacing:1.780800px;}
.ws0_c00305{word-spacing:2.633760px;}
.ws2_c00305{word-spacing:5.076300px;}
.ws3_c00305{word-spacing:11.315040px;}
._14_c00305{margin-left:-6.169800px;}
._13_c00305{margin-left:-4.888380px;}
._12_c00305{margin-left:-3.618840px;}
._c_c00305{margin-left:-2.569620px;}
._b_c00305{margin-left:-1.186500px;}
._10_c00305{width:1.023780px;}
._7_c00305{width:2.766240px;}
._17_c00305{width:3.816660px;}
._8_c00305{width:4.827360px;}
._15_c00305{width:5.891820px;}
._9_c00305{width:6.915600px;}
._11_c00305{width:8.366520px;}
._a_c00305{width:9.769980px;}
._16_c00305{width:10.976820px;}
._6_c00305{width:12.400620px;}
._5_c00305{width:13.919340px;}
._4_c00305{width:15.322800px;}
._2_c00305{width:16.570320px;}
._e_c00305{width:17.587320px;}
._3_c00305{width:19.024680px;}
._0_c00305{width:20.340000px;}
._1_c00305{width:21.628200px;}
._f_c00305{width:22.767240px;}
._d_c00305{width:24.096120px;}
.fc0_c00305{color:transparent;}
.fs4_c00305{font-size:53.280000px;}
.fs5_c00305{font-size:54.720000px;}
.fsc_c00305{font-size:57.000000px;}
.fs0_c00305{font-size:60.600000px;}
.fs8_c00305{font-size:66.000000px;}
.fs2_c00305{font-size:66.600000px;}
.fs9_c00305{font-size:67.200000px;}
.fs1_c00305{font-size:67.800000px;}
.fs3_c00305{font-size:68.400000px;}
.fs6_c00305{font-size:69.000000px;}
.fsa_c00305{font-size:69.600000px;}
.fsb_c00305{font-size:72.600000px;}
.fs7_c00305{font-size:73.800000px;}
.y0_c00305{bottom:0.000000px;}
.y1f_c00305{bottom:69.120015px;}
.y1e_c00305{bottom:124.925265px;}
.y1d_c00305{bottom:155.520015px;}
.y1c_c00305{bottom:217.455015px;}
.y1b_c00305{bottom:248.775015px;}
.y1a_c00305{bottom:310.332915px;}
.y19_c00305{bottom:340.215765px;}
.y18_c00305{bottom:401.761215px;}
.y17_c00305{bottom:432.000015px;}
.y16_c00305{bottom:493.920015px;}
.y15_c00305{bottom:493.927365px;}
.y13_c00305{bottom:524.889315px;}
.y14_c00305{bottom:524.895015px;}
.y12_c00305{bottom:555.840015px;}
.y11_c00305{bottom:617.761215px;}
.y10_c00305{bottom:648.000015px;}
.yf_c00305{bottom:709.911615px;}
.ye_c00305{bottom:740.167365px;}
.yd_c00305{bottom:771.127365px;}
.yc_c00305{bottom:802.095015px;}
.ya_c00305{bottom:864.359715px;}
.yb_c00305{bottom:864.360015px;}
.y8_c00305{bottom:897.473715px;}
.y9_c00305{bottom:897.480015px;}
.y7_c00305{bottom:930.255015px;}
.y6_c00305{bottom:992.882115px;}
.y5_c00305{bottom:1023.476865px;}
.y4_c00305{bottom:1054.088565px;}
.y3_c00305{bottom:1084.327365px;}
.y2_c00305{bottom:1115.295015px;}
.y1_c00305{bottom:1190.880015px;}
.h5_c00305{height:35.484480px;}
.h6_c00305{height:36.443520px;}
.h10_c00305{height:55.942383px;}
.h2_c00305{height:59.475586px;}
.ha_c00305{height:65.331738px;}
.hc_c00305{height:65.953125px;}
.h3_c00305{height:66.541992px;}
.h8_c00305{height:66.572592px;}
.h9_c00305{height:66.575592px;}
.h4_c00305{height:67.130859px;}
.hd_c00305{height:68.274609px;}
.he_c00305{height:69.470119px;}
.hf_c00305{height:71.252930px;}
.h7_c00305{height:71.964844px;}
.hb_c00305{height:72.430664px;}
.h1_c00305{height:1263.000000px;}
.h0_c00305{height:1263.240015px;}
.w1_c00305{width:892.500000px;}
.w0_c00305{width:892.800015px;}
.x0_c00305{left:0.000000px;}
.x20_c00305{left:122.601465px;}
.x1_c00305{left:123.765015px;}
.x2_c00305{left:124.765965px;}
.xa_c00305{left:160.485015px;}
.x1d_c00305{left:175.110015px;}
.x3_c00305{left:177.270015px;}
.x19_c00305{left:179.558265px;}
.x12_c00305{left:189.255015px;}
.xb_c00305{left:192.420015px;}
.x13_c00305{left:212.685015px;}
.x6_c00305{left:264.615015px;}
.xf_c00305{left:283.860015px;}
.x18_c00305{left:293.775015px;}
.x16_c00305{left:296.550015px;}
.x7_c00305{left:298.620015px;}
.x10_c00305{left:305.100015px;}
.x17_c00305{left:319.875015px;}
.x11_c00305{left:322.380015px;}
.x1b_c00305{left:369.150015px;}
.xc_c00305{left:390.975015px;}
.x1c_c00305{left:420.330015px;}
.xd_c00305{left:422.460015px;}
.x21_c00305{left:424.710015px;}
.x4_c00305{left:467.925015px;}
.x5_c00305{left:500.670015px;}
.x1a_c00305{left:501.975015px;}
.x8_c00305{left:517.965015px;}
.x9_c00305{left:551.700015px;}
.x14_c00305{left:555.210015px;}
.x15_c00305{left:574.380015px;}
.xe_c00305{left:629.565015px;}
.x1e_c00305{left:683.415015px;}
.x1f_c00305{left:712.275015px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.lsa5_c00305{letter-spacing:-2.258667pt;}
.ls8a_c00305{letter-spacing:-2.146667pt;}
.ls7f_c00305{letter-spacing:-2.128000pt;}
.ls9e_c00305{letter-spacing:-2.109333pt;}
.ls98_c00305{letter-spacing:-2.090667pt;}
.lsa6_c00305{letter-spacing:-1.929547pt;}
.ls9b_c00305{letter-spacing:-1.681440pt;}
.ls79_c00305{letter-spacing:-1.627200pt;}
.ls92_c00305{letter-spacing:-1.422293pt;}
.ls8c_c00305{letter-spacing:-1.271627pt;}
.lsa1_c00305{letter-spacing:-1.253547pt;}
.ls8f_c00305{letter-spacing:-1.247520pt;}
.lsa3_c00305{letter-spacing:-1.084800pt;}
.lsa4_c00305{letter-spacing:-0.897973pt;}
.lsa8_c00305{letter-spacing:-0.867840pt;}
.ls83_c00305{letter-spacing:-0.771413pt;}
.ls8b_c00305{letter-spacing:-0.753333pt;}
.ls87_c00305{letter-spacing:-0.644853pt;}
.ls9d_c00305{letter-spacing:-0.554453pt;}
.ls7e_c00305{letter-spacing:-0.464053pt;}
.lsaa_c00305{letter-spacing:-0.400267pt;}
.lsa2_c00305{letter-spacing:-0.391733pt;}
.ls99_c00305{letter-spacing:-0.375467pt;}
.ls96_c00305{letter-spacing:-0.319413pt;}
.ls82_c00305{letter-spacing:-0.289280pt;}
.ls91_c00305{letter-spacing:-0.277227pt;}
.ls93_c00305{letter-spacing:-0.271200pt;}
.ls8d_c00305{letter-spacing:-0.235040pt;}
.lsa0_c00305{letter-spacing:-0.229013pt;}
.ls86_c00305{letter-spacing:-0.216960pt;}
.lsa7_c00305{letter-spacing:-0.186827pt;}
.ls8e_c00305{letter-spacing:-0.168747pt;}
.ls9c_c00305{letter-spacing:-0.120533pt;}
.ls80_c00305{letter-spacing:-0.114507pt;}
.ls9a_c00305{letter-spacing:-0.072320pt;}
.ls9f_c00305{letter-spacing:-0.012053pt;}
.ls7b_c00305{letter-spacing:0.000000pt;}
.ls24_c00305{letter-spacing:0.030133pt;}
.ls58_c00305{letter-spacing:0.036160pt;}
.ls74_c00305{letter-spacing:0.132587pt;}
.ls6b_c00305{letter-spacing:0.138613pt;}
.ls18_c00305{letter-spacing:0.150667pt;}
.ls47_c00305{letter-spacing:0.186827pt;}
.ls4a_c00305{letter-spacing:0.192853pt;}
.ls64_c00305{letter-spacing:0.210933pt;}
.ls33_c00305{letter-spacing:0.235040pt;}
.ls65_c00305{letter-spacing:0.265173pt;}
.ls5f_c00305{letter-spacing:0.277227pt;}
.ls10_c00305{letter-spacing:0.289280pt;}
.ls44_c00305{letter-spacing:0.301333pt;}
.ls81_c00305{letter-spacing:0.319413pt;}
.ls3d_c00305{letter-spacing:0.337493pt;}
.ls63_c00305{letter-spacing:0.349547pt;}
.ls56_c00305{letter-spacing:0.367627pt;}
.ls7c_c00305{letter-spacing:0.385707pt;}
.ls37_c00305{letter-spacing:0.391733pt;}
.ls5a_c00305{letter-spacing:0.403787pt;}
.ls49_c00305{letter-spacing:0.433920pt;}
.ls4e_c00305{letter-spacing:0.439947pt;}
.ls84_c00305{letter-spacing:0.445973pt;}
.ls55_c00305{letter-spacing:0.458027pt;}
.ls67_c00305{letter-spacing:0.470080pt;}
.ls41_c00305{letter-spacing:0.494187pt;}
.ls0_c00305{letter-spacing:0.500213pt;}
.ls28_c00305{letter-spacing:0.506240pt;}
.ls68_c00305{letter-spacing:0.512267pt;}
.ls48_c00305{letter-spacing:0.518293pt;}
.ls42_c00305{letter-spacing:0.548427pt;}
.ls53_c00305{letter-spacing:0.560480pt;}
.ls85_c00305{letter-spacing:0.572533pt;}
.ls94_c00305{letter-spacing:0.584587pt;}
.ls5d_c00305{letter-spacing:0.600107pt;}
.ls61_c00305{letter-spacing:0.602667pt;}
.ls59_c00305{letter-spacing:0.608693pt;}
.ls5e_c00305{letter-spacing:0.614720pt;}
.ls2_c00305{letter-spacing:0.620747pt;}
.ls7_c00305{letter-spacing:0.626773pt;}
.ls70_c00305{letter-spacing:0.632800pt;}
.ls75_c00305{letter-spacing:0.656907pt;}
.ls57_c00305{letter-spacing:0.662933pt;}
.ls19_c00305{letter-spacing:0.668960pt;}
.ls90_c00305{letter-spacing:0.681013pt;}
.ls30_c00305{letter-spacing:0.699093pt;}
.ls4f_c00305{letter-spacing:0.705120pt;}
.ls27_c00305{letter-spacing:0.711147pt;}
.ls13_c00305{letter-spacing:0.723200pt;}
.ls6d_c00305{letter-spacing:0.729227pt;}
.ls39_c00305{letter-spacing:0.741280pt;}
.ls3e_c00305{letter-spacing:0.747307pt;}
.ls51_c00305{letter-spacing:0.765387pt;}
.ls35_c00305{letter-spacing:0.771413pt;}
.ls71_c00305{letter-spacing:0.783467pt;}
.ls73_c00305{letter-spacing:0.801547pt;}
.ls7d_c00305{letter-spacing:0.807573pt;}
.ls3a_c00305{letter-spacing:0.819627pt;}
.ls2b_c00305{letter-spacing:0.825653pt;}
.ls1b_c00305{letter-spacing:0.855787pt;}
.ls66_c00305{letter-spacing:0.861813pt;}
.ls1c_c00305{letter-spacing:0.873867pt;}
.ls40_c00305{letter-spacing:0.879893pt;}
.ls12_c00305{letter-spacing:0.885920pt;}
.lsa_c00305{letter-spacing:0.891947pt;}
.ls26_c00305{letter-spacing:0.897973pt;}
.ls3_c00305{letter-spacing:0.910027pt;}
.ls14_c00305{letter-spacing:0.922080pt;}
.ls17_c00305{letter-spacing:0.940160pt;}
.lse_c00305{letter-spacing:0.958240pt;}
.lsa9_c00305{letter-spacing:0.964267pt;}
.ls2a_c00305{letter-spacing:0.970293pt;}
.ls1e_c00305{letter-spacing:0.982347pt;}
.ls1_c00305{letter-spacing:0.988373pt;}
.ls2d_c00305{letter-spacing:1.018507pt;}
.ls5b_c00305{letter-spacing:1.024533pt;}
.ls29_c00305{letter-spacing:1.036587pt;}
.lsb_c00305{letter-spacing:1.048640pt;}
.ls5_c00305{letter-spacing:1.054667pt;}
.ls2c_c00305{letter-spacing:1.078773pt;}
.ls3c_c00305{letter-spacing:1.102880pt;}
.ls11_c00305{letter-spacing:1.120960pt;}
.ls52_c00305{letter-spacing:1.126987pt;}
.ls6_c00305{letter-spacing:1.151093pt;}
.ls38_c00305{letter-spacing:1.157120pt;}
.ls22_c00305{letter-spacing:1.163147pt;}
.ls4d_c00305{letter-spacing:1.169173pt;}
.ls95_c00305{letter-spacing:1.189920pt;}
.ls1d_c00305{letter-spacing:1.217387pt;}
.ls76_c00305{letter-spacing:1.241493pt;}
.ls2f_c00305{letter-spacing:1.253547pt;}
.ls5c_c00305{letter-spacing:1.280640pt;}
.ls15_c00305{letter-spacing:1.283680pt;}
.ls31_c00305{letter-spacing:1.295733pt;}
.lsd_c00305{letter-spacing:1.313813pt;}
.ls4_c00305{letter-spacing:1.319840pt;}
.ls32_c00305{letter-spacing:1.320160pt;}
.ls8_c00305{letter-spacing:1.325867pt;}
.ls20_c00305{letter-spacing:1.331893pt;}
.ls7a_c00305{letter-spacing:1.337920pt;}
.ls6c_c00305{letter-spacing:1.343840pt;}
.ls50_c00305{letter-spacing:1.349760pt;}
.ls43_c00305{letter-spacing:1.349973pt;}
.ls62_c00305{letter-spacing:1.374080pt;}
.ls60_c00305{letter-spacing:1.380107pt;}
.ls69_c00305{letter-spacing:1.385280pt;}
.ls45_c00305{letter-spacing:1.403040pt;}
.ls72_c00305{letter-spacing:1.428320pt;}
.ls88_c00305{letter-spacing:1.434347pt;}
.ls6f_c00305{letter-spacing:1.452427pt;}
.ls77_c00305{letter-spacing:1.458453pt;}
.ls3b_c00305{letter-spacing:1.464480pt;}
.ls6a_c00305{letter-spacing:1.480000pt;}
.ls97_c00305{letter-spacing:1.496000pt;}
.ls2e_c00305{letter-spacing:1.548853pt;}
.ls23_c00305{letter-spacing:1.566933pt;}
.ls3f_c00305{letter-spacing:1.572960pt;}
.ls4b_c00305{letter-spacing:1.615147pt;}
.ls54_c00305{letter-spacing:1.663360pt;}
.ls78_c00305{letter-spacing:1.669867pt;}
.lsf_c00305{letter-spacing:1.681440pt;}
.ls1f_c00305{letter-spacing:1.705547pt;}
.ls6e_c00305{letter-spacing:1.710880pt;}
.ls34_c00305{letter-spacing:1.717600pt;}
.ls21_c00305{letter-spacing:1.722720pt;}
.ls4c_c00305{letter-spacing:1.916480pt;}
.ls1a_c00305{letter-spacing:1.922507pt;}
.ls9_c00305{letter-spacing:1.958667pt;}
.lsc_c00305{letter-spacing:1.976747pt;}
.ls46_c00305{letter-spacing:2.266027pt;}
.ls16_c00305{letter-spacing:2.489013pt;}
.ls36_c00305{letter-spacing:2.561333pt;}
.ls25_c00305{letter-spacing:3.001280pt;}
.ls89_c00305{letter-spacing:3.013333pt;}
.ws4_c00305{word-spacing:0.000000pt;}
.ws1_c00305{word-spacing:1.582933pt;}
.ws0_c00305{word-spacing:2.341120pt;}
.ws2_c00305{word-spacing:4.512267pt;}
.ws3_c00305{word-spacing:10.057813pt;}
._14_c00305{margin-left:-5.484267pt;}
._13_c00305{margin-left:-4.345227pt;}
._12_c00305{margin-left:-3.216747pt;}
._c_c00305{margin-left:-2.284107pt;}
._b_c00305{margin-left:-1.054667pt;}
._10_c00305{width:0.910027pt;}
._7_c00305{width:2.458880pt;}
._17_c00305{width:3.392587pt;}
._8_c00305{width:4.290987pt;}
._15_c00305{width:5.237173pt;}
._9_c00305{width:6.147200pt;}
._11_c00305{width:7.436907pt;}
._a_c00305{width:8.684427pt;}
._16_c00305{width:9.757173pt;}
._6_c00305{width:11.022773pt;}
._5_c00305{width:12.372747pt;}
._4_c00305{width:13.620267pt;}
._2_c00305{width:14.729173pt;}
._e_c00305{width:15.633173pt;}
._3_c00305{width:16.910827pt;}
._0_c00305{width:18.080000pt;}
._1_c00305{width:19.225067pt;}
._f_c00305{width:20.237547pt;}
._d_c00305{width:21.418773pt;}
.fs4_c00305{font-size:47.360000pt;}
.fs5_c00305{font-size:48.640000pt;}
.fsc_c00305{font-size:50.666667pt;}
.fs0_c00305{font-size:53.866667pt;}
.fs8_c00305{font-size:58.666667pt;}
.fs2_c00305{font-size:59.200000pt;}
.fs9_c00305{font-size:59.733333pt;}
.fs1_c00305{font-size:60.266667pt;}
.fs3_c00305{font-size:60.800000pt;}
.fs6_c00305{font-size:61.333333pt;}
.fsa_c00305{font-size:61.866667pt;}
.fsb_c00305{font-size:64.533333pt;}
.fs7_c00305{font-size:65.600000pt;}
.y0_c00305{bottom:0.000000pt;}
.y1f_c00305{bottom:61.440013pt;}
.y1e_c00305{bottom:111.044680pt;}
.y1d_c00305{bottom:138.240013pt;}
.y1c_c00305{bottom:193.293347pt;}
.y1b_c00305{bottom:221.133347pt;}
.y1a_c00305{bottom:275.851480pt;}
.y19_c00305{bottom:302.414013pt;}
.y18_c00305{bottom:357.121080pt;}
.y17_c00305{bottom:384.000013pt;}
.y16_c00305{bottom:439.040013pt;}
.y15_c00305{bottom:439.046547pt;}
.y13_c00305{bottom:466.568280pt;}
.y14_c00305{bottom:466.573347pt;}
.y12_c00305{bottom:494.080013pt;}
.y11_c00305{bottom:549.121080pt;}
.y10_c00305{bottom:576.000013pt;}
.yf_c00305{bottom:631.032547pt;}
.ye_c00305{bottom:657.926547pt;}
.yd_c00305{bottom:685.446547pt;}
.yc_c00305{bottom:712.973347pt;}
.ya_c00305{bottom:768.319747pt;}
.yb_c00305{bottom:768.320013pt;}
.y8_c00305{bottom:797.754413pt;}
.y9_c00305{bottom:797.760013pt;}
.y7_c00305{bottom:826.893347pt;}
.y6_c00305{bottom:882.561880pt;}
.y5_c00305{bottom:909.757213pt;}
.y4_c00305{bottom:936.967613pt;}
.y3_c00305{bottom:963.846547pt;}
.y2_c00305{bottom:991.373347pt;}
.y1_c00305{bottom:1058.560013pt;}
.h5_c00305{height:31.541760pt;}
.h6_c00305{height:32.394240pt;}
.h10_c00305{height:49.726562pt;}
.h2_c00305{height:52.867187pt;}
.ha_c00305{height:58.072656pt;}
.hc_c00305{height:58.625000pt;}
.h3_c00305{height:59.148438pt;}
.h8_c00305{height:59.175638pt;}
.h9_c00305{height:59.178304pt;}
.h4_c00305{height:59.671875pt;}
.hd_c00305{height:60.688542pt;}
.he_c00305{height:61.751217pt;}
.hf_c00305{height:63.335938pt;}
.h7_c00305{height:63.968750pt;}
.hb_c00305{height:64.382813pt;}
.h1_c00305{height:1122.666667pt;}
.h0_c00305{height:1122.880013pt;}
.w1_c00305{width:793.333333pt;}
.w0_c00305{width:793.600013pt;}
.x0_c00305{left:0.000000pt;}
.x20_c00305{left:108.979080pt;}
.x1_c00305{left:110.013347pt;}
.x2_c00305{left:110.903080pt;}
.xa_c00305{left:142.653347pt;}
.x1d_c00305{left:155.653347pt;}
.x3_c00305{left:157.573347pt;}
.x19_c00305{left:159.607347pt;}
.x12_c00305{left:168.226680pt;}
.xb_c00305{left:171.040013pt;}
.x13_c00305{left:189.053347pt;}
.x6_c00305{left:235.213347pt;}
.xf_c00305{left:252.320013pt;}
.x18_c00305{left:261.133347pt;}
.x16_c00305{left:263.600013pt;}
.x7_c00305{left:265.440013pt;}
.x10_c00305{left:271.200013pt;}
.x17_c00305{left:284.333347pt;}
.x11_c00305{left:286.560013pt;}
.x1b_c00305{left:328.133347pt;}
.xc_c00305{left:347.533347pt;}
.x1c_c00305{left:373.626680pt;}
.xd_c00305{left:375.520013pt;}
.x21_c00305{left:377.520013pt;}
.x4_c00305{left:415.933347pt;}
.x5_c00305{left:445.040013pt;}
.x1a_c00305{left:446.200013pt;}
.x8_c00305{left:460.413347pt;}
.x9_c00305{left:490.400013pt;}
.x14_c00305{left:493.520013pt;}
.x15_c00305{left:510.560013pt;}
.xe_c00305{left:559.613347pt;}
.x1e_c00305{left:607.480013pt;}
.x1f_c00305{left:633.133347pt;}
}





/* 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_c00306 {
    display:none;
  }
  .loading-indicator_c00306.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00306 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_c00306 { 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_c00306" -> "#page-container .classname_c00306")
 */
.pf_c00306 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00306 { /* 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_c00306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00306 { /* 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_c00306 { /* 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_c00306 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00306 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00306 {overflow:visible;}
  }
}
.c_c00306 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00306 { /* 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_c00306:after { /* webkit #35443 */
  content: '';
}
.t_c00306:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00306 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 */
}
.__c00306 { /* 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_c00306 { /* info for Javascript */
  display:none;
}
.l_c00306 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00306 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00306 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00306: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_c00306 {
    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_c00306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00306.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_c00306 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00306;src:url('chunks/assets/font_b7115ef2181132dc7862a8b8.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.284668;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_c00306;src:url('chunks/assets/font_9a4ff418873b8cc14e22f956.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.284180;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_c00306;src:url('chunks/assets/font_ab94bd7480b6021fec061a4d.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;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:ff4_c00306;src:url('chunks/assets/font_28be23b32f06521273728b85.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;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:ff5_c00306;src:url('chunks/assets/font_683cbe68f894c443b0443b50.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;line-height:1.284180;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_c00306;src:url('chunks/assets/font_90b4dc01f2c4b85c2ed488b0.woff2')format("woff");}.ff6_c00306{font-family:ff6_c00306;line-height:1.311035;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_c00306;src:url('chunks/assets/font_4c5ba8aa3e6cdb8864704e4f.woff2')format("woff");}.ff7_c00306{font-family:ff7_c00306;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;}
.m5_c00306{transform:matrix(0.178467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178467,0.000000,0.000000,0.250000,0,0);}
.m16_c00306{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.ma_c00306{transform:matrix(0.217435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217435,0.000000,0.000000,0.250000,0,0);}
.m11_c00306{transform:matrix(0.221461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221461,0.000000,0.000000,0.250000,0,0);}
.m15_c00306{transform:matrix(0.223165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223165,0.000000,0.000000,0.250000,0,0);}
.md_c00306{transform:matrix(0.230804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230804,0.000000,0.000000,0.250000,0,0);}
.m9_c00306{transform:matrix(0.231617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231617,0.000000,0.000000,0.250000,0,0);}
.m12_c00306{transform:matrix(0.232928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232928,0.000000,0.000000,0.250000,0,0);}
.me_c00306{transform:matrix(0.235428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235428,0.000000,0.000000,0.250000,0,0);}
.m14_c00306{transform:matrix(0.237855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237855,0.000000,0.000000,0.250000,0,0);}
.m4_c00306{transform:matrix(0.237963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237963,0.000000,0.000000,0.250000,0,0);}
.m7_c00306{transform:matrix(0.241087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241087,0.000000,0.000000,0.250000,0,0);}
.m1c_c00306{transform:matrix(0.241599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241599,0.000000,0.000000,0.250000,0,0);}
.m18_c00306{transform:matrix(0.241785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241785,0.000000,0.000000,0.250000,0,0);}
.m8_c00306{transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);}
.m19_c00306{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m13_c00306{transform:matrix(0.246439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246439,0.000000,0.000000,0.250000,0,0);}
.mb_c00306{transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);}
.m17_c00306{transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);}
.m6_c00306{transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);}
.m2_c00306{transform:matrix(0.247346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247346,0.000000,0.000000,0.250000,0,0);}
.mc_c00306{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.mf_c00306{transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);}
.m0_c00306{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m1a_c00306{transform:matrix(0.249046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249046,0.000000,0.000000,0.250000,0,0);}
.m10_c00306{transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);}
.m3_c00306{transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);}
.m1_c00306{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);}
.m1b_c00306{transform:matrix(0.261979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261979,0.000000,0.000000,0.250000,0,0);}
.v1_c00306{vertical-align:-18.720000px;}
.v0_c00306{vertical-align:0.000000px;}
.ls50_c00306{letter-spacing:-2.415000px;}
.ls51_c00306{letter-spacing:-2.408100px;}
.ls96_c00306{letter-spacing:-2.394000px;}
.ls86_c00306{letter-spacing:-2.373000px;}
.ls65_c00306{letter-spacing:-2.352000px;}
.ls4b_c00306{letter-spacing:-2.331000px;}
.ls70_c00306{letter-spacing:-2.242500px;}
.ls75_c00306{letter-spacing:-2.205000px;}
.ls7b_c00306{letter-spacing:-2.201100px;}
.ls69_c00306{letter-spacing:-2.166600px;}
.ls7a_c00306{letter-spacing:-2.163000px;}
.ls63_c00306{letter-spacing:-2.042400px;}
.ls62_c00306{letter-spacing:-2.028600px;}
.ls9b_c00306{letter-spacing:-2.007900px;}
.ls8e_c00306{letter-spacing:-1.959600px;}
.ls61_c00306{letter-spacing:-1.932000px;}
.ls88_c00306{letter-spacing:-1.876800px;}
.ls6a_c00306{letter-spacing:-1.656000px;}
.ls8c_c00306{letter-spacing:-1.628400px;}
.ls89_c00306{letter-spacing:-1.600800px;}
.ls83_c00306{letter-spacing:-1.593900px;}
.ls72_c00306{letter-spacing:-1.538700px;}
.ls8b_c00306{letter-spacing:-1.483500px;}
.ls64_c00306{letter-spacing:-1.421400px;}
.ls4d_c00306{letter-spacing:-1.324800px;}
.ls58_c00306{letter-spacing:-1.304100px;}
.ls56_c00306{letter-spacing:-1.276500px;}
.ls78_c00306{letter-spacing:-1.242000px;}
.ls73_c00306{letter-spacing:-1.228200px;}
.ls4e_c00306{letter-spacing:-1.207500px;}
.ls57_c00306{letter-spacing:-1.193700px;}
.ls6d_c00306{letter-spacing:-1.173000px;}
.ls6c_c00306{letter-spacing:-1.145400px;}
.ls81_c00306{letter-spacing:-1.124700px;}
.ls54_c00306{letter-spacing:-1.110900px;}
.ls6b_c00306{letter-spacing:-1.097100px;}
.ls4c_c00306{letter-spacing:-1.083300px;}
.ls5f_c00306{letter-spacing:-1.069500px;}
.ls59_c00306{letter-spacing:-1.048800px;}
.ls92_c00306{letter-spacing:-1.000500px;}
.ls98_c00306{letter-spacing:-0.963600px;}
.ls87_c00306{letter-spacing:-0.834900px;}
.ls8d_c00306{letter-spacing:-0.828000px;}
.ls5e_c00306{letter-spacing:-0.807300px;}
.ls77_c00306{letter-spacing:-0.800400px;}
.ls55_c00306{letter-spacing:-0.793500px;}
.ls9c_c00306{letter-spacing:-0.690000px;}
.ls5c_c00306{letter-spacing:-0.662400px;}
.ls7e_c00306{letter-spacing:-0.655500px;}
.ls5a_c00306{letter-spacing:-0.600300px;}
.ls60_c00306{letter-spacing:-0.579600px;}
.ls6f_c00306{letter-spacing:-0.552000px;}
.ls9a_c00306{letter-spacing:-0.503700px;}
.ls68_c00306{letter-spacing:-0.489900px;}
.ls97_c00306{letter-spacing:-0.416160px;}
.ls6e_c00306{letter-spacing:-0.400200px;}
.ls82_c00306{letter-spacing:-0.386400px;}
.ls71_c00306{letter-spacing:-0.324300px;}
.ls52_c00306{letter-spacing:-0.317400px;}
.ls74_c00306{letter-spacing:-0.220800px;}
.ls90_c00306{letter-spacing:-0.207000px;}
.ls8a_c00306{letter-spacing:-0.200100px;}
.ls76_c00306{letter-spacing:-0.176280px;}
.ls91_c00306{letter-spacing:-0.151800px;}
.ls7c_c00306{letter-spacing:-0.138000px;}
.ls7d_c00306{letter-spacing:-0.131100px;}
.ls94_c00306{letter-spacing:-0.118800px;}
.ls99_c00306{letter-spacing:-0.103500px;}
.ls8f_c00306{letter-spacing:-0.027600px;}
.ls5d_c00306{letter-spacing:0.000000px;}
.ls3a_c00306{letter-spacing:0.006900px;}
.lsa_c00306{letter-spacing:0.138000px;}
.ls38_c00306{letter-spacing:0.144900px;}
.ls49_c00306{letter-spacing:0.151800px;}
.lsb_c00306{letter-spacing:0.165600px;}
.ls53_c00306{letter-spacing:0.276000px;}
.ls5b_c00306{letter-spacing:0.303600px;}
.ls41_c00306{letter-spacing:0.324300px;}
.ls9_c00306{letter-spacing:0.331200px;}
.ls14_c00306{letter-spacing:0.345000px;}
.ls11_c00306{letter-spacing:0.351900px;}
.ls35_c00306{letter-spacing:0.386400px;}
.ls23_c00306{letter-spacing:0.414000px;}
.lsc_c00306{letter-spacing:0.434700px;}
.ls2a_c00306{letter-spacing:0.441600px;}
.ls2e_c00306{letter-spacing:0.469200px;}
.ls30_c00306{letter-spacing:0.496800px;}
.ls1_c00306{letter-spacing:0.503700px;}
.ls7f_c00306{letter-spacing:0.510600px;}
.ls43_c00306{letter-spacing:0.538200px;}
.ls22_c00306{letter-spacing:0.545100px;}
.ls17_c00306{letter-spacing:0.552000px;}
.ls7_c00306{letter-spacing:0.558900px;}
.ls42_c00306{letter-spacing:0.579600px;}
.ls1a_c00306{letter-spacing:0.593400px;}
.ls4_c00306{letter-spacing:0.607200px;}
.ls2f_c00306{letter-spacing:0.614100px;}
.ls37_c00306{letter-spacing:0.621000px;}
.ls36_c00306{letter-spacing:0.627900px;}
.ls16_c00306{letter-spacing:0.634800px;}
.ls4f_c00306{letter-spacing:0.641700px;}
.ls1c_c00306{letter-spacing:0.648600px;}
.ls95_c00306{letter-spacing:0.660000px;}
.ls18_c00306{letter-spacing:0.662400px;}
.lsd_c00306{letter-spacing:0.703800px;}
.ls13_c00306{letter-spacing:0.717600px;}
.ls46_c00306{letter-spacing:0.731400px;}
.ls10_c00306{letter-spacing:0.752100px;}
.ls1d_c00306{letter-spacing:0.759000px;}
.ls79_c00306{letter-spacing:0.793500px;}
.ls2_c00306{letter-spacing:0.800400px;}
.ls9d_c00306{letter-spacing:0.820620px;}
.ls20_c00306{letter-spacing:0.828000px;}
.ls34_c00306{letter-spacing:0.828240px;}
.lse_c00306{letter-spacing:0.848700px;}
.ls3e_c00306{letter-spacing:0.864600px;}
.ls1e_c00306{letter-spacing:0.869400px;}
.ls15_c00306{letter-spacing:0.876300px;}
.ls28_c00306{letter-spacing:0.890100px;}
.ls33_c00306{letter-spacing:0.892500px;}
.ls29_c00306{letter-spacing:0.903900px;}
.ls5_c00306{letter-spacing:0.931500px;}
.ls1b_c00306{letter-spacing:0.935640px;}
.ls84_c00306{letter-spacing:0.938400px;}
.ls2b_c00306{letter-spacing:0.942420px;}
.ls80_c00306{letter-spacing:0.972900px;}
.ls3_c00306{letter-spacing:0.979800px;}
.ls27_c00306{letter-spacing:1.000500px;}
.ls48_c00306{letter-spacing:1.044120px;}
.ls0_c00306{letter-spacing:1.055700px;}
.ls3f_c00306{letter-spacing:1.071240px;}
.ls2c_c00306{letter-spacing:1.084800px;}
.ls3c_c00306{letter-spacing:1.085640px;}
.ls24_c00306{letter-spacing:1.097100px;}
.ls4a_c00306{letter-spacing:1.110900px;}
.ls8_c00306{letter-spacing:1.179900px;}
.ls40_c00306{letter-spacing:1.186500px;}
.ls3d_c00306{letter-spacing:1.196820px;}
.ls25_c00306{letter-spacing:1.200600px;}
.ls39_c00306{letter-spacing:1.214400px;}
.ls12_c00306{letter-spacing:1.235100px;}
.ls47_c00306{letter-spacing:1.261080px;}
.lsf_c00306{letter-spacing:1.359300px;}
.ls1f_c00306{letter-spacing:1.386900px;}
.ls45_c00306{letter-spacing:1.444140px;}
.ls6_c00306{letter-spacing:1.462800px;}
.ls85_c00306{letter-spacing:1.469700px;}
.ls93_c00306{letter-spacing:1.470030px;}
.ls19_c00306{letter-spacing:1.478040px;}
.ls44_c00306{letter-spacing:1.484820px;}
.ls31_c00306{letter-spacing:1.587000px;}
.ls67_c00306{letter-spacing:1.773300px;}
.ls2d_c00306{letter-spacing:1.911300px;}
.ls26_c00306{letter-spacing:1.952700px;}
.ls32_c00306{letter-spacing:2.056200px;}
.ls21_c00306{letter-spacing:2.539200px;}
.ls3b_c00306{letter-spacing:2.841600px;}
.ls66_c00306{letter-spacing:2.884200px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{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__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00306{word-spacing:0.000000px;}
.ws2_c00306{word-spacing:5.061600px;}
.ws3_c00306{word-spacing:10.937400px;}
.ws0_c00306{word-spacing:16.515240px;}
.ws1_c00306{word-spacing:27.089400px;}
._1a_c00306{margin-left:-12.952200px;}
._1d_c00306{margin-left:-5.631780px;}
._19_c00306{margin-left:-3.367200px;}
._1c_c00306{margin-left:-1.076160px;}
._17_c00306{width:1.839600px;}
._13_c00306{width:3.219000px;}
._16_c00306{width:5.061000px;}
._b_c00306{width:6.189300px;}
._a_c00306{width:8.017800px;}
._d_c00306{width:9.049200px;}
._c_c00306{width:10.122300px;}
._9_c00306{width:11.470800px;}
._18_c00306{width:13.979400px;}
._0_c00306{width:15.104100px;}
._1b_c00306{width:17.025180px;}
._3_c00306{width:18.874200px;}
._f_c00306{width:20.217000px;}
._1_c00306{width:21.679800px;}
._2_c00306{width:23.515200px;}
._14_c00306{width:24.582900px;}
._10_c00306{width:25.761000px;}
._e_c00306{width:27.413400px;}
._11_c00306{width:28.592400px;}
._12_c00306{width:30.401400px;}
._15_c00306{width:35.336700px;}
._4_c00306{width:42.738600px;}
._5_c00306{width:44.201400px;}
._8_c00306{width:46.105800px;}
._7_c00306{width:47.113200px;}
._6_c00306{width:50.922000px;}
.fc0_c00306{color:transparent;}
.fs7_c00306{font-size:29.400600px;}
.fs8_c00306{font-size:37.200000px;}
.fse_c00306{font-size:58.200000px;}
.fsc_c00306{font-size:61.200000px;}
.fs5_c00306{font-size:61.800000px;}
.fs4_c00306{font-size:63.000000px;}
.fs9_c00306{font-size:65.400000px;}
.fsa_c00306{font-size:66.000000px;}
.fs0_c00306{font-size:66.600000px;}
.fs3_c00306{font-size:67.200000px;}
.fs2_c00306{font-size:67.800000px;}
.fsb_c00306{font-size:68.400000px;}
.fs1_c00306{font-size:69.000000px;}
.fsd_c00306{font-size:70.800000px;}
.fs6_c00306{font-size:71.400000px;}
.y0_c00306{bottom:0.000000px;}
.y1c_c00306{bottom:67.335000px;}
.y1b_c00306{bottom:185.760000px;}
.y1a_c00306{bottom:216.720000px;}
.y19_c00306{bottom:247.695000px;}
.y17_c00306{bottom:278.655000px;}
.y18_c00306{bottom:283.335000px;}
.y16_c00306{bottom:339.495000px;}
.y15_c00306{bottom:371.535000px;}
.y14_c00306{bottom:432.366750px;}
.y13_c00306{bottom:464.055000px;}
.y12_c00306{bottom:524.895000px;}
.y11_c00306{bottom:556.560000px;}
.y10_c00306{bottom:617.775000px;}
.yf_c00306{bottom:649.095000px;}
.ye_c00306{bottom:680.055000px;}
.yd_c00306{bottom:741.240000px;}
.yb_c00306{bottom:772.916250px;}
.yc_c00306{bottom:772.920000px;}
.ya_c00306{bottom:803.535000px;}
.y9_c00306{bottom:834.855000px;}
.y8_c00306{bottom:896.760000px;}
.y7_c00306{bottom:929.895000px;}
.y6_c00306{bottom:992.535000px;}
.y5_c00306{bottom:1022.760000px;}
.y4_c00306{bottom:1053.720000px;}
.y3_c00306{bottom:1084.335000px;}
.y2_c00306{bottom:1115.655000px;}
.y1_c00306{bottom:1191.600000px;}
.ha_c00306{height:30.663907px;}
.hb_c00306{height:47.795625px;}
.hf_c00306{height:57.120117px;}
.h7_c00306{height:64.455469px;}
.h2_c00306{height:65.364258px;}
.h6_c00306{height:65.707031px;}
.hd_c00306{height:66.515625px;}
.h3_c00306{height:67.719727px;}
.h5_c00306{height:67.734727px;}
.hc_c00306{height:68.934375px;}
.he_c00306{height:69.486328px;}
.h9_c00306{height:70.040332px;}
.h4_c00306{height:70.087500px;}
.h8_c00306{height:70.713281px;}
.h1_c00306{height:1263.000000px;}
.h0_c00306{height:1263.240000px;}
.w1_c00306{width:892.500000px;}
.w0_c00306{width:892.800000px;}
.x0_c00306{left:0.000000px;}
.x1c_c00306{left:121.320000px;}
.x2_c00306{left:122.730000px;}
.x1_c00306{left:123.765000px;}
.x14_c00306{left:168.450000px;}
.xd_c00306{left:175.485000px;}
.x2f_c00306{left:177.745500px;}
.x29_c00306{left:178.770000px;}
.xb_c00306{left:181.620000px;}
.x2a_c00306{left:222.480000px;}
.x1d_c00306{left:247.905000px;}
.xc_c00306{left:254.490000px;}
.x2e_c00306{left:264.240000px;}
.x1e_c00306{left:272.850000px;}
.x15_c00306{left:283.125000px;}
.x16_c00306{left:305.610000px;}
.x17_c00306{left:326.295000px;}
.xe_c00306{left:359.955000px;}
.x18_c00306{left:366.330000px;}
.x19_c00306{left:389.700000px;}
.x5_c00306{left:393.120000px;}
.xf_c00306{left:400.500000px;}
.x30_c00306{left:414.510000px;}
.x1f_c00306{left:425.730000px;}
.x33_c00306{left:427.230000px;}
.x31_c00306{left:444.150000px;}
.x6_c00306{left:449.895000px;}
.x1a_c00306{left:452.130000px;}
.x20_c00306{left:455.775000px;}
.x32_c00306{left:479.355000px;}
.x3_c00306{left:484.575000px;}
.x23_c00306{left:496.290000px;}
.x1b_c00306{left:509.400000px;}
.x10_c00306{left:515.880000px;}
.x4_c00306{left:540.390000px;}
.x11_c00306{left:551.715000px;}
.x12_c00306{left:577.680000px;}
.x2b_c00306{left:580.710000px;}
.x13_c00306{left:606.420000px;}
.x2c_c00306{left:611.310000px;}
.x21_c00306{left:621.330000px;}
.x24_c00306{left:630.420000px;}
.x26_c00306{left:642.195000px;}
.x25_c00306{left:644.580000px;}
.x22_c00306{left:674.760000px;}
.x27_c00306{left:683.100000px;}
.x9_c00306{left:690.945000px;}
.x7_c00306{left:707.790000px;}
.xa_c00306{left:709.890000px;}
.x28_c00306{left:722.430000px;}
.x8_c00306{left:738.720000px;}
.x2d_c00306{left:743.220000px;}
@media print{
.v1_c00306{vertical-align:-16.640000pt;}
.v0_c00306{vertical-align:0.000000pt;}
.ls50_c00306{letter-spacing:-2.146667pt;}
.ls51_c00306{letter-spacing:-2.140533pt;}
.ls96_c00306{letter-spacing:-2.128000pt;}
.ls86_c00306{letter-spacing:-2.109333pt;}
.ls65_c00306{letter-spacing:-2.090667pt;}
.ls4b_c00306{letter-spacing:-2.072000pt;}
.ls70_c00306{letter-spacing:-1.993333pt;}
.ls75_c00306{letter-spacing:-1.960000pt;}
.ls7b_c00306{letter-spacing:-1.956533pt;}
.ls69_c00306{letter-spacing:-1.925867pt;}
.ls7a_c00306{letter-spacing:-1.922667pt;}
.ls63_c00306{letter-spacing:-1.815467pt;}
.ls62_c00306{letter-spacing:-1.803200pt;}
.ls9b_c00306{letter-spacing:-1.784800pt;}
.ls8e_c00306{letter-spacing:-1.741867pt;}
.ls61_c00306{letter-spacing:-1.717333pt;}
.ls88_c00306{letter-spacing:-1.668267pt;}
.ls6a_c00306{letter-spacing:-1.472000pt;}
.ls8c_c00306{letter-spacing:-1.447467pt;}
.ls89_c00306{letter-spacing:-1.422933pt;}
.ls83_c00306{letter-spacing:-1.416800pt;}
.ls72_c00306{letter-spacing:-1.367733pt;}
.ls8b_c00306{letter-spacing:-1.318667pt;}
.ls64_c00306{letter-spacing:-1.263467pt;}
.ls4d_c00306{letter-spacing:-1.177600pt;}
.ls58_c00306{letter-spacing:-1.159200pt;}
.ls56_c00306{letter-spacing:-1.134667pt;}
.ls78_c00306{letter-spacing:-1.104000pt;}
.ls73_c00306{letter-spacing:-1.091733pt;}
.ls4e_c00306{letter-spacing:-1.073333pt;}
.ls57_c00306{letter-spacing:-1.061067pt;}
.ls6d_c00306{letter-spacing:-1.042667pt;}
.ls6c_c00306{letter-spacing:-1.018133pt;}
.ls81_c00306{letter-spacing:-0.999733pt;}
.ls54_c00306{letter-spacing:-0.987467pt;}
.ls6b_c00306{letter-spacing:-0.975200pt;}
.ls4c_c00306{letter-spacing:-0.962933pt;}
.ls5f_c00306{letter-spacing:-0.950667pt;}
.ls59_c00306{letter-spacing:-0.932267pt;}
.ls92_c00306{letter-spacing:-0.889333pt;}
.ls98_c00306{letter-spacing:-0.856533pt;}
.ls87_c00306{letter-spacing:-0.742133pt;}
.ls8d_c00306{letter-spacing:-0.736000pt;}
.ls5e_c00306{letter-spacing:-0.717600pt;}
.ls77_c00306{letter-spacing:-0.711467pt;}
.ls55_c00306{letter-spacing:-0.705333pt;}
.ls9c_c00306{letter-spacing:-0.613333pt;}
.ls5c_c00306{letter-spacing:-0.588800pt;}
.ls7e_c00306{letter-spacing:-0.582667pt;}
.ls5a_c00306{letter-spacing:-0.533600pt;}
.ls60_c00306{letter-spacing:-0.515200pt;}
.ls6f_c00306{letter-spacing:-0.490667pt;}
.ls9a_c00306{letter-spacing:-0.447733pt;}
.ls68_c00306{letter-spacing:-0.435467pt;}
.ls97_c00306{letter-spacing:-0.369920pt;}
.ls6e_c00306{letter-spacing:-0.355733pt;}
.ls82_c00306{letter-spacing:-0.343467pt;}
.ls71_c00306{letter-spacing:-0.288267pt;}
.ls52_c00306{letter-spacing:-0.282133pt;}
.ls74_c00306{letter-spacing:-0.196267pt;}
.ls90_c00306{letter-spacing:-0.184000pt;}
.ls8a_c00306{letter-spacing:-0.177867pt;}
.ls76_c00306{letter-spacing:-0.156693pt;}
.ls91_c00306{letter-spacing:-0.134933pt;}
.ls7c_c00306{letter-spacing:-0.122667pt;}
.ls7d_c00306{letter-spacing:-0.116533pt;}
.ls94_c00306{letter-spacing:-0.105600pt;}
.ls99_c00306{letter-spacing:-0.092000pt;}
.ls8f_c00306{letter-spacing:-0.024533pt;}
.ls5d_c00306{letter-spacing:0.000000pt;}
.ls3a_c00306{letter-spacing:0.006133pt;}
.lsa_c00306{letter-spacing:0.122667pt;}
.ls38_c00306{letter-spacing:0.128800pt;}
.ls49_c00306{letter-spacing:0.134933pt;}
.lsb_c00306{letter-spacing:0.147200pt;}
.ls53_c00306{letter-spacing:0.245333pt;}
.ls5b_c00306{letter-spacing:0.269867pt;}
.ls41_c00306{letter-spacing:0.288267pt;}
.ls9_c00306{letter-spacing:0.294400pt;}
.ls14_c00306{letter-spacing:0.306667pt;}
.ls11_c00306{letter-spacing:0.312800pt;}
.ls35_c00306{letter-spacing:0.343467pt;}
.ls23_c00306{letter-spacing:0.368000pt;}
.lsc_c00306{letter-spacing:0.386400pt;}
.ls2a_c00306{letter-spacing:0.392533pt;}
.ls2e_c00306{letter-spacing:0.417067pt;}
.ls30_c00306{letter-spacing:0.441600pt;}
.ls1_c00306{letter-spacing:0.447733pt;}
.ls7f_c00306{letter-spacing:0.453867pt;}
.ls43_c00306{letter-spacing:0.478400pt;}
.ls22_c00306{letter-spacing:0.484533pt;}
.ls17_c00306{letter-spacing:0.490667pt;}
.ls7_c00306{letter-spacing:0.496800pt;}
.ls42_c00306{letter-spacing:0.515200pt;}
.ls1a_c00306{letter-spacing:0.527467pt;}
.ls4_c00306{letter-spacing:0.539733pt;}
.ls2f_c00306{letter-spacing:0.545867pt;}
.ls37_c00306{letter-spacing:0.552000pt;}
.ls36_c00306{letter-spacing:0.558133pt;}
.ls16_c00306{letter-spacing:0.564267pt;}
.ls4f_c00306{letter-spacing:0.570400pt;}
.ls1c_c00306{letter-spacing:0.576533pt;}
.ls95_c00306{letter-spacing:0.586667pt;}
.ls18_c00306{letter-spacing:0.588800pt;}
.lsd_c00306{letter-spacing:0.625600pt;}
.ls13_c00306{letter-spacing:0.637867pt;}
.ls46_c00306{letter-spacing:0.650133pt;}
.ls10_c00306{letter-spacing:0.668533pt;}
.ls1d_c00306{letter-spacing:0.674667pt;}
.ls79_c00306{letter-spacing:0.705333pt;}
.ls2_c00306{letter-spacing:0.711467pt;}
.ls9d_c00306{letter-spacing:0.729440pt;}
.ls20_c00306{letter-spacing:0.736000pt;}
.ls34_c00306{letter-spacing:0.736213pt;}
.lse_c00306{letter-spacing:0.754400pt;}
.ls3e_c00306{letter-spacing:0.768533pt;}
.ls1e_c00306{letter-spacing:0.772800pt;}
.ls15_c00306{letter-spacing:0.778933pt;}
.ls28_c00306{letter-spacing:0.791200pt;}
.ls33_c00306{letter-spacing:0.793333pt;}
.ls29_c00306{letter-spacing:0.803467pt;}
.ls5_c00306{letter-spacing:0.828000pt;}
.ls1b_c00306{letter-spacing:0.831680pt;}
.ls84_c00306{letter-spacing:0.834133pt;}
.ls2b_c00306{letter-spacing:0.837707pt;}
.ls80_c00306{letter-spacing:0.864800pt;}
.ls3_c00306{letter-spacing:0.870933pt;}
.ls27_c00306{letter-spacing:0.889333pt;}
.ls48_c00306{letter-spacing:0.928107pt;}
.ls0_c00306{letter-spacing:0.938400pt;}
.ls3f_c00306{letter-spacing:0.952213pt;}
.ls2c_c00306{letter-spacing:0.964267pt;}
.ls3c_c00306{letter-spacing:0.965013pt;}
.ls24_c00306{letter-spacing:0.975200pt;}
.ls4a_c00306{letter-spacing:0.987467pt;}
.ls8_c00306{letter-spacing:1.048800pt;}
.ls40_c00306{letter-spacing:1.054667pt;}
.ls3d_c00306{letter-spacing:1.063840pt;}
.ls25_c00306{letter-spacing:1.067200pt;}
.ls39_c00306{letter-spacing:1.079467pt;}
.ls12_c00306{letter-spacing:1.097867pt;}
.ls47_c00306{letter-spacing:1.120960pt;}
.lsf_c00306{letter-spacing:1.208267pt;}
.ls1f_c00306{letter-spacing:1.232800pt;}
.ls45_c00306{letter-spacing:1.283680pt;}
.ls6_c00306{letter-spacing:1.300267pt;}
.ls85_c00306{letter-spacing:1.306400pt;}
.ls93_c00306{letter-spacing:1.306693pt;}
.ls19_c00306{letter-spacing:1.313813pt;}
.ls44_c00306{letter-spacing:1.319840pt;}
.ls31_c00306{letter-spacing:1.410667pt;}
.ls67_c00306{letter-spacing:1.576267pt;}
.ls2d_c00306{letter-spacing:1.698933pt;}
.ls26_c00306{letter-spacing:1.735733pt;}
.ls32_c00306{letter-spacing:1.827733pt;}
.ls21_c00306{letter-spacing:2.257067pt;}
.ls3b_c00306{letter-spacing:2.525867pt;}
.ls66_c00306{letter-spacing:2.563733pt;}
.ws4_c00306{word-spacing:0.000000pt;}
.ws2_c00306{word-spacing:4.499200pt;}
.ws3_c00306{word-spacing:9.722133pt;}
.ws0_c00306{word-spacing:14.680213pt;}
.ws1_c00306{word-spacing:24.079467pt;}
._1a_c00306{margin-left:-11.513067pt;}
._1d_c00306{margin-left:-5.006027pt;}
._19_c00306{margin-left:-2.993067pt;}
._1c_c00306{margin-left:-0.956587pt;}
._17_c00306{width:1.635200pt;}
._13_c00306{width:2.861333pt;}
._16_c00306{width:4.498667pt;}
._b_c00306{width:5.501600pt;}
._a_c00306{width:7.126933pt;}
._d_c00306{width:8.043733pt;}
._c_c00306{width:8.997600pt;}
._9_c00306{width:10.196267pt;}
._18_c00306{width:12.426133pt;}
._0_c00306{width:13.425867pt;}
._1b_c00306{width:15.133493pt;}
._3_c00306{width:16.777067pt;}
._f_c00306{width:17.970667pt;}
._1_c00306{width:19.270933pt;}
._2_c00306{width:20.902400pt;}
._14_c00306{width:21.851467pt;}
._10_c00306{width:22.898667pt;}
._e_c00306{width:24.367467pt;}
._11_c00306{width:25.415467pt;}
._12_c00306{width:27.023467pt;}
._15_c00306{width:31.410400pt;}
._4_c00306{width:37.989867pt;}
._5_c00306{width:39.290133pt;}
._8_c00306{width:40.982933pt;}
._7_c00306{width:41.878400pt;}
._6_c00306{width:45.264000pt;}
.fs7_c00306{font-size:26.133867pt;}
.fs8_c00306{font-size:33.066667pt;}
.fse_c00306{font-size:51.733333pt;}
.fsc_c00306{font-size:54.400000pt;}
.fs5_c00306{font-size:54.933333pt;}
.fs4_c00306{font-size:56.000000pt;}
.fs9_c00306{font-size:58.133333pt;}
.fsa_c00306{font-size:58.666667pt;}
.fs0_c00306{font-size:59.200000pt;}
.fs3_c00306{font-size:59.733333pt;}
.fs2_c00306{font-size:60.266667pt;}
.fsb_c00306{font-size:60.800000pt;}
.fs1_c00306{font-size:61.333333pt;}
.fsd_c00306{font-size:62.933333pt;}
.fs6_c00306{font-size:63.466667pt;}
.y0_c00306{bottom:0.000000pt;}
.y1c_c00306{bottom:59.853333pt;}
.y1b_c00306{bottom:165.120000pt;}
.y1a_c00306{bottom:192.640000pt;}
.y19_c00306{bottom:220.173333pt;}
.y17_c00306{bottom:247.693333pt;}
.y18_c00306{bottom:251.853333pt;}
.y16_c00306{bottom:301.773333pt;}
.y15_c00306{bottom:330.253333pt;}
.y14_c00306{bottom:384.326000pt;}
.y13_c00306{bottom:412.493333pt;}
.y12_c00306{bottom:466.573333pt;}
.y11_c00306{bottom:494.720000pt;}
.y10_c00306{bottom:549.133333pt;}
.yf_c00306{bottom:576.973333pt;}
.ye_c00306{bottom:604.493333pt;}
.yd_c00306{bottom:658.880000pt;}
.yb_c00306{bottom:687.036667pt;}
.yc_c00306{bottom:687.040000pt;}
.ya_c00306{bottom:714.253333pt;}
.y9_c00306{bottom:742.093333pt;}
.y8_c00306{bottom:797.120000pt;}
.y7_c00306{bottom:826.573333pt;}
.y6_c00306{bottom:882.253333pt;}
.y5_c00306{bottom:909.120000pt;}
.y4_c00306{bottom:936.640000pt;}
.y3_c00306{bottom:963.853333pt;}
.y2_c00306{bottom:991.693333pt;}
.y1_c00306{bottom:1059.200000pt;}
.ha_c00306{height:27.256806pt;}
.hb_c00306{height:42.485000pt;}
.hf_c00306{height:50.773437pt;}
.h7_c00306{height:57.293750pt;}
.h2_c00306{height:58.101562pt;}
.h6_c00306{height:58.406250pt;}
.hd_c00306{height:59.125000pt;}
.h3_c00306{height:60.195312pt;}
.h5_c00306{height:60.208646pt;}
.hc_c00306{height:61.275000pt;}
.he_c00306{height:61.765625pt;}
.h9_c00306{height:62.258073pt;}
.h4_c00306{height:62.300000pt;}
.h8_c00306{height:62.856250pt;}
.h1_c00306{height:1122.666667pt;}
.h0_c00306{height:1122.880000pt;}
.w1_c00306{width:793.333333pt;}
.w0_c00306{width:793.600000pt;}
.x0_c00306{left:0.000000pt;}
.x1c_c00306{left:107.840000pt;}
.x2_c00306{left:109.093333pt;}
.x1_c00306{left:110.013333pt;}
.x14_c00306{left:149.733333pt;}
.xd_c00306{left:155.986667pt;}
.x2f_c00306{left:157.996000pt;}
.x29_c00306{left:158.906667pt;}
.xb_c00306{left:161.440000pt;}
.x2a_c00306{left:197.760000pt;}
.x1d_c00306{left:220.360000pt;}
.xc_c00306{left:226.213333pt;}
.x2e_c00306{left:234.880000pt;}
.x1e_c00306{left:242.533333pt;}
.x15_c00306{left:251.666667pt;}
.x16_c00306{left:271.653333pt;}
.x17_c00306{left:290.040000pt;}
.xe_c00306{left:319.960000pt;}
.x18_c00306{left:325.626667pt;}
.x19_c00306{left:346.400000pt;}
.x5_c00306{left:349.440000pt;}
.xf_c00306{left:356.000000pt;}
.x30_c00306{left:368.453333pt;}
.x1f_c00306{left:378.426667pt;}
.x33_c00306{left:379.760000pt;}
.x31_c00306{left:394.800000pt;}
.x6_c00306{left:399.906667pt;}
.x1a_c00306{left:401.893333pt;}
.x20_c00306{left:405.133333pt;}
.x32_c00306{left:426.093333pt;}
.x3_c00306{left:430.733333pt;}
.x23_c00306{left:441.146667pt;}
.x1b_c00306{left:452.800000pt;}
.x10_c00306{left:458.560000pt;}
.x4_c00306{left:480.346667pt;}
.x11_c00306{left:490.413333pt;}
.x12_c00306{left:513.493333pt;}
.x2b_c00306{left:516.186667pt;}
.x13_c00306{left:539.040000pt;}
.x2c_c00306{left:543.386667pt;}
.x21_c00306{left:552.293333pt;}
.x24_c00306{left:560.373333pt;}
.x26_c00306{left:570.840000pt;}
.x25_c00306{left:572.960000pt;}
.x22_c00306{left:599.786667pt;}
.x27_c00306{left:607.200000pt;}
.x9_c00306{left:614.173333pt;}
.x7_c00306{left:629.146667pt;}
.xa_c00306{left:631.013333pt;}
.x28_c00306{left:642.160000pt;}
.x8_c00306{left:656.640000pt;}
.x2d_c00306{left:660.640000pt;}
}





/* 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_c00307 {
    display:none;
  }
  .loading-indicator_c00307.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00307 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_c00307 { 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_c00307" -> "#page-container .classname_c00307")
 */
.pf_c00307 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00307 { /* 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_c00307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00307 { /* 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_c00307 { /* 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_c00307 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00307 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00307 {overflow:visible;}
  }
}
.c_c00307 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00307 { /* 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_c00307:after { /* webkit #35443 */
  content: '';
}
.t_c00307:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00307 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 */
}
.__c00307 { /* 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_c00307 { /* info for Javascript */
  display:none;
}
.l_c00307 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00307 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00307 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00307: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_c00307 {
    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_c00307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00307.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_c00307 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00307;src:url('chunks/assets/font_2049ded6b36dd4754e333981.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.284668;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_c00307;src:url('chunks/assets/font_2cea34e4a1522308b63988a8.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.284180;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_c00307;src:url('chunks/assets/font_e5cc58055fcca96b297ee0ca.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;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;}
.m5_c00307{transform:matrix(0.166636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166636,0.000000,0.000000,0.250000,0,0);}
.m4_c00307{transform:matrix(0.171871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171871,0.000000,0.000000,0.250000,0,0);}
.m2_c00307{transform:matrix(0.174259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174259,0.000000,0.000000,0.250000,0,0);}
.mc_c00307{transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);}
.m6_c00307{transform:matrix(0.213339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213339,0.000000,0.000000,0.250000,0,0);}
.m3_c00307{transform:matrix(0.239644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239644,0.000000,0.000000,0.250000,0,0);}
.m9_c00307{transform:matrix(0.239856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239856,0.000000,0.000000,0.250000,0,0);}
.mb_c00307{transform:matrix(0.245209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245209,0.000000,0.000000,0.250000,0,0);}
.m0_c00307{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m8_c00307{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.ma_c00307{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m1_c00307{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);}
.m7_c00307{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls71_c00307{letter-spacing:-3.696000px;}
.ls5d_c00307{letter-spacing:-2.436000px;}
.ls7e_c00307{letter-spacing:-2.415000px;}
.ls5b_c00307{letter-spacing:-2.394000px;}
.ls93_c00307{letter-spacing:-2.373000px;}
.ls51_c00307{letter-spacing:-2.352480px;}
.ls4b_c00307{letter-spacing:-2.352000px;}
.ls83_c00307{letter-spacing:-2.234160px;}
.ls91_c00307{letter-spacing:-1.983600px;}
.ls89_c00307{letter-spacing:-1.955760px;}
.ls50_c00307{letter-spacing:-1.809600px;}
.ls52_c00307{letter-spacing:-1.649520px;}
.ls8b_c00307{letter-spacing:-1.600800px;}
.ls53_c00307{letter-spacing:-1.531200px;}
.ls87_c00307{letter-spacing:-1.503360px;}
.ls6e_c00307{letter-spacing:-1.475520px;}
.ls5f_c00307{letter-spacing:-1.426800px;}
.ls61_c00307{letter-spacing:-1.343280px;}
.ls88_c00307{letter-spacing:-1.294560px;}
.ls72_c00307{letter-spacing:-1.218000px;}
.ls75_c00307{letter-spacing:-1.190160px;}
.ls82_c00307{letter-spacing:-1.176240px;}
.ls5e_c00307{letter-spacing:-1.169280px;}
.ls8e_c00307{letter-spacing:-1.127520px;}
.ls8a_c00307{letter-spacing:-1.113600px;}
.ls81_c00307{letter-spacing:-1.064880px;}
.ls70_c00307{letter-spacing:-1.044000px;}
.ls68_c00307{letter-spacing:-0.974400px;}
.ls8c_c00307{letter-spacing:-0.883920px;}
.ls7a_c00307{letter-spacing:-0.835200px;}
.ls8f_c00307{letter-spacing:-0.716880px;}
.ls85_c00307{letter-spacing:-0.668160px;}
.ls73_c00307{letter-spacing:-0.619440px;}
.ls76_c00307{letter-spacing:-0.577680px;}
.ls60_c00307{letter-spacing:-0.563760px;}
.ls86_c00307{letter-spacing:-0.556800px;}
.ls4d_c00307{letter-spacing:-0.542880px;}
.ls55_c00307{letter-spacing:-0.494160px;}
.ls59_c00307{letter-spacing:-0.487200px;}
.ls90_c00307{letter-spacing:-0.466320px;}
.ls4c_c00307{letter-spacing:-0.452400px;}
.ls8d_c00307{letter-spacing:-0.445440px;}
.ls5a_c00307{letter-spacing:-0.403680px;}
.ls92_c00307{letter-spacing:-0.361920px;}
.ls69_c00307{letter-spacing:-0.334080px;}
.ls4f_c00307{letter-spacing:-0.320160px;}
.ls84_c00307{letter-spacing:-0.271440px;}
.ls65_c00307{letter-spacing:-0.264480px;}
.ls56_c00307{letter-spacing:-0.257520px;}
.ls63_c00307{letter-spacing:-0.250560px;}
.ls7d_c00307{letter-spacing:-0.243600px;}
.ls80_c00307{letter-spacing:-0.236640px;}
.ls67_c00307{letter-spacing:-0.229680px;}
.ls66_c00307{letter-spacing:-0.208800px;}
.ls6c_c00307{letter-spacing:-0.187920px;}
.ls6f_c00307{letter-spacing:-0.139200px;}
.ls6b_c00307{letter-spacing:-0.132240px;}
.ls95_c00307{letter-spacing:-0.125280px;}
.ls79_c00307{letter-spacing:-0.116280px;}
.ls6a_c00307{letter-spacing:-0.104400px;}
.ls62_c00307{letter-spacing:-0.097440px;}
.ls64_c00307{letter-spacing:-0.090480px;}
.ls58_c00307{letter-spacing:-0.076560px;}
.ls57_c00307{letter-spacing:-0.069600px;}
.ls54_c00307{letter-spacing:-0.055680px;}
.ls7c_c00307{letter-spacing:-0.027840px;}
.ls96_c00307{letter-spacing:-0.013920px;}
.ls77_c00307{letter-spacing:-0.006960px;}
.ls4e_c00307{letter-spacing:0.000000px;}
.ls1_c00307{letter-spacing:0.006960px;}
.ls1b_c00307{letter-spacing:0.013920px;}
.ls37_c00307{letter-spacing:0.020880px;}
.ls22_c00307{letter-spacing:0.041760px;}
.ls18_c00307{letter-spacing:0.062640px;}
.ls14_c00307{letter-spacing:0.076560px;}
.ls30_c00307{letter-spacing:0.090480px;}
.ls36_c00307{letter-spacing:0.097440px;}
.ls47_c00307{letter-spacing:0.111360px;}
.ls39_c00307{letter-spacing:0.125280px;}
.ls13_c00307{letter-spacing:0.132240px;}
.ls28_c00307{letter-spacing:0.139200px;}
.ls16_c00307{letter-spacing:0.146160px;}
.ls48_c00307{letter-spacing:0.153120px;}
.ls26_c00307{letter-spacing:0.167040px;}
.ls1c_c00307{letter-spacing:0.187920px;}
.ls44_c00307{letter-spacing:0.191520px;}
.ls32_c00307{letter-spacing:0.201840px;}
.ls2a_c00307{letter-spacing:0.208800px;}
.ls21_c00307{letter-spacing:0.215760px;}
.ls24_c00307{letter-spacing:0.222720px;}
.ls35_c00307{letter-spacing:0.229680px;}
.ls3d_c00307{letter-spacing:0.243600px;}
.lsd_c00307{letter-spacing:0.250560px;}
.ls45_c00307{letter-spacing:0.271440px;}
.ls74_c00307{letter-spacing:0.278400px;}
.ls29_c00307{letter-spacing:0.285360px;}
.ls40_c00307{letter-spacing:0.292320px;}
.ls33_c00307{letter-spacing:0.294120px;}
.ls3e_c00307{letter-spacing:0.306240px;}
.ls31_c00307{letter-spacing:0.320160px;}
.ls46_c00307{letter-spacing:0.327120px;}
.ls17_c00307{letter-spacing:0.348000px;}
.ls38_c00307{letter-spacing:0.361920px;}
.ls20_c00307{letter-spacing:0.368880px;}
.ls6_c00307{letter-spacing:0.375840px;}
.ls1e_c00307{letter-spacing:0.382800px;}
.ls97_c00307{letter-spacing:0.424560px;}
.ls2b_c00307{letter-spacing:0.438480px;}
.ls2c_c00307{letter-spacing:0.459360px;}
.lsb_c00307{letter-spacing:0.466320px;}
.ls7_c00307{letter-spacing:0.473280px;}
.ls1f_c00307{letter-spacing:0.478800px;}
.ls5_c00307{letter-spacing:0.480240px;}
.ls49_c00307{letter-spacing:0.494160px;}
.ls12_c00307{letter-spacing:0.515040px;}
.ls3f_c00307{letter-spacing:0.528960px;}
.lsc_c00307{letter-spacing:0.535920px;}
.ls9_c00307{letter-spacing:0.542880px;}
.ls98_c00307{letter-spacing:0.547200px;}
.ls34_c00307{letter-spacing:0.556800px;}
.ls3a_c00307{letter-spacing:0.563760px;}
.ls3_c00307{letter-spacing:0.577680px;}
.lse_c00307{letter-spacing:0.584640px;}
.ls10_c00307{letter-spacing:0.598560px;}
.lsf_c00307{letter-spacing:0.640320px;}
.ls5c_c00307{letter-spacing:0.654240px;}
.ls2_c00307{letter-spacing:0.709920px;}
.ls1d_c00307{letter-spacing:0.716880px;}
.ls8_c00307{letter-spacing:0.744720px;}
.ls7f_c00307{letter-spacing:0.792540px;}
.ls2d_c00307{letter-spacing:0.800280px;}
.ls25_c00307{letter-spacing:0.814320px;}
.ls11_c00307{letter-spacing:0.834480px;}
.ls3b_c00307{letter-spacing:0.835440px;}
.ls94_c00307{letter-spacing:0.842160px;}
.ls43_c00307{letter-spacing:0.861840px;}
.ls4_c00307{letter-spacing:0.870000px;}
.ls27_c00307{letter-spacing:0.883920px;}
.lsa_c00307{letter-spacing:0.925680px;}
.ls23_c00307{letter-spacing:0.960480px;}
.ls0_c00307{letter-spacing:0.984960px;}
.ls6d_c00307{letter-spacing:1.085760px;}
.ls2e_c00307{letter-spacing:1.127520px;}
.ls1a_c00307{letter-spacing:1.169280px;}
.ls15_c00307{letter-spacing:1.364160px;}
.ls7b_c00307{letter-spacing:1.398960px;}
.ls3c_c00307{letter-spacing:1.444320px;}
.ls19_c00307{letter-spacing:1.447680px;}
.ls2f_c00307{letter-spacing:1.552080px;}
.ls42_c00307{letter-spacing:1.593720px;}
.ls4a_c00307{letter-spacing:1.642560px;}
.ls41_c00307{letter-spacing:1.833120px;}
.ls78_c00307{letter-spacing:3.420000px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{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__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00307{word-spacing:0.000000px;}
.ws0_c00307{word-spacing:0.014160px;}
.ws4_c00307{word-spacing:0.969600px;}
.ws1_c00307{word-spacing:3.205680px;}
.ws2_c00307{word-spacing:3.224400px;}
.ws5_c00307{word-spacing:4.197840px;}
.ws3_c00307{word-spacing:4.288200px;}
._16_c00307{margin-left:-16.147200px;}
._15_c00307{margin-left:-10.988160px;}
._17_c00307{margin-left:-6.058800px;}
._3_c00307{margin-left:-3.104160px;}
._4_c00307{margin-left:-1.315440px;}
._0_c00307{width:1.468560px;}
._1_c00307{width:3.090240px;}
._2_c00307{width:4.454400px;}
._d_c00307{width:5.491440px;}
._10_c00307{width:6.799920px;}
._e_c00307{width:8.338080px;}
._c_c00307{width:9.618720px;}
._f_c00307{width:11.372640px;}
._b_c00307{width:12.604560px;}
._14_c00307{width:14.003520px;}
._a_c00307{width:15.611280px;}
._18_c00307{width:17.670480px;}
._12_c00307{width:19.287120px;}
._11_c00307{width:20.322240px;}
._8_c00307{width:21.729120px;}
._13_c00307{width:24.006000px;}
._9_c00307{width:25.480560px;}
._7_c00307{width:27.631200px;}
._5_c00307{width:29.204160px;}
._6_c00307{width:30.742320px;}
.fc0_c00307{color:transparent;}
.fs8_c00307{font-size:57.600000px;}
.fs5_c00307{font-size:66.600000px;}
.fs0_c00307{font-size:67.200000px;}
.fs7_c00307{font-size:67.800000px;}
.fs1_c00307{font-size:68.400000px;}
.fs4_c00307{font-size:69.000000px;}
.fs2_c00307{font-size:69.600000px;}
.fs6_c00307{font-size:70.800000px;}
.fs3_c00307{font-size:105.600000px;}
.y0_c00307{bottom:0.000000px;}
.y1f_c00307{bottom:69.840000px;}
.y1e_c00307{bottom:127.449600px;}
.y1d_c00307{bottom:157.673400px;}
.y1c_c00307{bottom:188.280000px;}
.y1b_c00307{bottom:249.840000px;}
.y1a_c00307{bottom:280.800000px;}
.y18_c00307{bottom:342.373800px;}
.y19_c00307{bottom:342.375000px;}
.y17_c00307{bottom:372.601800px;}
.y16_c00307{bottom:434.528400px;}
.y15_c00307{bottom:465.135000px;}
.y14_c00307{bottom:526.695000px;}
.y13_c00307{bottom:557.295000px;}
.y12_c00307{bottom:557.302800px;}
.y11_c00307{bottom:588.240000px;}
.y10_c00307{bottom:649.803000px;}
.yf_c00307{bottom:680.775000px;}
.yd_c00307{bottom:743.048400px;}
.ye_c00307{bottom:743.055000px;}
.yc_c00307{bottom:773.655000px;}
.yb_c00307{bottom:804.248400px;}
.ya_c00307{bottom:834.855000px;}
.y8_c00307{bottom:897.124200px;}
.y9_c00307{bottom:897.135000px;}
.y7_c00307{bottom:928.809600px;}
.y6_c00307{bottom:960.495000px;}
.y5_c00307{bottom:1022.764200px;}
.y4_c00307{bottom:1053.718800px;}
.y3_c00307{bottom:1084.690800px;}
.y2_c00307{bottom:1115.280000px;}
.y1_c00307{bottom:1191.240000px;}
.he_c00307{height:56.531250px;}
.ha_c00307{height:65.364258px;}
.h2_c00307{height:65.953125px;}
.h8_c00307{height:67.097461px;}
.h4_c00307{height:67.130859px;}
.h3_c00307{height:68.308594px;}
.h6_c00307{height:68.334994px;}
.h5_c00307{height:68.351794px;}
.hc_c00307{height:68.361394px;}
.hb_c00307{height:69.451758px;}
.hd_c00307{height:70.713281px;}
.h9_c00307{height:71.964844px;}
.h7_c00307{height:103.640625px;}
.h1_c00307{height:1263.000000px;}
.h0_c00307{height:1263.240000px;}
.w1_c00307{width:892.500000px;}
.w0_c00307{width:892.800000px;}
.x0_c00307{left:0.000000px;}
.x1_c00307{left:122.325000px;}
.xa_c00307{left:123.417000px;}
.x2_c00307{left:175.845000px;}
.x10_c00307{left:179.193000px;}
.xb_c00307{left:284.535000px;}
.xf_c00307{left:289.095000px;}
.x14_c00307{left:417.390000px;}
.x16_c00307{left:424.710000px;}
.x15_c00307{left:438.015000px;}
.x3_c00307{left:447.060000px;}
.x4_c00307{left:479.340000px;}
.x11_c00307{left:487.275000px;}
.x12_c00307{left:539.085000px;}
.xc_c00307{left:557.130000px;}
.x13_c00307{left:566.895000px;}
.xd_c00307{left:574.080000px;}
.x5_c00307{left:576.525000px;}
.x6_c00307{left:599.340000px;}
.x8_c00307{left:628.860000px;}
.x7_c00307{left:631.710000px;}
.x9_c00307{left:656.115000px;}
.xe_c00307{left:737.820000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls71_c00307{letter-spacing:-3.285333pt;}
.ls5d_c00307{letter-spacing:-2.165333pt;}
.ls7e_c00307{letter-spacing:-2.146667pt;}
.ls5b_c00307{letter-spacing:-2.128000pt;}
.ls93_c00307{letter-spacing:-2.109333pt;}
.ls51_c00307{letter-spacing:-2.091093pt;}
.ls4b_c00307{letter-spacing:-2.090667pt;}
.ls83_c00307{letter-spacing:-1.985920pt;}
.ls91_c00307{letter-spacing:-1.763200pt;}
.ls89_c00307{letter-spacing:-1.738453pt;}
.ls50_c00307{letter-spacing:-1.608533pt;}
.ls52_c00307{letter-spacing:-1.466240pt;}
.ls8b_c00307{letter-spacing:-1.422933pt;}
.ls53_c00307{letter-spacing:-1.361067pt;}
.ls87_c00307{letter-spacing:-1.336320pt;}
.ls6e_c00307{letter-spacing:-1.311573pt;}
.ls5f_c00307{letter-spacing:-1.268267pt;}
.ls61_c00307{letter-spacing:-1.194027pt;}
.ls88_c00307{letter-spacing:-1.150720pt;}
.ls72_c00307{letter-spacing:-1.082667pt;}
.ls75_c00307{letter-spacing:-1.057920pt;}
.ls82_c00307{letter-spacing:-1.045547pt;}
.ls5e_c00307{letter-spacing:-1.039360pt;}
.ls8e_c00307{letter-spacing:-1.002240pt;}
.ls8a_c00307{letter-spacing:-0.989867pt;}
.ls81_c00307{letter-spacing:-0.946560pt;}
.ls70_c00307{letter-spacing:-0.928000pt;}
.ls68_c00307{letter-spacing:-0.866133pt;}
.ls8c_c00307{letter-spacing:-0.785707pt;}
.ls7a_c00307{letter-spacing:-0.742400pt;}
.ls8f_c00307{letter-spacing:-0.637227pt;}
.ls85_c00307{letter-spacing:-0.593920pt;}
.ls73_c00307{letter-spacing:-0.550613pt;}
.ls76_c00307{letter-spacing:-0.513493pt;}
.ls60_c00307{letter-spacing:-0.501120pt;}
.ls86_c00307{letter-spacing:-0.494933pt;}
.ls4d_c00307{letter-spacing:-0.482560pt;}
.ls55_c00307{letter-spacing:-0.439253pt;}
.ls59_c00307{letter-spacing:-0.433067pt;}
.ls90_c00307{letter-spacing:-0.414507pt;}
.ls4c_c00307{letter-spacing:-0.402133pt;}
.ls8d_c00307{letter-spacing:-0.395947pt;}
.ls5a_c00307{letter-spacing:-0.358827pt;}
.ls92_c00307{letter-spacing:-0.321707pt;}
.ls69_c00307{letter-spacing:-0.296960pt;}
.ls4f_c00307{letter-spacing:-0.284587pt;}
.ls84_c00307{letter-spacing:-0.241280pt;}
.ls65_c00307{letter-spacing:-0.235093pt;}
.ls56_c00307{letter-spacing:-0.228907pt;}
.ls63_c00307{letter-spacing:-0.222720pt;}
.ls7d_c00307{letter-spacing:-0.216533pt;}
.ls80_c00307{letter-spacing:-0.210347pt;}
.ls67_c00307{letter-spacing:-0.204160pt;}
.ls66_c00307{letter-spacing:-0.185600pt;}
.ls6c_c00307{letter-spacing:-0.167040pt;}
.ls6f_c00307{letter-spacing:-0.123733pt;}
.ls6b_c00307{letter-spacing:-0.117547pt;}
.ls95_c00307{letter-spacing:-0.111360pt;}
.ls79_c00307{letter-spacing:-0.103360pt;}
.ls6a_c00307{letter-spacing:-0.092800pt;}
.ls62_c00307{letter-spacing:-0.086613pt;}
.ls64_c00307{letter-spacing:-0.080427pt;}
.ls58_c00307{letter-spacing:-0.068053pt;}
.ls57_c00307{letter-spacing:-0.061867pt;}
.ls54_c00307{letter-spacing:-0.049493pt;}
.ls7c_c00307{letter-spacing:-0.024747pt;}
.ls96_c00307{letter-spacing:-0.012373pt;}
.ls77_c00307{letter-spacing:-0.006187pt;}
.ls4e_c00307{letter-spacing:0.000000pt;}
.ls1_c00307{letter-spacing:0.006187pt;}
.ls1b_c00307{letter-spacing:0.012373pt;}
.ls37_c00307{letter-spacing:0.018560pt;}
.ls22_c00307{letter-spacing:0.037120pt;}
.ls18_c00307{letter-spacing:0.055680pt;}
.ls14_c00307{letter-spacing:0.068053pt;}
.ls30_c00307{letter-spacing:0.080427pt;}
.ls36_c00307{letter-spacing:0.086613pt;}
.ls47_c00307{letter-spacing:0.098987pt;}
.ls39_c00307{letter-spacing:0.111360pt;}
.ls13_c00307{letter-spacing:0.117547pt;}
.ls28_c00307{letter-spacing:0.123733pt;}
.ls16_c00307{letter-spacing:0.129920pt;}
.ls48_c00307{letter-spacing:0.136107pt;}
.ls26_c00307{letter-spacing:0.148480pt;}
.ls1c_c00307{letter-spacing:0.167040pt;}
.ls44_c00307{letter-spacing:0.170240pt;}
.ls32_c00307{letter-spacing:0.179413pt;}
.ls2a_c00307{letter-spacing:0.185600pt;}
.ls21_c00307{letter-spacing:0.191787pt;}
.ls24_c00307{letter-spacing:0.197973pt;}
.ls35_c00307{letter-spacing:0.204160pt;}
.ls3d_c00307{letter-spacing:0.216533pt;}
.lsd_c00307{letter-spacing:0.222720pt;}
.ls45_c00307{letter-spacing:0.241280pt;}
.ls74_c00307{letter-spacing:0.247467pt;}
.ls29_c00307{letter-spacing:0.253653pt;}
.ls40_c00307{letter-spacing:0.259840pt;}
.ls33_c00307{letter-spacing:0.261440pt;}
.ls3e_c00307{letter-spacing:0.272213pt;}
.ls31_c00307{letter-spacing:0.284587pt;}
.ls46_c00307{letter-spacing:0.290773pt;}
.ls17_c00307{letter-spacing:0.309333pt;}
.ls38_c00307{letter-spacing:0.321707pt;}
.ls20_c00307{letter-spacing:0.327893pt;}
.ls6_c00307{letter-spacing:0.334080pt;}
.ls1e_c00307{letter-spacing:0.340267pt;}
.ls97_c00307{letter-spacing:0.377387pt;}
.ls2b_c00307{letter-spacing:0.389760pt;}
.ls2c_c00307{letter-spacing:0.408320pt;}
.lsb_c00307{letter-spacing:0.414507pt;}
.ls7_c00307{letter-spacing:0.420693pt;}
.ls1f_c00307{letter-spacing:0.425600pt;}
.ls5_c00307{letter-spacing:0.426880pt;}
.ls49_c00307{letter-spacing:0.439253pt;}
.ls12_c00307{letter-spacing:0.457813pt;}
.ls3f_c00307{letter-spacing:0.470187pt;}
.lsc_c00307{letter-spacing:0.476373pt;}
.ls9_c00307{letter-spacing:0.482560pt;}
.ls98_c00307{letter-spacing:0.486400pt;}
.ls34_c00307{letter-spacing:0.494933pt;}
.ls3a_c00307{letter-spacing:0.501120pt;}
.ls3_c00307{letter-spacing:0.513493pt;}
.lse_c00307{letter-spacing:0.519680pt;}
.ls10_c00307{letter-spacing:0.532053pt;}
.lsf_c00307{letter-spacing:0.569173pt;}
.ls5c_c00307{letter-spacing:0.581547pt;}
.ls2_c00307{letter-spacing:0.631040pt;}
.ls1d_c00307{letter-spacing:0.637227pt;}
.ls8_c00307{letter-spacing:0.661973pt;}
.ls7f_c00307{letter-spacing:0.704480pt;}
.ls2d_c00307{letter-spacing:0.711360pt;}
.ls25_c00307{letter-spacing:0.723840pt;}
.ls11_c00307{letter-spacing:0.741760pt;}
.ls3b_c00307{letter-spacing:0.742613pt;}
.ls94_c00307{letter-spacing:0.748587pt;}
.ls43_c00307{letter-spacing:0.766080pt;}
.ls4_c00307{letter-spacing:0.773333pt;}
.ls27_c00307{letter-spacing:0.785707pt;}
.lsa_c00307{letter-spacing:0.822827pt;}
.ls23_c00307{letter-spacing:0.853760pt;}
.ls0_c00307{letter-spacing:0.875520pt;}
.ls6d_c00307{letter-spacing:0.965120pt;}
.ls2e_c00307{letter-spacing:1.002240pt;}
.ls1a_c00307{letter-spacing:1.039360pt;}
.ls15_c00307{letter-spacing:1.212587pt;}
.ls7b_c00307{letter-spacing:1.243520pt;}
.ls3c_c00307{letter-spacing:1.283840pt;}
.ls19_c00307{letter-spacing:1.286827pt;}
.ls2f_c00307{letter-spacing:1.379627pt;}
.ls42_c00307{letter-spacing:1.416640pt;}
.ls4a_c00307{letter-spacing:1.460053pt;}
.ls41_c00307{letter-spacing:1.629440pt;}
.ls78_c00307{letter-spacing:3.040000pt;}
.ws6_c00307{word-spacing:0.000000pt;}
.ws0_c00307{word-spacing:0.012587pt;}
.ws4_c00307{word-spacing:0.861867pt;}
.ws1_c00307{word-spacing:2.849493pt;}
.ws2_c00307{word-spacing:2.866133pt;}
.ws5_c00307{word-spacing:3.731413pt;}
.ws3_c00307{word-spacing:3.811733pt;}
._16_c00307{margin-left:-14.353067pt;}
._15_c00307{margin-left:-9.767253pt;}
._17_c00307{margin-left:-5.385600pt;}
._3_c00307{margin-left:-2.759253pt;}
._4_c00307{margin-left:-1.169280pt;}
._0_c00307{width:1.305387pt;}
._1_c00307{width:2.746880pt;}
._2_c00307{width:3.959467pt;}
._d_c00307{width:4.881280pt;}
._10_c00307{width:6.044373pt;}
._e_c00307{width:7.411627pt;}
._c_c00307{width:8.549973pt;}
._f_c00307{width:10.109013pt;}
._b_c00307{width:11.204053pt;}
._14_c00307{width:12.447573pt;}
._a_c00307{width:13.876693pt;}
._18_c00307{width:15.707093pt;}
._12_c00307{width:17.144107pt;}
._11_c00307{width:18.064213pt;}
._8_c00307{width:19.314773pt;}
._13_c00307{width:21.338667pt;}
._9_c00307{width:22.649387pt;}
._7_c00307{width:24.561067pt;}
._5_c00307{width:25.959253pt;}
._6_c00307{width:27.326507pt;}
.fs8_c00307{font-size:51.200000pt;}
.fs5_c00307{font-size:59.200000pt;}
.fs0_c00307{font-size:59.733333pt;}
.fs7_c00307{font-size:60.266667pt;}
.fs1_c00307{font-size:60.800000pt;}
.fs4_c00307{font-size:61.333333pt;}
.fs2_c00307{font-size:61.866667pt;}
.fs6_c00307{font-size:62.933333pt;}
.fs3_c00307{font-size:93.866667pt;}
.y0_c00307{bottom:0.000000pt;}
.y1f_c00307{bottom:62.080000pt;}
.y1e_c00307{bottom:113.288533pt;}
.y1d_c00307{bottom:140.154133pt;}
.y1c_c00307{bottom:167.360000pt;}
.y1b_c00307{bottom:222.080000pt;}
.y1a_c00307{bottom:249.600000pt;}
.y18_c00307{bottom:304.332267pt;}
.y19_c00307{bottom:304.333333pt;}
.y17_c00307{bottom:331.201600pt;}
.y16_c00307{bottom:386.247467pt;}
.y15_c00307{bottom:413.453333pt;}
.y14_c00307{bottom:468.173333pt;}
.y13_c00307{bottom:495.373333pt;}
.y12_c00307{bottom:495.380267pt;}
.y11_c00307{bottom:522.880000pt;}
.y10_c00307{bottom:577.602667pt;}
.yf_c00307{bottom:605.133333pt;}
.yd_c00307{bottom:660.487467pt;}
.ye_c00307{bottom:660.493333pt;}
.yc_c00307{bottom:687.693333pt;}
.yb_c00307{bottom:714.887467pt;}
.ya_c00307{bottom:742.093333pt;}
.y8_c00307{bottom:797.443733pt;}
.y9_c00307{bottom:797.453333pt;}
.y7_c00307{bottom:825.608533pt;}
.y6_c00307{bottom:853.773333pt;}
.y5_c00307{bottom:909.123733pt;}
.y4_c00307{bottom:936.638933pt;}
.y3_c00307{bottom:964.169600pt;}
.y2_c00307{bottom:991.360000pt;}
.y1_c00307{bottom:1058.880000pt;}
.he_c00307{height:50.250000pt;}
.ha_c00307{height:58.101562pt;}
.h2_c00307{height:58.625000pt;}
.h8_c00307{height:59.642187pt;}
.h4_c00307{height:59.671875pt;}
.h3_c00307{height:60.718750pt;}
.h6_c00307{height:60.742217pt;}
.h5_c00307{height:60.757150pt;}
.hc_c00307{height:60.765683pt;}
.hb_c00307{height:61.734896pt;}
.hd_c00307{height:62.856250pt;}
.h9_c00307{height:63.968750pt;}
.h7_c00307{height:92.125000pt;}
.h1_c00307{height:1122.666667pt;}
.h0_c00307{height:1122.880000pt;}
.w1_c00307{width:793.333333pt;}
.w0_c00307{width:793.600000pt;}
.x0_c00307{left:0.000000pt;}
.x1_c00307{left:108.733333pt;}
.xa_c00307{left:109.704000pt;}
.x2_c00307{left:156.306667pt;}
.x10_c00307{left:159.282667pt;}
.xb_c00307{left:252.920000pt;}
.xf_c00307{left:256.973333pt;}
.x14_c00307{left:371.013333pt;}
.x16_c00307{left:377.520000pt;}
.x15_c00307{left:389.346667pt;}
.x3_c00307{left:397.386667pt;}
.x4_c00307{left:426.080000pt;}
.x11_c00307{left:433.133333pt;}
.x12_c00307{left:479.186667pt;}
.xc_c00307{left:495.226667pt;}
.x13_c00307{left:503.906667pt;}
.xd_c00307{left:510.293333pt;}
.x5_c00307{left:512.466667pt;}
.x6_c00307{left:532.746667pt;}
.x8_c00307{left:558.986667pt;}
.x7_c00307{left:561.520000pt;}
.x9_c00307{left:583.213333pt;}
.xe_c00307{left:655.840000pt;}
}





/* 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_c00308 {
    display:none;
  }
  .loading-indicator_c00308.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00308 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_c00308 { 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_c00308" -> "#page-container .classname_c00308")
 */
.pf_c00308 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00308 { /* 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_c00308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00308 { /* 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_c00308 { /* 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_c00308 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00308 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00308 {overflow:visible;}
  }
}
.c_c00308 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00308 { /* 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_c00308:after { /* webkit #35443 */
  content: '';
}
.t_c00308:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00308 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 */
}
.__c00308 { /* 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_c00308 { /* info for Javascript */
  display:none;
}
.l_c00308 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00308 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00308 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00308: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_c00308 {
    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_c00308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00308.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_c00308 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00308;src:url('chunks/assets/font_cd86f8c0fe693e829e4e50d3.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.284668;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_c00308;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;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_c00308;src:url('chunks/assets/font_b87faf7c8f75e77f06e47be9.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.284180;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_c00308;src:url('chunks/assets/font_12fa194d70208e56e41e19df.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;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;}
.m4_c00308{transform:matrix(0.233602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233602,0.000000,0.000000,0.250000,0,0);}
.m3_c00308{transform:matrix(0.239378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239378,0.000000,0.000000,0.250000,0,0);}
.m6_c00308{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m0_c00308{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m1_c00308{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);}
.m2_c00308{transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);}
.m5_c00308{transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);}
.m8_c00308{transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);}
.m7_c00308{transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.ls7c_c00308{letter-spacing:-2.415000px;}
.ls77_c00308{letter-spacing:-2.352000px;}
.ls7f_c00308{letter-spacing:-2.310000px;}
.ls82_c00308{letter-spacing:-2.305080px;}
.ls8f_c00308{letter-spacing:-1.819440px;}
.ls84_c00308{letter-spacing:-1.703160px;}
.ls8b_c00308{letter-spacing:-1.682640px;}
.ls8c_c00308{letter-spacing:-1.634760px;}
.ls93_c00308{letter-spacing:-1.203840px;}
.ls86_c00308{letter-spacing:-0.697680px;}
.ls83_c00308{letter-spacing:-0.684000px;}
.ls8d_c00308{letter-spacing:-0.526680px;}
.ls92_c00308{letter-spacing:-0.506160px;}
.ls89_c00308{letter-spacing:-0.041040px;}
.ls7a_c00308{letter-spacing:0.000000px;}
.ls2f_c00308{letter-spacing:0.034200px;}
.ls94_c00308{letter-spacing:0.068400px;}
.ls95_c00308{letter-spacing:0.098940px;}
.ls31_c00308{letter-spacing:0.177840px;}
.ls1e_c00308{letter-spacing:0.198360px;}
.ls38_c00308{letter-spacing:0.218880px;}
.ls7e_c00308{letter-spacing:0.239400px;}
.ls24_c00308{letter-spacing:0.246240px;}
.ls67_c00308{letter-spacing:0.253080px;}
.ls6_c00308{letter-spacing:0.294120px;}
.ls90_c00308{letter-spacing:0.355680px;}
.ls68_c00308{letter-spacing:0.376200px;}
.ls8e_c00308{letter-spacing:0.383040px;}
.ls53_c00308{letter-spacing:0.396720px;}
.ls4_c00308{letter-spacing:0.424080px;}
.ls81_c00308{letter-spacing:0.451440px;}
.ls62_c00308{letter-spacing:0.465120px;}
.ls37_c00308{letter-spacing:0.478800px;}
.ls60_c00308{letter-spacing:0.492480px;}
.ls63_c00308{letter-spacing:0.499320px;}
.ls7d_c00308{letter-spacing:0.513000px;}
.ls29_c00308{letter-spacing:0.526680px;}
.ls58_c00308{letter-spacing:0.554040px;}
.ls5a_c00308{letter-spacing:0.560880px;}
.ls3d_c00308{letter-spacing:0.567720px;}
.ls4d_c00308{letter-spacing:0.601920px;}
.lsb_c00308{letter-spacing:0.622440px;}
.ls43_c00308{letter-spacing:0.642960px;}
.ls52_c00308{letter-spacing:0.649800px;}
.ls42_c00308{letter-spacing:0.656640px;}
.ls5d_c00308{letter-spacing:0.663480px;}
.ls74_c00308{letter-spacing:0.677160px;}
.ls2b_c00308{letter-spacing:0.684000px;}
.ls6b_c00308{letter-spacing:0.697680px;}
.ls15_c00308{letter-spacing:0.718200px;}
.ls28_c00308{letter-spacing:0.725040px;}
.ls6d_c00308{letter-spacing:0.731880px;}
.ls3_c00308{letter-spacing:0.752400px;}
.ls26_c00308{letter-spacing:0.759240px;}
.ls64_c00308{letter-spacing:0.766080px;}
.ls49_c00308{letter-spacing:0.793440px;}
.ls61_c00308{letter-spacing:0.807120px;}
.ls85_c00308{letter-spacing:0.813960px;}
.ls22_c00308{letter-spacing:0.820800px;}
.ls59_c00308{letter-spacing:0.834480px;}
.ls76_c00308{letter-spacing:0.841320px;}
.ls87_c00308{letter-spacing:0.848160px;}
.ls4b_c00308{letter-spacing:0.855000px;}
.ls50_c00308{letter-spacing:0.868680px;}
.ls8_c00308{letter-spacing:0.875520px;}
.ls70_c00308{letter-spacing:0.896040px;}
.ls88_c00308{letter-spacing:0.902880px;}
.lsf_c00308{letter-spacing:0.916560px;}
.ls1d_c00308{letter-spacing:0.930240px;}
.ls11_c00308{letter-spacing:0.937080px;}
.lsa_c00308{letter-spacing:0.943920px;}
.ls35_c00308{letter-spacing:0.957600px;}
.ls32_c00308{letter-spacing:0.964440px;}
.ls30_c00308{letter-spacing:0.971280px;}
.ls46_c00308{letter-spacing:0.978120px;}
.ls0_c00308{letter-spacing:0.984960px;}
.ls8a_c00308{letter-spacing:0.991800px;}
.lsc_c00308{letter-spacing:1.005480px;}
.ls1a_c00308{letter-spacing:1.019160px;}
.ls17_c00308{letter-spacing:1.026000px;}
.ls6a_c00308{letter-spacing:1.032840px;}
.ls3a_c00308{letter-spacing:1.039680px;}
.ls9_c00308{letter-spacing:1.046520px;}
.ls20_c00308{letter-spacing:1.060200px;}
.ls45_c00308{letter-spacing:1.067040px;}
.ls2e_c00308{letter-spacing:1.080720px;}
.ls56_c00308{letter-spacing:1.108080px;}
.ls3b_c00308{letter-spacing:1.121760px;}
.ls2_c00308{letter-spacing:1.135440px;}
.lse_c00308{letter-spacing:1.142280px;}
.ls3f_c00308{letter-spacing:1.162800px;}
.ls66_c00308{letter-spacing:1.183320px;}
.ls75_c00308{letter-spacing:1.203840px;}
.ls23_c00308{letter-spacing:1.217520px;}
.ls25_c00308{letter-spacing:1.224360px;}
.ls21_c00308{letter-spacing:1.238040px;}
.ls39_c00308{letter-spacing:1.244880px;}
.ls1c_c00308{letter-spacing:1.251720px;}
.ls2d_c00308{letter-spacing:1.258560px;}
.ls34_c00308{letter-spacing:1.265400px;}
.ls2a_c00308{letter-spacing:1.272240px;}
.ls1b_c00308{letter-spacing:1.279080px;}
.ls65_c00308{letter-spacing:1.285920px;}
.ls4e_c00308{letter-spacing:1.306440px;}
.ls12_c00308{letter-spacing:1.313280px;}
.ls1_c00308{letter-spacing:1.320120px;}
.ls36_c00308{letter-spacing:1.326960px;}
.ls80_c00308{letter-spacing:1.333800px;}
.lsd_c00308{letter-spacing:1.340640px;}
.ls16_c00308{letter-spacing:1.347480px;}
.ls2c_c00308{letter-spacing:1.361160px;}
.ls7_c00308{letter-spacing:1.395360px;}
.ls48_c00308{letter-spacing:1.402200px;}
.ls6c_c00308{letter-spacing:1.436400px;}
.ls71_c00308{letter-spacing:1.470600px;}
.ls78_c00308{letter-spacing:1.477440px;}
.ls5e_c00308{letter-spacing:1.491120px;}
.ls6e_c00308{letter-spacing:1.504800px;}
.ls18_c00308{letter-spacing:1.511640px;}
.ls69_c00308{letter-spacing:1.518480px;}
.ls54_c00308{letter-spacing:1.525320px;}
.ls4c_c00308{letter-spacing:1.532160px;}
.ls55_c00308{letter-spacing:1.539000px;}
.ls41_c00308{letter-spacing:1.545840px;}
.ls47_c00308{letter-spacing:1.573200px;}
.ls40_c00308{letter-spacing:1.580040px;}
.ls14_c00308{letter-spacing:1.648440px;}
.ls6f_c00308{letter-spacing:1.668960px;}
.ls3c_c00308{letter-spacing:1.682640px;}
.ls27_c00308{letter-spacing:1.737360px;}
.ls10_c00308{letter-spacing:1.819440px;}
.ls44_c00308{letter-spacing:1.826280px;}
.ls91_c00308{letter-spacing:1.833120px;}
.ls73_c00308{letter-spacing:1.881000px;}
.ls57_c00308{letter-spacing:1.894680px;}
.ls33_c00308{letter-spacing:1.942560px;}
.ls5c_c00308{letter-spacing:2.004120px;}
.ls4f_c00308{letter-spacing:2.065680px;}
.ls1f_c00308{letter-spacing:2.195640px;}
.ls5f_c00308{letter-spacing:2.202480px;}
.ls4a_c00308{letter-spacing:2.284560px;}
.ls72_c00308{letter-spacing:2.352960px;}
.ls7b_c00308{letter-spacing:2.455560px;}
.ls3e_c00308{letter-spacing:2.482920px;}
.ls19_c00308{letter-spacing:2.496600px;}
.ls5b_c00308{letter-spacing:2.510280px;}
.ls51_c00308{letter-spacing:2.838600px;}
.ls5_c00308{letter-spacing:3.091680px;}
.ls13_c00308{letter-spacing:3.166920px;}
.ls79_c00308{letter-spacing:3.420000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{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__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00308{word-spacing:-0.317520px;}
.ws6_c00308{word-spacing:0.000000px;}
.ws5_c00308{word-spacing:4.528080px;}
.ws1_c00308{word-spacing:6.292800px;}
.ws3_c00308{word-spacing:7.428240px;}
.ws2_c00308{word-spacing:20.659200px;}
.ws4_c00308{word-spacing:52.490160px;}
._16_c00308{margin-left:-12.106800px;}
._15_c00308{margin-left:-6.751080px;}
._9_c00308{margin-left:-5.725560px;}
._11_c00308{margin-left:-4.466520px;}
._14_c00308{margin-left:-3.344760px;}
._7_c00308{margin-left:-1.559520px;}
._8_c00308{width:1.436400px;}
._17_c00308{width:2.770200px;}
._5_c00308{width:3.796200px;}
._b_c00308{width:4.986360px;}
._4_c00308{width:6.060240px;}
._6_c00308{width:7.359840px;}
._a_c00308{width:8.707320px;}
._e_c00308{width:10.513080px;}
._2_c00308{width:11.928960px;}
._f_c00308{width:13.037040px;}
._c_c00308{width:14.247720px;}
._0_c00308{width:16.012440px;}
._10_c00308{width:18.946800px;}
._1_c00308{width:19.972800px;}
._12_c00308{width:21.134400px;}
._3_c00308{width:22.141680px;}
._13_c00308{width:24.510960px;}
._1d_c00308{width:25.992000px;}
._d_c00308{width:27.879240px;}
._1e_c00308{width:29.172960px;}
._1b_c00308{width:47.647440px;}
._1a_c00308{width:50.766480px;}
._18_c00308{width:52.339680px;}
._1c_c00308{width:53.735040px;}
._19_c00308{width:55.732320px;}
.fc0_c00308{color:transparent;}
.fs4_c00308{font-size:58.200000px;}
.fs3_c00308{font-size:66.000000px;}
.fs0_c00308{font-size:67.200000px;}
.fs1_c00308{font-size:68.400000px;}
.fs2_c00308{font-size:69.000000px;}
.y0_c00308{bottom:0.000000px;}
.y20_c00308{bottom:64.095006px;}
.y1f_c00308{bottom:150.831906px;}
.y1e_c00308{bottom:181.789806px;}
.y1d_c00308{bottom:243.366906px;}
.y1c_c00308{bottom:274.311606px;}
.y1b_c00308{bottom:305.638806px;}
.y1a_c00308{bottom:336.606906px;}
.y19_c00308{bottom:367.575006px;}
.y18_c00308{bottom:367.576206px;}
.y17_c00308{bottom:398.544306px;}
.y16_c00308{bottom:460.104306px;}
.y15_c00308{bottom:490.696206px;}
.y14_c00308{bottom:551.873706px;}
.y13_c00308{bottom:583.560006px;}
.y12_c00308{bottom:583.561806px;}
.y11_c00308{bottom:645.480906px;}
.y10_c00308{bottom:676.449006px;}
.yf_c00308{bottom:707.400006px;}
.ye_c00308{bottom:768.966906px;}
.yc_c00308{bottom:799.920006px;}
.yd_c00308{bottom:799.935006px;}
.yb_c00308{bottom:830.511906px;}
.ya_c00308{bottom:861.480006px;}
.y9_c00308{bottom:892.095006px;}
.y8_c00308{bottom:953.640006px;}
.y7_c00308{bottom:986.775006px;}
.y6_c00308{bottom:986.788506px;}
.y5_c00308{bottom:1050.486006px;}
.y3_c00308{bottom:1081.087806px;}
.y4_c00308{bottom:1081.095006px;}
.y2_c00308{bottom:1112.415006px;}
.y1_c00308{bottom:1189.095006px;}
.hb_c00308{height:57.120117px;}
.h2_c00308{height:65.953125px;}
.h5_c00308{height:67.097461px;}
.h3_c00308{height:67.130859px;}
.h8_c00308{height:67.156059px;}
.h7_c00308{height:67.163259px;}
.ha_c00308{height:67.171659px;}
.h9_c00308{height:67.224459px;}
.h6_c00308{height:68.835938px;}
.h4_c00308{height:71.964844px;}
.h1_c00308{height:1263.000000px;}
.h0_c00308{height:1263.240006px;}
.w1_c00308{width:892.500000px;}
.w0_c00308{width:892.799998px;}
.x0_c00308{left:0.000000px;}
.x19_c00308{left:121.804198px;}
.xa_c00308{left:123.299999px;}
.x4_c00308{left:124.399799px;}
.x1_c00308{left:125.564999px;}
.xb_c00308{left:146.009998px;}
.xe_c00308{left:175.484998px;}
.x7_c00308{left:176.924998px;}
.x5_c00308{left:252.179998px;}
.x6_c00308{left:270.119999px;}
.xf_c00308{left:368.819998px;}
.x10_c00308{left:390.929999px;}
.x1c_c00308{left:426.149999px;}
.x13_c00308{left:465.314998px;}
.x14_c00308{left:484.019998px;}
.xc_c00308{left:565.814999px;}
.x8_c00308{left:567.569999px;}
.x15_c00308{left:573.299998px;}
.x16_c00308{left:591.404998px;}
.xd_c00308{left:594.569999px;}
.x9_c00308{left:599.939999px;}
.x2_c00308{left:631.049998px;}
.x1a_c00308{left:641.054999px;}
.x17_c00308{left:647.894999px;}
.x1b_c00308{left:670.289999px;}
.x3_c00308{left:672.659999px;}
.x18_c00308{left:674.099999px;}
.x11_c00308{left:687.209998px;}
.x12_c00308{left:729.329998px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls7c_c00308{letter-spacing:-2.146667pt;}
.ls77_c00308{letter-spacing:-2.090667pt;}
.ls7f_c00308{letter-spacing:-2.053333pt;}
.ls82_c00308{letter-spacing:-2.048960pt;}
.ls8f_c00308{letter-spacing:-1.617280pt;}
.ls84_c00308{letter-spacing:-1.513920pt;}
.ls8b_c00308{letter-spacing:-1.495680pt;}
.ls8c_c00308{letter-spacing:-1.453120pt;}
.ls93_c00308{letter-spacing:-1.070080pt;}
.ls86_c00308{letter-spacing:-0.620160pt;}
.ls83_c00308{letter-spacing:-0.608000pt;}
.ls8d_c00308{letter-spacing:-0.468160pt;}
.ls92_c00308{letter-spacing:-0.449920pt;}
.ls89_c00308{letter-spacing:-0.036480pt;}
.ls7a_c00308{letter-spacing:0.000000pt;}
.ls2f_c00308{letter-spacing:0.030400pt;}
.ls94_c00308{letter-spacing:0.060800pt;}
.ls95_c00308{letter-spacing:0.087947pt;}
.ls31_c00308{letter-spacing:0.158080pt;}
.ls1e_c00308{letter-spacing:0.176320pt;}
.ls38_c00308{letter-spacing:0.194560pt;}
.ls7e_c00308{letter-spacing:0.212800pt;}
.ls24_c00308{letter-spacing:0.218880pt;}
.ls67_c00308{letter-spacing:0.224960pt;}
.ls6_c00308{letter-spacing:0.261440pt;}
.ls90_c00308{letter-spacing:0.316160pt;}
.ls68_c00308{letter-spacing:0.334400pt;}
.ls8e_c00308{letter-spacing:0.340480pt;}
.ls53_c00308{letter-spacing:0.352640pt;}
.ls4_c00308{letter-spacing:0.376960pt;}
.ls81_c00308{letter-spacing:0.401280pt;}
.ls62_c00308{letter-spacing:0.413440pt;}
.ls37_c00308{letter-spacing:0.425600pt;}
.ls60_c00308{letter-spacing:0.437760pt;}
.ls63_c00308{letter-spacing:0.443840pt;}
.ls7d_c00308{letter-spacing:0.456000pt;}
.ls29_c00308{letter-spacing:0.468160pt;}
.ls58_c00308{letter-spacing:0.492480pt;}
.ls5a_c00308{letter-spacing:0.498560pt;}
.ls3d_c00308{letter-spacing:0.504640pt;}
.ls4d_c00308{letter-spacing:0.535040pt;}
.lsb_c00308{letter-spacing:0.553280pt;}
.ls43_c00308{letter-spacing:0.571520pt;}
.ls52_c00308{letter-spacing:0.577600pt;}
.ls42_c00308{letter-spacing:0.583680pt;}
.ls5d_c00308{letter-spacing:0.589760pt;}
.ls74_c00308{letter-spacing:0.601920pt;}
.ls2b_c00308{letter-spacing:0.608000pt;}
.ls6b_c00308{letter-spacing:0.620160pt;}
.ls15_c00308{letter-spacing:0.638400pt;}
.ls28_c00308{letter-spacing:0.644480pt;}
.ls6d_c00308{letter-spacing:0.650560pt;}
.ls3_c00308{letter-spacing:0.668800pt;}
.ls26_c00308{letter-spacing:0.674880pt;}
.ls64_c00308{letter-spacing:0.680960pt;}
.ls49_c00308{letter-spacing:0.705280pt;}
.ls61_c00308{letter-spacing:0.717440pt;}
.ls85_c00308{letter-spacing:0.723520pt;}
.ls22_c00308{letter-spacing:0.729600pt;}
.ls59_c00308{letter-spacing:0.741760pt;}
.ls76_c00308{letter-spacing:0.747840pt;}
.ls87_c00308{letter-spacing:0.753920pt;}
.ls4b_c00308{letter-spacing:0.760000pt;}
.ls50_c00308{letter-spacing:0.772160pt;}
.ls8_c00308{letter-spacing:0.778240pt;}
.ls70_c00308{letter-spacing:0.796480pt;}
.ls88_c00308{letter-spacing:0.802560pt;}
.lsf_c00308{letter-spacing:0.814720pt;}
.ls1d_c00308{letter-spacing:0.826880pt;}
.ls11_c00308{letter-spacing:0.832960pt;}
.lsa_c00308{letter-spacing:0.839040pt;}
.ls35_c00308{letter-spacing:0.851200pt;}
.ls32_c00308{letter-spacing:0.857280pt;}
.ls30_c00308{letter-spacing:0.863360pt;}
.ls46_c00308{letter-spacing:0.869440pt;}
.ls0_c00308{letter-spacing:0.875520pt;}
.ls8a_c00308{letter-spacing:0.881600pt;}
.lsc_c00308{letter-spacing:0.893760pt;}
.ls1a_c00308{letter-spacing:0.905920pt;}
.ls17_c00308{letter-spacing:0.912000pt;}
.ls6a_c00308{letter-spacing:0.918080pt;}
.ls3a_c00308{letter-spacing:0.924160pt;}
.ls9_c00308{letter-spacing:0.930240pt;}
.ls20_c00308{letter-spacing:0.942400pt;}
.ls45_c00308{letter-spacing:0.948480pt;}
.ls2e_c00308{letter-spacing:0.960640pt;}
.ls56_c00308{letter-spacing:0.984960pt;}
.ls3b_c00308{letter-spacing:0.997120pt;}
.ls2_c00308{letter-spacing:1.009280pt;}
.lse_c00308{letter-spacing:1.015360pt;}
.ls3f_c00308{letter-spacing:1.033600pt;}
.ls66_c00308{letter-spacing:1.051840pt;}
.ls75_c00308{letter-spacing:1.070080pt;}
.ls23_c00308{letter-spacing:1.082240pt;}
.ls25_c00308{letter-spacing:1.088320pt;}
.ls21_c00308{letter-spacing:1.100480pt;}
.ls39_c00308{letter-spacing:1.106560pt;}
.ls1c_c00308{letter-spacing:1.112640pt;}
.ls2d_c00308{letter-spacing:1.118720pt;}
.ls34_c00308{letter-spacing:1.124800pt;}
.ls2a_c00308{letter-spacing:1.130880pt;}
.ls1b_c00308{letter-spacing:1.136960pt;}
.ls65_c00308{letter-spacing:1.143040pt;}
.ls4e_c00308{letter-spacing:1.161280pt;}
.ls12_c00308{letter-spacing:1.167360pt;}
.ls1_c00308{letter-spacing:1.173440pt;}
.ls36_c00308{letter-spacing:1.179520pt;}
.ls80_c00308{letter-spacing:1.185600pt;}
.lsd_c00308{letter-spacing:1.191680pt;}
.ls16_c00308{letter-spacing:1.197760pt;}
.ls2c_c00308{letter-spacing:1.209920pt;}
.ls7_c00308{letter-spacing:1.240320pt;}
.ls48_c00308{letter-spacing:1.246400pt;}
.ls6c_c00308{letter-spacing:1.276800pt;}
.ls71_c00308{letter-spacing:1.307200pt;}
.ls78_c00308{letter-spacing:1.313280pt;}
.ls5e_c00308{letter-spacing:1.325440pt;}
.ls6e_c00308{letter-spacing:1.337600pt;}
.ls18_c00308{letter-spacing:1.343680pt;}
.ls69_c00308{letter-spacing:1.349760pt;}
.ls54_c00308{letter-spacing:1.355840pt;}
.ls4c_c00308{letter-spacing:1.361920pt;}
.ls55_c00308{letter-spacing:1.368000pt;}
.ls41_c00308{letter-spacing:1.374080pt;}
.ls47_c00308{letter-spacing:1.398400pt;}
.ls40_c00308{letter-spacing:1.404480pt;}
.ls14_c00308{letter-spacing:1.465280pt;}
.ls6f_c00308{letter-spacing:1.483520pt;}
.ls3c_c00308{letter-spacing:1.495680pt;}
.ls27_c00308{letter-spacing:1.544320pt;}
.ls10_c00308{letter-spacing:1.617280pt;}
.ls44_c00308{letter-spacing:1.623360pt;}
.ls91_c00308{letter-spacing:1.629440pt;}
.ls73_c00308{letter-spacing:1.672000pt;}
.ls57_c00308{letter-spacing:1.684160pt;}
.ls33_c00308{letter-spacing:1.726720pt;}
.ls5c_c00308{letter-spacing:1.781440pt;}
.ls4f_c00308{letter-spacing:1.836160pt;}
.ls1f_c00308{letter-spacing:1.951680pt;}
.ls5f_c00308{letter-spacing:1.957760pt;}
.ls4a_c00308{letter-spacing:2.030720pt;}
.ls72_c00308{letter-spacing:2.091520pt;}
.ls7b_c00308{letter-spacing:2.182720pt;}
.ls3e_c00308{letter-spacing:2.207040pt;}
.ls19_c00308{letter-spacing:2.219200pt;}
.ls5b_c00308{letter-spacing:2.231360pt;}
.ls51_c00308{letter-spacing:2.523200pt;}
.ls5_c00308{letter-spacing:2.748160pt;}
.ls13_c00308{letter-spacing:2.815040pt;}
.ls79_c00308{letter-spacing:3.040000pt;}
.ws0_c00308{word-spacing:-0.282240pt;}
.ws6_c00308{word-spacing:0.000000pt;}
.ws5_c00308{word-spacing:4.024960pt;}
.ws1_c00308{word-spacing:5.593600pt;}
.ws3_c00308{word-spacing:6.602880pt;}
.ws2_c00308{word-spacing:18.363733pt;}
.ws4_c00308{word-spacing:46.657920pt;}
._16_c00308{margin-left:-10.761600pt;}
._15_c00308{margin-left:-6.000960pt;}
._9_c00308{margin-left:-5.089387pt;}
._11_c00308{margin-left:-3.970240pt;}
._14_c00308{margin-left:-2.973120pt;}
._7_c00308{margin-left:-1.386240pt;}
._8_c00308{width:1.276800pt;}
._17_c00308{width:2.462400pt;}
._5_c00308{width:3.374400pt;}
._b_c00308{width:4.432320pt;}
._4_c00308{width:5.386880pt;}
._6_c00308{width:6.542080pt;}
._a_c00308{width:7.739840pt;}
._e_c00308{width:9.344960pt;}
._2_c00308{width:10.603520pt;}
._f_c00308{width:11.588480pt;}
._c_c00308{width:12.664640pt;}
._0_c00308{width:14.233280pt;}
._10_c00308{width:16.841600pt;}
._1_c00308{width:17.753600pt;}
._12_c00308{width:18.786133pt;}
._3_c00308{width:19.681493pt;}
._13_c00308{width:21.787520pt;}
._1d_c00308{width:23.104000pt;}
._d_c00308{width:24.781547pt;}
._1e_c00308{width:25.931520pt;}
._1b_c00308{width:42.353280pt;}
._1a_c00308{width:45.125760pt;}
._18_c00308{width:46.524160pt;}
._1c_c00308{width:47.764480pt;}
._19_c00308{width:49.539840pt;}
.fs4_c00308{font-size:51.733333pt;}
.fs3_c00308{font-size:58.666667pt;}
.fs0_c00308{font-size:59.733333pt;}
.fs1_c00308{font-size:60.800000pt;}
.fs2_c00308{font-size:61.333333pt;}
.y0_c00308{bottom:0.000000pt;}
.y20_c00308{bottom:56.973339pt;}
.y1f_c00308{bottom:134.072805pt;}
.y1e_c00308{bottom:161.590939pt;}
.y1d_c00308{bottom:216.326139pt;}
.y1c_c00308{bottom:243.832539pt;}
.y1b_c00308{bottom:271.678939pt;}
.y1a_c00308{bottom:299.206139pt;}
.y19_c00308{bottom:326.733339pt;}
.y18_c00308{bottom:326.734405pt;}
.y17_c00308{bottom:354.261605pt;}
.y16_c00308{bottom:408.981605pt;}
.y15_c00308{bottom:436.174405pt;}
.y14_c00308{bottom:490.554405pt;}
.y13_c00308{bottom:518.720005pt;}
.y12_c00308{bottom:518.721605pt;}
.y11_c00308{bottom:573.760805pt;}
.y10_c00308{bottom:601.288005pt;}
.yf_c00308{bottom:628.800005pt;}
.ye_c00308{bottom:683.526139pt;}
.yc_c00308{bottom:711.040005pt;}
.yd_c00308{bottom:711.053339pt;}
.yb_c00308{bottom:738.232805pt;}
.ya_c00308{bottom:765.760005pt;}
.y9_c00308{bottom:792.973339pt;}
.y8_c00308{bottom:847.680005pt;}
.y7_c00308{bottom:877.133339pt;}
.y6_c00308{bottom:877.145339pt;}
.y5_c00308{bottom:933.765339pt;}
.y3_c00308{bottom:960.966939pt;}
.y4_c00308{bottom:960.973339pt;}
.y2_c00308{bottom:988.813339pt;}
.y1_c00308{bottom:1056.973339pt;}
.hb_c00308{height:50.773437pt;}
.h2_c00308{height:58.625000pt;}
.h5_c00308{height:59.642187pt;}
.h3_c00308{height:59.671875pt;}
.h8_c00308{height:59.694275pt;}
.h7_c00308{height:59.700675pt;}
.ha_c00308{height:59.708142pt;}
.h9_c00308{height:59.755075pt;}
.h6_c00308{height:61.187500pt;}
.h4_c00308{height:63.968750pt;}
.h1_c00308{height:1122.666667pt;}
.h0_c00308{height:1122.880005pt;}
.w1_c00308{width:793.333333pt;}
.w0_c00308{width:793.599999pt;}
.x0_c00308{left:0.000000pt;}
.x19_c00308{left:108.270399pt;}
.xa_c00308{left:109.599999pt;}
.x4_c00308{left:110.577599pt;}
.x1_c00308{left:111.613332pt;}
.xb_c00308{left:129.786665pt;}
.xe_c00308{left:155.986665pt;}
.x7_c00308{left:157.266665pt;}
.x5_c00308{left:224.159999pt;}
.x6_c00308{left:240.106665pt;}
.xf_c00308{left:327.839999pt;}
.x10_c00308{left:347.493332pt;}
.x1c_c00308{left:378.799999pt;}
.x13_c00308{left:413.613332pt;}
.x14_c00308{left:430.239999pt;}
.xc_c00308{left:502.946665pt;}
.x8_c00308{left:504.506665pt;}
.x15_c00308{left:509.599999pt;}
.x16_c00308{left:525.693332pt;}
.xd_c00308{left:528.506665pt;}
.x9_c00308{left:533.279999pt;}
.x2_c00308{left:560.933332pt;}
.x1a_c00308{left:569.826665pt;}
.x17_c00308{left:575.906665pt;}
.x1b_c00308{left:595.813332pt;}
.x3_c00308{left:597.919999pt;}
.x18_c00308{left:599.199999pt;}
.x11_c00308{left:610.853332pt;}
.x12_c00308{left:648.293332pt;}
}





/* 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_c00309 {
    display:none;
  }
  .loading-indicator_c00309.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00309 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_c00309 { 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_c00309" -> "#page-container .classname_c00309")
 */
.pf_c00309 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00309 { /* 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_c00309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00309 { /* 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_c00309 { /* 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_c00309 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00309 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00309 {overflow:visible;}
  }
}
.c_c00309 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00309 { /* 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_c00309:after { /* webkit #35443 */
  content: '';
}
.t_c00309:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00309 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 */
}
.__c00309 { /* 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_c00309 { /* info for Javascript */
  display:none;
}
.l_c00309 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00309 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00309 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00309: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_c00309 {
    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_c00309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00309.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_c00309 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00309;src:url('chunks/assets/font_10e53aa4b1d72188e2bcaaa9.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.284668;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_c00309;src:url('chunks/assets/font_b3571ff6e9f8fd2038992c77.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.284180;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_c00309;src:url('chunks/assets/font_d74cf9379ba3fdbdf959f6e3.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.311035;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;}
.m1_c00309{transform:matrix(0.225142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225142,0.000000,0.000000,0.250000,0,0);}
.m6_c00309{transform:matrix(0.226255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226255,0.000000,0.000000,0.250000,0,0);}
.m5_c00309{transform:matrix(0.228269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228269,0.000000,0.000000,0.250000,0,0);}
.m2_c00309{transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);}
.m4_c00309{transform:matrix(0.242839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242839,0.000000,0.000000,0.250000,0,0);}
.m3_c00309{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m0_c00309{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);}
.v0_c00309{vertical-align:0.000000px;}
.ls53_c00309{letter-spacing:-2.478000px;}
.ls57_c00309{letter-spacing:-2.415000px;}
.ls8f_c00309{letter-spacing:-2.387400px;}
.ls96_c00309{letter-spacing:-2.289000px;}
.ls83_c00309{letter-spacing:-2.263200px;}
.ls6d_c00309{letter-spacing:-1.959600px;}
.ls87_c00309{letter-spacing:-1.787100px;}
.ls61_c00309{letter-spacing:-1.766400px;}
.ls5a_c00309{letter-spacing:-1.656000px;}
.ls92_c00309{letter-spacing:-1.635300px;}
.ls72_c00309{letter-spacing:-1.276500px;}
.ls74_c00309{letter-spacing:-1.200600px;}
.ls63_c00309{letter-spacing:-1.110900px;}
.ls59_c00309{letter-spacing:-1.083300px;}
.ls82_c00309{letter-spacing:-1.048800px;}
.ls6c_c00309{letter-spacing:-0.966000px;}
.ls80_c00309{letter-spacing:-0.945300px;}
.ls95_c00309{letter-spacing:-0.917700px;}
.ls77_c00309{letter-spacing:-0.876300px;}
.ls65_c00309{letter-spacing:-0.855600px;}
.ls7a_c00309{letter-spacing:-0.848700px;}
.ls5d_c00309{letter-spacing:-0.821100px;}
.ls69_c00309{letter-spacing:-0.800400px;}
.ls7f_c00309{letter-spacing:-0.724500px;}
.ls58_c00309{letter-spacing:-0.683100px;}
.ls70_c00309{letter-spacing:-0.676200px;}
.ls8c_c00309{letter-spacing:-0.586500px;}
.ls52_c00309{letter-spacing:-0.579600px;}
.ls94_c00309{letter-spacing:-0.558900px;}
.ls79_c00309{letter-spacing:-0.510600px;}
.ls6b_c00309{letter-spacing:-0.503700px;}
.ls64_c00309{letter-spacing:-0.462300px;}
.ls6e_c00309{letter-spacing:-0.448500px;}
.ls90_c00309{letter-spacing:-0.420900px;}
.ls76_c00309{letter-spacing:-0.386400px;}
.ls56_c00309{letter-spacing:-0.379500px;}
.ls7e_c00309{letter-spacing:-0.365700px;}
.ls5c_c00309{letter-spacing:-0.345000px;}
.ls86_c00309{letter-spacing:-0.324300px;}
.ls84_c00309{letter-spacing:-0.310500px;}
.ls8a_c00309{letter-spacing:-0.303600px;}
.ls54_c00309{letter-spacing:-0.289800px;}
.ls7c_c00309{letter-spacing:-0.282900px;}
.ls7b_c00309{letter-spacing:-0.276000px;}
.ls93_c00309{letter-spacing:-0.269100px;}
.ls6a_c00309{letter-spacing:-0.262200px;}
.ls5f_c00309{letter-spacing:-0.234600px;}
.ls8d_c00309{letter-spacing:-0.220800px;}
.ls75_c00309{letter-spacing:-0.213900px;}
.ls68_c00309{letter-spacing:-0.200100px;}
.ls55_c00309{letter-spacing:-0.193200px;}
.ls78_c00309{letter-spacing:-0.179400px;}
.ls88_c00309{letter-spacing:-0.172500px;}
.ls73_c00309{letter-spacing:-0.158700px;}
.ls7d_c00309{letter-spacing:-0.144900px;}
.ls66_c00309{letter-spacing:-0.110400px;}
.ls89_c00309{letter-spacing:-0.103500px;}
.ls8b_c00309{letter-spacing:-0.096600px;}
.ls62_c00309{letter-spacing:-0.089700px;}
.ls85_c00309{letter-spacing:-0.062100px;}
.ls6f_c00309{letter-spacing:-0.048300px;}
.ls67_c00309{letter-spacing:-0.041400px;}
.ls5b_c00309{letter-spacing:-0.027600px;}
.ls71_c00309{letter-spacing:-0.013800px;}
.ls8e_c00309{letter-spacing:-0.006900px;}
.ls60_c00309{letter-spacing:0.000000px;}
.ls34_c00309{letter-spacing:0.020700px;}
.ls2_c00309{letter-spacing:0.041400px;}
.ls16_c00309{letter-spacing:0.055200px;}
.ls39_c00309{letter-spacing:0.069000px;}
.ls13_c00309{letter-spacing:0.075900px;}
.ls32_c00309{letter-spacing:0.082800px;}
.ls3d_c00309{letter-spacing:0.089700px;}
.ls28_c00309{letter-spacing:0.096600px;}
.ls3f_c00309{letter-spacing:0.110400px;}
.lsb_c00309{letter-spacing:0.117300px;}
.ls10_c00309{letter-spacing:0.131100px;}
.ls29_c00309{letter-spacing:0.138000px;}
.ls4a_c00309{letter-spacing:0.144900px;}
.lsc_c00309{letter-spacing:0.151800px;}
.ls2f_c00309{letter-spacing:0.165600px;}
.lse_c00309{letter-spacing:0.186300px;}
.ls3_c00309{letter-spacing:0.220800px;}
.ls45_c00309{letter-spacing:0.262200px;}
.ls48_c00309{letter-spacing:0.276000px;}
.ls24_c00309{letter-spacing:0.289800px;}
.ls43_c00309{letter-spacing:0.296700px;}
.ls18_c00309{letter-spacing:0.303600px;}
.ls12_c00309{letter-spacing:0.310500px;}
.ls15_c00309{letter-spacing:0.321480px;}
.lsd_c00309{letter-spacing:0.331200px;}
.ls2d_c00309{letter-spacing:0.345000px;}
.ls26_c00309{letter-spacing:0.351900px;}
.ls5e_c00309{letter-spacing:0.379500px;}
.ls1c_c00309{letter-spacing:0.407100px;}
.ls38_c00309{letter-spacing:0.414000px;}
.ls37_c00309{letter-spacing:0.427800px;}
.ls33_c00309{letter-spacing:0.434700px;}
.ls22_c00309{letter-spacing:0.441600px;}
.ls17_c00309{letter-spacing:0.469200px;}
.ls1b_c00309{letter-spacing:0.496800px;}
.ls2c_c00309{letter-spacing:0.503700px;}
.ls35_c00309{letter-spacing:0.517500px;}
.ls91_c00309{letter-spacing:0.524400px;}
.ls1a_c00309{letter-spacing:0.538200px;}
.ls41_c00309{letter-spacing:0.558900px;}
.ls3c_c00309{letter-spacing:0.565800px;}
.ls40_c00309{letter-spacing:0.586500px;}
.ls4b_c00309{letter-spacing:0.614100px;}
.ls1_c00309{letter-spacing:0.621000px;}
.ls50_c00309{letter-spacing:0.634800px;}
.ls7_c00309{letter-spacing:0.641700px;}
.ls9_c00309{letter-spacing:0.648600px;}
.ls14_c00309{letter-spacing:0.656640px;}
.ls4_c00309{letter-spacing:0.663480px;}
.ls42_c00309{letter-spacing:0.669300px;}
.ls27_c00309{letter-spacing:0.703800px;}
.ls21_c00309{letter-spacing:0.716880px;}
.ls3e_c00309{letter-spacing:0.745200px;}
.ls8_c00309{letter-spacing:0.752100px;}
.ls2e_c00309{letter-spacing:0.765900px;}
.ls4d_c00309{letter-spacing:0.807300px;}
.ls3a_c00309{letter-spacing:0.841320px;}
.ls5_c00309{letter-spacing:0.855600px;}
.ls30_c00309{letter-spacing:0.862500px;}
.ls2b_c00309{letter-spacing:0.890100px;}
.ls31_c00309{letter-spacing:0.931500px;}
.ls3b_c00309{letter-spacing:0.938400px;}
.ls23_c00309{letter-spacing:0.984960px;}
.ls20_c00309{letter-spacing:0.986700px;}
.ls0_c00309{letter-spacing:1.073880px;}
.ls11_c00309{letter-spacing:1.097100px;}
.ls1e_c00309{letter-spacing:1.104000px;}
.ls49_c00309{letter-spacing:1.124700px;}
.lsf_c00309{letter-spacing:1.145400px;}
.ls25_c00309{letter-spacing:1.152300px;}
.ls2a_c00309{letter-spacing:1.193700px;}
.ls4f_c00309{letter-spacing:1.207500px;}
.ls4e_c00309{letter-spacing:1.227180px;}
.ls36_c00309{letter-spacing:1.248900px;}
.lsa_c00309{letter-spacing:1.311000px;}
.ls1f_c00309{letter-spacing:1.331700px;}
.ls4c_c00309{letter-spacing:1.469700px;}
.ls44_c00309{letter-spacing:1.628400px;}
.ls47_c00309{letter-spacing:1.849200px;}
.ls19_c00309{letter-spacing:2.056200px;}
.ls81_c00309{letter-spacing:2.194200px;}
.ls6_c00309{letter-spacing:2.539200px;}
.ls1d_c00309{letter-spacing:2.559900px;}
.ls51_c00309{letter-spacing:2.898720px;}
.ls46_c00309{letter-spacing:3.070500px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{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__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00309{word-spacing:-0.145920px;}
.ws6_c00309{word-spacing:0.000000px;}
.ws3_c00309{word-spacing:2.894160px;}
.ws4_c00309{word-spacing:4.039200px;}
.ws5_c00309{word-spacing:8.421720px;}
.ws1_c00309{word-spacing:8.697600px;}
.ws2_c00309{word-spacing:21.342120px;}
._c_c00309{margin-left:-8.521500px;}
._d_c00309{margin-left:-6.210000px;}
._0_c00309{margin-left:-3.519000px;}
._f_c00309{margin-left:-2.152800px;}
._2_c00309{width:1.283400px;}
._1_c00309{width:3.187800px;}
._4_c00309{width:4.581600px;}
._e_c00309{width:6.527400px;}
._6_c00309{width:7.591500px;}
._3_c00309{width:8.907900px;}
._14_c00309{width:10.176000px;}
._5_c00309{width:11.424900px;}
._13_c00309{width:12.875400px;}
._7_c00309{width:15.014400px;}
._8_c00309{width:16.257900px;}
._a_c00309{width:18.306600px;}
._9_c00309{width:19.769700px;}
._12_c00309{width:20.907000px;}
._b_c00309{width:21.983760px;}
._11_c00309{width:23.433960px;}
._10_c00309{width:24.859140px;}
.fc0_c00309{color:transparent;}
.fs0_c00309{font-size:59.400000px;}
.fs6_c00309{font-size:65.400000px;}
.fs5_c00309{font-size:67.800000px;}
.fs1_c00309{font-size:68.400000px;}
.fs2_c00309{font-size:69.000000px;}
.fs4_c00309{font-size:69.600000px;}
.fs3_c00309{font-size:70.800000px;}
.y0_c00309{bottom:0.000000px;}
.y1d_c00309{bottom:72.015015px;}
.y1c_c00309{bottom:160.215015px;}
.y1b_c00309{bottom:221.029515px;}
.y1a_c00309{bottom:282.612015px;}
.y19_c00309{bottom:313.213515px;}
.y18_c00309{bottom:343.815015px;}
.y16_c00309{bottom:405.371265px;}
.y17_c00309{bottom:405.375015px;}
.y14_c00309{bottom:436.674015px;}
.y15_c00309{bottom:436.680015px;}
.y13_c00309{bottom:467.653515px;}
.y12_c00309{bottom:498.255015px;}
.y11_c00309{bottom:560.520015px;}
.y10_c00309{bottom:622.808265px;}
.yf_c00309{bottom:653.409765px;}
.ye_c00309{bottom:684.373515px;}
.yc_c00309{bottom:714.973515px;}
.yd_c00309{bottom:714.975015px;}
.yb_c00309{bottom:745.920015px;}
.ya_c00309{bottom:808.194015px;}
.y9_c00309{bottom:839.175015px;}
.y8_c00309{bottom:900.716265px;}
.y7_c00309{bottom:931.335015px;}
.y5_c00309{bottom:992.171265px;}
.y6_c00309{bottom:992.175015px;}
.y4_c00309{bottom:1023.131265px;}
.y3_c00309{bottom:1054.095015px;}
.y2_c00309{bottom:1116.720015px;}
.y1_c00309{bottom:1193.775015px;}
.h2_c00309{height:58.297852px;}
.ha_c00309{height:64.186523px;}
.h3_c00309{height:67.719727px;}
.h7_c00309{height:67.725727px;}
.h5_c00309{height:67.734727px;}
.h8_c00309{height:67.743727px;}
.h6_c00309{height:68.274609px;}
.h9_c00309{height:68.371687px;}
.h4_c00309{height:69.486328px;}
.h1_c00309{height:1263.000000px;}
.h0_c00309{height:1263.240015px;}
.w1_c00309{width:892.500000px;}
.w0_c00309{width:892.800015px;}
.x0_c00309{left:0.000000px;}
.x1_c00309{left:138.525015px;}
.xa_c00309{left:191.062515px;}
.x2_c00309{left:192.405015px;}
.x10_c00309{left:315.195015px;}
.x11_c00309{left:338.430015px;}
.x6_c00309{left:377.115015px;}
.x9_c00309{left:384.135015px;}
.x7_c00309{left:399.060015px;}
.xd_c00309{left:409.155015px;}
.xe_c00309{left:430.050015px;}
.xb_c00309{left:434.715015px;}
.x13_c00309{left:439.830015px;}
.x3_c00309{left:446.595015px;}
.xc_c00309{left:455.715015px;}
.x4_c00309{left:478.260015px;}
.x12_c00309{left:586.620015px;}
.x8_c00309{left:683.460015px;}
.xf_c00309{left:692.115015px;}
.x5_c00309{left:693.270015px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls53_c00309{letter-spacing:-2.202667pt;}
.ls57_c00309{letter-spacing:-2.146667pt;}
.ls8f_c00309{letter-spacing:-2.122133pt;}
.ls96_c00309{letter-spacing:-2.034667pt;}
.ls83_c00309{letter-spacing:-2.011733pt;}
.ls6d_c00309{letter-spacing:-1.741867pt;}
.ls87_c00309{letter-spacing:-1.588533pt;}
.ls61_c00309{letter-spacing:-1.570133pt;}
.ls5a_c00309{letter-spacing:-1.472000pt;}
.ls92_c00309{letter-spacing:-1.453600pt;}
.ls72_c00309{letter-spacing:-1.134667pt;}
.ls74_c00309{letter-spacing:-1.067200pt;}
.ls63_c00309{letter-spacing:-0.987467pt;}
.ls59_c00309{letter-spacing:-0.962933pt;}
.ls82_c00309{letter-spacing:-0.932267pt;}
.ls6c_c00309{letter-spacing:-0.858667pt;}
.ls80_c00309{letter-spacing:-0.840267pt;}
.ls95_c00309{letter-spacing:-0.815733pt;}
.ls77_c00309{letter-spacing:-0.778933pt;}
.ls65_c00309{letter-spacing:-0.760533pt;}
.ls7a_c00309{letter-spacing:-0.754400pt;}
.ls5d_c00309{letter-spacing:-0.729867pt;}
.ls69_c00309{letter-spacing:-0.711467pt;}
.ls7f_c00309{letter-spacing:-0.644000pt;}
.ls58_c00309{letter-spacing:-0.607200pt;}
.ls70_c00309{letter-spacing:-0.601067pt;}
.ls8c_c00309{letter-spacing:-0.521333pt;}
.ls52_c00309{letter-spacing:-0.515200pt;}
.ls94_c00309{letter-spacing:-0.496800pt;}
.ls79_c00309{letter-spacing:-0.453867pt;}
.ls6b_c00309{letter-spacing:-0.447733pt;}
.ls64_c00309{letter-spacing:-0.410933pt;}
.ls6e_c00309{letter-spacing:-0.398667pt;}
.ls90_c00309{letter-spacing:-0.374133pt;}
.ls76_c00309{letter-spacing:-0.343467pt;}
.ls56_c00309{letter-spacing:-0.337333pt;}
.ls7e_c00309{letter-spacing:-0.325067pt;}
.ls5c_c00309{letter-spacing:-0.306667pt;}
.ls86_c00309{letter-spacing:-0.288267pt;}
.ls84_c00309{letter-spacing:-0.276000pt;}
.ls8a_c00309{letter-spacing:-0.269867pt;}
.ls54_c00309{letter-spacing:-0.257600pt;}
.ls7c_c00309{letter-spacing:-0.251467pt;}
.ls7b_c00309{letter-spacing:-0.245333pt;}
.ls93_c00309{letter-spacing:-0.239200pt;}
.ls6a_c00309{letter-spacing:-0.233067pt;}
.ls5f_c00309{letter-spacing:-0.208533pt;}
.ls8d_c00309{letter-spacing:-0.196267pt;}
.ls75_c00309{letter-spacing:-0.190133pt;}
.ls68_c00309{letter-spacing:-0.177867pt;}
.ls55_c00309{letter-spacing:-0.171733pt;}
.ls78_c00309{letter-spacing:-0.159467pt;}
.ls88_c00309{letter-spacing:-0.153333pt;}
.ls73_c00309{letter-spacing:-0.141067pt;}
.ls7d_c00309{letter-spacing:-0.128800pt;}
.ls66_c00309{letter-spacing:-0.098133pt;}
.ls89_c00309{letter-spacing:-0.092000pt;}
.ls8b_c00309{letter-spacing:-0.085867pt;}
.ls62_c00309{letter-spacing:-0.079733pt;}
.ls85_c00309{letter-spacing:-0.055200pt;}
.ls6f_c00309{letter-spacing:-0.042933pt;}
.ls67_c00309{letter-spacing:-0.036800pt;}
.ls5b_c00309{letter-spacing:-0.024533pt;}
.ls71_c00309{letter-spacing:-0.012267pt;}
.ls8e_c00309{letter-spacing:-0.006133pt;}
.ls60_c00309{letter-spacing:0.000000pt;}
.ls34_c00309{letter-spacing:0.018400pt;}
.ls2_c00309{letter-spacing:0.036800pt;}
.ls16_c00309{letter-spacing:0.049067pt;}
.ls39_c00309{letter-spacing:0.061333pt;}
.ls13_c00309{letter-spacing:0.067467pt;}
.ls32_c00309{letter-spacing:0.073600pt;}
.ls3d_c00309{letter-spacing:0.079733pt;}
.ls28_c00309{letter-spacing:0.085867pt;}
.ls3f_c00309{letter-spacing:0.098133pt;}
.lsb_c00309{letter-spacing:0.104267pt;}
.ls10_c00309{letter-spacing:0.116533pt;}
.ls29_c00309{letter-spacing:0.122667pt;}
.ls4a_c00309{letter-spacing:0.128800pt;}
.lsc_c00309{letter-spacing:0.134933pt;}
.ls2f_c00309{letter-spacing:0.147200pt;}
.lse_c00309{letter-spacing:0.165600pt;}
.ls3_c00309{letter-spacing:0.196267pt;}
.ls45_c00309{letter-spacing:0.233067pt;}
.ls48_c00309{letter-spacing:0.245333pt;}
.ls24_c00309{letter-spacing:0.257600pt;}
.ls43_c00309{letter-spacing:0.263733pt;}
.ls18_c00309{letter-spacing:0.269867pt;}
.ls12_c00309{letter-spacing:0.276000pt;}
.ls15_c00309{letter-spacing:0.285760pt;}
.lsd_c00309{letter-spacing:0.294400pt;}
.ls2d_c00309{letter-spacing:0.306667pt;}
.ls26_c00309{letter-spacing:0.312800pt;}
.ls5e_c00309{letter-spacing:0.337333pt;}
.ls1c_c00309{letter-spacing:0.361867pt;}
.ls38_c00309{letter-spacing:0.368000pt;}
.ls37_c00309{letter-spacing:0.380267pt;}
.ls33_c00309{letter-spacing:0.386400pt;}
.ls22_c00309{letter-spacing:0.392533pt;}
.ls17_c00309{letter-spacing:0.417067pt;}
.ls1b_c00309{letter-spacing:0.441600pt;}
.ls2c_c00309{letter-spacing:0.447733pt;}
.ls35_c00309{letter-spacing:0.460000pt;}
.ls91_c00309{letter-spacing:0.466133pt;}
.ls1a_c00309{letter-spacing:0.478400pt;}
.ls41_c00309{letter-spacing:0.496800pt;}
.ls3c_c00309{letter-spacing:0.502933pt;}
.ls40_c00309{letter-spacing:0.521333pt;}
.ls4b_c00309{letter-spacing:0.545867pt;}
.ls1_c00309{letter-spacing:0.552000pt;}
.ls50_c00309{letter-spacing:0.564267pt;}
.ls7_c00309{letter-spacing:0.570400pt;}
.ls9_c00309{letter-spacing:0.576533pt;}
.ls14_c00309{letter-spacing:0.583680pt;}
.ls4_c00309{letter-spacing:0.589760pt;}
.ls42_c00309{letter-spacing:0.594933pt;}
.ls27_c00309{letter-spacing:0.625600pt;}
.ls21_c00309{letter-spacing:0.637227pt;}
.ls3e_c00309{letter-spacing:0.662400pt;}
.ls8_c00309{letter-spacing:0.668533pt;}
.ls2e_c00309{letter-spacing:0.680800pt;}
.ls4d_c00309{letter-spacing:0.717600pt;}
.ls3a_c00309{letter-spacing:0.747840pt;}
.ls5_c00309{letter-spacing:0.760533pt;}
.ls30_c00309{letter-spacing:0.766667pt;}
.ls2b_c00309{letter-spacing:0.791200pt;}
.ls31_c00309{letter-spacing:0.828000pt;}
.ls3b_c00309{letter-spacing:0.834133pt;}
.ls23_c00309{letter-spacing:0.875520pt;}
.ls20_c00309{letter-spacing:0.877067pt;}
.ls0_c00309{letter-spacing:0.954560pt;}
.ls11_c00309{letter-spacing:0.975200pt;}
.ls1e_c00309{letter-spacing:0.981333pt;}
.ls49_c00309{letter-spacing:0.999733pt;}
.lsf_c00309{letter-spacing:1.018133pt;}
.ls25_c00309{letter-spacing:1.024267pt;}
.ls2a_c00309{letter-spacing:1.061067pt;}
.ls4f_c00309{letter-spacing:1.073333pt;}
.ls4e_c00309{letter-spacing:1.090827pt;}
.ls36_c00309{letter-spacing:1.110133pt;}
.lsa_c00309{letter-spacing:1.165333pt;}
.ls1f_c00309{letter-spacing:1.183733pt;}
.ls4c_c00309{letter-spacing:1.306400pt;}
.ls44_c00309{letter-spacing:1.447467pt;}
.ls47_c00309{letter-spacing:1.643733pt;}
.ls19_c00309{letter-spacing:1.827733pt;}
.ls81_c00309{letter-spacing:1.950400pt;}
.ls6_c00309{letter-spacing:2.257067pt;}
.ls1d_c00309{letter-spacing:2.275467pt;}
.ls51_c00309{letter-spacing:2.576640pt;}
.ls46_c00309{letter-spacing:2.729333pt;}
.ws0_c00309{word-spacing:-0.129707pt;}
.ws6_c00309{word-spacing:0.000000pt;}
.ws3_c00309{word-spacing:2.572587pt;}
.ws4_c00309{word-spacing:3.590400pt;}
.ws5_c00309{word-spacing:7.485973pt;}
.ws1_c00309{word-spacing:7.731200pt;}
.ws2_c00309{word-spacing:18.970773pt;}
._c_c00309{margin-left:-7.574667pt;}
._d_c00309{margin-left:-5.520000pt;}
._0_c00309{margin-left:-3.128000pt;}
._f_c00309{margin-left:-1.913600pt;}
._2_c00309{width:1.140800pt;}
._1_c00309{width:2.833600pt;}
._4_c00309{width:4.072533pt;}
._e_c00309{width:5.802133pt;}
._6_c00309{width:6.748000pt;}
._3_c00309{width:7.918133pt;}
._14_c00309{width:9.045333pt;}
._5_c00309{width:10.155467pt;}
._13_c00309{width:11.444800pt;}
._7_c00309{width:13.346133pt;}
._8_c00309{width:14.451467pt;}
._a_c00309{width:16.272533pt;}
._9_c00309{width:17.573067pt;}
._12_c00309{width:18.584000pt;}
._b_c00309{width:19.541120pt;}
._11_c00309{width:20.830187pt;}
._10_c00309{width:22.097013pt;}
.fs0_c00309{font-size:52.800000pt;}
.fs6_c00309{font-size:58.133333pt;}
.fs5_c00309{font-size:60.266667pt;}
.fs1_c00309{font-size:60.800000pt;}
.fs2_c00309{font-size:61.333333pt;}
.fs4_c00309{font-size:61.866667pt;}
.fs3_c00309{font-size:62.933333pt;}
.y0_c00309{bottom:0.000000pt;}
.y1d_c00309{bottom:64.013347pt;}
.y1c_c00309{bottom:142.413347pt;}
.y1b_c00309{bottom:196.470680pt;}
.y1a_c00309{bottom:251.210680pt;}
.y19_c00309{bottom:278.412013pt;}
.y18_c00309{bottom:305.613347pt;}
.y16_c00309{bottom:360.330013pt;}
.y17_c00309{bottom:360.333347pt;}
.y14_c00309{bottom:388.154680pt;}
.y15_c00309{bottom:388.160013pt;}
.y13_c00309{bottom:415.692013pt;}
.y12_c00309{bottom:442.893347pt;}
.y11_c00309{bottom:498.240013pt;}
.y10_c00309{bottom:553.607347pt;}
.yf_c00309{bottom:580.808680pt;}
.ye_c00309{bottom:608.332013pt;}
.yc_c00309{bottom:635.532013pt;}
.yd_c00309{bottom:635.533347pt;}
.yb_c00309{bottom:663.040013pt;}
.ya_c00309{bottom:718.394680pt;}
.y9_c00309{bottom:745.933347pt;}
.y8_c00309{bottom:800.636680pt;}
.y7_c00309{bottom:827.853347pt;}
.y5_c00309{bottom:881.930013pt;}
.y6_c00309{bottom:881.933347pt;}
.y4_c00309{bottom:909.450013pt;}
.y3_c00309{bottom:936.973347pt;}
.y2_c00309{bottom:992.640013pt;}
.y1_c00309{bottom:1061.133347pt;}
.h2_c00309{height:51.820312pt;}
.ha_c00309{height:57.054688pt;}
.h3_c00309{height:60.195312pt;}
.h7_c00309{height:60.200646pt;}
.h5_c00309{height:60.208646pt;}
.h8_c00309{height:60.216646pt;}
.h6_c00309{height:60.688542pt;}
.h9_c00309{height:60.774833pt;}
.h4_c00309{height:61.765625pt;}
.h1_c00309{height:1122.666667pt;}
.h0_c00309{height:1122.880013pt;}
.w1_c00309{width:793.333333pt;}
.w0_c00309{width:793.600013pt;}
.x0_c00309{left:0.000000pt;}
.x1_c00309{left:123.133347pt;}
.xa_c00309{left:169.833347pt;}
.x2_c00309{left:171.026680pt;}
.x10_c00309{left:280.173347pt;}
.x11_c00309{left:300.826680pt;}
.x6_c00309{left:335.213347pt;}
.x9_c00309{left:341.453347pt;}
.x7_c00309{left:354.720013pt;}
.xd_c00309{left:363.693347pt;}
.xe_c00309{left:382.266680pt;}
.xb_c00309{left:386.413347pt;}
.x13_c00309{left:390.960013pt;}
.x3_c00309{left:396.973347pt;}
.xc_c00309{left:405.080013pt;}
.x4_c00309{left:425.120013pt;}
.x12_c00309{left:521.440013pt;}
.x8_c00309{left:607.520013pt;}
.xf_c00309{left:615.213347pt;}
.x5_c00309{left:616.240013pt;}
}





/* 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_c00310 {
    display:none;
  }
  .loading-indicator_c00310.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00310 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_c00310 { 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_c00310" -> "#page-container .classname_c00310")
 */
.pf_c00310 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00310 { /* 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_c00310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00310 { /* 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_c00310 { /* 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_c00310 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00310 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00310 {overflow:visible;}
  }
}
.c_c00310 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00310 { /* 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_c00310:after { /* webkit #35443 */
  content: '';
}
.t_c00310:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00310 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 */
}
.__c00310 { /* 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_c00310 { /* info for Javascript */
  display:none;
}
.l_c00310 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00310 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00310 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00310: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_c00310 {
    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_c00310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00310.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_c00310 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00310;src:url('chunks/assets/font_2916f52bae988fa852653f34.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.284668;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_c00310;src:url('chunks/assets/font_7a768c644b19903198c676c6.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.284180;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_c00310;src:url('chunks/assets/font_be800f1dda2efdf273c0b4d3.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:0.666000;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_c00310;src:url('chunks/assets/font_e5cc58055fcca96b297ee0ca.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;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;}
.m9_c00310{transform:matrix(0.100003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100003,0.000000,0.000000,0.250000,0,0);}
.m8_c00310{transform:matrix(0.141895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141895,0.000000,0.000000,0.250000,0,0);}
.ma_c00310{transform:matrix(0.156757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156757,0.000000,0.000000,0.250000,0,0);}
.m4_c00310{transform:matrix(0.157831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157831,0.000000,0.000000,0.250000,0,0);}
.m10_c00310{transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);}
.mf_c00310{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.mb_c00310{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m0_c00310{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m2_c00310{transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);}
.m7_c00310{transform:matrix(0.248556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248556,0.000000,0.000000,0.250000,0,0);}
.m5_c00310{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m6_c00310{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.m3_c00310{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_c00310{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);}
.md_c00310{transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);}
.mc_c00310{transform:matrix(0.254516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254516,0.000000,0.000000,0.250000,0,0);}
.me_c00310{transform:matrix(0.260172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260172,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls53_c00310{letter-spacing:-2.457000px;}
.ls94_c00310{letter-spacing:-2.394000px;}
.ls93_c00310{letter-spacing:-2.373000px;}
.ls3f_c00310{letter-spacing:-2.352000px;}
.ls5c_c00310{letter-spacing:-2.204280px;}
.ls78_c00310{letter-spacing:-2.197260px;}
.ls87_c00310{letter-spacing:-2.176380px;}
.ls61_c00310{letter-spacing:-1.951560px;}
.ls69_c00310{letter-spacing:-1.916460px;}
.ls76_c00310{letter-spacing:-1.642680px;}
.ls77_c00310{letter-spacing:-1.635660px;}
.ls71_c00310{letter-spacing:-1.516320px;}
.ls8a_c00310{letter-spacing:-1.509300px;}
.ls72_c00310{letter-spacing:-1.446120px;}
.ls7a_c00310{letter-spacing:-1.361880px;}
.ls4d_c00310{letter-spacing:-1.186380px;}
.ls41_c00310{letter-spacing:-1.151280px;}
.ls92_c00310{letter-spacing:-1.095120px;}
.ls58_c00310{letter-spacing:-1.045980px;}
.ls6b_c00310{letter-spacing:-0.947700px;}
.ls75_c00310{letter-spacing:-0.912600px;}
.ls80_c00310{letter-spacing:-0.877500px;}
.ls56_c00310{letter-spacing:-0.856440px;}
.ls55_c00310{letter-spacing:-0.849420px;}
.ls82_c00310{letter-spacing:-0.842400px;}
.ls73_c00310{letter-spacing:-0.821340px;}
.ls66_c00310{letter-spacing:-0.807300px;}
.ls44_c00310{letter-spacing:-0.793260px;}
.ls45_c00310{letter-spacing:-0.765180px;}
.ls43_c00310{letter-spacing:-0.744120px;}
.ls81_c00310{letter-spacing:-0.687960px;}
.ls7c_c00310{letter-spacing:-0.680940px;}
.ls54_c00310{letter-spacing:-0.610740px;}
.ls88_c00310{letter-spacing:-0.596700px;}
.ls5e_c00310{letter-spacing:-0.589680px;}
.ls6d_c00310{letter-spacing:-0.568620px;}
.ls86_c00310{letter-spacing:-0.547560px;}
.ls7e_c00310{letter-spacing:-0.533520px;}
.ls67_c00310{letter-spacing:-0.526500px;}
.ls6c_c00310{letter-spacing:-0.512460px;}
.ls6e_c00310{letter-spacing:-0.498420px;}
.ls48_c00310{letter-spacing:-0.484380px;}
.ls40_c00310{letter-spacing:-0.470340px;}
.ls6a_c00310{letter-spacing:-0.449280px;}
.ls6f_c00310{letter-spacing:-0.414180px;}
.ls62_c00310{letter-spacing:-0.407160px;}
.ls83_c00310{letter-spacing:-0.400140px;}
.ls74_c00310{letter-spacing:-0.386100px;}
.ls85_c00310{letter-spacing:-0.372060px;}
.ls79_c00310{letter-spacing:-0.358020px;}
.ls4c_c00310{letter-spacing:-0.351000px;}
.ls5a_c00310{letter-spacing:-0.343980px;}
.ls59_c00310{letter-spacing:-0.308880px;}
.ls5b_c00310{letter-spacing:-0.287820px;}
.ls70_c00310{letter-spacing:-0.273780px;}
.ls4f_c00310{letter-spacing:-0.266760px;}
.ls7b_c00310{letter-spacing:-0.245700px;}
.ls49_c00310{letter-spacing:-0.231660px;}
.ls8b_c00310{letter-spacing:-0.203580px;}
.ls7f_c00310{letter-spacing:-0.196560px;}
.ls57_c00310{letter-spacing:-0.182520px;}
.ls51_c00310{letter-spacing:-0.175500px;}
.ls4a_c00310{letter-spacing:-0.161460px;}
.ls5d_c00310{letter-spacing:-0.154440px;}
.ls84_c00310{letter-spacing:-0.133380px;}
.ls89_c00310{letter-spacing:-0.126360px;}
.ls4e_c00310{letter-spacing:-0.119340px;}
.ls50_c00310{letter-spacing:-0.112320px;}
.ls64_c00310{letter-spacing:-0.098280px;}
.ls8c_c00310{letter-spacing:-0.091260px;}
.ls4b_c00310{letter-spacing:-0.077220px;}
.ls46_c00310{letter-spacing:-0.063180px;}
.ls65_c00310{letter-spacing:-0.049140px;}
.ls5f_c00310{letter-spacing:-0.042120px;}
.ls42_c00310{letter-spacing:-0.035100px;}
.ls60_c00310{letter-spacing:-0.014040px;}
.ls47_c00310{letter-spacing:0.000000px;}
.ls32_c00310{letter-spacing:0.007020px;}
.ls4_c00310{letter-spacing:0.014040px;}
.ls22_c00310{letter-spacing:0.028080px;}
.ls1e_c00310{letter-spacing:0.035100px;}
.ls31_c00310{letter-spacing:0.049140px;}
.ls34_c00310{letter-spacing:0.056160px;}
.ls18_c00310{letter-spacing:0.063180px;}
.ls1c_c00310{letter-spacing:0.070200px;}
.ls19_c00310{letter-spacing:0.084240px;}
.ls29_c00310{letter-spacing:0.091260px;}
.ls1b_c00310{letter-spacing:0.105300px;}
.ls17_c00310{letter-spacing:0.119340px;}
.ls3_c00310{letter-spacing:0.126360px;}
.ls16_c00310{letter-spacing:0.140400px;}
.ls5_c00310{letter-spacing:0.154440px;}
.lsb_c00310{letter-spacing:0.161460px;}
.ls23_c00310{letter-spacing:0.168480px;}
.lsa_c00310{letter-spacing:0.175500px;}
.ls2f_c00310{letter-spacing:0.189540px;}
.ls33_c00310{letter-spacing:0.196560px;}
.ls36_c00310{letter-spacing:0.203580px;}
.ls14_c00310{letter-spacing:0.238680px;}
.ls39_c00310{letter-spacing:0.245700px;}
.ls7d_c00310{letter-spacing:0.259740px;}
.ls2b_c00310{letter-spacing:0.266760px;}
.ls9_c00310{letter-spacing:0.294840px;}
.ls24_c00310{letter-spacing:0.301860px;}
.ls6_c00310{letter-spacing:0.372060px;}
.ls1d_c00310{letter-spacing:0.386100px;}
.ls1a_c00310{letter-spacing:0.400140px;}
.ls20_c00310{letter-spacing:0.442260px;}
.lsf_c00310{letter-spacing:0.449280px;}
.ls13_c00310{letter-spacing:0.491400px;}
.ls21_c00310{letter-spacing:0.498420px;}
.lsc_c00310{letter-spacing:0.505440px;}
.ls11_c00310{letter-spacing:0.554580px;}
.ls15_c00310{letter-spacing:0.561600px;}
.ls63_c00310{letter-spacing:0.575640px;}
.ls38_c00310{letter-spacing:0.582660px;}
.ls7_c00310{letter-spacing:0.610740px;}
.ls12_c00310{letter-spacing:0.659880px;}
.ls37_c00310{letter-spacing:0.663480px;}
.ls3a_c00310{letter-spacing:0.673920px;}
.ls0_c00310{letter-spacing:0.697680px;}
.ls25_c00310{letter-spacing:0.752400px;}
.ls26_c00310{letter-spacing:0.759240px;}
.ls28_c00310{letter-spacing:0.806820px;}
.ls27_c00310{letter-spacing:0.813960px;}
.ls8_c00310{letter-spacing:0.821340px;}
.ls2_c00310{letter-spacing:0.909720px;}
.ls8d_c00310{letter-spacing:0.912600px;}
.ls2c_c00310{letter-spacing:0.943920px;}
.ls2d_c00310{letter-spacing:0.984960px;}
.ls35_c00310{letter-spacing:1.073880px;}
.ls1f_c00310{letter-spacing:1.095120px;}
.ls1_c00310{letter-spacing:1.114920px;}
.ls3b_c00310{letter-spacing:1.172340px;}
.ls10_c00310{letter-spacing:1.214460px;}
.ls3c_c00310{letter-spacing:1.249140px;}
.ls91_c00310{letter-spacing:1.301460px;}
.ls2e_c00310{letter-spacing:1.319760px;}
.lsd_c00310{letter-spacing:1.425060px;}
.ls2a_c00310{letter-spacing:1.558440px;}
.ls3d_c00310{letter-spacing:1.805040px;}
.ls30_c00310{letter-spacing:1.839240px;}
.ls68_c00310{letter-spacing:2.218320px;}
.lse_c00310{letter-spacing:2.337660px;}
.ls8e_c00310{letter-spacing:2.387100px;}
.ls52_c00310{letter-spacing:2.485080px;}
.ls3e_c00310{letter-spacing:2.596380px;}
.ls90_c00310{letter-spacing:2.740260px;}
.ls8f_c00310{letter-spacing:3.270000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{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__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00310{word-spacing:-0.205920px;}
.ws3_c00310{word-spacing:0.000000px;}
.ws2_c00310{word-spacing:10.137600px;}
.ws0_c00310{word-spacing:18.314160px;}
._b_c00310{margin-left:-4.002540px;}
._3_c00310{margin-left:-1.452000px;}
._c_c00310{width:1.032840px;}
._0_c00310{width:2.230320px;}
._d_c00310{width:3.248280px;}
._a_c00310{width:4.329780px;}
._2_c00310{width:5.371080px;}
._1_c00310{width:6.921720px;}
._9_c00310{width:8.016840px;}
._6_c00310{width:9.420840px;}
._8_c00310{width:11.583000px;}
._7_c00310{width:13.267800px;}
._e_c00310{width:15.331680px;}
._12_c00310{width:18.567780px;}
._5_c00310{width:19.677060px;}
._4_c00310{width:21.684780px;}
._f_c00310{width:23.397660px;}
._11_c00310{width:24.850800px;}
._10_c00310{width:26.591760px;}
.fc0_c00310{color:transparent;}
.fs4_c00310{font-size:53.280000px;}
.fs6_c00310{font-size:65.400000px;}
.fs0_c00310{font-size:67.200000px;}
.fs5_c00310{font-size:67.800000px;}
.fs1_c00310{font-size:68.400000px;}
.fs2_c00310{font-size:70.200000px;}
.fs3_c00310{font-size:71.400000px;}
.y0_c00310{bottom:0.000000px;}
.y1f_c00310{bottom:67.695000px;}
.y1e_c00310{bottom:125.640000px;}
.y1d_c00310{bottom:156.601800px;}
.y1c_c00310{bottom:187.560000px;}
.y1b_c00310{bottom:249.135000px;}
.y1a_c00310{bottom:311.421300px;}
.y19_c00310{bottom:343.818600px;}
.y18_c00310{bottom:374.776800px;}
.y17_c00310{bottom:405.735000px;}
.y16_c00310{bottom:466.935000px;}
.y14_c00310{bottom:528.112050px;}
.y15_c00310{bottom:528.120000px;}
.y13_c00310{bottom:589.695000px;}
.y12_c00310{bottom:620.655000px;}
.y11_c00310{bottom:682.580400px;}
.y10_c00310{bottom:744.128250px;}
.yf_c00310{bottom:775.455000px;}
.ye_c00310{bottom:806.400000px;}
.yd_c00310{bottom:806.411400px;}
.yc_c00310{bottom:837.369600px;}
.yb_c00310{bottom:868.696350px;}
.ya_c00310{bottom:898.935000px;}
.y9_c00310{bottom:898.939350px;}
.y7_c00310{bottom:929.869200px;}
.y8_c00310{bottom:929.880000px;}
.y6_c00310{bottom:960.844950px;}
.y5_c00310{bottom:991.452150px;}
.y4_c00310{bottom:1053.000000px;}
.y3_c00310{bottom:1083.975000px;}
.y2_c00310{bottom:1114.935000px;}
.y1_c00310{bottom:1191.240000px;}
.h5_c00310{height:35.484480px;}
.h7_c00310{height:64.186523px;}
.h2_c00310{height:65.953125px;}
.h8_c00310{height:67.130859px;}
.h3_c00310{height:68.897461px;}
.h4_c00310{height:70.040332px;}
.h6_c00310{height:70.713281px;}
.h1_c00310{height:1263.000000px;}
.h0_c00310{height:1263.240000px;}
.w1_c00310{width:892.500000px;}
.w0_c00310{width:892.800000px;}
.x0_c00310{left:0.000000px;}
.xa_c00310{left:118.433400px;}
.x3_c00310{left:119.899500px;}
.x1_c00310{left:122.685000px;}
.x4_c00310{left:148.530000px;}
.x5_c00310{left:166.875000px;}
.xb_c00310{left:172.294350px;}
.x2_c00310{left:174.570000px;}
.x1c_c00310{left:223.020000px;}
.xd_c00310{left:240.285000px;}
.x1d_c00310{left:244.305000px;}
.xe_c00310{left:268.710000px;}
.xf_c00310{left:285.735000px;}
.xc_c00310{left:293.400000px;}
.x1e_c00310{left:344.730000px;}
.x1f_c00310{left:365.730000px;}
.x20_c00310{left:396.540000px;}
.x21_c00310{left:417.570000px;}
.x23_c00310{left:422.190000px;}
.x10_c00310{left:426.765000px;}
.x18_c00310{left:446.040000px;}
.x11_c00310{left:455.205000px;}
.x8_c00310{left:461.295000px;}
.x9_c00310{left:466.740000px;}
.x19_c00310{left:477.735000px;}
.x1a_c00310{left:524.490000px;}
.x14_c00310{left:525.765000px;}
.x15_c00310{left:553.860000px;}
.x12_c00310{left:591.645000px;}
.x6_c00310{left:599.595000px;}
.x16_c00310{left:609.495000px;}
.x13_c00310{left:619.455000px;}
.x1b_c00310{left:632.175000px;}
.x22_c00310{left:635.880000px;}
.x17_c00310{left:671.205000px;}
.x7_c00310{left:681.810000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls53_c00310{letter-spacing:-2.184000pt;}
.ls94_c00310{letter-spacing:-2.128000pt;}
.ls93_c00310{letter-spacing:-2.109333pt;}
.ls3f_c00310{letter-spacing:-2.090667pt;}
.ls5c_c00310{letter-spacing:-1.959360pt;}
.ls78_c00310{letter-spacing:-1.953120pt;}
.ls87_c00310{letter-spacing:-1.934560pt;}
.ls61_c00310{letter-spacing:-1.734720pt;}
.ls69_c00310{letter-spacing:-1.703520pt;}
.ls76_c00310{letter-spacing:-1.460160pt;}
.ls77_c00310{letter-spacing:-1.453920pt;}
.ls71_c00310{letter-spacing:-1.347840pt;}
.ls8a_c00310{letter-spacing:-1.341600pt;}
.ls72_c00310{letter-spacing:-1.285440pt;}
.ls7a_c00310{letter-spacing:-1.210560pt;}
.ls4d_c00310{letter-spacing:-1.054560pt;}
.ls41_c00310{letter-spacing:-1.023360pt;}
.ls92_c00310{letter-spacing:-0.973440pt;}
.ls58_c00310{letter-spacing:-0.929760pt;}
.ls6b_c00310{letter-spacing:-0.842400pt;}
.ls75_c00310{letter-spacing:-0.811200pt;}
.ls80_c00310{letter-spacing:-0.780000pt;}
.ls56_c00310{letter-spacing:-0.761280pt;}
.ls55_c00310{letter-spacing:-0.755040pt;}
.ls82_c00310{letter-spacing:-0.748800pt;}
.ls73_c00310{letter-spacing:-0.730080pt;}
.ls66_c00310{letter-spacing:-0.717600pt;}
.ls44_c00310{letter-spacing:-0.705120pt;}
.ls45_c00310{letter-spacing:-0.680160pt;}
.ls43_c00310{letter-spacing:-0.661440pt;}
.ls81_c00310{letter-spacing:-0.611520pt;}
.ls7c_c00310{letter-spacing:-0.605280pt;}
.ls54_c00310{letter-spacing:-0.542880pt;}
.ls88_c00310{letter-spacing:-0.530400pt;}
.ls5e_c00310{letter-spacing:-0.524160pt;}
.ls6d_c00310{letter-spacing:-0.505440pt;}
.ls86_c00310{letter-spacing:-0.486720pt;}
.ls7e_c00310{letter-spacing:-0.474240pt;}
.ls67_c00310{letter-spacing:-0.468000pt;}
.ls6c_c00310{letter-spacing:-0.455520pt;}
.ls6e_c00310{letter-spacing:-0.443040pt;}
.ls48_c00310{letter-spacing:-0.430560pt;}
.ls40_c00310{letter-spacing:-0.418080pt;}
.ls6a_c00310{letter-spacing:-0.399360pt;}
.ls6f_c00310{letter-spacing:-0.368160pt;}
.ls62_c00310{letter-spacing:-0.361920pt;}
.ls83_c00310{letter-spacing:-0.355680pt;}
.ls74_c00310{letter-spacing:-0.343200pt;}
.ls85_c00310{letter-spacing:-0.330720pt;}
.ls79_c00310{letter-spacing:-0.318240pt;}
.ls4c_c00310{letter-spacing:-0.312000pt;}
.ls5a_c00310{letter-spacing:-0.305760pt;}
.ls59_c00310{letter-spacing:-0.274560pt;}
.ls5b_c00310{letter-spacing:-0.255840pt;}
.ls70_c00310{letter-spacing:-0.243360pt;}
.ls4f_c00310{letter-spacing:-0.237120pt;}
.ls7b_c00310{letter-spacing:-0.218400pt;}
.ls49_c00310{letter-spacing:-0.205920pt;}
.ls8b_c00310{letter-spacing:-0.180960pt;}
.ls7f_c00310{letter-spacing:-0.174720pt;}
.ls57_c00310{letter-spacing:-0.162240pt;}
.ls51_c00310{letter-spacing:-0.156000pt;}
.ls4a_c00310{letter-spacing:-0.143520pt;}
.ls5d_c00310{letter-spacing:-0.137280pt;}
.ls84_c00310{letter-spacing:-0.118560pt;}
.ls89_c00310{letter-spacing:-0.112320pt;}
.ls4e_c00310{letter-spacing:-0.106080pt;}
.ls50_c00310{letter-spacing:-0.099840pt;}
.ls64_c00310{letter-spacing:-0.087360pt;}
.ls8c_c00310{letter-spacing:-0.081120pt;}
.ls4b_c00310{letter-spacing:-0.068640pt;}
.ls46_c00310{letter-spacing:-0.056160pt;}
.ls65_c00310{letter-spacing:-0.043680pt;}
.ls5f_c00310{letter-spacing:-0.037440pt;}
.ls42_c00310{letter-spacing:-0.031200pt;}
.ls60_c00310{letter-spacing:-0.012480pt;}
.ls47_c00310{letter-spacing:0.000000pt;}
.ls32_c00310{letter-spacing:0.006240pt;}
.ls4_c00310{letter-spacing:0.012480pt;}
.ls22_c00310{letter-spacing:0.024960pt;}
.ls1e_c00310{letter-spacing:0.031200pt;}
.ls31_c00310{letter-spacing:0.043680pt;}
.ls34_c00310{letter-spacing:0.049920pt;}
.ls18_c00310{letter-spacing:0.056160pt;}
.ls1c_c00310{letter-spacing:0.062400pt;}
.ls19_c00310{letter-spacing:0.074880pt;}
.ls29_c00310{letter-spacing:0.081120pt;}
.ls1b_c00310{letter-spacing:0.093600pt;}
.ls17_c00310{letter-spacing:0.106080pt;}
.ls3_c00310{letter-spacing:0.112320pt;}
.ls16_c00310{letter-spacing:0.124800pt;}
.ls5_c00310{letter-spacing:0.137280pt;}
.lsb_c00310{letter-spacing:0.143520pt;}
.ls23_c00310{letter-spacing:0.149760pt;}
.lsa_c00310{letter-spacing:0.156000pt;}
.ls2f_c00310{letter-spacing:0.168480pt;}
.ls33_c00310{letter-spacing:0.174720pt;}
.ls36_c00310{letter-spacing:0.180960pt;}
.ls14_c00310{letter-spacing:0.212160pt;}
.ls39_c00310{letter-spacing:0.218400pt;}
.ls7d_c00310{letter-spacing:0.230880pt;}
.ls2b_c00310{letter-spacing:0.237120pt;}
.ls9_c00310{letter-spacing:0.262080pt;}
.ls24_c00310{letter-spacing:0.268320pt;}
.ls6_c00310{letter-spacing:0.330720pt;}
.ls1d_c00310{letter-spacing:0.343200pt;}
.ls1a_c00310{letter-spacing:0.355680pt;}
.ls20_c00310{letter-spacing:0.393120pt;}
.lsf_c00310{letter-spacing:0.399360pt;}
.ls13_c00310{letter-spacing:0.436800pt;}
.ls21_c00310{letter-spacing:0.443040pt;}
.lsc_c00310{letter-spacing:0.449280pt;}
.ls11_c00310{letter-spacing:0.492960pt;}
.ls15_c00310{letter-spacing:0.499200pt;}
.ls63_c00310{letter-spacing:0.511680pt;}
.ls38_c00310{letter-spacing:0.517920pt;}
.ls7_c00310{letter-spacing:0.542880pt;}
.ls12_c00310{letter-spacing:0.586560pt;}
.ls37_c00310{letter-spacing:0.589760pt;}
.ls3a_c00310{letter-spacing:0.599040pt;}
.ls0_c00310{letter-spacing:0.620160pt;}
.ls25_c00310{letter-spacing:0.668800pt;}
.ls26_c00310{letter-spacing:0.674880pt;}
.ls28_c00310{letter-spacing:0.717173pt;}
.ls27_c00310{letter-spacing:0.723520pt;}
.ls8_c00310{letter-spacing:0.730080pt;}
.ls2_c00310{letter-spacing:0.808640pt;}
.ls8d_c00310{letter-spacing:0.811200pt;}
.ls2c_c00310{letter-spacing:0.839040pt;}
.ls2d_c00310{letter-spacing:0.875520pt;}
.ls35_c00310{letter-spacing:0.954560pt;}
.ls1f_c00310{letter-spacing:0.973440pt;}
.ls1_c00310{letter-spacing:0.991040pt;}
.ls3b_c00310{letter-spacing:1.042080pt;}
.ls10_c00310{letter-spacing:1.079520pt;}
.ls3c_c00310{letter-spacing:1.110347pt;}
.ls91_c00310{letter-spacing:1.156853pt;}
.ls2e_c00310{letter-spacing:1.173120pt;}
.lsd_c00310{letter-spacing:1.266720pt;}
.ls2a_c00310{letter-spacing:1.385280pt;}
.ls3d_c00310{letter-spacing:1.604480pt;}
.ls30_c00310{letter-spacing:1.634880pt;}
.ls68_c00310{letter-spacing:1.971840pt;}
.lse_c00310{letter-spacing:2.077920pt;}
.ls8e_c00310{letter-spacing:2.121867pt;}
.ls52_c00310{letter-spacing:2.208960pt;}
.ls3e_c00310{letter-spacing:2.307893pt;}
.ls90_c00310{letter-spacing:2.435787pt;}
.ls8f_c00310{letter-spacing:2.906667pt;}
.ws1_c00310{word-spacing:-0.183040pt;}
.ws3_c00310{word-spacing:0.000000pt;}
.ws2_c00310{word-spacing:9.011200pt;}
.ws0_c00310{word-spacing:16.279253pt;}
._b_c00310{margin-left:-3.557813pt;}
._3_c00310{margin-left:-1.290667pt;}
._c_c00310{width:0.918080pt;}
._0_c00310{width:1.982507pt;}
._d_c00310{width:2.887360pt;}
._a_c00310{width:3.848693pt;}
._2_c00310{width:4.774293pt;}
._1_c00310{width:6.152640pt;}
._9_c00310{width:7.126080pt;}
._6_c00310{width:8.374080pt;}
._8_c00310{width:10.296000pt;}
._7_c00310{width:11.793600pt;}
._e_c00310{width:13.628160pt;}
._12_c00310{width:16.504693pt;}
._5_c00310{width:17.490720pt;}
._4_c00310{width:19.275360pt;}
._f_c00310{width:20.797920pt;}
._11_c00310{width:22.089600pt;}
._10_c00310{width:23.637120pt;}
.fs4_c00310{font-size:47.360000pt;}
.fs6_c00310{font-size:58.133333pt;}
.fs0_c00310{font-size:59.733333pt;}
.fs5_c00310{font-size:60.266667pt;}
.fs1_c00310{font-size:60.800000pt;}
.fs2_c00310{font-size:62.400000pt;}
.fs3_c00310{font-size:63.466667pt;}
.y0_c00310{bottom:0.000000pt;}
.y1f_c00310{bottom:60.173333pt;}
.y1e_c00310{bottom:111.680000pt;}
.y1d_c00310{bottom:139.201600pt;}
.y1c_c00310{bottom:166.720000pt;}
.y1b_c00310{bottom:221.453333pt;}
.y1a_c00310{bottom:276.818933pt;}
.y19_c00310{bottom:305.616533pt;}
.y18_c00310{bottom:333.134933pt;}
.y17_c00310{bottom:360.653333pt;}
.y16_c00310{bottom:415.053333pt;}
.y14_c00310{bottom:469.432933pt;}
.y15_c00310{bottom:469.440000pt;}
.y13_c00310{bottom:524.173333pt;}
.y12_c00310{bottom:551.693333pt;}
.y11_c00310{bottom:606.738133pt;}
.y10_c00310{bottom:661.447333pt;}
.yf_c00310{bottom:689.293333pt;}
.ye_c00310{bottom:716.800000pt;}
.yd_c00310{bottom:716.810133pt;}
.yc_c00310{bottom:744.328533pt;}
.yb_c00310{bottom:772.174533pt;}
.ya_c00310{bottom:799.053333pt;}
.y9_c00310{bottom:799.057200pt;}
.y7_c00310{bottom:826.550400pt;}
.y8_c00310{bottom:826.560000pt;}
.y6_c00310{bottom:854.084400pt;}
.y5_c00310{bottom:881.290800pt;}
.y4_c00310{bottom:936.000000pt;}
.y3_c00310{bottom:963.533333pt;}
.y2_c00310{bottom:991.053333pt;}
.y1_c00310{bottom:1058.880000pt;}
.h5_c00310{height:31.541760pt;}
.h7_c00310{height:57.054688pt;}
.h2_c00310{height:58.625000pt;}
.h8_c00310{height:59.671875pt;}
.h3_c00310{height:61.242187pt;}
.h4_c00310{height:62.258073pt;}
.h6_c00310{height:62.856250pt;}
.h1_c00310{height:1122.666667pt;}
.h0_c00310{height:1122.880000pt;}
.w1_c00310{width:793.333333pt;}
.w0_c00310{width:793.600000pt;}
.x0_c00310{left:0.000000pt;}
.xa_c00310{left:105.274133pt;}
.x3_c00310{left:106.577333pt;}
.x1_c00310{left:109.053333pt;}
.x4_c00310{left:132.026667pt;}
.x5_c00310{left:148.333333pt;}
.xb_c00310{left:153.150533pt;}
.x2_c00310{left:155.173333pt;}
.x1c_c00310{left:198.240000pt;}
.xd_c00310{left:213.586667pt;}
.x1d_c00310{left:217.160000pt;}
.xe_c00310{left:238.853333pt;}
.xf_c00310{left:253.986667pt;}
.xc_c00310{left:260.800000pt;}
.x1e_c00310{left:306.426667pt;}
.x1f_c00310{left:325.093333pt;}
.x20_c00310{left:352.480000pt;}
.x21_c00310{left:371.173333pt;}
.x23_c00310{left:375.280000pt;}
.x10_c00310{left:379.346667pt;}
.x18_c00310{left:396.480000pt;}
.x11_c00310{left:404.626667pt;}
.x8_c00310{left:410.040000pt;}
.x9_c00310{left:414.880000pt;}
.x19_c00310{left:424.653333pt;}
.x1a_c00310{left:466.213333pt;}
.x14_c00310{left:467.346667pt;}
.x15_c00310{left:492.320000pt;}
.x12_c00310{left:525.906667pt;}
.x6_c00310{left:532.973333pt;}
.x16_c00310{left:541.773333pt;}
.x13_c00310{left:550.626667pt;}
.x1b_c00310{left:561.933333pt;}
.x22_c00310{left:565.226667pt;}
.x17_c00310{left:596.626667pt;}
.x7_c00310{left:606.053333pt;}
}





/* 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_c00311 {
    display:none;
  }
  .loading-indicator_c00311.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00311 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_c00311 { 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_c00311" -> "#page-container .classname_c00311")
 */
.pf_c00311 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00311 { /* 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_c00311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00311 { /* 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_c00311 { /* 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_c00311 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00311 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00311 {overflow:visible;}
  }
}
.c_c00311 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00311 { /* 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_c00311:after { /* webkit #35443 */
  content: '';
}
.t_c00311:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00311 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 */
}
.__c00311 { /* 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_c00311 { /* info for Javascript */
  display:none;
}
.l_c00311 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00311 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00311 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00311: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_c00311 {
    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_c00311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00311.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_c00311 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00311;src:url('chunks/assets/font_224f07550a01e4766ff16048.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.284668;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_c00311;src:url('chunks/assets/font_94f925ec452232b096f34980.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.284180;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_c00311;src:url('chunks/assets/font_0b972d03bfeef177606a2150.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.311035;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_c00311;src:url('chunks/assets/font_0a75d9553edff13207d30a28.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;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;}
.m7_c00311{transform:matrix(0.239949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239949,0.000000,0.000000,0.250000,0,0);}
.m5_c00311{transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);}
.m6_c00311{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m0_c00311{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_c00311{transform:matrix(0.257430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257430,0.000000,0.000000,0.250000,0,0);}
.m3_c00311{transform:matrix(0.286711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286711,0.000000,0.000000,0.250000,0,0);}
.m4_c00311{transform:matrix(0.295135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295135,0.000000,0.000000,0.250000,0,0);}
.m2_c00311{transform:matrix(0.325719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325719,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls7e_c00311{letter-spacing:-2.415000px;}
.ls73_c00311{letter-spacing:-2.387400px;}
.ls7f_c00311{letter-spacing:-1.959600px;}
.ls86_c00311{letter-spacing:-1.869000px;}
.ls80_c00311{letter-spacing:-1.580100px;}
.ls82_c00311{letter-spacing:-1.276500px;}
.ls61_c00311{letter-spacing:-1.221300px;}
.ls5c_c00311{letter-spacing:-1.159200px;}
.ls68_c00311{letter-spacing:-1.110900px;}
.ls63_c00311{letter-spacing:-1.083300px;}
.ls74_c00311{letter-spacing:-1.014300px;}
.ls7d_c00311{letter-spacing:-0.952200px;}
.ls5d_c00311{letter-spacing:-0.945300px;}
.ls7b_c00311{letter-spacing:-0.862500px;}
.ls75_c00311{letter-spacing:-0.821100px;}
.ls5a_c00311{letter-spacing:-0.800400px;}
.ls5f_c00311{letter-spacing:-0.676200px;}
.ls67_c00311{letter-spacing:-0.634800px;}
.ls77_c00311{letter-spacing:-0.586500px;}
.ls84_c00311{letter-spacing:-0.545100px;}
.ls62_c00311{letter-spacing:-0.503700px;}
.ls72_c00311{letter-spacing:-0.469200px;}
.ls7c_c00311{letter-spacing:-0.455400px;}
.ls7a_c00311{letter-spacing:-0.282900px;}
.ls85_c00311{letter-spacing:-0.262200px;}
.ls81_c00311{letter-spacing:-0.220800px;}
.ls6c_c00311{letter-spacing:-0.200100px;}
.ls70_c00311{letter-spacing:-0.124200px;}
.ls5e_c00311{letter-spacing:-0.096600px;}
.ls78_c00311{letter-spacing:-0.089700px;}
.ls76_c00311{letter-spacing:-0.082800px;}
.ls6d_c00311{letter-spacing:-0.075900px;}
.ls64_c00311{letter-spacing:-0.062100px;}
.ls66_c00311{letter-spacing:-0.041400px;}
.ls6a_c00311{letter-spacing:-0.034500px;}
.ls60_c00311{letter-spacing:-0.027600px;}
.ls6b_c00311{letter-spacing:-0.020700px;}
.ls79_c00311{letter-spacing:-0.013800px;}
.ls5b_c00311{letter-spacing:0.000000px;}
.ls2a_c00311{letter-spacing:0.041400px;}
.ls14_c00311{letter-spacing:0.048300px;}
.ls9_c00311{letter-spacing:0.055200px;}
.ls3d_c00311{letter-spacing:0.069000px;}
.ls26_c00311{letter-spacing:0.089700px;}
.ls3c_c00311{letter-spacing:0.110400px;}
.ls55_c00311{letter-spacing:0.117300px;}
.ls25_c00311{letter-spacing:0.131100px;}
.ls28_c00311{letter-spacing:0.144900px;}
.ls2b_c00311{letter-spacing:0.151800px;}
.ls27_c00311{letter-spacing:0.165600px;}
.ls20_c00311{letter-spacing:0.179400px;}
.ls24_c00311{letter-spacing:0.200100px;}
.ls4_c00311{letter-spacing:0.220800px;}
.ls38_c00311{letter-spacing:0.227700px;}
.ls23_c00311{letter-spacing:0.248400px;}
.ls39_c00311{letter-spacing:0.255300px;}
.ls11_c00311{letter-spacing:0.262200px;}
.ls1d_c00311{letter-spacing:0.269100px;}
.ls1a_c00311{letter-spacing:0.296700px;}
.ls3a_c00311{letter-spacing:0.317400px;}
.ls56_c00311{letter-spacing:0.331200px;}
.ls33_c00311{letter-spacing:0.345000px;}
.ls3f_c00311{letter-spacing:0.351900px;}
.ls19_c00311{letter-spacing:0.365700px;}
.ls65_c00311{letter-spacing:0.379500px;}
.ls18_c00311{letter-spacing:0.386400px;}
.ls71_c00311{letter-spacing:0.393300px;}
.ls4d_c00311{letter-spacing:0.400200px;}
.ls3_c00311{letter-spacing:0.407100px;}
.ls32_c00311{letter-spacing:0.441600px;}
.ls3b_c00311{letter-spacing:0.462300px;}
.ls8_c00311{letter-spacing:0.469200px;}
.ls34_c00311{letter-spacing:0.503700px;}
.ls12_c00311{letter-spacing:0.517500px;}
.lsb_c00311{letter-spacing:0.538200px;}
.ls36_c00311{letter-spacing:0.545100px;}
.ls40_c00311{letter-spacing:0.552000px;}
.ls4e_c00311{letter-spacing:0.558900px;}
.ls3e_c00311{letter-spacing:0.572700px;}
.ls16_c00311{letter-spacing:0.576300px;}
.ls83_c00311{letter-spacing:0.579600px;}
.ls6_c00311{letter-spacing:0.583080px;}
.ls31_c00311{letter-spacing:0.586500px;}
.ls7_c00311{letter-spacing:0.603420px;}
.ls1b_c00311{letter-spacing:0.607200px;}
.ls1_c00311{letter-spacing:0.621000px;}
.ls30_c00311{letter-spacing:0.627900px;}
.ls2d_c00311{letter-spacing:0.634800px;}
.ls1f_c00311{letter-spacing:0.662400px;}
.ls57_c00311{letter-spacing:0.669300px;}
.ls1c_c00311{letter-spacing:0.676200px;}
.ls53_c00311{letter-spacing:0.683100px;}
.ls17_c00311{letter-spacing:0.690000px;}
.ls58_c00311{letter-spacing:0.696900px;}
.ls4c_c00311{letter-spacing:0.717600px;}
.ls69_c00311{letter-spacing:0.724500px;}
.ls45_c00311{letter-spacing:0.752100px;}
.ls21_c00311{letter-spacing:0.765900px;}
.ls49_c00311{letter-spacing:0.800400px;}
.ls1e_c00311{letter-spacing:0.828000px;}
.ls51_c00311{letter-spacing:0.855600px;}
.lse_c00311{letter-spacing:0.862500px;}
.ls35_c00311{letter-spacing:0.890100px;}
.ls2e_c00311{letter-spacing:0.903900px;}
.ls48_c00311{letter-spacing:0.910800px;}
.lsc_c00311{letter-spacing:0.938400px;}
.ls4a_c00311{letter-spacing:0.979800px;}
.ls10_c00311{letter-spacing:0.986700px;}
.ls42_c00311{letter-spacing:1.003440px;}
.ls47_c00311{letter-spacing:1.017000px;}
.ls29_c00311{letter-spacing:1.035000px;}
.ls54_c00311{letter-spacing:1.041900px;}
.ls0_c00311{letter-spacing:1.057680px;}
.ls50_c00311{letter-spacing:1.069500px;}
.ls52_c00311{letter-spacing:1.097100px;}
.ls15_c00311{letter-spacing:1.110900px;}
.ls37_c00311{letter-spacing:1.193700px;}
.ls13_c00311{letter-spacing:1.200060px;}
.ls44_c00311{letter-spacing:1.245840px;}
.ls41_c00311{letter-spacing:1.267860px;}
.ls2c_c00311{letter-spacing:1.311000px;}
.lsf_c00311{letter-spacing:1.331700px;}
.ls4f_c00311{letter-spacing:1.359300px;}
.ls46_c00311{letter-spacing:1.383120px;}
.ls4b_c00311{letter-spacing:1.393800px;}
.ls22_c00311{letter-spacing:1.421400px;}
.ls2_c00311{letter-spacing:1.469700px;}
.ls2f_c00311{letter-spacing:1.490400px;}
.lsd_c00311{letter-spacing:1.842300px;}
.ls43_c00311{letter-spacing:1.851360px;}
.ls59_c00311{letter-spacing:1.986000px;}
.ls5_c00311{letter-spacing:2.014800px;}
.lsa_c00311{letter-spacing:2.056200px;}
.ls6f_c00311{letter-spacing:2.880000px;}
.ls6e_c00311{letter-spacing:3.450000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{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__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00311{word-spacing:-0.359400px;}
.ws3_c00311{word-spacing:0.000000px;}
.ws2_c00311{word-spacing:12.658200px;}
.ws1_c00311{word-spacing:13.387980px;}
._4_c00311{margin-left:-6.196200px;}
._14_c00311{margin-left:-4.745160px;}
._0_c00311{margin-left:-3.657000px;}
._2_c00311{margin-left:-1.814700px;}
._3_c00311{width:1.656000px;}
._1_c00311{width:3.677700px;}
._a_c00311{width:4.823100px;}
._7_c00311{width:6.796680px;}
._b_c00311{width:8.728500px;}
._9_c00311{width:9.831780px;}
._6_c00311{width:10.971000px;}
._8_c00311{width:12.482460px;}
._5_c00311{width:13.654920px;}
._c_c00311{width:15.256620px;}
._d_c00311{width:16.311600px;}
._13_c00311{width:18.788700px;}
._11_c00311{width:20.217000px;}
._e_c00311{width:22.176600px;}
._10_c00311{width:23.391000px;}
._12_c00311{width:25.356960px;}
._f_c00311{width:26.723700px;}
.fc0_c00311{color:transparent;}
.fs5_c00311{font-size:53.400000px;}
.fs3_c00311{font-size:57.600000px;}
.fs0_c00311{font-size:60.000000px;}
.fs1_c00311{font-size:67.800000px;}
.fs2_c00311{font-size:69.000000px;}
.fs4_c00311{font-size:69.600000px;}
.y0_c00311{bottom:0.000000px;}
.y1a_c00311{bottom:73.455000px;}
.y19_c00311{bottom:164.892000px;}
.y18_c00311{bottom:195.493500px;}
.y16_c00311{bottom:226.089000px;}
.y17_c00311{bottom:226.095000px;}
.y15_c00311{bottom:257.760000px;}
.y14_c00311{bottom:319.695000px;}
.y13_c00311{bottom:380.526000px;}
.y12_c00311{bottom:442.453500px;}
.y11_c00311{bottom:473.055000px;}
.y10_c00311{bottom:534.227250px;}
.yf_c00311{bottom:595.792500px;}
.ye_c00311{bottom:626.394000px;}
.yd_c00311{bottom:657.720000px;}
.yb_c00311{bottom:688.305750px;}
.yc_c00311{bottom:688.320000px;}
.ya_c00311{bottom:718.924500px;}
.y9_c00311{bottom:749.888250px;}
.y8_c00311{bottom:780.852000px;}
.y7_c00311{bottom:842.400000px;}
.y6_c00311{bottom:903.969750px;}
.y5_c00311{bottom:965.530500px;}
.y4_c00311{bottom:1026.371250px;}
.y3_c00311{bottom:1057.335000px;}
.y2_c00311{bottom:1118.895000px;}
.y1_c00311{bottom:1194.135000px;}
.h9_c00311{height:55.694531px;}
.h5_c00311{height:56.531250px;}
.h2_c00311{height:58.886719px;}
.h3_c00311{height:67.719727px;}
.h8_c00311{height:67.755727px;}
.h6_c00311{height:67.770727px;}
.h7_c00311{height:68.274609px;}
.h4_c00311{height:68.347688px;}
.h1_c00311{height:1263.000000px;}
.h0_c00311{height:1263.240000px;}
.w1_c00311{width:892.500000px;}
.w0_c00311{width:892.800000px;}
.x0_c00311{left:0.000000px;}
.x1_c00311{left:123.405000px;}
.x3_c00311{left:124.765500px;}
.x6_c00311{left:159.210000px;}
.x2_c00311{left:176.925000px;}
.x4_c00311{left:178.575000px;}
.x7_c00311{left:198.960000px;}
.x8_c00311{left:244.350000px;}
.x9_c00311{left:279.615000px;}
.xc_c00311{left:421.755000px;}
.xe_c00311{left:425.775000px;}
.xd_c00311{left:443.640000px;}
.xa_c00311{left:599.580000px;}
.xb_c00311{left:616.845000px;}
.x5_c00311{left:732.750000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls7e_c00311{letter-spacing:-2.146667pt;}
.ls73_c00311{letter-spacing:-2.122133pt;}
.ls7f_c00311{letter-spacing:-1.741867pt;}
.ls86_c00311{letter-spacing:-1.661333pt;}
.ls80_c00311{letter-spacing:-1.404533pt;}
.ls82_c00311{letter-spacing:-1.134667pt;}
.ls61_c00311{letter-spacing:-1.085600pt;}
.ls5c_c00311{letter-spacing:-1.030400pt;}
.ls68_c00311{letter-spacing:-0.987467pt;}
.ls63_c00311{letter-spacing:-0.962933pt;}
.ls74_c00311{letter-spacing:-0.901600pt;}
.ls7d_c00311{letter-spacing:-0.846400pt;}
.ls5d_c00311{letter-spacing:-0.840267pt;}
.ls7b_c00311{letter-spacing:-0.766667pt;}
.ls75_c00311{letter-spacing:-0.729867pt;}
.ls5a_c00311{letter-spacing:-0.711467pt;}
.ls5f_c00311{letter-spacing:-0.601067pt;}
.ls67_c00311{letter-spacing:-0.564267pt;}
.ls77_c00311{letter-spacing:-0.521333pt;}
.ls84_c00311{letter-spacing:-0.484533pt;}
.ls62_c00311{letter-spacing:-0.447733pt;}
.ls72_c00311{letter-spacing:-0.417067pt;}
.ls7c_c00311{letter-spacing:-0.404800pt;}
.ls7a_c00311{letter-spacing:-0.251467pt;}
.ls85_c00311{letter-spacing:-0.233067pt;}
.ls81_c00311{letter-spacing:-0.196267pt;}
.ls6c_c00311{letter-spacing:-0.177867pt;}
.ls70_c00311{letter-spacing:-0.110400pt;}
.ls5e_c00311{letter-spacing:-0.085867pt;}
.ls78_c00311{letter-spacing:-0.079733pt;}
.ls76_c00311{letter-spacing:-0.073600pt;}
.ls6d_c00311{letter-spacing:-0.067467pt;}
.ls64_c00311{letter-spacing:-0.055200pt;}
.ls66_c00311{letter-spacing:-0.036800pt;}
.ls6a_c00311{letter-spacing:-0.030667pt;}
.ls60_c00311{letter-spacing:-0.024533pt;}
.ls6b_c00311{letter-spacing:-0.018400pt;}
.ls79_c00311{letter-spacing:-0.012267pt;}
.ls5b_c00311{letter-spacing:0.000000pt;}
.ls2a_c00311{letter-spacing:0.036800pt;}
.ls14_c00311{letter-spacing:0.042933pt;}
.ls9_c00311{letter-spacing:0.049067pt;}
.ls3d_c00311{letter-spacing:0.061333pt;}
.ls26_c00311{letter-spacing:0.079733pt;}
.ls3c_c00311{letter-spacing:0.098133pt;}
.ls55_c00311{letter-spacing:0.104267pt;}
.ls25_c00311{letter-spacing:0.116533pt;}
.ls28_c00311{letter-spacing:0.128800pt;}
.ls2b_c00311{letter-spacing:0.134933pt;}
.ls27_c00311{letter-spacing:0.147200pt;}
.ls20_c00311{letter-spacing:0.159467pt;}
.ls24_c00311{letter-spacing:0.177867pt;}
.ls4_c00311{letter-spacing:0.196267pt;}
.ls38_c00311{letter-spacing:0.202400pt;}
.ls23_c00311{letter-spacing:0.220800pt;}
.ls39_c00311{letter-spacing:0.226933pt;}
.ls11_c00311{letter-spacing:0.233067pt;}
.ls1d_c00311{letter-spacing:0.239200pt;}
.ls1a_c00311{letter-spacing:0.263733pt;}
.ls3a_c00311{letter-spacing:0.282133pt;}
.ls56_c00311{letter-spacing:0.294400pt;}
.ls33_c00311{letter-spacing:0.306667pt;}
.ls3f_c00311{letter-spacing:0.312800pt;}
.ls19_c00311{letter-spacing:0.325067pt;}
.ls65_c00311{letter-spacing:0.337333pt;}
.ls18_c00311{letter-spacing:0.343467pt;}
.ls71_c00311{letter-spacing:0.349600pt;}
.ls4d_c00311{letter-spacing:0.355733pt;}
.ls3_c00311{letter-spacing:0.361867pt;}
.ls32_c00311{letter-spacing:0.392533pt;}
.ls3b_c00311{letter-spacing:0.410933pt;}
.ls8_c00311{letter-spacing:0.417067pt;}
.ls34_c00311{letter-spacing:0.447733pt;}
.ls12_c00311{letter-spacing:0.460000pt;}
.lsb_c00311{letter-spacing:0.478400pt;}
.ls36_c00311{letter-spacing:0.484533pt;}
.ls40_c00311{letter-spacing:0.490667pt;}
.ls4e_c00311{letter-spacing:0.496800pt;}
.ls3e_c00311{letter-spacing:0.509067pt;}
.ls16_c00311{letter-spacing:0.512267pt;}
.ls83_c00311{letter-spacing:0.515200pt;}
.ls6_c00311{letter-spacing:0.518293pt;}
.ls31_c00311{letter-spacing:0.521333pt;}
.ls7_c00311{letter-spacing:0.536373pt;}
.ls1b_c00311{letter-spacing:0.539733pt;}
.ls1_c00311{letter-spacing:0.552000pt;}
.ls30_c00311{letter-spacing:0.558133pt;}
.ls2d_c00311{letter-spacing:0.564267pt;}
.ls1f_c00311{letter-spacing:0.588800pt;}
.ls57_c00311{letter-spacing:0.594933pt;}
.ls1c_c00311{letter-spacing:0.601067pt;}
.ls53_c00311{letter-spacing:0.607200pt;}
.ls17_c00311{letter-spacing:0.613333pt;}
.ls58_c00311{letter-spacing:0.619467pt;}
.ls4c_c00311{letter-spacing:0.637867pt;}
.ls69_c00311{letter-spacing:0.644000pt;}
.ls45_c00311{letter-spacing:0.668533pt;}
.ls21_c00311{letter-spacing:0.680800pt;}
.ls49_c00311{letter-spacing:0.711467pt;}
.ls1e_c00311{letter-spacing:0.736000pt;}
.ls51_c00311{letter-spacing:0.760533pt;}
.lse_c00311{letter-spacing:0.766667pt;}
.ls35_c00311{letter-spacing:0.791200pt;}
.ls2e_c00311{letter-spacing:0.803467pt;}
.ls48_c00311{letter-spacing:0.809600pt;}
.lsc_c00311{letter-spacing:0.834133pt;}
.ls4a_c00311{letter-spacing:0.870933pt;}
.ls10_c00311{letter-spacing:0.877067pt;}
.ls42_c00311{letter-spacing:0.891947pt;}
.ls47_c00311{letter-spacing:0.904000pt;}
.ls29_c00311{letter-spacing:0.920000pt;}
.ls54_c00311{letter-spacing:0.926133pt;}
.ls0_c00311{letter-spacing:0.940160pt;}
.ls50_c00311{letter-spacing:0.950667pt;}
.ls52_c00311{letter-spacing:0.975200pt;}
.ls15_c00311{letter-spacing:0.987467pt;}
.ls37_c00311{letter-spacing:1.061067pt;}
.ls13_c00311{letter-spacing:1.066720pt;}
.ls44_c00311{letter-spacing:1.107413pt;}
.ls41_c00311{letter-spacing:1.126987pt;}
.ls2c_c00311{letter-spacing:1.165333pt;}
.lsf_c00311{letter-spacing:1.183733pt;}
.ls4f_c00311{letter-spacing:1.208267pt;}
.ls46_c00311{letter-spacing:1.229440pt;}
.ls4b_c00311{letter-spacing:1.238933pt;}
.ls22_c00311{letter-spacing:1.263467pt;}
.ls2_c00311{letter-spacing:1.306400pt;}
.ls2f_c00311{letter-spacing:1.324800pt;}
.lsd_c00311{letter-spacing:1.637600pt;}
.ls43_c00311{letter-spacing:1.645653pt;}
.ls59_c00311{letter-spacing:1.765333pt;}
.ls5_c00311{letter-spacing:1.790933pt;}
.lsa_c00311{letter-spacing:1.827733pt;}
.ls6f_c00311{letter-spacing:2.560000pt;}
.ls6e_c00311{letter-spacing:3.066667pt;}
.ws0_c00311{word-spacing:-0.319467pt;}
.ws3_c00311{word-spacing:0.000000pt;}
.ws2_c00311{word-spacing:11.251733pt;}
.ws1_c00311{word-spacing:11.900427pt;}
._4_c00311{margin-left:-5.507733pt;}
._14_c00311{margin-left:-4.217920pt;}
._0_c00311{margin-left:-3.250667pt;}
._2_c00311{margin-left:-1.613067pt;}
._3_c00311{width:1.472000pt;}
._1_c00311{width:3.269067pt;}
._a_c00311{width:4.287200pt;}
._7_c00311{width:6.041493pt;}
._b_c00311{width:7.758667pt;}
._9_c00311{width:8.739360pt;}
._6_c00311{width:9.752000pt;}
._8_c00311{width:11.095520pt;}
._5_c00311{width:12.137707pt;}
._c_c00311{width:13.561440pt;}
._d_c00311{width:14.499200pt;}
._13_c00311{width:16.701067pt;}
._11_c00311{width:17.970667pt;}
._e_c00311{width:19.712533pt;}
._10_c00311{width:20.792000pt;}
._12_c00311{width:22.539520pt;}
._f_c00311{width:23.754400pt;}
.fs5_c00311{font-size:47.466667pt;}
.fs3_c00311{font-size:51.200000pt;}
.fs0_c00311{font-size:53.333333pt;}
.fs1_c00311{font-size:60.266667pt;}
.fs2_c00311{font-size:61.333333pt;}
.fs4_c00311{font-size:61.866667pt;}
.y0_c00311{bottom:0.000000pt;}
.y1a_c00311{bottom:65.293333pt;}
.y19_c00311{bottom:146.570667pt;}
.y18_c00311{bottom:173.772000pt;}
.y16_c00311{bottom:200.968000pt;}
.y17_c00311{bottom:200.973333pt;}
.y15_c00311{bottom:229.120000pt;}
.y14_c00311{bottom:284.173333pt;}
.y13_c00311{bottom:338.245333pt;}
.y12_c00311{bottom:393.292000pt;}
.y11_c00311{bottom:420.493333pt;}
.y10_c00311{bottom:474.868667pt;}
.yf_c00311{bottom:529.593333pt;}
.ye_c00311{bottom:556.794667pt;}
.yd_c00311{bottom:584.640000pt;}
.yb_c00311{bottom:611.827333pt;}
.yc_c00311{bottom:611.840000pt;}
.ya_c00311{bottom:639.044000pt;}
.y9_c00311{bottom:666.567333pt;}
.y8_c00311{bottom:694.090667pt;}
.y7_c00311{bottom:748.800000pt;}
.y6_c00311{bottom:803.528667pt;}
.y5_c00311{bottom:858.249333pt;}
.y4_c00311{bottom:912.330000pt;}
.y3_c00311{bottom:939.853333pt;}
.y2_c00311{bottom:994.573333pt;}
.y1_c00311{bottom:1061.453333pt;}
.h9_c00311{height:49.506250pt;}
.h5_c00311{height:50.250000pt;}
.h2_c00311{height:52.343750pt;}
.h3_c00311{height:60.195312pt;}
.h8_c00311{height:60.227313pt;}
.h6_c00311{height:60.240646pt;}
.h7_c00311{height:60.688542pt;}
.h4_c00311{height:60.753500pt;}
.h1_c00311{height:1122.666667pt;}
.h0_c00311{height:1122.880000pt;}
.w1_c00311{width:793.333333pt;}
.w0_c00311{width:793.600000pt;}
.x0_c00311{left:0.000000pt;}
.x1_c00311{left:109.693333pt;}
.x3_c00311{left:110.902667pt;}
.x6_c00311{left:141.520000pt;}
.x2_c00311{left:157.266667pt;}
.x4_c00311{left:158.733333pt;}
.x7_c00311{left:176.853333pt;}
.x8_c00311{left:217.200000pt;}
.x9_c00311{left:248.546667pt;}
.xc_c00311{left:374.893333pt;}
.xe_c00311{left:378.466667pt;}
.xd_c00311{left:394.346667pt;}
.xa_c00311{left:532.960000pt;}
.xb_c00311{left:548.306667pt;}
.x5_c00311{left:651.333333pt;}
}





/* 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_c00312 {
    display:none;
  }
  .loading-indicator_c00312.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00312 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_c00312 { 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_c00312" -> "#page-container .classname_c00312")
 */
.pf_c00312 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00312 { /* 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_c00312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00312 { /* 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_c00312 { /* 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_c00312 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00312 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00312 {overflow:visible;}
  }
}
.c_c00312 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00312 { /* 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_c00312:after { /* webkit #35443 */
  content: '';
}
.t_c00312:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00312 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 */
}
.__c00312 { /* 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_c00312 { /* info for Javascript */
  display:none;
}
.l_c00312 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00312 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00312 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00312: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_c00312 {
    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_c00312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00312.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_c00312 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00312;src:url('chunks/assets/font_f9b36bdd0d64b458c89309d5.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.311035;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_c00312;src:url('chunks/assets/font_2c20b19b42b5d1b643b5f36b.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.284668;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_c00312;src:url('chunks/assets/font_bb05913fccd7cb0c5a7bafb2.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;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:ff4_c00312;src:url('chunks/assets/font_f3fc31d60e00d27c3916e18a.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:1.284180;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_c00312;src:url('chunks/assets/font_21811da72b8271384dd57b7e.woff2')format("woff");}.ff5_c00312{font-family:ff5_c00312;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:ff6_c00312;src:url('chunks/assets/font_40ebd74be80b7049b19510bc.woff2')format("woff");}.ff6_c00312{font-family:ff6_c00312;line-height:0.666000;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;}
.m13_c00312{transform:matrix(0.128289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128289,0.000000,0.000000,0.250000,0,0);}
.m2_c00312{transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);}
.mc_c00312{transform:matrix(0.223232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223232,0.000000,0.000000,0.250000,0,0);}
.me_c00312{transform:matrix(0.226159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226159,0.000000,0.000000,0.250000,0,0);}
.m10_c00312{transform:matrix(0.227043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227043,0.000000,0.000000,0.250000,0,0);}
.m8_c00312{transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);}
.m11_c00312{transform:matrix(0.233309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233309,0.000000,0.000000,0.250000,0,0);}
.md_c00312{transform:matrix(0.235146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235146,0.000000,0.000000,0.250000,0,0);}
.ma_c00312{transform:matrix(0.235514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235514,0.000000,0.000000,0.250000,0,0);}
.m14_c00312{transform:matrix(0.235884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235884,0.000000,0.000000,0.250000,0,0);}
.m0_c00312{transform:matrix(0.239414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239414,0.000000,0.000000,0.250000,0,0);}
.mb_c00312{transform:matrix(0.239776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239776,0.000000,0.000000,0.250000,0,0);}
.m9_c00312{transform:matrix(0.241110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241110,0.000000,0.000000,0.250000,0,0);}
.m12_c00312{transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);}
.mf_c00312{transform:matrix(0.241846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241846,0.000000,0.000000,0.250000,0,0);}
.m3_c00312{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m1_c00312{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);}
.m4_c00312{transform:matrix(0.254291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254291,0.000000,0.000000,0.250000,0,0);}
.m7_c00312{transform:matrix(0.301733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301733,0.000000,0.000000,0.250000,0,0);}
.m6_c00312{transform:matrix(0.306772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306772,0.000000,0.000000,0.250000,0,0);}
.m5_c00312{transform:matrix(0.319717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319717,0.000000,0.000000,0.250000,0,0);}
.v2_c00312{vertical-align:-25.928128px;}
.v0_c00312{vertical-align:0.000000px;}
.v1_c00312{vertical-align:25.920000px;}
.ls8d_c00312{letter-spacing:-2.583000px;}
.ls8e_c00312{letter-spacing:-2.562000px;}
.ls69_c00312{letter-spacing:-2.478000px;}
.ls73_c00312{letter-spacing:-2.436000px;}
.ls5f_c00312{letter-spacing:-2.331000px;}
.ls90_c00312{letter-spacing:-2.136720px;}
.ls97_c00312{letter-spacing:-2.037000px;}
.ls62_c00312{letter-spacing:-1.865280px;}
.ls87_c00312{letter-spacing:-1.684320px;}
.ls63_c00312{letter-spacing:-1.649520px;}
.ls7a_c00312{letter-spacing:-1.545120px;}
.ls67_c00312{letter-spacing:-1.531200px;}
.ls7e_c00312{letter-spacing:-1.475520px;}
.ls79_c00312{letter-spacing:-1.426800px;}
.ls6a_c00312{letter-spacing:-1.280640px;}
.ls72_c00312{letter-spacing:-1.231920px;}
.ls75_c00312{letter-spacing:-1.218000px;}
.ls7f_c00312{letter-spacing:-1.176240px;}
.ls6d_c00312{letter-spacing:-1.169280px;}
.ls64_c00312{letter-spacing:-1.099680px;}
.ls61_c00312{letter-spacing:-0.946560px;}
.ls68_c00312{letter-spacing:-0.856080px;}
.ls74_c00312{letter-spacing:-0.629280px;}
.ls88_c00312{letter-spacing:-0.626400px;}
.ls7c_c00312{letter-spacing:-0.570720px;}
.ls92_c00312{letter-spacing:-0.494160px;}
.ls8a_c00312{letter-spacing:-0.487200px;}
.ls85_c00312{letter-spacing:-0.466320px;}
.ls89_c00312{letter-spacing:-0.452400px;}
.ls8f_c00312{letter-spacing:-0.445440px;}
.ls70_c00312{letter-spacing:-0.382800px;}
.ls80_c00312{letter-spacing:-0.375840px;}
.ls6c_c00312{letter-spacing:-0.334080px;}
.ls8b_c00312{letter-spacing:-0.320160px;}
.ls8c_c00312{letter-spacing:-0.243600px;}
.ls60_c00312{letter-spacing:-0.208800px;}
.ls93_c00312{letter-spacing:-0.201840px;}
.ls65_c00312{letter-spacing:-0.187920px;}
.ls91_c00312{letter-spacing:-0.180960px;}
.ls7b_c00312{letter-spacing:-0.118320px;}
.ls6b_c00312{letter-spacing:-0.096300px;}
.ls6f_c00312{letter-spacing:-0.090480px;}
.ls77_c00312{letter-spacing:-0.076560px;}
.ls94_c00312{letter-spacing:-0.041760px;}
.ls71_c00312{letter-spacing:-0.027840px;}
.ls78_c00312{letter-spacing:-0.020880px;}
.ls81_c00312{letter-spacing:-0.006960px;}
.ls76_c00312{letter-spacing:0.000000px;}
.lsf_c00312{letter-spacing:0.069600px;}
.ls5d_c00312{letter-spacing:0.090480px;}
.lsa_c00312{letter-spacing:0.104400px;}
.ls5e_c00312{letter-spacing:0.111360px;}
.ls66_c00312{letter-spacing:0.118320px;}
.ls33_c00312{letter-spacing:0.125280px;}
.ls11_c00312{letter-spacing:0.132240px;}
.ls3b_c00312{letter-spacing:0.160080px;}
.ls40_c00312{letter-spacing:0.174000px;}
.ls21_c00312{letter-spacing:0.180960px;}
.ls5a_c00312{letter-spacing:0.187920px;}
.ls52_c00312{letter-spacing:0.201840px;}
.ls1d_c00312{letter-spacing:0.208800px;}
.ls1b_c00312{letter-spacing:0.215760px;}
.ls17_c00312{letter-spacing:0.222720px;}
.ls1c_c00312{letter-spacing:0.229680px;}
.ls39_c00312{letter-spacing:0.250560px;}
.ls1a_c00312{letter-spacing:0.257520px;}
.ls1e_c00312{letter-spacing:0.271440px;}
.ls7_c00312{letter-spacing:0.280800px;}
.ls5c_c00312{letter-spacing:0.285360px;}
.ls37_c00312{letter-spacing:0.292320px;}
.ls95_c00312{letter-spacing:0.299280px;}
.ls50_c00312{letter-spacing:0.306240px;}
.ls56_c00312{letter-spacing:0.320160px;}
.ls47_c00312{letter-spacing:0.331804px;}
.ls4c_c00312{letter-spacing:0.334080px;}
.ls8_c00312{letter-spacing:0.348000px;}
.ls51_c00312{letter-spacing:0.354960px;}
.ls3d_c00312{letter-spacing:0.361920px;}
.lsb_c00312{letter-spacing:0.382800px;}
.ls59_c00312{letter-spacing:0.403680px;}
.ls35_c00312{letter-spacing:0.424560px;}
.ls12_c00312{letter-spacing:0.438480px;}
.ls83_c00312{letter-spacing:0.445440px;}
.ls96_c00312{letter-spacing:0.452400px;}
.ls3a_c00312{letter-spacing:0.459360px;}
.ls2f_c00312{letter-spacing:0.466320px;}
.ls55_c00312{letter-spacing:0.473280px;}
.ls24_c00312{letter-spacing:0.480240px;}
.ls43_c00312{letter-spacing:0.487200px;}
.ls5_c00312{letter-spacing:0.508080px;}
.ls2c_c00312{letter-spacing:0.522000px;}
.ls34_c00312{letter-spacing:0.528960px;}
.ls42_c00312{letter-spacing:0.535920px;}
.ls19_c00312{letter-spacing:0.542880px;}
.ls30_c00312{letter-spacing:0.549840px;}
.ls20_c00312{letter-spacing:0.556800px;}
.ls5b_c00312{letter-spacing:0.570720px;}
.ls6_c00312{letter-spacing:0.598560px;}
.ls38_c00312{letter-spacing:0.619440px;}
.lse_c00312{letter-spacing:0.640320px;}
.ls26_c00312{letter-spacing:0.642960px;}
.ls28_c00312{letter-spacing:0.654240px;}
.ls2e_c00312{letter-spacing:0.682080px;}
.ls10_c00312{letter-spacing:0.716880px;}
.ls3c_c00312{letter-spacing:0.730800px;}
.ls54_c00312{letter-spacing:0.737760px;}
.ls49_c00312{letter-spacing:0.744720px;}
.ls31_c00312{letter-spacing:0.765600px;}
.ls48_c00312{letter-spacing:0.821280px;}
.ls4e_c00312{letter-spacing:0.849120px;}
.ls57_c00312{letter-spacing:0.863040px;}
.ls4a_c00312{letter-spacing:0.876300px;}
.ls6e_c00312{letter-spacing:0.883920px;}
.ls22_c00312{letter-spacing:0.890880px;}
.ls45_c00312{letter-spacing:0.904800px;}
.ls1_c00312{letter-spacing:0.953520px;}
.ls15_c00312{letter-spacing:0.960480px;}
.ls2_c00312{letter-spacing:1.002240px;}
.ls13_c00312{letter-spacing:1.016160px;}
.ls14_c00312{letter-spacing:1.019160px;}
.ls2a_c00312{letter-spacing:1.037040px;}
.ls58_c00312{letter-spacing:1.044000px;}
.ls18_c00312{letter-spacing:1.057920px;}
.ls0_c00312{letter-spacing:1.092720px;}
.ls3f_c00312{letter-spacing:1.120560px;}
.ls46_c00312{letter-spacing:1.169280px;}
.ls4b_c00312{letter-spacing:1.176240px;}
.ls7d_c00312{letter-spacing:1.190160px;}
.ls44_c00312{letter-spacing:1.218000px;}
.ls9_c00312{letter-spacing:1.231920px;}
.ls3e_c00312{letter-spacing:1.245840px;}
.ls53_c00312{letter-spacing:1.259760px;}
.ls2d_c00312{letter-spacing:1.301520px;}
.ls3_c00312{letter-spacing:1.315440px;}
.ls32_c00312{letter-spacing:1.329360px;}
.ls27_c00312{letter-spacing:1.398960px;}
.ls4f_c00312{letter-spacing:1.405920px;}
.lsc_c00312{letter-spacing:1.429560px;}
.ls4_c00312{letter-spacing:1.461600px;}
.ls4d_c00312{letter-spacing:1.517280px;}
.ls1f_c00312{letter-spacing:1.545120px;}
.ls23_c00312{letter-spacing:1.607760px;}
.ls2b_c00312{letter-spacing:1.635600px;}
.ls36_c00312{letter-spacing:1.691280px;}
.lsd_c00312{letter-spacing:1.705200px;}
.ls16_c00312{letter-spacing:1.983600px;}
.ls29_c00312{letter-spacing:2.164560px;}
.ls25_c00312{letter-spacing:2.268960px;}
.ls82_c00312{letter-spacing:2.275920px;}
.ls41_c00312{letter-spacing:2.888400px;}
.ls86_c00312{letter-spacing:3.420000px;}
.ls84_c00312{letter-spacing:3.480000px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{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__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00312{word-spacing:-16.933680px;}
.ws5_c00312{word-spacing:0.000000px;}
.ws2_c00312{word-spacing:2.954400px;}
.ws1_c00312{word-spacing:3.700800px;}
.ws0_c00312{word-spacing:11.014560px;}
.ws3_c00312{word-spacing:13.179840px;}
._a_c00312{margin-left:-5.818560px;}
._d_c00312{margin-left:-4.774560px;}
._7_c00312{margin-left:-2.610000px;}
._14_c00312{margin-left:-1.238880px;}
._3_c00312{width:1.419840px;}
._1_c00312{width:2.561280px;}
._c_c00312{width:3.575040px;}
._0_c00312{width:4.732800px;}
._5_c00312{width:5.867280px;}
._9_c00312{width:7.572480px;}
._8_c00312{width:8.734800px;}
._4_c00312{width:9.883200px;}
._2_c00312{width:11.470080px;}
._b_c00312{width:12.690480px;}
._6_c00312{width:13.834320px;}
._10_c00312{width:16.439520px;}
._11_c00312{width:18.209520px;}
._e_c00312{width:19.218720px;}
._f_c00312{width:20.597040px;}
._15_c00312{width:21.954480px;}
._12_c00312{width:23.079360px;}
._17_c00312{width:24.770160px;}
._13_c00312{width:25.932960px;}
._16_c00312{width:27.540720px;}
._1b_c00312{width:38.600160px;}
._1a_c00312{width:39.665040px;}
._18_c00312{width:41.885280px;}
._19_c00312{width:44.056800px;}
.fc0_c00312{color:transparent;}
.fs6_c00312{font-size:47.400600px;}
.fsa_c00312{font-size:54.720000px;}
.fsb_c00312{font-size:58.200000px;}
.fs2_c00312{font-size:62.400000px;}
.fs5_c00312{font-size:64.200000px;}
.fs0_c00312{font-size:66.600000px;}
.fs3_c00312{font-size:68.400000px;}
.fs7_c00312{font-size:69.000000px;}
.fs1_c00312{font-size:69.600000px;}
.fs4_c00312{font-size:70.800000px;}
.fs9_c00312{font-size:73.200000px;}
.fs8_c00312{font-size:73.800000px;}
.y0_c00312{bottom:0.000000px;}
.y1d_c00312{bottom:70.200006px;}
.y1c_c00312{bottom:126.370806px;}
.y1b_c00312{bottom:157.325406px;}
.y1a_c00312{bottom:188.280006px;}
.y19_c00312{bottom:188.283006px;}
.y18_c00312{bottom:219.255006px;}
.y17_c00312{bottom:250.575006px;}
.y16_c00312{bottom:281.535006px;}
.y15_c00312{bottom:343.096206px;}
.y14_c00312{bottom:404.636406px;}
.y13_c00312{bottom:466.215006px;}
.y11_c00312{bottom:497.512806px;}
.y12_c00312{bottom:497.535006px;}
.y10_c00312{bottom:527.754006px;}
.yf_c00312{bottom:558.360606px;}
.ye_c00312{bottom:589.680606px;}
.yd_c00312{bottom:651.241806px;}
.yc_c00312{bottom:713.168406px;}
.yb_c00312{bottom:743.775006px;}
.ya_c00312{bottom:806.055006px;}
.y8_c00312{bottom:868.312206px;}
.y9_c00312{bottom:868.320006px;}
.y7_c00312{bottom:898.570806px;}
.y6_c00312{bottom:929.160006px;}
.y5_c00312{bottom:990.360006px;}
.y4_c00312{bottom:1024.215006px;}
.y3_c00312{bottom:1087.222806px;}
.y2_c00312{bottom:1118.160006px;}
.y1_c00312{bottom:1194.135006px;}
.hc_c00312{height:36.443520px;}
.hd_c00312{height:60.700781px;}
.h5_c00312{height:66.958594px;}
.h2_c00312{height:67.120312px;}
.h3_c00312{height:68.308594px;}
.h6_c00312{height:68.339794px;}
.h4_c00312{height:69.486328px;}
.h9_c00312{height:69.553463px;}
.h8_c00312{height:71.339063px;}
.h7_c00312{height:72.441097px;}
.hb_c00312{height:73.771875px;}
.ha_c00312{height:74.376563px;}
.h1_c00312{height:1263.000000px;}
.h0_c00312{height:1263.240006px;}
.w1_c00312{width:892.500000px;}
.w0_c00312{width:892.799998px;}
.x0_c00312{left:0.000000px;}
.x9_c00312{left:120.542999px;}
.x6_c00312{left:121.671599px;}
.x2_c00312{left:122.957999px;}
.x1_c00312{left:124.124999px;}
.x8_c00312{left:174.404999px;}
.x3_c00312{left:175.844999px;}
.x11_c00312{left:233.444999px;}
.x1b_c00312{left:255.734998px;}
.x7_c00312{left:258.299999px;}
.x1c_c00312{left:283.874999px;}
.x12_c00312{left:288.539999px;}
.x13_c00312{left:377.834998px;}
.xa_c00312{left:382.829998px;}
.x14_c00312{left:394.019998px;}
.x1f_c00312{left:425.039999px;}
.xb_c00312{left:431.429999px;}
.x1d_c00312{left:434.894999px;}
.x15_c00312{left:460.979999px;}
.xc_c00312{left:472.949998px;}
.x1e_c00312{left:512.114998px;}
.xd_c00312{left:513.509999px;}
.x16_c00312{left:560.789999px;}
.x4_c00312{left:585.974999px;}
.x17_c00312{left:592.454998px;}
.x18_c00312{left:611.189999px;}
.x5_c00312{left:621.179999px;}
.xe_c00312{left:662.489998px;}
.x19_c00312{left:685.259999px;}
.xf_c00312{left:697.994999px;}
.x1a_c00312{left:709.454998px;}
.x10_c00312{left:715.904998px;}
@media print{
.v2_c00312{vertical-align:-23.047225pt;}
.v0_c00312{vertical-align:0.000000pt;}
.v1_c00312{vertical-align:23.040000pt;}
.ls8d_c00312{letter-spacing:-2.296000pt;}
.ls8e_c00312{letter-spacing:-2.277333pt;}
.ls69_c00312{letter-spacing:-2.202667pt;}
.ls73_c00312{letter-spacing:-2.165333pt;}
.ls5f_c00312{letter-spacing:-2.072000pt;}
.ls90_c00312{letter-spacing:-1.899307pt;}
.ls97_c00312{letter-spacing:-1.810667pt;}
.ls62_c00312{letter-spacing:-1.658027pt;}
.ls87_c00312{letter-spacing:-1.497173pt;}
.ls63_c00312{letter-spacing:-1.466240pt;}
.ls7a_c00312{letter-spacing:-1.373440pt;}
.ls67_c00312{letter-spacing:-1.361067pt;}
.ls7e_c00312{letter-spacing:-1.311573pt;}
.ls79_c00312{letter-spacing:-1.268267pt;}
.ls6a_c00312{letter-spacing:-1.138347pt;}
.ls72_c00312{letter-spacing:-1.095040pt;}
.ls75_c00312{letter-spacing:-1.082667pt;}
.ls7f_c00312{letter-spacing:-1.045547pt;}
.ls6d_c00312{letter-spacing:-1.039360pt;}
.ls64_c00312{letter-spacing:-0.977493pt;}
.ls61_c00312{letter-spacing:-0.841387pt;}
.ls68_c00312{letter-spacing:-0.760960pt;}
.ls74_c00312{letter-spacing:-0.559360pt;}
.ls88_c00312{letter-spacing:-0.556800pt;}
.ls7c_c00312{letter-spacing:-0.507307pt;}
.ls92_c00312{letter-spacing:-0.439253pt;}
.ls8a_c00312{letter-spacing:-0.433067pt;}
.ls85_c00312{letter-spacing:-0.414507pt;}
.ls89_c00312{letter-spacing:-0.402133pt;}
.ls8f_c00312{letter-spacing:-0.395947pt;}
.ls70_c00312{letter-spacing:-0.340267pt;}
.ls80_c00312{letter-spacing:-0.334080pt;}
.ls6c_c00312{letter-spacing:-0.296960pt;}
.ls8b_c00312{letter-spacing:-0.284587pt;}
.ls8c_c00312{letter-spacing:-0.216533pt;}
.ls60_c00312{letter-spacing:-0.185600pt;}
.ls93_c00312{letter-spacing:-0.179413pt;}
.ls65_c00312{letter-spacing:-0.167040pt;}
.ls91_c00312{letter-spacing:-0.160853pt;}
.ls7b_c00312{letter-spacing:-0.105173pt;}
.ls6b_c00312{letter-spacing:-0.085600pt;}
.ls6f_c00312{letter-spacing:-0.080427pt;}
.ls77_c00312{letter-spacing:-0.068053pt;}
.ls94_c00312{letter-spacing:-0.037120pt;}
.ls71_c00312{letter-spacing:-0.024747pt;}
.ls78_c00312{letter-spacing:-0.018560pt;}
.ls81_c00312{letter-spacing:-0.006187pt;}
.ls76_c00312{letter-spacing:0.000000pt;}
.lsf_c00312{letter-spacing:0.061867pt;}
.ls5d_c00312{letter-spacing:0.080427pt;}
.lsa_c00312{letter-spacing:0.092800pt;}
.ls5e_c00312{letter-spacing:0.098987pt;}
.ls66_c00312{letter-spacing:0.105173pt;}
.ls33_c00312{letter-spacing:0.111360pt;}
.ls11_c00312{letter-spacing:0.117547pt;}
.ls3b_c00312{letter-spacing:0.142293pt;}
.ls40_c00312{letter-spacing:0.154667pt;}
.ls21_c00312{letter-spacing:0.160853pt;}
.ls5a_c00312{letter-spacing:0.167040pt;}
.ls52_c00312{letter-spacing:0.179413pt;}
.ls1d_c00312{letter-spacing:0.185600pt;}
.ls1b_c00312{letter-spacing:0.191787pt;}
.ls17_c00312{letter-spacing:0.197973pt;}
.ls1c_c00312{letter-spacing:0.204160pt;}
.ls39_c00312{letter-spacing:0.222720pt;}
.ls1a_c00312{letter-spacing:0.228907pt;}
.ls1e_c00312{letter-spacing:0.241280pt;}
.ls7_c00312{letter-spacing:0.249600pt;}
.ls5c_c00312{letter-spacing:0.253653pt;}
.ls37_c00312{letter-spacing:0.259840pt;}
.ls95_c00312{letter-spacing:0.266027pt;}
.ls50_c00312{letter-spacing:0.272213pt;}
.ls56_c00312{letter-spacing:0.284587pt;}
.ls47_c00312{letter-spacing:0.294937pt;}
.ls4c_c00312{letter-spacing:0.296960pt;}
.ls8_c00312{letter-spacing:0.309333pt;}
.ls51_c00312{letter-spacing:0.315520pt;}
.ls3d_c00312{letter-spacing:0.321707pt;}
.lsb_c00312{letter-spacing:0.340267pt;}
.ls59_c00312{letter-spacing:0.358827pt;}
.ls35_c00312{letter-spacing:0.377387pt;}
.ls12_c00312{letter-spacing:0.389760pt;}
.ls83_c00312{letter-spacing:0.395947pt;}
.ls96_c00312{letter-spacing:0.402133pt;}
.ls3a_c00312{letter-spacing:0.408320pt;}
.ls2f_c00312{letter-spacing:0.414507pt;}
.ls55_c00312{letter-spacing:0.420693pt;}
.ls24_c00312{letter-spacing:0.426880pt;}
.ls43_c00312{letter-spacing:0.433067pt;}
.ls5_c00312{letter-spacing:0.451627pt;}
.ls2c_c00312{letter-spacing:0.464000pt;}
.ls34_c00312{letter-spacing:0.470187pt;}
.ls42_c00312{letter-spacing:0.476373pt;}
.ls19_c00312{letter-spacing:0.482560pt;}
.ls30_c00312{letter-spacing:0.488747pt;}
.ls20_c00312{letter-spacing:0.494933pt;}
.ls5b_c00312{letter-spacing:0.507307pt;}
.ls6_c00312{letter-spacing:0.532053pt;}
.ls38_c00312{letter-spacing:0.550613pt;}
.lse_c00312{letter-spacing:0.569173pt;}
.ls26_c00312{letter-spacing:0.571520pt;}
.ls28_c00312{letter-spacing:0.581547pt;}
.ls2e_c00312{letter-spacing:0.606293pt;}
.ls10_c00312{letter-spacing:0.637227pt;}
.ls3c_c00312{letter-spacing:0.649600pt;}
.ls54_c00312{letter-spacing:0.655787pt;}
.ls49_c00312{letter-spacing:0.661973pt;}
.ls31_c00312{letter-spacing:0.680533pt;}
.ls48_c00312{letter-spacing:0.730027pt;}
.ls4e_c00312{letter-spacing:0.754773pt;}
.ls57_c00312{letter-spacing:0.767147pt;}
.ls4a_c00312{letter-spacing:0.778933pt;}
.ls6e_c00312{letter-spacing:0.785707pt;}
.ls22_c00312{letter-spacing:0.791893pt;}
.ls45_c00312{letter-spacing:0.804267pt;}
.ls1_c00312{letter-spacing:0.847573pt;}
.ls15_c00312{letter-spacing:0.853760pt;}
.ls2_c00312{letter-spacing:0.890880pt;}
.ls13_c00312{letter-spacing:0.903253pt;}
.ls14_c00312{letter-spacing:0.905920pt;}
.ls2a_c00312{letter-spacing:0.921813pt;}
.ls58_c00312{letter-spacing:0.928000pt;}
.ls18_c00312{letter-spacing:0.940373pt;}
.ls0_c00312{letter-spacing:0.971307pt;}
.ls3f_c00312{letter-spacing:0.996053pt;}
.ls46_c00312{letter-spacing:1.039360pt;}
.ls4b_c00312{letter-spacing:1.045547pt;}
.ls7d_c00312{letter-spacing:1.057920pt;}
.ls44_c00312{letter-spacing:1.082667pt;}
.ls9_c00312{letter-spacing:1.095040pt;}
.ls3e_c00312{letter-spacing:1.107413pt;}
.ls53_c00312{letter-spacing:1.119787pt;}
.ls2d_c00312{letter-spacing:1.156907pt;}
.ls3_c00312{letter-spacing:1.169280pt;}
.ls32_c00312{letter-spacing:1.181653pt;}
.ls27_c00312{letter-spacing:1.243520pt;}
.ls4f_c00312{letter-spacing:1.249707pt;}
.lsc_c00312{letter-spacing:1.270720pt;}
.ls4_c00312{letter-spacing:1.299200pt;}
.ls4d_c00312{letter-spacing:1.348693pt;}
.ls1f_c00312{letter-spacing:1.373440pt;}
.ls23_c00312{letter-spacing:1.429120pt;}
.ls2b_c00312{letter-spacing:1.453867pt;}
.ls36_c00312{letter-spacing:1.503360pt;}
.lsd_c00312{letter-spacing:1.515733pt;}
.ls16_c00312{letter-spacing:1.763200pt;}
.ls29_c00312{letter-spacing:1.924053pt;}
.ls25_c00312{letter-spacing:2.016853pt;}
.ls82_c00312{letter-spacing:2.023040pt;}
.ls41_c00312{letter-spacing:2.567467pt;}
.ls86_c00312{letter-spacing:3.040000pt;}
.ls84_c00312{letter-spacing:3.093333pt;}
.ws4_c00312{word-spacing:-15.052160pt;}
.ws5_c00312{word-spacing:0.000000pt;}
.ws2_c00312{word-spacing:2.626133pt;}
.ws1_c00312{word-spacing:3.289600pt;}
.ws0_c00312{word-spacing:9.790720pt;}
.ws3_c00312{word-spacing:11.715413pt;}
._a_c00312{margin-left:-5.172053pt;}
._d_c00312{margin-left:-4.244053pt;}
._7_c00312{margin-left:-2.320000pt;}
._14_c00312{margin-left:-1.101227pt;}
._3_c00312{width:1.262080pt;}
._1_c00312{width:2.276693pt;}
._c_c00312{width:3.177813pt;}
._0_c00312{width:4.206933pt;}
._5_c00312{width:5.215360pt;}
._9_c00312{width:6.731093pt;}
._8_c00312{width:7.764267pt;}
._4_c00312{width:8.785067pt;}
._2_c00312{width:10.195627pt;}
._b_c00312{width:11.280427pt;}
._6_c00312{width:12.297173pt;}
._10_c00312{width:14.612907pt;}
._11_c00312{width:16.186240pt;}
._e_c00312{width:17.083307pt;}
._f_c00312{width:18.308480pt;}
._15_c00312{width:19.515093pt;}
._12_c00312{width:20.514987pt;}
._17_c00312{width:22.017920pt;}
._13_c00312{width:23.051520pt;}
._16_c00312{width:24.480640pt;}
._1b_c00312{width:34.311253pt;}
._1a_c00312{width:35.257813pt;}
._18_c00312{width:37.231360pt;}
._19_c00312{width:39.161600pt;}
.fs6_c00312{font-size:42.133867pt;}
.fsa_c00312{font-size:48.640000pt;}
.fsb_c00312{font-size:51.733333pt;}
.fs2_c00312{font-size:55.466667pt;}
.fs5_c00312{font-size:57.066667pt;}
.fs0_c00312{font-size:59.200000pt;}
.fs3_c00312{font-size:60.800000pt;}
.fs7_c00312{font-size:61.333333pt;}
.fs1_c00312{font-size:61.866667pt;}
.fs4_c00312{font-size:62.933333pt;}
.fs9_c00312{font-size:65.066667pt;}
.fs8_c00312{font-size:65.600000pt;}
.y0_c00312{bottom:0.000000pt;}
.y1d_c00312{bottom:62.400005pt;}
.y1c_c00312{bottom:112.329605pt;}
.y1b_c00312{bottom:139.844805pt;}
.y1a_c00312{bottom:167.360005pt;}
.y19_c00312{bottom:167.362672pt;}
.y18_c00312{bottom:194.893339pt;}
.y17_c00312{bottom:222.733339pt;}
.y16_c00312{bottom:250.253339pt;}
.y15_c00312{bottom:304.974405pt;}
.y14_c00312{bottom:359.676805pt;}
.y13_c00312{bottom:414.413339pt;}
.y11_c00312{bottom:442.233605pt;}
.y12_c00312{bottom:442.253339pt;}
.y10_c00312{bottom:469.114672pt;}
.yf_c00312{bottom:496.320539pt;}
.ye_c00312{bottom:524.160539pt;}
.yd_c00312{bottom:578.881605pt;}
.yc_c00312{bottom:633.927472pt;}
.yb_c00312{bottom:661.133339pt;}
.ya_c00312{bottom:716.493339pt;}
.y8_c00312{bottom:771.833072pt;}
.y9_c00312{bottom:771.840005pt;}
.y7_c00312{bottom:798.729605pt;}
.y6_c00312{bottom:825.920005pt;}
.y5_c00312{bottom:880.320005pt;}
.y4_c00312{bottom:910.413339pt;}
.y3_c00312{bottom:966.420272pt;}
.y2_c00312{bottom:993.920005pt;}
.y1_c00312{bottom:1061.453339pt;}
.hc_c00312{height:32.394240pt;}
.hd_c00312{height:53.956250pt;}
.h5_c00312{height:59.518750pt;}
.h2_c00312{height:59.662500pt;}
.h3_c00312{height:60.718750pt;}
.h6_c00312{height:60.746483pt;}
.h4_c00312{height:61.765625pt;}
.h9_c00312{height:61.825300pt;}
.h8_c00312{height:63.412500pt;}
.h7_c00312{height:64.392086pt;}
.hb_c00312{height:65.575000pt;}
.ha_c00312{height:66.112500pt;}
.h1_c00312{height:1122.666667pt;}
.h0_c00312{height:1122.880005pt;}
.w1_c00312{width:793.333333pt;}
.w0_c00312{width:793.599999pt;}
.x0_c00312{left:0.000000pt;}
.x9_c00312{left:107.149332pt;}
.x6_c00312{left:108.152532pt;}
.x2_c00312{left:109.295999pt;}
.x1_c00312{left:110.333332pt;}
.x8_c00312{left:155.026665pt;}
.x3_c00312{left:156.306665pt;}
.x11_c00312{left:207.506665pt;}
.x1b_c00312{left:227.319999pt;}
.x7_c00312{left:229.599999pt;}
.x1c_c00312{left:252.333332pt;}
.x12_c00312{left:256.479999pt;}
.x13_c00312{left:335.853332pt;}
.xa_c00312{left:340.293332pt;}
.x14_c00312{left:350.239999pt;}
.x1f_c00312{left:377.813332pt;}
.xb_c00312{left:383.493332pt;}
.x1d_c00312{left:386.573332pt;}
.x15_c00312{left:409.759999pt;}
.xc_c00312{left:420.399999pt;}
.x1e_c00312{left:455.213332pt;}
.xd_c00312{left:456.453332pt;}
.x16_c00312{left:498.479999pt;}
.x4_c00312{left:520.866665pt;}
.x17_c00312{left:526.626665pt;}
.x18_c00312{left:543.279999pt;}
.x5_c00312{left:552.159999pt;}
.xe_c00312{left:588.879999pt;}
.x19_c00312{left:609.119999pt;}
.xf_c00312{left:620.439999pt;}
.x1a_c00312{left:630.626665pt;}
.x10_c00312{left:636.359999pt;}
}





/* 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_c00313 {
    display:none;
  }
  .loading-indicator_c00313.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00313 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_c00313 { 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_c00313" -> "#page-container .classname_c00313")
 */
.pf_c00313 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00313 { /* 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_c00313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00313 { /* 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_c00313 { /* 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_c00313 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00313 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00313 {overflow:visible;}
  }
}
.c_c00313 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00313 { /* 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_c00313:after { /* webkit #35443 */
  content: '';
}
.t_c00313:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00313 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 */
}
.__c00313 { /* 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_c00313 { /* info for Javascript */
  display:none;
}
.l_c00313 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00313 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00313 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00313: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_c00313 {
    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_c00313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00313.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_c00313 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00313;src:url('chunks/assets/font_64eef02897b44df70f714392.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.284668;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_c00313;src:url('chunks/assets/font_8466406d61f76de501cc03b6.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.284180;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_c00313;src:url('chunks/assets/font_15bbd3cf4788b14c4230d3c4.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:0.666000;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_c00313;src:url('chunks/assets/font_ac47258b1a76a08d3d768f53.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;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:ff5_c00313;src:url('chunks/assets/font_379f4d93edf209861dba7c16.woff2')format("woff");}.ff5_c00313{font-family:ff5_c00313;line-height:1.311035;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_c00313{transform:matrix(0.111907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111907,0.000000,0.000000,0.250000,0,0);}
.m0_c00313{transform:matrix(0.118490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118490,0.000000,0.000000,0.250000,0,0);}
.m2_c00313{transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);}
.m3_c00313{transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);}
.m1_c00313{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);}
.v0_c00313{vertical-align:0.000000px;}
.lsc_c00313{letter-spacing:-2.268000px;}
.ls5_c00313{letter-spacing:-2.142000px;}
.ls6_c00313{letter-spacing:-1.392840px;}
.ls9_c00313{letter-spacing:0.000000px;}
.ls4_c00313{letter-spacing:0.546960px;}
.ls8_c00313{letter-spacing:0.648720px;}
.ls7_c00313{letter-spacing:0.718680px;}
.ls0_c00313{letter-spacing:0.737760px;}
.ls2_c00313{letter-spacing:0.858600px;}
.ls3_c00313{letter-spacing:0.871320px;}
.ls1_c00313{letter-spacing:1.291080px;}
.lsa_c00313{letter-spacing:1.354680px;}
.lsb_c00313{letter-spacing:2.882580px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{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__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00313{word-spacing:0.000000px;}
.ws2_c00313{word-spacing:0.330720px;}
.ws1_c00313{word-spacing:2.658480px;}
.ws3_c00313{word-spacing:3.027360px;}
.ws0_c00313{word-spacing:5.634960px;}
._2_c00313{margin-left:-7.911840px;}
._1_c00313{width:1.081200px;}
._0_c00313{width:2.391360px;}
.fc0_c00313{color:transparent;}
.fs4_c00313{font-size:31.200000px;}
.fs0_c00313{font-size:61.200000px;}
.fs2_c00313{font-size:63.000000px;}
.fs1_c00313{font-size:63.600000px;}
.fs7_c00313{font-size:64.200000px;}
.fs8_c00313{font-size:64.800000px;}
.fs6_c00313{font-size:84.960000px;}
.fs3_c00313{font-size:97.920000px;}
.fs5_c00313{font-size:117.600000px;}
.y0_c00313{bottom:0.000000px;}
.yc_c00313{bottom:152.285715px;}
.y3_c00313{bottom:154.101615px;}
.yb_c00313{bottom:171.000015px;}
.y2_c00313{bottom:172.800015px;}
.ya_c00313{bottom:437.760015px;}
.y9_c00313{bottom:444.975015px;}
.y8_c00313{bottom:470.175015px;}
.y7_c00313{bottom:532.440015px;}
.y6_c00313{bottom:866.535015px;}
.y5_c00313{bottom:874.095015px;}
.y4_c00313{bottom:902.895015px;}
.ye_c00313{bottom:1077.120015px;}
.y1_c00313{bottom:1082.895015px;}
.yd_c00313{bottom:1146.960015px;}
.h6_c00313{height:32.540625px;}
.h8_c00313{height:56.583360px;}
.h2_c00313{height:60.064453px;}
.h4_c00313{height:61.831055px;}
.h3_c00313{height:62.388867px;}
.ha_c00313{height:63.597656px;}
.h9_c00313{height:64.701562px;}
.h5_c00313{height:65.214720px;}
.h7_c00313{height:115.417969px;}
.h1_c00313{height:1263.000000px;}
.h0_c00313{height:1263.240015px;}
.w1_c00313{width:892.500000px;}
.w0_c00313{width:892.800000px;}
.x0_c00313{left:0.000000px;}
.x3_c00313{left:116.579700px;}
.x2_c00313{left:119.235000px;}
.x1_c00313{left:120.360000px;}
.x9_c00313{left:383.610000px;}
.x6_c00313{left:406.185000px;}
.x8_c00313{left:415.815000px;}
.x7_c00313{left:418.230000px;}
.x5_c00313{left:423.015000px;}
.x4_c00313{left:425.430000px;}
.xa_c00313{left:676.365000px;}
.xb_c00313{left:795.720000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.lsc_c00313{letter-spacing:-2.016000pt;}
.ls5_c00313{letter-spacing:-1.904000pt;}
.ls6_c00313{letter-spacing:-1.238080pt;}
.ls9_c00313{letter-spacing:0.000000pt;}
.ls4_c00313{letter-spacing:0.486187pt;}
.ls8_c00313{letter-spacing:0.576640pt;}
.ls7_c00313{letter-spacing:0.638827pt;}
.ls0_c00313{letter-spacing:0.655787pt;}
.ls2_c00313{letter-spacing:0.763200pt;}
.ls3_c00313{letter-spacing:0.774507pt;}
.ls1_c00313{letter-spacing:1.147627pt;}
.lsa_c00313{letter-spacing:1.204160pt;}
.lsb_c00313{letter-spacing:2.562293pt;}
.ws4_c00313{word-spacing:0.000000pt;}
.ws2_c00313{word-spacing:0.293973pt;}
.ws1_c00313{word-spacing:2.363093pt;}
.ws3_c00313{word-spacing:2.690987pt;}
.ws0_c00313{word-spacing:5.008853pt;}
._2_c00313{margin-left:-7.032747pt;}
._1_c00313{width:0.961067pt;}
._0_c00313{width:2.125653pt;}
.fs4_c00313{font-size:27.733333pt;}
.fs0_c00313{font-size:54.400000pt;}
.fs2_c00313{font-size:56.000000pt;}
.fs1_c00313{font-size:56.533333pt;}
.fs7_c00313{font-size:57.066667pt;}
.fs8_c00313{font-size:57.600000pt;}
.fs6_c00313{font-size:75.520000pt;}
.fs3_c00313{font-size:87.040000pt;}
.fs5_c00313{font-size:104.533333pt;}
.y0_c00313{bottom:0.000000pt;}
.yc_c00313{bottom:135.365080pt;}
.y3_c00313{bottom:136.979213pt;}
.yb_c00313{bottom:152.000013pt;}
.y2_c00313{bottom:153.600013pt;}
.ya_c00313{bottom:389.120013pt;}
.y9_c00313{bottom:395.533347pt;}
.y8_c00313{bottom:417.933347pt;}
.y7_c00313{bottom:473.280013pt;}
.y6_c00313{bottom:770.253347pt;}
.y5_c00313{bottom:776.973347pt;}
.y4_c00313{bottom:802.573347pt;}
.ye_c00313{bottom:957.440013pt;}
.y1_c00313{bottom:962.573347pt;}
.yd_c00313{bottom:1019.520013pt;}
.h6_c00313{height:28.925000pt;}
.h8_c00313{height:50.296320pt;}
.h2_c00313{height:53.390625pt;}
.h4_c00313{height:54.960938pt;}
.h3_c00313{height:55.456771pt;}
.ha_c00313{height:56.531250pt;}
.h9_c00313{height:57.512500pt;}
.h5_c00313{height:57.968640pt;}
.h7_c00313{height:102.593750pt;}
.h1_c00313{height:1122.666667pt;}
.h0_c00313{height:1122.880013pt;}
.w1_c00313{width:793.333333pt;}
.w0_c00313{width:793.600000pt;}
.x0_c00313{left:0.000000pt;}
.x3_c00313{left:103.626400pt;}
.x2_c00313{left:105.986667pt;}
.x1_c00313{left:106.986667pt;}
.x9_c00313{left:340.986667pt;}
.x6_c00313{left:361.053333pt;}
.x8_c00313{left:369.613333pt;}
.x7_c00313{left:371.760000pt;}
.x5_c00313{left:376.013333pt;}
.x4_c00313{left:378.160000pt;}
.xa_c00313{left:601.213333pt;}
.xb_c00313{left:707.306667pt;}
}





/* 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_c00314 {
    display:none;
  }
  .loading-indicator_c00314.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00314 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_c00314 { 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_c00314" -> "#page-container .classname_c00314")
 */
.pf_c00314 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00314 { /* 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_c00314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00314 { /* 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_c00314 { /* 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_c00314 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00314 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00314 {overflow:visible;}
  }
}
.c_c00314 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00314 { /* 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_c00314:after { /* webkit #35443 */
  content: '';
}
.t_c00314:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00314 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 */
}
.__c00314 { /* 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_c00314 { /* info for Javascript */
  display:none;
}
.l_c00314 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00314 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00314 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00314: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_c00314 {
    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_c00314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00314.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_c00314 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00314;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;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:ff2_c00314;src:url('chunks/assets/font_19393649492ebc49dba098a0.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;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_c00314;src:url('chunks/assets/font_fb694a00a1ded2132e3ab37c.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.284180;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_c00314;src:url('chunks/assets/font_419515b16553bbaa0eb7a252.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:1.284668;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_c00314;src:url('chunks/assets/font_8b7862f6e843f476098892f8.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:0.666000;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_c00314{transform:matrix(0.046667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046667,0.000000,0.000000,0.250000,0,0);}
.m6_c00314{transform:matrix(0.050926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050926,0.000000,0.000000,0.250000,0,0);}
.m0_c00314{transform:matrix(0.121752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121752,0.000000,0.000000,0.250000,0,0);}
.m3_c00314{transform:matrix(0.244145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244145,0.000000,0.000000,0.250000,0,0);}
.m1_c00314{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);}
.m5_c00314{transform:matrix(0.253819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253819,0.000000,0.000000,0.250000,0,0);}
.m4_c00314{transform:matrix(0.257671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257671,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls6_c00314{letter-spacing:-2.331000px;}
.lsb_c00314{letter-spacing:-2.205000px;}
.ls7_c00314{letter-spacing:-0.285180px;}
.lsa_c00314{letter-spacing:0.000000px;}
.ls4_c00314{letter-spacing:0.151200px;}
.ls8_c00314{letter-spacing:0.674100px;}
.lsc_c00314{letter-spacing:0.812700px;}
.ls3_c00314{letter-spacing:0.856800px;}
.lsd_c00314{letter-spacing:1.140300px;}
.ls1_c00314{letter-spacing:1.151400px;}
.ls9_c00314{letter-spacing:1.152900px;}
.ls0_c00314{letter-spacing:1.278900px;}
.ls5_c00314{letter-spacing:1.348200px;}
.ls2_c00314{letter-spacing:1.398600px;}
.lse_c00314{letter-spacing:3.150000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{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__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00314{word-spacing:0.000000px;}
.ws1_c00314{word-spacing:1.187400px;}
.ws2_c00314{word-spacing:1.852200px;}
.ws0_c00314{word-spacing:3.321720px;}
._1_c00314{margin-left:-2.022000px;}
._0_c00314{width:2.759400px;}
.fc0_c00314{color:transparent;}
.fs1_c00314{font-size:58.200000px;}
.fs4_c00314{font-size:60.000000px;}
.fs3_c00314{font-size:60.600000px;}
.fs2_c00314{font-size:63.000000px;}
.fs0_c00314{font-size:66.600000px;}
.fs6_c00314{font-size:311.040000px;}
.fs5_c00314{font-size:324.000000px;}
.y0_c00314{bottom:0.000000px;}
.y8_c00314{bottom:152.275500px;}
.y3_c00314{bottom:153.000000px;}
.y7_c00314{bottom:170.640000px;}
.y2_c00314{bottom:171.360000px;}
.y6_c00314{bottom:364.695000px;}
.y5_c00314{bottom:603.375000px;}
.y4_c00314{bottom:796.335000px;}
.ya_c00314{bottom:878.760000px;}
.y1_c00314{bottom:1081.440000px;}
.y9_c00314{bottom:1148.055000px;}
.h5_c00314{height:58.886719px;}
.h7_c00314{height:61.800293px;}
.h8_c00314{height:61.818293px;}
.h3_c00314{height:61.831055px;}
.h4_c00314{height:63.203906px;}
.h2_c00314{height:69.461719px;}
.h9_c00314{height:207.152640px;}
.h6_c00314{height:215.784000px;}
.h1_c00314{height:1263.000000px;}
.h0_c00314{height:1263.240000px;}
.w1_c00314{width:892.500000px;}
.w0_c00314{width:892.800000px;}
.x0_c00314{left:0.000000px;}
.x3_c00314{left:112.785000px;}
.x2_c00314{left:115.275000px;}
.x1_c00314{left:118.545000px;}
.x7_c00314{left:327.810000px;}
.x4_c00314{left:330.315000px;}
.x8_c00314{left:350.325000px;}
.x6_c00314{left:363.420000px;}
.x5_c00314{left:406.815000px;}
.xb_c00314{left:647.280000px;}
.x9_c00314{left:670.950000px;}
.xa_c00314{left:743.940000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls6_c00314{letter-spacing:-2.072000pt;}
.lsb_c00314{letter-spacing:-1.960000pt;}
.ls7_c00314{letter-spacing:-0.253493pt;}
.lsa_c00314{letter-spacing:0.000000pt;}
.ls4_c00314{letter-spacing:0.134400pt;}
.ls8_c00314{letter-spacing:0.599200pt;}
.lsc_c00314{letter-spacing:0.722400pt;}
.ls3_c00314{letter-spacing:0.761600pt;}
.lsd_c00314{letter-spacing:1.013600pt;}
.ls1_c00314{letter-spacing:1.023467pt;}
.ls9_c00314{letter-spacing:1.024800pt;}
.ls0_c00314{letter-spacing:1.136800pt;}
.ls5_c00314{letter-spacing:1.198400pt;}
.ls2_c00314{letter-spacing:1.243200pt;}
.lse_c00314{letter-spacing:2.800000pt;}
.ws3_c00314{word-spacing:0.000000pt;}
.ws1_c00314{word-spacing:1.055467pt;}
.ws2_c00314{word-spacing:1.646400pt;}
.ws0_c00314{word-spacing:2.952640pt;}
._1_c00314{margin-left:-1.797333pt;}
._0_c00314{width:2.452800pt;}
.fs1_c00314{font-size:51.733333pt;}
.fs4_c00314{font-size:53.333333pt;}
.fs3_c00314{font-size:53.866667pt;}
.fs2_c00314{font-size:56.000000pt;}
.fs0_c00314{font-size:59.200000pt;}
.fs6_c00314{font-size:276.480000pt;}
.fs5_c00314{font-size:288.000000pt;}
.y0_c00314{bottom:0.000000pt;}
.y8_c00314{bottom:135.356000pt;}
.y3_c00314{bottom:136.000000pt;}
.y7_c00314{bottom:151.680000pt;}
.y2_c00314{bottom:152.320000pt;}
.y6_c00314{bottom:324.173333pt;}
.y5_c00314{bottom:536.333333pt;}
.y4_c00314{bottom:707.853333pt;}
.ya_c00314{bottom:781.120000pt;}
.y1_c00314{bottom:961.280000pt;}
.y9_c00314{bottom:1020.493333pt;}
.h5_c00314{height:52.343750pt;}
.h7_c00314{height:54.933594pt;}
.h8_c00314{height:54.949594pt;}
.h3_c00314{height:54.960938pt;}
.h4_c00314{height:56.181250pt;}
.h2_c00314{height:61.743750pt;}
.h9_c00314{height:184.135680pt;}
.h6_c00314{height:191.808000pt;}
.h1_c00314{height:1122.666667pt;}
.h0_c00314{height:1122.880000pt;}
.w1_c00314{width:793.333333pt;}
.w0_c00314{width:793.600000pt;}
.x0_c00314{left:0.000000pt;}
.x3_c00314{left:100.253333pt;}
.x2_c00314{left:102.466667pt;}
.x1_c00314{left:105.373333pt;}
.x7_c00314{left:291.386667pt;}
.x4_c00314{left:293.613333pt;}
.x8_c00314{left:311.400000pt;}
.x6_c00314{left:323.040000pt;}
.x5_c00314{left:361.613333pt;}
.xb_c00314{left:575.360000pt;}
.x9_c00314{left:596.400000pt;}
.xa_c00314{left:661.280000pt;}
}





/* 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_c00315 {
    display:none;
  }
  .loading-indicator_c00315.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00315 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_c00315 { 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_c00315" -> "#page-container .classname_c00315")
 */
.pf_c00315 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00315 { /* 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_c00315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00315 { /* 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_c00315 { /* 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_c00315 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00315 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00315 {overflow:visible;}
  }
}
.c_c00315 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00315 { /* 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_c00315:after { /* webkit #35443 */
  content: '';
}
.t_c00315:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00315 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 */
}
.__c00315 { /* 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_c00315 { /* info for Javascript */
  display:none;
}
.l_c00315 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00315 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00315 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00315: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_c00315 {
    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_c00315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00315.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_c00315 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00315{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00315;src:url('chunks/assets/font_bcda61747851e84ebb644c08.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.284668;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_c00315;src:url('chunks/assets/font_613c8200928013c8621fb168.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.284180;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;}
.m7_c00315{transform:matrix(0.186706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186706,0.000000,0.000000,0.250000,0,0);}
.m5_c00315{transform:matrix(0.189263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189263,0.000000,0.000000,0.250000,0,0);}
.m2_c00315{transform:matrix(0.205431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205431,0.000000,0.000000,0.250000,0,0);}
.m4_c00315{transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);}
.m6_c00315{transform:matrix(0.245086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245086,0.000000,0.000000,0.250000,0,0);}
.m0_c00315{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m8_c00315{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m3_c00315{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m1_c00315{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);}
.v0_c00315{vertical-align:0.000000px;}
.v1_c00315{vertical-align:24.480000px;}
.v2_c00315{vertical-align:25.860000px;}
.ls54_c00315{letter-spacing:-2.436000px;}
.ls5e_c00315{letter-spacing:-2.429040px;}
.ls74_c00315{letter-spacing:-2.394000px;}
.ls3f_c00315{letter-spacing:-2.352000px;}
.ls56_c00315{letter-spacing:-2.234160px;}
.ls55_c00315{letter-spacing:-2.025360px;}
.ls7d_c00315{letter-spacing:-1.962720px;}
.ls80_c00315{letter-spacing:-1.948800px;}
.ls61_c00315{letter-spacing:-1.927920px;}
.ls49_c00315{letter-spacing:-1.886160px;}
.ls7b_c00315{letter-spacing:-1.823520px;}
.ls5c_c00315{letter-spacing:-1.774800px;}
.ls81_c00315{letter-spacing:-1.767840px;}
.ls41_c00315{letter-spacing:-1.649520px;}
.ls5d_c00315{letter-spacing:-1.600800px;}
.ls6c_c00315{letter-spacing:-1.531200px;}
.ls45_c00315{letter-spacing:-1.426800px;}
.ls50_c00315{letter-spacing:-1.343280px;}
.ls48_c00315{letter-spacing:-1.218000px;}
.ls73_c00315{letter-spacing:-1.148400px;}
.ls62_c00315{letter-spacing:-1.113600px;}
.ls51_c00315{letter-spacing:-1.037040px;}
.ls5b_c00315{letter-spacing:-1.023120px;}
.ls84_c00315{letter-spacing:-0.988320px;}
.ls77_c00315{letter-spacing:-0.974400px;}
.ls59_c00315{letter-spacing:-0.946560px;}
.ls72_c00315{letter-spacing:-0.904800px;}
.ls85_c00315{letter-spacing:-0.892800px;}
.ls52_c00315{letter-spacing:-0.856080px;}
.ls60_c00315{letter-spacing:-0.828240px;}
.ls53_c00315{letter-spacing:-0.758640px;}
.ls71_c00315{letter-spacing:-0.696000px;}
.ls6e_c00315{letter-spacing:-0.612480px;}
.ls7e_c00315{letter-spacing:-0.605520px;}
.ls6a_c00315{letter-spacing:-0.556800px;}
.ls64_c00315{letter-spacing:-0.501120px;}
.ls68_c00315{letter-spacing:-0.480240px;}
.ls5f_c00315{letter-spacing:-0.473280px;}
.ls76_c00315{letter-spacing:-0.459360px;}
.ls47_c00315{letter-spacing:-0.452400px;}
.ls83_c00315{letter-spacing:-0.431520px;}
.ls4b_c00315{letter-spacing:-0.354960px;}
.ls7a_c00315{letter-spacing:-0.341040px;}
.ls78_c00315{letter-spacing:-0.334080px;}
.ls58_c00315{letter-spacing:-0.320160px;}
.ls4c_c00315{letter-spacing:-0.271440px;}
.ls6d_c00315{letter-spacing:-0.264480px;}
.ls7f_c00315{letter-spacing:-0.229680px;}
.ls69_c00315{letter-spacing:-0.208800px;}
.ls67_c00315{letter-spacing:-0.201840px;}
.ls4a_c00315{letter-spacing:-0.194880px;}
.ls57_c00315{letter-spacing:-0.187920px;}
.ls44_c00315{letter-spacing:-0.180960px;}
.ls6b_c00315{letter-spacing:-0.174000px;}
.ls4f_c00315{letter-spacing:-0.167040px;}
.ls70_c00315{letter-spacing:-0.160080px;}
.ls40_c00315{letter-spacing:-0.153120px;}
.ls4e_c00315{letter-spacing:-0.146160px;}
.ls63_c00315{letter-spacing:-0.139200px;}
.ls43_c00315{letter-spacing:-0.104400px;}
.ls46_c00315{letter-spacing:-0.090480px;}
.ls65_c00315{letter-spacing:-0.055680px;}
.ls4d_c00315{letter-spacing:-0.048720px;}
.ls7c_c00315{letter-spacing:-0.027840px;}
.ls5a_c00315{letter-spacing:-0.006960px;}
.ls42_c00315{letter-spacing:0.000000px;}
.ls3_c00315{letter-spacing:0.013920px;}
.ls24_c00315{letter-spacing:0.020880px;}
.ls82_c00315{letter-spacing:0.041760px;}
.ls2f_c00315{letter-spacing:0.055680px;}
.ls1f_c00315{letter-spacing:0.062640px;}
.ls1_c00315{letter-spacing:0.076560px;}
.ls1d_c00315{letter-spacing:0.083520px;}
.ls29_c00315{letter-spacing:0.097440px;}
.lse_c00315{letter-spacing:0.111360px;}
.ls9_c00315{letter-spacing:0.118320px;}
.ls23_c00315{letter-spacing:0.125280px;}
.ls11_c00315{letter-spacing:0.132240px;}
.ls2e_c00315{letter-spacing:0.139200px;}
.ls6f_c00315{letter-spacing:0.160080px;}
.lsa_c00315{letter-spacing:0.174000px;}
.ls32_c00315{letter-spacing:0.180960px;}
.lsb_c00315{letter-spacing:0.187920px;}
.ls6_c00315{letter-spacing:0.194880px;}
.ls27_c00315{letter-spacing:0.201840px;}
.lsd_c00315{letter-spacing:0.215760px;}
.lsf_c00315{letter-spacing:0.222720px;}
.ls39_c00315{letter-spacing:0.223740px;}
.ls5_c00315{letter-spacing:0.236640px;}
.ls1a_c00315{letter-spacing:0.243600px;}
.ls22_c00315{letter-spacing:0.257520px;}
.ls75_c00315{letter-spacing:0.292320px;}
.ls0_c00315{letter-spacing:0.299280px;}
.lsc_c00315{letter-spacing:0.306240px;}
.ls35_c00315{letter-spacing:0.313200px;}
.ls20_c00315{letter-spacing:0.320160px;}
.ls37_c00315{letter-spacing:0.334080px;}
.ls25_c00315{letter-spacing:0.354960px;}
.ls26_c00315{letter-spacing:0.361920px;}
.ls4_c00315{letter-spacing:0.396720px;}
.ls1e_c00315{letter-spacing:0.417600px;}
.ls2c_c00315{letter-spacing:0.452400px;}
.ls66_c00315{letter-spacing:0.494160px;}
.ls2b_c00315{letter-spacing:0.501120px;}
.ls1c_c00315{letter-spacing:0.542880px;}
.ls21_c00315{letter-spacing:0.556800px;}
.ls3a_c00315{letter-spacing:0.603420px;}
.ls12_c00315{letter-spacing:0.610200px;}
.ls36_c00315{letter-spacing:0.647280px;}
.ls3c_c00315{letter-spacing:0.654240px;}
.ls8_c00315{letter-spacing:0.744720px;}
.ls33_c00315{letter-spacing:0.751680px;}
.ls2a_c00315{letter-spacing:0.759360px;}
.ls18_c00315{letter-spacing:0.766140px;}
.ls15_c00315{letter-spacing:0.793440px;}
.ls2_c00315{letter-spacing:0.814320px;}
.ls38_c00315{letter-spacing:0.828240px;}
.ls1b_c00315{letter-spacing:0.883920px;}
.ls31_c00315{letter-spacing:0.904800px;}
.ls3d_c00315{letter-spacing:0.918720px;}
.ls13_c00315{letter-spacing:0.928860px;}
.ls34_c00315{letter-spacing:0.949200px;}
.ls2d_c00315{letter-spacing:0.960480px;}
.ls19_c00315{letter-spacing:1.017000px;}
.ls30_c00315{letter-spacing:1.037040px;}
.ls14_c00315{letter-spacing:1.108080px;}
.ls28_c00315{letter-spacing:1.118700px;}
.ls3e_c00315{letter-spacing:1.127520px;}
.ls16_c00315{letter-spacing:1.343280px;}
.ls3b_c00315{letter-spacing:1.398960px;}
.ls7_c00315{letter-spacing:1.447680px;}
.ls17_c00315{letter-spacing:1.517280px;}
.ls79_c00315{letter-spacing:1.705200px;}
.ls10_c00315{letter-spacing:1.983600px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{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__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00315{word-spacing:-17.400000px;}
.ws4_c00315{word-spacing:-0.172200px;}
.ws2_c00315{word-spacing:-0.054000px;}
.ws6_c00315{word-spacing:0.000000px;}
.ws3_c00315{word-spacing:11.272200px;}
.ws5_c00315{word-spacing:11.945580px;}
.ws0_c00315{word-spacing:37.138200px;}
._e_c00315{margin-left:-4.224720px;}
._3_c00315{margin-left:-2.825760px;}
._f_c00315{margin-left:-1.405920px;}
._18_c00315{width:1.064880px;}
._0_c00315{width:2.192400px;}
._10_c00315{width:3.352080px;}
._1_c00315{width:4.844160px;}
._2_c00315{width:6.758160px;}
._b_c00315{width:7.857840px;}
._c_c00315{width:8.936640px;}
._d_c00315{width:9.966720px;}
._a_c00315{width:11.978160px;}
._7_c00315{width:13.377120px;}
._14_c00315{width:15.093247px;}
._9_c00315{width:16.342080px;}
._4_c00315{width:19.376640px;}
._5_c00315{width:20.768640px;}
._6_c00315{width:22.794000px;}
._8_c00315{width:24.888960px;}
._15_c00315{width:26.399280px;}
._16_c00315{width:28.577760px;}
._17_c00315{width:29.663520px;}
._13_c00315{width:36.101520px;}
._11_c00315{width:38.106000px;}
._12_c00315{width:40.368000px;}
.fc0_c00315{color:transparent;}
.fs4_c00315{font-size:46.800600px;}
.fs5_c00315{font-size:57.600000px;}
.fs0_c00315{font-size:67.200000px;}
.fs2_c00315{font-size:67.800000px;}
.fs3_c00315{font-size:68.400000px;}
.fs1_c00315{font-size:69.600000px;}
.y0_c00315{bottom:0.000000px;}
.y1a_c00315{bottom:70.575000px;}
.y19_c00315{bottom:221.420400px;}
.y18_c00315{bottom:252.375000px;}
.y17_c00315{bottom:313.935000px;}
.y16_c00315{bottom:375.495000px;}
.y15_c00315{bottom:406.095000px;}
.y14_c00315{bottom:437.400000px;}
.y13_c00315{bottom:499.320000px;}
.y12_c00315{bottom:561.968400px;}
.y11_c00315{bottom:593.288400px;}
.y10_c00315{bottom:623.895000px;}
.ye_c00315{bottom:654.848400px;}
.yf_c00315{bottom:654.855000px;}
.yd_c00315{bottom:685.455000px;}
.yc_c00315{bottom:746.640000px;}
.yb_c00315{bottom:808.560000px;}
.ya_c00315{bottom:808.572600px;}
.y9_c00315{bottom:870.499200px;}
.y8_c00315{bottom:900.375000px;}
.y7_c00315{bottom:962.280000px;}
.y6_c00315{bottom:962.286000px;}
.y5_c00315{bottom:1023.864600px;}
.y4_c00315{bottom:1054.819200px;}
.y3_c00315{bottom:1085.060400px;}
.y2_c00315{bottom:1116.015000px;}
.y1_c00315{bottom:1191.240000px;}
.h6_c00315{height:56.531250px;}
.h2_c00315{height:65.953125px;}
.h5_c00315{height:67.130859px;}
.h3_c00315{height:68.308594px;}
.h4_c00315{height:71.792229px;}
.h1_c00315{height:1263.000000px;}
.h0_c00315{height:1263.240000px;}
.w1_c00315{width:892.500000px;}
.w0_c00315{width:892.800000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:116.925000px;}
.xc_c00315{left:118.074600px;}
.x5_c00315{left:168.743400px;}
.x2_c00315{left:170.916600px;}
.x4_c00315{left:305.655000px;}
.xd_c00315{left:357.405000px;}
.x6_c00315{left:359.445000px;}
.x7_c00315{left:388.200000px;}
.x11_c00315{left:418.230000px;}
.xe_c00315{left:484.125000px;}
.x3_c00315{left:488.370000px;}
.xf_c00315{left:506.445000px;}
.xa_c00315{left:516.480000px;}
.xb_c00315{left:646.695000px;}
.x8_c00315{left:673.365000px;}
.x9_c00315{left:702.120000px;}
.x10_c00315{left:727.035000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.v1_c00315{vertical-align:21.760000pt;}
.v2_c00315{vertical-align:22.986667pt;}
.ls54_c00315{letter-spacing:-2.165333pt;}
.ls5e_c00315{letter-spacing:-2.159147pt;}
.ls74_c00315{letter-spacing:-2.128000pt;}
.ls3f_c00315{letter-spacing:-2.090667pt;}
.ls56_c00315{letter-spacing:-1.985920pt;}
.ls55_c00315{letter-spacing:-1.800320pt;}
.ls7d_c00315{letter-spacing:-1.744640pt;}
.ls80_c00315{letter-spacing:-1.732267pt;}
.ls61_c00315{letter-spacing:-1.713707pt;}
.ls49_c00315{letter-spacing:-1.676587pt;}
.ls7b_c00315{letter-spacing:-1.620907pt;}
.ls5c_c00315{letter-spacing:-1.577600pt;}
.ls81_c00315{letter-spacing:-1.571413pt;}
.ls41_c00315{letter-spacing:-1.466240pt;}
.ls5d_c00315{letter-spacing:-1.422933pt;}
.ls6c_c00315{letter-spacing:-1.361067pt;}
.ls45_c00315{letter-spacing:-1.268267pt;}
.ls50_c00315{letter-spacing:-1.194027pt;}
.ls48_c00315{letter-spacing:-1.082667pt;}
.ls73_c00315{letter-spacing:-1.020800pt;}
.ls62_c00315{letter-spacing:-0.989867pt;}
.ls51_c00315{letter-spacing:-0.921813pt;}
.ls5b_c00315{letter-spacing:-0.909440pt;}
.ls84_c00315{letter-spacing:-0.878507pt;}
.ls77_c00315{letter-spacing:-0.866133pt;}
.ls59_c00315{letter-spacing:-0.841387pt;}
.ls72_c00315{letter-spacing:-0.804267pt;}
.ls85_c00315{letter-spacing:-0.793600pt;}
.ls52_c00315{letter-spacing:-0.760960pt;}
.ls60_c00315{letter-spacing:-0.736213pt;}
.ls53_c00315{letter-spacing:-0.674347pt;}
.ls71_c00315{letter-spacing:-0.618667pt;}
.ls6e_c00315{letter-spacing:-0.544427pt;}
.ls7e_c00315{letter-spacing:-0.538240pt;}
.ls6a_c00315{letter-spacing:-0.494933pt;}
.ls64_c00315{letter-spacing:-0.445440pt;}
.ls68_c00315{letter-spacing:-0.426880pt;}
.ls5f_c00315{letter-spacing:-0.420693pt;}
.ls76_c00315{letter-spacing:-0.408320pt;}
.ls47_c00315{letter-spacing:-0.402133pt;}
.ls83_c00315{letter-spacing:-0.383573pt;}
.ls4b_c00315{letter-spacing:-0.315520pt;}
.ls7a_c00315{letter-spacing:-0.303147pt;}
.ls78_c00315{letter-spacing:-0.296960pt;}
.ls58_c00315{letter-spacing:-0.284587pt;}
.ls4c_c00315{letter-spacing:-0.241280pt;}
.ls6d_c00315{letter-spacing:-0.235093pt;}
.ls7f_c00315{letter-spacing:-0.204160pt;}
.ls69_c00315{letter-spacing:-0.185600pt;}
.ls67_c00315{letter-spacing:-0.179413pt;}
.ls4a_c00315{letter-spacing:-0.173227pt;}
.ls57_c00315{letter-spacing:-0.167040pt;}
.ls44_c00315{letter-spacing:-0.160853pt;}
.ls6b_c00315{letter-spacing:-0.154667pt;}
.ls4f_c00315{letter-spacing:-0.148480pt;}
.ls70_c00315{letter-spacing:-0.142293pt;}
.ls40_c00315{letter-spacing:-0.136107pt;}
.ls4e_c00315{letter-spacing:-0.129920pt;}
.ls63_c00315{letter-spacing:-0.123733pt;}
.ls43_c00315{letter-spacing:-0.092800pt;}
.ls46_c00315{letter-spacing:-0.080427pt;}
.ls65_c00315{letter-spacing:-0.049493pt;}
.ls4d_c00315{letter-spacing:-0.043307pt;}
.ls7c_c00315{letter-spacing:-0.024747pt;}
.ls5a_c00315{letter-spacing:-0.006187pt;}
.ls42_c00315{letter-spacing:0.000000pt;}
.ls3_c00315{letter-spacing:0.012373pt;}
.ls24_c00315{letter-spacing:0.018560pt;}
.ls82_c00315{letter-spacing:0.037120pt;}
.ls2f_c00315{letter-spacing:0.049493pt;}
.ls1f_c00315{letter-spacing:0.055680pt;}
.ls1_c00315{letter-spacing:0.068053pt;}
.ls1d_c00315{letter-spacing:0.074240pt;}
.ls29_c00315{letter-spacing:0.086613pt;}
.lse_c00315{letter-spacing:0.098987pt;}
.ls9_c00315{letter-spacing:0.105173pt;}
.ls23_c00315{letter-spacing:0.111360pt;}
.ls11_c00315{letter-spacing:0.117547pt;}
.ls2e_c00315{letter-spacing:0.123733pt;}
.ls6f_c00315{letter-spacing:0.142293pt;}
.lsa_c00315{letter-spacing:0.154667pt;}
.ls32_c00315{letter-spacing:0.160853pt;}
.lsb_c00315{letter-spacing:0.167040pt;}
.ls6_c00315{letter-spacing:0.173227pt;}
.ls27_c00315{letter-spacing:0.179413pt;}
.lsd_c00315{letter-spacing:0.191787pt;}
.lsf_c00315{letter-spacing:0.197973pt;}
.ls39_c00315{letter-spacing:0.198880pt;}
.ls5_c00315{letter-spacing:0.210347pt;}
.ls1a_c00315{letter-spacing:0.216533pt;}
.ls22_c00315{letter-spacing:0.228907pt;}
.ls75_c00315{letter-spacing:0.259840pt;}
.ls0_c00315{letter-spacing:0.266027pt;}
.lsc_c00315{letter-spacing:0.272213pt;}
.ls35_c00315{letter-spacing:0.278400pt;}
.ls20_c00315{letter-spacing:0.284587pt;}
.ls37_c00315{letter-spacing:0.296960pt;}
.ls25_c00315{letter-spacing:0.315520pt;}
.ls26_c00315{letter-spacing:0.321707pt;}
.ls4_c00315{letter-spacing:0.352640pt;}
.ls1e_c00315{letter-spacing:0.371200pt;}
.ls2c_c00315{letter-spacing:0.402133pt;}
.ls66_c00315{letter-spacing:0.439253pt;}
.ls2b_c00315{letter-spacing:0.445440pt;}
.ls1c_c00315{letter-spacing:0.482560pt;}
.ls21_c00315{letter-spacing:0.494933pt;}
.ls3a_c00315{letter-spacing:0.536373pt;}
.ls12_c00315{letter-spacing:0.542400pt;}
.ls36_c00315{letter-spacing:0.575360pt;}
.ls3c_c00315{letter-spacing:0.581547pt;}
.ls8_c00315{letter-spacing:0.661973pt;}
.ls33_c00315{letter-spacing:0.668160pt;}
.ls2a_c00315{letter-spacing:0.674987pt;}
.ls18_c00315{letter-spacing:0.681013pt;}
.ls15_c00315{letter-spacing:0.705280pt;}
.ls2_c00315{letter-spacing:0.723840pt;}
.ls38_c00315{letter-spacing:0.736213pt;}
.ls1b_c00315{letter-spacing:0.785707pt;}
.ls31_c00315{letter-spacing:0.804267pt;}
.ls3d_c00315{letter-spacing:0.816640pt;}
.ls13_c00315{letter-spacing:0.825653pt;}
.ls34_c00315{letter-spacing:0.843733pt;}
.ls2d_c00315{letter-spacing:0.853760pt;}
.ls19_c00315{letter-spacing:0.904000pt;}
.ls30_c00315{letter-spacing:0.921813pt;}
.ls14_c00315{letter-spacing:0.984960pt;}
.ls28_c00315{letter-spacing:0.994400pt;}
.ls3e_c00315{letter-spacing:1.002240pt;}
.ls16_c00315{letter-spacing:1.194027pt;}
.ls3b_c00315{letter-spacing:1.243520pt;}
.ls7_c00315{letter-spacing:1.286827pt;}
.ls17_c00315{letter-spacing:1.348693pt;}
.ls79_c00315{letter-spacing:1.515733pt;}
.ls10_c00315{letter-spacing:1.763200pt;}
.ws1_c00315{word-spacing:-15.466667pt;}
.ws4_c00315{word-spacing:-0.153067pt;}
.ws2_c00315{word-spacing:-0.048000pt;}
.ws6_c00315{word-spacing:0.000000pt;}
.ws3_c00315{word-spacing:10.019733pt;}
.ws5_c00315{word-spacing:10.618293pt;}
.ws0_c00315{word-spacing:33.011733pt;}
._e_c00315{margin-left:-3.755307pt;}
._3_c00315{margin-left:-2.511787pt;}
._f_c00315{margin-left:-1.249707pt;}
._18_c00315{width:0.946560pt;}
._0_c00315{width:1.948800pt;}
._10_c00315{width:2.979627pt;}
._1_c00315{width:4.305920pt;}
._2_c00315{width:6.007253pt;}
._b_c00315{width:6.984747pt;}
._c_c00315{width:7.943680pt;}
._d_c00315{width:8.859307pt;}
._a_c00315{width:10.647253pt;}
._7_c00315{width:11.890773pt;}
._14_c00315{width:13.416220pt;}
._9_c00315{width:14.526293pt;}
._4_c00315{width:17.223680pt;}
._5_c00315{width:18.461013pt;}
._6_c00315{width:20.261333pt;}
._8_c00315{width:22.123520pt;}
._15_c00315{width:23.466027pt;}
._16_c00315{width:25.402453pt;}
._17_c00315{width:26.367573pt;}
._13_c00315{width:32.090240pt;}
._11_c00315{width:33.872000pt;}
._12_c00315{width:35.882667pt;}
.fs4_c00315{font-size:41.600533pt;}
.fs5_c00315{font-size:51.200000pt;}
.fs0_c00315{font-size:59.733333pt;}
.fs2_c00315{font-size:60.266667pt;}
.fs3_c00315{font-size:60.800000pt;}
.fs1_c00315{font-size:61.866667pt;}
.y0_c00315{bottom:0.000000pt;}
.y1a_c00315{bottom:62.733333pt;}
.y19_c00315{bottom:196.818133pt;}
.y18_c00315{bottom:224.333333pt;}
.y17_c00315{bottom:279.053333pt;}
.y16_c00315{bottom:333.773333pt;}
.y15_c00315{bottom:360.973333pt;}
.y14_c00315{bottom:388.800000pt;}
.y13_c00315{bottom:443.840000pt;}
.y12_c00315{bottom:499.527467pt;}
.y11_c00315{bottom:527.367467pt;}
.y10_c00315{bottom:554.573333pt;}
.ye_c00315{bottom:582.087467pt;}
.yf_c00315{bottom:582.093333pt;}
.yd_c00315{bottom:609.293333pt;}
.yc_c00315{bottom:663.680000pt;}
.yb_c00315{bottom:718.720000pt;}
.ya_c00315{bottom:718.731200pt;}
.y9_c00315{bottom:773.777067pt;}
.y8_c00315{bottom:800.333333pt;}
.y7_c00315{bottom:855.360000pt;}
.y6_c00315{bottom:855.365333pt;}
.y5_c00315{bottom:910.101867pt;}
.y4_c00315{bottom:937.617067pt;}
.y3_c00315{bottom:964.498133pt;}
.y2_c00315{bottom:992.013333pt;}
.y1_c00315{bottom:1058.880000pt;}
.h6_c00315{height:50.250000pt;}
.h2_c00315{height:58.625000pt;}
.h5_c00315{height:59.671875pt;}
.h3_c00315{height:60.718750pt;}
.h4_c00315{height:63.815315pt;}
.h1_c00315{height:1122.666667pt;}
.h0_c00315{height:1122.880000pt;}
.w1_c00315{width:793.333333pt;}
.w0_c00315{width:793.600000pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:103.933333pt;}
.xc_c00315{left:104.955200pt;}
.x5_c00315{left:149.994133pt;}
.x2_c00315{left:151.925867pt;}
.x4_c00315{left:271.693333pt;}
.xd_c00315{left:317.693333pt;}
.x6_c00315{left:319.506667pt;}
.x7_c00315{left:345.066667pt;}
.x11_c00315{left:371.760000pt;}
.xe_c00315{left:430.333333pt;}
.x3_c00315{left:434.106667pt;}
.xf_c00315{left:450.173333pt;}
.xa_c00315{left:459.093333pt;}
.xb_c00315{left:574.840000pt;}
.x8_c00315{left:598.546667pt;}
.x9_c00315{left:624.106667pt;}
.x10_c00315{left:646.253333pt;}
}





/* 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_c00316 {
    display:none;
  }
  .loading-indicator_c00316.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00316 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_c00316 { 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_c00316" -> "#page-container .classname_c00316")
 */
.pf_c00316 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00316 { /* 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_c00316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00316 { /* 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_c00316 { /* 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_c00316 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00316 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00316 {overflow:visible;}
  }
}
.c_c00316 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00316 { /* 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_c00316:after { /* webkit #35443 */
  content: '';
}
.t_c00316:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00316 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 */
}
.__c00316 { /* 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_c00316 { /* info for Javascript */
  display:none;
}
.l_c00316 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00316 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00316 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00316: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_c00316 {
    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_c00316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00316.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_c00316 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00316{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00316;src:url('chunks/assets/font_8eae2355b9f548a198f455d4.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.311035;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_c00316;src:url('chunks/assets/font_0c1f98895ae38a232fb42e34.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.284180;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_c00316;src:url('chunks/assets/font_cbcca64ea75af4dfc72f0dcc.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.284668;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_c00316;src:url('chunks/assets/font_f14120977e758bcac0abaa7b.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:1.284180;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_c00316;src:url('chunks/assets/font_ba8f649866d528b9abed7bc3.woff2')format("woff");}.ff5_c00316{font-family:ff5_c00316;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;}
.md_c00316{transform:matrix(0.167378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167378,0.000000,0.000000,0.250000,0,0);}
.mb_c00316{transform:matrix(0.171612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171612,0.000000,0.000000,0.250000,0,0);}
.m6_c00316{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.mc_c00316{transform:matrix(0.200984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200984,0.000000,0.000000,0.250000,0,0);}
.m3_c00316{transform:matrix(0.208323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208323,0.000000,0.000000,0.250000,0,0);}
.m2_c00316{transform:matrix(0.212938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212938,0.000000,0.000000,0.250000,0,0);}
.me_c00316{transform:matrix(0.223792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223792,0.000000,0.000000,0.250000,0,0);}
.m5_c00316{transform:matrix(0.227270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227270,0.000000,0.000000,0.250000,0,0);}
.m7_c00316{transform:matrix(0.230383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230383,0.000000,0.000000,0.250000,0,0);}
.m9_c00316{transform:matrix(0.243539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243539,0.000000,0.000000,0.250000,0,0);}
.m4_c00316{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m8_c00316{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m0_c00316{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_c00316{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.ma_c00316{transform:matrix(0.315366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315366,0.000000,0.000000,0.250000,0,0);}
.v2_c00316{vertical-align:-28.800000px;}
.v0_c00316{vertical-align:0.000000px;}
.v3_c00316{vertical-align:27.360000px;}
.v1_c00316{vertical-align:28.800000px;}
.ls8b_c00316{letter-spacing:-2.625000px;}
.ls72_c00316{letter-spacing:-2.604000px;}
.ls8a_c00316{letter-spacing:-2.583000px;}
.ls70_c00316{letter-spacing:-2.436000px;}
.ls79_c00316{letter-spacing:-2.415000px;}
.ls92_c00316{letter-spacing:-2.394000px;}
.ls5e_c00316{letter-spacing:-2.234160px;}
.ls7b_c00316{letter-spacing:-2.192400px;}
.ls76_c00316{letter-spacing:-1.872240px;}
.ls61_c00316{letter-spacing:-1.774800px;}
.ls82_c00316{letter-spacing:-1.767840px;}
.ls62_c00316{letter-spacing:-1.600800px;}
.ls69_c00316{letter-spacing:-1.531200px;}
.ls87_c00316{letter-spacing:-1.426800px;}
.ls83_c00316{letter-spacing:-1.218000px;}
.ls7a_c00316{letter-spacing:-0.883920px;}
.ls63_c00316{letter-spacing:-0.849120px;}
.ls8d_c00316{letter-spacing:-0.828240px;}
.ls65_c00316{letter-spacing:-0.709920px;}
.ls68_c00316{letter-spacing:-0.689040px;}
.ls8f_c00316{letter-spacing:-0.584640px;}
.ls60_c00316{letter-spacing:-0.542880px;}
.ls75_c00316{letter-spacing:-0.522000px;}
.ls86_c00316{letter-spacing:-0.508080px;}
.ls90_c00316{letter-spacing:-0.487200px;}
.ls67_c00316{letter-spacing:-0.452400px;}
.ls7e_c00316{letter-spacing:-0.445440px;}
.ls6d_c00316{letter-spacing:-0.375840px;}
.ls80_c00316{letter-spacing:-0.354960px;}
.ls7d_c00316{letter-spacing:-0.334080px;}
.ls91_c00316{letter-spacing:-0.320160px;}
.ls8c_c00316{letter-spacing:-0.278400px;}
.ls8e_c00316{letter-spacing:-0.243600px;}
.ls6a_c00316{letter-spacing:-0.222720px;}
.ls6f_c00316{letter-spacing:-0.208800px;}
.ls66_c00316{letter-spacing:-0.187920px;}
.ls74_c00316{letter-spacing:-0.180960px;}
.ls84_c00316{letter-spacing:-0.146160px;}
.ls5d_c00316{letter-spacing:-0.139200px;}
.ls71_c00316{letter-spacing:-0.111360px;}
.ls73_c00316{letter-spacing:-0.090480px;}
.ls85_c00316{letter-spacing:-0.020880px;}
.ls64_c00316{letter-spacing:-0.006960px;}
.ls5f_c00316{letter-spacing:0.000000px;}
.ls24_c00316{letter-spacing:0.013920px;}
.ls3_c00316{letter-spacing:0.027840px;}
.ls47_c00316{letter-spacing:0.041760px;}
.ls81_c00316{letter-spacing:0.090480px;}
.ls2b_c00316{letter-spacing:0.097440px;}
.ls50_c00316{letter-spacing:0.118320px;}
.ls6b_c00316{letter-spacing:0.132240px;}
.ls1b_c00316{letter-spacing:0.160080px;}
.ls1d_c00316{letter-spacing:0.174000px;}
.ls15_c00316{letter-spacing:0.201840px;}
.ls2c_c00316{letter-spacing:0.208800px;}
.ls2e_c00316{letter-spacing:0.215760px;}
.lse_c00316{letter-spacing:0.229680px;}
.ls2_c00316{letter-spacing:0.236640px;}
.ls19_c00316{letter-spacing:0.250560px;}
.ls4_c00316{letter-spacing:0.264480px;}
.ls44_c00316{letter-spacing:0.271440px;}
.ls34_c00316{letter-spacing:0.285360px;}
.ls7_c00316{letter-spacing:0.292320px;}
.ls4c_c00316{letter-spacing:0.299280px;}
.ls12_c00316{letter-spacing:0.334080px;}
.ls2a_c00316{letter-spacing:0.354960px;}
.ls33_c00316{letter-spacing:0.361920px;}
.ls51_c00316{letter-spacing:0.365700px;}
.ls6e_c00316{letter-spacing:0.382800px;}
.ls31_c00316{letter-spacing:0.389760px;}
.ls13_c00316{letter-spacing:0.403680px;}
.ls30_c00316{letter-spacing:0.410640px;}
.ls77_c00316{letter-spacing:0.431520px;}
.ls39_c00316{letter-spacing:0.438480px;}
.ls1c_c00316{letter-spacing:0.466320px;}
.ls5a_c00316{letter-spacing:0.473280px;}
.ls37_c00316{letter-spacing:0.494160px;}
.ls4b_c00316{letter-spacing:0.501120px;}
.ls52_c00316{letter-spacing:0.510600px;}
.lsd_c00316{letter-spacing:0.535920px;}
.ls42_c00316{letter-spacing:0.542880px;}
.ls36_c00316{letter-spacing:0.563760px;}
.ls43_c00316{letter-spacing:0.570720px;}
.ls3f_c00316{letter-spacing:0.577680px;}
.ls6_c00316{letter-spacing:0.591600px;}
.ls4e_c00316{letter-spacing:0.598560px;}
.ls29_c00316{letter-spacing:0.600300px;}
.ls14_c00316{letter-spacing:0.605520px;}
.ls40_c00316{letter-spacing:0.612480px;}
.ls25_c00316{letter-spacing:0.626400px;}
.ls1f_c00316{letter-spacing:0.647280px;}
.ls8_c00316{letter-spacing:0.648600px;}
.ls45_c00316{letter-spacing:0.675120px;}
.ls38_c00316{letter-spacing:0.696000px;}
.ls35_c00316{letter-spacing:0.716880px;}
.ls23_c00316{letter-spacing:0.717600px;}
.ls17_c00316{letter-spacing:0.737760px;}
.ls58_c00316{letter-spacing:0.744720px;}
.ls3b_c00316{letter-spacing:0.745200px;}
.ls7c_c00316{letter-spacing:0.772560px;}
.ls7f_c00316{letter-spacing:0.786480px;}
.ls46_c00316{letter-spacing:0.793440px;}
.ls26_c00316{letter-spacing:0.800400px;}
.ls1a_c00316{letter-spacing:0.821280px;}
.ls20_c00316{letter-spacing:0.862500px;}
.ls4d_c00316{letter-spacing:0.869400px;}
.ls18_c00316{letter-spacing:0.870000px;}
.ls1e_c00316{letter-spacing:0.883920px;}
.ls5b_c00316{letter-spacing:0.890880px;}
.ls4a_c00316{letter-spacing:0.932640px;}
.ls0_c00316{letter-spacing:0.950760px;}
.lsa_c00316{letter-spacing:0.952200px;}
.ls3c_c00316{letter-spacing:0.960480px;}
.ls48_c00316{letter-spacing:1.016160px;}
.ls9_c00316{letter-spacing:1.028100px;}
.ls32_c00316{letter-spacing:1.037040px;}
.ls21_c00316{letter-spacing:1.064880px;}
.ls1_c00316{letter-spacing:1.094400px;}
.ls54_c00316{letter-spacing:1.134480px;}
.ls5_c00316{letter-spacing:1.169280px;}
.ls78_c00316{letter-spacing:1.245840px;}
.ls55_c00316{letter-spacing:1.273680px;}
.ls2f_c00316{letter-spacing:1.294560px;}
.ls22_c00316{letter-spacing:1.317900px;}
.ls16_c00316{letter-spacing:1.322400px;}
.lsc_c00316{letter-spacing:1.329360px;}
.ls3a_c00316{letter-spacing:1.378080px;}
.ls53_c00316{letter-spacing:1.398960px;}
.ls59_c00316{letter-spacing:1.415880px;}
.ls41_c00316{letter-spacing:1.600800px;}
.ls4f_c00316{letter-spacing:1.607760px;}
.ls56_c00316{letter-spacing:1.635600px;}
.ls27_c00316{letter-spacing:1.642560px;}
.ls3e_c00316{letter-spacing:1.663440px;}
.ls88_c00316{letter-spacing:1.673241px;}
.lsb_c00316{letter-spacing:1.677360px;}
.ls10_c00316{letter-spacing:1.760880px;}
.ls5c_c00316{letter-spacing:1.804200px;}
.ls11_c00316{letter-spacing:1.816560px;}
.ls3d_c00316{letter-spacing:1.983600px;}
.ls49_c00316{letter-spacing:2.143680px;}
.ls2d_c00316{letter-spacing:2.164560px;}
.lsf_c00316{letter-spacing:2.185440px;}
.ls89_c00316{letter-spacing:2.370030px;}
.ls28_c00316{letter-spacing:2.540400px;}
.ls57_c00316{letter-spacing:2.568240px;}
.ls6c_c00316{letter-spacing:3.480000px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{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__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00316{word-spacing:-17.699280px;}
.ws1_c00316{word-spacing:-17.400000px;}
.ws8_c00316{word-spacing:0.000000px;}
.ws6_c00316{word-spacing:1.158000px;}
.ws0_c00316{word-spacing:1.360200px;}
.ws2_c00316{word-spacing:5.487600px;}
.ws3_c00316{word-spacing:6.975600px;}
.ws4_c00316{word-spacing:8.427000px;}
.ws7_c00316{word-spacing:13.340400px;}
._e_c00316{margin-left:-6.840000px;}
._9_c00316{margin-left:-3.855840px;}
._0_c00316{margin-left:-2.592360px;}
._10_c00316{margin-left:-1.085760px;}
._4_c00316{width:1.169280px;}
._6_c00316{width:2.825280px;}
._3_c00316{width:4.036800px;}
._2_c00316{width:5.554080px;}
._8_c00316{width:6.788640px;}
._11_c00316{width:7.899600px;}
._7_c00316{width:9.222000px;}
._5_c00316{width:10.266000px;}
._d_c00316{width:11.595840px;}
._1_c00316{width:13.533600px;}
._12_c00316{width:15.193800px;}
._a_c00316{width:16.244640px;}
._b_c00316{width:18.099600px;}
._c_c00316{width:19.863840px;}
._f_c00316{width:28.237500px;}
.fc0_c00316{color:transparent;}
.fs4_c00316{font-size:32.400600px;}
.fs7_c00316{font-size:47.400600px;}
.fs0_c00316{font-size:58.200000px;}
.fs1_c00316{font-size:68.400000px;}
.fs3_c00316{font-size:69.000000px;}
.fs2_c00316{font-size:69.600000px;}
.fs8_c00316{font-size:73.800000px;}
.fs5_c00316{font-size:74.400000px;}
.fs9_c00316{font-size:75.000000px;}
.fs6_c00316{font-size:82.200000px;}
.y0_c00316{bottom:0.000000px;}
.y1e_c00316{bottom:69.135000px;}
.y1d_c00316{bottom:156.248400px;}
.y1c_c00316{bottom:218.175000px;}
.y1b_c00316{bottom:279.735000px;}
.y1a_c00316{bottom:286.935000px;}
.y19_c00316{bottom:311.775000px;}
.y18_c00316{bottom:373.335000px;}
.y17_c00316{bottom:434.888400px;}
.y15_c00316{bottom:465.488400px;}
.y16_c00316{bottom:465.495000px;}
.y14_c00316{bottom:496.102800px;}
.y13_c00316{bottom:527.040000px;}
.y12_c00316{bottom:588.975000px;}
.y11_c00316{bottom:588.979800px;}
.y10_c00316{bottom:622.440000px;}
.yf_c00316{bottom:685.433400px;}
.ye_c00316{bottom:716.040000px;}
.yd_c00316{bottom:716.045400px;}
.yc_c00316{bottom:747.000000px;}
.yb_c00316{bottom:808.935000px;}
.ya_c00316{bottom:839.880000px;}
.y9_c00316{bottom:839.883000px;}
.y7_c00316{bottom:870.848400px;}
.y8_c00316{bottom:870.855000px;}
.y6_c00316{bottom:901.455000px;}
.y5_c00316{bottom:963.360000px;}
.y4_c00316{bottom:1025.287200px;}
.y3_c00316{bottom:1087.196400px;}
.y2_c00316{bottom:1117.455000px;}
.y1_c00316{bottom:1193.400000px;}
.h9_c00316{height:46.521097px;}
.h2_c00316{height:58.654687px;}
.hd_c00316{height:67.130859px;}
.h6_c00316{height:67.719727px;}
.h3_c00316{height:68.308594px;}
.h8_c00316{height:68.334994px;}
.hc_c00316{height:68.934375px;}
.h5_c00316{height:71.964844px;}
.ha_c00316{height:72.394629px;}
.h4_c00316{height:73.019531px;}
.hb_c00316{height:75.585938px;}
.h7_c00316{height:80.643605px;}
.h1_c00316{height:1263.000000px;}
.h0_c00316{height:1263.240000px;}
.w1_c00316{width:892.500000px;}
.w0_c00316{width:892.800000px;}
.x0_c00316{left:0.000000px;}
.x18_c00316{left:114.861000px;}
.x5_c00316{left:115.909800px;}
.x1_c00316{left:118.365000px;}
.x1b_c00316{left:136.200000px;}
.xc_c00316{left:138.075000px;}
.x12_c00316{left:146.805000px;}
.xd_c00316{left:158.985000px;}
.x1c_c00316{left:160.245000px;}
.x15_c00316{left:168.270000px;}
.x3_c00316{left:169.483800px;}
.x4_c00316{left:170.580000px;}
.x13_c00316{left:179.460000px;}
.x1d_c00316{left:206.925000px;}
.x1e_c00316{left:250.380000px;}
.x2_c00316{left:283.350000px;}
.xe_c00316{left:287.820000px;}
.xf_c00316{left:305.820000px;}
.x14_c00316{left:322.470000px;}
.x6_c00316{left:391.215000px;}
.x8_c00316{left:392.610000px;}
.x9_c00316{left:417.390000px;}
.x7_c00316{left:418.485000px;}
.x1f_c00316{left:419.670000px;}
.x19_c00316{left:462.090000px;}
.x10_c00316{left:503.550000px;}
.x1a_c00316{left:517.800000px;}
.x11_c00316{left:537.330000px;}
.x16_c00316{left:554.970000px;}
.x17_c00316{left:574.395000px;}
.xa_c00316{left:594.915000px;}
.xb_c00316{left:616.545000px;}
@media print{
.v2_c00316{vertical-align:-25.600000pt;}
.v0_c00316{vertical-align:0.000000pt;}
.v3_c00316{vertical-align:24.320000pt;}
.v1_c00316{vertical-align:25.600000pt;}
.ls8b_c00316{letter-spacing:-2.333333pt;}
.ls72_c00316{letter-spacing:-2.314667pt;}
.ls8a_c00316{letter-spacing:-2.296000pt;}
.ls70_c00316{letter-spacing:-2.165333pt;}
.ls79_c00316{letter-spacing:-2.146667pt;}
.ls92_c00316{letter-spacing:-2.128000pt;}
.ls5e_c00316{letter-spacing:-1.985920pt;}
.ls7b_c00316{letter-spacing:-1.948800pt;}
.ls76_c00316{letter-spacing:-1.664213pt;}
.ls61_c00316{letter-spacing:-1.577600pt;}
.ls82_c00316{letter-spacing:-1.571413pt;}
.ls62_c00316{letter-spacing:-1.422933pt;}
.ls69_c00316{letter-spacing:-1.361067pt;}
.ls87_c00316{letter-spacing:-1.268267pt;}
.ls83_c00316{letter-spacing:-1.082667pt;}
.ls7a_c00316{letter-spacing:-0.785707pt;}
.ls63_c00316{letter-spacing:-0.754773pt;}
.ls8d_c00316{letter-spacing:-0.736213pt;}
.ls65_c00316{letter-spacing:-0.631040pt;}
.ls68_c00316{letter-spacing:-0.612480pt;}
.ls8f_c00316{letter-spacing:-0.519680pt;}
.ls60_c00316{letter-spacing:-0.482560pt;}
.ls75_c00316{letter-spacing:-0.464000pt;}
.ls86_c00316{letter-spacing:-0.451627pt;}
.ls90_c00316{letter-spacing:-0.433067pt;}
.ls67_c00316{letter-spacing:-0.402133pt;}
.ls7e_c00316{letter-spacing:-0.395947pt;}
.ls6d_c00316{letter-spacing:-0.334080pt;}
.ls80_c00316{letter-spacing:-0.315520pt;}
.ls7d_c00316{letter-spacing:-0.296960pt;}
.ls91_c00316{letter-spacing:-0.284587pt;}
.ls8c_c00316{letter-spacing:-0.247467pt;}
.ls8e_c00316{letter-spacing:-0.216533pt;}
.ls6a_c00316{letter-spacing:-0.197973pt;}
.ls6f_c00316{letter-spacing:-0.185600pt;}
.ls66_c00316{letter-spacing:-0.167040pt;}
.ls74_c00316{letter-spacing:-0.160853pt;}
.ls84_c00316{letter-spacing:-0.129920pt;}
.ls5d_c00316{letter-spacing:-0.123733pt;}
.ls71_c00316{letter-spacing:-0.098987pt;}
.ls73_c00316{letter-spacing:-0.080427pt;}
.ls85_c00316{letter-spacing:-0.018560pt;}
.ls64_c00316{letter-spacing:-0.006187pt;}
.ls5f_c00316{letter-spacing:0.000000pt;}
.ls24_c00316{letter-spacing:0.012373pt;}
.ls3_c00316{letter-spacing:0.024747pt;}
.ls47_c00316{letter-spacing:0.037120pt;}
.ls81_c00316{letter-spacing:0.080427pt;}
.ls2b_c00316{letter-spacing:0.086613pt;}
.ls50_c00316{letter-spacing:0.105173pt;}
.ls6b_c00316{letter-spacing:0.117547pt;}
.ls1b_c00316{letter-spacing:0.142293pt;}
.ls1d_c00316{letter-spacing:0.154667pt;}
.ls15_c00316{letter-spacing:0.179413pt;}
.ls2c_c00316{letter-spacing:0.185600pt;}
.ls2e_c00316{letter-spacing:0.191787pt;}
.lse_c00316{letter-spacing:0.204160pt;}
.ls2_c00316{letter-spacing:0.210347pt;}
.ls19_c00316{letter-spacing:0.222720pt;}
.ls4_c00316{letter-spacing:0.235093pt;}
.ls44_c00316{letter-spacing:0.241280pt;}
.ls34_c00316{letter-spacing:0.253653pt;}
.ls7_c00316{letter-spacing:0.259840pt;}
.ls4c_c00316{letter-spacing:0.266027pt;}
.ls12_c00316{letter-spacing:0.296960pt;}
.ls2a_c00316{letter-spacing:0.315520pt;}
.ls33_c00316{letter-spacing:0.321707pt;}
.ls51_c00316{letter-spacing:0.325067pt;}
.ls6e_c00316{letter-spacing:0.340267pt;}
.ls31_c00316{letter-spacing:0.346453pt;}
.ls13_c00316{letter-spacing:0.358827pt;}
.ls30_c00316{letter-spacing:0.365013pt;}
.ls77_c00316{letter-spacing:0.383573pt;}
.ls39_c00316{letter-spacing:0.389760pt;}
.ls1c_c00316{letter-spacing:0.414507pt;}
.ls5a_c00316{letter-spacing:0.420693pt;}
.ls37_c00316{letter-spacing:0.439253pt;}
.ls4b_c00316{letter-spacing:0.445440pt;}
.ls52_c00316{letter-spacing:0.453867pt;}
.lsd_c00316{letter-spacing:0.476373pt;}
.ls42_c00316{letter-spacing:0.482560pt;}
.ls36_c00316{letter-spacing:0.501120pt;}
.ls43_c00316{letter-spacing:0.507307pt;}
.ls3f_c00316{letter-spacing:0.513493pt;}
.ls6_c00316{letter-spacing:0.525867pt;}
.ls4e_c00316{letter-spacing:0.532053pt;}
.ls29_c00316{letter-spacing:0.533600pt;}
.ls14_c00316{letter-spacing:0.538240pt;}
.ls40_c00316{letter-spacing:0.544427pt;}
.ls25_c00316{letter-spacing:0.556800pt;}
.ls1f_c00316{letter-spacing:0.575360pt;}
.ls8_c00316{letter-spacing:0.576533pt;}
.ls45_c00316{letter-spacing:0.600107pt;}
.ls38_c00316{letter-spacing:0.618667pt;}
.ls35_c00316{letter-spacing:0.637227pt;}
.ls23_c00316{letter-spacing:0.637867pt;}
.ls17_c00316{letter-spacing:0.655787pt;}
.ls58_c00316{letter-spacing:0.661973pt;}
.ls3b_c00316{letter-spacing:0.662400pt;}
.ls7c_c00316{letter-spacing:0.686720pt;}
.ls7f_c00316{letter-spacing:0.699093pt;}
.ls46_c00316{letter-spacing:0.705280pt;}
.ls26_c00316{letter-spacing:0.711467pt;}
.ls1a_c00316{letter-spacing:0.730027pt;}
.ls20_c00316{letter-spacing:0.766667pt;}
.ls4d_c00316{letter-spacing:0.772800pt;}
.ls18_c00316{letter-spacing:0.773333pt;}
.ls1e_c00316{letter-spacing:0.785707pt;}
.ls5b_c00316{letter-spacing:0.791893pt;}
.ls4a_c00316{letter-spacing:0.829013pt;}
.ls0_c00316{letter-spacing:0.845120pt;}
.lsa_c00316{letter-spacing:0.846400pt;}
.ls3c_c00316{letter-spacing:0.853760pt;}
.ls48_c00316{letter-spacing:0.903253pt;}
.ls9_c00316{letter-spacing:0.913867pt;}
.ls32_c00316{letter-spacing:0.921813pt;}
.ls21_c00316{letter-spacing:0.946560pt;}
.ls1_c00316{letter-spacing:0.972800pt;}
.ls54_c00316{letter-spacing:1.008427pt;}
.ls5_c00316{letter-spacing:1.039360pt;}
.ls78_c00316{letter-spacing:1.107413pt;}
.ls55_c00316{letter-spacing:1.132160pt;}
.ls2f_c00316{letter-spacing:1.150720pt;}
.ls22_c00316{letter-spacing:1.171467pt;}
.ls16_c00316{letter-spacing:1.175467pt;}
.lsc_c00316{letter-spacing:1.181653pt;}
.ls3a_c00316{letter-spacing:1.224960pt;}
.ls53_c00316{letter-spacing:1.243520pt;}
.ls59_c00316{letter-spacing:1.258560pt;}
.ls41_c00316{letter-spacing:1.422933pt;}
.ls4f_c00316{letter-spacing:1.429120pt;}
.ls56_c00316{letter-spacing:1.453867pt;}
.ls27_c00316{letter-spacing:1.460053pt;}
.ls3e_c00316{letter-spacing:1.478613pt;}
.ls88_c00316{letter-spacing:1.487325pt;}
.lsb_c00316{letter-spacing:1.490987pt;}
.ls10_c00316{letter-spacing:1.565227pt;}
.ls5c_c00316{letter-spacing:1.603733pt;}
.ls11_c00316{letter-spacing:1.614720pt;}
.ls3d_c00316{letter-spacing:1.763200pt;}
.ls49_c00316{letter-spacing:1.905493pt;}
.ls2d_c00316{letter-spacing:1.924053pt;}
.lsf_c00316{letter-spacing:1.942613pt;}
.ls89_c00316{letter-spacing:2.106693pt;}
.ls28_c00316{letter-spacing:2.258133pt;}
.ls57_c00316{letter-spacing:2.282880pt;}
.ls6c_c00316{letter-spacing:3.093333pt;}
.ws5_c00316{word-spacing:-15.732693pt;}
.ws1_c00316{word-spacing:-15.466667pt;}
.ws8_c00316{word-spacing:0.000000pt;}
.ws6_c00316{word-spacing:1.029333pt;}
.ws0_c00316{word-spacing:1.209067pt;}
.ws2_c00316{word-spacing:4.877867pt;}
.ws3_c00316{word-spacing:6.200533pt;}
.ws4_c00316{word-spacing:7.490667pt;}
.ws7_c00316{word-spacing:11.858133pt;}
._e_c00316{margin-left:-6.080000pt;}
._9_c00316{margin-left:-3.427413pt;}
._0_c00316{margin-left:-2.304320pt;}
._10_c00316{margin-left:-0.965120pt;}
._4_c00316{width:1.039360pt;}
._6_c00316{width:2.511360pt;}
._3_c00316{width:3.588267pt;}
._2_c00316{width:4.936960pt;}
._8_c00316{width:6.034347pt;}
._11_c00316{width:7.021867pt;}
._7_c00316{width:8.197333pt;}
._5_c00316{width:9.125333pt;}
._d_c00316{width:10.307413pt;}
._1_c00316{width:12.029867pt;}
._12_c00316{width:13.505600pt;}
._a_c00316{width:14.439680pt;}
._b_c00316{width:16.088533pt;}
._c_c00316{width:17.656747pt;}
._f_c00316{width:25.100000pt;}
.fs4_c00316{font-size:28.800533pt;}
.fs7_c00316{font-size:42.133867pt;}
.fs0_c00316{font-size:51.733333pt;}
.fs1_c00316{font-size:60.800000pt;}
.fs3_c00316{font-size:61.333333pt;}
.fs2_c00316{font-size:61.866667pt;}
.fs8_c00316{font-size:65.600000pt;}
.fs5_c00316{font-size:66.133333pt;}
.fs9_c00316{font-size:66.666667pt;}
.fs6_c00316{font-size:73.066667pt;}
.y0_c00316{bottom:0.000000pt;}
.y1e_c00316{bottom:61.453333pt;}
.y1d_c00316{bottom:138.887467pt;}
.y1c_c00316{bottom:193.933333pt;}
.y1b_c00316{bottom:248.653333pt;}
.y1a_c00316{bottom:255.053333pt;}
.y19_c00316{bottom:277.133333pt;}
.y18_c00316{bottom:331.853333pt;}
.y17_c00316{bottom:386.567467pt;}
.y15_c00316{bottom:413.767467pt;}
.y16_c00316{bottom:413.773333pt;}
.y14_c00316{bottom:440.980267pt;}
.y13_c00316{bottom:468.480000pt;}
.y12_c00316{bottom:523.533333pt;}
.y11_c00316{bottom:523.537600pt;}
.y10_c00316{bottom:553.280000pt;}
.yf_c00316{bottom:609.274133pt;}
.ye_c00316{bottom:636.480000pt;}
.yd_c00316{bottom:636.484800pt;}
.yc_c00316{bottom:664.000000pt;}
.yb_c00316{bottom:719.053333pt;}
.ya_c00316{bottom:746.560000pt;}
.y9_c00316{bottom:746.562667pt;}
.y7_c00316{bottom:774.087467pt;}
.y8_c00316{bottom:774.093333pt;}
.y6_c00316{bottom:801.293333pt;}
.y5_c00316{bottom:856.320000pt;}
.y4_c00316{bottom:911.366400pt;}
.y3_c00316{bottom:966.396800pt;}
.y2_c00316{bottom:993.293333pt;}
.y1_c00316{bottom:1060.800000pt;}
.h9_c00316{height:41.352086pt;}
.h2_c00316{height:52.137500pt;}
.hd_c00316{height:59.671875pt;}
.h6_c00316{height:60.195312pt;}
.h3_c00316{height:60.718750pt;}
.h8_c00316{height:60.742217pt;}
.hc_c00316{height:61.275000pt;}
.h5_c00316{height:63.968750pt;}
.ha_c00316{height:64.350781pt;}
.h4_c00316{height:64.906250pt;}
.hb_c00316{height:67.187500pt;}
.h7_c00316{height:71.683204pt;}
.h1_c00316{height:1122.666667pt;}
.h0_c00316{height:1122.880000pt;}
.w1_c00316{width:793.333333pt;}
.w0_c00316{width:793.600000pt;}
.x0_c00316{left:0.000000pt;}
.x18_c00316{left:102.098667pt;}
.x5_c00316{left:103.030933pt;}
.x1_c00316{left:105.213333pt;}
.x1b_c00316{left:121.066667pt;}
.xc_c00316{left:122.733333pt;}
.x12_c00316{left:130.493333pt;}
.xd_c00316{left:141.320000pt;}
.x1c_c00316{left:142.440000pt;}
.x15_c00316{left:149.573333pt;}
.x3_c00316{left:150.652267pt;}
.x4_c00316{left:151.626667pt;}
.x13_c00316{left:159.520000pt;}
.x1d_c00316{left:183.933333pt;}
.x1e_c00316{left:222.560000pt;}
.x2_c00316{left:251.866667pt;}
.xe_c00316{left:255.840000pt;}
.xf_c00316{left:271.840000pt;}
.x14_c00316{left:286.640000pt;}
.x6_c00316{left:347.746667pt;}
.x8_c00316{left:348.986667pt;}
.x9_c00316{left:371.013333pt;}
.x7_c00316{left:371.986667pt;}
.x1f_c00316{left:373.040000pt;}
.x19_c00316{left:410.746667pt;}
.x10_c00316{left:447.600000pt;}
.x1a_c00316{left:460.266667pt;}
.x11_c00316{left:477.626667pt;}
.x16_c00316{left:493.306667pt;}
.x17_c00316{left:510.573333pt;}
.xa_c00316{left:528.813333pt;}
.xb_c00316{left:548.040000pt;}
}





/* 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_c00317 {
    display:none;
  }
  .loading-indicator_c00317.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00317 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_c00317 { 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_c00317" -> "#page-container .classname_c00317")
 */
.pf_c00317 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00317 { /* 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_c00317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00317 { /* 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_c00317 { /* 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_c00317 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00317 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00317 {overflow:visible;}
  }
}
.c_c00317 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00317 { /* 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_c00317:after { /* webkit #35443 */
  content: '';
}
.t_c00317:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00317 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 */
}
.__c00317 { /* 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_c00317 { /* info for Javascript */
  display:none;
}
.l_c00317 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00317 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00317 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00317: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_c00317 {
    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_c00317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00317.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_c00317 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00317{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00317;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.311035;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_c00317;src:url('chunks/assets/font_65b0c64cc5622ba15cefadb9.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.284180;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_c00317;src:url('chunks/assets/font_6b13df3eff1d76007323ba06.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.284668;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_c00317;src:url('chunks/assets/font_f6dadd69911f7750d034d6cc.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:0.666000;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_c00317;src:url('chunks/assets/font_ec453fd8b1394ce97771041d.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:1.284180;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_c00317;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff6_c00317{font-family:ff6_c00317;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;}
.m2_c00317{transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);}
.ma_c00317{transform:matrix(0.195911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195911,0.000000,0.000000,0.250000,0,0);}
.m9_c00317{transform:matrix(0.201428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201428,0.000000,0.000000,0.250000,0,0);}
.m3_c00317{transform:matrix(0.246223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246223,0.000000,0.000000,0.250000,0,0);}
.m1_c00317{transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);}
.m0_c00317{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);}
.m5_c00317{transform:matrix(0.261642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261642,0.000000,0.000000,0.250000,0,0);}
.m6_c00317{transform:matrix(0.275520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275520,0.000000,0.000000,0.250000,0,0);}
.m4_c00317{transform:matrix(0.278276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278276,0.000000,0.000000,0.250000,0,0);}
.m7_c00317{transform:matrix(0.293498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293498,0.000000,0.000000,0.250000,0,0);}
.m8_c00317{transform:matrix(0.303487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303487,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls89_c00317{letter-spacing:-2.415000px;}
.ls70_c00317{letter-spacing:-2.373000px;}
.ls7b_c00317{letter-spacing:-1.891620px;}
.ls77_c00317{letter-spacing:-1.410240px;}
.ls7f_c00317{letter-spacing:-1.044120px;}
.ls7e_c00317{letter-spacing:-0.691560px;}
.ls79_c00317{letter-spacing:-0.494940px;}
.ls73_c00317{letter-spacing:-0.359340px;}
.ls78_c00317{letter-spacing:-0.339000px;}
.ls7c_c00317{letter-spacing:-0.311880px;}
.ls71_c00317{letter-spacing:-0.264420px;}
.ls7a_c00317{letter-spacing:-0.257640px;}
.ls7d_c00317{letter-spacing:-0.210180px;}
.ls6e_c00317{letter-spacing:-0.128820px;}
.ls76_c00317{letter-spacing:-0.081360px;}
.ls86_c00317{letter-spacing:-0.006780px;}
.ls6d_c00317{letter-spacing:0.000000px;}
.ls80_c00317{letter-spacing:0.027120px;}
.ls12_c00317{letter-spacing:0.033900px;}
.ls53_c00317{letter-spacing:0.040680px;}
.ls6c_c00317{letter-spacing:0.094920px;}
.ls8b_c00317{letter-spacing:0.098940px;}
.ls81_c00317{letter-spacing:0.101700px;}
.ls52_c00317{letter-spacing:0.149160px;}
.ls42_c00317{letter-spacing:0.155940px;}
.ls85_c00317{letter-spacing:0.169500px;}
.ls39_c00317{letter-spacing:0.216960px;}
.ls83_c00317{letter-spacing:0.223740px;}
.ls37_c00317{letter-spacing:0.237300px;}
.ls3e_c00317{letter-spacing:0.291540px;}
.ls4c_c00317{letter-spacing:0.311880px;}
.ls2e_c00317{letter-spacing:0.325440px;}
.lsf_c00317{letter-spacing:0.332220px;}
.ls43_c00317{letter-spacing:0.339000px;}
.ls17_c00317{letter-spacing:0.372900px;}
.ls88_c00317{letter-spacing:0.379680px;}
.ls20_c00317{letter-spacing:0.386460px;}
.ls9_c00317{letter-spacing:0.427140px;}
.ls10_c00317{letter-spacing:0.440700px;}
.ls50_c00317{letter-spacing:0.501720px;}
.ls87_c00317{letter-spacing:0.508500px;}
.ls2_c00317{letter-spacing:0.515280px;}
.ls14_c00317{letter-spacing:0.522060px;}
.ls44_c00317{letter-spacing:0.542400px;}
.lsd_c00317{letter-spacing:0.569520px;}
.ls65_c00317{letter-spacing:0.583080px;}
.ls24_c00317{letter-spacing:0.589860px;}
.ls62_c00317{letter-spacing:0.616980px;}
.ls75_c00317{letter-spacing:0.623760px;}
.ls49_c00317{letter-spacing:0.630540px;}
.ls1_c00317{letter-spacing:0.637320px;}
.ls5c_c00317{letter-spacing:0.644100px;}
.ls30_c00317{letter-spacing:0.650880px;}
.ls8a_c00317{letter-spacing:0.657660px;}
.ls1f_c00317{letter-spacing:0.671220px;}
.ls25_c00317{letter-spacing:0.678000px;}
.ls1c_c00317{letter-spacing:0.698340px;}
.ls28_c00317{letter-spacing:0.711900px;}
.ls5f_c00317{letter-spacing:0.718680px;}
.ls47_c00317{letter-spacing:0.732240px;}
.ls60_c00317{letter-spacing:0.739020px;}
.ls3d_c00317{letter-spacing:0.745800px;}
.ls26_c00317{letter-spacing:0.752580px;}
.lse_c00317{letter-spacing:0.766140px;}
.ls5e_c00317{letter-spacing:0.772920px;}
.ls33_c00317{letter-spacing:0.786480px;}
.ls13_c00317{letter-spacing:0.800040px;}
.ls18_c00317{letter-spacing:0.806820px;}
.ls3f_c00317{letter-spacing:0.820380px;}
.ls72_c00317{letter-spacing:0.847500px;}
.ls55_c00317{letter-spacing:0.854280px;}
.ls61_c00317{letter-spacing:0.894960px;}
.ls3c_c00317{letter-spacing:0.908520px;}
.ls6_c00317{letter-spacing:0.922080px;}
.ls15_c00317{letter-spacing:0.928860px;}
.ls40_c00317{letter-spacing:0.935640px;}
.ls16_c00317{letter-spacing:0.955980px;}
.ls7_c00317{letter-spacing:0.962760px;}
.ls35_c00317{letter-spacing:0.969540px;}
.ls4a_c00317{letter-spacing:0.976320px;}
.ls54_c00317{letter-spacing:0.983100px;}
.ls4f_c00317{letter-spacing:0.989880px;}
.ls38_c00317{letter-spacing:1.010220px;}
.ls46_c00317{letter-spacing:1.017000px;}
.ls6f_c00317{letter-spacing:1.023780px;}
.ls5a_c00317{letter-spacing:1.030560px;}
.lsb_c00317{letter-spacing:1.037340px;}
.ls3_c00317{letter-spacing:1.057680px;}
.ls21_c00317{letter-spacing:1.071240px;}
.ls2d_c00317{letter-spacing:1.078020px;}
.ls57_c00317{letter-spacing:1.084800px;}
.ls56_c00317{letter-spacing:1.091580px;}
.ls32_c00317{letter-spacing:1.095360px;}
.ls0_c00317{letter-spacing:1.098360px;}
.ls41_c00317{letter-spacing:1.105140px;}
.ls67_c00317{letter-spacing:1.118700px;}
.ls4_c00317{letter-spacing:1.139040px;}
.ls2a_c00317{letter-spacing:1.145820px;}
.ls5_c00317{letter-spacing:1.152600px;}
.ls23_c00317{letter-spacing:1.159380px;}
.ls29_c00317{letter-spacing:1.179720px;}
.ls74_c00317{letter-spacing:1.186500px;}
.ls22_c00317{letter-spacing:1.220400px;}
.ls68_c00317{letter-spacing:1.247520px;}
.ls2b_c00317{letter-spacing:1.267860px;}
.ls3a_c00317{letter-spacing:1.294980px;}
.ls36_c00317{letter-spacing:1.301760px;}
.ls4d_c00317{letter-spacing:1.308540px;}
.ls2f_c00317{letter-spacing:1.328880px;}
.ls6b_c00317{letter-spacing:1.349220px;}
.ls45_c00317{letter-spacing:1.362780px;}
.ls8_c00317{letter-spacing:1.369560px;}
.ls3b_c00317{letter-spacing:1.376340px;}
.ls51_c00317{letter-spacing:1.396680px;}
.ls5b_c00317{letter-spacing:1.403460px;}
.ls1e_c00317{letter-spacing:1.423800px;}
.ls1a_c00317{letter-spacing:1.444140px;}
.lsc_c00317{letter-spacing:1.450920px;}
.ls1b_c00317{letter-spacing:1.471260px;}
.ls27_c00317{letter-spacing:1.478040px;}
.ls6a_c00317{letter-spacing:1.484100px;}
.ls59_c00317{letter-spacing:1.484820px;}
.ls1d_c00317{letter-spacing:1.539060px;}
.ls34_c00317{letter-spacing:1.545840px;}
.lsa_c00317{letter-spacing:1.606860px;}
.ls58_c00317{letter-spacing:1.701780px;}
.ls69_c00317{letter-spacing:1.742460px;}
.ls31_c00317{letter-spacing:1.767360px;}
.ls63_c00317{letter-spacing:1.769580px;}
.ls64_c00317{letter-spacing:1.776360px;}
.ls4b_c00317{letter-spacing:1.830600px;}
.ls11_c00317{letter-spacing:1.844160px;}
.ls66_c00317{letter-spacing:1.891620px;}
.ls4e_c00317{letter-spacing:2.203500px;}
.ls2c_c00317{letter-spacing:2.528940px;}
.ls5d_c00317{letter-spacing:2.637420px;}
.ls48_c00317{letter-spacing:2.773020px;}
.ls19_c00317{letter-spacing:3.356100px;}
.ls84_c00317{letter-spacing:3.390000px;}
.ls82_c00317{letter-spacing:3.420000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{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__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00317{word-spacing:-0.067800px;}
.ws2_c00317{word-spacing:0.000000px;}
.ws0_c00317{word-spacing:26.035200px;}
._11_c00317{margin-left:-4.915500px;}
._d_c00317{margin-left:-3.884940px;}
._10_c00317{margin-left:-2.685000px;}
._2_c00317{margin-left:-1.667880px;}
._14_c00317{width:1.288200px;}
._0_c00317{width:2.468040px;}
._1_c00317{width:4.054440px;}
._3_c00317{width:5.939280px;}
._a_c00317{width:7.837680px;}
._7_c00317{width:9.159780px;}
._8_c00317{width:11.532780px;}
._b_c00317{width:12.543000px;}
._4_c00317{width:14.739720px;}
._5_c00317{width:16.014360px;}
._c_c00317{width:17.709360px;}
._f_c00317{width:19.051800px;}
._6_c00317{width:20.882400px;}
._9_c00317{width:22.679100px;}
._e_c00317{width:26.475900px;}
._12_c00317{width:27.852240px;}
._13_c00317{width:30.211680px;}
.fc0_c00317{color:transparent;}
.fs3_c00317{font-size:53.280000px;}
.fs0_c00317{font-size:58.200000px;}
.fs5_c00317{font-size:63.000000px;}
.fs4_c00317{font-size:67.200000px;}
.fs1_c00317{font-size:67.800000px;}
.fs6_c00317{font-size:68.400000px;}
.fs8_c00317{font-size:69.000000px;}
.fs2_c00317{font-size:71.400000px;}
.fs7_c00317{font-size:73.800000px;}
.y0_c00317{bottom:0.000000px;}
.y1e_c00317{bottom:71.655000px;}
.y1c_c00317{bottom:192.972300px;}
.y1d_c00317{bottom:192.975000px;}
.y1b_c00317{bottom:257.060250px;}
.y1a_c00317{bottom:287.655000px;}
.y19_c00317{bottom:287.660250px;}
.y18_c00317{bottom:318.262200px;}
.y17_c00317{bottom:348.840000px;}
.y16_c00317{bottom:348.841650px;}
.y15_c00317{bottom:379.453350px;}
.y14_c00317{bottom:410.048100px;}
.y13_c00317{bottom:471.237600px;}
.y12_c00317{bottom:502.205250px;}
.y11_c00317{bottom:532.800000px;}
.yf_c00317{bottom:594.719250px;}
.y10_c00317{bottom:594.720000px;}
.ye_c00317{bottom:624.969000px;}
.yd_c00317{bottom:686.887350px;}
.yc_c00317{bottom:717.855000px;}
.yb_c00317{bottom:779.400000px;}
.ya_c00317{bottom:841.704600px;}
.y9_c00317{bottom:871.926450px;}
.y8_c00317{bottom:902.182200px;}
.y7_c00317{bottom:932.760000px;}
.y6_c00317{bottom:963.375000px;}
.y5_c00317{bottom:993.961350px;}
.y4_c00317{bottom:1055.879700px;}
.y3_c00317{bottom:1086.847350px;}
.y2_c00317{bottom:1117.815000px;}
.y1_c00317{bottom:1193.400000px;}
.h5_c00317{height:35.484480px;}
.hc_c00317{height:57.120117px;}
.h2_c00317{height:58.654687px;}
.h3_c00317{height:66.541992px;}
.h7_c00317{height:66.544992px;}
.ha_c00317{height:66.552792px;}
.h6_c00317{height:66.565992px;}
.h8_c00317{height:67.130859px;}
.hb_c00317{height:67.719727px;}
.h4_c00317{height:70.129795px;}
.h9_c00317{height:72.401864px;}
.h1_c00317{height:1263.000000px;}
.h0_c00317{height:1263.240000px;}
.w1_c00317{width:892.500000px;}
.w0_c00317{width:892.800000px;}
.x0_c00317{left:0.000000px;}
.x1_c00317{left:119.805000px;}
.x6_c00317{left:171.272700px;}
.x8_c00317{left:172.273950px;}
.x2_c00317{left:173.295000px;}
.x4_c00317{left:231.795000px;}
.x5_c00317{left:269.805000px;}
.x9_c00317{left:348.675000px;}
.xa_c00317{left:364.140000px;}
.xb_c00317{left:374.685000px;}
.xc_c00317{left:397.725000px;}
.x15_c00317{left:420.030000px;}
.xd_c00317{left:425.325000px;}
.x12_c00317{left:439.845000px;}
.xe_c00317{left:453.750000px;}
.x13_c00317{left:471.420000px;}
.xf_c00317{left:478.905000px;}
.x7_c00317{left:481.875000px;}
.x10_c00317{left:513.600000px;}
.x11_c00317{left:553.755000px;}
.x14_c00317{left:701.925000px;}
.x3_c00317{left:726.255000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls89_c00317{letter-spacing:-2.146667pt;}
.ls70_c00317{letter-spacing:-2.109333pt;}
.ls7b_c00317{letter-spacing:-1.681440pt;}
.ls77_c00317{letter-spacing:-1.253547pt;}
.ls7f_c00317{letter-spacing:-0.928107pt;}
.ls7e_c00317{letter-spacing:-0.614720pt;}
.ls79_c00317{letter-spacing:-0.439947pt;}
.ls73_c00317{letter-spacing:-0.319413pt;}
.ls78_c00317{letter-spacing:-0.301333pt;}
.ls7c_c00317{letter-spacing:-0.277227pt;}
.ls71_c00317{letter-spacing:-0.235040pt;}
.ls7a_c00317{letter-spacing:-0.229013pt;}
.ls7d_c00317{letter-spacing:-0.186827pt;}
.ls6e_c00317{letter-spacing:-0.114507pt;}
.ls76_c00317{letter-spacing:-0.072320pt;}
.ls86_c00317{letter-spacing:-0.006027pt;}
.ls6d_c00317{letter-spacing:0.000000pt;}
.ls80_c00317{letter-spacing:0.024107pt;}
.ls12_c00317{letter-spacing:0.030133pt;}
.ls53_c00317{letter-spacing:0.036160pt;}
.ls6c_c00317{letter-spacing:0.084373pt;}
.ls8b_c00317{letter-spacing:0.087947pt;}
.ls81_c00317{letter-spacing:0.090400pt;}
.ls52_c00317{letter-spacing:0.132587pt;}
.ls42_c00317{letter-spacing:0.138613pt;}
.ls85_c00317{letter-spacing:0.150667pt;}
.ls39_c00317{letter-spacing:0.192853pt;}
.ls83_c00317{letter-spacing:0.198880pt;}
.ls37_c00317{letter-spacing:0.210933pt;}
.ls3e_c00317{letter-spacing:0.259147pt;}
.ls4c_c00317{letter-spacing:0.277227pt;}
.ls2e_c00317{letter-spacing:0.289280pt;}
.lsf_c00317{letter-spacing:0.295307pt;}
.ls43_c00317{letter-spacing:0.301333pt;}
.ls17_c00317{letter-spacing:0.331467pt;}
.ls88_c00317{letter-spacing:0.337493pt;}
.ls20_c00317{letter-spacing:0.343520pt;}
.ls9_c00317{letter-spacing:0.379680pt;}
.ls10_c00317{letter-spacing:0.391733pt;}
.ls50_c00317{letter-spacing:0.445973pt;}
.ls87_c00317{letter-spacing:0.452000pt;}
.ls2_c00317{letter-spacing:0.458027pt;}
.ls14_c00317{letter-spacing:0.464053pt;}
.ls44_c00317{letter-spacing:0.482133pt;}
.lsd_c00317{letter-spacing:0.506240pt;}
.ls65_c00317{letter-spacing:0.518293pt;}
.ls24_c00317{letter-spacing:0.524320pt;}
.ls62_c00317{letter-spacing:0.548427pt;}
.ls75_c00317{letter-spacing:0.554453pt;}
.ls49_c00317{letter-spacing:0.560480pt;}
.ls1_c00317{letter-spacing:0.566507pt;}
.ls5c_c00317{letter-spacing:0.572533pt;}
.ls30_c00317{letter-spacing:0.578560pt;}
.ls8a_c00317{letter-spacing:0.584587pt;}
.ls1f_c00317{letter-spacing:0.596640pt;}
.ls25_c00317{letter-spacing:0.602667pt;}
.ls1c_c00317{letter-spacing:0.620747pt;}
.ls28_c00317{letter-spacing:0.632800pt;}
.ls5f_c00317{letter-spacing:0.638827pt;}
.ls47_c00317{letter-spacing:0.650880pt;}
.ls60_c00317{letter-spacing:0.656907pt;}
.ls3d_c00317{letter-spacing:0.662933pt;}
.ls26_c00317{letter-spacing:0.668960pt;}
.lse_c00317{letter-spacing:0.681013pt;}
.ls5e_c00317{letter-spacing:0.687040pt;}
.ls33_c00317{letter-spacing:0.699093pt;}
.ls13_c00317{letter-spacing:0.711147pt;}
.ls18_c00317{letter-spacing:0.717173pt;}
.ls3f_c00317{letter-spacing:0.729227pt;}
.ls72_c00317{letter-spacing:0.753333pt;}
.ls55_c00317{letter-spacing:0.759360pt;}
.ls61_c00317{letter-spacing:0.795520pt;}
.ls3c_c00317{letter-spacing:0.807573pt;}
.ls6_c00317{letter-spacing:0.819627pt;}
.ls15_c00317{letter-spacing:0.825653pt;}
.ls40_c00317{letter-spacing:0.831680pt;}
.ls16_c00317{letter-spacing:0.849760pt;}
.ls7_c00317{letter-spacing:0.855787pt;}
.ls35_c00317{letter-spacing:0.861813pt;}
.ls4a_c00317{letter-spacing:0.867840pt;}
.ls54_c00317{letter-spacing:0.873867pt;}
.ls4f_c00317{letter-spacing:0.879893pt;}
.ls38_c00317{letter-spacing:0.897973pt;}
.ls46_c00317{letter-spacing:0.904000pt;}
.ls6f_c00317{letter-spacing:0.910027pt;}
.ls5a_c00317{letter-spacing:0.916053pt;}
.lsb_c00317{letter-spacing:0.922080pt;}
.ls3_c00317{letter-spacing:0.940160pt;}
.ls21_c00317{letter-spacing:0.952213pt;}
.ls2d_c00317{letter-spacing:0.958240pt;}
.ls57_c00317{letter-spacing:0.964267pt;}
.ls56_c00317{letter-spacing:0.970293pt;}
.ls32_c00317{letter-spacing:0.973653pt;}
.ls0_c00317{letter-spacing:0.976320pt;}
.ls41_c00317{letter-spacing:0.982347pt;}
.ls67_c00317{letter-spacing:0.994400pt;}
.ls4_c00317{letter-spacing:1.012480pt;}
.ls2a_c00317{letter-spacing:1.018507pt;}
.ls5_c00317{letter-spacing:1.024533pt;}
.ls23_c00317{letter-spacing:1.030560pt;}
.ls29_c00317{letter-spacing:1.048640pt;}
.ls74_c00317{letter-spacing:1.054667pt;}
.ls22_c00317{letter-spacing:1.084800pt;}
.ls68_c00317{letter-spacing:1.108907pt;}
.ls2b_c00317{letter-spacing:1.126987pt;}
.ls3a_c00317{letter-spacing:1.151093pt;}
.ls36_c00317{letter-spacing:1.157120pt;}
.ls4d_c00317{letter-spacing:1.163147pt;}
.ls2f_c00317{letter-spacing:1.181227pt;}
.ls6b_c00317{letter-spacing:1.199307pt;}
.ls45_c00317{letter-spacing:1.211360pt;}
.ls8_c00317{letter-spacing:1.217387pt;}
.ls3b_c00317{letter-spacing:1.223413pt;}
.ls51_c00317{letter-spacing:1.241493pt;}
.ls5b_c00317{letter-spacing:1.247520pt;}
.ls1e_c00317{letter-spacing:1.265600pt;}
.ls1a_c00317{letter-spacing:1.283680pt;}
.lsc_c00317{letter-spacing:1.289707pt;}
.ls1b_c00317{letter-spacing:1.307787pt;}
.ls27_c00317{letter-spacing:1.313813pt;}
.ls6a_c00317{letter-spacing:1.319200pt;}
.ls59_c00317{letter-spacing:1.319840pt;}
.ls1d_c00317{letter-spacing:1.368053pt;}
.ls34_c00317{letter-spacing:1.374080pt;}
.lsa_c00317{letter-spacing:1.428320pt;}
.ls58_c00317{letter-spacing:1.512693pt;}
.ls69_c00317{letter-spacing:1.548853pt;}
.ls31_c00317{letter-spacing:1.570987pt;}
.ls63_c00317{letter-spacing:1.572960pt;}
.ls64_c00317{letter-spacing:1.578987pt;}
.ls4b_c00317{letter-spacing:1.627200pt;}
.ls11_c00317{letter-spacing:1.639253pt;}
.ls66_c00317{letter-spacing:1.681440pt;}
.ls4e_c00317{letter-spacing:1.958667pt;}
.ls2c_c00317{letter-spacing:2.247947pt;}
.ls5d_c00317{letter-spacing:2.344373pt;}
.ls48_c00317{letter-spacing:2.464907pt;}
.ls19_c00317{letter-spacing:2.983200pt;}
.ls84_c00317{letter-spacing:3.013333pt;}
.ls82_c00317{letter-spacing:3.040000pt;}
.ws1_c00317{word-spacing:-0.060267pt;}
.ws2_c00317{word-spacing:0.000000pt;}
.ws0_c00317{word-spacing:23.142400pt;}
._11_c00317{margin-left:-4.369333pt;}
._d_c00317{margin-left:-3.453280pt;}
._10_c00317{margin-left:-2.386667pt;}
._2_c00317{margin-left:-1.482560pt;}
._14_c00317{width:1.145067pt;}
._0_c00317{width:2.193813pt;}
._1_c00317{width:3.603947pt;}
._3_c00317{width:5.279360pt;}
._a_c00317{width:6.966827pt;}
._7_c00317{width:8.142027pt;}
._8_c00317{width:10.251360pt;}
._b_c00317{width:11.149333pt;}
._4_c00317{width:13.101973pt;}
._5_c00317{width:14.234987pt;}
._c_c00317{width:15.741653pt;}
._f_c00317{width:16.934933pt;}
._6_c00317{width:18.562133pt;}
._9_c00317{width:20.159200pt;}
._e_c00317{width:23.534133pt;}
._12_c00317{width:24.757547pt;}
._13_c00317{width:26.854827pt;}
.fs3_c00317{font-size:47.360000pt;}
.fs0_c00317{font-size:51.733333pt;}
.fs5_c00317{font-size:56.000000pt;}
.fs4_c00317{font-size:59.733333pt;}
.fs1_c00317{font-size:60.266667pt;}
.fs6_c00317{font-size:60.800000pt;}
.fs8_c00317{font-size:61.333333pt;}
.fs2_c00317{font-size:63.466667pt;}
.fs7_c00317{font-size:65.600000pt;}
.y0_c00317{bottom:0.000000pt;}
.y1e_c00317{bottom:63.693333pt;}
.y1c_c00317{bottom:171.530933pt;}
.y1d_c00317{bottom:171.533333pt;}
.y1b_c00317{bottom:228.498000pt;}
.y1a_c00317{bottom:255.693333pt;}
.y19_c00317{bottom:255.698000pt;}
.y18_c00317{bottom:282.899733pt;}
.y17_c00317{bottom:310.080000pt;}
.y16_c00317{bottom:310.081467pt;}
.y15_c00317{bottom:337.291867pt;}
.y14_c00317{bottom:364.487200pt;}
.y13_c00317{bottom:418.877867pt;}
.y12_c00317{bottom:446.404667pt;}
.y11_c00317{bottom:473.600000pt;}
.yf_c00317{bottom:528.639333pt;}
.y10_c00317{bottom:528.640000pt;}
.ye_c00317{bottom:555.528000pt;}
.yd_c00317{bottom:610.566533pt;}
.yc_c00317{bottom:638.093333pt;}
.yb_c00317{bottom:692.800000pt;}
.ya_c00317{bottom:748.181867pt;}
.y9_c00317{bottom:775.045733pt;}
.y8_c00317{bottom:801.939733pt;}
.y7_c00317{bottom:829.120000pt;}
.y6_c00317{bottom:856.333333pt;}
.y5_c00317{bottom:883.521200pt;}
.y4_c00317{bottom:938.559733pt;}
.y3_c00317{bottom:966.086533pt;}
.y2_c00317{bottom:993.613333pt;}
.y1_c00317{bottom:1060.800000pt;}
.h5_c00317{height:31.541760pt;}
.hc_c00317{height:50.773437pt;}
.h2_c00317{height:52.137500pt;}
.h3_c00317{height:59.148438pt;}
.h7_c00317{height:59.151104pt;}
.ha_c00317{height:59.158038pt;}
.h6_c00317{height:59.169771pt;}
.h8_c00317{height:59.671875pt;}
.hb_c00317{height:60.195312pt;}
.h4_c00317{height:62.337596pt;}
.h9_c00317{height:64.357213pt;}
.h1_c00317{height:1122.666667pt;}
.h0_c00317{height:1122.880000pt;}
.w1_c00317{width:793.333333pt;}
.w0_c00317{width:793.600000pt;}
.x0_c00317{left:0.000000pt;}
.x1_c00317{left:106.493333pt;}
.x6_c00317{left:152.242400pt;}
.x8_c00317{left:153.132400pt;}
.x2_c00317{left:154.040000pt;}
.x4_c00317{left:206.040000pt;}
.x5_c00317{left:239.826667pt;}
.x9_c00317{left:309.933333pt;}
.xa_c00317{left:323.680000pt;}
.xb_c00317{left:333.053333pt;}
.xc_c00317{left:353.533333pt;}
.x15_c00317{left:373.360000pt;}
.xd_c00317{left:378.066667pt;}
.x12_c00317{left:390.973333pt;}
.xe_c00317{left:403.333333pt;}
.x13_c00317{left:419.040000pt;}
.xf_c00317{left:425.693333pt;}
.x7_c00317{left:428.333333pt;}
.x10_c00317{left:456.533333pt;}
.x11_c00317{left:492.226667pt;}
.x14_c00317{left:623.933333pt;}
.x3_c00317{left:645.560000pt;}
}





/* 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_c00318 {
    display:none;
  }
  .loading-indicator_c00318.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00318 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_c00318 { 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_c00318" -> "#page-container .classname_c00318")
 */
.pf_c00318 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00318 { /* 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_c00318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00318 { /* 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_c00318 { /* 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_c00318 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00318 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00318 {overflow:visible;}
  }
}
.c_c00318 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00318 { /* 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_c00318:after { /* webkit #35443 */
  content: '';
}
.t_c00318:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00318 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 */
}
.__c00318 { /* 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_c00318 { /* info for Javascript */
  display:none;
}
.l_c00318 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00318 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00318 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00318: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_c00318 {
    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_c00318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00318.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_c00318 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00318;src:url('chunks/assets/font_79b65fd656e68b2ceba9696f.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.284668;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_c00318;src:url('chunks/assets/font_592cab73ffec72bd7f7f4b48.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.284180;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_c00318;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;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:ff4_c00318;src:url('chunks/assets/font_8bc4c54b976cc387969e5748.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:1.311035;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_c00318;src:url('chunks/assets/font_5cfa27040f4b0d1ab2d0315d.woff2')format("woff");}.ff5_c00318{font-family:ff5_c00318;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;}
.m2_c00318{transform:matrix(0.219569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219569,0.000000,0.000000,0.250000,0,0);}
.md_c00318{transform:matrix(0.221213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221213,0.000000,0.000000,0.250000,0,0);}
.mb_c00318{transform:matrix(0.222746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222746,0.000000,0.000000,0.250000,0,0);}
.m9_c00318{transform:matrix(0.224128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224128,0.000000,0.000000,0.250000,0,0);}
.m8_c00318{transform:matrix(0.227094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227094,0.000000,0.000000,0.250000,0,0);}
.m15_c00318{transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);}
.ma_c00318{transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);}
.me_c00318{transform:matrix(0.229890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229890,0.000000,0.000000,0.250000,0,0);}
.mc_c00318{transform:matrix(0.235058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235058,0.000000,0.000000,0.250000,0,0);}
.m7_c00318{transform:matrix(0.235406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235406,0.000000,0.000000,0.250000,0,0);}
.m4_c00318{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m0_c00318{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m1_c00318{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);}
.m6_c00318{transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);}
.m5_c00318{transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);}
.m10_c00318{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.mf_c00318{transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);}
.m3_c00318{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.m11_c00318{transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);}
.m12_c00318{transform:matrix(0.291009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291009,0.000000,0.000000,0.250000,0,0);}
.m14_c00318{transform:matrix(0.312670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312670,0.000000,0.000000,0.250000,0,0);}
.m13_c00318{transform:matrix(0.317728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317728,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.v1_c00318{vertical-align:27.350400px;}
.ls87_c00318{letter-spacing:-2.667000px;}
.ls89_c00318{letter-spacing:-2.646000px;}
.ls88_c00318{letter-spacing:-2.583000px;}
.ls76_c00318{letter-spacing:-2.415000px;}
.ls91_c00318{letter-spacing:-2.394000px;}
.ls6d_c00318{letter-spacing:-2.352000px;}
.ls80_c00318{letter-spacing:-2.089920px;}
.ls7e_c00318{letter-spacing:-2.083200px;}
.ls7f_c00318{letter-spacing:-1.888320px;}
.ls73_c00318{letter-spacing:-1.162560px;}
.ls7d_c00318{letter-spacing:-1.028160px;}
.ls81_c00318{letter-spacing:-0.127680px;}
.ls70_c00318{letter-spacing:0.000000px;}
.ls3d_c00318{letter-spacing:0.228480px;}
.ls3a_c00318{letter-spacing:0.235200px;}
.ls3e_c00318{letter-spacing:0.342720px;}
.ls74_c00318{letter-spacing:0.376320px;}
.ls8_c00318{letter-spacing:0.463680px;}
.ls51_c00318{letter-spacing:0.477120px;}
.ls18_c00318{letter-spacing:0.478800px;}
.ls5_c00318{letter-spacing:0.517440px;}
.ls6b_c00318{letter-spacing:0.571200px;}
.ls5f_c00318{letter-spacing:0.591360px;}
.ls42_c00318{letter-spacing:0.598080px;}
.ls17_c00318{letter-spacing:0.656640px;}
.ls6e_c00318{letter-spacing:0.732480px;}
.ls3b_c00318{letter-spacing:0.739200px;}
.ls79_c00318{letter-spacing:0.806400px;}
.ls4d_c00318{letter-spacing:0.840000px;}
.ls0_c00318{letter-spacing:0.841320px;}
.ls68_c00318{letter-spacing:0.887040px;}
.lsc_c00318{letter-spacing:0.934080px;}
.ls4e_c00318{letter-spacing:0.957600px;}
.lsf_c00318{letter-spacing:0.960960px;}
.ls8a_c00318{letter-spacing:0.994560px;}
.ls32_c00318{letter-spacing:1.014720px;}
.ls14_c00318{letter-spacing:1.019160px;}
.ls1b_c00318{letter-spacing:1.048320px;}
.ls12_c00318{letter-spacing:1.061760px;}
.ls24_c00318{letter-spacing:1.068480px;}
.ls49_c00318{letter-spacing:1.088640px;}
.ls26_c00318{letter-spacing:1.108800px;}
.ls5a_c00318{letter-spacing:1.122240px;}
.ls7c_c00318{letter-spacing:1.196160px;}
.ls86_c00318{letter-spacing:1.202880px;}
.ls61_c00318{letter-spacing:1.216320px;}
.ls71_c00318{letter-spacing:1.223040px;}
.lse_c00318{letter-spacing:1.229760px;}
.ls50_c00318{letter-spacing:1.249920px;}
.ls35_c00318{letter-spacing:1.256640px;}
.ls45_c00318{letter-spacing:1.263360px;}
.ls36_c00318{letter-spacing:1.270080px;}
.ls39_c00318{letter-spacing:1.276800px;}
.ls84_c00318{letter-spacing:1.290240px;}
.ls6f_c00318{letter-spacing:1.296960px;}
.ls69_c00318{letter-spacing:1.323840px;}
.ls47_c00318{letter-spacing:1.330560px;}
.ls2f_c00318{letter-spacing:1.337280px;}
.ls16_c00318{letter-spacing:1.350720px;}
.ls2a_c00318{letter-spacing:1.357440px;}
.ls5c_c00318{letter-spacing:1.377600px;}
.ls4b_c00318{letter-spacing:1.381680px;}
.ls1a_c00318{letter-spacing:1.384320px;}
.ls82_c00318{letter-spacing:1.391040px;}
.lsa_c00318{letter-spacing:1.411200px;}
.ls44_c00318{letter-spacing:1.415880px;}
.ls2d_c00318{letter-spacing:1.417920px;}
.ls8d_c00318{letter-spacing:1.424640px;}
.ls53_c00318{letter-spacing:1.431360px;}
.ls30_c00318{letter-spacing:1.438080px;}
.ls3c_c00318{letter-spacing:1.451520px;}
.ls56_c00318{letter-spacing:1.458240px;}
.ls38_c00318{letter-spacing:1.464960px;}
.lsd_c00318{letter-spacing:1.471680px;}
.ls57_c00318{letter-spacing:1.478400px;}
.ls8f_c00318{letter-spacing:1.491840px;}
.ls3_c00318{letter-spacing:1.498560px;}
.ls4_c00318{letter-spacing:1.505280px;}
.ls7a_c00318{letter-spacing:1.518720px;}
.ls67_c00318{letter-spacing:1.525440px;}
.ls5d_c00318{letter-spacing:1.538880px;}
.ls8e_c00318{letter-spacing:1.552320px;}
.ls83_c00318{letter-spacing:1.559040px;}
.ls2_c00318{letter-spacing:1.565760px;}
.ls77_c00318{letter-spacing:1.572480px;}
.ls64_c00318{letter-spacing:1.579200px;}
.ls2c_c00318{letter-spacing:1.592640px;}
.ls1_c00318{letter-spacing:1.606080px;}
.ls3f_c00318{letter-spacing:1.612800px;}
.ls8b_c00318{letter-spacing:1.619520px;}
.ls1d_c00318{letter-spacing:1.626240px;}
.ls22_c00318{letter-spacing:1.653120px;}
.lsb_c00318{letter-spacing:1.659840px;}
.ls63_c00318{letter-spacing:1.686720px;}
.ls1e_c00318{letter-spacing:1.693440px;}
.ls5e_c00318{letter-spacing:1.700160px;}
.ls2b_c00318{letter-spacing:1.706880px;}
.ls21_c00318{letter-spacing:1.713600px;}
.ls1f_c00318{letter-spacing:1.740480px;}
.ls6c_c00318{letter-spacing:1.753822px;}
.ls65_c00318{letter-spacing:1.760640px;}
.ls4c_c00318{letter-spacing:1.774080px;}
.ls11_c00318{letter-spacing:1.787520px;}
.ls23_c00318{letter-spacing:1.794240px;}
.ls48_c00318{letter-spacing:1.807680px;}
.ls15_c00318{letter-spacing:1.841280px;}
.ls41_c00318{letter-spacing:1.874880px;}
.ls28_c00318{letter-spacing:1.881600px;}
.ls7b_c00318{letter-spacing:1.908480px;}
.ls52_c00318{letter-spacing:1.935360px;}
.ls2e_c00318{letter-spacing:1.942080px;}
.ls85_c00318{letter-spacing:1.948800px;}
.ls13_c00318{letter-spacing:1.968960px;}
.ls40_c00318{letter-spacing:1.975680px;}
.ls20_c00318{letter-spacing:1.989120px;}
.ls37_c00318{letter-spacing:2.016000px;}
.ls60_c00318{letter-spacing:2.022720px;}
.ls10_c00318{letter-spacing:2.036160px;}
.ls59_c00318{letter-spacing:2.110080px;}
.ls58_c00318{letter-spacing:2.143680px;}
.ls43_c00318{letter-spacing:2.150400px;}
.ls25_c00318{letter-spacing:2.157120px;}
.ls4f_c00318{letter-spacing:2.184000px;}
.ls4a_c00318{letter-spacing:2.204160px;}
.ls34_c00318{letter-spacing:2.210880px;}
.ls1c_c00318{letter-spacing:2.271360px;}
.ls5b_c00318{letter-spacing:2.284800px;}
.ls46_c00318{letter-spacing:2.304960px;}
.ls6a_c00318{letter-spacing:2.352000px;}
.ls62_c00318{letter-spacing:2.358720px;}
.ls9_c00318{letter-spacing:2.378880px;}
.ls90_c00318{letter-spacing:2.405760px;}
.ls8c_c00318{letter-spacing:2.419200px;}
.ls33_c00318{letter-spacing:2.439360px;}
.ls29_c00318{letter-spacing:2.486400px;}
.ls27_c00318{letter-spacing:2.587200px;}
.ls66_c00318{letter-spacing:2.654400px;}
.ls55_c00318{letter-spacing:2.681280px;}
.ls78_c00318{letter-spacing:2.688000px;}
.ls19_c00318{letter-spacing:2.741760px;}
.ls7_c00318{letter-spacing:2.755200px;}
.ls6_c00318{letter-spacing:2.950080px;}
.ls54_c00318{letter-spacing:2.970240px;}
.ls75_c00318{letter-spacing:2.976960px;}
.ls31_c00318{letter-spacing:3.037440px;}
.ls72_c00318{letter-spacing:3.360000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{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__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00318{word-spacing:-16.800000px;}
.ws4_c00318{word-spacing:0.000000px;}
.ws1_c00318{word-spacing:2.445000px;}
.ws0_c00318{word-spacing:3.979200px;}
.ws2_c00318{word-spacing:20.776800px;}
._7_c00318{margin-left:-6.449760px;}
._14_c00318{margin-left:-4.720800px;}
._2_c00318{margin-left:-3.326400px;}
._3_c00318{margin-left:-2.083200px;}
._6_c00318{width:1.276800px;}
._1_c00318{width:2.425920px;}
._4_c00318{width:4.099200px;}
._0_c00318{width:6.531840px;}
._5_c00318{width:7.721280px;}
._16_c00318{width:9.549120px;}
._17_c00318{width:10.691520px;}
._9_c00318{width:12.035520px;}
._8_c00318{width:13.964160px;}
._a_c00318{width:15.254400px;}
._b_c00318{width:16.336320px;}
._c_c00318{width:18.883200px;}
._15_c00318{width:20.388480px;}
._13_c00318{width:23.323680px;}
._12_c00318{width:24.895680px;}
._11_c00318{width:28.013280px;}
._e_c00318{width:29.883840px;}
._d_c00318{width:31.221120px;}
._f_c00318{width:33.022080px;}
._10_c00318{width:35.208000px;}
.fc0_c00318{color:transparent;}
.fs7_c00318{font-size:47.400600px;}
.fs4_c00318{font-size:55.200000px;}
.fs0_c00318{font-size:67.200000px;}
.fs1_c00318{font-size:68.400000px;}
.fs2_c00318{font-size:69.000000px;}
.fs5_c00318{font-size:73.800000px;}
.fs6_c00318{font-size:75.600000px;}
.fs3_c00318{font-size:76.200000px;}
.y0_c00318{bottom:0.000000px;}
.y21_c00318{bottom:66.255000px;}
.y1f_c00318{bottom:157.694400px;}
.y20_c00318{bottom:157.695000px;}
.y1d_c00318{bottom:188.637600px;}
.y1e_c00318{bottom:188.640000px;}
.y1b_c00318{bottom:219.597600px;}
.y1c_c00318{bottom:219.600000px;}
.y1a_c00318{bottom:250.560000px;}
.y19_c00318{bottom:281.520000px;}
.y17_c00318{bottom:312.854400px;}
.y18_c00318{bottom:312.855000px;}
.y16_c00318{bottom:343.094400px;}
.y15_c00318{bottom:404.280000px;}
.y14_c00318{bottom:435.255000px;}
.y13_c00318{bottom:496.814400px;}
.y12_c00318{bottom:557.998200px;}
.y11_c00318{bottom:620.275800px;}
.y10_c00318{bottom:651.254400px;}
.yf_c00318{bottom:682.205400px;}
.yd_c00318{bottom:712.812000px;}
.ye_c00318{bottom:712.815000px;}
.yc_c00318{bottom:743.774400px;}
.yb_c00318{bottom:774.720000px;}
.ya_c00318{bottom:836.661600px;}
.y9_c00318{bottom:898.200000px;}
.y8_c00318{bottom:960.136800px;}
.y7_c00318{bottom:990.360000px;}
.y5_c00318{bottom:1052.287200px;}
.y6_c00318{bottom:1052.295000px;}
.y4_c00318{bottom:1082.880000px;}
.y3_c00318{bottom:1082.884800px;}
.y2_c00318{bottom:1114.200000px;}
.y1_c00318{bottom:1191.240000px;}
.h2_c00318{height:65.953125px;}
.h7_c00318{height:65.955525px;}
.h3_c00318{height:67.097461px;}
.hc_c00318{height:67.130859px;}
.h6_c00318{height:68.941575px;}
.h4_c00318{height:71.964844px;}
.hb_c00318{height:73.821097px;}
.h9_c00318{height:74.376563px;}
.ha_c00318{height:76.190625px;}
.h8_c00318{height:76.795312px;}
.h5_c00318{height:93.305925px;}
.h1_c00318{height:1263.000000px;}
.h0_c00318{height:1263.240000px;}
.w1_c00318{width:892.500000px;}
.w0_c00318{width:892.800000px;}
.x0_c00318{left:0.000000px;}
.xe_c00318{left:121.697400px;}
.xc_c00318{left:123.406800px;}
.x3_c00318{left:124.412400px;}
.x1_c00318{left:125.565000px;}
.x11_c00318{left:175.095000px;}
.xd_c00318{left:176.565000px;}
.x2_c00318{left:177.990000px;}
.x14_c00318{left:194.220000px;}
.x6_c00318{left:259.740000px;}
.x7_c00318{left:280.770000px;}
.x15_c00318{left:284.205000px;}
.x16_c00318{left:301.590000px;}
.x8_c00318{left:368.820000px;}
.x20_c00318{left:379.980000px;}
.x17_c00318{left:381.045000px;}
.x9_c00318{left:386.250000px;}
.x21_c00318{left:403.230000px;}
.x18_c00318{left:406.305000px;}
.xf_c00318{left:424.620000px;}
.x2b_c00318{left:425.790000px;}
.x10_c00318{left:453.600000px;}
.x19_c00318{left:458.820000px;}
.x4_c00318{left:462.135000px;}
.x12_c00318{left:486.000000px;}
.x5_c00318{left:492.495000px;}
.x24_c00318{left:496.590000px;}
.x13_c00318{left:516.990000px;}
.x1a_c00318{left:524.325000px;}
.x25_c00318{left:549.480000px;}
.x22_c00318{left:552.225000px;}
.x23_c00318{left:577.635000px;}
.x26_c00318{left:582.630000px;}
.xa_c00318{left:610.530000px;}
.x27_c00318{left:615.690000px;}
.x1b_c00318{left:628.455000px;}
.x1e_c00318{left:631.830000px;}
.x28_c00318{left:641.865000px;}
.xb_c00318{left:642.930000px;}
.x29_c00318{left:658.545000px;}
.x1f_c00318{left:662.760000px;}
.x2a_c00318{left:702.435000px;}
.x1c_c00318{left:704.685000px;}
.x1d_c00318{left:729.885000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.v1_c00318{vertical-align:24.311467pt;}
.ls87_c00318{letter-spacing:-2.370667pt;}
.ls89_c00318{letter-spacing:-2.352000pt;}
.ls88_c00318{letter-spacing:-2.296000pt;}
.ls76_c00318{letter-spacing:-2.146667pt;}
.ls91_c00318{letter-spacing:-2.128000pt;}
.ls6d_c00318{letter-spacing:-2.090667pt;}
.ls80_c00318{letter-spacing:-1.857707pt;}
.ls7e_c00318{letter-spacing:-1.851733pt;}
.ls7f_c00318{letter-spacing:-1.678507pt;}
.ls73_c00318{letter-spacing:-1.033387pt;}
.ls7d_c00318{letter-spacing:-0.913920pt;}
.ls81_c00318{letter-spacing:-0.113493pt;}
.ls70_c00318{letter-spacing:0.000000pt;}
.ls3d_c00318{letter-spacing:0.203093pt;}
.ls3a_c00318{letter-spacing:0.209067pt;}
.ls3e_c00318{letter-spacing:0.304640pt;}
.ls74_c00318{letter-spacing:0.334507pt;}
.ls8_c00318{letter-spacing:0.412160pt;}
.ls51_c00318{letter-spacing:0.424107pt;}
.ls18_c00318{letter-spacing:0.425600pt;}
.ls5_c00318{letter-spacing:0.459947pt;}
.ls6b_c00318{letter-spacing:0.507733pt;}
.ls5f_c00318{letter-spacing:0.525653pt;}
.ls42_c00318{letter-spacing:0.531627pt;}
.ls17_c00318{letter-spacing:0.583680pt;}
.ls6e_c00318{letter-spacing:0.651093pt;}
.ls3b_c00318{letter-spacing:0.657067pt;}
.ls79_c00318{letter-spacing:0.716800pt;}
.ls4d_c00318{letter-spacing:0.746667pt;}
.ls0_c00318{letter-spacing:0.747840pt;}
.ls68_c00318{letter-spacing:0.788480pt;}
.lsc_c00318{letter-spacing:0.830293pt;}
.ls4e_c00318{letter-spacing:0.851200pt;}
.lsf_c00318{letter-spacing:0.854187pt;}
.ls8a_c00318{letter-spacing:0.884053pt;}
.ls32_c00318{letter-spacing:0.901973pt;}
.ls14_c00318{letter-spacing:0.905920pt;}
.ls1b_c00318{letter-spacing:0.931840pt;}
.ls12_c00318{letter-spacing:0.943787pt;}
.ls24_c00318{letter-spacing:0.949760pt;}
.ls49_c00318{letter-spacing:0.967680pt;}
.ls26_c00318{letter-spacing:0.985600pt;}
.ls5a_c00318{letter-spacing:0.997547pt;}
.ls7c_c00318{letter-spacing:1.063253pt;}
.ls86_c00318{letter-spacing:1.069227pt;}
.ls61_c00318{letter-spacing:1.081173pt;}
.ls71_c00318{letter-spacing:1.087147pt;}
.lse_c00318{letter-spacing:1.093120pt;}
.ls50_c00318{letter-spacing:1.111040pt;}
.ls35_c00318{letter-spacing:1.117013pt;}
.ls45_c00318{letter-spacing:1.122987pt;}
.ls36_c00318{letter-spacing:1.128960pt;}
.ls39_c00318{letter-spacing:1.134933pt;}
.ls84_c00318{letter-spacing:1.146880pt;}
.ls6f_c00318{letter-spacing:1.152853pt;}
.ls69_c00318{letter-spacing:1.176747pt;}
.ls47_c00318{letter-spacing:1.182720pt;}
.ls2f_c00318{letter-spacing:1.188693pt;}
.ls16_c00318{letter-spacing:1.200640pt;}
.ls2a_c00318{letter-spacing:1.206613pt;}
.ls5c_c00318{letter-spacing:1.224533pt;}
.ls4b_c00318{letter-spacing:1.228160pt;}
.ls1a_c00318{letter-spacing:1.230507pt;}
.ls82_c00318{letter-spacing:1.236480pt;}
.lsa_c00318{letter-spacing:1.254400pt;}
.ls44_c00318{letter-spacing:1.258560pt;}
.ls2d_c00318{letter-spacing:1.260373pt;}
.ls8d_c00318{letter-spacing:1.266347pt;}
.ls53_c00318{letter-spacing:1.272320pt;}
.ls30_c00318{letter-spacing:1.278293pt;}
.ls3c_c00318{letter-spacing:1.290240pt;}
.ls56_c00318{letter-spacing:1.296213pt;}
.ls38_c00318{letter-spacing:1.302187pt;}
.lsd_c00318{letter-spacing:1.308160pt;}
.ls57_c00318{letter-spacing:1.314133pt;}
.ls8f_c00318{letter-spacing:1.326080pt;}
.ls3_c00318{letter-spacing:1.332053pt;}
.ls4_c00318{letter-spacing:1.338027pt;}
.ls7a_c00318{letter-spacing:1.349973pt;}
.ls67_c00318{letter-spacing:1.355947pt;}
.ls5d_c00318{letter-spacing:1.367893pt;}
.ls8e_c00318{letter-spacing:1.379840pt;}
.ls83_c00318{letter-spacing:1.385813pt;}
.ls2_c00318{letter-spacing:1.391787pt;}
.ls77_c00318{letter-spacing:1.397760pt;}
.ls64_c00318{letter-spacing:1.403733pt;}
.ls2c_c00318{letter-spacing:1.415680pt;}
.ls1_c00318{letter-spacing:1.427627pt;}
.ls3f_c00318{letter-spacing:1.433600pt;}
.ls8b_c00318{letter-spacing:1.439573pt;}
.ls1d_c00318{letter-spacing:1.445547pt;}
.ls22_c00318{letter-spacing:1.469440pt;}
.lsb_c00318{letter-spacing:1.475413pt;}
.ls63_c00318{letter-spacing:1.499307pt;}
.ls1e_c00318{letter-spacing:1.505280pt;}
.ls5e_c00318{letter-spacing:1.511253pt;}
.ls2b_c00318{letter-spacing:1.517227pt;}
.ls21_c00318{letter-spacing:1.523200pt;}
.ls1f_c00318{letter-spacing:1.547093pt;}
.ls6c_c00318{letter-spacing:1.558953pt;}
.ls65_c00318{letter-spacing:1.565013pt;}
.ls4c_c00318{letter-spacing:1.576960pt;}
.ls11_c00318{letter-spacing:1.588907pt;}
.ls23_c00318{letter-spacing:1.594880pt;}
.ls48_c00318{letter-spacing:1.606827pt;}
.ls15_c00318{letter-spacing:1.636693pt;}
.ls41_c00318{letter-spacing:1.666560pt;}
.ls28_c00318{letter-spacing:1.672533pt;}
.ls7b_c00318{letter-spacing:1.696427pt;}
.ls52_c00318{letter-spacing:1.720320pt;}
.ls2e_c00318{letter-spacing:1.726293pt;}
.ls85_c00318{letter-spacing:1.732267pt;}
.ls13_c00318{letter-spacing:1.750187pt;}
.ls40_c00318{letter-spacing:1.756160pt;}
.ls20_c00318{letter-spacing:1.768107pt;}
.ls37_c00318{letter-spacing:1.792000pt;}
.ls60_c00318{letter-spacing:1.797973pt;}
.ls10_c00318{letter-spacing:1.809920pt;}
.ls59_c00318{letter-spacing:1.875627pt;}
.ls58_c00318{letter-spacing:1.905493pt;}
.ls43_c00318{letter-spacing:1.911467pt;}
.ls25_c00318{letter-spacing:1.917440pt;}
.ls4f_c00318{letter-spacing:1.941333pt;}
.ls4a_c00318{letter-spacing:1.959253pt;}
.ls34_c00318{letter-spacing:1.965227pt;}
.ls1c_c00318{letter-spacing:2.018987pt;}
.ls5b_c00318{letter-spacing:2.030933pt;}
.ls46_c00318{letter-spacing:2.048853pt;}
.ls6a_c00318{letter-spacing:2.090667pt;}
.ls62_c00318{letter-spacing:2.096640pt;}
.ls9_c00318{letter-spacing:2.114560pt;}
.ls90_c00318{letter-spacing:2.138453pt;}
.ls8c_c00318{letter-spacing:2.150400pt;}
.ls33_c00318{letter-spacing:2.168320pt;}
.ls29_c00318{letter-spacing:2.210133pt;}
.ls27_c00318{letter-spacing:2.299733pt;}
.ls66_c00318{letter-spacing:2.359467pt;}
.ls55_c00318{letter-spacing:2.383360pt;}
.ls78_c00318{letter-spacing:2.389333pt;}
.ls19_c00318{letter-spacing:2.437120pt;}
.ls7_c00318{letter-spacing:2.449067pt;}
.ls6_c00318{letter-spacing:2.622293pt;}
.ls54_c00318{letter-spacing:2.640213pt;}
.ls75_c00318{letter-spacing:2.646187pt;}
.ls31_c00318{letter-spacing:2.699947pt;}
.ls72_c00318{letter-spacing:2.986667pt;}
.ws3_c00318{word-spacing:-14.933333pt;}
.ws4_c00318{word-spacing:0.000000pt;}
.ws1_c00318{word-spacing:2.173333pt;}
.ws0_c00318{word-spacing:3.537067pt;}
.ws2_c00318{word-spacing:18.468267pt;}
._7_c00318{margin-left:-5.733120pt;}
._14_c00318{margin-left:-4.196267pt;}
._2_c00318{margin-left:-2.956800pt;}
._3_c00318{margin-left:-1.851733pt;}
._6_c00318{width:1.134933pt;}
._1_c00318{width:2.156373pt;}
._4_c00318{width:3.643733pt;}
._0_c00318{width:5.806080pt;}
._5_c00318{width:6.863360pt;}
._16_c00318{width:8.488107pt;}
._17_c00318{width:9.503573pt;}
._9_c00318{width:10.698240pt;}
._8_c00318{width:12.412587pt;}
._a_c00318{width:13.559467pt;}
._b_c00318{width:14.521173pt;}
._c_c00318{width:16.785067pt;}
._15_c00318{width:18.123093pt;}
._13_c00318{width:20.732160pt;}
._12_c00318{width:22.129493pt;}
._11_c00318{width:24.900693pt;}
._e_c00318{width:26.563413pt;}
._d_c00318{width:27.752107pt;}
._f_c00318{width:29.352960pt;}
._10_c00318{width:31.296000pt;}
.fs7_c00318{font-size:42.133867pt;}
.fs4_c00318{font-size:49.066667pt;}
.fs0_c00318{font-size:59.733333pt;}
.fs1_c00318{font-size:60.800000pt;}
.fs2_c00318{font-size:61.333333pt;}
.fs5_c00318{font-size:65.600000pt;}
.fs6_c00318{font-size:67.200000pt;}
.fs3_c00318{font-size:67.733333pt;}
.y0_c00318{bottom:0.000000pt;}
.y21_c00318{bottom:58.893333pt;}
.y1f_c00318{bottom:140.172800pt;}
.y20_c00318{bottom:140.173333pt;}
.y1d_c00318{bottom:167.677867pt;}
.y1e_c00318{bottom:167.680000pt;}
.y1b_c00318{bottom:195.197867pt;}
.y1c_c00318{bottom:195.200000pt;}
.y1a_c00318{bottom:222.720000pt;}
.y19_c00318{bottom:250.240000pt;}
.y17_c00318{bottom:278.092800pt;}
.y18_c00318{bottom:278.093333pt;}
.y16_c00318{bottom:304.972800pt;}
.y15_c00318{bottom:359.360000pt;}
.y14_c00318{bottom:386.893333pt;}
.y13_c00318{bottom:441.612800pt;}
.y12_c00318{bottom:495.998400pt;}
.y11_c00318{bottom:551.356267pt;}
.y10_c00318{bottom:578.892800pt;}
.yf_c00318{bottom:606.404800pt;}
.yd_c00318{bottom:633.610667pt;}
.ye_c00318{bottom:633.613333pt;}
.yc_c00318{bottom:661.132800pt;}
.yb_c00318{bottom:688.640000pt;}
.ya_c00318{bottom:743.699200pt;}
.y9_c00318{bottom:798.400000pt;}
.y8_c00318{bottom:853.454933pt;}
.y7_c00318{bottom:880.320000pt;}
.y5_c00318{bottom:935.366400pt;}
.y6_c00318{bottom:935.373333pt;}
.y4_c00318{bottom:962.560000pt;}
.y3_c00318{bottom:962.564267pt;}
.y2_c00318{bottom:990.400000pt;}
.y1_c00318{bottom:1058.880000pt;}
.h2_c00318{height:58.625000pt;}
.h7_c00318{height:58.627133pt;}
.h3_c00318{height:59.642187pt;}
.hc_c00318{height:59.671875pt;}
.h6_c00318{height:61.281400pt;}
.h4_c00318{height:63.968750pt;}
.hb_c00318{height:65.618753pt;}
.h9_c00318{height:66.112500pt;}
.ha_c00318{height:67.725000pt;}
.h8_c00318{height:68.262500pt;}
.h5_c00318{height:82.938600pt;}
.h1_c00318{height:1122.666667pt;}
.h0_c00318{height:1122.880000pt;}
.w1_c00318{width:793.333333pt;}
.w0_c00318{width:793.600000pt;}
.x0_c00318{left:0.000000pt;}
.xe_c00318{left:108.175467pt;}
.xc_c00318{left:109.694933pt;}
.x3_c00318{left:110.588800pt;}
.x1_c00318{left:111.613333pt;}
.x11_c00318{left:155.640000pt;}
.xd_c00318{left:156.946667pt;}
.x2_c00318{left:158.213333pt;}
.x14_c00318{left:172.640000pt;}
.x6_c00318{left:230.880000pt;}
.x7_c00318{left:249.573333pt;}
.x15_c00318{left:252.626667pt;}
.x16_c00318{left:268.080000pt;}
.x8_c00318{left:327.840000pt;}
.x20_c00318{left:337.760000pt;}
.x17_c00318{left:338.706667pt;}
.x9_c00318{left:343.333333pt;}
.x21_c00318{left:358.426667pt;}
.x18_c00318{left:361.160000pt;}
.xf_c00318{left:377.440000pt;}
.x2b_c00318{left:378.480000pt;}
.x10_c00318{left:403.200000pt;}
.x19_c00318{left:407.840000pt;}
.x4_c00318{left:410.786667pt;}
.x12_c00318{left:432.000000pt;}
.x5_c00318{left:437.773333pt;}
.x24_c00318{left:441.413333pt;}
.x13_c00318{left:459.546667pt;}
.x1a_c00318{left:466.066667pt;}
.x25_c00318{left:488.426667pt;}
.x22_c00318{left:490.866667pt;}
.x23_c00318{left:513.453333pt;}
.x26_c00318{left:517.893333pt;}
.xa_c00318{left:542.693333pt;}
.x27_c00318{left:547.280000pt;}
.x1b_c00318{left:558.626667pt;}
.x1e_c00318{left:561.626667pt;}
.x28_c00318{left:570.546667pt;}
.xb_c00318{left:571.493333pt;}
.x29_c00318{left:585.373333pt;}
.x1f_c00318{left:589.120000pt;}
.x2a_c00318{left:624.386667pt;}
.x1c_c00318{left:626.386667pt;}
.x1d_c00318{left:648.786667pt;}
}





/* 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_c00319 {
    display:none;
  }
  .loading-indicator_c00319.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00319 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_c00319 { 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_c00319" -> "#page-container .classname_c00319")
 */
.pf_c00319 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00319 { /* 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_c00319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00319 { /* 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_c00319 { /* 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_c00319 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00319 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00319 {overflow:visible;}
  }
}
.c_c00319 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00319 { /* 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_c00319:after { /* webkit #35443 */
  content: '';
}
.t_c00319:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00319 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 */
}
.__c00319 { /* 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_c00319 { /* info for Javascript */
  display:none;
}
.l_c00319 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00319 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00319 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00319: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_c00319 {
    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_c00319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00319.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_c00319 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00319{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00319;src:url('chunks/assets/font_32d618e75f3550d4abf3daaf.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.284668;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_c00319;src:url('chunks/assets/font_93e4af592ed102648afddddf.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;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_c00319;src:url('chunks/assets/font_a2d97e5c2547210eaef36b54.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.284180;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_c00319;src:url('chunks/assets/font_3d6896d8fc79edccc0478c6f.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:0.666000;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_c00319;src:url('chunks/assets/font_ac47258b1a76a08d3d768f53.woff2')format("woff");}.ff5_c00319{font-family:ff5_c00319;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;}
.m0_c00319{transform:matrix(0.110881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110881,0.000000,0.000000,0.250000,0,0);}
.m3_c00319{transform:matrix(0.130386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130386,0.000000,0.000000,0.250000,0,0);}
.m4_c00319{transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);}
.m1_c00319{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);}
.m2_c00319{transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.lsd_c00319{letter-spacing:-2.394000px;}
.ls5_c00319{letter-spacing:-2.289000px;}
.ls6_c00319{letter-spacing:-0.489600px;}
.lsa_c00319{letter-spacing:0.000000px;}
.ls7_c00319{letter-spacing:0.507180px;}
.ls9_c00319{letter-spacing:0.513600px;}
.ls0_c00319{letter-spacing:0.802500px;}
.ls8_c00319{letter-spacing:0.860280px;}
.ls2_c00319{letter-spacing:0.963000px;}
.ls1_c00319{letter-spacing:0.969420px;}
.ls4_c00319{letter-spacing:1.245480px;}
.ls3_c00319{letter-spacing:1.277580px;}
.lsc_c00319{letter-spacing:2.966040px;}
.lsb_c00319{letter-spacing:3.210000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{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__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00319{word-spacing:-4.660920px;}
.ws3_c00319{word-spacing:0.000000px;}
.ws1_c00319{word-spacing:0.295320px;}
.ws0_c00319{word-spacing:4.466400px;}
._0_c00319{margin-left:-2.182800px;}
.fc0_c00319{color:transparent;}
.fs7_c00319{font-size:33.000600px;}
.fs1_c00319{font-size:57.600000px;}
.fs5_c00319{font-size:63.000000px;}
.fs2_c00319{font-size:64.200000px;}
.fs3_c00319{font-size:64.800000px;}
.fs0_c00319{font-size:65.400000px;}
.fs4_c00319{font-size:68.400000px;}
.fs6_c00319{font-size:83.520000px;}
.y0_c00319{bottom:0.000000px;}
.y4_c00319{bottom:151.947450px;}
.y3_c00319{bottom:170.645700px;}
.y2_c00319{bottom:189.360000px;}
.y5_c00319{bottom:333.720000px;}
.ya_c00319{bottom:838.080000px;}
.y9_c00319{bottom:845.280000px;}
.y8_c00319{bottom:870.855000px;}
.y7_c00319{bottom:1077.135000px;}
.y1_c00319{bottom:1080.015000px;}
.y6_c00319{bottom:1147.695000px;}
.h9_c00319{height:34.418595px;}
.h8_c00319{height:55.624320px;}
.h7_c00319{height:61.831055px;}
.h3_c00319{height:62.977441px;}
.h5_c00319{height:63.008789px;}
.h4_c00319{height:63.597656px;}
.h2_c00319{height:64.186523px;}
.h6_c00319{height:67.130859px;}
.h1_c00319{height:1263.000000px;}
.h0_c00319{height:1263.240000px;}
.w1_c00319{width:892.500000px;}
.w0_c00319{width:892.800000px;}
.x0_c00319{left:0.000000px;}
.x1_c00319{left:116.400000px;}
.x3_c00319{left:118.374000px;}
.x2_c00319{left:119.730000px;}
.x4_c00319{left:573.285000px;}
.x5_c00319{left:673.830000px;}
.x9_c00319{left:680.415000px;}
.x8_c00319{left:682.830000px;}
.x6_c00319{left:746.445000px;}
.x7_c00319{left:790.260000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.lsd_c00319{letter-spacing:-2.128000pt;}
.ls5_c00319{letter-spacing:-2.034667pt;}
.ls6_c00319{letter-spacing:-0.435200pt;}
.lsa_c00319{letter-spacing:0.000000pt;}
.ls7_c00319{letter-spacing:0.450827pt;}
.ls9_c00319{letter-spacing:0.456533pt;}
.ls0_c00319{letter-spacing:0.713333pt;}
.ls8_c00319{letter-spacing:0.764693pt;}
.ls2_c00319{letter-spacing:0.856000pt;}
.ls1_c00319{letter-spacing:0.861707pt;}
.ls4_c00319{letter-spacing:1.107093pt;}
.ls3_c00319{letter-spacing:1.135627pt;}
.lsc_c00319{letter-spacing:2.636480pt;}
.lsb_c00319{letter-spacing:2.853333pt;}
.ws2_c00319{word-spacing:-4.143040pt;}
.ws3_c00319{word-spacing:0.000000pt;}
.ws1_c00319{word-spacing:0.262507pt;}
.ws0_c00319{word-spacing:3.970133pt;}
._0_c00319{margin-left:-1.940267pt;}
.fs7_c00319{font-size:29.333867pt;}
.fs1_c00319{font-size:51.200000pt;}
.fs5_c00319{font-size:56.000000pt;}
.fs2_c00319{font-size:57.066667pt;}
.fs3_c00319{font-size:57.600000pt;}
.fs0_c00319{font-size:58.133333pt;}
.fs4_c00319{font-size:60.800000pt;}
.fs6_c00319{font-size:74.240000pt;}
.y0_c00319{bottom:0.000000pt;}
.y4_c00319{bottom:135.064400pt;}
.y3_c00319{bottom:151.685067pt;}
.y2_c00319{bottom:168.320000pt;}
.y5_c00319{bottom:296.640000pt;}
.ya_c00319{bottom:744.960000pt;}
.y9_c00319{bottom:751.360000pt;}
.y8_c00319{bottom:774.093333pt;}
.y7_c00319{bottom:957.453333pt;}
.y1_c00319{bottom:960.013333pt;}
.y6_c00319{bottom:1020.173333pt;}
.h9_c00319{height:30.594306pt;}
.h8_c00319{height:49.443840pt;}
.h7_c00319{height:54.960938pt;}
.h3_c00319{height:55.979948pt;}
.h5_c00319{height:56.007812pt;}
.h4_c00319{height:56.531250pt;}
.h2_c00319{height:57.054688pt;}
.h6_c00319{height:59.671875pt;}
.h1_c00319{height:1122.666667pt;}
.h0_c00319{height:1122.880000pt;}
.w1_c00319{width:793.333333pt;}
.w0_c00319{width:793.600000pt;}
.x0_c00319{left:0.000000pt;}
.x1_c00319{left:103.466667pt;}
.x3_c00319{left:105.221333pt;}
.x2_c00319{left:106.426667pt;}
.x4_c00319{left:509.586667pt;}
.x5_c00319{left:598.960000pt;}
.x9_c00319{left:604.813333pt;}
.x8_c00319{left:606.960000pt;}
.x6_c00319{left:663.506667pt;}
.x7_c00319{left:702.453333pt;}
}





/* 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_c00320 {
    display:none;
  }
  .loading-indicator_c00320.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00320 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_c00320 { 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_c00320" -> "#page-container .classname_c00320")
 */
.pf_c00320 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00320 { /* 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_c00320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00320 { /* 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_c00320 { /* 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_c00320 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00320 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00320 {overflow:visible;}
  }
}
.c_c00320 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00320 { /* 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_c00320:after { /* webkit #35443 */
  content: '';
}
.t_c00320:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00320 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 */
}
.__c00320 { /* 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_c00320 { /* info for Javascript */
  display:none;
}
.l_c00320 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00320 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00320 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00320: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_c00320 {
    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_c00320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00320.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_c00320 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00320;src:url('chunks/assets/font_a5bd3dd8d27ab9978fde63f7.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.284668;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_c00320;src:url('chunks/assets/font_7eb2b54b2c45ff27a80251fd.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.284180;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_c00320;src:url('chunks/assets/font_e5cc58055fcca96b297ee0ca.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;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:ff4_c00320;src:url('chunks/assets/font_c44d7e0657598edab75058b7.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:0.666000;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;}
.md_c00320{transform:matrix(0.170998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170998,0.000000,0.000000,0.250000,0,0);}
.mc_c00320{transform:matrix(0.173372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173372,0.000000,0.000000,0.250000,0,0);}
.mb_c00320{transform:matrix(0.178378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178378,0.000000,0.000000,0.250000,0,0);}
.m10_c00320{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m6_c00320{transform:matrix(0.239705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239705,0.000000,0.000000,0.250000,0,0);}
.mf_c00320{transform:matrix(0.239944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239944,0.000000,0.000000,0.250000,0,0);}
.ma_c00320{transform:matrix(0.241365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241365,0.000000,0.000000,0.250000,0,0);}
.m8_c00320{transform:matrix(0.242004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242004,0.000000,0.000000,0.250000,0,0);}
.me_c00320{transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);}
.m4_c00320{transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);}
.m0_c00320{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.m2_c00320{transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);}
.m5_c00320{transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);}
.m3_c00320{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m7_c00320{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.m9_c00320{transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);}
.m1_c00320{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);}
.v0_c00320{vertical-align:0.000000px;}
.ls27_c00320{letter-spacing:-2.457000px;}
.ls65_c00320{letter-spacing:-2.415000px;}
.ls76_c00320{letter-spacing:-2.373000px;}
.ls24_c00320{letter-spacing:-2.331000px;}
.ls73_c00320{letter-spacing:-2.232360px;}
.ls26_c00320{letter-spacing:-2.204280px;}
.ls50_c00320{letter-spacing:-2.176380px;}
.ls4b_c00320{letter-spacing:-2.120040px;}
.ls3d_c00320{letter-spacing:-1.839240px;}
.ls4d_c00320{letter-spacing:-1.769040px;}
.ls3e_c00320{letter-spacing:-1.642680px;}
.ls42_c00320{letter-spacing:-1.635660px;}
.ls74_c00320{letter-spacing:-1.621620px;}
.ls7e_c00320{letter-spacing:-1.516320px;}
.ls6f_c00320{letter-spacing:-1.509300px;}
.ls40_c00320{letter-spacing:-1.495260px;}
.ls47_c00320{letter-spacing:-1.453140px;}
.ls64_c00320{letter-spacing:-1.333800px;}
.ls7f_c00320{letter-spacing:-1.277640px;}
.ls3f_c00320{letter-spacing:-1.249560px;}
.ls3a_c00320{letter-spacing:-1.172340px;}
.ls4a_c00320{letter-spacing:-1.151280px;}
.ls39_c00320{letter-spacing:-1.144260px;}
.ls2d_c00320{letter-spacing:-1.130220px;}
.ls49_c00320{letter-spacing:-1.095120px;}
.ls3c_c00320{letter-spacing:-1.003860px;}
.ls6a_c00320{letter-spacing:-0.989820px;}
.ls56_c00320{letter-spacing:-0.982800px;}
.ls2f_c00320{letter-spacing:-0.968760px;}
.ls6b_c00320{letter-spacing:-0.961740px;}
.ls5b_c00320{letter-spacing:-0.947700px;}
.ls53_c00320{letter-spacing:-0.919620px;}
.ls34_c00320{letter-spacing:-0.863460px;}
.ls35_c00320{letter-spacing:-0.821340px;}
.ls45_c00320{letter-spacing:-0.793260px;}
.ls70_c00320{letter-spacing:-0.765180px;}
.ls48_c00320{letter-spacing:-0.751140px;}
.ls5d_c00320{letter-spacing:-0.744120px;}
.ls46_c00320{letter-spacing:-0.723060px;}
.ls72_c00320{letter-spacing:-0.702000px;}
.ls7d_c00320{letter-spacing:-0.687960px;}
.ls4c_c00320{letter-spacing:-0.680940px;}
.ls62_c00320{letter-spacing:-0.638820px;}
.ls54_c00320{letter-spacing:-0.631800px;}
.ls7b_c00320{letter-spacing:-0.596700px;}
.ls51_c00320{letter-spacing:-0.575640px;}
.ls44_c00320{letter-spacing:-0.533520px;}
.ls38_c00320{letter-spacing:-0.526500px;}
.ls71_c00320{letter-spacing:-0.512460px;}
.ls29_c00320{letter-spacing:-0.491400px;}
.ls58_c00320{letter-spacing:-0.484380px;}
.ls59_c00320{letter-spacing:-0.428220px;}
.ls2b_c00320{letter-spacing:-0.400140px;}
.ls5c_c00320{letter-spacing:-0.386100px;}
.ls30_c00320{letter-spacing:-0.351000px;}
.ls79_c00320{letter-spacing:-0.343980px;}
.ls4e_c00320{letter-spacing:-0.336960px;}
.ls78_c00320{letter-spacing:-0.322920px;}
.ls7c_c00320{letter-spacing:-0.308880px;}
.ls37_c00320{letter-spacing:-0.301860px;}
.ls7a_c00320{letter-spacing:-0.294840px;}
.ls66_c00320{letter-spacing:-0.280800px;}
.ls2e_c00320{letter-spacing:-0.273780px;}
.ls6e_c00320{letter-spacing:-0.266760px;}
.ls4f_c00320{letter-spacing:-0.238680px;}
.ls5a_c00320{letter-spacing:-0.231660px;}
.ls33_c00320{letter-spacing:-0.224640px;}
.ls5f_c00320{letter-spacing:-0.217620px;}
.ls6d_c00320{letter-spacing:-0.210600px;}
.ls5e_c00320{letter-spacing:-0.203580px;}
.ls69_c00320{letter-spacing:-0.189540px;}
.ls32_c00320{letter-spacing:-0.182520px;}
.ls2c_c00320{letter-spacing:-0.175500px;}
.ls68_c00320{letter-spacing:-0.168480px;}
.ls77_c00320{letter-spacing:-0.154440px;}
.ls75_c00320{letter-spacing:-0.147420px;}
.ls6c_c00320{letter-spacing:-0.140400px;}
.ls2a_c00320{letter-spacing:-0.133380px;}
.ls60_c00320{letter-spacing:-0.126360px;}
.ls67_c00320{letter-spacing:-0.112320px;}
.ls25_c00320{letter-spacing:-0.098280px;}
.ls57_c00320{letter-spacing:-0.091260px;}
.ls55_c00320{letter-spacing:-0.070200px;}
.ls61_c00320{letter-spacing:-0.056160px;}
.ls28_c00320{letter-spacing:-0.049140px;}
.ls36_c00320{letter-spacing:-0.042120px;}
.ls3b_c00320{letter-spacing:-0.021060px;}
.ls41_c00320{letter-spacing:-0.014040px;}
.ls63_c00320{letter-spacing:-0.007020px;}
.ls31_c00320{letter-spacing:0.000000px;}
.lsd_c00320{letter-spacing:0.014040px;}
.ls0_c00320{letter-spacing:0.035100px;}
.ls2_c00320{letter-spacing:0.063180px;}
.lse_c00320{letter-spacing:0.070200px;}
.ls11_c00320{letter-spacing:0.084240px;}
.ls43_c00320{letter-spacing:0.091260px;}
.ls1d_c00320{letter-spacing:0.105300px;}
.ls8_c00320{letter-spacing:0.119340px;}
.ls1c_c00320{letter-spacing:0.154440px;}
.ls13_c00320{letter-spacing:0.161460px;}
.ls52_c00320{letter-spacing:0.175500px;}
.ls7_c00320{letter-spacing:0.189540px;}
.ls19_c00320{letter-spacing:0.231660px;}
.ls1e_c00320{letter-spacing:0.245700px;}
.ls21_c00320{letter-spacing:0.287820px;}
.ls14_c00320{letter-spacing:0.294840px;}
.ls1_c00320{letter-spacing:0.322920px;}
.ls17_c00320{letter-spacing:0.365040px;}
.ls12_c00320{letter-spacing:0.400140px;}
.ls1b_c00320{letter-spacing:0.478800px;}
.ls80_c00320{letter-spacing:0.547200px;}
.ls18_c00320{letter-spacing:0.561600px;}
.ls9_c00320{letter-spacing:0.642960px;}
.ls20_c00320{letter-spacing:0.690840px;}
.lsb_c00320{letter-spacing:0.752400px;}
.ls22_c00320{letter-spacing:0.786240px;}
.ls16_c00320{letter-spacing:0.793260px;}
.lsf_c00320{letter-spacing:0.861840px;}
.ls3_c00320{letter-spacing:0.882360px;}
.ls4_c00320{letter-spacing:0.957600px;}
.ls15_c00320{letter-spacing:1.045980px;}
.ls23_c00320{letter-spacing:1.088100px;}
.ls5_c00320{letter-spacing:1.239000px;}
.lsc_c00320{letter-spacing:1.388520px;}
.ls1f_c00320{letter-spacing:1.425060px;}
.ls6_c00320{letter-spacing:1.685040px;}
.ls10_c00320{letter-spacing:1.769040px;}
.lsa_c00320{letter-spacing:2.004120px;}
.ls1a_c00320{letter-spacing:32.270400px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{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__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00320{word-spacing:0.000000px;}
.ws1_c00320{word-spacing:3.044400px;}
.ws0_c00320{word-spacing:7.497840px;}
.ws2_c00320{word-spacing:62.089800px;}
._11_c00320{margin-left:-16.497000px;}
._7_c00320{margin-left:-7.622520px;}
._10_c00320{margin-left:-4.107600px;}
._5_c00320{margin-left:-2.851200px;}
._e_c00320{margin-left:-1.375920px;}
._4_c00320{width:1.525320px;}
._f_c00320{width:2.708640px;}
._3_c00320{width:4.291320px;}
._6_c00320{width:6.533640px;}
._8_c00320{width:8.797320px;}
._a_c00320{width:10.621260px;}
._9_c00320{width:12.467520px;}
._12_c00320{width:14.531400px;}
._18_c00320{width:15.759900px;}
._c_c00320{width:17.550000px;}
._d_c00320{width:18.743400px;}
._19_c00320{width:20.098260px;}
._16_c00320{width:21.200400px;}
._b_c00320{width:23.376600px;}
._14_c00320{width:24.710400px;}
._15_c00320{width:26.303940px;}
._13_c00320{width:27.448200px;}
._17_c00320{width:28.796040px;}
._0_c00320{width:36.826920px;}
._1_c00320{width:38.996100px;}
._2_c00320{width:41.123160px;}
.fc0_c00320{color:transparent;}
.fs5_c00320{font-size:53.280000px;}
.fs7_c00320{font-size:57.600000px;}
.fs0_c00320{font-size:66.600000px;}
.fs4_c00320{font-size:67.800000px;}
.fs2_c00320{font-size:68.400000px;}
.fs6_c00320{font-size:69.000000px;}
.fs1_c00320{font-size:70.200000px;}
.fs3_c00320{font-size:70.800000px;}
.y0_c00320{bottom:0.000000px;}
.y1d_c00320{bottom:71.280006px;}
.y1c_c00320{bottom:191.881806px;}
.y1b_c00320{bottom:222.840006px;}
.y1a_c00320{bottom:284.775006px;}
.y19_c00320{bottom:284.778156px;}
.y18_c00320{bottom:315.736356px;}
.y17_c00320{bottom:345.975006px;}
.y16_c00320{bottom:345.979356px;}
.y15_c00320{bottom:376.920006px;}
.y14_c00320{bottom:438.855006px;}
.y13_c00320{bottom:501.844206px;}
.y12_c00320{bottom:532.784856px;}
.y11_c00320{bottom:563.392056px;}
.y10_c00320{bottom:594.718806px;}
.ye_c00320{bottom:624.970356px;}
.yf_c00320{bottom:624.975006px;}
.yd_c00320{bottom:655.560006px;}
.yc_c00320{bottom:717.135006px;}
.yb_c00320{bottom:748.095006px;}
.ya_c00320{bottom:778.680006px;}
.y9_c00320{bottom:840.615006px;}
.y8_c00320{bottom:871.575006px;}
.y7_c00320{bottom:871.578156px;}
.y6_c00320{bottom:932.775006px;}
.y5_c00320{bottom:963.735006px;}
.y4_c00320{bottom:1025.282406px;}
.y3_c00320{bottom:1086.479256px;}
.y2_c00320{bottom:1117.455006px;}
.y1_c00320{bottom:1192.680006px;}
.h6_c00320{height:35.484480px;}
.h8_c00320{height:56.531250px;}
.h2_c00320{height:65.364258px;}
.h7_c00320{height:67.719727px;}
.h3_c00320{height:68.897461px;}
.h4_c00320{height:69.451758px;}
.h5_c00320{height:70.713281px;}
.h1_c00320{height:1263.000000px;}
.h0_c00320{height:1263.240006px;}
.w1_c00320{width:892.500000px;}
.w0_c00320{width:892.799998px;}
.x0_c00320{left:0.000000px;}
.x1_c00320{left:121.964999px;}
.x6_c00320{left:173.774998px;}
.x4_c00320{left:175.581298px;}
.x13_c00320{left:204.944999px;}
.x5_c00320{left:229.109998px;}
.x14_c00320{left:231.794998px;}
.x7_c00320{left:241.364998px;}
.x8_c00320{left:270.104999px;}
.x15_c00320{left:338.204998px;}
.x9_c00320{left:359.444999px;}
.x16_c00320{left:366.179999px;}
.xa_c00320{left:390.134999px;}
.x20_c00320{left:423.629999px;}
.x2_c00320{left:425.279999px;}
.x18_c00320{left:450.659999px;}
.x3_c00320{left:455.924999px;}
.xd_c00320{left:458.249998px;}
.x19_c00320{left:482.579998px;}
.x17_c00320{left:484.574998px;}
.xe_c00320{left:511.724999px;}
.xf_c00320{left:539.114998px;}
.x1f_c00320{left:573.239998px;}
.x1b_c00320{left:615.854998px;}
.x10_c00320{left:629.084998px;}
.x1a_c00320{left:636.779999px;}
.x1c_c00320{left:641.339998px;}
.x11_c00320{left:657.149999px;}
.xb_c00320{left:682.004999px;}
.x1d_c00320{left:685.619999px;}
.x1e_c00320{left:710.609998px;}
.xc_c00320{left:712.844998px;}
.x12_c00320{left:736.724999px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls27_c00320{letter-spacing:-2.184000pt;}
.ls65_c00320{letter-spacing:-2.146667pt;}
.ls76_c00320{letter-spacing:-2.109333pt;}
.ls24_c00320{letter-spacing:-2.072000pt;}
.ls73_c00320{letter-spacing:-1.984320pt;}
.ls26_c00320{letter-spacing:-1.959360pt;}
.ls50_c00320{letter-spacing:-1.934560pt;}
.ls4b_c00320{letter-spacing:-1.884480pt;}
.ls3d_c00320{letter-spacing:-1.634880pt;}
.ls4d_c00320{letter-spacing:-1.572480pt;}
.ls3e_c00320{letter-spacing:-1.460160pt;}
.ls42_c00320{letter-spacing:-1.453920pt;}
.ls74_c00320{letter-spacing:-1.441440pt;}
.ls7e_c00320{letter-spacing:-1.347840pt;}
.ls6f_c00320{letter-spacing:-1.341600pt;}
.ls40_c00320{letter-spacing:-1.329120pt;}
.ls47_c00320{letter-spacing:-1.291680pt;}
.ls64_c00320{letter-spacing:-1.185600pt;}
.ls7f_c00320{letter-spacing:-1.135680pt;}
.ls3f_c00320{letter-spacing:-1.110720pt;}
.ls3a_c00320{letter-spacing:-1.042080pt;}
.ls4a_c00320{letter-spacing:-1.023360pt;}
.ls39_c00320{letter-spacing:-1.017120pt;}
.ls2d_c00320{letter-spacing:-1.004640pt;}
.ls49_c00320{letter-spacing:-0.973440pt;}
.ls3c_c00320{letter-spacing:-0.892320pt;}
.ls6a_c00320{letter-spacing:-0.879840pt;}
.ls56_c00320{letter-spacing:-0.873600pt;}
.ls2f_c00320{letter-spacing:-0.861120pt;}
.ls6b_c00320{letter-spacing:-0.854880pt;}
.ls5b_c00320{letter-spacing:-0.842400pt;}
.ls53_c00320{letter-spacing:-0.817440pt;}
.ls34_c00320{letter-spacing:-0.767520pt;}
.ls35_c00320{letter-spacing:-0.730080pt;}
.ls45_c00320{letter-spacing:-0.705120pt;}
.ls70_c00320{letter-spacing:-0.680160pt;}
.ls48_c00320{letter-spacing:-0.667680pt;}
.ls5d_c00320{letter-spacing:-0.661440pt;}
.ls46_c00320{letter-spacing:-0.642720pt;}
.ls72_c00320{letter-spacing:-0.624000pt;}
.ls7d_c00320{letter-spacing:-0.611520pt;}
.ls4c_c00320{letter-spacing:-0.605280pt;}
.ls62_c00320{letter-spacing:-0.567840pt;}
.ls54_c00320{letter-spacing:-0.561600pt;}
.ls7b_c00320{letter-spacing:-0.530400pt;}
.ls51_c00320{letter-spacing:-0.511680pt;}
.ls44_c00320{letter-spacing:-0.474240pt;}
.ls38_c00320{letter-spacing:-0.468000pt;}
.ls71_c00320{letter-spacing:-0.455520pt;}
.ls29_c00320{letter-spacing:-0.436800pt;}
.ls58_c00320{letter-spacing:-0.430560pt;}
.ls59_c00320{letter-spacing:-0.380640pt;}
.ls2b_c00320{letter-spacing:-0.355680pt;}
.ls5c_c00320{letter-spacing:-0.343200pt;}
.ls30_c00320{letter-spacing:-0.312000pt;}
.ls79_c00320{letter-spacing:-0.305760pt;}
.ls4e_c00320{letter-spacing:-0.299520pt;}
.ls78_c00320{letter-spacing:-0.287040pt;}
.ls7c_c00320{letter-spacing:-0.274560pt;}
.ls37_c00320{letter-spacing:-0.268320pt;}
.ls7a_c00320{letter-spacing:-0.262080pt;}
.ls66_c00320{letter-spacing:-0.249600pt;}
.ls2e_c00320{letter-spacing:-0.243360pt;}
.ls6e_c00320{letter-spacing:-0.237120pt;}
.ls4f_c00320{letter-spacing:-0.212160pt;}
.ls5a_c00320{letter-spacing:-0.205920pt;}
.ls33_c00320{letter-spacing:-0.199680pt;}
.ls5f_c00320{letter-spacing:-0.193440pt;}
.ls6d_c00320{letter-spacing:-0.187200pt;}
.ls5e_c00320{letter-spacing:-0.180960pt;}
.ls69_c00320{letter-spacing:-0.168480pt;}
.ls32_c00320{letter-spacing:-0.162240pt;}
.ls2c_c00320{letter-spacing:-0.156000pt;}
.ls68_c00320{letter-spacing:-0.149760pt;}
.ls77_c00320{letter-spacing:-0.137280pt;}
.ls75_c00320{letter-spacing:-0.131040pt;}
.ls6c_c00320{letter-spacing:-0.124800pt;}
.ls2a_c00320{letter-spacing:-0.118560pt;}
.ls60_c00320{letter-spacing:-0.112320pt;}
.ls67_c00320{letter-spacing:-0.099840pt;}
.ls25_c00320{letter-spacing:-0.087360pt;}
.ls57_c00320{letter-spacing:-0.081120pt;}
.ls55_c00320{letter-spacing:-0.062400pt;}
.ls61_c00320{letter-spacing:-0.049920pt;}
.ls28_c00320{letter-spacing:-0.043680pt;}
.ls36_c00320{letter-spacing:-0.037440pt;}
.ls3b_c00320{letter-spacing:-0.018720pt;}
.ls41_c00320{letter-spacing:-0.012480pt;}
.ls63_c00320{letter-spacing:-0.006240pt;}
.ls31_c00320{letter-spacing:0.000000pt;}
.lsd_c00320{letter-spacing:0.012480pt;}
.ls0_c00320{letter-spacing:0.031200pt;}
.ls2_c00320{letter-spacing:0.056160pt;}
.lse_c00320{letter-spacing:0.062400pt;}
.ls11_c00320{letter-spacing:0.074880pt;}
.ls43_c00320{letter-spacing:0.081120pt;}
.ls1d_c00320{letter-spacing:0.093600pt;}
.ls8_c00320{letter-spacing:0.106080pt;}
.ls1c_c00320{letter-spacing:0.137280pt;}
.ls13_c00320{letter-spacing:0.143520pt;}
.ls52_c00320{letter-spacing:0.156000pt;}
.ls7_c00320{letter-spacing:0.168480pt;}
.ls19_c00320{letter-spacing:0.205920pt;}
.ls1e_c00320{letter-spacing:0.218400pt;}
.ls21_c00320{letter-spacing:0.255840pt;}
.ls14_c00320{letter-spacing:0.262080pt;}
.ls1_c00320{letter-spacing:0.287040pt;}
.ls17_c00320{letter-spacing:0.324480pt;}
.ls12_c00320{letter-spacing:0.355680pt;}
.ls1b_c00320{letter-spacing:0.425600pt;}
.ls80_c00320{letter-spacing:0.486400pt;}
.ls18_c00320{letter-spacing:0.499200pt;}
.ls9_c00320{letter-spacing:0.571520pt;}
.ls20_c00320{letter-spacing:0.614080pt;}
.lsb_c00320{letter-spacing:0.668800pt;}
.ls22_c00320{letter-spacing:0.698880pt;}
.ls16_c00320{letter-spacing:0.705120pt;}
.lsf_c00320{letter-spacing:0.766080pt;}
.ls3_c00320{letter-spacing:0.784320pt;}
.ls4_c00320{letter-spacing:0.851200pt;}
.ls15_c00320{letter-spacing:0.929760pt;}
.ls23_c00320{letter-spacing:0.967200pt;}
.ls5_c00320{letter-spacing:1.101333pt;}
.lsc_c00320{letter-spacing:1.234240pt;}
.ls1f_c00320{letter-spacing:1.266720pt;}
.ls6_c00320{letter-spacing:1.497813pt;}
.ls10_c00320{letter-spacing:1.572480pt;}
.lsa_c00320{letter-spacing:1.781440pt;}
.ls1a_c00320{letter-spacing:28.684800pt;}
.ws3_c00320{word-spacing:0.000000pt;}
.ws1_c00320{word-spacing:2.706133pt;}
.ws0_c00320{word-spacing:6.664747pt;}
.ws2_c00320{word-spacing:55.190933pt;}
._11_c00320{margin-left:-14.664000pt;}
._7_c00320{margin-left:-6.775573pt;}
._10_c00320{margin-left:-3.651200pt;}
._5_c00320{margin-left:-2.534400pt;}
._e_c00320{margin-left:-1.223040pt;}
._4_c00320{width:1.355840pt;}
._f_c00320{width:2.407680pt;}
._3_c00320{width:3.814507pt;}
._6_c00320{width:5.807680pt;}
._8_c00320{width:7.819840pt;}
._a_c00320{width:9.441120pt;}
._9_c00320{width:11.082240pt;}
._12_c00320{width:12.916800pt;}
._18_c00320{width:14.008800pt;}
._c_c00320{width:15.600000pt;}
._d_c00320{width:16.660800pt;}
._19_c00320{width:17.865120pt;}
._16_c00320{width:18.844800pt;}
._b_c00320{width:20.779200pt;}
._14_c00320{width:21.964800pt;}
._15_c00320{width:23.381280pt;}
._13_c00320{width:24.398400pt;}
._17_c00320{width:25.596480pt;}
._0_c00320{width:32.735040pt;}
._1_c00320{width:34.663200pt;}
._2_c00320{width:36.553920pt;}
.fs5_c00320{font-size:47.360000pt;}
.fs7_c00320{font-size:51.200000pt;}
.fs0_c00320{font-size:59.200000pt;}
.fs4_c00320{font-size:60.266667pt;}
.fs2_c00320{font-size:60.800000pt;}
.fs6_c00320{font-size:61.333333pt;}
.fs1_c00320{font-size:62.400000pt;}
.fs3_c00320{font-size:62.933333pt;}
.y0_c00320{bottom:0.000000pt;}
.y1d_c00320{bottom:63.360005pt;}
.y1c_c00320{bottom:170.561605pt;}
.y1b_c00320{bottom:198.080005pt;}
.y1a_c00320{bottom:253.133339pt;}
.y19_c00320{bottom:253.136139pt;}
.y18_c00320{bottom:280.654539pt;}
.y17_c00320{bottom:307.533339pt;}
.y16_c00320{bottom:307.537205pt;}
.y15_c00320{bottom:335.040005pt;}
.y14_c00320{bottom:390.093339pt;}
.y13_c00320{bottom:446.083739pt;}
.y12_c00320{bottom:473.586539pt;}
.y11_c00320{bottom:500.792939pt;}
.y10_c00320{bottom:528.638939pt;}
.ye_c00320{bottom:555.529205pt;}
.yf_c00320{bottom:555.533339pt;}
.yd_c00320{bottom:582.720005pt;}
.yc_c00320{bottom:637.453339pt;}
.yb_c00320{bottom:664.973339pt;}
.ya_c00320{bottom:692.160005pt;}
.y9_c00320{bottom:747.213339pt;}
.y8_c00320{bottom:774.733339pt;}
.y7_c00320{bottom:774.736139pt;}
.y6_c00320{bottom:829.133339pt;}
.y5_c00320{bottom:856.653339pt;}
.y4_c00320{bottom:911.362139pt;}
.y3_c00320{bottom:965.759339pt;}
.y2_c00320{bottom:993.293339pt;}
.y1_c00320{bottom:1060.160005pt;}
.h6_c00320{height:31.541760pt;}
.h8_c00320{height:50.250000pt;}
.h2_c00320{height:58.101562pt;}
.h7_c00320{height:60.195312pt;}
.h3_c00320{height:61.242187pt;}
.h4_c00320{height:61.734896pt;}
.h5_c00320{height:62.856250pt;}
.h1_c00320{height:1122.666667pt;}
.h0_c00320{height:1122.880005pt;}
.w1_c00320{width:793.333333pt;}
.w0_c00320{width:793.599999pt;}
.x0_c00320{left:0.000000pt;}
.x1_c00320{left:108.413332pt;}
.x6_c00320{left:154.466665pt;}
.x4_c00320{left:156.072265pt;}
.x13_c00320{left:182.173332pt;}
.x5_c00320{left:203.653332pt;}
.x14_c00320{left:206.039999pt;}
.x7_c00320{left:214.546665pt;}
.x8_c00320{left:240.093332pt;}
.x15_c00320{left:300.626665pt;}
.x9_c00320{left:319.506665pt;}
.x16_c00320{left:325.493332pt;}
.xa_c00320{left:346.786665pt;}
.x20_c00320{left:376.559999pt;}
.x2_c00320{left:378.026665pt;}
.x18_c00320{left:400.586665pt;}
.x3_c00320{left:405.266665pt;}
.xd_c00320{left:407.333332pt;}
.x19_c00320{left:428.959999pt;}
.x17_c00320{left:430.733332pt;}
.xe_c00320{left:454.866665pt;}
.xf_c00320{left:479.213332pt;}
.x1f_c00320{left:509.546665pt;}
.x1b_c00320{left:547.426665pt;}
.x10_c00320{left:559.186665pt;}
.x1a_c00320{left:566.026665pt;}
.x1c_c00320{left:570.079999pt;}
.x11_c00320{left:584.133332pt;}
.xb_c00320{left:606.226665pt;}
.x1d_c00320{left:609.439999pt;}
.x1e_c00320{left:631.653332pt;}
.xc_c00320{left:633.639999pt;}
.x12_c00320{left:654.866665pt;}
}





/* 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_c00321 {
    display:none;
  }
  .loading-indicator_c00321.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00321 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_c00321 { 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_c00321" -> "#page-container .classname_c00321")
 */
.pf_c00321 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00321 { /* 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_c00321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00321 { /* 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_c00321 { /* 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_c00321 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00321 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00321 {overflow:visible;}
  }
}
.c_c00321 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00321 { /* 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_c00321:after { /* webkit #35443 */
  content: '';
}
.t_c00321:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00321 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 */
}
.__c00321 { /* 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_c00321 { /* info for Javascript */
  display:none;
}
.l_c00321 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00321 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00321 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00321: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_c00321 {
    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_c00321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00321.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_c00321 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00321;src:url('chunks/assets/font_73d810f60249084ab2b35fd7.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.284668;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_c00321;src:url('chunks/assets/font_afc140b0336fb6a7361fe312.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.284180;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_c00321;src:url('chunks/assets/font_4c7b2e9e785d8ddf935b754b.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:0.666000;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_c00321;src:url('chunks/assets/font_bce952b2284fdb43dafa16ee.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;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;}
.m5_c00321{transform:matrix(0.168984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168984,0.000000,0.000000,0.250000,0,0);}
.m1_c00321{transform:matrix(0.225028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225028,0.000000,0.000000,0.250000,0,0);}
.m3_c00321{transform:matrix(0.226444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226444,0.000000,0.000000,0.250000,0,0);}
.m4_c00321{transform:matrix(0.229506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229506,0.000000,0.000000,0.250000,0,0);}
.ma_c00321{transform:matrix(0.231930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231930,0.000000,0.000000,0.250000,0,0);}
.m6_c00321{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m8_c00321{transform:matrix(0.243752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243752,0.000000,0.000000,0.250000,0,0);}
.m7_c00321{transform:matrix(0.244623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244623,0.000000,0.000000,0.250000,0,0);}
.m9_c00321{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m2_c00321{transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);}
.m0_c00321{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);}
.v0_c00321{vertical-align:0.000000px;}
.v1_c00321{vertical-align:27.360000px;}
.ls83_c00321{letter-spacing:-2.688000px;}
.ls73_c00321{letter-spacing:-2.457000px;}
.ls66_c00321{letter-spacing:-2.436000px;}
.ls7d_c00321{letter-spacing:-2.310000px;}
.ls60_c00321{letter-spacing:-2.234160px;}
.ls85_c00321{letter-spacing:-1.760880px;}
.ls72_c00321{letter-spacing:-1.649520px;}
.ls88_c00321{letter-spacing:-1.600800px;}
.ls63_c00321{letter-spacing:-1.503360px;}
.ls59_c00321{letter-spacing:-1.426800px;}
.ls71_c00321{letter-spacing:-1.336320px;}
.ls64_c00321{letter-spacing:-1.294560px;}
.ls8d_c00321{letter-spacing:-1.266720px;}
.ls5b_c00321{letter-spacing:-1.218000px;}
.ls68_c00321{letter-spacing:-1.176240px;}
.ls79_c00321{letter-spacing:-1.169280px;}
.ls6e_c00321{letter-spacing:-1.044000px;}
.ls87_c00321{letter-spacing:-1.023120px;}
.ls76_c00321{letter-spacing:-0.981360px;}
.ls65_c00321{letter-spacing:-0.883920px;}
.ls67_c00321{letter-spacing:-0.828240px;}
.ls8c_c00321{letter-spacing:-0.814320px;}
.ls8a_c00321{letter-spacing:-0.779520px;}
.ls7e_c00321{letter-spacing:-0.723840px;}
.ls8b_c00321{letter-spacing:-0.668160px;}
.ls69_c00321{letter-spacing:-0.661200px;}
.ls7f_c00321{letter-spacing:-0.577680px;}
.ls7c_c00321{letter-spacing:-0.542880px;}
.ls6a_c00321{letter-spacing:-0.494160px;}
.ls82_c00321{letter-spacing:-0.473280px;}
.ls89_c00321{letter-spacing:-0.466320px;}
.ls5f_c00321{letter-spacing:-0.452400px;}
.ls57_c00321{letter-spacing:-0.403680px;}
.ls7b_c00321{letter-spacing:-0.396720px;}
.ls6b_c00321{letter-spacing:-0.382800px;}
.ls7a_c00321{letter-spacing:-0.354960px;}
.ls77_c00321{letter-spacing:-0.313200px;}
.ls5c_c00321{letter-spacing:-0.243600px;}
.ls6f_c00321{letter-spacing:-0.208800px;}
.ls74_c00321{letter-spacing:-0.201840px;}
.ls62_c00321{letter-spacing:-0.187920px;}
.ls6c_c00321{letter-spacing:-0.180960px;}
.ls61_c00321{letter-spacing:-0.139200px;}
.ls80_c00321{letter-spacing:-0.111360px;}
.ls6d_c00321{letter-spacing:-0.090480px;}
.ls86_c00321{letter-spacing:-0.034800px;}
.ls58_c00321{letter-spacing:-0.027840px;}
.ls81_c00321{letter-spacing:-0.020880px;}
.ls56_c00321{letter-spacing:0.000000px;}
.ls4e_c00321{letter-spacing:0.006960px;}
.ls10_c00321{letter-spacing:0.013920px;}
.ls52_c00321{letter-spacing:0.027840px;}
.ls1f_c00321{letter-spacing:0.055680px;}
.ls30_c00321{letter-spacing:0.069600px;}
.ls13_c00321{letter-spacing:0.097440px;}
.ls5_c00321{letter-spacing:0.111360px;}
.ls26_c00321{letter-spacing:0.125280px;}
.ls24_c00321{letter-spacing:0.146160px;}
.ls3c_c00321{letter-spacing:0.153120px;}
.ls25_c00321{letter-spacing:0.160080px;}
.ls5d_c00321{letter-spacing:0.180960px;}
.ls2a_c00321{letter-spacing:0.187920px;}
.ls23_c00321{letter-spacing:0.194880px;}
.ls12_c00321{letter-spacing:0.201840px;}
.lsd_c00321{letter-spacing:0.205200px;}
.ls33_c00321{letter-spacing:0.222720px;}
.ls9_c00321{letter-spacing:0.229680px;}
.ls49_c00321{letter-spacing:0.236640px;}
.lsb_c00321{letter-spacing:0.257520px;}
.lse_c00321{letter-spacing:0.271440px;}
.ls11_c00321{letter-spacing:0.292320px;}
.ls53_c00321{letter-spacing:0.306240px;}
.ls22_c00321{letter-spacing:0.320160px;}
.ls48_c00321{letter-spacing:0.334080px;}
.ls35_c00321{letter-spacing:0.341040px;}
.ls51_c00321{letter-spacing:0.345000px;}
.ls3e_c00321{letter-spacing:0.348000px;}
.lsf_c00321{letter-spacing:0.354960px;}
.ls1e_c00321{letter-spacing:0.368880px;}
.ls40_c00321{letter-spacing:0.375840px;}
.ls21_c00321{letter-spacing:0.389760px;}
.ls2c_c00321{letter-spacing:0.396720px;}
.ls29_c00321{letter-spacing:0.410640px;}
.ls2b_c00321{letter-spacing:0.417600px;}
.ls36_c00321{letter-spacing:0.438480px;}
.ls75_c00321{letter-spacing:0.445440px;}
.ls3b_c00321{letter-spacing:0.466320px;}
.ls4c_c00321{letter-spacing:0.478800px;}
.ls46_c00321{letter-spacing:0.480240px;}
.ls32_c00321{letter-spacing:0.494160px;}
.ls7_c00321{letter-spacing:0.501120px;}
.lsa_c00321{letter-spacing:0.542880px;}
.ls38_c00321{letter-spacing:0.549840px;}
.ls2_c00321{letter-spacing:0.556800px;}
.ls37_c00321{letter-spacing:0.570720px;}
.ls18_c00321{letter-spacing:0.577680px;}
.ls14_c00321{letter-spacing:0.591600px;}
.ls3f_c00321{letter-spacing:0.612480px;}
.ls5a_c00321{letter-spacing:0.640320px;}
.ls1_c00321{letter-spacing:0.642960px;}
.ls0_c00321{letter-spacing:0.656640px;}
.ls3a_c00321{letter-spacing:0.661200px;}
.ls39_c00321{letter-spacing:0.663480px;}
.ls27_c00321{letter-spacing:0.696000px;}
.ls3_c00321{letter-spacing:0.709920px;}
.ls31_c00321{letter-spacing:0.716880px;}
.ls16_c00321{letter-spacing:0.725040px;}
.ls17_c00321{letter-spacing:0.751680px;}
.ls70_c00321{letter-spacing:0.793440px;}
.ls20_c00321{letter-spacing:0.821280px;}
.ls47_c00321{letter-spacing:0.842160px;}
.ls2f_c00321{letter-spacing:0.849120px;}
.ls5e_c00321{letter-spacing:0.856080px;}
.ls41_c00321{letter-spacing:0.883920px;}
.ls44_c00321{letter-spacing:0.890880px;}
.ls43_c00321{letter-spacing:0.909720px;}
.ls4b_c00321{letter-spacing:0.939600px;}
.ls15_c00321{letter-spacing:0.957600px;}
.ls3d_c00321{letter-spacing:0.960480px;}
.ls19_c00321{letter-spacing:1.012320px;}
.ls34_c00321{letter-spacing:1.037040px;}
.ls1d_c00321{letter-spacing:1.044000px;}
.ls1b_c00321{letter-spacing:1.101240px;}
.ls4f_c00321{letter-spacing:1.134480px;}
.ls4_c00321{letter-spacing:1.204080px;}
.ls84_c00321{letter-spacing:1.207500px;}
.ls1c_c00321{letter-spacing:1.280640px;}
.ls55_c00321{letter-spacing:1.285200px;}
.ls2d_c00321{letter-spacing:1.313280px;}
.ls4d_c00321{letter-spacing:1.398960px;}
.ls4a_c00321{letter-spacing:1.552080px;}
.ls54_c00321{letter-spacing:1.573200px;}
.ls45_c00321{letter-spacing:1.607760px;}
.ls50_c00321{letter-spacing:1.635600px;}
.ls1a_c00321{letter-spacing:1.648440px;}
.ls2e_c00321{letter-spacing:1.705200px;}
.ls8_c00321{letter-spacing:1.802640px;}
.ls42_c00321{letter-spacing:1.983600px;}
.ls28_c00321{letter-spacing:2.164560px;}
.lsc_c00321{letter-spacing:2.715480px;}
.ls6_c00321{letter-spacing:2.839680px;}
.ls78_c00321{letter-spacing:3.145920px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{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__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00321{word-spacing:-16.857120px;}
.ws7_c00321{word-spacing:0.000000px;}
.ws0_c00321{word-spacing:3.067440px;}
.ws2_c00321{word-spacing:4.002480px;}
.ws1_c00321{word-spacing:4.326240px;}
.ws5_c00321{word-spacing:8.406600px;}
.ws3_c00321{word-spacing:12.717600px;}
.ws6_c00321{word-spacing:13.542000px;}
._8_c00321{margin-left:-13.743360px;}
._14_c00321{margin-left:-9.982800px;}
._4_c00321{margin-left:-5.385840px;}
._6_c00321{margin-left:-3.737520px;}
._1_c00321{margin-left:-2.199360px;}
._9_c00321{margin-left:-1.126560px;}
._2_c00321{width:1.948800px;}
._0_c00321{width:3.242160px;}
._5_c00321{width:5.282640px;}
._a_c00321{width:6.293040px;}
._3_c00321{width:7.757520px;}
._10_c00321{width:9.286560px;}
._7_c00321{width:10.754400px;}
._12_c00321{width:12.486240px;}
._13_c00321{width:13.930800px;}
._f_c00321{width:15.339840px;}
._e_c00321{width:18.882480px;}
._b_c00321{width:20.114400px;}
._c_c00321{width:22.153680px;}
._d_c00321{width:24.151200px;}
._11_c00321{width:32.915040px;}
.fc0_c00321{color:transparent;}
.fs6_c00321{font-size:32.400600px;}
.fs4_c00321{font-size:51.840000px;}
.fs0_c00321{font-size:61.200000px;}
.fs7_c00321{font-size:66.000000px;}
.fs1_c00321{font-size:68.400000px;}
.fs5_c00321{font-size:69.000000px;}
.fs2_c00321{font-size:69.600000px;}
.fs3_c00321{font-size:70.200000px;}
.fs8_c00321{font-size:76.800000px;}
.y0_c00321{bottom:0.000000px;}
.y1a_c00321{bottom:70.920000px;}
.y19_c00321{bottom:127.080000px;}
.y18_c00321{bottom:188.633400px;}
.y17_c00321{bottom:250.560000px;}
.y16_c00321{bottom:281.895000px;}
.y15_c00321{bottom:342.729600px;}
.y14_c00321{bottom:374.415000px;}
.y13_c00321{bottom:436.342800px;}
.y12_c00321{bottom:467.280000px;}
.y11_c00321{bottom:528.495000px;}
.y10_c00321{bottom:559.440000px;}
.y1c_c00321{bottom:618.495000px;}
.ye_c00321{bottom:621.730800px;}
.yf_c00321{bottom:621.735000px;}
.y1b_c00321{bottom:622.095000px;}
.yd_c00321{bottom:654.495000px;}
.yc_c00321{bottom:717.508200px;}
.yb_c00321{bottom:748.445400px;}
.ya_c00321{bottom:779.400000px;}
.y9_c00321{bottom:841.335000px;}
.y8_c00321{bottom:872.295000px;}
.y6_c00321{bottom:934.196400px;}
.y7_c00321{bottom:934.200000px;}
.y5_c00321{bottom:995.775000px;}
.y4_c00321{bottom:1026.000000px;}
.y3_c00321{bottom:1087.560000px;}
.y2_c00321{bottom:1118.880000px;}
.y1_c00321{bottom:1195.200000px;}
.h7_c00321{height:34.525440px;}
.h2_c00321{height:60.064453px;}
.hd_c00321{height:64.775391px;}
.hb_c00321{height:67.719727px;}
.h3_c00321{height:68.308594px;}
.h4_c00321{height:68.322994px;}
.h6_c00321{height:68.325394px;}
.hc_c00321{height:68.334994px;}
.h9_c00321{height:68.835938px;}
.h5_c00321{height:68.897461px;}
.h8_c00321{height:71.964844px;}
.ha_c00321{height:75.337500px;}
.he_c00321{height:80.100000px;}
.h1_c00321{height:1263.000000px;}
.h0_c00321{height:1263.240000px;}
.w1_c00321{width:892.500000px;}
.w0_c00321{width:892.800000px;}
.x0_c00321{left:0.000000px;}
.x9_c00321{left:121.527000px;}
.x1_c00321{left:124.125000px;}
.x13_c00321{left:172.350000px;}
.xa_c00321{left:174.045000px;}
.x6_c00321{left:175.455000px;}
.x2_c00321{left:176.565000px;}
.x4_c00321{left:178.830000px;}
.xd_c00321{left:270.270000px;}
.x10_c00321{left:294.270000px;}
.x3_c00321{left:301.830000px;}
.x11_c00321{left:400.485000px;}
.x16_c00321{left:424.710000px;}
.x7_c00321{left:458.460000px;}
.x12_c00321{left:476.205000px;}
.xe_c00321{left:498.600000px;}
.x8_c00321{left:516.420000px;}
.xb_c00321{left:573.750000px;}
.x14_c00321{left:583.725000px;}
.xc_c00321{left:607.890000px;}
.x15_c00321{left:611.760000px;}
.xf_c00321{left:649.215000px;}
.x5_c00321{left:725.220000px;}
.x18_c00321{left:849.735000px;}
.x17_c00321{left:850.785000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.v1_c00321{vertical-align:24.320000pt;}
.ls83_c00321{letter-spacing:-2.389333pt;}
.ls73_c00321{letter-spacing:-2.184000pt;}
.ls66_c00321{letter-spacing:-2.165333pt;}
.ls7d_c00321{letter-spacing:-2.053333pt;}
.ls60_c00321{letter-spacing:-1.985920pt;}
.ls85_c00321{letter-spacing:-1.565227pt;}
.ls72_c00321{letter-spacing:-1.466240pt;}
.ls88_c00321{letter-spacing:-1.422933pt;}
.ls63_c00321{letter-spacing:-1.336320pt;}
.ls59_c00321{letter-spacing:-1.268267pt;}
.ls71_c00321{letter-spacing:-1.187840pt;}
.ls64_c00321{letter-spacing:-1.150720pt;}
.ls8d_c00321{letter-spacing:-1.125973pt;}
.ls5b_c00321{letter-spacing:-1.082667pt;}
.ls68_c00321{letter-spacing:-1.045547pt;}
.ls79_c00321{letter-spacing:-1.039360pt;}
.ls6e_c00321{letter-spacing:-0.928000pt;}
.ls87_c00321{letter-spacing:-0.909440pt;}
.ls76_c00321{letter-spacing:-0.872320pt;}
.ls65_c00321{letter-spacing:-0.785707pt;}
.ls67_c00321{letter-spacing:-0.736213pt;}
.ls8c_c00321{letter-spacing:-0.723840pt;}
.ls8a_c00321{letter-spacing:-0.692907pt;}
.ls7e_c00321{letter-spacing:-0.643413pt;}
.ls8b_c00321{letter-spacing:-0.593920pt;}
.ls69_c00321{letter-spacing:-0.587733pt;}
.ls7f_c00321{letter-spacing:-0.513493pt;}
.ls7c_c00321{letter-spacing:-0.482560pt;}
.ls6a_c00321{letter-spacing:-0.439253pt;}
.ls82_c00321{letter-spacing:-0.420693pt;}
.ls89_c00321{letter-spacing:-0.414507pt;}
.ls5f_c00321{letter-spacing:-0.402133pt;}
.ls57_c00321{letter-spacing:-0.358827pt;}
.ls7b_c00321{letter-spacing:-0.352640pt;}
.ls6b_c00321{letter-spacing:-0.340267pt;}
.ls7a_c00321{letter-spacing:-0.315520pt;}
.ls77_c00321{letter-spacing:-0.278400pt;}
.ls5c_c00321{letter-spacing:-0.216533pt;}
.ls6f_c00321{letter-spacing:-0.185600pt;}
.ls74_c00321{letter-spacing:-0.179413pt;}
.ls62_c00321{letter-spacing:-0.167040pt;}
.ls6c_c00321{letter-spacing:-0.160853pt;}
.ls61_c00321{letter-spacing:-0.123733pt;}
.ls80_c00321{letter-spacing:-0.098987pt;}
.ls6d_c00321{letter-spacing:-0.080427pt;}
.ls86_c00321{letter-spacing:-0.030933pt;}
.ls58_c00321{letter-spacing:-0.024747pt;}
.ls81_c00321{letter-spacing:-0.018560pt;}
.ls56_c00321{letter-spacing:0.000000pt;}
.ls4e_c00321{letter-spacing:0.006187pt;}
.ls10_c00321{letter-spacing:0.012373pt;}
.ls52_c00321{letter-spacing:0.024747pt;}
.ls1f_c00321{letter-spacing:0.049493pt;}
.ls30_c00321{letter-spacing:0.061867pt;}
.ls13_c00321{letter-spacing:0.086613pt;}
.ls5_c00321{letter-spacing:0.098987pt;}
.ls26_c00321{letter-spacing:0.111360pt;}
.ls24_c00321{letter-spacing:0.129920pt;}
.ls3c_c00321{letter-spacing:0.136107pt;}
.ls25_c00321{letter-spacing:0.142293pt;}
.ls5d_c00321{letter-spacing:0.160853pt;}
.ls2a_c00321{letter-spacing:0.167040pt;}
.ls23_c00321{letter-spacing:0.173227pt;}
.ls12_c00321{letter-spacing:0.179413pt;}
.lsd_c00321{letter-spacing:0.182400pt;}
.ls33_c00321{letter-spacing:0.197973pt;}
.ls9_c00321{letter-spacing:0.204160pt;}
.ls49_c00321{letter-spacing:0.210347pt;}
.lsb_c00321{letter-spacing:0.228907pt;}
.lse_c00321{letter-spacing:0.241280pt;}
.ls11_c00321{letter-spacing:0.259840pt;}
.ls53_c00321{letter-spacing:0.272213pt;}
.ls22_c00321{letter-spacing:0.284587pt;}
.ls48_c00321{letter-spacing:0.296960pt;}
.ls35_c00321{letter-spacing:0.303147pt;}
.ls51_c00321{letter-spacing:0.306667pt;}
.ls3e_c00321{letter-spacing:0.309333pt;}
.lsf_c00321{letter-spacing:0.315520pt;}
.ls1e_c00321{letter-spacing:0.327893pt;}
.ls40_c00321{letter-spacing:0.334080pt;}
.ls21_c00321{letter-spacing:0.346453pt;}
.ls2c_c00321{letter-spacing:0.352640pt;}
.ls29_c00321{letter-spacing:0.365013pt;}
.ls2b_c00321{letter-spacing:0.371200pt;}
.ls36_c00321{letter-spacing:0.389760pt;}
.ls75_c00321{letter-spacing:0.395947pt;}
.ls3b_c00321{letter-spacing:0.414507pt;}
.ls4c_c00321{letter-spacing:0.425600pt;}
.ls46_c00321{letter-spacing:0.426880pt;}
.ls32_c00321{letter-spacing:0.439253pt;}
.ls7_c00321{letter-spacing:0.445440pt;}
.lsa_c00321{letter-spacing:0.482560pt;}
.ls38_c00321{letter-spacing:0.488747pt;}
.ls2_c00321{letter-spacing:0.494933pt;}
.ls37_c00321{letter-spacing:0.507307pt;}
.ls18_c00321{letter-spacing:0.513493pt;}
.ls14_c00321{letter-spacing:0.525867pt;}
.ls3f_c00321{letter-spacing:0.544427pt;}
.ls5a_c00321{letter-spacing:0.569173pt;}
.ls1_c00321{letter-spacing:0.571520pt;}
.ls0_c00321{letter-spacing:0.583680pt;}
.ls3a_c00321{letter-spacing:0.587733pt;}
.ls39_c00321{letter-spacing:0.589760pt;}
.ls27_c00321{letter-spacing:0.618667pt;}
.ls3_c00321{letter-spacing:0.631040pt;}
.ls31_c00321{letter-spacing:0.637227pt;}
.ls16_c00321{letter-spacing:0.644480pt;}
.ls17_c00321{letter-spacing:0.668160pt;}
.ls70_c00321{letter-spacing:0.705280pt;}
.ls20_c00321{letter-spacing:0.730027pt;}
.ls47_c00321{letter-spacing:0.748587pt;}
.ls2f_c00321{letter-spacing:0.754773pt;}
.ls5e_c00321{letter-spacing:0.760960pt;}
.ls41_c00321{letter-spacing:0.785707pt;}
.ls44_c00321{letter-spacing:0.791893pt;}
.ls43_c00321{letter-spacing:0.808640pt;}
.ls4b_c00321{letter-spacing:0.835200pt;}
.ls15_c00321{letter-spacing:0.851200pt;}
.ls3d_c00321{letter-spacing:0.853760pt;}
.ls19_c00321{letter-spacing:0.899840pt;}
.ls34_c00321{letter-spacing:0.921813pt;}
.ls1d_c00321{letter-spacing:0.928000pt;}
.ls1b_c00321{letter-spacing:0.978880pt;}
.ls4f_c00321{letter-spacing:1.008427pt;}
.ls4_c00321{letter-spacing:1.070293pt;}
.ls84_c00321{letter-spacing:1.073333pt;}
.ls1c_c00321{letter-spacing:1.138347pt;}
.ls55_c00321{letter-spacing:1.142400pt;}
.ls2d_c00321{letter-spacing:1.167360pt;}
.ls4d_c00321{letter-spacing:1.243520pt;}
.ls4a_c00321{letter-spacing:1.379627pt;}
.ls54_c00321{letter-spacing:1.398400pt;}
.ls45_c00321{letter-spacing:1.429120pt;}
.ls50_c00321{letter-spacing:1.453867pt;}
.ls1a_c00321{letter-spacing:1.465280pt;}
.ls2e_c00321{letter-spacing:1.515733pt;}
.ls8_c00321{letter-spacing:1.602347pt;}
.ls42_c00321{letter-spacing:1.763200pt;}
.ls28_c00321{letter-spacing:1.924053pt;}
.lsc_c00321{letter-spacing:2.413760pt;}
.ls6_c00321{letter-spacing:2.524160pt;}
.ls78_c00321{letter-spacing:2.796373pt;}
.ws4_c00321{word-spacing:-14.984107pt;}
.ws7_c00321{word-spacing:0.000000pt;}
.ws0_c00321{word-spacing:2.726613pt;}
.ws2_c00321{word-spacing:3.557760pt;}
.ws1_c00321{word-spacing:3.845547pt;}
.ws5_c00321{word-spacing:7.472533pt;}
.ws3_c00321{word-spacing:11.304533pt;}
.ws6_c00321{word-spacing:12.037333pt;}
._8_c00321{margin-left:-12.216320pt;}
._14_c00321{margin-left:-8.873600pt;}
._4_c00321{margin-left:-4.787413pt;}
._6_c00321{margin-left:-3.322240pt;}
._1_c00321{margin-left:-1.954987pt;}
._9_c00321{margin-left:-1.001387pt;}
._2_c00321{width:1.732267pt;}
._0_c00321{width:2.881920pt;}
._5_c00321{width:4.695680pt;}
._a_c00321{width:5.593813pt;}
._3_c00321{width:6.895573pt;}
._10_c00321{width:8.254720pt;}
._7_c00321{width:9.559467pt;}
._12_c00321{width:11.098880pt;}
._13_c00321{width:12.382933pt;}
._f_c00321{width:13.635413pt;}
._e_c00321{width:16.784427pt;}
._b_c00321{width:17.879467pt;}
._c_c00321{width:19.692160pt;}
._d_c00321{width:21.467733pt;}
._11_c00321{width:29.257813pt;}
.fs6_c00321{font-size:28.800533pt;}
.fs4_c00321{font-size:46.080000pt;}
.fs0_c00321{font-size:54.400000pt;}
.fs7_c00321{font-size:58.666667pt;}
.fs1_c00321{font-size:60.800000pt;}
.fs5_c00321{font-size:61.333333pt;}
.fs2_c00321{font-size:61.866667pt;}
.fs3_c00321{font-size:62.400000pt;}
.fs8_c00321{font-size:68.266667pt;}
.y0_c00321{bottom:0.000000pt;}
.y1a_c00321{bottom:63.040000pt;}
.y19_c00321{bottom:112.960000pt;}
.y18_c00321{bottom:167.674133pt;}
.y17_c00321{bottom:222.720000pt;}
.y16_c00321{bottom:250.573333pt;}
.y15_c00321{bottom:304.648533pt;}
.y14_c00321{bottom:332.813333pt;}
.y13_c00321{bottom:387.860267pt;}
.y12_c00321{bottom:415.360000pt;}
.y11_c00321{bottom:469.773333pt;}
.y10_c00321{bottom:497.280000pt;}
.y1c_c00321{bottom:549.773333pt;}
.ye_c00321{bottom:552.649600pt;}
.yf_c00321{bottom:552.653333pt;}
.y1b_c00321{bottom:552.973333pt;}
.yd_c00321{bottom:581.773333pt;}
.yc_c00321{bottom:637.785067pt;}
.yb_c00321{bottom:665.284800pt;}
.ya_c00321{bottom:692.800000pt;}
.y9_c00321{bottom:747.853333pt;}
.y8_c00321{bottom:775.373333pt;}
.y6_c00321{bottom:830.396800pt;}
.y7_c00321{bottom:830.400000pt;}
.y5_c00321{bottom:885.133333pt;}
.y4_c00321{bottom:912.000000pt;}
.y3_c00321{bottom:966.720000pt;}
.y2_c00321{bottom:994.560000pt;}
.y1_c00321{bottom:1062.400000pt;}
.h7_c00321{height:30.689280pt;}
.h2_c00321{height:53.390625pt;}
.hd_c00321{height:57.578125pt;}
.hb_c00321{height:60.195312pt;}
.h3_c00321{height:60.718750pt;}
.h4_c00321{height:60.731550pt;}
.h6_c00321{height:60.733683pt;}
.hc_c00321{height:60.742217pt;}
.h9_c00321{height:61.187500pt;}
.h5_c00321{height:61.242187pt;}
.h8_c00321{height:63.968750pt;}
.ha_c00321{height:66.966667pt;}
.he_c00321{height:71.200000pt;}
.h1_c00321{height:1122.666667pt;}
.h0_c00321{height:1122.880000pt;}
.w1_c00321{width:793.333333pt;}
.w0_c00321{width:793.600000pt;}
.x0_c00321{left:0.000000pt;}
.x9_c00321{left:108.024000pt;}
.x1_c00321{left:110.333333pt;}
.x13_c00321{left:153.200000pt;}
.xa_c00321{left:154.706667pt;}
.x6_c00321{left:155.960000pt;}
.x2_c00321{left:156.946667pt;}
.x4_c00321{left:158.960000pt;}
.xd_c00321{left:240.240000pt;}
.x10_c00321{left:261.573333pt;}
.x3_c00321{left:268.293333pt;}
.x11_c00321{left:355.986667pt;}
.x16_c00321{left:377.520000pt;}
.x7_c00321{left:407.520000pt;}
.x12_c00321{left:423.293333pt;}
.xe_c00321{left:443.200000pt;}
.x8_c00321{left:459.040000pt;}
.xb_c00321{left:510.000000pt;}
.x14_c00321{left:518.866667pt;}
.xc_c00321{left:540.346667pt;}
.x15_c00321{left:543.786667pt;}
.xf_c00321{left:577.080000pt;}
.x5_c00321{left:644.640000pt;}
.x18_c00321{left:755.320000pt;}
.x17_c00321{left:756.253333pt;}
}





/* 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_c00322 {
    display:none;
  }
  .loading-indicator_c00322.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00322 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_c00322 { 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_c00322" -> "#page-container .classname_c00322")
 */
.pf_c00322 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00322 { /* 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_c00322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00322 { /* 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_c00322 { /* 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_c00322 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00322 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00322 {overflow:visible;}
  }
}
.c_c00322 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00322 { /* 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_c00322:after { /* webkit #35443 */
  content: '';
}
.t_c00322:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00322 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 */
}
.__c00322 { /* 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_c00322 { /* info for Javascript */
  display:none;
}
.l_c00322 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00322 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00322 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00322: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_c00322 {
    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_c00322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00322.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_c00322 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00322;src:url('chunks/assets/font_494e1e29c1005e02e12e213d.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.311035;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_c00322;src:url('chunks/assets/font_a9faf4a2a982c0e4534b1a33.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.284180;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_c00322;src:url('chunks/assets/font_faa22370ea9a6af0bb138738.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.284668;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_c00322;src:url('chunks/assets/font_6b2c141be90e035b3bf7d529.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:0.666000;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_c00322;src:url('chunks/assets/font_b4c40aa0100d46cb89d6222a.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;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:ff6_c00322;src:url('chunks/assets/font_0363f4829468987a07274a4d.woff2')format("woff");}.ff6_c00322{font-family:ff6_c00322;line-height:1.284180;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_c00322;src:url('chunks/assets/font_4c9d206df9f33cf2d2b00c50.woff2')format("woff");}.ff7_c00322{font-family:ff7_c00322;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_c00322;src:url('chunks/assets/font_5272547aef48ddac43a2063d.woff2')format("woff");}.ff8_c00322{font-family:ff8_c00322;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:ff9_c00322;src:url('chunks/assets/font_d7e28213285a0722a50001e3.woff2')format("woff");}.ff9_c00322{font-family:ff9_c00322;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;}
.me_c00322{transform:matrix(0.117128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117128,0.000000,0.000000,0.250000,0,0);}
.m11_c00322{transform:matrix(0.128221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128221,0.000000,0.000000,0.250000,0,0);}
.m7_c00322{transform:matrix(0.141026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141026,0.000000,0.000000,0.250000,0,0);}
.m12_c00322{transform:matrix(0.160094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160094,0.000000,0.000000,0.250000,0,0);}
.mc_c00322{transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);}
.mb_c00322{transform:matrix(0.176131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176131,0.000000,0.000000,0.250000,0,0);}
.m13_c00322{transform:matrix(0.189641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189641,0.000000,0.000000,0.250000,0,0);}
.m8_c00322{transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);}
.m3_c00322{transform:matrix(0.213047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213047,0.000000,0.000000,0.250000,0,0);}
.m9_c00322{transform:matrix(0.215576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215576,0.000000,0.000000,0.250000,0,0);}
.m10_c00322{transform:matrix(0.222288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222288,0.000000,0.000000,0.250000,0,0);}
.m17_c00322{transform:matrix(0.222949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222949,0.000000,0.000000,0.250000,0,0);}
.m18_c00322{transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);}
.m15_c00322{transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);}
.m4_c00322{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m1_c00322{transform:matrix(0.245021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245021,0.000000,0.000000,0.250000,0,0);}
.m2_c00322{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m16_c00322{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m5_c00322{transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);}
.m0_c00322{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);}
.m14_c00322{transform:matrix(0.267710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267710,0.000000,0.000000,0.250000,0,0);}
.m6_c00322{transform:matrix(0.283735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283735,0.000000,0.000000,0.250000,0,0);}
.ma_c00322{transform:matrix(0.316417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316417,0.000000,0.000000,0.250000,0,0);}
.md_c00322{transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);}
.mf_c00322{transform:matrix(0.409646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409646,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.v1_c00322{vertical-align:30.208800px;}
.ls60_c00322{letter-spacing:-3.801000px;}
.ls81_c00322{letter-spacing:-2.667000px;}
.ls4b_c00322{letter-spacing:-2.457000px;}
.ls70_c00322{letter-spacing:-2.455200px;}
.ls6d_c00322{letter-spacing:-2.436000px;}
.ls62_c00322{letter-spacing:-2.373000px;}
.ls84_c00322{letter-spacing:-2.234160px;}
.ls6f_c00322{letter-spacing:-2.224560px;}
.ls86_c00322{letter-spacing:-2.136720px;}
.ls71_c00322{letter-spacing:-2.025360px;}
.ls7e_c00322{letter-spacing:-1.844400px;}
.ls95_c00322{letter-spacing:-1.837440px;}
.ls7d_c00322{letter-spacing:-1.774800px;}
.ls74_c00322{letter-spacing:-1.764000px;}
.ls75_c00322{letter-spacing:-1.722000px;}
.ls77_c00322{letter-spacing:-1.680000px;}
.ls4d_c00322{letter-spacing:-1.649520px;}
.ls82_c00322{letter-spacing:-1.545120px;}
.ls7a_c00322{letter-spacing:-1.533021px;}
.ls5f_c00322{letter-spacing:-1.503360px;}
.ls6a_c00322{letter-spacing:-1.468560px;}
.ls6c_c00322{letter-spacing:-1.426800px;}
.ls66_c00322{letter-spacing:-1.294560px;}
.ls83_c00322{letter-spacing:-1.266720px;}
.ls56_c00322{letter-spacing:-1.169280px;}
.ls94_c00322{letter-spacing:-1.120560px;}
.ls53_c00322{letter-spacing:-1.037040px;}
.ls7f_c00322{letter-spacing:-1.023120px;}
.ls5a_c00322{letter-spacing:-0.974400px;}
.ls68_c00322{letter-spacing:-0.939600px;}
.ls80_c00322{letter-spacing:-0.883920px;}
.ls5d_c00322{letter-spacing:-0.835200px;}
.ls93_c00322{letter-spacing:-0.807360px;}
.ls96_c00322{letter-spacing:-0.744720px;}
.ls88_c00322{letter-spacing:-0.730800px;}
.ls54_c00322{letter-spacing:-0.723840px;}
.ls40_c00322{letter-spacing:-0.668160px;}
.ls67_c00322{letter-spacing:-0.591600px;}
.ls52_c00322{letter-spacing:-0.584640px;}
.ls4c_c00322{letter-spacing:-0.577680px;}
.ls8f_c00322{letter-spacing:-0.563760px;}
.ls47_c00322{letter-spacing:-0.556800px;}
.ls4a_c00322{letter-spacing:-0.515040px;}
.ls90_c00322{letter-spacing:-0.473280px;}
.ls8a_c00322{letter-spacing:-0.452400px;}
.ls45_c00322{letter-spacing:-0.431520px;}
.ls57_c00322{letter-spacing:-0.403680px;}
.ls5e_c00322{letter-spacing:-0.396720px;}
.ls43_c00322{letter-spacing:-0.389760px;}
.ls91_c00322{letter-spacing:-0.348000px;}
.ls5b_c00322{letter-spacing:-0.334080px;}
.ls50_c00322{letter-spacing:-0.320160px;}
.ls89_c00322{letter-spacing:-0.299280px;}
.ls85_c00322{letter-spacing:-0.285360px;}
.ls51_c00322{letter-spacing:-0.271440px;}
.ls5c_c00322{letter-spacing:-0.264480px;}
.ls59_c00322{letter-spacing:-0.257520px;}
.ls92_c00322{letter-spacing:-0.250560px;}
.ls8d_c00322{letter-spacing:-0.243600px;}
.ls6b_c00322{letter-spacing:-0.222720px;}
.ls44_c00322{letter-spacing:-0.208800px;}
.ls63_c00322{letter-spacing:-0.201840px;}
.ls55_c00322{letter-spacing:-0.187920px;}
.ls6e_c00322{letter-spacing:-0.180960px;}
.ls65_c00322{letter-spacing:-0.167040px;}
.ls4f_c00322{letter-spacing:-0.146160px;}
.ls8b_c00322{letter-spacing:-0.139200px;}
.ls49_c00322{letter-spacing:-0.104400px;}
.ls4e_c00322{letter-spacing:-0.090480px;}
.ls48_c00322{letter-spacing:-0.062640px;}
.ls58_c00322{letter-spacing:-0.048720px;}
.ls69_c00322{letter-spacing:-0.041760px;}
.ls46_c00322{letter-spacing:-0.027840px;}
.ls8c_c00322{letter-spacing:-0.020880px;}
.ls8e_c00322{letter-spacing:-0.013920px;}
.ls41_c00322{letter-spacing:-0.006960px;}
.ls42_c00322{letter-spacing:0.000000px;}
.ls2_c00322{letter-spacing:0.006960px;}
.lsb_c00322{letter-spacing:0.013920px;}
.ls3c_c00322{letter-spacing:0.034800px;}
.ls12_c00322{letter-spacing:0.055680px;}
.lsd_c00322{letter-spacing:0.062640px;}
.ls16_c00322{letter-spacing:0.076560px;}
.ls64_c00322{letter-spacing:0.090480px;}
.ls20_c00322{letter-spacing:0.097440px;}
.ls4_c00322{letter-spacing:0.104400px;}
.lse_c00322{letter-spacing:0.118320px;}
.ls2c_c00322{letter-spacing:0.125280px;}
.ls3a_c00322{letter-spacing:0.153120px;}
.ls3_c00322{letter-spacing:0.160080px;}
.ls1a_c00322{letter-spacing:0.194880px;}
.ls3d_c00322{letter-spacing:0.201840px;}
.lsa_c00322{letter-spacing:0.215760px;}
.lsc_c00322{letter-spacing:0.222720px;}
.ls24_c00322{letter-spacing:0.229680px;}
.ls7_c00322{letter-spacing:0.236640px;}
.ls1d_c00322{letter-spacing:0.250560px;}
.ls17_c00322{letter-spacing:0.278400px;}
.ls33_c00322{letter-spacing:0.285360px;}
.ls15_c00322{letter-spacing:0.306240px;}
.ls8_c00322{letter-spacing:0.313200px;}
.ls5_c00322{letter-spacing:0.320160px;}
.ls18_c00322{letter-spacing:0.348000px;}
.ls37_c00322{letter-spacing:0.354960px;}
.ls1_c00322{letter-spacing:0.382800px;}
.ls13_c00322{letter-spacing:0.396720px;}
.ls3b_c00322{letter-spacing:0.417600px;}
.ls19_c00322{letter-spacing:0.445440px;}
.ls21_c00322{letter-spacing:0.459360px;}
.ls39_c00322{letter-spacing:0.473280px;}
.ls1e_c00322{letter-spacing:0.480240px;}
.ls1f_c00322{letter-spacing:0.542880px;}
.ls27_c00322{letter-spacing:0.556800px;}
.ls10_c00322{letter-spacing:0.584640px;}
.ls2e_c00322{letter-spacing:0.591600px;}
.ls32_c00322{letter-spacing:0.605520px;}
.ls1b_c00322{letter-spacing:0.647280px;}
.ls28_c00322{letter-spacing:0.654240px;}
.ls6_c00322{letter-spacing:0.675120px;}
.ls11_c00322{letter-spacing:0.730800px;}
.ls35_c00322{letter-spacing:0.744720px;}
.ls1c_c00322{letter-spacing:0.759360px;}
.ls26_c00322{letter-spacing:0.766140px;}
.ls2a_c00322{letter-spacing:0.793440px;}
.ls97_c00322{letter-spacing:0.820620px;}
.lsf_c00322{letter-spacing:0.821280px;}
.ls23_c00322{letter-spacing:0.828240px;}
.ls2b_c00322{letter-spacing:0.918720px;}
.ls7c_c00322{letter-spacing:0.930000px;}
.ls25_c00322{letter-spacing:0.942420px;}
.ls36_c00322{letter-spacing:0.953520px;}
.ls31_c00322{letter-spacing:1.017000px;}
.ls22_c00322{letter-spacing:1.057680px;}
.ls61_c00322{letter-spacing:1.127520px;}
.ls30_c00322{letter-spacing:1.132260px;}
.ls0_c00322{letter-spacing:1.139040px;}
.ls38_c00322{letter-spacing:1.183200px;}
.ls2f_c00322{letter-spacing:1.186500px;}
.ls3f_c00322{letter-spacing:1.193640px;}
.ls14_c00322{letter-spacing:1.240740px;}
.ls3e_c00322{letter-spacing:1.245840px;}
.ls34_c00322{letter-spacing:1.447680px;}
.ls2d_c00322{letter-spacing:1.760880px;}
.ls87_c00322{letter-spacing:1.900080px;}
.ls7b_c00322{letter-spacing:1.905326px;}
.ls79_c00322{letter-spacing:1.920030px;}
.ls29_c00322{letter-spacing:2.164560px;}
.ls73_c00322{letter-spacing:2.386560px;}
.ls78_c00322{letter-spacing:2.400000px;}
.ls76_c00322{letter-spacing:2.430000px;}
.ls72_c00322{letter-spacing:2.580000px;}
.ls9_c00322{letter-spacing:2.888400px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{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__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00322{word-spacing:-15.896640px;}
.ws7_c00322{word-spacing:0.000000px;}
.ws4_c00322{word-spacing:6.840600px;}
.ws0_c00322{word-spacing:7.049640px;}
.ws5_c00322{word-spacing:11.614260px;}
.ws2_c00322{word-spacing:17.032200px;}
.ws6_c00322{word-spacing:18.838200px;}
.ws1_c00322{word-spacing:32.797440px;}
._11_c00322{margin-left:-9.514320px;}
._9_c00322{margin-left:-3.006720px;}
._6_c00322{margin-left:-1.531200px;}
._d_c00322{width:1.076880px;}
._8_c00322{width:2.770080px;}
._4_c00322{width:4.301280px;}
._5_c00322{width:5.526240px;}
._0_c00322{width:6.994800px;}
._3_c00322{width:8.066640px;}
._2_c00322{width:9.542160px;}
._7_c00322{width:11.442240px;}
._1_c00322{width:13.210080px;}
._10_c00322{width:14.636880px;}
._e_c00322{width:15.639120px;}
._16_c00322{width:18.638880px;}
._f_c00322{width:19.808160px;}
._14_c00322{width:20.845200px;}
._13_c00322{width:22.390320px;}
._12_c00322{width:23.517840px;}
._15_c00322{width:24.589680px;}
._a_c00322{width:31.487040px;}
._c_c00322{width:33.129600px;}
._b_c00322{width:35.523840px;}
.fc0_c00322{color:transparent;}
.fs12_c00322{font-size:18.600000px;}
.fs6_c00322{font-size:32.400600px;}
.fsa_c00322{font-size:37.440000px;}
.fs10_c00322{font-size:38.400600px;}
.fs11_c00322{font-size:43.800600px;}
.fs14_c00322{font-size:47.400600px;}
.fsf_c00322{font-size:48.000000px;}
.fse_c00322{font-size:48.600000px;}
.fsd_c00322{font-size:49.200000px;}
.fsc_c00322{font-size:50.400000px;}
.fs9_c00322{font-size:51.600000px;}
.fs5_c00322{font-size:51.840000px;}
.fsb_c00322{font-size:52.800000px;}
.fs4_c00322{font-size:53.280000px;}
.fs15_c00322{font-size:58.200000px;}
.fs0_c00322{font-size:58.800000px;}
.fs1_c00322{font-size:67.800000px;}
.fs2_c00322{font-size:69.600000px;}
.fs3_c00322{font-size:70.200000px;}
.fs8_c00322{font-size:74.400000px;}
.fs13_c00322{font-size:76.200000px;}
.fs7_c00322{font-size:108.600000px;}
.y0_c00322{bottom:0.000000px;}
.y1d_c00322{bottom:70.920000px;}
.y1c_c00322{bottom:159.128400px;}
.y1b_c00322{bottom:189.735000px;}
.y1a_c00322{bottom:220.689600px;}
.y18_c00322{bottom:252.368400px;}
.y19_c00322{bottom:252.375000px;}
.y17_c00322{bottom:282.975000px;}
.y16_c00322{bottom:344.173800px;}
.y15_c00322{bottom:374.415000px;}
.y14_c00322{bottom:435.255000px;}
.y13_c00322{bottom:466.575000px;}
.y12_c00322{bottom:528.855000px;}
.y11_c00322{bottom:531.735000px;}
.y10_c00322{bottom:558.735000px;}
.yf_c00322{bottom:620.280000px;}
.ye_c00322{bottom:651.255000px;}
.yd_c00322{bottom:712.808400px;}
.yc_c00322{bottom:743.415000px;}
.yb_c00322{bottom:804.240000px;}
.ya_c00322{bottom:835.942800px;}
.y9_c00322{bottom:866.880000px;}
.y8_c00322{bottom:929.170800px;}
.y7_c00322{bottom:961.935000px;}
.y6_c00322{bottom:1024.568400px;}
.y5_c00322{bottom:1055.175000px;}
.y4_c00322{bottom:1055.181600px;}
.y3_c00322{bottom:1085.405400px;}
.y2_c00322{bottom:1116.360000px;}
.y1_c00322{bottom:1191.975000px;}
.h14_c00322{height:18.745313px;}
.hb_c00322{height:24.935040px;}
.h5_c00322{height:35.484480px;}
.h12_c00322{height:38.700605px;}
.h13_c00322{height:45.682657px;}
.h10_c00322{height:47.085938px;}
.hf_c00322{height:47.698242px;}
.h11_c00322{height:48.375000px;}
.ha_c00322{height:50.642578px;}
.he_c00322{height:51.314062px;}
.hd_c00322{height:52.565625px;}
.hc_c00322{height:55.068750px;}
.h16_c00322{height:57.120117px;}
.h2_c00322{height:59.259375px;}
.h3_c00322{height:68.308594px;}
.h6_c00322{height:68.325394px;}
.h4_c00322{height:68.897461px;}
.h8_c00322{height:70.713281px;}
.h9_c00322{height:72.983203px;}
.h15_c00322{height:74.786133px;}
.h7_c00322{height:106.584961px;}
.h1_c00322{height:1263.000000px;}
.h0_c00322{height:1263.240000px;}
.w1_c00322{width:892.500000px;}
.w0_c00322{width:892.800000px;}
.x0_c00322{left:0.000000px;}
.x1_c00322{left:119.445000px;}
.x9_c00322{left:120.457200px;}
.x2_c00322{left:172.965000px;}
.x1e_c00322{left:174.045000px;}
.xc_c00322{left:183.420000px;}
.x13_c00322{left:190.845000px;}
.xd_c00322{left:213.855000px;}
.x14_c00322{left:231.375000px;}
.xe_c00322{left:239.415000px;}
.x15_c00322{left:249.675000px;}
.xb_c00322{left:266.940000px;}
.x16_c00322{left:271.365000px;}
.xf_c00322{left:285.015000px;}
.x10_c00322{left:295.740000px;}
.x17_c00322{left:308.100000px;}
.x11_c00322{left:326.415000px;}
.x12_c00322{left:351.915000px;}
.x18_c00322{left:357.675000px;}
.x7_c00322{left:366.300000px;}
.x19_c00322{left:371.565000px;}
.x8_c00322{left:384.450000px;}
.x1a_c00322{left:385.860000px;}
.x22_c00322{left:421.470000px;}
.x1b_c00322{left:435.765000px;}
.x1c_c00322{left:463.230000px;}
.x5_c00322{left:474.120000px;}
.x6_c00322{left:513.900000px;}
.x3_c00322{left:540.930000px;}
.x21_c00322{left:544.200000px;}
.x4_c00322{left:559.560000px;}
.x1f_c00322{left:609.240000px;}
.x20_c00322{left:626.925000px;}
.x1d_c00322{left:722.325000px;}
.xa_c00322{left:733.500000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.v1_c00322{vertical-align:26.852267pt;}
.ls60_c00322{letter-spacing:-3.378667pt;}
.ls81_c00322{letter-spacing:-2.370667pt;}
.ls4b_c00322{letter-spacing:-2.184000pt;}
.ls70_c00322{letter-spacing:-2.182400pt;}
.ls6d_c00322{letter-spacing:-2.165333pt;}
.ls62_c00322{letter-spacing:-2.109333pt;}
.ls84_c00322{letter-spacing:-1.985920pt;}
.ls6f_c00322{letter-spacing:-1.977387pt;}
.ls86_c00322{letter-spacing:-1.899307pt;}
.ls71_c00322{letter-spacing:-1.800320pt;}
.ls7e_c00322{letter-spacing:-1.639467pt;}
.ls95_c00322{letter-spacing:-1.633280pt;}
.ls7d_c00322{letter-spacing:-1.577600pt;}
.ls74_c00322{letter-spacing:-1.568000pt;}
.ls75_c00322{letter-spacing:-1.530667pt;}
.ls77_c00322{letter-spacing:-1.493333pt;}
.ls4d_c00322{letter-spacing:-1.466240pt;}
.ls82_c00322{letter-spacing:-1.373440pt;}
.ls7a_c00322{letter-spacing:-1.362685pt;}
.ls5f_c00322{letter-spacing:-1.336320pt;}
.ls6a_c00322{letter-spacing:-1.305387pt;}
.ls6c_c00322{letter-spacing:-1.268267pt;}
.ls66_c00322{letter-spacing:-1.150720pt;}
.ls83_c00322{letter-spacing:-1.125973pt;}
.ls56_c00322{letter-spacing:-1.039360pt;}
.ls94_c00322{letter-spacing:-0.996053pt;}
.ls53_c00322{letter-spacing:-0.921813pt;}
.ls7f_c00322{letter-spacing:-0.909440pt;}
.ls5a_c00322{letter-spacing:-0.866133pt;}
.ls68_c00322{letter-spacing:-0.835200pt;}
.ls80_c00322{letter-spacing:-0.785707pt;}
.ls5d_c00322{letter-spacing:-0.742400pt;}
.ls93_c00322{letter-spacing:-0.717653pt;}
.ls96_c00322{letter-spacing:-0.661973pt;}
.ls88_c00322{letter-spacing:-0.649600pt;}
.ls54_c00322{letter-spacing:-0.643413pt;}
.ls40_c00322{letter-spacing:-0.593920pt;}
.ls67_c00322{letter-spacing:-0.525867pt;}
.ls52_c00322{letter-spacing:-0.519680pt;}
.ls4c_c00322{letter-spacing:-0.513493pt;}
.ls8f_c00322{letter-spacing:-0.501120pt;}
.ls47_c00322{letter-spacing:-0.494933pt;}
.ls4a_c00322{letter-spacing:-0.457813pt;}
.ls90_c00322{letter-spacing:-0.420693pt;}
.ls8a_c00322{letter-spacing:-0.402133pt;}
.ls45_c00322{letter-spacing:-0.383573pt;}
.ls57_c00322{letter-spacing:-0.358827pt;}
.ls5e_c00322{letter-spacing:-0.352640pt;}
.ls43_c00322{letter-spacing:-0.346453pt;}
.ls91_c00322{letter-spacing:-0.309333pt;}
.ls5b_c00322{letter-spacing:-0.296960pt;}
.ls50_c00322{letter-spacing:-0.284587pt;}
.ls89_c00322{letter-spacing:-0.266027pt;}
.ls85_c00322{letter-spacing:-0.253653pt;}
.ls51_c00322{letter-spacing:-0.241280pt;}
.ls5c_c00322{letter-spacing:-0.235093pt;}
.ls59_c00322{letter-spacing:-0.228907pt;}
.ls92_c00322{letter-spacing:-0.222720pt;}
.ls8d_c00322{letter-spacing:-0.216533pt;}
.ls6b_c00322{letter-spacing:-0.197973pt;}
.ls44_c00322{letter-spacing:-0.185600pt;}
.ls63_c00322{letter-spacing:-0.179413pt;}
.ls55_c00322{letter-spacing:-0.167040pt;}
.ls6e_c00322{letter-spacing:-0.160853pt;}
.ls65_c00322{letter-spacing:-0.148480pt;}
.ls4f_c00322{letter-spacing:-0.129920pt;}
.ls8b_c00322{letter-spacing:-0.123733pt;}
.ls49_c00322{letter-spacing:-0.092800pt;}
.ls4e_c00322{letter-spacing:-0.080427pt;}
.ls48_c00322{letter-spacing:-0.055680pt;}
.ls58_c00322{letter-spacing:-0.043307pt;}
.ls69_c00322{letter-spacing:-0.037120pt;}
.ls46_c00322{letter-spacing:-0.024747pt;}
.ls8c_c00322{letter-spacing:-0.018560pt;}
.ls8e_c00322{letter-spacing:-0.012373pt;}
.ls41_c00322{letter-spacing:-0.006187pt;}
.ls42_c00322{letter-spacing:0.000000pt;}
.ls2_c00322{letter-spacing:0.006187pt;}
.lsb_c00322{letter-spacing:0.012373pt;}
.ls3c_c00322{letter-spacing:0.030933pt;}
.ls12_c00322{letter-spacing:0.049493pt;}
.lsd_c00322{letter-spacing:0.055680pt;}
.ls16_c00322{letter-spacing:0.068053pt;}
.ls64_c00322{letter-spacing:0.080427pt;}
.ls20_c00322{letter-spacing:0.086613pt;}
.ls4_c00322{letter-spacing:0.092800pt;}
.lse_c00322{letter-spacing:0.105173pt;}
.ls2c_c00322{letter-spacing:0.111360pt;}
.ls3a_c00322{letter-spacing:0.136107pt;}
.ls3_c00322{letter-spacing:0.142293pt;}
.ls1a_c00322{letter-spacing:0.173227pt;}
.ls3d_c00322{letter-spacing:0.179413pt;}
.lsa_c00322{letter-spacing:0.191787pt;}
.lsc_c00322{letter-spacing:0.197973pt;}
.ls24_c00322{letter-spacing:0.204160pt;}
.ls7_c00322{letter-spacing:0.210347pt;}
.ls1d_c00322{letter-spacing:0.222720pt;}
.ls17_c00322{letter-spacing:0.247467pt;}
.ls33_c00322{letter-spacing:0.253653pt;}
.ls15_c00322{letter-spacing:0.272213pt;}
.ls8_c00322{letter-spacing:0.278400pt;}
.ls5_c00322{letter-spacing:0.284587pt;}
.ls18_c00322{letter-spacing:0.309333pt;}
.ls37_c00322{letter-spacing:0.315520pt;}
.ls1_c00322{letter-spacing:0.340267pt;}
.ls13_c00322{letter-spacing:0.352640pt;}
.ls3b_c00322{letter-spacing:0.371200pt;}
.ls19_c00322{letter-spacing:0.395947pt;}
.ls21_c00322{letter-spacing:0.408320pt;}
.ls39_c00322{letter-spacing:0.420693pt;}
.ls1e_c00322{letter-spacing:0.426880pt;}
.ls1f_c00322{letter-spacing:0.482560pt;}
.ls27_c00322{letter-spacing:0.494933pt;}
.ls10_c00322{letter-spacing:0.519680pt;}
.ls2e_c00322{letter-spacing:0.525867pt;}
.ls32_c00322{letter-spacing:0.538240pt;}
.ls1b_c00322{letter-spacing:0.575360pt;}
.ls28_c00322{letter-spacing:0.581547pt;}
.ls6_c00322{letter-spacing:0.600107pt;}
.ls11_c00322{letter-spacing:0.649600pt;}
.ls35_c00322{letter-spacing:0.661973pt;}
.ls1c_c00322{letter-spacing:0.674987pt;}
.ls26_c00322{letter-spacing:0.681013pt;}
.ls2a_c00322{letter-spacing:0.705280pt;}
.ls97_c00322{letter-spacing:0.729440pt;}
.lsf_c00322{letter-spacing:0.730027pt;}
.ls23_c00322{letter-spacing:0.736213pt;}
.ls2b_c00322{letter-spacing:0.816640pt;}
.ls7c_c00322{letter-spacing:0.826667pt;}
.ls25_c00322{letter-spacing:0.837707pt;}
.ls36_c00322{letter-spacing:0.847573pt;}
.ls31_c00322{letter-spacing:0.904000pt;}
.ls22_c00322{letter-spacing:0.940160pt;}
.ls61_c00322{letter-spacing:1.002240pt;}
.ls30_c00322{letter-spacing:1.006453pt;}
.ls0_c00322{letter-spacing:1.012480pt;}
.ls38_c00322{letter-spacing:1.051733pt;}
.ls2f_c00322{letter-spacing:1.054667pt;}
.ls3f_c00322{letter-spacing:1.061013pt;}
.ls14_c00322{letter-spacing:1.102880pt;}
.ls3e_c00322{letter-spacing:1.107413pt;}
.ls34_c00322{letter-spacing:1.286827pt;}
.ls2d_c00322{letter-spacing:1.565227pt;}
.ls87_c00322{letter-spacing:1.688960pt;}
.ls7b_c00322{letter-spacing:1.693623pt;}
.ls79_c00322{letter-spacing:1.706693pt;}
.ls29_c00322{letter-spacing:1.924053pt;}
.ls73_c00322{letter-spacing:2.121387pt;}
.ls78_c00322{letter-spacing:2.133333pt;}
.ls76_c00322{letter-spacing:2.160000pt;}
.ls72_c00322{letter-spacing:2.293333pt;}
.ls9_c00322{letter-spacing:2.567467pt;}
.ws3_c00322{word-spacing:-14.130347pt;}
.ws7_c00322{word-spacing:0.000000pt;}
.ws4_c00322{word-spacing:6.080533pt;}
.ws0_c00322{word-spacing:6.266347pt;}
.ws5_c00322{word-spacing:10.323787pt;}
.ws2_c00322{word-spacing:15.139733pt;}
.ws6_c00322{word-spacing:16.745067pt;}
.ws1_c00322{word-spacing:29.153280pt;}
._11_c00322{margin-left:-8.457173pt;}
._9_c00322{margin-left:-2.672640pt;}
._6_c00322{margin-left:-1.361067pt;}
._d_c00322{width:0.957227pt;}
._8_c00322{width:2.462293pt;}
._4_c00322{width:3.823360pt;}
._5_c00322{width:4.912213pt;}
._0_c00322{width:6.217600pt;}
._3_c00322{width:7.170347pt;}
._2_c00322{width:8.481920pt;}
._7_c00322{width:10.170880pt;}
._1_c00322{width:11.742293pt;}
._10_c00322{width:13.010560pt;}
._e_c00322{width:13.901440pt;}
._16_c00322{width:16.567893pt;}
._f_c00322{width:17.607253pt;}
._14_c00322{width:18.529067pt;}
._13_c00322{width:19.902507pt;}
._12_c00322{width:20.904747pt;}
._15_c00322{width:21.857493pt;}
._a_c00322{width:27.988480pt;}
._c_c00322{width:29.448533pt;}
._b_c00322{width:31.576747pt;}
.fs12_c00322{font-size:16.533333pt;}
.fs6_c00322{font-size:28.800533pt;}
.fsa_c00322{font-size:33.280000pt;}
.fs10_c00322{font-size:34.133867pt;}
.fs11_c00322{font-size:38.933867pt;}
.fs14_c00322{font-size:42.133867pt;}
.fsf_c00322{font-size:42.666667pt;}
.fse_c00322{font-size:43.200000pt;}
.fsd_c00322{font-size:43.733333pt;}
.fsc_c00322{font-size:44.800000pt;}
.fs9_c00322{font-size:45.866667pt;}
.fs5_c00322{font-size:46.080000pt;}
.fsb_c00322{font-size:46.933333pt;}
.fs4_c00322{font-size:47.360000pt;}
.fs15_c00322{font-size:51.733333pt;}
.fs0_c00322{font-size:52.266667pt;}
.fs1_c00322{font-size:60.266667pt;}
.fs2_c00322{font-size:61.866667pt;}
.fs3_c00322{font-size:62.400000pt;}
.fs8_c00322{font-size:66.133333pt;}
.fs13_c00322{font-size:67.733333pt;}
.fs7_c00322{font-size:96.533333pt;}
.y0_c00322{bottom:0.000000pt;}
.y1d_c00322{bottom:63.040000pt;}
.y1c_c00322{bottom:141.447467pt;}
.y1b_c00322{bottom:168.653333pt;}
.y1a_c00322{bottom:196.168533pt;}
.y18_c00322{bottom:224.327467pt;}
.y19_c00322{bottom:224.333333pt;}
.y17_c00322{bottom:251.533333pt;}
.y16_c00322{bottom:305.932267pt;}
.y15_c00322{bottom:332.813333pt;}
.y14_c00322{bottom:386.893333pt;}
.y13_c00322{bottom:414.733333pt;}
.y12_c00322{bottom:470.093333pt;}
.y11_c00322{bottom:472.653333pt;}
.y10_c00322{bottom:496.653333pt;}
.yf_c00322{bottom:551.360000pt;}
.ye_c00322{bottom:578.893333pt;}
.yd_c00322{bottom:633.607467pt;}
.yc_c00322{bottom:660.813333pt;}
.yb_c00322{bottom:714.880000pt;}
.ya_c00322{bottom:743.060267pt;}
.y9_c00322{bottom:770.560000pt;}
.y8_c00322{bottom:825.929600pt;}
.y7_c00322{bottom:855.053333pt;}
.y6_c00322{bottom:910.727467pt;}
.y5_c00322{bottom:937.933333pt;}
.y4_c00322{bottom:937.939200pt;}
.y3_c00322{bottom:964.804800pt;}
.y2_c00322{bottom:992.320000pt;}
.y1_c00322{bottom:1059.533333pt;}
.h14_c00322{height:16.662500pt;}
.hb_c00322{height:22.164480pt;}
.h5_c00322{height:31.541760pt;}
.h12_c00322{height:34.400537pt;}
.h13_c00322{height:40.606806pt;}
.h10_c00322{height:41.854167pt;}
.hf_c00322{height:42.398437pt;}
.h11_c00322{height:43.000000pt;}
.ha_c00322{height:45.015625pt;}
.he_c00322{height:45.612500pt;}
.hd_c00322{height:46.725000pt;}
.hc_c00322{height:48.950000pt;}
.h16_c00322{height:50.773437pt;}
.h2_c00322{height:52.675000pt;}
.h3_c00322{height:60.718750pt;}
.h6_c00322{height:60.733683pt;}
.h4_c00322{height:61.242187pt;}
.h8_c00322{height:62.856250pt;}
.h9_c00322{height:64.873958pt;}
.h15_c00322{height:66.476562pt;}
.h7_c00322{height:94.742188pt;}
.h1_c00322{height:1122.666667pt;}
.h0_c00322{height:1122.880000pt;}
.w1_c00322{width:793.333333pt;}
.w0_c00322{width:793.600000pt;}
.x0_c00322{left:0.000000pt;}
.x1_c00322{left:106.173333pt;}
.x9_c00322{left:107.073067pt;}
.x2_c00322{left:153.746667pt;}
.x1e_c00322{left:154.706667pt;}
.xc_c00322{left:163.040000pt;}
.x13_c00322{left:169.640000pt;}
.xd_c00322{left:190.093333pt;}
.x14_c00322{left:205.666667pt;}
.xe_c00322{left:212.813333pt;}
.x15_c00322{left:221.933333pt;}
.xb_c00322{left:237.280000pt;}
.x16_c00322{left:241.213333pt;}
.xf_c00322{left:253.346667pt;}
.x10_c00322{left:262.880000pt;}
.x17_c00322{left:273.866667pt;}
.x11_c00322{left:290.146667pt;}
.x12_c00322{left:312.813333pt;}
.x18_c00322{left:317.933333pt;}
.x7_c00322{left:325.600000pt;}
.x19_c00322{left:330.280000pt;}
.x8_c00322{left:341.733333pt;}
.x1a_c00322{left:342.986667pt;}
.x22_c00322{left:374.640000pt;}
.x1b_c00322{left:387.346667pt;}
.x1c_c00322{left:411.760000pt;}
.x5_c00322{left:421.440000pt;}
.x6_c00322{left:456.800000pt;}
.x3_c00322{left:480.826667pt;}
.x21_c00322{left:483.733333pt;}
.x4_c00322{left:497.386667pt;}
.x1f_c00322{left:541.546667pt;}
.x20_c00322{left:557.266667pt;}
.x1d_c00322{left:642.066667pt;}
.xa_c00322{left:652.000000pt;}
}





/* 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_c00323 {
    display:none;
  }
  .loading-indicator_c00323.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00323 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_c00323 { 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_c00323" -> "#page-container .classname_c00323")
 */
.pf_c00323 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00323 { /* 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_c00323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00323 { /* 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_c00323 { /* 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_c00323 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00323 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00323 {overflow:visible;}
  }
}
.c_c00323 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00323 { /* 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_c00323:after { /* webkit #35443 */
  content: '';
}
.t_c00323:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00323 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 */
}
.__c00323 { /* 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_c00323 { /* info for Javascript */
  display:none;
}
.l_c00323 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00323 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00323 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00323: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_c00323 {
    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_c00323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00323.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_c00323 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00323{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00323;src:url('chunks/assets/font_c3f2ed29f5192dbb6232798a.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.284668;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_c00323;src:url('chunks/assets/font_bc53b5a9bcf42191397bcb23.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.284180;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_c00323;src:url('chunks/assets/font_abdb343c8d3711fd7b114d18.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:0.666000;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_c00323;src:url('chunks/assets/font_0abbd32ba5d1e830de1d1c41.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;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;}
.m5_c00323{transform:matrix(0.101354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101354,0.000000,0.000000,0.250000,0,0);}
.m8_c00323{transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);}
.m7_c00323{transform:matrix(0.198852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198852,0.000000,0.000000,0.250000,0,0);}
.m2_c00323{transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);}
.m9_c00323{transform:matrix(0.207154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207154,0.000000,0.000000,0.250000,0,0);}
.m0_c00323{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m13_c00323{transform:matrix(0.235379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235379,0.000000,0.000000,0.250000,0,0);}
.mb_c00323{transform:matrix(0.240708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240708,0.000000,0.000000,0.250000,0,0);}
.m4_c00323{transform:matrix(0.243451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243451,0.000000,0.000000,0.250000,0,0);}
.m11_c00323{transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);}
.m6_c00323{transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);}
.mc_c00323{transform:matrix(0.243980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243980,0.000000,0.000000,0.250000,0,0);}
.m12_c00323{transform:matrix(0.244327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244327,0.000000,0.000000,0.250000,0,0);}
.m10_c00323{transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);}
.ma_c00323{transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);}
.m3_c00323{transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);}
.m1_c00323{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);}
.md_c00323{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.me_c00323{transform:matrix(0.272376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272376,0.000000,0.000000,0.250000,0,0);}
.mf_c00323{transform:matrix(0.324927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324927,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.v1_c00323{vertical-align:27.420000px;}
.ls4c_c00323{letter-spacing:-2.562000px;}
.ls4f_c00323{letter-spacing:-2.478000px;}
.ls51_c00323{letter-spacing:-2.457000px;}
.ls7c_c00323{letter-spacing:-2.407860px;}
.ls81_c00323{letter-spacing:-2.394000px;}
.ls92_c00323{letter-spacing:-2.352000px;}
.ls62_c00323{letter-spacing:-2.309580px;}
.ls6a_c00323{letter-spacing:-2.204280px;}
.ls7e_c00323{letter-spacing:-1.958580px;}
.ls6d_c00323{letter-spacing:-1.951560px;}
.ls63_c00323{letter-spacing:-1.635660px;}
.ls5f_c00323{letter-spacing:-1.509300px;}
.ls4e_c00323{letter-spacing:-1.495260px;}
.ls69_c00323{letter-spacing:-1.446120px;}
.ls90_c00323{letter-spacing:-1.411020px;}
.ls6b_c00323{letter-spacing:-1.333800px;}
.ls60_c00323{letter-spacing:-1.144260px;}
.ls59_c00323{letter-spacing:-0.989820px;}
.ls79_c00323{letter-spacing:-0.905580px;}
.ls72_c00323{letter-spacing:-0.856440px;}
.ls8f_c00323{letter-spacing:-0.832500px;}
.ls8a_c00323{letter-spacing:-0.828360px;}
.ls53_c00323{letter-spacing:-0.793260px;}
.ls5d_c00323{letter-spacing:-0.765180px;}
.ls7a_c00323{letter-spacing:-0.702000px;}
.ls61_c00323{letter-spacing:-0.666900px;}
.ls8d_c00323{letter-spacing:-0.659880px;}
.ls8c_c00323{letter-spacing:-0.610740px;}
.ls76_c00323{letter-spacing:-0.561600px;}
.ls88_c00323{letter-spacing:-0.554580px;}
.ls86_c00323{letter-spacing:-0.540540px;}
.ls74_c00323{letter-spacing:-0.533520px;}
.ls5a_c00323{letter-spacing:-0.514800px;}
.ls71_c00323{letter-spacing:-0.512460px;}
.ls67_c00323{letter-spacing:-0.470340px;}
.ls7b_c00323{letter-spacing:-0.456300px;}
.ls5e_c00323{letter-spacing:-0.393120px;}
.ls70_c00323{letter-spacing:-0.372060px;}
.ls84_c00323{letter-spacing:-0.365040px;}
.ls6e_c00323{letter-spacing:-0.343980px;}
.ls66_c00323{letter-spacing:-0.336960px;}
.ls87_c00323{letter-spacing:-0.329940px;}
.ls65_c00323{letter-spacing:-0.308880px;}
.ls7d_c00323{letter-spacing:-0.294840px;}
.ls78_c00323{letter-spacing:-0.273780px;}
.ls4d_c00323{letter-spacing:-0.259740px;}
.ls6c_c00323{letter-spacing:-0.245700px;}
.ls5c_c00323{letter-spacing:-0.196560px;}
.ls82_c00323{letter-spacing:-0.184680px;}
.ls75_c00323{letter-spacing:-0.154440px;}
.ls58_c00323{letter-spacing:-0.133380px;}
.ls52_c00323{letter-spacing:-0.126360px;}
.ls54_c00323{letter-spacing:-0.112320px;}
.ls7f_c00323{letter-spacing:-0.070200px;}
.ls73_c00323{letter-spacing:-0.063180px;}
.ls91_c00323{letter-spacing:-0.056160px;}
.ls85_c00323{letter-spacing:-0.042120px;}
.ls5b_c00323{letter-spacing:-0.014040px;}
.ls57_c00323{letter-spacing:-0.007020px;}
.ls55_c00323{letter-spacing:0.000000px;}
.ls17_c00323{letter-spacing:0.006900px;}
.ls2d_c00323{letter-spacing:0.007020px;}
.ls45_c00323{letter-spacing:0.021060px;}
.ls14_c00323{letter-spacing:0.035100px;}
.ls56_c00323{letter-spacing:0.049140px;}
.lsc_c00323{letter-spacing:0.056160px;}
.ls5_c00323{letter-spacing:0.077220px;}
.ls16_c00323{letter-spacing:0.091260px;}
.ls21_c00323{letter-spacing:0.098280px;}
.ls28_c00323{letter-spacing:0.105300px;}
.ls34_c00323{letter-spacing:0.119340px;}
.ls2f_c00323{letter-spacing:0.126360px;}
.lsd_c00323{letter-spacing:0.133380px;}
.ls2c_c00323{letter-spacing:0.140400px;}
.ls3e_c00323{letter-spacing:0.147420px;}
.ls37_c00323{letter-spacing:0.154440px;}
.ls2b_c00323{letter-spacing:0.161460px;}
.ls50_c00323{letter-spacing:0.175500px;}
.ls23_c00323{letter-spacing:0.182520px;}
.ls4a_c00323{letter-spacing:0.196560px;}
.ls3_c00323{letter-spacing:0.203580px;}
.ls4_c00323{letter-spacing:0.224640px;}
.ls77_c00323{letter-spacing:0.234600px;}
.lsa_c00323{letter-spacing:0.245700px;}
.ls15_c00323{letter-spacing:0.252720px;}
.ls29_c00323{letter-spacing:0.287820px;}
.ls47_c00323{letter-spacing:0.294840px;}
.ls26_c00323{letter-spacing:0.308880px;}
.ls6_c00323{letter-spacing:0.322920px;}
.ls68_c00323{letter-spacing:0.343980px;}
.ls7_c00323{letter-spacing:0.351000px;}
.ls9_c00323{letter-spacing:0.365040px;}
.ls25_c00323{letter-spacing:0.372060px;}
.ls3f_c00323{letter-spacing:0.379080px;}
.ls30_c00323{letter-spacing:0.393120px;}
.ls2e_c00323{letter-spacing:0.435240px;}
.ls10_c00323{letter-spacing:0.442260px;}
.ls44_c00323{letter-spacing:0.449280px;}
.lse_c00323{letter-spacing:0.456300px;}
.ls49_c00323{letter-spacing:0.463320px;}
.ls33_c00323{letter-spacing:0.470340px;}
.ls46_c00323{letter-spacing:0.491400px;}
.ls1f_c00323{letter-spacing:0.505440px;}
.ls18_c00323{letter-spacing:0.510600px;}
.ls22_c00323{letter-spacing:0.512460px;}
.ls40_c00323{letter-spacing:0.547560px;}
.ls2_c00323{letter-spacing:0.554580px;}
.ls24_c00323{letter-spacing:0.561600px;}
.ls12_c00323{letter-spacing:0.575640px;}
.ls19_c00323{letter-spacing:0.638820px;}
.ls42_c00323{letter-spacing:0.652860px;}
.ls6f_c00323{letter-spacing:0.659880px;}
.ls2a_c00323{letter-spacing:0.694980px;}
.ls1e_c00323{letter-spacing:0.723060px;}
.ls1a_c00323{letter-spacing:0.737100px;}
.ls8_c00323{letter-spacing:0.745200px;}
.ls20_c00323{letter-spacing:0.758160px;}
.ls4b_c00323{letter-spacing:0.779220px;}
.ls0_c00323{letter-spacing:0.786600px;}
.ls41_c00323{letter-spacing:0.793260px;}
.ls27_c00323{letter-spacing:0.807300px;}
.ls8b_c00323{letter-spacing:0.842400px;}
.ls1c_c00323{letter-spacing:0.856440px;}
.ls11_c00323{letter-spacing:0.869400px;}
.ls3b_c00323{letter-spacing:0.896040px;}
.ls48_c00323{letter-spacing:0.905580px;}
.ls83_c00323{letter-spacing:0.916560px;}
.ls1b_c00323{letter-spacing:0.968760px;}
.ls1_c00323{letter-spacing:0.975780px;}
.ls64_c00323{letter-spacing:1.088100px;}
.ls32_c00323{letter-spacing:1.109160px;}
.ls43_c00323{letter-spacing:1.144260px;}
.ls35_c00323{letter-spacing:1.172340px;}
.ls80_c00323{letter-spacing:1.217520px;}
.ls39_c00323{letter-spacing:1.224360px;}
.ls13_c00323{letter-spacing:1.263600px;}
.ls3c_c00323{letter-spacing:1.422720px;}
.lsf_c00323{letter-spacing:1.425060px;}
.ls36_c00323{letter-spacing:1.446120px;}
.ls3d_c00323{letter-spacing:1.607400px;}
.ls1d_c00323{letter-spacing:1.769040px;}
.ls38_c00323{letter-spacing:2.202480px;}
.lsb_c00323{letter-spacing:2.414880px;}
.ls89_c00323{letter-spacing:2.485080px;}
.ls3a_c00323{letter-spacing:2.961720px;}
.ls31_c00323{letter-spacing:3.130920px;}
.ls8e_c00323{letter-spacing:3.510000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{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__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00323{word-spacing:-16.883100px;}
.ws5_c00323{word-spacing:0.000000px;}
.ws4_c00323{word-spacing:13.349400px;}
.ws1_c00323{word-spacing:15.327000px;}
.ws3_c00323{word-spacing:15.558000px;}
.ws0_c00323{word-spacing:17.856600px;}
._9_c00323{margin-left:-5.519040px;}
._12_c00323{margin-left:-3.818880px;}
._b_c00323{margin-left:-2.449980px;}
._3_c00323{margin-left:-1.375920px;}
._4_c00323{width:1.460160px;}
._5_c00323{width:2.892240px;}
._8_c00323{width:3.914280px;}
._a_c00323{width:5.419440px;}
._10_c00323{width:7.039080px;}
._11_c00323{width:8.118000px;}
._f_c00323{width:9.359640px;}
._6_c00323{width:10.576800px;}
._c_c00323{width:11.976120px;}
._1_c00323{width:13.260780px;}
._7_c00323{width:14.345460px;}
._0_c00323{width:15.418260px;}
._e_c00323{width:19.155240px;}
._d_c00323{width:20.233980px;}
._2_c00323{width:22.506120px;}
._13_c00323{width:25.379640px;}
._17_c00323{width:26.700960px;}
._14_c00323{width:28.782000px;}
._15_c00323{width:29.905200px;}
._16_c00323{width:32.613180px;}
._18_c00323{width:36.339300px;}
.fc0_c00323{color:transparent;}
.fs6_c00323{font-size:32.400600px;}
.fs4_c00323{font-size:53.280000px;}
.fs5_c00323{font-size:66.000000px;}
.fs8_c00323{font-size:66.600000px;}
.fs9_c00323{font-size:67.200000px;}
.fs7_c00323{font-size:68.400000px;}
.fs1_c00323{font-size:69.000000px;}
.fs2_c00323{font-size:70.200000px;}
.fs3_c00323{font-size:70.800000px;}
.fs0_c00323{font-size:73.200000px;}
.y0_c00323{bottom:0.000000px;}
.y1f_c00323{bottom:69.855000px;}
.y1e_c00323{bottom:125.634150px;}
.y1c_c00323{bottom:158.387400px;}
.y1d_c00323{bottom:158.400000px;}
.y1b_c00323{bottom:188.994600px;}
.y1a_c00323{bottom:219.601800px;}
.y19_c00323{bottom:250.560000px;}
.y18_c00323{bottom:281.520000px;}
.y17_c00323{bottom:312.490950px;}
.y16_c00323{bottom:342.729600px;}
.y15_c00323{bottom:404.277450px;}
.y14_c00323{bottom:466.193850px;}
.y13_c00323{bottom:527.408250px;}
.y12_c00323{bottom:558.735000px;}
.y11_c00323{bottom:589.696800px;}
.y10_c00323{bottom:620.655000px;}
.yf_c00323{bottom:620.659350px;}
.yd_c00323{bottom:651.590250px;}
.ye_c00323{bottom:651.600000px;}
.yc_c00323{bottom:682.197450px;}
.yb_c00323{bottom:743.780400px;}
.ya_c00323{bottom:805.696800px;}
.y9_c00323{bottom:836.655000px;}
.y8_c00323{bottom:898.567800px;}
.y7_c00323{bottom:929.175000px;}
.y6_c00323{bottom:989.999250px;}
.y5_c00323{bottom:1020.975000px;}
.y3_c00323{bottom:1083.234600px;}
.y4_c00323{bottom:1083.240000px;}
.y2_c00323{bottom:1116.720000px;}
.y1_c00323{bottom:1193.775000px;}
.h5_c00323{height:35.484480px;}
.h8_c00323{height:65.364258px;}
.h9_c00323{height:65.953125px;}
.h7_c00323{height:67.130859px;}
.h3_c00323{height:68.897461px;}
.h6_c00323{height:68.900461px;}
.h4_c00323{height:69.486328px;}
.h2_c00323{height:71.841797px;}
.h1_c00323{height:1263.000000px;}
.h0_c00323{height:1263.240000px;}
.w1_c00323{width:892.500000px;}
.w0_c00323{width:892.800000px;}
.x0_c00323{left:0.000000px;}
.xe_c00323{left:117.667800px;}
.x5_c00323{left:119.140200px;}
.x1_c00323{left:120.165000px;}
.x16_c00323{left:168.315000px;}
.x15_c00323{left:170.803800px;}
.xd_c00323{left:171.870000px;}
.x2_c00323{left:172.965000px;}
.x6_c00323{left:183.525000px;}
.x19_c00323{left:203.190000px;}
.x7_c00323{left:206.175000px;}
.x1a_c00323{left:228.825000px;}
.x8_c00323{left:238.425000px;}
.x17_c00323{left:242.250000px;}
.x1b_c00323{left:250.650000px;}
.x1c_c00323{left:280.575000px;}
.x1d_c00323{left:306.765000px;}
.x13_c00323{left:313.410000px;}
.x14_c00323{left:332.115000px;}
.x1e_c00323{left:380.115000px;}
.x1f_c00323{left:395.760000px;}
.x20_c00323{left:417.645000px;}
.x23_c00323{left:421.470000px;}
.x21_c00323{left:436.965000px;}
.x11_c00323{left:449.145000px;}
.x9_c00323{left:451.815000px;}
.xf_c00323{left:465.495000px;}
.x12_c00323{left:471.075000px;}
.xa_c00323{left:472.890000px;}
.x22_c00323{left:487.035000px;}
.x10_c00323{left:521.385000px;}
.x18_c00323{left:530.475000px;}
.x3_c00323{left:605.055000px;}
.xb_c00323{left:639.975000px;}
.x4_c00323{left:642.060000px;}
.xc_c00323{left:661.935000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.v1_c00323{vertical-align:24.373333pt;}
.ls4c_c00323{letter-spacing:-2.277333pt;}
.ls4f_c00323{letter-spacing:-2.202667pt;}
.ls51_c00323{letter-spacing:-2.184000pt;}
.ls7c_c00323{letter-spacing:-2.140320pt;}
.ls81_c00323{letter-spacing:-2.128000pt;}
.ls92_c00323{letter-spacing:-2.090667pt;}
.ls62_c00323{letter-spacing:-2.052960pt;}
.ls6a_c00323{letter-spacing:-1.959360pt;}
.ls7e_c00323{letter-spacing:-1.740960pt;}
.ls6d_c00323{letter-spacing:-1.734720pt;}
.ls63_c00323{letter-spacing:-1.453920pt;}
.ls5f_c00323{letter-spacing:-1.341600pt;}
.ls4e_c00323{letter-spacing:-1.329120pt;}
.ls69_c00323{letter-spacing:-1.285440pt;}
.ls90_c00323{letter-spacing:-1.254240pt;}
.ls6b_c00323{letter-spacing:-1.185600pt;}
.ls60_c00323{letter-spacing:-1.017120pt;}
.ls59_c00323{letter-spacing:-0.879840pt;}
.ls79_c00323{letter-spacing:-0.804960pt;}
.ls72_c00323{letter-spacing:-0.761280pt;}
.ls8f_c00323{letter-spacing:-0.740000pt;}
.ls8a_c00323{letter-spacing:-0.736320pt;}
.ls53_c00323{letter-spacing:-0.705120pt;}
.ls5d_c00323{letter-spacing:-0.680160pt;}
.ls7a_c00323{letter-spacing:-0.624000pt;}
.ls61_c00323{letter-spacing:-0.592800pt;}
.ls8d_c00323{letter-spacing:-0.586560pt;}
.ls8c_c00323{letter-spacing:-0.542880pt;}
.ls76_c00323{letter-spacing:-0.499200pt;}
.ls88_c00323{letter-spacing:-0.492960pt;}
.ls86_c00323{letter-spacing:-0.480480pt;}
.ls74_c00323{letter-spacing:-0.474240pt;}
.ls5a_c00323{letter-spacing:-0.457600pt;}
.ls71_c00323{letter-spacing:-0.455520pt;}
.ls67_c00323{letter-spacing:-0.418080pt;}
.ls7b_c00323{letter-spacing:-0.405600pt;}
.ls5e_c00323{letter-spacing:-0.349440pt;}
.ls70_c00323{letter-spacing:-0.330720pt;}
.ls84_c00323{letter-spacing:-0.324480pt;}
.ls6e_c00323{letter-spacing:-0.305760pt;}
.ls66_c00323{letter-spacing:-0.299520pt;}
.ls87_c00323{letter-spacing:-0.293280pt;}
.ls65_c00323{letter-spacing:-0.274560pt;}
.ls7d_c00323{letter-spacing:-0.262080pt;}
.ls78_c00323{letter-spacing:-0.243360pt;}
.ls4d_c00323{letter-spacing:-0.230880pt;}
.ls6c_c00323{letter-spacing:-0.218400pt;}
.ls5c_c00323{letter-spacing:-0.174720pt;}
.ls82_c00323{letter-spacing:-0.164160pt;}
.ls75_c00323{letter-spacing:-0.137280pt;}
.ls58_c00323{letter-spacing:-0.118560pt;}
.ls52_c00323{letter-spacing:-0.112320pt;}
.ls54_c00323{letter-spacing:-0.099840pt;}
.ls7f_c00323{letter-spacing:-0.062400pt;}
.ls73_c00323{letter-spacing:-0.056160pt;}
.ls91_c00323{letter-spacing:-0.049920pt;}
.ls85_c00323{letter-spacing:-0.037440pt;}
.ls5b_c00323{letter-spacing:-0.012480pt;}
.ls57_c00323{letter-spacing:-0.006240pt;}
.ls55_c00323{letter-spacing:0.000000pt;}
.ls17_c00323{letter-spacing:0.006133pt;}
.ls2d_c00323{letter-spacing:0.006240pt;}
.ls45_c00323{letter-spacing:0.018720pt;}
.ls14_c00323{letter-spacing:0.031200pt;}
.ls56_c00323{letter-spacing:0.043680pt;}
.lsc_c00323{letter-spacing:0.049920pt;}
.ls5_c00323{letter-spacing:0.068640pt;}
.ls16_c00323{letter-spacing:0.081120pt;}
.ls21_c00323{letter-spacing:0.087360pt;}
.ls28_c00323{letter-spacing:0.093600pt;}
.ls34_c00323{letter-spacing:0.106080pt;}
.ls2f_c00323{letter-spacing:0.112320pt;}
.lsd_c00323{letter-spacing:0.118560pt;}
.ls2c_c00323{letter-spacing:0.124800pt;}
.ls3e_c00323{letter-spacing:0.131040pt;}
.ls37_c00323{letter-spacing:0.137280pt;}
.ls2b_c00323{letter-spacing:0.143520pt;}
.ls50_c00323{letter-spacing:0.156000pt;}
.ls23_c00323{letter-spacing:0.162240pt;}
.ls4a_c00323{letter-spacing:0.174720pt;}
.ls3_c00323{letter-spacing:0.180960pt;}
.ls4_c00323{letter-spacing:0.199680pt;}
.ls77_c00323{letter-spacing:0.208533pt;}
.lsa_c00323{letter-spacing:0.218400pt;}
.ls15_c00323{letter-spacing:0.224640pt;}
.ls29_c00323{letter-spacing:0.255840pt;}
.ls47_c00323{letter-spacing:0.262080pt;}
.ls26_c00323{letter-spacing:0.274560pt;}
.ls6_c00323{letter-spacing:0.287040pt;}
.ls68_c00323{letter-spacing:0.305760pt;}
.ls7_c00323{letter-spacing:0.312000pt;}
.ls9_c00323{letter-spacing:0.324480pt;}
.ls25_c00323{letter-spacing:0.330720pt;}
.ls3f_c00323{letter-spacing:0.336960pt;}
.ls30_c00323{letter-spacing:0.349440pt;}
.ls2e_c00323{letter-spacing:0.386880pt;}
.ls10_c00323{letter-spacing:0.393120pt;}
.ls44_c00323{letter-spacing:0.399360pt;}
.lse_c00323{letter-spacing:0.405600pt;}
.ls49_c00323{letter-spacing:0.411840pt;}
.ls33_c00323{letter-spacing:0.418080pt;}
.ls46_c00323{letter-spacing:0.436800pt;}
.ls1f_c00323{letter-spacing:0.449280pt;}
.ls18_c00323{letter-spacing:0.453867pt;}
.ls22_c00323{letter-spacing:0.455520pt;}
.ls40_c00323{letter-spacing:0.486720pt;}
.ls2_c00323{letter-spacing:0.492960pt;}
.ls24_c00323{letter-spacing:0.499200pt;}
.ls12_c00323{letter-spacing:0.511680pt;}
.ls19_c00323{letter-spacing:0.567840pt;}
.ls42_c00323{letter-spacing:0.580320pt;}
.ls6f_c00323{letter-spacing:0.586560pt;}
.ls2a_c00323{letter-spacing:0.617760pt;}
.ls1e_c00323{letter-spacing:0.642720pt;}
.ls1a_c00323{letter-spacing:0.655200pt;}
.ls8_c00323{letter-spacing:0.662400pt;}
.ls20_c00323{letter-spacing:0.673920pt;}
.ls4b_c00323{letter-spacing:0.692640pt;}
.ls0_c00323{letter-spacing:0.699200pt;}
.ls41_c00323{letter-spacing:0.705120pt;}
.ls27_c00323{letter-spacing:0.717600pt;}
.ls8b_c00323{letter-spacing:0.748800pt;}
.ls1c_c00323{letter-spacing:0.761280pt;}
.ls11_c00323{letter-spacing:0.772800pt;}
.ls3b_c00323{letter-spacing:0.796480pt;}
.ls48_c00323{letter-spacing:0.804960pt;}
.ls83_c00323{letter-spacing:0.814720pt;}
.ls1b_c00323{letter-spacing:0.861120pt;}
.ls1_c00323{letter-spacing:0.867360pt;}
.ls64_c00323{letter-spacing:0.967200pt;}
.ls32_c00323{letter-spacing:0.985920pt;}
.ls43_c00323{letter-spacing:1.017120pt;}
.ls35_c00323{letter-spacing:1.042080pt;}
.ls80_c00323{letter-spacing:1.082240pt;}
.ls39_c00323{letter-spacing:1.088320pt;}
.ls13_c00323{letter-spacing:1.123200pt;}
.ls3c_c00323{letter-spacing:1.264640pt;}
.lsf_c00323{letter-spacing:1.266720pt;}
.ls36_c00323{letter-spacing:1.285440pt;}
.ls3d_c00323{letter-spacing:1.428800pt;}
.ls1d_c00323{letter-spacing:1.572480pt;}
.ls38_c00323{letter-spacing:1.957760pt;}
.lsb_c00323{letter-spacing:2.146560pt;}
.ls89_c00323{letter-spacing:2.208960pt;}
.ls3a_c00323{letter-spacing:2.632640pt;}
.ls31_c00323{letter-spacing:2.783040pt;}
.ls8e_c00323{letter-spacing:3.120000pt;}
.ws2_c00323{word-spacing:-15.007200pt;}
.ws5_c00323{word-spacing:0.000000pt;}
.ws4_c00323{word-spacing:11.866133pt;}
.ws1_c00323{word-spacing:13.624000pt;}
.ws3_c00323{word-spacing:13.829333pt;}
.ws0_c00323{word-spacing:15.872533pt;}
._9_c00323{margin-left:-4.905813pt;}
._12_c00323{margin-left:-3.394560pt;}
._b_c00323{margin-left:-2.177760pt;}
._3_c00323{margin-left:-1.223040pt;}
._4_c00323{width:1.297920pt;}
._5_c00323{width:2.570880pt;}
._8_c00323{width:3.479360pt;}
._a_c00323{width:4.817280pt;}
._10_c00323{width:6.256960pt;}
._11_c00323{width:7.216000pt;}
._f_c00323{width:8.319680pt;}
._6_c00323{width:9.401600pt;}
._c_c00323{width:10.645440pt;}
._1_c00323{width:11.787360pt;}
._7_c00323{width:12.751520pt;}
._0_c00323{width:13.705120pt;}
._e_c00323{width:17.026880pt;}
._d_c00323{width:17.985760pt;}
._2_c00323{width:20.005440pt;}
._13_c00323{width:22.559680pt;}
._17_c00323{width:23.734187pt;}
._14_c00323{width:25.584000pt;}
._15_c00323{width:26.582400pt;}
._16_c00323{width:28.989493pt;}
._18_c00323{width:32.301600pt;}
.fs6_c00323{font-size:28.800533pt;}
.fs4_c00323{font-size:47.360000pt;}
.fs5_c00323{font-size:58.666667pt;}
.fs8_c00323{font-size:59.200000pt;}
.fs9_c00323{font-size:59.733333pt;}
.fs7_c00323{font-size:60.800000pt;}
.fs1_c00323{font-size:61.333333pt;}
.fs2_c00323{font-size:62.400000pt;}
.fs3_c00323{font-size:62.933333pt;}
.fs0_c00323{font-size:65.066667pt;}
.y0_c00323{bottom:0.000000pt;}
.y1f_c00323{bottom:62.093333pt;}
.y1e_c00323{bottom:111.674800pt;}
.y1c_c00323{bottom:140.788800pt;}
.y1d_c00323{bottom:140.800000pt;}
.y1b_c00323{bottom:167.995200pt;}
.y1a_c00323{bottom:195.201600pt;}
.y19_c00323{bottom:222.720000pt;}
.y18_c00323{bottom:250.240000pt;}
.y17_c00323{bottom:277.769733pt;}
.y16_c00323{bottom:304.648533pt;}
.y15_c00323{bottom:359.357733pt;}
.y14_c00323{bottom:414.394533pt;}
.y13_c00323{bottom:468.807333pt;}
.y12_c00323{bottom:496.653333pt;}
.y11_c00323{bottom:524.174933pt;}
.y10_c00323{bottom:551.693333pt;}
.yf_c00323{bottom:551.697200pt;}
.yd_c00323{bottom:579.191333pt;}
.ye_c00323{bottom:579.200000pt;}
.yc_c00323{bottom:606.397733pt;}
.yb_c00323{bottom:661.138133pt;}
.ya_c00323{bottom:716.174933pt;}
.y9_c00323{bottom:743.693333pt;}
.y8_c00323{bottom:798.726933pt;}
.y7_c00323{bottom:825.933333pt;}
.y6_c00323{bottom:879.999333pt;}
.y5_c00323{bottom:907.533333pt;}
.y3_c00323{bottom:962.875200pt;}
.y4_c00323{bottom:962.880000pt;}
.y2_c00323{bottom:992.640000pt;}
.y1_c00323{bottom:1061.133333pt;}
.h5_c00323{height:31.541760pt;}
.h8_c00323{height:58.101562pt;}
.h9_c00323{height:58.625000pt;}
.h7_c00323{height:59.671875pt;}
.h3_c00323{height:61.242187pt;}
.h6_c00323{height:61.244854pt;}
.h4_c00323{height:61.765625pt;}
.h2_c00323{height:63.859375pt;}
.h1_c00323{height:1122.666667pt;}
.h0_c00323{height:1122.880000pt;}
.w1_c00323{width:793.333333pt;}
.w0_c00323{width:793.600000pt;}
.x0_c00323{left:0.000000pt;}
.xe_c00323{left:104.593600pt;}
.x5_c00323{left:105.902400pt;}
.x1_c00323{left:106.813333pt;}
.x16_c00323{left:149.613333pt;}
.x15_c00323{left:151.825600pt;}
.xd_c00323{left:152.773333pt;}
.x2_c00323{left:153.746667pt;}
.x6_c00323{left:163.133333pt;}
.x19_c00323{left:180.613333pt;}
.x7_c00323{left:183.266667pt;}
.x1a_c00323{left:203.400000pt;}
.x8_c00323{left:211.933333pt;}
.x17_c00323{left:215.333333pt;}
.x1b_c00323{left:222.800000pt;}
.x1c_c00323{left:249.400000pt;}
.x1d_c00323{left:272.680000pt;}
.x13_c00323{left:278.586667pt;}
.x14_c00323{left:295.213333pt;}
.x1e_c00323{left:337.880000pt;}
.x1f_c00323{left:351.786667pt;}
.x20_c00323{left:371.240000pt;}
.x23_c00323{left:374.640000pt;}
.x21_c00323{left:388.413333pt;}
.x11_c00323{left:399.240000pt;}
.x9_c00323{left:401.613333pt;}
.xf_c00323{left:413.773333pt;}
.x12_c00323{left:418.733333pt;}
.xa_c00323{left:420.346667pt;}
.x22_c00323{left:432.920000pt;}
.x10_c00323{left:463.453333pt;}
.x18_c00323{left:471.533333pt;}
.x3_c00323{left:537.826667pt;}
.xb_c00323{left:568.866667pt;}
.x4_c00323{left:570.720000pt;}
.xc_c00323{left:588.386667pt;}
}





/* 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_c00324 {
    display:none;
  }
  .loading-indicator_c00324.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00324 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_c00324 { 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_c00324" -> "#page-container .classname_c00324")
 */
.pf_c00324 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00324 { /* 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_c00324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00324 { /* 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_c00324 { /* 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_c00324 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00324 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00324 {overflow:visible;}
  }
}
.c_c00324 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00324 { /* 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_c00324:after { /* webkit #35443 */
  content: '';
}
.t_c00324:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00324 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 */
}
.__c00324 { /* 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_c00324 { /* info for Javascript */
  display:none;
}
.l_c00324 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00324 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00324 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00324: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_c00324 {
    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_c00324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00324.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_c00324 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00324{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00324;src:url('chunks/assets/font_daa48ef364f48cb7b0587a8f.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.284180;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_c00324;src:url('chunks/assets/font_a453bb002d47dd52a054764b.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.284668;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_c00324;src:url('chunks/assets/font_e9dc5e2f86f5e0267006209a.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:0.666000;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;}
.m1_c00324{transform:matrix(0.049465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049465,0.000000,0.000000,0.250000,0,0);}
.m0_c00324{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);}
.v0_c00324{vertical-align:0.000000px;}
.v1_c00324{vertical-align:69.133200px;}
.ls8_c00324{letter-spacing:-1.392840px;}
.lsd_c00324{letter-spacing:0.000000px;}
.lsb_c00324{letter-spacing:0.330720px;}
.ls5_c00324{letter-spacing:0.833160px;}
.ls4_c00324{letter-spacing:0.871320px;}
.ls9_c00324{letter-spacing:0.884040px;}
.ls3_c00324{letter-spacing:0.928560px;}
.ls0_c00324{letter-spacing:1.093920px;}
.lsa_c00324{letter-spacing:1.189320px;}
.ls2_c00324{letter-spacing:1.227480px;}
.ls6_c00324{letter-spacing:1.265640px;}
.lsc_c00324{letter-spacing:1.811580px;}
.ls1_c00324{letter-spacing:2.009760px;}
.ls7_c00324{letter-spacing:2.295540px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{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__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00324{word-spacing:-4.223040px;}
.ws2_c00324{word-spacing:-2.149680px;}
.ws3_c00324{word-spacing:-0.928560px;}
.ws4_c00324{word-spacing:0.000000px;}
.ws0_c00324{word-spacing:1.691760px;}
._2_c00324{margin-left:-4.950780px;}
._0_c00324{width:1.679040px;}
._1_c00324{width:349.272120px;}
.fc0_c00324{color:transparent;}
.fs0_c00324{font-size:63.600000px;}
.fs1_c00324{font-size:65.400000px;}
.fs2_c00324{font-size:269.280000px;}
.y0_c00324{bottom:0.000000px;}
.y3_c00324{bottom:147.954315px;}
.y2_c00324{bottom:149.035515px;}
.y1_c00324{bottom:167.400015px;}
.y5_c00324{bottom:902.880015px;}
.y4_c00324{bottom:1142.295015px;}
.h2_c00324{height:62.388867px;}
.h4_c00324{height:64.186523px;}
.h3_c00324{height:131.522067px;}
.h5_c00324{height:179.340480px;}
.h1_c00324{height:1263.000000px;}
.h0_c00324{height:1263.240015px;}
.w1_c00324{width:892.500000px;}
.w0_c00324{width:892.800015px;}
.x0_c00324{left:0.000000px;}
.x2_c00324{left:119.115615px;}
.x1_c00324{left:121.755015px;}
.x3_c00324{left:385.440615px;}
.x4_c00324{left:676.710015px;}
.x5_c00324{left:733.680015px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.v1_c00324{vertical-align:61.451733pt;}
.ls8_c00324{letter-spacing:-1.238080pt;}
.lsd_c00324{letter-spacing:0.000000pt;}
.lsb_c00324{letter-spacing:0.293973pt;}
.ls5_c00324{letter-spacing:0.740587pt;}
.ls4_c00324{letter-spacing:0.774507pt;}
.ls9_c00324{letter-spacing:0.785813pt;}
.ls3_c00324{letter-spacing:0.825387pt;}
.ls0_c00324{letter-spacing:0.972373pt;}
.lsa_c00324{letter-spacing:1.057173pt;}
.ls2_c00324{letter-spacing:1.091093pt;}
.ls6_c00324{letter-spacing:1.125013pt;}
.lsc_c00324{letter-spacing:1.610293pt;}
.ls1_c00324{letter-spacing:1.786453pt;}
.ls7_c00324{letter-spacing:2.040480pt;}
.ws1_c00324{word-spacing:-3.753813pt;}
.ws2_c00324{word-spacing:-1.910827pt;}
.ws3_c00324{word-spacing:-0.825387pt;}
.ws4_c00324{word-spacing:0.000000pt;}
.ws0_c00324{word-spacing:1.503787pt;}
._2_c00324{margin-left:-4.400693pt;}
._0_c00324{width:1.492480pt;}
._1_c00324{width:310.464107pt;}
.fs0_c00324{font-size:56.533333pt;}
.fs1_c00324{font-size:58.133333pt;}
.fs2_c00324{font-size:239.360000pt;}
.y0_c00324{bottom:0.000000pt;}
.y3_c00324{bottom:131.514947pt;}
.y2_c00324{bottom:132.476013pt;}
.y1_c00324{bottom:148.800013pt;}
.y5_c00324{bottom:802.560013pt;}
.y4_c00324{bottom:1015.373347pt;}
.h2_c00324{height:55.456771pt;}
.h4_c00324{height:57.054688pt;}
.h3_c00324{height:116.908504pt;}
.h5_c00324{height:159.413760pt;}
.h1_c00324{height:1122.666667pt;}
.h0_c00324{height:1122.880013pt;}
.w1_c00324{width:793.333333pt;}
.w0_c00324{width:793.600013pt;}
.x0_c00324{left:0.000000pt;}
.x2_c00324{left:105.880547pt;}
.x1_c00324{left:108.226680pt;}
.x3_c00324{left:342.613880pt;}
.x4_c00324{left:601.520013pt;}
.x5_c00324{left:652.160013pt;}
}





/* 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_c00325 {
    display:none;
  }
  .loading-indicator_c00325.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00325 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_c00325 { 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_c00325" -> "#page-container .classname_c00325")
 */
.pf_c00325 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00325 { /* 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_c00325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00325 { /* 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_c00325 { /* 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_c00325 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00325 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00325 {overflow:visible;}
  }
}
.c_c00325 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00325 { /* 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_c00325:after { /* webkit #35443 */
  content: '';
}
.t_c00325:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00325 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 */
}
.__c00325 { /* 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_c00325 { /* info for Javascript */
  display:none;
}
.l_c00325 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00325 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00325 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00325: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_c00325 {
    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_c00325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00325.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_c00325 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00325;src:url('chunks/assets/font_f88f4c32f6aa9a0b815c47b0.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.284668;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_c00325;src:url('chunks/assets/font_73b703af9f3c94bca0ffe550.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.284180;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;}
.m9_c00325{transform:matrix(0.191211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191211,0.000000,0.000000,0.250000,0,0);}
.m7_c00325{transform:matrix(0.193866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193866,0.000000,0.000000,0.250000,0,0);}
.m8_c00325{transform:matrix(0.196522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196522,0.000000,0.000000,0.250000,0,0);}
.m3_c00325{transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);}
.m0_c00325{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.mc_c00325{transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);}
.mb_c00325{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m4_c00325{transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);}
.ma_c00325{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m2_c00325{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m1_c00325{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);}
.m5_c00325{transform:matrix(0.255772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255772,0.000000,0.000000,0.250000,0,0);}
.m6_c00325{transform:matrix(0.257924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257924,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls60_c00325{letter-spacing:-2.415000px;}
.ls85_c00325{letter-spacing:-2.394000px;}
.ls59_c00325{letter-spacing:-2.352000px;}
.ls9a_c00325{letter-spacing:-2.159700px;}
.ls9f_c00325{letter-spacing:-2.016000px;}
.ls6f_c00325{letter-spacing:-1.959600px;}
.ls6c_c00325{letter-spacing:-1.649100px;}
.ls5d_c00325{letter-spacing:-1.635300px;}
.ls8b_c00325{letter-spacing:-1.538700px;}
.ls99_c00325{letter-spacing:-1.483500px;}
.ls6d_c00325{letter-spacing:-1.428300px;}
.ls78_c00325{letter-spacing:-1.324800px;}
.ls80_c00325{letter-spacing:-1.276500px;}
.ls6b_c00325{letter-spacing:-1.235100px;}
.ls7d_c00325{letter-spacing:-1.110900px;}
.ls77_c00325{letter-spacing:-1.083300px;}
.ls98_c00325{letter-spacing:-1.014300px;}
.ls8c_c00325{letter-spacing:-1.007400px;}
.ls62_c00325{letter-spacing:-0.993600px;}
.ls8e_c00325{letter-spacing:-0.966000px;}
.ls66_c00325{letter-spacing:-0.952200px;}
.ls61_c00325{letter-spacing:-0.903900px;}
.ls6e_c00325{letter-spacing:-0.876300px;}
.ls5c_c00325{letter-spacing:-0.862500px;}
.ls65_c00325{letter-spacing:-0.834900px;}
.ls92_c00325{letter-spacing:-0.821100px;}
.ls72_c00325{letter-spacing:-0.814200px;}
.ls8f_c00325{letter-spacing:-0.800400px;}
.ls90_c00325{letter-spacing:-0.752100px;}
.ls68_c00325{letter-spacing:-0.724500px;}
.ls74_c00325{letter-spacing:-0.710700px;}
.ls9e_c00325{letter-spacing:-0.696900px;}
.ls70_c00325{letter-spacing:-0.669300px;}
.ls97_c00325{letter-spacing:-0.648600px;}
.ls5a_c00325{letter-spacing:-0.586500px;}
.ls81_c00325{letter-spacing:-0.558900px;}
.ls73_c00325{letter-spacing:-0.517500px;}
.ls7e_c00325{letter-spacing:-0.469200px;}
.ls93_c00325{letter-spacing:-0.400200px;}
.ls96_c00325{letter-spacing:-0.393300px;}
.ls88_c00325{letter-spacing:-0.372600px;}
.ls91_c00325{letter-spacing:-0.345000px;}
.ls8d_c00325{letter-spacing:-0.338100px;}
.ls69_c00325{letter-spacing:-0.331200px;}
.ls9d_c00325{letter-spacing:-0.310500px;}
.ls9c_c00325{letter-spacing:-0.282900px;}
.ls87_c00325{letter-spacing:-0.255300px;}
.ls71_c00325{letter-spacing:-0.241500px;}
.ls9b_c00325{letter-spacing:-0.234600px;}
.ls7c_c00325{letter-spacing:-0.207000px;}
.ls5b_c00325{letter-spacing:-0.200100px;}
.ls95_c00325{letter-spacing:-0.158700px;}
.ls76_c00325{letter-spacing:-0.131100px;}
.ls7f_c00325{letter-spacing:-0.124200px;}
.ls67_c00325{letter-spacing:-0.117300px;}
.ls5f_c00325{letter-spacing:-0.089700px;}
.ls7b_c00325{letter-spacing:-0.082800px;}
.ls86_c00325{letter-spacing:-0.069000px;}
.ls83_c00325{letter-spacing:-0.062100px;}
.ls6a_c00325{letter-spacing:-0.055200px;}
.ls5e_c00325{letter-spacing:-0.041400px;}
.ls75_c00325{letter-spacing:-0.027600px;}
.ls94_c00325{letter-spacing:-0.020700px;}
.ls89_c00325{letter-spacing:-0.006900px;}
.ls63_c00325{letter-spacing:0.000000px;}
.ls20_c00325{letter-spacing:0.006900px;}
.ls64_c00325{letter-spacing:0.027600px;}
.ls14_c00325{letter-spacing:0.041400px;}
.ls8_c00325{letter-spacing:0.048300px;}
.ls38_c00325{letter-spacing:0.055200px;}
.ls34_c00325{letter-spacing:0.069000px;}
.ls15_c00325{letter-spacing:0.089700px;}
.ls1d_c00325{letter-spacing:0.103500px;}
.ls7a_c00325{letter-spacing:0.110400px;}
.ls2b_c00325{letter-spacing:0.117300px;}
.ls17_c00325{letter-spacing:0.131100px;}
.ls1b_c00325{letter-spacing:0.138000px;}
.ls6_c00325{letter-spacing:0.144900px;}
.ls4b_c00325{letter-spacing:0.151800px;}
.ls2f_c00325{letter-spacing:0.165600px;}
.ls4d_c00325{letter-spacing:0.172500px;}
.ls30_c00325{letter-spacing:0.207000px;}
.ls8a_c00325{letter-spacing:0.213900px;}
.ls11_c00325{letter-spacing:0.241500px;}
.ls3c_c00325{letter-spacing:0.248400px;}
.ls49_c00325{letter-spacing:0.255300px;}
.lsa_c00325{letter-spacing:0.269100px;}
.ls3a_c00325{letter-spacing:0.276000px;}
.ls47_c00325{letter-spacing:0.324300px;}
.ls5_c00325{letter-spacing:0.331200px;}
.ls55_c00325{letter-spacing:0.345000px;}
.ls18_c00325{letter-spacing:0.351900px;}
.ls84_c00325{letter-spacing:0.358800px;}
.ls52_c00325{letter-spacing:0.372600px;}
.ls4a_c00325{letter-spacing:0.379500px;}
.ls23_c00325{letter-spacing:0.386400px;}
.lsb_c00325{letter-spacing:0.393300px;}
.ls4e_c00325{letter-spacing:0.400200px;}
.ls22_c00325{letter-spacing:0.407100px;}
.ls2a_c00325{letter-spacing:0.434700px;}
.ls0_c00325{letter-spacing:0.441600px;}
.ls82_c00325{letter-spacing:0.448500px;}
.ls51_c00325{letter-spacing:0.462300px;}
.ls37_c00325{letter-spacing:0.476100px;}
.ls1a_c00325{letter-spacing:0.483000px;}
.lsf_c00325{letter-spacing:0.503700px;}
.ls26_c00325{letter-spacing:0.510600px;}
.ls46_c00325{letter-spacing:0.538200px;}
.ls21_c00325{letter-spacing:0.545100px;}
.ls58_c00325{letter-spacing:0.558900px;}
.ls27_c00325{letter-spacing:0.586500px;}
.ls42_c00325{letter-spacing:0.600300px;}
.ls9_c00325{letter-spacing:0.621000px;}
.ls7_c00325{letter-spacing:0.627900px;}
.ls12_c00325{letter-spacing:0.634800px;}
.ls25_c00325{letter-spacing:0.641700px;}
.ls57_c00325{letter-spacing:0.648600px;}
.ls2d_c00325{letter-spacing:0.662400px;}
.ls35_c00325{letter-spacing:0.669300px;}
.ls1c_c00325{letter-spacing:0.676200px;}
.ls3e_c00325{letter-spacing:0.683100px;}
.ls53_c00325{letter-spacing:0.731400px;}
.lse_c00325{letter-spacing:0.752100px;}
.ls13_c00325{letter-spacing:0.759000px;}
.ls40_c00325{letter-spacing:0.765900px;}
.ls54_c00325{letter-spacing:0.793500px;}
.ls1f_c00325{letter-spacing:0.855600px;}
.ls50_c00325{letter-spacing:0.876300px;}
.ls2c_c00325{letter-spacing:0.883200px;}
.ls19_c00325{letter-spacing:0.903900px;}
.ls3b_c00325{letter-spacing:0.924600px;}
.ls32_c00325{letter-spacing:0.954240px;}
.ls36_c00325{letter-spacing:0.972900px;}
.ls16_c00325{letter-spacing:0.979800px;}
.ls44_c00325{letter-spacing:1.000500px;}
.ls3f_c00325{letter-spacing:1.021200px;}
.ls4c_c00325{letter-spacing:1.028100px;}
.ls3d_c00325{letter-spacing:1.028160px;}
.ls43_c00325{letter-spacing:1.041900px;}
.ls1e_c00325{letter-spacing:1.097100px;}
.ls28_c00325{letter-spacing:1.124700px;}
.ls1_c00325{letter-spacing:1.142400px;}
.ls3_c00325{letter-spacing:1.290240px;}
.ls31_c00325{letter-spacing:1.359300px;}
.ls41_c00325{letter-spacing:1.386900px;}
.ls24_c00325{letter-spacing:1.400700px;}
.lsd_c00325{letter-spacing:1.411200px;}
.ls39_c00325{letter-spacing:1.469700px;}
.ls45_c00325{letter-spacing:1.490400px;}
.lsc_c00325{letter-spacing:1.491840px;}
.ls56_c00325{letter-spacing:1.600800px;}
.ls10_c00325{letter-spacing:1.628400px;}
.ls2_c00325{letter-spacing:1.733760px;}
.ls29_c00325{letter-spacing:1.842300px;}
.ls4f_c00325{letter-spacing:2.056200px;}
.ls4_c00325{letter-spacing:2.076900px;}
.ls48_c00325{letter-spacing:2.539200px;}
.ls2e_c00325{letter-spacing:2.559900px;}
.ls79_c00325{letter-spacing:3.450000px;}
.ls33_c00325{letter-spacing:21.242400px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{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__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00325{word-spacing:0.000000px;}
.ws0_c00325{word-spacing:12.432000px;}
.ws1_c00325{word-spacing:13.977600px;}
._10_c00325{margin-left:-10.120320px;}
._f_c00325{margin-left:-5.037000px;}
._1_c00325{margin-left:-3.998880px;}
._5_c00325{margin-left:-2.822100px;}
._2_c00325{margin-left:-1.452960px;}
._b_c00325{width:1.075200px;}
._9_c00325{width:2.744700px;}
._4_c00325{width:4.416000px;}
._0_c00325{width:6.490200px;}
._3_c00325{width:8.231700px;}
._a_c00325{width:9.591000px;}
._7_c00325{width:10.646700px;}
._8_c00325{width:11.718300px;}
._c_c00325{width:12.769800px;}
._6_c00325{width:13.841400px;}
._e_c00325{width:16.166700px;}
._d_c00325{width:17.853000px;}
._12_c00325{width:18.940500px;}
._11_c00325{width:22.408500px;}
.fc0_c00325{color:transparent;}
.fs3_c00325{font-size:57.600000px;}
.fs0_c00325{font-size:67.200000px;}
.fs2_c00325{font-size:68.400000px;}
.fs1_c00325{font-size:69.000000px;}
.y0_c00325{bottom:0.000000px;}
.y24_c00325{bottom:75.255006px;}
.y22_c00325{bottom:193.333506px;}
.y23_c00325{bottom:193.335006px;}
.y21_c00325{bottom:224.280006px;}
.y1f_c00325{bottom:255.611256px;}
.y20_c00325{bottom:255.615006px;}
.y1d_c00325{bottom:286.573506px;}
.y1e_c00325{bottom:286.575006px;}
.y1c_c00325{bottom:317.167506px;}
.y1b_c00325{bottom:348.131256px;}
.y1a_c00325{bottom:379.093506px;}
.y19_c00325{bottom:409.695006px;}
.y18_c00325{bottom:471.245256px;}
.y17_c00325{bottom:502.209006px;}
.y16_c00325{bottom:533.535006px;}
.y15_c00325{bottom:533.539506px;}
.y14_c00325{bottom:565.935006px;}
.y13_c00325{bottom:628.927506px;}
.y12_c00325{bottom:659.874006px;}
.y10_c00325{bottom:690.852006px;}
.y11_c00325{bottom:690.855006px;}
.yf_c00325{bottom:721.453506px;}
.yd_c00325{bottom:752.398506px;}
.ye_c00325{bottom:752.400006px;}
.yc_c00325{bottom:783.000006px;}
.yb_c00325{bottom:844.935006px;}
.ya_c00325{bottom:906.129006px;}
.y8_c00325{bottom:937.453506px;}
.y9_c00325{bottom:937.455006px;}
.y6_c00325{bottom:968.049756px;}
.y7_c00325{bottom:968.055006px;}
.y4_c00325{bottom:1029.613506px;}
.y5_c00325{bottom:1029.615006px;}
.y3_c00325{bottom:1060.215006px;}
.y2_c00325{bottom:1121.775006px;}
.y1_c00325{bottom:1197.000006px;}
.h7_c00325{height:56.531250px;}
.h2_c00325{height:65.953125px;}
.h4_c00325{height:67.130859px;}
.h3_c00325{height:67.719727px;}
.h5_c00325{height:67.725727px;}
.h6_c00325{height:67.749727px;}
.h1_c00325{height:1263.000000px;}
.h0_c00325{height:1263.240006px;}
.w1_c00325{width:892.500000px;}
.w0_c00325{width:892.799998px;}
.x0_c00325{left:0.000000px;}
.x1_c00325{left:121.244998px;}
.x10_c00325{left:122.965499px;}
.x2_c00325{left:175.214999px;}
.x4_c00325{left:177.756748px;}
.x1c_c00325{left:198.899999px;}
.x5_c00325{left:245.324998px;}
.x6_c00325{left:274.094999px;}
.x7_c00325{left:290.429999px;}
.x3_c00325{left:346.709999px;}
.x11_c00325{left:361.649999px;}
.x8_c00325{left:375.284999px;}
.x17_c00325{left:379.979999px;}
.x12_c00325{left:381.059999px;}
.xc_c00325{left:392.204998px;}
.x9_c00325{left:406.559999px;}
.xd_c00325{left:421.679999px;}
.x1d_c00325{left:422.909999px;}
.x19_c00325{left:436.514998px;}
.x1a_c00325{left:458.969998px;}
.x15_c00325{left:503.564998px;}
.xe_c00325{left:507.389998px;}
.xf_c00325{left:524.684999px;}
.x13_c00325{left:530.849999px;}
.x16_c00325{left:536.609998px;}
.x14_c00325{left:585.689999px;}
.x18_c00325{left:629.564999px;}
.xa_c00325{left:631.244999px;}
.xb_c00325{left:662.159999px;}
.x1b_c00325{left:730.994999px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls60_c00325{letter-spacing:-2.146667pt;}
.ls85_c00325{letter-spacing:-2.128000pt;}
.ls59_c00325{letter-spacing:-2.090667pt;}
.ls9a_c00325{letter-spacing:-1.919733pt;}
.ls9f_c00325{letter-spacing:-1.792000pt;}
.ls6f_c00325{letter-spacing:-1.741867pt;}
.ls6c_c00325{letter-spacing:-1.465867pt;}
.ls5d_c00325{letter-spacing:-1.453600pt;}
.ls8b_c00325{letter-spacing:-1.367733pt;}
.ls99_c00325{letter-spacing:-1.318667pt;}
.ls6d_c00325{letter-spacing:-1.269600pt;}
.ls78_c00325{letter-spacing:-1.177600pt;}
.ls80_c00325{letter-spacing:-1.134667pt;}
.ls6b_c00325{letter-spacing:-1.097867pt;}
.ls7d_c00325{letter-spacing:-0.987467pt;}
.ls77_c00325{letter-spacing:-0.962933pt;}
.ls98_c00325{letter-spacing:-0.901600pt;}
.ls8c_c00325{letter-spacing:-0.895467pt;}
.ls62_c00325{letter-spacing:-0.883200pt;}
.ls8e_c00325{letter-spacing:-0.858667pt;}
.ls66_c00325{letter-spacing:-0.846400pt;}
.ls61_c00325{letter-spacing:-0.803467pt;}
.ls6e_c00325{letter-spacing:-0.778933pt;}
.ls5c_c00325{letter-spacing:-0.766667pt;}
.ls65_c00325{letter-spacing:-0.742133pt;}
.ls92_c00325{letter-spacing:-0.729867pt;}
.ls72_c00325{letter-spacing:-0.723733pt;}
.ls8f_c00325{letter-spacing:-0.711467pt;}
.ls90_c00325{letter-spacing:-0.668533pt;}
.ls68_c00325{letter-spacing:-0.644000pt;}
.ls74_c00325{letter-spacing:-0.631733pt;}
.ls9e_c00325{letter-spacing:-0.619467pt;}
.ls70_c00325{letter-spacing:-0.594933pt;}
.ls97_c00325{letter-spacing:-0.576533pt;}
.ls5a_c00325{letter-spacing:-0.521333pt;}
.ls81_c00325{letter-spacing:-0.496800pt;}
.ls73_c00325{letter-spacing:-0.460000pt;}
.ls7e_c00325{letter-spacing:-0.417067pt;}
.ls93_c00325{letter-spacing:-0.355733pt;}
.ls96_c00325{letter-spacing:-0.349600pt;}
.ls88_c00325{letter-spacing:-0.331200pt;}
.ls91_c00325{letter-spacing:-0.306667pt;}
.ls8d_c00325{letter-spacing:-0.300533pt;}
.ls69_c00325{letter-spacing:-0.294400pt;}
.ls9d_c00325{letter-spacing:-0.276000pt;}
.ls9c_c00325{letter-spacing:-0.251467pt;}
.ls87_c00325{letter-spacing:-0.226933pt;}
.ls71_c00325{letter-spacing:-0.214667pt;}
.ls9b_c00325{letter-spacing:-0.208533pt;}
.ls7c_c00325{letter-spacing:-0.184000pt;}
.ls5b_c00325{letter-spacing:-0.177867pt;}
.ls95_c00325{letter-spacing:-0.141067pt;}
.ls76_c00325{letter-spacing:-0.116533pt;}
.ls7f_c00325{letter-spacing:-0.110400pt;}
.ls67_c00325{letter-spacing:-0.104267pt;}
.ls5f_c00325{letter-spacing:-0.079733pt;}
.ls7b_c00325{letter-spacing:-0.073600pt;}
.ls86_c00325{letter-spacing:-0.061333pt;}
.ls83_c00325{letter-spacing:-0.055200pt;}
.ls6a_c00325{letter-spacing:-0.049067pt;}
.ls5e_c00325{letter-spacing:-0.036800pt;}
.ls75_c00325{letter-spacing:-0.024533pt;}
.ls94_c00325{letter-spacing:-0.018400pt;}
.ls89_c00325{letter-spacing:-0.006133pt;}
.ls63_c00325{letter-spacing:0.000000pt;}
.ls20_c00325{letter-spacing:0.006133pt;}
.ls64_c00325{letter-spacing:0.024533pt;}
.ls14_c00325{letter-spacing:0.036800pt;}
.ls8_c00325{letter-spacing:0.042933pt;}
.ls38_c00325{letter-spacing:0.049067pt;}
.ls34_c00325{letter-spacing:0.061333pt;}
.ls15_c00325{letter-spacing:0.079733pt;}
.ls1d_c00325{letter-spacing:0.092000pt;}
.ls7a_c00325{letter-spacing:0.098133pt;}
.ls2b_c00325{letter-spacing:0.104267pt;}
.ls17_c00325{letter-spacing:0.116533pt;}
.ls1b_c00325{letter-spacing:0.122667pt;}
.ls6_c00325{letter-spacing:0.128800pt;}
.ls4b_c00325{letter-spacing:0.134933pt;}
.ls2f_c00325{letter-spacing:0.147200pt;}
.ls4d_c00325{letter-spacing:0.153333pt;}
.ls30_c00325{letter-spacing:0.184000pt;}
.ls8a_c00325{letter-spacing:0.190133pt;}
.ls11_c00325{letter-spacing:0.214667pt;}
.ls3c_c00325{letter-spacing:0.220800pt;}
.ls49_c00325{letter-spacing:0.226933pt;}
.lsa_c00325{letter-spacing:0.239200pt;}
.ls3a_c00325{letter-spacing:0.245333pt;}
.ls47_c00325{letter-spacing:0.288267pt;}
.ls5_c00325{letter-spacing:0.294400pt;}
.ls55_c00325{letter-spacing:0.306667pt;}
.ls18_c00325{letter-spacing:0.312800pt;}
.ls84_c00325{letter-spacing:0.318933pt;}
.ls52_c00325{letter-spacing:0.331200pt;}
.ls4a_c00325{letter-spacing:0.337333pt;}
.ls23_c00325{letter-spacing:0.343467pt;}
.lsb_c00325{letter-spacing:0.349600pt;}
.ls4e_c00325{letter-spacing:0.355733pt;}
.ls22_c00325{letter-spacing:0.361867pt;}
.ls2a_c00325{letter-spacing:0.386400pt;}
.ls0_c00325{letter-spacing:0.392533pt;}
.ls82_c00325{letter-spacing:0.398667pt;}
.ls51_c00325{letter-spacing:0.410933pt;}
.ls37_c00325{letter-spacing:0.423200pt;}
.ls1a_c00325{letter-spacing:0.429333pt;}
.lsf_c00325{letter-spacing:0.447733pt;}
.ls26_c00325{letter-spacing:0.453867pt;}
.ls46_c00325{letter-spacing:0.478400pt;}
.ls21_c00325{letter-spacing:0.484533pt;}
.ls58_c00325{letter-spacing:0.496800pt;}
.ls27_c00325{letter-spacing:0.521333pt;}
.ls42_c00325{letter-spacing:0.533600pt;}
.ls9_c00325{letter-spacing:0.552000pt;}
.ls7_c00325{letter-spacing:0.558133pt;}
.ls12_c00325{letter-spacing:0.564267pt;}
.ls25_c00325{letter-spacing:0.570400pt;}
.ls57_c00325{letter-spacing:0.576533pt;}
.ls2d_c00325{letter-spacing:0.588800pt;}
.ls35_c00325{letter-spacing:0.594933pt;}
.ls1c_c00325{letter-spacing:0.601067pt;}
.ls3e_c00325{letter-spacing:0.607200pt;}
.ls53_c00325{letter-spacing:0.650133pt;}
.lse_c00325{letter-spacing:0.668533pt;}
.ls13_c00325{letter-spacing:0.674667pt;}
.ls40_c00325{letter-spacing:0.680800pt;}
.ls54_c00325{letter-spacing:0.705333pt;}
.ls1f_c00325{letter-spacing:0.760533pt;}
.ls50_c00325{letter-spacing:0.778933pt;}
.ls2c_c00325{letter-spacing:0.785067pt;}
.ls19_c00325{letter-spacing:0.803467pt;}
.ls3b_c00325{letter-spacing:0.821867pt;}
.ls32_c00325{letter-spacing:0.848213pt;}
.ls36_c00325{letter-spacing:0.864800pt;}
.ls16_c00325{letter-spacing:0.870933pt;}
.ls44_c00325{letter-spacing:0.889333pt;}
.ls3f_c00325{letter-spacing:0.907733pt;}
.ls4c_c00325{letter-spacing:0.913867pt;}
.ls3d_c00325{letter-spacing:0.913920pt;}
.ls43_c00325{letter-spacing:0.926133pt;}
.ls1e_c00325{letter-spacing:0.975200pt;}
.ls28_c00325{letter-spacing:0.999733pt;}
.ls1_c00325{letter-spacing:1.015467pt;}
.ls3_c00325{letter-spacing:1.146880pt;}
.ls31_c00325{letter-spacing:1.208267pt;}
.ls41_c00325{letter-spacing:1.232800pt;}
.ls24_c00325{letter-spacing:1.245067pt;}
.lsd_c00325{letter-spacing:1.254400pt;}
.ls39_c00325{letter-spacing:1.306400pt;}
.ls45_c00325{letter-spacing:1.324800pt;}
.lsc_c00325{letter-spacing:1.326080pt;}
.ls56_c00325{letter-spacing:1.422933pt;}
.ls10_c00325{letter-spacing:1.447467pt;}
.ls2_c00325{letter-spacing:1.541120pt;}
.ls29_c00325{letter-spacing:1.637600pt;}
.ls4f_c00325{letter-spacing:1.827733pt;}
.ls4_c00325{letter-spacing:1.846133pt;}
.ls48_c00325{letter-spacing:2.257067pt;}
.ls2e_c00325{letter-spacing:2.275467pt;}
.ls79_c00325{letter-spacing:3.066667pt;}
.ls33_c00325{letter-spacing:18.882133pt;}
.ws2_c00325{word-spacing:0.000000pt;}
.ws0_c00325{word-spacing:11.050667pt;}
.ws1_c00325{word-spacing:12.424533pt;}
._10_c00325{margin-left:-8.995840pt;}
._f_c00325{margin-left:-4.477333pt;}
._1_c00325{margin-left:-3.554560pt;}
._5_c00325{margin-left:-2.508533pt;}
._2_c00325{margin-left:-1.291520pt;}
._b_c00325{width:0.955733pt;}
._9_c00325{width:2.439733pt;}
._4_c00325{width:3.925333pt;}
._0_c00325{width:5.769067pt;}
._3_c00325{width:7.317067pt;}
._a_c00325{width:8.525333pt;}
._7_c00325{width:9.463733pt;}
._8_c00325{width:10.416267pt;}
._c_c00325{width:11.350933pt;}
._6_c00325{width:12.303467pt;}
._e_c00325{width:14.370400pt;}
._d_c00325{width:15.869333pt;}
._12_c00325{width:16.836000pt;}
._11_c00325{width:19.918667pt;}
.fs3_c00325{font-size:51.200000pt;}
.fs0_c00325{font-size:59.733333pt;}
.fs2_c00325{font-size:60.800000pt;}
.fs1_c00325{font-size:61.333333pt;}
.y0_c00325{bottom:0.000000pt;}
.y24_c00325{bottom:66.893339pt;}
.y22_c00325{bottom:171.852005pt;}
.y23_c00325{bottom:171.853339pt;}
.y21_c00325{bottom:199.360005pt;}
.y1f_c00325{bottom:227.210005pt;}
.y20_c00325{bottom:227.213339pt;}
.y1d_c00325{bottom:254.732005pt;}
.y1e_c00325{bottom:254.733339pt;}
.y1c_c00325{bottom:281.926672pt;}
.y1b_c00325{bottom:309.450005pt;}
.y1a_c00325{bottom:336.972005pt;}
.y19_c00325{bottom:364.173339pt;}
.y18_c00325{bottom:418.884672pt;}
.y17_c00325{bottom:446.408005pt;}
.y16_c00325{bottom:474.253339pt;}
.y15_c00325{bottom:474.257339pt;}
.y14_c00325{bottom:503.053339pt;}
.y13_c00325{bottom:559.046672pt;}
.y12_c00325{bottom:586.554672pt;}
.y10_c00325{bottom:614.090672pt;}
.y11_c00325{bottom:614.093339pt;}
.yf_c00325{bottom:641.292005pt;}
.yd_c00325{bottom:668.798672pt;}
.ye_c00325{bottom:668.800005pt;}
.yc_c00325{bottom:696.000005pt;}
.yb_c00325{bottom:751.053339pt;}
.ya_c00325{bottom:805.448005pt;}
.y8_c00325{bottom:833.292005pt;}
.y9_c00325{bottom:833.293339pt;}
.y6_c00325{bottom:860.488672pt;}
.y7_c00325{bottom:860.493339pt;}
.y4_c00325{bottom:915.212005pt;}
.y5_c00325{bottom:915.213339pt;}
.y3_c00325{bottom:942.413339pt;}
.y2_c00325{bottom:997.133339pt;}
.y1_c00325{bottom:1064.000005pt;}
.h7_c00325{height:50.250000pt;}
.h2_c00325{height:58.625000pt;}
.h4_c00325{height:59.671875pt;}
.h3_c00325{height:60.195312pt;}
.h5_c00325{height:60.200646pt;}
.h6_c00325{height:60.221979pt;}
.h1_c00325{height:1122.666667pt;}
.h0_c00325{height:1122.880005pt;}
.w1_c00325{width:793.333333pt;}
.w0_c00325{width:793.599999pt;}
.x0_c00325{left:0.000000pt;}
.x1_c00325{left:107.773332pt;}
.x10_c00325{left:109.302665pt;}
.x2_c00325{left:155.746665pt;}
.x4_c00325{left:158.005999pt;}
.x1c_c00325{left:176.799999pt;}
.x5_c00325{left:218.066665pt;}
.x6_c00325{left:243.639999pt;}
.x7_c00325{left:258.159999pt;}
.x3_c00325{left:308.186665pt;}
.x11_c00325{left:321.466665pt;}
.x8_c00325{left:333.586665pt;}
.x17_c00325{left:337.759999pt;}
.x12_c00325{left:338.719999pt;}
.xc_c00325{left:348.626665pt;}
.x9_c00325{left:361.386665pt;}
.xd_c00325{left:374.826665pt;}
.x1d_c00325{left:375.919999pt;}
.x19_c00325{left:388.013332pt;}
.x1a_c00325{left:407.973332pt;}
.x15_c00325{left:447.613332pt;}
.xe_c00325{left:451.013332pt;}
.xf_c00325{left:466.386665pt;}
.x13_c00325{left:471.866665pt;}
.x16_c00325{left:476.986665pt;}
.x14_c00325{left:520.613332pt;}
.x18_c00325{left:559.613332pt;}
.xa_c00325{left:561.106665pt;}
.xb_c00325{left:588.586665pt;}
.x1b_c00325{left:649.773332pt;}
}





/* 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_c00326 {
    display:none;
  }
  .loading-indicator_c00326.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00326 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_c00326 { 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_c00326" -> "#page-container .classname_c00326")
 */
.pf_c00326 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00326 { /* 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_c00326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00326 { /* 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_c00326 { /* 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_c00326 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00326 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00326 {overflow:visible;}
  }
}
.c_c00326 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00326 { /* 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_c00326:after { /* webkit #35443 */
  content: '';
}
.t_c00326:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00326 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 */
}
.__c00326 { /* 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_c00326 { /* info for Javascript */
  display:none;
}
.l_c00326 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00326 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00326 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00326: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_c00326 {
    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_c00326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00326.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_c00326 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00326;src:url('chunks/assets/font_cc41572c236c29d0fe0391a4.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.284668;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_c00326;src:url('chunks/assets/font_d9a3c3ca0cf5ab047c767cd0.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.284180;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_c00326;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;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:ff4_c00326;src:url('chunks/assets/font_a3aeee42f2fc844782ac91f7.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;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:ff5_c00326;src:url('chunks/assets/font_1fa258e2127e24454c2ae144.woff2')format("woff");}.ff5_c00326{font-family:ff5_c00326;line-height:0.666000;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;}
.mb_c00326{transform:matrix(0.144737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144737,0.000000,0.000000,0.250000,0,0);}
.m6_c00326{transform:matrix(0.147097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147097,0.000000,0.000000,0.250000,0,0);}
.m5_c00326{transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);}
.m4_c00326{transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);}
.m7_c00326{transform:matrix(0.231396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231396,0.000000,0.000000,0.250000,0,0);}
.m8_c00326{transform:matrix(0.232172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232172,0.000000,0.000000,0.250000,0,0);}
.m0_c00326{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m3_c00326{transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{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);}
.m2_c00326{transform:matrix(0.282730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282730,0.000000,0.000000,0.250000,0,0);}
.m9_c00326{transform:matrix(1.314561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.314561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.314561,0.000000,0.000000,0.250000,0,0);}
.ma_c00326{transform:matrix(1.440217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440217,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls91_c00326{letter-spacing:-2.478000px;}
.ls80_c00326{letter-spacing:-2.415000px;}
.ls8e_c00326{letter-spacing:-2.373000px;}
.ls6d_c00326{letter-spacing:-2.352000px;}
.ls75_c00326{letter-spacing:-1.959600px;}
.ls9c_c00326{letter-spacing:-1.766400px;}
.ls9b_c00326{letter-spacing:-1.669800px;}
.ls73_c00326{letter-spacing:-1.635300px;}
.ls7f_c00326{letter-spacing:-1.483500px;}
.ls81_c00326{letter-spacing:-1.428300px;}
.ls8d_c00326{letter-spacing:-1.414500px;}
.ls82_c00326{letter-spacing:-1.242000px;}
.lsa6_c00326{letter-spacing:-1.235100px;}
.ls86_c00326{letter-spacing:-1.166100px;}
.ls9d_c00326{letter-spacing:-1.110900px;}
.ls6e_c00326{letter-spacing:-1.083300px;}
.ls78_c00326{letter-spacing:-0.993600px;}
.ls87_c00326{letter-spacing:-0.952200px;}
.ls77_c00326{letter-spacing:-0.903900px;}
.lsa3_c00326{letter-spacing:-0.900360px;}
.ls7e_c00326{letter-spacing:-0.876300px;}
.ls9f_c00326{letter-spacing:-0.841800px;}
.ls92_c00326{letter-spacing:-0.821100px;}
.ls8a_c00326{letter-spacing:-0.765900px;}
.ls8b_c00326{letter-spacing:-0.710700px;}
.ls7a_c00326{letter-spacing:-0.690000px;}
.ls6f_c00326{letter-spacing:-0.676200px;}
.lsa4_c00326{letter-spacing:-0.531300px;}
.ls7c_c00326{letter-spacing:-0.517500px;}
.ls85_c00326{letter-spacing:-0.503700px;}
.ls71_c00326{letter-spacing:-0.469200px;}
.ls99_c00326{letter-spacing:-0.386400px;}
.ls8c_c00326{letter-spacing:-0.310500px;}
.ls96_c00326{letter-spacing:-0.262200px;}
.lsa5_c00326{letter-spacing:-0.234600px;}
.ls84_c00326{letter-spacing:-0.158700px;}
.ls98_c00326{letter-spacing:-0.158400px;}
.ls89_c00326{letter-spacing:-0.138000px;}
.ls79_c00326{letter-spacing:-0.131100px;}
.ls7d_c00326{letter-spacing:-0.103500px;}
.ls88_c00326{letter-spacing:-0.089700px;}
.ls93_c00326{letter-spacing:-0.055200px;}
.ls76_c00326{letter-spacing:-0.048300px;}
.ls74_c00326{letter-spacing:-0.041400px;}
.ls9e_c00326{letter-spacing:-0.027600px;}
.ls8f_c00326{letter-spacing:-0.006900px;}
.ls70_c00326{letter-spacing:0.000000px;}
.ls53_c00326{letter-spacing:0.027600px;}
.ls2e_c00326{letter-spacing:0.034500px;}
.ls4d_c00326{letter-spacing:0.096600px;}
.lsa7_c00326{letter-spacing:0.098940px;}
.ls95_c00326{letter-spacing:0.103500px;}
.ls50_c00326{letter-spacing:0.110400px;}
.ls43_c00326{letter-spacing:0.131100px;}
.ls9a_c00326{letter-spacing:0.138000px;}
.ls21_c00326{letter-spacing:0.144900px;}
.ls3_c00326{letter-spacing:0.186300px;}
.ls2b_c00326{letter-spacing:0.213900px;}
.ls9_c00326{letter-spacing:0.234600px;}
.ls94_c00326{letter-spacing:0.241500px;}
.ls5_c00326{letter-spacing:0.248400px;}
.ls69_c00326{letter-spacing:0.262200px;}
.ls14_c00326{letter-spacing:0.276000px;}
.ls3e_c00326{letter-spacing:0.289800px;}
.ls5e_c00326{letter-spacing:0.296700px;}
.ls12_c00326{letter-spacing:0.331200px;}
.ls1d_c00326{letter-spacing:0.345000px;}
.ls3b_c00326{letter-spacing:0.351900px;}
.ls28_c00326{letter-spacing:0.365700px;}
.ls64_c00326{letter-spacing:0.386400px;}
.ls5f_c00326{letter-spacing:0.400200px;}
.ls3d_c00326{letter-spacing:0.407100px;}
.lsa_c00326{letter-spacing:0.414000px;}
.ls55_c00326{letter-spacing:0.427800px;}
.ls39_c00326{letter-spacing:0.434700px;}
.ls2f_c00326{letter-spacing:0.441600px;}
.ls63_c00326{letter-spacing:0.469200px;}
.ls38_c00326{letter-spacing:0.476100px;}
.lsb_c00326{letter-spacing:0.483000px;}
.ls16_c00326{letter-spacing:0.496800px;}
.ls22_c00326{letter-spacing:0.503700px;}
.ls4_c00326{letter-spacing:0.510600px;}
.ls42_c00326{letter-spacing:0.517500px;}
.ls1b_c00326{letter-spacing:0.524400px;}
.lsf_c00326{letter-spacing:0.531300px;}
.ls67_c00326{letter-spacing:0.538020px;}
.ls15_c00326{letter-spacing:0.538200px;}
.ls62_c00326{letter-spacing:0.545100px;}
.ls56_c00326{letter-spacing:0.565800px;}
.ls4f_c00326{letter-spacing:0.579600px;}
.ls5d_c00326{letter-spacing:0.586500px;}
.ls46_c00326{letter-spacing:0.593400px;}
.ls20_c00326{letter-spacing:0.621000px;}
.ls1e_c00326{letter-spacing:0.627900px;}
.ls7_c00326{letter-spacing:0.641700px;}
.ls5c_c00326{letter-spacing:0.648600px;}
.ls59_c00326{letter-spacing:0.662400px;}
.ls60_c00326{letter-spacing:0.669300px;}
.ls4c_c00326{letter-spacing:0.676200px;}
.ls1_c00326{letter-spacing:0.683100px;}
.ls3c_c00326{letter-spacing:0.690000px;}
.ls61_c00326{letter-spacing:0.696900px;}
.ls57_c00326{letter-spacing:0.710700px;}
.ls2_c00326{letter-spacing:0.717600px;}
.ls2c_c00326{letter-spacing:0.724500px;}
.ls36_c00326{letter-spacing:0.738300px;}
.ls25_c00326{letter-spacing:0.745200px;}
.ls52_c00326{letter-spacing:0.752100px;}
.ls8_c00326{letter-spacing:0.759000px;}
.lsa1_c00326{letter-spacing:0.772260px;}
.ls4b_c00326{letter-spacing:0.772800px;}
.ls48_c00326{letter-spacing:0.793500px;}
.ls37_c00326{letter-spacing:0.800400px;}
.ls2a_c00326{letter-spacing:0.821100px;}
.ls3a_c00326{letter-spacing:0.828000px;}
.lsa0_c00326{letter-spacing:0.862500px;}
.ls35_c00326{letter-spacing:0.869400px;}
.ls5a_c00326{letter-spacing:0.876300px;}
.ls90_c00326{letter-spacing:0.890100px;}
.ls68_c00326{letter-spacing:0.917700px;}
.ls23_c00326{letter-spacing:0.924600px;}
.lse_c00326{letter-spacing:0.928860px;}
.ls17_c00326{letter-spacing:0.938400px;}
.lsd_c00326{letter-spacing:0.942420px;}
.ls10_c00326{letter-spacing:0.952200px;}
.ls97_c00326{letter-spacing:0.966000px;}
.ls6b_c00326{letter-spacing:1.062600px;}
.ls41_c00326{letter-spacing:1.097100px;}
.ls24_c00326{letter-spacing:1.104000px;}
.ls51_c00326{letter-spacing:1.118700px;}
.ls65_c00326{letter-spacing:1.124700px;}
.ls47_c00326{letter-spacing:1.166100px;}
.ls45_c00326{letter-spacing:1.193700px;}
.ls6a_c00326{letter-spacing:1.200600px;}
.ls40_c00326{letter-spacing:1.214400px;}
.ls4a_c00326{letter-spacing:1.235100px;}
.ls3f_c00326{letter-spacing:1.248900px;}
.ls0_c00326{letter-spacing:1.281420px;}
.ls6c_c00326{letter-spacing:1.297200px;}
.ls4e_c00326{letter-spacing:1.311000px;}
.ls19_c00326{letter-spacing:1.331700px;}
.ls54_c00326{letter-spacing:1.338600px;}
.ls31_c00326{letter-spacing:1.428300px;}
.ls2d_c00326{letter-spacing:1.437360px;}
.ls6_c00326{letter-spacing:1.469700px;}
.ls30_c00326{letter-spacing:1.498380px;}
.ls27_c00326{letter-spacing:1.545840px;}
.ls66_c00326{letter-spacing:1.551840px;}
.ls83_c00326{letter-spacing:1.566180px;}
.ls18_c00326{letter-spacing:1.587000px;}
.ls49_c00326{letter-spacing:1.600080px;}
.ls34_c00326{letter-spacing:1.607700px;}
.ls32_c00326{letter-spacing:1.667880px;}
.ls26_c00326{letter-spacing:1.735680px;}
.ls44_c00326{letter-spacing:1.787100px;}
.lsa2_c00326{letter-spacing:1.830000px;}
.ls1a_c00326{letter-spacing:1.952700px;}
.lsc_c00326{letter-spacing:2.014800px;}
.ls13_c00326{letter-spacing:2.056200px;}
.ls1c_c00326{letter-spacing:2.142480px;}
.ls29_c00326{letter-spacing:2.366220px;}
.ls1f_c00326{letter-spacing:2.484000px;}
.ls5b_c00326{letter-spacing:2.539200px;}
.ls72_c00326{letter-spacing:2.559900px;}
.ls58_c00326{letter-spacing:2.884200px;}
.ls11_c00326{letter-spacing:3.070500px;}
.ls33_c00326{letter-spacing:3.284400px;}
.ls7b_c00326{letter-spacing:3.450000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{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__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00326{word-spacing:0.000000px;}
.ws1_c00326{word-spacing:4.411140px;}
.ws4_c00326{word-spacing:10.738800px;}
.ws5_c00326{word-spacing:12.124500px;}
.ws0_c00326{word-spacing:12.424500px;}
.ws2_c00326{word-spacing:21.878880px;}
.ws3_c00326{word-spacing:27.766680px;}
._11_c00326{margin-left:-20.314980px;}
._d_c00326{margin-left:-7.935000px;}
._6_c00326{margin-left:-5.789100px;}
._a_c00326{margin-left:-4.177500px;}
._4_c00326{margin-left:-3.070500px;}
._10_c00326{margin-left:-1.932000px;}
._5_c00326{width:1.642200px;}
._8_c00326{width:3.125700px;}
._9_c00326{width:4.436700px;}
._7_c00326{width:5.735880px;}
._f_c00326{width:6.963600px;}
._b_c00326{width:8.048700px;}
._19_c00326{width:9.078900px;}
._c_c00326{width:10.177500px;}
._18_c00326{width:11.196900px;}
._1_c00326{width:12.640800px;}
._14_c00326{width:14.818680px;}
._0_c00326{width:15.925200px;}
._2_c00326{width:18.705900px;}
._e_c00326{width:20.074920px;}
._17_c00326{width:21.108900px;}
._3_c00326{width:22.452600px;}
._1c_c00326{width:24.145380px;}
._13_c00326{width:26.185500px;}
._12_c00326{width:28.176780px;}
._1d_c00326{width:29.220240px;}
._15_c00326{width:30.360000px;}
._16_c00326{width:31.494000px;}
._1a_c00326{width:140.273160px;}
._1b_c00326{width:925.646940px;}
.fc0_c00326{color:transparent;}
.fs6_c00326{font-size:36.600000px;}
.fs4_c00326{font-size:54.600000px;}
.fs7_c00326{font-size:54.720000px;}
.fs8_c00326{font-size:58.200000px;}
.fs5_c00326{font-size:66.000000px;}
.fs0_c00326{font-size:67.200000px;}
.fs1_c00326{font-size:67.800000px;}
.fs2_c00326{font-size:69.000000px;}
.fs3_c00326{font-size:70.800000px;}
.y0_c00326{bottom:0.000000px;}
.y20_c00326{bottom:73.815000px;}
.y1f_c00326{bottom:129.951750px;}
.y1e_c00326{bottom:161.640000px;}
.y1d_c00326{bottom:222.849000px;}
.y1c_c00326{bottom:254.520000px;}
.y1b_c00326{bottom:282.600000px;}
.y19_c00326{bottom:285.489000px;}
.y1a_c00326{bottom:285.495000px;}
.y18_c00326{bottom:316.809000px;}
.y17_c00326{bottom:348.135000px;}
.y16_c00326{bottom:378.735000px;}
.y15_c00326{bottom:440.277750px;}
.y14_c00326{bottom:473.415000px;}
.y13_c00326{bottom:536.034000px;}
.y12_c00326{bottom:567.354000px;}
.y10_c00326{bottom:598.333500px;}
.y11_c00326{bottom:598.335000px;}
.yf_c00326{bottom:629.280000px;}
.ye_c00326{bottom:690.855000px;}
.yd_c00326{bottom:721.815000px;}
.yc_c00326{bottom:752.415000px;}
.ya_c00326{bottom:814.331250px;}
.yb_c00326{bottom:814.335000px;}
.y8_c00326{bottom:845.283750px;}
.y9_c00326{bottom:845.295000px;}
.y7_c00326{bottom:907.556250px;}
.y6_c00326{bottom:938.175000px;}
.y5_c00326{bottom:1000.076250px;}
.y4_c00326{bottom:1030.695000px;}
.y3_c00326{bottom:1091.874000px;}
.y2_c00326{bottom:1123.200000px;}
.y1_c00326{bottom:1199.175000px;}
.hc_c00326{height:35.903027px;}
.hd_c00326{height:35.920898px;}
.he_c00326{height:36.443520px;}
.hf_c00326{height:57.120117px;}
.h2_c00326{height:65.953125px;}
.h6_c00326{height:66.508887px;}
.h3_c00326{height:67.719727px;}
.h8_c00326{height:67.725727px;}
.h5_c00326{height:67.734727px;}
.ha_c00326{height:67.743727px;}
.h4_c00326{height:67.764727px;}
.hb_c00326{height:68.844937px;}
.h9_c00326{height:69.486328px;}
.h7_c00326{height:70.713281px;}
.h1_c00326{height:1263.000000px;}
.h0_c00326{height:1263.240000px;}
.w1_c00326{width:892.500000px;}
.w0_c00326{width:892.800000px;}
.x0_c00326{left:0.000000px;}
.x11_c00326{left:120.418500px;}
.x4_c00326{left:122.062500px;}
.x3_c00326{left:123.177750px;}
.x1_c00326{left:124.485000px;}
.x1a_c00326{left:146.790000px;}
.xe_c00326{left:173.685000px;}
.x7_c00326{left:175.239000px;}
.x2_c00326{left:176.925000px;}
.x6_c00326{left:178.119750px;}
.x17_c00326{left:201.300000px;}
.xa_c00326{left:266.160000px;}
.xb_c00326{left:283.245000px;}
.x5_c00326{left:312.870000px;}
.x18_c00326{left:335.490000px;}
.xc_c00326{left:355.290000px;}
.xd_c00326{left:386.175000px;}
.x1d_c00326{left:424.350000px;}
.x19_c00326{left:440.100000px;}
.x1b_c00326{left:452.175000px;}
.x12_c00326{left:462.345000px;}
.x13_c00326{left:476.505000px;}
.x1c_c00326{left:508.470000px;}
.x14_c00326{left:550.260000px;}
.xf_c00326{left:561.390000px;}
.x10_c00326{left:587.430000px;}
.x15_c00326{left:590.970000px;}
.x8_c00326{left:630.555000px;}
.x9_c00326{left:667.260000px;}
.x16_c00326{left:725.235000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls91_c00326{letter-spacing:-2.202667pt;}
.ls80_c00326{letter-spacing:-2.146667pt;}
.ls8e_c00326{letter-spacing:-2.109333pt;}
.ls6d_c00326{letter-spacing:-2.090667pt;}
.ls75_c00326{letter-spacing:-1.741867pt;}
.ls9c_c00326{letter-spacing:-1.570133pt;}
.ls9b_c00326{letter-spacing:-1.484267pt;}
.ls73_c00326{letter-spacing:-1.453600pt;}
.ls7f_c00326{letter-spacing:-1.318667pt;}
.ls81_c00326{letter-spacing:-1.269600pt;}
.ls8d_c00326{letter-spacing:-1.257333pt;}
.ls82_c00326{letter-spacing:-1.104000pt;}
.lsa6_c00326{letter-spacing:-1.097867pt;}
.ls86_c00326{letter-spacing:-1.036533pt;}
.ls9d_c00326{letter-spacing:-0.987467pt;}
.ls6e_c00326{letter-spacing:-0.962933pt;}
.ls78_c00326{letter-spacing:-0.883200pt;}
.ls87_c00326{letter-spacing:-0.846400pt;}
.ls77_c00326{letter-spacing:-0.803467pt;}
.lsa3_c00326{letter-spacing:-0.800320pt;}
.ls7e_c00326{letter-spacing:-0.778933pt;}
.ls9f_c00326{letter-spacing:-0.748267pt;}
.ls92_c00326{letter-spacing:-0.729867pt;}
.ls8a_c00326{letter-spacing:-0.680800pt;}
.ls8b_c00326{letter-spacing:-0.631733pt;}
.ls7a_c00326{letter-spacing:-0.613333pt;}
.ls6f_c00326{letter-spacing:-0.601067pt;}
.lsa4_c00326{letter-spacing:-0.472267pt;}
.ls7c_c00326{letter-spacing:-0.460000pt;}
.ls85_c00326{letter-spacing:-0.447733pt;}
.ls71_c00326{letter-spacing:-0.417067pt;}
.ls99_c00326{letter-spacing:-0.343467pt;}
.ls8c_c00326{letter-spacing:-0.276000pt;}
.ls96_c00326{letter-spacing:-0.233067pt;}
.lsa5_c00326{letter-spacing:-0.208533pt;}
.ls84_c00326{letter-spacing:-0.141067pt;}
.ls98_c00326{letter-spacing:-0.140800pt;}
.ls89_c00326{letter-spacing:-0.122667pt;}
.ls79_c00326{letter-spacing:-0.116533pt;}
.ls7d_c00326{letter-spacing:-0.092000pt;}
.ls88_c00326{letter-spacing:-0.079733pt;}
.ls93_c00326{letter-spacing:-0.049067pt;}
.ls76_c00326{letter-spacing:-0.042933pt;}
.ls74_c00326{letter-spacing:-0.036800pt;}
.ls9e_c00326{letter-spacing:-0.024533pt;}
.ls8f_c00326{letter-spacing:-0.006133pt;}
.ls70_c00326{letter-spacing:0.000000pt;}
.ls53_c00326{letter-spacing:0.024533pt;}
.ls2e_c00326{letter-spacing:0.030667pt;}
.ls4d_c00326{letter-spacing:0.085867pt;}
.lsa7_c00326{letter-spacing:0.087947pt;}
.ls95_c00326{letter-spacing:0.092000pt;}
.ls50_c00326{letter-spacing:0.098133pt;}
.ls43_c00326{letter-spacing:0.116533pt;}
.ls9a_c00326{letter-spacing:0.122667pt;}
.ls21_c00326{letter-spacing:0.128800pt;}
.ls3_c00326{letter-spacing:0.165600pt;}
.ls2b_c00326{letter-spacing:0.190133pt;}
.ls9_c00326{letter-spacing:0.208533pt;}
.ls94_c00326{letter-spacing:0.214667pt;}
.ls5_c00326{letter-spacing:0.220800pt;}
.ls69_c00326{letter-spacing:0.233067pt;}
.ls14_c00326{letter-spacing:0.245333pt;}
.ls3e_c00326{letter-spacing:0.257600pt;}
.ls5e_c00326{letter-spacing:0.263733pt;}
.ls12_c00326{letter-spacing:0.294400pt;}
.ls1d_c00326{letter-spacing:0.306667pt;}
.ls3b_c00326{letter-spacing:0.312800pt;}
.ls28_c00326{letter-spacing:0.325067pt;}
.ls64_c00326{letter-spacing:0.343467pt;}
.ls5f_c00326{letter-spacing:0.355733pt;}
.ls3d_c00326{letter-spacing:0.361867pt;}
.lsa_c00326{letter-spacing:0.368000pt;}
.ls55_c00326{letter-spacing:0.380267pt;}
.ls39_c00326{letter-spacing:0.386400pt;}
.ls2f_c00326{letter-spacing:0.392533pt;}
.ls63_c00326{letter-spacing:0.417067pt;}
.ls38_c00326{letter-spacing:0.423200pt;}
.lsb_c00326{letter-spacing:0.429333pt;}
.ls16_c00326{letter-spacing:0.441600pt;}
.ls22_c00326{letter-spacing:0.447733pt;}
.ls4_c00326{letter-spacing:0.453867pt;}
.ls42_c00326{letter-spacing:0.460000pt;}
.ls1b_c00326{letter-spacing:0.466133pt;}
.lsf_c00326{letter-spacing:0.472267pt;}
.ls67_c00326{letter-spacing:0.478240pt;}
.ls15_c00326{letter-spacing:0.478400pt;}
.ls62_c00326{letter-spacing:0.484533pt;}
.ls56_c00326{letter-spacing:0.502933pt;}
.ls4f_c00326{letter-spacing:0.515200pt;}
.ls5d_c00326{letter-spacing:0.521333pt;}
.ls46_c00326{letter-spacing:0.527467pt;}
.ls20_c00326{letter-spacing:0.552000pt;}
.ls1e_c00326{letter-spacing:0.558133pt;}
.ls7_c00326{letter-spacing:0.570400pt;}
.ls5c_c00326{letter-spacing:0.576533pt;}
.ls59_c00326{letter-spacing:0.588800pt;}
.ls60_c00326{letter-spacing:0.594933pt;}
.ls4c_c00326{letter-spacing:0.601067pt;}
.ls1_c00326{letter-spacing:0.607200pt;}
.ls3c_c00326{letter-spacing:0.613333pt;}
.ls61_c00326{letter-spacing:0.619467pt;}
.ls57_c00326{letter-spacing:0.631733pt;}
.ls2_c00326{letter-spacing:0.637867pt;}
.ls2c_c00326{letter-spacing:0.644000pt;}
.ls36_c00326{letter-spacing:0.656267pt;}
.ls25_c00326{letter-spacing:0.662400pt;}
.ls52_c00326{letter-spacing:0.668533pt;}
.ls8_c00326{letter-spacing:0.674667pt;}
.lsa1_c00326{letter-spacing:0.686453pt;}
.ls4b_c00326{letter-spacing:0.686933pt;}
.ls48_c00326{letter-spacing:0.705333pt;}
.ls37_c00326{letter-spacing:0.711467pt;}
.ls2a_c00326{letter-spacing:0.729867pt;}
.ls3a_c00326{letter-spacing:0.736000pt;}
.lsa0_c00326{letter-spacing:0.766667pt;}
.ls35_c00326{letter-spacing:0.772800pt;}
.ls5a_c00326{letter-spacing:0.778933pt;}
.ls90_c00326{letter-spacing:0.791200pt;}
.ls68_c00326{letter-spacing:0.815733pt;}
.ls23_c00326{letter-spacing:0.821867pt;}
.lse_c00326{letter-spacing:0.825653pt;}
.ls17_c00326{letter-spacing:0.834133pt;}
.lsd_c00326{letter-spacing:0.837707pt;}
.ls10_c00326{letter-spacing:0.846400pt;}
.ls97_c00326{letter-spacing:0.858667pt;}
.ls6b_c00326{letter-spacing:0.944533pt;}
.ls41_c00326{letter-spacing:0.975200pt;}
.ls24_c00326{letter-spacing:0.981333pt;}
.ls51_c00326{letter-spacing:0.994400pt;}
.ls65_c00326{letter-spacing:0.999733pt;}
.ls47_c00326{letter-spacing:1.036533pt;}
.ls45_c00326{letter-spacing:1.061067pt;}
.ls6a_c00326{letter-spacing:1.067200pt;}
.ls40_c00326{letter-spacing:1.079467pt;}
.ls4a_c00326{letter-spacing:1.097867pt;}
.ls3f_c00326{letter-spacing:1.110133pt;}
.ls0_c00326{letter-spacing:1.139040pt;}
.ls6c_c00326{letter-spacing:1.153067pt;}
.ls4e_c00326{letter-spacing:1.165333pt;}
.ls19_c00326{letter-spacing:1.183733pt;}
.ls54_c00326{letter-spacing:1.189867pt;}
.ls31_c00326{letter-spacing:1.269600pt;}
.ls2d_c00326{letter-spacing:1.277653pt;}
.ls6_c00326{letter-spacing:1.306400pt;}
.ls30_c00326{letter-spacing:1.331893pt;}
.ls27_c00326{letter-spacing:1.374080pt;}
.ls66_c00326{letter-spacing:1.379413pt;}
.ls83_c00326{letter-spacing:1.392160pt;}
.ls18_c00326{letter-spacing:1.410667pt;}
.ls49_c00326{letter-spacing:1.422293pt;}
.ls34_c00326{letter-spacing:1.429067pt;}
.ls32_c00326{letter-spacing:1.482560pt;}
.ls26_c00326{letter-spacing:1.542827pt;}
.ls44_c00326{letter-spacing:1.588533pt;}
.lsa2_c00326{letter-spacing:1.626667pt;}
.ls1a_c00326{letter-spacing:1.735733pt;}
.lsc_c00326{letter-spacing:1.790933pt;}
.ls13_c00326{letter-spacing:1.827733pt;}
.ls1c_c00326{letter-spacing:1.904427pt;}
.ls29_c00326{letter-spacing:2.103307pt;}
.ls1f_c00326{letter-spacing:2.208000pt;}
.ls5b_c00326{letter-spacing:2.257067pt;}
.ls72_c00326{letter-spacing:2.275467pt;}
.ls58_c00326{letter-spacing:2.563733pt;}
.ls11_c00326{letter-spacing:2.729333pt;}
.ls33_c00326{letter-spacing:2.919467pt;}
.ls7b_c00326{letter-spacing:3.066667pt;}
.ws6_c00326{word-spacing:0.000000pt;}
.ws1_c00326{word-spacing:3.921013pt;}
.ws4_c00326{word-spacing:9.545600pt;}
.ws5_c00326{word-spacing:10.777333pt;}
.ws0_c00326{word-spacing:11.044000pt;}
.ws2_c00326{word-spacing:19.447893pt;}
.ws3_c00326{word-spacing:24.681493pt;}
._11_c00326{margin-left:-18.057760pt;}
._d_c00326{margin-left:-7.053333pt;}
._6_c00326{margin-left:-5.145867pt;}
._a_c00326{margin-left:-3.713333pt;}
._4_c00326{margin-left:-2.729333pt;}
._10_c00326{margin-left:-1.717333pt;}
._5_c00326{width:1.459733pt;}
._8_c00326{width:2.778400pt;}
._9_c00326{width:3.943733pt;}
._7_c00326{width:5.098560pt;}
._f_c00326{width:6.189867pt;}
._b_c00326{width:7.154400pt;}
._19_c00326{width:8.070133pt;}
._c_c00326{width:9.046667pt;}
._18_c00326{width:9.952800pt;}
._1_c00326{width:11.236267pt;}
._14_c00326{width:13.172160pt;}
._0_c00326{width:14.155733pt;}
._2_c00326{width:16.627467pt;}
._e_c00326{width:17.844373pt;}
._17_c00326{width:18.763467pt;}
._3_c00326{width:19.957867pt;}
._1c_c00326{width:21.462560pt;}
._13_c00326{width:23.276000pt;}
._12_c00326{width:25.046027pt;}
._1d_c00326{width:25.973547pt;}
._15_c00326{width:26.986667pt;}
._16_c00326{width:27.994667pt;}
._1a_c00326{width:124.687253pt;}
._1b_c00326{width:822.797280pt;}
.fs6_c00326{font-size:32.533333pt;}
.fs4_c00326{font-size:48.533333pt;}
.fs7_c00326{font-size:48.640000pt;}
.fs8_c00326{font-size:51.733333pt;}
.fs5_c00326{font-size:58.666667pt;}
.fs0_c00326{font-size:59.733333pt;}
.fs1_c00326{font-size:60.266667pt;}
.fs2_c00326{font-size:61.333333pt;}
.fs3_c00326{font-size:62.933333pt;}
.y0_c00326{bottom:0.000000pt;}
.y20_c00326{bottom:65.613333pt;}
.y1f_c00326{bottom:115.512667pt;}
.y1e_c00326{bottom:143.680000pt;}
.y1d_c00326{bottom:198.088000pt;}
.y1c_c00326{bottom:226.240000pt;}
.y1b_c00326{bottom:251.200000pt;}
.y19_c00326{bottom:253.768000pt;}
.y1a_c00326{bottom:253.773333pt;}
.y18_c00326{bottom:281.608000pt;}
.y17_c00326{bottom:309.453333pt;}
.y16_c00326{bottom:336.653333pt;}
.y15_c00326{bottom:391.358000pt;}
.y14_c00326{bottom:420.813333pt;}
.y13_c00326{bottom:476.474667pt;}
.y12_c00326{bottom:504.314667pt;}
.y10_c00326{bottom:531.852000pt;}
.y11_c00326{bottom:531.853333pt;}
.yf_c00326{bottom:559.360000pt;}
.ye_c00326{bottom:614.093333pt;}
.yd_c00326{bottom:641.613333pt;}
.yc_c00326{bottom:668.813333pt;}
.ya_c00326{bottom:723.850000pt;}
.yb_c00326{bottom:723.853333pt;}
.y8_c00326{bottom:751.363333pt;}
.y9_c00326{bottom:751.373333pt;}
.y7_c00326{bottom:806.716667pt;}
.y6_c00326{bottom:833.933333pt;}
.y5_c00326{bottom:888.956667pt;}
.y4_c00326{bottom:916.173333pt;}
.y3_c00326{bottom:970.554667pt;}
.y2_c00326{bottom:998.400000pt;}
.y1_c00326{bottom:1065.933333pt;}
.hc_c00326{height:31.913802pt;}
.hd_c00326{height:31.929687pt;}
.he_c00326{height:32.394240pt;}
.hf_c00326{height:50.773437pt;}
.h2_c00326{height:58.625000pt;}
.h6_c00326{height:59.119010pt;}
.h3_c00326{height:60.195312pt;}
.h8_c00326{height:60.200646pt;}
.h5_c00326{height:60.208646pt;}
.ha_c00326{height:60.216646pt;}
.h4_c00326{height:60.235313pt;}
.hb_c00326{height:61.195500pt;}
.h9_c00326{height:61.765625pt;}
.h7_c00326{height:62.856250pt;}
.h1_c00326{height:1122.666667pt;}
.h0_c00326{height:1122.880000pt;}
.w1_c00326{width:793.333333pt;}
.w0_c00326{width:793.600000pt;}
.x0_c00326{left:0.000000pt;}
.x11_c00326{left:107.038667pt;}
.x4_c00326{left:108.500000pt;}
.x3_c00326{left:109.491333pt;}
.x1_c00326{left:110.653333pt;}
.x1a_c00326{left:130.480000pt;}
.xe_c00326{left:154.386667pt;}
.x7_c00326{left:155.768000pt;}
.x2_c00326{left:157.266667pt;}
.x6_c00326{left:158.328667pt;}
.x17_c00326{left:178.933333pt;}
.xa_c00326{left:236.586667pt;}
.xb_c00326{left:251.773333pt;}
.x5_c00326{left:278.106667pt;}
.x18_c00326{left:298.213333pt;}
.xc_c00326{left:315.813333pt;}
.xd_c00326{left:343.266667pt;}
.x1d_c00326{left:377.200000pt;}
.x19_c00326{left:391.200000pt;}
.x1b_c00326{left:401.933333pt;}
.x12_c00326{left:410.973333pt;}
.x13_c00326{left:423.560000pt;}
.x1c_c00326{left:451.973333pt;}
.x14_c00326{left:489.120000pt;}
.xf_c00326{left:499.013333pt;}
.x10_c00326{left:522.160000pt;}
.x15_c00326{left:525.306667pt;}
.x8_c00326{left:560.493333pt;}
.x9_c00326{left:593.120000pt;}
.x16_c00326{left:644.653333pt;}
}





/* 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_c00327 {
    display:none;
  }
  .loading-indicator_c00327.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00327 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_c00327 { 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_c00327" -> "#page-container .classname_c00327")
 */
.pf_c00327 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00327 { /* 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_c00327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00327 { /* 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_c00327 { /* 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_c00327 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00327 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00327 {overflow:visible;}
  }
}
.c_c00327 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00327 { /* 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_c00327:after { /* webkit #35443 */
  content: '';
}
.t_c00327:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00327 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 */
}
.__c00327 { /* 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_c00327 { /* info for Javascript */
  display:none;
}
.l_c00327 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00327 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00327 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00327: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_c00327 {
    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_c00327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00327.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_c00327 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00327;src:url('chunks/assets/font_01a34950cb5d11b80f7656c6.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.284668;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_c00327;src:url('chunks/assets/font_836c42f70ad1d00f92416767.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.284180;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_c00327;src:url('chunks/assets/font_a33eccc03106b62ac7eba391.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:0.666000;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_c00327;src:url('chunks/assets/font_dec06aa51c3bbdcdef68dec2.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;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:ff5_c00327;src:url('chunks/assets/font_2f19089796f71768e0733c4e.woff2')format("woff");}.ff5_c00327{font-family:ff5_c00327;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:ff6_c00327;src:url('chunks/assets/font_0ba6f80919aa92e7a80e3c6f.woff2')format("woff");}.ff6_c00327{font-family:ff6_c00327;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;}
.m5_c00327{transform:matrix(0.100493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100493,0.000000,0.000000,0.250000,0,0);}
.m6_c00327{transform:matrix(0.140319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140319,0.000000,0.000000,0.250000,0,0);}
.m2_c00327{transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);}
.m3_c00327{transform:matrix(0.143382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143382,0.000000,0.000000,0.250000,0,0);}
.m16_c00327{transform:matrix(0.177907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177907,0.000000,0.000000,0.250000,0,0);}
.m9_c00327{transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);}
.m15_c00327{transform:matrix(0.207717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207717,0.000000,0.000000,0.250000,0,0);}
.m4_c00327{transform:matrix(0.242176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242176,0.000000,0.000000,0.250000,0,0);}
.m7_c00327{transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);}
.m13_c00327{transform:matrix(0.247341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247341,0.000000,0.000000,0.250000,0,0);}
.m18_c00327{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m17_c00327{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m0_c00327{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_c00327{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m12_c00327{transform:matrix(0.254078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254078,0.000000,0.000000,0.250000,0,0);}
.m14_c00327{transform:matrix(0.260057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260057,0.000000,0.000000,0.250000,0,0);}
.me_c00327{transform:matrix(0.263557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263557,0.000000,0.000000,0.250000,0,0);}
.mf_c00327{transform:matrix(0.263886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263886,0.000000,0.000000,0.250000,0,0);}
.md_c00327{transform:matrix(0.277682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277682,0.000000,0.000000,0.250000,0,0);}
.mc_c00327{transform:matrix(0.330215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330215,0.000000,0.000000,0.250000,0,0);}
.m11_c00327{transform:matrix(0.405424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405424,0.000000,0.000000,0.250000,0,0);}
.ma_c00327{transform:matrix(0.524083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524083,0.000000,0.000000,0.250000,0,0);}
.m10_c00327{transform:matrix(0.602761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602761,0.000000,0.000000,0.250000,0,0);}
.mb_c00327{transform:matrix(0.645528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645528,0.000000,0.000000,0.250000,0,0);}
.m8_c00327{transform:matrix(0.659445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659445,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.ls6f_c00327{letter-spacing:-2.541000px;}
.ls77_c00327{letter-spacing:-2.478000px;}
.ls5a_c00327{letter-spacing:-2.436000px;}
.ls56_c00327{letter-spacing:-2.415000px;}
.ls58_c00327{letter-spacing:-2.235600px;}
.ls61_c00327{letter-spacing:-2.110680px;}
.ls65_c00327{letter-spacing:-1.959600px;}
.ls83_c00327{letter-spacing:-1.635300px;}
.ls6d_c00327{letter-spacing:-1.628400px;}
.ls62_c00327{letter-spacing:-1.594080px;}
.ls69_c00327{letter-spacing:-1.593900px;}
.ls68_c00327{letter-spacing:-1.428300px;}
.ls59_c00327{letter-spacing:-1.262700px;}
.ls6b_c00327{letter-spacing:-1.221300px;}
.ls84_c00327{letter-spacing:-1.083300px;}
.ls5c_c00327{letter-spacing:-1.008021px;}
.ls80_c00327{letter-spacing:-0.966000px;}
.ls6a_c00327{letter-spacing:-0.876300px;}
.ls7a_c00327{letter-spacing:-0.821100px;}
.ls78_c00327{letter-spacing:-0.800400px;}
.ls71_c00327{letter-spacing:-0.717600px;}
.ls67_c00327{letter-spacing:-0.690000px;}
.ls63_c00327{letter-spacing:-0.676200px;}
.ls76_c00327{letter-spacing:-0.572700px;}
.ls7d_c00327{letter-spacing:-0.496800px;}
.ls72_c00327{letter-spacing:-0.469200px;}
.ls87_c00327{letter-spacing:-0.450300px;}
.ls74_c00327{letter-spacing:-0.441600px;}
.ls7c_c00327{letter-spacing:-0.400200px;}
.ls57_c00327{letter-spacing:-0.345000px;}
.ls66_c00327{letter-spacing:-0.331200px;}
.ls73_c00327{letter-spacing:-0.289800px;}
.ls79_c00327{letter-spacing:-0.269100px;}
.ls51_c00327{letter-spacing:-0.131100px;}
.ls6c_c00327{letter-spacing:-0.117300px;}
.ls64_c00327{letter-spacing:-0.089700px;}
.ls82_c00327{letter-spacing:-0.075900px;}
.ls6e_c00327{letter-spacing:-0.041400px;}
.ls52_c00327{letter-spacing:0.000000px;}
.ls7f_c00327{letter-spacing:0.027600px;}
.ls2_c00327{letter-spacing:0.055200px;}
.ls21_c00327{letter-spacing:0.069000px;}
.ls27_c00327{letter-spacing:0.082800px;}
.ls19_c00327{letter-spacing:0.103500px;}
.lse_c00327{letter-spacing:0.131100px;}
.ls53_c00327{letter-spacing:0.138000px;}
.ls31_c00327{letter-spacing:0.186300px;}
.ls2a_c00327{letter-spacing:0.193200px;}
.ls1a_c00327{letter-spacing:0.207000px;}
.ls20_c00327{letter-spacing:0.213900px;}
.ls36_c00327{letter-spacing:0.220800px;}
.ls81_c00327{letter-spacing:0.234600px;}
.ls23_c00327{letter-spacing:0.248400px;}
.ls7_c00327{letter-spacing:0.255300px;}
.ls22_c00327{letter-spacing:0.262200px;}
.ls55_c00327{letter-spacing:0.276000px;}
.ls75_c00327{letter-spacing:0.282900px;}
.ls3a_c00327{letter-spacing:0.294120px;}
.ls30_c00327{letter-spacing:0.296700px;}
.ls32_c00327{letter-spacing:0.310500px;}
.lsb_c00327{letter-spacing:0.331200px;}
.ls12_c00327{letter-spacing:0.351900px;}
.ls37_c00327{letter-spacing:0.365700px;}
.ls1e_c00327{letter-spacing:0.393300px;}
.ls5_c00327{letter-spacing:0.407100px;}
.ls2c_c00327{letter-spacing:0.427800px;}
.ls2e_c00327{letter-spacing:0.441600px;}
.ls15_c00327{letter-spacing:0.455400px;}
.ls1_c00327{letter-spacing:0.478800px;}
.ls7b_c00327{letter-spacing:0.489900px;}
.ls40_c00327{letter-spacing:0.496800px;}
.ls1f_c00327{letter-spacing:0.510600px;}
.ls24_c00327{letter-spacing:0.517500px;}
.ls4_c00327{letter-spacing:0.538200px;}
.ls14_c00327{letter-spacing:0.545100px;}
.lsc_c00327{letter-spacing:0.554040px;}
.ls2f_c00327{letter-spacing:0.558900px;}
.ls1c_c00327{letter-spacing:0.572700px;}
.lsd_c00327{letter-spacing:0.581400px;}
.ls8_c00327{letter-spacing:0.593400px;}
.ls9_c00327{letter-spacing:0.614100px;}
.ls29_c00327{letter-spacing:0.621000px;}
.ls16_c00327{letter-spacing:0.634800px;}
.ls6_c00327{letter-spacing:0.641700px;}
.ls0_c00327{letter-spacing:0.656640px;}
.ls18_c00327{letter-spacing:0.683100px;}
.ls3b_c00327{letter-spacing:0.724500px;}
.ls34_c00327{letter-spacing:0.800280px;}
.ls47_c00327{letter-spacing:0.800400px;}
.ls2b_c00327{letter-spacing:0.855600px;}
.lsf_c00327{letter-spacing:0.861840px;}
.ls3c_c00327{letter-spacing:0.883200px;}
.lsa_c00327{letter-spacing:0.924600px;}
.ls10_c00327{letter-spacing:0.930240px;}
.ls28_c00327{letter-spacing:0.950760px;}
.ls3_c00327{letter-spacing:0.952200px;}
.ls41_c00327{letter-spacing:0.993600px;}
.ls86_c00327{letter-spacing:1.048800px;}
.ls60_c00327{letter-spacing:1.050030px;}
.ls33_c00327{letter-spacing:1.055700px;}
.ls45_c00327{letter-spacing:1.062600px;}
.ls17_c00327{letter-spacing:1.097100px;}
.ls44_c00327{letter-spacing:1.110900px;}
.ls11_c00327{letter-spacing:1.117800px;}
.ls2d_c00327{letter-spacing:1.152300px;}
.ls3e_c00327{letter-spacing:1.221300px;}
.ls7e_c00327{letter-spacing:1.225440px;}
.ls38_c00327{letter-spacing:1.242000px;}
.ls39_c00327{letter-spacing:1.269600px;}
.ls4e_c00327{letter-spacing:1.304100px;}
.ls1b_c00327{letter-spacing:1.311000px;}
.ls3d_c00327{letter-spacing:1.324800px;}
.ls70_c00327{letter-spacing:1.373100px;}
.ls13_c00327{letter-spacing:1.400700px;}
.ls4a_c00327{letter-spacing:1.407600px;}
.ls4f_c00327{letter-spacing:1.435200px;}
.ls5b_c00327{letter-spacing:1.440030px;}
.ls4d_c00327{letter-spacing:1.442100px;}
.ls3f_c00327{letter-spacing:1.483500px;}
.ls1d_c00327{letter-spacing:1.490400px;}
.ls43_c00327{letter-spacing:1.511100px;}
.ls46_c00327{letter-spacing:1.545600px;}
.ls48_c00327{letter-spacing:1.600800px;}
.ls50_c00327{letter-spacing:1.714980px;}
.ls5f_c00327{letter-spacing:1.887840px;}
.ls85_c00327{letter-spacing:2.056200px;}
.ls4b_c00327{letter-spacing:2.076900px;}
.ls49_c00327{letter-spacing:2.097600px;}
.ls42_c00327{letter-spacing:2.242500px;}
.ls25_c00327{letter-spacing:2.249400px;}
.ls4c_c00327{letter-spacing:2.318400px;}
.ls26_c00327{letter-spacing:2.559900px;}
.ls5e_c00327{letter-spacing:2.610960px;}
.ls5d_c00327{letter-spacing:2.760000px;}
.ls35_c00327{letter-spacing:2.911800px;}
.ls54_c00327{letter-spacing:3.450000px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{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__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00327{word-spacing:0.000000px;}
.ws2_c00327{word-spacing:0.137760px;}
.ws5_c00327{word-spacing:2.362800px;}
.ws4_c00327{word-spacing:4.288200px;}
.ws3_c00327{word-spacing:9.104400px;}
.ws0_c00327{word-spacing:18.202800px;}
.ws1_c00327{word-spacing:18.597840px;}
._f_c00327{margin-left:-7.239000px;}
._e_c00327{margin-left:-6.203100px;}
._10_c00327{margin-left:-3.788220px;}
._7_c00327{margin-left:-2.145000px;}
._c_c00327{margin-left:-1.022100px;}
._d_c00327{width:1.034100px;}
._4_c00327{width:2.139000px;}
._6_c00327{width:4.457400px;}
._a_c00327{width:5.535600px;}
._5_c00327{width:7.327800px;}
._9_c00327{width:8.789100px;}
._8_c00327{width:10.777800px;}
._0_c00327{width:12.392520px;}
._2_c00327{width:13.482600px;}
._3_c00327{width:15.945900px;}
._11_c00327{width:18.287460px;}
._b_c00327{width:20.710980px;}
._1_c00327{width:22.543080px;}
.fc0_c00327{color:transparent;}
.fs8_c00327{font-size:21.000600px;}
.fs6_c00327{font-size:28.800600px;}
.fs3_c00327{font-size:48.960000px;}
.fs4_c00327{font-size:49.200000px;}
.fs7_c00327{font-size:55.200000px;}
.fsd_c00327{font-size:57.000000px;}
.fs0_c00327{font-size:60.600000px;}
.fsc_c00327{font-size:66.600000px;}
.fs1_c00327{font-size:68.400000px;}
.fs2_c00327{font-size:69.000000px;}
.fs5_c00327{font-size:69.600000px;}
.fsb_c00327{font-size:70.800000px;}
.fsa_c00327{font-size:72.600000px;}
.fs9_c00327{font-size:73.800000px;}
.y0_c00327{bottom:0.000000px;}
.y1a_c00327{bottom:66.600000px;}
.y19_c00327{bottom:156.227250px;}
.y18_c00327{bottom:186.466500px;}
.y17_c00327{bottom:248.049000px;}
.y16_c00327{bottom:309.614250px;}
.y15_c00327{bottom:370.800000px;}
.y14_c00327{bottom:432.714000px;}
.y13_c00327{bottom:463.695000px;}
.y12_c00327{bottom:524.895000px;}
.y10_c00327{bottom:555.853500px;}
.y11_c00327{bottom:555.855000px;}
.yf_c00327{bottom:586.800000px;}
.ye_c00327{bottom:648.720000px;}
.yd_c00327{bottom:712.088250px;}
.yc_c00327{bottom:742.689750px;}
.yb_c00327{bottom:773.653500px;}
.ya_c00327{bottom:804.600000px;}
.y9_c00327{bottom:866.175000px;}
.y7_c00327{bottom:927.012000px;}
.y8_c00327{bottom:927.015000px;}
.y6_c00327{bottom:988.560000px;}
.y5_c00327{bottom:1019.175000px;}
.y4_c00327{bottom:1079.280000px;}
.y3_c00327{bottom:1081.815000px;}
.y2_c00327{bottom:1112.400000px;}
.y1_c00327{bottom:1187.655000px;}
.h8_c00327{height:20.600686px;}
.h9_c00327{height:20.610940px;}
.h6_c00327{height:30.038126px;}
.h4_c00327{height:32.607360px;}
.h7_c00327{height:54.175781px;}
.h10_c00327{height:55.942383px;}
.h2_c00327{height:59.475586px;}
.h3_c00327{height:67.719727px;}
.he_c00327{height:67.725727px;}
.hb_c00327{height:67.731727px;}
.hf_c00327{height:69.461719px;}
.hd_c00327{height:69.486328px;}
.hc_c00327{height:71.252930px;}
.ha_c00327{height:72.394629px;}
.h5_c00327{height:72.590625px;}
.h1_c00327{height:1263.000000px;}
.h0_c00327{height:1263.240000px;}
.w1_c00327{width:892.500000px;}
.w0_c00327{width:892.800000px;}
.x0_c00327{left:0.000000px;}
.x1_c00327{left:125.925000px;}
.xb_c00327{left:127.230000px;}
.x22_c00327{left:128.340000px;}
.xc_c00327{left:146.100000px;}
.xd_c00327{left:153.915000px;}
.x16_c00327{left:177.015000px;}
.x2_c00327{left:179.445000px;}
.x1b_c00327{left:180.735000px;}
.x5_c00327{left:198.660000px;}
.x17_c00327{left:221.565000px;}
.x6_c00327{left:251.655000px;}
.x7_c00327{left:271.095000px;}
.xe_c00327{left:272.340000px;}
.x1f_c00327{left:296.250000px;}
.x15_c00327{left:308.520000px;}
.x20_c00327{left:315.555000px;}
.xf_c00327{left:317.355000px;}
.x21_c00327{left:336.990000px;}
.x8_c00327{left:358.380000px;}
.x10_c00327{left:360.555000px;}
.x11_c00327{left:381.435000px;}
.x12_c00327{left:396.990000px;}
.x23_c00327{left:427.590000px;}
.x1c_c00327{left:436.890000px;}
.x18_c00327{left:441.975000px;}
.x19_c00327{left:459.570000px;}
.x1d_c00327{left:461.040000px;}
.x13_c00327{left:490.620000px;}
.x1e_c00327{left:502.845000px;}
.x1a_c00327{left:549.930000px;}
.x14_c00327{left:625.860000px;}
.x9_c00327{left:639.180000px;}
.xa_c00327{left:656.205000px;}
.x3_c00327{left:699.015000px;}
.x4_c00327{left:727.380000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls6f_c00327{letter-spacing:-2.258667pt;}
.ls77_c00327{letter-spacing:-2.202667pt;}
.ls5a_c00327{letter-spacing:-2.165333pt;}
.ls56_c00327{letter-spacing:-2.146667pt;}
.ls58_c00327{letter-spacing:-1.987200pt;}
.ls61_c00327{letter-spacing:-1.876160pt;}
.ls65_c00327{letter-spacing:-1.741867pt;}
.ls83_c00327{letter-spacing:-1.453600pt;}
.ls6d_c00327{letter-spacing:-1.447467pt;}
.ls62_c00327{letter-spacing:-1.416960pt;}
.ls69_c00327{letter-spacing:-1.416800pt;}
.ls68_c00327{letter-spacing:-1.269600pt;}
.ls59_c00327{letter-spacing:-1.122400pt;}
.ls6b_c00327{letter-spacing:-1.085600pt;}
.ls84_c00327{letter-spacing:-0.962933pt;}
.ls5c_c00327{letter-spacing:-0.896019pt;}
.ls80_c00327{letter-spacing:-0.858667pt;}
.ls6a_c00327{letter-spacing:-0.778933pt;}
.ls7a_c00327{letter-spacing:-0.729867pt;}
.ls78_c00327{letter-spacing:-0.711467pt;}
.ls71_c00327{letter-spacing:-0.637867pt;}
.ls67_c00327{letter-spacing:-0.613333pt;}
.ls63_c00327{letter-spacing:-0.601067pt;}
.ls76_c00327{letter-spacing:-0.509067pt;}
.ls7d_c00327{letter-spacing:-0.441600pt;}
.ls72_c00327{letter-spacing:-0.417067pt;}
.ls87_c00327{letter-spacing:-0.400267pt;}
.ls74_c00327{letter-spacing:-0.392533pt;}
.ls7c_c00327{letter-spacing:-0.355733pt;}
.ls57_c00327{letter-spacing:-0.306667pt;}
.ls66_c00327{letter-spacing:-0.294400pt;}
.ls73_c00327{letter-spacing:-0.257600pt;}
.ls79_c00327{letter-spacing:-0.239200pt;}
.ls51_c00327{letter-spacing:-0.116533pt;}
.ls6c_c00327{letter-spacing:-0.104267pt;}
.ls64_c00327{letter-spacing:-0.079733pt;}
.ls82_c00327{letter-spacing:-0.067467pt;}
.ls6e_c00327{letter-spacing:-0.036800pt;}
.ls52_c00327{letter-spacing:0.000000pt;}
.ls7f_c00327{letter-spacing:0.024533pt;}
.ls2_c00327{letter-spacing:0.049067pt;}
.ls21_c00327{letter-spacing:0.061333pt;}
.ls27_c00327{letter-spacing:0.073600pt;}
.ls19_c00327{letter-spacing:0.092000pt;}
.lse_c00327{letter-spacing:0.116533pt;}
.ls53_c00327{letter-spacing:0.122667pt;}
.ls31_c00327{letter-spacing:0.165600pt;}
.ls2a_c00327{letter-spacing:0.171733pt;}
.ls1a_c00327{letter-spacing:0.184000pt;}
.ls20_c00327{letter-spacing:0.190133pt;}
.ls36_c00327{letter-spacing:0.196267pt;}
.ls81_c00327{letter-spacing:0.208533pt;}
.ls23_c00327{letter-spacing:0.220800pt;}
.ls7_c00327{letter-spacing:0.226933pt;}
.ls22_c00327{letter-spacing:0.233067pt;}
.ls55_c00327{letter-spacing:0.245333pt;}
.ls75_c00327{letter-spacing:0.251467pt;}
.ls3a_c00327{letter-spacing:0.261440pt;}
.ls30_c00327{letter-spacing:0.263733pt;}
.ls32_c00327{letter-spacing:0.276000pt;}
.lsb_c00327{letter-spacing:0.294400pt;}
.ls12_c00327{letter-spacing:0.312800pt;}
.ls37_c00327{letter-spacing:0.325067pt;}
.ls1e_c00327{letter-spacing:0.349600pt;}
.ls5_c00327{letter-spacing:0.361867pt;}
.ls2c_c00327{letter-spacing:0.380267pt;}
.ls2e_c00327{letter-spacing:0.392533pt;}
.ls15_c00327{letter-spacing:0.404800pt;}
.ls1_c00327{letter-spacing:0.425600pt;}
.ls7b_c00327{letter-spacing:0.435467pt;}
.ls40_c00327{letter-spacing:0.441600pt;}
.ls1f_c00327{letter-spacing:0.453867pt;}
.ls24_c00327{letter-spacing:0.460000pt;}
.ls4_c00327{letter-spacing:0.478400pt;}
.ls14_c00327{letter-spacing:0.484533pt;}
.lsc_c00327{letter-spacing:0.492480pt;}
.ls2f_c00327{letter-spacing:0.496800pt;}
.ls1c_c00327{letter-spacing:0.509067pt;}
.lsd_c00327{letter-spacing:0.516800pt;}
.ls8_c00327{letter-spacing:0.527467pt;}
.ls9_c00327{letter-spacing:0.545867pt;}
.ls29_c00327{letter-spacing:0.552000pt;}
.ls16_c00327{letter-spacing:0.564267pt;}
.ls6_c00327{letter-spacing:0.570400pt;}
.ls0_c00327{letter-spacing:0.583680pt;}
.ls18_c00327{letter-spacing:0.607200pt;}
.ls3b_c00327{letter-spacing:0.644000pt;}
.ls34_c00327{letter-spacing:0.711360pt;}
.ls47_c00327{letter-spacing:0.711467pt;}
.ls2b_c00327{letter-spacing:0.760533pt;}
.lsf_c00327{letter-spacing:0.766080pt;}
.ls3c_c00327{letter-spacing:0.785067pt;}
.lsa_c00327{letter-spacing:0.821867pt;}
.ls10_c00327{letter-spacing:0.826880pt;}
.ls28_c00327{letter-spacing:0.845120pt;}
.ls3_c00327{letter-spacing:0.846400pt;}
.ls41_c00327{letter-spacing:0.883200pt;}
.ls86_c00327{letter-spacing:0.932267pt;}
.ls60_c00327{letter-spacing:0.933360pt;}
.ls33_c00327{letter-spacing:0.938400pt;}
.ls45_c00327{letter-spacing:0.944533pt;}
.ls17_c00327{letter-spacing:0.975200pt;}
.ls44_c00327{letter-spacing:0.987467pt;}
.ls11_c00327{letter-spacing:0.993600pt;}
.ls2d_c00327{letter-spacing:1.024267pt;}
.ls3e_c00327{letter-spacing:1.085600pt;}
.ls7e_c00327{letter-spacing:1.089280pt;}
.ls38_c00327{letter-spacing:1.104000pt;}
.ls39_c00327{letter-spacing:1.128533pt;}
.ls4e_c00327{letter-spacing:1.159200pt;}
.ls1b_c00327{letter-spacing:1.165333pt;}
.ls3d_c00327{letter-spacing:1.177600pt;}
.ls70_c00327{letter-spacing:1.220533pt;}
.ls13_c00327{letter-spacing:1.245067pt;}
.ls4a_c00327{letter-spacing:1.251200pt;}
.ls4f_c00327{letter-spacing:1.275733pt;}
.ls5b_c00327{letter-spacing:1.280027pt;}
.ls4d_c00327{letter-spacing:1.281867pt;}
.ls3f_c00327{letter-spacing:1.318667pt;}
.ls1d_c00327{letter-spacing:1.324800pt;}
.ls43_c00327{letter-spacing:1.343200pt;}
.ls46_c00327{letter-spacing:1.373867pt;}
.ls48_c00327{letter-spacing:1.422933pt;}
.ls50_c00327{letter-spacing:1.524427pt;}
.ls5f_c00327{letter-spacing:1.678080pt;}
.ls85_c00327{letter-spacing:1.827733pt;}
.ls4b_c00327{letter-spacing:1.846133pt;}
.ls49_c00327{letter-spacing:1.864533pt;}
.ls42_c00327{letter-spacing:1.993333pt;}
.ls25_c00327{letter-spacing:1.999467pt;}
.ls4c_c00327{letter-spacing:2.060800pt;}
.ls26_c00327{letter-spacing:2.275467pt;}
.ls5e_c00327{letter-spacing:2.320853pt;}
.ls5d_c00327{letter-spacing:2.453333pt;}
.ls35_c00327{letter-spacing:2.588267pt;}
.ls54_c00327{letter-spacing:3.066667pt;}
.ws6_c00327{word-spacing:0.000000pt;}
.ws2_c00327{word-spacing:0.122453pt;}
.ws5_c00327{word-spacing:2.100267pt;}
.ws4_c00327{word-spacing:3.811733pt;}
.ws3_c00327{word-spacing:8.092800pt;}
.ws0_c00327{word-spacing:16.180267pt;}
.ws1_c00327{word-spacing:16.531413pt;}
._f_c00327{margin-left:-6.434667pt;}
._e_c00327{margin-left:-5.513867pt;}
._10_c00327{margin-left:-3.367307pt;}
._7_c00327{margin-left:-1.906667pt;}
._c_c00327{margin-left:-0.908533pt;}
._d_c00327{width:0.919200pt;}
._4_c00327{width:1.901333pt;}
._6_c00327{width:3.962133pt;}
._a_c00327{width:4.920533pt;}
._5_c00327{width:6.513600pt;}
._9_c00327{width:7.812533pt;}
._8_c00327{width:9.580267pt;}
._0_c00327{width:11.015573pt;}
._2_c00327{width:11.984533pt;}
._3_c00327{width:14.174133pt;}
._11_c00327{width:16.255520pt;}
._b_c00327{width:18.409760pt;}
._1_c00327{width:20.038293pt;}
.fs8_c00327{font-size:18.667200pt;}
.fs6_c00327{font-size:25.600533pt;}
.fs3_c00327{font-size:43.520000pt;}
.fs4_c00327{font-size:43.733333pt;}
.fs7_c00327{font-size:49.066667pt;}
.fsd_c00327{font-size:50.666667pt;}
.fs0_c00327{font-size:53.866667pt;}
.fsc_c00327{font-size:59.200000pt;}
.fs1_c00327{font-size:60.800000pt;}
.fs2_c00327{font-size:61.333333pt;}
.fs5_c00327{font-size:61.866667pt;}
.fsb_c00327{font-size:62.933333pt;}
.fsa_c00327{font-size:64.533333pt;}
.fs9_c00327{font-size:65.600000pt;}
.y0_c00327{bottom:0.000000pt;}
.y1a_c00327{bottom:59.200000pt;}
.y19_c00327{bottom:138.868667pt;}
.y18_c00327{bottom:165.748000pt;}
.y17_c00327{bottom:220.488000pt;}
.y16_c00327{bottom:275.212667pt;}
.y15_c00327{bottom:329.600000pt;}
.y14_c00327{bottom:384.634667pt;}
.y13_c00327{bottom:412.173333pt;}
.y12_c00327{bottom:466.573333pt;}
.y10_c00327{bottom:494.092000pt;}
.y11_c00327{bottom:494.093333pt;}
.yf_c00327{bottom:521.600000pt;}
.ye_c00327{bottom:576.640000pt;}
.yd_c00327{bottom:632.967333pt;}
.yc_c00327{bottom:660.168667pt;}
.yb_c00327{bottom:687.692000pt;}
.ya_c00327{bottom:715.200000pt;}
.y9_c00327{bottom:769.933333pt;}
.y7_c00327{bottom:824.010667pt;}
.y8_c00327{bottom:824.013333pt;}
.y6_c00327{bottom:878.720000pt;}
.y5_c00327{bottom:905.933333pt;}
.y4_c00327{bottom:959.360000pt;}
.y3_c00327{bottom:961.613333pt;}
.y2_c00327{bottom:988.800000pt;}
.y1_c00327{bottom:1055.693333pt;}
.h8_c00327{height:18.311721pt;}
.h9_c00327{height:18.320836pt;}
.h6_c00327{height:26.700556pt;}
.h4_c00327{height:28.984320pt;}
.h7_c00327{height:48.156250pt;}
.h10_c00327{height:49.726562pt;}
.h2_c00327{height:52.867187pt;}
.h3_c00327{height:60.195312pt;}
.he_c00327{height:60.200646pt;}
.hb_c00327{height:60.205979pt;}
.hf_c00327{height:61.743750pt;}
.hd_c00327{height:61.765625pt;}
.hc_c00327{height:63.335938pt;}
.ha_c00327{height:64.350781pt;}
.h5_c00327{height:64.525000pt;}
.h1_c00327{height:1122.666667pt;}
.h0_c00327{height:1122.880000pt;}
.w1_c00327{width:793.333333pt;}
.w0_c00327{width:793.600000pt;}
.x0_c00327{left:0.000000pt;}
.x1_c00327{left:111.933333pt;}
.xb_c00327{left:113.093333pt;}
.x22_c00327{left:114.080000pt;}
.xc_c00327{left:129.866667pt;}
.xd_c00327{left:136.813333pt;}
.x16_c00327{left:157.346667pt;}
.x2_c00327{left:159.506667pt;}
.x1b_c00327{left:160.653333pt;}
.x5_c00327{left:176.586667pt;}
.x17_c00327{left:196.946667pt;}
.x6_c00327{left:223.693333pt;}
.x7_c00327{left:240.973333pt;}
.xe_c00327{left:242.080000pt;}
.x1f_c00327{left:263.333333pt;}
.x15_c00327{left:274.240000pt;}
.x20_c00327{left:280.493333pt;}
.xf_c00327{left:282.093333pt;}
.x21_c00327{left:299.546667pt;}
.x8_c00327{left:318.560000pt;}
.x10_c00327{left:320.493333pt;}
.x11_c00327{left:339.053333pt;}
.x12_c00327{left:352.880000pt;}
.x23_c00327{left:380.080000pt;}
.x1c_c00327{left:388.346667pt;}
.x18_c00327{left:392.866667pt;}
.x19_c00327{left:408.506667pt;}
.x1d_c00327{left:409.813333pt;}
.x13_c00327{left:436.106667pt;}
.x1e_c00327{left:446.973333pt;}
.x1a_c00327{left:488.826667pt;}
.x14_c00327{left:556.320000pt;}
.x9_c00327{left:568.160000pt;}
.xa_c00327{left:583.293333pt;}
.x3_c00327{left:621.346667pt;}
.x4_c00327{left:646.560000pt;}
}





/* 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_c00328 {
    display:none;
  }
  .loading-indicator_c00328.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00328 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_c00328 { 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_c00328" -> "#page-container .classname_c00328")
 */
.pf_c00328 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00328 { /* 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_c00328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00328 { /* 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_c00328 { /* 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_c00328 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00328 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00328 {overflow:visible;}
  }
}
.c_c00328 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00328 { /* 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_c00328:after { /* webkit #35443 */
  content: '';
}
.t_c00328:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00328 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 */
}
.__c00328 { /* 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_c00328 { /* info for Javascript */
  display:none;
}
.l_c00328 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00328 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00328 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00328: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_c00328 {
    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_c00328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00328.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_c00328 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00328;src:url('chunks/assets/font_c2454c5d2630f3717e461745.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.284668;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_c00328;src:url('chunks/assets/font_524561c4d6637b889f3447e5.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.284180;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_c00328;src:url('chunks/assets/font_d2fdb1f1b2e3d9d237f696b4.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.311035;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_c00328;src:url('chunks/assets/font_72226a38bfff7d5757465a1e.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;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;}
.m15_c00328{transform:matrix(0.122584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122584,0.000000,0.000000,0.250000,0,0);}
.m11_c00328{transform:matrix(0.124872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124872,0.000000,0.000000,0.250000,0,0);}
.m9_c00328{transform:matrix(0.215827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215827,0.000000,0.000000,0.250000,0,0);}
.me_c00328{transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);}
.m7_c00328{transform:matrix(0.242583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242583,0.000000,0.000000,0.250000,0,0);}
.m3_c00328{transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);}
.m5_c00328{transform:matrix(0.244879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244879,0.000000,0.000000,0.250000,0,0);}
.m18_c00328{transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);}
.m0_c00328{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m16_c00328{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m4_c00328{transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);}
.mb_c00328{transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);}
.m6_c00328{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m2_c00328{transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{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);}
.mf_c00328{transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);}
.m8_c00328{transform:matrix(0.256004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256004,0.000000,0.000000,0.250000,0,0);}
.m17_c00328{transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);}
.m10_c00328{transform:matrix(0.262651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262651,0.000000,0.000000,0.250000,0,0);}
.mc_c00328{transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);}
.md_c00328{transform:matrix(0.309358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309358,0.000000,0.000000,0.250000,0,0);}
.ma_c00328{transform:matrix(0.315848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315848,0.000000,0.000000,0.250000,0,0);}
.m14_c00328{transform:matrix(0.583031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583031,0.000000,0.000000,0.250000,0,0);}
.m13_c00328{transform:matrix(0.627312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627312,0.000000,0.000000,0.250000,0,0);}
.m12_c00328{transform:matrix(0.806499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806499,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls7d_c00328{letter-spacing:-2.604000px;}
.ls3f_c00328{letter-spacing:-2.478000px;}
.ls5f_c00328{letter-spacing:-2.463840px;}
.ls38_c00328{letter-spacing:-2.352000px;}
.ls6a_c00328{letter-spacing:-2.315160px;}
.ls9b_c00328{letter-spacing:-2.308080px;}
.ls85_c00328{letter-spacing:-2.058000px;}
.ls9c_c00328{letter-spacing:-2.024880px;}
.ls88_c00328{letter-spacing:-1.743000px;}
.ls9d_c00328{letter-spacing:-1.692120px;}
.ls80_c00328{letter-spacing:-1.625040px;}
.ls9e_c00328{letter-spacing:-1.621320px;}
.ls93_c00328{letter-spacing:-1.578840px;}
.ls55_c00328{letter-spacing:-1.508040px;}
.ls96_c00328{letter-spacing:-1.479720px;}
.ls4f_c00328{letter-spacing:-1.444320px;}
.ls72_c00328{letter-spacing:-1.352280px;}
.ls8e_c00328{letter-spacing:-1.345200px;}
.ls4c_c00328{letter-spacing:-1.323960px;}
.ls7f_c00328{letter-spacing:-1.281480px;}
.ls54_c00328{letter-spacing:-1.246080px;}
.ls98_c00328{letter-spacing:-1.231920px;}
.ls4b_c00328{letter-spacing:-1.146960px;}
.ls4d_c00328{letter-spacing:-1.139880px;}
.ls77_c00328{letter-spacing:-1.097400px;}
.ls94_c00328{letter-spacing:-1.047840px;}
.ls89_c00328{letter-spacing:-1.040760px;}
.ls9a_c00328{letter-spacing:-1.012440px;}
.ls9f_c00328{letter-spacing:-0.969960px;}
.ls63_c00328{letter-spacing:-0.941640px;}
.ls5a_c00328{letter-spacing:-0.934560px;}
.ls6f_c00328{letter-spacing:-0.906240px;}
.ls91_c00328{letter-spacing:-0.885000px;}
.ls99_c00328{letter-spacing:-0.863760px;}
.ls43_c00328{letter-spacing:-0.856680px;}
.ls90_c00328{letter-spacing:-0.835440px;}
.ls69_c00328{letter-spacing:-0.821280px;}
.ls42_c00328{letter-spacing:-0.800040px;}
.ls70_c00328{letter-spacing:-0.792960px;}
.ls40_c00328{letter-spacing:-0.771720px;}
.ls95_c00328{letter-spacing:-0.729240px;}
.ls39_c00328{letter-spacing:-0.708000px;}
.ls60_c00328{letter-spacing:-0.679680px;}
.ls6d_c00328{letter-spacing:-0.665520px;}
.ls61_c00328{letter-spacing:-0.644280px;}
.ls46_c00328{letter-spacing:-0.637200px;}
.ls92_c00328{letter-spacing:-0.623040px;}
.ls53_c00328{letter-spacing:-0.615960px;}
.ls62_c00328{letter-spacing:-0.566400px;}
.ls48_c00328{letter-spacing:-0.559320px;}
.ls58_c00328{letter-spacing:-0.531000px;}
.ls8c_c00328{letter-spacing:-0.516840px;}
.ls84_c00328{letter-spacing:-0.512820px;}
.ls4e_c00328{letter-spacing:-0.488520px;}
.ls75_c00328{letter-spacing:-0.446040px;}
.ls3c_c00328{letter-spacing:-0.438960px;}
.ls56_c00328{letter-spacing:-0.431880px;}
.ls6b_c00328{letter-spacing:-0.424800px;}
.ls79_c00328{letter-spacing:-0.410640px;}
.ls78_c00328{letter-spacing:-0.396480px;}
.ls5c_c00328{letter-spacing:-0.389400px;}
.ls41_c00328{letter-spacing:-0.382320px;}
.ls45_c00328{letter-spacing:-0.368160px;}
.ls67_c00328{letter-spacing:-0.354000px;}
.ls68_c00328{letter-spacing:-0.332760px;}
.ls7b_c00328{letter-spacing:-0.325680px;}
.ls8b_c00328{letter-spacing:-0.311520px;}
.ls66_c00328{letter-spacing:-0.297360px;}
.ls4a_c00328{letter-spacing:-0.290280px;}
.ls5b_c00328{letter-spacing:-0.283200px;}
.ls5d_c00328{letter-spacing:-0.276120px;}
.ls71_c00328{letter-spacing:-0.261960px;}
.ls49_c00328{letter-spacing:-0.259920px;}
.ls74_c00328{letter-spacing:-0.247800px;}
.ls8a_c00328{letter-spacing:-0.240720px;}
.ls3d_c00328{letter-spacing:-0.198240px;}
.ls59_c00328{letter-spacing:-0.169920px;}
.ls73_c00328{letter-spacing:-0.148680px;}
.ls7a_c00328{letter-spacing:-0.141600px;}
.ls64_c00328{letter-spacing:-0.127440px;}
.ls8f_c00328{letter-spacing:-0.099120px;}
.ls52_c00328{letter-spacing:-0.092040px;}
.ls57_c00328{letter-spacing:-0.084960px;}
.ls6c_c00328{letter-spacing:-0.077880px;}
.ls44_c00328{letter-spacing:-0.070800px;}
.ls76_c00328{letter-spacing:-0.063720px;}
.ls3b_c00328{letter-spacing:-0.049560px;}
.ls65_c00328{letter-spacing:-0.042480px;}
.ls6e_c00328{letter-spacing:-0.035400px;}
.ls50_c00328{letter-spacing:-0.028320px;}
.ls3a_c00328{letter-spacing:-0.007080px;}
.ls47_c00328{letter-spacing:0.000000px;}
.lse_c00328{letter-spacing:0.007080px;}
.ls3e_c00328{letter-spacing:0.021240px;}
.ls13_c00328{letter-spacing:0.028320px;}
.ls17_c00328{letter-spacing:0.042480px;}
.ls1c_c00328{letter-spacing:0.070800px;}
.ls31_c00328{letter-spacing:0.077880px;}
.ls4_c00328{letter-spacing:0.084960px;}
.ls2b_c00328{letter-spacing:0.106200px;}
.ls29_c00328{letter-spacing:0.141600px;}
.lsa_c00328{letter-spacing:0.191520px;}
.ls16_c00328{letter-spacing:0.198240px;}
.ls11_c00328{letter-spacing:0.219480px;}
.ls19_c00328{letter-spacing:0.254880px;}
.ls5_c00328{letter-spacing:0.261960px;}
.ls15_c00328{letter-spacing:0.276120px;}
.ls5e_c00328{letter-spacing:0.297360px;}
.ls3_c00328{letter-spacing:0.318600px;}
.lsd_c00328{letter-spacing:0.332760px;}
.ls30_c00328{letter-spacing:0.382320px;}
.ls51_c00328{letter-spacing:0.467280px;}
.ls10_c00328{letter-spacing:0.509760px;}
.ls2_c00328{letter-spacing:0.538080px;}
.ls1f_c00328{letter-spacing:0.566400px;}
.ls2a_c00328{letter-spacing:0.573480px;}
.ls1b_c00328{letter-spacing:0.642960px;}
.ls2c_c00328{letter-spacing:0.651360px;}
.ls21_c00328{letter-spacing:0.665520px;}
.lsb_c00328{letter-spacing:0.684000px;}
.ls7_c00328{letter-spacing:0.764640px;}
.ls28_c00328{letter-spacing:0.800040px;}
.lsf_c00328{letter-spacing:0.870840px;}
.ls1e_c00328{letter-spacing:0.920400px;}
.ls8_c00328{letter-spacing:0.927480px;}
.ls9_c00328{letter-spacing:0.930240px;}
.ls1_c00328{letter-spacing:0.971280px;}
.lsa0_c00328{letter-spacing:0.986100px;}
.ls23_c00328{letter-spacing:0.992340px;}
.ls37_c00328{letter-spacing:1.030560px;}
.ls97_c00328{letter-spacing:1.050900px;}
.ls2d_c00328{letter-spacing:1.054920px;}
.ls33_c00328{letter-spacing:1.073880px;}
.ls36_c00328{letter-spacing:1.078020px;}
.ls2e_c00328{letter-spacing:1.087560px;}
.ls18_c00328{letter-spacing:1.117800px;}
.ls83_c00328{letter-spacing:1.118880px;}
.ls12_c00328{letter-spacing:1.203840px;}
.ls1a_c00328{letter-spacing:1.265400px;}
.lsc_c00328{letter-spacing:1.347480px;}
.ls6_c00328{letter-spacing:1.373520px;}
.ls26_c00328{letter-spacing:1.378620px;}
.ls14_c00328{letter-spacing:1.381680px;}
.ls2f_c00328{letter-spacing:1.401840px;}
.ls8d_c00328{letter-spacing:1.430160px;}
.ls0_c00328{letter-spacing:1.436400px;}
.ls32_c00328{letter-spacing:1.566360px;}
.ls81_c00328{letter-spacing:1.658340px;}
.ls22_c00328{letter-spacing:1.771560px;}
.ls27_c00328{letter-spacing:2.004660px;}
.ls1d_c00328{letter-spacing:2.088600px;}
.ls25_c00328{letter-spacing:2.164500px;}
.ls86_c00328{letter-spacing:2.190030px;}
.ls24_c00328{letter-spacing:2.224440px;}
.ls87_c00328{letter-spacing:2.430000px;}
.ls34_c00328{letter-spacing:2.469240px;}
.ls35_c00328{letter-spacing:2.530800px;}
.ls20_c00328{letter-spacing:2.633760px;}
.ls7e_c00328{letter-spacing:2.970000px;}
.ls82_c00328{letter-spacing:3.330000px;}
.ls7c_c00328{letter-spacing:3.540000px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{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__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00328{word-spacing:0.000000px;}
.ws0_c00328{word-spacing:24.151680px;}
._1e_c00328{margin-left:-12.654000px;}
._1b_c00328{margin-left:-4.602000px;}
._15_c00328{margin-left:-2.916000px;}
._1a_c00328{margin-left:-1.720440px;}
._19_c00328{width:1.302720px;}
._17_c00328{width:2.336400px;}
._16_c00328{width:3.469200px;}
._18_c00328{width:5.259960px;}
._7_c00328{width:6.803880px;}
._8_c00328{width:7.851720px;}
._12_c00328{width:9.968640px;}
._10_c00328{width:11.179320px;}
._a_c00328{width:12.630720px;}
._11_c00328{width:13.742280px;}
._9_c00328{width:14.889240px;}
._1d_c00328{width:16.645080px;}
._14_c00328{width:18.642000px;}
._13_c00328{width:20.037120px;}
._0_c00328{width:21.409200px;}
._4_c00328{width:23.328600px;}
._1_c00328{width:24.355200px;}
._6_c00328{width:26.224320px;}
._3_c00328{width:27.491640px;}
._2_c00328{width:28.532400px;}
._b_c00328{width:30.174360px;}
._5_c00328{width:31.937880px;}
._c_c00328{width:33.952920px;}
._f_c00328{width:35.145120px;}
._e_c00328{width:38.284320px;}
._d_c00328{width:40.285200px;}
._1c_c00328{width:73.444664px;}
.fc0_c00328{color:transparent;}
.fsb_c00328{font-size:41.400600px;}
.fs9_c00328{font-size:43.800600px;}
.fsa_c00328{font-size:48.600000px;}
.fsc_c00328{font-size:49.800000px;}
.fse_c00328{font-size:57.000000px;}
.fs7_c00328{font-size:58.800000px;}
.fs5_c00328{font-size:59.400000px;}
.fs6_c00328{font-size:66.600000px;}
.fs0_c00328{font-size:67.200000px;}
.fsd_c00328{font-size:67.800000px;}
.fs1_c00328{font-size:68.400000px;}
.fs3_c00328{font-size:69.000000px;}
.fs2_c00328{font-size:70.800000px;}
.fs4_c00328{font-size:74.400000px;}
.fs8_c00328{font-size:92.400000px;}
.y0_c00328{bottom:0.000000px;}
.y21_c00328{bottom:64.095006px;}
.y20_c00328{bottom:185.760006px;}
.y1f_c00328{bottom:185.768406px;}
.y1e_c00328{bottom:246.975006px;}
.y1d_c00328{bottom:278.280006px;}
.y1c_c00328{bottom:340.225806px;}
.y1b_c00328{bottom:402.140406px;}
.y1a_c00328{bottom:433.097706px;}
.y18_c00328{bottom:464.054406px;}
.y19_c00328{bottom:464.055006px;}
.y17_c00328{bottom:494.640006px;}
.y16_c00328{bottom:522.015006px;}
.y15_c00328{bottom:525.975006px;}
.y13_c00328{bottom:556.547706px;}
.y14_c00328{bottom:556.560006px;}
.y12_c00328{bottom:587.168706px;}
.y11_c00328{bottom:618.480006px;}
.y10_c00328{bottom:680.055006px;}
.yf_c00328{bottom:711.015006px;}
.ye_c00328{bottom:772.937106px;}
.yd_c00328{bottom:834.476706px;}
.yc_c00328{bottom:896.055006px;}
.yb_c00328{bottom:927.000006px;}
.ya_c00328{bottom:957.611706px;}
.y9_c00328{bottom:988.215006px;}
.y8_c00328{bottom:988.220406px;}
.y7_c00328{bottom:1019.160006px;}
.y6_c00328{bottom:1050.135006px;}
.y5_c00328{bottom:1050.137706px;}
.y4_c00328{bottom:1081.095006px;}
.y3_c00328{bottom:1081.103706px;}
.y2_c00328{bottom:1112.415006px;}
.y1_c00328{bottom:1189.095006px;}
.hc_c00328{height:42.987894px;}
.he_c00328{height:43.179532px;}
.hd_c00328{height:47.698242px;}
.hf_c00328{height:51.939844px;}
.h12_c00328{height:55.942383px;}
.ha_c00328{height:57.708984px;}
.h8_c00328{height:58.297852px;}
.h9_c00328{height:65.364258px;}
.h2_c00328{height:65.953125px;}
.h11_c00328{height:67.097461px;}
.h3_c00328{height:69.486328px;}
.h10_c00328{height:69.488728px;}
.h4_c00328{height:69.499528px;}
.h6_c00328{height:69.535528px;}
.h5_c00328{height:69.552263px;}
.h7_c00328{height:73.019531px;}
.hb_c00328{height:96.370313px;}
.h1_c00328{height:1263.000000px;}
.h0_c00328{height:1263.240006px;}
.w1_c00328{width:892.500000px;}
.w0_c00328{width:892.799998px;}
.x0_c00328{left:0.000000px;}
.x11_c00328{left:114.309599px;}
.x3_c00328{left:115.951498px;}
.x1_c00328{left:117.644998px;}
.x20_c00328{left:158.549998px;}
.x6_c00328{left:162.209998px;}
.x26_c00328{left:166.214999px;}
.xf_c00328{left:167.549998px;}
.xe_c00328{left:169.007698px;}
.x2_c00328{left:170.084998px;}
.x7_c00328{left:184.844999px;}
.x4_c00328{left:187.364998px;}
.x21_c00328{left:210.329998px;}
.x5_c00328{left:216.899999px;}
.x27_c00328{left:234.524998px;}
.xa_c00328{left:244.289998px;}
.xb_c00328{left:262.034999px;}
.x28_c00328{left:263.624999px;}
.x25_c00328{left:270.734998px;}
.x12_c00328{left:271.949999px;}
.x13_c00328{left:297.914999px;}
.x10_c00328{left:310.439999px;}
.x14_c00328{left:327.359999px;}
.x1c_c00328{left:344.549999px;}
.x15_c00328{left:358.694999px;}
.x29_c00328{left:369.254999px;}
.x16_c00328{left:374.579998px;}
.x1d_c00328{left:376.199999px;}
.x24_c00328{left:381.809999px;}
.x17_c00328{left:397.184999px;}
.x2a_c00328{left:417.164999px;}
.x2c_c00328{left:419.309999px;}
.xc_c00328{left:421.034998px;}
.x18_c00328{left:434.744999px;}
.x2b_c00328{left:438.044999px;}
.xd_c00328{left:442.649999px;}
.x19_c00328{left:472.994999px;}
.x1e_c00328{left:502.094998px;}
.x1a_c00328{left:504.764998px;}
.x1b_c00328{left:525.134999px;}
.x1f_c00328{left:528.509999px;}
.x22_c00328{left:615.689999px;}
.x8_c00328{left:658.649999px;}
.x23_c00328{left:669.434999px;}
.x9_c00328{left:685.244999px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls7d_c00328{letter-spacing:-2.314667pt;}
.ls3f_c00328{letter-spacing:-2.202667pt;}
.ls5f_c00328{letter-spacing:-2.190080pt;}
.ls38_c00328{letter-spacing:-2.090667pt;}
.ls6a_c00328{letter-spacing:-2.057920pt;}
.ls9b_c00328{letter-spacing:-2.051627pt;}
.ls85_c00328{letter-spacing:-1.829333pt;}
.ls9c_c00328{letter-spacing:-1.799893pt;}
.ls88_c00328{letter-spacing:-1.549333pt;}
.ls9d_c00328{letter-spacing:-1.504107pt;}
.ls80_c00328{letter-spacing:-1.444480pt;}
.ls9e_c00328{letter-spacing:-1.441173pt;}
.ls93_c00328{letter-spacing:-1.403413pt;}
.ls55_c00328{letter-spacing:-1.340480pt;}
.ls96_c00328{letter-spacing:-1.315307pt;}
.ls4f_c00328{letter-spacing:-1.283840pt;}
.ls72_c00328{letter-spacing:-1.202027pt;}
.ls8e_c00328{letter-spacing:-1.195733pt;}
.ls4c_c00328{letter-spacing:-1.176853pt;}
.ls7f_c00328{letter-spacing:-1.139093pt;}
.ls54_c00328{letter-spacing:-1.107627pt;}
.ls98_c00328{letter-spacing:-1.095040pt;}
.ls4b_c00328{letter-spacing:-1.019520pt;}
.ls4d_c00328{letter-spacing:-1.013227pt;}
.ls77_c00328{letter-spacing:-0.975467pt;}
.ls94_c00328{letter-spacing:-0.931413pt;}
.ls89_c00328{letter-spacing:-0.925120pt;}
.ls9a_c00328{letter-spacing:-0.899947pt;}
.ls9f_c00328{letter-spacing:-0.862187pt;}
.ls63_c00328{letter-spacing:-0.837013pt;}
.ls5a_c00328{letter-spacing:-0.830720pt;}
.ls6f_c00328{letter-spacing:-0.805547pt;}
.ls91_c00328{letter-spacing:-0.786667pt;}
.ls99_c00328{letter-spacing:-0.767787pt;}
.ls43_c00328{letter-spacing:-0.761493pt;}
.ls90_c00328{letter-spacing:-0.742613pt;}
.ls69_c00328{letter-spacing:-0.730027pt;}
.ls42_c00328{letter-spacing:-0.711147pt;}
.ls70_c00328{letter-spacing:-0.704853pt;}
.ls40_c00328{letter-spacing:-0.685973pt;}
.ls95_c00328{letter-spacing:-0.648213pt;}
.ls39_c00328{letter-spacing:-0.629333pt;}
.ls60_c00328{letter-spacing:-0.604160pt;}
.ls6d_c00328{letter-spacing:-0.591573pt;}
.ls61_c00328{letter-spacing:-0.572693pt;}
.ls46_c00328{letter-spacing:-0.566400pt;}
.ls92_c00328{letter-spacing:-0.553813pt;}
.ls53_c00328{letter-spacing:-0.547520pt;}
.ls62_c00328{letter-spacing:-0.503467pt;}
.ls48_c00328{letter-spacing:-0.497173pt;}
.ls58_c00328{letter-spacing:-0.472000pt;}
.ls8c_c00328{letter-spacing:-0.459413pt;}
.ls84_c00328{letter-spacing:-0.455840pt;}
.ls4e_c00328{letter-spacing:-0.434240pt;}
.ls75_c00328{letter-spacing:-0.396480pt;}
.ls3c_c00328{letter-spacing:-0.390187pt;}
.ls56_c00328{letter-spacing:-0.383893pt;}
.ls6b_c00328{letter-spacing:-0.377600pt;}
.ls79_c00328{letter-spacing:-0.365013pt;}
.ls78_c00328{letter-spacing:-0.352427pt;}
.ls5c_c00328{letter-spacing:-0.346133pt;}
.ls41_c00328{letter-spacing:-0.339840pt;}
.ls45_c00328{letter-spacing:-0.327253pt;}
.ls67_c00328{letter-spacing:-0.314667pt;}
.ls68_c00328{letter-spacing:-0.295787pt;}
.ls7b_c00328{letter-spacing:-0.289493pt;}
.ls8b_c00328{letter-spacing:-0.276907pt;}
.ls66_c00328{letter-spacing:-0.264320pt;}
.ls4a_c00328{letter-spacing:-0.258027pt;}
.ls5b_c00328{letter-spacing:-0.251733pt;}
.ls5d_c00328{letter-spacing:-0.245440pt;}
.ls71_c00328{letter-spacing:-0.232853pt;}
.ls49_c00328{letter-spacing:-0.231040pt;}
.ls74_c00328{letter-spacing:-0.220267pt;}
.ls8a_c00328{letter-spacing:-0.213973pt;}
.ls3d_c00328{letter-spacing:-0.176213pt;}
.ls59_c00328{letter-spacing:-0.151040pt;}
.ls73_c00328{letter-spacing:-0.132160pt;}
.ls7a_c00328{letter-spacing:-0.125867pt;}
.ls64_c00328{letter-spacing:-0.113280pt;}
.ls8f_c00328{letter-spacing:-0.088107pt;}
.ls52_c00328{letter-spacing:-0.081813pt;}
.ls57_c00328{letter-spacing:-0.075520pt;}
.ls6c_c00328{letter-spacing:-0.069227pt;}
.ls44_c00328{letter-spacing:-0.062933pt;}
.ls76_c00328{letter-spacing:-0.056640pt;}
.ls3b_c00328{letter-spacing:-0.044053pt;}
.ls65_c00328{letter-spacing:-0.037760pt;}
.ls6e_c00328{letter-spacing:-0.031467pt;}
.ls50_c00328{letter-spacing:-0.025173pt;}
.ls3a_c00328{letter-spacing:-0.006293pt;}
.ls47_c00328{letter-spacing:0.000000pt;}
.lse_c00328{letter-spacing:0.006293pt;}
.ls3e_c00328{letter-spacing:0.018880pt;}
.ls13_c00328{letter-spacing:0.025173pt;}
.ls17_c00328{letter-spacing:0.037760pt;}
.ls1c_c00328{letter-spacing:0.062933pt;}
.ls31_c00328{letter-spacing:0.069227pt;}
.ls4_c00328{letter-spacing:0.075520pt;}
.ls2b_c00328{letter-spacing:0.094400pt;}
.ls29_c00328{letter-spacing:0.125867pt;}
.lsa_c00328{letter-spacing:0.170240pt;}
.ls16_c00328{letter-spacing:0.176213pt;}
.ls11_c00328{letter-spacing:0.195093pt;}
.ls19_c00328{letter-spacing:0.226560pt;}
.ls5_c00328{letter-spacing:0.232853pt;}
.ls15_c00328{letter-spacing:0.245440pt;}
.ls5e_c00328{letter-spacing:0.264320pt;}
.ls3_c00328{letter-spacing:0.283200pt;}
.lsd_c00328{letter-spacing:0.295787pt;}
.ls30_c00328{letter-spacing:0.339840pt;}
.ls51_c00328{letter-spacing:0.415360pt;}
.ls10_c00328{letter-spacing:0.453120pt;}
.ls2_c00328{letter-spacing:0.478293pt;}
.ls1f_c00328{letter-spacing:0.503467pt;}
.ls2a_c00328{letter-spacing:0.509760pt;}
.ls1b_c00328{letter-spacing:0.571520pt;}
.ls2c_c00328{letter-spacing:0.578987pt;}
.ls21_c00328{letter-spacing:0.591573pt;}
.lsb_c00328{letter-spacing:0.608000pt;}
.ls7_c00328{letter-spacing:0.679680pt;}
.ls28_c00328{letter-spacing:0.711147pt;}
.lsf_c00328{letter-spacing:0.774080pt;}
.ls1e_c00328{letter-spacing:0.818133pt;}
.ls8_c00328{letter-spacing:0.824427pt;}
.ls9_c00328{letter-spacing:0.826880pt;}
.ls1_c00328{letter-spacing:0.863360pt;}
.lsa0_c00328{letter-spacing:0.876533pt;}
.ls23_c00328{letter-spacing:0.882080pt;}
.ls37_c00328{letter-spacing:0.916053pt;}
.ls97_c00328{letter-spacing:0.934133pt;}
.ls2d_c00328{letter-spacing:0.937707pt;}
.ls33_c00328{letter-spacing:0.954560pt;}
.ls36_c00328{letter-spacing:0.958240pt;}
.ls2e_c00328{letter-spacing:0.966720pt;}
.ls18_c00328{letter-spacing:0.993600pt;}
.ls83_c00328{letter-spacing:0.994560pt;}
.ls12_c00328{letter-spacing:1.070080pt;}
.ls1a_c00328{letter-spacing:1.124800pt;}
.lsc_c00328{letter-spacing:1.197760pt;}
.ls6_c00328{letter-spacing:1.220907pt;}
.ls26_c00328{letter-spacing:1.225440pt;}
.ls14_c00328{letter-spacing:1.228160pt;}
.ls2f_c00328{letter-spacing:1.246080pt;}
.ls8d_c00328{letter-spacing:1.271253pt;}
.ls0_c00328{letter-spacing:1.276800pt;}
.ls32_c00328{letter-spacing:1.392320pt;}
.ls81_c00328{letter-spacing:1.474080pt;}
.ls22_c00328{letter-spacing:1.574720pt;}
.ls27_c00328{letter-spacing:1.781920pt;}
.ls1d_c00328{letter-spacing:1.856533pt;}
.ls25_c00328{letter-spacing:1.924000pt;}
.ls86_c00328{letter-spacing:1.946693pt;}
.ls24_c00328{letter-spacing:1.977280pt;}
.ls87_c00328{letter-spacing:2.160000pt;}
.ls34_c00328{letter-spacing:2.194880pt;}
.ls35_c00328{letter-spacing:2.249600pt;}
.ls20_c00328{letter-spacing:2.341120pt;}
.ls7e_c00328{letter-spacing:2.640000pt;}
.ls82_c00328{letter-spacing:2.960000pt;}
.ls7c_c00328{letter-spacing:3.146667pt;}
.ws1_c00328{word-spacing:0.000000pt;}
.ws0_c00328{word-spacing:21.468160pt;}
._1e_c00328{margin-left:-11.248000pt;}
._1b_c00328{margin-left:-4.090667pt;}
._15_c00328{margin-left:-2.592000pt;}
._1a_c00328{margin-left:-1.529280pt;}
._19_c00328{width:1.157973pt;}
._17_c00328{width:2.076800pt;}
._16_c00328{width:3.083733pt;}
._18_c00328{width:4.675520pt;}
._7_c00328{width:6.047893pt;}
._8_c00328{width:6.979307pt;}
._12_c00328{width:8.861013pt;}
._10_c00328{width:9.937173pt;}
._a_c00328{width:11.227307pt;}
._11_c00328{width:12.215360pt;}
._9_c00328{width:13.234880pt;}
._1d_c00328{width:14.795627pt;}
._14_c00328{width:16.570667pt;}
._13_c00328{width:17.810773pt;}
._0_c00328{width:19.030400pt;}
._4_c00328{width:20.736533pt;}
._1_c00328{width:21.649067pt;}
._6_c00328{width:23.310507pt;}
._3_c00328{width:24.437013pt;}
._2_c00328{width:25.362133pt;}
._b_c00328{width:26.821653pt;}
._5_c00328{width:28.389227pt;}
._c_c00328{width:30.180373pt;}
._f_c00328{width:31.240107pt;}
._e_c00328{width:34.030507pt;}
._d_c00328{width:35.809067pt;}
._1c_c00328{width:65.284146pt;}
.fsb_c00328{font-size:36.800533pt;}
.fs9_c00328{font-size:38.933867pt;}
.fsa_c00328{font-size:43.200000pt;}
.fsc_c00328{font-size:44.266667pt;}
.fse_c00328{font-size:50.666667pt;}
.fs7_c00328{font-size:52.266667pt;}
.fs5_c00328{font-size:52.800000pt;}
.fs6_c00328{font-size:59.200000pt;}
.fs0_c00328{font-size:59.733333pt;}
.fsd_c00328{font-size:60.266667pt;}
.fs1_c00328{font-size:60.800000pt;}
.fs3_c00328{font-size:61.333333pt;}
.fs2_c00328{font-size:62.933333pt;}
.fs4_c00328{font-size:66.133333pt;}
.fs8_c00328{font-size:82.133333pt;}
.y0_c00328{bottom:0.000000pt;}
.y21_c00328{bottom:56.973339pt;}
.y20_c00328{bottom:165.120005pt;}
.y1f_c00328{bottom:165.127472pt;}
.y1e_c00328{bottom:219.533339pt;}
.y1d_c00328{bottom:247.360005pt;}
.y1c_c00328{bottom:302.422939pt;}
.y1b_c00328{bottom:357.458139pt;}
.y1a_c00328{bottom:384.975739pt;}
.y18_c00328{bottom:412.492805pt;}
.y19_c00328{bottom:412.493339pt;}
.y17_c00328{bottom:439.680005pt;}
.y16_c00328{bottom:464.013339pt;}
.y15_c00328{bottom:467.533339pt;}
.y13_c00328{bottom:494.709072pt;}
.y14_c00328{bottom:494.720005pt;}
.y12_c00328{bottom:521.927739pt;}
.y11_c00328{bottom:549.760005pt;}
.y10_c00328{bottom:604.493339pt;}
.yf_c00328{bottom:632.013339pt;}
.ye_c00328{bottom:687.055205pt;}
.yd_c00328{bottom:741.757072pt;}
.yc_c00328{bottom:796.493339pt;}
.yb_c00328{bottom:824.000005pt;}
.ya_c00328{bottom:851.210405pt;}
.y9_c00328{bottom:878.413339pt;}
.y8_c00328{bottom:878.418139pt;}
.y7_c00328{bottom:905.920005pt;}
.y6_c00328{bottom:933.453339pt;}
.y5_c00328{bottom:933.455739pt;}
.y4_c00328{bottom:960.973339pt;}
.y3_c00328{bottom:960.981072pt;}
.y2_c00328{bottom:988.813339pt;}
.y1_c00328{bottom:1056.973339pt;}
.hc_c00328{height:38.211461pt;}
.he_c00328{height:38.381806pt;}
.hd_c00328{height:42.398437pt;}
.hf_c00328{height:46.168750pt;}
.h12_c00328{height:49.726562pt;}
.ha_c00328{height:51.296875pt;}
.h8_c00328{height:51.820312pt;}
.h9_c00328{height:58.101562pt;}
.h2_c00328{height:58.625000pt;}
.h11_c00328{height:59.642187pt;}
.h3_c00328{height:61.765625pt;}
.h10_c00328{height:61.767758pt;}
.h4_c00328{height:61.777358pt;}
.h6_c00328{height:61.809358pt;}
.h5_c00328{height:61.824233pt;}
.h7_c00328{height:64.906250pt;}
.hb_c00328{height:85.662500pt;}
.h1_c00328{height:1122.666667pt;}
.h0_c00328{height:1122.880005pt;}
.w1_c00328{width:793.333333pt;}
.w0_c00328{width:793.599999pt;}
.x0_c00328{left:0.000000pt;}
.x11_c00328{left:101.608532pt;}
.x3_c00328{left:103.067999pt;}
.x1_c00328{left:104.573332pt;}
.x20_c00328{left:140.933332pt;}
.x6_c00328{left:144.186665pt;}
.x26_c00328{left:147.746665pt;}
.xf_c00328{left:148.933332pt;}
.xe_c00328{left:150.229065pt;}
.x2_c00328{left:151.186665pt;}
.x7_c00328{left:164.306665pt;}
.x4_c00328{left:166.546665pt;}
.x21_c00328{left:186.959999pt;}
.x5_c00328{left:192.799999pt;}
.x27_c00328{left:208.466665pt;}
.xa_c00328{left:217.146665pt;}
.xb_c00328{left:232.919999pt;}
.x28_c00328{left:234.333332pt;}
.x25_c00328{left:240.653332pt;}
.x12_c00328{left:241.733332pt;}
.x13_c00328{left:264.813332pt;}
.x10_c00328{left:275.946665pt;}
.x14_c00328{left:290.986665pt;}
.x1c_c00328{left:306.266665pt;}
.x15_c00328{left:318.839999pt;}
.x29_c00328{left:328.226665pt;}
.x16_c00328{left:332.959999pt;}
.x1d_c00328{left:334.399999pt;}
.x24_c00328{left:339.386665pt;}
.x17_c00328{left:353.053332pt;}
.x2a_c00328{left:370.813332pt;}
.x2c_c00328{left:372.719999pt;}
.xc_c00328{left:374.253332pt;}
.x18_c00328{left:386.439999pt;}
.x2b_c00328{left:389.373332pt;}
.xd_c00328{left:393.466665pt;}
.x19_c00328{left:420.439999pt;}
.x1e_c00328{left:446.306665pt;}
.x1a_c00328{left:448.679999pt;}
.x1b_c00328{left:466.786665pt;}
.x1f_c00328{left:469.786665pt;}
.x22_c00328{left:547.279999pt;}
.x8_c00328{left:585.466665pt;}
.x23_c00328{left:595.053332pt;}
.x9_c00328{left:609.106665pt;}
}





/* 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_c00329 {
    display:none;
  }
  .loading-indicator_c00329.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00329 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_c00329 { 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_c00329" -> "#page-container .classname_c00329")
 */
.pf_c00329 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00329 { /* 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_c00329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00329 { /* 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_c00329 { /* 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_c00329 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00329 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00329 {overflow:visible;}
  }
}
.c_c00329 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00329 { /* 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_c00329:after { /* webkit #35443 */
  content: '';
}
.t_c00329:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00329 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 */
}
.__c00329 { /* 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_c00329 { /* info for Javascript */
  display:none;
}
.l_c00329 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00329 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00329 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00329: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_c00329 {
    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_c00329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00329.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_c00329 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00329;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;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:ff2_c00329;src:url('chunks/assets/font_88eb96eaa9a9b79ef0a8deb3.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.284180;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_c00329;src:url('chunks/assets/font_c4431ea19e1b5cdb20ca3b49.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.284668;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_c00329;src:url('chunks/assets/font_64bdcda5980a2adbebe4e1ea.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;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:ff5_c00329;src:url('chunks/assets/font_1c99ef071f8db5ddda322ad3.woff2')format("woff");}.ff5_c00329{font-family:ff5_c00329;line-height:0.666000;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;}
.m3_c00329{transform:matrix(0.111907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111907,0.000000,0.000000,0.250000,0,0);}
.m0_c00329{transform:matrix(0.125122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125122,0.000000,0.000000,0.250000,0,0);}
.m6_c00329{transform:matrix(0.140218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140218,0.000000,0.000000,0.250000,0,0);}
.m2_c00329{transform:matrix(0.196633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196633,0.000000,0.000000,0.250000,0,0);}
.m4_c00329{transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);}
.m1_c00329{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);}
.m5_c00329{transform:matrix(0.269106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269106,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.lsa_c00329{letter-spacing:-3.549000px;}
.ls4_c00329{letter-spacing:-2.499000px;}
.lsc_c00329{letter-spacing:-2.268000px;}
.lse_c00329{letter-spacing:-2.121000px;}
.ls5_c00329{letter-spacing:-1.701300px;}
.ls9_c00329{letter-spacing:0.000000px;}
.ls6_c00329{letter-spacing:0.494340px;}
.ls8_c00329{letter-spacing:0.545700px;}
.ls2_c00329{letter-spacing:0.558540px;}
.ls7_c00329{letter-spacing:0.597060px;}
.ls0_c00329{letter-spacing:0.751140px;}
.ls1_c00329{letter-spacing:0.969420px;}
.lsd_c00329{letter-spacing:1.620030px;}
.ls3_c00329{letter-spacing:2.295540px;}
.lsb_c00329{letter-spacing:3.250380px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{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__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00329{word-spacing:0.000000px;}
.ws1_c00329{word-spacing:0.295320px;}
.ws2_c00329{word-spacing:2.259840px;}
.ws0_c00329{word-spacing:4.622400px;}
._1_c00329{margin-left:-4.950780px;}
._0_c00329{width:1.129920px;}
.fc0_c00329{color:transparent;}
.fs6_c00329{font-size:31.200000px;}
.fsa_c00329{font-size:32.400600px;}
.fs4_c00329{font-size:56.400000px;}
.fs3_c00329{font-size:60.000000px;}
.fsb_c00329{font-size:60.600000px;}
.fs2_c00329{font-size:63.000000px;}
.fs1_c00329{font-size:64.200000px;}
.fs8_c00329{font-size:64.800000px;}
.fs7_c00329{font-size:65.400000px;}
.fs0_c00329{font-size:71.400000px;}
.fs9_c00329{font-size:87.840000px;}
.fs5_c00329{font-size:101.400000px;}
.y0_c00329{bottom:0.000000px;}
.y4_c00329{bottom:146.524500px;}
.y3_c00329{bottom:164.901750px;}
.y2_c00329{bottom:183.600000px;}
.y5_c00329{bottom:311.760000px;}
.y9_c00329{bottom:444.240000px;}
.y8_c00329{bottom:452.175000px;}
.y7_c00329{bottom:474.855000px;}
.y6_c00329{bottom:726.480000px;}
.yf_c00329{bottom:754.935000px;}
.ye_c00329{bottom:777.975000px;}
.yd_c00329{bottom:785.535000px;}
.yc_c00329{bottom:810.375000px;}
.yb_c00329{bottom:1078.200000px;}
.y1_c00329{bottom:1080.720000px;}
.ya_c00329{bottom:1142.280000px;}
.h8_c00329{height:32.540625px;}
.hc_c00329{height:33.792813px;}
.hb_c00329{height:58.501440px;}
.h6_c00329{height:58.823438px;}
.h4_c00329{height:61.831055px;}
.h5_c00329{height:62.578125px;}
.h3_c00329{height:62.977441px;}
.hd_c00329{height:63.203906px;}
.ha_c00329{height:63.597656px;}
.h9_c00329{height:64.186523px;}
.h2_c00329{height:74.467969px;}
.h7_c00329{height:105.757031px;}
.h1_c00329{height:1263.000000px;}
.h0_c00329{height:1263.240000px;}
.w1_c00329{width:892.500000px;}
.w0_c00329{width:892.800000px;}
.x0_c00329{left:0.000000px;}
.x3_c00329{left:116.566050px;}
.x2_c00329{left:118.155000px;}
.x1_c00329{left:120.030000px;}
.x4_c00329{left:342.990000px;}
.x5_c00329{left:419.640000px;}
.x7_c00329{left:429.990000px;}
.x6_c00329{left:432.390000px;}
.xc_c00329{left:510.255000px;}
.xb_c00329{left:519.840000px;}
.xa_c00329{left:522.270000px;}
.x8_c00329{left:671.310000px;}
.x9_c00329{left:793.200000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.lsa_c00329{letter-spacing:-3.154667pt;}
.ls4_c00329{letter-spacing:-2.221333pt;}
.lsc_c00329{letter-spacing:-2.016000pt;}
.lse_c00329{letter-spacing:-1.885333pt;}
.ls5_c00329{letter-spacing:-1.512267pt;}
.ls9_c00329{letter-spacing:0.000000pt;}
.ls6_c00329{letter-spacing:0.439413pt;}
.ls8_c00329{letter-spacing:0.485067pt;}
.ls2_c00329{letter-spacing:0.496480pt;}
.ls7_c00329{letter-spacing:0.530720pt;}
.ls0_c00329{letter-spacing:0.667680pt;}
.ls1_c00329{letter-spacing:0.861707pt;}
.lsd_c00329{letter-spacing:1.440027pt;}
.ls3_c00329{letter-spacing:2.040480pt;}
.lsb_c00329{letter-spacing:2.889227pt;}
.ws3_c00329{word-spacing:0.000000pt;}
.ws1_c00329{word-spacing:0.262507pt;}
.ws2_c00329{word-spacing:2.008747pt;}
.ws0_c00329{word-spacing:4.108800pt;}
._1_c00329{margin-left:-4.400693pt;}
._0_c00329{width:1.004373pt;}
.fs6_c00329{font-size:27.733333pt;}
.fsa_c00329{font-size:28.800533pt;}
.fs4_c00329{font-size:50.133333pt;}
.fs3_c00329{font-size:53.333333pt;}
.fsb_c00329{font-size:53.866667pt;}
.fs2_c00329{font-size:56.000000pt;}
.fs1_c00329{font-size:57.066667pt;}
.fs8_c00329{font-size:57.600000pt;}
.fs7_c00329{font-size:58.133333pt;}
.fs0_c00329{font-size:63.466667pt;}
.fs9_c00329{font-size:78.080000pt;}
.fs5_c00329{font-size:90.133333pt;}
.y0_c00329{bottom:0.000000pt;}
.y4_c00329{bottom:130.244000pt;}
.y3_c00329{bottom:146.579333pt;}
.y2_c00329{bottom:163.200000pt;}
.y5_c00329{bottom:277.120000pt;}
.y9_c00329{bottom:394.880000pt;}
.y8_c00329{bottom:401.933333pt;}
.y7_c00329{bottom:422.093333pt;}
.y6_c00329{bottom:645.760000pt;}
.yf_c00329{bottom:671.053333pt;}
.ye_c00329{bottom:691.533333pt;}
.yd_c00329{bottom:698.253333pt;}
.yc_c00329{bottom:720.333333pt;}
.yb_c00329{bottom:958.400000pt;}
.y1_c00329{bottom:960.640000pt;}
.ya_c00329{bottom:1015.360000pt;}
.h8_c00329{height:28.925000pt;}
.hc_c00329{height:30.038056pt;}
.hb_c00329{height:52.001280pt;}
.h6_c00329{height:52.287500pt;}
.h4_c00329{height:54.960938pt;}
.h5_c00329{height:55.625000pt;}
.h3_c00329{height:55.979948pt;}
.hd_c00329{height:56.181250pt;}
.ha_c00329{height:56.531250pt;}
.h9_c00329{height:57.054688pt;}
.h2_c00329{height:66.193750pt;}
.h7_c00329{height:94.006250pt;}
.h1_c00329{height:1122.666667pt;}
.h0_c00329{height:1122.880000pt;}
.w1_c00329{width:793.333333pt;}
.w0_c00329{width:793.600000pt;}
.x0_c00329{left:0.000000pt;}
.x3_c00329{left:103.614267pt;}
.x2_c00329{left:105.026667pt;}
.x1_c00329{left:106.693333pt;}
.x4_c00329{left:304.880000pt;}
.x5_c00329{left:373.013333pt;}
.x7_c00329{left:382.213333pt;}
.x6_c00329{left:384.346667pt;}
.xc_c00329{left:453.560000pt;}
.xb_c00329{left:462.080000pt;}
.xa_c00329{left:464.240000pt;}
.x8_c00329{left:596.720000pt;}
.x9_c00329{left:705.066667pt;}
}





/* 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_c00330 {
    display:none;
  }
  .loading-indicator_c00330.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00330 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_c00330 { 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_c00330" -> "#page-container .classname_c00330")
 */
.pf_c00330 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00330 { /* 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_c00330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00330 { /* 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_c00330 { /* 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_c00330 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00330 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00330 {overflow:visible;}
  }
}
.c_c00330 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00330 { /* 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_c00330:after { /* webkit #35443 */
  content: '';
}
.t_c00330:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00330 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 */
}
.__c00330 { /* 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_c00330 { /* info for Javascript */
  display:none;
}
.l_c00330 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00330 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00330 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00330: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_c00330 {
    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_c00330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00330.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_c00330 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00330;src:url('chunks/assets/font_90a5d342fac7bd481e8516d8.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.284668;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_c00330;src:url('chunks/assets/font_578edc4f5be4f8ead1b260b6.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.284180;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_c00330;src:url('chunks/assets/font_5c73a755dfa62db3226bc799.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:0.666000;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_c00330;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;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;}
.m4_c00330{transform:matrix(0.164696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164696,0.000000,0.000000,0.250000,0,0);}
.m6_c00330{transform:matrix(0.168984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168984,0.000000,0.000000,0.250000,0,0);}
.m7_c00330{transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);}
.mc_c00330{transform:matrix(0.239434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239434,0.000000,0.000000,0.250000,0,0);}
.m5_c00330{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m2_c00330{transform:matrix(0.246213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246213,0.000000,0.000000,0.250000,0,0);}
.m9_c00330{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m3_c00330{transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);}
.m1_c00330{transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);}
.m8_c00330{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.mb_c00330{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m0_c00330{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);}
.ma_c00330{transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls57_c00330{letter-spacing:-2.415000px;}
.ls96_c00330{letter-spacing:-2.387400px;}
.ls7f_c00330{letter-spacing:-2.201100px;}
.ls9d_c00330{letter-spacing:-2.163000px;}
.ls80_c00330{letter-spacing:-2.159700px;}
.ls73_c00330{letter-spacing:-2.132100px;}
.ls58_c00330{letter-spacing:-1.959600px;}
.ls79_c00330{letter-spacing:-1.766400px;}
.ls9c_c00330{letter-spacing:-1.683600px;}
.ls5d_c00330{letter-spacing:-1.649100px;}
.ls91_c00330{letter-spacing:-1.635300px;}
.ls59_c00330{letter-spacing:-1.580100px;}
.ls6d_c00330{letter-spacing:-1.538700px;}
.ls5b_c00330{letter-spacing:-1.531800px;}
.ls9a_c00330{letter-spacing:-1.428300px;}
.ls82_c00330{letter-spacing:-1.242000px;}
.ls8c_c00330{letter-spacing:-1.214400px;}
.ls77_c00330{letter-spacing:-1.110900px;}
.ls64_c00330{letter-spacing:-1.083300px;}
.ls65_c00330{letter-spacing:-1.014300px;}
.ls74_c00330{letter-spacing:-0.966000px;}
.ls56_c00330{letter-spacing:-0.952200px;}
.ls55_c00330{letter-spacing:-0.862500px;}
.ls60_c00330{letter-spacing:-0.834900px;}
.ls95_c00330{letter-spacing:-0.814200px;}
.ls71_c00330{letter-spacing:-0.800400px;}
.ls9b_c00330{letter-spacing:-0.710700px;}
.ls90_c00330{letter-spacing:-0.676200px;}
.ls94_c00330{letter-spacing:-0.572700px;}
.ls87_c00330{letter-spacing:-0.538200px;}
.ls7e_c00330{letter-spacing:-0.531300px;}
.ls6f_c00330{letter-spacing:-0.524400px;}
.ls97_c00330{letter-spacing:-0.517500px;}
.ls99_c00330{letter-spacing:-0.503700px;}
.ls54_c00330{letter-spacing:-0.489900px;}
.ls61_c00330{letter-spacing:-0.476100px;}
.ls5f_c00330{letter-spacing:-0.469200px;}
.ls69_c00330{letter-spacing:-0.462300px;}
.ls93_c00330{letter-spacing:-0.455400px;}
.ls67_c00330{letter-spacing:-0.441600px;}
.ls70_c00330{letter-spacing:-0.345000px;}
.ls8f_c00330{letter-spacing:-0.339000px;}
.ls5a_c00330{letter-spacing:-0.331200px;}
.ls98_c00330{letter-spacing:-0.324300px;}
.ls8b_c00330{letter-spacing:-0.317400px;}
.ls84_c00330{letter-spacing:-0.310500px;}
.ls6b_c00330{letter-spacing:-0.289800px;}
.ls86_c00330{letter-spacing:-0.262200px;}
.ls6a_c00330{letter-spacing:-0.241500px;}
.ls81_c00330{letter-spacing:-0.234600px;}
.ls83_c00330{letter-spacing:-0.200100px;}
.ls7a_c00330{letter-spacing:-0.172500px;}
.ls8a_c00330{letter-spacing:-0.144900px;}
.ls7d_c00330{letter-spacing:-0.138000px;}
.ls62_c00330{letter-spacing:-0.131100px;}
.ls6e_c00330{letter-spacing:-0.117300px;}
.ls75_c00330{letter-spacing:-0.103500px;}
.ls78_c00330{letter-spacing:-0.075900px;}
.ls63_c00330{letter-spacing:-0.062100px;}
.ls66_c00330{letter-spacing:-0.055200px;}
.ls7c_c00330{letter-spacing:-0.048300px;}
.ls92_c00330{letter-spacing:-0.041400px;}
.ls85_c00330{letter-spacing:-0.013800px;}
.ls5e_c00330{letter-spacing:-0.006900px;}
.ls5c_c00330{letter-spacing:0.000000px;}
.ls17_c00330{letter-spacing:0.006900px;}
.lse_c00330{letter-spacing:0.020700px;}
.ls88_c00330{letter-spacing:0.034500px;}
.ls2f_c00330{letter-spacing:0.041400px;}
.ls50_c00330{letter-spacing:0.048300px;}
.ls51_c00330{letter-spacing:0.062100px;}
.ls8d_c00330{letter-spacing:0.069000px;}
.ls33_c00330{letter-spacing:0.075900px;}
.ls28_c00330{letter-spacing:0.082800px;}
.ls8_c00330{letter-spacing:0.089700px;}
.ls37_c00330{letter-spacing:0.103500px;}
.ls76_c00330{letter-spacing:0.117300px;}
.ls32_c00330{letter-spacing:0.131100px;}
.ls3_c00330{letter-spacing:0.138000px;}
.ls4_c00330{letter-spacing:0.144900px;}
.ls2e_c00330{letter-spacing:0.151800px;}
.ls1d_c00330{letter-spacing:0.158700px;}
.ls4b_c00330{letter-spacing:0.165600px;}
.ls3b_c00330{letter-spacing:0.186300px;}
.ls21_c00330{letter-spacing:0.193200px;}
.ls2b_c00330{letter-spacing:0.200100px;}
.ls1b_c00330{letter-spacing:0.207000px;}
.ls43_c00330{letter-spacing:0.234600px;}
.ls6c_c00330{letter-spacing:0.241500px;}
.ls29_c00330{letter-spacing:0.248400px;}
.ls16_c00330{letter-spacing:0.255300px;}
.ls36_c00330{letter-spacing:0.282900px;}
.ls9_c00330{letter-spacing:0.305100px;}
.ls68_c00330{letter-spacing:0.310500px;}
.ls1e_c00330{letter-spacing:0.317400px;}
.lsb_c00330{letter-spacing:0.324300px;}
.ls7b_c00330{letter-spacing:0.331200px;}
.ls27_c00330{letter-spacing:0.338100px;}
.ls38_c00330{letter-spacing:0.345000px;}
.ls30_c00330{letter-spacing:0.351900px;}
.ls18_c00330{letter-spacing:0.365700px;}
.ls3e_c00330{letter-spacing:0.379500px;}
.ls22_c00330{letter-spacing:0.386400px;}
.ls20_c00330{letter-spacing:0.414000px;}
.ls45_c00330{letter-spacing:0.427800px;}
.lsa_c00330{letter-spacing:0.434700px;}
.ls1a_c00330{letter-spacing:0.441600px;}
.ls2d_c00330{letter-spacing:0.455400px;}
.ls35_c00330{letter-spacing:0.462300px;}
.ls3d_c00330{letter-spacing:0.483000px;}
.ls4e_c00330{letter-spacing:0.531300px;}
.ls49_c00330{letter-spacing:0.538200px;}
.ls4a_c00330{letter-spacing:0.565800px;}
.ls42_c00330{letter-spacing:0.579600px;}
.ls46_c00330{letter-spacing:0.583080px;}
.ls2c_c00330{letter-spacing:0.586500px;}
.ls72_c00330{letter-spacing:0.600300px;}
.ls47_c00330{letter-spacing:0.603420px;}
.ls13_c00330{letter-spacing:0.607200px;}
.ls11_c00330{letter-spacing:0.614100px;}
.ls89_c00330{letter-spacing:0.621000px;}
.ls15_c00330{letter-spacing:0.634800px;}
.ls41_c00330{letter-spacing:0.641700px;}
.ls39_c00330{letter-spacing:0.669300px;}
.ls12_c00330{letter-spacing:0.683100px;}
.ls10_c00330{letter-spacing:0.696900px;}
.ls24_c00330{letter-spacing:0.710700px;}
.ls4f_c00330{letter-spacing:0.752100px;}
.ls23_c00330{letter-spacing:0.759360px;}
.lsf_c00330{letter-spacing:0.800400px;}
.ls7_c00330{letter-spacing:0.848700px;}
.ls34_c00330{letter-spacing:0.876300px;}
.ls52_c00330{letter-spacing:0.908520px;}
.ls25_c00330{letter-spacing:0.945300px;}
.ls3c_c00330{letter-spacing:0.949200px;}
.ls48_c00330{letter-spacing:0.952200px;}
.ls31_c00330{letter-spacing:0.979800px;}
.lsc_c00330{letter-spacing:1.017000px;}
.ls4c_c00330{letter-spacing:1.044000px;}
.ls2a_c00330{letter-spacing:1.097100px;}
.ls1f_c00330{letter-spacing:1.118700px;}
.ls5_c00330{letter-spacing:1.172940px;}
.ls1_c00330{letter-spacing:1.247520px;}
.ls3f_c00330{letter-spacing:1.269600px;}
.ls53_c00330{letter-spacing:1.285200px;}
.ls44_c00330{letter-spacing:1.297200px;}
.ls14_c00330{letter-spacing:1.311000px;}
.lsd_c00330{letter-spacing:1.373100px;}
.ls0_c00330{letter-spacing:1.376340px;}
.ls4d_c00330{letter-spacing:1.419840px;}
.ls40_c00330{letter-spacing:1.469700px;}
.ls6_c00330{letter-spacing:1.491600px;}
.ls2_c00330{letter-spacing:1.539060px;}
.ls1c_c00330{letter-spacing:1.600800px;}
.ls3a_c00330{letter-spacing:1.842300px;}
.ls26_c00330{letter-spacing:2.539200px;}
.ls19_c00330{letter-spacing:2.559900px;}
.ls8e_c00330{letter-spacing:3.390000px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{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__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00330{word-spacing:0.000000px;}
.ws3_c00330{word-spacing:1.267800px;}
.ws0_c00330{word-spacing:7.318200px;}
.ws4_c00330{word-spacing:10.867980px;}
.ws2_c00330{word-spacing:15.892200px;}
.ws1_c00330{word-spacing:18.666000px;}
._3_c00330{margin-left:-8.814000px;}
._d_c00330{margin-left:-7.378380px;}
._6_c00330{margin-left:-5.552820px;}
._0_c00330{margin-left:-2.847600px;}
._4_c00330{margin-left:-1.543920px;}
._1_c00330{width:1.906680px;}
._9_c00330{width:3.560400px;}
._8_c00330{width:4.876680px;}
._2_c00330{width:5.913300px;}
._5_c00330{width:7.100100px;}
._7_c00330{width:8.564100px;}
._b_c00330{width:9.915300px;}
._a_c00330{width:11.067600px;}
._13_c00330{width:12.604560px;}
._c_c00330{width:14.033400px;}
._f_c00330{width:15.594000px;}
._12_c00330{width:17.291400px;}
._e_c00330{width:18.630000px;}
._10_c00330{width:20.506800px;}
._11_c00330{width:22.559100px;}
.fc0_c00330{color:transparent;}
.fs4_c00330{font-size:51.840000px;}
.fs3_c00330{font-size:53.280000px;}
.fs0_c00330{font-size:61.200000px;}
.fs6_c00330{font-size:61.800000px;}
.fs1_c00330{font-size:67.800000px;}
.fs2_c00330{font-size:69.000000px;}
.fs5_c00330{font-size:69.600000px;}
.y0_c00330{bottom:0.000000px;}
.y20_c00330{bottom:69.840000px;}
.y1f_c00330{bottom:127.800000px;}
.y1e_c00330{bottom:188.280000px;}
.y1d_c00330{bottom:188.285250px;}
.y1b_c00330{bottom:250.573500px;}
.y1c_c00330{bottom:250.575000px;}
.y1a_c00330{bottom:281.175000px;}
.y19_c00330{bottom:342.375750px;}
.y18_c00330{bottom:372.615000px;}
.y17_c00330{bottom:434.167500px;}
.y16_c00330{bottom:465.131250px;}
.y15_c00330{bottom:496.095000px;}
.y14_c00330{bottom:557.640000px;}
.y13_c00330{bottom:588.606000px;}
.y12_c00330{bottom:619.190250px;}
.y11_c00330{bottom:650.171250px;}
.yf_c00330{bottom:681.476250px;}
.y10_c00330{bottom:681.480000px;}
.ye_c00330{bottom:712.091250px;}
.yd_c00330{bottom:743.055000px;}
.yc_c00330{bottom:804.600000px;}
.yb_c00330{bottom:838.080000px;}
.y9_c00330{bottom:900.371250px;}
.ya_c00330{bottom:900.375000px;}
.y8_c00330{bottom:931.335000px;}
.y7_c00330{bottom:931.335750px;}
.y6_c00330{bottom:961.920000px;}
.y5_c00330{bottom:1023.135000px;}
.y4_c00330{bottom:1054.080000px;}
.y3_c00330{bottom:1085.055000px;}
.y2_c00330{bottom:1116.015000px;}
.y1_c00330{bottom:1191.240000px;}
.h5_c00330{height:34.525440px;}
.h4_c00330{height:35.484480px;}
.h2_c00330{height:60.064453px;}
.hb_c00330{height:60.653320px;}
.h8_c00330{height:66.508887px;}
.h3_c00330{height:67.719727px;}
.ha_c00330{height:67.725727px;}
.h6_c00330{height:67.734727px;}
.h7_c00330{height:67.755727px;}
.h9_c00330{height:72.590625px;}
.h1_c00330{height:1263.000000px;}
.h0_c00330{height:1263.240000px;}
.w1_c00330{width:892.500000px;}
.w0_c00330{width:892.800000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:130.245000px;}
.x7_c00330{left:131.490000px;}
.xe_c00330{left:166.830000px;}
.x2_c00330{left:184.695000px;}
.x15_c00330{left:187.119000px;}
.xd_c00330{left:191.175000px;}
.x8_c00330{left:226.290000px;}
.x9_c00330{left:242.835000px;}
.x16_c00330{left:254.685000px;}
.x14_c00330{left:265.320000px;}
.x17_c00330{left:282.495000px;}
.xf_c00330{left:306.195000px;}
.x10_c00330{left:326.850000px;}
.x5_c00330{left:374.565000px;}
.x6_c00330{left:391.965000px;}
.x1a_c00330{left:431.550000px;}
.x3_c00330{left:485.460000px;}
.x4_c00330{left:502.725000px;}
.xb_c00330{left:543.255000px;}
.x11_c00330{left:559.620000px;}
.xc_c00330{left:579.420000px;}
.xa_c00330{left:624.255000px;}
.x12_c00330{left:650.370000px;}
.x18_c00330{left:652.845000px;}
.x13_c00330{left:669.495000px;}
.x19_c00330{left:681.240000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls57_c00330{letter-spacing:-2.146667pt;}
.ls96_c00330{letter-spacing:-2.122133pt;}
.ls7f_c00330{letter-spacing:-1.956533pt;}
.ls9d_c00330{letter-spacing:-1.922667pt;}
.ls80_c00330{letter-spacing:-1.919733pt;}
.ls73_c00330{letter-spacing:-1.895200pt;}
.ls58_c00330{letter-spacing:-1.741867pt;}
.ls79_c00330{letter-spacing:-1.570133pt;}
.ls9c_c00330{letter-spacing:-1.496533pt;}
.ls5d_c00330{letter-spacing:-1.465867pt;}
.ls91_c00330{letter-spacing:-1.453600pt;}
.ls59_c00330{letter-spacing:-1.404533pt;}
.ls6d_c00330{letter-spacing:-1.367733pt;}
.ls5b_c00330{letter-spacing:-1.361600pt;}
.ls9a_c00330{letter-spacing:-1.269600pt;}
.ls82_c00330{letter-spacing:-1.104000pt;}
.ls8c_c00330{letter-spacing:-1.079467pt;}
.ls77_c00330{letter-spacing:-0.987467pt;}
.ls64_c00330{letter-spacing:-0.962933pt;}
.ls65_c00330{letter-spacing:-0.901600pt;}
.ls74_c00330{letter-spacing:-0.858667pt;}
.ls56_c00330{letter-spacing:-0.846400pt;}
.ls55_c00330{letter-spacing:-0.766667pt;}
.ls60_c00330{letter-spacing:-0.742133pt;}
.ls95_c00330{letter-spacing:-0.723733pt;}
.ls71_c00330{letter-spacing:-0.711467pt;}
.ls9b_c00330{letter-spacing:-0.631733pt;}
.ls90_c00330{letter-spacing:-0.601067pt;}
.ls94_c00330{letter-spacing:-0.509067pt;}
.ls87_c00330{letter-spacing:-0.478400pt;}
.ls7e_c00330{letter-spacing:-0.472267pt;}
.ls6f_c00330{letter-spacing:-0.466133pt;}
.ls97_c00330{letter-spacing:-0.460000pt;}
.ls99_c00330{letter-spacing:-0.447733pt;}
.ls54_c00330{letter-spacing:-0.435467pt;}
.ls61_c00330{letter-spacing:-0.423200pt;}
.ls5f_c00330{letter-spacing:-0.417067pt;}
.ls69_c00330{letter-spacing:-0.410933pt;}
.ls93_c00330{letter-spacing:-0.404800pt;}
.ls67_c00330{letter-spacing:-0.392533pt;}
.ls70_c00330{letter-spacing:-0.306667pt;}
.ls8f_c00330{letter-spacing:-0.301333pt;}
.ls5a_c00330{letter-spacing:-0.294400pt;}
.ls98_c00330{letter-spacing:-0.288267pt;}
.ls8b_c00330{letter-spacing:-0.282133pt;}
.ls84_c00330{letter-spacing:-0.276000pt;}
.ls6b_c00330{letter-spacing:-0.257600pt;}
.ls86_c00330{letter-spacing:-0.233067pt;}
.ls6a_c00330{letter-spacing:-0.214667pt;}
.ls81_c00330{letter-spacing:-0.208533pt;}
.ls83_c00330{letter-spacing:-0.177867pt;}
.ls7a_c00330{letter-spacing:-0.153333pt;}
.ls8a_c00330{letter-spacing:-0.128800pt;}
.ls7d_c00330{letter-spacing:-0.122667pt;}
.ls62_c00330{letter-spacing:-0.116533pt;}
.ls6e_c00330{letter-spacing:-0.104267pt;}
.ls75_c00330{letter-spacing:-0.092000pt;}
.ls78_c00330{letter-spacing:-0.067467pt;}
.ls63_c00330{letter-spacing:-0.055200pt;}
.ls66_c00330{letter-spacing:-0.049067pt;}
.ls7c_c00330{letter-spacing:-0.042933pt;}
.ls92_c00330{letter-spacing:-0.036800pt;}
.ls85_c00330{letter-spacing:-0.012267pt;}
.ls5e_c00330{letter-spacing:-0.006133pt;}
.ls5c_c00330{letter-spacing:0.000000pt;}
.ls17_c00330{letter-spacing:0.006133pt;}
.lse_c00330{letter-spacing:0.018400pt;}
.ls88_c00330{letter-spacing:0.030667pt;}
.ls2f_c00330{letter-spacing:0.036800pt;}
.ls50_c00330{letter-spacing:0.042933pt;}
.ls51_c00330{letter-spacing:0.055200pt;}
.ls8d_c00330{letter-spacing:0.061333pt;}
.ls33_c00330{letter-spacing:0.067467pt;}
.ls28_c00330{letter-spacing:0.073600pt;}
.ls8_c00330{letter-spacing:0.079733pt;}
.ls37_c00330{letter-spacing:0.092000pt;}
.ls76_c00330{letter-spacing:0.104267pt;}
.ls32_c00330{letter-spacing:0.116533pt;}
.ls3_c00330{letter-spacing:0.122667pt;}
.ls4_c00330{letter-spacing:0.128800pt;}
.ls2e_c00330{letter-spacing:0.134933pt;}
.ls1d_c00330{letter-spacing:0.141067pt;}
.ls4b_c00330{letter-spacing:0.147200pt;}
.ls3b_c00330{letter-spacing:0.165600pt;}
.ls21_c00330{letter-spacing:0.171733pt;}
.ls2b_c00330{letter-spacing:0.177867pt;}
.ls1b_c00330{letter-spacing:0.184000pt;}
.ls43_c00330{letter-spacing:0.208533pt;}
.ls6c_c00330{letter-spacing:0.214667pt;}
.ls29_c00330{letter-spacing:0.220800pt;}
.ls16_c00330{letter-spacing:0.226933pt;}
.ls36_c00330{letter-spacing:0.251467pt;}
.ls9_c00330{letter-spacing:0.271200pt;}
.ls68_c00330{letter-spacing:0.276000pt;}
.ls1e_c00330{letter-spacing:0.282133pt;}
.lsb_c00330{letter-spacing:0.288267pt;}
.ls7b_c00330{letter-spacing:0.294400pt;}
.ls27_c00330{letter-spacing:0.300533pt;}
.ls38_c00330{letter-spacing:0.306667pt;}
.ls30_c00330{letter-spacing:0.312800pt;}
.ls18_c00330{letter-spacing:0.325067pt;}
.ls3e_c00330{letter-spacing:0.337333pt;}
.ls22_c00330{letter-spacing:0.343467pt;}
.ls20_c00330{letter-spacing:0.368000pt;}
.ls45_c00330{letter-spacing:0.380267pt;}
.lsa_c00330{letter-spacing:0.386400pt;}
.ls1a_c00330{letter-spacing:0.392533pt;}
.ls2d_c00330{letter-spacing:0.404800pt;}
.ls35_c00330{letter-spacing:0.410933pt;}
.ls3d_c00330{letter-spacing:0.429333pt;}
.ls4e_c00330{letter-spacing:0.472267pt;}
.ls49_c00330{letter-spacing:0.478400pt;}
.ls4a_c00330{letter-spacing:0.502933pt;}
.ls42_c00330{letter-spacing:0.515200pt;}
.ls46_c00330{letter-spacing:0.518293pt;}
.ls2c_c00330{letter-spacing:0.521333pt;}
.ls72_c00330{letter-spacing:0.533600pt;}
.ls47_c00330{letter-spacing:0.536373pt;}
.ls13_c00330{letter-spacing:0.539733pt;}
.ls11_c00330{letter-spacing:0.545867pt;}
.ls89_c00330{letter-spacing:0.552000pt;}
.ls15_c00330{letter-spacing:0.564267pt;}
.ls41_c00330{letter-spacing:0.570400pt;}
.ls39_c00330{letter-spacing:0.594933pt;}
.ls12_c00330{letter-spacing:0.607200pt;}
.ls10_c00330{letter-spacing:0.619467pt;}
.ls24_c00330{letter-spacing:0.631733pt;}
.ls4f_c00330{letter-spacing:0.668533pt;}
.ls23_c00330{letter-spacing:0.674987pt;}
.lsf_c00330{letter-spacing:0.711467pt;}
.ls7_c00330{letter-spacing:0.754400pt;}
.ls34_c00330{letter-spacing:0.778933pt;}
.ls52_c00330{letter-spacing:0.807573pt;}
.ls25_c00330{letter-spacing:0.840267pt;}
.ls3c_c00330{letter-spacing:0.843733pt;}
.ls48_c00330{letter-spacing:0.846400pt;}
.ls31_c00330{letter-spacing:0.870933pt;}
.lsc_c00330{letter-spacing:0.904000pt;}
.ls4c_c00330{letter-spacing:0.928000pt;}
.ls2a_c00330{letter-spacing:0.975200pt;}
.ls1f_c00330{letter-spacing:0.994400pt;}
.ls5_c00330{letter-spacing:1.042613pt;}
.ls1_c00330{letter-spacing:1.108907pt;}
.ls3f_c00330{letter-spacing:1.128533pt;}
.ls53_c00330{letter-spacing:1.142400pt;}
.ls44_c00330{letter-spacing:1.153067pt;}
.ls14_c00330{letter-spacing:1.165333pt;}
.lsd_c00330{letter-spacing:1.220533pt;}
.ls0_c00330{letter-spacing:1.223413pt;}
.ls4d_c00330{letter-spacing:1.262080pt;}
.ls40_c00330{letter-spacing:1.306400pt;}
.ls6_c00330{letter-spacing:1.325867pt;}
.ls2_c00330{letter-spacing:1.368053pt;}
.ls1c_c00330{letter-spacing:1.422933pt;}
.ls3a_c00330{letter-spacing:1.637600pt;}
.ls26_c00330{letter-spacing:2.257067pt;}
.ls19_c00330{letter-spacing:2.275467pt;}
.ls8e_c00330{letter-spacing:3.013333pt;}
.ws5_c00330{word-spacing:0.000000pt;}
.ws3_c00330{word-spacing:1.126933pt;}
.ws0_c00330{word-spacing:6.505067pt;}
.ws4_c00330{word-spacing:9.660427pt;}
.ws2_c00330{word-spacing:14.126400pt;}
.ws1_c00330{word-spacing:16.592000pt;}
._3_c00330{margin-left:-7.834667pt;}
._d_c00330{margin-left:-6.558560pt;}
._6_c00330{margin-left:-4.935840pt;}
._0_c00330{margin-left:-2.531200pt;}
._4_c00330{margin-left:-1.372373pt;}
._1_c00330{width:1.694827pt;}
._9_c00330{width:3.164800pt;}
._8_c00330{width:4.334827pt;}
._2_c00330{width:5.256267pt;}
._5_c00330{width:6.311200pt;}
._7_c00330{width:7.612533pt;}
._b_c00330{width:8.813600pt;}
._a_c00330{width:9.837867pt;}
._13_c00330{width:11.204053pt;}
._c_c00330{width:12.474133pt;}
._f_c00330{width:13.861333pt;}
._12_c00330{width:15.370133pt;}
._e_c00330{width:16.560000pt;}
._10_c00330{width:18.228267pt;}
._11_c00330{width:20.052533pt;}
.fs4_c00330{font-size:46.080000pt;}
.fs3_c00330{font-size:47.360000pt;}
.fs0_c00330{font-size:54.400000pt;}
.fs6_c00330{font-size:54.933333pt;}
.fs1_c00330{font-size:60.266667pt;}
.fs2_c00330{font-size:61.333333pt;}
.fs5_c00330{font-size:61.866667pt;}
.y0_c00330{bottom:0.000000pt;}
.y20_c00330{bottom:62.080000pt;}
.y1f_c00330{bottom:113.600000pt;}
.y1e_c00330{bottom:167.360000pt;}
.y1d_c00330{bottom:167.364667pt;}
.y1b_c00330{bottom:222.732000pt;}
.y1c_c00330{bottom:222.733333pt;}
.y1a_c00330{bottom:249.933333pt;}
.y19_c00330{bottom:304.334000pt;}
.y18_c00330{bottom:331.213333pt;}
.y17_c00330{bottom:385.926667pt;}
.y16_c00330{bottom:413.450000pt;}
.y15_c00330{bottom:440.973333pt;}
.y14_c00330{bottom:495.680000pt;}
.y13_c00330{bottom:523.205333pt;}
.y12_c00330{bottom:550.391333pt;}
.y11_c00330{bottom:577.930000pt;}
.yf_c00330{bottom:605.756667pt;}
.y10_c00330{bottom:605.760000pt;}
.ye_c00330{bottom:632.970000pt;}
.yd_c00330{bottom:660.493333pt;}
.yc_c00330{bottom:715.200000pt;}
.yb_c00330{bottom:744.960000pt;}
.y9_c00330{bottom:800.330000pt;}
.ya_c00330{bottom:800.333333pt;}
.y8_c00330{bottom:827.853333pt;}
.y7_c00330{bottom:827.854000pt;}
.y6_c00330{bottom:855.040000pt;}
.y5_c00330{bottom:909.453333pt;}
.y4_c00330{bottom:936.960000pt;}
.y3_c00330{bottom:964.493333pt;}
.y2_c00330{bottom:992.013333pt;}
.y1_c00330{bottom:1058.880000pt;}
.h5_c00330{height:30.689280pt;}
.h4_c00330{height:31.541760pt;}
.h2_c00330{height:53.390625pt;}
.hb_c00330{height:53.914062pt;}
.h8_c00330{height:59.119010pt;}
.h3_c00330{height:60.195312pt;}
.ha_c00330{height:60.200646pt;}
.h6_c00330{height:60.208646pt;}
.h7_c00330{height:60.227313pt;}
.h9_c00330{height:64.525000pt;}
.h1_c00330{height:1122.666667pt;}
.h0_c00330{height:1122.880000pt;}
.w1_c00330{width:793.333333pt;}
.w0_c00330{width:793.600000pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:115.773333pt;}
.x7_c00330{left:116.880000pt;}
.xe_c00330{left:148.293333pt;}
.x2_c00330{left:164.173333pt;}
.x15_c00330{left:166.328000pt;}
.xd_c00330{left:169.933333pt;}
.x8_c00330{left:201.146667pt;}
.x9_c00330{left:215.853333pt;}
.x16_c00330{left:226.386667pt;}
.x14_c00330{left:235.840000pt;}
.x17_c00330{left:251.106667pt;}
.xf_c00330{left:272.173333pt;}
.x10_c00330{left:290.533333pt;}
.x5_c00330{left:332.946667pt;}
.x6_c00330{left:348.413333pt;}
.x1a_c00330{left:383.600000pt;}
.x3_c00330{left:431.520000pt;}
.x4_c00330{left:446.866667pt;}
.xb_c00330{left:482.893333pt;}
.x11_c00330{left:497.440000pt;}
.xc_c00330{left:515.040000pt;}
.xa_c00330{left:554.893333pt;}
.x12_c00330{left:578.106667pt;}
.x18_c00330{left:580.306667pt;}
.x13_c00330{left:595.106667pt;}
.x19_c00330{left:605.546667pt;}
}





/* 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_c00331 {
    display:none;
  }
  .loading-indicator_c00331.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00331 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_c00331 { 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_c00331" -> "#page-container .classname_c00331")
 */
.pf_c00331 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00331 { /* 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_c00331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00331 { /* 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_c00331 { /* 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_c00331 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00331 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00331 {overflow:visible;}
  }
}
.c_c00331 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00331 { /* 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_c00331:after { /* webkit #35443 */
  content: '';
}
.t_c00331:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00331 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 */
}
.__c00331 { /* 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_c00331 { /* info for Javascript */
  display:none;
}
.l_c00331 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00331 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00331 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00331: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_c00331 {
    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_c00331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00331.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_c00331 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00331;src:url('chunks/assets/font_f6c73fc19bca55947b6e3bec.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.311035;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_c00331;src:url('chunks/assets/font_8b303986a60fb86749e5bb19.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.284180;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_c00331;src:url('chunks/assets/font_cb2621f06c5a6ec2390829a6.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.284668;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_c00331;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;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;}
.m2_c00331{transform:matrix(0.236279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236279,0.000000,0.000000,0.250000,0,0);}
.m0_c00331{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m5_c00331{transform:matrix(0.240594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240594,0.000000,0.000000,0.250000,0,0);}
.m3_c00331{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m4_c00331{transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);}
.m1_c00331{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);}
.v0_c00331{vertical-align:0.000000px;}
.ls80_c00331{letter-spacing:-2.415000px;}
.ls79_c00331{letter-spacing:-2.394000px;}
.ls8d_c00331{letter-spacing:-2.352000px;}
.ls6e_c00331{letter-spacing:-2.310000px;}
.ls88_c00331{letter-spacing:-2.257200px;}
.ls8c_c00331{letter-spacing:-2.202480px;}
.ls7e_c00331{letter-spacing:-2.134080px;}
.ls8f_c00331{letter-spacing:-1.792080px;}
.ls92_c00331{letter-spacing:-1.238040px;}
.ls7d_c00331{letter-spacing:-1.142280px;}
.ls8e_c00331{letter-spacing:-1.032840px;}
.ls90_c00331{letter-spacing:-1.012320px;}
.ls85_c00331{letter-spacing:-0.772920px;}
.ls89_c00331{letter-spacing:-0.704520px;}
.ls74_c00331{letter-spacing:-0.684000px;}
.ls93_c00331{letter-spacing:-0.670320px;}
.ls91_c00331{letter-spacing:-0.601920px;}
.ls78_c00331{letter-spacing:-0.595080px;}
.ls73_c00331{letter-spacing:-0.533520px;}
.ls76_c00331{letter-spacing:-0.526680px;}
.ls75_c00331{letter-spacing:-0.478800px;}
.ls82_c00331{letter-spacing:-0.458280px;}
.ls84_c00331{letter-spacing:-0.376200px;}
.ls6f_c00331{letter-spacing:-0.300960px;}
.ls8a_c00331{letter-spacing:-0.232560px;}
.ls70_c00331{letter-spacing:-0.171000px;}
.ls7a_c00331{letter-spacing:-0.088920px;}
.ls86_c00331{letter-spacing:-0.041040px;}
.ls72_c00331{letter-spacing:0.000000px;}
.ls71_c00331{letter-spacing:0.027360px;}
.ls18_c00331{letter-spacing:0.034200px;}
.ls4b_c00331{letter-spacing:0.136800px;}
.ls2d_c00331{letter-spacing:0.177840px;}
.ls7b_c00331{letter-spacing:0.198360px;}
.ls45_c00331{letter-spacing:0.205200px;}
.ls44_c00331{letter-spacing:0.218880px;}
.ls17_c00331{letter-spacing:0.246240px;}
.ls34_c00331{letter-spacing:0.253080px;}
.ls6a_c00331{letter-spacing:0.273600px;}
.ls5d_c00331{letter-spacing:0.280440px;}
.ls12_c00331{letter-spacing:0.294120px;}
.ls30_c00331{letter-spacing:0.342000px;}
.ls58_c00331{letter-spacing:0.348840px;}
.lsd_c00331{letter-spacing:0.383040px;}
.ls11_c00331{letter-spacing:0.396720px;}
.ls81_c00331{letter-spacing:0.410400px;}
.ls64_c00331{letter-spacing:0.444600px;}
.ls14_c00331{letter-spacing:0.451440px;}
.ls61_c00331{letter-spacing:0.465120px;}
.ls4_c00331{letter-spacing:0.467820px;}
.ls10_c00331{letter-spacing:0.471960px;}
.ls3a_c00331{letter-spacing:0.506160px;}
.ls22_c00331{letter-spacing:0.519840px;}
.ls2c_c00331{letter-spacing:0.547200px;}
.ls33_c00331{letter-spacing:0.554040px;}
.ls48_c00331{letter-spacing:0.581400px;}
.ls40_c00331{letter-spacing:0.583080px;}
.lsf_c00331{letter-spacing:0.588240px;}
.ls37_c00331{letter-spacing:0.615600px;}
.ls67_c00331{letter-spacing:0.636120px;}
.ls57_c00331{letter-spacing:0.649800px;}
.ls69_c00331{letter-spacing:0.656640px;}
.ls1b_c00331{letter-spacing:0.663480px;}
.lsc_c00331{letter-spacing:0.677160px;}
.ls7_c00331{letter-spacing:0.690840px;}
.ls3c_c00331{letter-spacing:0.718200px;}
.ls6b_c00331{letter-spacing:0.731880px;}
.ls65_c00331{letter-spacing:0.745560px;}
.ls66_c00331{letter-spacing:0.752400px;}
.ls2a_c00331{letter-spacing:0.759240px;}
.ls46_c00331{letter-spacing:0.766080px;}
.ls41_c00331{letter-spacing:0.766140px;}
.ls5a_c00331{letter-spacing:0.786600px;}
.ls51_c00331{letter-spacing:0.807120px;}
.ls2_c00331{letter-spacing:0.813960px;}
.ls94_c00331{letter-spacing:0.820620px;}
.ls3e_c00331{letter-spacing:0.841320px;}
.ls4c_c00331{letter-spacing:0.848160px;}
.ls29_c00331{letter-spacing:0.861840px;}
.ls6d_c00331{letter-spacing:0.868680px;}
.ls4a_c00331{letter-spacing:0.875520px;}
.ls6_c00331{letter-spacing:0.882360px;}
.ls3b_c00331{letter-spacing:0.896040px;}
.ls16_c00331{letter-spacing:0.902880px;}
.ls54_c00331{letter-spacing:0.909720px;}
.ls26_c00331{letter-spacing:0.916560px;}
.ls32_c00331{letter-spacing:0.923400px;}
.ls13_c00331{letter-spacing:0.950760px;}
.ls8_c00331{letter-spacing:0.957600px;}
.ls3_c00331{letter-spacing:0.964440px;}
.ls55_c00331{letter-spacing:0.971280px;}
.ls56_c00331{letter-spacing:0.978120px;}
.ls1e_c00331{letter-spacing:0.991800px;}
.ls83_c00331{letter-spacing:0.998640px;}
.ls77_c00331{letter-spacing:1.012320px;}
.ls39_c00331{letter-spacing:1.039680px;}
.ls21_c00331{letter-spacing:1.046520px;}
.ls1c_c00331{letter-spacing:1.053360px;}
.ls24_c00331{letter-spacing:1.060200px;}
.ls38_c00331{letter-spacing:1.067040px;}
.ls63_c00331{letter-spacing:1.073880px;}
.ls43_c00331{letter-spacing:1.087560px;}
.ls28_c00331{letter-spacing:1.094400px;}
.ls2e_c00331{letter-spacing:1.108080px;}
.ls1d_c00331{letter-spacing:1.118700px;}
.ls68_c00331{letter-spacing:1.121760px;}
.ls87_c00331{letter-spacing:1.135440px;}
.ls4e_c00331{letter-spacing:1.210680px;}
.ls25_c00331{letter-spacing:1.238040px;}
.ls2f_c00331{letter-spacing:1.244880px;}
.ls9_c00331{letter-spacing:1.254300px;}
.ls52_c00331{letter-spacing:1.272240px;}
.ls5f_c00331{letter-spacing:1.279080px;}
.ls36_c00331{letter-spacing:1.281420px;}
.ls1f_c00331{letter-spacing:1.285920px;}
.ls6c_c00331{letter-spacing:1.299600px;}
.ls0_c00331{letter-spacing:1.301760px;}
.ls20_c00331{letter-spacing:1.320120px;}
.ls1_c00331{letter-spacing:1.335660px;}
.ls1a_c00331{letter-spacing:1.347480px;}
.ls7c_c00331{letter-spacing:1.361160px;}
.ls19_c00331{letter-spacing:1.362780px;}
.ls59_c00331{letter-spacing:1.368000px;}
.ls5_c00331{letter-spacing:1.389900px;}
.ls49_c00331{letter-spacing:1.402200px;}
.ls8b_c00331{letter-spacing:1.409040px;}
.ls62_c00331{letter-spacing:1.477440px;}
.lsb_c00331{letter-spacing:1.511640px;}
.ls4f_c00331{letter-spacing:1.532160px;}
.ls60_c00331{letter-spacing:1.539000px;}
.ls5b_c00331{letter-spacing:1.545840px;}
.ls50_c00331{letter-spacing:1.580040px;}
.ls15_c00331{letter-spacing:1.648440px;}
.ls4d_c00331{letter-spacing:1.662120px;}
.ls3f_c00331{letter-spacing:1.689480px;}
.ls23_c00331{letter-spacing:1.716840px;}
.ls2b_c00331{letter-spacing:1.737360px;}
.lse_c00331{letter-spacing:1.757880px;}
.ls42_c00331{letter-spacing:1.826280px;}
.lsa_c00331{letter-spacing:1.983600px;}
.ls53_c00331{letter-spacing:2.017800px;}
.ls5e_c00331{letter-spacing:2.202480px;}
.ls7f_c00331{letter-spacing:2.291400px;}
.ls27_c00331{letter-spacing:2.352960px;}
.ls3d_c00331{letter-spacing:2.482920px;}
.ls5c_c00331{letter-spacing:2.510280px;}
.ls47_c00331{letter-spacing:2.715480px;}
.ls35_c00331{letter-spacing:3.091680px;}
.ls31_c00331{letter-spacing:3.166920px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{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__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00331{word-spacing:-0.591120px;}
.ws5_c00331{word-spacing:0.000000px;}
.ws0_c00331{word-spacing:1.116000px;}
.ws4_c00331{word-spacing:2.928660px;}
.ws2_c00331{word-spacing:7.858800px;}
.ws3_c00331{word-spacing:25.384500px;}
._17_c00331{margin-left:-14.609880px;}
._18_c00331{margin-left:-7.113600px;}
._15_c00331{margin-left:-5.825220px;}
._1_c00331{margin-left:-2.742840px;}
._0_c00331{margin-left:-1.178940px;}
._4_c00331{width:1.045440px;}
._16_c00331{width:2.291400px;}
._3_c00331{width:3.317040px;}
._f_c00331{width:4.330080px;}
._5_c00331{width:5.343480px;}
._e_c00331{width:6.567840px;}
._d_c00331{width:7.667640px;}
._2_c00331{width:9.368400px;}
._19_c00331{width:11.199000px;}
._c_c00331{width:12.324240px;}
._14_c00331{width:14.372280px;}
._13_c00331{width:16.005600px;}
._9_c00331{width:17.216280px;}
._6_c00331{width:19.110960px;}
._8_c00331{width:20.636280px;}
._a_c00331{width:22.093200px;}
._11_c00331{width:23.570640px;}
._b_c00331{width:24.733440px;}
._7_c00331{width:25.916760px;}
._10_c00331{width:27.318960px;}
._12_c00331{width:31.662360px;}
.fc0_c00331{color:transparent;}
.fs5_c00331{font-size:58.200000px;}
.fs0_c00331{font-size:66.000000px;}
.fs4_c00331{font-size:67.200000px;}
.fs1_c00331{font-size:67.800000px;}
.fs2_c00331{font-size:68.400000px;}
.fs3_c00331{font-size:69.000000px;}
.y0_c00331{bottom:0.000000px;}
.y1a_c00331{bottom:69.855000px;}
.y19_c00331{bottom:219.959700px;}
.y18_c00331{bottom:251.286900px;}
.y16_c00331{bottom:282.231900px;}
.y17_c00331{bottom:282.255000px;}
.y15_c00331{bottom:312.105600px;}
.y14_c00331{bottom:343.432800px;}
.y13_c00331{bottom:374.760000px;}
.y12_c00331{bottom:405.728100px;}
.y11_c00331{bottom:466.929000px;}
.y10_c00331{bottom:528.489000px;}
.yf_c00331{bottom:559.440000px;}
.ye_c00331{bottom:621.367800px;}
.yd_c00331{bottom:652.695000px;}
.yc_c00331{bottom:683.655000px;}
.yb_c00331{bottom:744.855000px;}
.ya_c00331{bottom:775.806900px;}
.y9_c00331{bottom:806.768100px;}
.y8_c00331{bottom:837.360000px;}
.y7_c00331{bottom:900.000000px;}
.y6_c00331{bottom:962.646900px;}
.y5_c00331{bottom:993.609000px;}
.y4_c00331{bottom:1024.560000px;}
.y3_c00331{bottom:1086.135000px;}
.y2_c00331{bottom:1117.455000px;}
.y1_c00331{bottom:1194.135000px;}
.ha_c00331{height:57.120117px;}
.h2_c00331{height:66.515625px;}
.h3_c00331{height:67.130859px;}
.h4_c00331{height:67.154859px;}
.h5_c00331{height:67.158459px;}
.h6_c00331{height:67.163259px;}
.h9_c00331{height:67.725000px;}
.h8_c00331{height:68.934375px;}
.h7_c00331{height:71.964844px;}
.h1_c00331{height:1263.000000px;}
.h0_c00331{height:1263.240000px;}
.w1_c00331{width:892.500000px;}
.w0_c00331{width:892.800000px;}
.x0_c00331{left:0.000000px;}
.x9_c00331{left:112.320300px;}
.x6_c00331{left:119.811900px;}
.x3_c00331{left:121.513200px;}
.x1_c00331{left:123.045000px;}
.x7_c00331{left:172.965000px;}
.x4_c00331{left:174.045000px;}
.x2_c00331{left:175.455000px;}
.xa_c00331{left:182.002800px;}
.xb_c00331{left:337.845000px;}
.xc_c00331{left:360.630000px;}
.xd_c00331{left:413.430000px;}
.xf_c00331{left:423.270000px;}
.xe_c00331{left:465.945000px;}
.x5_c00331{left:650.715000px;}
.x8_c00331{left:738.540000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls80_c00331{letter-spacing:-2.146667pt;}
.ls79_c00331{letter-spacing:-2.128000pt;}
.ls8d_c00331{letter-spacing:-2.090667pt;}
.ls6e_c00331{letter-spacing:-2.053333pt;}
.ls88_c00331{letter-spacing:-2.006400pt;}
.ls8c_c00331{letter-spacing:-1.957760pt;}
.ls7e_c00331{letter-spacing:-1.896960pt;}
.ls8f_c00331{letter-spacing:-1.592960pt;}
.ls92_c00331{letter-spacing:-1.100480pt;}
.ls7d_c00331{letter-spacing:-1.015360pt;}
.ls8e_c00331{letter-spacing:-0.918080pt;}
.ls90_c00331{letter-spacing:-0.899840pt;}
.ls85_c00331{letter-spacing:-0.687040pt;}
.ls89_c00331{letter-spacing:-0.626240pt;}
.ls74_c00331{letter-spacing:-0.608000pt;}
.ls93_c00331{letter-spacing:-0.595840pt;}
.ls91_c00331{letter-spacing:-0.535040pt;}
.ls78_c00331{letter-spacing:-0.528960pt;}
.ls73_c00331{letter-spacing:-0.474240pt;}
.ls76_c00331{letter-spacing:-0.468160pt;}
.ls75_c00331{letter-spacing:-0.425600pt;}
.ls82_c00331{letter-spacing:-0.407360pt;}
.ls84_c00331{letter-spacing:-0.334400pt;}
.ls6f_c00331{letter-spacing:-0.267520pt;}
.ls8a_c00331{letter-spacing:-0.206720pt;}
.ls70_c00331{letter-spacing:-0.152000pt;}
.ls7a_c00331{letter-spacing:-0.079040pt;}
.ls86_c00331{letter-spacing:-0.036480pt;}
.ls72_c00331{letter-spacing:0.000000pt;}
.ls71_c00331{letter-spacing:0.024320pt;}
.ls18_c00331{letter-spacing:0.030400pt;}
.ls4b_c00331{letter-spacing:0.121600pt;}
.ls2d_c00331{letter-spacing:0.158080pt;}
.ls7b_c00331{letter-spacing:0.176320pt;}
.ls45_c00331{letter-spacing:0.182400pt;}
.ls44_c00331{letter-spacing:0.194560pt;}
.ls17_c00331{letter-spacing:0.218880pt;}
.ls34_c00331{letter-spacing:0.224960pt;}
.ls6a_c00331{letter-spacing:0.243200pt;}
.ls5d_c00331{letter-spacing:0.249280pt;}
.ls12_c00331{letter-spacing:0.261440pt;}
.ls30_c00331{letter-spacing:0.304000pt;}
.ls58_c00331{letter-spacing:0.310080pt;}
.lsd_c00331{letter-spacing:0.340480pt;}
.ls11_c00331{letter-spacing:0.352640pt;}
.ls81_c00331{letter-spacing:0.364800pt;}
.ls64_c00331{letter-spacing:0.395200pt;}
.ls14_c00331{letter-spacing:0.401280pt;}
.ls61_c00331{letter-spacing:0.413440pt;}
.ls4_c00331{letter-spacing:0.415840pt;}
.ls10_c00331{letter-spacing:0.419520pt;}
.ls3a_c00331{letter-spacing:0.449920pt;}
.ls22_c00331{letter-spacing:0.462080pt;}
.ls2c_c00331{letter-spacing:0.486400pt;}
.ls33_c00331{letter-spacing:0.492480pt;}
.ls48_c00331{letter-spacing:0.516800pt;}
.ls40_c00331{letter-spacing:0.518293pt;}
.lsf_c00331{letter-spacing:0.522880pt;}
.ls37_c00331{letter-spacing:0.547200pt;}
.ls67_c00331{letter-spacing:0.565440pt;}
.ls57_c00331{letter-spacing:0.577600pt;}
.ls69_c00331{letter-spacing:0.583680pt;}
.ls1b_c00331{letter-spacing:0.589760pt;}
.lsc_c00331{letter-spacing:0.601920pt;}
.ls7_c00331{letter-spacing:0.614080pt;}
.ls3c_c00331{letter-spacing:0.638400pt;}
.ls6b_c00331{letter-spacing:0.650560pt;}
.ls65_c00331{letter-spacing:0.662720pt;}
.ls66_c00331{letter-spacing:0.668800pt;}
.ls2a_c00331{letter-spacing:0.674880pt;}
.ls46_c00331{letter-spacing:0.680960pt;}
.ls41_c00331{letter-spacing:0.681013pt;}
.ls5a_c00331{letter-spacing:0.699200pt;}
.ls51_c00331{letter-spacing:0.717440pt;}
.ls2_c00331{letter-spacing:0.723520pt;}
.ls94_c00331{letter-spacing:0.729440pt;}
.ls3e_c00331{letter-spacing:0.747840pt;}
.ls4c_c00331{letter-spacing:0.753920pt;}
.ls29_c00331{letter-spacing:0.766080pt;}
.ls6d_c00331{letter-spacing:0.772160pt;}
.ls4a_c00331{letter-spacing:0.778240pt;}
.ls6_c00331{letter-spacing:0.784320pt;}
.ls3b_c00331{letter-spacing:0.796480pt;}
.ls16_c00331{letter-spacing:0.802560pt;}
.ls54_c00331{letter-spacing:0.808640pt;}
.ls26_c00331{letter-spacing:0.814720pt;}
.ls32_c00331{letter-spacing:0.820800pt;}
.ls13_c00331{letter-spacing:0.845120pt;}
.ls8_c00331{letter-spacing:0.851200pt;}
.ls3_c00331{letter-spacing:0.857280pt;}
.ls55_c00331{letter-spacing:0.863360pt;}
.ls56_c00331{letter-spacing:0.869440pt;}
.ls1e_c00331{letter-spacing:0.881600pt;}
.ls83_c00331{letter-spacing:0.887680pt;}
.ls77_c00331{letter-spacing:0.899840pt;}
.ls39_c00331{letter-spacing:0.924160pt;}
.ls21_c00331{letter-spacing:0.930240pt;}
.ls1c_c00331{letter-spacing:0.936320pt;}
.ls24_c00331{letter-spacing:0.942400pt;}
.ls38_c00331{letter-spacing:0.948480pt;}
.ls63_c00331{letter-spacing:0.954560pt;}
.ls43_c00331{letter-spacing:0.966720pt;}
.ls28_c00331{letter-spacing:0.972800pt;}
.ls2e_c00331{letter-spacing:0.984960pt;}
.ls1d_c00331{letter-spacing:0.994400pt;}
.ls68_c00331{letter-spacing:0.997120pt;}
.ls87_c00331{letter-spacing:1.009280pt;}
.ls4e_c00331{letter-spacing:1.076160pt;}
.ls25_c00331{letter-spacing:1.100480pt;}
.ls2f_c00331{letter-spacing:1.106560pt;}
.ls9_c00331{letter-spacing:1.114933pt;}
.ls52_c00331{letter-spacing:1.130880pt;}
.ls5f_c00331{letter-spacing:1.136960pt;}
.ls36_c00331{letter-spacing:1.139040pt;}
.ls1f_c00331{letter-spacing:1.143040pt;}
.ls6c_c00331{letter-spacing:1.155200pt;}
.ls0_c00331{letter-spacing:1.157120pt;}
.ls20_c00331{letter-spacing:1.173440pt;}
.ls1_c00331{letter-spacing:1.187253pt;}
.ls1a_c00331{letter-spacing:1.197760pt;}
.ls7c_c00331{letter-spacing:1.209920pt;}
.ls19_c00331{letter-spacing:1.211360pt;}
.ls59_c00331{letter-spacing:1.216000pt;}
.ls5_c00331{letter-spacing:1.235467pt;}
.ls49_c00331{letter-spacing:1.246400pt;}
.ls8b_c00331{letter-spacing:1.252480pt;}
.ls62_c00331{letter-spacing:1.313280pt;}
.lsb_c00331{letter-spacing:1.343680pt;}
.ls4f_c00331{letter-spacing:1.361920pt;}
.ls60_c00331{letter-spacing:1.368000pt;}
.ls5b_c00331{letter-spacing:1.374080pt;}
.ls50_c00331{letter-spacing:1.404480pt;}
.ls15_c00331{letter-spacing:1.465280pt;}
.ls4d_c00331{letter-spacing:1.477440pt;}
.ls3f_c00331{letter-spacing:1.501760pt;}
.ls23_c00331{letter-spacing:1.526080pt;}
.ls2b_c00331{letter-spacing:1.544320pt;}
.lse_c00331{letter-spacing:1.562560pt;}
.ls42_c00331{letter-spacing:1.623360pt;}
.lsa_c00331{letter-spacing:1.763200pt;}
.ls53_c00331{letter-spacing:1.793600pt;}
.ls5e_c00331{letter-spacing:1.957760pt;}
.ls7f_c00331{letter-spacing:2.036800pt;}
.ls27_c00331{letter-spacing:2.091520pt;}
.ls3d_c00331{letter-spacing:2.207040pt;}
.ls5c_c00331{letter-spacing:2.231360pt;}
.ls47_c00331{letter-spacing:2.413760pt;}
.ls35_c00331{letter-spacing:2.748160pt;}
.ls31_c00331{letter-spacing:2.815040pt;}
.ws1_c00331{word-spacing:-0.525440pt;}
.ws5_c00331{word-spacing:0.000000pt;}
.ws0_c00331{word-spacing:0.992000pt;}
.ws4_c00331{word-spacing:2.603253pt;}
.ws2_c00331{word-spacing:6.985600pt;}
.ws3_c00331{word-spacing:22.564000pt;}
._17_c00331{margin-left:-12.986560pt;}
._18_c00331{margin-left:-6.323200pt;}
._15_c00331{margin-left:-5.177973pt;}
._1_c00331{margin-left:-2.438080pt;}
._0_c00331{margin-left:-1.047947pt;}
._4_c00331{width:0.929280pt;}
._16_c00331{width:2.036800pt;}
._3_c00331{width:2.948480pt;}
._f_c00331{width:3.848960pt;}
._5_c00331{width:4.749760pt;}
._e_c00331{width:5.838080pt;}
._d_c00331{width:6.815680pt;}
._2_c00331{width:8.327467pt;}
._19_c00331{width:9.954667pt;}
._c_c00331{width:10.954880pt;}
._14_c00331{width:12.775360pt;}
._13_c00331{width:14.227200pt;}
._9_c00331{width:15.303360pt;}
._6_c00331{width:16.987520pt;}
._8_c00331{width:18.343360pt;}
._a_c00331{width:19.638400pt;}
._11_c00331{width:20.951680pt;}
._b_c00331{width:21.985280pt;}
._7_c00331{width:23.037120pt;}
._10_c00331{width:24.283520pt;}
._12_c00331{width:28.144320pt;}
.fs5_c00331{font-size:51.733333pt;}
.fs0_c00331{font-size:58.666667pt;}
.fs4_c00331{font-size:59.733333pt;}
.fs1_c00331{font-size:60.266667pt;}
.fs2_c00331{font-size:60.800000pt;}
.fs3_c00331{font-size:61.333333pt;}
.y0_c00331{bottom:0.000000pt;}
.y1a_c00331{bottom:62.093333pt;}
.y19_c00331{bottom:195.519733pt;}
.y18_c00331{bottom:223.366133pt;}
.y16_c00331{bottom:250.872800pt;}
.y17_c00331{bottom:250.893333pt;}
.y15_c00331{bottom:277.427200pt;}
.y14_c00331{bottom:305.273600pt;}
.y13_c00331{bottom:333.120000pt;}
.y12_c00331{bottom:360.647200pt;}
.y11_c00331{bottom:415.048000pt;}
.y10_c00331{bottom:469.768000pt;}
.yf_c00331{bottom:497.280000pt;}
.ye_c00331{bottom:552.326933pt;}
.yd_c00331{bottom:580.173333pt;}
.yc_c00331{bottom:607.693333pt;}
.yb_c00331{bottom:662.093333pt;}
.ya_c00331{bottom:689.606133pt;}
.y9_c00331{bottom:717.127200pt;}
.y8_c00331{bottom:744.320000pt;}
.y7_c00331{bottom:800.000000pt;}
.y6_c00331{bottom:855.686133pt;}
.y5_c00331{bottom:883.208000pt;}
.y4_c00331{bottom:910.720000pt;}
.y3_c00331{bottom:965.453333pt;}
.y2_c00331{bottom:993.293333pt;}
.y1_c00331{bottom:1061.453333pt;}
.ha_c00331{height:50.773437pt;}
.h2_c00331{height:59.125000pt;}
.h3_c00331{height:59.671875pt;}
.h4_c00331{height:59.693208pt;}
.h5_c00331{height:59.696408pt;}
.h6_c00331{height:59.700675pt;}
.h9_c00331{height:60.200000pt;}
.h8_c00331{height:61.275000pt;}
.h7_c00331{height:63.968750pt;}
.h1_c00331{height:1122.666667pt;}
.h0_c00331{height:1122.880000pt;}
.w1_c00331{width:793.333333pt;}
.w0_c00331{width:793.600000pt;}
.x0_c00331{left:0.000000pt;}
.x9_c00331{left:99.840267pt;}
.x6_c00331{left:106.499467pt;}
.x3_c00331{left:108.011733pt;}
.x1_c00331{left:109.373333pt;}
.x7_c00331{left:153.746667pt;}
.x4_c00331{left:154.706667pt;}
.x2_c00331{left:155.960000pt;}
.xa_c00331{left:161.780267pt;}
.xb_c00331{left:300.306667pt;}
.xc_c00331{left:320.560000pt;}
.xd_c00331{left:367.493333pt;}
.xf_c00331{left:376.240000pt;}
.xe_c00331{left:414.173333pt;}
.x5_c00331{left:578.413333pt;}
.x8_c00331{left:656.480000pt;}
}





/* 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_c00332 {
    display:none;
  }
  .loading-indicator_c00332.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00332 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_c00332 { 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_c00332" -> "#page-container .classname_c00332")
 */
.pf_c00332 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00332 { /* 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_c00332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00332 { /* 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_c00332 { /* 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_c00332 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00332 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00332 {overflow:visible;}
  }
}
.c_c00332 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00332 { /* 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_c00332:after { /* webkit #35443 */
  content: '';
}
.t_c00332:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00332 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 */
}
.__c00332 { /* 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_c00332 { /* info for Javascript */
  display:none;
}
.l_c00332 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00332 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00332 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00332: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_c00332 {
    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_c00332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00332.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_c00332 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00332;src:url('chunks/assets/font_9f7e6759b370db954527e99a.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.284668;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_c00332;src:url('chunks/assets/font_80ef73f3228ba600eee93bca.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.311035;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_c00332;src:url('chunks/assets/font_8c73402799747c9b917d2ae5.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.284180;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_c00332;src:url('chunks/assets/font_90bfefaa3054d0c0b85e6c9a.woff2')format("woff");}.ff4_c00332{font-family:ff4_c00332;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:ff5_c00332;src:url('chunks/assets/font_b960555e558ec874fb024f11.woff2')format("woff");}.ff5_c00332{font-family:ff5_c00332;line-height:0.666000;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;}
.mc_c00332{transform:matrix(0.217708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217708,0.000000,0.000000,0.250000,0,0);}
.md_c00332{transform:matrix(0.224850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224850,0.000000,0.000000,0.250000,0,0);}
.m10_c00332{transform:matrix(0.232429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232429,0.000000,0.000000,0.250000,0,0);}
.m11_c00332{transform:matrix(0.238239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238239,0.000000,0.000000,0.250000,0,0);}
.mf_c00332{transform:matrix(0.246987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246987,0.000000,0.000000,0.250000,0,0);}
.m12_c00332{transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);}
.m0_c00332{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);}
.m6_c00332{transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);}
.m1_c00332{transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);}
.m8_c00332{transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);}
.m7_c00332{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.m9_c00332{transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);}
.mb_c00332{transform:matrix(0.272403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272403,0.000000,0.000000,0.250000,0,0);}
.m2_c00332{transform:matrix(0.282321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282321,0.000000,0.000000,0.250000,0,0);}
.m3_c00332{transform:matrix(0.296118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296118,0.000000,0.000000,0.250000,0,0);}
.m4_c00332{transform:matrix(0.309353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309353,0.000000,0.000000,0.250000,0,0);}
.m5_c00332{transform:matrix(0.359502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359502,0.000000,0.000000,0.250000,0,0);}
.me_c00332{transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);}
.ma_c00332{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.v1_c00332{vertical-align:25.920000px;}
.lsaa_c00332{letter-spacing:-2.415000px;}
.lsa2_c00332{letter-spacing:-2.352000px;}
.ls99_c00332{letter-spacing:-1.780800px;}
.ls9f_c00332{letter-spacing:-1.780200px;}
.ls8c_c00332{letter-spacing:-1.593900px;}
.lsa9_c00332{letter-spacing:-1.438080px;}
.ls96_c00332{letter-spacing:-1.144260px;}
.ls94_c00332{letter-spacing:-0.954720px;}
.ls8e_c00332{letter-spacing:-0.934080px;}
.ls85_c00332{letter-spacing:-0.860160px;}
.ls93_c00332{letter-spacing:-0.772200px;}
.ls91_c00332{letter-spacing:-0.638820px;}
.ls9d_c00332{letter-spacing:-0.630000px;}
.ls95_c00332{letter-spacing:-0.470340px;}
.ls97_c00332{letter-spacing:-0.463320px;}
.ls9a_c00332{letter-spacing:-0.215040px;}
.lsa8_c00332{letter-spacing:-0.196560px;}
.ls7f_c00332{letter-spacing:-0.168480px;}
.ls87_c00332{letter-spacing:-0.040320px;}
.ls90_c00332{letter-spacing:-0.035100px;}
.ls8b_c00332{letter-spacing:-0.026880px;}
.ls98_c00332{letter-spacing:-0.007020px;}
.ls81_c00332{letter-spacing:0.000000px;}
.lsab_c00332{letter-spacing:0.098940px;}
.ls80_c00332{letter-spacing:0.114240px;}
.lsa4_c00332{letter-spacing:0.134400px;}
.lsa7_c00332{letter-spacing:0.154560px;}
.ls42_c00332{letter-spacing:0.161280px;}
.ls44_c00332{letter-spacing:0.175500px;}
.ls67_c00332{letter-spacing:0.201600px;}
.ls53_c00332{letter-spacing:0.215040px;}
.ls5a_c00332{letter-spacing:0.217620px;}
.ls2d_c00332{letter-spacing:0.228480px;}
.lsa1_c00332{letter-spacing:0.235200px;}
.ls68_c00332{letter-spacing:0.248640px;}
.ls86_c00332{letter-spacing:0.376320px;}
.ls9b_c00332{letter-spacing:0.430080px;}
.ls5_c00332{letter-spacing:0.443520px;}
.ls51_c00332{letter-spacing:0.456960px;}
.ls3e_c00332{letter-spacing:0.463680px;}
.ls7d_c00332{letter-spacing:0.477120px;}
.lsa0_c00332{letter-spacing:0.490560px;}
.ls3a_c00332{letter-spacing:0.517440px;}
.ls76_c00332{letter-spacing:0.544320px;}
.ls2b_c00332{letter-spacing:0.551040px;}
.ls5f_c00332{letter-spacing:0.575640px;}
.ls21_c00332{letter-spacing:0.598080px;}
.ls7_c00332{letter-spacing:0.611520px;}
.ls1d_c00332{letter-spacing:0.638400px;}
.ls39_c00332{letter-spacing:0.645120px;}
.ls8d_c00332{letter-spacing:0.658560px;}
.ls23_c00332{letter-spacing:0.665280px;}
.ls4a_c00332{letter-spacing:0.672000px;}
.ls57_c00332{letter-spacing:0.685440px;}
.ls4e_c00332{letter-spacing:0.692160px;}
.ls40_c00332{letter-spacing:0.698880px;}
.ls9e_c00332{letter-spacing:0.725760px;}
.ls92_c00332{letter-spacing:0.766080px;}
.ls8f_c00332{letter-spacing:0.772800px;}
.ls74_c00332{letter-spacing:0.786240px;}
.ls30_c00332{letter-spacing:0.799680px;}
.lsf_c00332{letter-spacing:0.813120px;}
.ls5c_c00332{letter-spacing:0.833280px;}
.lsb_c00332{letter-spacing:0.840000px;}
.ls46_c00332{letter-spacing:0.846720px;}
.ls77_c00332{letter-spacing:0.853440px;}
.ls4b_c00332{letter-spacing:0.887040px;}
.ls12_c00332{letter-spacing:0.893760px;}
.ls59_c00332{letter-spacing:0.907200px;}
.ls6b_c00332{letter-spacing:0.913920px;}
.ls54_c00332{letter-spacing:0.920640px;}
.ls18_c00332{letter-spacing:0.927360px;}
.ls1e_c00332{letter-spacing:0.947520px;}
.ls4d_c00332{letter-spacing:0.954240px;}
.ls50_c00332{letter-spacing:0.960960px;}
.ls3c_c00332{letter-spacing:0.967680px;}
.ls27_c00332{letter-spacing:0.974400px;}
.ls7e_c00332{letter-spacing:1.001280px;}
.ls34_c00332{letter-spacing:1.008000px;}
.ls64_c00332{letter-spacing:1.014720px;}
.lsa5_c00332{letter-spacing:1.017900px;}
.ls73_c00332{letter-spacing:1.021440px;}
.ls5b_c00332{letter-spacing:1.028160px;}
.ls2_c00332{letter-spacing:1.041600px;}
.ls11_c00332{letter-spacing:1.061760px;}
.ls78_c00332{letter-spacing:1.088640px;}
.ls6c_c00332{letter-spacing:1.095360px;}
.ls1_c00332{letter-spacing:1.104000px;}
.lsa3_c00332{letter-spacing:1.115520px;}
.lsa6_c00332{letter-spacing:1.122240px;}
.ls32_c00332{letter-spacing:1.128960px;}
.ls6d_c00332{letter-spacing:1.135680px;}
.ls75_c00332{letter-spacing:1.149120px;}
.ls72_c00332{letter-spacing:1.169280px;}
.ls9c_c00332{letter-spacing:1.170030px;}
.ls1f_c00332{letter-spacing:1.176000px;}
.ls38_c00332{letter-spacing:1.196160px;}
.ls4_c00332{letter-spacing:1.202880px;}
.lsa_c00332{letter-spacing:1.209600px;}
.ls89_c00332{letter-spacing:1.216320px;}
.ls63_c00332{letter-spacing:1.229760px;}
.ls36_c00332{letter-spacing:1.236480px;}
.ls60_c00332{letter-spacing:1.243200px;}
.ls62_c00332{letter-spacing:1.256640px;}
.ls10_c00332{letter-spacing:1.263360px;}
.ls14_c00332{letter-spacing:1.270080px;}
.ls7b_c00332{letter-spacing:1.276800px;}
.ls69_c00332{letter-spacing:1.283520px;}
.ls3f_c00332{letter-spacing:1.303680px;}
.ls71_c00332{letter-spacing:1.310400px;}
.ls9_c00332{letter-spacing:1.323840px;}
.ls79_c00332{letter-spacing:1.330560px;}
.lse_c00332{letter-spacing:1.350720px;}
.ls1c_c00332{letter-spacing:1.364160px;}
.ls35_c00332{letter-spacing:1.370880px;}
.ls33_c00332{letter-spacing:1.391040px;}
.ls52_c00332{letter-spacing:1.397760px;}
.ls24_c00332{letter-spacing:1.417920px;}
.ls1a_c00332{letter-spacing:1.424640px;}
.ls70_c00332{letter-spacing:1.451520px;}
.ls66_c00332{letter-spacing:1.478400px;}
.ls4f_c00332{letter-spacing:1.485120px;}
.ls20_c00332{letter-spacing:1.491840px;}
.ls2f_c00332{letter-spacing:1.498560px;}
.ls43_c00332{letter-spacing:1.518720px;}
.ls2e_c00332{letter-spacing:1.525440px;}
.ls6a_c00332{letter-spacing:1.538880px;}
.ls41_c00332{letter-spacing:1.565760px;}
.ls6e_c00332{letter-spacing:1.579200px;}
.ls56_c00332{letter-spacing:1.599360px;}
.ls29_c00332{letter-spacing:1.606080px;}
.ls48_c00332{letter-spacing:1.632960px;}
.ls6f_c00332{letter-spacing:1.680000px;}
.ls3d_c00332{letter-spacing:1.700160px;}
.ls49_c00332{letter-spacing:1.706880px;}
.ls4c_c00332{letter-spacing:1.720320px;}
.lsd_c00332{letter-spacing:1.733760px;}
.ls82_c00332{letter-spacing:1.747200px;}
.ls2c_c00332{letter-spacing:1.753822px;}
.ls26_c00332{letter-spacing:1.800960px;}
.ls65_c00332{letter-spacing:1.834560px;}
.ls84_c00332{letter-spacing:1.854720px;}
.ls0_c00332{letter-spacing:1.861440px;}
.ls6_c00332{letter-spacing:1.868160px;}
.ls45_c00332{letter-spacing:1.888320px;}
.ls55_c00332{letter-spacing:1.901760px;}
.ls22_c00332{letter-spacing:1.935360px;}
.ls8_c00332{letter-spacing:1.948800px;}
.ls58_c00332{letter-spacing:1.955520px;}
.ls16_c00332{letter-spacing:1.962240px;}
.ls8a_c00332{letter-spacing:1.968960px;}
.ls7c_c00332{letter-spacing:1.986000px;}
.ls17_c00332{letter-spacing:2.009280px;}
.ls5e_c00332{letter-spacing:2.036160px;}
.ls47_c00332{letter-spacing:2.049600px;}
.lsc_c00332{letter-spacing:2.083200px;}
.ls88_c00332{letter-spacing:2.096640px;}
.ls28_c00332{letter-spacing:2.110080px;}
.ls31_c00332{letter-spacing:2.123520px;}
.ls19_c00332{letter-spacing:2.136960px;}
.ls3_c00332{letter-spacing:2.204160px;}
.ls15_c00332{letter-spacing:2.244480px;}
.ls3b_c00332{letter-spacing:2.345280px;}
.ls7a_c00332{letter-spacing:2.439360px;}
.ls37_c00332{letter-spacing:2.587200px;}
.ls1b_c00332{letter-spacing:2.654400px;}
.ls61_c00332{letter-spacing:2.755200px;}
.ls5d_c00332{letter-spacing:2.976960px;}
.ls25_c00332{letter-spacing:3.030720px;}
.ls2a_c00332{letter-spacing:3.044160px;}
.ls13_c00332{letter-spacing:3.071040px;}
.ls83_c00332{letter-spacing:3.360000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{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__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00332{word-spacing:-15.939840px;}
.ws5_c00332{word-spacing:0.000000px;}
.ws1_c00332{word-spacing:38.796000px;}
.ws4_c00332{word-spacing:120.188640px;}
.ws3_c00332{word-spacing:121.242240px;}
.ws2_c00332{word-spacing:124.183800px;}
._1a_c00332{margin-left:-19.371600px;}
._1b_c00332{margin-left:-13.607280px;}
._19_c00332{margin-left:-7.195200px;}
._1c_c00332{margin-left:-5.927040px;}
._3_c00332{margin-left:-4.744320px;}
._1_c00332{margin-left:-2.862000px;}
._0_c00332{margin-left:-1.639680px;}
._5_c00332{width:1.679280px;}
._6_c00332{width:2.831280px;}
._4_c00332{width:3.884160px;}
._2_c00332{width:5.140800px;}
._7_c00332{width:6.189120px;}
._a_c00332{width:7.421760px;}
._b_c00332{width:9.246720px;}
._9_c00332{width:11.356800px;}
._8_c00332{width:12.384960px;}
._10_c00332{width:14.918400px;}
._f_c00332{width:17.968380px;}
._d_c00332{width:20.287680px;}
._e_c00332{width:22.955520px;}
._c_c00332{width:24.627840px;}
._16_c00332{width:26.570880px;}
._14_c00332{width:28.425600px;}
._15_c00332{width:30.327360px;}
._1d_c00332{width:31.772160px;}
._13_c00332{width:34.126200px;}
._11_c00332{width:36.433800px;}
._18_c00332{width:38.034360px;}
._12_c00332{width:39.448440px;}
._17_c00332{width:40.505400px;}
.fc0_c00332{color:transparent;}
.fs5_c00332{font-size:10.080000px;}
.fs7_c00332{font-size:18.000000px;}
.fs6_c00332{font-size:23.400600px;}
.fs4_c00332{font-size:47.400600px;}
.fs8_c00332{font-size:54.720000px;}
.fsa_c00332{font-size:58.200000px;}
.fs0_c00332{font-size:60.000000px;}
.fs1_c00332{font-size:67.200000px;}
.fs9_c00332{font-size:68.400000px;}
.fs2_c00332{font-size:69.000000px;}
.fs3_c00332{font-size:70.200000px;}
.y0_c00332{bottom:0.000000px;}
.y25_c00332{bottom:71.655000px;}
.y24_c00332{bottom:130.320000px;}
.y22_c00332{bottom:160.555800px;}
.y23_c00332{bottom:160.560000px;}
.y21_c00332{bottom:191.535000px;}
.y20_c00332{bottom:222.135000px;}
.y1f_c00332{bottom:222.137400px;}
.y1e_c00332{bottom:253.452600px;}
.y1d_c00332{bottom:284.415000px;}
.y1c_c00332{bottom:315.720000px;}
.y1b_c00332{bottom:378.010200px;}
.y1a_c00332{bottom:439.941600px;}
.y19_c00332{bottom:501.480000px;}
.y18_c00332{bottom:529.935000px;}
.y17_c00332{bottom:532.095000px;}
.y16_c00332{bottom:563.055000px;}
.y15_c00332{bottom:594.382200px;}
.y13_c00332{bottom:624.972600px;}
.y14_c00332{bottom:624.975000px;}
.y12_c00332{bottom:655.935000px;}
.y11_c00332{bottom:717.855000px;}
.y10_c00332{bottom:717.862200px;}
.yf_c00332{bottom:748.462200px;}
.ye_c00332{bottom:779.055000px;}
.yd_c00332{bottom:779.062200px;}
.yb_c00332{bottom:809.654400px;}
.yc_c00332{bottom:809.655000px;}
.ya_c00332{bottom:840.600000px;}
.y9_c00332{bottom:840.607200px;}
.y8_c00332{bottom:871.200000px;}
.y7_c00332{bottom:871.205400px;}
.y6_c00332{bottom:901.807800px;}
.y5_c00332{bottom:932.753400px;}
.y4_c00332{bottom:994.695000px;}
.y3_c00332{bottom:1056.237600px;}
.y2_c00332{bottom:1117.440000px;}
.y1_c00332{bottom:1192.695000px;}
.hc_c00332{height:6.713280px;}
.he_c00332{height:17.666016px;}
.hd_c00332{height:22.966409px;}
.h12_c00332{height:36.443520px;}
.h14_c00332{height:57.120117px;}
.h2_c00332{height:58.886719px;}
.h4_c00332{height:65.953125px;}
.h8_c00332{height:65.955525px;}
.h6_c00332{height:65.981925px;}
.h9_c00332{height:67.690927px;}
.h11_c00332{height:67.719727px;}
.hf_c00332{height:68.836784px;}
.h5_c00332{height:68.863184px;}
.ha_c00332{height:68.872784px;}
.h10_c00332{height:68.882384px;}
.h3_c00332{height:69.539062px;}
.h13_c00332{height:71.339063px;}
.hb_c00332{height:71.964844px;}
.h7_c00332{height:72.412297px;}
.h1_c00332{height:1263.000000px;}
.h0_c00332{height:1263.240000px;}
.w1_c00332{width:892.500000px;}
.w0_c00332{width:892.800000px;}
.x0_c00332{left:0.000000px;}
.x28_c00332{left:120.405000px;}
.x1_c00332{left:121.965000px;}
.xa_c00332{left:123.613800px;}
.x1b_c00332{left:141.765000px;}
.x1c_c00332{left:159.420000px;}
.x23_c00332{left:174.444000px;}
.x2_c00332{left:175.515000px;}
.x19_c00332{left:186.030000px;}
.x1a_c00332{left:212.940000px;}
.xb_c00332{left:227.310000px;}
.x11_c00332{left:235.620000px;}
.xc_c00332{left:250.410000px;}
.x12_c00332{left:256.860000px;}
.x13_c00332{left:315.270000px;}
.x14_c00332{left:339.315000px;}
.x29_c00332{left:422.550000px;}
.x1d_c00332{left:430.845000px;}
.xd_c00332{left:457.200000px;}
.x15_c00332{left:458.610000px;}
.x16_c00332{left:479.715000px;}
.xe_c00332{left:484.590000px;}
.x5_c00332{left:495.120000px;}
.x1e_c00332{left:498.180000px;}
.x3_c00332{left:499.800000px;}
.x20_c00332{left:509.040000px;}
.x4_c00332{left:520.395000px;}
.x6_c00332{left:526.470000px;}
.x21_c00332{left:536.415000px;}
.x7_c00332{left:564.225000px;}
.x1f_c00332{left:578.805000px;}
.x8_c00332{left:601.080000px;}
.x17_c00332{left:609.480000px;}
.x18_c00332{left:631.620000px;}
.x9_c00332{left:643.860000px;}
.x26_c00332{left:662.955000px;}
.x24_c00332{left:666.210000px;}
.x27_c00332{left:684.225000px;}
.x25_c00332{left:685.305000px;}
.xf_c00332{left:689.580000px;}
.x10_c00332{left:711.315000px;}
.x22_c00332{left:733.695000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.v1_c00332{vertical-align:23.040000pt;}
.lsaa_c00332{letter-spacing:-2.146667pt;}
.lsa2_c00332{letter-spacing:-2.090667pt;}
.ls99_c00332{letter-spacing:-1.582933pt;}
.ls9f_c00332{letter-spacing:-1.582400pt;}
.ls8c_c00332{letter-spacing:-1.416800pt;}
.lsa9_c00332{letter-spacing:-1.278293pt;}
.ls96_c00332{letter-spacing:-1.017120pt;}
.ls94_c00332{letter-spacing:-0.848640pt;}
.ls8e_c00332{letter-spacing:-0.830293pt;}
.ls85_c00332{letter-spacing:-0.764587pt;}
.ls93_c00332{letter-spacing:-0.686400pt;}
.ls91_c00332{letter-spacing:-0.567840pt;}
.ls9d_c00332{letter-spacing:-0.560000pt;}
.ls95_c00332{letter-spacing:-0.418080pt;}
.ls97_c00332{letter-spacing:-0.411840pt;}
.ls9a_c00332{letter-spacing:-0.191147pt;}
.lsa8_c00332{letter-spacing:-0.174720pt;}
.ls7f_c00332{letter-spacing:-0.149760pt;}
.ls87_c00332{letter-spacing:-0.035840pt;}
.ls90_c00332{letter-spacing:-0.031200pt;}
.ls8b_c00332{letter-spacing:-0.023893pt;}
.ls98_c00332{letter-spacing:-0.006240pt;}
.ls81_c00332{letter-spacing:0.000000pt;}
.lsab_c00332{letter-spacing:0.087947pt;}
.ls80_c00332{letter-spacing:0.101547pt;}
.lsa4_c00332{letter-spacing:0.119467pt;}
.lsa7_c00332{letter-spacing:0.137387pt;}
.ls42_c00332{letter-spacing:0.143360pt;}
.ls44_c00332{letter-spacing:0.156000pt;}
.ls67_c00332{letter-spacing:0.179200pt;}
.ls53_c00332{letter-spacing:0.191147pt;}
.ls5a_c00332{letter-spacing:0.193440pt;}
.ls2d_c00332{letter-spacing:0.203093pt;}
.lsa1_c00332{letter-spacing:0.209067pt;}
.ls68_c00332{letter-spacing:0.221013pt;}
.ls86_c00332{letter-spacing:0.334507pt;}
.ls9b_c00332{letter-spacing:0.382293pt;}
.ls5_c00332{letter-spacing:0.394240pt;}
.ls51_c00332{letter-spacing:0.406187pt;}
.ls3e_c00332{letter-spacing:0.412160pt;}
.ls7d_c00332{letter-spacing:0.424107pt;}
.lsa0_c00332{letter-spacing:0.436053pt;}
.ls3a_c00332{letter-spacing:0.459947pt;}
.ls76_c00332{letter-spacing:0.483840pt;}
.ls2b_c00332{letter-spacing:0.489813pt;}
.ls5f_c00332{letter-spacing:0.511680pt;}
.ls21_c00332{letter-spacing:0.531627pt;}
.ls7_c00332{letter-spacing:0.543573pt;}
.ls1d_c00332{letter-spacing:0.567467pt;}
.ls39_c00332{letter-spacing:0.573440pt;}
.ls8d_c00332{letter-spacing:0.585387pt;}
.ls23_c00332{letter-spacing:0.591360pt;}
.ls4a_c00332{letter-spacing:0.597333pt;}
.ls57_c00332{letter-spacing:0.609280pt;}
.ls4e_c00332{letter-spacing:0.615253pt;}
.ls40_c00332{letter-spacing:0.621227pt;}
.ls9e_c00332{letter-spacing:0.645120pt;}
.ls92_c00332{letter-spacing:0.680960pt;}
.ls8f_c00332{letter-spacing:0.686933pt;}
.ls74_c00332{letter-spacing:0.698880pt;}
.ls30_c00332{letter-spacing:0.710827pt;}
.lsf_c00332{letter-spacing:0.722773pt;}
.ls5c_c00332{letter-spacing:0.740693pt;}
.lsb_c00332{letter-spacing:0.746667pt;}
.ls46_c00332{letter-spacing:0.752640pt;}
.ls77_c00332{letter-spacing:0.758613pt;}
.ls4b_c00332{letter-spacing:0.788480pt;}
.ls12_c00332{letter-spacing:0.794453pt;}
.ls59_c00332{letter-spacing:0.806400pt;}
.ls6b_c00332{letter-spacing:0.812373pt;}
.ls54_c00332{letter-spacing:0.818347pt;}
.ls18_c00332{letter-spacing:0.824320pt;}
.ls1e_c00332{letter-spacing:0.842240pt;}
.ls4d_c00332{letter-spacing:0.848213pt;}
.ls50_c00332{letter-spacing:0.854187pt;}
.ls3c_c00332{letter-spacing:0.860160pt;}
.ls27_c00332{letter-spacing:0.866133pt;}
.ls7e_c00332{letter-spacing:0.890027pt;}
.ls34_c00332{letter-spacing:0.896000pt;}
.ls64_c00332{letter-spacing:0.901973pt;}
.lsa5_c00332{letter-spacing:0.904800pt;}
.ls73_c00332{letter-spacing:0.907947pt;}
.ls5b_c00332{letter-spacing:0.913920pt;}
.ls2_c00332{letter-spacing:0.925867pt;}
.ls11_c00332{letter-spacing:0.943787pt;}
.ls78_c00332{letter-spacing:0.967680pt;}
.ls6c_c00332{letter-spacing:0.973653pt;}
.ls1_c00332{letter-spacing:0.981333pt;}
.lsa3_c00332{letter-spacing:0.991573pt;}
.lsa6_c00332{letter-spacing:0.997547pt;}
.ls32_c00332{letter-spacing:1.003520pt;}
.ls6d_c00332{letter-spacing:1.009493pt;}
.ls75_c00332{letter-spacing:1.021440pt;}
.ls72_c00332{letter-spacing:1.039360pt;}
.ls9c_c00332{letter-spacing:1.040027pt;}
.ls1f_c00332{letter-spacing:1.045333pt;}
.ls38_c00332{letter-spacing:1.063253pt;}
.ls4_c00332{letter-spacing:1.069227pt;}
.lsa_c00332{letter-spacing:1.075200pt;}
.ls89_c00332{letter-spacing:1.081173pt;}
.ls63_c00332{letter-spacing:1.093120pt;}
.ls36_c00332{letter-spacing:1.099093pt;}
.ls60_c00332{letter-spacing:1.105067pt;}
.ls62_c00332{letter-spacing:1.117013pt;}
.ls10_c00332{letter-spacing:1.122987pt;}
.ls14_c00332{letter-spacing:1.128960pt;}
.ls7b_c00332{letter-spacing:1.134933pt;}
.ls69_c00332{letter-spacing:1.140907pt;}
.ls3f_c00332{letter-spacing:1.158827pt;}
.ls71_c00332{letter-spacing:1.164800pt;}
.ls9_c00332{letter-spacing:1.176747pt;}
.ls79_c00332{letter-spacing:1.182720pt;}
.lse_c00332{letter-spacing:1.200640pt;}
.ls1c_c00332{letter-spacing:1.212587pt;}
.ls35_c00332{letter-spacing:1.218560pt;}
.ls33_c00332{letter-spacing:1.236480pt;}
.ls52_c00332{letter-spacing:1.242453pt;}
.ls24_c00332{letter-spacing:1.260373pt;}
.ls1a_c00332{letter-spacing:1.266347pt;}
.ls70_c00332{letter-spacing:1.290240pt;}
.ls66_c00332{letter-spacing:1.314133pt;}
.ls4f_c00332{letter-spacing:1.320107pt;}
.ls20_c00332{letter-spacing:1.326080pt;}
.ls2f_c00332{letter-spacing:1.332053pt;}
.ls43_c00332{letter-spacing:1.349973pt;}
.ls2e_c00332{letter-spacing:1.355947pt;}
.ls6a_c00332{letter-spacing:1.367893pt;}
.ls41_c00332{letter-spacing:1.391787pt;}
.ls6e_c00332{letter-spacing:1.403733pt;}
.ls56_c00332{letter-spacing:1.421653pt;}
.ls29_c00332{letter-spacing:1.427627pt;}
.ls48_c00332{letter-spacing:1.451520pt;}
.ls6f_c00332{letter-spacing:1.493333pt;}
.ls3d_c00332{letter-spacing:1.511253pt;}
.ls49_c00332{letter-spacing:1.517227pt;}
.ls4c_c00332{letter-spacing:1.529173pt;}
.lsd_c00332{letter-spacing:1.541120pt;}
.ls82_c00332{letter-spacing:1.553067pt;}
.ls2c_c00332{letter-spacing:1.558953pt;}
.ls26_c00332{letter-spacing:1.600853pt;}
.ls65_c00332{letter-spacing:1.630720pt;}
.ls84_c00332{letter-spacing:1.648640pt;}
.ls0_c00332{letter-spacing:1.654613pt;}
.ls6_c00332{letter-spacing:1.660587pt;}
.ls45_c00332{letter-spacing:1.678507pt;}
.ls55_c00332{letter-spacing:1.690453pt;}
.ls22_c00332{letter-spacing:1.720320pt;}
.ls8_c00332{letter-spacing:1.732267pt;}
.ls58_c00332{letter-spacing:1.738240pt;}
.ls16_c00332{letter-spacing:1.744213pt;}
.ls8a_c00332{letter-spacing:1.750187pt;}
.ls7c_c00332{letter-spacing:1.765333pt;}
.ls17_c00332{letter-spacing:1.786027pt;}
.ls5e_c00332{letter-spacing:1.809920pt;}
.ls47_c00332{letter-spacing:1.821867pt;}
.lsc_c00332{letter-spacing:1.851733pt;}
.ls88_c00332{letter-spacing:1.863680pt;}
.ls28_c00332{letter-spacing:1.875627pt;}
.ls31_c00332{letter-spacing:1.887573pt;}
.ls19_c00332{letter-spacing:1.899520pt;}
.ls3_c00332{letter-spacing:1.959253pt;}
.ls15_c00332{letter-spacing:1.995093pt;}
.ls3b_c00332{letter-spacing:2.084693pt;}
.ls7a_c00332{letter-spacing:2.168320pt;}
.ls37_c00332{letter-spacing:2.299733pt;}
.ls1b_c00332{letter-spacing:2.359467pt;}
.ls61_c00332{letter-spacing:2.449067pt;}
.ls5d_c00332{letter-spacing:2.646187pt;}
.ls25_c00332{letter-spacing:2.693973pt;}
.ls2a_c00332{letter-spacing:2.705920pt;}
.ls13_c00332{letter-spacing:2.729813pt;}
.ls83_c00332{letter-spacing:2.986667pt;}
.ws0_c00332{word-spacing:-14.168747pt;}
.ws5_c00332{word-spacing:0.000000pt;}
.ws1_c00332{word-spacing:34.485333pt;}
.ws4_c00332{word-spacing:106.834347pt;}
.ws3_c00332{word-spacing:107.770880pt;}
.ws2_c00332{word-spacing:110.385600pt;}
._1a_c00332{margin-left:-17.219200pt;}
._1b_c00332{margin-left:-12.095360pt;}
._19_c00332{margin-left:-6.395733pt;}
._1c_c00332{margin-left:-5.268480pt;}
._3_c00332{margin-left:-4.217173pt;}
._1_c00332{margin-left:-2.544000pt;}
._0_c00332{margin-left:-1.457493pt;}
._5_c00332{width:1.492693pt;}
._6_c00332{width:2.516693pt;}
._4_c00332{width:3.452587pt;}
._2_c00332{width:4.569600pt;}
._7_c00332{width:5.501440pt;}
._a_c00332{width:6.597120pt;}
._b_c00332{width:8.219307pt;}
._9_c00332{width:10.094933pt;}
._8_c00332{width:11.008853pt;}
._10_c00332{width:13.260800pt;}
._f_c00332{width:15.971893pt;}
._d_c00332{width:18.033493pt;}
._e_c00332{width:20.404907pt;}
._c_c00332{width:21.891413pt;}
._16_c00332{width:23.618560pt;}
._14_c00332{width:25.267200pt;}
._15_c00332{width:26.957653pt;}
._1d_c00332{width:28.241920pt;}
._13_c00332{width:30.334400pt;}
._11_c00332{width:32.385600pt;}
._18_c00332{width:33.808320pt;}
._12_c00332{width:35.065280pt;}
._17_c00332{width:36.004800pt;}
.fs5_c00332{font-size:8.960000pt;}
.fs7_c00332{font-size:16.000000pt;}
.fs6_c00332{font-size:20.800533pt;}
.fs4_c00332{font-size:42.133867pt;}
.fs8_c00332{font-size:48.640000pt;}
.fsa_c00332{font-size:51.733333pt;}
.fs0_c00332{font-size:53.333333pt;}
.fs1_c00332{font-size:59.733333pt;}
.fs9_c00332{font-size:60.800000pt;}
.fs2_c00332{font-size:61.333333pt;}
.fs3_c00332{font-size:62.400000pt;}
.y0_c00332{bottom:0.000000pt;}
.y25_c00332{bottom:63.693333pt;}
.y24_c00332{bottom:115.840000pt;}
.y22_c00332{bottom:142.716267pt;}
.y23_c00332{bottom:142.720000pt;}
.y21_c00332{bottom:170.253333pt;}
.y20_c00332{bottom:197.453333pt;}
.y1f_c00332{bottom:197.455467pt;}
.y1e_c00332{bottom:225.291200pt;}
.y1d_c00332{bottom:252.813333pt;}
.y1c_c00332{bottom:280.640000pt;}
.y1b_c00332{bottom:336.009067pt;}
.y1a_c00332{bottom:391.059200pt;}
.y19_c00332{bottom:445.760000pt;}
.y18_c00332{bottom:471.053333pt;}
.y17_c00332{bottom:472.973333pt;}
.y16_c00332{bottom:500.493333pt;}
.y15_c00332{bottom:528.339733pt;}
.y13_c00332{bottom:555.531200pt;}
.y14_c00332{bottom:555.533333pt;}
.y12_c00332{bottom:583.053333pt;}
.y11_c00332{bottom:638.093333pt;}
.y10_c00332{bottom:638.099733pt;}
.yf_c00332{bottom:665.299733pt;}
.ye_c00332{bottom:692.493333pt;}
.yd_c00332{bottom:692.499733pt;}
.yb_c00332{bottom:719.692800pt;}
.yc_c00332{bottom:719.693333pt;}
.ya_c00332{bottom:747.200000pt;}
.y9_c00332{bottom:747.206400pt;}
.y8_c00332{bottom:774.400000pt;}
.y7_c00332{bottom:774.404800pt;}
.y6_c00332{bottom:801.606933pt;}
.y5_c00332{bottom:829.114133pt;}
.y4_c00332{bottom:884.173333pt;}
.y3_c00332{bottom:938.877867pt;}
.y2_c00332{bottom:993.280000pt;}
.y1_c00332{bottom:1060.173333pt;}
.hc_c00332{height:5.967360pt;}
.he_c00332{height:15.703125pt;}
.hd_c00332{height:20.414586pt;}
.h12_c00332{height:32.394240pt;}
.h14_c00332{height:50.773437pt;}
.h2_c00332{height:52.343750pt;}
.h4_c00332{height:58.625000pt;}
.h8_c00332{height:58.627133pt;}
.h6_c00332{height:58.650600pt;}
.h9_c00332{height:60.169712pt;}
.h11_c00332{height:60.195312pt;}
.hf_c00332{height:61.188252pt;}
.h5_c00332{height:61.211719pt;}
.ha_c00332{height:61.220252pt;}
.h10_c00332{height:61.228785pt;}
.h3_c00332{height:61.812500pt;}
.h13_c00332{height:63.412500pt;}
.hb_c00332{height:63.968750pt;}
.h7_c00332{height:64.366486pt;}
.h1_c00332{height:1122.666667pt;}
.h0_c00332{height:1122.880000pt;}
.w1_c00332{width:793.333333pt;}
.w0_c00332{width:793.600000pt;}
.x0_c00332{left:0.000000pt;}
.x28_c00332{left:107.026667pt;}
.x1_c00332{left:108.413333pt;}
.xa_c00332{left:109.878933pt;}
.x1b_c00332{left:126.013333pt;}
.x1c_c00332{left:141.706667pt;}
.x23_c00332{left:155.061333pt;}
.x2_c00332{left:156.013333pt;}
.x19_c00332{left:165.360000pt;}
.x1a_c00332{left:189.280000pt;}
.xb_c00332{left:202.053333pt;}
.x11_c00332{left:209.440000pt;}
.xc_c00332{left:222.586667pt;}
.x12_c00332{left:228.320000pt;}
.x13_c00332{left:280.240000pt;}
.x14_c00332{left:301.613333pt;}
.x29_c00332{left:375.600000pt;}
.x1d_c00332{left:382.973333pt;}
.xd_c00332{left:406.400000pt;}
.x15_c00332{left:407.653333pt;}
.x16_c00332{left:426.413333pt;}
.xe_c00332{left:430.746667pt;}
.x5_c00332{left:440.106667pt;}
.x1e_c00332{left:442.826667pt;}
.x3_c00332{left:444.266667pt;}
.x20_c00332{left:452.480000pt;}
.x4_c00332{left:462.573333pt;}
.x6_c00332{left:467.973333pt;}
.x21_c00332{left:476.813333pt;}
.x7_c00332{left:501.533333pt;}
.x1f_c00332{left:514.493333pt;}
.x8_c00332{left:534.293333pt;}
.x17_c00332{left:541.760000pt;}
.x18_c00332{left:561.440000pt;}
.x9_c00332{left:572.320000pt;}
.x26_c00332{left:589.293333pt;}
.x24_c00332{left:592.186667pt;}
.x27_c00332{left:608.200000pt;}
.x25_c00332{left:609.160000pt;}
.xf_c00332{left:612.960000pt;}
.x10_c00332{left:632.280000pt;}
.x22_c00332{left:652.173333pt;}
}





/* 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_c00333 {
    display:none;
  }
  .loading-indicator_c00333.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00333 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_c00333 { 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_c00333" -> "#page-container .classname_c00333")
 */
.pf_c00333 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00333 { /* 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_c00333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00333 { /* 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_c00333 { /* 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_c00333 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00333 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00333 {overflow:visible;}
  }
}
.c_c00333 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00333 { /* 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_c00333:after { /* webkit #35443 */
  content: '';
}
.t_c00333:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00333 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 */
}
.__c00333 { /* 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_c00333 { /* info for Javascript */
  display:none;
}
.l_c00333 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00333 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00333 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00333: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_c00333 {
    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_c00333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00333.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_c00333 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00333{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00333;src:url('chunks/assets/font_5105e90e634b2daa93f185b5.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.284668;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_c00333;src:url('chunks/assets/font_04cde6d65f47bb94244f7c9e.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.284180;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;}
.ma_c00333{transform:matrix(0.172498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172498,0.000000,0.000000,0.250000,0,0);}
.m9_c00333{transform:matrix(0.177287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177287,0.000000,0.000000,0.250000,0,0);}
.m3_c00333{transform:matrix(0.222496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222496,0.000000,0.000000,0.250000,0,0);}
.m4_c00333{transform:matrix(0.228058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228058,0.000000,0.000000,0.250000,0,0);}
.m2_c00333{transform:matrix(0.229572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229572,0.000000,0.000000,0.250000,0,0);}
.mb_c00333{transform:matrix(0.230156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230156,0.000000,0.000000,0.250000,0,0);}
.m6_c00333{transform:matrix(0.235314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235314,0.000000,0.000000,0.250000,0,0);}
.m5_c00333{transform:matrix(0.245021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245021,0.000000,0.000000,0.250000,0,0);}
.m8_c00333{transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);}
.m0_c00333{transform:matrix(0.247973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247973,0.000000,0.000000,0.250000,0,0);}
.m7_c00333{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m1_c00333{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);}
.v0_c00333{vertical-align:0.000000px;}
.ls56_c00333{letter-spacing:-2.457000px;}
.ls52_c00333{letter-spacing:-2.394000px;}
.ls44_c00333{letter-spacing:-2.352000px;}
.ls91_c00333{letter-spacing:-2.289000px;}
.ls7f_c00333{letter-spacing:-2.253420px;}
.ls59_c00333{letter-spacing:-2.204280px;}
.ls79_c00333{letter-spacing:-2.035800px;}
.ls8a_c00333{letter-spacing:-1.916460px;}
.ls7d_c00333{letter-spacing:-1.642680px;}
.ls6a_c00333{letter-spacing:-1.502280px;}
.ls8b_c00333{letter-spacing:-1.467180px;}
.ls75_c00333{letter-spacing:-1.446120px;}
.ls6e_c00333{letter-spacing:-1.418040px;}
.ls7e_c00333{letter-spacing:-1.249560px;}
.ls82_c00333{letter-spacing:-1.207440px;}
.ls5a_c00333{letter-spacing:-1.165320px;}
.ls58_c00333{letter-spacing:-1.151280px;}
.ls61_c00333{letter-spacing:-0.950760px;}
.ls54_c00333{letter-spacing:-0.947700px;}
.ls68_c00333{letter-spacing:-0.889200px;}
.ls7c_c00333{letter-spacing:-0.877500px;}
.ls76_c00333{letter-spacing:-0.856440px;}
.ls88_c00333{letter-spacing:-0.828360px;}
.ls4c_c00333{letter-spacing:-0.814320px;}
.ls8d_c00333{letter-spacing:-0.807300px;}
.ls80_c00333{letter-spacing:-0.793260px;}
.ls8e_c00333{letter-spacing:-0.765180px;}
.ls81_c00333{letter-spacing:-0.730080px;}
.ls86_c00333{letter-spacing:-0.723060px;}
.ls8c_c00333{letter-spacing:-0.673920px;}
.ls4d_c00333{letter-spacing:-0.659880px;}
.ls8f_c00333{letter-spacing:-0.638820px;}
.ls70_c00333{letter-spacing:-0.631800px;}
.ls60_c00333{letter-spacing:-0.610740px;}
.ls72_c00333{letter-spacing:-0.603720px;}
.ls6d_c00333{letter-spacing:-0.589680px;}
.ls4b_c00333{letter-spacing:-0.582660px;}
.ls51_c00333{letter-spacing:-0.574560px;}
.ls89_c00333{letter-spacing:-0.568620px;}
.ls7b_c00333{letter-spacing:-0.526500px;}
.ls64_c00333{letter-spacing:-0.512460px;}
.ls46_c00333{letter-spacing:-0.491400px;}
.ls66_c00333{letter-spacing:-0.442260px;}
.ls49_c00333{letter-spacing:-0.407160px;}
.ls5d_c00333{letter-spacing:-0.400140px;}
.ls90_c00333{letter-spacing:-0.358020px;}
.ls5c_c00333{letter-spacing:-0.343980px;}
.ls4e_c00333{letter-spacing:-0.336960px;}
.ls7a_c00333{letter-spacing:-0.329940px;}
.ls55_c00333{letter-spacing:-0.322920px;}
.ls6b_c00333{letter-spacing:-0.308880px;}
.ls50_c00333{letter-spacing:-0.273780px;}
.ls84_c00333{letter-spacing:-0.238680px;}
.ls4a_c00333{letter-spacing:-0.217620px;}
.ls78_c00333{letter-spacing:-0.189540px;}
.ls85_c00333{letter-spacing:-0.182520px;}
.ls65_c00333{letter-spacing:-0.168480px;}
.ls4f_c00333{letter-spacing:-0.161460px;}
.ls6c_c00333{letter-spacing:-0.154440px;}
.ls5f_c00333{letter-spacing:-0.126360px;}
.ls71_c00333{letter-spacing:-0.105300px;}
.ls63_c00333{letter-spacing:-0.098280px;}
.ls5e_c00333{letter-spacing:-0.070200px;}
.ls45_c00333{letter-spacing:-0.042120px;}
.ls48_c00333{letter-spacing:-0.035100px;}
.ls87_c00333{letter-spacing:-0.021060px;}
.ls77_c00333{letter-spacing:-0.014040px;}
.ls83_c00333{letter-spacing:-0.007020px;}
.ls67_c00333{letter-spacing:-0.006840px;}
.ls47_c00333{letter-spacing:0.000000px;}
.lsb_c00333{letter-spacing:0.007020px;}
.ls9_c00333{letter-spacing:0.021060px;}
.ls13_c00333{letter-spacing:0.028080px;}
.ls7_c00333{letter-spacing:0.049140px;}
.ls74_c00333{letter-spacing:0.056160px;}
.ls34_c00333{letter-spacing:0.070200px;}
.lse_c00333{letter-spacing:0.084240px;}
.ls23_c00333{letter-spacing:0.091260px;}
.ls40_c00333{letter-spacing:0.112320px;}
.ls2b_c00333{letter-spacing:0.126360px;}
.ls3b_c00333{letter-spacing:0.133380px;}
.ls6_c00333{letter-spacing:0.140400px;}
.ls1d_c00333{letter-spacing:0.143640px;}
.ls30_c00333{letter-spacing:0.147420px;}
.lsc_c00333{letter-spacing:0.157320px;}
.ls2c_c00333{letter-spacing:0.161460px;}
.ls3c_c00333{letter-spacing:0.168480px;}
.ls1_c00333{letter-spacing:0.175500px;}
.ls17_c00333{letter-spacing:0.182520px;}
.ls35_c00333{letter-spacing:0.196560px;}
.ls2f_c00333{letter-spacing:0.217620px;}
.ls15_c00333{letter-spacing:0.224640px;}
.ls1f_c00333{letter-spacing:0.238680px;}
.ls3a_c00333{letter-spacing:0.245700px;}
.ls16_c00333{letter-spacing:0.259740px;}
.ls28_c00333{letter-spacing:0.266760px;}
.lsa_c00333{letter-spacing:0.294840px;}
.ls36_c00333{letter-spacing:0.301860px;}
.ls27_c00333{letter-spacing:0.322920px;}
.ls21_c00333{letter-spacing:0.336960px;}
.ls38_c00333{letter-spacing:0.351000px;}
.lsd_c00333{letter-spacing:0.372060px;}
.ls8_c00333{letter-spacing:0.379080px;}
.ls3_c00333{letter-spacing:0.400140px;}
.ls18_c00333{letter-spacing:0.407160px;}
.ls1e_c00333{letter-spacing:0.414180px;}
.ls3e_c00333{letter-spacing:0.421200px;}
.ls19_c00333{letter-spacing:0.435240px;}
.ls0_c00333{letter-spacing:0.449280px;}
.ls2_c00333{letter-spacing:0.456300px;}
.ls43_c00333{letter-spacing:0.463320px;}
.ls73_c00333{letter-spacing:0.485640px;}
.ls3f_c00333{letter-spacing:0.491400px;}
.ls26_c00333{letter-spacing:0.512460px;}
.ls11_c00333{letter-spacing:0.519480px;}
.ls14_c00333{letter-spacing:0.526500px;}
.ls5_c00333{letter-spacing:0.561600px;}
.ls1a_c00333{letter-spacing:0.575640px;}
.ls1b_c00333{letter-spacing:0.589680px;}
.ls42_c00333{letter-spacing:0.610740px;}
.ls10_c00333{letter-spacing:0.617760px;}
.ls37_c00333{letter-spacing:0.631800px;}
.ls12_c00333{letter-spacing:0.652860px;}
.ls1c_c00333{letter-spacing:0.758160px;}
.ls33_c00333{letter-spacing:0.779220px;}
.ls4_c00333{letter-spacing:0.989820px;}
.ls20_c00333{letter-spacing:0.996840px;}
.ls62_c00333{letter-spacing:1.060200px;}
.ls31_c00333{letter-spacing:1.101240px;}
.ls29_c00333{letter-spacing:1.121760px;}
.ls2a_c00333{letter-spacing:1.155960px;}
.ls32_c00333{letter-spacing:1.165320px;}
.ls6f_c00333{letter-spacing:1.169640px;}
.ls39_c00333{letter-spacing:1.172340px;}
.ls41_c00333{letter-spacing:1.190160px;}
.lsf_c00333{letter-spacing:1.214460px;}
.ls53_c00333{letter-spacing:1.258560px;}
.ls3d_c00333{letter-spacing:1.284660px;}
.ls2e_c00333{letter-spacing:1.354320px;}
.ls2d_c00333{letter-spacing:1.381680px;}
.ls69_c00333{letter-spacing:1.443240px;}
.ls22_c00333{letter-spacing:1.551420px;}
.ls5b_c00333{letter-spacing:1.867320px;}
.ls57_c00333{letter-spacing:2.045160px;}
.ls25_c00333{letter-spacing:2.250360px;}
.ls24_c00333{letter-spacing:3.358440px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{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__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00333{word-spacing:-17.257320px;}
.ws5_c00333{word-spacing:-17.243640px;}
.ws6_c00333{word-spacing:-17.093160px;}
.ws9_c00333{word-spacing:-0.393840px;}
.wsa_c00333{word-spacing:0.000000px;}
.ws8_c00333{word-spacing:2.706240px;}
.ws0_c00333{word-spacing:123.903000px;}
.ws1_c00333{word-spacing:124.913880px;}
.ws4_c00333{word-spacing:125.980920px;}
.ws7_c00333{word-spacing:127.525320px;}
.ws3_c00333{word-spacing:127.595520px;}
._c_c00333{margin-left:-14.664780px;}
._1_c00333{margin-left:-13.169520px;}
._14_c00333{margin-left:-10.807200px;}
._b_c00333{margin-left:-4.520880px;}
._0_c00333{margin-left:-1.586520px;}
._2_c00333{width:1.375920px;}
._3_c00333{width:3.341520px;}
._8_c00333{width:4.401540px;}
._7_c00333{width:6.128640px;}
._9_c00333{width:7.160400px;}
._a_c00333{width:9.055620px;}
._16_c00333{width:11.197080px;}
._15_c00333{width:12.832920px;}
._6_c00333{width:23.643360px;}
._d_c00333{width:25.257960px;}
._e_c00333{width:27.174420px;}
._4_c00333{width:28.178280px;}
._5_c00333{width:29.484000px;}
._f_c00333{width:30.494880px;}
._10_c00333{width:34.173360px;}
._11_c00333{width:37.444680px;}
._12_c00333{width:38.504700px;}
._13_c00333{width:40.926600px;}
.fc0_c00333{color:transparent;}
.fs3_c00333{font-size:65.400000px;}
.fs0_c00333{font-size:67.200000px;}
.fs2_c00333{font-size:68.400000px;}
.fs1_c00333{font-size:70.200000px;}
.y0_c00333{bottom:0.000000px;}
.y20_c00333{bottom:69.855000px;}
.y1f_c00333{bottom:191.160000px;}
.y1e_c00333{bottom:254.176800px;}
.y1d_c00333{bottom:285.138600px;}
.y1c_c00333{bottom:316.096800px;}
.y1b_c00333{bottom:347.055000px;}
.y1a_c00333{bottom:408.975000px;}
.y19_c00333{bottom:439.935000px;}
.y18_c00333{bottom:501.490050px;}
.y17_c00333{bottom:563.775000px;}
.y16_c00333{bottom:563.776800px;}
.y15_c00333{bottom:594.737100px;}
.y14_c00333{bottom:656.280000px;}
.y13_c00333{bottom:656.287800px;}
.y12_c00333{bottom:686.895000px;}
.y11_c00333{bottom:717.495000px;}
.y10_c00333{bottom:748.440000px;}
.yf_c00333{bottom:779.040000px;}
.ye_c00333{bottom:810.000000px;}
.yd_c00333{bottom:840.975000px;}
.yc_c00333{bottom:840.976800px;}
.yb_c00333{bottom:871.935000px;}
.ya_c00333{bottom:902.880000px;}
.y9_c00333{bottom:933.855000px;}
.y8_c00333{bottom:933.856800px;}
.y7_c00333{bottom:964.815000px;}
.y6_c00333{bottom:995.400000px;}
.y5_c00333{bottom:1026.367800px;}
.y4_c00333{bottom:1056.975000px;}
.y3_c00333{bottom:1087.561800px;}
.y2_c00333{bottom:1118.520000px;}
.y1_c00333{bottom:1194.495000px;}
.h7_c00333{height:64.186523px;}
.h2_c00333{height:65.953125px;}
.h5_c00333{height:67.097461px;}
.h4_c00333{height:67.130859px;}
.h6_c00333{height:68.889061px;}
.h3_c00333{height:68.897461px;}
.h1_c00333{height:1263.000000px;}
.h0_c00333{height:1263.240000px;}
.w1_c00333{width:892.500000px;}
.w0_c00333{width:892.800000px;}
.x0_c00333{left:0.000000px;}
.x16_c00333{left:121.272450px;}
.x8_c00333{left:122.895000px;}
.x1_c00333{left:124.845000px;}
.x11_c00333{left:175.869000px;}
.x5_c00333{left:177.045000px;}
.x2_c00333{left:178.380000px;}
.x13_c00333{left:246.765000px;}
.x12_c00333{left:248.057100px;}
.x14_c00333{left:274.815000px;}
.x17_c00333{left:410.700000px;}
.x19_c00333{left:426.870000px;}
.x18_c00333{left:442.980000px;}
.x6_c00333{left:641.370000px;}
.x7_c00333{left:660.450000px;}
.xe_c00333{left:664.950000px;}
.x10_c00333{left:666.765000px;}
.x9_c00333{left:668.715000px;}
.xb_c00333{left:672.690000px;}
.xd_c00333{left:673.965000px;}
.xf_c00333{left:685.590000px;}
.x3_c00333{left:687.285000px;}
.xa_c00333{left:688.530000px;}
.xc_c00333{left:695.130000px;}
.x4_c00333{left:708.375000px;}
.x15_c00333{left:715.245000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls56_c00333{letter-spacing:-2.184000pt;}
.ls52_c00333{letter-spacing:-2.128000pt;}
.ls44_c00333{letter-spacing:-2.090667pt;}
.ls91_c00333{letter-spacing:-2.034667pt;}
.ls7f_c00333{letter-spacing:-2.003040pt;}
.ls59_c00333{letter-spacing:-1.959360pt;}
.ls79_c00333{letter-spacing:-1.809600pt;}
.ls8a_c00333{letter-spacing:-1.703520pt;}
.ls7d_c00333{letter-spacing:-1.460160pt;}
.ls6a_c00333{letter-spacing:-1.335360pt;}
.ls8b_c00333{letter-spacing:-1.304160pt;}
.ls75_c00333{letter-spacing:-1.285440pt;}
.ls6e_c00333{letter-spacing:-1.260480pt;}
.ls7e_c00333{letter-spacing:-1.110720pt;}
.ls82_c00333{letter-spacing:-1.073280pt;}
.ls5a_c00333{letter-spacing:-1.035840pt;}
.ls58_c00333{letter-spacing:-1.023360pt;}
.ls61_c00333{letter-spacing:-0.845120pt;}
.ls54_c00333{letter-spacing:-0.842400pt;}
.ls68_c00333{letter-spacing:-0.790400pt;}
.ls7c_c00333{letter-spacing:-0.780000pt;}
.ls76_c00333{letter-spacing:-0.761280pt;}
.ls88_c00333{letter-spacing:-0.736320pt;}
.ls4c_c00333{letter-spacing:-0.723840pt;}
.ls8d_c00333{letter-spacing:-0.717600pt;}
.ls80_c00333{letter-spacing:-0.705120pt;}
.ls8e_c00333{letter-spacing:-0.680160pt;}
.ls81_c00333{letter-spacing:-0.648960pt;}
.ls86_c00333{letter-spacing:-0.642720pt;}
.ls8c_c00333{letter-spacing:-0.599040pt;}
.ls4d_c00333{letter-spacing:-0.586560pt;}
.ls8f_c00333{letter-spacing:-0.567840pt;}
.ls70_c00333{letter-spacing:-0.561600pt;}
.ls60_c00333{letter-spacing:-0.542880pt;}
.ls72_c00333{letter-spacing:-0.536640pt;}
.ls6d_c00333{letter-spacing:-0.524160pt;}
.ls4b_c00333{letter-spacing:-0.517920pt;}
.ls51_c00333{letter-spacing:-0.510720pt;}
.ls89_c00333{letter-spacing:-0.505440pt;}
.ls7b_c00333{letter-spacing:-0.468000pt;}
.ls64_c00333{letter-spacing:-0.455520pt;}
.ls46_c00333{letter-spacing:-0.436800pt;}
.ls66_c00333{letter-spacing:-0.393120pt;}
.ls49_c00333{letter-spacing:-0.361920pt;}
.ls5d_c00333{letter-spacing:-0.355680pt;}
.ls90_c00333{letter-spacing:-0.318240pt;}
.ls5c_c00333{letter-spacing:-0.305760pt;}
.ls4e_c00333{letter-spacing:-0.299520pt;}
.ls7a_c00333{letter-spacing:-0.293280pt;}
.ls55_c00333{letter-spacing:-0.287040pt;}
.ls6b_c00333{letter-spacing:-0.274560pt;}
.ls50_c00333{letter-spacing:-0.243360pt;}
.ls84_c00333{letter-spacing:-0.212160pt;}
.ls4a_c00333{letter-spacing:-0.193440pt;}
.ls78_c00333{letter-spacing:-0.168480pt;}
.ls85_c00333{letter-spacing:-0.162240pt;}
.ls65_c00333{letter-spacing:-0.149760pt;}
.ls4f_c00333{letter-spacing:-0.143520pt;}
.ls6c_c00333{letter-spacing:-0.137280pt;}
.ls5f_c00333{letter-spacing:-0.112320pt;}
.ls71_c00333{letter-spacing:-0.093600pt;}
.ls63_c00333{letter-spacing:-0.087360pt;}
.ls5e_c00333{letter-spacing:-0.062400pt;}
.ls45_c00333{letter-spacing:-0.037440pt;}
.ls48_c00333{letter-spacing:-0.031200pt;}
.ls87_c00333{letter-spacing:-0.018720pt;}
.ls77_c00333{letter-spacing:-0.012480pt;}
.ls83_c00333{letter-spacing:-0.006240pt;}
.ls67_c00333{letter-spacing:-0.006080pt;}
.ls47_c00333{letter-spacing:0.000000pt;}
.lsb_c00333{letter-spacing:0.006240pt;}
.ls9_c00333{letter-spacing:0.018720pt;}
.ls13_c00333{letter-spacing:0.024960pt;}
.ls7_c00333{letter-spacing:0.043680pt;}
.ls74_c00333{letter-spacing:0.049920pt;}
.ls34_c00333{letter-spacing:0.062400pt;}
.lse_c00333{letter-spacing:0.074880pt;}
.ls23_c00333{letter-spacing:0.081120pt;}
.ls40_c00333{letter-spacing:0.099840pt;}
.ls2b_c00333{letter-spacing:0.112320pt;}
.ls3b_c00333{letter-spacing:0.118560pt;}
.ls6_c00333{letter-spacing:0.124800pt;}
.ls1d_c00333{letter-spacing:0.127680pt;}
.ls30_c00333{letter-spacing:0.131040pt;}
.lsc_c00333{letter-spacing:0.139840pt;}
.ls2c_c00333{letter-spacing:0.143520pt;}
.ls3c_c00333{letter-spacing:0.149760pt;}
.ls1_c00333{letter-spacing:0.156000pt;}
.ls17_c00333{letter-spacing:0.162240pt;}
.ls35_c00333{letter-spacing:0.174720pt;}
.ls2f_c00333{letter-spacing:0.193440pt;}
.ls15_c00333{letter-spacing:0.199680pt;}
.ls1f_c00333{letter-spacing:0.212160pt;}
.ls3a_c00333{letter-spacing:0.218400pt;}
.ls16_c00333{letter-spacing:0.230880pt;}
.ls28_c00333{letter-spacing:0.237120pt;}
.lsa_c00333{letter-spacing:0.262080pt;}
.ls36_c00333{letter-spacing:0.268320pt;}
.ls27_c00333{letter-spacing:0.287040pt;}
.ls21_c00333{letter-spacing:0.299520pt;}
.ls38_c00333{letter-spacing:0.312000pt;}
.lsd_c00333{letter-spacing:0.330720pt;}
.ls8_c00333{letter-spacing:0.336960pt;}
.ls3_c00333{letter-spacing:0.355680pt;}
.ls18_c00333{letter-spacing:0.361920pt;}
.ls1e_c00333{letter-spacing:0.368160pt;}
.ls3e_c00333{letter-spacing:0.374400pt;}
.ls19_c00333{letter-spacing:0.386880pt;}
.ls0_c00333{letter-spacing:0.399360pt;}
.ls2_c00333{letter-spacing:0.405600pt;}
.ls43_c00333{letter-spacing:0.411840pt;}
.ls73_c00333{letter-spacing:0.431680pt;}
.ls3f_c00333{letter-spacing:0.436800pt;}
.ls26_c00333{letter-spacing:0.455520pt;}
.ls11_c00333{letter-spacing:0.461760pt;}
.ls14_c00333{letter-spacing:0.468000pt;}
.ls5_c00333{letter-spacing:0.499200pt;}
.ls1a_c00333{letter-spacing:0.511680pt;}
.ls1b_c00333{letter-spacing:0.524160pt;}
.ls42_c00333{letter-spacing:0.542880pt;}
.ls10_c00333{letter-spacing:0.549120pt;}
.ls37_c00333{letter-spacing:0.561600pt;}
.ls12_c00333{letter-spacing:0.580320pt;}
.ls1c_c00333{letter-spacing:0.673920pt;}
.ls33_c00333{letter-spacing:0.692640pt;}
.ls4_c00333{letter-spacing:0.879840pt;}
.ls20_c00333{letter-spacing:0.886080pt;}
.ls62_c00333{letter-spacing:0.942400pt;}
.ls31_c00333{letter-spacing:0.978880pt;}
.ls29_c00333{letter-spacing:0.997120pt;}
.ls2a_c00333{letter-spacing:1.027520pt;}
.ls32_c00333{letter-spacing:1.035840pt;}
.ls6f_c00333{letter-spacing:1.039680pt;}
.ls39_c00333{letter-spacing:1.042080pt;}
.ls41_c00333{letter-spacing:1.057920pt;}
.lsf_c00333{letter-spacing:1.079520pt;}
.ls53_c00333{letter-spacing:1.118720pt;}
.ls3d_c00333{letter-spacing:1.141920pt;}
.ls2e_c00333{letter-spacing:1.203840pt;}
.ls2d_c00333{letter-spacing:1.228160pt;}
.ls69_c00333{letter-spacing:1.282880pt;}
.ls22_c00333{letter-spacing:1.379040pt;}
.ls5b_c00333{letter-spacing:1.659840pt;}
.ls57_c00333{letter-spacing:1.817920pt;}
.ls25_c00333{letter-spacing:2.000320pt;}
.ls24_c00333{letter-spacing:2.985280pt;}
.ws2_c00333{word-spacing:-15.339840pt;}
.ws5_c00333{word-spacing:-15.327680pt;}
.ws6_c00333{word-spacing:-15.193920pt;}
.ws9_c00333{word-spacing:-0.350080pt;}
.wsa_c00333{word-spacing:0.000000pt;}
.ws8_c00333{word-spacing:2.405547pt;}
.ws0_c00333{word-spacing:110.136000pt;}
.ws1_c00333{word-spacing:111.034560pt;}
.ws4_c00333{word-spacing:111.983040pt;}
.ws7_c00333{word-spacing:113.355840pt;}
.ws3_c00333{word-spacing:113.418240pt;}
._c_c00333{margin-left:-13.035360pt;}
._1_c00333{margin-left:-11.706240pt;}
._14_c00333{margin-left:-9.606400pt;}
._b_c00333{margin-left:-4.018560pt;}
._0_c00333{margin-left:-1.410240pt;}
._2_c00333{width:1.223040pt;}
._3_c00333{width:2.970240pt;}
._8_c00333{width:3.912480pt;}
._7_c00333{width:5.447680pt;}
._9_c00333{width:6.364800pt;}
._a_c00333{width:8.049440pt;}
._16_c00333{width:9.952960pt;}
._15_c00333{width:11.407040pt;}
._6_c00333{width:21.016320pt;}
._d_c00333{width:22.451520pt;}
._e_c00333{width:24.155040pt;}
._4_c00333{width:25.047360pt;}
._5_c00333{width:26.208000pt;}
._f_c00333{width:27.106560pt;}
._10_c00333{width:30.376320pt;}
._11_c00333{width:33.284160pt;}
._12_c00333{width:34.226400pt;}
._13_c00333{width:36.379200pt;}
.fs3_c00333{font-size:58.133333pt;}
.fs0_c00333{font-size:59.733333pt;}
.fs2_c00333{font-size:60.800000pt;}
.fs1_c00333{font-size:62.400000pt;}
.y0_c00333{bottom:0.000000pt;}
.y20_c00333{bottom:62.093333pt;}
.y1f_c00333{bottom:169.920000pt;}
.y1e_c00333{bottom:225.934933pt;}
.y1d_c00333{bottom:253.456533pt;}
.y1c_c00333{bottom:280.974933pt;}
.y1b_c00333{bottom:308.493333pt;}
.y1a_c00333{bottom:363.533333pt;}
.y19_c00333{bottom:391.053333pt;}
.y18_c00333{bottom:445.768933pt;}
.y17_c00333{bottom:501.133333pt;}
.y16_c00333{bottom:501.134933pt;}
.y15_c00333{bottom:528.655200pt;}
.y14_c00333{bottom:583.360000pt;}
.y13_c00333{bottom:583.366933pt;}
.y12_c00333{bottom:610.573333pt;}
.y11_c00333{bottom:637.773333pt;}
.y10_c00333{bottom:665.280000pt;}
.yf_c00333{bottom:692.480000pt;}
.ye_c00333{bottom:720.000000pt;}
.yd_c00333{bottom:747.533333pt;}
.yc_c00333{bottom:747.534933pt;}
.yb_c00333{bottom:775.053333pt;}
.ya_c00333{bottom:802.560000pt;}
.y9_c00333{bottom:830.093333pt;}
.y8_c00333{bottom:830.094933pt;}
.y7_c00333{bottom:857.613333pt;}
.y6_c00333{bottom:884.800000pt;}
.y5_c00333{bottom:912.326933pt;}
.y4_c00333{bottom:939.533333pt;}
.y3_c00333{bottom:966.721600pt;}
.y2_c00333{bottom:994.240000pt;}
.y1_c00333{bottom:1061.773333pt;}
.h7_c00333{height:57.054688pt;}
.h2_c00333{height:58.625000pt;}
.h5_c00333{height:59.642187pt;}
.h4_c00333{height:59.671875pt;}
.h6_c00333{height:61.234721pt;}
.h3_c00333{height:61.242187pt;}
.h1_c00333{height:1122.666667pt;}
.h0_c00333{height:1122.880000pt;}
.w1_c00333{width:793.333333pt;}
.w0_c00333{width:793.600000pt;}
.x0_c00333{left:0.000000pt;}
.x16_c00333{left:107.797733pt;}
.x8_c00333{left:109.240000pt;}
.x1_c00333{left:110.973333pt;}
.x11_c00333{left:156.328000pt;}
.x5_c00333{left:157.373333pt;}
.x2_c00333{left:158.560000pt;}
.x13_c00333{left:219.346667pt;}
.x12_c00333{left:220.495200pt;}
.x14_c00333{left:244.280000pt;}
.x17_c00333{left:365.066667pt;}
.x19_c00333{left:379.440000pt;}
.x18_c00333{left:393.760000pt;}
.x6_c00333{left:570.106667pt;}
.x7_c00333{left:587.066667pt;}
.xe_c00333{left:591.066667pt;}
.x10_c00333{left:592.680000pt;}
.x9_c00333{left:594.413333pt;}
.xb_c00333{left:597.946667pt;}
.xd_c00333{left:599.080000pt;}
.xf_c00333{left:609.413333pt;}
.x3_c00333{left:610.920000pt;}
.xa_c00333{left:612.026667pt;}
.xc_c00333{left:617.893333pt;}
.x4_c00333{left:629.666667pt;}
.x15_c00333{left:635.773333pt;}
}





/* 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_c00334 {
    display:none;
  }
  .loading-indicator_c00334.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00334 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_c00334 { 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_c00334" -> "#page-container .classname_c00334")
 */
.pf_c00334 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00334 { /* 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_c00334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00334 { /* 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_c00334 { /* 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_c00334 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00334 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00334 {overflow:visible;}
  }
}
.c_c00334 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00334 { /* 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_c00334:after { /* webkit #35443 */
  content: '';
}
.t_c00334:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00334 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 */
}
.__c00334 { /* 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_c00334 { /* info for Javascript */
  display:none;
}
.l_c00334 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00334 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00334 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00334: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_c00334 {
    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_c00334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00334.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_c00334 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00334;src:url('chunks/assets/font_e36f565103e2f15c9a715c15.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.284668;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_c00334;src:url('chunks/assets/font_387ca0a14b1666adb08c4e87.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.284180;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_c00334;src:url('chunks/assets/font_8b1b61b5a58afba79f10826e.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;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:ff4_c00334;src:url('chunks/assets/font_25dd8f9de39d55be4a6bc87b.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:0.666000;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;}
.m9_c00334{transform:matrix(0.143581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143581,0.000000,0.000000,0.250000,0,0);}
.m10_c00334{transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);}
.mb_c00334{transform:matrix(0.205487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205487,0.000000,0.000000,0.250000,0,0);}
.mf_c00334{transform:matrix(0.223603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223603,0.000000,0.000000,0.250000,0,0);}
.m11_c00334{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m12_c00334{transform:matrix(0.238924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238924,0.000000,0.000000,0.250000,0,0);}
.m7_c00334{transform:matrix(0.239169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239169,0.000000,0.000000,0.250000,0,0);}
.m3_c00334{transform:matrix(0.241844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241844,0.000000,0.000000,0.250000,0,0);}
.mc_c00334{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m2_c00334{transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244656,0.000000,0.000000,0.250000,0,0);}
.m6_c00334{transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);}
.m8_c00334{transform:matrix(0.245229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245229,0.000000,0.000000,0.250000,0,0);}
.md_c00334{transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);}
.m0_c00334{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.me_c00334{transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);}
.m4_c00334{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m5_c00334{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m1_c00334{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);}
.ma_c00334{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls66_c00334{letter-spacing:-2.520000px;}
.ls44_c00334{letter-spacing:-2.457000px;}
.ls85_c00334{letter-spacing:-2.373000px;}
.ls25_c00334{letter-spacing:-2.352000px;}
.ls6b_c00334{letter-spacing:-2.253420px;}
.ls86_c00334{letter-spacing:-2.205000px;}
.ls26_c00334{letter-spacing:-2.204280px;}
.ls2b_c00334{letter-spacing:-2.176380px;}
.ls6a_c00334{letter-spacing:-2.120040px;}
.ls3b_c00334{letter-spacing:-1.951560px;}
.ls73_c00334{letter-spacing:-1.916460px;}
.ls62_c00334{letter-spacing:-1.839240px;}
.ls63_c00334{letter-spacing:-1.642680px;}
.ls49_c00334{letter-spacing:-1.635660px;}
.ls40_c00334{letter-spacing:-1.621620px;}
.ls65_c00334{letter-spacing:-1.516320px;}
.ls30_c00334{letter-spacing:-1.509300px;}
.ls7e_c00334{letter-spacing:-1.453140px;}
.ls64_c00334{letter-spacing:-1.425060px;}
.ls37_c00334{letter-spacing:-1.368900px;}
.ls48_c00334{letter-spacing:-1.277640px;}
.ls28_c00334{letter-spacing:-1.249560px;}
.ls5e_c00334{letter-spacing:-1.214460px;}
.ls67_c00334{letter-spacing:-1.173600px;}
.ls5d_c00334{letter-spacing:-1.144260px;}
.ls6f_c00334{letter-spacing:-1.067040px;}
.ls83_c00334{letter-spacing:-1.038960px;}
.ls7b_c00334{letter-spacing:-1.010880px;}
.ls61_c00334{letter-spacing:-1.003860px;}
.ls69_c00334{letter-spacing:-0.996840px;}
.ls2a_c00334{letter-spacing:-0.989820px;}
.ls76_c00334{letter-spacing:-0.982800px;}
.ls51_c00334{letter-spacing:-0.926640px;}
.ls75_c00334{letter-spacing:-0.877500px;}
.ls5b_c00334{letter-spacing:-0.856440px;}
.ls3a_c00334{letter-spacing:-0.849420px;}
.ls42_c00334{letter-spacing:-0.821340px;}
.ls52_c00334{letter-spacing:-0.814320px;}
.ls3c_c00334{letter-spacing:-0.772200px;}
.ls4c_c00334{letter-spacing:-0.765180px;}
.ls43_c00334{letter-spacing:-0.751140px;}
.ls81_c00334{letter-spacing:-0.714021px;}
.ls7a_c00334{letter-spacing:-0.709020px;}
.ls82_c00334{letter-spacing:-0.702000px;}
.ls4a_c00334{letter-spacing:-0.694980px;}
.ls77_c00334{letter-spacing:-0.687960px;}
.ls58_c00334{letter-spacing:-0.673920px;}
.ls80_c00334{letter-spacing:-0.645840px;}
.ls2c_c00334{letter-spacing:-0.596700px;}
.ls60_c00334{letter-spacing:-0.589680px;}
.ls72_c00334{letter-spacing:-0.582660px;}
.ls71_c00334{letter-spacing:-0.568620px;}
.ls84_c00334{letter-spacing:-0.561600px;}
.ls6c_c00334{letter-spacing:-0.547560px;}
.ls34_c00334{letter-spacing:-0.526500px;}
.ls4b_c00334{letter-spacing:-0.519480px;}
.ls35_c00334{letter-spacing:-0.512460px;}
.ls27_c00334{letter-spacing:-0.491400px;}
.ls41_c00334{letter-spacing:-0.484380px;}
.ls54_c00334{letter-spacing:-0.470340px;}
.ls3e_c00334{letter-spacing:-0.463320px;}
.ls68_c00334{letter-spacing:-0.442260px;}
.ls31_c00334{letter-spacing:-0.407160px;}
.ls5a_c00334{letter-spacing:-0.386100px;}
.ls50_c00334{letter-spacing:-0.365040px;}
.ls2d_c00334{letter-spacing:-0.351000px;}
.ls29_c00334{letter-spacing:-0.336960px;}
.ls7d_c00334{letter-spacing:-0.315900px;}
.ls6e_c00334{letter-spacing:-0.308880px;}
.ls59_c00334{letter-spacing:-0.303600px;}
.ls46_c00334{letter-spacing:-0.280800px;}
.ls7c_c00334{letter-spacing:-0.266760px;}
.ls53_c00334{letter-spacing:-0.259740px;}
.ls6d_c00334{letter-spacing:-0.245700px;}
.ls4f_c00334{letter-spacing:-0.238680px;}
.ls3f_c00334{letter-spacing:-0.231660px;}
.ls32_c00334{letter-spacing:-0.210600px;}
.ls79_c00334{letter-spacing:-0.203580px;}
.ls56_c00334{letter-spacing:-0.196560px;}
.ls74_c00334{letter-spacing:-0.182520px;}
.ls47_c00334{letter-spacing:-0.154440px;}
.ls4d_c00334{letter-spacing:-0.147420px;}
.ls57_c00334{letter-spacing:-0.140400px;}
.ls39_c00334{letter-spacing:-0.126360px;}
.ls36_c00334{letter-spacing:-0.119340px;}
.ls2e_c00334{letter-spacing:-0.112320px;}
.ls78_c00334{letter-spacing:-0.070200px;}
.ls7f_c00334{letter-spacing:-0.063180px;}
.ls70_c00334{letter-spacing:-0.056160px;}
.ls45_c00334{letter-spacing:-0.049140px;}
.ls5c_c00334{letter-spacing:-0.042120px;}
.ls33_c00334{letter-spacing:-0.028080px;}
.ls5f_c00334{letter-spacing:-0.021060px;}
.ls2f_c00334{letter-spacing:-0.014040px;}
.ls3d_c00334{letter-spacing:-0.007020px;}
.ls38_c00334{letter-spacing:0.000000px;}
.ls2_c00334{letter-spacing:0.014040px;}
.lsc_c00334{letter-spacing:0.021060px;}
.ls1_c00334{letter-spacing:0.063180px;}
.ls1c_c00334{letter-spacing:0.070200px;}
.ls21_c00334{letter-spacing:0.105300px;}
.ls1d_c00334{letter-spacing:0.133380px;}
.ls11_c00334{letter-spacing:0.161460px;}
.ls9_c00334{letter-spacing:0.196560px;}
.ls16_c00334{letter-spacing:0.224640px;}
.ls1a_c00334{letter-spacing:0.238680px;}
.ls7_c00334{letter-spacing:0.245700px;}
.ls1f_c00334{letter-spacing:0.259740px;}
.ls1b_c00334{letter-spacing:0.273780px;}
.lsd_c00334{letter-spacing:0.287820px;}
.ls24_c00334{letter-spacing:0.301860px;}
.ls4e_c00334{letter-spacing:0.365040px;}
.ls12_c00334{letter-spacing:0.372060px;}
.ls23_c00334{letter-spacing:0.397800px;}
.ls6_c00334{letter-spacing:0.414180px;}
.lsa_c00334{letter-spacing:0.442260px;}
.ls5_c00334{letter-spacing:0.456300px;}
.ls55_c00334{letter-spacing:0.484380px;}
.ls14_c00334{letter-spacing:0.505440px;}
.ls3_c00334{letter-spacing:0.582660px;}
.ls18_c00334{letter-spacing:0.732240px;}
.ls20_c00334{letter-spacing:0.759360px;}
.ls10_c00334{letter-spacing:0.766140px;}
.ls22_c00334{letter-spacing:0.781343px;}
.lse_c00334{letter-spacing:0.786240px;}
.ls0_c00334{letter-spacing:0.935640px;}
.lsf_c00334{letter-spacing:0.942420px;}
.ls17_c00334{letter-spacing:1.017000px;}
.lsb_c00334{letter-spacing:1.057680px;}
.ls19_c00334{letter-spacing:1.139040px;}
.ls1e_c00334{letter-spacing:1.240740px;}
.ls4_c00334{letter-spacing:1.425060px;}
.ls13_c00334{letter-spacing:1.769040px;}
.ls15_c00334{letter-spacing:1.952700px;}
.ls8_c00334{letter-spacing:2.183220px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{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__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00334{word-spacing:0.000000px;}
.ws4_c00334{word-spacing:2.497440px;}
.ws0_c00334{word-spacing:5.369400px;}
.ws2_c00334{word-spacing:10.458060px;}
.ws3_c00334{word-spacing:20.009640px;}
.ws1_c00334{word-spacing:22.680600px;}
.ws5_c00334{word-spacing:25.972200px;}
._13_c00334{margin-left:-4.416000px;}
._12_c00334{margin-left:-3.004560px;}
._0_c00334{width:1.740960px;}
._1_c00334{width:3.425760px;}
._11_c00334{width:4.570140px;}
._14_c00334{width:5.901300px;}
._3_c00334{width:6.949800px;}
._2_c00334{width:9.140040px;}
._4_c00334{width:10.586160px;}
._9_c00334{width:11.702340px;}
._b_c00334{width:13.689000px;}
._a_c00334{width:14.999460px;}
._10_c00334{width:19.431360px;}
._c_c00334{width:21.343080px;}
._8_c00334{width:22.562280px;}
._7_c00334{width:24.991200px;}
._6_c00334{width:26.851500px;}
._d_c00334{width:28.115100px;}
._5_c00334{width:29.217240px;}
._e_c00334{width:31.077540px;}
._f_c00334{width:46.853760px;}
._15_c00334{width:122.087287px;}
._16_c00334{width:583.204800px;}
.fc0_c00334{color:transparent;}
.fs8_c00334{font-size:15.600000px;}
.fs7_c00334{font-size:20.400600px;}
.fs6_c00334{font-size:51.840000px;}
.fs5_c00334{font-size:53.280000px;}
.fs9_c00334{font-size:63.000000px;}
.fs0_c00334{font-size:67.200000px;}
.fs1_c00334{font-size:67.800000px;}
.fs3_c00334{font-size:69.000000px;}
.fs2_c00334{font-size:70.200000px;}
.fs4_c00334{font-size:72.000000px;}
.y0_c00334{bottom:0.000000px;}
.y20_c00334{bottom:70.200000px;}
.y1f_c00334{bottom:158.040000px;}
.y1e_c00334{bottom:189.000000px;}
.y1d_c00334{bottom:214.935000px;}
.y1b_c00334{bottom:219.968250px;}
.y1c_c00334{bottom:219.975000px;}
.y1a_c00334{bottom:251.295000px;}
.y19_c00334{bottom:313.200000px;}
.y18_c00334{bottom:313.200150px;}
.y17_c00334{bottom:345.615000px;}
.y16_c00334{bottom:407.890800px;}
.y14_c00334{bottom:439.199250px;}
.y15_c00334{bottom:439.200000px;}
.y13_c00334{bottom:470.175000px;}
.y12_c00334{bottom:531.720000px;}
.y11_c00334{bottom:562.695000px;}
.yf_c00334{bottom:624.234600px;}
.y10_c00334{bottom:624.240000px;}
.ye_c00334{bottom:685.800000px;}
.yd_c00334{bottom:716.400000px;}
.yc_c00334{bottom:778.339350px;}
.yb_c00334{bottom:809.280000px;}
.ya_c00334{bottom:870.852150px;}
.y9_c00334{bottom:901.441800px;}
.y8_c00334{bottom:932.400000px;}
.y7_c00334{bottom:993.600000px;}
.y6_c00334{bottom:993.600600px;}
.y5_c00334{bottom:1024.207800px;}
.y4_c00334{bottom:1054.809600px;}
.y3_c00334{bottom:1085.399250px;}
.y2_c00334{bottom:1116.375000px;}
.y1_c00334{bottom:1191.975000px;}
.h9_c00334{height:20.022073px;}
.h8_c00334{height:34.525440px;}
.h7_c00334{height:35.484480px;}
.ha_c00334{height:61.831055px;}
.h2_c00334{height:65.953125px;}
.h4_c00334{height:68.897461px;}
.h5_c00334{height:68.919061px;}
.h6_c00334{height:70.628906px;}
.h3_c00334{height:70.713281px;}
.h1_c00334{height:1263.000000px;}
.h0_c00334{height:1263.240000px;}
.w1_c00334{width:892.500000px;}
.w0_c00334{width:892.800000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:124.845000px;}
.x2_c00334{left:177.975000px;}
.x6_c00334{left:180.615000px;}
.x7_c00334{left:248.205000px;}
.x10_c00334{left:259.830000px;}
.x19_c00334{left:268.845000px;}
.x8_c00334{left:276.045000px;}
.x1a_c00334{left:291.615000px;}
.x20_c00334{left:294.390000px;}
.x3_c00334{left:305.460000px;}
.x4_c00334{left:309.615000px;}
.x1d_c00334{left:324.975000px;}
.x22_c00334{left:335.715000px;}
.x9_c00334{left:350.085000px;}
.x1e_c00334{left:351.690000px;}
.x23_c00334{left:356.730000px;}
.xa_c00334{left:377.895000px;}
.x1b_c00334{left:383.595000px;}
.x21_c00334{left:399.885000px;}
.x1c_c00334{left:409.845000px;}
.x24_c00334{left:425.790000px;}
.x16_c00334{left:448.575000px;}
.x17_c00334{left:480.450000px;}
.x1f_c00334{left:520.755000px;}
.x18_c00334{left:528.090000px;}
.xd_c00334{left:569.985000px;}
.x5_c00334{left:585.855000px;}
.xe_c00334{left:595.245000px;}
.x11_c00334{left:598.845000px;}
.x12_c00334{left:616.125000px;}
.x14_c00334{left:621.360000px;}
.xf_c00334{left:624.360000px;}
.x13_c00334{left:645.225000px;}
.xb_c00334{left:650.685000px;}
.x15_c00334{left:658.635000px;}
.xc_c00334{left:679.125000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls66_c00334{letter-spacing:-2.240000pt;}
.ls44_c00334{letter-spacing:-2.184000pt;}
.ls85_c00334{letter-spacing:-2.109333pt;}
.ls25_c00334{letter-spacing:-2.090667pt;}
.ls6b_c00334{letter-spacing:-2.003040pt;}
.ls86_c00334{letter-spacing:-1.960000pt;}
.ls26_c00334{letter-spacing:-1.959360pt;}
.ls2b_c00334{letter-spacing:-1.934560pt;}
.ls6a_c00334{letter-spacing:-1.884480pt;}
.ls3b_c00334{letter-spacing:-1.734720pt;}
.ls73_c00334{letter-spacing:-1.703520pt;}
.ls62_c00334{letter-spacing:-1.634880pt;}
.ls63_c00334{letter-spacing:-1.460160pt;}
.ls49_c00334{letter-spacing:-1.453920pt;}
.ls40_c00334{letter-spacing:-1.441440pt;}
.ls65_c00334{letter-spacing:-1.347840pt;}
.ls30_c00334{letter-spacing:-1.341600pt;}
.ls7e_c00334{letter-spacing:-1.291680pt;}
.ls64_c00334{letter-spacing:-1.266720pt;}
.ls37_c00334{letter-spacing:-1.216800pt;}
.ls48_c00334{letter-spacing:-1.135680pt;}
.ls28_c00334{letter-spacing:-1.110720pt;}
.ls5e_c00334{letter-spacing:-1.079520pt;}
.ls67_c00334{letter-spacing:-1.043200pt;}
.ls5d_c00334{letter-spacing:-1.017120pt;}
.ls6f_c00334{letter-spacing:-0.948480pt;}
.ls83_c00334{letter-spacing:-0.923520pt;}
.ls7b_c00334{letter-spacing:-0.898560pt;}
.ls61_c00334{letter-spacing:-0.892320pt;}
.ls69_c00334{letter-spacing:-0.886080pt;}
.ls2a_c00334{letter-spacing:-0.879840pt;}
.ls76_c00334{letter-spacing:-0.873600pt;}
.ls51_c00334{letter-spacing:-0.823680pt;}
.ls75_c00334{letter-spacing:-0.780000pt;}
.ls5b_c00334{letter-spacing:-0.761280pt;}
.ls3a_c00334{letter-spacing:-0.755040pt;}
.ls42_c00334{letter-spacing:-0.730080pt;}
.ls52_c00334{letter-spacing:-0.723840pt;}
.ls3c_c00334{letter-spacing:-0.686400pt;}
.ls4c_c00334{letter-spacing:-0.680160pt;}
.ls43_c00334{letter-spacing:-0.667680pt;}
.ls81_c00334{letter-spacing:-0.634685pt;}
.ls7a_c00334{letter-spacing:-0.630240pt;}
.ls82_c00334{letter-spacing:-0.624000pt;}
.ls4a_c00334{letter-spacing:-0.617760pt;}
.ls77_c00334{letter-spacing:-0.611520pt;}
.ls58_c00334{letter-spacing:-0.599040pt;}
.ls80_c00334{letter-spacing:-0.574080pt;}
.ls2c_c00334{letter-spacing:-0.530400pt;}
.ls60_c00334{letter-spacing:-0.524160pt;}
.ls72_c00334{letter-spacing:-0.517920pt;}
.ls71_c00334{letter-spacing:-0.505440pt;}
.ls84_c00334{letter-spacing:-0.499200pt;}
.ls6c_c00334{letter-spacing:-0.486720pt;}
.ls34_c00334{letter-spacing:-0.468000pt;}
.ls4b_c00334{letter-spacing:-0.461760pt;}
.ls35_c00334{letter-spacing:-0.455520pt;}
.ls27_c00334{letter-spacing:-0.436800pt;}
.ls41_c00334{letter-spacing:-0.430560pt;}
.ls54_c00334{letter-spacing:-0.418080pt;}
.ls3e_c00334{letter-spacing:-0.411840pt;}
.ls68_c00334{letter-spacing:-0.393120pt;}
.ls31_c00334{letter-spacing:-0.361920pt;}
.ls5a_c00334{letter-spacing:-0.343200pt;}
.ls50_c00334{letter-spacing:-0.324480pt;}
.ls2d_c00334{letter-spacing:-0.312000pt;}
.ls29_c00334{letter-spacing:-0.299520pt;}
.ls7d_c00334{letter-spacing:-0.280800pt;}
.ls6e_c00334{letter-spacing:-0.274560pt;}
.ls59_c00334{letter-spacing:-0.269867pt;}
.ls46_c00334{letter-spacing:-0.249600pt;}
.ls7c_c00334{letter-spacing:-0.237120pt;}
.ls53_c00334{letter-spacing:-0.230880pt;}
.ls6d_c00334{letter-spacing:-0.218400pt;}
.ls4f_c00334{letter-spacing:-0.212160pt;}
.ls3f_c00334{letter-spacing:-0.205920pt;}
.ls32_c00334{letter-spacing:-0.187200pt;}
.ls79_c00334{letter-spacing:-0.180960pt;}
.ls56_c00334{letter-spacing:-0.174720pt;}
.ls74_c00334{letter-spacing:-0.162240pt;}
.ls47_c00334{letter-spacing:-0.137280pt;}
.ls4d_c00334{letter-spacing:-0.131040pt;}
.ls57_c00334{letter-spacing:-0.124800pt;}
.ls39_c00334{letter-spacing:-0.112320pt;}
.ls36_c00334{letter-spacing:-0.106080pt;}
.ls2e_c00334{letter-spacing:-0.099840pt;}
.ls78_c00334{letter-spacing:-0.062400pt;}
.ls7f_c00334{letter-spacing:-0.056160pt;}
.ls70_c00334{letter-spacing:-0.049920pt;}
.ls45_c00334{letter-spacing:-0.043680pt;}
.ls5c_c00334{letter-spacing:-0.037440pt;}
.ls33_c00334{letter-spacing:-0.024960pt;}
.ls5f_c00334{letter-spacing:-0.018720pt;}
.ls2f_c00334{letter-spacing:-0.012480pt;}
.ls3d_c00334{letter-spacing:-0.006240pt;}
.ls38_c00334{letter-spacing:0.000000pt;}
.ls2_c00334{letter-spacing:0.012480pt;}
.lsc_c00334{letter-spacing:0.018720pt;}
.ls1_c00334{letter-spacing:0.056160pt;}
.ls1c_c00334{letter-spacing:0.062400pt;}
.ls21_c00334{letter-spacing:0.093600pt;}
.ls1d_c00334{letter-spacing:0.118560pt;}
.ls11_c00334{letter-spacing:0.143520pt;}
.ls9_c00334{letter-spacing:0.174720pt;}
.ls16_c00334{letter-spacing:0.199680pt;}
.ls1a_c00334{letter-spacing:0.212160pt;}
.ls7_c00334{letter-spacing:0.218400pt;}
.ls1f_c00334{letter-spacing:0.230880pt;}
.ls1b_c00334{letter-spacing:0.243360pt;}
.lsd_c00334{letter-spacing:0.255840pt;}
.ls24_c00334{letter-spacing:0.268320pt;}
.ls4e_c00334{letter-spacing:0.324480pt;}
.ls12_c00334{letter-spacing:0.330720pt;}
.ls23_c00334{letter-spacing:0.353600pt;}
.ls6_c00334{letter-spacing:0.368160pt;}
.lsa_c00334{letter-spacing:0.393120pt;}
.ls5_c00334{letter-spacing:0.405600pt;}
.ls55_c00334{letter-spacing:0.430560pt;}
.ls14_c00334{letter-spacing:0.449280pt;}
.ls3_c00334{letter-spacing:0.517920pt;}
.ls18_c00334{letter-spacing:0.650880pt;}
.ls20_c00334{letter-spacing:0.674987pt;}
.ls10_c00334{letter-spacing:0.681013pt;}
.ls22_c00334{letter-spacing:0.694527pt;}
.lse_c00334{letter-spacing:0.698880pt;}
.ls0_c00334{letter-spacing:0.831680pt;}
.lsf_c00334{letter-spacing:0.837707pt;}
.ls17_c00334{letter-spacing:0.904000pt;}
.lsb_c00334{letter-spacing:0.940160pt;}
.ls19_c00334{letter-spacing:1.012480pt;}
.ls1e_c00334{letter-spacing:1.102880pt;}
.ls4_c00334{letter-spacing:1.266720pt;}
.ls13_c00334{letter-spacing:1.572480pt;}
.ls15_c00334{letter-spacing:1.735733pt;}
.ls8_c00334{letter-spacing:1.940640pt;}
.ws6_c00334{word-spacing:0.000000pt;}
.ws4_c00334{word-spacing:2.219947pt;}
.ws0_c00334{word-spacing:4.772800pt;}
.ws2_c00334{word-spacing:9.296053pt;}
.ws3_c00334{word-spacing:17.786347pt;}
.ws1_c00334{word-spacing:20.160533pt;}
.ws5_c00334{word-spacing:23.086400pt;}
._13_c00334{margin-left:-3.925333pt;}
._12_c00334{margin-left:-2.670720pt;}
._0_c00334{width:1.547520pt;}
._1_c00334{width:3.045120pt;}
._11_c00334{width:4.062347pt;}
._14_c00334{width:5.245600pt;}
._3_c00334{width:6.177600pt;}
._2_c00334{width:8.124480pt;}
._4_c00334{width:9.409920pt;}
._9_c00334{width:10.402080pt;}
._b_c00334{width:12.168000pt;}
._a_c00334{width:13.332853pt;}
._10_c00334{width:17.272320pt;}
._c_c00334{width:18.971627pt;}
._8_c00334{width:20.055360pt;}
._7_c00334{width:22.214400pt;}
._6_c00334{width:23.868000pt;}
._d_c00334{width:24.991200pt;}
._5_c00334{width:25.970880pt;}
._e_c00334{width:27.624480pt;}
._f_c00334{width:41.647787pt;}
._15_c00334{width:108.522033pt;}
._16_c00334{width:518.404267pt;}
.fs8_c00334{font-size:13.866667pt;}
.fs7_c00334{font-size:18.133867pt;}
.fs6_c00334{font-size:46.080000pt;}
.fs5_c00334{font-size:47.360000pt;}
.fs9_c00334{font-size:56.000000pt;}
.fs0_c00334{font-size:59.733333pt;}
.fs1_c00334{font-size:60.266667pt;}
.fs3_c00334{font-size:61.333333pt;}
.fs2_c00334{font-size:62.400000pt;}
.fs4_c00334{font-size:64.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y20_c00334{bottom:62.400000pt;}
.y1f_c00334{bottom:140.480000pt;}
.y1e_c00334{bottom:168.000000pt;}
.y1d_c00334{bottom:191.053333pt;}
.y1b_c00334{bottom:195.527333pt;}
.y1c_c00334{bottom:195.533333pt;}
.y1a_c00334{bottom:223.373333pt;}
.y19_c00334{bottom:278.400000pt;}
.y18_c00334{bottom:278.400133pt;}
.y17_c00334{bottom:307.213333pt;}
.y16_c00334{bottom:362.569600pt;}
.y14_c00334{bottom:390.399333pt;}
.y15_c00334{bottom:390.400000pt;}
.y13_c00334{bottom:417.933333pt;}
.y12_c00334{bottom:472.640000pt;}
.y11_c00334{bottom:500.173333pt;}
.yf_c00334{bottom:554.875200pt;}
.y10_c00334{bottom:554.880000pt;}
.ye_c00334{bottom:609.600000pt;}
.yd_c00334{bottom:636.800000pt;}
.yc_c00334{bottom:691.857200pt;}
.yb_c00334{bottom:719.360000pt;}
.ya_c00334{bottom:774.090800pt;}
.y9_c00334{bottom:801.281600pt;}
.y8_c00334{bottom:828.800000pt;}
.y7_c00334{bottom:883.200000pt;}
.y6_c00334{bottom:883.200533pt;}
.y5_c00334{bottom:910.406933pt;}
.y4_c00334{bottom:937.608533pt;}
.y3_c00334{bottom:964.799333pt;}
.y2_c00334{bottom:992.333333pt;}
.y1_c00334{bottom:1059.533333pt;}
.h9_c00334{height:17.797398pt;}
.h8_c00334{height:30.689280pt;}
.h7_c00334{height:31.541760pt;}
.ha_c00334{height:54.960938pt;}
.h2_c00334{height:58.625000pt;}
.h4_c00334{height:61.242187pt;}
.h5_c00334{height:61.261388pt;}
.h6_c00334{height:62.781250pt;}
.h3_c00334{height:62.856250pt;}
.h1_c00334{height:1122.666667pt;}
.h0_c00334{height:1122.880000pt;}
.w1_c00334{width:793.333333pt;}
.w0_c00334{width:793.600000pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:110.973333pt;}
.x2_c00334{left:158.200000pt;}
.x6_c00334{left:160.546667pt;}
.x7_c00334{left:220.626667pt;}
.x10_c00334{left:230.960000pt;}
.x19_c00334{left:238.973333pt;}
.x8_c00334{left:245.373333pt;}
.x1a_c00334{left:259.213333pt;}
.x20_c00334{left:261.680000pt;}
.x3_c00334{left:271.520000pt;}
.x4_c00334{left:275.213333pt;}
.x1d_c00334{left:288.866667pt;}
.x22_c00334{left:298.413333pt;}
.x9_c00334{left:311.186667pt;}
.x1e_c00334{left:312.613333pt;}
.x23_c00334{left:317.093333pt;}
.xa_c00334{left:335.906667pt;}
.x1b_c00334{left:340.973333pt;}
.x21_c00334{left:355.453333pt;}
.x1c_c00334{left:364.306667pt;}
.x24_c00334{left:378.480000pt;}
.x16_c00334{left:398.733333pt;}
.x17_c00334{left:427.066667pt;}
.x1f_c00334{left:462.893333pt;}
.x18_c00334{left:469.413333pt;}
.xd_c00334{left:506.653333pt;}
.x5_c00334{left:520.760000pt;}
.xe_c00334{left:529.106667pt;}
.x11_c00334{left:532.306667pt;}
.x12_c00334{left:547.666667pt;}
.x14_c00334{left:552.320000pt;}
.xf_c00334{left:554.986667pt;}
.x13_c00334{left:573.533333pt;}
.xb_c00334{left:578.386667pt;}
.x15_c00334{left:585.453333pt;}
.xc_c00334{left:603.666667pt;}
}





/* 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_c00335 {
    display:none;
  }
  .loading-indicator_c00335.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00335 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_c00335 { 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_c00335" -> "#page-container .classname_c00335")
 */
.pf_c00335 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00335 { /* 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_c00335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00335 { /* 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_c00335 { /* 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_c00335 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00335 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00335 {overflow:visible;}
  }
}
.c_c00335 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00335 { /* 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_c00335:after { /* webkit #35443 */
  content: '';
}
.t_c00335:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00335 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 */
}
.__c00335 { /* 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_c00335 { /* info for Javascript */
  display:none;
}
.l_c00335 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00335 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00335 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00335: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_c00335 {
    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_c00335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00335.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_c00335 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00335;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.311035;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_c00335;src:url('chunks/assets/font_c4d6496a0ab3e090eef188d2.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.284180;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_c00335;src:url('chunks/assets/font_a6a95d2ba97df69dc22dd06c.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:1.284668;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_c00335;src:url('chunks/assets/font_ce84b7fd27b30e33e7ea5236.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:1.284180;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_c00335;src:url('chunks/assets/font_12fa194d70208e56e41e19df.woff2')format("woff");}.ff5_c00335{font-family:ff5_c00335;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:ff6_c00335;src:url('chunks/assets/font_066385a6289b87e23dd029d3.woff2')format("woff");}.ff6_c00335{font-family:ff6_c00335;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;}
.m9_c00335{transform:matrix(0.228269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228269,0.000000,0.000000,0.250000,0,0);}
.mc_c00335{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.ma_c00335{transform:matrix(0.236759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236759,0.000000,0.000000,0.250000,0,0);}
.md_c00335{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m0_c00335{transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);}
.mb_c00335{transform:matrix(0.238989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238989,0.000000,0.000000,0.250000,0,0);}
.m6_c00335{transform:matrix(0.239814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239814,0.000000,0.000000,0.250000,0,0);}
.m7_c00335{transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);}
.m8_c00335{transform:matrix(0.245826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245826,0.000000,0.000000,0.250000,0,0);}
.me_c00335{transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);}
.m4_c00335{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m5_c00335{transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);}
.m3_c00335{transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);}
.m2_c00335{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m1_c00335{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);}
.v0_c00335{vertical-align:0.000000px;}
.ls2e_c00335{letter-spacing:-2.478000px;}
.ls85_c00335{letter-spacing:-2.373000px;}
.ls53_c00335{letter-spacing:-2.336400px;}
.ls2c_c00335{letter-spacing:-2.331000px;}
.ls79_c00335{letter-spacing:-2.310000px;}
.ls42_c00335{letter-spacing:-2.308080px;}
.ls86_c00335{letter-spacing:-2.205000px;}
.ls54_c00335{letter-spacing:-2.124000px;}
.ls34_c00335{letter-spacing:-2.060280px;}
.ls58_c00335{letter-spacing:-1.989480px;}
.ls5c_c00335{letter-spacing:-1.904520px;}
.ls4d_c00335{letter-spacing:-1.692120px;}
.ls4f_c00335{letter-spacing:-1.621320px;}
.ls57_c00335{letter-spacing:-1.607160px;}
.ls33_c00335{letter-spacing:-1.578840px;}
.ls4e_c00335{letter-spacing:-1.508040px;}
.ls52_c00335{letter-spacing:-1.479720px;}
.ls84_c00335{letter-spacing:-1.345200px;}
.ls50_c00335{letter-spacing:-1.338120px;}
.ls7c_c00335{letter-spacing:-1.323960px;}
.ls40_c00335{letter-spacing:-1.281480px;}
.ls41_c00335{letter-spacing:-1.231920px;}
.ls81_c00335{letter-spacing:-1.139880px;}
.ls3b_c00335{letter-spacing:-1.118640px;}
.ls60_c00335{letter-spacing:-1.111560px;}
.ls5a_c00335{letter-spacing:-1.069080px;}
.ls6c_c00335{letter-spacing:-1.040760px;}
.ls4b_c00335{letter-spacing:-1.012440px;}
.ls83_c00335{letter-spacing:-0.969960px;}
.ls3d_c00335{letter-spacing:-0.955800px;}
.ls62_c00335{letter-spacing:-0.934560px;}
.ls55_c00335{letter-spacing:-0.913320px;}
.ls46_c00335{letter-spacing:-0.892080px;}
.ls4c_c00335{letter-spacing:-0.885000px;}
.ls49_c00335{letter-spacing:-0.863760px;}
.ls7a_c00335{letter-spacing:-0.828360px;}
.ls3a_c00335{letter-spacing:-0.800040px;}
.ls7f_c00335{letter-spacing:-0.743400px;}
.ls3f_c00335{letter-spacing:-0.708000px;}
.ls4a_c00335{letter-spacing:-0.700920px;}
.ls71_c00335{letter-spacing:-0.672600px;}
.ls56_c00335{letter-spacing:-0.623040px;}
.ls48_c00335{letter-spacing:-0.615960px;}
.ls67_c00335{letter-spacing:-0.608880px;}
.ls72_c00335{letter-spacing:-0.601800px;}
.ls32_c00335{letter-spacing:-0.594720px;}
.ls74_c00335{letter-spacing:-0.580560px;}
.ls65_c00335{letter-spacing:-0.573480px;}
.ls7e_c00335{letter-spacing:-0.566400px;}
.ls31_c00335{letter-spacing:-0.552240px;}
.ls45_c00335{letter-spacing:-0.531000px;}
.ls39_c00335{letter-spacing:-0.523920px;}
.ls78_c00335{letter-spacing:-0.509760px;}
.ls5b_c00335{letter-spacing:-0.502680px;}
.ls5e_c00335{letter-spacing:-0.481440px;}
.ls2f_c00335{letter-spacing:-0.474360px;}
.ls51_c00335{letter-spacing:-0.453120px;}
.ls73_c00335{letter-spacing:-0.438960px;}
.ls6f_c00335{letter-spacing:-0.424800px;}
.ls36_c00335{letter-spacing:-0.417720px;}
.ls59_c00335{letter-spacing:-0.403560px;}
.ls75_c00335{letter-spacing:-0.396480px;}
.ls68_c00335{letter-spacing:-0.389400px;}
.ls44_c00335{letter-spacing:-0.382320px;}
.ls70_c00335{letter-spacing:-0.368160px;}
.ls7b_c00335{letter-spacing:-0.354000px;}
.ls6b_c00335{letter-spacing:-0.346920px;}
.ls43_c00335{letter-spacing:-0.332760px;}
.ls82_c00335{letter-spacing:-0.318600px;}
.ls5d_c00335{letter-spacing:-0.311520px;}
.ls3c_c00335{letter-spacing:-0.290280px;}
.ls76_c00335{letter-spacing:-0.276120px;}
.ls63_c00335{letter-spacing:-0.254880px;}
.ls69_c00335{letter-spacing:-0.219480px;}
.ls6e_c00335{letter-spacing:-0.198240px;}
.ls64_c00335{letter-spacing:-0.162840px;}
.ls6a_c00335{letter-spacing:-0.155760px;}
.ls61_c00335{letter-spacing:-0.141600px;}
.ls5f_c00335{letter-spacing:-0.127440px;}
.ls6d_c00335{letter-spacing:-0.120360px;}
.ls38_c00335{letter-spacing:-0.099120px;}
.ls37_c00335{letter-spacing:-0.092040px;}
.ls80_c00335{letter-spacing:-0.084960px;}
.ls35_c00335{letter-spacing:-0.077880px;}
.ls66_c00335{letter-spacing:-0.042480px;}
.ls47_c00335{letter-spacing:-0.035400px;}
.ls7d_c00335{letter-spacing:-0.028320px;}
.ls3e_c00335{letter-spacing:-0.021240px;}
.ls30_c00335{letter-spacing:0.000000px;}
.ls4_c00335{letter-spacing:0.006900px;}
.ls1_c00335{letter-spacing:0.007080px;}
.ls1a_c00335{letter-spacing:0.028320px;}
.ls26_c00335{letter-spacing:0.042480px;}
.ls1c_c00335{letter-spacing:0.049560px;}
.ls1f_c00335{letter-spacing:0.056640px;}
.ls77_c00335{letter-spacing:0.070800px;}
.ls19_c00335{letter-spacing:0.077880px;}
.ls8_c00335{letter-spacing:0.092040px;}
.ls18_c00335{letter-spacing:0.113280px;}
.ls1b_c00335{letter-spacing:0.141600px;}
.ls2d_c00335{letter-spacing:0.148680px;}
.ls25_c00335{letter-spacing:0.177000px;}
.ls28_c00335{letter-spacing:0.184080px;}
.ls21_c00335{letter-spacing:0.191160px;}
.lse_c00335{letter-spacing:0.219480px;}
.ls6_c00335{letter-spacing:0.240720px;}
.ls2_c00335{letter-spacing:0.269040px;}
.ls2b_c00335{letter-spacing:0.283200px;}
.ls5_c00335{letter-spacing:0.351900px;}
.lsa_c00335{letter-spacing:0.417720px;}
.ls2a_c00335{letter-spacing:0.516840px;}
.ls27_c00335{letter-spacing:0.565800px;}
.ls22_c00335{letter-spacing:0.608880px;}
.ls0_c00335{letter-spacing:0.648600px;}
.ls13_c00335{letter-spacing:0.800400px;}
.ls20_c00335{letter-spacing:0.807120px;}
.lsf_c00335{letter-spacing:0.821280px;}
.ls16_c00335{letter-spacing:0.828000px;}
.ls11_c00335{letter-spacing:0.841800px;}
.ls29_c00335{letter-spacing:0.870840px;}
.ls23_c00335{letter-spacing:0.903900px;}
.ls3_c00335{letter-spacing:0.927480px;}
.ls15_c00335{letter-spacing:0.966000px;}
.ls14_c00335{letter-spacing:1.021200px;}
.ls12_c00335{letter-spacing:1.048800px;}
.lsb_c00335{letter-spacing:1.135440px;}
.ls17_c00335{letter-spacing:1.193700px;}
.lsc_c00335{letter-spacing:1.292760px;}
.lsd_c00335{letter-spacing:1.338120px;}
.ls9_c00335{letter-spacing:1.373520px;}
.ls1e_c00335{letter-spacing:1.500960px;}
.ls7_c00335{letter-spacing:1.522200px;}
.ls24_c00335{letter-spacing:1.685040px;}
.ls1d_c00335{letter-spacing:2.088600px;}
.ls10_c00335{letter-spacing:2.208000px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{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__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00335{word-spacing:0.000000px;}
.ws4_c00335{word-spacing:10.161000px;}
.ws1_c00335{word-spacing:13.655100px;}
.ws2_c00335{word-spacing:20.379000px;}
.ws0_c00335{word-spacing:23.190000px;}
.ws3_c00335{word-spacing:23.414400px;}
._10_c00335{margin-left:-8.303640px;}
._11_c00335{margin-left:-6.348000px;}
._4_c00335{margin-left:-3.440880px;}
._6_c00335{margin-left:-2.301000px;}
._17_c00335{margin-left:-1.132800px;}
._d_c00335{width:1.267320px;}
._5_c00335{width:3.780720px;}
._12_c00335{width:4.784280px;}
._f_c00335{width:5.805600px;}
._c_c00335{width:7.143720px;}
._a_c00335{width:8.177400px;}
._8_c00335{width:9.487200px;}
._13_c00335{width:10.804080px;}
._e_c00335{width:11.879040px;}
._b_c00335{width:12.963480px;}
._9_c00335{width:13.997160px;}
._7_c00335{width:15.897600px;}
._18_c00335{width:17.914560px;}
._14_c00335{width:19.618680px;}
._15_c00335{width:20.843520px;}
._1_c00335{width:22.089600px;}
._0_c00335{width:23.165760px;}
._16_c00335{width:24.292440px;}
._19_c00335{width:25.318080px;}
._2_c00335{width:27.059760px;}
._3_c00335{width:32.029920px;}
.fc0_c00335{color:transparent;}
.fs5_c00335{font-size:63.000000px;}
.fs4_c00335{font-size:66.000000px;}
.fs0_c00335{font-size:66.600000px;}
.fs6_c00335{font-size:67.800000px;}
.fs3_c00335{font-size:68.400000px;}
.fs1_c00335{font-size:69.000000px;}
.fs2_c00335{font-size:70.800000px;}
.y0_c00335{bottom:0.000000px;}
.y1d_c00335{bottom:71.295000px;}
.y1b_c00335{bottom:219.594300px;}
.y1c_c00335{bottom:219.600000px;}
.y19_c00335{bottom:251.288400px;}
.y1a_c00335{bottom:251.295000px;}
.y18_c00335{bottom:312.495000px;}
.y16_c00335{bottom:374.766600px;}
.y17_c00335{bottom:374.775000px;}
.y15_c00335{bottom:408.255000px;}
.y14_c00335{bottom:470.888100px;}
.y13_c00335{bottom:502.199400px;}
.y12_c00335{bottom:532.820400px;}
.y11_c00335{bottom:563.777700px;}
.y10_c00335{bottom:594.735000px;}
.yf_c00335{bottom:656.280000px;}
.ye_c00335{bottom:687.255000px;}
.yd_c00335{bottom:718.200000px;}
.yc_c00335{bottom:749.175000px;}
.yb_c00335{bottom:811.080000px;}
.ya_c00335{bottom:811.082700px;}
.y9_c00335{bottom:842.040000px;}
.y8_c00335{bottom:842.042700px;}
.y7_c00335{bottom:903.975000px;}
.y6_c00335{bottom:934.560000px;}
.y5_c00335{bottom:996.134400px;}
.y4_c00335{bottom:1026.720000px;}
.y3_c00335{bottom:1088.300400px;}
.y2_c00335{bottom:1119.240000px;}
.y1_c00335{bottom:1195.560000px;}
.h8_c00335{height:61.831055px;}
.h2_c00335{height:67.120312px;}
.h5_c00335{height:68.835938px;}
.h3_c00335{height:69.486328px;}
.h6_c00335{height:69.509128px;}
.h4_c00335{height:69.519928px;}
.h7_c00335{height:70.713281px;}
.h1_c00335{height:1263.000000px;}
.h0_c00335{height:1263.240000px;}
.w1_c00335{width:892.500000px;}
.w0_c00335{width:892.800000px;}
.x0_c00335{left:0.000000px;}
.x15_c00335{left:120.914700px;}
.x5_c00335{left:122.228100px;}
.x1_c00335{left:123.765000px;}
.xb_c00335{left:174.972300px;}
.x2_c00335{left:176.565000px;}
.x8_c00335{left:178.455000px;}
.x18_c00335{left:207.930000px;}
.x1c_c00335{left:234.525000px;}
.x19_c00335{left:240.225000px;}
.x1d_c00335{left:256.440000px;}
.x6_c00335{left:323.295000px;}
.x9_c00335{left:374.565000px;}
.x3_c00335{left:386.835000px;}
.xa_c00335{left:405.465000px;}
.x4_c00335{left:413.460000px;}
.x1e_c00335{left:425.430000px;}
.x1a_c00335{left:459.855000px;}
.x1b_c00335{left:480.810000px;}
.x7_c00335{left:519.585000px;}
.x10_c00335{left:537.225000px;}
.xe_c00335{left:540.165000px;}
.xc_c00335{left:547.365000px;}
.x11_c00335{left:562.845000px;}
.xf_c00335{left:568.230000px;}
.xd_c00335{left:575.400000px;}
.x13_c00335{left:585.525000px;}
.x12_c00335{left:590.685000px;}
.x16_c00335{left:602.835000px;}
.x14_c00335{left:613.230000px;}
.x17_c00335{left:641.340000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls2e_c00335{letter-spacing:-2.202667pt;}
.ls85_c00335{letter-spacing:-2.109333pt;}
.ls53_c00335{letter-spacing:-2.076800pt;}
.ls2c_c00335{letter-spacing:-2.072000pt;}
.ls79_c00335{letter-spacing:-2.053333pt;}
.ls42_c00335{letter-spacing:-2.051627pt;}
.ls86_c00335{letter-spacing:-1.960000pt;}
.ls54_c00335{letter-spacing:-1.888000pt;}
.ls34_c00335{letter-spacing:-1.831360pt;}
.ls58_c00335{letter-spacing:-1.768427pt;}
.ls5c_c00335{letter-spacing:-1.692907pt;}
.ls4d_c00335{letter-spacing:-1.504107pt;}
.ls4f_c00335{letter-spacing:-1.441173pt;}
.ls57_c00335{letter-spacing:-1.428587pt;}
.ls33_c00335{letter-spacing:-1.403413pt;}
.ls4e_c00335{letter-spacing:-1.340480pt;}
.ls52_c00335{letter-spacing:-1.315307pt;}
.ls84_c00335{letter-spacing:-1.195733pt;}
.ls50_c00335{letter-spacing:-1.189440pt;}
.ls7c_c00335{letter-spacing:-1.176853pt;}
.ls40_c00335{letter-spacing:-1.139093pt;}
.ls41_c00335{letter-spacing:-1.095040pt;}
.ls81_c00335{letter-spacing:-1.013227pt;}
.ls3b_c00335{letter-spacing:-0.994347pt;}
.ls60_c00335{letter-spacing:-0.988053pt;}
.ls5a_c00335{letter-spacing:-0.950293pt;}
.ls6c_c00335{letter-spacing:-0.925120pt;}
.ls4b_c00335{letter-spacing:-0.899947pt;}
.ls83_c00335{letter-spacing:-0.862187pt;}
.ls3d_c00335{letter-spacing:-0.849600pt;}
.ls62_c00335{letter-spacing:-0.830720pt;}
.ls55_c00335{letter-spacing:-0.811840pt;}
.ls46_c00335{letter-spacing:-0.792960pt;}
.ls4c_c00335{letter-spacing:-0.786667pt;}
.ls49_c00335{letter-spacing:-0.767787pt;}
.ls7a_c00335{letter-spacing:-0.736320pt;}
.ls3a_c00335{letter-spacing:-0.711147pt;}
.ls7f_c00335{letter-spacing:-0.660800pt;}
.ls3f_c00335{letter-spacing:-0.629333pt;}
.ls4a_c00335{letter-spacing:-0.623040pt;}
.ls71_c00335{letter-spacing:-0.597867pt;}
.ls56_c00335{letter-spacing:-0.553813pt;}
.ls48_c00335{letter-spacing:-0.547520pt;}
.ls67_c00335{letter-spacing:-0.541227pt;}
.ls72_c00335{letter-spacing:-0.534933pt;}
.ls32_c00335{letter-spacing:-0.528640pt;}
.ls74_c00335{letter-spacing:-0.516053pt;}
.ls65_c00335{letter-spacing:-0.509760pt;}
.ls7e_c00335{letter-spacing:-0.503467pt;}
.ls31_c00335{letter-spacing:-0.490880pt;}
.ls45_c00335{letter-spacing:-0.472000pt;}
.ls39_c00335{letter-spacing:-0.465707pt;}
.ls78_c00335{letter-spacing:-0.453120pt;}
.ls5b_c00335{letter-spacing:-0.446827pt;}
.ls5e_c00335{letter-spacing:-0.427947pt;}
.ls2f_c00335{letter-spacing:-0.421653pt;}
.ls51_c00335{letter-spacing:-0.402773pt;}
.ls73_c00335{letter-spacing:-0.390187pt;}
.ls6f_c00335{letter-spacing:-0.377600pt;}
.ls36_c00335{letter-spacing:-0.371307pt;}
.ls59_c00335{letter-spacing:-0.358720pt;}
.ls75_c00335{letter-spacing:-0.352427pt;}
.ls68_c00335{letter-spacing:-0.346133pt;}
.ls44_c00335{letter-spacing:-0.339840pt;}
.ls70_c00335{letter-spacing:-0.327253pt;}
.ls7b_c00335{letter-spacing:-0.314667pt;}
.ls6b_c00335{letter-spacing:-0.308373pt;}
.ls43_c00335{letter-spacing:-0.295787pt;}
.ls82_c00335{letter-spacing:-0.283200pt;}
.ls5d_c00335{letter-spacing:-0.276907pt;}
.ls3c_c00335{letter-spacing:-0.258027pt;}
.ls76_c00335{letter-spacing:-0.245440pt;}
.ls63_c00335{letter-spacing:-0.226560pt;}
.ls69_c00335{letter-spacing:-0.195093pt;}
.ls6e_c00335{letter-spacing:-0.176213pt;}
.ls64_c00335{letter-spacing:-0.144747pt;}
.ls6a_c00335{letter-spacing:-0.138453pt;}
.ls61_c00335{letter-spacing:-0.125867pt;}
.ls5f_c00335{letter-spacing:-0.113280pt;}
.ls6d_c00335{letter-spacing:-0.106987pt;}
.ls38_c00335{letter-spacing:-0.088107pt;}
.ls37_c00335{letter-spacing:-0.081813pt;}
.ls80_c00335{letter-spacing:-0.075520pt;}
.ls35_c00335{letter-spacing:-0.069227pt;}
.ls66_c00335{letter-spacing:-0.037760pt;}
.ls47_c00335{letter-spacing:-0.031467pt;}
.ls7d_c00335{letter-spacing:-0.025173pt;}
.ls3e_c00335{letter-spacing:-0.018880pt;}
.ls30_c00335{letter-spacing:0.000000pt;}
.ls4_c00335{letter-spacing:0.006133pt;}
.ls1_c00335{letter-spacing:0.006293pt;}
.ls1a_c00335{letter-spacing:0.025173pt;}
.ls26_c00335{letter-spacing:0.037760pt;}
.ls1c_c00335{letter-spacing:0.044053pt;}
.ls1f_c00335{letter-spacing:0.050347pt;}
.ls77_c00335{letter-spacing:0.062933pt;}
.ls19_c00335{letter-spacing:0.069227pt;}
.ls8_c00335{letter-spacing:0.081813pt;}
.ls18_c00335{letter-spacing:0.100693pt;}
.ls1b_c00335{letter-spacing:0.125867pt;}
.ls2d_c00335{letter-spacing:0.132160pt;}
.ls25_c00335{letter-spacing:0.157333pt;}
.ls28_c00335{letter-spacing:0.163627pt;}
.ls21_c00335{letter-spacing:0.169920pt;}
.lse_c00335{letter-spacing:0.195093pt;}
.ls6_c00335{letter-spacing:0.213973pt;}
.ls2_c00335{letter-spacing:0.239147pt;}
.ls2b_c00335{letter-spacing:0.251733pt;}
.ls5_c00335{letter-spacing:0.312800pt;}
.lsa_c00335{letter-spacing:0.371307pt;}
.ls2a_c00335{letter-spacing:0.459413pt;}
.ls27_c00335{letter-spacing:0.502933pt;}
.ls22_c00335{letter-spacing:0.541227pt;}
.ls0_c00335{letter-spacing:0.576533pt;}
.ls13_c00335{letter-spacing:0.711467pt;}
.ls20_c00335{letter-spacing:0.717440pt;}
.lsf_c00335{letter-spacing:0.730027pt;}
.ls16_c00335{letter-spacing:0.736000pt;}
.ls11_c00335{letter-spacing:0.748267pt;}
.ls29_c00335{letter-spacing:0.774080pt;}
.ls23_c00335{letter-spacing:0.803467pt;}
.ls3_c00335{letter-spacing:0.824427pt;}
.ls15_c00335{letter-spacing:0.858667pt;}
.ls14_c00335{letter-spacing:0.907733pt;}
.ls12_c00335{letter-spacing:0.932267pt;}
.lsb_c00335{letter-spacing:1.009280pt;}
.ls17_c00335{letter-spacing:1.061067pt;}
.lsc_c00335{letter-spacing:1.149120pt;}
.lsd_c00335{letter-spacing:1.189440pt;}
.ls9_c00335{letter-spacing:1.220907pt;}
.ls1e_c00335{letter-spacing:1.334187pt;}
.ls7_c00335{letter-spacing:1.353067pt;}
.ls24_c00335{letter-spacing:1.497813pt;}
.ls1d_c00335{letter-spacing:1.856533pt;}
.ls10_c00335{letter-spacing:1.962667pt;}
.ws5_c00335{word-spacing:0.000000pt;}
.ws4_c00335{word-spacing:9.032000pt;}
.ws1_c00335{word-spacing:12.137867pt;}
.ws2_c00335{word-spacing:18.114667pt;}
.ws0_c00335{word-spacing:20.613333pt;}
.ws3_c00335{word-spacing:20.812800pt;}
._10_c00335{margin-left:-7.381013pt;}
._11_c00335{margin-left:-5.642667pt;}
._4_c00335{margin-left:-3.058560pt;}
._6_c00335{margin-left:-2.045333pt;}
._17_c00335{margin-left:-1.006933pt;}
._d_c00335{width:1.126507pt;}
._5_c00335{width:3.360640pt;}
._12_c00335{width:4.252693pt;}
._f_c00335{width:5.160533pt;}
._c_c00335{width:6.349973pt;}
._a_c00335{width:7.268800pt;}
._8_c00335{width:8.433067pt;}
._13_c00335{width:9.603627pt;}
._e_c00335{width:10.559147pt;}
._b_c00335{width:11.523093pt;}
._9_c00335{width:12.441920pt;}
._7_c00335{width:14.131200pt;}
._18_c00335{width:15.924053pt;}
._14_c00335{width:17.438827pt;}
._15_c00335{width:18.527573pt;}
._1_c00335{width:19.635200pt;}
._0_c00335{width:20.591787pt;}
._16_c00335{width:21.593280pt;}
._19_c00335{width:22.504960pt;}
._2_c00335{width:24.053120pt;}
._3_c00335{width:28.471040pt;}
.fs5_c00335{font-size:56.000000pt;}
.fs4_c00335{font-size:58.666667pt;}
.fs0_c00335{font-size:59.200000pt;}
.fs6_c00335{font-size:60.266667pt;}
.fs3_c00335{font-size:60.800000pt;}
.fs1_c00335{font-size:61.333333pt;}
.fs2_c00335{font-size:62.933333pt;}
.y0_c00335{bottom:0.000000pt;}
.y1d_c00335{bottom:63.373333pt;}
.y1b_c00335{bottom:195.194933pt;}
.y1c_c00335{bottom:195.200000pt;}
.y19_c00335{bottom:223.367467pt;}
.y1a_c00335{bottom:223.373333pt;}
.y18_c00335{bottom:277.773333pt;}
.y16_c00335{bottom:333.125867pt;}
.y17_c00335{bottom:333.133333pt;}
.y15_c00335{bottom:362.893333pt;}
.y14_c00335{bottom:418.567200pt;}
.y13_c00335{bottom:446.399467pt;}
.y12_c00335{bottom:473.618133pt;}
.y11_c00335{bottom:501.135733pt;}
.y10_c00335{bottom:528.653333pt;}
.yf_c00335{bottom:583.360000pt;}
.ye_c00335{bottom:610.893333pt;}
.yd_c00335{bottom:638.400000pt;}
.yc_c00335{bottom:665.933333pt;}
.yb_c00335{bottom:720.960000pt;}
.ya_c00335{bottom:720.962400pt;}
.y9_c00335{bottom:748.480000pt;}
.y8_c00335{bottom:748.482400pt;}
.y7_c00335{bottom:803.533333pt;}
.y6_c00335{bottom:830.720000pt;}
.y5_c00335{bottom:885.452800pt;}
.y4_c00335{bottom:912.640000pt;}
.y3_c00335{bottom:967.378133pt;}
.y2_c00335{bottom:994.880000pt;}
.y1_c00335{bottom:1062.720000pt;}
.h8_c00335{height:54.960938pt;}
.h2_c00335{height:59.662500pt;}
.h5_c00335{height:61.187500pt;}
.h3_c00335{height:61.765625pt;}
.h6_c00335{height:61.785892pt;}
.h4_c00335{height:61.795492pt;}
.h7_c00335{height:62.856250pt;}
.h1_c00335{height:1122.666667pt;}
.h0_c00335{height:1122.880000pt;}
.w1_c00335{width:793.333333pt;}
.w0_c00335{width:793.600000pt;}
.x0_c00335{left:0.000000pt;}
.x15_c00335{left:107.479733pt;}
.x5_c00335{left:108.647200pt;}
.x1_c00335{left:110.013333pt;}
.xb_c00335{left:155.530933pt;}
.x2_c00335{left:156.946667pt;}
.x8_c00335{left:158.626667pt;}
.x18_c00335{left:184.826667pt;}
.x1c_c00335{left:208.466667pt;}
.x19_c00335{left:213.533333pt;}
.x1d_c00335{left:227.946667pt;}
.x6_c00335{left:287.373333pt;}
.x9_c00335{left:332.946667pt;}
.x3_c00335{left:343.853333pt;}
.xa_c00335{left:360.413333pt;}
.x4_c00335{left:367.520000pt;}
.x1e_c00335{left:378.160000pt;}
.x1a_c00335{left:408.760000pt;}
.x1b_c00335{left:427.386667pt;}
.x7_c00335{left:461.853333pt;}
.x10_c00335{left:477.533333pt;}
.xe_c00335{left:480.146667pt;}
.xc_c00335{left:486.546667pt;}
.x11_c00335{left:500.306667pt;}
.xf_c00335{left:505.093333pt;}
.xd_c00335{left:511.466667pt;}
.x13_c00335{left:520.466667pt;}
.x12_c00335{left:525.053333pt;}
.x16_c00335{left:535.853333pt;}
.x14_c00335{left:545.093333pt;}
.x17_c00335{left:570.080000pt;}
}





/* 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_c00336 {
    display:none;
  }
  .loading-indicator_c00336.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00336 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_c00336 { 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_c00336" -> "#page-container .classname_c00336")
 */
.pf_c00336 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00336 { /* 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_c00336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00336 { /* 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_c00336 { /* 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_c00336 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00336 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00336 {overflow:visible;}
  }
}
.c_c00336 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00336 { /* 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_c00336:after { /* webkit #35443 */
  content: '';
}
.t_c00336:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00336 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 */
}
.__c00336 { /* 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_c00336 { /* info for Javascript */
  display:none;
}
.l_c00336 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00336 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00336 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00336: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_c00336 {
    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_c00336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00336.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_c00336 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00336;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.311035;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_c00336;src:url('chunks/assets/font_bebd01ed9adb81c736373ce5.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.284180;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_c00336;src:url('chunks/assets/font_cfc7bd1198e1169021b23934.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.284668;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_c00336;src:url('chunks/assets/font_8e0c132941e0751e92a2133f.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:1.284180;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_c00336;src:url('chunks/assets/font_0ba6f80919aa92e7a80e3c6f.woff2')format("woff");}.ff5_c00336{font-family:ff5_c00336;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:ff6_c00336;src:url('chunks/assets/font_9337cac02c508c4d2eb5ba21.woff2')format("woff");}.ff6_c00336{font-family:ff6_c00336;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:ff7_c00336;src:url('chunks/assets/font_211f17b5655caa09ffedd4fd.woff2')format("woff");}.ff7_c00336{font-family:ff7_c00336;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;}
.mc_c00336{transform:matrix(0.192669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192669,0.000000,0.000000,0.250000,0,0);}
.m1d_c00336{transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);}
.m1b_c00336{transform:matrix(0.213144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213144,0.000000,0.000000,0.250000,0,0);}
.m7_c00336{transform:matrix(0.229878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229878,0.000000,0.000000,0.250000,0,0);}
.m0_c00336{transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);}
.m2_c00336{transform:matrix(0.238962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238962,0.000000,0.000000,0.250000,0,0);}
.m1e_c00336{transform:matrix(0.239944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239944,0.000000,0.000000,0.250000,0,0);}
.m1c_c00336{transform:matrix(0.241244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241244,0.000000,0.000000,0.250000,0,0);}
.m5_c00336{transform:matrix(0.241970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241970,0.000000,0.000000,0.250000,0,0);}
.ma_c00336{transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);}
.m6_c00336{transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);}
.m3_c00336{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.m1f_c00336{transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);}
.m8_c00336{transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);}
.m9_c00336{transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);}
.md_c00336{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m4_c00336{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.mb_c00336{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m1_c00336{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);}
.m11_c00336{transform:matrix(0.260981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260981,0.000000,0.000000,0.250000,0,0);}
.m1a_c00336{transform:matrix(0.283783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283783,0.000000,0.000000,0.250000,0,0);}
.m13_c00336{transform:matrix(0.292460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292460,0.000000,0.000000,0.250000,0,0);}
.m15_c00336{transform:matrix(0.377795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377795,0.000000,0.000000,0.250000,0,0);}
.m12_c00336{transform:matrix(0.390898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390898,0.000000,0.000000,0.250000,0,0);}
.m16_c00336{transform:matrix(0.412084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412084,0.000000,0.000000,0.250000,0,0);}
.mf_c00336{transform:matrix(0.413917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413917,0.000000,0.000000,0.250000,0,0);}
.me_c00336{transform:matrix(0.437674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437674,0.000000,0.000000,0.250000,0,0);}
.m14_c00336{transform:matrix(0.441303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441303,0.000000,0.000000,0.250000,0,0);}
.m10_c00336{transform:matrix(0.482106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482106,0.000000,0.000000,0.250000,0,0);}
.m19_c00336{transform:matrix(0.565560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565560,0.000000,0.000000,0.250000,0,0);}
.m18_c00336{transform:matrix(0.779739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779739,0.000000,0.000000,0.250000,0,0);}
.m17_c00336{transform:matrix(0.824157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.824157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.824157,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls4a_c00336{letter-spacing:-2.457000px;}
.ls2f_c00336{letter-spacing:-2.331000px;}
.ls6c_c00336{letter-spacing:-2.274480px;}
.ls37_c00336{letter-spacing:-2.204280px;}
.ls5f_c00336{letter-spacing:-2.120040px;}
.ls9e_c00336{letter-spacing:-2.016000px;}
.ls5b_c00336{letter-spacing:-1.972620px;}
.ls9b_c00336{letter-spacing:-1.916460px;}
.ls59_c00336{letter-spacing:-1.839240px;}
.ls38_c00336{letter-spacing:-1.670760px;}
.ls5a_c00336{letter-spacing:-1.642680px;}
.ls4c_c00336{letter-spacing:-1.635660px;}
.ls35_c00336{letter-spacing:-1.565460px;}
.ls54_c00336{letter-spacing:-1.530360px;}
.ls65_c00336{letter-spacing:-1.516320px;}
.ls99_c00336{letter-spacing:-1.509300px;}
.ls96_c00336{letter-spacing:-1.467180px;}
.ls97_c00336{letter-spacing:-1.439100px;}
.ls5c_c00336{letter-spacing:-1.368900px;}
.ls6a_c00336{letter-spacing:-1.344021px;}
.ls45_c00336{letter-spacing:-1.291680px;}
.ls5e_c00336{letter-spacing:-1.249560px;}
.ls62_c00336{letter-spacing:-1.151280px;}
.ls6d_c00336{letter-spacing:-1.038960px;}
.ls43_c00336{letter-spacing:-1.017900px;}
.ls52_c00336{letter-spacing:-1.003860px;}
.ls8d_c00336{letter-spacing:-0.989820px;}
.ls95_c00336{letter-spacing:-0.954720px;}
.ls7e_c00336{letter-spacing:-0.947700px;}
.ls78_c00336{letter-spacing:-0.877500px;}
.ls4f_c00336{letter-spacing:-0.863460px;}
.ls50_c00336{letter-spacing:-0.856440px;}
.ls84_c00336{letter-spacing:-0.828360px;}
.ls69_c00336{letter-spacing:-0.807300px;}
.ls30_c00336{letter-spacing:-0.765180px;}
.ls64_c00336{letter-spacing:-0.751140px;}
.ls4e_c00336{letter-spacing:-0.744120px;}
.ls66_c00336{letter-spacing:-0.723060px;}
.ls7d_c00336{letter-spacing:-0.702000px;}
.ls6b_c00336{letter-spacing:-0.673920px;}
.ls53_c00336{letter-spacing:-0.666900px;}
.ls80_c00336{letter-spacing:-0.652860px;}
.ls92_c00336{letter-spacing:-0.624780px;}
.ls5d_c00336{letter-spacing:-0.589680px;}
.ls75_c00336{letter-spacing:-0.588021px;}
.ls77_c00336{letter-spacing:-0.575640px;}
.ls87_c00336{letter-spacing:-0.568620px;}
.ls39_c00336{letter-spacing:-0.554580px;}
.ls67_c00336{letter-spacing:-0.547560px;}
.ls57_c00336{letter-spacing:-0.526500px;}
.ls44_c00336{letter-spacing:-0.512460px;}
.ls7b_c00336{letter-spacing:-0.505440px;}
.ls31_c00336{letter-spacing:-0.491400px;}
.ls63_c00336{letter-spacing:-0.484380px;}
.ls47_c00336{letter-spacing:-0.470340px;}
.ls68_c00336{letter-spacing:-0.456300px;}
.ls9c_c00336{letter-spacing:-0.449280px;}
.ls86_c00336{letter-spacing:-0.428220px;}
.ls82_c00336{letter-spacing:-0.414180px;}
.ls81_c00336{letter-spacing:-0.407160px;}
.ls36_c00336{letter-spacing:-0.379080px;}
.ls3d_c00336{letter-spacing:-0.365040px;}
.ls3a_c00336{letter-spacing:-0.358020px;}
.ls79_c00336{letter-spacing:-0.351000px;}
.ls90_c00336{letter-spacing:-0.336960px;}
.ls91_c00336{letter-spacing:-0.329940px;}
.ls34_c00336{letter-spacing:-0.315900px;}
.ls7c_c00336{letter-spacing:-0.308880px;}
.ls51_c00336{letter-spacing:-0.301860px;}
.ls3c_c00336{letter-spacing:-0.294840px;}
.ls8e_c00336{letter-spacing:-0.280800px;}
.ls98_c00336{letter-spacing:-0.273780px;}
.ls61_c00336{letter-spacing:-0.266760px;}
.ls46_c00336{letter-spacing:-0.259740px;}
.ls7f_c00336{letter-spacing:-0.245700px;}
.ls60_c00336{letter-spacing:-0.238680px;}
.ls93_c00336{letter-spacing:-0.231660px;}
.ls83_c00336{letter-spacing:-0.224640px;}
.ls4b_c00336{letter-spacing:-0.217620px;}
.ls76_c00336{letter-spacing:-0.210600px;}
.ls89_c00336{letter-spacing:-0.196560px;}
.ls8a_c00336{letter-spacing:-0.189540px;}
.ls40_c00336{letter-spacing:-0.182520px;}
.ls88_c00336{letter-spacing:-0.175500px;}
.ls6e_c00336{letter-spacing:-0.168480px;}
.ls8b_c00336{letter-spacing:-0.161460px;}
.ls3f_c00336{letter-spacing:-0.154440px;}
.ls4d_c00336{letter-spacing:-0.140400px;}
.ls94_c00336{letter-spacing:-0.133380px;}
.ls9d_c00336{letter-spacing:-0.126360px;}
.ls41_c00336{letter-spacing:-0.119340px;}
.ls8f_c00336{letter-spacing:-0.112320px;}
.ls48_c00336{letter-spacing:-0.105300px;}
.ls7a_c00336{letter-spacing:-0.098280px;}
.ls85_c00336{letter-spacing:-0.091260px;}
.ls42_c00336{letter-spacing:-0.063180px;}
.ls9a_c00336{letter-spacing:-0.049140px;}
.ls55_c00336{letter-spacing:-0.042120px;}
.ls33_c00336{letter-spacing:-0.035100px;}
.ls3b_c00336{letter-spacing:-0.028080px;}
.ls58_c00336{letter-spacing:-0.021060px;}
.ls56_c00336{letter-spacing:-0.014040px;}
.ls8c_c00336{letter-spacing:-0.007020px;}
.ls32_c00336{letter-spacing:0.000000px;}
.ls2a_c00336{letter-spacing:0.007020px;}
.ls7_c00336{letter-spacing:0.028080px;}
.ls23_c00336{letter-spacing:0.042120px;}
.ls25_c00336{letter-spacing:0.049140px;}
.ls20_c00336{letter-spacing:0.091260px;}
.ls21_c00336{letter-spacing:0.098280px;}
.ls22_c00336{letter-spacing:0.105300px;}
.ls19_c00336{letter-spacing:0.112320px;}
.ls24_c00336{letter-spacing:0.119340px;}
.ls27_c00336{letter-spacing:0.126360px;}
.ls28_c00336{letter-spacing:0.133380px;}
.ls2b_c00336{letter-spacing:0.140400px;}
.ls1_c00336{letter-spacing:0.161460px;}
.ls1c_c00336{letter-spacing:0.168480px;}
.lsf_c00336{letter-spacing:0.189540px;}
.ls2c_c00336{letter-spacing:0.196560px;}
.ls29_c00336{letter-spacing:0.203580px;}
.ls17_c00336{letter-spacing:0.231660px;}
.ls1f_c00336{letter-spacing:0.245700px;}
.ls6_c00336{letter-spacing:0.259740px;}
.ls1a_c00336{letter-spacing:0.273780px;}
.ls18_c00336{letter-spacing:0.280800px;}
.ls3_c00336{letter-spacing:0.287820px;}
.ls8_c00336{letter-spacing:0.294120px;}
.ls2_c00336{letter-spacing:0.308880px;}
.ls10_c00336{letter-spacing:0.358020px;}
.ls3e_c00336{letter-spacing:0.365040px;}
.ls1e_c00336{letter-spacing:0.372060px;}
.ls1d_c00336{letter-spacing:0.442260px;}
.ls9_c00336{letter-spacing:0.478800px;}
.ls2d_c00336{letter-spacing:0.512460px;}
.lsa_c00336{letter-spacing:0.638820px;}
.ls74_c00336{letter-spacing:0.660030px;}
.ls26_c00336{letter-spacing:0.680940px;}
.ls1b_c00336{letter-spacing:0.702000px;}
.lsb_c00336{letter-spacing:0.737100px;}
.ls72_c00336{letter-spacing:0.750030px;}
.ls0_c00336{letter-spacing:0.800280px;}
.ls13_c00336{letter-spacing:0.834480px;}
.ls16_c00336{letter-spacing:0.861840px;}
.ls73_c00336{letter-spacing:0.960030px;}
.ls11_c00336{letter-spacing:1.019160px;}
.lsc_c00336{letter-spacing:1.135440px;}
.ls70_c00336{letter-spacing:1.170030px;}
.ls4_c00336{letter-spacing:1.263600px;}
.ls15_c00336{letter-spacing:1.374840px;}
.ls2e_c00336{letter-spacing:1.425060px;}
.lse_c00336{letter-spacing:1.446120px;}
.ls14_c00336{letter-spacing:1.552680px;}
.ls49_c00336{letter-spacing:1.769040px;}
.ls5_c00336{letter-spacing:1.804140px;}
.ls71_c00336{letter-spacing:1.830000px;}
.ls6f_c00336{letter-spacing:1.980000px;}
.lsd_c00336{letter-spacing:1.983600px;}
.ls12_c00336{letter-spacing:2.045160px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{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__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00336{word-spacing:-0.002160px;}
.ws7_c00336{word-spacing:0.000000px;}
.ws3_c00336{word-spacing:0.262200px;}
.ws5_c00336{word-spacing:1.705680px;}
.ws1_c00336{word-spacing:12.094800px;}
.ws4_c00336{word-spacing:20.487040px;}
.ws0_c00336{word-spacing:23.008200px;}
.ws6_c00336{word-spacing:59.204400px;}
._d_c00336{margin-left:-9.302400px;}
._11_c00336{margin-left:-5.212080px;}
._e_c00336{margin-left:-3.257280px;}
._9_c00336{margin-left:-2.021760px;}
._12_c00336{margin-left:-1.021080px;}
._a_c00336{width:1.446120px;}
._13_c00336{width:3.243240px;}
._8_c00336{width:4.864860px;}
._5_c00336{width:6.549660px;}
._7_c00336{width:7.736040px;}
._b_c00336{width:9.413820px;}
._16_c00336{width:10.502400px;}
._6_c00336{width:11.618100px;}
._14_c00336{width:12.894960px;}
._c_c00336{width:14.035680px;}
._15_c00336{width:15.698280px;}
._f_c00336{width:16.897140px;}
._10_c00336{width:18.813600px;}
._0_c00336{width:20.596680px;}
._3_c00336{width:21.621600px;}
._2_c00336{width:23.376600px;}
._1_c00336{width:24.970140px;}
._4_c00336{width:30.242160px;}
._17_c00336{width:53.773200px;}
._19_c00336{width:55.886220px;}
._18_c00336{width:57.837780px;}
.fc0_c00336{color:transparent;}
.fsa_c00336{font-size:13.200600px;}
.fs8_c00336{font-size:15.000600px;}
.fsb_c00336{font-size:16.800600px;}
.fs9_c00336{font-size:19.200600px;}
.fs6_c00336{font-size:23.400600px;}
.fs7_c00336{font-size:36.600000px;}
.fs4_c00336{font-size:38.400600px;}
.fs5_c00336{font-size:39.600000px;}
.fsd_c00336{font-size:57.600000px;}
.fs3_c00336{font-size:61.200000px;}
.fsc_c00336{font-size:63.000000px;}
.fs0_c00336{font-size:66.600000px;}
.fs1_c00336{font-size:68.400000px;}
.fs2_c00336{font-size:70.200000px;}
.y0_c00336{bottom:0.000000px;}
.y21_c00336{bottom:70.200000px;}
.y1f_c00336{bottom:129.592800px;}
.y20_c00336{bottom:129.600000px;}
.y1e_c00336{bottom:160.200600px;}
.y1d_c00336{bottom:190.456800px;}
.y1c_c00336{bottom:221.415000px;}
.y1b_c00336{bottom:283.695000px;}
.y1a_c00336{bottom:346.696350px;}
.y19_c00336{bottom:376.929900px;}
.y18_c00336{bottom:406.800000px;}
.y17_c00336{bottom:438.480000px;}
.y16_c00336{bottom:438.489600px;}
.y15_c00336{bottom:469.096800px;}
.y14_c00336{bottom:500.055000px;}
.y13_c00336{bottom:529.200000px;}
.y12_c00336{bottom:531.720000px;}
.y11_c00336{bottom:561.615000px;}
.y10_c00336{bottom:623.535000px;}
.yf_c00336{bottom:654.480000px;}
.ye_c00336{bottom:685.455000px;}
.yd_c00336{bottom:747.375000px;}
.yb_c00336{bottom:777.970350px;}
.yc_c00336{bottom:777.975000px;}
.y9_c00336{bottom:808.552050px;}
.ya_c00336{bottom:808.560000px;}
.y8_c00336{bottom:870.135000px;}
.y7_c00336{bottom:900.375000px;}
.y6_c00336{bottom:961.918800px;}
.y5_c00336{bottom:992.175000px;}
.y4_c00336{bottom:1053.370050px;}
.y3_c00336{bottom:1084.328250px;}
.y2_c00336{bottom:1115.655000px;}
.y1_c00336{bottom:1191.240000px;}
.hc_c00336{height:12.955667px;}
.h9_c00336{height:15.645157px;}
.hd_c00336{height:16.488870px;}
.ha_c00336{height:18.834964px;}
.hb_c00336{height:18.844339px;}
.h7_c00336{height:24.406095px;}
.h8_c00336{height:35.920898px;}
.h5_c00336{height:37.688089px;}
.h6_c00336{height:41.301562px;}
.h11_c00336{height:56.531250px;}
.h4_c00336{height:60.064453px;}
.hf_c00336{height:65.364258px;}
.h2_c00336{height:67.120312px;}
.h3_c00336{height:68.897461px;}
.he_c00336{height:68.917861px;}
.h10_c00336{height:68.926261px;}
.h1_c00336{height:1263.000000px;}
.h0_c00336{height:1263.240000px;}
.w1_c00336{width:892.500000px;}
.w0_c00336{width:892.800000px;}
.x0_c00336{left:0.000000px;}
.x38_c00336{left:121.645500px;}
.x1_c00336{left:123.045000px;}
.x1c_c00336{left:132.015000px;}
.x1d_c00336{left:148.485000px;}
.x20_c00336{left:149.580000px;}
.x37_c00336{left:175.470000px;}
.x2_c00336{left:176.565000px;}
.x7_c00336{left:179.175000px;}
.x21_c00336{left:184.140000px;}
.x22_c00336{left:204.390000px;}
.x11_c00336{left:224.085000px;}
.x23_c00336{left:236.745000px;}
.x8_c00336{left:246.765000px;}
.x12_c00336{left:252.180000px;}
.x24_c00336{left:258.060000px;}
.x9_c00336{left:274.830000px;}
.x25_c00336{left:288.270000px;}
.x1e_c00336{left:306.690000px;}
.x26_c00336{left:331.455000px;}
.x5_c00336{left:334.095000px;}
.x27_c00336{left:359.595000px;}
.x13_c00336{left:370.965000px;}
.xf_c00336{left:372.045000px;}
.xa_c00336{left:376.005000px;}
.x1f_c00336{left:377.115000px;}
.x28_c00336{left:379.050000px;}
.x29_c00336{left:386.895000px;}
.x14_c00336{left:399.075000px;}
.x10_c00336{left:403.305000px;}
.xb_c00336{left:407.265000px;}
.x2a_c00336{left:413.175000px;}
.x3a_c00336{left:424.350000px;}
.x34_c00336{left:431.565000px;}
.x15_c00336{left:440.490000px;}
.x2b_c00336{left:444.210000px;}
.x2c_c00336{left:458.205000px;}
.x35_c00336{left:462.780000px;}
.x39_c00336{left:466.020000px;}
.x16_c00336{left:474.765000px;}
.x17_c00336{left:492.285000px;}
.x2d_c00336{left:499.275000px;}
.x2e_c00336{left:520.140000px;}
.x18_c00336{left:521.400000px;}
.x31_c00336{left:548.040000px;}
.x6_c00336{left:559.560000px;}
.x32_c00336{left:577.770000px;}
.x19_c00336{left:602.385000px;}
.x3_c00336{left:608.430000px;}
.x2f_c00336{left:621.315000px;}
.x1a_c00336{left:627.645000px;}
.xc_c00336{left:635.925000px;}
.x1b_c00336{left:656.385000px;}
.xd_c00336{left:666.255000px;}
.x4_c00336{left:669.930000px;}
.x36_c00336{left:680.325000px;}
.xe_c00336{left:702.285000px;}
.x33_c00336{left:703.485000px;}
.x30_c00336{left:715.965000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls4a_c00336{letter-spacing:-2.184000pt;}
.ls2f_c00336{letter-spacing:-2.072000pt;}
.ls6c_c00336{letter-spacing:-2.021760pt;}
.ls37_c00336{letter-spacing:-1.959360pt;}
.ls5f_c00336{letter-spacing:-1.884480pt;}
.ls9e_c00336{letter-spacing:-1.792000pt;}
.ls5b_c00336{letter-spacing:-1.753440pt;}
.ls9b_c00336{letter-spacing:-1.703520pt;}
.ls59_c00336{letter-spacing:-1.634880pt;}
.ls38_c00336{letter-spacing:-1.485120pt;}
.ls5a_c00336{letter-spacing:-1.460160pt;}
.ls4c_c00336{letter-spacing:-1.453920pt;}
.ls35_c00336{letter-spacing:-1.391520pt;}
.ls54_c00336{letter-spacing:-1.360320pt;}
.ls65_c00336{letter-spacing:-1.347840pt;}
.ls99_c00336{letter-spacing:-1.341600pt;}
.ls96_c00336{letter-spacing:-1.304160pt;}
.ls97_c00336{letter-spacing:-1.279200pt;}
.ls5c_c00336{letter-spacing:-1.216800pt;}
.ls6a_c00336{letter-spacing:-1.194685pt;}
.ls45_c00336{letter-spacing:-1.148160pt;}
.ls5e_c00336{letter-spacing:-1.110720pt;}
.ls62_c00336{letter-spacing:-1.023360pt;}
.ls6d_c00336{letter-spacing:-0.923520pt;}
.ls43_c00336{letter-spacing:-0.904800pt;}
.ls52_c00336{letter-spacing:-0.892320pt;}
.ls8d_c00336{letter-spacing:-0.879840pt;}
.ls95_c00336{letter-spacing:-0.848640pt;}
.ls7e_c00336{letter-spacing:-0.842400pt;}
.ls78_c00336{letter-spacing:-0.780000pt;}
.ls4f_c00336{letter-spacing:-0.767520pt;}
.ls50_c00336{letter-spacing:-0.761280pt;}
.ls84_c00336{letter-spacing:-0.736320pt;}
.ls69_c00336{letter-spacing:-0.717600pt;}
.ls30_c00336{letter-spacing:-0.680160pt;}
.ls64_c00336{letter-spacing:-0.667680pt;}
.ls4e_c00336{letter-spacing:-0.661440pt;}
.ls66_c00336{letter-spacing:-0.642720pt;}
.ls7d_c00336{letter-spacing:-0.624000pt;}
.ls6b_c00336{letter-spacing:-0.599040pt;}
.ls53_c00336{letter-spacing:-0.592800pt;}
.ls80_c00336{letter-spacing:-0.580320pt;}
.ls92_c00336{letter-spacing:-0.555360pt;}
.ls5d_c00336{letter-spacing:-0.524160pt;}
.ls75_c00336{letter-spacing:-0.522685pt;}
.ls77_c00336{letter-spacing:-0.511680pt;}
.ls87_c00336{letter-spacing:-0.505440pt;}
.ls39_c00336{letter-spacing:-0.492960pt;}
.ls67_c00336{letter-spacing:-0.486720pt;}
.ls57_c00336{letter-spacing:-0.468000pt;}
.ls44_c00336{letter-spacing:-0.455520pt;}
.ls7b_c00336{letter-spacing:-0.449280pt;}
.ls31_c00336{letter-spacing:-0.436800pt;}
.ls63_c00336{letter-spacing:-0.430560pt;}
.ls47_c00336{letter-spacing:-0.418080pt;}
.ls68_c00336{letter-spacing:-0.405600pt;}
.ls9c_c00336{letter-spacing:-0.399360pt;}
.ls86_c00336{letter-spacing:-0.380640pt;}
.ls82_c00336{letter-spacing:-0.368160pt;}
.ls81_c00336{letter-spacing:-0.361920pt;}
.ls36_c00336{letter-spacing:-0.336960pt;}
.ls3d_c00336{letter-spacing:-0.324480pt;}
.ls3a_c00336{letter-spacing:-0.318240pt;}
.ls79_c00336{letter-spacing:-0.312000pt;}
.ls90_c00336{letter-spacing:-0.299520pt;}
.ls91_c00336{letter-spacing:-0.293280pt;}
.ls34_c00336{letter-spacing:-0.280800pt;}
.ls7c_c00336{letter-spacing:-0.274560pt;}
.ls51_c00336{letter-spacing:-0.268320pt;}
.ls3c_c00336{letter-spacing:-0.262080pt;}
.ls8e_c00336{letter-spacing:-0.249600pt;}
.ls98_c00336{letter-spacing:-0.243360pt;}
.ls61_c00336{letter-spacing:-0.237120pt;}
.ls46_c00336{letter-spacing:-0.230880pt;}
.ls7f_c00336{letter-spacing:-0.218400pt;}
.ls60_c00336{letter-spacing:-0.212160pt;}
.ls93_c00336{letter-spacing:-0.205920pt;}
.ls83_c00336{letter-spacing:-0.199680pt;}
.ls4b_c00336{letter-spacing:-0.193440pt;}
.ls76_c00336{letter-spacing:-0.187200pt;}
.ls89_c00336{letter-spacing:-0.174720pt;}
.ls8a_c00336{letter-spacing:-0.168480pt;}
.ls40_c00336{letter-spacing:-0.162240pt;}
.ls88_c00336{letter-spacing:-0.156000pt;}
.ls6e_c00336{letter-spacing:-0.149760pt;}
.ls8b_c00336{letter-spacing:-0.143520pt;}
.ls3f_c00336{letter-spacing:-0.137280pt;}
.ls4d_c00336{letter-spacing:-0.124800pt;}
.ls94_c00336{letter-spacing:-0.118560pt;}
.ls9d_c00336{letter-spacing:-0.112320pt;}
.ls41_c00336{letter-spacing:-0.106080pt;}
.ls8f_c00336{letter-spacing:-0.099840pt;}
.ls48_c00336{letter-spacing:-0.093600pt;}
.ls7a_c00336{letter-spacing:-0.087360pt;}
.ls85_c00336{letter-spacing:-0.081120pt;}
.ls42_c00336{letter-spacing:-0.056160pt;}
.ls9a_c00336{letter-spacing:-0.043680pt;}
.ls55_c00336{letter-spacing:-0.037440pt;}
.ls33_c00336{letter-spacing:-0.031200pt;}
.ls3b_c00336{letter-spacing:-0.024960pt;}
.ls58_c00336{letter-spacing:-0.018720pt;}
.ls56_c00336{letter-spacing:-0.012480pt;}
.ls8c_c00336{letter-spacing:-0.006240pt;}
.ls32_c00336{letter-spacing:0.000000pt;}
.ls2a_c00336{letter-spacing:0.006240pt;}
.ls7_c00336{letter-spacing:0.024960pt;}
.ls23_c00336{letter-spacing:0.037440pt;}
.ls25_c00336{letter-spacing:0.043680pt;}
.ls20_c00336{letter-spacing:0.081120pt;}
.ls21_c00336{letter-spacing:0.087360pt;}
.ls22_c00336{letter-spacing:0.093600pt;}
.ls19_c00336{letter-spacing:0.099840pt;}
.ls24_c00336{letter-spacing:0.106080pt;}
.ls27_c00336{letter-spacing:0.112320pt;}
.ls28_c00336{letter-spacing:0.118560pt;}
.ls2b_c00336{letter-spacing:0.124800pt;}
.ls1_c00336{letter-spacing:0.143520pt;}
.ls1c_c00336{letter-spacing:0.149760pt;}
.lsf_c00336{letter-spacing:0.168480pt;}
.ls2c_c00336{letter-spacing:0.174720pt;}
.ls29_c00336{letter-spacing:0.180960pt;}
.ls17_c00336{letter-spacing:0.205920pt;}
.ls1f_c00336{letter-spacing:0.218400pt;}
.ls6_c00336{letter-spacing:0.230880pt;}
.ls1a_c00336{letter-spacing:0.243360pt;}
.ls18_c00336{letter-spacing:0.249600pt;}
.ls3_c00336{letter-spacing:0.255840pt;}
.ls8_c00336{letter-spacing:0.261440pt;}
.ls2_c00336{letter-spacing:0.274560pt;}
.ls10_c00336{letter-spacing:0.318240pt;}
.ls3e_c00336{letter-spacing:0.324480pt;}
.ls1e_c00336{letter-spacing:0.330720pt;}
.ls1d_c00336{letter-spacing:0.393120pt;}
.ls9_c00336{letter-spacing:0.425600pt;}
.ls2d_c00336{letter-spacing:0.455520pt;}
.lsa_c00336{letter-spacing:0.567840pt;}
.ls74_c00336{letter-spacing:0.586693pt;}
.ls26_c00336{letter-spacing:0.605280pt;}
.ls1b_c00336{letter-spacing:0.624000pt;}
.lsb_c00336{letter-spacing:0.655200pt;}
.ls72_c00336{letter-spacing:0.666693pt;}
.ls0_c00336{letter-spacing:0.711360pt;}
.ls13_c00336{letter-spacing:0.741760pt;}
.ls16_c00336{letter-spacing:0.766080pt;}
.ls73_c00336{letter-spacing:0.853360pt;}
.ls11_c00336{letter-spacing:0.905920pt;}
.lsc_c00336{letter-spacing:1.009280pt;}
.ls70_c00336{letter-spacing:1.040027pt;}
.ls4_c00336{letter-spacing:1.123200pt;}
.ls15_c00336{letter-spacing:1.222080pt;}
.ls2e_c00336{letter-spacing:1.266720pt;}
.lse_c00336{letter-spacing:1.285440pt;}
.ls14_c00336{letter-spacing:1.380160pt;}
.ls49_c00336{letter-spacing:1.572480pt;}
.ls5_c00336{letter-spacing:1.603680pt;}
.ls71_c00336{letter-spacing:1.626667pt;}
.ls6f_c00336{letter-spacing:1.760000pt;}
.lsd_c00336{letter-spacing:1.763200pt;}
.ls12_c00336{letter-spacing:1.817920pt;}
.ws2_c00336{word-spacing:-0.001920pt;}
.ws7_c00336{word-spacing:0.000000pt;}
.ws3_c00336{word-spacing:0.233067pt;}
.ws5_c00336{word-spacing:1.516160pt;}
.ws1_c00336{word-spacing:10.750933pt;}
.ws4_c00336{word-spacing:18.210702pt;}
.ws0_c00336{word-spacing:20.451733pt;}
.ws6_c00336{word-spacing:52.626133pt;}
._d_c00336{margin-left:-8.268800pt;}
._11_c00336{margin-left:-4.632960pt;}
._e_c00336{margin-left:-2.895360pt;}
._9_c00336{margin-left:-1.797120pt;}
._12_c00336{margin-left:-0.907627pt;}
._a_c00336{width:1.285440pt;}
._13_c00336{width:2.882880pt;}
._8_c00336{width:4.324320pt;}
._5_c00336{width:5.821920pt;}
._7_c00336{width:6.876480pt;}
._b_c00336{width:8.367840pt;}
._16_c00336{width:9.335467pt;}
._6_c00336{width:10.327200pt;}
._14_c00336{width:11.462187pt;}
._c_c00336{width:12.476160pt;}
._15_c00336{width:13.954027pt;}
._f_c00336{width:15.019680pt;}
._10_c00336{width:16.723200pt;}
._0_c00336{width:18.308160pt;}
._3_c00336{width:19.219200pt;}
._2_c00336{width:20.779200pt;}
._1_c00336{width:22.195680pt;}
._4_c00336{width:26.881920pt;}
._17_c00336{width:47.798400pt;}
._19_c00336{width:49.676640pt;}
._18_c00336{width:51.411360pt;}
.fsa_c00336{font-size:11.733867pt;}
.fs8_c00336{font-size:13.333867pt;}
.fsb_c00336{font-size:14.933867pt;}
.fs9_c00336{font-size:17.067200pt;}
.fs6_c00336{font-size:20.800533pt;}
.fs7_c00336{font-size:32.533333pt;}
.fs4_c00336{font-size:34.133867pt;}
.fs5_c00336{font-size:35.200000pt;}
.fsd_c00336{font-size:51.200000pt;}
.fs3_c00336{font-size:54.400000pt;}
.fsc_c00336{font-size:56.000000pt;}
.fs0_c00336{font-size:59.200000pt;}
.fs1_c00336{font-size:60.800000pt;}
.fs2_c00336{font-size:62.400000pt;}
.y0_c00336{bottom:0.000000pt;}
.y21_c00336{bottom:62.400000pt;}
.y1f_c00336{bottom:115.193600pt;}
.y20_c00336{bottom:115.200000pt;}
.y1e_c00336{bottom:142.400533pt;}
.y1d_c00336{bottom:169.294933pt;}
.y1c_c00336{bottom:196.813333pt;}
.y1b_c00336{bottom:252.173333pt;}
.y1a_c00336{bottom:308.174533pt;}
.y19_c00336{bottom:335.048800pt;}
.y18_c00336{bottom:361.600000pt;}
.y17_c00336{bottom:389.760000pt;}
.y16_c00336{bottom:389.768533pt;}
.y15_c00336{bottom:416.974933pt;}
.y14_c00336{bottom:444.493333pt;}
.y13_c00336{bottom:470.400000pt;}
.y12_c00336{bottom:472.640000pt;}
.y11_c00336{bottom:499.213333pt;}
.y10_c00336{bottom:554.253333pt;}
.yf_c00336{bottom:581.760000pt;}
.ye_c00336{bottom:609.293333pt;}
.yd_c00336{bottom:664.333333pt;}
.yb_c00336{bottom:691.529200pt;}
.yc_c00336{bottom:691.533333pt;}
.y9_c00336{bottom:718.712933pt;}
.ya_c00336{bottom:718.720000pt;}
.y8_c00336{bottom:773.453333pt;}
.y7_c00336{bottom:800.333333pt;}
.y6_c00336{bottom:855.038933pt;}
.y5_c00336{bottom:881.933333pt;}
.y4_c00336{bottom:936.328933pt;}
.y3_c00336{bottom:963.847333pt;}
.y2_c00336{bottom:991.693333pt;}
.y1_c00336{bottom:1058.880000pt;}
.hc_c00336{height:11.516148pt;}
.h9_c00336{height:13.906806pt;}
.hd_c00336{height:14.656773pt;}
.ha_c00336{height:16.742190pt;}
.hb_c00336{height:16.750523pt;}
.h7_c00336{height:21.694306pt;}
.h8_c00336{height:31.929687pt;}
.h5_c00336{height:33.500523pt;}
.h6_c00336{height:36.712500pt;}
.h11_c00336{height:50.250000pt;}
.h4_c00336{height:53.390625pt;}
.hf_c00336{height:58.101562pt;}
.h2_c00336{height:59.662500pt;}
.h3_c00336{height:61.242187pt;}
.he_c00336{height:61.260321pt;}
.h10_c00336{height:61.267787pt;}
.h1_c00336{height:1122.666667pt;}
.h0_c00336{height:1122.880000pt;}
.w1_c00336{width:793.333333pt;}
.w0_c00336{width:793.600000pt;}
.x0_c00336{left:0.000000pt;}
.x38_c00336{left:108.129333pt;}
.x1_c00336{left:109.373333pt;}
.x1c_c00336{left:117.346667pt;}
.x1d_c00336{left:131.986667pt;}
.x20_c00336{left:132.960000pt;}
.x37_c00336{left:155.973333pt;}
.x2_c00336{left:156.946667pt;}
.x7_c00336{left:159.266667pt;}
.x21_c00336{left:163.680000pt;}
.x22_c00336{left:181.680000pt;}
.x11_c00336{left:199.186667pt;}
.x23_c00336{left:210.440000pt;}
.x8_c00336{left:219.346667pt;}
.x12_c00336{left:224.160000pt;}
.x24_c00336{left:229.386667pt;}
.x9_c00336{left:244.293333pt;}
.x25_c00336{left:256.240000pt;}
.x1e_c00336{left:272.613333pt;}
.x26_c00336{left:294.626667pt;}
.x5_c00336{left:296.973333pt;}
.x27_c00336{left:319.640000pt;}
.x13_c00336{left:329.746667pt;}
.xf_c00336{left:330.706667pt;}
.xa_c00336{left:334.226667pt;}
.x1f_c00336{left:335.213333pt;}
.x28_c00336{left:336.933333pt;}
.x29_c00336{left:343.906667pt;}
.x14_c00336{left:354.733333pt;}
.x10_c00336{left:358.493333pt;}
.xb_c00336{left:362.013333pt;}
.x2a_c00336{left:367.266667pt;}
.x3a_c00336{left:377.200000pt;}
.x34_c00336{left:383.613333pt;}
.x15_c00336{left:391.546667pt;}
.x2b_c00336{left:394.853333pt;}
.x2c_c00336{left:407.293333pt;}
.x35_c00336{left:411.360000pt;}
.x39_c00336{left:414.240000pt;}
.x16_c00336{left:422.013333pt;}
.x17_c00336{left:437.586667pt;}
.x2d_c00336{left:443.800000pt;}
.x2e_c00336{left:462.346667pt;}
.x18_c00336{left:463.466667pt;}
.x31_c00336{left:487.146667pt;}
.x6_c00336{left:497.386667pt;}
.x32_c00336{left:513.573333pt;}
.x19_c00336{left:535.453333pt;}
.x3_c00336{left:540.826667pt;}
.x2f_c00336{left:552.280000pt;}
.x1a_c00336{left:557.906667pt;}
.xc_c00336{left:565.266667pt;}
.x1b_c00336{left:583.453333pt;}
.xd_c00336{left:592.226667pt;}
.x4_c00336{left:595.493333pt;}
.x36_c00336{left:604.733333pt;}
.xe_c00336{left:624.253333pt;}
.x33_c00336{left:625.320000pt;}
.x30_c00336{left:636.413333pt;}
}





/* 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_c00337 {
    display:none;
  }
  .loading-indicator_c00337.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00337 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_c00337 { 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_c00337" -> "#page-container .classname_c00337")
 */
.pf_c00337 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00337 { /* 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_c00337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00337 { /* 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_c00337 { /* 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_c00337 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00337 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00337 {overflow:visible;}
  }
}
.c_c00337 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00337 { /* 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_c00337:after { /* webkit #35443 */
  content: '';
}
.t_c00337:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00337 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 */
}
.__c00337 { /* 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_c00337 { /* info for Javascript */
  display:none;
}
.l_c00337 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00337 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00337 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00337: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_c00337 {
    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_c00337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00337.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_c00337 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00337;src:url('chunks/assets/font_2fc2f637cbb91534e04b7d8a.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.284668;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_c00337;src:url('chunks/assets/font_d89835eb0d124cf43e9b1f01.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.284180;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_c00337;src:url('chunks/assets/font_4a9398a38c845d625548fd87.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:0.666000;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_c00337;src:url('chunks/assets/font_9f675f4bd707dc14766a2344.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:1.311035;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_c00337{transform:matrix(0.139881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139881,0.000000,0.000000,0.250000,0,0);}
.m15_c00337{transform:matrix(0.209762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209762,0.000000,0.000000,0.250000,0,0);}
.m16_c00337{transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);}
.m17_c00337{transform:matrix(0.224366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224366,0.000000,0.000000,0.250000,0,0);}
.m18_c00337{transform:matrix(0.228464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228464,0.000000,0.000000,0.250000,0,0);}
.m19_c00337{transform:matrix(0.231583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231583,0.000000,0.000000,0.250000,0,0);}
.me_c00337{transform:matrix(0.233542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233542,0.000000,0.000000,0.250000,0,0);}
.m14_c00337{transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);}
.m6_c00337{transform:matrix(0.235717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235717,0.000000,0.000000,0.250000,0,0);}
.ma_c00337{transform:matrix(0.236279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236279,0.000000,0.000000,0.250000,0,0);}
.m11_c00337{transform:matrix(0.236552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236552,0.000000,0.000000,0.250000,0,0);}
.mb_c00337{transform:matrix(0.236808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236808,0.000000,0.000000,0.250000,0,0);}
.m10_c00337{transform:matrix(0.237018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237018,0.000000,0.000000,0.250000,0,0);}
.mc_c00337{transform:matrix(0.237924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237924,0.000000,0.000000,0.250000,0,0);}
.m12_c00337{transform:matrix(0.238122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238122,0.000000,0.000000,0.250000,0,0);}
.m9_c00337{transform:matrix(0.240641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240641,0.000000,0.000000,0.250000,0,0);}
.md_c00337{transform:matrix(0.240822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240822,0.000000,0.000000,0.250000,0,0);}
.mf_c00337{transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);}
.m13_c00337{transform:matrix(0.244038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244038,0.000000,0.000000,0.250000,0,0);}
.m8_c00337{transform:matrix(0.247272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247272,0.000000,0.000000,0.250000,0,0);}
.m1_c00337{transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);}
.m3_c00337{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m0_c00337{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);}
.m7_c00337{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m5_c00337{transform:matrix(0.257067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257067,0.000000,0.000000,0.250000,0,0);}
.m2_c00337{transform:matrix(0.257361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257361,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls86_c00337{letter-spacing:-2.625000px;}
.ls6e_c00337{letter-spacing:-2.415000px;}
.ls84_c00337{letter-spacing:-2.394000px;}
.ls88_c00337{letter-spacing:-2.352000px;}
.ls66_c00337{letter-spacing:-2.159700px;}
.ls65_c00337{letter-spacing:-1.483500px;}
.ls7b_c00337{letter-spacing:-1.235100px;}
.ls7d_c00337{letter-spacing:-1.166100px;}
.ls68_c00337{letter-spacing:-1.083300px;}
.ls7e_c00337{letter-spacing:-0.952200px;}
.ls6b_c00337{letter-spacing:-0.945300px;}
.ls63_c00337{letter-spacing:-0.821100px;}
.ls69_c00337{letter-spacing:-0.800400px;}
.ls7c_c00337{letter-spacing:-0.517500px;}
.ls7f_c00337{letter-spacing:-0.483000px;}
.ls7a_c00337{letter-spacing:-0.469200px;}
.ls85_c00337{letter-spacing:-0.386400px;}
.ls87_c00337{letter-spacing:-0.289800px;}
.ls6a_c00337{letter-spacing:-0.282900px;}
.ls67_c00337{letter-spacing:-0.234600px;}
.ls79_c00337{letter-spacing:-0.207000px;}
.ls77_c00337{letter-spacing:-0.200100px;}
.ls75_c00337{letter-spacing:-0.138000px;}
.ls6f_c00337{letter-spacing:-0.131100px;}
.ls78_c00337{letter-spacing:-0.117300px;}
.ls72_c00337{letter-spacing:-0.103500px;}
.ls71_c00337{letter-spacing:-0.055200px;}
.ls64_c00337{letter-spacing:-0.048300px;}
.ls83_c00337{letter-spacing:-0.020700px;}
.ls6c_c00337{letter-spacing:-0.013800px;}
.ls62_c00337{letter-spacing:0.000000px;}
.ls48_c00337{letter-spacing:0.006900px;}
.ls43_c00337{letter-spacing:0.144900px;}
.ls4e_c00337{letter-spacing:0.151800px;}
.ls27_c00337{letter-spacing:0.234600px;}
.ls3b_c00337{letter-spacing:0.255300px;}
.ls52_c00337{letter-spacing:0.269100px;}
.ls3_c00337{letter-spacing:0.310500px;}
.ls42_c00337{letter-spacing:0.331200px;}
.ls9_c00337{letter-spacing:0.351900px;}
.ls10_c00337{letter-spacing:0.365700px;}
.ls50_c00337{letter-spacing:0.386400px;}
.ls47_c00337{letter-spacing:0.393300px;}
.ls81_c00337{letter-spacing:0.400200px;}
.ls17_c00337{letter-spacing:0.407100px;}
.ls1_c00337{letter-spacing:0.414000px;}
.ls41_c00337{letter-spacing:0.441600px;}
.ls2b_c00337{letter-spacing:0.476100px;}
.ls82_c00337{letter-spacing:0.483000px;}
.ls13_c00337{letter-spacing:0.496800px;}
.ls4_c00337{letter-spacing:0.503700px;}
.ls22_c00337{letter-spacing:0.510600px;}
.ls30_c00337{letter-spacing:0.531300px;}
.ls37_c00337{letter-spacing:0.538200px;}
.ls21_c00337{letter-spacing:0.545100px;}
.ls14_c00337{letter-spacing:0.552000px;}
.ls1e_c00337{letter-spacing:0.558900px;}
.ls23_c00337{letter-spacing:0.565800px;}
.ls73_c00337{letter-spacing:0.572700px;}
.ls4b_c00337{letter-spacing:0.607200px;}
.ls3a_c00337{letter-spacing:0.621000px;}
.ls28_c00337{letter-spacing:0.641700px;}
.ls36_c00337{letter-spacing:0.648600px;}
.ls76_c00337{letter-spacing:0.655500px;}
.ls6_c00337{letter-spacing:0.662400px;}
.ls15_c00337{letter-spacing:0.669300px;}
.ls31_c00337{letter-spacing:0.676200px;}
.ls5f_c00337{letter-spacing:0.690000px;}
.ls2e_c00337{letter-spacing:0.703800px;}
.ls54_c00337{letter-spacing:0.724500px;}
.ls4d_c00337{letter-spacing:0.731400px;}
.ls35_c00337{letter-spacing:0.738300px;}
.ls40_c00337{letter-spacing:0.752100px;}
.ls26_c00337{letter-spacing:0.759000px;}
.lsb_c00337{letter-spacing:0.765900px;}
.ls18_c00337{letter-spacing:0.779700px;}
.ls80_c00337{letter-spacing:0.786600px;}
.ls19_c00337{letter-spacing:0.793500px;}
.ls2f_c00337{letter-spacing:0.800280px;}
.ls2a_c00337{letter-spacing:0.800400px;}
.lse_c00337{letter-spacing:0.807300px;}
.ls60_c00337{letter-spacing:0.821100px;}
.ls5a_c00337{letter-spacing:0.828000px;}
.ls59_c00337{letter-spacing:0.841320px;}
.ls58_c00337{letter-spacing:0.841800px;}
.ls32_c00337{letter-spacing:0.848700px;}
.ls5b_c00337{letter-spacing:0.855600px;}
.ls4a_c00337{letter-spacing:0.883200px;}
.ls1d_c00337{letter-spacing:0.910800px;}
.ls8_c00337{letter-spacing:0.917700px;}
.lsc_c00337{letter-spacing:0.945300px;}
.ls3c_c00337{letter-spacing:0.952200px;}
.ls5_c00337{letter-spacing:0.972900px;}
.lsd_c00337{letter-spacing:1.007400px;}
.ls1f_c00337{letter-spacing:1.019160px;}
.ls56_c00337{letter-spacing:1.035000px;}
.lsa_c00337{letter-spacing:1.055700px;}
.ls1c_c00337{letter-spacing:1.076400px;}
.ls3e_c00337{letter-spacing:1.078140px;}
.ls2c_c00337{letter-spacing:1.090200px;}
.ls16_c00337{letter-spacing:1.097100px;}
.ls49_c00337{letter-spacing:1.101240px;}
.ls3f_c00337{letter-spacing:1.110900px;}
.ls0_c00337{letter-spacing:1.145400px;}
.ls4f_c00337{letter-spacing:1.173000px;}
.ls55_c00337{letter-spacing:1.190160px;}
.ls74_c00337{letter-spacing:1.193700px;}
.ls24_c00337{letter-spacing:1.200600px;}
.ls20_c00337{letter-spacing:1.207500px;}
.ls12_c00337{letter-spacing:1.214400px;}
.ls38_c00337{letter-spacing:1.248900px;}
.ls45_c00337{letter-spacing:1.265400px;}
.ls53_c00337{letter-spacing:1.283400px;}
.ls1a_c00337{letter-spacing:1.311000px;}
.ls3d_c00337{letter-spacing:1.363740px;}
.ls44_c00337{letter-spacing:1.381680px;}
.ls5d_c00337{letter-spacing:1.386900px;}
.ls46_c00337{letter-spacing:1.393800px;}
.ls4c_c00337{letter-spacing:1.455900px;}
.ls25_c00337{letter-spacing:1.469700px;}
.ls57_c00337{letter-spacing:1.538700px;}
.ls1b_c00337{letter-spacing:1.600800px;}
.ls2d_c00337{letter-spacing:1.738800px;}
.ls5c_c00337{letter-spacing:1.814700px;}
.ls34_c00337{letter-spacing:1.849200px;}
.ls61_c00337{letter-spacing:1.878600px;}
.ls29_c00337{letter-spacing:2.014800px;}
.ls7_c00337{letter-spacing:2.056200px;}
.ls51_c00337{letter-spacing:2.076900px;}
.ls11_c00337{letter-spacing:2.118300px;}
.ls39_c00337{letter-spacing:2.318400px;}
.ls2_c00337{letter-spacing:2.539200px;}
.ls6d_c00337{letter-spacing:2.559900px;}
.ls5e_c00337{letter-spacing:2.594400px;}
.lsf_c00337{letter-spacing:2.642700px;}
.ls33_c00337{letter-spacing:3.070500px;}
.ls70_c00337{letter-spacing:3.450000px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{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__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00337{word-spacing:-0.333840px;}
.ws5_c00337{word-spacing:0.000000px;}
.ws1_c00337{word-spacing:4.584120px;}
.ws2_c00337{word-spacing:9.906240px;}
.ws4_c00337{word-spacing:21.199200px;}
.ws0_c00337{word-spacing:24.045000px;}
._6_c00337{margin-left:-5.651100px;}
._7_c00337{margin-left:-4.429800px;}
._10_c00337{margin-left:-3.016800px;}
._9_c00337{margin-left:-2.014800px;}
._8_c00337{width:1.311000px;}
._e_c00337{width:2.325300px;}
._4_c00337{width:3.422400px;}
._2_c00337{width:5.126700px;}
._0_c00337{width:6.582600px;}
._3_c00337{width:7.776300px;}
._1_c00337{width:8.776800px;}
._17_c00337{width:9.853200px;}
._5_c00337{width:11.081400px;}
._11_c00337{width:12.792600px;}
._f_c00337{width:14.269200px;}
._16_c00337{width:15.359400px;}
._14_c00337{width:17.505300px;}
._12_c00337{width:20.534400px;}
._c_c00337{width:22.149000px;}
._15_c00337{width:23.646300px;}
._a_c00337{width:24.784800px;}
._b_c00337{width:25.916400px;}
._13_c00337{width:26.930700px;}
._d_c00337{width:30.718800px;}
.fc0_c00337{color:transparent;}
.fs4_c00337{font-size:41.400600px;}
.fs5_c00337{font-size:50.400000px;}
.fs3_c00337{font-size:51.840000px;}
.fs0_c00337{font-size:60.600000px;}
.fs8_c00337{font-size:67.200000px;}
.fs2_c00337{font-size:68.400000px;}
.fs1_c00337{font-size:69.000000px;}
.fs6_c00337{font-size:71.400000px;}
.fs7_c00337{font-size:75.000000px;}
.y0_c00337{bottom:0.000000px;}
.y21_c00337{bottom:66.975000px;}
.y1f_c00337{bottom:217.089000px;}
.y20_c00337{bottom:217.095000px;}
.y1e_c00337{bottom:248.415000px;}
.y1d_c00337{bottom:279.000000px;}
.y1c_c00337{bottom:310.335000px;}
.y1b_c00337{bottom:372.600000px;}
.y1a_c00337{bottom:435.594000px;}
.y19_c00337{bottom:466.575000px;}
.y18_c00337{bottom:528.495000px;}
.y16_c00337{bottom:590.406000px;}
.y17_c00337{bottom:590.415000px;}
.y15_c00337{bottom:652.333500px;}
.y14_c00337{bottom:683.280000px;}
.y13_c00337{bottom:744.491250px;}
.y11_c00337{bottom:775.453500px;}
.y12_c00337{bottom:775.455000px;}
.y10_c00337{bottom:806.400000px;}
.yf_c00337{bottom:821.520000px;}
.ye_c00337{bottom:868.695000px;}
.yd_c00337{bottom:868.695750px;}
.yb_c00337{bottom:898.933500px;}
.yc_c00337{bottom:898.935000px;}
.ya_c00337{bottom:929.880000px;}
.y8_c00337{bottom:991.076250px;}
.y9_c00337{bottom:991.080000px;}
.y6_c00337{bottom:1021.691250px;}
.y7_c00337{bottom:1021.695000px;}
.y4_c00337{bottom:1052.649750px;}
.y5_c00337{bottom:1052.655000px;}
.y3_c00337{bottom:1083.613500px;}
.y2_c00337{bottom:1114.560000px;}
.y1_c00337{bottom:1190.880000px;}
.h7_c00337{height:33.566400px;}
.h5_c00337{height:34.525440px;}
.h6_c00337{height:40.632425px;}
.h2_c00337{height:59.475586px;}
.hd_c00337{height:65.953125px;}
.ha_c00337{height:67.130859px;}
.h3_c00337{height:67.719727px;}
.h8_c00337{height:67.725727px;}
.h4_c00337{height:67.740727px;}
.hc_c00337{height:67.743727px;}
.h9_c00337{height:70.040332px;}
.hb_c00337{height:75.585938px;}
.h1_c00337{height:1263.000000px;}
.h0_c00337{height:1263.240000px;}
.w1_c00337{width:892.500000px;}
.w0_c00337{width:892.800000px;}
.x0_c00337{left:0.000000px;}
.x13_c00337{left:121.501500px;}
.x2_c00337{left:122.718750px;}
.x1_c00337{left:124.125000px;}
.x6_c00337{left:175.485000px;}
.x10_c00337{left:177.747750px;}
.x17_c00337{left:181.320000px;}
.x18_c00337{left:208.260000px;}
.x19_c00337{left:273.045000px;}
.x1a_c00337{left:295.455000px;}
.xf_c00337{left:300.600000px;}
.x1b_c00337{left:320.565000px;}
.xd_c00337{left:328.575000px;}
.xe_c00337{left:354.060000px;}
.x5_c00337{left:360.180000px;}
.x25_c00337{left:365.580000px;}
.x9_c00337{left:371.865000px;}
.x1c_c00337{left:397.620000px;}
.x26_c00337{left:426.510000px;}
.x11_c00337{left:440.430000px;}
.x14_c00337{left:445.500000px;}
.x12_c00337{left:458.490000px;}
.x7_c00337{left:468.000000px;}
.x1d_c00337{left:474.285000px;}
.x15_c00337{left:478.260000px;}
.xb_c00337{left:483.495000px;}
.x1e_c00337{left:504.975000px;}
.xc_c00337{left:524.700000px;}
.x1f_c00337{left:570.000000px;}
.x8_c00337{left:575.250000px;}
.x20_c00337{left:583.035000px;}
.x21_c00337{left:605.355000px;}
.x22_c00337{left:624.780000px;}
.xa_c00337{left:628.920000px;}
.x23_c00337{left:645.750000px;}
.x16_c00337{left:698.235000px;}
.x3_c00337{left:715.650000px;}
.x24_c00337{left:738.525000px;}
.x4_c00337{left:739.995000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls86_c00337{letter-spacing:-2.333333pt;}
.ls6e_c00337{letter-spacing:-2.146667pt;}
.ls84_c00337{letter-spacing:-2.128000pt;}
.ls88_c00337{letter-spacing:-2.090667pt;}
.ls66_c00337{letter-spacing:-1.919733pt;}
.ls65_c00337{letter-spacing:-1.318667pt;}
.ls7b_c00337{letter-spacing:-1.097867pt;}
.ls7d_c00337{letter-spacing:-1.036533pt;}
.ls68_c00337{letter-spacing:-0.962933pt;}
.ls7e_c00337{letter-spacing:-0.846400pt;}
.ls6b_c00337{letter-spacing:-0.840267pt;}
.ls63_c00337{letter-spacing:-0.729867pt;}
.ls69_c00337{letter-spacing:-0.711467pt;}
.ls7c_c00337{letter-spacing:-0.460000pt;}
.ls7f_c00337{letter-spacing:-0.429333pt;}
.ls7a_c00337{letter-spacing:-0.417067pt;}
.ls85_c00337{letter-spacing:-0.343467pt;}
.ls87_c00337{letter-spacing:-0.257600pt;}
.ls6a_c00337{letter-spacing:-0.251467pt;}
.ls67_c00337{letter-spacing:-0.208533pt;}
.ls79_c00337{letter-spacing:-0.184000pt;}
.ls77_c00337{letter-spacing:-0.177867pt;}
.ls75_c00337{letter-spacing:-0.122667pt;}
.ls6f_c00337{letter-spacing:-0.116533pt;}
.ls78_c00337{letter-spacing:-0.104267pt;}
.ls72_c00337{letter-spacing:-0.092000pt;}
.ls71_c00337{letter-spacing:-0.049067pt;}
.ls64_c00337{letter-spacing:-0.042933pt;}
.ls83_c00337{letter-spacing:-0.018400pt;}
.ls6c_c00337{letter-spacing:-0.012267pt;}
.ls62_c00337{letter-spacing:0.000000pt;}
.ls48_c00337{letter-spacing:0.006133pt;}
.ls43_c00337{letter-spacing:0.128800pt;}
.ls4e_c00337{letter-spacing:0.134933pt;}
.ls27_c00337{letter-spacing:0.208533pt;}
.ls3b_c00337{letter-spacing:0.226933pt;}
.ls52_c00337{letter-spacing:0.239200pt;}
.ls3_c00337{letter-spacing:0.276000pt;}
.ls42_c00337{letter-spacing:0.294400pt;}
.ls9_c00337{letter-spacing:0.312800pt;}
.ls10_c00337{letter-spacing:0.325067pt;}
.ls50_c00337{letter-spacing:0.343467pt;}
.ls47_c00337{letter-spacing:0.349600pt;}
.ls81_c00337{letter-spacing:0.355733pt;}
.ls17_c00337{letter-spacing:0.361867pt;}
.ls1_c00337{letter-spacing:0.368000pt;}
.ls41_c00337{letter-spacing:0.392533pt;}
.ls2b_c00337{letter-spacing:0.423200pt;}
.ls82_c00337{letter-spacing:0.429333pt;}
.ls13_c00337{letter-spacing:0.441600pt;}
.ls4_c00337{letter-spacing:0.447733pt;}
.ls22_c00337{letter-spacing:0.453867pt;}
.ls30_c00337{letter-spacing:0.472267pt;}
.ls37_c00337{letter-spacing:0.478400pt;}
.ls21_c00337{letter-spacing:0.484533pt;}
.ls14_c00337{letter-spacing:0.490667pt;}
.ls1e_c00337{letter-spacing:0.496800pt;}
.ls23_c00337{letter-spacing:0.502933pt;}
.ls73_c00337{letter-spacing:0.509067pt;}
.ls4b_c00337{letter-spacing:0.539733pt;}
.ls3a_c00337{letter-spacing:0.552000pt;}
.ls28_c00337{letter-spacing:0.570400pt;}
.ls36_c00337{letter-spacing:0.576533pt;}
.ls76_c00337{letter-spacing:0.582667pt;}
.ls6_c00337{letter-spacing:0.588800pt;}
.ls15_c00337{letter-spacing:0.594933pt;}
.ls31_c00337{letter-spacing:0.601067pt;}
.ls5f_c00337{letter-spacing:0.613333pt;}
.ls2e_c00337{letter-spacing:0.625600pt;}
.ls54_c00337{letter-spacing:0.644000pt;}
.ls4d_c00337{letter-spacing:0.650133pt;}
.ls35_c00337{letter-spacing:0.656267pt;}
.ls40_c00337{letter-spacing:0.668533pt;}
.ls26_c00337{letter-spacing:0.674667pt;}
.lsb_c00337{letter-spacing:0.680800pt;}
.ls18_c00337{letter-spacing:0.693067pt;}
.ls80_c00337{letter-spacing:0.699200pt;}
.ls19_c00337{letter-spacing:0.705333pt;}
.ls2f_c00337{letter-spacing:0.711360pt;}
.ls2a_c00337{letter-spacing:0.711467pt;}
.lse_c00337{letter-spacing:0.717600pt;}
.ls60_c00337{letter-spacing:0.729867pt;}
.ls5a_c00337{letter-spacing:0.736000pt;}
.ls59_c00337{letter-spacing:0.747840pt;}
.ls58_c00337{letter-spacing:0.748267pt;}
.ls32_c00337{letter-spacing:0.754400pt;}
.ls5b_c00337{letter-spacing:0.760533pt;}
.ls4a_c00337{letter-spacing:0.785067pt;}
.ls1d_c00337{letter-spacing:0.809600pt;}
.ls8_c00337{letter-spacing:0.815733pt;}
.lsc_c00337{letter-spacing:0.840267pt;}
.ls3c_c00337{letter-spacing:0.846400pt;}
.ls5_c00337{letter-spacing:0.864800pt;}
.lsd_c00337{letter-spacing:0.895467pt;}
.ls1f_c00337{letter-spacing:0.905920pt;}
.ls56_c00337{letter-spacing:0.920000pt;}
.lsa_c00337{letter-spacing:0.938400pt;}
.ls1c_c00337{letter-spacing:0.956800pt;}
.ls3e_c00337{letter-spacing:0.958347pt;}
.ls2c_c00337{letter-spacing:0.969067pt;}
.ls16_c00337{letter-spacing:0.975200pt;}
.ls49_c00337{letter-spacing:0.978880pt;}
.ls3f_c00337{letter-spacing:0.987467pt;}
.ls0_c00337{letter-spacing:1.018133pt;}
.ls4f_c00337{letter-spacing:1.042667pt;}
.ls55_c00337{letter-spacing:1.057920pt;}
.ls74_c00337{letter-spacing:1.061067pt;}
.ls24_c00337{letter-spacing:1.067200pt;}
.ls20_c00337{letter-spacing:1.073333pt;}
.ls12_c00337{letter-spacing:1.079467pt;}
.ls38_c00337{letter-spacing:1.110133pt;}
.ls45_c00337{letter-spacing:1.124800pt;}
.ls53_c00337{letter-spacing:1.140800pt;}
.ls1a_c00337{letter-spacing:1.165333pt;}
.ls3d_c00337{letter-spacing:1.212213pt;}
.ls44_c00337{letter-spacing:1.228160pt;}
.ls5d_c00337{letter-spacing:1.232800pt;}
.ls46_c00337{letter-spacing:1.238933pt;}
.ls4c_c00337{letter-spacing:1.294133pt;}
.ls25_c00337{letter-spacing:1.306400pt;}
.ls57_c00337{letter-spacing:1.367733pt;}
.ls1b_c00337{letter-spacing:1.422933pt;}
.ls2d_c00337{letter-spacing:1.545600pt;}
.ls5c_c00337{letter-spacing:1.613067pt;}
.ls34_c00337{letter-spacing:1.643733pt;}
.ls61_c00337{letter-spacing:1.669867pt;}
.ls29_c00337{letter-spacing:1.790933pt;}
.ls7_c00337{letter-spacing:1.827733pt;}
.ls51_c00337{letter-spacing:1.846133pt;}
.ls11_c00337{letter-spacing:1.882933pt;}
.ls39_c00337{letter-spacing:2.060800pt;}
.ls2_c00337{letter-spacing:2.257067pt;}
.ls6d_c00337{letter-spacing:2.275467pt;}
.ls5e_c00337{letter-spacing:2.306133pt;}
.lsf_c00337{letter-spacing:2.349067pt;}
.ls33_c00337{letter-spacing:2.729333pt;}
.ls70_c00337{letter-spacing:3.066667pt;}
.ws3_c00337{word-spacing:-0.296747pt;}
.ws5_c00337{word-spacing:0.000000pt;}
.ws1_c00337{word-spacing:4.074773pt;}
.ws2_c00337{word-spacing:8.805547pt;}
.ws4_c00337{word-spacing:18.843733pt;}
.ws0_c00337{word-spacing:21.373333pt;}
._6_c00337{margin-left:-5.023200pt;}
._7_c00337{margin-left:-3.937600pt;}
._10_c00337{margin-left:-2.681600pt;}
._9_c00337{margin-left:-1.790933pt;}
._8_c00337{width:1.165333pt;}
._e_c00337{width:2.066933pt;}
._4_c00337{width:3.042133pt;}
._2_c00337{width:4.557067pt;}
._0_c00337{width:5.851200pt;}
._3_c00337{width:6.912267pt;}
._1_c00337{width:7.801600pt;}
._17_c00337{width:8.758400pt;}
._5_c00337{width:9.850133pt;}
._11_c00337{width:11.371200pt;}
._f_c00337{width:12.683733pt;}
._16_c00337{width:13.652800pt;}
._14_c00337{width:15.560267pt;}
._12_c00337{width:18.252800pt;}
._c_c00337{width:19.688000pt;}
._15_c00337{width:21.018933pt;}
._a_c00337{width:22.030933pt;}
._b_c00337{width:23.036800pt;}
._13_c00337{width:23.938400pt;}
._d_c00337{width:27.305600pt;}
.fs4_c00337{font-size:36.800533pt;}
.fs5_c00337{font-size:44.800000pt;}
.fs3_c00337{font-size:46.080000pt;}
.fs0_c00337{font-size:53.866667pt;}
.fs8_c00337{font-size:59.733333pt;}
.fs2_c00337{font-size:60.800000pt;}
.fs1_c00337{font-size:61.333333pt;}
.fs6_c00337{font-size:63.466667pt;}
.fs7_c00337{font-size:66.666667pt;}
.y0_c00337{bottom:0.000000pt;}
.y21_c00337{bottom:59.533333pt;}
.y1f_c00337{bottom:192.968000pt;}
.y20_c00337{bottom:192.973333pt;}
.y1e_c00337{bottom:220.813333pt;}
.y1d_c00337{bottom:248.000000pt;}
.y1c_c00337{bottom:275.853333pt;}
.y1b_c00337{bottom:331.200000pt;}
.y1a_c00337{bottom:387.194667pt;}
.y19_c00337{bottom:414.733333pt;}
.y18_c00337{bottom:469.773333pt;}
.y16_c00337{bottom:524.805333pt;}
.y17_c00337{bottom:524.813333pt;}
.y15_c00337{bottom:579.852000pt;}
.y14_c00337{bottom:607.360000pt;}
.y13_c00337{bottom:661.770000pt;}
.y11_c00337{bottom:689.292000pt;}
.y12_c00337{bottom:689.293333pt;}
.y10_c00337{bottom:716.800000pt;}
.yf_c00337{bottom:730.240000pt;}
.ye_c00337{bottom:772.173333pt;}
.yd_c00337{bottom:772.174000pt;}
.yb_c00337{bottom:799.052000pt;}
.yc_c00337{bottom:799.053333pt;}
.ya_c00337{bottom:826.560000pt;}
.y8_c00337{bottom:880.956667pt;}
.y9_c00337{bottom:880.960000pt;}
.y6_c00337{bottom:908.170000pt;}
.y7_c00337{bottom:908.173333pt;}
.y4_c00337{bottom:935.688667pt;}
.y5_c00337{bottom:935.693333pt;}
.y3_c00337{bottom:963.212000pt;}
.y2_c00337{bottom:990.720000pt;}
.y1_c00337{bottom:1058.560000pt;}
.h7_c00337{height:29.836800pt;}
.h5_c00337{height:30.689280pt;}
.h6_c00337{height:36.117711pt;}
.h2_c00337{height:52.867187pt;}
.hd_c00337{height:58.625000pt;}
.ha_c00337{height:59.671875pt;}
.h3_c00337{height:60.195312pt;}
.h8_c00337{height:60.200646pt;}
.h4_c00337{height:60.213979pt;}
.hc_c00337{height:60.216646pt;}
.h9_c00337{height:62.258073pt;}
.hb_c00337{height:67.187500pt;}
.h1_c00337{height:1122.666667pt;}
.h0_c00337{height:1122.880000pt;}
.w1_c00337{width:793.333333pt;}
.w0_c00337{width:793.600000pt;}
.x0_c00337{left:0.000000pt;}
.x13_c00337{left:108.001333pt;}
.x2_c00337{left:109.083333pt;}
.x1_c00337{left:110.333333pt;}
.x6_c00337{left:155.986667pt;}
.x10_c00337{left:157.998000pt;}
.x17_c00337{left:161.173333pt;}
.x18_c00337{left:185.120000pt;}
.x19_c00337{left:242.706667pt;}
.x1a_c00337{left:262.626667pt;}
.xf_c00337{left:267.200000pt;}
.x1b_c00337{left:284.946667pt;}
.xd_c00337{left:292.066667pt;}
.xe_c00337{left:314.720000pt;}
.x5_c00337{left:320.160000pt;}
.x25_c00337{left:324.960000pt;}
.x9_c00337{left:330.546667pt;}
.x1c_c00337{left:353.440000pt;}
.x26_c00337{left:379.120000pt;}
.x11_c00337{left:391.493333pt;}
.x14_c00337{left:396.000000pt;}
.x12_c00337{left:407.546667pt;}
.x7_c00337{left:416.000000pt;}
.x1d_c00337{left:421.586667pt;}
.x15_c00337{left:425.120000pt;}
.xb_c00337{left:429.773333pt;}
.x1e_c00337{left:448.866667pt;}
.xc_c00337{left:466.400000pt;}
.x1f_c00337{left:506.666667pt;}
.x8_c00337{left:511.333333pt;}
.x20_c00337{left:518.253333pt;}
.x21_c00337{left:538.093333pt;}
.x22_c00337{left:555.360000pt;}
.xa_c00337{left:559.040000pt;}
.x23_c00337{left:574.000000pt;}
.x16_c00337{left:620.653333pt;}
.x3_c00337{left:636.133333pt;}
.x24_c00337{left:656.466667pt;}
.x4_c00337{left:657.773333pt;}
}





/* 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_c00338 {
    display:none;
  }
  .loading-indicator_c00338.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00338 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_c00338 { 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_c00338" -> "#page-container .classname_c00338")
 */
.pf_c00338 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00338 { /* 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_c00338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00338 { /* 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_c00338 { /* 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_c00338 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00338 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00338 {overflow:visible;}
  }
}
.c_c00338 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00338 { /* 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_c00338:after { /* webkit #35443 */
  content: '';
}
.t_c00338:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00338 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 */
}
.__c00338 { /* 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_c00338 { /* info for Javascript */
  display:none;
}
.l_c00338 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00338 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00338 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00338: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_c00338 {
    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_c00338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00338.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_c00338 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00338;src:url('chunks/assets/font_4f1955cee150f26c14800b33.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.284668;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_c00338;src:url('chunks/assets/font_a196683219ce09dcab717cfc.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.284180;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_c00338;src:url('chunks/assets/font_919c542b0ebb931ea20ef7b5.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.311035;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_c00338;src:url('chunks/assets/font_f2d3d89f3a9a36242d483976.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:0.666000;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_c00338;src:url('chunks/assets/font_c0e5a8493a27632976f8feae.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;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;}
.ma_c00338{transform:matrix(0.111180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111180,0.000000,0.000000,0.250000,0,0);}
.m7_c00338{transform:matrix(0.225028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225028,0.000000,0.000000,0.250000,0,0);}
.m1_c00338{transform:matrix(0.237061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237061,0.000000,0.000000,0.250000,0,0);}
.m6_c00338{transform:matrix(0.237780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237780,0.000000,0.000000,0.250000,0,0);}
.m4_c00338{transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);}
.m3_c00338{transform:matrix(0.244091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244091,0.000000,0.000000,0.250000,0,0);}
.mb_c00338{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m8_c00338{transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);}
.m9_c00338{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m2_c00338{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m5_c00338{transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);}
.m0_c00338{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);}
.v0_c00338{vertical-align:0.000000px;}
.v1_c00338{vertical-align:23.100000px;}
.ls4a_c00338{letter-spacing:-2.499000px;}
.ls4f_c00338{letter-spacing:-2.436000px;}
.ls5a_c00338{letter-spacing:-2.234160px;}
.ls64_c00338{letter-spacing:-2.136720px;}
.ls65_c00338{letter-spacing:-2.108880px;}
.ls88_c00338{letter-spacing:-2.046240px;}
.ls66_c00338{letter-spacing:-1.990560px;}
.ls58_c00338{letter-spacing:-1.983600px;}
.ls84_c00338{letter-spacing:-1.886160px;}
.ls6f_c00338{letter-spacing:-1.879200px;}
.ls89_c00338{letter-spacing:-1.809600px;}
.ls54_c00338{letter-spacing:-1.774800px;}
.ls7f_c00338{letter-spacing:-1.691280px;}
.ls38_c00338{letter-spacing:-1.649520px;}
.ls62_c00338{letter-spacing:-1.628640px;}
.ls75_c00338{letter-spacing:-1.621680px;}
.ls4c_c00338{letter-spacing:-1.545120px;}
.ls70_c00338{letter-spacing:-1.531200px;}
.ls67_c00338{letter-spacing:-1.503360px;}
.ls46_c00338{letter-spacing:-1.468560px;}
.ls47_c00338{letter-spacing:-1.426800px;}
.ls7d_c00338{letter-spacing:-1.385040px;}
.ls5e_c00338{letter-spacing:-1.364160px;}
.ls92_c00338{letter-spacing:-1.315440px;}
.ls63_c00338{letter-spacing:-1.294560px;}
.ls3c_c00338{letter-spacing:-1.266720px;}
.ls3d_c00338{letter-spacing:-1.218000px;}
.ls61_c00338{letter-spacing:-1.190160px;}
.ls90_c00338{letter-spacing:-1.169280px;}
.ls5d_c00338{letter-spacing:-1.148400px;}
.ls52_c00338{letter-spacing:-1.141440px;}
.ls5f_c00338{letter-spacing:-1.078800px;}
.ls7c_c00338{letter-spacing:-1.071840px;}
.ls7a_c00338{letter-spacing:-1.016160px;}
.ls8b_c00338{letter-spacing:-0.946560px;}
.ls86_c00338{letter-spacing:-0.911760px;}
.ls8c_c00338{letter-spacing:-0.897840px;}
.ls59_c00338{letter-spacing:-0.883920px;}
.ls82_c00338{letter-spacing:-0.863040px;}
.ls7e_c00338{letter-spacing:-0.849120px;}
.ls5c_c00338{letter-spacing:-0.828240px;}
.ls53_c00338{letter-spacing:-0.800400px;}
.ls8e_c00338{letter-spacing:-0.779520px;}
.ls95_c00338{letter-spacing:-0.727560px;}
.ls81_c00338{letter-spacing:-0.689040px;}
.ls43_c00338{letter-spacing:-0.640320px;}
.ls6d_c00338{letter-spacing:-0.598560px;}
.ls57_c00338{letter-spacing:-0.556800px;}
.ls56_c00338{letter-spacing:-0.542880px;}
.ls83_c00338{letter-spacing:-0.535920px;}
.ls39_c00338{letter-spacing:-0.515040px;}
.ls79_c00338{letter-spacing:-0.508080px;}
.ls85_c00338{letter-spacing:-0.494160px;}
.ls4e_c00338{letter-spacing:-0.487200px;}
.ls4d_c00338{letter-spacing:-0.452400px;}
.ls45_c00338{letter-spacing:-0.431520px;}
.ls93_c00338{letter-spacing:-0.417600px;}
.ls44_c00338{letter-spacing:-0.403680px;}
.ls6b_c00338{letter-spacing:-0.396720px;}
.ls72_c00338{letter-spacing:-0.375840px;}
.ls40_c00338{letter-spacing:-0.368880px;}
.ls76_c00338{letter-spacing:-0.327120px;}
.ls68_c00338{letter-spacing:-0.320160px;}
.ls48_c00338{letter-spacing:-0.299280px;}
.ls4b_c00338{letter-spacing:-0.278400px;}
.ls50_c00338{letter-spacing:-0.271440px;}
.ls6c_c00338{letter-spacing:-0.264480px;}
.ls3a_c00338{letter-spacing:-0.243600px;}
.ls5b_c00338{letter-spacing:-0.229680px;}
.ls6a_c00338{letter-spacing:-0.215760px;}
.ls91_c00338{letter-spacing:-0.208800px;}
.ls3b_c00338{letter-spacing:-0.194880px;}
.ls51_c00338{letter-spacing:-0.187920px;}
.ls87_c00338{letter-spacing:-0.180960px;}
.ls6e_c00338{letter-spacing:-0.174000px;}
.ls42_c00338{letter-spacing:-0.160080px;}
.ls8a_c00338{letter-spacing:-0.153120px;}
.ls69_c00338{letter-spacing:-0.139200px;}
.ls74_c00338{letter-spacing:-0.125280px;}
.ls94_c00338{letter-spacing:-0.118320px;}
.ls8d_c00338{letter-spacing:-0.111360px;}
.ls55_c00338{letter-spacing:-0.104400px;}
.ls41_c00338{letter-spacing:-0.076560px;}
.ls8f_c00338{letter-spacing:-0.069600px;}
.ls80_c00338{letter-spacing:-0.048720px;}
.ls3e_c00338{letter-spacing:-0.041760px;}
.ls77_c00338{letter-spacing:-0.034800px;}
.ls60_c00338{letter-spacing:-0.020880px;}
.ls7b_c00338{letter-spacing:-0.006960px;}
.ls3f_c00338{letter-spacing:0.000000px;}
.lsd_c00338{letter-spacing:0.020880px;}
.ls49_c00338{letter-spacing:0.027840px;}
.ls73_c00338{letter-spacing:0.034800px;}
.ls27_c00338{letter-spacing:0.055680px;}
.ls17_c00338{letter-spacing:0.069600px;}
.ls2c_c00338{letter-spacing:0.076560px;}
.ls2f_c00338{letter-spacing:0.090480px;}
.ls71_c00338{letter-spacing:0.125280px;}
.ls36_c00338{letter-spacing:0.139200px;}
.ls29_c00338{letter-spacing:0.160080px;}
.ls1d_c00338{letter-spacing:0.180960px;}
.ls5_c00338{letter-spacing:0.187920px;}
.ls34_c00338{letter-spacing:0.215760px;}
.ls23_c00338{letter-spacing:0.236640px;}
.ls20_c00338{letter-spacing:0.250560px;}
.ls1e_c00338{letter-spacing:0.264480px;}
.ls2b_c00338{letter-spacing:0.306240px;}
.ls2_c00338{letter-spacing:0.313200px;}
.ls21_c00338{letter-spacing:0.320160px;}
.ls31_c00338{letter-spacing:0.341040px;}
.ls14_c00338{letter-spacing:0.354960px;}
.ls78_c00338{letter-spacing:0.361920px;}
.ls2e_c00338{letter-spacing:0.368880px;}
.ls25_c00338{letter-spacing:0.382800px;}
.ls22_c00338{letter-spacing:0.403680px;}
.ls28_c00338{letter-spacing:0.445440px;}
.ls1_c00338{letter-spacing:0.466320px;}
.ls7_c00338{letter-spacing:0.480240px;}
.ls8_c00338{letter-spacing:0.487200px;}
.ls11_c00338{letter-spacing:0.522000px;}
.ls24_c00338{letter-spacing:0.542880px;}
.lsb_c00338{letter-spacing:0.556800px;}
.ls32_c00338{letter-spacing:0.612480px;}
.ls3_c00338{letter-spacing:0.647280px;}
.ls30_c00338{letter-spacing:0.716880px;}
.lse_c00338{letter-spacing:0.723840px;}
.ls16_c00338{letter-spacing:0.752580px;}
.lsa_c00338{letter-spacing:0.766140px;}
.ls4_c00338{letter-spacing:0.842160px;}
.ls19_c00338{letter-spacing:0.861060px;}
.ls33_c00338{letter-spacing:0.883920px;}
.lsf_c00338{letter-spacing:0.918720px;}
.ls2d_c00338{letter-spacing:0.935640px;}
.ls9_c00338{letter-spacing:0.942420px;}
.ls1f_c00338{letter-spacing:1.002240px;}
.ls15_c00338{letter-spacing:1.098360px;}
.ls10_c00338{letter-spacing:1.127520px;}
.ls0_c00338{letter-spacing:1.172940px;}
.ls18_c00338{letter-spacing:1.220400px;}
.ls2a_c00338{letter-spacing:1.240740px;}
.ls1c_c00338{letter-spacing:1.254300px;}
.ls1a_c00338{letter-spacing:1.349220px;}
.lsc_c00338{letter-spacing:1.398960px;}
.ls1b_c00338{letter-spacing:1.539060px;}
.ls6_c00338{letter-spacing:1.552080px;}
.ls37_c00338{letter-spacing:1.603440px;}
.ls26_c00338{letter-spacing:1.642560px;}
.ls13_c00338{letter-spacing:1.715340px;}
.ls12_c00338{letter-spacing:2.603520px;}
.ls35_c00338{letter-spacing:3.145920px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{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__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00338{word-spacing:-16.891920px;}
.ws3_c00338{word-spacing:-0.322560px;}
.ws6_c00338{word-spacing:0.000000px;}
.ws2_c00338{word-spacing:3.996000px;}
.ws1_c00338{word-spacing:11.562660px;}
.ws0_c00338{word-spacing:13.751700px;}
.ws4_c00338{word-spacing:19.769400px;}
._16_c00338{margin-left:-31.686360px;}
._e_c00338{margin-left:-12.340920px;}
._b_c00338{margin-left:-8.746200px;}
._1c_c00338{margin-left:-6.178440px;}
._c_c00338{margin-left:-4.794600px;}
._15_c00338{margin-left:-2.167080px;}
._a_c00338{margin-left:-1.009200px;}
._f_c00338{width:1.245720px;}
._d_c00338{width:3.159840px;}
._8_c00338{width:4.565880px;}
._7_c00338{width:5.776800px;}
._9_c00338{width:7.656000px;}
._5_c00338{width:9.103680px;}
._14_c00338{width:10.133760px;}
._0_c00338{width:11.525760px;}
._3_c00338{width:12.632400px;}
._6_c00338{width:14.358480px;}
._4_c00338{width:15.660000px;}
._1_c00338{width:18.242160px;}
._2_c00338{width:20.281440px;}
._12_c00338{width:22.265040px;}
._10_c00338{width:23.636160px;}
._19_c00338{width:25.341360px;}
._11_c00338{width:26.573280px;}
._17_c00338{width:28.174080px;}
._18_c00338{width:30.603120px;}
._13_c00338{width:32.440560px;}
._1b_c00338{width:34.888560px;}
._1a_c00338{width:36.108480px;}
.fc0_c00338{color:transparent;}
.fs6_c00338{font-size:32.400600px;}
.fs4_c00338{font-size:51.840000px;}
.fs5_c00338{font-size:53.280000px;}
.fs7_c00338{font-size:56.400000px;}
.fs0_c00338{font-size:61.200000px;}
.fs1_c00338{font-size:67.800000px;}
.fs2_c00338{font-size:69.600000px;}
.fs3_c00338{font-size:71.400000px;}
.y0_c00338{bottom:0.000000px;}
.y1f_c00338{bottom:66.975000px;}
.y1d_c00338{bottom:187.193400px;}
.y1e_c00338{bottom:187.200000px;}
.y1b_c00338{bottom:217.797600px;}
.y1c_c00338{bottom:217.800000px;}
.y1a_c00338{bottom:249.133800px;}
.y19_c00338{bottom:279.723000px;}
.y18_c00338{bottom:310.695000px;}
.y17_c00338{bottom:372.255000px;}
.y16_c00338{bottom:435.622800px;}
.y15_c00338{bottom:466.560000px;}
.y14_c00338{bottom:466.561800px;}
.y13_c00338{bottom:497.533800px;}
.y7_c00338{bottom:528.135000px;}
.y12_c00338{bottom:559.095000px;}
.y11_c00338{bottom:620.640000px;}
.y10_c00338{bottom:651.240000px;}
.yf_c00338{bottom:682.200000px;}
.ye_c00338{bottom:713.175000px;}
.yd_c00338{bottom:775.076400px;}
.yc_c00338{bottom:805.335000px;}
.yb_c00338{bottom:805.342800px;}
.y9_c00338{bottom:867.596400px;}
.ya_c00338{bottom:867.600000px;}
.y8_c00338{bottom:897.855000px;}
.y6_c00338{bottom:959.048400px;}
.y5_c00338{bottom:989.655000px;}
.y4_c00338{bottom:1051.216200px;}
.y3_c00338{bottom:1081.822800px;}
.y2_c00338{bottom:1112.760000px;}
.y1_c00338{bottom:1188.720000px;}
.h6_c00338{height:35.484480px;}
.h8_c00338{height:55.353516px;}
.h2_c00338{height:60.064453px;}
.h3_c00338{height:68.308594px;}
.h5_c00338{height:68.313394px;}
.h7_c00338{height:68.334994px;}
.h4_c00338{height:71.957813px;}
.h1_c00338{height:1263.000000px;}
.h0_c00338{height:1263.240000px;}
.w1_c00338{width:892.500000px;}
.w0_c00338{width:892.800000px;}
.x0_c00338{left:0.000000px;}
.x1_c00338{left:133.845000px;}
.x15_c00338{left:186.615000px;}
.x2_c00338{left:187.725000px;}
.x4_c00338{left:190.350600px;}
.x11_c00338{left:201.645000px;}
.x12_c00338{left:256.140000px;}
.x5_c00338{left:258.285000px;}
.x6_c00338{left:286.095000px;}
.x16_c00338{left:311.055000px;}
.x3_c00338{left:318.255000px;}
.x17_c00338{left:385.740000px;}
.x13_c00338{left:435.795000px;}
.x14_c00338{left:458.610000px;}
.x7_c00338{left:475.725000px;}
.x8_c00338{left:503.895000px;}
.xf_c00338{left:522.525000px;}
.x10_c00338{left:551.340000px;}
.xb_c00338{left:569.685000px;}
.xc_c00338{left:597.030000px;}
.xd_c00338{left:626.565000px;}
.xe_c00338{left:654.375000px;}
.x9_c00338{left:698.925000px;}
.x18_c00338{left:710.100000px;}
.xa_c00338{left:726.645000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.v1_c00338{vertical-align:20.533333pt;}
.ls4a_c00338{letter-spacing:-2.221333pt;}
.ls4f_c00338{letter-spacing:-2.165333pt;}
.ls5a_c00338{letter-spacing:-1.985920pt;}
.ls64_c00338{letter-spacing:-1.899307pt;}
.ls65_c00338{letter-spacing:-1.874560pt;}
.ls88_c00338{letter-spacing:-1.818880pt;}
.ls66_c00338{letter-spacing:-1.769387pt;}
.ls58_c00338{letter-spacing:-1.763200pt;}
.ls84_c00338{letter-spacing:-1.676587pt;}
.ls6f_c00338{letter-spacing:-1.670400pt;}
.ls89_c00338{letter-spacing:-1.608533pt;}
.ls54_c00338{letter-spacing:-1.577600pt;}
.ls7f_c00338{letter-spacing:-1.503360pt;}
.ls38_c00338{letter-spacing:-1.466240pt;}
.ls62_c00338{letter-spacing:-1.447680pt;}
.ls75_c00338{letter-spacing:-1.441493pt;}
.ls4c_c00338{letter-spacing:-1.373440pt;}
.ls70_c00338{letter-spacing:-1.361067pt;}
.ls67_c00338{letter-spacing:-1.336320pt;}
.ls46_c00338{letter-spacing:-1.305387pt;}
.ls47_c00338{letter-spacing:-1.268267pt;}
.ls7d_c00338{letter-spacing:-1.231147pt;}
.ls5e_c00338{letter-spacing:-1.212587pt;}
.ls92_c00338{letter-spacing:-1.169280pt;}
.ls63_c00338{letter-spacing:-1.150720pt;}
.ls3c_c00338{letter-spacing:-1.125973pt;}
.ls3d_c00338{letter-spacing:-1.082667pt;}
.ls61_c00338{letter-spacing:-1.057920pt;}
.ls90_c00338{letter-spacing:-1.039360pt;}
.ls5d_c00338{letter-spacing:-1.020800pt;}
.ls52_c00338{letter-spacing:-1.014613pt;}
.ls5f_c00338{letter-spacing:-0.958933pt;}
.ls7c_c00338{letter-spacing:-0.952747pt;}
.ls7a_c00338{letter-spacing:-0.903253pt;}
.ls8b_c00338{letter-spacing:-0.841387pt;}
.ls86_c00338{letter-spacing:-0.810453pt;}
.ls8c_c00338{letter-spacing:-0.798080pt;}
.ls59_c00338{letter-spacing:-0.785707pt;}
.ls82_c00338{letter-spacing:-0.767147pt;}
.ls7e_c00338{letter-spacing:-0.754773pt;}
.ls5c_c00338{letter-spacing:-0.736213pt;}
.ls53_c00338{letter-spacing:-0.711467pt;}
.ls8e_c00338{letter-spacing:-0.692907pt;}
.ls95_c00338{letter-spacing:-0.646720pt;}
.ls81_c00338{letter-spacing:-0.612480pt;}
.ls43_c00338{letter-spacing:-0.569173pt;}
.ls6d_c00338{letter-spacing:-0.532053pt;}
.ls57_c00338{letter-spacing:-0.494933pt;}
.ls56_c00338{letter-spacing:-0.482560pt;}
.ls83_c00338{letter-spacing:-0.476373pt;}
.ls39_c00338{letter-spacing:-0.457813pt;}
.ls79_c00338{letter-spacing:-0.451627pt;}
.ls85_c00338{letter-spacing:-0.439253pt;}
.ls4e_c00338{letter-spacing:-0.433067pt;}
.ls4d_c00338{letter-spacing:-0.402133pt;}
.ls45_c00338{letter-spacing:-0.383573pt;}
.ls93_c00338{letter-spacing:-0.371200pt;}
.ls44_c00338{letter-spacing:-0.358827pt;}
.ls6b_c00338{letter-spacing:-0.352640pt;}
.ls72_c00338{letter-spacing:-0.334080pt;}
.ls40_c00338{letter-spacing:-0.327893pt;}
.ls76_c00338{letter-spacing:-0.290773pt;}
.ls68_c00338{letter-spacing:-0.284587pt;}
.ls48_c00338{letter-spacing:-0.266027pt;}
.ls4b_c00338{letter-spacing:-0.247467pt;}
.ls50_c00338{letter-spacing:-0.241280pt;}
.ls6c_c00338{letter-spacing:-0.235093pt;}
.ls3a_c00338{letter-spacing:-0.216533pt;}
.ls5b_c00338{letter-spacing:-0.204160pt;}
.ls6a_c00338{letter-spacing:-0.191787pt;}
.ls91_c00338{letter-spacing:-0.185600pt;}
.ls3b_c00338{letter-spacing:-0.173227pt;}
.ls51_c00338{letter-spacing:-0.167040pt;}
.ls87_c00338{letter-spacing:-0.160853pt;}
.ls6e_c00338{letter-spacing:-0.154667pt;}
.ls42_c00338{letter-spacing:-0.142293pt;}
.ls8a_c00338{letter-spacing:-0.136107pt;}
.ls69_c00338{letter-spacing:-0.123733pt;}
.ls74_c00338{letter-spacing:-0.111360pt;}
.ls94_c00338{letter-spacing:-0.105173pt;}
.ls8d_c00338{letter-spacing:-0.098987pt;}
.ls55_c00338{letter-spacing:-0.092800pt;}
.ls41_c00338{letter-spacing:-0.068053pt;}
.ls8f_c00338{letter-spacing:-0.061867pt;}
.ls80_c00338{letter-spacing:-0.043307pt;}
.ls3e_c00338{letter-spacing:-0.037120pt;}
.ls77_c00338{letter-spacing:-0.030933pt;}
.ls60_c00338{letter-spacing:-0.018560pt;}
.ls7b_c00338{letter-spacing:-0.006187pt;}
.ls3f_c00338{letter-spacing:0.000000pt;}
.lsd_c00338{letter-spacing:0.018560pt;}
.ls49_c00338{letter-spacing:0.024747pt;}
.ls73_c00338{letter-spacing:0.030933pt;}
.ls27_c00338{letter-spacing:0.049493pt;}
.ls17_c00338{letter-spacing:0.061867pt;}
.ls2c_c00338{letter-spacing:0.068053pt;}
.ls2f_c00338{letter-spacing:0.080427pt;}
.ls71_c00338{letter-spacing:0.111360pt;}
.ls36_c00338{letter-spacing:0.123733pt;}
.ls29_c00338{letter-spacing:0.142293pt;}
.ls1d_c00338{letter-spacing:0.160853pt;}
.ls5_c00338{letter-spacing:0.167040pt;}
.ls34_c00338{letter-spacing:0.191787pt;}
.ls23_c00338{letter-spacing:0.210347pt;}
.ls20_c00338{letter-spacing:0.222720pt;}
.ls1e_c00338{letter-spacing:0.235093pt;}
.ls2b_c00338{letter-spacing:0.272213pt;}
.ls2_c00338{letter-spacing:0.278400pt;}
.ls21_c00338{letter-spacing:0.284587pt;}
.ls31_c00338{letter-spacing:0.303147pt;}
.ls14_c00338{letter-spacing:0.315520pt;}
.ls78_c00338{letter-spacing:0.321707pt;}
.ls2e_c00338{letter-spacing:0.327893pt;}
.ls25_c00338{letter-spacing:0.340267pt;}
.ls22_c00338{letter-spacing:0.358827pt;}
.ls28_c00338{letter-spacing:0.395947pt;}
.ls1_c00338{letter-spacing:0.414507pt;}
.ls7_c00338{letter-spacing:0.426880pt;}
.ls8_c00338{letter-spacing:0.433067pt;}
.ls11_c00338{letter-spacing:0.464000pt;}
.ls24_c00338{letter-spacing:0.482560pt;}
.lsb_c00338{letter-spacing:0.494933pt;}
.ls32_c00338{letter-spacing:0.544427pt;}
.ls3_c00338{letter-spacing:0.575360pt;}
.ls30_c00338{letter-spacing:0.637227pt;}
.lse_c00338{letter-spacing:0.643413pt;}
.ls16_c00338{letter-spacing:0.668960pt;}
.lsa_c00338{letter-spacing:0.681013pt;}
.ls4_c00338{letter-spacing:0.748587pt;}
.ls19_c00338{letter-spacing:0.765387pt;}
.ls33_c00338{letter-spacing:0.785707pt;}
.lsf_c00338{letter-spacing:0.816640pt;}
.ls2d_c00338{letter-spacing:0.831680pt;}
.ls9_c00338{letter-spacing:0.837707pt;}
.ls1f_c00338{letter-spacing:0.890880pt;}
.ls15_c00338{letter-spacing:0.976320pt;}
.ls10_c00338{letter-spacing:1.002240pt;}
.ls0_c00338{letter-spacing:1.042613pt;}
.ls18_c00338{letter-spacing:1.084800pt;}
.ls2a_c00338{letter-spacing:1.102880pt;}
.ls1c_c00338{letter-spacing:1.114933pt;}
.ls1a_c00338{letter-spacing:1.199307pt;}
.lsc_c00338{letter-spacing:1.243520pt;}
.ls1b_c00338{letter-spacing:1.368053pt;}
.ls6_c00338{letter-spacing:1.379627pt;}
.ls37_c00338{letter-spacing:1.425280pt;}
.ls26_c00338{letter-spacing:1.460053pt;}
.ls13_c00338{letter-spacing:1.524747pt;}
.ls12_c00338{letter-spacing:2.314240pt;}
.ls35_c00338{letter-spacing:2.796373pt;}
.ws5_c00338{word-spacing:-15.015040pt;}
.ws3_c00338{word-spacing:-0.286720pt;}
.ws6_c00338{word-spacing:0.000000pt;}
.ws2_c00338{word-spacing:3.552000pt;}
.ws1_c00338{word-spacing:10.277920pt;}
.ws0_c00338{word-spacing:12.223733pt;}
.ws4_c00338{word-spacing:17.572800pt;}
._16_c00338{margin-left:-28.165653pt;}
._e_c00338{margin-left:-10.969707pt;}
._b_c00338{margin-left:-7.774400pt;}
._1c_c00338{margin-left:-5.491947pt;}
._c_c00338{margin-left:-4.261867pt;}
._15_c00338{margin-left:-1.926293pt;}
._a_c00338{margin-left:-0.897067pt;}
._f_c00338{width:1.107307pt;}
._d_c00338{width:2.808747pt;}
._8_c00338{width:4.058560pt;}
._7_c00338{width:5.134933pt;}
._9_c00338{width:6.805333pt;}
._5_c00338{width:8.092160pt;}
._14_c00338{width:9.007787pt;}
._0_c00338{width:10.245120pt;}
._3_c00338{width:11.228800pt;}
._6_c00338{width:12.763093pt;}
._4_c00338{width:13.920000pt;}
._1_c00338{width:16.215253pt;}
._2_c00338{width:18.027947pt;}
._12_c00338{width:19.791147pt;}
._10_c00338{width:21.009920pt;}
._19_c00338{width:22.525653pt;}
._11_c00338{width:23.620693pt;}
._17_c00338{width:25.043627pt;}
._18_c00338{width:27.202773pt;}
._13_c00338{width:28.836053pt;}
._1b_c00338{width:31.012053pt;}
._1a_c00338{width:32.096427pt;}
.fs6_c00338{font-size:28.800533pt;}
.fs4_c00338{font-size:46.080000pt;}
.fs5_c00338{font-size:47.360000pt;}
.fs7_c00338{font-size:50.133333pt;}
.fs0_c00338{font-size:54.400000pt;}
.fs1_c00338{font-size:60.266667pt;}
.fs2_c00338{font-size:61.866667pt;}
.fs3_c00338{font-size:63.466667pt;}
.y0_c00338{bottom:0.000000pt;}
.y1f_c00338{bottom:59.533333pt;}
.y1d_c00338{bottom:166.394133pt;}
.y1e_c00338{bottom:166.400000pt;}
.y1b_c00338{bottom:193.597867pt;}
.y1c_c00338{bottom:193.600000pt;}
.y1a_c00338{bottom:221.452267pt;}
.y19_c00338{bottom:248.642667pt;}
.y18_c00338{bottom:276.173333pt;}
.y17_c00338{bottom:330.893333pt;}
.y16_c00338{bottom:387.220267pt;}
.y15_c00338{bottom:414.720000pt;}
.y14_c00338{bottom:414.721600pt;}
.y13_c00338{bottom:442.252267pt;}
.y7_c00338{bottom:469.453333pt;}
.y12_c00338{bottom:496.973333pt;}
.y11_c00338{bottom:551.680000pt;}
.y10_c00338{bottom:578.880000pt;}
.yf_c00338{bottom:606.400000pt;}
.ye_c00338{bottom:633.933333pt;}
.yd_c00338{bottom:688.956800pt;}
.yc_c00338{bottom:715.853333pt;}
.yb_c00338{bottom:715.860267pt;}
.y9_c00338{bottom:771.196800pt;}
.ya_c00338{bottom:771.200000pt;}
.y8_c00338{bottom:798.093333pt;}
.y6_c00338{bottom:852.487467pt;}
.y5_c00338{bottom:879.693333pt;}
.y4_c00338{bottom:934.414400pt;}
.y3_c00338{bottom:961.620267pt;}
.y2_c00338{bottom:989.120000pt;}
.y1_c00338{bottom:1056.640000pt;}
.h6_c00338{height:31.541760pt;}
.h8_c00338{height:49.203125pt;}
.h2_c00338{height:53.390625pt;}
.h3_c00338{height:60.718750pt;}
.h5_c00338{height:60.723017pt;}
.h7_c00338{height:60.742217pt;}
.h4_c00338{height:63.962500pt;}
.h1_c00338{height:1122.666667pt;}
.h0_c00338{height:1122.880000pt;}
.w1_c00338{width:793.333333pt;}
.w0_c00338{width:793.600000pt;}
.x0_c00338{left:0.000000pt;}
.x1_c00338{left:118.973333pt;}
.x15_c00338{left:165.880000pt;}
.x2_c00338{left:166.866667pt;}
.x4_c00338{left:169.200533pt;}
.x11_c00338{left:179.240000pt;}
.x12_c00338{left:227.680000pt;}
.x5_c00338{left:229.586667pt;}
.x6_c00338{left:254.306667pt;}
.x16_c00338{left:276.493333pt;}
.x3_c00338{left:282.893333pt;}
.x17_c00338{left:342.880000pt;}
.x13_c00338{left:387.373333pt;}
.x14_c00338{left:407.653333pt;}
.x7_c00338{left:422.866667pt;}
.x8_c00338{left:447.906667pt;}
.xf_c00338{left:464.466667pt;}
.x10_c00338{left:490.080000pt;}
.xb_c00338{left:506.386667pt;}
.xc_c00338{left:530.693333pt;}
.xd_c00338{left:556.946667pt;}
.xe_c00338{left:581.666667pt;}
.x9_c00338{left:621.266667pt;}
.x18_c00338{left:631.200000pt;}
.xa_c00338{left:645.906667pt;}
}





/* 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_c00339 {
    display:none;
  }
  .loading-indicator_c00339.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00339 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_c00339 { 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_c00339" -> "#page-container .classname_c00339")
 */
.pf_c00339 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00339 { /* 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_c00339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00339 { /* 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_c00339 { /* 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_c00339 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00339 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00339 {overflow:visible;}
  }
}
.c_c00339 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00339 { /* 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_c00339:after { /* webkit #35443 */
  content: '';
}
.t_c00339:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00339 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 */
}
.__c00339 { /* 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_c00339 { /* info for Javascript */
  display:none;
}
.l_c00339 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00339 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00339 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00339: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_c00339 {
    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_c00339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00339.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_c00339 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00339;src:url('chunks/assets/font_047dee8bdd3822a3b774af5d.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.284668;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_c00339;src:url('chunks/assets/font_130b2015a9980c56b6df9fab.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.284180;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;}
.m7_c00339{transform:matrix(0.184729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184729,0.000000,0.000000,0.250000,0,0);}
.m6_c00339{transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);}
.ma_c00339{transform:matrix(0.208073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208073,0.000000,0.000000,0.250000,0,0);}
.m3_c00339{transform:matrix(0.239043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239043,0.000000,0.000000,0.250000,0,0);}
.mb_c00339{transform:matrix(0.244691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244691,0.000000,0.000000,0.250000,0,0);}
.m9_c00339{transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);}
.m4_c00339{transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);}
.m2_c00339{transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);}
.m1_c00339{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m0_c00339{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);}
.m8_c00339{transform:matrix(0.251331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251331,0.000000,0.000000,0.250000,0,0);}
.m5_c00339{transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257404,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls91_c00339{letter-spacing:-2.478000px;}
.ls62_c00339{letter-spacing:-2.457000px;}
.lsa7_c00339{letter-spacing:-2.309580px;}
.ls9c_c00339{letter-spacing:-2.289000px;}
.lsa8_c00339{letter-spacing:-2.226000px;}
.ls69_c00339{letter-spacing:-2.218320px;}
.ls87_c00339{letter-spacing:-2.204280px;}
.ls78_c00339{letter-spacing:-2.035800px;}
.ls9e_c00339{letter-spacing:-1.951560px;}
.ls5f_c00339{letter-spacing:-1.930500px;}
.ls59_c00339{letter-spacing:-1.916460px;}
.ls6d_c00339{letter-spacing:-1.853280px;}
.ls77_c00339{letter-spacing:-1.769040px;}
.ls4e_c00339{letter-spacing:-1.635660px;}
.ls60_c00339{letter-spacing:-1.628640px;}
.ls88_c00339{letter-spacing:-1.509300px;}
.lsa2_c00339{letter-spacing:-1.481220px;}
.ls98_c00339{letter-spacing:-1.446120px;}
.ls79_c00339{letter-spacing:-1.425060px;}
.ls6e_c00339{letter-spacing:-1.249560px;}
.ls72_c00339{letter-spacing:-1.165320px;}
.ls76_c00339{letter-spacing:-1.151280px;}
.ls6b_c00339{letter-spacing:-1.116180px;}
.ls73_c00339{letter-spacing:-0.989820px;}
.ls7f_c00339{letter-spacing:-0.947700px;}
.ls6c_c00339{letter-spacing:-0.877500px;}
.ls61_c00339{letter-spacing:-0.856440px;}
.ls66_c00339{letter-spacing:-0.842400px;}
.ls99_c00339{letter-spacing:-0.793260px;}
.ls90_c00339{letter-spacing:-0.766080px;}
.ls55_c00339{letter-spacing:-0.765180px;}
.ls52_c00339{letter-spacing:-0.744120px;}
.ls6f_c00339{letter-spacing:-0.702000px;}
.lsa5_c00339{letter-spacing:-0.687960px;}
.ls68_c00339{letter-spacing:-0.666900px;}
.lsa6_c00339{letter-spacing:-0.610740px;}
.ls6a_c00339{letter-spacing:-0.603720px;}
.ls8d_c00339{letter-spacing:-0.575640px;}
.lsa0_c00339{letter-spacing:-0.568620px;}
.ls67_c00339{letter-spacing:-0.526500px;}
.ls95_c00339{letter-spacing:-0.512460px;}
.ls8b_c00339{letter-spacing:-0.491400px;}
.ls7e_c00339{letter-spacing:-0.484380px;}
.ls89_c00339{letter-spacing:-0.470340px;}
.ls75_c00339{letter-spacing:-0.456300px;}
.ls71_c00339{letter-spacing:-0.435240px;}
.ls9f_c00339{letter-spacing:-0.414180px;}
.ls56_c00339{letter-spacing:-0.407160px;}
.ls92_c00339{letter-spacing:-0.372060px;}
.ls86_c00339{letter-spacing:-0.343980px;}
.ls96_c00339{letter-spacing:-0.336960px;}
.ls84_c00339{letter-spacing:-0.329940px;}
.ls4f_c00339{letter-spacing:-0.322920px;}
.ls63_c00339{letter-spacing:-0.301860px;}
.ls54_c00339{letter-spacing:-0.294840px;}
.lsa4_c00339{letter-spacing:-0.273780px;}
.ls5d_c00339{letter-spacing:-0.266760px;}
.ls58_c00339{letter-spacing:-0.259740px;}
.ls7c_c00339{letter-spacing:-0.245700px;}
.lsa1_c00339{letter-spacing:-0.224640px;}
.ls8e_c00339{letter-spacing:-0.217620px;}
.ls74_c00339{letter-spacing:-0.203580px;}
.ls5b_c00339{letter-spacing:-0.196560px;}
.ls65_c00339{letter-spacing:-0.189540px;}
.ls7a_c00339{letter-spacing:-0.182520px;}
.ls83_c00339{letter-spacing:-0.175500px;}
.ls5e_c00339{letter-spacing:-0.168480px;}
.ls85_c00339{letter-spacing:-0.161460px;}
.ls7d_c00339{letter-spacing:-0.154440px;}
.ls8c_c00339{letter-spacing:-0.147420px;}
.lsa3_c00339{letter-spacing:-0.140400px;}
.ls9d_c00339{letter-spacing:-0.133380px;}
.ls9b_c00339{letter-spacing:-0.119340px;}
.ls82_c00339{letter-spacing:-0.105300px;}
.ls70_c00339{letter-spacing:-0.070200px;}
.ls8a_c00339{letter-spacing:-0.063180px;}
.ls7b_c00339{letter-spacing:-0.056160px;}
.ls80_c00339{letter-spacing:-0.049140px;}
.ls64_c00339{letter-spacing:-0.042120px;}
.ls57_c00339{letter-spacing:-0.035100px;}
.ls53_c00339{letter-spacing:-0.028080px;}
.ls5c_c00339{letter-spacing:-0.014040px;}
.ls81_c00339{letter-spacing:-0.007020px;}
.ls50_c00339{letter-spacing:0.000000px;}
.ls30_c00339{letter-spacing:0.007020px;}
.ls5_c00339{letter-spacing:0.035100px;}
.ls29_c00339{letter-spacing:0.042120px;}
.ls3e_c00339{letter-spacing:0.049140px;}
.ls46_c00339{letter-spacing:0.070200px;}
.ls42_c00339{letter-spacing:0.077220px;}
.ls38_c00339{letter-spacing:0.098280px;}
.ls3a_c00339{letter-spacing:0.105300px;}
.ls33_c00339{letter-spacing:0.112320px;}
.ls24_c00339{letter-spacing:0.126360px;}
.ls9a_c00339{letter-spacing:0.133380px;}
.lsf_c00339{letter-spacing:0.147420px;}
.ls3f_c00339{letter-spacing:0.154440px;}
.ls44_c00339{letter-spacing:0.175500px;}
.ls34_c00339{letter-spacing:0.182520px;}
.ls47_c00339{letter-spacing:0.196560px;}
.ls3_c00339{letter-spacing:0.203580px;}
.ls35_c00339{letter-spacing:0.224640px;}
.ls4_c00339{letter-spacing:0.245700px;}
.ls17_c00339{letter-spacing:0.273780px;}
.ls25_c00339{letter-spacing:0.294840px;}
.ls39_c00339{letter-spacing:0.308880px;}
.ls16_c00339{letter-spacing:0.322920px;}
.ls4a_c00339{letter-spacing:0.329940px;}
.ls97_c00339{letter-spacing:0.343980px;}
.ls4c_c00339{letter-spacing:0.358020px;}
.ls40_c00339{letter-spacing:0.362520px;}
.ls51_c00339{letter-spacing:0.365040px;}
.ls10_c00339{letter-spacing:0.372060px;}
.lsc_c00339{letter-spacing:0.407160px;}
.ls2a_c00339{letter-spacing:0.414180px;}
.ls2f_c00339{letter-spacing:0.435240px;}
.ls2b_c00339{letter-spacing:0.442260px;}
.ls28_c00339{letter-spacing:0.449280px;}
.ls23_c00339{letter-spacing:0.456300px;}
.ls22_c00339{letter-spacing:0.477360px;}
.ls12_c00339{letter-spacing:0.484380px;}
.ls5a_c00339{letter-spacing:0.505440px;}
.ls37_c00339{letter-spacing:0.540540px;}
.ls6_c00339{letter-spacing:0.547560px;}
.ls18_c00339{letter-spacing:0.554580px;}
.ls32_c00339{letter-spacing:0.561600px;}
.ls3d_c00339{letter-spacing:0.568620px;}
.ls1_c00339{letter-spacing:0.575640px;}
.ls3c_c00339{letter-spacing:0.610740px;}
.lsb_c00339{letter-spacing:0.638820px;}
.lsa_c00339{letter-spacing:0.642960px;}
.ls1f_c00339{letter-spacing:0.652860px;}
.ls9_c00339{letter-spacing:0.656640px;}
.ls93_c00339{letter-spacing:0.663480px;}
.ls31_c00339{letter-spacing:0.680940px;}
.ls21_c00339{letter-spacing:0.694980px;}
.ls26_c00339{letter-spacing:0.730080px;}
.ls4b_c00339{letter-spacing:0.737100px;}
.ls43_c00339{letter-spacing:0.751140px;}
.ls20_c00339{letter-spacing:0.765180px;}
.ls2e_c00339{letter-spacing:0.772200px;}
.ls2c_c00339{letter-spacing:0.779220px;}
.ls13_c00339{letter-spacing:0.786240px;}
.ls14_c00339{letter-spacing:0.798600px;}
.ls27_c00339{letter-spacing:0.835380px;}
.ls7_c00339{letter-spacing:0.842400px;}
.ls0_c00339{letter-spacing:0.909720px;}
.ls48_c00339{letter-spacing:0.926640px;}
.ls3b_c00339{letter-spacing:1.024920px;}
.ls45_c00339{letter-spacing:1.067040px;}
.ls1e_c00339{letter-spacing:1.101240px;}
.ls2d_c00339{letter-spacing:1.172340px;}
.ls41_c00339{letter-spacing:1.190160px;}
.ls8_c00339{letter-spacing:1.193400px;}
.ls2_c00339{letter-spacing:1.263600px;}
.ls4d_c00339{letter-spacing:1.285200px;}
.ls19_c00339{letter-spacing:1.299600px;}
.ls1c_c00339{letter-spacing:1.381680px;}
.ls49_c00339{letter-spacing:1.425060px;}
.ls15_c00339{letter-spacing:1.656720px;}
.ls1a_c00339{letter-spacing:1.662120px;}
.ls1b_c00339{letter-spacing:1.682640px;}
.ls36_c00339{letter-spacing:1.769040px;}
.lse_c00339{letter-spacing:2.183220px;}
.ls1d_c00339{letter-spacing:2.277720px;}
.ls11_c00339{letter-spacing:3.208140px;}
.lsd_c00339{letter-spacing:3.257280px;}
.ls8f_c00339{letter-spacing:3.420000px;}
.ls94_c00339{letter-spacing:3.510000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{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__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00339{word-spacing:-0.395040px;}
.ws0_c00339{word-spacing:-0.233400px;}
.ws4_c00339{word-spacing:0.000000px;}
.ws1_c00339{word-spacing:3.067440px;}
.ws2_c00339{word-spacing:9.906240px;}
._8_c00339{margin-left:-10.909080px;}
._6_c00339{margin-left:-7.814100px;}
._0_c00339{margin-left:-3.889080px;}
._1_c00339{margin-left:-1.614600px;}
._3_c00339{width:1.404000px;}
._5_c00339{width:2.569320px;}
._2_c00339{width:3.573180px;}
._4_c00339{width:4.689360px;}
._7_c00339{width:6.477360px;}
._b_c00339{width:7.689960px;}
._a_c00339{width:8.810100px;}
._d_c00339{width:10.447560px;}
._9_c00339{width:11.526240px;}
._e_c00339{width:12.912480px;}
._c_c00339{width:14.229540px;}
._10_c00339{width:15.643680px;}
._16_c00339{width:18.993960px;}
._f_c00339{width:20.196540px;}
._15_c00339{width:22.744800px;}
._12_c00339{width:23.860980px;}
._11_c00339{width:25.658100px;}
._13_c00339{width:26.765460px;}
._14_c00339{width:29.600640px;}
.fc0_c00339{color:transparent;}
.fs0_c00339{font-size:61.200000px;}
.fs6_c00339{font-size:63.600000px;}
.fs5_c00339{font-size:65.400000px;}
.fs1_c00339{font-size:68.400000px;}
.fs2_c00339{font-size:70.200000px;}
.fs4_c00339{font-size:70.800000px;}
.fs3_c00339{font-size:72.600000px;}
.y0_c00339{bottom:0.000000px;}
.y23_c00339{bottom:75.975000px;}
.y22_c00339{bottom:133.211400px;}
.y21_c00339{bottom:164.152050px;}
.y20_c00339{bottom:195.127800px;}
.y1f_c00339{bottom:225.735000px;}
.y1e_c00339{bottom:225.736800px;}
.y1d_c00339{bottom:256.699350px;}
.y1c_c00339{bottom:287.640000px;}
.y1b_c00339{bottom:349.935000px;}
.y1a_c00339{bottom:349.940400px;}
.y18_c00339{bottom:413.651400px;}
.y19_c00339{bottom:413.655000px;}
.y17_c00339{bottom:444.592050px;}
.y16_c00339{bottom:475.199250px;}
.y15_c00339{bottom:506.171400px;}
.y14_c00339{bottom:536.778600px;}
.y13_c00339{bottom:567.736800px;}
.y12_c00339{bottom:598.695000px;}
.y11_c00339{bottom:598.696800px;}
.y10_c00339{bottom:629.655000px;}
.yf_c00339{bottom:691.200000px;}
.ye_c00339{bottom:722.167800px;}
.yd_c00339{bottom:752.775000px;}
.yb_c00339{bottom:814.690800px;}
.yc_c00339{bottom:814.695000px;}
.y9_c00339{bottom:845.994600px;}
.ya_c00339{bottom:846.000000px;}
.y7_c00339{bottom:907.558800px;}
.y8_c00339{bottom:907.560000px;}
.y6_c00339{bottom:937.815000px;}
.y5_c00339{bottom:999.718800px;}
.y4_c00339{bottom:1029.975000px;}
.y3_c00339{bottom:1091.879250px;}
.y2_c00339{bottom:1122.855000px;}
.y1_c00339{bottom:1199.520000px;}
.h2_c00339{height:60.064453px;}
.hb_c00339{height:62.419922px;}
.ha_c00339{height:64.186523px;}
.h7_c00339{height:67.097461px;}
.h8_c00339{height:68.875861px;}
.h3_c00339{height:68.897461px;}
.h6_c00339{height:68.911861px;}
.h5_c00339{height:68.914261px;}
.h9_c00339{height:69.486328px;}
.h4_c00339{height:71.217480px;}
.h1_c00339{height:1263.000000px;}
.h0_c00339{height:1263.240000px;}
.w1_c00339{width:892.500000px;}
.w0_c00339{width:892.800000px;}
.x0_c00339{left:0.000000px;}
.x17_c00339{left:119.489400px;}
.x3_c00339{left:120.975600px;}
.x1_c00339{left:122.685000px;}
.x16_c00339{left:172.965000px;}
.x8_c00339{left:174.162300px;}
.x2_c00339{left:175.485000px;}
.x5_c00339{left:177.366600px;}
.x6_c00339{left:245.325000px;}
.x1e_c00339{left:247.230000px;}
.x7_c00339{left:273.390000px;}
.x1f_c00339{left:278.745000px;}
.x1a_c00339{left:337.515000px;}
.x4_c00339{left:347.385000px;}
.x1b_c00339{left:354.480000px;}
.x9_c00339{left:365.565000px;}
.x18_c00339{left:380.730000px;}
.xa_c00339{left:394.665000px;}
.x19_c00339{left:400.530000px;}
.x23_c00339{left:423.630000px;}
.x1c_c00339{left:426.780000px;}
.xd_c00339{left:429.645000px;}
.xe_c00339{left:458.745000px;}
.x20_c00339{left:465.660000px;}
.x21_c00339{left:491.670000px;}
.x14_c00339{left:508.605000px;}
.x22_c00339{left:514.635000px;}
.x15_c00339{left:526.485000px;}
.x1d_c00339{left:595.725000px;}
.xf_c00339{left:598.965000px;}
.x10_c00339{left:619.050000px;}
.x11_c00339{left:657.855000px;}
.x12_c00339{left:677.325000px;}
.xb_c00339{left:688.845000px;}
.x13_c00339{left:708.945000px;}
.xc_c00339{left:717.375000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls91_c00339{letter-spacing:-2.202667pt;}
.ls62_c00339{letter-spacing:-2.184000pt;}
.lsa7_c00339{letter-spacing:-2.052960pt;}
.ls9c_c00339{letter-spacing:-2.034667pt;}
.lsa8_c00339{letter-spacing:-1.978667pt;}
.ls69_c00339{letter-spacing:-1.971840pt;}
.ls87_c00339{letter-spacing:-1.959360pt;}
.ls78_c00339{letter-spacing:-1.809600pt;}
.ls9e_c00339{letter-spacing:-1.734720pt;}
.ls5f_c00339{letter-spacing:-1.716000pt;}
.ls59_c00339{letter-spacing:-1.703520pt;}
.ls6d_c00339{letter-spacing:-1.647360pt;}
.ls77_c00339{letter-spacing:-1.572480pt;}
.ls4e_c00339{letter-spacing:-1.453920pt;}
.ls60_c00339{letter-spacing:-1.447680pt;}
.ls88_c00339{letter-spacing:-1.341600pt;}
.lsa2_c00339{letter-spacing:-1.316640pt;}
.ls98_c00339{letter-spacing:-1.285440pt;}
.ls79_c00339{letter-spacing:-1.266720pt;}
.ls6e_c00339{letter-spacing:-1.110720pt;}
.ls72_c00339{letter-spacing:-1.035840pt;}
.ls76_c00339{letter-spacing:-1.023360pt;}
.ls6b_c00339{letter-spacing:-0.992160pt;}
.ls73_c00339{letter-spacing:-0.879840pt;}
.ls7f_c00339{letter-spacing:-0.842400pt;}
.ls6c_c00339{letter-spacing:-0.780000pt;}
.ls61_c00339{letter-spacing:-0.761280pt;}
.ls66_c00339{letter-spacing:-0.748800pt;}
.ls99_c00339{letter-spacing:-0.705120pt;}
.ls90_c00339{letter-spacing:-0.680960pt;}
.ls55_c00339{letter-spacing:-0.680160pt;}
.ls52_c00339{letter-spacing:-0.661440pt;}
.ls6f_c00339{letter-spacing:-0.624000pt;}
.lsa5_c00339{letter-spacing:-0.611520pt;}
.ls68_c00339{letter-spacing:-0.592800pt;}
.lsa6_c00339{letter-spacing:-0.542880pt;}
.ls6a_c00339{letter-spacing:-0.536640pt;}
.ls8d_c00339{letter-spacing:-0.511680pt;}
.lsa0_c00339{letter-spacing:-0.505440pt;}
.ls67_c00339{letter-spacing:-0.468000pt;}
.ls95_c00339{letter-spacing:-0.455520pt;}
.ls8b_c00339{letter-spacing:-0.436800pt;}
.ls7e_c00339{letter-spacing:-0.430560pt;}
.ls89_c00339{letter-spacing:-0.418080pt;}
.ls75_c00339{letter-spacing:-0.405600pt;}
.ls71_c00339{letter-spacing:-0.386880pt;}
.ls9f_c00339{letter-spacing:-0.368160pt;}
.ls56_c00339{letter-spacing:-0.361920pt;}
.ls92_c00339{letter-spacing:-0.330720pt;}
.ls86_c00339{letter-spacing:-0.305760pt;}
.ls96_c00339{letter-spacing:-0.299520pt;}
.ls84_c00339{letter-spacing:-0.293280pt;}
.ls4f_c00339{letter-spacing:-0.287040pt;}
.ls63_c00339{letter-spacing:-0.268320pt;}
.ls54_c00339{letter-spacing:-0.262080pt;}
.lsa4_c00339{letter-spacing:-0.243360pt;}
.ls5d_c00339{letter-spacing:-0.237120pt;}
.ls58_c00339{letter-spacing:-0.230880pt;}
.ls7c_c00339{letter-spacing:-0.218400pt;}
.lsa1_c00339{letter-spacing:-0.199680pt;}
.ls8e_c00339{letter-spacing:-0.193440pt;}
.ls74_c00339{letter-spacing:-0.180960pt;}
.ls5b_c00339{letter-spacing:-0.174720pt;}
.ls65_c00339{letter-spacing:-0.168480pt;}
.ls7a_c00339{letter-spacing:-0.162240pt;}
.ls83_c00339{letter-spacing:-0.156000pt;}
.ls5e_c00339{letter-spacing:-0.149760pt;}
.ls85_c00339{letter-spacing:-0.143520pt;}
.ls7d_c00339{letter-spacing:-0.137280pt;}
.ls8c_c00339{letter-spacing:-0.131040pt;}
.lsa3_c00339{letter-spacing:-0.124800pt;}
.ls9d_c00339{letter-spacing:-0.118560pt;}
.ls9b_c00339{letter-spacing:-0.106080pt;}
.ls82_c00339{letter-spacing:-0.093600pt;}
.ls70_c00339{letter-spacing:-0.062400pt;}
.ls8a_c00339{letter-spacing:-0.056160pt;}
.ls7b_c00339{letter-spacing:-0.049920pt;}
.ls80_c00339{letter-spacing:-0.043680pt;}
.ls64_c00339{letter-spacing:-0.037440pt;}
.ls57_c00339{letter-spacing:-0.031200pt;}
.ls53_c00339{letter-spacing:-0.024960pt;}
.ls5c_c00339{letter-spacing:-0.012480pt;}
.ls81_c00339{letter-spacing:-0.006240pt;}
.ls50_c00339{letter-spacing:0.000000pt;}
.ls30_c00339{letter-spacing:0.006240pt;}
.ls5_c00339{letter-spacing:0.031200pt;}
.ls29_c00339{letter-spacing:0.037440pt;}
.ls3e_c00339{letter-spacing:0.043680pt;}
.ls46_c00339{letter-spacing:0.062400pt;}
.ls42_c00339{letter-spacing:0.068640pt;}
.ls38_c00339{letter-spacing:0.087360pt;}
.ls3a_c00339{letter-spacing:0.093600pt;}
.ls33_c00339{letter-spacing:0.099840pt;}
.ls24_c00339{letter-spacing:0.112320pt;}
.ls9a_c00339{letter-spacing:0.118560pt;}
.lsf_c00339{letter-spacing:0.131040pt;}
.ls3f_c00339{letter-spacing:0.137280pt;}
.ls44_c00339{letter-spacing:0.156000pt;}
.ls34_c00339{letter-spacing:0.162240pt;}
.ls47_c00339{letter-spacing:0.174720pt;}
.ls3_c00339{letter-spacing:0.180960pt;}
.ls35_c00339{letter-spacing:0.199680pt;}
.ls4_c00339{letter-spacing:0.218400pt;}
.ls17_c00339{letter-spacing:0.243360pt;}
.ls25_c00339{letter-spacing:0.262080pt;}
.ls39_c00339{letter-spacing:0.274560pt;}
.ls16_c00339{letter-spacing:0.287040pt;}
.ls4a_c00339{letter-spacing:0.293280pt;}
.ls97_c00339{letter-spacing:0.305760pt;}
.ls4c_c00339{letter-spacing:0.318240pt;}
.ls40_c00339{letter-spacing:0.322240pt;}
.ls51_c00339{letter-spacing:0.324480pt;}
.ls10_c00339{letter-spacing:0.330720pt;}
.lsc_c00339{letter-spacing:0.361920pt;}
.ls2a_c00339{letter-spacing:0.368160pt;}
.ls2f_c00339{letter-spacing:0.386880pt;}
.ls2b_c00339{letter-spacing:0.393120pt;}
.ls28_c00339{letter-spacing:0.399360pt;}
.ls23_c00339{letter-spacing:0.405600pt;}
.ls22_c00339{letter-spacing:0.424320pt;}
.ls12_c00339{letter-spacing:0.430560pt;}
.ls5a_c00339{letter-spacing:0.449280pt;}
.ls37_c00339{letter-spacing:0.480480pt;}
.ls6_c00339{letter-spacing:0.486720pt;}
.ls18_c00339{letter-spacing:0.492960pt;}
.ls32_c00339{letter-spacing:0.499200pt;}
.ls3d_c00339{letter-spacing:0.505440pt;}
.ls1_c00339{letter-spacing:0.511680pt;}
.ls3c_c00339{letter-spacing:0.542880pt;}
.lsb_c00339{letter-spacing:0.567840pt;}
.lsa_c00339{letter-spacing:0.571520pt;}
.ls1f_c00339{letter-spacing:0.580320pt;}
.ls9_c00339{letter-spacing:0.583680pt;}
.ls93_c00339{letter-spacing:0.589760pt;}
.ls31_c00339{letter-spacing:0.605280pt;}
.ls21_c00339{letter-spacing:0.617760pt;}
.ls26_c00339{letter-spacing:0.648960pt;}
.ls4b_c00339{letter-spacing:0.655200pt;}
.ls43_c00339{letter-spacing:0.667680pt;}
.ls20_c00339{letter-spacing:0.680160pt;}
.ls2e_c00339{letter-spacing:0.686400pt;}
.ls2c_c00339{letter-spacing:0.692640pt;}
.ls13_c00339{letter-spacing:0.698880pt;}
.ls14_c00339{letter-spacing:0.709867pt;}
.ls27_c00339{letter-spacing:0.742560pt;}
.ls7_c00339{letter-spacing:0.748800pt;}
.ls0_c00339{letter-spacing:0.808640pt;}
.ls48_c00339{letter-spacing:0.823680pt;}
.ls3b_c00339{letter-spacing:0.911040pt;}
.ls45_c00339{letter-spacing:0.948480pt;}
.ls1e_c00339{letter-spacing:0.978880pt;}
.ls2d_c00339{letter-spacing:1.042080pt;}
.ls41_c00339{letter-spacing:1.057920pt;}
.ls8_c00339{letter-spacing:1.060800pt;}
.ls2_c00339{letter-spacing:1.123200pt;}
.ls4d_c00339{letter-spacing:1.142400pt;}
.ls19_c00339{letter-spacing:1.155200pt;}
.ls1c_c00339{letter-spacing:1.228160pt;}
.ls49_c00339{letter-spacing:1.266720pt;}
.ls15_c00339{letter-spacing:1.472640pt;}
.ls1a_c00339{letter-spacing:1.477440pt;}
.ls1b_c00339{letter-spacing:1.495680pt;}
.ls36_c00339{letter-spacing:1.572480pt;}
.lse_c00339{letter-spacing:1.940640pt;}
.ls1d_c00339{letter-spacing:2.024640pt;}
.ls11_c00339{letter-spacing:2.851680pt;}
.lsd_c00339{letter-spacing:2.895360pt;}
.ls8f_c00339{letter-spacing:3.040000pt;}
.ls94_c00339{letter-spacing:3.120000pt;}
.ws3_c00339{word-spacing:-0.351147pt;}
.ws0_c00339{word-spacing:-0.207467pt;}
.ws4_c00339{word-spacing:0.000000pt;}
.ws1_c00339{word-spacing:2.726613pt;}
.ws2_c00339{word-spacing:8.805547pt;}
._8_c00339{margin-left:-9.696960pt;}
._6_c00339{margin-left:-6.945867pt;}
._0_c00339{margin-left:-3.456960pt;}
._1_c00339{margin-left:-1.435200pt;}
._3_c00339{width:1.248000pt;}
._5_c00339{width:2.283840pt;}
._2_c00339{width:3.176160pt;}
._4_c00339{width:4.168320pt;}
._7_c00339{width:5.757653pt;}
._b_c00339{width:6.835520pt;}
._a_c00339{width:7.831200pt;}
._d_c00339{width:9.286720pt;}
._9_c00339{width:10.245547pt;}
._e_c00339{width:11.477760pt;}
._c_c00339{width:12.648480pt;}
._10_c00339{width:13.905493pt;}
._16_c00339{width:16.883520pt;}
._f_c00339{width:17.952480pt;}
._15_c00339{width:20.217600pt;}
._12_c00339{width:21.209760pt;}
._11_c00339{width:22.807200pt;}
._13_c00339{width:23.791520pt;}
._14_c00339{width:26.311680pt;}
.fs0_c00339{font-size:54.400000pt;}
.fs6_c00339{font-size:56.533333pt;}
.fs5_c00339{font-size:58.133333pt;}
.fs1_c00339{font-size:60.800000pt;}
.fs2_c00339{font-size:62.400000pt;}
.fs4_c00339{font-size:62.933333pt;}
.fs3_c00339{font-size:64.533333pt;}
.y0_c00339{bottom:0.000000pt;}
.y23_c00339{bottom:67.533333pt;}
.y22_c00339{bottom:118.410133pt;}
.y21_c00339{bottom:145.912933pt;}
.y20_c00339{bottom:173.446933pt;}
.y1f_c00339{bottom:200.653333pt;}
.y1e_c00339{bottom:200.654933pt;}
.y1d_c00339{bottom:228.177200pt;}
.y1c_c00339{bottom:255.680000pt;}
.y1b_c00339{bottom:311.053333pt;}
.y1a_c00339{bottom:311.058133pt;}
.y18_c00339{bottom:367.690133pt;}
.y19_c00339{bottom:367.693333pt;}
.y17_c00339{bottom:395.192933pt;}
.y16_c00339{bottom:422.399333pt;}
.y15_c00339{bottom:449.930133pt;}
.y14_c00339{bottom:477.136533pt;}
.y13_c00339{bottom:504.654933pt;}
.y12_c00339{bottom:532.173333pt;}
.y11_c00339{bottom:532.174933pt;}
.y10_c00339{bottom:559.693333pt;}
.yf_c00339{bottom:614.400000pt;}
.ye_c00339{bottom:641.926933pt;}
.yd_c00339{bottom:669.133333pt;}
.yb_c00339{bottom:724.169600pt;}
.yc_c00339{bottom:724.173333pt;}
.y9_c00339{bottom:751.995200pt;}
.ya_c00339{bottom:752.000000pt;}
.y7_c00339{bottom:806.718933pt;}
.y8_c00339{bottom:806.720000pt;}
.y6_c00339{bottom:833.613333pt;}
.y5_c00339{bottom:888.638933pt;}
.y4_c00339{bottom:915.533333pt;}
.y3_c00339{bottom:970.559333pt;}
.y2_c00339{bottom:998.093333pt;}
.y1_c00339{bottom:1066.240000pt;}
.h2_c00339{height:53.390625pt;}
.hb_c00339{height:55.484375pt;}
.ha_c00339{height:57.054688pt;}
.h7_c00339{height:59.642187pt;}
.h8_c00339{height:61.222988pt;}
.h3_c00339{height:61.242187pt;}
.h6_c00339{height:61.254988pt;}
.h5_c00339{height:61.257121pt;}
.h9_c00339{height:61.765625pt;}
.h4_c00339{height:63.304427pt;}
.h1_c00339{height:1122.666667pt;}
.h0_c00339{height:1122.880000pt;}
.w1_c00339{width:793.333333pt;}
.w0_c00339{width:793.600000pt;}
.x0_c00339{left:0.000000pt;}
.x17_c00339{left:106.212800pt;}
.x3_c00339{left:107.533867pt;}
.x1_c00339{left:109.053333pt;}
.x16_c00339{left:153.746667pt;}
.x8_c00339{left:154.810933pt;}
.x2_c00339{left:155.986667pt;}
.x5_c00339{left:157.659200pt;}
.x6_c00339{left:218.066667pt;}
.x1e_c00339{left:219.760000pt;}
.x7_c00339{left:243.013333pt;}
.x1f_c00339{left:247.773333pt;}
.x1a_c00339{left:300.013333pt;}
.x4_c00339{left:308.786667pt;}
.x1b_c00339{left:315.093333pt;}
.x9_c00339{left:324.946667pt;}
.x18_c00339{left:338.426667pt;}
.xa_c00339{left:350.813333pt;}
.x19_c00339{left:356.026667pt;}
.x23_c00339{left:376.560000pt;}
.x1c_c00339{left:379.360000pt;}
.xd_c00339{left:381.906667pt;}
.xe_c00339{left:407.773333pt;}
.x20_c00339{left:413.920000pt;}
.x21_c00339{left:437.040000pt;}
.x14_c00339{left:452.093333pt;}
.x22_c00339{left:457.453333pt;}
.x15_c00339{left:467.986667pt;}
.x1d_c00339{left:529.533333pt;}
.xf_c00339{left:532.413333pt;}
.x10_c00339{left:550.266667pt;}
.x11_c00339{left:584.760000pt;}
.x12_c00339{left:602.066667pt;}
.xb_c00339{left:612.306667pt;}
.x13_c00339{left:630.173333pt;}
.xc_c00339{left:637.666667pt;}
}





/* 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_c00340 {
    display:none;
  }
  .loading-indicator_c00340.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00340 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_c00340 { 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_c00340" -> "#page-container .classname_c00340")
 */
.pf_c00340 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00340 { /* 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_c00340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00340 { /* 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_c00340 { /* 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_c00340 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00340 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00340 {overflow:visible;}
  }
}
.c_c00340 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00340 { /* 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_c00340:after { /* webkit #35443 */
  content: '';
}
.t_c00340:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00340 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 */
}
.__c00340 { /* 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_c00340 { /* info for Javascript */
  display:none;
}
.l_c00340 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00340 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00340 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00340: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_c00340 {
    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_c00340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00340.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_c00340 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00340;src:url('chunks/assets/font_b3ee53a87118ec70e21addb2.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.284668;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_c00340;src:url('chunks/assets/font_fc0e2488fcece9da141271ee.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.284180;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_c00340;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;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;}
.m6_c00340{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m7_c00340{transform:matrix(0.244841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244841,0.000000,0.000000,0.250000,0,0);}
.m3_c00340{transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);}
.m0_c00340{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);}
.m2_c00340{transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);}
.m4_c00340{transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);}
.m1_c00340{transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);}
.m5_c00340{transform:matrix(0.255670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255670,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.v1_c00340{vertical-align:27.295200px;}
.ls80_c00340{letter-spacing:-2.415000px;}
.ls77_c00340{letter-spacing:-2.373000px;}
.ls71_c00340{letter-spacing:-1.891620px;}
.ls70_c00340{letter-spacing:-1.410240px;}
.ls78_c00340{letter-spacing:-0.949200px;}
.ls75_c00340{letter-spacing:-0.867840px;}
.ls6f_c00340{letter-spacing:-0.745800px;}
.ls76_c00340{letter-spacing:-0.739020px;}
.ls6b_c00340{letter-spacing:-0.664440px;}
.ls89_c00340{letter-spacing:-0.622740px;}
.ls74_c00340{letter-spacing:-0.257640px;}
.ls83_c00340{letter-spacing:-0.162720px;}
.ls79_c00340{letter-spacing:-0.135600px;}
.ls82_c00340{letter-spacing:-0.128820px;}
.ls72_c00340{letter-spacing:-0.108480px;}
.ls84_c00340{letter-spacing:-0.074580px;}
.ls87_c00340{letter-spacing:-0.067800px;}
.ls73_c00340{letter-spacing:-0.013560px;}
.ls6a_c00340{letter-spacing:0.000000px;}
.ls44_c00340{letter-spacing:0.013560px;}
.ls4_c00340{letter-spacing:0.033900px;}
.ls85_c00340{letter-spacing:0.040680px;}
.ls21_c00340{letter-spacing:0.054240px;}
.ls32_c00340{letter-spacing:0.081360px;}
.ls49_c00340{letter-spacing:0.128820px;}
.ls22_c00340{letter-spacing:0.142380px;}
.ls20_c00340{letter-spacing:0.155940px;}
.ls5c_c00340{letter-spacing:0.196620px;}
.ls60_c00340{letter-spacing:0.210180px;}
.lse_c00340{letter-spacing:0.216960px;}
.ls62_c00340{letter-spacing:0.223740px;}
.ls4a_c00340{letter-spacing:0.311880px;}
.ls7a_c00340{letter-spacing:0.325440px;}
.ls29_c00340{letter-spacing:0.339000px;}
.ls58_c00340{letter-spacing:0.467820px;}
.ls88_c00340{letter-spacing:0.488160px;}
.ls12_c00340{letter-spacing:0.494940px;}
.ls51_c00340{letter-spacing:0.501720px;}
.ls86_c00340{letter-spacing:0.522060px;}
.ls7f_c00340{letter-spacing:0.528840px;}
.ls34_c00340{letter-spacing:0.542400px;}
.ls42_c00340{letter-spacing:0.562740px;}
.ls18_c00340{letter-spacing:0.583080px;}
.ls19_c00340{letter-spacing:0.603420px;}
.ls64_c00340{letter-spacing:0.610200px;}
.ls27_c00340{letter-spacing:0.623760px;}
.ls41_c00340{letter-spacing:0.630540px;}
.ls33_c00340{letter-spacing:0.637320px;}
.ls38_c00340{letter-spacing:0.644100px;}
.lsd_c00340{letter-spacing:0.657660px;}
.ls7_c00340{letter-spacing:0.678000px;}
.ls8_c00340{letter-spacing:0.691560px;}
.ls3b_c00340{letter-spacing:0.698340px;}
.ls16_c00340{letter-spacing:0.705120px;}
.ls25_c00340{letter-spacing:0.718680px;}
.ls7e_c00340{letter-spacing:0.725460px;}
.ls1b_c00340{letter-spacing:0.752580px;}
.ls14_c00340{letter-spacing:0.759360px;}
.ls6c_c00340{letter-spacing:0.766140px;}
.ls2e_c00340{letter-spacing:0.793260px;}
.ls4f_c00340{letter-spacing:0.800040px;}
.ls3c_c00340{letter-spacing:0.806820px;}
.lsc_c00340{letter-spacing:0.813600px;}
.ls31_c00340{letter-spacing:0.820380px;}
.ls30_c00340{letter-spacing:0.833940px;}
.ls13_c00340{letter-spacing:0.840720px;}
.ls46_c00340{letter-spacing:0.854280px;}
.ls3_c00340{letter-spacing:0.861060px;}
.ls5a_c00340{letter-spacing:0.867840px;}
.ls4c_c00340{letter-spacing:0.881400px;}
.lsa_c00340{letter-spacing:0.901740px;}
.ls61_c00340{letter-spacing:0.915300px;}
.ls68_c00340{letter-spacing:0.928860px;}
.ls1a_c00340{letter-spacing:0.935640px;}
.ls5d_c00340{letter-spacing:0.949200px;}
.ls37_c00340{letter-spacing:0.955980px;}
.ls4d_c00340{letter-spacing:0.962760px;}
.ls2b_c00340{letter-spacing:0.969540px;}
.ls48_c00340{letter-spacing:0.983100px;}
.ls5_c00340{letter-spacing:1.010220px;}
.ls39_c00340{letter-spacing:1.017000px;}
.ls1d_c00340{letter-spacing:1.037340px;}
.ls9_c00340{letter-spacing:1.050900px;}
.ls3f_c00340{letter-spacing:1.064460px;}
.ls50_c00340{letter-spacing:1.091580px;}
.ls7b_c00340{letter-spacing:1.105140px;}
.ls0_c00340{letter-spacing:1.172940px;}
.ls40_c00340{letter-spacing:1.179720px;}
.ls53_c00340{letter-spacing:1.213620px;}
.lsb_c00340{letter-spacing:1.220400px;}
.lsf_c00340{letter-spacing:1.240740px;}
.ls2f_c00340{letter-spacing:1.261080px;}
.ls26_c00340{letter-spacing:1.267860px;}
.ls43_c00340{letter-spacing:1.288200px;}
.ls24_c00340{letter-spacing:1.294560px;}
.ls2a_c00340{letter-spacing:1.294980px;}
.ls35_c00340{letter-spacing:1.349220px;}
.ls6e_c00340{letter-spacing:1.362780px;}
.ls2c_c00340{letter-spacing:1.376340px;}
.ls2d_c00340{letter-spacing:1.383120px;}
.ls4b_c00340{letter-spacing:1.444140px;}
.ls52_c00340{letter-spacing:1.457700px;}
.ls1_c00340{letter-spacing:1.464480px;}
.ls57_c00340{letter-spacing:1.478040px;}
.ls11_c00340{letter-spacing:1.484820px;}
.ls81_c00340{letter-spacing:1.505160px;}
.ls65_c00340{letter-spacing:1.511940px;}
.ls4e_c00340{letter-spacing:1.539060px;}
.ls69_c00340{letter-spacing:1.557420px;}
.ls56_c00340{letter-spacing:1.566180px;}
.ls54_c00340{letter-spacing:1.613640px;}
.ls45_c00340{letter-spacing:1.667880px;}
.ls66_c00340{letter-spacing:1.722120px;}
.ls1c_c00340{letter-spacing:1.742460px;}
.ls17_c00340{letter-spacing:1.756020px;}
.ls47_c00340{letter-spacing:1.762800px;}
.ls1e_c00340{letter-spacing:1.783140px;}
.ls5e_c00340{letter-spacing:1.817040px;}
.ls6_c00340{letter-spacing:1.830600px;}
.ls1f_c00340{letter-spacing:1.871280px;}
.ls7d_c00340{letter-spacing:1.891620px;}
.ls3e_c00340{letter-spacing:1.918740px;}
.ls36_c00340{letter-spacing:1.925520px;}
.ls63_c00340{letter-spacing:1.932300px;}
.ls23_c00340{letter-spacing:1.983600px;}
.ls5b_c00340{letter-spacing:2.115360px;}
.ls2_c00340{letter-spacing:2.122140px;}
.ls5f_c00340{letter-spacing:2.156040px;}
.ls7c_c00340{letter-spacing:2.162820px;}
.ls55_c00340{letter-spacing:2.203500px;}
.ls59_c00340{letter-spacing:2.454360px;}
.ls3a_c00340{letter-spacing:2.562840px;}
.ls10_c00340{letter-spacing:2.637420px;}
.ls28_c00340{letter-spacing:2.698440px;}
.ls67_c00340{letter-spacing:2.881500px;}
.ls15_c00340{letter-spacing:2.942520px;}
.ls3d_c00340{letter-spacing:3.356100px;}
.ls6d_c00340{letter-spacing:3.390000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{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__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00340{word-spacing:-16.936440px;}
.ws7_c00340{word-spacing:0.000000px;}
.ws0_c00340{word-spacing:2.678100px;}
.ws1_c00340{word-spacing:3.667980px;}
.ws3_c00340{word-spacing:4.339200px;}
.ws6_c00340{word-spacing:13.431180px;}
.ws5_c00340{word-spacing:14.227800px;}
.ws2_c00340{word-spacing:23.187600px;}
._13_c00340{margin-left:-11.546340px;}
._e_c00340{margin-left:-10.509600px;}
._a_c00340{margin-left:-8.169900px;}
._14_c00340{margin-left:-5.498580px;}
._b_c00340{margin-left:-3.769680px;}
._9_c00340{margin-left:-2.718780px;}
._d_c00340{margin-left:-1.566180px;}
._0_c00340{width:1.328880px;}
._c_c00340{width:2.454360px;}
._3_c00340{width:3.613740px;}
._1_c00340{width:4.630740px;}
._17_c00340{width:5.742660px;}
._2_c00340{width:6.813900px;}
._10_c00340{width:8.814000px;}
._8_c00340{width:9.892020px;}
._11_c00340{width:11.051400px;}
._16_c00340{width:12.163320px;}
._5_c00340{width:13.329480px;}
._4_c00340{width:14.441400px;}
._18_c00340{width:16.631340px;}
._12_c00340{width:17.695800px;}
._7_c00340{width:18.970440px;}
._19_c00340{width:20.068800px;}
._6_c00340{width:21.967200px;}
._f_c00340{width:24.936840px;}
._15_c00340{width:26.943720px;}
.fc0_c00340{color:transparent;}
.fs5_c00340{font-size:32.400600px;}
.fs6_c00340{font-size:58.200000px;}
.fs0_c00340{font-size:60.600000px;}
.fs3_c00340{font-size:67.200000px;}
.fs1_c00340{font-size:67.800000px;}
.fs4_c00340{font-size:69.000000px;}
.fs2_c00340{font-size:69.600000px;}
.y0_c00340{bottom:0.000000px;}
.y1e_c00340{bottom:69.495000px;}
.y1d_c00340{bottom:157.675200px;}
.y1c_c00340{bottom:187.558050px;}
.y1b_c00340{bottom:250.205250px;}
.y1a_c00340{bottom:280.800000px;}
.y19_c00340{bottom:342.376200px;}
.y18_c00340{bottom:372.615000px;}
.y17_c00340{bottom:434.895000px;}
.y16_c00340{bottom:434.903550px;}
.y15_c00340{bottom:467.295000px;}
.y14_c00340{bottom:467.297100px;}
.y13_c00340{bottom:530.300250px;}
.y12_c00340{bottom:560.895000px;}
.y11_c00340{bottom:560.900250px;}
.y10_c00340{bottom:592.206900px;}
.yf_c00340{bottom:622.801650px;}
.ye_c00340{bottom:684.720000px;}
.yd_c00340{bottom:715.695000px;}
.yc_c00340{bottom:763.200000px;}
.yb_c00340{bottom:777.609000px;}
.ya_c00340{bottom:808.203750px;}
.y9_c00340{bottom:870.495000px;}
.y8_c00340{bottom:900.015000px;}
.y7_c00340{bottom:961.560000px;}
.y6_c00340{bottom:992.535000px;}
.y5_c00340{bottom:992.545050px;}
.y4_c00340{bottom:1054.090500px;}
.y3_c00340{bottom:1084.702200px;}
.y2_c00340{bottom:1115.280000px;}
.y1_c00340{bottom:1190.895000px;}
.h8_c00340{height:57.120117px;}
.h2_c00340{height:59.475586px;}
.h4_c00340{height:66.508887px;}
.h3_c00340{height:66.541992px;}
.h7_c00340{height:67.719727px;}
.h5_c00340{height:68.274609px;}
.h6_c00340{height:70.087500px;}
.h1_c00340{height:1263.000000px;}
.h0_c00340{height:1263.240000px;}
.w1_c00340{width:892.500000px;}
.w0_c00340{width:892.800000px;}
.x0_c00340{left:0.000000px;}
.x13_c00340{left:121.279950px;}
.x1_c00340{left:122.325000px;}
.x14_c00340{left:174.045300px;}
.x2_c00340{left:175.125000px;}
.x7_c00340{left:177.750000px;}
.xa_c00340{left:208.800000px;}
.xb_c00340{left:235.245000px;}
.x10_c00340{left:269.580000px;}
.xc_c00340{left:281.505000px;}
.xd_c00340{left:309.060000px;}
.x6_c00340{left:312.120000px;}
.x4_c00340{left:369.210000px;}
.x5_c00340{left:386.175000px;}
.x15_c00340{left:422.550000px;}
.x11_c00340{left:450.915000px;}
.x8_c00340{left:459.825000px;}
.x12_c00340{left:507.045000px;}
.x9_c00340{left:569.700000px;}
.xe_c00340{left:672.060000px;}
.xf_c00340{left:705.780000px;}
.x3_c00340{left:730.350000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.v1_c00340{vertical-align:24.262400pt;}
.ls80_c00340{letter-spacing:-2.146667pt;}
.ls77_c00340{letter-spacing:-2.109333pt;}
.ls71_c00340{letter-spacing:-1.681440pt;}
.ls70_c00340{letter-spacing:-1.253547pt;}
.ls78_c00340{letter-spacing:-0.843733pt;}
.ls75_c00340{letter-spacing:-0.771413pt;}
.ls6f_c00340{letter-spacing:-0.662933pt;}
.ls76_c00340{letter-spacing:-0.656907pt;}
.ls6b_c00340{letter-spacing:-0.590613pt;}
.ls89_c00340{letter-spacing:-0.553547pt;}
.ls74_c00340{letter-spacing:-0.229013pt;}
.ls83_c00340{letter-spacing:-0.144640pt;}
.ls79_c00340{letter-spacing:-0.120533pt;}
.ls82_c00340{letter-spacing:-0.114507pt;}
.ls72_c00340{letter-spacing:-0.096427pt;}
.ls84_c00340{letter-spacing:-0.066293pt;}
.ls87_c00340{letter-spacing:-0.060267pt;}
.ls73_c00340{letter-spacing:-0.012053pt;}
.ls6a_c00340{letter-spacing:0.000000pt;}
.ls44_c00340{letter-spacing:0.012053pt;}
.ls4_c00340{letter-spacing:0.030133pt;}
.ls85_c00340{letter-spacing:0.036160pt;}
.ls21_c00340{letter-spacing:0.048213pt;}
.ls32_c00340{letter-spacing:0.072320pt;}
.ls49_c00340{letter-spacing:0.114507pt;}
.ls22_c00340{letter-spacing:0.126560pt;}
.ls20_c00340{letter-spacing:0.138613pt;}
.ls5c_c00340{letter-spacing:0.174773pt;}
.ls60_c00340{letter-spacing:0.186827pt;}
.lse_c00340{letter-spacing:0.192853pt;}
.ls62_c00340{letter-spacing:0.198880pt;}
.ls4a_c00340{letter-spacing:0.277227pt;}
.ls7a_c00340{letter-spacing:0.289280pt;}
.ls29_c00340{letter-spacing:0.301333pt;}
.ls58_c00340{letter-spacing:0.415840pt;}
.ls88_c00340{letter-spacing:0.433920pt;}
.ls12_c00340{letter-spacing:0.439947pt;}
.ls51_c00340{letter-spacing:0.445973pt;}
.ls86_c00340{letter-spacing:0.464053pt;}
.ls7f_c00340{letter-spacing:0.470080pt;}
.ls34_c00340{letter-spacing:0.482133pt;}
.ls42_c00340{letter-spacing:0.500213pt;}
.ls18_c00340{letter-spacing:0.518293pt;}
.ls19_c00340{letter-spacing:0.536373pt;}
.ls64_c00340{letter-spacing:0.542400pt;}
.ls27_c00340{letter-spacing:0.554453pt;}
.ls41_c00340{letter-spacing:0.560480pt;}
.ls33_c00340{letter-spacing:0.566507pt;}
.ls38_c00340{letter-spacing:0.572533pt;}
.lsd_c00340{letter-spacing:0.584587pt;}
.ls7_c00340{letter-spacing:0.602667pt;}
.ls8_c00340{letter-spacing:0.614720pt;}
.ls3b_c00340{letter-spacing:0.620747pt;}
.ls16_c00340{letter-spacing:0.626773pt;}
.ls25_c00340{letter-spacing:0.638827pt;}
.ls7e_c00340{letter-spacing:0.644853pt;}
.ls1b_c00340{letter-spacing:0.668960pt;}
.ls14_c00340{letter-spacing:0.674987pt;}
.ls6c_c00340{letter-spacing:0.681013pt;}
.ls2e_c00340{letter-spacing:0.705120pt;}
.ls4f_c00340{letter-spacing:0.711147pt;}
.ls3c_c00340{letter-spacing:0.717173pt;}
.lsc_c00340{letter-spacing:0.723200pt;}
.ls31_c00340{letter-spacing:0.729227pt;}
.ls30_c00340{letter-spacing:0.741280pt;}
.ls13_c00340{letter-spacing:0.747307pt;}
.ls46_c00340{letter-spacing:0.759360pt;}
.ls3_c00340{letter-spacing:0.765387pt;}
.ls5a_c00340{letter-spacing:0.771413pt;}
.ls4c_c00340{letter-spacing:0.783467pt;}
.lsa_c00340{letter-spacing:0.801547pt;}
.ls61_c00340{letter-spacing:0.813600pt;}
.ls68_c00340{letter-spacing:0.825653pt;}
.ls1a_c00340{letter-spacing:0.831680pt;}
.ls5d_c00340{letter-spacing:0.843733pt;}
.ls37_c00340{letter-spacing:0.849760pt;}
.ls4d_c00340{letter-spacing:0.855787pt;}
.ls2b_c00340{letter-spacing:0.861813pt;}
.ls48_c00340{letter-spacing:0.873867pt;}
.ls5_c00340{letter-spacing:0.897973pt;}
.ls39_c00340{letter-spacing:0.904000pt;}
.ls1d_c00340{letter-spacing:0.922080pt;}
.ls9_c00340{letter-spacing:0.934133pt;}
.ls3f_c00340{letter-spacing:0.946187pt;}
.ls50_c00340{letter-spacing:0.970293pt;}
.ls7b_c00340{letter-spacing:0.982347pt;}
.ls0_c00340{letter-spacing:1.042613pt;}
.ls40_c00340{letter-spacing:1.048640pt;}
.ls53_c00340{letter-spacing:1.078773pt;}
.lsb_c00340{letter-spacing:1.084800pt;}
.lsf_c00340{letter-spacing:1.102880pt;}
.ls2f_c00340{letter-spacing:1.120960pt;}
.ls26_c00340{letter-spacing:1.126987pt;}
.ls43_c00340{letter-spacing:1.145067pt;}
.ls24_c00340{letter-spacing:1.150720pt;}
.ls2a_c00340{letter-spacing:1.151093pt;}
.ls35_c00340{letter-spacing:1.199307pt;}
.ls6e_c00340{letter-spacing:1.211360pt;}
.ls2c_c00340{letter-spacing:1.223413pt;}
.ls2d_c00340{letter-spacing:1.229440pt;}
.ls4b_c00340{letter-spacing:1.283680pt;}
.ls52_c00340{letter-spacing:1.295733pt;}
.ls1_c00340{letter-spacing:1.301760pt;}
.ls57_c00340{letter-spacing:1.313813pt;}
.ls11_c00340{letter-spacing:1.319840pt;}
.ls81_c00340{letter-spacing:1.337920pt;}
.ls65_c00340{letter-spacing:1.343947pt;}
.ls4e_c00340{letter-spacing:1.368053pt;}
.ls69_c00340{letter-spacing:1.384373pt;}
.ls56_c00340{letter-spacing:1.392160pt;}
.ls54_c00340{letter-spacing:1.434347pt;}
.ls45_c00340{letter-spacing:1.482560pt;}
.ls66_c00340{letter-spacing:1.530773pt;}
.ls1c_c00340{letter-spacing:1.548853pt;}
.ls17_c00340{letter-spacing:1.560907pt;}
.ls47_c00340{letter-spacing:1.566933pt;}
.ls1e_c00340{letter-spacing:1.585013pt;}
.ls5e_c00340{letter-spacing:1.615147pt;}
.ls6_c00340{letter-spacing:1.627200pt;}
.ls1f_c00340{letter-spacing:1.663360pt;}
.ls7d_c00340{letter-spacing:1.681440pt;}
.ls3e_c00340{letter-spacing:1.705547pt;}
.ls36_c00340{letter-spacing:1.711573pt;}
.ls63_c00340{letter-spacing:1.717600pt;}
.ls23_c00340{letter-spacing:1.763200pt;}
.ls5b_c00340{letter-spacing:1.880320pt;}
.ls2_c00340{letter-spacing:1.886347pt;}
.ls5f_c00340{letter-spacing:1.916480pt;}
.ls7c_c00340{letter-spacing:1.922507pt;}
.ls55_c00340{letter-spacing:1.958667pt;}
.ls59_c00340{letter-spacing:2.181653pt;}
.ls3a_c00340{letter-spacing:2.278080pt;}
.ls10_c00340{letter-spacing:2.344373pt;}
.ls28_c00340{letter-spacing:2.398613pt;}
.ls67_c00340{letter-spacing:2.561333pt;}
.ls15_c00340{letter-spacing:2.615573pt;}
.ls3d_c00340{letter-spacing:2.983200pt;}
.ls6d_c00340{letter-spacing:3.013333pt;}
.ws4_c00340{word-spacing:-15.054613pt;}
.ws7_c00340{word-spacing:0.000000pt;}
.ws0_c00340{word-spacing:2.380533pt;}
.ws1_c00340{word-spacing:3.260427pt;}
.ws3_c00340{word-spacing:3.857067pt;}
.ws6_c00340{word-spacing:11.938827pt;}
.ws5_c00340{word-spacing:12.646933pt;}
.ws2_c00340{word-spacing:20.611200pt;}
._13_c00340{margin-left:-10.263413pt;}
._e_c00340{margin-left:-9.341867pt;}
._a_c00340{margin-left:-7.262133pt;}
._14_c00340{margin-left:-4.887627pt;}
._b_c00340{margin-left:-3.350827pt;}
._9_c00340{margin-left:-2.416693pt;}
._d_c00340{margin-left:-1.392160pt;}
._0_c00340{width:1.181227pt;}
._c_c00340{width:2.181653pt;}
._3_c00340{width:3.212213pt;}
._1_c00340{width:4.116213pt;}
._17_c00340{width:5.104587pt;}
._2_c00340{width:6.056800pt;}
._10_c00340{width:7.834667pt;}
._8_c00340{width:8.792907pt;}
._11_c00340{width:9.823467pt;}
._16_c00340{width:10.811840pt;}
._5_c00340{width:11.848427pt;}
._4_c00340{width:12.836800pt;}
._18_c00340{width:14.783413pt;}
._12_c00340{width:15.729600pt;}
._7_c00340{width:16.862613pt;}
._19_c00340{width:17.838933pt;}
._6_c00340{width:19.526400pt;}
._f_c00340{width:22.166080pt;}
._15_c00340{width:23.949973pt;}
.fs5_c00340{font-size:28.800533pt;}
.fs6_c00340{font-size:51.733333pt;}
.fs0_c00340{font-size:53.866667pt;}
.fs3_c00340{font-size:59.733333pt;}
.fs1_c00340{font-size:60.266667pt;}
.fs4_c00340{font-size:61.333333pt;}
.fs2_c00340{font-size:61.866667pt;}
.y0_c00340{bottom:0.000000pt;}
.y1e_c00340{bottom:61.773333pt;}
.y1d_c00340{bottom:140.155733pt;}
.y1c_c00340{bottom:166.718267pt;}
.y1b_c00340{bottom:222.404667pt;}
.y1a_c00340{bottom:249.600000pt;}
.y19_c00340{bottom:304.334400pt;}
.y18_c00340{bottom:331.213333pt;}
.y17_c00340{bottom:386.573333pt;}
.y16_c00340{bottom:386.580933pt;}
.y15_c00340{bottom:415.373333pt;}
.y14_c00340{bottom:415.375200pt;}
.y13_c00340{bottom:471.378000pt;}
.y12_c00340{bottom:498.573333pt;}
.y11_c00340{bottom:498.578000pt;}
.y10_c00340{bottom:526.406133pt;}
.yf_c00340{bottom:553.601467pt;}
.ye_c00340{bottom:608.640000pt;}
.yd_c00340{bottom:636.173333pt;}
.yc_c00340{bottom:678.400000pt;}
.yb_c00340{bottom:691.208000pt;}
.ya_c00340{bottom:718.403333pt;}
.y9_c00340{bottom:773.773333pt;}
.y8_c00340{bottom:800.013333pt;}
.y7_c00340{bottom:854.720000pt;}
.y6_c00340{bottom:882.253333pt;}
.y5_c00340{bottom:882.262267pt;}
.y4_c00340{bottom:936.969333pt;}
.y3_c00340{bottom:964.179733pt;}
.y2_c00340{bottom:991.360000pt;}
.y1_c00340{bottom:1058.573333pt;}
.h8_c00340{height:50.773437pt;}
.h2_c00340{height:52.867187pt;}
.h4_c00340{height:59.119010pt;}
.h3_c00340{height:59.148438pt;}
.h7_c00340{height:60.195312pt;}
.h5_c00340{height:60.688542pt;}
.h6_c00340{height:62.300000pt;}
.h1_c00340{height:1122.666667pt;}
.h0_c00340{height:1122.880000pt;}
.w1_c00340{width:793.333333pt;}
.w0_c00340{width:793.600000pt;}
.x0_c00340{left:0.000000pt;}
.x13_c00340{left:107.804400pt;}
.x1_c00340{left:108.733333pt;}
.x14_c00340{left:154.706933pt;}
.x2_c00340{left:155.666667pt;}
.x7_c00340{left:158.000000pt;}
.xa_c00340{left:185.600000pt;}
.xb_c00340{left:209.106667pt;}
.x10_c00340{left:239.626667pt;}
.xc_c00340{left:250.226667pt;}
.xd_c00340{left:274.720000pt;}
.x6_c00340{left:277.440000pt;}
.x4_c00340{left:328.186667pt;}
.x5_c00340{left:343.266667pt;}
.x15_c00340{left:375.600000pt;}
.x11_c00340{left:400.813333pt;}
.x8_c00340{left:408.733333pt;}
.x12_c00340{left:450.706667pt;}
.x9_c00340{left:506.400000pt;}
.xe_c00340{left:597.386667pt;}
.xf_c00340{left:627.360000pt;}
.x3_c00340{left:649.200000pt;}
}





/* 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_c00341 {
    display:none;
  }
  .loading-indicator_c00341.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00341 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_c00341 { 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_c00341" -> "#page-container .classname_c00341")
 */
.pf_c00341 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00341 { /* 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_c00341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00341 { /* 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_c00341 { /* 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_c00341 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00341 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00341 {overflow:visible;}
  }
}
.c_c00341 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00341 { /* 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_c00341:after { /* webkit #35443 */
  content: '';
}
.t_c00341:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00341 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 */
}
.__c00341 { /* 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_c00341 { /* info for Javascript */
  display:none;
}
.l_c00341 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00341 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00341 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00341: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_c00341 {
    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_c00341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00341.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_c00341 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00341{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00341;src:url('chunks/assets/font_54308da122746b802145e2ef.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.311035;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_c00341;src:url('chunks/assets/font_b85903a33f07c3eebd2f5d0f.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.284180;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_c00341;src:url('chunks/assets/font_cfffc87cda32478aeeb23efd.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.284668;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_c00341;src:url('chunks/assets/font_6a9a12a9d92e54f0bd4f2cf6.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:1.284180;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_c00341;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff5_c00341{font-family:ff5_c00341;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:ff6_c00341;src:url('chunks/assets/font_3f0f5b934bf79f3827bf153a.woff2')format("woff");}.ff6_c00341{font-family:ff6_c00341;line-height:0.666000;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;}
.mb_c00341{transform:matrix(0.152423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152423,0.000000,0.000000,0.250000,0,0);}
.m3_c00341{transform:matrix(0.195588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195588,0.000000,0.000000,0.250000,0,0);}
.m4_c00341{transform:matrix(0.213289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213289,0.000000,0.000000,0.250000,0,0);}
.m9_c00341{transform:matrix(0.224414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224414,0.000000,0.000000,0.250000,0,0);}
.ma_c00341{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.m5_c00341{transform:matrix(0.242013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242013,0.000000,0.000000,0.250000,0,0);}
.m8_c00341{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m7_c00341{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m1_c00341{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m0_c00341{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);}
.m2_c00341{transform:matrix(0.250728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250728,0.000000,0.000000,0.250000,0,0);}
.m6_c00341{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls67_c00341{letter-spacing:-2.436000px;}
.ls85_c00341{letter-spacing:-2.415000px;}
.ls63_c00341{letter-spacing:-2.234160px;}
.ls66_c00341{letter-spacing:-2.178480px;}
.ls82_c00341{letter-spacing:-2.067120px;}
.ls5e_c00341{letter-spacing:-1.760880px;}
.ls7e_c00341{letter-spacing:-1.649520px;}
.ls5c_c00341{letter-spacing:-1.545120px;}
.ls6b_c00341{letter-spacing:-1.294560px;}
.ls8b_c00341{letter-spacing:-1.218000px;}
.ls78_c00341{letter-spacing:-1.169280px;}
.ls6c_c00341{letter-spacing:-1.078800px;}
.ls89_c00341{letter-spacing:-0.974400px;}
.ls62_c00341{letter-spacing:-0.883920px;}
.ls65_c00341{letter-spacing:-0.828240px;}
.ls61_c00341{letter-spacing:-0.814320px;}
.ls64_c00341{letter-spacing:-0.633360px;}
.ls8c_c00341{letter-spacing:-0.584640px;}
.ls60_c00341{letter-spacing:-0.542880px;}
.ls80_c00341{letter-spacing:-0.508080px;}
.ls6d_c00341{letter-spacing:-0.501120px;}
.ls5d_c00341{letter-spacing:-0.487200px;}
.ls87_c00341{letter-spacing:-0.473280px;}
.ls69_c00341{letter-spacing:-0.466320px;}
.ls70_c00341{letter-spacing:-0.452400px;}
.ls7a_c00341{letter-spacing:-0.403680px;}
.ls68_c00341{letter-spacing:-0.361920px;}
.ls7f_c00341{letter-spacing:-0.354960px;}
.ls83_c00341{letter-spacing:-0.334080px;}
.ls73_c00341{letter-spacing:-0.313200px;}
.ls72_c00341{letter-spacing:-0.208800px;}
.ls77_c00341{letter-spacing:-0.201840px;}
.ls6a_c00341{letter-spacing:-0.187920px;}
.ls7b_c00341{letter-spacing:-0.125280px;}
.ls74_c00341{letter-spacing:-0.097440px;}
.ls7d_c00341{letter-spacing:-0.090480px;}
.ls75_c00341{letter-spacing:-0.041760px;}
.ls86_c00341{letter-spacing:-0.013920px;}
.ls71_c00341{letter-spacing:-0.006960px;}
.ls5f_c00341{letter-spacing:0.000000px;}
.ls54_c00341{letter-spacing:0.006960px;}
.ls5a_c00341{letter-spacing:0.020880px;}
.ls3_c00341{letter-spacing:0.027840px;}
.ls20_c00341{letter-spacing:0.034800px;}
.ls2_c00341{letter-spacing:0.104400px;}
.ls8a_c00341{letter-spacing:0.111360px;}
.ls1a_c00341{letter-spacing:0.118320px;}
.ls2c_c00341{letter-spacing:0.153120px;}
.ls4d_c00341{letter-spacing:0.174000px;}
.ls35_c00341{letter-spacing:0.208800px;}
.ls42_c00341{letter-spacing:0.215760px;}
.ls16_c00341{letter-spacing:0.222720px;}
.ls32_c00341{letter-spacing:0.229680px;}
.ls50_c00341{letter-spacing:0.250560px;}
.ls3d_c00341{letter-spacing:0.257520px;}
.ls59_c00341{letter-spacing:0.264480px;}
.ls12_c00341{letter-spacing:0.271440px;}
.ls13_c00341{letter-spacing:0.278400px;}
.ls38_c00341{letter-spacing:0.285360px;}
.ls6_c00341{letter-spacing:0.292320px;}
.ls33_c00341{letter-spacing:0.299280px;}
.ls5_c00341{letter-spacing:0.306240px;}
.lsf_c00341{letter-spacing:0.320160px;}
.ls47_c00341{letter-spacing:0.334080px;}
.ls4f_c00341{letter-spacing:0.351900px;}
.ls4b_c00341{letter-spacing:0.361920px;}
.ls4e_c00341{letter-spacing:0.365700px;}
.ls31_c00341{letter-spacing:0.375840px;}
.ls28_c00341{letter-spacing:0.382800px;}
.ls1d_c00341{letter-spacing:0.410640px;}
.ls17_c00341{letter-spacing:0.431520px;}
.ls53_c00341{letter-spacing:0.452400px;}
.lse_c00341{letter-spacing:0.459360px;}
.ls4a_c00341{letter-spacing:0.466320px;}
.ls3c_c00341{letter-spacing:0.473280px;}
.ls46_c00341{letter-spacing:0.480240px;}
.ls8_c00341{letter-spacing:0.489900px;}
.ls3a_c00341{letter-spacing:0.515040px;}
.ls30_c00341{letter-spacing:0.528960px;}
.ls15_c00341{letter-spacing:0.542880px;}
.ls34_c00341{letter-spacing:0.549840px;}
.ls2a_c00341{letter-spacing:0.565800px;}
.ls27_c00341{letter-spacing:0.570720px;}
.lsb_c00341{letter-spacing:0.577680px;}
.ls39_c00341{letter-spacing:0.612480px;}
.ls29_c00341{letter-spacing:0.626400px;}
.ls1b_c00341{letter-spacing:0.633360px;}
.ls23_c00341{letter-spacing:0.640320px;}
.ls14_c00341{letter-spacing:0.647280px;}
.ls56_c00341{letter-spacing:0.654240px;}
.ls37_c00341{letter-spacing:0.661200px;}
.ls51_c00341{letter-spacing:0.682080px;}
.ls1c_c00341{letter-spacing:0.709920px;}
.ls3b_c00341{letter-spacing:0.716880px;}
.ls6f_c00341{letter-spacing:0.723840px;}
.ls57_c00341{letter-spacing:0.744720px;}
.ls10_c00341{letter-spacing:0.758640px;}
.ls44_c00341{letter-spacing:0.759000px;}
.ls1f_c00341{letter-spacing:0.779520px;}
.ls26_c00341{letter-spacing:0.793440px;}
.ls49_c00341{letter-spacing:0.800400px;}
.lsd_c00341{letter-spacing:0.814320px;}
.ls8d_c00341{letter-spacing:0.820620px;}
.ls11_c00341{letter-spacing:0.821280px;}
.ls48_c00341{letter-spacing:0.848700px;}
.ls40_c00341{letter-spacing:0.849120px;}
.ls76_c00341{letter-spacing:0.856080px;}
.ls4_c00341{letter-spacing:0.883920px;}
.ls43_c00341{letter-spacing:0.890880px;}
.ls19_c00341{letter-spacing:0.897840px;}
.ls24_c00341{letter-spacing:0.903900px;}
.ls25_c00341{letter-spacing:0.925680px;}
.lsc_c00341{letter-spacing:0.952200px;}
.ls21_c00341{letter-spacing:0.953520px;}
.ls2d_c00341{letter-spacing:0.960480px;}
.ls58_c00341{letter-spacing:0.964440px;}
.ls7c_c00341{letter-spacing:0.981360px;}
.ls3f_c00341{letter-spacing:1.002240px;}
.ls9_c00341{letter-spacing:1.007400px;}
.ls81_c00341{letter-spacing:1.009200px;}
.lsa_c00341{letter-spacing:1.037040px;}
.ls22_c00341{letter-spacing:1.044000px;}
.ls7_c00341{letter-spacing:1.048800px;}
.ls1_c00341{letter-spacing:1.053360px;}
.ls2f_c00341{letter-spacing:1.057920px;}
.ls79_c00341{letter-spacing:1.071840px;}
.ls45_c00341{letter-spacing:1.176240px;}
.ls5b_c00341{letter-spacing:1.193640px;}
.ls4c_c00341{letter-spacing:1.259760px;}
.ls1e_c00341{letter-spacing:1.329360px;}
.ls18_c00341{letter-spacing:1.350240px;}
.ls0_c00341{letter-spacing:1.497960px;}
.ls84_c00341{letter-spacing:1.607760px;}
.ls3e_c00341{letter-spacing:1.760880px;}
.ls55_c00341{letter-spacing:1.802640px;}
.ls2b_c00341{letter-spacing:1.823520px;}
.ls2e_c00341{letter-spacing:1.983600px;}
.ls36_c00341{letter-spacing:2.025360px;}
.ls88_c00341{letter-spacing:2.268960px;}
.ls52_c00341{letter-spacing:2.839680px;}
.ls41_c00341{letter-spacing:2.888400px;}
.ls6e_c00341{letter-spacing:3.480000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{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__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00341{word-spacing:0.000000px;}
.ws1_c00341{word-spacing:0.074400px;}
.ws2_c00341{word-spacing:5.601000px;}
.ws3_c00341{word-spacing:5.694000px;}
.ws4_c00341{word-spacing:17.099100px;}
.ws0_c00341{word-spacing:22.540200px;}
._10_c00341{margin-left:-8.212800px;}
._f_c00341{margin-left:-5.232720px;}
._0_c00341{margin-left:-4.104000px;}
._5_c00341{margin-left:-2.846640px;}
._1_c00341{margin-left:-1.395600px;}
._9_c00341{width:1.026600px;}
._7_c00341{width:2.088000px;}
._3_c00341{width:3.132000px;}
._2_c00341{width:4.558800px;}
._8_c00341{width:5.881200px;}
._6_c00341{width:7.882320px;}
._d_c00341{width:9.078720px;}
._4_c00341{width:10.753200px;}
._15_c00341{width:11.971200px;}
._e_c00341{width:14.389680px;}
._14_c00341{width:19.540800px;}
._a_c00341{width:22.459920px;}
._c_c00341{width:24.638400px;}
._b_c00341{width:25.905120px;}
._12_c00341{width:31.152960px;}
._13_c00341{width:32.920800px;}
._11_c00341{width:37.959840px;}
.fc0_c00341{color:transparent;}
.fs4_c00341{font-size:56.160000px;}
.fs5_c00341{font-size:58.200000px;}
.fs0_c00341{font-size:58.800000px;}
.fs1_c00341{font-size:68.400000px;}
.fs3_c00341{font-size:69.000000px;}
.fs2_c00341{font-size:69.600000px;}
.y0_c00341{bottom:0.000000px;}
.y1d_c00341{bottom:65.535000px;}
.y1c_c00341{bottom:122.400000px;}
.y1b_c00341{bottom:183.958800px;}
.y1a_c00341{bottom:245.520000px;}
.y19_c00341{bottom:277.215000px;}
.y18_c00341{bottom:308.520000px;}
.y17_c00341{bottom:369.736200px;}
.y16_c00341{bottom:400.690800px;}
.y15_c00341{bottom:431.280000px;}
.y14_c00341{bottom:492.495000px;}
.y13_c00341{bottom:492.505800px;}
.y12_c00341{bottom:523.443000px;}
.y11_c00341{bottom:554.415000px;}
.y10_c00341{bottom:585.735000px;}
.yf_c00341{bottom:585.740400px;}
.ye_c00341{bottom:616.695000px;}
.yd_c00341{bottom:678.975000px;}
.yc_c00341{bottom:678.982800px;}
.yb_c00341{bottom:712.095000px;}
.ya_c00341{bottom:775.459200px;}
.y9_c00341{bottom:806.048400px;}
.y8_c00341{bottom:837.003000px;}
.y7_c00341{bottom:867.975000px;}
.y6_c00341{bottom:929.175000px;}
.y5_c00341{bottom:959.775000px;}
.y4_c00341{bottom:1021.701600px;}
.y3_c00341{bottom:1083.976200px;}
.y2_c00341{bottom:1114.200000px;}
.y1_c00341{bottom:1190.520000px;}
.h5_c00341{height:37.402560px;}
.h7_c00341{height:57.120117px;}
.h2_c00341{height:59.259375px;}
.h3_c00341{height:68.308594px;}
.h6_c00341{height:68.939175px;}
.h4_c00341{height:71.964844px;}
.h1_c00341{height:1263.000000px;}
.h0_c00341{height:1263.240000px;}
.w1_c00341{width:892.500000px;}
.w0_c00341{width:892.800000px;}
.x0_c00341{left:0.000000px;}
.xe_c00341{left:119.739600px;}
.xa_c00341{left:120.757800px;}
.x1_c00341{left:123.405000px;}
.x18_c00341{left:172.965000px;}
.x7_c00341{left:174.045000px;}
.x4_c00341{left:175.597800px;}
.x3_c00341{left:178.468800px;}
.xd_c00341{left:266.220000px;}
.x8_c00341{left:348.765000px;}
.x2_c00341{left:350.295000px;}
.x14_c00341{left:368.460000px;}
.x15_c00341{left:386.970000px;}
.x9_c00341{left:405.735000px;}
.x1b_c00341{left:424.710000px;}
.xb_c00341{left:453.885000px;}
.x5_c00341{left:464.565000px;}
.xc_c00341{left:486.540000px;}
.x6_c00341{left:492.375000px;}
.x16_c00341{left:547.770000px;}
.x17_c00341{left:570.030000px;}
.x13_c00341{left:577.980000px;}
.x19_c00341{left:608.235000px;}
.x1a_c00341{left:674.655000px;}
.xf_c00341{left:696.060000px;}
.x11_c00341{left:706.215000px;}
.x10_c00341{left:718.170000px;}
.x12_c00341{left:733.170000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls67_c00341{letter-spacing:-2.165333pt;}
.ls85_c00341{letter-spacing:-2.146667pt;}
.ls63_c00341{letter-spacing:-1.985920pt;}
.ls66_c00341{letter-spacing:-1.936427pt;}
.ls82_c00341{letter-spacing:-1.837440pt;}
.ls5e_c00341{letter-spacing:-1.565227pt;}
.ls7e_c00341{letter-spacing:-1.466240pt;}
.ls5c_c00341{letter-spacing:-1.373440pt;}
.ls6b_c00341{letter-spacing:-1.150720pt;}
.ls8b_c00341{letter-spacing:-1.082667pt;}
.ls78_c00341{letter-spacing:-1.039360pt;}
.ls6c_c00341{letter-spacing:-0.958933pt;}
.ls89_c00341{letter-spacing:-0.866133pt;}
.ls62_c00341{letter-spacing:-0.785707pt;}
.ls65_c00341{letter-spacing:-0.736213pt;}
.ls61_c00341{letter-spacing:-0.723840pt;}
.ls64_c00341{letter-spacing:-0.562987pt;}
.ls8c_c00341{letter-spacing:-0.519680pt;}
.ls60_c00341{letter-spacing:-0.482560pt;}
.ls80_c00341{letter-spacing:-0.451627pt;}
.ls6d_c00341{letter-spacing:-0.445440pt;}
.ls5d_c00341{letter-spacing:-0.433067pt;}
.ls87_c00341{letter-spacing:-0.420693pt;}
.ls69_c00341{letter-spacing:-0.414507pt;}
.ls70_c00341{letter-spacing:-0.402133pt;}
.ls7a_c00341{letter-spacing:-0.358827pt;}
.ls68_c00341{letter-spacing:-0.321707pt;}
.ls7f_c00341{letter-spacing:-0.315520pt;}
.ls83_c00341{letter-spacing:-0.296960pt;}
.ls73_c00341{letter-spacing:-0.278400pt;}
.ls72_c00341{letter-spacing:-0.185600pt;}
.ls77_c00341{letter-spacing:-0.179413pt;}
.ls6a_c00341{letter-spacing:-0.167040pt;}
.ls7b_c00341{letter-spacing:-0.111360pt;}
.ls74_c00341{letter-spacing:-0.086613pt;}
.ls7d_c00341{letter-spacing:-0.080427pt;}
.ls75_c00341{letter-spacing:-0.037120pt;}
.ls86_c00341{letter-spacing:-0.012373pt;}
.ls71_c00341{letter-spacing:-0.006187pt;}
.ls5f_c00341{letter-spacing:0.000000pt;}
.ls54_c00341{letter-spacing:0.006187pt;}
.ls5a_c00341{letter-spacing:0.018560pt;}
.ls3_c00341{letter-spacing:0.024747pt;}
.ls20_c00341{letter-spacing:0.030933pt;}
.ls2_c00341{letter-spacing:0.092800pt;}
.ls8a_c00341{letter-spacing:0.098987pt;}
.ls1a_c00341{letter-spacing:0.105173pt;}
.ls2c_c00341{letter-spacing:0.136107pt;}
.ls4d_c00341{letter-spacing:0.154667pt;}
.ls35_c00341{letter-spacing:0.185600pt;}
.ls42_c00341{letter-spacing:0.191787pt;}
.ls16_c00341{letter-spacing:0.197973pt;}
.ls32_c00341{letter-spacing:0.204160pt;}
.ls50_c00341{letter-spacing:0.222720pt;}
.ls3d_c00341{letter-spacing:0.228907pt;}
.ls59_c00341{letter-spacing:0.235093pt;}
.ls12_c00341{letter-spacing:0.241280pt;}
.ls13_c00341{letter-spacing:0.247467pt;}
.ls38_c00341{letter-spacing:0.253653pt;}
.ls6_c00341{letter-spacing:0.259840pt;}
.ls33_c00341{letter-spacing:0.266027pt;}
.ls5_c00341{letter-spacing:0.272213pt;}
.lsf_c00341{letter-spacing:0.284587pt;}
.ls47_c00341{letter-spacing:0.296960pt;}
.ls4f_c00341{letter-spacing:0.312800pt;}
.ls4b_c00341{letter-spacing:0.321707pt;}
.ls4e_c00341{letter-spacing:0.325067pt;}
.ls31_c00341{letter-spacing:0.334080pt;}
.ls28_c00341{letter-spacing:0.340267pt;}
.ls1d_c00341{letter-spacing:0.365013pt;}
.ls17_c00341{letter-spacing:0.383573pt;}
.ls53_c00341{letter-spacing:0.402133pt;}
.lse_c00341{letter-spacing:0.408320pt;}
.ls4a_c00341{letter-spacing:0.414507pt;}
.ls3c_c00341{letter-spacing:0.420693pt;}
.ls46_c00341{letter-spacing:0.426880pt;}
.ls8_c00341{letter-spacing:0.435467pt;}
.ls3a_c00341{letter-spacing:0.457813pt;}
.ls30_c00341{letter-spacing:0.470187pt;}
.ls15_c00341{letter-spacing:0.482560pt;}
.ls34_c00341{letter-spacing:0.488747pt;}
.ls2a_c00341{letter-spacing:0.502933pt;}
.ls27_c00341{letter-spacing:0.507307pt;}
.lsb_c00341{letter-spacing:0.513493pt;}
.ls39_c00341{letter-spacing:0.544427pt;}
.ls29_c00341{letter-spacing:0.556800pt;}
.ls1b_c00341{letter-spacing:0.562987pt;}
.ls23_c00341{letter-spacing:0.569173pt;}
.ls14_c00341{letter-spacing:0.575360pt;}
.ls56_c00341{letter-spacing:0.581547pt;}
.ls37_c00341{letter-spacing:0.587733pt;}
.ls51_c00341{letter-spacing:0.606293pt;}
.ls1c_c00341{letter-spacing:0.631040pt;}
.ls3b_c00341{letter-spacing:0.637227pt;}
.ls6f_c00341{letter-spacing:0.643413pt;}
.ls57_c00341{letter-spacing:0.661973pt;}
.ls10_c00341{letter-spacing:0.674347pt;}
.ls44_c00341{letter-spacing:0.674667pt;}
.ls1f_c00341{letter-spacing:0.692907pt;}
.ls26_c00341{letter-spacing:0.705280pt;}
.ls49_c00341{letter-spacing:0.711467pt;}
.lsd_c00341{letter-spacing:0.723840pt;}
.ls8d_c00341{letter-spacing:0.729440pt;}
.ls11_c00341{letter-spacing:0.730027pt;}
.ls48_c00341{letter-spacing:0.754400pt;}
.ls40_c00341{letter-spacing:0.754773pt;}
.ls76_c00341{letter-spacing:0.760960pt;}
.ls4_c00341{letter-spacing:0.785707pt;}
.ls43_c00341{letter-spacing:0.791893pt;}
.ls19_c00341{letter-spacing:0.798080pt;}
.ls24_c00341{letter-spacing:0.803467pt;}
.ls25_c00341{letter-spacing:0.822827pt;}
.lsc_c00341{letter-spacing:0.846400pt;}
.ls21_c00341{letter-spacing:0.847573pt;}
.ls2d_c00341{letter-spacing:0.853760pt;}
.ls58_c00341{letter-spacing:0.857280pt;}
.ls7c_c00341{letter-spacing:0.872320pt;}
.ls3f_c00341{letter-spacing:0.890880pt;}
.ls9_c00341{letter-spacing:0.895467pt;}
.ls81_c00341{letter-spacing:0.897067pt;}
.lsa_c00341{letter-spacing:0.921813pt;}
.ls22_c00341{letter-spacing:0.928000pt;}
.ls7_c00341{letter-spacing:0.932267pt;}
.ls1_c00341{letter-spacing:0.936320pt;}
.ls2f_c00341{letter-spacing:0.940373pt;}
.ls79_c00341{letter-spacing:0.952747pt;}
.ls45_c00341{letter-spacing:1.045547pt;}
.ls5b_c00341{letter-spacing:1.061013pt;}
.ls4c_c00341{letter-spacing:1.119787pt;}
.ls1e_c00341{letter-spacing:1.181653pt;}
.ls18_c00341{letter-spacing:1.200213pt;}
.ls0_c00341{letter-spacing:1.331520pt;}
.ls84_c00341{letter-spacing:1.429120pt;}
.ls3e_c00341{letter-spacing:1.565227pt;}
.ls55_c00341{letter-spacing:1.602347pt;}
.ls2b_c00341{letter-spacing:1.620907pt;}
.ls2e_c00341{letter-spacing:1.763200pt;}
.ls36_c00341{letter-spacing:1.800320pt;}
.ls88_c00341{letter-spacing:2.016853pt;}
.ls52_c00341{letter-spacing:2.524160pt;}
.ls41_c00341{letter-spacing:2.567467pt;}
.ls6e_c00341{letter-spacing:3.093333pt;}
.ws5_c00341{word-spacing:0.000000pt;}
.ws1_c00341{word-spacing:0.066133pt;}
.ws2_c00341{word-spacing:4.978667pt;}
.ws3_c00341{word-spacing:5.061333pt;}
.ws4_c00341{word-spacing:15.199200pt;}
.ws0_c00341{word-spacing:20.035733pt;}
._10_c00341{margin-left:-7.300267pt;}
._f_c00341{margin-left:-4.651307pt;}
._0_c00341{margin-left:-3.648000pt;}
._5_c00341{margin-left:-2.530347pt;}
._1_c00341{margin-left:-1.240533pt;}
._9_c00341{width:0.912533pt;}
._7_c00341{width:1.856000pt;}
._3_c00341{width:2.784000pt;}
._2_c00341{width:4.052267pt;}
._8_c00341{width:5.227733pt;}
._6_c00341{width:7.006507pt;}
._d_c00341{width:8.069973pt;}
._4_c00341{width:9.558400pt;}
._15_c00341{width:10.641067pt;}
._e_c00341{width:12.790827pt;}
._14_c00341{width:17.369600pt;}
._a_c00341{width:19.964373pt;}
._c_c00341{width:21.900800pt;}
._b_c00341{width:23.026773pt;}
._12_c00341{width:27.691520pt;}
._13_c00341{width:29.262933pt;}
._11_c00341{width:33.742080pt;}
.fs4_c00341{font-size:49.920000pt;}
.fs5_c00341{font-size:51.733333pt;}
.fs0_c00341{font-size:52.266667pt;}
.fs1_c00341{font-size:60.800000pt;}
.fs3_c00341{font-size:61.333333pt;}
.fs2_c00341{font-size:61.866667pt;}
.y0_c00341{bottom:0.000000pt;}
.y1d_c00341{bottom:58.253333pt;}
.y1c_c00341{bottom:108.800000pt;}
.y1b_c00341{bottom:163.518933pt;}
.y1a_c00341{bottom:218.240000pt;}
.y19_c00341{bottom:246.413333pt;}
.y18_c00341{bottom:274.240000pt;}
.y17_c00341{bottom:328.654400pt;}
.y16_c00341{bottom:356.169600pt;}
.y15_c00341{bottom:383.360000pt;}
.y14_c00341{bottom:437.773333pt;}
.y13_c00341{bottom:437.782933pt;}
.y12_c00341{bottom:465.282667pt;}
.y11_c00341{bottom:492.813333pt;}
.y10_c00341{bottom:520.653333pt;}
.yf_c00341{bottom:520.658133pt;}
.ye_c00341{bottom:548.173333pt;}
.yd_c00341{bottom:603.533333pt;}
.yc_c00341{bottom:603.540267pt;}
.yb_c00341{bottom:632.973333pt;}
.ya_c00341{bottom:689.297067pt;}
.y9_c00341{bottom:716.487467pt;}
.y8_c00341{bottom:744.002667pt;}
.y7_c00341{bottom:771.533333pt;}
.y6_c00341{bottom:825.933333pt;}
.y5_c00341{bottom:853.133333pt;}
.y4_c00341{bottom:908.179200pt;}
.y3_c00341{bottom:963.534400pt;}
.y2_c00341{bottom:990.400000pt;}
.y1_c00341{bottom:1058.240000pt;}
.h5_c00341{height:33.246720pt;}
.h7_c00341{height:50.773437pt;}
.h2_c00341{height:52.675000pt;}
.h3_c00341{height:60.718750pt;}
.h6_c00341{height:61.279267pt;}
.h4_c00341{height:63.968750pt;}
.h1_c00341{height:1122.666667pt;}
.h0_c00341{height:1122.880000pt;}
.w1_c00341{width:793.333333pt;}
.w0_c00341{width:793.600000pt;}
.x0_c00341{left:0.000000pt;}
.xe_c00341{left:106.435200pt;}
.xa_c00341{left:107.340267pt;}
.x1_c00341{left:109.693333pt;}
.x18_c00341{left:153.746667pt;}
.x7_c00341{left:154.706667pt;}
.x4_c00341{left:156.086933pt;}
.x3_c00341{left:158.638933pt;}
.xd_c00341{left:236.640000pt;}
.x8_c00341{left:310.013333pt;}
.x2_c00341{left:311.373333pt;}
.x14_c00341{left:327.520000pt;}
.x15_c00341{left:343.973333pt;}
.x9_c00341{left:360.653333pt;}
.x1b_c00341{left:377.520000pt;}
.xb_c00341{left:403.453333pt;}
.x5_c00341{left:412.946667pt;}
.xc_c00341{left:432.480000pt;}
.x6_c00341{left:437.666667pt;}
.x16_c00341{left:486.906667pt;}
.x17_c00341{left:506.693333pt;}
.x13_c00341{left:513.760000pt;}
.x19_c00341{left:540.653333pt;}
.x1a_c00341{left:599.693333pt;}
.xf_c00341{left:618.720000pt;}
.x11_c00341{left:627.746667pt;}
.x10_c00341{left:638.373333pt;}
.x12_c00341{left:651.706667pt;}
}





/* 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_c00342 {
    display:none;
  }
  .loading-indicator_c00342.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00342 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_c00342 { 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_c00342" -> "#page-container .classname_c00342")
 */
.pf_c00342 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00342 { /* 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_c00342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00342 { /* 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_c00342 { /* 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_c00342 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00342 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00342 {overflow:visible;}
  }
}
.c_c00342 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00342 { /* 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_c00342:after { /* webkit #35443 */
  content: '';
}
.t_c00342:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00342 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 */
}
.__c00342 { /* 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_c00342 { /* info for Javascript */
  display:none;
}
.l_c00342 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00342 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00342 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00342: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_c00342 {
    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_c00342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00342.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_c00342 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00342;src:url('chunks/assets/font_1c3f0b1f4668076609ab8d12.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;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:ff2_c00342;src:url('chunks/assets/font_236a875b4364f883db388cc6.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.284668;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_c00342;src:url('chunks/assets/font_0049f887ee0f14ea62b57e90.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.284180;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_c00342;src:url('chunks/assets/font_b4a0b8be3129d1e2ecd87e68.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:0.666000;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;}
.m6_c00342{transform:matrix(0.053571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053571,0.000000,0.000000,0.250000,0,0);}
.m0_c00342{transform:matrix(0.116952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116952,0.000000,0.000000,0.250000,0,0);}
.m5_c00342{transform:matrix(0.131540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131540,0.000000,0.000000,0.250000,0,0);}
.m2_c00342{transform:matrix(0.152671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152671,0.000000,0.000000,0.250000,0,0);}
.m7_c00342{transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);}
.m3_c00342{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m9_c00342{transform:matrix(0.239754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239754,0.000000,0.000000,0.250000,0,0);}
.m1_c00342{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);}
.m4_c00342{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);}
.m8_c00342{transform:matrix(0.312917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312917,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.lsd_c00342{letter-spacing:-14.280000px;}
.ls16_c00342{letter-spacing:-4.410000px;}
.ls7_c00342{letter-spacing:-2.730000px;}
.ls14_c00342{letter-spacing:-2.373000px;}
.ls9_c00342{letter-spacing:-1.701300px;}
.lsf_c00342{letter-spacing:-0.372360px;}
.ls8_c00342{letter-spacing:0.000000px;}
.ls5_c00342{letter-spacing:0.160500px;}
.lse_c00342{letter-spacing:0.186180px;}
.ls10_c00342{letter-spacing:0.321000px;}
.ls11_c00342{letter-spacing:0.436560px;}
.ls4_c00342{letter-spacing:0.609900px;}
.lsb_c00342{letter-spacing:0.744720px;}
.ls6_c00342{letter-spacing:0.789660px;}
.ls3_c00342{letter-spacing:0.943740px;}
.ls1_c00342{letter-spacing:0.969420px;}
.ls0_c00342{letter-spacing:0.975840px;}
.lsa_c00342{letter-spacing:1.187700px;}
.ls2_c00342{letter-spacing:1.277580px;}
.ls13_c00342{letter-spacing:1.323000px;}
.lsc_c00342{letter-spacing:1.361040px;}
.ls12_c00342{letter-spacing:3.150000px;}
.ls15_c00342{letter-spacing:3.270000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{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__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00342{word-spacing:0.000000px;}
.ws2_c00342{word-spacing:0.731880px;}
.ws1_c00342{word-spacing:1.707720px;}
.ws3_c00342{word-spacing:2.067240px;}
.ws5_c00342{word-spacing:2.953200px;}
.ws4_c00342{word-spacing:4.506840px;}
.ws0_c00342{word-spacing:6.034800px;}
._2_c00342{margin-left:-8.795400px;}
._0_c00342{margin-left:-7.254600px;}
._1_c00342{margin-left:-3.466800px;}
._3_c00342{margin-left:-1.926000px;}
.fc0_c00342{color:transparent;}
.fs8_c00342{font-size:31.200000px;}
.fsc_c00342{font-size:35.400600px;}
.fs4_c00342{font-size:48.960000px;}
.fs1_c00342{font-size:63.000000px;}
.fs2_c00342{font-size:64.200000px;}
.fsa_c00342{font-size:65.400000px;}
.fs5_c00342{font-size:67.800000px;}
.fs0_c00342{font-size:78.000000px;}
.fs7_c00342{font-size:87.840000px;}
.fsb_c00342{font-size:126.000000px;}
.fs6_c00342{font-size:282.240000px;}
.fs3_c00342{font-size:408.000000px;}
.fs9_c00342{font-size:432.000000px;}
.y0_c00342{bottom:0.000000px;}
.y5_c00342{bottom:147.244506px;}
.y8_c00342{bottom:165.605706px;}
.y4_c00342{bottom:165.974856px;}
.y3_c00342{bottom:184.320006px;}
.yf_c00342{bottom:351.735006px;}
.y12_c00342{bottom:365.775006px;}
.y11_c00342{bottom:374.415006px;}
.y10_c00342{bottom:400.695006px;}
.y7_c00342{bottom:543.615006px;}
.y2_c00342{bottom:546.480006px;}
.ye_c00342{bottom:679.695006px;}
.yd_c00342{bottom:687.255006px;}
.yc_c00342{bottom:713.535006px;}
.y6_c00342{bottom:966.975006px;}
.yb_c00342{bottom:997.215006px;}
.ya_c00342{bottom:1080.000006px;}
.y1_c00342{bottom:1081.455006px;}
.y9_c00342{bottom:1143.735006px;}
.ha_c00342{height:32.540625px;}
.h6_c00342{height:32.607360px;}
.he_c00342{height:36.921720px;}
.h9_c00342{height:58.501440px;}
.h3_c00342{height:61.831055px;}
.h4_c00342{height:62.977441px;}
.hc_c00342{height:64.186523px;}
.h7_c00342{height:66.541992px;}
.h2_c00342{height:81.351562px;}
.hd_c00342{height:123.662109px;}
.h8_c00342{height:187.971840px;}
.h5_c00342{height:425.531250px;}
.hb_c00342{height:450.562500px;}
.h1_c00342{height:1263.000000px;}
.h0_c00342{height:1263.240006px;}
.w1_c00342{width:892.500000px;}
.w0_c00342{width:892.799998px;}
.x0_c00342{left:0.000000px;}
.x1_c00342{left:116.714999px;}
.x4_c00342{left:118.726049px;}
.x3_c00342{left:120.314999px;}
.x2_c00342{left:242.099998px;}
.x6_c00342{left:344.174999px;}
.x7_c00342{left:385.049998px;}
.x5_c00342{left:395.339998px;}
.x8_c00342{left:671.669999px;}
.xe_c00342{left:716.129999px;}
.xb_c00342{left:721.094998px;}
.x10_c00342{left:727.739998px;}
.xf_c00342{left:731.759999px;}
.x9_c00342{left:744.779999px;}
.xd_c00342{left:749.174999px;}
.xc_c00342{left:752.309999px;}
.xa_c00342{left:789.899998px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.lsd_c00342{letter-spacing:-12.693333pt;}
.ls16_c00342{letter-spacing:-3.920000pt;}
.ls7_c00342{letter-spacing:-2.426667pt;}
.ls14_c00342{letter-spacing:-2.109333pt;}
.ls9_c00342{letter-spacing:-1.512267pt;}
.lsf_c00342{letter-spacing:-0.330987pt;}
.ls8_c00342{letter-spacing:0.000000pt;}
.ls5_c00342{letter-spacing:0.142667pt;}
.lse_c00342{letter-spacing:0.165493pt;}
.ls10_c00342{letter-spacing:0.285333pt;}
.ls11_c00342{letter-spacing:0.388053pt;}
.ls4_c00342{letter-spacing:0.542133pt;}
.lsb_c00342{letter-spacing:0.661973pt;}
.ls6_c00342{letter-spacing:0.701920pt;}
.ls3_c00342{letter-spacing:0.838880pt;}
.ls1_c00342{letter-spacing:0.861707pt;}
.ls0_c00342{letter-spacing:0.867413pt;}
.lsa_c00342{letter-spacing:1.055733pt;}
.ls2_c00342{letter-spacing:1.135627pt;}
.ls13_c00342{letter-spacing:1.176000pt;}
.lsc_c00342{letter-spacing:1.209813pt;}
.ls12_c00342{letter-spacing:2.800000pt;}
.ls15_c00342{letter-spacing:2.906667pt;}
.ws6_c00342{word-spacing:0.000000pt;}
.ws2_c00342{word-spacing:0.650560pt;}
.ws1_c00342{word-spacing:1.517973pt;}
.ws3_c00342{word-spacing:1.837547pt;}
.ws5_c00342{word-spacing:2.625067pt;}
.ws4_c00342{word-spacing:4.006080pt;}
.ws0_c00342{word-spacing:5.364267pt;}
._2_c00342{margin-left:-7.818133pt;}
._0_c00342{margin-left:-6.448533pt;}
._1_c00342{margin-left:-3.081600pt;}
._3_c00342{margin-left:-1.712000pt;}
.fs8_c00342{font-size:27.733333pt;}
.fsc_c00342{font-size:31.467200pt;}
.fs4_c00342{font-size:43.520000pt;}
.fs1_c00342{font-size:56.000000pt;}
.fs2_c00342{font-size:57.066667pt;}
.fsa_c00342{font-size:58.133333pt;}
.fs5_c00342{font-size:60.266667pt;}
.fs0_c00342{font-size:69.333333pt;}
.fs7_c00342{font-size:78.080000pt;}
.fsb_c00342{font-size:112.000000pt;}
.fs6_c00342{font-size:250.880000pt;}
.fs3_c00342{font-size:362.666667pt;}
.fs9_c00342{font-size:384.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y5_c00342{bottom:130.884005pt;}
.y8_c00342{bottom:147.205072pt;}
.y4_c00342{bottom:147.533205pt;}
.y3_c00342{bottom:163.840005pt;}
.yf_c00342{bottom:312.653339pt;}
.y12_c00342{bottom:325.133339pt;}
.y11_c00342{bottom:332.813339pt;}
.y10_c00342{bottom:356.173339pt;}
.y7_c00342{bottom:483.213339pt;}
.y2_c00342{bottom:485.760005pt;}
.ye_c00342{bottom:604.173339pt;}
.yd_c00342{bottom:610.893339pt;}
.yc_c00342{bottom:634.253339pt;}
.y6_c00342{bottom:859.533339pt;}
.yb_c00342{bottom:886.413339pt;}
.ya_c00342{bottom:960.000005pt;}
.y1_c00342{bottom:961.293339pt;}
.y9_c00342{bottom:1016.653339pt;}
.ha_c00342{height:28.925000pt;}
.h6_c00342{height:28.984320pt;}
.he_c00342{height:32.819306pt;}
.h9_c00342{height:52.001280pt;}
.h3_c00342{height:54.960938pt;}
.h4_c00342{height:55.979948pt;}
.hc_c00342{height:57.054688pt;}
.h7_c00342{height:59.148438pt;}
.h2_c00342{height:72.312500pt;}
.hd_c00342{height:109.921875pt;}
.h8_c00342{height:167.086080pt;}
.h5_c00342{height:378.250000pt;}
.hb_c00342{height:400.500000pt;}
.h1_c00342{height:1122.666667pt;}
.h0_c00342{height:1122.880005pt;}
.w1_c00342{width:793.333333pt;}
.w0_c00342{width:793.599999pt;}
.x0_c00342{left:0.000000pt;}
.x1_c00342{left:103.746665pt;}
.x4_c00342{left:105.534265pt;}
.x3_c00342{left:106.946665pt;}
.x2_c00342{left:215.199999pt;}
.x6_c00342{left:305.933332pt;}
.x7_c00342{left:342.266665pt;}
.x5_c00342{left:351.413332pt;}
.x8_c00342{left:597.039999pt;}
.xe_c00342{left:636.559999pt;}
.xb_c00342{left:640.973332pt;}
.x10_c00342{left:646.879999pt;}
.xf_c00342{left:650.453332pt;}
.x9_c00342{left:662.026665pt;}
.xd_c00342{left:665.933332pt;}
.xc_c00342{left:668.719999pt;}
.xa_c00342{left:702.133332pt;}
}





/* 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_c00343 {
    display:none;
  }
  .loading-indicator_c00343.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00343 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_c00343 { 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_c00343" -> "#page-container .classname_c00343")
 */
.pf_c00343 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00343 { /* 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_c00343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00343 { /* 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_c00343 { /* 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_c00343 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00343 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00343 {overflow:visible;}
  }
}
.c_c00343 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00343 { /* 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_c00343:after { /* webkit #35443 */
  content: '';
}
.t_c00343:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00343 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 */
}
.__c00343 { /* 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_c00343 { /* info for Javascript */
  display:none;
}
.l_c00343 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00343 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00343 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00343: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_c00343 {
    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_c00343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00343.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_c00343 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00343;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;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:ff2_c00343;src:url('chunks/assets/font_bff3e3c7e01edd084b55f067.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.284180;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_c00343;src:url('chunks/assets/font_c7c3a560cfd60b2f924d1890.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;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:ff4_c00343;src:url('chunks/assets/font_4ccbf96c18ddf73ddfa7c755.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:1.284668;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_c00343;src:url('chunks/assets/font_23473fd9a7e54edd9f034d01.woff2')format("woff");}.ff5_c00343{font-family:ff5_c00343;line-height:0.666000;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_c00343{transform:matrix(0.112830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112830,0.000000,0.000000,0.250000,0,0);}
.m4_c00343{transform:matrix(0.115824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115824,0.000000,0.000000,0.250000,0,0);}
.m0_c00343{transform:matrix(0.129248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129248,0.000000,0.000000,0.250000,0,0);}
.m5_c00343{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m3_c00343{transform:matrix(0.243438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243438,0.000000,0.000000,0.250000,0,0);}
.m1_c00343{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);}
.v0_c00343{vertical-align:0.000000px;}
.lsc_c00343{letter-spacing:-13.608021px;}
.ls6_c00343{letter-spacing:-2.688000px;}
.ls11_c00343{letter-spacing:-2.289000px;}
.ls12_c00343{letter-spacing:-2.058000px;}
.ls7_c00343{letter-spacing:-1.701300px;}
.lse_c00343{letter-spacing:-0.372360px;}
.lsf_c00343{letter-spacing:-0.192600px;}
.lsb_c00343{letter-spacing:0.000000px;}
.ls8_c00343{letter-spacing:0.308160px;}
.ls5_c00343{letter-spacing:0.430140px;}
.ls2_c00343{letter-spacing:0.558540px;}
.ls0_c00343{letter-spacing:0.789660px;}
.ls9_c00343{letter-spacing:0.873120px;}
.ls4_c00343{letter-spacing:0.943740px;}
.ls1_c00343{letter-spacing:0.969420px;}
.lsd_c00343{letter-spacing:1.136340px;}
.lsa_c00343{letter-spacing:1.328940px;}
.ls3_c00343{letter-spacing:1.483020px;}
.ls10_c00343{letter-spacing:2.877600px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{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__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00343{word-spacing:0.000000px;}
.ws1_c00343{word-spacing:1.707720px;}
.ws3_c00343{word-spacing:2.067240px;}
.ws2_c00343{word-spacing:2.195640px;}
.ws4_c00343{word-spacing:4.506840px;}
.ws0_c00343{word-spacing:6.034800px;}
._1_c00343{margin-left:-8.346000px;}
._2_c00343{margin-left:-6.291600px;}
._0_c00343{margin-left:-4.301400px;}
._3_c00343{width:1.155600px;}
.fc0_c00343{color:transparent;}
.fs8_c00343{font-size:33.000600px;}
.fs2_c00343{font-size:54.600000px;}
.fs5_c00343{font-size:58.800000px;}
.fs6_c00343{font-size:63.000000px;}
.fs1_c00343{font-size:64.200000px;}
.fs4_c00343{font-size:65.400000px;}
.fs0_c00343{font-size:76.800000px;}
.fs7_c00343{font-size:82.080000px;}
.fs3_c00343{font-size:388.800600px;}
.y0_c00343{bottom:0.000000px;}
.y4_c00343{bottom:147.954300px;}
.y8_c00343{bottom:166.678800px;}
.y3_c00343{bottom:167.037750px;}
.y7_c00343{bottom:185.040000px;}
.y2_c00343{bottom:185.415000px;}
.ye_c00343{bottom:329.760000px;}
.yd_c00343{bottom:909.375000px;}
.yc_c00343{bottom:917.280000px;}
.y5_c00343{bottom:920.175000px;}
.yb_c00343{bottom:942.135000px;}
.y6_c00343{bottom:1010.535000px;}
.ya_c00343{bottom:1080.720000px;}
.y1_c00343{bottom:1083.240000px;}
.y9_c00343{bottom:1144.440000px;}
.ha_c00343{height:34.418595px;}
.h9_c00343{height:54.665280px;}
.h4_c00343{height:56.946094px;}
.h7_c00343{height:61.326563px;}
.h8_c00343{height:61.831055px;}
.h3_c00343{height:62.977441px;}
.hb_c00343{height:63.008789px;}
.h6_c00343{height:64.186523px;}
.h2_c00343{height:80.100000px;}
.h5_c00343{height:381.586526px;}
.h1_c00343{height:1263.000000px;}
.h0_c00343{height:1263.240000px;}
.w1_c00343{width:892.500000px;}
.w0_c00343{width:892.800000px;}
.x0_c00343{left:0.000000px;}
.x1_c00343{left:117.135000px;}
.x3_c00343{left:119.102100px;}
.x2_c00343{left:120.675000px;}
.x4_c00343{left:351.645000px;}
.x6_c00343{left:384.690000px;}
.x5_c00343{left:407.850000px;}
.xc_c00343{left:666.135000px;}
.x7_c00343{left:673.470000px;}
.xb_c00343{left:726.840000px;}
.xa_c00343{left:729.630000px;}
.x8_c00343{left:746.940000px;}
.x9_c00343{left:791.130000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.lsc_c00343{letter-spacing:-12.096019pt;}
.ls6_c00343{letter-spacing:-2.389333pt;}
.ls11_c00343{letter-spacing:-2.034667pt;}
.ls12_c00343{letter-spacing:-1.829333pt;}
.ls7_c00343{letter-spacing:-1.512267pt;}
.lse_c00343{letter-spacing:-0.330987pt;}
.lsf_c00343{letter-spacing:-0.171200pt;}
.lsb_c00343{letter-spacing:0.000000pt;}
.ls8_c00343{letter-spacing:0.273920pt;}
.ls5_c00343{letter-spacing:0.382347pt;}
.ls2_c00343{letter-spacing:0.496480pt;}
.ls0_c00343{letter-spacing:0.701920pt;}
.ls9_c00343{letter-spacing:0.776107pt;}
.ls4_c00343{letter-spacing:0.838880pt;}
.ls1_c00343{letter-spacing:0.861707pt;}
.lsd_c00343{letter-spacing:1.010080pt;}
.lsa_c00343{letter-spacing:1.181280pt;}
.ls3_c00343{letter-spacing:1.318240pt;}
.ls10_c00343{letter-spacing:2.557867pt;}
.ws5_c00343{word-spacing:0.000000pt;}
.ws1_c00343{word-spacing:1.517973pt;}
.ws3_c00343{word-spacing:1.837547pt;}
.ws2_c00343{word-spacing:1.951680pt;}
.ws4_c00343{word-spacing:4.006080pt;}
.ws0_c00343{word-spacing:5.364267pt;}
._1_c00343{margin-left:-7.418667pt;}
._2_c00343{margin-left:-5.592533pt;}
._0_c00343{margin-left:-3.823467pt;}
._3_c00343{width:1.027200pt;}
.fs8_c00343{font-size:29.333867pt;}
.fs2_c00343{font-size:48.533333pt;}
.fs5_c00343{font-size:52.266667pt;}
.fs6_c00343{font-size:56.000000pt;}
.fs1_c00343{font-size:57.066667pt;}
.fs4_c00343{font-size:58.133333pt;}
.fs0_c00343{font-size:68.266667pt;}
.fs7_c00343{font-size:72.960000pt;}
.fs3_c00343{font-size:345.600533pt;}
.y0_c00343{bottom:0.000000pt;}
.y4_c00343{bottom:131.514933pt;}
.y8_c00343{bottom:148.158933pt;}
.y3_c00343{bottom:148.478000pt;}
.y7_c00343{bottom:164.480000pt;}
.y2_c00343{bottom:164.813333pt;}
.ye_c00343{bottom:293.120000pt;}
.yd_c00343{bottom:808.333333pt;}
.yc_c00343{bottom:815.360000pt;}
.y5_c00343{bottom:817.933333pt;}
.yb_c00343{bottom:837.453333pt;}
.y6_c00343{bottom:898.253333pt;}
.ya_c00343{bottom:960.640000pt;}
.y1_c00343{bottom:962.880000pt;}
.y9_c00343{bottom:1017.280000pt;}
.ha_c00343{height:30.594306pt;}
.h9_c00343{height:48.591360pt;}
.h4_c00343{height:50.618750pt;}
.h7_c00343{height:54.512500pt;}
.h8_c00343{height:54.960938pt;}
.h3_c00343{height:55.979948pt;}
.hb_c00343{height:56.007812pt;}
.h6_c00343{height:57.054688pt;}
.h2_c00343{height:71.200000pt;}
.h5_c00343{height:339.188023pt;}
.h1_c00343{height:1122.666667pt;}
.h0_c00343{height:1122.880000pt;}
.w1_c00343{width:793.333333pt;}
.w0_c00343{width:793.600000pt;}
.x0_c00343{left:0.000000pt;}
.x1_c00343{left:104.120000pt;}
.x3_c00343{left:105.868533pt;}
.x2_c00343{left:107.266667pt;}
.x4_c00343{left:312.573333pt;}
.x6_c00343{left:341.946667pt;}
.x5_c00343{left:362.533333pt;}
.xc_c00343{left:592.120000pt;}
.x7_c00343{left:598.640000pt;}
.xb_c00343{left:646.080000pt;}
.xa_c00343{left:648.560000pt;}
.x8_c00343{left:663.946667pt;}
.x9_c00343{left:703.226667pt;}
}





/* 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_c00344 {
    display:none;
  }
  .loading-indicator_c00344.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00344 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_c00344 { 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_c00344" -> "#page-container .classname_c00344")
 */
.pf_c00344 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00344 { /* 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_c00344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00344 { /* 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_c00344 { /* 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_c00344 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00344 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00344 {overflow:visible;}
  }
}
.c_c00344 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00344 { /* 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_c00344:after { /* webkit #35443 */
  content: '';
}
.t_c00344:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00344 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 */
}
.__c00344 { /* 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_c00344 { /* info for Javascript */
  display:none;
}
.l_c00344 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00344 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00344 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00344: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_c00344 {
    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_c00344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00344.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_c00344 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00344;src:url('chunks/assets/font_4c3b2deb04b81e71a7ab86e6.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.311035;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_c00344;src:url('chunks/assets/font_80590d048c1d4572b6ade94d.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.284668;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_c00344;src:url('chunks/assets/font_4aae39b9963430d979dacff3.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.284180;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_c00344;src:url('chunks/assets/font_95c8032bd010ec017360883e.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:1.284180;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_c00344;src:url('chunks/assets/font_d5bdad580165f33dd6488b50.woff2')format("woff");}.ff5_c00344{font-family:ff5_c00344;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;}
.m5_c00344{transform:matrix(0.224157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224157,0.000000,0.000000,0.250000,0,0);}
.m4_c00344{transform:matrix(0.230383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230383,0.000000,0.000000,0.250000,0,0);}
.m9_c00344{transform:matrix(0.234057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234057,0.000000,0.000000,0.250000,0,0);}
.m7_c00344{transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240143,0.000000,0.000000,0.250000,0,0);}
.m2_c00344{transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);}
.m1_c00344{transform:matrix(0.245863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245863,0.000000,0.000000,0.250000,0,0);}
.m6_c00344{transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);}
.m8_c00344{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.m3_c00344{transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);}
.m0_c00344{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);}
.v0_c00344{vertical-align:0.000000px;}
.v1_c00344{vertical-align:27.292800px;}
.ls3c_c00344{letter-spacing:-2.457000px;}
.ls51_c00344{letter-spacing:-2.428920px;}
.ls61_c00344{letter-spacing:-2.415000px;}
.ls6f_c00344{letter-spacing:-2.352000px;}
.ls83_c00344{letter-spacing:-2.289000px;}
.ls7e_c00344{letter-spacing:-2.246400px;}
.ls2d_c00344{letter-spacing:-2.204280px;}
.ls5c_c00344{letter-spacing:-1.951560px;}
.ls72_c00344{letter-spacing:-1.916460px;}
.ls82_c00344{letter-spacing:-1.888380px;}
.ls74_c00344{letter-spacing:-1.635660px;}
.ls6c_c00344{letter-spacing:-1.600560px;}
.ls47_c00344{letter-spacing:-1.579500px;}
.ls58_c00344{letter-spacing:-1.509300px;}
.ls45_c00344{letter-spacing:-1.491840px;}
.ls3f_c00344{letter-spacing:-1.488240px;}
.ls77_c00344{letter-spacing:-1.467180px;}
.ls71_c00344{letter-spacing:-1.291680px;}
.ls5b_c00344{letter-spacing:-1.284660px;}
.ls5e_c00344{letter-spacing:-1.010880px;}
.ls5d_c00344{letter-spacing:-1.003860px;}
.ls6e_c00344{letter-spacing:-0.982800px;}
.ls7a_c00344{letter-spacing:-0.954720px;}
.ls80_c00344{letter-spacing:-0.940680px;}
.ls46_c00344{letter-spacing:-0.863460px;}
.ls81_c00344{letter-spacing:-0.765180px;}
.ls63_c00344{letter-spacing:-0.744120px;}
.ls60_c00344{letter-spacing:-0.716040px;}
.ls66_c00344{letter-spacing:-0.702000px;}
.ls6a_c00344{letter-spacing:-0.680940px;}
.ls40_c00344{letter-spacing:-0.673920px;}
.ls7d_c00344{letter-spacing:-0.659880px;}
.ls4e_c00344{letter-spacing:-0.652860px;}
.ls37_c00344{letter-spacing:-0.624780px;}
.ls3b_c00344{letter-spacing:-0.610740px;}
.ls65_c00344{letter-spacing:-0.596700px;}
.ls5a_c00344{letter-spacing:-0.589680px;}
.ls6d_c00344{letter-spacing:-0.582660px;}
.ls7c_c00344{letter-spacing:-0.568620px;}
.ls70_c00344{letter-spacing:-0.512460px;}
.ls33_c00344{letter-spacing:-0.484380px;}
.ls44_c00344{letter-spacing:-0.470340px;}
.ls31_c00344{letter-spacing:-0.463320px;}
.ls39_c00344{letter-spacing:-0.442260px;}
.ls4b_c00344{letter-spacing:-0.435240px;}
.ls4a_c00344{letter-spacing:-0.428220px;}
.ls48_c00344{letter-spacing:-0.421200px;}
.ls54_c00344{letter-spacing:-0.414180px;}
.ls67_c00344{letter-spacing:-0.407160px;}
.ls78_c00344{letter-spacing:-0.386100px;}
.ls52_c00344{letter-spacing:-0.379080px;}
.ls68_c00344{letter-spacing:-0.372060px;}
.ls7f_c00344{letter-spacing:-0.365040px;}
.ls55_c00344{letter-spacing:-0.358020px;}
.ls30_c00344{letter-spacing:-0.351000px;}
.ls35_c00344{letter-spacing:-0.336960px;}
.ls7b_c00344{letter-spacing:-0.329940px;}
.ls50_c00344{letter-spacing:-0.322920px;}
.ls53_c00344{letter-spacing:-0.308880px;}
.ls42_c00344{letter-spacing:-0.301860px;}
.ls62_c00344{letter-spacing:-0.280800px;}
.ls3d_c00344{letter-spacing:-0.273780px;}
.ls57_c00344{letter-spacing:-0.266760px;}
.ls34_c00344{letter-spacing:-0.245700px;}
.ls2c_c00344{letter-spacing:-0.238680px;}
.ls43_c00344{letter-spacing:-0.224640px;}
.ls73_c00344{letter-spacing:-0.217620px;}
.ls4c_c00344{letter-spacing:-0.210600px;}
.ls59_c00344{letter-spacing:-0.203580px;}
.ls64_c00344{letter-spacing:-0.196560px;}
.ls75_c00344{letter-spacing:-0.182520px;}
.ls56_c00344{letter-spacing:-0.168480px;}
.ls2e_c00344{letter-spacing:-0.161460px;}
.ls79_c00344{letter-spacing:-0.154440px;}
.ls36_c00344{letter-spacing:-0.147420px;}
.ls69_c00344{letter-spacing:-0.140400px;}
.ls41_c00344{letter-spacing:-0.126360px;}
.ls2a_c00344{letter-spacing:-0.119340px;}
.ls2b_c00344{letter-spacing:-0.105300px;}
.ls4d_c00344{letter-spacing:-0.098280px;}
.ls6b_c00344{letter-spacing:-0.084240px;}
.ls3a_c00344{letter-spacing:-0.077220px;}
.ls4f_c00344{letter-spacing:-0.049140px;}
.ls3e_c00344{letter-spacing:-0.014040px;}
.ls49_c00344{letter-spacing:-0.007020px;}
.ls2f_c00344{letter-spacing:0.000000px;}
.ls25_c00344{letter-spacing:0.014040px;}
.lsc_c00344{letter-spacing:0.021060px;}
.ls21_c00344{letter-spacing:0.028080px;}
.lse_c00344{letter-spacing:0.042120px;}
.ls3_c00344{letter-spacing:0.070200px;}
.ls24_c00344{letter-spacing:0.077220px;}
.ls18_c00344{letter-spacing:0.091260px;}
.ls5_c00344{letter-spacing:0.098280px;}
.ls0_c00344{letter-spacing:0.105300px;}
.ls12_c00344{letter-spacing:0.119340px;}
.ls13_c00344{letter-spacing:0.140400px;}
.ls1a_c00344{letter-spacing:0.154440px;}
.ls7_c00344{letter-spacing:0.168480px;}
.ls26_c00344{letter-spacing:0.196560px;}
.ls28_c00344{letter-spacing:0.231660px;}
.ls17_c00344{letter-spacing:0.245700px;}
.ls22_c00344{letter-spacing:0.266760px;}
.lsf_c00344{letter-spacing:0.358020px;}
.lsb_c00344{letter-spacing:0.372060px;}
.ls1_c00344{letter-spacing:0.400140px;}
.ls10_c00344{letter-spacing:0.433920px;}
.ls6_c00344{letter-spacing:0.449280px;}
.ls4_c00344{letter-spacing:0.456300px;}
.lsa_c00344{letter-spacing:0.561600px;}
.ls15_c00344{letter-spacing:0.582660px;}
.ls1b_c00344{letter-spacing:0.583080px;}
.ls32_c00344{letter-spacing:0.589680px;}
.ls1c_c00344{letter-spacing:0.603420px;}
.ls1d_c00344{letter-spacing:0.638820px;}
.ls1e_c00344{letter-spacing:0.737100px;}
.ls27_c00344{letter-spacing:0.751140px;}
.ls14_c00344{letter-spacing:0.759360px;}
.ls8_c00344{letter-spacing:0.813960px;}
.ls76_c00344{letter-spacing:0.982800px;}
.ls38_c00344{letter-spacing:1.045980px;}
.ls11_c00344{letter-spacing:1.118700px;}
.ls9_c00344{letter-spacing:1.139040px;}
.ls19_c00344{letter-spacing:1.186380px;}
.ls1f_c00344{letter-spacing:1.263600px;}
.ls23_c00344{letter-spacing:1.349220px;}
.ls5f_c00344{letter-spacing:1.396980px;}
.ls16_c00344{letter-spacing:1.425060px;}
.ls29_c00344{letter-spacing:1.484100px;}
.ls20_c00344{letter-spacing:1.653120px;}
.lsd_c00344{letter-spacing:1.769040px;}
.ls2_c00344{letter-spacing:1.839240px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{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__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00344{word-spacing:-17.121780px;}
.ws1_c00344{word-spacing:-0.114000px;}
.ws5_c00344{word-spacing:0.000000px;}
.ws4_c00344{word-spacing:13.404180px;}
.ws2_c00344{word-spacing:14.452200px;}
.ws0_c00344{word-spacing:24.329640px;}
._11_c00344{margin-left:-2.824260px;}
._c_c00344{width:1.042680px;}
._3_c00344{width:2.302560px;}
._6_c00344{width:3.510000px;}
._0_c00344{width:4.949100px;}
._4_c00344{width:6.261840px;}
._16_c00344{width:7.300800px;}
._1_c00344{width:8.367840px;}
._5_c00344{width:9.406800px;}
._10_c00344{width:10.565100px;}
._15_c00344{width:11.724240px;}
._2_c00344{width:12.769380px;}
._14_c00344{width:14.369460px;}
._13_c00344{width:15.479100px;}
._12_c00344{width:18.104580px;}
._a_c00344{width:19.466460px;}
._9_c00344{width:20.575620px;}
._b_c00344{width:22.253400px;}
._7_c00344{width:23.524020px;}
._e_c00344{width:25.545780px;}
._f_c00344{width:26.872560px;}
._8_c00344{width:27.883440px;}
._d_c00344{width:29.343600px;}
.fc0_c00344{color:transparent;}
.fs6_c00344{font-size:32.400600px;}
.fs0_c00344{font-size:58.200000px;}
.fs7_c00344{font-size:65.400000px;}
.fs3_c00344{font-size:67.200000px;}
.fs4_c00344{font-size:67.800000px;}
.fs2_c00344{font-size:68.400000px;}
.fs5_c00344{font-size:69.000000px;}
.fs1_c00344{font-size:70.200000px;}
.y0_c00344{bottom:0.000000px;}
.y1e_c00344{bottom:71.295000px;}
.y1d_c00344{bottom:131.049150px;}
.y1c_c00344{bottom:161.287800px;}
.y1b_c00344{bottom:191.887800px;}
.y1a_c00344{bottom:222.495000px;}
.y19_c00344{bottom:284.760000px;}
.y18_c00344{bottom:345.975000px;}
.y16_c00344{bottom:406.796400px;}
.y17_c00344{bottom:406.800000px;}
.y15_c00344{bottom:468.712800px;}
.y14_c00344{bottom:499.320000px;}
.y13_c00344{bottom:560.895000px;}
.y12_c00344{bottom:560.896800px;}
.y11_c00344{bottom:591.855000px;}
.y10_c00344{bottom:622.455000px;}
.yf_c00344{bottom:685.095000px;}
.ye_c00344{bottom:748.459350px;}
.yd_c00344{bottom:779.407800px;}
.yc_c00344{bottom:810.016800px;}
.ya_c00344{bottom:840.970350px;}
.yb_c00344{bottom:840.975000px;}
.y9_c00344{bottom:871.560000px;}
.y8_c00344{bottom:932.760000px;}
.y7_c00344{bottom:962.655000px;}
.y6_c00344{bottom:1024.560000px;}
.y4_c00344{bottom:1055.532150px;}
.y5_c00344{bottom:1055.535000px;}
.y3_c00344{bottom:1086.139350px;}
.y2_c00344{bottom:1117.080000px;}
.y1_c00344{bottom:1192.335000px;}
.h2_c00344{height:58.654687px;}
.h9_c00344{height:64.186523px;}
.h5_c00344{height:67.719727px;}
.h4_c00344{height:67.725000px;}
.h3_c00344{height:68.897461px;}
.h7_c00344{height:68.911861px;}
.h8_c00344{height:68.926261px;}
.h6_c00344{height:70.087500px;}
.h1_c00344{height:1263.000000px;}
.h0_c00344{height:1263.240000px;}
.w1_c00344{width:892.500000px;}
.w0_c00344{width:892.800000px;}
.x0_c00344{left:0.000000px;}
.x1_c00344{left:123.405000px;}
.x3_c00344{left:124.439400px;}
.x7_c00344{left:175.575000px;}
.x2_c00344{left:177.300000px;}
.x8_c00344{left:243.165000px;}
.x9_c00344{left:271.905000px;}
.xf_c00344{left:294.960000px;}
.x6_c00344{left:386.040000px;}
.x10_c00344{left:399.360000px;}
.x11_c00344{left:425.430000px;}
.x4_c00344{left:443.280000px;}
.x5_c00344{left:466.935000px;}
.xa_c00344{left:469.905000px;}
.xb_c00344{left:478.350000px;}
.xc_c00344{left:510.660000px;}
.xd_c00344{left:705.510000px;}
.xe_c00344{left:728.085000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.v1_c00344{vertical-align:24.260267pt;}
.ls3c_c00344{letter-spacing:-2.184000pt;}
.ls51_c00344{letter-spacing:-2.159040pt;}
.ls61_c00344{letter-spacing:-2.146667pt;}
.ls6f_c00344{letter-spacing:-2.090667pt;}
.ls83_c00344{letter-spacing:-2.034667pt;}
.ls7e_c00344{letter-spacing:-1.996800pt;}
.ls2d_c00344{letter-spacing:-1.959360pt;}
.ls5c_c00344{letter-spacing:-1.734720pt;}
.ls72_c00344{letter-spacing:-1.703520pt;}
.ls82_c00344{letter-spacing:-1.678560pt;}
.ls74_c00344{letter-spacing:-1.453920pt;}
.ls6c_c00344{letter-spacing:-1.422720pt;}
.ls47_c00344{letter-spacing:-1.404000pt;}
.ls58_c00344{letter-spacing:-1.341600pt;}
.ls45_c00344{letter-spacing:-1.326080pt;}
.ls3f_c00344{letter-spacing:-1.322880pt;}
.ls77_c00344{letter-spacing:-1.304160pt;}
.ls71_c00344{letter-spacing:-1.148160pt;}
.ls5b_c00344{letter-spacing:-1.141920pt;}
.ls5e_c00344{letter-spacing:-0.898560pt;}
.ls5d_c00344{letter-spacing:-0.892320pt;}
.ls6e_c00344{letter-spacing:-0.873600pt;}
.ls7a_c00344{letter-spacing:-0.848640pt;}
.ls80_c00344{letter-spacing:-0.836160pt;}
.ls46_c00344{letter-spacing:-0.767520pt;}
.ls81_c00344{letter-spacing:-0.680160pt;}
.ls63_c00344{letter-spacing:-0.661440pt;}
.ls60_c00344{letter-spacing:-0.636480pt;}
.ls66_c00344{letter-spacing:-0.624000pt;}
.ls6a_c00344{letter-spacing:-0.605280pt;}
.ls40_c00344{letter-spacing:-0.599040pt;}
.ls7d_c00344{letter-spacing:-0.586560pt;}
.ls4e_c00344{letter-spacing:-0.580320pt;}
.ls37_c00344{letter-spacing:-0.555360pt;}
.ls3b_c00344{letter-spacing:-0.542880pt;}
.ls65_c00344{letter-spacing:-0.530400pt;}
.ls5a_c00344{letter-spacing:-0.524160pt;}
.ls6d_c00344{letter-spacing:-0.517920pt;}
.ls7c_c00344{letter-spacing:-0.505440pt;}
.ls70_c00344{letter-spacing:-0.455520pt;}
.ls33_c00344{letter-spacing:-0.430560pt;}
.ls44_c00344{letter-spacing:-0.418080pt;}
.ls31_c00344{letter-spacing:-0.411840pt;}
.ls39_c00344{letter-spacing:-0.393120pt;}
.ls4b_c00344{letter-spacing:-0.386880pt;}
.ls4a_c00344{letter-spacing:-0.380640pt;}
.ls48_c00344{letter-spacing:-0.374400pt;}
.ls54_c00344{letter-spacing:-0.368160pt;}
.ls67_c00344{letter-spacing:-0.361920pt;}
.ls78_c00344{letter-spacing:-0.343200pt;}
.ls52_c00344{letter-spacing:-0.336960pt;}
.ls68_c00344{letter-spacing:-0.330720pt;}
.ls7f_c00344{letter-spacing:-0.324480pt;}
.ls55_c00344{letter-spacing:-0.318240pt;}
.ls30_c00344{letter-spacing:-0.312000pt;}
.ls35_c00344{letter-spacing:-0.299520pt;}
.ls7b_c00344{letter-spacing:-0.293280pt;}
.ls50_c00344{letter-spacing:-0.287040pt;}
.ls53_c00344{letter-spacing:-0.274560pt;}
.ls42_c00344{letter-spacing:-0.268320pt;}
.ls62_c00344{letter-spacing:-0.249600pt;}
.ls3d_c00344{letter-spacing:-0.243360pt;}
.ls57_c00344{letter-spacing:-0.237120pt;}
.ls34_c00344{letter-spacing:-0.218400pt;}
.ls2c_c00344{letter-spacing:-0.212160pt;}
.ls43_c00344{letter-spacing:-0.199680pt;}
.ls73_c00344{letter-spacing:-0.193440pt;}
.ls4c_c00344{letter-spacing:-0.187200pt;}
.ls59_c00344{letter-spacing:-0.180960pt;}
.ls64_c00344{letter-spacing:-0.174720pt;}
.ls75_c00344{letter-spacing:-0.162240pt;}
.ls56_c00344{letter-spacing:-0.149760pt;}
.ls2e_c00344{letter-spacing:-0.143520pt;}
.ls79_c00344{letter-spacing:-0.137280pt;}
.ls36_c00344{letter-spacing:-0.131040pt;}
.ls69_c00344{letter-spacing:-0.124800pt;}
.ls41_c00344{letter-spacing:-0.112320pt;}
.ls2a_c00344{letter-spacing:-0.106080pt;}
.ls2b_c00344{letter-spacing:-0.093600pt;}
.ls4d_c00344{letter-spacing:-0.087360pt;}
.ls6b_c00344{letter-spacing:-0.074880pt;}
.ls3a_c00344{letter-spacing:-0.068640pt;}
.ls4f_c00344{letter-spacing:-0.043680pt;}
.ls3e_c00344{letter-spacing:-0.012480pt;}
.ls49_c00344{letter-spacing:-0.006240pt;}
.ls2f_c00344{letter-spacing:0.000000pt;}
.ls25_c00344{letter-spacing:0.012480pt;}
.lsc_c00344{letter-spacing:0.018720pt;}
.ls21_c00344{letter-spacing:0.024960pt;}
.lse_c00344{letter-spacing:0.037440pt;}
.ls3_c00344{letter-spacing:0.062400pt;}
.ls24_c00344{letter-spacing:0.068640pt;}
.ls18_c00344{letter-spacing:0.081120pt;}
.ls5_c00344{letter-spacing:0.087360pt;}
.ls0_c00344{letter-spacing:0.093600pt;}
.ls12_c00344{letter-spacing:0.106080pt;}
.ls13_c00344{letter-spacing:0.124800pt;}
.ls1a_c00344{letter-spacing:0.137280pt;}
.ls7_c00344{letter-spacing:0.149760pt;}
.ls26_c00344{letter-spacing:0.174720pt;}
.ls28_c00344{letter-spacing:0.205920pt;}
.ls17_c00344{letter-spacing:0.218400pt;}
.ls22_c00344{letter-spacing:0.237120pt;}
.lsf_c00344{letter-spacing:0.318240pt;}
.lsb_c00344{letter-spacing:0.330720pt;}
.ls1_c00344{letter-spacing:0.355680pt;}
.ls10_c00344{letter-spacing:0.385707pt;}
.ls6_c00344{letter-spacing:0.399360pt;}
.ls4_c00344{letter-spacing:0.405600pt;}
.lsa_c00344{letter-spacing:0.499200pt;}
.ls15_c00344{letter-spacing:0.517920pt;}
.ls1b_c00344{letter-spacing:0.518293pt;}
.ls32_c00344{letter-spacing:0.524160pt;}
.ls1c_c00344{letter-spacing:0.536373pt;}
.ls1d_c00344{letter-spacing:0.567840pt;}
.ls1e_c00344{letter-spacing:0.655200pt;}
.ls27_c00344{letter-spacing:0.667680pt;}
.ls14_c00344{letter-spacing:0.674987pt;}
.ls8_c00344{letter-spacing:0.723520pt;}
.ls76_c00344{letter-spacing:0.873600pt;}
.ls38_c00344{letter-spacing:0.929760pt;}
.ls11_c00344{letter-spacing:0.994400pt;}
.ls9_c00344{letter-spacing:1.012480pt;}
.ls19_c00344{letter-spacing:1.054560pt;}
.ls1f_c00344{letter-spacing:1.123200pt;}
.ls23_c00344{letter-spacing:1.199307pt;}
.ls5f_c00344{letter-spacing:1.241760pt;}
.ls16_c00344{letter-spacing:1.266720pt;}
.ls29_c00344{letter-spacing:1.319200pt;}
.ls20_c00344{letter-spacing:1.469440pt;}
.lsd_c00344{letter-spacing:1.572480pt;}
.ls2_c00344{letter-spacing:1.634880pt;}
.ws3_c00344{word-spacing:-15.219360pt;}
.ws1_c00344{word-spacing:-0.101333pt;}
.ws5_c00344{word-spacing:0.000000pt;}
.ws4_c00344{word-spacing:11.914827pt;}
.ws2_c00344{word-spacing:12.846400pt;}
.ws0_c00344{word-spacing:21.626347pt;}
._11_c00344{margin-left:-2.510453pt;}
._c_c00344{width:0.926827pt;}
._3_c00344{width:2.046720pt;}
._6_c00344{width:3.120000pt;}
._0_c00344{width:4.399200pt;}
._4_c00344{width:5.566080pt;}
._16_c00344{width:6.489600pt;}
._1_c00344{width:7.438080pt;}
._5_c00344{width:8.361600pt;}
._10_c00344{width:9.391200pt;}
._15_c00344{width:10.421547pt;}
._2_c00344{width:11.350560pt;}
._14_c00344{width:12.772853pt;}
._13_c00344{width:13.759200pt;}
._12_c00344{width:16.092960pt;}
._a_c00344{width:17.303520pt;}
._9_c00344{width:18.289440pt;}
._b_c00344{width:19.780800pt;}
._7_c00344{width:20.910240pt;}
._e_c00344{width:22.707360pt;}
._f_c00344{width:23.886720pt;}
._8_c00344{width:24.785280pt;}
._d_c00344{width:26.083200pt;}
.fs6_c00344{font-size:28.800533pt;}
.fs0_c00344{font-size:51.733333pt;}
.fs7_c00344{font-size:58.133333pt;}
.fs3_c00344{font-size:59.733333pt;}
.fs4_c00344{font-size:60.266667pt;}
.fs2_c00344{font-size:60.800000pt;}
.fs5_c00344{font-size:61.333333pt;}
.fs1_c00344{font-size:62.400000pt;}
.y0_c00344{bottom:0.000000pt;}
.y1e_c00344{bottom:63.373333pt;}
.y1d_c00344{bottom:116.488133pt;}
.y1c_c00344{bottom:143.366933pt;}
.y1b_c00344{bottom:170.566933pt;}
.y1a_c00344{bottom:197.773333pt;}
.y19_c00344{bottom:253.120000pt;}
.y18_c00344{bottom:307.533333pt;}
.y16_c00344{bottom:361.596800pt;}
.y17_c00344{bottom:361.600000pt;}
.y15_c00344{bottom:416.633600pt;}
.y14_c00344{bottom:443.840000pt;}
.y13_c00344{bottom:498.573333pt;}
.y12_c00344{bottom:498.574933pt;}
.y11_c00344{bottom:526.093333pt;}
.y10_c00344{bottom:553.293333pt;}
.yf_c00344{bottom:608.973333pt;}
.ye_c00344{bottom:665.297200pt;}
.yd_c00344{bottom:692.806933pt;}
.yc_c00344{bottom:720.014933pt;}
.ya_c00344{bottom:747.529200pt;}
.yb_c00344{bottom:747.533333pt;}
.y9_c00344{bottom:774.720000pt;}
.y8_c00344{bottom:829.120000pt;}
.y7_c00344{bottom:855.693333pt;}
.y6_c00344{bottom:910.720000pt;}
.y4_c00344{bottom:938.250800pt;}
.y5_c00344{bottom:938.253333pt;}
.y3_c00344{bottom:965.457200pt;}
.y2_c00344{bottom:992.960000pt;}
.y1_c00344{bottom:1059.853333pt;}
.h2_c00344{height:52.137500pt;}
.h9_c00344{height:57.054688pt;}
.h5_c00344{height:60.195312pt;}
.h4_c00344{height:60.200000pt;}
.h3_c00344{height:61.242187pt;}
.h7_c00344{height:61.254987pt;}
.h8_c00344{height:61.267787pt;}
.h6_c00344{height:62.300000pt;}
.h1_c00344{height:1122.666667pt;}
.h0_c00344{height:1122.880000pt;}
.w1_c00344{width:793.333333pt;}
.w0_c00344{width:793.600000pt;}
.x0_c00344{left:0.000000pt;}
.x1_c00344{left:109.693333pt;}
.x3_c00344{left:110.612800pt;}
.x7_c00344{left:156.066667pt;}
.x2_c00344{left:157.600000pt;}
.x8_c00344{left:216.146667pt;}
.x9_c00344{left:241.693333pt;}
.xf_c00344{left:262.186667pt;}
.x6_c00344{left:343.146667pt;}
.x10_c00344{left:354.986667pt;}
.x11_c00344{left:378.160000pt;}
.x4_c00344{left:394.026667pt;}
.x5_c00344{left:415.053333pt;}
.xa_c00344{left:417.693333pt;}
.xb_c00344{left:425.200000pt;}
.xc_c00344{left:453.920000pt;}
.xd_c00344{left:627.120000pt;}
.xe_c00344{left:647.186667pt;}
}





/* 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_c00345 {
    display:none;
  }
  .loading-indicator_c00345.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00345 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_c00345 { 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_c00345" -> "#page-container .classname_c00345")
 */
.pf_c00345 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00345 { /* 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_c00345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00345 { /* 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_c00345 { /* 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_c00345 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00345 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00345 {overflow:visible;}
  }
}
.c_c00345 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00345 { /* 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_c00345:after { /* webkit #35443 */
  content: '';
}
.t_c00345:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00345 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 */
}
.__c00345 { /* 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_c00345 { /* info for Javascript */
  display:none;
}
.l_c00345 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00345 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00345 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00345: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_c00345 {
    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_c00345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00345.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_c00345 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00345;src:url('chunks/assets/font_c90eb98b02c4a83eecba71c5.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.284668;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_c00345;src:url('chunks/assets/font_a344700beb279b047fe2338f.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.284180;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_c00345;src:url('chunks/assets/font_46603ac6b76ef55e4458d884.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;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:ff4_c00345;src:url('chunks/assets/font_2922d348d19e52ebe43239db.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.311035;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;}
.ma_c00345{transform:matrix(0.239428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239428,0.000000,0.000000,0.250000,0,0);}
.m6_c00345{transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);}
.mc_c00345{transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);}
.m8_c00345{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.mb_c00345{transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);}
.m9_c00345{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m3_c00345{transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);}
.m7_c00345{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m0_c00345{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_c00345{transform:matrix(0.256004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256004,0.000000,0.000000,0.250000,0,0);}
.m2_c00345{transform:matrix(0.272089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272089,0.000000,0.000000,0.250000,0,0);}
.m4_c00345{transform:matrix(0.284919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284919,0.000000,0.000000,0.250000,0,0);}
.m5_c00345{transform:matrix(0.312998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312998,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls35_c00345{letter-spacing:-2.478000px;}
.ls5b_c00345{letter-spacing:-2.394000px;}
.ls7c_c00345{letter-spacing:-2.315160px;}
.ls81_c00345{letter-spacing:-2.184000px;}
.ls63_c00345{letter-spacing:-2.138160px;}
.ls6f_c00345{letter-spacing:-2.031960px;}
.ls47_c00345{letter-spacing:-1.989480px;}
.ls49_c00345{letter-spacing:-1.947000px;}
.ls50_c00345{letter-spacing:-1.854960px;}
.ls74_c00345{letter-spacing:-1.649640px;}
.ls53_c00345{letter-spacing:-1.486800px;}
.ls45_c00345{letter-spacing:-1.408920px;}
.ls6d_c00345{letter-spacing:-1.352280px;}
.ls3a_c00345{letter-spacing:-1.331040px;}
.ls40_c00345{letter-spacing:-1.323960px;}
.ls54_c00345{letter-spacing:-1.281480px;}
.ls61_c00345{letter-spacing:-1.139880px;}
.ls7e_c00345{letter-spacing:-1.097400px;}
.ls32_c00345{letter-spacing:-1.047840px;}
.ls4d_c00345{letter-spacing:-1.040760px;}
.ls68_c00345{letter-spacing:-0.955800px;}
.ls4e_c00345{letter-spacing:-0.934560px;}
.ls7f_c00345{letter-spacing:-0.906240px;}
.ls2d_c00345{letter-spacing:-0.842520px;}
.ls7a_c00345{letter-spacing:-0.821280px;}
.ls48_c00345{letter-spacing:-0.800040px;}
.ls3f_c00345{letter-spacing:-0.771720px;}
.ls7d_c00345{letter-spacing:-0.764640px;}
.ls7b_c00345{letter-spacing:-0.729240px;}
.ls2c_c00345{letter-spacing:-0.672600px;}
.ls60_c00345{letter-spacing:-0.658440px;}
.ls5e_c00345{letter-spacing:-0.615960px;}
.ls4b_c00345{letter-spacing:-0.608880px;}
.ls30_c00345{letter-spacing:-0.594720px;}
.ls31_c00345{letter-spacing:-0.587640px;}
.ls43_c00345{letter-spacing:-0.580560px;}
.ls3c_c00345{letter-spacing:-0.566400px;}
.ls6b_c00345{letter-spacing:-0.552240px;}
.ls3d_c00345{letter-spacing:-0.538080px;}
.ls3b_c00345{letter-spacing:-0.509760px;}
.ls6c_c00345{letter-spacing:-0.502680px;}
.ls66_c00345{letter-spacing:-0.474360px;}
.ls76_c00345{letter-spacing:-0.460200px;}
.ls2e_c00345{letter-spacing:-0.446040px;}
.ls37_c00345{letter-spacing:-0.417720px;}
.ls4a_c00345{letter-spacing:-0.403560px;}
.ls59_c00345{letter-spacing:-0.389400px;}
.ls78_c00345{letter-spacing:-0.382320px;}
.ls46_c00345{letter-spacing:-0.375240px;}
.ls79_c00345{letter-spacing:-0.361080px;}
.ls75_c00345{letter-spacing:-0.339840px;}
.ls73_c00345{letter-spacing:-0.318600px;}
.ls5d_c00345{letter-spacing:-0.312120px;}
.ls65_c00345{letter-spacing:-0.304440px;}
.ls36_c00345{letter-spacing:-0.297360px;}
.ls77_c00345{letter-spacing:-0.283200px;}
.ls5c_c00345{letter-spacing:-0.276120px;}
.ls4f_c00345{letter-spacing:-0.254880px;}
.ls58_c00345{letter-spacing:-0.233640px;}
.ls52_c00345{letter-spacing:-0.226560px;}
.ls71_c00345{letter-spacing:-0.198240px;}
.ls41_c00345{letter-spacing:-0.184080px;}
.ls56_c00345{letter-spacing:-0.177000px;}
.ls62_c00345{letter-spacing:-0.169920px;}
.ls57_c00345{letter-spacing:-0.162840px;}
.ls6a_c00345{letter-spacing:-0.148680px;}
.ls4c_c00345{letter-spacing:-0.141600px;}
.ls42_c00345{letter-spacing:-0.127440px;}
.ls72_c00345{letter-spacing:-0.120360px;}
.ls64_c00345{letter-spacing:-0.113280px;}
.ls51_c00345{letter-spacing:-0.106200px;}
.ls5f_c00345{letter-spacing:-0.084960px;}
.ls2f_c00345{letter-spacing:-0.077880px;}
.ls38_c00345{letter-spacing:-0.063720px;}
.ls67_c00345{letter-spacing:-0.056640px;}
.ls3e_c00345{letter-spacing:-0.049560px;}
.ls5a_c00345{letter-spacing:-0.035400px;}
.ls39_c00345{letter-spacing:-0.028320px;}
.ls6e_c00345{letter-spacing:-0.021240px;}
.ls44_c00345{letter-spacing:-0.007080px;}
.ls34_c00345{letter-spacing:0.000000px;}
.ls15_c00345{letter-spacing:0.028320px;}
.ls28_c00345{letter-spacing:0.042480px;}
.ls0_c00345{letter-spacing:0.056640px;}
.ls1d_c00345{letter-spacing:0.077880px;}
.ls22_c00345{letter-spacing:0.084960px;}
.lse_c00345{letter-spacing:0.092040px;}
.ls23_c00345{letter-spacing:0.113280px;}
.ls27_c00345{letter-spacing:0.155760px;}
.ls55_c00345{letter-spacing:0.169920px;}
.ls20_c00345{letter-spacing:0.177000px;}
.ls4_c00345{letter-spacing:0.198240px;}
.ls11_c00345{letter-spacing:0.205320px;}
.ls1c_c00345{letter-spacing:0.219480px;}
.ls1f_c00345{letter-spacing:0.226560px;}
.ls2a_c00345{letter-spacing:0.254880px;}
.ls9_c00345{letter-spacing:0.354000px;}
.lsf_c00345{letter-spacing:0.361080px;}
.ls16_c00345{letter-spacing:0.424800px;}
.ls13_c00345{letter-spacing:0.438960px;}
.ls1b_c00345{letter-spacing:0.453120px;}
.ls70_c00345{letter-spacing:0.460200px;}
.ls1e_c00345{letter-spacing:0.502680px;}
.ls25_c00345{letter-spacing:0.509760px;}
.ls3_c00345{letter-spacing:0.566400px;}
.ls24_c00345{letter-spacing:0.608880px;}
.ls18_c00345{letter-spacing:0.642960px;}
.ls17_c00345{letter-spacing:0.656640px;}
.lsc_c00345{letter-spacing:0.750480px;}
.ls1_c00345{letter-spacing:0.807120px;}
.ls10_c00345{letter-spacing:0.841320px;}
.ls12_c00345{letter-spacing:0.870840px;}
.ls1a_c00345{letter-spacing:0.892080px;}
.ls69_c00345{letter-spacing:0.927480px;}
.ls80_c00345{letter-spacing:0.941640px;}
.lsa_c00345{letter-spacing:0.969960px;}
.ls2b_c00345{letter-spacing:1.007340px;}
.ls5_c00345{letter-spacing:1.046520px;}
.ls8_c00345{letter-spacing:1.101240px;}
.ls6_c00345{letter-spacing:1.114920px;}
.ls21_c00345{letter-spacing:1.239000px;}
.lsd_c00345{letter-spacing:1.313280px;}
.ls2_c00345{letter-spacing:1.373520px;}
.lsb_c00345{letter-spacing:1.522200px;}
.ls29_c00345{letter-spacing:1.614240px;}
.ls26_c00345{letter-spacing:1.685040px;}
.ls7_c00345{letter-spacing:1.887840px;}
.ls19_c00345{letter-spacing:2.088600px;}
.ls14_c00345{letter-spacing:2.315160px;}
.ls33_c00345{letter-spacing:3.540000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{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__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00345{word-spacing:-0.677520px;}
.ws4_c00345{word-spacing:0.000000px;}
.ws3_c00345{word-spacing:3.194640px;}
.ws2_c00345{word-spacing:8.299200px;}
.ws0_c00345{word-spacing:19.986240px;}
._11_c00345{margin-left:-6.702600px;}
._12_c00345{margin-left:-4.262160px;}
._a_c00345{margin-left:-2.492160px;}
._f_c00345{margin-left:-1.404000px;}
._9_c00345{width:1.168200px;}
._e_c00345{width:2.421360px;}
._5_c00345{width:3.993120px;}
._10_c00345{width:5.133000px;}
._0_c00345{width:6.428640px;}
._4_c00345{width:8.418120px;}
._3_c00345{width:9.635880px;}
._1_c00345{width:11.122680px;}
._2_c00345{width:12.474960px;}
._14_c00345{width:14.202480px;}
._15_c00345{width:15.646800px;}
._13_c00345{width:17.481000px;}
._7_c00345{width:19.484160px;}
._6_c00345{width:22.139160px;}
._8_c00345{width:23.788800px;}
._b_c00345{width:25.001640px;}
._c_c00345{width:26.833200px;}
._d_c00345{width:28.150080px;}
.fc0_c00345{color:transparent;}
.fs3_c00345{font-size:61.200000px;}
.fs0_c00345{font-size:61.800000px;}
.fs4_c00345{font-size:62.400000px;}
.fs2_c00345{font-size:68.400000px;}
.fs1_c00345{font-size:70.800000px;}
.y0_c00345{bottom:0.000000px;}
.y1d_c00345{bottom:76.680006px;}
.y1c_c00345{bottom:135.023106px;}
.y1b_c00345{bottom:196.920006px;}
.y1a_c00345{bottom:257.775006px;}
.y19_c00345{bottom:289.817106px;}
.y18_c00345{bottom:319.712406px;}
.y17_c00345{bottom:351.023706px;}
.y15_c00345{bottom:382.324506px;}
.y16_c00345{bottom:382.335006px;}
.y14_c00345{bottom:443.531106px;}
.y13_c00345{bottom:505.091706px;}
.y12_c00345{bottom:535.695006px;}
.y10_c00345{bottom:597.968706px;}
.y11_c00345{bottom:597.975006px;}
.yf_c00345{bottom:629.280006px;}
.ye_c00345{bottom:660.255006px;}
.yd_c00345{bottom:722.880006px;}
.yc_c00345{bottom:785.514006px;}
.yb_c00345{bottom:816.143706px;}
.ya_c00345{bottom:847.455006px;}
.y8_c00345{bottom:909.359706px;}
.y9_c00345{bottom:909.360006px;}
.y7_c00345{bottom:939.255006px;}
.y6_c00345{bottom:1001.520006px;}
.y5_c00345{bottom:1001.527806px;}
.y4_c00345{bottom:1062.734406px;}
.y3_c00345{bottom:1093.320006px;}
.y2_c00345{bottom:1125.000006px;}
.y1_c00345{bottom:1201.680006px;}
.h2_c00345{height:60.653320px;}
.h5_c00345{height:61.242188px;}
.h4_c00345{height:67.097461px;}
.h3_c00345{height:69.486328px;}
.h1_c00345{height:1263.000000px;}
.h0_c00345{height:1263.240006px;}
.w1_c00345{width:892.500000px;}
.w0_c00345{width:892.799998px;}
.x0_c00345{left:0.000000px;}
.x1c_c00345{left:120.185398px;}
.x13_c00345{left:121.628998px;}
.x2_c00345{left:124.559999px;}
.x1_c00345{left:125.564999px;}
.x8_c00345{left:165.194998px;}
.x14_c00345{left:174.404999px;}
.x12_c00345{left:175.844999px;}
.xd_c00345{left:176.986798px;}
.x9_c00345{left:201.644999px;}
.xa_c00345{left:224.819998px;}
.x19_c00345{left:231.734998px;}
.x1d_c00345{left:234.194999px;}
.x10_c00345{left:244.604998px;}
.x1a_c00345{left:255.209999px;}
.x1e_c00345{left:257.579998px;}
.x11_c00345{left:272.414999px;}
.x1b_c00345{left:293.579998px;}
.x17_c00345{left:362.714999px;}
.x18_c00345{left:385.364999px;}
.xf_c00345{left:399.734998px;}
.x15_c00345{left:409.139998px;}
.x1f_c00345{left:424.349999px;}
.x16_c00345{left:441.179999px;}
.xe_c00345{left:485.039999px;}
.xb_c00345{left:541.634999px;}
.xc_c00345{left:567.554999px;}
.x3_c00345{left:630.509999px;}
.x4_c00345{left:656.399999px;}
.x5_c00345{left:688.094998px;}
.x6_c00345{left:703.619999px;}
.x7_c00345{left:726.224999px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls35_c00345{letter-spacing:-2.202667pt;}
.ls5b_c00345{letter-spacing:-2.128000pt;}
.ls7c_c00345{letter-spacing:-2.057920pt;}
.ls81_c00345{letter-spacing:-1.941333pt;}
.ls63_c00345{letter-spacing:-1.900587pt;}
.ls6f_c00345{letter-spacing:-1.806187pt;}
.ls47_c00345{letter-spacing:-1.768427pt;}
.ls49_c00345{letter-spacing:-1.730667pt;}
.ls50_c00345{letter-spacing:-1.648853pt;}
.ls74_c00345{letter-spacing:-1.466347pt;}
.ls53_c00345{letter-spacing:-1.321600pt;}
.ls45_c00345{letter-spacing:-1.252373pt;}
.ls6d_c00345{letter-spacing:-1.202027pt;}
.ls3a_c00345{letter-spacing:-1.183147pt;}
.ls40_c00345{letter-spacing:-1.176853pt;}
.ls54_c00345{letter-spacing:-1.139093pt;}
.ls61_c00345{letter-spacing:-1.013227pt;}
.ls7e_c00345{letter-spacing:-0.975467pt;}
.ls32_c00345{letter-spacing:-0.931413pt;}
.ls4d_c00345{letter-spacing:-0.925120pt;}
.ls68_c00345{letter-spacing:-0.849600pt;}
.ls4e_c00345{letter-spacing:-0.830720pt;}
.ls7f_c00345{letter-spacing:-0.805547pt;}
.ls2d_c00345{letter-spacing:-0.748907pt;}
.ls7a_c00345{letter-spacing:-0.730027pt;}
.ls48_c00345{letter-spacing:-0.711147pt;}
.ls3f_c00345{letter-spacing:-0.685973pt;}
.ls7d_c00345{letter-spacing:-0.679680pt;}
.ls7b_c00345{letter-spacing:-0.648213pt;}
.ls2c_c00345{letter-spacing:-0.597867pt;}
.ls60_c00345{letter-spacing:-0.585280pt;}
.ls5e_c00345{letter-spacing:-0.547520pt;}
.ls4b_c00345{letter-spacing:-0.541227pt;}
.ls30_c00345{letter-spacing:-0.528640pt;}
.ls31_c00345{letter-spacing:-0.522347pt;}
.ls43_c00345{letter-spacing:-0.516053pt;}
.ls3c_c00345{letter-spacing:-0.503467pt;}
.ls6b_c00345{letter-spacing:-0.490880pt;}
.ls3d_c00345{letter-spacing:-0.478293pt;}
.ls3b_c00345{letter-spacing:-0.453120pt;}
.ls6c_c00345{letter-spacing:-0.446827pt;}
.ls66_c00345{letter-spacing:-0.421653pt;}
.ls76_c00345{letter-spacing:-0.409067pt;}
.ls2e_c00345{letter-spacing:-0.396480pt;}
.ls37_c00345{letter-spacing:-0.371307pt;}
.ls4a_c00345{letter-spacing:-0.358720pt;}
.ls59_c00345{letter-spacing:-0.346133pt;}
.ls78_c00345{letter-spacing:-0.339840pt;}
.ls46_c00345{letter-spacing:-0.333547pt;}
.ls79_c00345{letter-spacing:-0.320960pt;}
.ls75_c00345{letter-spacing:-0.302080pt;}
.ls73_c00345{letter-spacing:-0.283200pt;}
.ls5d_c00345{letter-spacing:-0.277440pt;}
.ls65_c00345{letter-spacing:-0.270613pt;}
.ls36_c00345{letter-spacing:-0.264320pt;}
.ls77_c00345{letter-spacing:-0.251733pt;}
.ls5c_c00345{letter-spacing:-0.245440pt;}
.ls4f_c00345{letter-spacing:-0.226560pt;}
.ls58_c00345{letter-spacing:-0.207680pt;}
.ls52_c00345{letter-spacing:-0.201387pt;}
.ls71_c00345{letter-spacing:-0.176213pt;}
.ls41_c00345{letter-spacing:-0.163627pt;}
.ls56_c00345{letter-spacing:-0.157333pt;}
.ls62_c00345{letter-spacing:-0.151040pt;}
.ls57_c00345{letter-spacing:-0.144747pt;}
.ls6a_c00345{letter-spacing:-0.132160pt;}
.ls4c_c00345{letter-spacing:-0.125867pt;}
.ls42_c00345{letter-spacing:-0.113280pt;}
.ls72_c00345{letter-spacing:-0.106987pt;}
.ls64_c00345{letter-spacing:-0.100693pt;}
.ls51_c00345{letter-spacing:-0.094400pt;}
.ls5f_c00345{letter-spacing:-0.075520pt;}
.ls2f_c00345{letter-spacing:-0.069227pt;}
.ls38_c00345{letter-spacing:-0.056640pt;}
.ls67_c00345{letter-spacing:-0.050347pt;}
.ls3e_c00345{letter-spacing:-0.044053pt;}
.ls5a_c00345{letter-spacing:-0.031467pt;}
.ls39_c00345{letter-spacing:-0.025173pt;}
.ls6e_c00345{letter-spacing:-0.018880pt;}
.ls44_c00345{letter-spacing:-0.006293pt;}
.ls34_c00345{letter-spacing:0.000000pt;}
.ls15_c00345{letter-spacing:0.025173pt;}
.ls28_c00345{letter-spacing:0.037760pt;}
.ls0_c00345{letter-spacing:0.050347pt;}
.ls1d_c00345{letter-spacing:0.069227pt;}
.ls22_c00345{letter-spacing:0.075520pt;}
.lse_c00345{letter-spacing:0.081813pt;}
.ls23_c00345{letter-spacing:0.100693pt;}
.ls27_c00345{letter-spacing:0.138453pt;}
.ls55_c00345{letter-spacing:0.151040pt;}
.ls20_c00345{letter-spacing:0.157333pt;}
.ls4_c00345{letter-spacing:0.176213pt;}
.ls11_c00345{letter-spacing:0.182507pt;}
.ls1c_c00345{letter-spacing:0.195093pt;}
.ls1f_c00345{letter-spacing:0.201387pt;}
.ls2a_c00345{letter-spacing:0.226560pt;}
.ls9_c00345{letter-spacing:0.314667pt;}
.lsf_c00345{letter-spacing:0.320960pt;}
.ls16_c00345{letter-spacing:0.377600pt;}
.ls13_c00345{letter-spacing:0.390187pt;}
.ls1b_c00345{letter-spacing:0.402773pt;}
.ls70_c00345{letter-spacing:0.409067pt;}
.ls1e_c00345{letter-spacing:0.446827pt;}
.ls25_c00345{letter-spacing:0.453120pt;}
.ls3_c00345{letter-spacing:0.503467pt;}
.ls24_c00345{letter-spacing:0.541227pt;}
.ls18_c00345{letter-spacing:0.571520pt;}
.ls17_c00345{letter-spacing:0.583680pt;}
.lsc_c00345{letter-spacing:0.667093pt;}
.ls1_c00345{letter-spacing:0.717440pt;}
.ls10_c00345{letter-spacing:0.747840pt;}
.ls12_c00345{letter-spacing:0.774080pt;}
.ls1a_c00345{letter-spacing:0.792960pt;}
.ls69_c00345{letter-spacing:0.824427pt;}
.ls80_c00345{letter-spacing:0.837013pt;}
.lsa_c00345{letter-spacing:0.862187pt;}
.ls2b_c00345{letter-spacing:0.895413pt;}
.ls5_c00345{letter-spacing:0.930240pt;}
.ls8_c00345{letter-spacing:0.978880pt;}
.ls6_c00345{letter-spacing:0.991040pt;}
.ls21_c00345{letter-spacing:1.101333pt;}
.lsd_c00345{letter-spacing:1.167360pt;}
.ls2_c00345{letter-spacing:1.220907pt;}
.lsb_c00345{letter-spacing:1.353067pt;}
.ls29_c00345{letter-spacing:1.434880pt;}
.ls26_c00345{letter-spacing:1.497813pt;}
.ls7_c00345{letter-spacing:1.678080pt;}
.ls19_c00345{letter-spacing:1.856533pt;}
.ls14_c00345{letter-spacing:2.057920pt;}
.ls33_c00345{letter-spacing:3.146667pt;}
.ws1_c00345{word-spacing:-0.602240pt;}
.ws4_c00345{word-spacing:0.000000pt;}
.ws3_c00345{word-spacing:2.839680pt;}
.ws2_c00345{word-spacing:7.377067pt;}
.ws0_c00345{word-spacing:17.765547pt;}
._11_c00345{margin-left:-5.957867pt;}
._12_c00345{margin-left:-3.788587pt;}
._a_c00345{margin-left:-2.215253pt;}
._f_c00345{margin-left:-1.248000pt;}
._9_c00345{width:1.038400pt;}
._e_c00345{width:2.152320pt;}
._5_c00345{width:3.549440pt;}
._10_c00345{width:4.562667pt;}
._0_c00345{width:5.714347pt;}
._4_c00345{width:7.482773pt;}
._3_c00345{width:8.565227pt;}
._1_c00345{width:9.886827pt;}
._2_c00345{width:11.088853pt;}
._14_c00345{width:12.624427pt;}
._15_c00345{width:13.908267pt;}
._13_c00345{width:15.538667pt;}
._7_c00345{width:17.319253pt;}
._6_c00345{width:19.679253pt;}
._8_c00345{width:21.145600pt;}
._b_c00345{width:22.223680pt;}
._c_c00345{width:23.851733pt;}
._d_c00345{width:25.022293pt;}
.fs3_c00345{font-size:54.400000pt;}
.fs0_c00345{font-size:54.933333pt;}
.fs4_c00345{font-size:55.466667pt;}
.fs2_c00345{font-size:60.800000pt;}
.fs1_c00345{font-size:62.933333pt;}
.y0_c00345{bottom:0.000000pt;}
.y1d_c00345{bottom:68.160005pt;}
.y1c_c00345{bottom:120.020539pt;}
.y1b_c00345{bottom:175.040005pt;}
.y1a_c00345{bottom:229.133339pt;}
.y19_c00345{bottom:257.615205pt;}
.y18_c00345{bottom:284.188805pt;}
.y17_c00345{bottom:312.021072pt;}
.y15_c00345{bottom:339.844005pt;}
.y16_c00345{bottom:339.853339pt;}
.y14_c00345{bottom:394.249872pt;}
.y13_c00345{bottom:448.970405pt;}
.y12_c00345{bottom:476.173339pt;}
.y10_c00345{bottom:531.527739pt;}
.y11_c00345{bottom:531.533339pt;}
.yf_c00345{bottom:559.360005pt;}
.ye_c00345{bottom:586.893339pt;}
.yd_c00345{bottom:642.560005pt;}
.yc_c00345{bottom:698.234672pt;}
.yb_c00345{bottom:725.461072pt;}
.ya_c00345{bottom:753.293339pt;}
.y8_c00345{bottom:808.319739pt;}
.y9_c00345{bottom:808.320005pt;}
.y7_c00345{bottom:834.893339pt;}
.y6_c00345{bottom:890.240005pt;}
.y5_c00345{bottom:890.246939pt;}
.y4_c00345{bottom:944.652805pt;}
.y3_c00345{bottom:971.840005pt;}
.y2_c00345{bottom:1000.000005pt;}
.y1_c00345{bottom:1068.160005pt;}
.h2_c00345{height:53.914062pt;}
.h5_c00345{height:54.437500pt;}
.h4_c00345{height:59.642187pt;}
.h3_c00345{height:61.765625pt;}
.h1_c00345{height:1122.666667pt;}
.h0_c00345{height:1122.880005pt;}
.w1_c00345{width:793.333333pt;}
.w0_c00345{width:793.599999pt;}
.x0_c00345{left:0.000000pt;}
.x1c_c00345{left:106.831465pt;}
.x13_c00345{left:108.114665pt;}
.x2_c00345{left:110.719999pt;}
.x1_c00345{left:111.613332pt;}
.x8_c00345{left:146.839999pt;}
.x14_c00345{left:155.026665pt;}
.x12_c00345{left:156.306665pt;}
.xd_c00345{left:157.321599pt;}
.x9_c00345{left:179.239999pt;}
.xa_c00345{left:199.839999pt;}
.x19_c00345{left:205.986665pt;}
.x1d_c00345{left:208.173332pt;}
.x10_c00345{left:217.426665pt;}
.x1a_c00345{left:226.853332pt;}
.x1e_c00345{left:228.959999pt;}
.x11_c00345{left:242.146665pt;}
.x1b_c00345{left:260.959999pt;}
.x17_c00345{left:322.413332pt;}
.x18_c00345{left:342.546665pt;}
.xf_c00345{left:355.319999pt;}
.x15_c00345{left:363.679999pt;}
.x1f_c00345{left:377.199999pt;}
.x16_c00345{left:392.159999pt;}
.xe_c00345{left:431.146665pt;}
.xb_c00345{left:481.453332pt;}
.xc_c00345{left:504.493332pt;}
.x3_c00345{left:560.453332pt;}
.x4_c00345{left:583.466665pt;}
.x5_c00345{left:611.639999pt;}
.x6_c00345{left:625.439999pt;}
.x7_c00345{left:645.533332pt;}
}





/* 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_c00346 {
    display:none;
  }
  .loading-indicator_c00346.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00346 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_c00346 { 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_c00346" -> "#page-container .classname_c00346")
 */
.pf_c00346 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00346 { /* 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_c00346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00346 { /* 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_c00346 { /* 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_c00346 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00346 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00346 {overflow:visible;}
  }
}
.c_c00346 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00346 { /* 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_c00346:after { /* webkit #35443 */
  content: '';
}
.t_c00346:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00346 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 */
}
.__c00346 { /* 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_c00346 { /* info for Javascript */
  display:none;
}
.l_c00346 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00346 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00346 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00346: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_c00346 {
    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_c00346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00346.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_c00346 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00346;src:url('chunks/assets/font_44f49fa3c146452ce2422dcd.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;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:ff2_c00346;src:url('chunks/assets/font_892a7db912b3787ddfc95cbf.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.284180;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_c00346;src:url('chunks/assets/font_8496331397ebdcae291186d2.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.284668;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_c00346;src:url('chunks/assets/font_f3d22c72e532be5fd9e0b579.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:0.666000;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_c00346{transform:matrix(0.110577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110577,0.000000,0.000000,0.250000,0,0);}
.m0_c00346{transform:matrix(0.122413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122413,0.000000,0.000000,0.250000,0,0);}
.m5_c00346{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.m3_c00346{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m1_c00346{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);}
.m4_c00346{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls5_c00346{letter-spacing:-2.898000px;}
.lsc_c00346{letter-spacing:-2.814000px;}
.ls6_c00346{letter-spacing:-1.701300px;}
.ls8_c00346{letter-spacing:-0.858600px;}
.lsb_c00346{letter-spacing:-0.705960px;}
.ls7_c00346{letter-spacing:-0.139920px;}
.ls9_c00346{letter-spacing:0.000000px;}
.ls3_c00346{letter-spacing:0.558540px;}
.ls0_c00346{letter-spacing:0.751140px;}
.ls2_c00346{letter-spacing:0.930900px;}
.ls1_c00346{letter-spacing:0.969420px;}
.ls4_c00346{letter-spacing:1.592160px;}
.lsa_c00346{letter-spacing:3.180000px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{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__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00346{word-spacing:-2.272680px;}
.ws2_c00346{word-spacing:-1.271160px;}
.ws3_c00346{word-spacing:0.000000px;}
.ws0_c00346{word-spacing:4.301400px;}
._1_c00346{margin-left:-2.851800px;}
._0_c00346{width:1.135200px;}
.fc0_c00346{color:transparent;}
.fs8_c00346{font-size:33.000600px;}
.fs7_c00346{font-size:52.800000px;}
.fs6_c00346{font-size:54.720000px;}
.fs4_c00346{font-size:58.200000px;}
.fs5_c00346{font-size:59.400000px;}
.fs2_c00346{font-size:63.600000px;}
.fs1_c00346{font-size:64.200000px;}
.fs9_c00346{font-size:80.400000px;}
.fs0_c00346{font-size:82.800000px;}
.fs3_c00346{font-size:149.760000px;}
.y0_c00346{bottom:0.000000px;}
.y4_c00346{bottom:148.695000px;}
.y3_c00346{bottom:167.040000px;}
.y2_c00346{bottom:185.400000px;}
.ya_c00346{bottom:697.335000px;}
.y9_c00346{bottom:704.895000px;}
.y8_c00346{bottom:712.095000px;}
.y7_c00346{bottom:727.575000px;}
.y6_c00346{bottom:887.400000px;}
.y5_c00346{bottom:915.135000px;}
.yc_c00346{bottom:1079.295000px;}
.y1_c00346{bottom:1079.655000px;}
.yb_c00346{bottom:1145.880000px;}
.h9_c00346{height:34.418595px;}
.h7_c00346{height:36.443520px;}
.h8_c00346{height:51.820313px;}
.h5_c00346{height:60.700781px;}
.h6_c00346{height:61.952344px;}
.ha_c00346{height:62.419922px;}
.h3_c00346{height:62.977441px;}
.hb_c00346{height:78.908203px;}
.h2_c00346{height:86.357813px;}
.h4_c00346{height:99.740160px;}
.h1_c00346{height:1263.000000px;}
.h0_c00346{height:1263.240000px;}
.w1_c00346{width:892.500000px;}
.w0_c00346{width:892.800000px;}
.x0_c00346{left:0.000000px;}
.x1_c00346{left:114.870000px;}
.x3_c00346{left:119.805000px;}
.x2_c00346{left:121.395000px;}
.x5_c00346{left:461.415000px;}
.x4_c00346{left:528.855000px;}
.x8_c00346{left:578.400000px;}
.x6_c00346{left:580.695000px;}
.x7_c00346{left:582.855000px;}
.x9_c00346{left:670.230000px;}
.xa_c00346{left:742.980000px;}
.xb_c00346{left:787.335000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls5_c00346{letter-spacing:-2.576000pt;}
.lsc_c00346{letter-spacing:-2.501333pt;}
.ls6_c00346{letter-spacing:-1.512267pt;}
.ls8_c00346{letter-spacing:-0.763200pt;}
.lsb_c00346{letter-spacing:-0.627520pt;}
.ls7_c00346{letter-spacing:-0.124373pt;}
.ls9_c00346{letter-spacing:0.000000pt;}
.ls3_c00346{letter-spacing:0.496480pt;}
.ls0_c00346{letter-spacing:0.667680pt;}
.ls2_c00346{letter-spacing:0.827467pt;}
.ls1_c00346{letter-spacing:0.861707pt;}
.ls4_c00346{letter-spacing:1.415253pt;}
.lsa_c00346{letter-spacing:2.826667pt;}
.ws1_c00346{word-spacing:-2.020160pt;}
.ws2_c00346{word-spacing:-1.129920pt;}
.ws3_c00346{word-spacing:0.000000pt;}
.ws0_c00346{word-spacing:3.823467pt;}
._1_c00346{margin-left:-2.534933pt;}
._0_c00346{width:1.009067pt;}
.fs8_c00346{font-size:29.333867pt;}
.fs7_c00346{font-size:46.933333pt;}
.fs6_c00346{font-size:48.640000pt;}
.fs4_c00346{font-size:51.733333pt;}
.fs5_c00346{font-size:52.800000pt;}
.fs2_c00346{font-size:56.533333pt;}
.fs1_c00346{font-size:57.066667pt;}
.fs9_c00346{font-size:71.466667pt;}
.fs0_c00346{font-size:73.600000pt;}
.fs3_c00346{font-size:133.120000pt;}
.y0_c00346{bottom:0.000000pt;}
.y4_c00346{bottom:132.173333pt;}
.y3_c00346{bottom:148.480000pt;}
.y2_c00346{bottom:164.800000pt;}
.ya_c00346{bottom:619.853333pt;}
.y9_c00346{bottom:626.573333pt;}
.y8_c00346{bottom:632.973333pt;}
.y7_c00346{bottom:646.733333pt;}
.y6_c00346{bottom:788.800000pt;}
.y5_c00346{bottom:813.453333pt;}
.yc_c00346{bottom:959.373333pt;}
.y1_c00346{bottom:959.693333pt;}
.yb_c00346{bottom:1018.560000pt;}
.h9_c00346{height:30.594306pt;}
.h7_c00346{height:32.394240pt;}
.h8_c00346{height:46.062500pt;}
.h5_c00346{height:53.956250pt;}
.h6_c00346{height:55.068750pt;}
.ha_c00346{height:55.484375pt;}
.h3_c00346{height:55.979948pt;}
.hb_c00346{height:70.140625pt;}
.h2_c00346{height:76.762500pt;}
.h4_c00346{height:88.657920pt;}
.h1_c00346{height:1122.666667pt;}
.h0_c00346{height:1122.880000pt;}
.w1_c00346{width:793.333333pt;}
.w0_c00346{width:793.600000pt;}
.x0_c00346{left:0.000000pt;}
.x1_c00346{left:102.106667pt;}
.x3_c00346{left:106.493333pt;}
.x2_c00346{left:107.906667pt;}
.x5_c00346{left:410.146667pt;}
.x4_c00346{left:470.093333pt;}
.x8_c00346{left:514.133333pt;}
.x6_c00346{left:516.173333pt;}
.x7_c00346{left:518.093333pt;}
.x9_c00346{left:595.760000pt;}
.xa_c00346{left:660.426667pt;}
.xb_c00346{left:699.853333pt;}
}





/* 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_c00347 {
    display:none;
  }
  .loading-indicator_c00347.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00347 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_c00347 { 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_c00347" -> "#page-container .classname_c00347")
 */
.pf_c00347 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00347 { /* 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_c00347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00347 { /* 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_c00347 { /* 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_c00347 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00347 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00347 {overflow:visible;}
  }
}
.c_c00347 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00347 { /* 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_c00347:after { /* webkit #35443 */
  content: '';
}
.t_c00347:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00347 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 */
}
.__c00347 { /* 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_c00347 { /* info for Javascript */
  display:none;
}
.l_c00347 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00347 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00347 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00347: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_c00347 {
    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_c00347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00347.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_c00347 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00347;src:url('chunks/assets/font_6b8c7ce3b83dfc24fe08b469.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.284668;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_c00347;src:url('chunks/assets/font_031e2c2e5dfd9de69c064b62.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.284180;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_c00347;src:url('chunks/assets/font_473d615091953cc5e24cb0da.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:0.666000;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_c00347;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;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;}
.mb_c00347{transform:matrix(0.141204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141204,0.000000,0.000000,0.250000,0,0);}
.ma_c00347{transform:matrix(0.158252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158252,0.000000,0.000000,0.250000,0,0);}
.m8_c00347{transform:matrix(0.206872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206872,0.000000,0.000000,0.250000,0,0);}
.me_c00347{transform:matrix(0.232287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232287,0.000000,0.000000,0.250000,0,0);}
.m6_c00347{transform:matrix(0.238797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238797,0.000000,0.000000,0.250000,0,0);}
.mc_c00347{transform:matrix(0.240554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240554,0.000000,0.000000,0.250000,0,0);}
.m9_c00347{transform:matrix(0.245218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245218,0.000000,0.000000,0.250000,0,0);}
.m0_c00347{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.md_c00347{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m7_c00347{transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);}
.m1_c00347{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);}
.m2_c00347{transform:matrix(0.257233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257233,0.000000,0.000000,0.250000,0,0);}
.m3_c00347{transform:matrix(0.272586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272586,0.000000,0.000000,0.250000,0,0);}
.m4_c00347{transform:matrix(0.289832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289832,0.000000,0.000000,0.250000,0,0);}
.m5_c00347{transform:matrix(0.298685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298685,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls68_c00347{letter-spacing:-2.436000px;}
.ls7d_c00347{letter-spacing:-2.415000px;}
.ls7e_c00347{letter-spacing:-2.394000px;}
.ls53_c00347{letter-spacing:-2.352000px;}
.ls97_c00347{letter-spacing:-2.268000px;}
.ls72_c00347{letter-spacing:-2.234160px;}
.ls73_c00347{letter-spacing:-1.649520px;}
.ls94_c00347{letter-spacing:-1.621680px;}
.ls8f_c00347{letter-spacing:-1.545120px;}
.ls5e_c00347{letter-spacing:-1.531200px;}
.ls8a_c00347{letter-spacing:-1.426800px;}
.ls6f_c00347{letter-spacing:-1.315440px;}
.ls8b_c00347{letter-spacing:-1.218000px;}
.ls71_c00347{letter-spacing:-1.211040px;}
.ls6e_c00347{letter-spacing:-1.190160px;}
.ls81_c00347{letter-spacing:-1.169280px;}
.ls60_c00347{letter-spacing:-1.078800px;}
.ls64_c00347{letter-spacing:-0.995280px;}
.ls95_c00347{letter-spacing:-0.897840px;}
.ls83_c00347{letter-spacing:-0.856080px;}
.ls85_c00347{letter-spacing:-0.814320px;}
.ls6d_c00347{letter-spacing:-0.758640px;}
.ls5b_c00347{letter-spacing:-0.675120px;}
.ls61_c00347{letter-spacing:-0.591600px;}
.ls6b_c00347{letter-spacing:-0.563760px;}
.ls63_c00347{letter-spacing:-0.556800px;}
.ls7f_c00347{letter-spacing:-0.535920px;}
.ls84_c00347{letter-spacing:-0.515040px;}
.ls6c_c00347{letter-spacing:-0.501120px;}
.ls5a_c00347{letter-spacing:-0.487200px;}
.ls5f_c00347{letter-spacing:-0.452400px;}
.ls8d_c00347{letter-spacing:-0.445440px;}
.ls75_c00347{letter-spacing:-0.431520px;}
.ls76_c00347{letter-spacing:-0.417600px;}
.ls88_c00347{letter-spacing:-0.403680px;}
.ls5c_c00347{letter-spacing:-0.396720px;}
.ls87_c00347{letter-spacing:-0.368880px;}
.ls78_c00347{letter-spacing:-0.354960px;}
.ls67_c00347{letter-spacing:-0.327120px;}
.ls7c_c00347{letter-spacing:-0.285360px;}
.ls90_c00347{letter-spacing:-0.257520px;}
.ls56_c00347{letter-spacing:-0.250560px;}
.ls77_c00347{letter-spacing:-0.243600px;}
.ls8e_c00347{letter-spacing:-0.229680px;}
.ls69_c00347{letter-spacing:-0.208800px;}
.ls74_c00347{letter-spacing:-0.201840px;}
.ls5d_c00347{letter-spacing:-0.180960px;}
.ls6a_c00347{letter-spacing:-0.174000px;}
.ls55_c00347{letter-spacing:-0.167040px;}
.ls86_c00347{letter-spacing:-0.139200px;}
.ls92_c00347{letter-spacing:-0.118320px;}
.ls7a_c00347{letter-spacing:-0.111360px;}
.ls57_c00347{letter-spacing:-0.097440px;}
.ls58_c00347{letter-spacing:-0.090480px;}
.ls91_c00347{letter-spacing:-0.062640px;}
.ls93_c00347{letter-spacing:-0.055680px;}
.ls7b_c00347{letter-spacing:-0.048720px;}
.ls59_c00347{letter-spacing:-0.041760px;}
.ls70_c00347{letter-spacing:-0.041400px;}
.ls89_c00347{letter-spacing:-0.027840px;}
.ls8c_c00347{letter-spacing:-0.006960px;}
.ls54_c00347{letter-spacing:0.000000px;}
.ls23_c00347{letter-spacing:0.006960px;}
.ls62_c00347{letter-spacing:0.013920px;}
.ls34_c00347{letter-spacing:0.027840px;}
.ls33_c00347{letter-spacing:0.048720px;}
.ls65_c00347{letter-spacing:0.055680px;}
.ls41_c00347{letter-spacing:0.062640px;}
.ls42_c00347{letter-spacing:0.069600px;}
.ls2e_c00347{letter-spacing:0.076560px;}
.ls16_c00347{letter-spacing:0.090480px;}
.ls31_c00347{letter-spacing:0.097440px;}
.ls27_c00347{letter-spacing:0.104400px;}
.ls2_c00347{letter-spacing:0.118320px;}
.ls2d_c00347{letter-spacing:0.132240px;}
.ls36_c00347{letter-spacing:0.146160px;}
.ls51_c00347{letter-spacing:0.153120px;}
.ls28_c00347{letter-spacing:0.160080px;}
.ls1b_c00347{letter-spacing:0.167040px;}
.ls4_c00347{letter-spacing:0.174000px;}
.lsa_c00347{letter-spacing:0.180960px;}
.ls48_c00347{letter-spacing:0.194880px;}
.ls82_c00347{letter-spacing:0.215760px;}
.ls1_c00347{letter-spacing:0.222720px;}
.ls3d_c00347{letter-spacing:0.229680px;}
.ls44_c00347{letter-spacing:0.236640px;}
.ls2b_c00347{letter-spacing:0.243600px;}
.ls96_c00347{letter-spacing:0.250560px;}
.ls26_c00347{letter-spacing:0.257520px;}
.ls0_c00347{letter-spacing:0.306240px;}
.ls7_c00347{letter-spacing:0.320160px;}
.ls2a_c00347{letter-spacing:0.334080px;}
.ls45_c00347{letter-spacing:0.348000px;}
.ls9_c00347{letter-spacing:0.354960px;}
.ls3f_c00347{letter-spacing:0.361920px;}
.ls1e_c00347{letter-spacing:0.368880px;}
.ls6_c00347{letter-spacing:0.382800px;}
.ls38_c00347{letter-spacing:0.438480px;}
.lsf_c00347{letter-spacing:0.445440px;}
.ls39_c00347{letter-spacing:0.459360px;}
.ls8_c00347{letter-spacing:0.473280px;}
.ls19_c00347{letter-spacing:0.501120px;}
.lsd_c00347{letter-spacing:0.542880px;}
.ls4f_c00347{letter-spacing:0.549840px;}
.ls49_c00347{letter-spacing:0.556800px;}
.lsb_c00347{letter-spacing:0.570720px;}
.ls40_c00347{letter-spacing:0.577680px;}
.ls1a_c00347{letter-spacing:0.591600px;}
.ls32_c00347{letter-spacing:0.612480px;}
.ls1c_c00347{letter-spacing:0.619440px;}
.ls4b_c00347{letter-spacing:0.640320px;}
.ls80_c00347{letter-spacing:0.675120px;}
.ls4c_c00347{letter-spacing:0.744720px;}
.ls47_c00347{letter-spacing:0.793440px;}
.ls46_c00347{letter-spacing:0.800400px;}
.ls5_c00347{letter-spacing:0.807360px;}
.lsc_c00347{letter-spacing:0.821280px;}
.ls13_c00347{letter-spacing:0.849120px;}
.ls3a_c00347{letter-spacing:0.873600px;}
.ls15_c00347{letter-spacing:0.883920px;}
.ls3b_c00347{letter-spacing:0.893760px;}
.ls4a_c00347{letter-spacing:0.897840px;}
.ls10_c00347{letter-spacing:0.918720px;}
.ls12_c00347{letter-spacing:0.925680px;}
.ls43_c00347{letter-spacing:0.939600px;}
.ls25_c00347{letter-spacing:0.953520px;}
.ls30_c00347{letter-spacing:0.960480px;}
.ls14_c00347{letter-spacing:0.995280px;}
.lse_c00347{letter-spacing:1.002240px;}
.ls2f_c00347{letter-spacing:1.028160px;}
.ls3c_c00347{letter-spacing:1.037040px;}
.ls3_c00347{letter-spacing:1.050960px;}
.ls1d_c00347{letter-spacing:1.057920px;}
.ls4e_c00347{letter-spacing:1.120560px;}
.ls17_c00347{letter-spacing:1.211040px;}
.ls29_c00347{letter-spacing:1.364160px;}
.ls4d_c00347{letter-spacing:1.378080px;}
.ls2c_c00347{letter-spacing:1.404480px;}
.ls22_c00347{letter-spacing:1.411200px;}
.ls24_c00347{letter-spacing:1.461600px;}
.ls50_c00347{letter-spacing:1.642560px;}
.ls20_c00347{letter-spacing:1.680000px;}
.ls35_c00347{letter-spacing:1.705200px;}
.ls21_c00347{letter-spacing:1.749300px;}
.ls11_c00347{letter-spacing:1.920960px;}
.ls37_c00347{letter-spacing:1.983600px;}
.ls18_c00347{letter-spacing:2.039280px;}
.ls1f_c00347{letter-spacing:2.479680px;}
.ls79_c00347{letter-spacing:2.784000px;}
.ls3e_c00347{letter-spacing:2.839680px;}
.ls52_c00347{letter-spacing:2.888400px;}
.ls66_c00347{letter-spacing:3.480000px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{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__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00347{word-spacing:-0.455520px;}
.ws4_c00347{word-spacing:0.000000px;}
.ws3_c00347{word-spacing:1.431840px;}
.ws2_c00347{word-spacing:9.777600px;}
.ws0_c00347{word-spacing:21.072000px;}
._f_c00347{margin-left:-6.492960px;}
._10_c00347{margin-left:-3.576000px;}
._e_c00347{margin-left:-1.837440px;}
._6_c00347{width:1.795680px;}
._7_c00347{width:3.876720px;}
._15_c00347{width:5.036640px;}
._9_c00347{width:6.208320px;}
._16_c00347{width:7.328880px;}
._8_c00347{width:8.338080px;}
._5_c00347{width:10.154640px;}
._2_c00347{width:11.303040px;}
._4_c00347{width:12.757680px;}
._3_c00347{width:13.885200px;}
._b_c00347{width:16.070640px;}
._17_c00347{width:18.068160px;}
._d_c00347{width:19.258320px;}
._a_c00347{width:20.977440px;}
._c_c00347{width:23.406480px;}
._12_c00347{width:25.056000px;}
._13_c00347{width:26.252640px;}
._14_c00347{width:28.001040px;}
._11_c00347{width:29.030640px;}
._0_c00347{width:40.771680px;}
._1_c00347{width:43.472160px;}
.fc0_c00347{color:transparent;}
.fs5_c00347{font-size:51.840000px;}
.fs6_c00347{font-size:64.800000px;}
.fs0_c00347{font-size:67.200000px;}
.fs4_c00347{font-size:68.400000px;}
.fs3_c00347{font-size:69.000000px;}
.fs1_c00347{font-size:69.600000px;}
.fs2_c00347{font-size:71.400000px;}
.y0_c00347{bottom:0.000000px;}
.y1e_c00347{bottom:70.200000px;}
.y1d_c00347{bottom:129.971400px;}
.y1c_c00347{bottom:160.578000px;}
.y1b_c00347{bottom:190.819200px;}
.y1a_c00347{bottom:221.425800px;}
.y19_c00347{bottom:252.728400px;}
.y18_c00347{bottom:314.651400px;}
.y17_c00347{bottom:375.133800px;}
.y16_c00347{bottom:405.375000px;}
.y15_c00347{bottom:468.015000px;}
.y14_c00347{bottom:468.016200px;}
.y13_c00347{bottom:498.240000px;}
.y12_c00347{bottom:498.245400px;}
.y11_c00347{bottom:529.200000px;}
.y10_c00347{bottom:591.855000px;}
.yf_c00347{bottom:654.480000px;}
.ye_c00347{bottom:654.493800px;}
.yd_c00347{bottom:685.100400px;}
.yc_c00347{bottom:716.055000px;}
.yb_c00347{bottom:777.975000px;}
.ya_c00347{bottom:808.200000px;}
.y9_c00347{bottom:870.499200px;}
.y8_c00347{bottom:931.695000px;}
.y7_c00347{bottom:962.655000px;}
.y6_c00347{bottom:962.664600px;}
.y5_c00347{bottom:993.253800px;}
.y4_c00347{bottom:1023.860400px;}
.y3_c00347{bottom:1054.813800px;}
.y2_c00347{bottom:1085.055000px;}
.y1_c00347{bottom:1191.240000px;}
.h8_c00347{height:34.525440px;}
.hb_c00347{height:63.597656px;}
.h2_c00347{height:65.953125px;}
.h7_c00347{height:67.130859px;}
.h6_c00347{height:67.719727px;}
.h3_c00347{height:68.308594px;}
.h4_c00347{height:68.313394px;}
.ha_c00347{height:68.322994px;}
.h5_c00347{height:70.040332px;}
.h9_c00347{height:70.087500px;}
.h1_c00347{height:1263.000000px;}
.h0_c00347{height:1263.240000px;}
.w1_c00347{width:892.500000px;}
.w0_c00347{width:892.800000px;}
.x0_c00347{left:0.000000px;}
.x17_c00347{left:121.750200px;}
.x1_c00347{left:123.045000px;}
.x16_c00347{left:175.845000px;}
.x2_c00347{left:176.940000px;}
.x13_c00347{left:231.375000px;}
.x14_c00347{left:253.770000px;}
.xb_c00347{left:266.160000px;}
.xc_c00347{left:284.595000px;}
.x15_c00347{left:377.820000px;}
.xa_c00347{left:405.270000px;}
.x18_c00347{left:423.630000px;}
.xd_c00347{left:430.815000px;}
.xe_c00347{left:462.420000px;}
.x11_c00347{left:479.535000px;}
.x3_c00347{left:543.375000px;}
.x12_c00347{left:552.420000px;}
.x4_c00347{left:569.640000px;}
.x5_c00347{left:601.350000px;}
.xf_c00347{left:635.925000px;}
.x6_c00347{left:640.905000px;}
.x10_c00347{left:658.380000px;}
.x7_c00347{left:678.480000px;}
.x8_c00347{left:722.085000px;}
.x9_c00347{left:738.060000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls68_c00347{letter-spacing:-2.165333pt;}
.ls7d_c00347{letter-spacing:-2.146667pt;}
.ls7e_c00347{letter-spacing:-2.128000pt;}
.ls53_c00347{letter-spacing:-2.090667pt;}
.ls97_c00347{letter-spacing:-2.016000pt;}
.ls72_c00347{letter-spacing:-1.985920pt;}
.ls73_c00347{letter-spacing:-1.466240pt;}
.ls94_c00347{letter-spacing:-1.441493pt;}
.ls8f_c00347{letter-spacing:-1.373440pt;}
.ls5e_c00347{letter-spacing:-1.361067pt;}
.ls8a_c00347{letter-spacing:-1.268267pt;}
.ls6f_c00347{letter-spacing:-1.169280pt;}
.ls8b_c00347{letter-spacing:-1.082667pt;}
.ls71_c00347{letter-spacing:-1.076480pt;}
.ls6e_c00347{letter-spacing:-1.057920pt;}
.ls81_c00347{letter-spacing:-1.039360pt;}
.ls60_c00347{letter-spacing:-0.958933pt;}
.ls64_c00347{letter-spacing:-0.884693pt;}
.ls95_c00347{letter-spacing:-0.798080pt;}
.ls83_c00347{letter-spacing:-0.760960pt;}
.ls85_c00347{letter-spacing:-0.723840pt;}
.ls6d_c00347{letter-spacing:-0.674347pt;}
.ls5b_c00347{letter-spacing:-0.600107pt;}
.ls61_c00347{letter-spacing:-0.525867pt;}
.ls6b_c00347{letter-spacing:-0.501120pt;}
.ls63_c00347{letter-spacing:-0.494933pt;}
.ls7f_c00347{letter-spacing:-0.476373pt;}
.ls84_c00347{letter-spacing:-0.457813pt;}
.ls6c_c00347{letter-spacing:-0.445440pt;}
.ls5a_c00347{letter-spacing:-0.433067pt;}
.ls5f_c00347{letter-spacing:-0.402133pt;}
.ls8d_c00347{letter-spacing:-0.395947pt;}
.ls75_c00347{letter-spacing:-0.383573pt;}
.ls76_c00347{letter-spacing:-0.371200pt;}
.ls88_c00347{letter-spacing:-0.358827pt;}
.ls5c_c00347{letter-spacing:-0.352640pt;}
.ls87_c00347{letter-spacing:-0.327893pt;}
.ls78_c00347{letter-spacing:-0.315520pt;}
.ls67_c00347{letter-spacing:-0.290773pt;}
.ls7c_c00347{letter-spacing:-0.253653pt;}
.ls90_c00347{letter-spacing:-0.228907pt;}
.ls56_c00347{letter-spacing:-0.222720pt;}
.ls77_c00347{letter-spacing:-0.216533pt;}
.ls8e_c00347{letter-spacing:-0.204160pt;}
.ls69_c00347{letter-spacing:-0.185600pt;}
.ls74_c00347{letter-spacing:-0.179413pt;}
.ls5d_c00347{letter-spacing:-0.160853pt;}
.ls6a_c00347{letter-spacing:-0.154667pt;}
.ls55_c00347{letter-spacing:-0.148480pt;}
.ls86_c00347{letter-spacing:-0.123733pt;}
.ls92_c00347{letter-spacing:-0.105173pt;}
.ls7a_c00347{letter-spacing:-0.098987pt;}
.ls57_c00347{letter-spacing:-0.086613pt;}
.ls58_c00347{letter-spacing:-0.080427pt;}
.ls91_c00347{letter-spacing:-0.055680pt;}
.ls93_c00347{letter-spacing:-0.049493pt;}
.ls7b_c00347{letter-spacing:-0.043307pt;}
.ls59_c00347{letter-spacing:-0.037120pt;}
.ls70_c00347{letter-spacing:-0.036800pt;}
.ls89_c00347{letter-spacing:-0.024747pt;}
.ls8c_c00347{letter-spacing:-0.006187pt;}
.ls54_c00347{letter-spacing:0.000000pt;}
.ls23_c00347{letter-spacing:0.006187pt;}
.ls62_c00347{letter-spacing:0.012373pt;}
.ls34_c00347{letter-spacing:0.024747pt;}
.ls33_c00347{letter-spacing:0.043307pt;}
.ls65_c00347{letter-spacing:0.049493pt;}
.ls41_c00347{letter-spacing:0.055680pt;}
.ls42_c00347{letter-spacing:0.061867pt;}
.ls2e_c00347{letter-spacing:0.068053pt;}
.ls16_c00347{letter-spacing:0.080427pt;}
.ls31_c00347{letter-spacing:0.086613pt;}
.ls27_c00347{letter-spacing:0.092800pt;}
.ls2_c00347{letter-spacing:0.105173pt;}
.ls2d_c00347{letter-spacing:0.117547pt;}
.ls36_c00347{letter-spacing:0.129920pt;}
.ls51_c00347{letter-spacing:0.136107pt;}
.ls28_c00347{letter-spacing:0.142293pt;}
.ls1b_c00347{letter-spacing:0.148480pt;}
.ls4_c00347{letter-spacing:0.154667pt;}
.lsa_c00347{letter-spacing:0.160853pt;}
.ls48_c00347{letter-spacing:0.173227pt;}
.ls82_c00347{letter-spacing:0.191787pt;}
.ls1_c00347{letter-spacing:0.197973pt;}
.ls3d_c00347{letter-spacing:0.204160pt;}
.ls44_c00347{letter-spacing:0.210347pt;}
.ls2b_c00347{letter-spacing:0.216533pt;}
.ls96_c00347{letter-spacing:0.222720pt;}
.ls26_c00347{letter-spacing:0.228907pt;}
.ls0_c00347{letter-spacing:0.272213pt;}
.ls7_c00347{letter-spacing:0.284587pt;}
.ls2a_c00347{letter-spacing:0.296960pt;}
.ls45_c00347{letter-spacing:0.309333pt;}
.ls9_c00347{letter-spacing:0.315520pt;}
.ls3f_c00347{letter-spacing:0.321707pt;}
.ls1e_c00347{letter-spacing:0.327893pt;}
.ls6_c00347{letter-spacing:0.340267pt;}
.ls38_c00347{letter-spacing:0.389760pt;}
.lsf_c00347{letter-spacing:0.395947pt;}
.ls39_c00347{letter-spacing:0.408320pt;}
.ls8_c00347{letter-spacing:0.420693pt;}
.ls19_c00347{letter-spacing:0.445440pt;}
.lsd_c00347{letter-spacing:0.482560pt;}
.ls4f_c00347{letter-spacing:0.488747pt;}
.ls49_c00347{letter-spacing:0.494933pt;}
.lsb_c00347{letter-spacing:0.507307pt;}
.ls40_c00347{letter-spacing:0.513493pt;}
.ls1a_c00347{letter-spacing:0.525867pt;}
.ls32_c00347{letter-spacing:0.544427pt;}
.ls1c_c00347{letter-spacing:0.550613pt;}
.ls4b_c00347{letter-spacing:0.569173pt;}
.ls80_c00347{letter-spacing:0.600107pt;}
.ls4c_c00347{letter-spacing:0.661973pt;}
.ls47_c00347{letter-spacing:0.705280pt;}
.ls46_c00347{letter-spacing:0.711467pt;}
.ls5_c00347{letter-spacing:0.717653pt;}
.lsc_c00347{letter-spacing:0.730027pt;}
.ls13_c00347{letter-spacing:0.754773pt;}
.ls3a_c00347{letter-spacing:0.776533pt;}
.ls15_c00347{letter-spacing:0.785707pt;}
.ls3b_c00347{letter-spacing:0.794453pt;}
.ls4a_c00347{letter-spacing:0.798080pt;}
.ls10_c00347{letter-spacing:0.816640pt;}
.ls12_c00347{letter-spacing:0.822827pt;}
.ls43_c00347{letter-spacing:0.835200pt;}
.ls25_c00347{letter-spacing:0.847573pt;}
.ls30_c00347{letter-spacing:0.853760pt;}
.ls14_c00347{letter-spacing:0.884693pt;}
.lse_c00347{letter-spacing:0.890880pt;}
.ls2f_c00347{letter-spacing:0.913920pt;}
.ls3c_c00347{letter-spacing:0.921813pt;}
.ls3_c00347{letter-spacing:0.934187pt;}
.ls1d_c00347{letter-spacing:0.940373pt;}
.ls4e_c00347{letter-spacing:0.996053pt;}
.ls17_c00347{letter-spacing:1.076480pt;}
.ls29_c00347{letter-spacing:1.212587pt;}
.ls4d_c00347{letter-spacing:1.224960pt;}
.ls2c_c00347{letter-spacing:1.248427pt;}
.ls22_c00347{letter-spacing:1.254400pt;}
.ls24_c00347{letter-spacing:1.299200pt;}
.ls50_c00347{letter-spacing:1.460053pt;}
.ls20_c00347{letter-spacing:1.493333pt;}
.ls35_c00347{letter-spacing:1.515733pt;}
.ls21_c00347{letter-spacing:1.554933pt;}
.ls11_c00347{letter-spacing:1.707520pt;}
.ls37_c00347{letter-spacing:1.763200pt;}
.ls18_c00347{letter-spacing:1.812693pt;}
.ls1f_c00347{letter-spacing:2.204160pt;}
.ls79_c00347{letter-spacing:2.474667pt;}
.ls3e_c00347{letter-spacing:2.524160pt;}
.ls52_c00347{letter-spacing:2.567467pt;}
.ls66_c00347{letter-spacing:3.093333pt;}
.ws1_c00347{word-spacing:-0.404907pt;}
.ws4_c00347{word-spacing:0.000000pt;}
.ws3_c00347{word-spacing:1.272747pt;}
.ws2_c00347{word-spacing:8.691200pt;}
.ws0_c00347{word-spacing:18.730667pt;}
._f_c00347{margin-left:-5.771520pt;}
._10_c00347{margin-left:-3.178667pt;}
._e_c00347{margin-left:-1.633280pt;}
._6_c00347{width:1.596160pt;}
._7_c00347{width:3.445973pt;}
._15_c00347{width:4.477013pt;}
._9_c00347{width:5.518507pt;}
._16_c00347{width:6.514560pt;}
._8_c00347{width:7.411627pt;}
._5_c00347{width:9.026347pt;}
._2_c00347{width:10.047147pt;}
._4_c00347{width:11.340160pt;}
._3_c00347{width:12.342400pt;}
._b_c00347{width:14.285013pt;}
._17_c00347{width:16.060587pt;}
._d_c00347{width:17.118507pt;}
._a_c00347{width:18.646613pt;}
._c_c00347{width:20.805760pt;}
._12_c00347{width:22.272000pt;}
._13_c00347{width:23.335680pt;}
._14_c00347{width:24.889813pt;}
._11_c00347{width:25.805013pt;}
._0_c00347{width:36.241493pt;}
._1_c00347{width:38.641920pt;}
.fs5_c00347{font-size:46.080000pt;}
.fs6_c00347{font-size:57.600000pt;}
.fs0_c00347{font-size:59.733333pt;}
.fs4_c00347{font-size:60.800000pt;}
.fs3_c00347{font-size:61.333333pt;}
.fs1_c00347{font-size:61.866667pt;}
.fs2_c00347{font-size:63.466667pt;}
.y0_c00347{bottom:0.000000pt;}
.y1e_c00347{bottom:62.400000pt;}
.y1d_c00347{bottom:115.530133pt;}
.y1c_c00347{bottom:142.736000pt;}
.y1b_c00347{bottom:169.617067pt;}
.y1a_c00347{bottom:196.822933pt;}
.y19_c00347{bottom:224.647467pt;}
.y18_c00347{bottom:279.690133pt;}
.y17_c00347{bottom:333.452267pt;}
.y16_c00347{bottom:360.333333pt;}
.y15_c00347{bottom:416.013333pt;}
.y14_c00347{bottom:416.014400pt;}
.y13_c00347{bottom:442.880000pt;}
.y12_c00347{bottom:442.884800pt;}
.y11_c00347{bottom:470.400000pt;}
.y10_c00347{bottom:526.093333pt;}
.yf_c00347{bottom:581.760000pt;}
.ye_c00347{bottom:581.772267pt;}
.yd_c00347{bottom:608.978133pt;}
.yc_c00347{bottom:636.493333pt;}
.yb_c00347{bottom:691.533333pt;}
.ya_c00347{bottom:718.400000pt;}
.y9_c00347{bottom:773.777067pt;}
.y8_c00347{bottom:828.173333pt;}
.y7_c00347{bottom:855.693333pt;}
.y6_c00347{bottom:855.701867pt;}
.y5_c00347{bottom:882.892267pt;}
.y4_c00347{bottom:910.098133pt;}
.y3_c00347{bottom:937.612267pt;}
.y2_c00347{bottom:964.493333pt;}
.y1_c00347{bottom:1058.880000pt;}
.h8_c00347{height:30.689280pt;}
.hb_c00347{height:56.531250pt;}
.h2_c00347{height:58.625000pt;}
.h7_c00347{height:59.671875pt;}
.h6_c00347{height:60.195312pt;}
.h3_c00347{height:60.718750pt;}
.h4_c00347{height:60.723017pt;}
.ha_c00347{height:60.731550pt;}
.h5_c00347{height:62.258073pt;}
.h9_c00347{height:62.300000pt;}
.h1_c00347{height:1122.666667pt;}
.h0_c00347{height:1122.880000pt;}
.w1_c00347{width:793.333333pt;}
.w0_c00347{width:793.600000pt;}
.x0_c00347{left:0.000000pt;}
.x17_c00347{left:108.222400pt;}
.x1_c00347{left:109.373333pt;}
.x16_c00347{left:156.306667pt;}
.x2_c00347{left:157.280000pt;}
.x13_c00347{left:205.666667pt;}
.x14_c00347{left:225.573333pt;}
.xb_c00347{left:236.586667pt;}
.xc_c00347{left:252.973333pt;}
.x15_c00347{left:335.840000pt;}
.xa_c00347{left:360.240000pt;}
.x18_c00347{left:376.560000pt;}
.xd_c00347{left:382.946667pt;}
.xe_c00347{left:411.040000pt;}
.x11_c00347{left:426.253333pt;}
.x3_c00347{left:483.000000pt;}
.x12_c00347{left:491.040000pt;}
.x4_c00347{left:506.346667pt;}
.x5_c00347{left:534.533333pt;}
.xf_c00347{left:565.266667pt;}
.x6_c00347{left:569.693333pt;}
.x10_c00347{left:585.226667pt;}
.x7_c00347{left:603.093333pt;}
.x8_c00347{left:641.853333pt;}
.x9_c00347{left:656.053333pt;}
}





/* 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_c00348 {
    display:none;
  }
  .loading-indicator_c00348.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00348 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_c00348 { 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_c00348" -> "#page-container .classname_c00348")
 */
.pf_c00348 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00348 { /* 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_c00348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00348 { /* 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_c00348 { /* 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_c00348 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00348 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00348 {overflow:visible;}
  }
}
.c_c00348 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00348 { /* 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_c00348:after { /* webkit #35443 */
  content: '';
}
.t_c00348:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00348 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 */
}
.__c00348 { /* 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_c00348 { /* info for Javascript */
  display:none;
}
.l_c00348 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00348 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00348 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00348: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_c00348 {
    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_c00348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00348.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_c00348 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00348;src:url('chunks/assets/font_9456f8fb7fe3c52eaa0a9653.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.311035;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_c00348;src:url('chunks/assets/font_cbca7ff97c9f20b82f0d8b56.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.284668;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_c00348;src:url('chunks/assets/font_9ad66175c933a35a0446acbe.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.284180;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_c00348;src:url('chunks/assets/font_bb4d439705236e3bd9c1d672.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;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;}
.m3_c00348{transform:matrix(0.193617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193617,0.000000,0.000000,0.250000,0,0);}
.m0_c00348{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m4_c00348{transform:matrix(0.244285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244285,0.000000,0.000000,0.250000,0,0);}
.ma_c00348{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m9_c00348{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m1_c00348{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);}
.m8_c00348{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.mc_c00348{transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);}
.m2_c00348{transform:matrix(0.262233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262233,0.000000,0.000000,0.250000,0,0);}
.mb_c00348{transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);}
.m5_c00348{transform:matrix(0.264680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264680,0.000000,0.000000,0.250000,0,0);}
.m6_c00348{transform:matrix(0.287511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287511,0.000000,0.000000,0.250000,0,0);}
.m7_c00348{transform:matrix(0.301283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301283,0.000000,0.000000,0.250000,0,0);}
.v2_c00348{vertical-align:-25.928128px;}
.v0_c00348{vertical-align:0.000000px;}
.v1_c00348{vertical-align:25.920000px;}
.ls7b_c00348{letter-spacing:-2.415000px;}
.ls78_c00348{letter-spacing:-2.325300px;}
.ls76_c00348{letter-spacing:-2.310000px;}
.ls90_c00348{letter-spacing:-1.952700px;}
.ls85_c00348{letter-spacing:-1.483500px;}
.ls84_c00348{letter-spacing:-1.159200px;}
.ls94_c00348{letter-spacing:-1.110900px;}
.ls89_c00348{letter-spacing:-1.083300px;}
.ls91_c00348{letter-spacing:-0.800400px;}
.ls93_c00348{letter-spacing:-0.779700px;}
.ls82_c00348{letter-spacing:-0.676200px;}
.ls7d_c00348{letter-spacing:-0.607200px;}
.ls8d_c00348{letter-spacing:-0.483000px;}
.ls87_c00348{letter-spacing:-0.345000px;}
.ls86_c00348{letter-spacing:-0.296700px;}
.ls83_c00348{letter-spacing:-0.200100px;}
.ls81_c00348{letter-spacing:-0.138000px;}
.ls8e_c00348{letter-spacing:-0.131100px;}
.ls92_c00348{letter-spacing:-0.082800px;}
.ls79_c00348{letter-spacing:-0.027600px;}
.ls77_c00348{letter-spacing:0.000000px;}
.ls1f_c00348{letter-spacing:0.006900px;}
.ls55_c00348{letter-spacing:0.020700px;}
.ls80_c00348{letter-spacing:0.041400px;}
.ls4_c00348{letter-spacing:0.151800px;}
.ls37_c00348{letter-spacing:0.179400px;}
.ls14_c00348{letter-spacing:0.186300px;}
.ls73_c00348{letter-spacing:0.193200px;}
.ls24_c00348{letter-spacing:0.213900px;}
.ls49_c00348{letter-spacing:0.248400px;}
.ls7f_c00348{letter-spacing:0.255300px;}
.ls72_c00348{letter-spacing:0.269100px;}
.ls59_c00348{letter-spacing:0.276000px;}
.ls51_c00348{letter-spacing:0.282900px;}
.ls32_c00348{letter-spacing:0.289800px;}
.ls47_c00348{letter-spacing:0.303600px;}
.ls66_c00348{letter-spacing:0.310500px;}
.ls5d_c00348{letter-spacing:0.324300px;}
.ls54_c00348{letter-spacing:0.331200px;}
.ls6b_c00348{letter-spacing:0.345000px;}
.ls3a_c00348{letter-spacing:0.351900px;}
.ls5_c00348{letter-spacing:0.358800px;}
.ls42_c00348{letter-spacing:0.372600px;}
.ls46_c00348{letter-spacing:0.386400px;}
.ls61_c00348{letter-spacing:0.400200px;}
.ls3d_c00348{letter-spacing:0.414000px;}
.ls6f_c00348{letter-spacing:0.420900px;}
.lsb_c00348{letter-spacing:0.427800px;}
.ls4e_c00348{letter-spacing:0.434700px;}
.ls3e_c00348{letter-spacing:0.441600px;}
.ls12_c00348{letter-spacing:0.469200px;}
.ls3c_c00348{letter-spacing:0.476100px;}
.ls40_c00348{letter-spacing:0.489900px;}
.ls20_c00348{letter-spacing:0.524400px;}
.ls56_c00348{letter-spacing:0.531300px;}
.ls8b_c00348{letter-spacing:0.538200px;}
.ls58_c00348{letter-spacing:0.552000px;}
.ls0_c00348{letter-spacing:0.565800px;}
.ls5f_c00348{letter-spacing:0.593400px;}
.ls2f_c00348{letter-spacing:0.600300px;}
.ls44_c00348{letter-spacing:0.607200px;}
.ls3f_c00348{letter-spacing:0.614100px;}
.ls2a_c00348{letter-spacing:0.621000px;}
.ls95_c00348{letter-spacing:0.622740px;}
.ls4c_c00348{letter-spacing:0.627900px;}
.ls3b_c00348{letter-spacing:0.634800px;}
.lsc_c00348{letter-spacing:0.641700px;}
.ls1_c00348{letter-spacing:0.669300px;}
.ls1d_c00348{letter-spacing:0.676200px;}
.ls2c_c00348{letter-spacing:0.683100px;}
.ls36_c00348{letter-spacing:0.696900px;}
.lsd_c00348{letter-spacing:0.703800px;}
.ls10_c00348{letter-spacing:0.717600px;}
.lsf_c00348{letter-spacing:0.724500px;}
.ls48_c00348{letter-spacing:0.731400px;}
.ls38_c00348{letter-spacing:0.738720px;}
.ls63_c00348{letter-spacing:0.752100px;}
.ls69_c00348{letter-spacing:0.759000px;}
.ls1c_c00348{letter-spacing:0.765900px;}
.ls45_c00348{letter-spacing:0.772800px;}
.ls21_c00348{letter-spacing:0.779700px;}
.ls60_c00348{letter-spacing:0.786600px;}
.lsa_c00348{letter-spacing:0.793500px;}
.ls31_c00348{letter-spacing:0.807300px;}
.ls1b_c00348{letter-spacing:0.814200px;}
.ls8_c00348{letter-spacing:0.828000px;}
.ls75_c00348{letter-spacing:0.848700px;}
.ls7e_c00348{letter-spacing:0.855600px;}
.ls19_c00348{letter-spacing:0.862500px;}
.ls8c_c00348{letter-spacing:0.869400px;}
.ls5e_c00348{letter-spacing:0.876300px;}
.ls3_c00348{letter-spacing:0.883200px;}
.ls35_c00348{letter-spacing:0.890100px;}
.ls65_c00348{letter-spacing:0.903900px;}
.ls8f_c00348{letter-spacing:0.910800px;}
.ls2e_c00348{letter-spacing:0.916560px;}
.ls27_c00348{letter-spacing:0.924600px;}
.ls52_c00348{letter-spacing:0.931500px;}
.ls64_c00348{letter-spacing:0.937080px;}
.ls6a_c00348{letter-spacing:0.945300px;}
.ls6d_c00348{letter-spacing:0.966000px;}
.ls5b_c00348{letter-spacing:0.971280px;}
.ls68_c00348{letter-spacing:0.993600px;}
.ls74_c00348{letter-spacing:1.000500px;}
.ls11_c00348{letter-spacing:1.014300px;}
.ls4b_c00348{letter-spacing:1.028100px;}
.ls41_c00348{letter-spacing:1.035000px;}
.ls4a_c00348{letter-spacing:1.048800px;}
.ls57_c00348{letter-spacing:1.062600px;}
.ls71_c00348{letter-spacing:1.076400px;}
.ls2b_c00348{letter-spacing:1.080720px;}
.ls39_c00348{letter-spacing:1.083300px;}
.ls62_c00348{letter-spacing:1.090200px;}
.ls2_c00348{letter-spacing:1.097100px;}
.ls30_c00348{letter-spacing:1.110900px;}
.ls4d_c00348{letter-spacing:1.152300px;}
.ls43_c00348{letter-spacing:1.179900px;}
.ls22_c00348{letter-spacing:1.203840px;}
.ls23_c00348{letter-spacing:1.207500px;}
.ls2d_c00348{letter-spacing:1.210680px;}
.ls5c_c00348{letter-spacing:1.214400px;}
.ls1e_c00348{letter-spacing:1.235100px;}
.ls16_c00348{letter-spacing:1.248900px;}
.ls5a_c00348{letter-spacing:1.251720px;}
.ls1a_c00348{letter-spacing:1.269600px;}
.ls28_c00348{letter-spacing:1.279080px;}
.ls6e_c00348{letter-spacing:1.290300px;}
.ls50_c00348{letter-spacing:1.311000px;}
.ls7c_c00348{letter-spacing:1.331700px;}
.ls29_c00348{letter-spacing:1.333800px;}
.ls15_c00348{letter-spacing:1.338600px;}
.ls7_c00348{letter-spacing:1.359300px;}
.ls4f_c00348{letter-spacing:1.380000px;}
.ls6c_c00348{letter-spacing:1.400700px;}
.ls13_c00348{letter-spacing:1.462800px;}
.ls70_c00348{letter-spacing:1.469700px;}
.ls25_c00348{letter-spacing:1.476600px;}
.lse_c00348{letter-spacing:1.490400px;}
.ls17_c00348{letter-spacing:1.497300px;}
.ls9_c00348{letter-spacing:1.524900px;}
.ls8a_c00348{letter-spacing:1.545600px;}
.ls18_c00348{letter-spacing:1.753822px;}
.ls67_c00348{letter-spacing:1.835400px;}
.ls34_c00348{letter-spacing:1.952700px;}
.ls26_c00348{letter-spacing:1.973400px;}
.ls53_c00348{letter-spacing:2.539200px;}
.ls6_c00348{letter-spacing:2.559900px;}
.ls88_c00348{letter-spacing:3.120000px;}
.ls33_c00348{letter-spacing:3.408600px;}
.ls7a_c00348{letter-spacing:3.450000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{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__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00348{word-spacing:-17.250000px;}
.ws1_c00348{word-spacing:-0.204720px;}
.ws2_c00348{word-spacing:0.000000px;}
._16_c00348{margin-left:-5.368200px;}
._d_c00348{margin-left:-2.996700px;}
._b_c00348{margin-left:-1.440000px;}
._4_c00348{width:1.352400px;}
._c_c00348{width:2.352900px;}
._a_c00348{width:3.546600px;}
._1_c00348{width:5.616600px;}
._2_c00348{width:6.941400px;}
._3_c00348{width:8.100600px;}
._0_c00348{width:9.218400px;}
._17_c00348{width:10.391400px;}
._5_c00348{width:11.495400px;}
._7_c00348{width:12.530400px;}
._8_c00348{width:14.283000px;}
._6_c00348{width:15.621600px;}
._e_c00348{width:16.732500px;}
._9_c00348{width:18.885300px;}
._15_c00348{width:20.748300px;}
._10_c00348{width:21.900600px;}
._20_c00348{width:23.059800px;}
._21_c00348{width:24.453600px;}
._f_c00348{width:28.345200px;}
._1e_c00348{width:31.618200px;}
._1f_c00348{width:33.493680px;}
._1b_c00348{width:34.782900px;}
._1c_c00348{width:37.501500px;}
._1a_c00348{width:38.983920px;}
._1d_c00348{width:39.988500px;}
._11_c00348{width:42.752400px;}
._13_c00348{width:44.656800px;}
._14_c00348{width:46.002300px;}
._12_c00348{width:47.955000px;}
._18_c00348{width:49.224600px;}
._19_c00348{width:54.737700px;}
.fc0_c00348{color:transparent;}
.fs2_c00348{font-size:47.400600px;}
.fs5_c00348{font-size:58.200000px;}
.fs4_c00348{font-size:62.400000px;}
.fs0_c00348{font-size:66.000000px;}
.fs3_c00348{font-size:68.400000px;}
.fs1_c00348{font-size:69.000000px;}
.y0_c00348{bottom:0.000000px;}
.y23_c00348{bottom:64.095000px;}
.y22_c00348{bottom:124.552500px;}
.y21_c00348{bottom:155.516250px;}
.y20_c00348{bottom:186.480000px;}
.y1f_c00348{bottom:217.451250px;}
.y1e_c00348{bottom:248.415000px;}
.y1d_c00348{bottom:277.935000px;}
.y1c_c00348{bottom:309.975750px;}
.y1b_c00348{bottom:340.215000px;}
.y1a_c00348{bottom:402.114000px;}
.y19_c00348{bottom:433.434750px;}
.y18_c00348{bottom:464.036250px;}
.y17_c00348{bottom:495.000000px;}
.y15_c00348{bottom:525.966000px;}
.y16_c00348{bottom:525.975000px;}
.y14_c00348{bottom:556.567500px;}
.y13_c00348{bottom:587.514000px;}
.y11_c00348{bottom:618.488250px;}
.y12_c00348{bottom:618.495000px;}
.y10_c00348{bottom:649.089750px;}
.yf_c00348{bottom:710.655000px;}
.ye_c00348{bottom:741.975000px;}
.yd_c00348{bottom:772.935000px;}
.yc_c00348{bottom:803.880000px;}
.yb_c00348{bottom:834.855000px;}
.ya_c00348{bottom:896.775000px;}
.y8_c00348{bottom:958.328250px;}
.y9_c00348{bottom:958.335000px;}
.y7_c00348{bottom:1019.514000px;}
.y4_c00348{bottom:1050.492000px;}
.y5_c00348{bottom:1050.495000px;}
.y6_c00348{bottom:1056.975000px;}
.y3_c00348{bottom:1081.076250px;}
.y2_c00348{bottom:1111.695000px;}
.y1_c00348{bottom:1188.360000px;}
.h5_c00348{height:46.521097px;}
.ha_c00348{height:57.120117px;}
.h8_c00348{height:61.242188px;}
.h2_c00348{height:66.515625px;}
.h3_c00348{height:67.719727px;}
.h9_c00348{height:67.740727px;}
.h6_c00348{height:68.961375px;}
.h7_c00348{height:71.964844px;}
.h4_c00348{height:72.441097px;}
.h1_c00348{height:1263.000000px;}
.h0_c00348{height:1263.240000px;}
.w1_c00348{width:892.500000px;}
.w0_c00348{width:892.800000px;}
.x0_c00348{left:0.000000px;}
.x12_c00348{left:122.915250px;}
.x2_c00348{left:125.081250px;}
.x1_c00348{left:126.285000px;}
.x11_c00348{left:176.895000px;}
.xf_c00348{left:178.023750px;}
.x3_c00348{left:285.045000px;}
.x17_c00348{left:297.615000px;}
.x4_c00348{left:310.215000px;}
.x18_c00348{left:321.090000px;}
.x5_c00348{left:324.045000px;}
.x6_c00348{left:337.920000px;}
.x15_c00348{left:350.610000px;}
.x7_c00348{left:353.655000px;}
.x16_c00348{left:373.155000px;}
.x8_c00348{left:379.590000px;}
.x10_c00348{left:419.520000px;}
.x19_c00348{left:427.515000px;}
.x13_c00348{left:454.140000px;}
.x14_c00348{left:474.330000px;}
.x9_c00348{left:486.855000px;}
.xa_c00348{left:523.605000px;}
.xb_c00348{left:592.650000px;}
.xc_c00348{left:633.480000px;}
.xd_c00348{left:675.975000px;}
.xe_c00348{left:701.820000px;}
@media print{
.v2_c00348{vertical-align:-23.047225pt;}
.v0_c00348{vertical-align:0.000000pt;}
.v1_c00348{vertical-align:23.040000pt;}
.ls7b_c00348{letter-spacing:-2.146667pt;}
.ls78_c00348{letter-spacing:-2.066933pt;}
.ls76_c00348{letter-spacing:-2.053333pt;}
.ls90_c00348{letter-spacing:-1.735733pt;}
.ls85_c00348{letter-spacing:-1.318667pt;}
.ls84_c00348{letter-spacing:-1.030400pt;}
.ls94_c00348{letter-spacing:-0.987467pt;}
.ls89_c00348{letter-spacing:-0.962933pt;}
.ls91_c00348{letter-spacing:-0.711467pt;}
.ls93_c00348{letter-spacing:-0.693067pt;}
.ls82_c00348{letter-spacing:-0.601067pt;}
.ls7d_c00348{letter-spacing:-0.539733pt;}
.ls8d_c00348{letter-spacing:-0.429333pt;}
.ls87_c00348{letter-spacing:-0.306667pt;}
.ls86_c00348{letter-spacing:-0.263733pt;}
.ls83_c00348{letter-spacing:-0.177867pt;}
.ls81_c00348{letter-spacing:-0.122667pt;}
.ls8e_c00348{letter-spacing:-0.116533pt;}
.ls92_c00348{letter-spacing:-0.073600pt;}
.ls79_c00348{letter-spacing:-0.024533pt;}
.ls77_c00348{letter-spacing:0.000000pt;}
.ls1f_c00348{letter-spacing:0.006133pt;}
.ls55_c00348{letter-spacing:0.018400pt;}
.ls80_c00348{letter-spacing:0.036800pt;}
.ls4_c00348{letter-spacing:0.134933pt;}
.ls37_c00348{letter-spacing:0.159467pt;}
.ls14_c00348{letter-spacing:0.165600pt;}
.ls73_c00348{letter-spacing:0.171733pt;}
.ls24_c00348{letter-spacing:0.190133pt;}
.ls49_c00348{letter-spacing:0.220800pt;}
.ls7f_c00348{letter-spacing:0.226933pt;}
.ls72_c00348{letter-spacing:0.239200pt;}
.ls59_c00348{letter-spacing:0.245333pt;}
.ls51_c00348{letter-spacing:0.251467pt;}
.ls32_c00348{letter-spacing:0.257600pt;}
.ls47_c00348{letter-spacing:0.269867pt;}
.ls66_c00348{letter-spacing:0.276000pt;}
.ls5d_c00348{letter-spacing:0.288267pt;}
.ls54_c00348{letter-spacing:0.294400pt;}
.ls6b_c00348{letter-spacing:0.306667pt;}
.ls3a_c00348{letter-spacing:0.312800pt;}
.ls5_c00348{letter-spacing:0.318933pt;}
.ls42_c00348{letter-spacing:0.331200pt;}
.ls46_c00348{letter-spacing:0.343467pt;}
.ls61_c00348{letter-spacing:0.355733pt;}
.ls3d_c00348{letter-spacing:0.368000pt;}
.ls6f_c00348{letter-spacing:0.374133pt;}
.lsb_c00348{letter-spacing:0.380267pt;}
.ls4e_c00348{letter-spacing:0.386400pt;}
.ls3e_c00348{letter-spacing:0.392533pt;}
.ls12_c00348{letter-spacing:0.417067pt;}
.ls3c_c00348{letter-spacing:0.423200pt;}
.ls40_c00348{letter-spacing:0.435467pt;}
.ls20_c00348{letter-spacing:0.466133pt;}
.ls56_c00348{letter-spacing:0.472267pt;}
.ls8b_c00348{letter-spacing:0.478400pt;}
.ls58_c00348{letter-spacing:0.490667pt;}
.ls0_c00348{letter-spacing:0.502933pt;}
.ls5f_c00348{letter-spacing:0.527467pt;}
.ls2f_c00348{letter-spacing:0.533600pt;}
.ls44_c00348{letter-spacing:0.539733pt;}
.ls3f_c00348{letter-spacing:0.545867pt;}
.ls2a_c00348{letter-spacing:0.552000pt;}
.ls95_c00348{letter-spacing:0.553547pt;}
.ls4c_c00348{letter-spacing:0.558133pt;}
.ls3b_c00348{letter-spacing:0.564267pt;}
.lsc_c00348{letter-spacing:0.570400pt;}
.ls1_c00348{letter-spacing:0.594933pt;}
.ls1d_c00348{letter-spacing:0.601067pt;}
.ls2c_c00348{letter-spacing:0.607200pt;}
.ls36_c00348{letter-spacing:0.619467pt;}
.lsd_c00348{letter-spacing:0.625600pt;}
.ls10_c00348{letter-spacing:0.637867pt;}
.lsf_c00348{letter-spacing:0.644000pt;}
.ls48_c00348{letter-spacing:0.650133pt;}
.ls38_c00348{letter-spacing:0.656640pt;}
.ls63_c00348{letter-spacing:0.668533pt;}
.ls69_c00348{letter-spacing:0.674667pt;}
.ls1c_c00348{letter-spacing:0.680800pt;}
.ls45_c00348{letter-spacing:0.686933pt;}
.ls21_c00348{letter-spacing:0.693067pt;}
.ls60_c00348{letter-spacing:0.699200pt;}
.lsa_c00348{letter-spacing:0.705333pt;}
.ls31_c00348{letter-spacing:0.717600pt;}
.ls1b_c00348{letter-spacing:0.723733pt;}
.ls8_c00348{letter-spacing:0.736000pt;}
.ls75_c00348{letter-spacing:0.754400pt;}
.ls7e_c00348{letter-spacing:0.760533pt;}
.ls19_c00348{letter-spacing:0.766667pt;}
.ls8c_c00348{letter-spacing:0.772800pt;}
.ls5e_c00348{letter-spacing:0.778933pt;}
.ls3_c00348{letter-spacing:0.785067pt;}
.ls35_c00348{letter-spacing:0.791200pt;}
.ls65_c00348{letter-spacing:0.803467pt;}
.ls8f_c00348{letter-spacing:0.809600pt;}
.ls2e_c00348{letter-spacing:0.814720pt;}
.ls27_c00348{letter-spacing:0.821867pt;}
.ls52_c00348{letter-spacing:0.828000pt;}
.ls64_c00348{letter-spacing:0.832960pt;}
.ls6a_c00348{letter-spacing:0.840267pt;}
.ls6d_c00348{letter-spacing:0.858667pt;}
.ls5b_c00348{letter-spacing:0.863360pt;}
.ls68_c00348{letter-spacing:0.883200pt;}
.ls74_c00348{letter-spacing:0.889333pt;}
.ls11_c00348{letter-spacing:0.901600pt;}
.ls4b_c00348{letter-spacing:0.913867pt;}
.ls41_c00348{letter-spacing:0.920000pt;}
.ls4a_c00348{letter-spacing:0.932267pt;}
.ls57_c00348{letter-spacing:0.944533pt;}
.ls71_c00348{letter-spacing:0.956800pt;}
.ls2b_c00348{letter-spacing:0.960640pt;}
.ls39_c00348{letter-spacing:0.962933pt;}
.ls62_c00348{letter-spacing:0.969067pt;}
.ls2_c00348{letter-spacing:0.975200pt;}
.ls30_c00348{letter-spacing:0.987467pt;}
.ls4d_c00348{letter-spacing:1.024267pt;}
.ls43_c00348{letter-spacing:1.048800pt;}
.ls22_c00348{letter-spacing:1.070080pt;}
.ls23_c00348{letter-spacing:1.073333pt;}
.ls2d_c00348{letter-spacing:1.076160pt;}
.ls5c_c00348{letter-spacing:1.079467pt;}
.ls1e_c00348{letter-spacing:1.097867pt;}
.ls16_c00348{letter-spacing:1.110133pt;}
.ls5a_c00348{letter-spacing:1.112640pt;}
.ls1a_c00348{letter-spacing:1.128533pt;}
.ls28_c00348{letter-spacing:1.136960pt;}
.ls6e_c00348{letter-spacing:1.146933pt;}
.ls50_c00348{letter-spacing:1.165333pt;}
.ls7c_c00348{letter-spacing:1.183733pt;}
.ls29_c00348{letter-spacing:1.185600pt;}
.ls15_c00348{letter-spacing:1.189867pt;}
.ls7_c00348{letter-spacing:1.208267pt;}
.ls4f_c00348{letter-spacing:1.226667pt;}
.ls6c_c00348{letter-spacing:1.245067pt;}
.ls13_c00348{letter-spacing:1.300267pt;}
.ls70_c00348{letter-spacing:1.306400pt;}
.ls25_c00348{letter-spacing:1.312533pt;}
.lse_c00348{letter-spacing:1.324800pt;}
.ls17_c00348{letter-spacing:1.330933pt;}
.ls9_c00348{letter-spacing:1.355467pt;}
.ls8a_c00348{letter-spacing:1.373867pt;}
.ls18_c00348{letter-spacing:1.558953pt;}
.ls67_c00348{letter-spacing:1.631467pt;}
.ls34_c00348{letter-spacing:1.735733pt;}
.ls26_c00348{letter-spacing:1.754133pt;}
.ls53_c00348{letter-spacing:2.257067pt;}
.ls6_c00348{letter-spacing:2.275467pt;}
.ls88_c00348{letter-spacing:2.773333pt;}
.ls33_c00348{letter-spacing:3.029867pt;}
.ls7a_c00348{letter-spacing:3.066667pt;}
.ws0_c00348{word-spacing:-15.333333pt;}
.ws1_c00348{word-spacing:-0.181973pt;}
.ws2_c00348{word-spacing:0.000000pt;}
._16_c00348{margin-left:-4.771733pt;}
._d_c00348{margin-left:-2.663733pt;}
._b_c00348{margin-left:-1.280000pt;}
._4_c00348{width:1.202133pt;}
._c_c00348{width:2.091467pt;}
._a_c00348{width:3.152533pt;}
._1_c00348{width:4.992533pt;}
._2_c00348{width:6.170133pt;}
._3_c00348{width:7.200533pt;}
._0_c00348{width:8.194133pt;}
._17_c00348{width:9.236800pt;}
._5_c00348{width:10.218133pt;}
._7_c00348{width:11.138133pt;}
._8_c00348{width:12.696000pt;}
._6_c00348{width:13.885867pt;}
._e_c00348{width:14.873333pt;}
._9_c00348{width:16.786933pt;}
._15_c00348{width:18.442933pt;}
._10_c00348{width:19.467200pt;}
._20_c00348{width:20.497600pt;}
._21_c00348{width:21.736533pt;}
._f_c00348{width:25.195733pt;}
._1e_c00348{width:28.105067pt;}
._1f_c00348{width:29.772160pt;}
._1b_c00348{width:30.918133pt;}
._1c_c00348{width:33.334667pt;}
._1a_c00348{width:34.652373pt;}
._1d_c00348{width:35.545333pt;}
._11_c00348{width:38.002133pt;}
._13_c00348{width:39.694933pt;}
._14_c00348{width:40.890933pt;}
._12_c00348{width:42.626667pt;}
._18_c00348{width:43.755200pt;}
._19_c00348{width:48.655733pt;}
.fs2_c00348{font-size:42.133867pt;}
.fs5_c00348{font-size:51.733333pt;}
.fs4_c00348{font-size:55.466667pt;}
.fs0_c00348{font-size:58.666667pt;}
.fs3_c00348{font-size:60.800000pt;}
.fs1_c00348{font-size:61.333333pt;}
.y0_c00348{bottom:0.000000pt;}
.y23_c00348{bottom:56.973333pt;}
.y22_c00348{bottom:110.713333pt;}
.y21_c00348{bottom:138.236667pt;}
.y20_c00348{bottom:165.760000pt;}
.y1f_c00348{bottom:193.290000pt;}
.y1e_c00348{bottom:220.813333pt;}
.y1d_c00348{bottom:247.053333pt;}
.y1c_c00348{bottom:275.534000pt;}
.y1b_c00348{bottom:302.413333pt;}
.y1a_c00348{bottom:357.434667pt;}
.y19_c00348{bottom:385.275333pt;}
.y18_c00348{bottom:412.476667pt;}
.y17_c00348{bottom:440.000000pt;}
.y15_c00348{bottom:467.525333pt;}
.y16_c00348{bottom:467.533333pt;}
.y14_c00348{bottom:494.726667pt;}
.y13_c00348{bottom:522.234667pt;}
.y11_c00348{bottom:549.767333pt;}
.y12_c00348{bottom:549.773333pt;}
.y10_c00348{bottom:576.968667pt;}
.yf_c00348{bottom:631.693333pt;}
.ye_c00348{bottom:659.533333pt;}
.yd_c00348{bottom:687.053333pt;}
.yc_c00348{bottom:714.560000pt;}
.yb_c00348{bottom:742.093333pt;}
.ya_c00348{bottom:797.133333pt;}
.y8_c00348{bottom:851.847333pt;}
.y9_c00348{bottom:851.853333pt;}
.y7_c00348{bottom:906.234667pt;}
.y4_c00348{bottom:933.770667pt;}
.y5_c00348{bottom:933.773333pt;}
.y6_c00348{bottom:939.533333pt;}
.y3_c00348{bottom:960.956667pt;}
.y2_c00348{bottom:988.173333pt;}
.y1_c00348{bottom:1056.320000pt;}
.h5_c00348{height:41.352086pt;}
.ha_c00348{height:50.773437pt;}
.h8_c00348{height:54.437500pt;}
.h2_c00348{height:59.125000pt;}
.h3_c00348{height:60.195312pt;}
.h9_c00348{height:60.213979pt;}
.h6_c00348{height:61.299000pt;}
.h7_c00348{height:63.968750pt;}
.h4_c00348{height:64.392086pt;}
.h1_c00348{height:1122.666667pt;}
.h0_c00348{height:1122.880000pt;}
.w1_c00348{width:793.333333pt;}
.w0_c00348{width:793.600000pt;}
.x0_c00348{left:0.000000pt;}
.x12_c00348{left:109.258000pt;}
.x2_c00348{left:111.183333pt;}
.x1_c00348{left:112.253333pt;}
.x11_c00348{left:157.240000pt;}
.xf_c00348{left:158.243333pt;}
.x3_c00348{left:253.373333pt;}
.x17_c00348{left:264.546667pt;}
.x4_c00348{left:275.746667pt;}
.x18_c00348{left:285.413333pt;}
.x5_c00348{left:288.040000pt;}
.x6_c00348{left:300.373333pt;}
.x15_c00348{left:311.653333pt;}
.x7_c00348{left:314.360000pt;}
.x16_c00348{left:331.693333pt;}
.x8_c00348{left:337.413333pt;}
.x10_c00348{left:372.906667pt;}
.x19_c00348{left:380.013333pt;}
.x13_c00348{left:403.680000pt;}
.x14_c00348{left:421.626667pt;}
.x9_c00348{left:432.760000pt;}
.xa_c00348{left:465.426667pt;}
.xb_c00348{left:526.800000pt;}
.xc_c00348{left:563.093333pt;}
.xd_c00348{left:600.866667pt;}
.xe_c00348{left:623.840000pt;}
}





/* 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_c00349 {
    display:none;
  }
  .loading-indicator_c00349.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00349 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_c00349 { 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_c00349" -> "#page-container .classname_c00349")
 */
.pf_c00349 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00349 { /* 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_c00349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00349 { /* 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_c00349 { /* 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_c00349 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00349 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00349 {overflow:visible;}
  }
}
.c_c00349 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00349 { /* 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_c00349:after { /* webkit #35443 */
  content: '';
}
.t_c00349:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00349 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 */
}
.__c00349 { /* 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_c00349 { /* info for Javascript */
  display:none;
}
.l_c00349 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00349 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00349 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00349: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_c00349 {
    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_c00349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00349.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_c00349 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00349;src:url('chunks/assets/font_0cfc268c6117af414cf8b3da.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.284668;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_c00349;src:url('chunks/assets/font_215b1a418566ee35556c73ac.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.311035;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_c00349;src:url('chunks/assets/font_d5a9e2ef9a10da96d5e68886.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.284180;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_c00349;src:url('chunks/assets/font_da53acb9a6b1ecbe27405693.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;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;}
.m5_c00349{transform:matrix(0.206422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206422,0.000000,0.000000,0.250000,0,0);}
.m7_c00349{transform:matrix(0.215389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215389,0.000000,0.000000,0.250000,0,0);}
.mc_c00349{transform:matrix(0.226578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226578,0.000000,0.000000,0.250000,0,0);}
.m8_c00349{transform:matrix(0.236366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236366,0.000000,0.000000,0.250000,0,0);}
.m3_c00349{transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);}
.md_c00349{transform:matrix(0.239874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239874,0.000000,0.000000,0.250000,0,0);}
.m2_c00349{transform:matrix(0.240006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240006,0.000000,0.000000,0.250000,0,0);}
.m6_c00349{transform:matrix(0.245956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245956,0.000000,0.000000,0.250000,0,0);}
.m4_c00349{transform:matrix(0.246834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246834,0.000000,0.000000,0.250000,0,0);}
.m1_c00349{transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);}
.me_c00349{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.mb_c00349{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m0_c00349{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);}
.ma_c00349{transform:matrix(0.264324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264324,0.000000,0.000000,0.250000,0,0);}
.m9_c00349{transform:matrix(0.290663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290663,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.ls92_c00349{letter-spacing:-2.583000px;}
.ls64_c00349{letter-spacing:-2.499000px;}
.ls83_c00349{letter-spacing:-2.415000px;}
.ls78_c00349{letter-spacing:-2.387400px;}
.ls66_c00349{letter-spacing:-2.213400px;}
.ls6c_c00349{letter-spacing:-2.159700px;}
.ls93_c00349{letter-spacing:-1.995000px;}
.ls7c_c00349{letter-spacing:-1.959600px;}
.ls68_c00349{letter-spacing:-1.899240px;}
.ls65_c00349{letter-spacing:-1.870680px;}
.ls72_c00349{letter-spacing:-1.635300px;}
.ls8f_c00349{letter-spacing:-1.538700px;}
.ls82_c00349{letter-spacing:-1.435200px;}
.ls89_c00349{letter-spacing:-1.428300px;}
.ls6a_c00349{letter-spacing:-1.393800px;}
.ls7e_c00349{letter-spacing:-1.117800px;}
.ls63_c00349{letter-spacing:-1.110900px;}
.ls61_c00349{letter-spacing:-1.083300px;}
.ls8a_c00349{letter-spacing:-1.028100px;}
.ls6e_c00349{letter-spacing:-1.014300px;}
.ls88_c00349{letter-spacing:-1.000500px;}
.ls81_c00349{letter-spacing:-0.952200px;}
.ls6d_c00349{letter-spacing:-0.945300px;}
.ls86_c00349{letter-spacing:-0.862500px;}
.ls7b_c00349{letter-spacing:-0.834900px;}
.ls70_c00349{letter-spacing:-0.821100px;}
.ls7d_c00349{letter-spacing:-0.814200px;}
.ls62_c00349{letter-spacing:-0.800400px;}
.ls90_c00349{letter-spacing:-0.779700px;}
.ls84_c00349{letter-spacing:-0.724500px;}
.ls85_c00349{letter-spacing:-0.690000px;}
.ls7a_c00349{letter-spacing:-0.676200px;}
.ls8d_c00349{letter-spacing:-0.558900px;}
.ls77_c00349{letter-spacing:-0.469200px;}
.ls8c_c00349{letter-spacing:-0.365700px;}
.ls87_c00349{letter-spacing:-0.331200px;}
.ls8b_c00349{letter-spacing:-0.276000px;}
.ls7f_c00349{letter-spacing:-0.241500px;}
.ls91_c00349{letter-spacing:-0.200100px;}
.ls76_c00349{letter-spacing:-0.186300px;}
.ls80_c00349{letter-spacing:-0.151800px;}
.ls69_c00349{letter-spacing:-0.131100px;}
.ls6b_c00349{letter-spacing:-0.041400px;}
.ls6f_c00349{letter-spacing:-0.020700px;}
.ls8e_c00349{letter-spacing:-0.006900px;}
.ls67_c00349{letter-spacing:0.000000px;}
.ls3_c00349{letter-spacing:0.006900px;}
.ls54_c00349{letter-spacing:0.027600px;}
.ls1e_c00349{letter-spacing:0.034500px;}
.ls79_c00349{letter-spacing:0.041400px;}
.ls3d_c00349{letter-spacing:0.048300px;}
.ls3b_c00349{letter-spacing:0.055200px;}
.ls71_c00349{letter-spacing:0.062100px;}
.ls49_c00349{letter-spacing:0.075900px;}
.ls13_c00349{letter-spacing:0.082800px;}
.ls75_c00349{letter-spacing:0.103500px;}
.ls7_c00349{letter-spacing:0.110400px;}
.ls4f_c00349{letter-spacing:0.117300px;}
.ls2b_c00349{letter-spacing:0.131100px;}
.ls3f_c00349{letter-spacing:0.144900px;}
.ls1c_c00349{letter-spacing:0.151800px;}
.ls35_c00349{letter-spacing:0.158700px;}
.ls2f_c00349{letter-spacing:0.165600px;}
.lsd_c00349{letter-spacing:0.172500px;}
.ls27_c00349{letter-spacing:0.179400px;}
.ls52_c00349{letter-spacing:0.186300px;}
.ls48_c00349{letter-spacing:0.193200px;}
.ls25_c00349{letter-spacing:0.200100px;}
.ls23_c00349{letter-spacing:0.213900px;}
.ls57_c00349{letter-spacing:0.220800px;}
.ls11_c00349{letter-spacing:0.241500px;}
.ls41_c00349{letter-spacing:0.244080px;}
.ls19_c00349{letter-spacing:0.248400px;}
.ls31_c00349{letter-spacing:0.255300px;}
.ls1_c00349{letter-spacing:0.276000px;}
.ls4d_c00349{letter-spacing:0.296700px;}
.ls1d_c00349{letter-spacing:0.317400px;}
.ls33_c00349{letter-spacing:0.331200px;}
.ls3a_c00349{letter-spacing:0.338100px;}
.ls5b_c00349{letter-spacing:0.345000px;}
.ls9_c00349{letter-spacing:0.351900px;}
.ls2a_c00349{letter-spacing:0.358800px;}
.ls32_c00349{letter-spacing:0.365700px;}
.ls42_c00349{letter-spacing:0.379500px;}
.ls36_c00349{letter-spacing:0.407100px;}
.ls30_c00349{letter-spacing:0.414000px;}
.ls37_c00349{letter-spacing:0.427800px;}
.ls2e_c00349{letter-spacing:0.448500px;}
.ls16_c00349{letter-spacing:0.455400px;}
.ls5e_c00349{letter-spacing:0.462300px;}
.ls8_c00349{letter-spacing:0.483000px;}
.ls59_c00349{letter-spacing:0.489900px;}
.ls5c_c00349{letter-spacing:0.496800px;}
.lsc_c00349{letter-spacing:0.503700px;}
.ls22_c00349{letter-spacing:0.510600px;}
.lse_c00349{letter-spacing:0.524400px;}
.ls1b_c00349{letter-spacing:0.538200px;}
.ls5_c00349{letter-spacing:0.552000px;}
.ls20_c00349{letter-spacing:0.558900px;}
.lsb_c00349{letter-spacing:0.565800px;}
.ls21_c00349{letter-spacing:0.586500px;}
.ls47_c00349{letter-spacing:0.603420px;}
.ls56_c00349{letter-spacing:0.607200px;}
.ls4a_c00349{letter-spacing:0.627900px;}
.ls3e_c00349{letter-spacing:0.634800px;}
.ls26_c00349{letter-spacing:0.648600px;}
.lsa_c00349{letter-spacing:0.655500px;}
.ls5d_c00349{letter-spacing:0.662400px;}
.ls38_c00349{letter-spacing:0.669300px;}
.ls29_c00349{letter-spacing:0.683100px;}
.ls4_c00349{letter-spacing:0.703800px;}
.ls1a_c00349{letter-spacing:0.717600px;}
.ls28_c00349{letter-spacing:0.752100px;}
.ls40_c00349{letter-spacing:0.759360px;}
.ls10_c00349{letter-spacing:0.765900px;}
.ls2_c00349{letter-spacing:0.828000px;}
.ls4c_c00349{letter-spacing:0.840720px;}
.ls14_c00349{letter-spacing:0.862500px;}
.ls4e_c00349{letter-spacing:0.894960px;}
.ls4b_c00349{letter-spacing:0.915300px;}
.ls51_c00349{letter-spacing:0.917700px;}
.ls3c_c00349{letter-spacing:0.924600px;}
.ls2c_c00349{letter-spacing:0.931500px;}
.ls44_c00349{letter-spacing:0.942420px;}
.ls0_c00349{letter-spacing:0.979800px;}
.ls46_c00349{letter-spacing:0.989880px;}
.ls45_c00349{letter-spacing:1.023780px;}
.ls12_c00349{letter-spacing:1.048800px;}
.ls2d_c00349{letter-spacing:1.073880px;}
.ls1f_c00349{letter-spacing:1.255800px;}
.ls73_c00349{letter-spacing:1.269600px;}
.ls17_c00349{letter-spacing:1.311000px;}
.ls50_c00349{letter-spacing:1.373100px;}
.ls53_c00349{letter-spacing:1.421400px;}
.ls6_c00349{letter-spacing:1.469700px;}
.ls39_c00349{letter-spacing:1.476600px;}
.ls34_c00349{letter-spacing:1.552500px;}
.ls43_c00349{letter-spacing:1.628400px;}
.ls15_c00349{letter-spacing:1.718100px;}
.lsf_c00349{letter-spacing:1.911300px;}
.ls60_c00349{letter-spacing:1.986000px;}
.ls24_c00349{letter-spacing:2.056200px;}
.ls18_c00349{letter-spacing:2.290800px;}
.ls5a_c00349{letter-spacing:2.539200px;}
.ls5f_c00349{letter-spacing:2.559900px;}
.ls58_c00349{letter-spacing:2.884200px;}
.ls55_c00349{letter-spacing:3.070500px;}
.ls74_c00349{letter-spacing:3.450000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{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__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00349{word-spacing:0.000000px;}
.ws0_c00349{word-spacing:4.706760px;}
._e_c00349{margin-left:-3.622500px;}
._8_c00349{margin-left:-2.013600px;}
._5_c00349{width:1.966500px;}
._7_c00349{width:3.607500px;}
._9_c00349{width:4.733400px;}
._d_c00349{width:6.081300px;}
._a_c00349{width:7.251900px;}
._6_c00349{width:8.663100px;}
._c_c00349{width:9.832500px;}
._10_c00349{width:10.897200px;}
._f_c00349{width:12.644100px;}
._b_c00349{width:13.725300px;}
._0_c00349{width:16.408200px;}
._3_c00349{width:20.589600px;}
._4_c00349{width:21.597000px;}
._2_c00349{width:23.204700px;}
._1_c00349{width:24.570900px;}
._13_c00349{width:28.759200px;}
._11_c00349{width:30.567000px;}
._15_c00349{width:32.436900px;}
._12_c00349{width:33.616800px;}
._14_c00349{width:35.479800px;}
.fc0_c00349{color:transparent;}
.fs7_c00349{font-size:57.000000px;}
.fs0_c00349{font-size:60.000000px;}
.fs4_c00349{font-size:67.800000px;}
.fs3_c00349{font-size:68.400000px;}
.fs1_c00349{font-size:69.000000px;}
.fs2_c00349{font-size:71.400000px;}
.fs6_c00349{font-size:73.800000px;}
.fs5_c00349{font-size:94.800000px;}
.y0_c00349{bottom:0.000000px;}
.y1f_c00349{bottom:63.375000px;}
.y1e_c00349{bottom:217.095000px;}
.y1d_c00349{bottom:248.410500px;}
.y1c_c00349{bottom:278.994750px;}
.y1b_c00349{bottom:309.975750px;}
.y1a_c00349{bottom:340.560000px;}
.y19_c00349{bottom:344.175000px;}
.y18_c00349{bottom:370.815000px;}
.y17_c00349{bottom:432.735000px;}
.y16_c00349{bottom:463.695000px;}
.y15_c00349{bottom:494.655000px;}
.y14_c00349{bottom:525.255000px;}
.y12_c00349{bottom:587.514000px;}
.y13_c00349{bottom:587.520000px;}
.y10_c00349{bottom:618.487500px;}
.y11_c00349{bottom:618.495000px;}
.yf_c00349{bottom:679.690500px;}
.ye_c00349{bottom:710.274750px;}
.yc_c00349{bottom:771.491250px;}
.yd_c00349{bottom:771.495000px;}
.ya_c00349{bottom:802.452000px;}
.yb_c00349{bottom:802.455000px;}
.y9_c00349{bottom:863.984250px;}
.y8_c00349{bottom:925.549500px;}
.y7_c00349{bottom:956.168250px;}
.y6_c00349{bottom:986.769750px;}
.y5_c00349{bottom:1017.354000px;}
.y4_c00349{bottom:1048.335000px;}
.y3_c00349{bottom:1078.935000px;}
.y2_c00349{bottom:1109.880000px;}
.y1_c00349{bottom:1186.935000px;}
.h8_c00349{height:55.942383px;}
.h2_c00349{height:58.886719px;}
.h3_c00349{height:67.719727px;}
.h5_c00349{height:68.997375px;}
.h4_c00349{height:71.957813px;}
.h7_c00349{height:74.376563px;}
.h6_c00349{height:98.873438px;}
.h1_c00349{height:1263.000000px;}
.h0_c00349{height:1263.240000px;}
.w1_c00349{width:892.500000px;}
.w0_c00349{width:892.800000px;}
.x0_c00349{left:0.000000px;}
.x1_c00349{left:122.685000px;}
.x1b_c00349{left:123.870000px;}
.x12_c00349{left:175.226250px;}
.xc_c00349{left:176.803500px;}
.x2_c00349{left:199.605000px;}
.x3_c00349{left:224.895000px;}
.x1a_c00349{left:230.805000px;}
.x15_c00349{left:246.405000px;}
.x4_c00349{left:251.550000px;}
.x16_c00349{left:274.860000px;}
.x11_c00349{left:297.856500px;}
.x5_c00349{left:303.750000px;}
.x6_c00349{left:402.045000px;}
.x1c_c00349{left:425.355000px;}
.x7_c00349{left:478.260000px;}
.xf_c00349{left:551.985000px;}
.x8_c00349{left:556.740000px;}
.x9_c00349{left:573.675000px;}
.x10_c00349{left:580.170000px;}
.x13_c00349{left:586.245000px;}
.x17_c00349{left:613.620000px;}
.x14_c00349{left:615.720000px;}
.xa_c00349{left:648.165000px;}
.xd_c00349{left:649.905000px;}
.x18_c00349{left:673.725000px;}
.xe_c00349{left:676.620000px;}
.xb_c00349{left:696.060000px;}
.x19_c00349{left:701.535000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls92_c00349{letter-spacing:-2.296000pt;}
.ls64_c00349{letter-spacing:-2.221333pt;}
.ls83_c00349{letter-spacing:-2.146667pt;}
.ls78_c00349{letter-spacing:-2.122133pt;}
.ls66_c00349{letter-spacing:-1.967467pt;}
.ls6c_c00349{letter-spacing:-1.919733pt;}
.ls93_c00349{letter-spacing:-1.773333pt;}
.ls7c_c00349{letter-spacing:-1.741867pt;}
.ls68_c00349{letter-spacing:-1.688213pt;}
.ls65_c00349{letter-spacing:-1.662827pt;}
.ls72_c00349{letter-spacing:-1.453600pt;}
.ls8f_c00349{letter-spacing:-1.367733pt;}
.ls82_c00349{letter-spacing:-1.275733pt;}
.ls89_c00349{letter-spacing:-1.269600pt;}
.ls6a_c00349{letter-spacing:-1.238933pt;}
.ls7e_c00349{letter-spacing:-0.993600pt;}
.ls63_c00349{letter-spacing:-0.987467pt;}
.ls61_c00349{letter-spacing:-0.962933pt;}
.ls8a_c00349{letter-spacing:-0.913867pt;}
.ls6e_c00349{letter-spacing:-0.901600pt;}
.ls88_c00349{letter-spacing:-0.889333pt;}
.ls81_c00349{letter-spacing:-0.846400pt;}
.ls6d_c00349{letter-spacing:-0.840267pt;}
.ls86_c00349{letter-spacing:-0.766667pt;}
.ls7b_c00349{letter-spacing:-0.742133pt;}
.ls70_c00349{letter-spacing:-0.729867pt;}
.ls7d_c00349{letter-spacing:-0.723733pt;}
.ls62_c00349{letter-spacing:-0.711467pt;}
.ls90_c00349{letter-spacing:-0.693067pt;}
.ls84_c00349{letter-spacing:-0.644000pt;}
.ls85_c00349{letter-spacing:-0.613333pt;}
.ls7a_c00349{letter-spacing:-0.601067pt;}
.ls8d_c00349{letter-spacing:-0.496800pt;}
.ls77_c00349{letter-spacing:-0.417067pt;}
.ls8c_c00349{letter-spacing:-0.325067pt;}
.ls87_c00349{letter-spacing:-0.294400pt;}
.ls8b_c00349{letter-spacing:-0.245333pt;}
.ls7f_c00349{letter-spacing:-0.214667pt;}
.ls91_c00349{letter-spacing:-0.177867pt;}
.ls76_c00349{letter-spacing:-0.165600pt;}
.ls80_c00349{letter-spacing:-0.134933pt;}
.ls69_c00349{letter-spacing:-0.116533pt;}
.ls6b_c00349{letter-spacing:-0.036800pt;}
.ls6f_c00349{letter-spacing:-0.018400pt;}
.ls8e_c00349{letter-spacing:-0.006133pt;}
.ls67_c00349{letter-spacing:0.000000pt;}
.ls3_c00349{letter-spacing:0.006133pt;}
.ls54_c00349{letter-spacing:0.024533pt;}
.ls1e_c00349{letter-spacing:0.030667pt;}
.ls79_c00349{letter-spacing:0.036800pt;}
.ls3d_c00349{letter-spacing:0.042933pt;}
.ls3b_c00349{letter-spacing:0.049067pt;}
.ls71_c00349{letter-spacing:0.055200pt;}
.ls49_c00349{letter-spacing:0.067467pt;}
.ls13_c00349{letter-spacing:0.073600pt;}
.ls75_c00349{letter-spacing:0.092000pt;}
.ls7_c00349{letter-spacing:0.098133pt;}
.ls4f_c00349{letter-spacing:0.104267pt;}
.ls2b_c00349{letter-spacing:0.116533pt;}
.ls3f_c00349{letter-spacing:0.128800pt;}
.ls1c_c00349{letter-spacing:0.134933pt;}
.ls35_c00349{letter-spacing:0.141067pt;}
.ls2f_c00349{letter-spacing:0.147200pt;}
.lsd_c00349{letter-spacing:0.153333pt;}
.ls27_c00349{letter-spacing:0.159467pt;}
.ls52_c00349{letter-spacing:0.165600pt;}
.ls48_c00349{letter-spacing:0.171733pt;}
.ls25_c00349{letter-spacing:0.177867pt;}
.ls23_c00349{letter-spacing:0.190133pt;}
.ls57_c00349{letter-spacing:0.196267pt;}
.ls11_c00349{letter-spacing:0.214667pt;}
.ls41_c00349{letter-spacing:0.216960pt;}
.ls19_c00349{letter-spacing:0.220800pt;}
.ls31_c00349{letter-spacing:0.226933pt;}
.ls1_c00349{letter-spacing:0.245333pt;}
.ls4d_c00349{letter-spacing:0.263733pt;}
.ls1d_c00349{letter-spacing:0.282133pt;}
.ls33_c00349{letter-spacing:0.294400pt;}
.ls3a_c00349{letter-spacing:0.300533pt;}
.ls5b_c00349{letter-spacing:0.306667pt;}
.ls9_c00349{letter-spacing:0.312800pt;}
.ls2a_c00349{letter-spacing:0.318933pt;}
.ls32_c00349{letter-spacing:0.325067pt;}
.ls42_c00349{letter-spacing:0.337333pt;}
.ls36_c00349{letter-spacing:0.361867pt;}
.ls30_c00349{letter-spacing:0.368000pt;}
.ls37_c00349{letter-spacing:0.380267pt;}
.ls2e_c00349{letter-spacing:0.398667pt;}
.ls16_c00349{letter-spacing:0.404800pt;}
.ls5e_c00349{letter-spacing:0.410933pt;}
.ls8_c00349{letter-spacing:0.429333pt;}
.ls59_c00349{letter-spacing:0.435467pt;}
.ls5c_c00349{letter-spacing:0.441600pt;}
.lsc_c00349{letter-spacing:0.447733pt;}
.ls22_c00349{letter-spacing:0.453867pt;}
.lse_c00349{letter-spacing:0.466133pt;}
.ls1b_c00349{letter-spacing:0.478400pt;}
.ls5_c00349{letter-spacing:0.490667pt;}
.ls20_c00349{letter-spacing:0.496800pt;}
.lsb_c00349{letter-spacing:0.502933pt;}
.ls21_c00349{letter-spacing:0.521333pt;}
.ls47_c00349{letter-spacing:0.536373pt;}
.ls56_c00349{letter-spacing:0.539733pt;}
.ls4a_c00349{letter-spacing:0.558133pt;}
.ls3e_c00349{letter-spacing:0.564267pt;}
.ls26_c00349{letter-spacing:0.576533pt;}
.lsa_c00349{letter-spacing:0.582667pt;}
.ls5d_c00349{letter-spacing:0.588800pt;}
.ls38_c00349{letter-spacing:0.594933pt;}
.ls29_c00349{letter-spacing:0.607200pt;}
.ls4_c00349{letter-spacing:0.625600pt;}
.ls1a_c00349{letter-spacing:0.637867pt;}
.ls28_c00349{letter-spacing:0.668533pt;}
.ls40_c00349{letter-spacing:0.674987pt;}
.ls10_c00349{letter-spacing:0.680800pt;}
.ls2_c00349{letter-spacing:0.736000pt;}
.ls4c_c00349{letter-spacing:0.747307pt;}
.ls14_c00349{letter-spacing:0.766667pt;}
.ls4e_c00349{letter-spacing:0.795520pt;}
.ls4b_c00349{letter-spacing:0.813600pt;}
.ls51_c00349{letter-spacing:0.815733pt;}
.ls3c_c00349{letter-spacing:0.821867pt;}
.ls2c_c00349{letter-spacing:0.828000pt;}
.ls44_c00349{letter-spacing:0.837707pt;}
.ls0_c00349{letter-spacing:0.870933pt;}
.ls46_c00349{letter-spacing:0.879893pt;}
.ls45_c00349{letter-spacing:0.910027pt;}
.ls12_c00349{letter-spacing:0.932267pt;}
.ls2d_c00349{letter-spacing:0.954560pt;}
.ls1f_c00349{letter-spacing:1.116267pt;}
.ls73_c00349{letter-spacing:1.128533pt;}
.ls17_c00349{letter-spacing:1.165333pt;}
.ls50_c00349{letter-spacing:1.220533pt;}
.ls53_c00349{letter-spacing:1.263467pt;}
.ls6_c00349{letter-spacing:1.306400pt;}
.ls39_c00349{letter-spacing:1.312533pt;}
.ls34_c00349{letter-spacing:1.380000pt;}
.ls43_c00349{letter-spacing:1.447467pt;}
.ls15_c00349{letter-spacing:1.527200pt;}
.lsf_c00349{letter-spacing:1.698933pt;}
.ls60_c00349{letter-spacing:1.765333pt;}
.ls24_c00349{letter-spacing:1.827733pt;}
.ls18_c00349{letter-spacing:2.036267pt;}
.ls5a_c00349{letter-spacing:2.257067pt;}
.ls5f_c00349{letter-spacing:2.275467pt;}
.ls58_c00349{letter-spacing:2.563733pt;}
.ls55_c00349{letter-spacing:2.729333pt;}
.ls74_c00349{letter-spacing:3.066667pt;}
.ws1_c00349{word-spacing:0.000000pt;}
.ws0_c00349{word-spacing:4.183787pt;}
._e_c00349{margin-left:-3.220000pt;}
._8_c00349{margin-left:-1.789867pt;}
._5_c00349{width:1.748000pt;}
._7_c00349{width:3.206667pt;}
._9_c00349{width:4.207467pt;}
._d_c00349{width:5.405600pt;}
._a_c00349{width:6.446133pt;}
._6_c00349{width:7.700533pt;}
._c_c00349{width:8.740000pt;}
._10_c00349{width:9.686400pt;}
._f_c00349{width:11.239200pt;}
._b_c00349{width:12.200267pt;}
._0_c00349{width:14.585067pt;}
._3_c00349{width:18.301867pt;}
._4_c00349{width:19.197333pt;}
._2_c00349{width:20.626400pt;}
._1_c00349{width:21.840800pt;}
._13_c00349{width:25.563733pt;}
._11_c00349{width:27.170667pt;}
._15_c00349{width:28.832800pt;}
._12_c00349{width:29.881600pt;}
._14_c00349{width:31.537600pt;}
.fs7_c00349{font-size:50.666667pt;}
.fs0_c00349{font-size:53.333333pt;}
.fs4_c00349{font-size:60.266667pt;}
.fs3_c00349{font-size:60.800000pt;}
.fs1_c00349{font-size:61.333333pt;}
.fs2_c00349{font-size:63.466667pt;}
.fs6_c00349{font-size:65.600000pt;}
.fs5_c00349{font-size:84.266667pt;}
.y0_c00349{bottom:0.000000pt;}
.y1f_c00349{bottom:56.333333pt;}
.y1e_c00349{bottom:192.973333pt;}
.y1d_c00349{bottom:220.809333pt;}
.y1c_c00349{bottom:247.995333pt;}
.y1b_c00349{bottom:275.534000pt;}
.y1a_c00349{bottom:302.720000pt;}
.y19_c00349{bottom:305.933333pt;}
.y18_c00349{bottom:329.613333pt;}
.y17_c00349{bottom:384.653333pt;}
.y16_c00349{bottom:412.173333pt;}
.y15_c00349{bottom:439.693333pt;}
.y14_c00349{bottom:466.893333pt;}
.y12_c00349{bottom:522.234667pt;}
.y13_c00349{bottom:522.240000pt;}
.y10_c00349{bottom:549.766667pt;}
.y11_c00349{bottom:549.773333pt;}
.yf_c00349{bottom:604.169333pt;}
.ye_c00349{bottom:631.355333pt;}
.yc_c00349{bottom:685.770000pt;}
.yd_c00349{bottom:685.773333pt;}
.ya_c00349{bottom:713.290667pt;}
.yb_c00349{bottom:713.293333pt;}
.y9_c00349{bottom:767.986000pt;}
.y8_c00349{bottom:822.710667pt;}
.y7_c00349{bottom:849.927333pt;}
.y6_c00349{bottom:877.128667pt;}
.y5_c00349{bottom:904.314667pt;}
.y4_c00349{bottom:931.853333pt;}
.y3_c00349{bottom:959.053333pt;}
.y2_c00349{bottom:986.560000pt;}
.y1_c00349{bottom:1055.053333pt;}
.h8_c00349{height:49.726562pt;}
.h2_c00349{height:52.343750pt;}
.h3_c00349{height:60.195312pt;}
.h5_c00349{height:61.331000pt;}
.h4_c00349{height:63.962500pt;}
.h7_c00349{height:66.112500pt;}
.h6_c00349{height:87.887500pt;}
.h1_c00349{height:1122.666667pt;}
.h0_c00349{height:1122.880000pt;}
.w1_c00349{width:793.333333pt;}
.w0_c00349{width:793.600000pt;}
.x0_c00349{left:0.000000pt;}
.x1_c00349{left:109.053333pt;}
.x1b_c00349{left:110.106667pt;}
.x12_c00349{left:155.756667pt;}
.xc_c00349{left:157.158667pt;}
.x2_c00349{left:177.426667pt;}
.x3_c00349{left:199.906667pt;}
.x1a_c00349{left:205.160000pt;}
.x15_c00349{left:219.026667pt;}
.x4_c00349{left:223.600000pt;}
.x16_c00349{left:244.320000pt;}
.x11_c00349{left:264.761333pt;}
.x5_c00349{left:270.000000pt;}
.x6_c00349{left:357.373333pt;}
.x1c_c00349{left:378.093333pt;}
.x7_c00349{left:425.120000pt;}
.xf_c00349{left:490.653333pt;}
.x8_c00349{left:494.880000pt;}
.x9_c00349{left:509.933333pt;}
.x10_c00349{left:515.706667pt;}
.x13_c00349{left:521.106667pt;}
.x17_c00349{left:545.440000pt;}
.x14_c00349{left:547.306667pt;}
.xa_c00349{left:576.146667pt;}
.xd_c00349{left:577.693333pt;}
.x18_c00349{left:598.866667pt;}
.xe_c00349{left:601.440000pt;}
.xb_c00349{left:618.720000pt;}
.x19_c00349{left:623.586667pt;}
}





/* 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_c00350 {
    display:none;
  }
  .loading-indicator_c00350.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00350 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_c00350 { 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_c00350" -> "#page-container .classname_c00350")
 */
.pf_c00350 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00350 { /* 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_c00350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00350 { /* 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_c00350 { /* 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_c00350 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00350 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00350 {overflow:visible;}
  }
}
.c_c00350 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00350 { /* 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_c00350:after { /* webkit #35443 */
  content: '';
}
.t_c00350:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00350 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 */
}
.__c00350 { /* 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_c00350 { /* info for Javascript */
  display:none;
}
.l_c00350 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00350 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00350 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00350: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_c00350 {
    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_c00350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00350.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_c00350 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00350;src:url('chunks/assets/font_ccc90f47b9b76571307aaca8.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.284668;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_c00350;src:url('chunks/assets/font_87798f884933a18bff66c0b2.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.284180;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_c00350;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;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:ff4_c00350;src:url('chunks/assets/font_dfcd029ae51976e1e1343144.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:1.311035;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;}
.m1_c00350{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m2_c00350{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m7_c00350{transform:matrix(0.243560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243560,0.000000,0.000000,0.250000,0,0);}
.m4_c00350{transform:matrix(0.247107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247107,0.000000,0.000000,0.250000,0,0);}
.m9_c00350{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m0_c00350{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);}
.m3_c00350{transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);}
.m5_c00350{transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);}
.m6_c00350{transform:matrix(0.270259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270259,0.000000,0.000000,0.250000,0,0);}
.m8_c00350{transform:matrix(0.344139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344139,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.v1_c00350{vertical-align:28.800000px;}
.ls4d_c00350{letter-spacing:-2.478000px;}
.ls83_c00350{letter-spacing:-2.457000px;}
.ls6b_c00350{letter-spacing:-2.310000px;}
.ls5d_c00350{letter-spacing:-2.232360px;}
.ls53_c00350{letter-spacing:-2.204280px;}
.ls80_c00350{letter-spacing:-2.167500px;}
.ls94_c00350{letter-spacing:-1.951560px;}
.ls7d_c00350{letter-spacing:-1.916460px;}
.ls52_c00350{letter-spacing:-1.670760px;}
.ls6a_c00350{letter-spacing:-1.628640px;}
.ls97_c00350{letter-spacing:-1.579500px;}
.ls63_c00350{letter-spacing:-1.558440px;}
.ls86_c00350{letter-spacing:-1.509300px;}
.ls5c_c00350{letter-spacing:-1.453140px;}
.ls7c_c00350{letter-spacing:-1.172340px;}
.ls69_c00350{letter-spacing:-1.102140px;}
.ls6f_c00350{letter-spacing:-0.989820px;}
.ls66_c00350{letter-spacing:-0.982800px;}
.ls81_c00350{letter-spacing:-0.968760px;}
.ls89_c00350{letter-spacing:-0.947700px;}
.ls87_c00350{letter-spacing:-0.919620px;}
.ls72_c00350{letter-spacing:-0.905580px;}
.ls57_c00350{letter-spacing:-0.779220px;}
.ls5a_c00350{letter-spacing:-0.765180px;}
.ls95_c00350{letter-spacing:-0.723060px;}
.ls8c_c00350{letter-spacing:-0.709020px;}
.ls4e_c00350{letter-spacing:-0.702000px;}
.ls84_c00350{letter-spacing:-0.659880px;}
.ls88_c00350{letter-spacing:-0.610740px;}
.ls96_c00350{letter-spacing:-0.568620px;}
.ls60_c00350{letter-spacing:-0.526500px;}
.ls61_c00350{letter-spacing:-0.512460px;}
.ls78_c00350{letter-spacing:-0.498420px;}
.ls82_c00350{letter-spacing:-0.470340px;}
.ls6c_c00350{letter-spacing:-0.467820px;}
.ls8d_c00350{letter-spacing:-0.456300px;}
.ls50_c00350{letter-spacing:-0.449280px;}
.ls67_c00350{letter-spacing:-0.428220px;}
.ls65_c00350{letter-spacing:-0.400140px;}
.ls5b_c00350{letter-spacing:-0.393120px;}
.ls8e_c00350{letter-spacing:-0.358020px;}
.ls4c_c00350{letter-spacing:-0.336960px;}
.ls7f_c00350{letter-spacing:-0.329940px;}
.ls54_c00350{letter-spacing:-0.301860px;}
.ls93_c00350{letter-spacing:-0.294840px;}
.ls8f_c00350{letter-spacing:-0.266760px;}
.ls6e_c00350{letter-spacing:-0.238680px;}
.ls8b_c00350{letter-spacing:-0.224640px;}
.ls79_c00350{letter-spacing:-0.217620px;}
.ls5f_c00350{letter-spacing:-0.203580px;}
.ls59_c00350{letter-spacing:-0.196560px;}
.ls90_c00350{letter-spacing:-0.189540px;}
.ls6d_c00350{letter-spacing:-0.175500px;}
.ls56_c00350{letter-spacing:-0.161460px;}
.ls7e_c00350{letter-spacing:-0.154440px;}
.ls4b_c00350{letter-spacing:-0.133380px;}
.ls64_c00350{letter-spacing:-0.126360px;}
.ls62_c00350{letter-spacing:-0.119340px;}
.ls76_c00350{letter-spacing:-0.112320px;}
.ls71_c00350{letter-spacing:-0.098280px;}
.ls55_c00350{letter-spacing:-0.091260px;}
.ls7a_c00350{letter-spacing:-0.077220px;}
.ls68_c00350{letter-spacing:-0.063180px;}
.ls8a_c00350{letter-spacing:-0.049140px;}
.ls91_c00350{letter-spacing:-0.042120px;}
.ls74_c00350{letter-spacing:-0.035100px;}
.ls77_c00350{letter-spacing:-0.028080px;}
.ls73_c00350{letter-spacing:-0.021060px;}
.ls58_c00350{letter-spacing:-0.014040px;}
.ls75_c00350{letter-spacing:-0.007020px;}
.ls51_c00350{letter-spacing:0.000000px;}
.ls12_c00350{letter-spacing:0.007020px;}
.ls25_c00350{letter-spacing:0.021060px;}
.ls18_c00350{letter-spacing:0.028080px;}
.ls15_c00350{letter-spacing:0.035100px;}
.ls4_c00350{letter-spacing:0.056160px;}
.ls49_c00350{letter-spacing:0.091260px;}
.ls2d_c00350{letter-spacing:0.098280px;}
.lsc_c00350{letter-spacing:0.105300px;}
.ls2e_c00350{letter-spacing:0.119340px;}
.lsf_c00350{letter-spacing:0.126360px;}
.ls5_c00350{letter-spacing:0.133380px;}
.ls1f_c00350{letter-spacing:0.140400px;}
.ls28_c00350{letter-spacing:0.142380px;}
.ls2a_c00350{letter-spacing:0.147420px;}
.ls33_c00350{letter-spacing:0.154440px;}
.ls37_c00350{letter-spacing:0.161460px;}
.ls1a_c00350{letter-spacing:0.175500px;}
.ls42_c00350{letter-spacing:0.196560px;}
.ls1_c00350{letter-spacing:0.203580px;}
.ls38_c00350{letter-spacing:0.210600px;}
.ls92_c00350{letter-spacing:0.217620px;}
.ls2b_c00350{letter-spacing:0.224640px;}
.ls30_c00350{letter-spacing:0.231660px;}
.lsd_c00350{letter-spacing:0.245700px;}
.ls1b_c00350{letter-spacing:0.259740px;}
.ls7_c00350{letter-spacing:0.266760px;}
.ls1e_c00350{letter-spacing:0.273780px;}
.ls8_c00350{letter-spacing:0.280800px;}
.ls16_c00350{letter-spacing:0.287820px;}
.ls34_c00350{letter-spacing:0.294840px;}
.ls2c_c00350{letter-spacing:0.315900px;}
.lsa_c00350{letter-spacing:0.322920px;}
.ls21_c00350{letter-spacing:0.358020px;}
.ls6_c00350{letter-spacing:0.372060px;}
.ls35_c00350{letter-spacing:0.379080px;}
.ls29_c00350{letter-spacing:0.400140px;}
.ls27_c00350{letter-spacing:0.407160px;}
.ls11_c00350{letter-spacing:0.414180px;}
.ls48_c00350{letter-spacing:0.421200px;}
.ls2_c00350{letter-spacing:0.442260px;}
.ls10_c00350{letter-spacing:0.456300px;}
.ls3_c00350{letter-spacing:0.463320px;}
.ls5e_c00350{letter-spacing:0.491400px;}
.lse_c00350{letter-spacing:0.498420px;}
.ls1c_c00350{letter-spacing:0.512460px;}
.ls36_c00350{letter-spacing:0.519480px;}
.ls2f_c00350{letter-spacing:0.526500px;}
.ls13_c00350{letter-spacing:0.568620px;}
.ls45_c00350{letter-spacing:0.575640px;}
.ls26_c00350{letter-spacing:0.638820px;}
.ls4f_c00350{letter-spacing:0.666900px;}
.ls22_c00350{letter-spacing:0.716040px;}
.ls31_c00350{letter-spacing:0.737100px;}
.ls70_c00350{letter-spacing:0.744120px;}
.ls40_c00350{letter-spacing:0.765180px;}
.ls17_c00350{letter-spacing:0.786240px;}
.ls19_c00350{letter-spacing:0.842400px;}
.ls3a_c00350{letter-spacing:0.847500px;}
.ls3d_c00350{letter-spacing:0.919620px;}
.ls32_c00350{letter-spacing:0.926640px;}
.ls46_c00350{letter-spacing:0.927480px;}
.ls24_c00350{letter-spacing:0.928860px;}
.lsb_c00350{letter-spacing:0.935640px;}
.ls23_c00350{letter-spacing:0.942420px;}
.ls43_c00350{letter-spacing:0.996840px;}
.ls41_c00350{letter-spacing:1.031940px;}
.ls3b_c00350{letter-spacing:1.060020px;}
.ls20_c00350{letter-spacing:1.088100px;}
.ls3c_c00350{letter-spacing:1.193400px;}
.ls39_c00350{letter-spacing:1.233960px;}
.ls4a_c00350{letter-spacing:1.285200px;}
.ls47_c00350{letter-spacing:1.295640px;}
.ls3f_c00350{letter-spacing:1.354860px;}
.ls0_c00350{letter-spacing:1.362780px;}
.ls44_c00350{letter-spacing:1.368900px;}
.ls14_c00350{letter-spacing:1.425060px;}
.ls9_c00350{letter-spacing:1.769040px;}
.ls1d_c00350{letter-spacing:1.804140px;}
.ls3e_c00350{letter-spacing:2.548260px;}
.ls7b_c00350{letter-spacing:3.390000px;}
.ls85_c00350{letter-spacing:3.510000px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{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__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00350{word-spacing:-15.921360px;}
.ws5_c00350{word-spacing:0.000000px;}
.ws4_c00350{word-spacing:1.574940px;}
.ws3_c00350{word-spacing:6.005700px;}
.ws0_c00350{word-spacing:10.868880px;}
.ws1_c00350{word-spacing:21.329400px;}
._7_c00350{margin-left:-6.303960px;}
._1c_c00350{margin-left:-3.657480px;}
._f_c00350{margin-left:-1.179360px;}
._6_c00350{width:1.263600px;}
._e_c00350{width:3.279720px;}
._10_c00350{width:4.312080px;}
._b_c00350{width:5.377320px;}
._1d_c00350{width:6.871320px;}
._d_c00350{width:8.262540px;}
._0_c00350{width:9.961380px;}
._c_c00350{width:11.372400px;}
._2_c00350{width:12.930840px;}
._1_c00350{width:14.767680px;}
._4_c00350{width:16.216200px;}
._3_c00350{width:18.542220px;}
._5_c00350{width:20.512440px;}
._8_c00350{width:22.349280px;}
._11_c00350{width:23.425740px;}
._9_c00350{width:25.262760px;}
._a_c00350{width:26.549640px;}
._16_c00350{width:30.284280px;}
._12_c00350{width:32.958900px;}
._15_c00350{width:34.278660px;}
._13_c00350{width:37.486800px;}
._14_c00350{width:38.652120px;}
._17_c00350{width:42.674580px;}
._19_c00350{width:58.132620px;}
._1b_c00350{width:60.678240px;}
._18_c00350{width:66.339000px;}
._1a_c00350{width:69.747120px;}
.fc0_c00350{color:transparent;}
.fs4_c00350{font-size:32.400600px;}
.fs7_c00350{font-size:59.400000px;}
.fs0_c00350{font-size:61.200000px;}
.fs5_c00350{font-size:66.000000px;}
.fs1_c00350{font-size:67.800000px;}
.fs2_c00350{font-size:70.200000px;}
.fs3_c00350{font-size:70.800000px;}
.fs6_c00350{font-size:75.000000px;}
.y0_c00350{bottom:0.000000px;}
.y20_c00350{bottom:65.895000px;}
.y1f_c00350{bottom:185.760000px;}
.y1e_c00350{bottom:185.761800px;}
.y1d_c00350{bottom:216.720000px;}
.y1c_c00350{bottom:277.931850px;}
.y1b_c00350{bottom:309.258600px;}
.y1a_c00350{bottom:340.199250px;}
.y19_c00350{bottom:371.175000px;}
.y18_c00350{bottom:371.176800px;}
.y17_c00350{bottom:402.135000px;}
.y16_c00350{bottom:433.095000px;}
.y15_c00350{bottom:433.096800px;}
.y14_c00350{bottom:464.055000px;}
.y13_c00350{bottom:464.056800px;}
.y11_c00350{bottom:495.012150px;}
.y12_c00350{bottom:495.015000px;}
.y10_c00350{bottom:556.573200px;}
.yf_c00350{bottom:618.489600px;}
.ye_c00350{bottom:649.096800px;}
.yd_c00350{bottom:680.055000px;}
.yc_c00350{bottom:741.618600px;}
.yb_c00350{bottom:772.559250px;}
.ya_c00350{bottom:803.535000px;}
.y9_c00350{bottom:834.495000px;}
.y8_c00350{bottom:896.400000px;}
.y7_c00350{bottom:927.376800px;}
.y6_c00350{bottom:958.330350px;}
.y5_c00350{bottom:988.920000px;}
.y4_c00350{bottom:1050.844500px;}
.y3_c00350{bottom:1081.434150px;}
.y2_c00350{bottom:1114.200000px;}
.y1_c00350{bottom:1192.695000px;}
.ha_c00350{height:58.297852px;}
.h2_c00350{height:60.064453px;}
.h7_c00350{height:66.508887px;}
.h6_c00350{height:68.835938px;}
.h3_c00350{height:68.897461px;}
.h5_c00350{height:68.916061px;}
.h9_c00350{height:69.451758px;}
.h4_c00350{height:69.486328px;}
.h8_c00350{height:75.533138px;}
.h1_c00350{height:1263.000000px;}
.h0_c00350{height:1263.240000px;}
.w1_c00350{width:892.500000px;}
.w0_c00350{width:892.800000px;}
.x0_c00350{left:0.000000px;}
.xf_c00350{left:122.593200px;}
.x9_c00350{left:123.810450px;}
.x6_c00350{left:125.323350px;}
.x5_c00350{left:126.544050px;}
.x1_c00350{left:127.725000px;}
.x7_c00350{left:166.455000px;}
.x18_c00350{left:175.200450px;}
.xa_c00350{left:176.925000px;}
.x8_c00350{left:178.005000px;}
.x2_c00350{left:179.805000px;}
.x15_c00350{left:183.030000px;}
.x16_c00350{left:200.985000px;}
.x19_c00350{left:243.525000px;}
.x17_c00350{left:265.815000px;}
.x1a_c00350{left:271.335000px;}
.x1b_c00350{left:425.700000px;}
.x13_c00350{left:444.495000px;}
.x3_c00350{left:448.830000px;}
.x4_c00350{left:484.020000px;}
.x14_c00350{left:535.110000px;}
.xb_c00350{left:563.970000px;}
.xc_c00350{left:581.655000px;}
.xd_c00350{left:595.620000px;}
.x10_c00350{left:641.085000px;}
.x11_c00350{left:665.430000px;}
.xe_c00350{left:667.275000px;}
.x12_c00350{left:695.415000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.v1_c00350{vertical-align:25.600000pt;}
.ls4d_c00350{letter-spacing:-2.202667pt;}
.ls83_c00350{letter-spacing:-2.184000pt;}
.ls6b_c00350{letter-spacing:-2.053333pt;}
.ls5d_c00350{letter-spacing:-1.984320pt;}
.ls53_c00350{letter-spacing:-1.959360pt;}
.ls80_c00350{letter-spacing:-1.926667pt;}
.ls94_c00350{letter-spacing:-1.734720pt;}
.ls7d_c00350{letter-spacing:-1.703520pt;}
.ls52_c00350{letter-spacing:-1.485120pt;}
.ls6a_c00350{letter-spacing:-1.447680pt;}
.ls97_c00350{letter-spacing:-1.404000pt;}
.ls63_c00350{letter-spacing:-1.385280pt;}
.ls86_c00350{letter-spacing:-1.341600pt;}
.ls5c_c00350{letter-spacing:-1.291680pt;}
.ls7c_c00350{letter-spacing:-1.042080pt;}
.ls69_c00350{letter-spacing:-0.979680pt;}
.ls6f_c00350{letter-spacing:-0.879840pt;}
.ls66_c00350{letter-spacing:-0.873600pt;}
.ls81_c00350{letter-spacing:-0.861120pt;}
.ls89_c00350{letter-spacing:-0.842400pt;}
.ls87_c00350{letter-spacing:-0.817440pt;}
.ls72_c00350{letter-spacing:-0.804960pt;}
.ls57_c00350{letter-spacing:-0.692640pt;}
.ls5a_c00350{letter-spacing:-0.680160pt;}
.ls95_c00350{letter-spacing:-0.642720pt;}
.ls8c_c00350{letter-spacing:-0.630240pt;}
.ls4e_c00350{letter-spacing:-0.624000pt;}
.ls84_c00350{letter-spacing:-0.586560pt;}
.ls88_c00350{letter-spacing:-0.542880pt;}
.ls96_c00350{letter-spacing:-0.505440pt;}
.ls60_c00350{letter-spacing:-0.468000pt;}
.ls61_c00350{letter-spacing:-0.455520pt;}
.ls78_c00350{letter-spacing:-0.443040pt;}
.ls82_c00350{letter-spacing:-0.418080pt;}
.ls6c_c00350{letter-spacing:-0.415840pt;}
.ls8d_c00350{letter-spacing:-0.405600pt;}
.ls50_c00350{letter-spacing:-0.399360pt;}
.ls67_c00350{letter-spacing:-0.380640pt;}
.ls65_c00350{letter-spacing:-0.355680pt;}
.ls5b_c00350{letter-spacing:-0.349440pt;}
.ls8e_c00350{letter-spacing:-0.318240pt;}
.ls4c_c00350{letter-spacing:-0.299520pt;}
.ls7f_c00350{letter-spacing:-0.293280pt;}
.ls54_c00350{letter-spacing:-0.268320pt;}
.ls93_c00350{letter-spacing:-0.262080pt;}
.ls8f_c00350{letter-spacing:-0.237120pt;}
.ls6e_c00350{letter-spacing:-0.212160pt;}
.ls8b_c00350{letter-spacing:-0.199680pt;}
.ls79_c00350{letter-spacing:-0.193440pt;}
.ls5f_c00350{letter-spacing:-0.180960pt;}
.ls59_c00350{letter-spacing:-0.174720pt;}
.ls90_c00350{letter-spacing:-0.168480pt;}
.ls6d_c00350{letter-spacing:-0.156000pt;}
.ls56_c00350{letter-spacing:-0.143520pt;}
.ls7e_c00350{letter-spacing:-0.137280pt;}
.ls4b_c00350{letter-spacing:-0.118560pt;}
.ls64_c00350{letter-spacing:-0.112320pt;}
.ls62_c00350{letter-spacing:-0.106080pt;}
.ls76_c00350{letter-spacing:-0.099840pt;}
.ls71_c00350{letter-spacing:-0.087360pt;}
.ls55_c00350{letter-spacing:-0.081120pt;}
.ls7a_c00350{letter-spacing:-0.068640pt;}
.ls68_c00350{letter-spacing:-0.056160pt;}
.ls8a_c00350{letter-spacing:-0.043680pt;}
.ls91_c00350{letter-spacing:-0.037440pt;}
.ls74_c00350{letter-spacing:-0.031200pt;}
.ls77_c00350{letter-spacing:-0.024960pt;}
.ls73_c00350{letter-spacing:-0.018720pt;}
.ls58_c00350{letter-spacing:-0.012480pt;}
.ls75_c00350{letter-spacing:-0.006240pt;}
.ls51_c00350{letter-spacing:0.000000pt;}
.ls12_c00350{letter-spacing:0.006240pt;}
.ls25_c00350{letter-spacing:0.018720pt;}
.ls18_c00350{letter-spacing:0.024960pt;}
.ls15_c00350{letter-spacing:0.031200pt;}
.ls4_c00350{letter-spacing:0.049920pt;}
.ls49_c00350{letter-spacing:0.081120pt;}
.ls2d_c00350{letter-spacing:0.087360pt;}
.lsc_c00350{letter-spacing:0.093600pt;}
.ls2e_c00350{letter-spacing:0.106080pt;}
.lsf_c00350{letter-spacing:0.112320pt;}
.ls5_c00350{letter-spacing:0.118560pt;}
.ls1f_c00350{letter-spacing:0.124800pt;}
.ls28_c00350{letter-spacing:0.126560pt;}
.ls2a_c00350{letter-spacing:0.131040pt;}
.ls33_c00350{letter-spacing:0.137280pt;}
.ls37_c00350{letter-spacing:0.143520pt;}
.ls1a_c00350{letter-spacing:0.156000pt;}
.ls42_c00350{letter-spacing:0.174720pt;}
.ls1_c00350{letter-spacing:0.180960pt;}
.ls38_c00350{letter-spacing:0.187200pt;}
.ls92_c00350{letter-spacing:0.193440pt;}
.ls2b_c00350{letter-spacing:0.199680pt;}
.ls30_c00350{letter-spacing:0.205920pt;}
.lsd_c00350{letter-spacing:0.218400pt;}
.ls1b_c00350{letter-spacing:0.230880pt;}
.ls7_c00350{letter-spacing:0.237120pt;}
.ls1e_c00350{letter-spacing:0.243360pt;}
.ls8_c00350{letter-spacing:0.249600pt;}
.ls16_c00350{letter-spacing:0.255840pt;}
.ls34_c00350{letter-spacing:0.262080pt;}
.ls2c_c00350{letter-spacing:0.280800pt;}
.lsa_c00350{letter-spacing:0.287040pt;}
.ls21_c00350{letter-spacing:0.318240pt;}
.ls6_c00350{letter-spacing:0.330720pt;}
.ls35_c00350{letter-spacing:0.336960pt;}
.ls29_c00350{letter-spacing:0.355680pt;}
.ls27_c00350{letter-spacing:0.361920pt;}
.ls11_c00350{letter-spacing:0.368160pt;}
.ls48_c00350{letter-spacing:0.374400pt;}
.ls2_c00350{letter-spacing:0.393120pt;}
.ls10_c00350{letter-spacing:0.405600pt;}
.ls3_c00350{letter-spacing:0.411840pt;}
.ls5e_c00350{letter-spacing:0.436800pt;}
.lse_c00350{letter-spacing:0.443040pt;}
.ls1c_c00350{letter-spacing:0.455520pt;}
.ls36_c00350{letter-spacing:0.461760pt;}
.ls2f_c00350{letter-spacing:0.468000pt;}
.ls13_c00350{letter-spacing:0.505440pt;}
.ls45_c00350{letter-spacing:0.511680pt;}
.ls26_c00350{letter-spacing:0.567840pt;}
.ls4f_c00350{letter-spacing:0.592800pt;}
.ls22_c00350{letter-spacing:0.636480pt;}
.ls31_c00350{letter-spacing:0.655200pt;}
.ls70_c00350{letter-spacing:0.661440pt;}
.ls40_c00350{letter-spacing:0.680160pt;}
.ls17_c00350{letter-spacing:0.698880pt;}
.ls19_c00350{letter-spacing:0.748800pt;}
.ls3a_c00350{letter-spacing:0.753333pt;}
.ls3d_c00350{letter-spacing:0.817440pt;}
.ls32_c00350{letter-spacing:0.823680pt;}
.ls46_c00350{letter-spacing:0.824427pt;}
.ls24_c00350{letter-spacing:0.825653pt;}
.lsb_c00350{letter-spacing:0.831680pt;}
.ls23_c00350{letter-spacing:0.837707pt;}
.ls43_c00350{letter-spacing:0.886080pt;}
.ls41_c00350{letter-spacing:0.917280pt;}
.ls3b_c00350{letter-spacing:0.942240pt;}
.ls20_c00350{letter-spacing:0.967200pt;}
.ls3c_c00350{letter-spacing:1.060800pt;}
.ls39_c00350{letter-spacing:1.096853pt;}
.ls4a_c00350{letter-spacing:1.142400pt;}
.ls47_c00350{letter-spacing:1.151680pt;}
.ls3f_c00350{letter-spacing:1.204320pt;}
.ls0_c00350{letter-spacing:1.211360pt;}
.ls44_c00350{letter-spacing:1.216800pt;}
.ls14_c00350{letter-spacing:1.266720pt;}
.ls9_c00350{letter-spacing:1.572480pt;}
.ls1d_c00350{letter-spacing:1.603680pt;}
.ls3e_c00350{letter-spacing:2.265120pt;}
.ls7b_c00350{letter-spacing:3.013333pt;}
.ls85_c00350{letter-spacing:3.120000pt;}
.ws2_c00350{word-spacing:-14.152320pt;}
.ws5_c00350{word-spacing:0.000000pt;}
.ws4_c00350{word-spacing:1.399947pt;}
.ws3_c00350{word-spacing:5.338400pt;}
.ws0_c00350{word-spacing:9.661227pt;}
.ws1_c00350{word-spacing:18.959467pt;}
._7_c00350{margin-left:-5.603520pt;}
._1c_c00350{margin-left:-3.251093pt;}
._f_c00350{margin-left:-1.048320pt;}
._6_c00350{width:1.123200pt;}
._e_c00350{width:2.915307pt;}
._10_c00350{width:3.832960pt;}
._b_c00350{width:4.779840pt;}
._1d_c00350{width:6.107840pt;}
._d_c00350{width:7.344480pt;}
._0_c00350{width:8.854560pt;}
._c_c00350{width:10.108800pt;}
._2_c00350{width:11.494080pt;}
._1_c00350{width:13.126827pt;}
._4_c00350{width:14.414400pt;}
._3_c00350{width:16.481973pt;}
._5_c00350{width:18.233280pt;}
._8_c00350{width:19.866027pt;}
._11_c00350{width:20.822880pt;}
._9_c00350{width:22.455787pt;}
._a_c00350{width:23.599680pt;}
._16_c00350{width:26.919360pt;}
._12_c00350{width:29.296800pt;}
._15_c00350{width:30.469920pt;}
._13_c00350{width:33.321600pt;}
._14_c00350{width:34.357440pt;}
._17_c00350{width:37.932960pt;}
._19_c00350{width:51.673440pt;}
._1b_c00350{width:53.936213pt;}
._18_c00350{width:58.968000pt;}
._1a_c00350{width:61.997440pt;}
.fs4_c00350{font-size:28.800533pt;}
.fs7_c00350{font-size:52.800000pt;}
.fs0_c00350{font-size:54.400000pt;}
.fs5_c00350{font-size:58.666667pt;}
.fs1_c00350{font-size:60.266667pt;}
.fs2_c00350{font-size:62.400000pt;}
.fs3_c00350{font-size:62.933333pt;}
.fs6_c00350{font-size:66.666667pt;}
.y0_c00350{bottom:0.000000pt;}
.y20_c00350{bottom:58.573333pt;}
.y1f_c00350{bottom:165.120000pt;}
.y1e_c00350{bottom:165.121600pt;}
.y1d_c00350{bottom:192.640000pt;}
.y1c_c00350{bottom:247.050533pt;}
.y1b_c00350{bottom:274.896533pt;}
.y1a_c00350{bottom:302.399333pt;}
.y19_c00350{bottom:329.933333pt;}
.y18_c00350{bottom:329.934933pt;}
.y17_c00350{bottom:357.453333pt;}
.y16_c00350{bottom:384.973333pt;}
.y15_c00350{bottom:384.974933pt;}
.y14_c00350{bottom:412.493333pt;}
.y13_c00350{bottom:412.494933pt;}
.y11_c00350{bottom:440.010800pt;}
.y12_c00350{bottom:440.013333pt;}
.y10_c00350{bottom:494.731733pt;}
.yf_c00350{bottom:549.768533pt;}
.ye_c00350{bottom:576.974933pt;}
.yd_c00350{bottom:604.493333pt;}
.yc_c00350{bottom:659.216533pt;}
.yb_c00350{bottom:686.719333pt;}
.ya_c00350{bottom:714.253333pt;}
.y9_c00350{bottom:741.773333pt;}
.y8_c00350{bottom:796.800000pt;}
.y7_c00350{bottom:824.334933pt;}
.y6_c00350{bottom:851.849200pt;}
.y5_c00350{bottom:879.040000pt;}
.y4_c00350{bottom:934.084000pt;}
.y3_c00350{bottom:961.274800pt;}
.y2_c00350{bottom:990.400000pt;}
.y1_c00350{bottom:1060.173333pt;}
.ha_c00350{height:51.820312pt;}
.h2_c00350{height:53.390625pt;}
.h7_c00350{height:59.119010pt;}
.h6_c00350{height:61.187500pt;}
.h3_c00350{height:61.242187pt;}
.h5_c00350{height:61.258721pt;}
.h9_c00350{height:61.734896pt;}
.h4_c00350{height:61.765625pt;}
.h8_c00350{height:67.140567pt;}
.h1_c00350{height:1122.666667pt;}
.h0_c00350{height:1122.880000pt;}
.w1_c00350{width:793.333333pt;}
.w0_c00350{width:793.600000pt;}
.x0_c00350{left:0.000000pt;}
.xf_c00350{left:108.971733pt;}
.x9_c00350{left:110.053733pt;}
.x6_c00350{left:111.398533pt;}
.x5_c00350{left:112.483600pt;}
.x1_c00350{left:113.533333pt;}
.x7_c00350{left:147.960000pt;}
.x18_c00350{left:155.733733pt;}
.xa_c00350{left:157.266667pt;}
.x8_c00350{left:158.226667pt;}
.x2_c00350{left:159.826667pt;}
.x15_c00350{left:162.693333pt;}
.x16_c00350{left:178.653333pt;}
.x19_c00350{left:216.466667pt;}
.x17_c00350{left:236.280000pt;}
.x1a_c00350{left:241.186667pt;}
.x1b_c00350{left:378.400000pt;}
.x13_c00350{left:395.106667pt;}
.x3_c00350{left:398.960000pt;}
.x4_c00350{left:430.240000pt;}
.x14_c00350{left:475.653333pt;}
.xb_c00350{left:501.306667pt;}
.xc_c00350{left:517.026667pt;}
.xd_c00350{left:529.440000pt;}
.x10_c00350{left:569.853333pt;}
.x11_c00350{left:591.493333pt;}
.xe_c00350{left:593.133333pt;}
.x12_c00350{left:618.146667pt;}
}





/* 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_c00351 {
    display:none;
  }
  .loading-indicator_c00351.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00351 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_c00351 { 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_c00351" -> "#page-container .classname_c00351")
 */
.pf_c00351 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00351 { /* 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_c00351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00351 { /* 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_c00351 { /* 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_c00351 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00351 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00351 {overflow:visible;}
  }
}
.c_c00351 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00351 { /* 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_c00351:after { /* webkit #35443 */
  content: '';
}
.t_c00351:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00351 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 */
}
.__c00351 { /* 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_c00351 { /* info for Javascript */
  display:none;
}
.l_c00351 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00351 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00351 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00351: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_c00351 {
    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_c00351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00351.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_c00351 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00351;src:url('chunks/assets/font_d4e815755cc34862ed9b2314.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.284668;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_c00351;src:url('chunks/assets/font_ab1c39552ae3d2a1fc7fafa7.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.284180;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_c00351;src:url('chunks/assets/font_1e8914b604e9f96eb527481a.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:0.666000;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_c00351;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;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;}
.m8_c00351{transform:matrix(0.108553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108553,0.000000,0.000000,0.250000,0,0);}
.m7_c00351{transform:matrix(0.204733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204733,0.000000,0.000000,0.250000,0,0);}
.m6_c00351{transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);}
.m3_c00351{transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);}
.m4_c00351{transform:matrix(0.245237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245237,0.000000,0.000000,0.250000,0,0);}
.mc_c00351{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m0_c00351{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m2_c00351{transform:matrix(0.247341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247341,0.000000,0.000000,0.250000,0,0);}
.md_c00351{transform:matrix(0.247446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247446,0.000000,0.000000,0.250000,0,0);}
.mb_c00351{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.ma_c00351{transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);}
.m9_c00351{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m5_c00351{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{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);}
.v0_c00351{vertical-align:0.000000px;}
.ls95_c00351{letter-spacing:-2.541000px;}
.ls63_c00351{letter-spacing:-2.415000px;}
.ls67_c00351{letter-spacing:-2.387400px;}
.ls57_c00351{letter-spacing:-2.352000px;}
.ls79_c00351{letter-spacing:-2.235600px;}
.ls5d_c00351{letter-spacing:-1.959600px;}
.ls62_c00351{letter-spacing:-1.869900px;}
.ls93_c00351{letter-spacing:-1.851300px;}
.ls94_c00351{letter-spacing:-1.742400px;}
.ls69_c00351{letter-spacing:-1.628400px;}
.ls6f_c00351{letter-spacing:-1.580100px;}
.ls68_c00351{letter-spacing:-1.435200px;}
.ls61_c00351{letter-spacing:-1.428300px;}
.ls65_c00351{letter-spacing:-1.235100px;}
.ls59_c00351{letter-spacing:-1.117800px;}
.ls7e_c00351{letter-spacing:-1.110900px;}
.ls98_c00351{letter-spacing:-1.094400px;}
.ls6d_c00351{letter-spacing:-1.083300px;}
.ls8c_c00351{letter-spacing:-0.966000px;}
.ls5b_c00351{letter-spacing:-0.952200px;}
.ls83_c00351{letter-spacing:-0.945300px;}
.ls85_c00351{letter-spacing:-0.903900px;}
.ls5a_c00351{letter-spacing:-0.876300px;}
.ls60_c00351{letter-spacing:-0.862500px;}
.ls8e_c00351{letter-spacing:-0.855600px;}
.ls81_c00351{letter-spacing:-0.821100px;}
.ls8a_c00351{letter-spacing:-0.800400px;}
.ls66_c00351{letter-spacing:-0.752100px;}
.ls5c_c00351{letter-spacing:-0.710700px;}
.ls5e_c00351{letter-spacing:-0.690000px;}
.ls84_c00351{letter-spacing:-0.648600px;}
.ls86_c00351{letter-spacing:-0.538200px;}
.ls82_c00351{letter-spacing:-0.531300px;}
.ls8b_c00351{letter-spacing:-0.503700px;}
.ls7f_c00351{letter-spacing:-0.441600px;}
.ls73_c00351{letter-spacing:-0.434700px;}
.ls7d_c00351{letter-spacing:-0.400200px;}
.ls87_c00351{letter-spacing:-0.386400px;}
.ls6a_c00351{letter-spacing:-0.372600px;}
.ls71_c00351{letter-spacing:-0.358800px;}
.ls78_c00351{letter-spacing:-0.345000px;}
.ls58_c00351{letter-spacing:-0.331200px;}
.ls70_c00351{letter-spacing:-0.324300px;}
.ls74_c00351{letter-spacing:-0.310500px;}
.ls8d_c00351{letter-spacing:-0.303600px;}
.ls92_c00351{letter-spacing:-0.296700px;}
.ls5f_c00351{letter-spacing:-0.241500px;}
.ls76_c00351{letter-spacing:-0.207000px;}
.ls90_c00351{letter-spacing:-0.200100px;}
.ls6e_c00351{letter-spacing:-0.186300px;}
.ls89_c00351{letter-spacing:-0.158700px;}
.ls8f_c00351{letter-spacing:-0.151800px;}
.ls77_c00351{letter-spacing:-0.138000px;}
.ls97_c00351{letter-spacing:-0.117300px;}
.ls7b_c00351{letter-spacing:-0.103500px;}
.ls72_c00351{letter-spacing:-0.096600px;}
.ls7c_c00351{letter-spacing:-0.075900px;}
.ls7a_c00351{letter-spacing:-0.069000px;}
.ls75_c00351{letter-spacing:-0.062100px;}
.ls80_c00351{letter-spacing:-0.048300px;}
.ls96_c00351{letter-spacing:-0.041400px;}
.ls6c_c00351{letter-spacing:0.000000px;}
.lsf_c00351{letter-spacing:0.027600px;}
.ls46_c00351{letter-spacing:0.041400px;}
.ls3_c00351{letter-spacing:0.048300px;}
.ls26_c00351{letter-spacing:0.069000px;}
.ls16_c00351{letter-spacing:0.082800px;}
.ls2d_c00351{letter-spacing:0.089700px;}
.ls4b_c00351{letter-spacing:0.096600px;}
.lsd_c00351{letter-spacing:0.103500px;}
.ls1c_c00351{letter-spacing:0.117300px;}
.ls88_c00351{letter-spacing:0.124200px;}
.ls1a_c00351{letter-spacing:0.131100px;}
.ls6b_c00351{letter-spacing:0.138000px;}
.ls4_c00351{letter-spacing:0.144900px;}
.lsb_c00351{letter-spacing:0.158700px;}
.ls41_c00351{letter-spacing:0.172500px;}
.ls2f_c00351{letter-spacing:0.186300px;}
.ls3e_c00351{letter-spacing:0.220800px;}
.ls8_c00351{letter-spacing:0.248400px;}
.ls54_c00351{letter-spacing:0.262200px;}
.ls12_c00351{letter-spacing:0.269100px;}
.ls2b_c00351{letter-spacing:0.282900px;}
.ls10_c00351{letter-spacing:0.296700px;}
.ls49_c00351{letter-spacing:0.303600px;}
.ls1d_c00351{letter-spacing:0.310500px;}
.ls23_c00351{letter-spacing:0.317400px;}
.ls35_c00351{letter-spacing:0.324300px;}
.ls1_c00351{letter-spacing:0.331200px;}
.ls22_c00351{letter-spacing:0.338100px;}
.ls1f_c00351{letter-spacing:0.351900px;}
.ls14_c00351{letter-spacing:0.358800px;}
.ls1e_c00351{letter-spacing:0.365700px;}
.ls31_c00351{letter-spacing:0.379500px;}
.ls18_c00351{letter-spacing:0.386400px;}
.ls4a_c00351{letter-spacing:0.407100px;}
.ls28_c00351{letter-spacing:0.427800px;}
.ls38_c00351{letter-spacing:0.434700px;}
.ls1b_c00351{letter-spacing:0.441600px;}
.ls33_c00351{letter-spacing:0.455400px;}
.ls4f_c00351{letter-spacing:0.469200px;}
.ls3f_c00351{letter-spacing:0.476100px;}
.ls19_c00351{letter-spacing:0.503700px;}
.ls43_c00351{letter-spacing:0.510600px;}
.ls39_c00351{letter-spacing:0.545100px;}
.ls15_c00351{letter-spacing:0.552000px;}
.ls34_c00351{letter-spacing:0.558900px;}
.ls2c_c00351{letter-spacing:0.572700px;}
.ls42_c00351{letter-spacing:0.579600px;}
.ls4d_c00351{letter-spacing:0.583080px;}
.ls13_c00351{letter-spacing:0.586500px;}
.ls17_c00351{letter-spacing:0.593400px;}
.ls4e_c00351{letter-spacing:0.603420px;}
.ls25_c00351{letter-spacing:0.621000px;}
.ls2_c00351{letter-spacing:0.634800px;}
.ls45_c00351{letter-spacing:0.641700px;}
.ls44_c00351{letter-spacing:0.655500px;}
.ls3a_c00351{letter-spacing:0.662400px;}
.ls27_c00351{letter-spacing:0.669300px;}
.ls30_c00351{letter-spacing:0.724500px;}
.ls29_c00351{letter-spacing:0.759360px;}
.ls64_c00351{letter-spacing:0.786480px;}
.ls56_c00351{letter-spacing:0.786600px;}
.ls91_c00351{letter-spacing:0.862500px;}
.ls20_c00351{letter-spacing:0.883200px;}
.ls2a_c00351{letter-spacing:0.924600px;}
.lsa_c00351{letter-spacing:0.928860px;}
.ls50_c00351{letter-spacing:0.938400px;}
.ls6_c00351{letter-spacing:0.942420px;}
.ls48_c00351{letter-spacing:0.945300px;}
.lse_c00351{letter-spacing:1.017000px;}
.ls37_c00351{letter-spacing:1.028100px;}
.ls40_c00351{letter-spacing:1.057680px;}
.ls32_c00351{letter-spacing:1.090200px;}
.ls3b_c00351{letter-spacing:1.097100px;}
.ls9_c00351{letter-spacing:1.098360px;}
.ls5_c00351{letter-spacing:1.110900px;}
.ls7_c00351{letter-spacing:1.111920px;}
.ls11_c00351{letter-spacing:1.139040px;}
.ls0_c00351{letter-spacing:1.214400px;}
.ls24_c00351{letter-spacing:1.240740px;}
.ls55_c00351{letter-spacing:1.269600px;}
.ls4c_c00351{letter-spacing:1.297200px;}
.ls36_c00351{letter-spacing:1.311000px;}
.ls52_c00351{letter-spacing:1.331700px;}
.ls53_c00351{letter-spacing:1.469700px;}
.lsc_c00351{letter-spacing:1.491600px;}
.ls47_c00351{letter-spacing:1.600800px;}
.ls3c_c00351{letter-spacing:1.676700px;}
.ls51_c00351{letter-spacing:1.842300px;}
.ls3d_c00351{letter-spacing:2.056200px;}
.ls2e_c00351{letter-spacing:2.539200px;}
.ls21_c00351{letter-spacing:2.559900px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{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__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00351{word-spacing:-1.762560px;}
.ws5_c00351{word-spacing:0.000000px;}
.ws4_c00351{word-spacing:0.870180px;}
.ws2_c00351{word-spacing:7.252200px;}
.ws3_c00351{word-spacing:8.580600px;}
.ws0_c00351{word-spacing:18.569640px;}
._8_c00351{margin-left:-5.331420px;}
._f_c00351{margin-left:-3.282960px;}
._6_c00351{margin-left:-1.895820px;}
._9_c00351{width:1.032600px;}
._3_c00351{width:2.180400px;}
._4_c00351{width:3.870900px;}
._0_c00351{width:5.740800px;}
._7_c00351{width:7.148400px;}
._d_c00351{width:8.155800px;}
._2_c00351{width:9.163200px;}
._1_c00351{width:10.419000px;}
._e_c00351{width:11.826600px;}
._10_c00351{width:13.365300px;}
._12_c00351{width:14.835000px;}
._11_c00351{width:16.159800px;}
._5_c00351{width:17.568900px;}
._a_c00351{width:18.899100px;}
._c_c00351{width:21.272700px;}
._b_c00351{width:22.921800px;}
.fc0_c00351{color:transparent;}
.fs3_c00351{font-size:54.720000px;}
.fs5_c00351{font-size:57.600000px;}
.fs0_c00351{font-size:67.200000px;}
.fs2_c00351{font-size:67.800000px;}
.fs1_c00351{font-size:69.000000px;}
.fs4_c00351{font-size:72.600000px;}
.y0_c00351{bottom:0.000000px;}
.y1c_c00351{bottom:67.335000px;}
.y1b_c00351{bottom:187.935000px;}
.y1a_c00351{bottom:217.800000px;}
.y19_c00351{bottom:280.455750px;}
.y18_c00351{bottom:310.695000px;}
.y17_c00351{bottom:372.246000px;}
.y16_c00351{bottom:402.847500px;}
.y15_c00351{bottom:433.794000px;}
.y14_c00351{bottom:464.775000px;}
.y12_c00351{bottom:526.312500px;}
.y13_c00351{bottom:526.320000px;}
.y11_c00351{bottom:556.551750px;}
.yf_c00351{bottom:587.889750px;}
.y10_c00351{bottom:587.895000px;}
.ye_c00351{bottom:618.474000px;}
.yd_c00351{bottom:649.455000px;}
.yc_c00351{bottom:712.095000px;}
.yb_c00351{bottom:775.066500px;}
.ya_c00351{bottom:806.047500px;}
.y9_c00351{bottom:836.649000px;}
.y8_c00351{bottom:867.975000px;}
.y7_c00351{bottom:928.815000px;}
.y6_c00351{bottom:959.400000px;}
.y5_c00351{bottom:990.015000px;}
.y4_c00351{bottom:1020.975000px;}
.y3_c00351{bottom:1082.891250px;}
.y2_c00351{bottom:1113.855000px;}
.y1_c00351{bottom:1189.440000px;}
.h6_c00351{height:36.443520px;}
.ha_c00351{height:56.531250px;}
.h2_c00351{height:65.953125px;}
.h5_c00351{height:66.508887px;}
.h3_c00351{height:67.719727px;}
.h4_c00351{height:67.734727px;}
.h9_c00351{height:71.252930px;}
.h7_c00351{height:71.282930px;}
.h8_c00351{height:71.964844px;}
.h1_c00351{height:1263.000000px;}
.h0_c00351{height:1263.240000px;}
.w1_c00351{width:892.500000px;}
.w0_c00351{width:892.800000px;}
.x0_c00351{left:0.000000px;}
.x1_c00351{left:125.925000px;}
.x2_c00351{left:179.565000px;}
.x17_c00351{left:246.405000px;}
.x18_c00351{left:274.125000px;}
.x15_c00351{left:284.535000px;}
.x4_c00351{left:335.490000px;}
.xc_c00351{left:356.055000px;}
.x5_c00351{left:366.345000px;}
.xd_c00351{left:373.155000px;}
.x9_c00351{left:416.445000px;}
.x19_c00351{left:426.435000px;}
.x10_c00351{left:443.730000px;}
.xa_c00351{left:448.020000px;}
.x11_c00351{left:460.920000px;}
.x6_c00351{left:468.120000px;}
.x7_c00351{left:485.445000px;}
.x8_c00351{left:512.895000px;}
.xe_c00351{left:523.275000px;}
.xf_c00351{left:545.220000px;}
.x3_c00351{left:550.335000px;}
.x16_c00351{left:608.490000px;}
.x12_c00351{left:639.540000px;}
.xb_c00351{left:678.525000px;}
.x13_c00351{left:682.020000px;}
.x14_c00351{left:701.835000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls95_c00351{letter-spacing:-2.258667pt;}
.ls63_c00351{letter-spacing:-2.146667pt;}
.ls67_c00351{letter-spacing:-2.122133pt;}
.ls57_c00351{letter-spacing:-2.090667pt;}
.ls79_c00351{letter-spacing:-1.987200pt;}
.ls5d_c00351{letter-spacing:-1.741867pt;}
.ls62_c00351{letter-spacing:-1.662133pt;}
.ls93_c00351{letter-spacing:-1.645600pt;}
.ls94_c00351{letter-spacing:-1.548800pt;}
.ls69_c00351{letter-spacing:-1.447467pt;}
.ls6f_c00351{letter-spacing:-1.404533pt;}
.ls68_c00351{letter-spacing:-1.275733pt;}
.ls61_c00351{letter-spacing:-1.269600pt;}
.ls65_c00351{letter-spacing:-1.097867pt;}
.ls59_c00351{letter-spacing:-0.993600pt;}
.ls7e_c00351{letter-spacing:-0.987467pt;}
.ls98_c00351{letter-spacing:-0.972800pt;}
.ls6d_c00351{letter-spacing:-0.962933pt;}
.ls8c_c00351{letter-spacing:-0.858667pt;}
.ls5b_c00351{letter-spacing:-0.846400pt;}
.ls83_c00351{letter-spacing:-0.840267pt;}
.ls85_c00351{letter-spacing:-0.803467pt;}
.ls5a_c00351{letter-spacing:-0.778933pt;}
.ls60_c00351{letter-spacing:-0.766667pt;}
.ls8e_c00351{letter-spacing:-0.760533pt;}
.ls81_c00351{letter-spacing:-0.729867pt;}
.ls8a_c00351{letter-spacing:-0.711467pt;}
.ls66_c00351{letter-spacing:-0.668533pt;}
.ls5c_c00351{letter-spacing:-0.631733pt;}
.ls5e_c00351{letter-spacing:-0.613333pt;}
.ls84_c00351{letter-spacing:-0.576533pt;}
.ls86_c00351{letter-spacing:-0.478400pt;}
.ls82_c00351{letter-spacing:-0.472267pt;}
.ls8b_c00351{letter-spacing:-0.447733pt;}
.ls7f_c00351{letter-spacing:-0.392533pt;}
.ls73_c00351{letter-spacing:-0.386400pt;}
.ls7d_c00351{letter-spacing:-0.355733pt;}
.ls87_c00351{letter-spacing:-0.343467pt;}
.ls6a_c00351{letter-spacing:-0.331200pt;}
.ls71_c00351{letter-spacing:-0.318933pt;}
.ls78_c00351{letter-spacing:-0.306667pt;}
.ls58_c00351{letter-spacing:-0.294400pt;}
.ls70_c00351{letter-spacing:-0.288267pt;}
.ls74_c00351{letter-spacing:-0.276000pt;}
.ls8d_c00351{letter-spacing:-0.269867pt;}
.ls92_c00351{letter-spacing:-0.263733pt;}
.ls5f_c00351{letter-spacing:-0.214667pt;}
.ls76_c00351{letter-spacing:-0.184000pt;}
.ls90_c00351{letter-spacing:-0.177867pt;}
.ls6e_c00351{letter-spacing:-0.165600pt;}
.ls89_c00351{letter-spacing:-0.141067pt;}
.ls8f_c00351{letter-spacing:-0.134933pt;}
.ls77_c00351{letter-spacing:-0.122667pt;}
.ls97_c00351{letter-spacing:-0.104267pt;}
.ls7b_c00351{letter-spacing:-0.092000pt;}
.ls72_c00351{letter-spacing:-0.085867pt;}
.ls7c_c00351{letter-spacing:-0.067467pt;}
.ls7a_c00351{letter-spacing:-0.061333pt;}
.ls75_c00351{letter-spacing:-0.055200pt;}
.ls80_c00351{letter-spacing:-0.042933pt;}
.ls96_c00351{letter-spacing:-0.036800pt;}
.ls6c_c00351{letter-spacing:0.000000pt;}
.lsf_c00351{letter-spacing:0.024533pt;}
.ls46_c00351{letter-spacing:0.036800pt;}
.ls3_c00351{letter-spacing:0.042933pt;}
.ls26_c00351{letter-spacing:0.061333pt;}
.ls16_c00351{letter-spacing:0.073600pt;}
.ls2d_c00351{letter-spacing:0.079733pt;}
.ls4b_c00351{letter-spacing:0.085867pt;}
.lsd_c00351{letter-spacing:0.092000pt;}
.ls1c_c00351{letter-spacing:0.104267pt;}
.ls88_c00351{letter-spacing:0.110400pt;}
.ls1a_c00351{letter-spacing:0.116533pt;}
.ls6b_c00351{letter-spacing:0.122667pt;}
.ls4_c00351{letter-spacing:0.128800pt;}
.lsb_c00351{letter-spacing:0.141067pt;}
.ls41_c00351{letter-spacing:0.153333pt;}
.ls2f_c00351{letter-spacing:0.165600pt;}
.ls3e_c00351{letter-spacing:0.196267pt;}
.ls8_c00351{letter-spacing:0.220800pt;}
.ls54_c00351{letter-spacing:0.233067pt;}
.ls12_c00351{letter-spacing:0.239200pt;}
.ls2b_c00351{letter-spacing:0.251467pt;}
.ls10_c00351{letter-spacing:0.263733pt;}
.ls49_c00351{letter-spacing:0.269867pt;}
.ls1d_c00351{letter-spacing:0.276000pt;}
.ls23_c00351{letter-spacing:0.282133pt;}
.ls35_c00351{letter-spacing:0.288267pt;}
.ls1_c00351{letter-spacing:0.294400pt;}
.ls22_c00351{letter-spacing:0.300533pt;}
.ls1f_c00351{letter-spacing:0.312800pt;}
.ls14_c00351{letter-spacing:0.318933pt;}
.ls1e_c00351{letter-spacing:0.325067pt;}
.ls31_c00351{letter-spacing:0.337333pt;}
.ls18_c00351{letter-spacing:0.343467pt;}
.ls4a_c00351{letter-spacing:0.361867pt;}
.ls28_c00351{letter-spacing:0.380267pt;}
.ls38_c00351{letter-spacing:0.386400pt;}
.ls1b_c00351{letter-spacing:0.392533pt;}
.ls33_c00351{letter-spacing:0.404800pt;}
.ls4f_c00351{letter-spacing:0.417067pt;}
.ls3f_c00351{letter-spacing:0.423200pt;}
.ls19_c00351{letter-spacing:0.447733pt;}
.ls43_c00351{letter-spacing:0.453867pt;}
.ls39_c00351{letter-spacing:0.484533pt;}
.ls15_c00351{letter-spacing:0.490667pt;}
.ls34_c00351{letter-spacing:0.496800pt;}
.ls2c_c00351{letter-spacing:0.509067pt;}
.ls42_c00351{letter-spacing:0.515200pt;}
.ls4d_c00351{letter-spacing:0.518293pt;}
.ls13_c00351{letter-spacing:0.521333pt;}
.ls17_c00351{letter-spacing:0.527467pt;}
.ls4e_c00351{letter-spacing:0.536373pt;}
.ls25_c00351{letter-spacing:0.552000pt;}
.ls2_c00351{letter-spacing:0.564267pt;}
.ls45_c00351{letter-spacing:0.570400pt;}
.ls44_c00351{letter-spacing:0.582667pt;}
.ls3a_c00351{letter-spacing:0.588800pt;}
.ls27_c00351{letter-spacing:0.594933pt;}
.ls30_c00351{letter-spacing:0.644000pt;}
.ls29_c00351{letter-spacing:0.674987pt;}
.ls64_c00351{letter-spacing:0.699093pt;}
.ls56_c00351{letter-spacing:0.699200pt;}
.ls91_c00351{letter-spacing:0.766667pt;}
.ls20_c00351{letter-spacing:0.785067pt;}
.ls2a_c00351{letter-spacing:0.821867pt;}
.lsa_c00351{letter-spacing:0.825653pt;}
.ls50_c00351{letter-spacing:0.834133pt;}
.ls6_c00351{letter-spacing:0.837707pt;}
.ls48_c00351{letter-spacing:0.840267pt;}
.lse_c00351{letter-spacing:0.904000pt;}
.ls37_c00351{letter-spacing:0.913867pt;}
.ls40_c00351{letter-spacing:0.940160pt;}
.ls32_c00351{letter-spacing:0.969067pt;}
.ls3b_c00351{letter-spacing:0.975200pt;}
.ls9_c00351{letter-spacing:0.976320pt;}
.ls5_c00351{letter-spacing:0.987467pt;}
.ls7_c00351{letter-spacing:0.988373pt;}
.ls11_c00351{letter-spacing:1.012480pt;}
.ls0_c00351{letter-spacing:1.079467pt;}
.ls24_c00351{letter-spacing:1.102880pt;}
.ls55_c00351{letter-spacing:1.128533pt;}
.ls4c_c00351{letter-spacing:1.153067pt;}
.ls36_c00351{letter-spacing:1.165333pt;}
.ls52_c00351{letter-spacing:1.183733pt;}
.ls53_c00351{letter-spacing:1.306400pt;}
.lsc_c00351{letter-spacing:1.325867pt;}
.ls47_c00351{letter-spacing:1.422933pt;}
.ls3c_c00351{letter-spacing:1.490400pt;}
.ls51_c00351{letter-spacing:1.637600pt;}
.ls3d_c00351{letter-spacing:1.827733pt;}
.ls2e_c00351{letter-spacing:2.257067pt;}
.ls21_c00351{letter-spacing:2.275467pt;}
.ws1_c00351{word-spacing:-1.566720pt;}
.ws5_c00351{word-spacing:0.000000pt;}
.ws4_c00351{word-spacing:0.773493pt;}
.ws2_c00351{word-spacing:6.446400pt;}
.ws3_c00351{word-spacing:7.627200pt;}
.ws0_c00351{word-spacing:16.506347pt;}
._8_c00351{margin-left:-4.739040pt;}
._f_c00351{margin-left:-2.918187pt;}
._6_c00351{margin-left:-1.685173pt;}
._9_c00351{width:0.917867pt;}
._3_c00351{width:1.938133pt;}
._4_c00351{width:3.440800pt;}
._0_c00351{width:5.102933pt;}
._7_c00351{width:6.354133pt;}
._d_c00351{width:7.249600pt;}
._2_c00351{width:8.145067pt;}
._1_c00351{width:9.261333pt;}
._e_c00351{width:10.512533pt;}
._10_c00351{width:11.880267pt;}
._12_c00351{width:13.186667pt;}
._11_c00351{width:14.364267pt;}
._5_c00351{width:15.616800pt;}
._a_c00351{width:16.799200pt;}
._c_c00351{width:18.909067pt;}
._b_c00351{width:20.374933pt;}
.fs3_c00351{font-size:48.640000pt;}
.fs5_c00351{font-size:51.200000pt;}
.fs0_c00351{font-size:59.733333pt;}
.fs2_c00351{font-size:60.266667pt;}
.fs1_c00351{font-size:61.333333pt;}
.fs4_c00351{font-size:64.533333pt;}
.y0_c00351{bottom:0.000000pt;}
.y1c_c00351{bottom:59.853333pt;}
.y1b_c00351{bottom:167.053333pt;}
.y1a_c00351{bottom:193.600000pt;}
.y19_c00351{bottom:249.294000pt;}
.y18_c00351{bottom:276.173333pt;}
.y17_c00351{bottom:330.885333pt;}
.y16_c00351{bottom:358.086667pt;}
.y15_c00351{bottom:385.594667pt;}
.y14_c00351{bottom:413.133333pt;}
.y12_c00351{bottom:467.833333pt;}
.y13_c00351{bottom:467.840000pt;}
.y11_c00351{bottom:494.712667pt;}
.yf_c00351{bottom:522.568667pt;}
.y10_c00351{bottom:522.573333pt;}
.ye_c00351{bottom:549.754667pt;}
.yd_c00351{bottom:577.293333pt;}
.yc_c00351{bottom:632.973333pt;}
.yb_c00351{bottom:688.948000pt;}
.ya_c00351{bottom:716.486667pt;}
.y9_c00351{bottom:743.688000pt;}
.y8_c00351{bottom:771.533333pt;}
.y7_c00351{bottom:825.613333pt;}
.y6_c00351{bottom:852.800000pt;}
.y5_c00351{bottom:880.013333pt;}
.y4_c00351{bottom:907.533333pt;}
.y3_c00351{bottom:962.570000pt;}
.y2_c00351{bottom:990.093333pt;}
.y1_c00351{bottom:1057.280000pt;}
.h6_c00351{height:32.394240pt;}
.ha_c00351{height:50.250000pt;}
.h2_c00351{height:58.625000pt;}
.h5_c00351{height:59.119010pt;}
.h3_c00351{height:60.195312pt;}
.h4_c00351{height:60.208646pt;}
.h9_c00351{height:63.335938pt;}
.h7_c00351{height:63.362604pt;}
.h8_c00351{height:63.968750pt;}
.h1_c00351{height:1122.666667pt;}
.h0_c00351{height:1122.880000pt;}
.w1_c00351{width:793.333333pt;}
.w0_c00351{width:793.600000pt;}
.x0_c00351{left:0.000000pt;}
.x1_c00351{left:111.933333pt;}
.x2_c00351{left:159.613333pt;}
.x17_c00351{left:219.026667pt;}
.x18_c00351{left:243.666667pt;}
.x15_c00351{left:252.920000pt;}
.x4_c00351{left:298.213333pt;}
.xc_c00351{left:316.493333pt;}
.x5_c00351{left:325.640000pt;}
.xd_c00351{left:331.693333pt;}
.x9_c00351{left:370.173333pt;}
.x19_c00351{left:379.053333pt;}
.x10_c00351{left:394.426667pt;}
.xa_c00351{left:398.240000pt;}
.x11_c00351{left:409.706667pt;}
.x6_c00351{left:416.106667pt;}
.x7_c00351{left:431.506667pt;}
.x8_c00351{left:455.906667pt;}
.xe_c00351{left:465.133333pt;}
.xf_c00351{left:484.640000pt;}
.x3_c00351{left:489.186667pt;}
.x16_c00351{left:540.880000pt;}
.x12_c00351{left:568.480000pt;}
.xb_c00351{left:603.133333pt;}
.x13_c00351{left:606.240000pt;}
.x14_c00351{left:623.853333pt;}
}





/* 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_c00352 {
    display:none;
  }
  .loading-indicator_c00352.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00352 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_c00352 { 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_c00352" -> "#page-container .classname_c00352")
 */
.pf_c00352 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00352 { /* 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_c00352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00352 { /* 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_c00352 { /* 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_c00352 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00352 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00352 {overflow:visible;}
  }
}
.c_c00352 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00352 { /* 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_c00352:after { /* webkit #35443 */
  content: '';
}
.t_c00352:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00352 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 */
}
.__c00352 { /* 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_c00352 { /* info for Javascript */
  display:none;
}
.l_c00352 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00352 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00352 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00352: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_c00352 {
    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_c00352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00352.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_c00352 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00352;src:url('chunks/assets/font_9360ce2f430350a55fd4b954.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.284668;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_c00352;src:url('chunks/assets/font_3978534879799b56207b97ab.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.284180;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_c00352;src:url('chunks/assets/font_28324bf642f0abd13e5cde17.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;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;}
.m4_c00352{transform:matrix(0.190002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190002,0.000000,0.000000,0.250000,0,0);}
.m8_c00352{transform:matrix(0.213339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213339,0.000000,0.000000,0.250000,0,0);}
.m2_c00352{transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);}
.m6_c00352{transform:matrix(0.232364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232364,0.000000,0.000000,0.250000,0,0);}
.m0_c00352{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m7_c00352{transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);}
.m3_c00352{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m5_c00352{transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);}
.m1_c00352{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);}
.m9_c00352{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls91_c00352{letter-spacing:-3.696000px;}
.ls6d_c00352{letter-spacing:-2.436000px;}
.ls7d_c00352{letter-spacing:-2.415000px;}
.ls85_c00352{letter-spacing:-2.394000px;}
.ls5e_c00352{letter-spacing:-2.352000px;}
.ls71_c00352{letter-spacing:-2.296800px;}
.ls61_c00352{letter-spacing:-2.234160px;}
.ls6b_c00352{letter-spacing:-2.136720px;}
.ls72_c00352{letter-spacing:-1.927920px;}
.ls8d_c00352{letter-spacing:-1.872240px;}
.ls70_c00352{letter-spacing:-1.760880px;}
.ls81_c00352{letter-spacing:-1.649520px;}
.ls64_c00352{letter-spacing:-1.572960px;}
.ls7a_c00352{letter-spacing:-1.531200px;}
.ls98_c00352{letter-spacing:-1.426800px;}
.ls6f_c00352{letter-spacing:-1.412880px;}
.ls67_c00352{letter-spacing:-1.294560px;}
.ls78_c00352{letter-spacing:-1.266720px;}
.ls66_c00352{letter-spacing:-1.238880px;}
.ls8b_c00352{letter-spacing:-1.169280px;}
.ls74_c00352{letter-spacing:-1.113600px;}
.ls68_c00352{letter-spacing:-1.078800px;}
.ls60_c00352{letter-spacing:-1.023120px;}
.ls69_c00352{letter-spacing:-0.849120px;}
.ls6a_c00352{letter-spacing:-0.828240px;}
.ls7f_c00352{letter-spacing:-0.800400px;}
.ls7c_c00352{letter-spacing:-0.751680px;}
.ls97_c00352{letter-spacing:-0.689040px;}
.ls96_c00352{letter-spacing:-0.595080px;}
.ls93_c00352{letter-spacing:-0.577680px;}
.ls6e_c00352{letter-spacing:-0.466320px;}
.ls87_c00352{letter-spacing:-0.445440px;}
.ls92_c00352{letter-spacing:-0.403680px;}
.ls7b_c00352{letter-spacing:-0.382800px;}
.ls75_c00352{letter-spacing:-0.361920px;}
.ls83_c00352{letter-spacing:-0.334080px;}
.ls62_c00352{letter-spacing:-0.222720px;}
.ls86_c00352{letter-spacing:-0.208800px;}
.ls5f_c00352{letter-spacing:-0.187920px;}
.ls73_c00352{letter-spacing:-0.153120px;}
.ls90_c00352{letter-spacing:-0.146160px;}
.ls99_c00352{letter-spacing:-0.142560px;}
.ls77_c00352{letter-spacing:-0.104400px;}
.ls80_c00352{letter-spacing:-0.097440px;}
.ls88_c00352{letter-spacing:-0.090480px;}
.ls8a_c00352{letter-spacing:-0.062640px;}
.ls76_c00352{letter-spacing:-0.048720px;}
.ls63_c00352{letter-spacing:0.000000px;}
.ls1_c00352{letter-spacing:0.013920px;}
.ls34_c00352{letter-spacing:0.020880px;}
.ls58_c00352{letter-spacing:0.041760px;}
.ls9_c00352{letter-spacing:0.048720px;}
.ls84_c00352{letter-spacing:0.083520px;}
.ls2a_c00352{letter-spacing:0.097440px;}
.ls5b_c00352{letter-spacing:0.111360px;}
.ls14_c00352{letter-spacing:0.118320px;}
.ls4d_c00352{letter-spacing:0.132240px;}
.ls5_c00352{letter-spacing:0.139200px;}
.ls45_c00352{letter-spacing:0.146160px;}
.ls41_c00352{letter-spacing:0.174000px;}
.ls27_c00352{letter-spacing:0.180960px;}
.ls1d_c00352{letter-spacing:0.194880px;}
.ls4b_c00352{letter-spacing:0.215760px;}
.ls23_c00352{letter-spacing:0.222720px;}
.ls40_c00352{letter-spacing:0.229680px;}
.ls1a_c00352{letter-spacing:0.236640px;}
.ls8c_c00352{letter-spacing:0.243600px;}
.ls8e_c00352{letter-spacing:0.250560px;}
.ls26_c00352{letter-spacing:0.257520px;}
.lsf_c00352{letter-spacing:0.264480px;}
.lsb_c00352{letter-spacing:0.271440px;}
.ls29_c00352{letter-spacing:0.278400px;}
.ls47_c00352{letter-spacing:0.285360px;}
.ls4_c00352{letter-spacing:0.292320px;}
.ls6_c00352{letter-spacing:0.306240px;}
.ls33_c00352{letter-spacing:0.320160px;}
.ls38_c00352{letter-spacing:0.334080px;}
.ls37_c00352{letter-spacing:0.354960px;}
.ls2f_c00352{letter-spacing:0.361920px;}
.ls50_c00352{letter-spacing:0.368880px;}
.ls3e_c00352{letter-spacing:0.375840px;}
.ls20_c00352{letter-spacing:0.389760px;}
.ls56_c00352{letter-spacing:0.410640px;}
.ls5a_c00352{letter-spacing:0.424560px;}
.ls4a_c00352{letter-spacing:0.438480px;}
.ls1e_c00352{letter-spacing:0.445440px;}
.ls2d_c00352{letter-spacing:0.452400px;}
.ls7e_c00352{letter-spacing:0.466320px;}
.ls12_c00352{letter-spacing:0.473280px;}
.ls82_c00352{letter-spacing:0.480240px;}
.ls16_c00352{letter-spacing:0.487200px;}
.ls22_c00352{letter-spacing:0.494160px;}
.ls52_c00352{letter-spacing:0.515040px;}
.ls51_c00352{letter-spacing:0.522000px;}
.ls53_c00352{letter-spacing:0.528960px;}
.ls28_c00352{letter-spacing:0.535920px;}
.ls42_c00352{letter-spacing:0.542880px;}
.ls1b_c00352{letter-spacing:0.549840px;}
.ls30_c00352{letter-spacing:0.556800px;}
.ls43_c00352{letter-spacing:0.570720px;}
.ls0_c00352{letter-spacing:0.577680px;}
.ls3_c00352{letter-spacing:0.591600px;}
.ls15_c00352{letter-spacing:0.612480px;}
.ls24_c00352{letter-spacing:0.626400px;}
.ls21_c00352{letter-spacing:0.640320px;}
.ls55_c00352{letter-spacing:0.642960px;}
.ls19_c00352{letter-spacing:0.647280px;}
.ls32_c00352{letter-spacing:0.654240px;}
.ls54_c00352{letter-spacing:0.656640px;}
.ls6c_c00352{letter-spacing:0.670320px;}
.ls48_c00352{letter-spacing:0.696000px;}
.ls1c_c00352{letter-spacing:0.709920px;}
.ls2_c00352{letter-spacing:0.716880px;}
.ls2e_c00352{letter-spacing:0.744720px;}
.ls8_c00352{letter-spacing:0.745560px;}
.ls35_c00352{letter-spacing:0.772560px;}
.ls2b_c00352{letter-spacing:0.793440px;}
.ls1f_c00352{letter-spacing:0.821280px;}
.ls3c_c00352{letter-spacing:0.835200px;}
.ls3a_c00352{letter-spacing:0.841320px;}
.ls4e_c00352{letter-spacing:0.890880px;}
.ls17_c00352{letter-spacing:0.904800px;}
.lse_c00352{letter-spacing:0.923400px;}
.ls94_c00352{letter-spacing:0.925680px;}
.ls11_c00352{letter-spacing:0.930240px;}
.lsd_c00352{letter-spacing:0.957600px;}
.ls3b_c00352{letter-spacing:0.960480px;}
.ls5d_c00352{letter-spacing:0.981360px;}
.ls44_c00352{letter-spacing:1.016160px;}
.ls4f_c00352{letter-spacing:1.019160px;}
.ls10_c00352{letter-spacing:1.039680px;}
.ls25_c00352{letter-spacing:1.044000px;}
.ls46_c00352{letter-spacing:1.071840px;}
.ls89_c00352{letter-spacing:1.085760px;}
.ls7_c00352{letter-spacing:1.121760px;}
.ls39_c00352{letter-spacing:1.141440px;}
.ls65_c00352{letter-spacing:1.169280px;}
.ls13_c00352{letter-spacing:1.224360px;}
.ls79_c00352{letter-spacing:1.238880px;}
.lsc_c00352{letter-spacing:1.285920px;}
.ls4c_c00352{letter-spacing:1.378080px;}
.ls49_c00352{letter-spacing:1.398960px;}
.ls2c_c00352{letter-spacing:1.433760px;}
.ls59_c00352{letter-spacing:1.496400px;}
.ls57_c00352{letter-spacing:1.517280px;}
.ls3f_c00352{letter-spacing:1.600800px;}
.lsa_c00352{letter-spacing:1.682640px;}
.ls36_c00352{letter-spacing:1.696320px;}
.ls18_c00352{letter-spacing:1.802640px;}
.ls3d_c00352{letter-spacing:1.983600px;}
.ls31_c00352{letter-spacing:2.164560px;}
.ls5c_c00352{letter-spacing:2.839680px;}
.ls8f_c00352{letter-spacing:2.888400px;}
.ls95_c00352{letter-spacing:3.420000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{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__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00352{word-spacing:-0.135000px;}
.ws4_c00352{word-spacing:0.000000px;}
.ws1_c00352{word-spacing:6.919200px;}
.ws3_c00352{word-spacing:7.765440px;}
.ws0_c00352{word-spacing:12.082560px;}
._a_c00352{margin-left:-13.147440px;}
._b_c00352{margin-left:-5.772960px;}
._f_c00352{margin-left:-3.402240px;}
._7_c00352{margin-left:-1.099680px;}
._4_c00352{width:1.879200px;}
._8_c00352{width:2.898240px;}
._0_c00352{width:4.099440px;}
._6_c00352{width:6.166560px;}
._2_c00352{width:7.203600px;}
._10_c00352{width:8.272560px;}
._9_c00352{width:9.284640px;}
._5_c00352{width:10.572240px;}
._1_c00352{width:12.611520px;}
._d_c00352{width:14.077440px;}
._c_c00352{width:16.035840px;}
._3_c00352{width:19.801200px;}
._e_c00352{width:22.425120px;}
.fc0_c00352{color:transparent;}
.fs5_c00352{font-size:52.800000px;}
.fs0_c00352{font-size:67.200000px;}
.fs2_c00352{font-size:68.400000px;}
.fs3_c00352{font-size:69.000000px;}
.fs1_c00352{font-size:69.600000px;}
.fs4_c00352{font-size:105.600000px;}
.y0_c00352{bottom:0.000000px;}
.y1e_c00352{bottom:72.735000px;}
.y1d_c00352{bottom:191.877600px;}
.y1c_c00352{bottom:223.215000px;}
.y1b_c00352{bottom:254.175000px;}
.y1a_c00352{bottom:314.638800px;}
.y19_c00352{bottom:347.055000px;}
.y17_c00352{bottom:408.969600px;}
.y18_c00352{bottom:408.975000px;}
.y16_c00352{bottom:439.576200px;}
.y15_c00352{bottom:470.513400px;}
.y13_c00352{bottom:501.118800px;}
.y14_c00352{bottom:501.120000px;}
.y12_c00352{bottom:531.360000px;}
.y11_c00352{bottom:594.735000px;}
.y10_c00352{bottom:657.745800px;}
.yf_c00352{bottom:688.700400px;}
.ye_c00352{bottom:719.655000px;}
.yd_c00352{bottom:750.600000px;}
.yc_c00352{bottom:750.613800px;}
.yb_c00352{bottom:781.568400px;}
.ya_c00352{bottom:812.175000px;}
.y9_c00352{bottom:874.080000px;}
.y8_c00352{bottom:904.695000px;}
.y7_c00352{bottom:935.655000px;}
.y6_c00352{bottom:966.240000px;}
.y5_c00352{bottom:997.200000px;}
.y4_c00352{bottom:1028.520000px;}
.y3_c00352{bottom:1090.080000px;}
.y2_c00352{bottom:1121.400000px;}
.y1_c00352{bottom:1197.360000px;}
.h8_c00352{height:55.068750px;}
.h2_c00352{height:65.953125px;}
.h4_c00352{height:67.097461px;}
.h6_c00352{height:67.130859px;}
.h3_c00352{height:68.308594px;}
.h5_c00352{height:71.964844px;}
.h7_c00352{height:103.640625px;}
.h1_c00352{height:1263.000000px;}
.h0_c00352{height:1263.240000px;}
.w1_c00352{width:892.500000px;}
.w0_c00352{width:892.800000px;}
.x0_c00352{left:0.000000px;}
.x7_c00352{left:121.145400px;}
.x9_c00352{left:122.181000px;}
.x1_c00352{left:124.845000px;}
.x6_c00352{left:174.735000px;}
.x3_c00352{left:175.815000px;}
.x2_c00352{left:177.045000px;}
.x11_c00352{left:189.525000px;}
.x12_c00352{left:208.275000px;}
.xd_c00352{left:306.180000px;}
.xe_c00352{left:324.900000px;}
.x4_c00352{left:332.610000px;}
.x13_c00352{left:341.610000px;}
.x5_c00352{left:364.365000px;}
.x16_c00352{left:372.090000px;}
.xa_c00352{left:385.485000px;}
.x17_c00352{left:389.400000px;}
.xb_c00352{left:417.810000px;}
.x18_c00352{left:425.715000px;}
.xf_c00352{left:481.500000px;}
.x10_c00352{left:505.410000px;}
.x14_c00352{left:623.655000px;}
.xc_c00352{left:642.885000px;}
.x15_c00352{left:741.780000px;}
.x8_c00352{left:743.220000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls91_c00352{letter-spacing:-3.285333pt;}
.ls6d_c00352{letter-spacing:-2.165333pt;}
.ls7d_c00352{letter-spacing:-2.146667pt;}
.ls85_c00352{letter-spacing:-2.128000pt;}
.ls5e_c00352{letter-spacing:-2.090667pt;}
.ls71_c00352{letter-spacing:-2.041600pt;}
.ls61_c00352{letter-spacing:-1.985920pt;}
.ls6b_c00352{letter-spacing:-1.899307pt;}
.ls72_c00352{letter-spacing:-1.713707pt;}
.ls8d_c00352{letter-spacing:-1.664213pt;}
.ls70_c00352{letter-spacing:-1.565227pt;}
.ls81_c00352{letter-spacing:-1.466240pt;}
.ls64_c00352{letter-spacing:-1.398187pt;}
.ls7a_c00352{letter-spacing:-1.361067pt;}
.ls98_c00352{letter-spacing:-1.268267pt;}
.ls6f_c00352{letter-spacing:-1.255893pt;}
.ls67_c00352{letter-spacing:-1.150720pt;}
.ls78_c00352{letter-spacing:-1.125973pt;}
.ls66_c00352{letter-spacing:-1.101227pt;}
.ls8b_c00352{letter-spacing:-1.039360pt;}
.ls74_c00352{letter-spacing:-0.989867pt;}
.ls68_c00352{letter-spacing:-0.958933pt;}
.ls60_c00352{letter-spacing:-0.909440pt;}
.ls69_c00352{letter-spacing:-0.754773pt;}
.ls6a_c00352{letter-spacing:-0.736213pt;}
.ls7f_c00352{letter-spacing:-0.711467pt;}
.ls7c_c00352{letter-spacing:-0.668160pt;}
.ls97_c00352{letter-spacing:-0.612480pt;}
.ls96_c00352{letter-spacing:-0.528960pt;}
.ls93_c00352{letter-spacing:-0.513493pt;}
.ls6e_c00352{letter-spacing:-0.414507pt;}
.ls87_c00352{letter-spacing:-0.395947pt;}
.ls92_c00352{letter-spacing:-0.358827pt;}
.ls7b_c00352{letter-spacing:-0.340267pt;}
.ls75_c00352{letter-spacing:-0.321707pt;}
.ls83_c00352{letter-spacing:-0.296960pt;}
.ls62_c00352{letter-spacing:-0.197973pt;}
.ls86_c00352{letter-spacing:-0.185600pt;}
.ls5f_c00352{letter-spacing:-0.167040pt;}
.ls73_c00352{letter-spacing:-0.136107pt;}
.ls90_c00352{letter-spacing:-0.129920pt;}
.ls99_c00352{letter-spacing:-0.126720pt;}
.ls77_c00352{letter-spacing:-0.092800pt;}
.ls80_c00352{letter-spacing:-0.086613pt;}
.ls88_c00352{letter-spacing:-0.080427pt;}
.ls8a_c00352{letter-spacing:-0.055680pt;}
.ls76_c00352{letter-spacing:-0.043307pt;}
.ls63_c00352{letter-spacing:0.000000pt;}
.ls1_c00352{letter-spacing:0.012373pt;}
.ls34_c00352{letter-spacing:0.018560pt;}
.ls58_c00352{letter-spacing:0.037120pt;}
.ls9_c00352{letter-spacing:0.043307pt;}
.ls84_c00352{letter-spacing:0.074240pt;}
.ls2a_c00352{letter-spacing:0.086613pt;}
.ls5b_c00352{letter-spacing:0.098987pt;}
.ls14_c00352{letter-spacing:0.105173pt;}
.ls4d_c00352{letter-spacing:0.117547pt;}
.ls5_c00352{letter-spacing:0.123733pt;}
.ls45_c00352{letter-spacing:0.129920pt;}
.ls41_c00352{letter-spacing:0.154667pt;}
.ls27_c00352{letter-spacing:0.160853pt;}
.ls1d_c00352{letter-spacing:0.173227pt;}
.ls4b_c00352{letter-spacing:0.191787pt;}
.ls23_c00352{letter-spacing:0.197973pt;}
.ls40_c00352{letter-spacing:0.204160pt;}
.ls1a_c00352{letter-spacing:0.210347pt;}
.ls8c_c00352{letter-spacing:0.216533pt;}
.ls8e_c00352{letter-spacing:0.222720pt;}
.ls26_c00352{letter-spacing:0.228907pt;}
.lsf_c00352{letter-spacing:0.235093pt;}
.lsb_c00352{letter-spacing:0.241280pt;}
.ls29_c00352{letter-spacing:0.247467pt;}
.ls47_c00352{letter-spacing:0.253653pt;}
.ls4_c00352{letter-spacing:0.259840pt;}
.ls6_c00352{letter-spacing:0.272213pt;}
.ls33_c00352{letter-spacing:0.284587pt;}
.ls38_c00352{letter-spacing:0.296960pt;}
.ls37_c00352{letter-spacing:0.315520pt;}
.ls2f_c00352{letter-spacing:0.321707pt;}
.ls50_c00352{letter-spacing:0.327893pt;}
.ls3e_c00352{letter-spacing:0.334080pt;}
.ls20_c00352{letter-spacing:0.346453pt;}
.ls56_c00352{letter-spacing:0.365013pt;}
.ls5a_c00352{letter-spacing:0.377387pt;}
.ls4a_c00352{letter-spacing:0.389760pt;}
.ls1e_c00352{letter-spacing:0.395947pt;}
.ls2d_c00352{letter-spacing:0.402133pt;}
.ls7e_c00352{letter-spacing:0.414507pt;}
.ls12_c00352{letter-spacing:0.420693pt;}
.ls82_c00352{letter-spacing:0.426880pt;}
.ls16_c00352{letter-spacing:0.433067pt;}
.ls22_c00352{letter-spacing:0.439253pt;}
.ls52_c00352{letter-spacing:0.457813pt;}
.ls51_c00352{letter-spacing:0.464000pt;}
.ls53_c00352{letter-spacing:0.470187pt;}
.ls28_c00352{letter-spacing:0.476373pt;}
.ls42_c00352{letter-spacing:0.482560pt;}
.ls1b_c00352{letter-spacing:0.488747pt;}
.ls30_c00352{letter-spacing:0.494933pt;}
.ls43_c00352{letter-spacing:0.507307pt;}
.ls0_c00352{letter-spacing:0.513493pt;}
.ls3_c00352{letter-spacing:0.525867pt;}
.ls15_c00352{letter-spacing:0.544427pt;}
.ls24_c00352{letter-spacing:0.556800pt;}
.ls21_c00352{letter-spacing:0.569173pt;}
.ls55_c00352{letter-spacing:0.571520pt;}
.ls19_c00352{letter-spacing:0.575360pt;}
.ls32_c00352{letter-spacing:0.581547pt;}
.ls54_c00352{letter-spacing:0.583680pt;}
.ls6c_c00352{letter-spacing:0.595840pt;}
.ls48_c00352{letter-spacing:0.618667pt;}
.ls1c_c00352{letter-spacing:0.631040pt;}
.ls2_c00352{letter-spacing:0.637227pt;}
.ls2e_c00352{letter-spacing:0.661973pt;}
.ls8_c00352{letter-spacing:0.662720pt;}
.ls35_c00352{letter-spacing:0.686720pt;}
.ls2b_c00352{letter-spacing:0.705280pt;}
.ls1f_c00352{letter-spacing:0.730027pt;}
.ls3c_c00352{letter-spacing:0.742400pt;}
.ls3a_c00352{letter-spacing:0.747840pt;}
.ls4e_c00352{letter-spacing:0.791893pt;}
.ls17_c00352{letter-spacing:0.804267pt;}
.lse_c00352{letter-spacing:0.820800pt;}
.ls94_c00352{letter-spacing:0.822827pt;}
.ls11_c00352{letter-spacing:0.826880pt;}
.lsd_c00352{letter-spacing:0.851200pt;}
.ls3b_c00352{letter-spacing:0.853760pt;}
.ls5d_c00352{letter-spacing:0.872320pt;}
.ls44_c00352{letter-spacing:0.903253pt;}
.ls4f_c00352{letter-spacing:0.905920pt;}
.ls10_c00352{letter-spacing:0.924160pt;}
.ls25_c00352{letter-spacing:0.928000pt;}
.ls46_c00352{letter-spacing:0.952747pt;}
.ls89_c00352{letter-spacing:0.965120pt;}
.ls7_c00352{letter-spacing:0.997120pt;}
.ls39_c00352{letter-spacing:1.014613pt;}
.ls65_c00352{letter-spacing:1.039360pt;}
.ls13_c00352{letter-spacing:1.088320pt;}
.ls79_c00352{letter-spacing:1.101227pt;}
.lsc_c00352{letter-spacing:1.143040pt;}
.ls4c_c00352{letter-spacing:1.224960pt;}
.ls49_c00352{letter-spacing:1.243520pt;}
.ls2c_c00352{letter-spacing:1.274453pt;}
.ls59_c00352{letter-spacing:1.330133pt;}
.ls57_c00352{letter-spacing:1.348693pt;}
.ls3f_c00352{letter-spacing:1.422933pt;}
.lsa_c00352{letter-spacing:1.495680pt;}
.ls36_c00352{letter-spacing:1.507840pt;}
.ls18_c00352{letter-spacing:1.602347pt;}
.ls3d_c00352{letter-spacing:1.763200pt;}
.ls31_c00352{letter-spacing:1.924053pt;}
.ls5c_c00352{letter-spacing:2.524160pt;}
.ls8f_c00352{letter-spacing:2.567467pt;}
.ls95_c00352{letter-spacing:3.040000pt;}
.ws2_c00352{word-spacing:-0.120000pt;}
.ws4_c00352{word-spacing:0.000000pt;}
.ws1_c00352{word-spacing:6.150400pt;}
.ws3_c00352{word-spacing:6.902613pt;}
.ws0_c00352{word-spacing:10.740053pt;}
._a_c00352{margin-left:-11.686613pt;}
._b_c00352{margin-left:-5.131520pt;}
._f_c00352{margin-left:-3.024213pt;}
._7_c00352{margin-left:-0.977493pt;}
._4_c00352{width:1.670400pt;}
._8_c00352{width:2.576213pt;}
._0_c00352{width:3.643947pt;}
._6_c00352{width:5.481387pt;}
._2_c00352{width:6.403200pt;}
._10_c00352{width:7.353387pt;}
._9_c00352{width:8.253013pt;}
._5_c00352{width:9.397547pt;}
._1_c00352{width:11.210240pt;}
._d_c00352{width:12.513280pt;}
._c_c00352{width:14.254080pt;}
._3_c00352{width:17.601067pt;}
._e_c00352{width:19.933440pt;}
.fs5_c00352{font-size:46.933333pt;}
.fs0_c00352{font-size:59.733333pt;}
.fs2_c00352{font-size:60.800000pt;}
.fs3_c00352{font-size:61.333333pt;}
.fs1_c00352{font-size:61.866667pt;}
.fs4_c00352{font-size:93.866667pt;}
.y0_c00352{bottom:0.000000pt;}
.y1e_c00352{bottom:64.653333pt;}
.y1d_c00352{bottom:170.557867pt;}
.y1c_c00352{bottom:198.413333pt;}
.y1b_c00352{bottom:225.933333pt;}
.y1a_c00352{bottom:279.678933pt;}
.y19_c00352{bottom:308.493333pt;}
.y17_c00352{bottom:363.528533pt;}
.y18_c00352{bottom:363.533333pt;}
.y16_c00352{bottom:390.734400pt;}
.y15_c00352{bottom:418.234133pt;}
.y13_c00352{bottom:445.438933pt;}
.y14_c00352{bottom:445.440000pt;}
.y12_c00352{bottom:472.320000pt;}
.y11_c00352{bottom:528.653333pt;}
.y10_c00352{bottom:584.662933pt;}
.yf_c00352{bottom:612.178133pt;}
.ye_c00352{bottom:639.693333pt;}
.yd_c00352{bottom:667.200000pt;}
.yc_c00352{bottom:667.212267pt;}
.yb_c00352{bottom:694.727467pt;}
.ya_c00352{bottom:721.933333pt;}
.y9_c00352{bottom:776.960000pt;}
.y8_c00352{bottom:804.173333pt;}
.y7_c00352{bottom:831.693333pt;}
.y6_c00352{bottom:858.880000pt;}
.y5_c00352{bottom:886.400000pt;}
.y4_c00352{bottom:914.240000pt;}
.y3_c00352{bottom:968.960000pt;}
.y2_c00352{bottom:996.800000pt;}
.y1_c00352{bottom:1064.320000pt;}
.h8_c00352{height:48.950000pt;}
.h2_c00352{height:58.625000pt;}
.h4_c00352{height:59.642187pt;}
.h6_c00352{height:59.671875pt;}
.h3_c00352{height:60.718750pt;}
.h5_c00352{height:63.968750pt;}
.h7_c00352{height:92.125000pt;}
.h1_c00352{height:1122.666667pt;}
.h0_c00352{height:1122.880000pt;}
.w1_c00352{width:793.333333pt;}
.w0_c00352{width:793.600000pt;}
.x0_c00352{left:0.000000pt;}
.x7_c00352{left:107.684800pt;}
.x9_c00352{left:108.605333pt;}
.x1_c00352{left:110.973333pt;}
.x6_c00352{left:155.320000pt;}
.x3_c00352{left:156.280000pt;}
.x2_c00352{left:157.373333pt;}
.x11_c00352{left:168.466667pt;}
.x12_c00352{left:185.133333pt;}
.xd_c00352{left:272.160000pt;}
.xe_c00352{left:288.800000pt;}
.x4_c00352{left:295.653333pt;}
.x13_c00352{left:303.653333pt;}
.x5_c00352{left:323.880000pt;}
.x16_c00352{left:330.746667pt;}
.xa_c00352{left:342.653333pt;}
.x17_c00352{left:346.133333pt;}
.xb_c00352{left:371.386667pt;}
.x18_c00352{left:378.413333pt;}
.xf_c00352{left:428.000000pt;}
.x10_c00352{left:449.253333pt;}
.x14_c00352{left:554.360000pt;}
.xc_c00352{left:571.453333pt;}
.x15_c00352{left:659.360000pt;}
.x8_c00352{left:660.640000pt;}
}





/* 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_c00353 {
    display:none;
  }
  .loading-indicator_c00353.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00353 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_c00353 { 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_c00353" -> "#page-container .classname_c00353")
 */
.pf_c00353 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00353 { /* 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_c00353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00353 { /* 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_c00353 { /* 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_c00353 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00353 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00353 {overflow:visible;}
  }
}
.c_c00353 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00353 { /* 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_c00353:after { /* webkit #35443 */
  content: '';
}
.t_c00353:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00353 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 */
}
.__c00353 { /* 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_c00353 { /* info for Javascript */
  display:none;
}
.l_c00353 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00353 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00353 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00353: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_c00353 {
    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_c00353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00353.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_c00353 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00353;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.311035;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_c00353;src:url('chunks/assets/font_7220871ef049f1bb7a50a9ef.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.284180;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_c00353;src:url('chunks/assets/font_4dc71bd855fa8e984097f78b.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.284668;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_c00353;src:url('chunks/assets/font_93915634fdba141ab95dc49d.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:1.284180;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_c00353;src:url('chunks/assets/font_f85f94600a4ab5d7a48ba8ba.woff2')format("woff");}.ff5_c00353{font-family:ff5_c00353;line-height:0.666000;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_c00353;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff6_c00353{font-family:ff6_c00353;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;}
.m8_c00353{transform:matrix(0.223772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223772,0.000000,0.000000,0.250000,0,0);}
.m3_c00353{transform:matrix(0.229542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229542,0.000000,0.000000,0.250000,0,0);}
.ma_c00353{transform:matrix(0.239395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239395,0.000000,0.000000,0.250000,0,0);}
.m5_c00353{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m6_c00353{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m4_c00353{transform:matrix(0.244093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244093,0.000000,0.000000,0.250000,0,0);}
.m2_c00353{transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.m0_c00353{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);}
.m7_c00353{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m9_c00353{transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls64_c00353{letter-spacing:-2.583000px;}
.ls6f_c00353{letter-spacing:-2.373000px;}
.ls84_c00353{letter-spacing:-2.247000px;}
.ls6b_c00353{letter-spacing:-1.891620px;}
.ls66_c00353{letter-spacing:-1.410240px;}
.ls88_c00353{letter-spacing:-1.396680px;}
.ls7e_c00353{letter-spacing:-1.078020px;}
.ls6e_c00353{letter-spacing:-1.044120px;}
.ls73_c00353{letter-spacing:-0.894960px;}
.ls82_c00353{letter-spacing:-0.847500px;}
.ls72_c00353{letter-spacing:-0.827160px;}
.ls6d_c00353{letter-spacing:-0.739020px;}
.ls89_c00353{letter-spacing:-0.655500px;}
.ls87_c00353{letter-spacing:-0.549180px;}
.ls68_c00353{letter-spacing:-0.494940px;}
.ls80_c00353{letter-spacing:-0.359340px;}
.ls69_c00353{letter-spacing:-0.305100px;}
.ls71_c00353{letter-spacing:-0.210180px;}
.ls6c_c00353{letter-spacing:-0.142380px;}
.ls67_c00353{letter-spacing:-0.108480px;}
.ls76_c00353{letter-spacing:-0.074580px;}
.ls79_c00353{letter-spacing:-0.061020px;}
.ls70_c00353{letter-spacing:-0.047460px;}
.ls7b_c00353{letter-spacing:-0.013560px;}
.ls74_c00353{letter-spacing:0.000000px;}
.ls27_c00353{letter-spacing:0.020340px;}
.lsa_c00353{letter-spacing:0.027120px;}
.ls22_c00353{letter-spacing:0.033900px;}
.ls3b_c00353{letter-spacing:0.040680px;}
.ls3e_c00353{letter-spacing:0.054240px;}
.ls4c_c00353{letter-spacing:0.061020px;}
.ls42_c00353{letter-spacing:0.081360px;}
.ls65_c00353{letter-spacing:0.094920px;}
.ls1a_c00353{letter-spacing:0.115260px;}
.ls85_c00353{letter-spacing:0.183060px;}
.ls5d_c00353{letter-spacing:0.216960px;}
.ls20_c00353{letter-spacing:0.223740px;}
.ls4_c00353{letter-spacing:0.237300px;}
.ls4d_c00353{letter-spacing:0.264420px;}
.ls7a_c00353{letter-spacing:0.305100px;}
.ls1e_c00353{letter-spacing:0.311880px;}
.ls7_c00353{letter-spacing:0.339000px;}
.ls7f_c00353{letter-spacing:0.345780px;}
.ls9_c00353{letter-spacing:0.393240px;}
.ls10_c00353{letter-spacing:0.413580px;}
.ls47_c00353{letter-spacing:0.447480px;}
.ls14_c00353{letter-spacing:0.454260px;}
.ls58_c00353{letter-spacing:0.467820px;}
.ls53_c00353{letter-spacing:0.488160px;}
.ls50_c00353{letter-spacing:0.508500px;}
.ls86_c00353{letter-spacing:0.522060px;}
.ls5f_c00353{letter-spacing:0.549180px;}
.ls4b_c00353{letter-spacing:0.555960px;}
.ls52_c00353{letter-spacing:0.583080px;}
.ls2c_c00353{letter-spacing:0.589860px;}
.ls38_c00353{letter-spacing:0.603420px;}
.ls75_c00353{letter-spacing:0.610200px;}
.ls1d_c00353{letter-spacing:0.623760px;}
.ls2b_c00353{letter-spacing:0.644100px;}
.ls56_c00353{letter-spacing:0.671220px;}
.ls2a_c00353{letter-spacing:0.691560px;}
.lsf_c00353{letter-spacing:0.705120px;}
.ls15_c00353{letter-spacing:0.711900px;}
.ls2e_c00353{letter-spacing:0.732240px;}
.ls7c_c00353{letter-spacing:0.752580px;}
.ls34_c00353{letter-spacing:0.759360px;}
.ls3a_c00353{letter-spacing:0.766140px;}
.ls59_c00353{letter-spacing:0.772920px;}
.lse_c00353{letter-spacing:0.779700px;}
.ls5a_c00353{letter-spacing:0.786480px;}
.ls24_c00353{letter-spacing:0.800040px;}
.ls4a_c00353{letter-spacing:0.806820px;}
.ls3_c00353{letter-spacing:0.820380px;}
.ls3f_c00353{letter-spacing:0.827160px;}
.ls1c_c00353{letter-spacing:0.847500px;}
.ls26_c00353{letter-spacing:0.854280px;}
.ls37_c00353{letter-spacing:0.867840px;}
.ls33_c00353{letter-spacing:0.874620px;}
.ls1_c00353{letter-spacing:0.894960px;}
.ls31_c00353{letter-spacing:0.908520px;}
.lsd_c00353{letter-spacing:0.915300px;}
.ls57_c00353{letter-spacing:0.935640px;}
.lsb_c00353{letter-spacing:0.942420px;}
.ls83_c00353{letter-spacing:0.962760px;}
.ls6_c00353{letter-spacing:0.969540px;}
.ls40_c00353{letter-spacing:0.983100px;}
.ls0_c00353{letter-spacing:0.996660px;}
.ls13_c00353{letter-spacing:1.017000px;}
.ls25_c00353{letter-spacing:1.044120px;}
.ls4f_c00353{letter-spacing:1.057680px;}
.ls3c_c00353{letter-spacing:1.091580px;}
.ls29_c00353{letter-spacing:1.105140px;}
.ls32_c00353{letter-spacing:1.118700px;}
.ls11_c00353{letter-spacing:1.139040px;}
.ls17_c00353{letter-spacing:1.152600px;}
.ls77_c00353{letter-spacing:1.159380px;}
.ls51_c00353{letter-spacing:1.166160px;}
.ls1f_c00353{letter-spacing:1.172940px;}
.ls46_c00353{letter-spacing:1.179720px;}
.ls78_c00353{letter-spacing:1.200060px;}
.ls36_c00353{letter-spacing:1.220400px;}
.lsc_c00353{letter-spacing:1.227180px;}
.ls4e_c00353{letter-spacing:1.233960px;}
.ls21_c00353{letter-spacing:1.240740px;}
.ls16_c00353{letter-spacing:1.254300px;}
.ls30_c00353{letter-spacing:1.261080px;}
.ls5c_c00353{letter-spacing:1.267860px;}
.ls5_c00353{letter-spacing:1.308540px;}
.ls12_c00353{letter-spacing:1.342440px;}
.ls44_c00353{letter-spacing:1.349220px;}
.ls1b_c00353{letter-spacing:1.362780px;}
.ls35_c00353{letter-spacing:1.403460px;}
.ls23_c00353{letter-spacing:1.423800px;}
.ls2f_c00353{letter-spacing:1.444140px;}
.ls3d_c00353{letter-spacing:1.478040px;}
.ls61_c00353{letter-spacing:1.484820px;}
.ls45_c00353{letter-spacing:1.505160px;}
.ls28_c00353{letter-spacing:1.511940px;}
.ls54_c00353{letter-spacing:1.532280px;}
.ls6a_c00353{letter-spacing:1.545840px;}
.ls8_c00353{letter-spacing:1.586520px;}
.ls19_c00353{letter-spacing:1.606860px;}
.ls39_c00353{letter-spacing:1.613640px;}
.ls62_c00353{letter-spacing:1.674660px;}
.ls63_c00353{letter-spacing:1.804200px;}
.ls5e_c00353{letter-spacing:1.932300px;}
.ls81_c00353{letter-spacing:2.108580px;}
.ls55_c00353{letter-spacing:2.156040px;}
.ls41_c00353{letter-spacing:2.162820px;}
.ls18_c00353{letter-spacing:2.203500px;}
.ls43_c00353{letter-spacing:2.379780px;}
.ls49_c00353{letter-spacing:2.453100px;}
.ls60_c00353{letter-spacing:2.637420px;}
.ls48_c00353{letter-spacing:2.657760px;}
.ls2_c00353{letter-spacing:2.834040px;}
.ls5b_c00353{letter-spacing:2.942520px;}
.ls2d_c00353{letter-spacing:3.356100px;}
.ls7d_c00353{letter-spacing:3.390000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{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__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00353{word-spacing:0.000000px;}
.ws1_c00353{word-spacing:1.356000px;}
.ws4_c00353{word-spacing:13.431180px;}
.ws3_c00353{word-spacing:21.221400px;}
.ws0_c00353{word-spacing:45.615840px;}
.ws2_c00353{word-spacing:59.257200px;}
._1c_c00353{margin-left:-7.549800px;}
._18_c00353{margin-left:-6.209340px;}
._11_c00353{margin-left:-5.207040px;}
._8_c00353{margin-left:-3.681540px;}
._10_c00353{margin-left:-2.542500px;}
._0_c00353{margin-left:-1.078020px;}
._a_c00353{width:1.871280px;}
._1_c00353{width:3.349320px;}
._9_c00353{width:4.542600px;}
._2_c00353{width:5.654520px;}
._6_c00353{width:6.678300px;}
._e_c00353{width:8.068200px;}
._3_c00353{width:9.729300px;}
._1a_c00353{width:11.293860px;}
._5_c00353{width:12.420960px;}
._f_c00353{width:15.268560px;}
._4_c00353{width:17.221200px;}
._19_c00353{width:18.430200px;}
._7_c00353{width:20.136600px;}
._17_c00353{width:21.182640px;}
._16_c00353{width:22.719780px;}
._15_c00353{width:25.350420px;}
._1b_c00353{width:31.381200px;}
._d_c00353{width:43.195380px;}
._b_c00353{width:45.724320px;}
._c_c00353{width:48.856680px;}
._12_c00353{width:55.935000px;}
._14_c00353{width:57.833400px;}
._13_c00353{width:60.586080px;}
.fc0_c00353{color:transparent;}
.fs4_c00353{font-size:51.000000px;}
.fs3_c00353{font-size:53.280000px;}
.fs7_c00353{font-size:57.000000px;}
.fs0_c00353{font-size:58.200000px;}
.fs5_c00353{font-size:64.200000px;}
.fs6_c00353{font-size:66.000000px;}
.fs2_c00353{font-size:67.800000px;}
.fs1_c00353{font-size:73.800000px;}
.y0_c00353{bottom:0.000000px;}
.y1a_c00353{bottom:63.360015px;}
.y19_c00353{bottom:246.613815px;}
.y18_c00353{bottom:277.208565px;}
.y17_c00353{bottom:338.407365px;}
.y16_c00353{bottom:369.380265px;}
.y15_c00353{bottom:399.975015px;}
.y14_c00353{bottom:461.895015px;}
.y13_c00353{bottom:461.902215px;}
.y12_c00353{bottom:492.480015px;}
.y11_c00353{bottom:523.456665px;}
.y10_c00353{bottom:554.051415px;}
.yf_c00353{bottom:585.375015px;}
.ye_c00353{bottom:647.295015px;}
.yd_c00353{bottom:647.301615px;}
.yc_c00353{bottom:710.304765px;}
.yb_c00353{bottom:740.899515px;}
.ya_c00353{bottom:771.850215px;}
.y9_c00353{bottom:802.461915px;}
.y8_c00353{bottom:833.039715px;}
.y7_c00353{bottom:894.975015px;}
.y5_c00353{bottom:925.546065px;}
.y6_c00353{bottom:925.560015px;}
.y4_c00353{bottom:987.125415px;}
.y3_c00353{bottom:1018.093065px;}
.y2_c00353{bottom:1111.335015px;}
.y1_c00353{bottom:1184.415015px;}
.h6_c00353{height:35.484480px;}
.hb_c00353{height:55.942383px;}
.h2_c00353{height:58.654687px;}
.h5_c00353{height:66.508887px;}
.h4_c00353{height:66.541992px;}
.ha_c00353{height:66.572592px;}
.h8_c00353{height:66.958594px;}
.h3_c00353{height:72.394629px;}
.h9_c00353{height:72.409664px;}
.h7_c00353{height:72.430664px;}
.h1_c00353{height:1263.000000px;}
.h0_c00353{height:1263.240015px;}
.w1_c00353{width:892.500000px;}
.w0_c00353{width:892.800015px;}
.x0_c00353{left:0.000000px;}
.x1_c00353{left:123.765015px;}
.x9_c00353{left:124.908615px;}
.x5_c00353{left:178.139265px;}
.x12_c00353{left:184.860015px;}
.x13_c00353{left:206.085015px;}
.x2_c00353{left:294.285015px;}
.x6_c00353{left:333.690015px;}
.x7_c00353{left:364.905015px;}
.xd_c00353{left:410.580015px;}
.x3_c00353{left:418.905015px;}
.xa_c00353{left:424.440015px;}
.x15_c00353{left:426.075015px;}
.xe_c00353{left:446.250015px;}
.xb_c00353{left:455.970015px;}
.x11_c00353{left:484.125015px;}
.x4_c00353{left:489.765015px;}
.x14_c00353{left:495.855015px;}
.x8_c00353{left:582.015015px;}
.xf_c00353{left:619.770015px;}
.xc_c00353{left:672.495015px;}
.x10_c00353{left:678.075015px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls64_c00353{letter-spacing:-2.296000pt;}
.ls6f_c00353{letter-spacing:-2.109333pt;}
.ls84_c00353{letter-spacing:-1.997333pt;}
.ls6b_c00353{letter-spacing:-1.681440pt;}
.ls66_c00353{letter-spacing:-1.253547pt;}
.ls88_c00353{letter-spacing:-1.241493pt;}
.ls7e_c00353{letter-spacing:-0.958240pt;}
.ls6e_c00353{letter-spacing:-0.928107pt;}
.ls73_c00353{letter-spacing:-0.795520pt;}
.ls82_c00353{letter-spacing:-0.753333pt;}
.ls72_c00353{letter-spacing:-0.735253pt;}
.ls6d_c00353{letter-spacing:-0.656907pt;}
.ls89_c00353{letter-spacing:-0.582667pt;}
.ls87_c00353{letter-spacing:-0.488160pt;}
.ls68_c00353{letter-spacing:-0.439947pt;}
.ls80_c00353{letter-spacing:-0.319413pt;}
.ls69_c00353{letter-spacing:-0.271200pt;}
.ls71_c00353{letter-spacing:-0.186827pt;}
.ls6c_c00353{letter-spacing:-0.126560pt;}
.ls67_c00353{letter-spacing:-0.096427pt;}
.ls76_c00353{letter-spacing:-0.066293pt;}
.ls79_c00353{letter-spacing:-0.054240pt;}
.ls70_c00353{letter-spacing:-0.042187pt;}
.ls7b_c00353{letter-spacing:-0.012053pt;}
.ls74_c00353{letter-spacing:0.000000pt;}
.ls27_c00353{letter-spacing:0.018080pt;}
.lsa_c00353{letter-spacing:0.024107pt;}
.ls22_c00353{letter-spacing:0.030133pt;}
.ls3b_c00353{letter-spacing:0.036160pt;}
.ls3e_c00353{letter-spacing:0.048213pt;}
.ls4c_c00353{letter-spacing:0.054240pt;}
.ls42_c00353{letter-spacing:0.072320pt;}
.ls65_c00353{letter-spacing:0.084373pt;}
.ls1a_c00353{letter-spacing:0.102453pt;}
.ls85_c00353{letter-spacing:0.162720pt;}
.ls5d_c00353{letter-spacing:0.192853pt;}
.ls20_c00353{letter-spacing:0.198880pt;}
.ls4_c00353{letter-spacing:0.210933pt;}
.ls4d_c00353{letter-spacing:0.235040pt;}
.ls7a_c00353{letter-spacing:0.271200pt;}
.ls1e_c00353{letter-spacing:0.277227pt;}
.ls7_c00353{letter-spacing:0.301333pt;}
.ls7f_c00353{letter-spacing:0.307360pt;}
.ls9_c00353{letter-spacing:0.349547pt;}
.ls10_c00353{letter-spacing:0.367627pt;}
.ls47_c00353{letter-spacing:0.397760pt;}
.ls14_c00353{letter-spacing:0.403787pt;}
.ls58_c00353{letter-spacing:0.415840pt;}
.ls53_c00353{letter-spacing:0.433920pt;}
.ls50_c00353{letter-spacing:0.452000pt;}
.ls86_c00353{letter-spacing:0.464053pt;}
.ls5f_c00353{letter-spacing:0.488160pt;}
.ls4b_c00353{letter-spacing:0.494187pt;}
.ls52_c00353{letter-spacing:0.518293pt;}
.ls2c_c00353{letter-spacing:0.524320pt;}
.ls38_c00353{letter-spacing:0.536373pt;}
.ls75_c00353{letter-spacing:0.542400pt;}
.ls1d_c00353{letter-spacing:0.554453pt;}
.ls2b_c00353{letter-spacing:0.572533pt;}
.ls56_c00353{letter-spacing:0.596640pt;}
.ls2a_c00353{letter-spacing:0.614720pt;}
.lsf_c00353{letter-spacing:0.626773pt;}
.ls15_c00353{letter-spacing:0.632800pt;}
.ls2e_c00353{letter-spacing:0.650880pt;}
.ls7c_c00353{letter-spacing:0.668960pt;}
.ls34_c00353{letter-spacing:0.674987pt;}
.ls3a_c00353{letter-spacing:0.681013pt;}
.ls59_c00353{letter-spacing:0.687040pt;}
.lse_c00353{letter-spacing:0.693067pt;}
.ls5a_c00353{letter-spacing:0.699093pt;}
.ls24_c00353{letter-spacing:0.711147pt;}
.ls4a_c00353{letter-spacing:0.717173pt;}
.ls3_c00353{letter-spacing:0.729227pt;}
.ls3f_c00353{letter-spacing:0.735253pt;}
.ls1c_c00353{letter-spacing:0.753333pt;}
.ls26_c00353{letter-spacing:0.759360pt;}
.ls37_c00353{letter-spacing:0.771413pt;}
.ls33_c00353{letter-spacing:0.777440pt;}
.ls1_c00353{letter-spacing:0.795520pt;}
.ls31_c00353{letter-spacing:0.807573pt;}
.lsd_c00353{letter-spacing:0.813600pt;}
.ls57_c00353{letter-spacing:0.831680pt;}
.lsb_c00353{letter-spacing:0.837707pt;}
.ls83_c00353{letter-spacing:0.855787pt;}
.ls6_c00353{letter-spacing:0.861813pt;}
.ls40_c00353{letter-spacing:0.873867pt;}
.ls0_c00353{letter-spacing:0.885920pt;}
.ls13_c00353{letter-spacing:0.904000pt;}
.ls25_c00353{letter-spacing:0.928107pt;}
.ls4f_c00353{letter-spacing:0.940160pt;}
.ls3c_c00353{letter-spacing:0.970293pt;}
.ls29_c00353{letter-spacing:0.982347pt;}
.ls32_c00353{letter-spacing:0.994400pt;}
.ls11_c00353{letter-spacing:1.012480pt;}
.ls17_c00353{letter-spacing:1.024533pt;}
.ls77_c00353{letter-spacing:1.030560pt;}
.ls51_c00353{letter-spacing:1.036587pt;}
.ls1f_c00353{letter-spacing:1.042613pt;}
.ls46_c00353{letter-spacing:1.048640pt;}
.ls78_c00353{letter-spacing:1.066720pt;}
.ls36_c00353{letter-spacing:1.084800pt;}
.lsc_c00353{letter-spacing:1.090827pt;}
.ls4e_c00353{letter-spacing:1.096853pt;}
.ls21_c00353{letter-spacing:1.102880pt;}
.ls16_c00353{letter-spacing:1.114933pt;}
.ls30_c00353{letter-spacing:1.120960pt;}
.ls5c_c00353{letter-spacing:1.126987pt;}
.ls5_c00353{letter-spacing:1.163147pt;}
.ls12_c00353{letter-spacing:1.193280pt;}
.ls44_c00353{letter-spacing:1.199307pt;}
.ls1b_c00353{letter-spacing:1.211360pt;}
.ls35_c00353{letter-spacing:1.247520pt;}
.ls23_c00353{letter-spacing:1.265600pt;}
.ls2f_c00353{letter-spacing:1.283680pt;}
.ls3d_c00353{letter-spacing:1.313813pt;}
.ls61_c00353{letter-spacing:1.319840pt;}
.ls45_c00353{letter-spacing:1.337920pt;}
.ls28_c00353{letter-spacing:1.343947pt;}
.ls54_c00353{letter-spacing:1.362027pt;}
.ls6a_c00353{letter-spacing:1.374080pt;}
.ls8_c00353{letter-spacing:1.410240pt;}
.ls19_c00353{letter-spacing:1.428320pt;}
.ls39_c00353{letter-spacing:1.434347pt;}
.ls62_c00353{letter-spacing:1.488587pt;}
.ls63_c00353{letter-spacing:1.603733pt;}
.ls5e_c00353{letter-spacing:1.717600pt;}
.ls81_c00353{letter-spacing:1.874293pt;}
.ls55_c00353{letter-spacing:1.916480pt;}
.ls41_c00353{letter-spacing:1.922507pt;}
.ls18_c00353{letter-spacing:1.958667pt;}
.ls43_c00353{letter-spacing:2.115360pt;}
.ls49_c00353{letter-spacing:2.180533pt;}
.ls60_c00353{letter-spacing:2.344373pt;}
.ls48_c00353{letter-spacing:2.362453pt;}
.ls2_c00353{letter-spacing:2.519147pt;}
.ls5b_c00353{letter-spacing:2.615573pt;}
.ls2d_c00353{letter-spacing:2.983200pt;}
.ls7d_c00353{letter-spacing:3.013333pt;}
.ws5_c00353{word-spacing:0.000000pt;}
.ws1_c00353{word-spacing:1.205333pt;}
.ws4_c00353{word-spacing:11.938827pt;}
.ws3_c00353{word-spacing:18.863467pt;}
.ws0_c00353{word-spacing:40.547413pt;}
.ws2_c00353{word-spacing:52.673067pt;}
._1c_c00353{margin-left:-6.710933pt;}
._18_c00353{margin-left:-5.519413pt;}
._11_c00353{margin-left:-4.628480pt;}
._8_c00353{margin-left:-3.272480pt;}
._10_c00353{margin-left:-2.260000pt;}
._0_c00353{margin-left:-0.958240pt;}
._a_c00353{width:1.663360pt;}
._1_c00353{width:2.977173pt;}
._9_c00353{width:4.037867pt;}
._2_c00353{width:5.026240pt;}
._6_c00353{width:5.936267pt;}
._e_c00353{width:7.171733pt;}
._3_c00353{width:8.648267pt;}
._1a_c00353{width:10.038987pt;}
._5_c00353{width:11.040853pt;}
._f_c00353{width:13.572053pt;}
._4_c00353{width:15.307733pt;}
._19_c00353{width:16.382400pt;}
._7_c00353{width:17.899200pt;}
._17_c00353{width:18.829013pt;}
._16_c00353{width:20.195360pt;}
._15_c00353{width:22.533707pt;}
._1b_c00353{width:27.894400pt;}
._d_c00353{width:38.395893pt;}
._b_c00353{width:40.643840pt;}
._c_c00353{width:43.428160pt;}
._12_c00353{width:49.720000pt;}
._14_c00353{width:51.407467pt;}
._13_c00353{width:53.854293pt;}
.fs4_c00353{font-size:45.333333pt;}
.fs3_c00353{font-size:47.360000pt;}
.fs7_c00353{font-size:50.666667pt;}
.fs0_c00353{font-size:51.733333pt;}
.fs5_c00353{font-size:57.066667pt;}
.fs6_c00353{font-size:58.666667pt;}
.fs2_c00353{font-size:60.266667pt;}
.fs1_c00353{font-size:65.600000pt;}
.y0_c00353{bottom:0.000000pt;}
.y1a_c00353{bottom:56.320013pt;}
.y19_c00353{bottom:219.212280pt;}
.y18_c00353{bottom:246.407613pt;}
.y17_c00353{bottom:300.806547pt;}
.y16_c00353{bottom:328.338013pt;}
.y15_c00353{bottom:355.533347pt;}
.y14_c00353{bottom:410.573347pt;}
.y13_c00353{bottom:410.579747pt;}
.y12_c00353{bottom:437.760013pt;}
.y11_c00353{bottom:465.294813pt;}
.y10_c00353{bottom:492.490147pt;}
.yf_c00353{bottom:520.333347pt;}
.ye_c00353{bottom:575.373347pt;}
.yd_c00353{bottom:575.379213pt;}
.yc_c00353{bottom:631.382013pt;}
.yb_c00353{bottom:658.577347pt;}
.ya_c00353{bottom:686.089080pt;}
.y9_c00353{bottom:713.299480pt;}
.y8_c00353{bottom:740.479747pt;}
.y7_c00353{bottom:795.533347pt;}
.y5_c00353{bottom:822.707613pt;}
.y6_c00353{bottom:822.720013pt;}
.y4_c00353{bottom:877.444813pt;}
.y3_c00353{bottom:904.971613pt;}
.y2_c00353{bottom:987.853347pt;}
.y1_c00353{bottom:1052.813347pt;}
.h6_c00353{height:31.541760pt;}
.hb_c00353{height:49.726562pt;}
.h2_c00353{height:52.137500pt;}
.h5_c00353{height:59.119010pt;}
.h4_c00353{height:59.148438pt;}
.ha_c00353{height:59.175638pt;}
.h8_c00353{height:59.518750pt;}
.h3_c00353{height:64.350781pt;}
.h9_c00353{height:64.364146pt;}
.h7_c00353{height:64.382813pt;}
.h1_c00353{height:1122.666667pt;}
.h0_c00353{height:1122.880013pt;}
.w1_c00353{width:793.333333pt;}
.w0_c00353{width:793.600013pt;}
.x0_c00353{left:0.000000pt;}
.x1_c00353{left:110.013347pt;}
.x9_c00353{left:111.029880pt;}
.x5_c00353{left:158.346013pt;}
.x12_c00353{left:164.320013pt;}
.x13_c00353{left:183.186680pt;}
.x2_c00353{left:261.586680pt;}
.x6_c00353{left:296.613347pt;}
.x7_c00353{left:324.360013pt;}
.xd_c00353{left:364.960013pt;}
.x3_c00353{left:372.360013pt;}
.xa_c00353{left:377.280013pt;}
.x15_c00353{left:378.733347pt;}
.xe_c00353{left:396.666680pt;}
.xb_c00353{left:405.306680pt;}
.x11_c00353{left:430.333347pt;}
.x4_c00353{left:435.346680pt;}
.x14_c00353{left:440.760013pt;}
.x8_c00353{left:517.346680pt;}
.xf_c00353{left:550.906680pt;}
.xc_c00353{left:597.773347pt;}
.x10_c00353{left:602.733347pt;}
}





/* 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_c00354 {
    display:none;
  }
  .loading-indicator_c00354.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00354 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_c00354 { 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_c00354" -> "#page-container .classname_c00354")
 */
.pf_c00354 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00354 { /* 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_c00354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00354 { /* 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_c00354 { /* 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_c00354 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00354 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00354 {overflow:visible;}
  }
}
.c_c00354 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00354 { /* 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_c00354:after { /* webkit #35443 */
  content: '';
}
.t_c00354:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00354 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 */
}
.__c00354 { /* 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_c00354 { /* info for Javascript */
  display:none;
}
.l_c00354 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00354 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00354 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00354: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_c00354 {
    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_c00354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00354.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_c00354 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00354;src:url('chunks/assets/font_3143fff1dab03cfbf4f7f5e2.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.311035;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_c00354;src:url('chunks/assets/font_8cbe1dbd1e69b82c5140971a.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.284180;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_c00354;src:url('chunks/assets/font_17f3ca4802eab9599b95754b.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.284668;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_c00354;src:url('chunks/assets/font_b88948961bbae7276ebc7282.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:1.284180;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_c00354;src:url('chunks/assets/font_d85d7ca5244cdfa5882d2d95.woff2')format("woff");}.ff5_c00354{font-family:ff5_c00354;line-height:0.666000;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;}
.m6_c00354{transform:matrix(0.119654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119654,0.000000,0.000000,0.250000,0,0);}
.m3_c00354{transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223606,0.000000,0.000000,0.250000,0,0);}
.m5_c00354{transform:matrix(0.228837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228837,0.000000,0.000000,0.250000,0,0);}
.m7_c00354{transform:matrix(0.237928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237928,0.000000,0.000000,0.250000,0,0);}
.ma_c00354{transform:matrix(0.239132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239132,0.000000,0.000000,0.250000,0,0);}
.m0_c00354{transform:matrix(0.240745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240745,0.000000,0.000000,0.250000,0,0);}
.mb_c00354{transform:matrix(0.241884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241884,0.000000,0.000000,0.250000,0,0);}
.m9_c00354{transform:matrix(0.244967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244967,0.000000,0.000000,0.250000,0,0);}
.m4_c00354{transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);}
.m2_c00354{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m8_c00354{transform:matrix(0.247827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247827,0.000000,0.000000,0.250000,0,0);}
.m1_c00354{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);}
.v0_c00354{vertical-align:0.000000px;}
.ls64_c00354{letter-spacing:-2.436000px;}
.ls81_c00354{letter-spacing:-2.394000px;}
.ls5a_c00354{letter-spacing:-2.310000px;}
.ls85_c00354{letter-spacing:-2.264040px;}
.ls5e_c00354{letter-spacing:-2.234160px;}
.ls6e_c00354{letter-spacing:-2.136720px;}
.ls80_c00354{letter-spacing:-2.121000px;}
.ls87_c00354{letter-spacing:-2.046240px;}
.ls8c_c00354{letter-spacing:-1.767840px;}
.ls79_c00354{letter-spacing:-1.691280px;}
.ls71_c00354{letter-spacing:-1.649520px;}
.ls6f_c00354{letter-spacing:-1.600800px;}
.ls88_c00354{letter-spacing:-1.531200px;}
.ls63_c00354{letter-spacing:-1.503360px;}
.ls7a_c00354{letter-spacing:-1.426800px;}
.ls78_c00354{letter-spacing:-1.398960px;}
.ls67_c00354{letter-spacing:-1.294560px;}
.ls8d_c00354{letter-spacing:-1.266720px;}
.ls7b_c00354{letter-spacing:-1.218000px;}
.ls86_c00354{letter-spacing:-1.210680px;}
.ls89_c00354{letter-spacing:-1.169280px;}
.ls5b_c00354{letter-spacing:-1.064880px;}
.ls7e_c00354{letter-spacing:-0.904800px;}
.ls66_c00354{letter-spacing:-0.870000px;}
.ls8b_c00354{letter-spacing:-0.863040px;}
.ls84_c00354{letter-spacing:-0.848160px;}
.ls8a_c00354{letter-spacing:-0.835200px;}
.ls6a_c00354{letter-spacing:-0.828240px;}
.ls82_c00354{letter-spacing:-0.820800px;}
.ls6c_c00354{letter-spacing:-0.772560px;}
.ls6b_c00354{letter-spacing:-0.737760px;}
.ls7f_c00354{letter-spacing:-0.709920px;}
.ls68_c00354{letter-spacing:-0.689040px;}
.ls62_c00354{letter-spacing:-0.668160px;}
.ls7c_c00354{letter-spacing:-0.619440px;}
.ls61_c00354{letter-spacing:-0.542880px;}
.ls5d_c00354{letter-spacing:-0.487200px;}
.ls6d_c00354{letter-spacing:-0.466320px;}
.ls5c_c00354{letter-spacing:-0.452400px;}
.ls8e_c00354{letter-spacing:-0.431520px;}
.ls73_c00354{letter-spacing:-0.334080px;}
.ls77_c00354{letter-spacing:-0.264480px;}
.ls72_c00354{letter-spacing:-0.208800px;}
.ls60_c00354{letter-spacing:-0.187920px;}
.ls76_c00354{letter-spacing:-0.083520px;}
.ls74_c00354{letter-spacing:-0.055680px;}
.ls8f_c00354{letter-spacing:-0.027840px;}
.ls5f_c00354{letter-spacing:0.000000px;}
.ls7_c00354{letter-spacing:0.013920px;}
.ls3a_c00354{letter-spacing:0.020520px;}
.ls90_c00354{letter-spacing:0.027840px;}
.ls7d_c00354{letter-spacing:0.034800px;}
.ls2f_c00354{letter-spacing:0.048720px;}
.ls16_c00354{letter-spacing:0.062640px;}
.ls75_c00354{letter-spacing:0.069600px;}
.ls15_c00354{letter-spacing:0.076560px;}
.ls2_c00354{letter-spacing:0.090480px;}
.ls9_c00354{letter-spacing:0.097440px;}
.ls2d_c00354{letter-spacing:0.132240px;}
.ls41_c00354{letter-spacing:0.146160px;}
.ls38_c00354{letter-spacing:0.153120px;}
.ls32_c00354{letter-spacing:0.160080px;}
.ls57_c00354{letter-spacing:0.174000px;}
.ls4c_c00354{letter-spacing:0.187920px;}
.ls3f_c00354{letter-spacing:0.208800px;}
.ls59_c00354{letter-spacing:0.222720px;}
.ls3_c00354{letter-spacing:0.236640px;}
.ls27_c00354{letter-spacing:0.243600px;}
.ls56_c00354{letter-spacing:0.257520px;}
.ls17_c00354{letter-spacing:0.285360px;}
.ls8_c00354{letter-spacing:0.292320px;}
.lse_c00354{letter-spacing:0.299280px;}
.ls5_c00354{letter-spacing:0.306240px;}
.ls1e_c00354{letter-spacing:0.313200px;}
.ls1f_c00354{letter-spacing:0.320160px;}
.ls47_c00354{letter-spacing:0.348000px;}
.ls39_c00354{letter-spacing:0.354960px;}
.ls50_c00354{letter-spacing:0.361920px;}
.ls33_c00354{letter-spacing:0.375840px;}
.ls4e_c00354{letter-spacing:0.389760px;}
.ls2b_c00354{letter-spacing:0.396720px;}
.ls44_c00354{letter-spacing:0.410640px;}
.ls3d_c00354{letter-spacing:0.417600px;}
.ls25_c00354{letter-spacing:0.424560px;}
.ls1c_c00354{letter-spacing:0.431520px;}
.ls46_c00354{letter-spacing:0.438480px;}
.ls4d_c00354{letter-spacing:0.452400px;}
.ls3c_c00354{letter-spacing:0.459360px;}
.ls14_c00354{letter-spacing:0.480240px;}
.ls37_c00354{letter-spacing:0.494160px;}
.ls13_c00354{letter-spacing:0.501120px;}
.ls1a_c00354{letter-spacing:0.522000px;}
.ls30_c00354{letter-spacing:0.528960px;}
.ls4f_c00354{letter-spacing:0.535920px;}
.ls42_c00354{letter-spacing:0.542880px;}
.ls28_c00354{letter-spacing:0.556800px;}
.ls4_c00354{letter-spacing:0.577680px;}
.ls65_c00354{letter-spacing:0.591600px;}
.ls4b_c00354{letter-spacing:0.598560px;}
.ls4a_c00354{letter-spacing:0.612480px;}
.ls91_c00354{letter-spacing:0.622740px;}
.ls26_c00354{letter-spacing:0.640320px;}
.ls54_c00354{letter-spacing:0.642960px;}
.ls31_c00354{letter-spacing:0.661200px;}
.ls34_c00354{letter-spacing:0.675120px;}
.ls70_c00354{letter-spacing:0.709920px;}
.ls6_c00354{letter-spacing:0.716880px;}
.ls18_c00354{letter-spacing:0.723840px;}
.ls23_c00354{letter-spacing:0.730800px;}
.ls48_c00354{letter-spacing:0.751680px;}
.ls10_c00354{letter-spacing:0.758640px;}
.ls1d_c00354{letter-spacing:0.814320px;}
.ls21_c00354{letter-spacing:0.835200px;}
.ls2e_c00354{letter-spacing:0.849120px;}
.ls1b_c00354{letter-spacing:0.856080px;}
.ls2a_c00354{letter-spacing:0.883920px;}
.ls43_c00354{letter-spacing:0.918720px;}
.lsc_c00354{letter-spacing:0.957600px;}
.ls19_c00354{letter-spacing:0.960480px;}
.ls83_c00354{letter-spacing:0.978120px;}
.ls24_c00354{letter-spacing:1.002240px;}
.ls40_c00354{letter-spacing:1.016160px;}
.ls53_c00354{letter-spacing:1.019160px;}
.ls55_c00354{letter-spacing:1.037040px;}
.ls12_c00354{letter-spacing:1.099680px;}
.ls20_c00354{letter-spacing:1.120560px;}
.lsa_c00354{letter-spacing:1.121760px;}
.ls49_c00354{letter-spacing:1.128600px;}
.ls36_c00354{letter-spacing:1.134480px;}
.lsf_c00354{letter-spacing:1.142280px;}
.ls35_c00354{letter-spacing:1.190160px;}
.ls11_c00354{letter-spacing:1.224360px;}
.ls2c_c00354{letter-spacing:1.231920px;}
.ls69_c00354{letter-spacing:1.279080px;}
.ls3b_c00354{letter-spacing:1.350240px;}
.ls45_c00354{letter-spacing:1.398960px;}
.ls0_c00354{letter-spacing:1.403460px;}
.ls52_c00354{letter-spacing:1.552080px;}
.ls58_c00354{letter-spacing:1.607760px;}
.lsb_c00354{letter-spacing:1.771560px;}
.ls3e_c00354{letter-spacing:1.983600px;}
.ls22_c00354{letter-spacing:2.164560px;}
.ls51_c00354{letter-spacing:2.268960px;}
.lsd_c00354{letter-spacing:2.277720px;}
.ls1_c00354{letter-spacing:2.501820px;}
.ls29_c00354{letter-spacing:2.888400px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{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__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00354{word-spacing:-0.333840px;}
.ws4_c00354{word-spacing:0.000000px;}
.ws0_c00354{word-spacing:0.982560px;}
.ws2_c00354{word-spacing:8.303400px;}
.ws3_c00354{word-spacing:10.652640px;}
._0_c00354{margin-left:-8.488560px;}
._13_c00354{margin-left:-7.057440px;}
._1_c00354{margin-left:-4.887000px;}
._14_c00354{margin-left:-2.721360px;}
._9_c00354{margin-left:-1.099680px;}
._2_c00354{width:1.600800px;}
._12_c00354{width:2.860560px;}
._3_c00354{width:4.092480px;}
._a_c00354{width:5.233920px;}
._b_c00354{width:6.681600px;}
._4_c00354{width:8.414640px;}
._7_c00354{width:9.465600px;}
._5_c00354{width:11.101200px;}
._11_c00354{width:13.203120px;}
._c_c00354{width:15.207600px;}
._8_c00354{width:16.216800px;}
._e_c00354{width:19.293120px;}
._d_c00354{width:21.144480px;}
._6_c00354{width:24.116400px;}
._f_c00354{width:25.960800px;}
._10_c00354{width:27.568560px;}
.fc0_c00354{color:transparent;}
.fs5_c00354{font-size:48.960000px;}
.fs6_c00354{font-size:58.200000px;}
.fs4_c00354{font-size:60.600000px;}
.fs0_c00354{font-size:66.000000px;}
.fs1_c00354{font-size:67.800000px;}
.fs3_c00354{font-size:68.400000px;}
.fs2_c00354{font-size:69.600000px;}
.y0_c00354{bottom:0.000000px;}
.y1a_c00354{bottom:61.215000px;}
.y19_c00354{bottom:212.409600px;}
.y18_c00354{bottom:244.095000px;}
.y17_c00354{bottom:305.302800px;}
.y16_c00354{bottom:336.257400px;}
.y15_c00354{bottom:367.560000px;}
.y14_c00354{bottom:429.133800px;}
.y13_c00354{bottom:459.740400px;}
.y12_c00354{bottom:490.695000px;}
.y11_c00354{bottom:521.655000px;}
.y10_c00354{bottom:583.935000px;}
.yf_c00354{bottom:647.288400px;}
.ye_c00354{bottom:677.895000px;}
.yd_c00354{bottom:708.849600px;}
.yc_c00354{bottom:739.438800px;}
.yb_c00354{bottom:770.045400px;}
.ya_c00354{bottom:801.000000px;}
.y9_c00354{bottom:863.295000px;}
.y8_c00354{bottom:894.240000px;}
.y7_c00354{bottom:925.200000px;}
.y6_c00354{bottom:987.856200px;}
.y4_c00354{bottom:1018.077600px;}
.y5_c00354{bottom:1018.080000px;}
.y3_c00354{bottom:1081.083000px;}
.y2_c00354{bottom:1109.880000px;}
.y1_c00354{bottom:1187.295000px;}
.h7_c00354{height:32.607360px;}
.h9_c00354{height:57.120117px;}
.h6_c00354{height:59.475586px;}
.h2_c00354{height:66.515625px;}
.h5_c00354{height:67.097461px;}
.h3_c00354{height:68.308594px;}
.h4_c00354{height:68.318194px;}
.h8_c00354{height:68.934375px;}
.h1_c00354{height:1263.000000px;}
.h0_c00354{height:1263.240000px;}
.w1_c00354{width:892.500000px;}
.w0_c00354{width:892.800000px;}
.x0_c00354{left:0.000000px;}
.x1a_c00354{left:118.755600px;}
.x18_c00354{left:119.850000px;}
.xe_c00354{left:121.168800px;}
.x1_c00354{left:126.645000px;}
.x19_c00354{left:172.605000px;}
.xf_c00354{left:173.685000px;}
.xd_c00354{left:174.765000px;}
.x7_c00354{left:176.175000px;}
.x4_c00354{left:177.415200px;}
.x3_c00354{left:180.634200px;}
.x11_c00354{left:246.510000px;}
.x2_c00354{left:283.845000px;}
.x12_c00354{left:288.525000px;}
.x8_c00354{left:307.770000px;}
.x13_c00354{left:334.935000px;}
.x9_c00354{left:337.530000px;}
.x14_c00354{left:373.500000px;}
.x15_c00354{left:398.700000px;}
.x1b_c00354{left:424.275000px;}
.x16_c00354{left:462.405000px;}
.x17_c00354{left:518.580000px;}
.xc_c00354{left:532.920000px;}
.xa_c00354{left:577.245000px;}
.xb_c00354{left:604.950000px;}
.x5_c00354{left:620.085000px;}
.x6_c00354{left:650.055000px;}
.x10_c00354{left:657.630000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls64_c00354{letter-spacing:-2.165333pt;}
.ls81_c00354{letter-spacing:-2.128000pt;}
.ls5a_c00354{letter-spacing:-2.053333pt;}
.ls85_c00354{letter-spacing:-2.012480pt;}
.ls5e_c00354{letter-spacing:-1.985920pt;}
.ls6e_c00354{letter-spacing:-1.899307pt;}
.ls80_c00354{letter-spacing:-1.885333pt;}
.ls87_c00354{letter-spacing:-1.818880pt;}
.ls8c_c00354{letter-spacing:-1.571413pt;}
.ls79_c00354{letter-spacing:-1.503360pt;}
.ls71_c00354{letter-spacing:-1.466240pt;}
.ls6f_c00354{letter-spacing:-1.422933pt;}
.ls88_c00354{letter-spacing:-1.361067pt;}
.ls63_c00354{letter-spacing:-1.336320pt;}
.ls7a_c00354{letter-spacing:-1.268267pt;}
.ls78_c00354{letter-spacing:-1.243520pt;}
.ls67_c00354{letter-spacing:-1.150720pt;}
.ls8d_c00354{letter-spacing:-1.125973pt;}
.ls7b_c00354{letter-spacing:-1.082667pt;}
.ls86_c00354{letter-spacing:-1.076160pt;}
.ls89_c00354{letter-spacing:-1.039360pt;}
.ls5b_c00354{letter-spacing:-0.946560pt;}
.ls7e_c00354{letter-spacing:-0.804267pt;}
.ls66_c00354{letter-spacing:-0.773333pt;}
.ls8b_c00354{letter-spacing:-0.767147pt;}
.ls84_c00354{letter-spacing:-0.753920pt;}
.ls8a_c00354{letter-spacing:-0.742400pt;}
.ls6a_c00354{letter-spacing:-0.736213pt;}
.ls82_c00354{letter-spacing:-0.729600pt;}
.ls6c_c00354{letter-spacing:-0.686720pt;}
.ls6b_c00354{letter-spacing:-0.655787pt;}
.ls7f_c00354{letter-spacing:-0.631040pt;}
.ls68_c00354{letter-spacing:-0.612480pt;}
.ls62_c00354{letter-spacing:-0.593920pt;}
.ls7c_c00354{letter-spacing:-0.550613pt;}
.ls61_c00354{letter-spacing:-0.482560pt;}
.ls5d_c00354{letter-spacing:-0.433067pt;}
.ls6d_c00354{letter-spacing:-0.414507pt;}
.ls5c_c00354{letter-spacing:-0.402133pt;}
.ls8e_c00354{letter-spacing:-0.383573pt;}
.ls73_c00354{letter-spacing:-0.296960pt;}
.ls77_c00354{letter-spacing:-0.235093pt;}
.ls72_c00354{letter-spacing:-0.185600pt;}
.ls60_c00354{letter-spacing:-0.167040pt;}
.ls76_c00354{letter-spacing:-0.074240pt;}
.ls74_c00354{letter-spacing:-0.049493pt;}
.ls8f_c00354{letter-spacing:-0.024747pt;}
.ls5f_c00354{letter-spacing:0.000000pt;}
.ls7_c00354{letter-spacing:0.012373pt;}
.ls3a_c00354{letter-spacing:0.018240pt;}
.ls90_c00354{letter-spacing:0.024747pt;}
.ls7d_c00354{letter-spacing:0.030933pt;}
.ls2f_c00354{letter-spacing:0.043307pt;}
.ls16_c00354{letter-spacing:0.055680pt;}
.ls75_c00354{letter-spacing:0.061867pt;}
.ls15_c00354{letter-spacing:0.068053pt;}
.ls2_c00354{letter-spacing:0.080427pt;}
.ls9_c00354{letter-spacing:0.086613pt;}
.ls2d_c00354{letter-spacing:0.117547pt;}
.ls41_c00354{letter-spacing:0.129920pt;}
.ls38_c00354{letter-spacing:0.136107pt;}
.ls32_c00354{letter-spacing:0.142293pt;}
.ls57_c00354{letter-spacing:0.154667pt;}
.ls4c_c00354{letter-spacing:0.167040pt;}
.ls3f_c00354{letter-spacing:0.185600pt;}
.ls59_c00354{letter-spacing:0.197973pt;}
.ls3_c00354{letter-spacing:0.210347pt;}
.ls27_c00354{letter-spacing:0.216533pt;}
.ls56_c00354{letter-spacing:0.228907pt;}
.ls17_c00354{letter-spacing:0.253653pt;}
.ls8_c00354{letter-spacing:0.259840pt;}
.lse_c00354{letter-spacing:0.266027pt;}
.ls5_c00354{letter-spacing:0.272213pt;}
.ls1e_c00354{letter-spacing:0.278400pt;}
.ls1f_c00354{letter-spacing:0.284587pt;}
.ls47_c00354{letter-spacing:0.309333pt;}
.ls39_c00354{letter-spacing:0.315520pt;}
.ls50_c00354{letter-spacing:0.321707pt;}
.ls33_c00354{letter-spacing:0.334080pt;}
.ls4e_c00354{letter-spacing:0.346453pt;}
.ls2b_c00354{letter-spacing:0.352640pt;}
.ls44_c00354{letter-spacing:0.365013pt;}
.ls3d_c00354{letter-spacing:0.371200pt;}
.ls25_c00354{letter-spacing:0.377387pt;}
.ls1c_c00354{letter-spacing:0.383573pt;}
.ls46_c00354{letter-spacing:0.389760pt;}
.ls4d_c00354{letter-spacing:0.402133pt;}
.ls3c_c00354{letter-spacing:0.408320pt;}
.ls14_c00354{letter-spacing:0.426880pt;}
.ls37_c00354{letter-spacing:0.439253pt;}
.ls13_c00354{letter-spacing:0.445440pt;}
.ls1a_c00354{letter-spacing:0.464000pt;}
.ls30_c00354{letter-spacing:0.470187pt;}
.ls4f_c00354{letter-spacing:0.476373pt;}
.ls42_c00354{letter-spacing:0.482560pt;}
.ls28_c00354{letter-spacing:0.494933pt;}
.ls4_c00354{letter-spacing:0.513493pt;}
.ls65_c00354{letter-spacing:0.525867pt;}
.ls4b_c00354{letter-spacing:0.532053pt;}
.ls4a_c00354{letter-spacing:0.544427pt;}
.ls91_c00354{letter-spacing:0.553547pt;}
.ls26_c00354{letter-spacing:0.569173pt;}
.ls54_c00354{letter-spacing:0.571520pt;}
.ls31_c00354{letter-spacing:0.587733pt;}
.ls34_c00354{letter-spacing:0.600107pt;}
.ls70_c00354{letter-spacing:0.631040pt;}
.ls6_c00354{letter-spacing:0.637227pt;}
.ls18_c00354{letter-spacing:0.643413pt;}
.ls23_c00354{letter-spacing:0.649600pt;}
.ls48_c00354{letter-spacing:0.668160pt;}
.ls10_c00354{letter-spacing:0.674347pt;}
.ls1d_c00354{letter-spacing:0.723840pt;}
.ls21_c00354{letter-spacing:0.742400pt;}
.ls2e_c00354{letter-spacing:0.754773pt;}
.ls1b_c00354{letter-spacing:0.760960pt;}
.ls2a_c00354{letter-spacing:0.785707pt;}
.ls43_c00354{letter-spacing:0.816640pt;}
.lsc_c00354{letter-spacing:0.851200pt;}
.ls19_c00354{letter-spacing:0.853760pt;}
.ls83_c00354{letter-spacing:0.869440pt;}
.ls24_c00354{letter-spacing:0.890880pt;}
.ls40_c00354{letter-spacing:0.903253pt;}
.ls53_c00354{letter-spacing:0.905920pt;}
.ls55_c00354{letter-spacing:0.921813pt;}
.ls12_c00354{letter-spacing:0.977493pt;}
.ls20_c00354{letter-spacing:0.996053pt;}
.lsa_c00354{letter-spacing:0.997120pt;}
.ls49_c00354{letter-spacing:1.003200pt;}
.ls36_c00354{letter-spacing:1.008427pt;}
.lsf_c00354{letter-spacing:1.015360pt;}
.ls35_c00354{letter-spacing:1.057920pt;}
.ls11_c00354{letter-spacing:1.088320pt;}
.ls2c_c00354{letter-spacing:1.095040pt;}
.ls69_c00354{letter-spacing:1.136960pt;}
.ls3b_c00354{letter-spacing:1.200213pt;}
.ls45_c00354{letter-spacing:1.243520pt;}
.ls0_c00354{letter-spacing:1.247520pt;}
.ls52_c00354{letter-spacing:1.379627pt;}
.ls58_c00354{letter-spacing:1.429120pt;}
.lsb_c00354{letter-spacing:1.574720pt;}
.ls3e_c00354{letter-spacing:1.763200pt;}
.ls22_c00354{letter-spacing:1.924053pt;}
.ls51_c00354{letter-spacing:2.016853pt;}
.lsd_c00354{letter-spacing:2.024640pt;}
.ls1_c00354{letter-spacing:2.223840pt;}
.ls29_c00354{letter-spacing:2.567467pt;}
.ws1_c00354{word-spacing:-0.296747pt;}
.ws4_c00354{word-spacing:0.000000pt;}
.ws0_c00354{word-spacing:0.873387pt;}
.ws2_c00354{word-spacing:7.380800pt;}
.ws3_c00354{word-spacing:9.469013pt;}
._0_c00354{margin-left:-7.545387pt;}
._13_c00354{margin-left:-6.273280pt;}
._1_c00354{margin-left:-4.344000pt;}
._14_c00354{margin-left:-2.418987pt;}
._9_c00354{margin-left:-0.977493pt;}
._2_c00354{width:1.422933pt;}
._12_c00354{width:2.542720pt;}
._3_c00354{width:3.637760pt;}
._a_c00354{width:4.652373pt;}
._b_c00354{width:5.939200pt;}
._4_c00354{width:7.479680pt;}
._7_c00354{width:8.413867pt;}
._5_c00354{width:9.867733pt;}
._11_c00354{width:11.736107pt;}
._c_c00354{width:13.517867pt;}
._8_c00354{width:14.414933pt;}
._e_c00354{width:17.149440pt;}
._d_c00354{width:18.795093pt;}
._6_c00354{width:21.436800pt;}
._f_c00354{width:23.076267pt;}
._10_c00354{width:24.505387pt;}
.fs5_c00354{font-size:43.520000pt;}
.fs6_c00354{font-size:51.733333pt;}
.fs4_c00354{font-size:53.866667pt;}
.fs0_c00354{font-size:58.666667pt;}
.fs1_c00354{font-size:60.266667pt;}
.fs3_c00354{font-size:60.800000pt;}
.fs2_c00354{font-size:61.866667pt;}
.y0_c00354{bottom:0.000000pt;}
.y1a_c00354{bottom:54.413333pt;}
.y19_c00354{bottom:188.808533pt;}
.y18_c00354{bottom:216.973333pt;}
.y17_c00354{bottom:271.380267pt;}
.y16_c00354{bottom:298.895467pt;}
.y15_c00354{bottom:326.720000pt;}
.y14_c00354{bottom:381.452267pt;}
.y13_c00354{bottom:408.658133pt;}
.y12_c00354{bottom:436.173333pt;}
.y11_c00354{bottom:463.693333pt;}
.y10_c00354{bottom:519.053333pt;}
.yf_c00354{bottom:575.367467pt;}
.ye_c00354{bottom:602.573333pt;}
.yd_c00354{bottom:630.088533pt;}
.yc_c00354{bottom:657.278933pt;}
.yb_c00354{bottom:684.484800pt;}
.ya_c00354{bottom:712.000000pt;}
.y9_c00354{bottom:767.373333pt;}
.y8_c00354{bottom:794.880000pt;}
.y7_c00354{bottom:822.400000pt;}
.y6_c00354{bottom:878.094400pt;}
.y4_c00354{bottom:904.957867pt;}
.y5_c00354{bottom:904.960000pt;}
.y3_c00354{bottom:960.962667pt;}
.y2_c00354{bottom:986.560000pt;}
.y1_c00354{bottom:1055.373333pt;}
.h7_c00354{height:28.984320pt;}
.h9_c00354{height:50.773437pt;}
.h6_c00354{height:52.867187pt;}
.h2_c00354{height:59.125000pt;}
.h5_c00354{height:59.642187pt;}
.h3_c00354{height:60.718750pt;}
.h4_c00354{height:60.727283pt;}
.h8_c00354{height:61.275000pt;}
.h1_c00354{height:1122.666667pt;}
.h0_c00354{height:1122.880000pt;}
.w1_c00354{width:793.333333pt;}
.w0_c00354{width:793.600000pt;}
.x0_c00354{left:0.000000pt;}
.x1a_c00354{left:105.560533pt;}
.x18_c00354{left:106.533333pt;}
.xe_c00354{left:107.705600pt;}
.x1_c00354{left:112.573333pt;}
.x19_c00354{left:153.426667pt;}
.xf_c00354{left:154.386667pt;}
.xd_c00354{left:155.346667pt;}
.x7_c00354{left:156.600000pt;}
.x4_c00354{left:157.702400pt;}
.x3_c00354{left:160.563733pt;}
.x11_c00354{left:219.120000pt;}
.x2_c00354{left:252.306667pt;}
.x12_c00354{left:256.466667pt;}
.x8_c00354{left:273.573333pt;}
.x13_c00354{left:297.720000pt;}
.x9_c00354{left:300.026667pt;}
.x14_c00354{left:332.000000pt;}
.x15_c00354{left:354.400000pt;}
.x1b_c00354{left:377.133333pt;}
.x16_c00354{left:411.026667pt;}
.x17_c00354{left:460.960000pt;}
.xc_c00354{left:473.706667pt;}
.xa_c00354{left:513.106667pt;}
.xb_c00354{left:537.733333pt;}
.x5_c00354{left:551.186667pt;}
.x6_c00354{left:577.826667pt;}
.x10_c00354{left:584.560000pt;}
}





/* 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_c00355 {
    display:none;
  }
  .loading-indicator_c00355.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00355 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_c00355 { 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_c00355" -> "#page-container .classname_c00355")
 */
.pf_c00355 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00355 { /* 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_c00355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00355 { /* 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_c00355 { /* 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_c00355 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00355 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00355 {overflow:visible;}
  }
}
.c_c00355 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00355 { /* 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_c00355:after { /* webkit #35443 */
  content: '';
}
.t_c00355:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00355 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 */
}
.__c00355 { /* 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_c00355 { /* info for Javascript */
  display:none;
}
.l_c00355 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00355 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00355 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00355: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_c00355 {
    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_c00355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00355.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_c00355 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00355;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.311035;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_c00355;src:url('chunks/assets/font_be0958d4f273f50261d71194.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.284180;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_c00355;src:url('chunks/assets/font_26ae5a6bfda5af0576b522ab.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.284668;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_c00355;src:url('chunks/assets/font_3941aa0a3c8af1e3b73225d3.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:1.284180;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_c00355;src:url('chunks/assets/font_a1e4f0d012f7af1a69b894ea.woff2')format("woff");}.ff5_c00355{font-family:ff5_c00355;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;}
.m8_c00355{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m2_c00355{transform:matrix(0.213993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213993,0.000000,0.000000,0.250000,0,0);}
.m7_c00355{transform:matrix(0.221906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221906,0.000000,0.000000,0.250000,0,0);}
.me_c00355{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m0_c00355{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m3_c00355{transform:matrix(0.244083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244083,0.000000,0.000000,0.250000,0,0);}
.mc_c00355{transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);}
.m9_c00355{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.mb_c00355{transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);}
.m4_c00355{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.ma_c00355{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m1_c00355{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);}
.md_c00355{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m6_c00355{transform:matrix(0.289240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289240,0.000000,0.000000,0.250000,0,0);}
.m5_c00355{transform:matrix(0.315529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315529,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls64_c00355{letter-spacing:-2.415000px;}
.ls72_c00355{letter-spacing:-2.401200px;}
.ls81_c00355{letter-spacing:-2.394000px;}
.ls62_c00355{letter-spacing:-2.310000px;}
.ls66_c00355{letter-spacing:-1.959600px;}
.ls6f_c00355{letter-spacing:-1.676700px;}
.ls8a_c00355{letter-spacing:-1.656000px;}
.ls75_c00355{letter-spacing:-1.531800px;}
.ls6a_c00355{letter-spacing:-1.166100px;}
.ls7e_c00355{letter-spacing:-1.090200px;}
.ls85_c00355{letter-spacing:-1.083300px;}
.ls69_c00355{letter-spacing:-1.055700px;}
.ls6b_c00355{letter-spacing:-0.966000px;}
.lsa2_c00355{letter-spacing:-0.945300px;}
.ls9a_c00355{letter-spacing:-0.862500px;}
.ls9d_c00355{letter-spacing:-0.855600px;}
.ls65_c00355{letter-spacing:-0.834900px;}
.ls8b_c00355{letter-spacing:-0.821100px;}
.ls74_c00355{letter-spacing:-0.814200px;}
.ls96_c00355{letter-spacing:-0.800400px;}
.ls70_c00355{letter-spacing:-0.690000px;}
.ls63_c00355{letter-spacing:-0.676200px;}
.ls98_c00355{letter-spacing:-0.607200px;}
.ls73_c00355{letter-spacing:-0.579600px;}
.ls93_c00355{letter-spacing:-0.538200px;}
.ls94_c00355{letter-spacing:-0.531300px;}
.ls71_c00355{letter-spacing:-0.503700px;}
.ls68_c00355{letter-spacing:-0.489900px;}
.ls77_c00355{letter-spacing:-0.469200px;}
.ls8e_c00355{letter-spacing:-0.441600px;}
.ls8d_c00355{letter-spacing:-0.393300px;}
.ls95_c00355{letter-spacing:-0.386400px;}
.ls89_c00355{letter-spacing:-0.372600px;}
.ls9b_c00355{letter-spacing:-0.345000px;}
.ls6d_c00355{letter-spacing:-0.331200px;}
.ls83_c00355{letter-spacing:-0.317400px;}
.ls80_c00355{letter-spacing:-0.296700px;}
.lsa4_c00355{letter-spacing:-0.241500px;}
.ls7f_c00355{letter-spacing:-0.234600px;}
.ls88_c00355{letter-spacing:-0.200100px;}
.ls97_c00355{letter-spacing:-0.172500px;}
.ls87_c00355{letter-spacing:-0.165600px;}
.ls7c_c00355{letter-spacing:-0.158700px;}
.ls92_c00355{letter-spacing:-0.138000px;}
.ls91_c00355{letter-spacing:-0.131100px;}
.ls9f_c00355{letter-spacing:-0.117300px;}
.ls6e_c00355{letter-spacing:-0.096600px;}
.ls7b_c00355{letter-spacing:-0.089700px;}
.lsa0_c00355{letter-spacing:-0.075900px;}
.ls7d_c00355{letter-spacing:-0.055200px;}
.ls8f_c00355{letter-spacing:-0.048300px;}
.ls9c_c00355{letter-spacing:-0.041400px;}
.ls82_c00355{letter-spacing:-0.020700px;}
.ls76_c00355{letter-spacing:-0.013800px;}
.ls67_c00355{letter-spacing:0.000000px;}
.ls50_c00355{letter-spacing:0.020700px;}
.ls7_c00355{letter-spacing:0.027600px;}
.ls4c_c00355{letter-spacing:0.034500px;}
.lsa_c00355{letter-spacing:0.048300px;}
.ls17_c00355{letter-spacing:0.055200px;}
.lsd_c00355{letter-spacing:0.075900px;}
.ls1f_c00355{letter-spacing:0.082800px;}
.ls10_c00355{letter-spacing:0.089700px;}
.ls1c_c00355{letter-spacing:0.096600px;}
.ls3d_c00355{letter-spacing:0.117300px;}
.ls9e_c00355{letter-spacing:0.124200px;}
.ls42_c00355{letter-spacing:0.131100px;}
.ls34_c00355{letter-spacing:0.138000px;}
.ls6_c00355{letter-spacing:0.144900px;}
.ls8c_c00355{letter-spacing:0.151800px;}
.ls33_c00355{letter-spacing:0.158700px;}
.ls5d_c00355{letter-spacing:0.165600px;}
.ls44_c00355{letter-spacing:0.179400px;}
.ls40_c00355{letter-spacing:0.186300px;}
.ls16_c00355{letter-spacing:0.213900px;}
.ls47_c00355{letter-spacing:0.220800px;}
.ls56_c00355{letter-spacing:0.223740px;}
.ls3e_c00355{letter-spacing:0.241500px;}
.ls23_c00355{letter-spacing:0.248400px;}
.ls5a_c00355{letter-spacing:0.269100px;}
.ls39_c00355{letter-spacing:0.276000px;}
.ls1e_c00355{letter-spacing:0.276120px;}
.ls37_c00355{letter-spacing:0.282900px;}
.ls3_c00355{letter-spacing:0.296700px;}
.ls13_c00355{letter-spacing:0.303600px;}
.ls35_c00355{letter-spacing:0.310500px;}
.ls99_c00355{letter-spacing:0.324300px;}
.ls5_c00355{letter-spacing:0.331200px;}
.ls2a_c00355{letter-spacing:0.345000px;}
.lsa5_c00355{letter-spacing:0.345600px;}
.ls3f_c00355{letter-spacing:0.351900px;}
.ls2_c00355{letter-spacing:0.358800px;}
.ls4b_c00355{letter-spacing:0.379500px;}
.ls61_c00355{letter-spacing:0.393300px;}
.ls7a_c00355{letter-spacing:0.397800px;}
.ls3a_c00355{letter-spacing:0.400200px;}
.ls4d_c00355{letter-spacing:0.407100px;}
.ls24_c00355{letter-spacing:0.420900px;}
.ls27_c00355{letter-spacing:0.434700px;}
.ls26_c00355{letter-spacing:0.441600px;}
.ls58_c00355{letter-spacing:0.469200px;}
.ls1b_c00355{letter-spacing:0.483000px;}
.ls3c_c00355{letter-spacing:0.489900px;}
.ls29_c00355{letter-spacing:0.517500px;}
.ls84_c00355{letter-spacing:0.531300px;}
.lsb_c00355{letter-spacing:0.538200px;}
.lsc_c00355{letter-spacing:0.552000px;}
.ls3b_c00355{letter-spacing:0.558900px;}
.ls78_c00355{letter-spacing:0.572700px;}
.ls1a_c00355{letter-spacing:0.586500px;}
.ls54_c00355{letter-spacing:0.600300px;}
.ls57_c00355{letter-spacing:0.603420px;}
.ls28_c00355{letter-spacing:0.607200px;}
.ls46_c00355{letter-spacing:0.614100px;}
.ls5b_c00355{letter-spacing:0.616980px;}
.ls8_c00355{letter-spacing:0.621000px;}
.ls2d_c00355{letter-spacing:0.641700px;}
.ls51_c00355{letter-spacing:0.648600px;}
.ls2b_c00355{letter-spacing:0.669300px;}
.ls60_c00355{letter-spacing:0.676200px;}
.ls31_c00355{letter-spacing:0.683100px;}
.ls21_c00355{letter-spacing:0.696900px;}
.ls0_c00355{letter-spacing:0.710700px;}
.ls36_c00355{letter-spacing:0.724500px;}
.ls19_c00355{letter-spacing:0.731400px;}
.ls9_c00355{letter-spacing:0.745200px;}
.ls6c_c00355{letter-spacing:0.752100px;}
.ls32_c00355{letter-spacing:0.759000px;}
.ls30_c00355{letter-spacing:0.759360px;}
.ls48_c00355{letter-spacing:0.765900px;}
.ls4a_c00355{letter-spacing:0.772800px;}
.ls59_c00355{letter-spacing:0.779700px;}
.ls79_c00355{letter-spacing:0.780000px;}
.ls20_c00355{letter-spacing:0.793500px;}
.ls38_c00355{letter-spacing:0.800400px;}
.ls41_c00355{letter-spacing:0.821100px;}
.ls2f_c00355{letter-spacing:0.828000px;}
.lsa3_c00355{letter-spacing:0.883200px;}
.ls4e_c00355{letter-spacing:0.910800px;}
.lse_c00355{letter-spacing:0.942420px;}
.lsf_c00355{letter-spacing:1.003440px;}
.ls14_c00355{letter-spacing:1.017000px;}
.ls12_c00355{letter-spacing:1.044120px;}
.ls49_c00355{letter-spacing:1.057680px;}
.ls86_c00355{letter-spacing:1.076400px;}
.ls43_c00355{letter-spacing:1.097100px;}
.ls11_c00355{letter-spacing:1.098360px;}
.ls1_c00355{letter-spacing:1.117800px;}
.ls2e_c00355{letter-spacing:1.118700px;}
.ls18_c00355{letter-spacing:1.139040px;}
.ls55_c00355{letter-spacing:1.297200px;}
.ls5c_c00355{letter-spacing:1.304100px;}
.ls22_c00355{letter-spacing:1.311000px;}
.ls45_c00355{letter-spacing:1.352400px;}
.ls4f_c00355{letter-spacing:1.469700px;}
.ls15_c00355{letter-spacing:1.525500px;}
.ls2c_c00355{letter-spacing:1.842300px;}
.ls4_c00355{letter-spacing:1.869900px;}
.ls53_c00355{letter-spacing:2.014800px;}
.ls5f_c00355{letter-spacing:2.056200px;}
.lsa1_c00355{letter-spacing:2.495040px;}
.ls25_c00355{letter-spacing:2.559900px;}
.ls52_c00355{letter-spacing:2.994600px;}
.ls5e_c00355{letter-spacing:3.070500px;}
.ls90_c00355{letter-spacing:3.450000px;}
.ls1d_c00355{letter-spacing:403.462800px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{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__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00355{word-spacing:-0.054000px;}
.ws5_c00355{word-spacing:0.000000px;}
.ws2_c00355{word-spacing:5.392200px;}
.ws4_c00355{word-spacing:6.550980px;}
.ws0_c00355{word-spacing:7.049640px;}
.ws3_c00355{word-spacing:22.680600px;}
._8_c00355{margin-left:-8.169600px;}
._5_c00355{margin-left:-6.686100px;}
._1_c00355{margin-left:-5.285400px;}
._17_c00355{margin-left:-3.643200px;}
._16_c00355{margin-left:-2.021700px;}
._2_c00355{width:1.283400px;}
._d_c00355{width:2.283900px;}
._e_c00355{width:3.937500px;}
._3_c00355{width:5.561400px;}
._1a_c00355{width:6.720600px;}
._6_c00355{width:7.817700px;}
._a_c00355{width:9.142500px;}
._4_c00355{width:10.198200px;}
._f_c00355{width:11.757600px;}
._9_c00355{width:13.241100px;}
._0_c00355{width:14.710800px;}
._c_c00355{width:17.084400px;}
._7_c00355{width:18.988800px;}
._12_c00355{width:20.782800px;}
._b_c00355{width:22.287000px;}
._19_c00355{width:23.943000px;}
._14_c00355{width:25.040100px;}
._13_c00355{width:27.296400px;}
._15_c00355{width:29.456100px;}
._18_c00355{width:32.105700px;}
._1b_c00355{width:37.376100px;}
._11_c00355{width:166.449600px;}
._10_c00355{width:212.197800px;}
.fc0_c00355{color:transparent;}
.fs3_c00355{font-size:15.600000px;}
.fs5_c00355{font-size:57.600000px;}
.fs0_c00355{font-size:66.000000px;}
.fs2_c00355{font-size:67.800000px;}
.fs4_c00355{font-size:68.400000px;}
.fs1_c00355{font-size:69.000000px;}
.y0_c00355{bottom:0.000000px;}
.y23_c00355{bottom:63.735000px;}
.y21_c00355{bottom:123.478500px;}
.y22_c00355{bottom:123.480000px;}
.y20_c00355{bottom:154.081200px;}
.y1f_c00355{bottom:184.320000px;}
.y1e_c00355{bottom:245.893500px;}
.y1d_c00355{bottom:276.832500px;}
.y1c_c00355{bottom:307.796250px;}
.y1b_c00355{bottom:338.415000px;}
.y19_c00355{bottom:399.609000px;}
.y1a_c00355{bottom:399.615000px;}
.y17_c00355{bottom:430.932000px;}
.y18_c00355{bottom:430.935000px;}
.y16_c00355{bottom:461.533500px;}
.y15_c00355{bottom:492.135000px;}
.y14_c00355{bottom:492.135750px;}
.y12_c00355{bottom:522.718500px;}
.y13_c00355{bottom:522.720000px;}
.y11_c00355{bottom:553.320000px;}
.y10_c00355{bottom:615.615000px;}
.yf_c00355{bottom:678.607500px;}
.ye_c00355{bottom:709.554000px;}
.yd_c00355{bottom:740.535000px;}
.yc_c00355{bottom:769.335000px;}
.yb_c00355{bottom:771.855000px;}
.ya_c00355{bottom:833.400000px;}
.y9_c00355{bottom:864.375000px;}
.y8_c00355{bottom:894.975000px;}
.y6_c00355{bottom:956.529000px;}
.y7_c00355{bottom:956.535000px;}
.y5_c00355{bottom:986.751000px;}
.y4_c00355{bottom:1017.714750px;}
.y3_c00355{bottom:1079.280000px;}
.y2_c00355{bottom:1110.240000px;}
.y1_c00355{bottom:1185.855000px;}
.h4_c00355{height:16.270313px;}
.ha_c00355{height:56.531250px;}
.h2_c00355{height:66.515625px;}
.h5_c00355{height:67.130859px;}
.h9_c00355{height:67.714927px;}
.h3_c00355{height:67.719727px;}
.h8_c00355{height:67.749727px;}
.h7_c00355{height:68.835938px;}
.h6_c00355{height:71.964844px;}
.h1_c00355{height:1263.000000px;}
.h0_c00355{height:1263.240000px;}
.w1_c00355{width:892.500000px;}
.w0_c00355{width:892.800000px;}
.x0_c00355{left:0.000000px;}
.x1_c00355{left:122.685000px;}
.xd_c00355{left:123.810000px;}
.x1c_c00355{left:124.991250px;}
.x5_c00355{left:177.033750px;}
.x3_c00355{left:179.205000px;}
.x4_c00355{left:220.245000px;}
.x9_c00355{left:221.790000px;}
.x1d_c00355{left:232.020000px;}
.x1e_c00355{left:248.940000px;}
.x2_c00355{left:259.005000px;}
.x6_c00355{left:274.335000px;}
.x1b_c00355{left:294.975000px;}
.x19_c00355{left:299.415000px;}
.x1a_c00355{left:325.290000px;}
.x13_c00355{left:352.995000px;}
.xa_c00355{left:360.960000px;}
.x14_c00355{left:374.220000px;}
.xb_c00355{left:382.920000px;}
.xe_c00355{left:396.630000px;}
.x1f_c00355{left:425.355000px;}
.xf_c00355{left:428.970000px;}
.x15_c00355{left:441.930000px;}
.x7_c00355{left:454.845000px;}
.x16_c00355{left:459.120000px;}
.x8_c00355{left:472.125000px;}
.xc_c00355{left:497.850000px;}
.x17_c00355{left:574.740000px;}
.x11_c00355{left:588.060000px;}
.x18_c00355{left:597.210000px;}
.x12_c00355{left:605.115000px;}
.x10_c00355{left:633.165000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls64_c00355{letter-spacing:-2.146667pt;}
.ls72_c00355{letter-spacing:-2.134400pt;}
.ls81_c00355{letter-spacing:-2.128000pt;}
.ls62_c00355{letter-spacing:-2.053333pt;}
.ls66_c00355{letter-spacing:-1.741867pt;}
.ls6f_c00355{letter-spacing:-1.490400pt;}
.ls8a_c00355{letter-spacing:-1.472000pt;}
.ls75_c00355{letter-spacing:-1.361600pt;}
.ls6a_c00355{letter-spacing:-1.036533pt;}
.ls7e_c00355{letter-spacing:-0.969067pt;}
.ls85_c00355{letter-spacing:-0.962933pt;}
.ls69_c00355{letter-spacing:-0.938400pt;}
.ls6b_c00355{letter-spacing:-0.858667pt;}
.lsa2_c00355{letter-spacing:-0.840267pt;}
.ls9a_c00355{letter-spacing:-0.766667pt;}
.ls9d_c00355{letter-spacing:-0.760533pt;}
.ls65_c00355{letter-spacing:-0.742133pt;}
.ls8b_c00355{letter-spacing:-0.729867pt;}
.ls74_c00355{letter-spacing:-0.723733pt;}
.ls96_c00355{letter-spacing:-0.711467pt;}
.ls70_c00355{letter-spacing:-0.613333pt;}
.ls63_c00355{letter-spacing:-0.601067pt;}
.ls98_c00355{letter-spacing:-0.539733pt;}
.ls73_c00355{letter-spacing:-0.515200pt;}
.ls93_c00355{letter-spacing:-0.478400pt;}
.ls94_c00355{letter-spacing:-0.472267pt;}
.ls71_c00355{letter-spacing:-0.447733pt;}
.ls68_c00355{letter-spacing:-0.435467pt;}
.ls77_c00355{letter-spacing:-0.417067pt;}
.ls8e_c00355{letter-spacing:-0.392533pt;}
.ls8d_c00355{letter-spacing:-0.349600pt;}
.ls95_c00355{letter-spacing:-0.343467pt;}
.ls89_c00355{letter-spacing:-0.331200pt;}
.ls9b_c00355{letter-spacing:-0.306667pt;}
.ls6d_c00355{letter-spacing:-0.294400pt;}
.ls83_c00355{letter-spacing:-0.282133pt;}
.ls80_c00355{letter-spacing:-0.263733pt;}
.lsa4_c00355{letter-spacing:-0.214667pt;}
.ls7f_c00355{letter-spacing:-0.208533pt;}
.ls88_c00355{letter-spacing:-0.177867pt;}
.ls97_c00355{letter-spacing:-0.153333pt;}
.ls87_c00355{letter-spacing:-0.147200pt;}
.ls7c_c00355{letter-spacing:-0.141067pt;}
.ls92_c00355{letter-spacing:-0.122667pt;}
.ls91_c00355{letter-spacing:-0.116533pt;}
.ls9f_c00355{letter-spacing:-0.104267pt;}
.ls6e_c00355{letter-spacing:-0.085867pt;}
.ls7b_c00355{letter-spacing:-0.079733pt;}
.lsa0_c00355{letter-spacing:-0.067467pt;}
.ls7d_c00355{letter-spacing:-0.049067pt;}
.ls8f_c00355{letter-spacing:-0.042933pt;}
.ls9c_c00355{letter-spacing:-0.036800pt;}
.ls82_c00355{letter-spacing:-0.018400pt;}
.ls76_c00355{letter-spacing:-0.012267pt;}
.ls67_c00355{letter-spacing:0.000000pt;}
.ls50_c00355{letter-spacing:0.018400pt;}
.ls7_c00355{letter-spacing:0.024533pt;}
.ls4c_c00355{letter-spacing:0.030667pt;}
.lsa_c00355{letter-spacing:0.042933pt;}
.ls17_c00355{letter-spacing:0.049067pt;}
.lsd_c00355{letter-spacing:0.067467pt;}
.ls1f_c00355{letter-spacing:0.073600pt;}
.ls10_c00355{letter-spacing:0.079733pt;}
.ls1c_c00355{letter-spacing:0.085867pt;}
.ls3d_c00355{letter-spacing:0.104267pt;}
.ls9e_c00355{letter-spacing:0.110400pt;}
.ls42_c00355{letter-spacing:0.116533pt;}
.ls34_c00355{letter-spacing:0.122667pt;}
.ls6_c00355{letter-spacing:0.128800pt;}
.ls8c_c00355{letter-spacing:0.134933pt;}
.ls33_c00355{letter-spacing:0.141067pt;}
.ls5d_c00355{letter-spacing:0.147200pt;}
.ls44_c00355{letter-spacing:0.159467pt;}
.ls40_c00355{letter-spacing:0.165600pt;}
.ls16_c00355{letter-spacing:0.190133pt;}
.ls47_c00355{letter-spacing:0.196267pt;}
.ls56_c00355{letter-spacing:0.198880pt;}
.ls3e_c00355{letter-spacing:0.214667pt;}
.ls23_c00355{letter-spacing:0.220800pt;}
.ls5a_c00355{letter-spacing:0.239200pt;}
.ls39_c00355{letter-spacing:0.245333pt;}
.ls1e_c00355{letter-spacing:0.245440pt;}
.ls37_c00355{letter-spacing:0.251467pt;}
.ls3_c00355{letter-spacing:0.263733pt;}
.ls13_c00355{letter-spacing:0.269867pt;}
.ls35_c00355{letter-spacing:0.276000pt;}
.ls99_c00355{letter-spacing:0.288267pt;}
.ls5_c00355{letter-spacing:0.294400pt;}
.ls2a_c00355{letter-spacing:0.306667pt;}
.lsa5_c00355{letter-spacing:0.307200pt;}
.ls3f_c00355{letter-spacing:0.312800pt;}
.ls2_c00355{letter-spacing:0.318933pt;}
.ls4b_c00355{letter-spacing:0.337333pt;}
.ls61_c00355{letter-spacing:0.349600pt;}
.ls7a_c00355{letter-spacing:0.353600pt;}
.ls3a_c00355{letter-spacing:0.355733pt;}
.ls4d_c00355{letter-spacing:0.361867pt;}
.ls24_c00355{letter-spacing:0.374133pt;}
.ls27_c00355{letter-spacing:0.386400pt;}
.ls26_c00355{letter-spacing:0.392533pt;}
.ls58_c00355{letter-spacing:0.417067pt;}
.ls1b_c00355{letter-spacing:0.429333pt;}
.ls3c_c00355{letter-spacing:0.435467pt;}
.ls29_c00355{letter-spacing:0.460000pt;}
.ls84_c00355{letter-spacing:0.472267pt;}
.lsb_c00355{letter-spacing:0.478400pt;}
.lsc_c00355{letter-spacing:0.490667pt;}
.ls3b_c00355{letter-spacing:0.496800pt;}
.ls78_c00355{letter-spacing:0.509067pt;}
.ls1a_c00355{letter-spacing:0.521333pt;}
.ls54_c00355{letter-spacing:0.533600pt;}
.ls57_c00355{letter-spacing:0.536373pt;}
.ls28_c00355{letter-spacing:0.539733pt;}
.ls46_c00355{letter-spacing:0.545867pt;}
.ls5b_c00355{letter-spacing:0.548427pt;}
.ls8_c00355{letter-spacing:0.552000pt;}
.ls2d_c00355{letter-spacing:0.570400pt;}
.ls51_c00355{letter-spacing:0.576533pt;}
.ls2b_c00355{letter-spacing:0.594933pt;}
.ls60_c00355{letter-spacing:0.601067pt;}
.ls31_c00355{letter-spacing:0.607200pt;}
.ls21_c00355{letter-spacing:0.619467pt;}
.ls0_c00355{letter-spacing:0.631733pt;}
.ls36_c00355{letter-spacing:0.644000pt;}
.ls19_c00355{letter-spacing:0.650133pt;}
.ls9_c00355{letter-spacing:0.662400pt;}
.ls6c_c00355{letter-spacing:0.668533pt;}
.ls32_c00355{letter-spacing:0.674667pt;}
.ls30_c00355{letter-spacing:0.674987pt;}
.ls48_c00355{letter-spacing:0.680800pt;}
.ls4a_c00355{letter-spacing:0.686933pt;}
.ls59_c00355{letter-spacing:0.693067pt;}
.ls79_c00355{letter-spacing:0.693333pt;}
.ls20_c00355{letter-spacing:0.705333pt;}
.ls38_c00355{letter-spacing:0.711467pt;}
.ls41_c00355{letter-spacing:0.729867pt;}
.ls2f_c00355{letter-spacing:0.736000pt;}
.lsa3_c00355{letter-spacing:0.785067pt;}
.ls4e_c00355{letter-spacing:0.809600pt;}
.lse_c00355{letter-spacing:0.837707pt;}
.lsf_c00355{letter-spacing:0.891947pt;}
.ls14_c00355{letter-spacing:0.904000pt;}
.ls12_c00355{letter-spacing:0.928107pt;}
.ls49_c00355{letter-spacing:0.940160pt;}
.ls86_c00355{letter-spacing:0.956800pt;}
.ls43_c00355{letter-spacing:0.975200pt;}
.ls11_c00355{letter-spacing:0.976320pt;}
.ls1_c00355{letter-spacing:0.993600pt;}
.ls2e_c00355{letter-spacing:0.994400pt;}
.ls18_c00355{letter-spacing:1.012480pt;}
.ls55_c00355{letter-spacing:1.153067pt;}
.ls5c_c00355{letter-spacing:1.159200pt;}
.ls22_c00355{letter-spacing:1.165333pt;}
.ls45_c00355{letter-spacing:1.202133pt;}
.ls4f_c00355{letter-spacing:1.306400pt;}
.ls15_c00355{letter-spacing:1.356000pt;}
.ls2c_c00355{letter-spacing:1.637600pt;}
.ls4_c00355{letter-spacing:1.662133pt;}
.ls53_c00355{letter-spacing:1.790933pt;}
.ls5f_c00355{letter-spacing:1.827733pt;}
.lsa1_c00355{letter-spacing:2.217813pt;}
.ls25_c00355{letter-spacing:2.275467pt;}
.ls52_c00355{letter-spacing:2.661867pt;}
.ls5e_c00355{letter-spacing:2.729333pt;}
.ls90_c00355{letter-spacing:3.066667pt;}
.ls1d_c00355{letter-spacing:358.633600pt;}
.ws1_c00355{word-spacing:-0.048000pt;}
.ws5_c00355{word-spacing:0.000000pt;}
.ws2_c00355{word-spacing:4.793067pt;}
.ws4_c00355{word-spacing:5.823093pt;}
.ws0_c00355{word-spacing:6.266347pt;}
.ws3_c00355{word-spacing:20.160533pt;}
._8_c00355{margin-left:-7.261867pt;}
._5_c00355{margin-left:-5.943200pt;}
._1_c00355{margin-left:-4.698133pt;}
._17_c00355{margin-left:-3.238400pt;}
._16_c00355{margin-left:-1.797067pt;}
._2_c00355{width:1.140800pt;}
._d_c00355{width:2.030133pt;}
._e_c00355{width:3.500000pt;}
._3_c00355{width:4.943467pt;}
._1a_c00355{width:5.973867pt;}
._6_c00355{width:6.949067pt;}
._a_c00355{width:8.126667pt;}
._4_c00355{width:9.065067pt;}
._f_c00355{width:10.451200pt;}
._9_c00355{width:11.769867pt;}
._0_c00355{width:13.076267pt;}
._c_c00355{width:15.186133pt;}
._7_c00355{width:16.878933pt;}
._12_c00355{width:18.473600pt;}
._b_c00355{width:19.810667pt;}
._19_c00355{width:21.282667pt;}
._14_c00355{width:22.257867pt;}
._13_c00355{width:24.263467pt;}
._15_c00355{width:26.183200pt;}
._18_c00355{width:28.538400pt;}
._1b_c00355{width:33.223200pt;}
._11_c00355{width:147.955200pt;}
._10_c00355{width:188.620267pt;}
.fs3_c00355{font-size:13.866667pt;}
.fs5_c00355{font-size:51.200000pt;}
.fs0_c00355{font-size:58.666667pt;}
.fs2_c00355{font-size:60.266667pt;}
.fs4_c00355{font-size:60.800000pt;}
.fs1_c00355{font-size:61.333333pt;}
.y0_c00355{bottom:0.000000pt;}
.y23_c00355{bottom:56.653333pt;}
.y21_c00355{bottom:109.758667pt;}
.y22_c00355{bottom:109.760000pt;}
.y20_c00355{bottom:136.961067pt;}
.y1f_c00355{bottom:163.840000pt;}
.y1e_c00355{bottom:218.572000pt;}
.y1d_c00355{bottom:246.073333pt;}
.y1c_c00355{bottom:273.596667pt;}
.y1b_c00355{bottom:300.813333pt;}
.y19_c00355{bottom:355.208000pt;}
.y1a_c00355{bottom:355.213333pt;}
.y17_c00355{bottom:383.050667pt;}
.y18_c00355{bottom:383.053333pt;}
.y16_c00355{bottom:410.252000pt;}
.y15_c00355{bottom:437.453333pt;}
.y14_c00355{bottom:437.454000pt;}
.y12_c00355{bottom:464.638667pt;}
.y13_c00355{bottom:464.640000pt;}
.y11_c00355{bottom:491.840000pt;}
.y10_c00355{bottom:547.213333pt;}
.yf_c00355{bottom:603.206667pt;}
.ye_c00355{bottom:630.714667pt;}
.yd_c00355{bottom:658.253333pt;}
.yc_c00355{bottom:683.853333pt;}
.yb_c00355{bottom:686.093333pt;}
.ya_c00355{bottom:740.800000pt;}
.y9_c00355{bottom:768.333333pt;}
.y8_c00355{bottom:795.533333pt;}
.y6_c00355{bottom:850.248000pt;}
.y7_c00355{bottom:850.253333pt;}
.y5_c00355{bottom:877.112000pt;}
.y4_c00355{bottom:904.635333pt;}
.y3_c00355{bottom:959.360000pt;}
.y2_c00355{bottom:986.880000pt;}
.y1_c00355{bottom:1054.093333pt;}
.h4_c00355{height:14.462500pt;}
.ha_c00355{height:50.250000pt;}
.h2_c00355{height:59.125000pt;}
.h5_c00355{height:59.671875pt;}
.h9_c00355{height:60.191046pt;}
.h3_c00355{height:60.195312pt;}
.h8_c00355{height:60.221979pt;}
.h7_c00355{height:61.187500pt;}
.h6_c00355{height:63.968750pt;}
.h1_c00355{height:1122.666667pt;}
.h0_c00355{height:1122.880000pt;}
.w1_c00355{width:793.333333pt;}
.w0_c00355{width:793.600000pt;}
.x0_c00355{left:0.000000pt;}
.x1_c00355{left:109.053333pt;}
.xd_c00355{left:110.053333pt;}
.x1c_c00355{left:111.103333pt;}
.x5_c00355{left:157.363333pt;}
.x3_c00355{left:159.293333pt;}
.x4_c00355{left:195.773333pt;}
.x9_c00355{left:197.146667pt;}
.x1d_c00355{left:206.240000pt;}
.x1e_c00355{left:221.280000pt;}
.x2_c00355{left:230.226667pt;}
.x6_c00355{left:243.853333pt;}
.x1b_c00355{left:262.200000pt;}
.x19_c00355{left:266.146667pt;}
.x1a_c00355{left:289.146667pt;}
.x13_c00355{left:313.773333pt;}
.xa_c00355{left:320.853333pt;}
.x14_c00355{left:332.640000pt;}
.xb_c00355{left:340.373333pt;}
.xe_c00355{left:352.560000pt;}
.x1f_c00355{left:378.093333pt;}
.xf_c00355{left:381.306667pt;}
.x15_c00355{left:392.826667pt;}
.x7_c00355{left:404.306667pt;}
.x16_c00355{left:408.106667pt;}
.x8_c00355{left:419.666667pt;}
.xc_c00355{left:442.533333pt;}
.x17_c00355{left:510.880000pt;}
.x11_c00355{left:522.720000pt;}
.x18_c00355{left:530.853333pt;}
.x12_c00355{left:537.880000pt;}
.x10_c00355{left:562.813333pt;}
}





/* 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_c00356 {
    display:none;
  }
  .loading-indicator_c00356.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00356 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_c00356 { 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_c00356" -> "#page-container .classname_c00356")
 */
.pf_c00356 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00356 { /* 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_c00356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00356 { /* 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_c00356 { /* 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_c00356 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00356 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00356 {overflow:visible;}
  }
}
.c_c00356 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00356 { /* 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_c00356:after { /* webkit #35443 */
  content: '';
}
.t_c00356:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00356 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 */
}
.__c00356 { /* 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_c00356 { /* info for Javascript */
  display:none;
}
.l_c00356 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00356 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00356 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00356: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_c00356 {
    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_c00356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00356.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_c00356 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00356;src:url('chunks/assets/font_e802f20ced6056fa154b80fb.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.284668;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_c00356;src:url('chunks/assets/font_93915634fdba141ab95dc49d.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.284180;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_c00356;src:url('chunks/assets/font_2afe9c7376191cc3fc3f81f1.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;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:ff4_c00356;src:url('chunks/assets/font_e994c0820eb6c6a66b96a4de.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:0.666000;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;}
.md_c00356{transform:matrix(0.150904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150904,0.000000,0.000000,0.250000,0,0);}
.ma_c00356{transform:matrix(0.180408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180408,0.000000,0.000000,0.250000,0,0);}
.m6_c00356{transform:matrix(0.207720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207720,0.000000,0.000000,0.250000,0,0);}
.m7_c00356{transform:matrix(0.221694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221694,0.000000,0.000000,0.250000,0,0);}
.m0_c00356{transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);}
.m5_c00356{transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);}
.mc_c00356{transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245288,0.000000,0.000000,0.250000,0,0);}
.m3_c00356{transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);}
.mb_c00356{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m8_c00356{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m4_c00356{transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);}
.m2_c00356{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m1_c00356{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);}
.m9_c00356{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls36_c00356{letter-spacing:-2.562000px;}
.ls3d_c00356{letter-spacing:-2.457000px;}
.ls5b_c00356{letter-spacing:-2.415000px;}
.ls89_c00356{letter-spacing:-2.381400px;}
.ls7c_c00356{letter-spacing:-2.309580px;}
.ls49_c00356{letter-spacing:-2.035800px;}
.ls75_c00356{letter-spacing:-1.951560px;}
.ls3a_c00356{letter-spacing:-1.930500px;}
.ls86_c00356{letter-spacing:-1.916460px;}
.ls37_c00356{letter-spacing:-1.776600px;}
.ls52_c00356{letter-spacing:-1.769040px;}
.ls71_c00356{letter-spacing:-1.747980px;}
.ls42_c00356{letter-spacing:-1.705860px;}
.ls47_c00356{letter-spacing:-1.642680px;}
.ls73_c00356{letter-spacing:-1.635660px;}
.ls80_c00356{letter-spacing:-1.565460px;}
.ls48_c00356{letter-spacing:-1.537380px;}
.ls4f_c00356{letter-spacing:-1.516320px;}
.ls79_c00356{letter-spacing:-1.509300px;}
.ls50_c00356{letter-spacing:-1.488240px;}
.ls88_c00356{letter-spacing:-1.466640px;}
.ls8a_c00356{letter-spacing:-1.446120px;}
.ls41_c00356{letter-spacing:-1.361880px;}
.ls68_c00356{letter-spacing:-1.284660px;}
.ls38_c00356{letter-spacing:-1.270080px;}
.ls56_c00356{letter-spacing:-1.151280px;}
.ls4c_c00356{letter-spacing:-1.003860px;}
.ls6a_c00356{letter-spacing:-0.989820px;}
.ls8b_c00356{letter-spacing:-0.863460px;}
.ls53_c00356{letter-spacing:-0.856440px;}
.ls43_c00356{letter-spacing:-0.821340px;}
.ls4a_c00356{letter-spacing:-0.793260px;}
.ls6d_c00356{letter-spacing:-0.765180px;}
.ls5e_c00356{letter-spacing:-0.730080px;}
.ls7e_c00356{letter-spacing:-0.702000px;}
.ls4d_c00356{letter-spacing:-0.694980px;}
.ls76_c00356{letter-spacing:-0.645840px;}
.ls66_c00356{letter-spacing:-0.638820px;}
.ls72_c00356{letter-spacing:-0.631800px;}
.ls62_c00356{letter-spacing:-0.617760px;}
.ls7b_c00356{letter-spacing:-0.610740px;}
.ls74_c00356{letter-spacing:-0.596700px;}
.ls4b_c00356{letter-spacing:-0.589680px;}
.ls46_c00356{letter-spacing:-0.554580px;}
.ls69_c00356{letter-spacing:-0.533520px;}
.ls40_c00356{letter-spacing:-0.526500px;}
.ls85_c00356{letter-spacing:-0.512460px;}
.ls4e_c00356{letter-spacing:-0.484380px;}
.ls51_c00356{letter-spacing:-0.470340px;}
.ls77_c00356{letter-spacing:-0.428220px;}
.ls60_c00356{letter-spacing:-0.421200px;}
.ls7a_c00356{letter-spacing:-0.400140px;}
.ls3b_c00356{letter-spacing:-0.386100px;}
.ls6b_c00356{letter-spacing:-0.358020px;}
.ls55_c00356{letter-spacing:-0.343980px;}
.ls7f_c00356{letter-spacing:-0.336960px;}
.ls58_c00356{letter-spacing:-0.322920px;}
.ls7d_c00356{letter-spacing:-0.315900px;}
.ls3f_c00356{letter-spacing:-0.301860px;}
.ls67_c00356{letter-spacing:-0.294840px;}
.ls39_c00356{letter-spacing:-0.280800px;}
.ls87_c00356{letter-spacing:-0.266760px;}
.ls82_c00356{letter-spacing:-0.224640px;}
.ls57_c00356{letter-spacing:-0.210600px;}
.ls81_c00356{letter-spacing:-0.196560px;}
.ls61_c00356{letter-spacing:-0.175500px;}
.ls5d_c00356{letter-spacing:-0.161460px;}
.ls59_c00356{letter-spacing:-0.147420px;}
.ls3c_c00356{letter-spacing:-0.140400px;}
.ls6c_c00356{letter-spacing:-0.133380px;}
.ls84_c00356{letter-spacing:-0.119340px;}
.ls70_c00356{letter-spacing:-0.098280px;}
.ls6e_c00356{letter-spacing:-0.070200px;}
.ls5c_c00356{letter-spacing:-0.063180px;}
.ls63_c00356{letter-spacing:-0.056160px;}
.ls45_c00356{letter-spacing:-0.042120px;}
.ls65_c00356{letter-spacing:-0.035100px;}
.ls44_c00356{letter-spacing:-0.014040px;}
.ls3e_c00356{letter-spacing:0.000000px;}
.ls23_c00356{letter-spacing:0.007020px;}
.lsf_c00356{letter-spacing:0.028080px;}
.lse_c00356{letter-spacing:0.035100px;}
.ls5f_c00356{letter-spacing:0.049140px;}
.ls28_c00356{letter-spacing:0.063180px;}
.ls29_c00356{letter-spacing:0.091260px;}
.ls22_c00356{letter-spacing:0.105300px;}
.ls35_c00356{letter-spacing:0.119340px;}
.ls20_c00356{letter-spacing:0.126360px;}
.ls24_c00356{letter-spacing:0.133380px;}
.ls1c_c00356{letter-spacing:0.140400px;}
.ls8c_c00356{letter-spacing:0.182280px;}
.ls10_c00356{letter-spacing:0.203580px;}
.ls5_c00356{letter-spacing:0.224640px;}
.ls13_c00356{letter-spacing:0.238680px;}
.ls1f_c00356{letter-spacing:0.245700px;}
.ls1_c00356{letter-spacing:0.266760px;}
.ls1a_c00356{letter-spacing:0.273780px;}
.ls2d_c00356{letter-spacing:0.294120px;}
.lsd_c00356{letter-spacing:0.294840px;}
.ls27_c00356{letter-spacing:0.301860px;}
.ls25_c00356{letter-spacing:0.308880px;}
.ls12_c00356{letter-spacing:0.329940px;}
.ls6f_c00356{letter-spacing:0.336960px;}
.ls11_c00356{letter-spacing:0.372060px;}
.ls2c_c00356{letter-spacing:0.393120px;}
.ls17_c00356{letter-spacing:0.407160px;}
.ls16_c00356{letter-spacing:0.414180px;}
.ls15_c00356{letter-spacing:0.456300px;}
.lsc_c00356{letter-spacing:0.470340px;}
.ls78_c00356{letter-spacing:0.512460px;}
.ls0_c00356{letter-spacing:0.533520px;}
.ls5a_c00356{letter-spacing:0.554580px;}
.ls2a_c00356{letter-spacing:0.575640px;}
.ls1e_c00356{letter-spacing:0.582660px;}
.ls7_c00356{letter-spacing:0.636120px;}
.ls2e_c00356{letter-spacing:0.642960px;}
.ls1b_c00356{letter-spacing:0.645840px;}
.ls64_c00356{letter-spacing:0.659880px;}
.ls19_c00356{letter-spacing:0.673920px;}
.lsb_c00356{letter-spacing:0.680940px;}
.ls32_c00356{letter-spacing:0.723060px;}
.ls9_c00356{letter-spacing:0.751140px;}
.ls4_c00356{letter-spacing:0.800280px;}
.ls3_c00356{letter-spacing:0.923400px;}
.ls2_c00356{letter-spacing:0.937080px;}
.lsa_c00356{letter-spacing:0.954720px;}
.ls1d_c00356{letter-spacing:1.019160px;}
.ls8_c00356{letter-spacing:1.101240px;}
.ls2f_c00356{letter-spacing:1.116180px;}
.ls6_c00356{letter-spacing:1.121760px;}
.ls54_c00356{letter-spacing:1.190160px;}
.ls33_c00356{letter-spacing:1.221480px;}
.ls2b_c00356{letter-spacing:1.263600px;}
.ls26_c00356{letter-spacing:1.305720px;}
.ls18_c00356{letter-spacing:1.313280px;}
.ls21_c00356{letter-spacing:1.425060px;}
.ls34_c00356{letter-spacing:1.747980px;}
.ls31_c00356{letter-spacing:1.769040px;}
.ls83_c00356{letter-spacing:1.804140px;}
.ls30_c00356{letter-spacing:2.183220px;}
.ls14_c00356{letter-spacing:2.485080px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{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__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00356{word-spacing:0.000000px;}
.ws0_c00356{word-spacing:2.706240px;}
.ws3_c00356{word-spacing:4.185000px;}
.ws4_c00356{word-spacing:11.732640px;}
.ws2_c00356{word-spacing:16.660800px;}
.ws1_c00356{word-spacing:19.482480px;}
._18_c00356{margin-left:-4.555980px;}
._17_c00356{margin-left:-3.154140px;}
._8_c00356{margin-left:-1.668960px;}
._1_c00356{width:1.053360px;}
._3_c00356{width:2.421900px;}
._0_c00356{width:3.931200px;}
._6_c00356{width:5.069400px;}
._2_c00356{width:6.949800px;}
._5_c00356{width:8.760960px;}
._7_c00356{width:10.248840px;}
._4_c00356{width:12.453480px;}
._b_c00356{width:13.583700px;}
._9_c00356{width:14.791140px;}
._a_c00356{width:15.998580px;}
._16_c00356{width:19.562160px;}
._10_c00356{width:20.968740px;}
._c_c00356{width:22.127040px;}
._f_c00356{width:24.471720px;}
._d_c00356{width:26.486460px;}
._e_c00356{width:28.571400px;}
._14_c00356{width:45.166680px;}
._13_c00356{width:48.887280px;}
._11_c00356{width:52.039260px;}
._15_c00356{width:53.078220px;}
._12_c00356{width:54.124200px;}
.fc0_c00356{color:transparent;}
.fs5_c00356{font-size:51.840000px;}
.fs6_c00356{font-size:53.280000px;}
.fs7_c00356{font-size:58.800000px;}
.fs9_c00356{font-size:66.000000px;}
.fs3_c00356{font-size:68.400000px;}
.fs4_c00356{font-size:69.000000px;}
.fs2_c00356{font-size:70.200000px;}
.fs0_c00356{font-size:73.200000px;}
.fs1_c00356{font-size:75.600000px;}
.fs8_c00356{font-size:76.800000px;}
.y0_c00356{bottom:0.000000px;}
.y1e_c00356{bottom:67.320000px;}
.y1d_c00356{bottom:154.080000px;}
.y1c_c00356{bottom:154.088250px;}
.y1b_c00356{bottom:185.415000px;}
.y1a_c00356{bottom:246.608250px;}
.y19_c00356{bottom:277.935000px;}
.y18_c00356{bottom:339.495000px;}
.y17_c00356{bottom:370.816800px;}
.y16_c00356{bottom:401.775000px;}
.y15_c00356{bottom:462.960600px;}
.y14_c00356{bottom:493.567800px;}
.y13_c00356{bottom:524.175000px;}
.y12_c00356{bottom:586.800000px;}
.y11_c00356{bottom:586.800600px;}
.y20_c00356{bottom:614.535000px;}
.y1f_c00356{bottom:618.120000px;}
.y10_c00356{bottom:619.935000px;}
.yf_c00356{bottom:683.265300px;}
.ye_c00356{bottom:714.241050px;}
.yd_c00356{bottom:745.567800px;}
.yc_c00356{bottom:776.175000px;}
.yb_c00356{bottom:807.135000px;}
.ya_c00356{bottom:869.040000px;}
.y9_c00356{bottom:899.655000px;}
.y8_c00356{bottom:930.615000px;}
.y7_c00356{bottom:992.175000px;}
.y5_c00356{bottom:1023.132600px;}
.y6_c00356{bottom:1023.135000px;}
.y3_c00356{bottom:1085.399250px;}
.y4_c00356{bottom:1085.400000px;}
.y2_c00356{bottom:1116.375000px;}
.y1_c00356{bottom:1193.040000px;}
.h7_c00356{height:34.525440px;}
.h8_c00356{height:35.484480px;}
.h9_c00356{height:57.708984px;}
.h5_c00356{height:67.097461px;}
.hb_c00356{height:68.835938px;}
.h4_c00356{height:68.897461px;}
.h2_c00356{height:71.841797px;}
.h6_c00356{height:71.964844px;}
.h3_c00356{height:74.160352px;}
.ha_c00356{height:80.100000px;}
.h1_c00356{height:1263.000000px;}
.h0_c00356{height:1263.240000px;}
.w1_c00356{width:892.500000px;}
.w0_c00356{width:892.800000px;}
.x0_c00356{left:0.000000px;}
.x20_c00356{left:119.849100px;}
.x18_c00356{left:121.140000px;}
.x1_c00356{left:125.925000px;}
.x21_c00356{left:140.370000px;}
.x19_c00356{left:142.005000px;}
.x1a_c00356{left:173.685000px;}
.x13_c00356{left:175.455000px;}
.x6_c00356{left:176.680950px;}
.x3_c00356{left:177.743400px;}
.x24_c00356{left:241.365000px;}
.x4_c00356{left:245.685000px;}
.x25_c00356{left:269.205000px;}
.x5_c00356{left:273.750000px;}
.x23_c00356{left:284.190000px;}
.x2_c00356{left:297.150000px;}
.x14_c00356{left:325.050000px;}
.x7_c00356{left:355.125000px;}
.x15_c00356{left:356.250000px;}
.x8_c00356{left:384.585000px;}
.x1d_c00356{left:401.775000px;}
.x1b_c00356{left:411.480000px;}
.x26_c00356{left:423.555000px;}
.x1c_c00356{left:448.770000px;}
.x22_c00356{left:466.215000px;}
.xf_c00356{left:487.320000px;}
.x1e_c00356{left:502.035000px;}
.x10_c00356{left:522.825000px;}
.x11_c00356{left:548.445000px;}
.xc_c00356{left:561.360000px;}
.x12_c00356{left:576.285000px;}
.xd_c00356{left:586.605000px;}
.x16_c00356{left:589.125000px;}
.x9_c00356{left:595.605000px;}
.xe_c00356{left:615.360000px;}
.x17_c00356{left:617.865000px;}
.xa_c00356{left:624.165000px;}
.x1f_c00356{left:632.535000px;}
.xb_c00356{left:643.110000px;}
.x28_c00356{left:849.735000px;}
.x27_c00356{left:850.785000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls36_c00356{letter-spacing:-2.277333pt;}
.ls3d_c00356{letter-spacing:-2.184000pt;}
.ls5b_c00356{letter-spacing:-2.146667pt;}
.ls89_c00356{letter-spacing:-2.116800pt;}
.ls7c_c00356{letter-spacing:-2.052960pt;}
.ls49_c00356{letter-spacing:-1.809600pt;}
.ls75_c00356{letter-spacing:-1.734720pt;}
.ls3a_c00356{letter-spacing:-1.716000pt;}
.ls86_c00356{letter-spacing:-1.703520pt;}
.ls37_c00356{letter-spacing:-1.579200pt;}
.ls52_c00356{letter-spacing:-1.572480pt;}
.ls71_c00356{letter-spacing:-1.553760pt;}
.ls42_c00356{letter-spacing:-1.516320pt;}
.ls47_c00356{letter-spacing:-1.460160pt;}
.ls73_c00356{letter-spacing:-1.453920pt;}
.ls80_c00356{letter-spacing:-1.391520pt;}
.ls48_c00356{letter-spacing:-1.366560pt;}
.ls4f_c00356{letter-spacing:-1.347840pt;}
.ls79_c00356{letter-spacing:-1.341600pt;}
.ls50_c00356{letter-spacing:-1.322880pt;}
.ls88_c00356{letter-spacing:-1.303680pt;}
.ls8a_c00356{letter-spacing:-1.285440pt;}
.ls41_c00356{letter-spacing:-1.210560pt;}
.ls68_c00356{letter-spacing:-1.141920pt;}
.ls38_c00356{letter-spacing:-1.128960pt;}
.ls56_c00356{letter-spacing:-1.023360pt;}
.ls4c_c00356{letter-spacing:-0.892320pt;}
.ls6a_c00356{letter-spacing:-0.879840pt;}
.ls8b_c00356{letter-spacing:-0.767520pt;}
.ls53_c00356{letter-spacing:-0.761280pt;}
.ls43_c00356{letter-spacing:-0.730080pt;}
.ls4a_c00356{letter-spacing:-0.705120pt;}
.ls6d_c00356{letter-spacing:-0.680160pt;}
.ls5e_c00356{letter-spacing:-0.648960pt;}
.ls7e_c00356{letter-spacing:-0.624000pt;}
.ls4d_c00356{letter-spacing:-0.617760pt;}
.ls76_c00356{letter-spacing:-0.574080pt;}
.ls66_c00356{letter-spacing:-0.567840pt;}
.ls72_c00356{letter-spacing:-0.561600pt;}
.ls62_c00356{letter-spacing:-0.549120pt;}
.ls7b_c00356{letter-spacing:-0.542880pt;}
.ls74_c00356{letter-spacing:-0.530400pt;}
.ls4b_c00356{letter-spacing:-0.524160pt;}
.ls46_c00356{letter-spacing:-0.492960pt;}
.ls69_c00356{letter-spacing:-0.474240pt;}
.ls40_c00356{letter-spacing:-0.468000pt;}
.ls85_c00356{letter-spacing:-0.455520pt;}
.ls4e_c00356{letter-spacing:-0.430560pt;}
.ls51_c00356{letter-spacing:-0.418080pt;}
.ls77_c00356{letter-spacing:-0.380640pt;}
.ls60_c00356{letter-spacing:-0.374400pt;}
.ls7a_c00356{letter-spacing:-0.355680pt;}
.ls3b_c00356{letter-spacing:-0.343200pt;}
.ls6b_c00356{letter-spacing:-0.318240pt;}
.ls55_c00356{letter-spacing:-0.305760pt;}
.ls7f_c00356{letter-spacing:-0.299520pt;}
.ls58_c00356{letter-spacing:-0.287040pt;}
.ls7d_c00356{letter-spacing:-0.280800pt;}
.ls3f_c00356{letter-spacing:-0.268320pt;}
.ls67_c00356{letter-spacing:-0.262080pt;}
.ls39_c00356{letter-spacing:-0.249600pt;}
.ls87_c00356{letter-spacing:-0.237120pt;}
.ls82_c00356{letter-spacing:-0.199680pt;}
.ls57_c00356{letter-spacing:-0.187200pt;}
.ls81_c00356{letter-spacing:-0.174720pt;}
.ls61_c00356{letter-spacing:-0.156000pt;}
.ls5d_c00356{letter-spacing:-0.143520pt;}
.ls59_c00356{letter-spacing:-0.131040pt;}
.ls3c_c00356{letter-spacing:-0.124800pt;}
.ls6c_c00356{letter-spacing:-0.118560pt;}
.ls84_c00356{letter-spacing:-0.106080pt;}
.ls70_c00356{letter-spacing:-0.087360pt;}
.ls6e_c00356{letter-spacing:-0.062400pt;}
.ls5c_c00356{letter-spacing:-0.056160pt;}
.ls63_c00356{letter-spacing:-0.049920pt;}
.ls45_c00356{letter-spacing:-0.037440pt;}
.ls65_c00356{letter-spacing:-0.031200pt;}
.ls44_c00356{letter-spacing:-0.012480pt;}
.ls3e_c00356{letter-spacing:0.000000pt;}
.ls23_c00356{letter-spacing:0.006240pt;}
.lsf_c00356{letter-spacing:0.024960pt;}
.lse_c00356{letter-spacing:0.031200pt;}
.ls5f_c00356{letter-spacing:0.043680pt;}
.ls28_c00356{letter-spacing:0.056160pt;}
.ls29_c00356{letter-spacing:0.081120pt;}
.ls22_c00356{letter-spacing:0.093600pt;}
.ls35_c00356{letter-spacing:0.106080pt;}
.ls20_c00356{letter-spacing:0.112320pt;}
.ls24_c00356{letter-spacing:0.118560pt;}
.ls1c_c00356{letter-spacing:0.124800pt;}
.ls8c_c00356{letter-spacing:0.162027pt;}
.ls10_c00356{letter-spacing:0.180960pt;}
.ls5_c00356{letter-spacing:0.199680pt;}
.ls13_c00356{letter-spacing:0.212160pt;}
.ls1f_c00356{letter-spacing:0.218400pt;}
.ls1_c00356{letter-spacing:0.237120pt;}
.ls1a_c00356{letter-spacing:0.243360pt;}
.ls2d_c00356{letter-spacing:0.261440pt;}
.lsd_c00356{letter-spacing:0.262080pt;}
.ls27_c00356{letter-spacing:0.268320pt;}
.ls25_c00356{letter-spacing:0.274560pt;}
.ls12_c00356{letter-spacing:0.293280pt;}
.ls6f_c00356{letter-spacing:0.299520pt;}
.ls11_c00356{letter-spacing:0.330720pt;}
.ls2c_c00356{letter-spacing:0.349440pt;}
.ls17_c00356{letter-spacing:0.361920pt;}
.ls16_c00356{letter-spacing:0.368160pt;}
.ls15_c00356{letter-spacing:0.405600pt;}
.lsc_c00356{letter-spacing:0.418080pt;}
.ls78_c00356{letter-spacing:0.455520pt;}
.ls0_c00356{letter-spacing:0.474240pt;}
.ls5a_c00356{letter-spacing:0.492960pt;}
.ls2a_c00356{letter-spacing:0.511680pt;}
.ls1e_c00356{letter-spacing:0.517920pt;}
.ls7_c00356{letter-spacing:0.565440pt;}
.ls2e_c00356{letter-spacing:0.571520pt;}
.ls1b_c00356{letter-spacing:0.574080pt;}
.ls64_c00356{letter-spacing:0.586560pt;}
.ls19_c00356{letter-spacing:0.599040pt;}
.lsb_c00356{letter-spacing:0.605280pt;}
.ls32_c00356{letter-spacing:0.642720pt;}
.ls9_c00356{letter-spacing:0.667680pt;}
.ls4_c00356{letter-spacing:0.711360pt;}
.ls3_c00356{letter-spacing:0.820800pt;}
.ls2_c00356{letter-spacing:0.832960pt;}
.lsa_c00356{letter-spacing:0.848640pt;}
.ls1d_c00356{letter-spacing:0.905920pt;}
.ls8_c00356{letter-spacing:0.978880pt;}
.ls2f_c00356{letter-spacing:0.992160pt;}
.ls6_c00356{letter-spacing:0.997120pt;}
.ls54_c00356{letter-spacing:1.057920pt;}
.ls33_c00356{letter-spacing:1.085760pt;}
.ls2b_c00356{letter-spacing:1.123200pt;}
.ls26_c00356{letter-spacing:1.160640pt;}
.ls18_c00356{letter-spacing:1.167360pt;}
.ls21_c00356{letter-spacing:1.266720pt;}
.ls34_c00356{letter-spacing:1.553760pt;}
.ls31_c00356{letter-spacing:1.572480pt;}
.ls83_c00356{letter-spacing:1.603680pt;}
.ls30_c00356{letter-spacing:1.940640pt;}
.ls14_c00356{letter-spacing:2.208960pt;}
.ws5_c00356{word-spacing:0.000000pt;}
.ws0_c00356{word-spacing:2.405547pt;}
.ws3_c00356{word-spacing:3.720000pt;}
.ws4_c00356{word-spacing:10.429013pt;}
.ws2_c00356{word-spacing:14.809600pt;}
.ws1_c00356{word-spacing:17.317760pt;}
._18_c00356{margin-left:-4.049760pt;}
._17_c00356{margin-left:-2.803680pt;}
._8_c00356{margin-left:-1.483520pt;}
._1_c00356{width:0.936320pt;}
._3_c00356{width:2.152800pt;}
._0_c00356{width:3.494400pt;}
._6_c00356{width:4.506133pt;}
._2_c00356{width:6.177600pt;}
._5_c00356{width:7.787520pt;}
._7_c00356{width:9.110080pt;}
._4_c00356{width:11.069760pt;}
._b_c00356{width:12.074400pt;}
._9_c00356{width:13.147680pt;}
._a_c00356{width:14.220960pt;}
._16_c00356{width:17.388587pt;}
._10_c00356{width:18.638880pt;}
._c_c00356{width:19.668480pt;}
._f_c00356{width:21.752640pt;}
._d_c00356{width:23.543520pt;}
._e_c00356{width:25.396800pt;}
._14_c00356{width:40.148160pt;}
._13_c00356{width:43.455360pt;}
._11_c00356{width:46.257120pt;}
._15_c00356{width:47.180640pt;}
._12_c00356{width:48.110400pt;}
.fs5_c00356{font-size:46.080000pt;}
.fs6_c00356{font-size:47.360000pt;}
.fs7_c00356{font-size:52.266667pt;}
.fs9_c00356{font-size:58.666667pt;}
.fs3_c00356{font-size:60.800000pt;}
.fs4_c00356{font-size:61.333333pt;}
.fs2_c00356{font-size:62.400000pt;}
.fs0_c00356{font-size:65.066667pt;}
.fs1_c00356{font-size:67.200000pt;}
.fs8_c00356{font-size:68.266667pt;}
.y0_c00356{bottom:0.000000pt;}
.y1e_c00356{bottom:59.840000pt;}
.y1d_c00356{bottom:136.960000pt;}
.y1c_c00356{bottom:136.967333pt;}
.y1b_c00356{bottom:164.813333pt;}
.y1a_c00356{bottom:219.207333pt;}
.y19_c00356{bottom:247.053333pt;}
.y18_c00356{bottom:301.773333pt;}
.y17_c00356{bottom:329.614933pt;}
.y16_c00356{bottom:357.133333pt;}
.y15_c00356{bottom:411.520533pt;}
.y14_c00356{bottom:438.726933pt;}
.y13_c00356{bottom:465.933333pt;}
.y12_c00356{bottom:521.600000pt;}
.y11_c00356{bottom:521.600533pt;}
.y20_c00356{bottom:546.253333pt;}
.y1f_c00356{bottom:549.440000pt;}
.y10_c00356{bottom:551.053333pt;}
.yf_c00356{bottom:607.346933pt;}
.ye_c00356{bottom:634.880933pt;}
.yd_c00356{bottom:662.726933pt;}
.yc_c00356{bottom:689.933333pt;}
.yb_c00356{bottom:717.453333pt;}
.ya_c00356{bottom:772.480000pt;}
.y9_c00356{bottom:799.693333pt;}
.y8_c00356{bottom:827.213333pt;}
.y7_c00356{bottom:881.933333pt;}
.y5_c00356{bottom:909.451200pt;}
.y6_c00356{bottom:909.453333pt;}
.y3_c00356{bottom:964.799333pt;}
.y4_c00356{bottom:964.800000pt;}
.y2_c00356{bottom:992.333333pt;}
.y1_c00356{bottom:1060.480000pt;}
.h7_c00356{height:30.689280pt;}
.h8_c00356{height:31.541760pt;}
.h9_c00356{height:51.296875pt;}
.h5_c00356{height:59.642187pt;}
.hb_c00356{height:61.187500pt;}
.h4_c00356{height:61.242187pt;}
.h2_c00356{height:63.859375pt;}
.h6_c00356{height:63.968750pt;}
.h3_c00356{height:65.920312pt;}
.ha_c00356{height:71.200000pt;}
.h1_c00356{height:1122.666667pt;}
.h0_c00356{height:1122.880000pt;}
.w1_c00356{width:793.333333pt;}
.w0_c00356{width:793.600000pt;}
.x0_c00356{left:0.000000pt;}
.x20_c00356{left:106.532533pt;}
.x18_c00356{left:107.680000pt;}
.x1_c00356{left:111.933333pt;}
.x21_c00356{left:124.773333pt;}
.x19_c00356{left:126.226667pt;}
.x1a_c00356{left:154.386667pt;}
.x13_c00356{left:155.960000pt;}
.x6_c00356{left:157.049733pt;}
.x3_c00356{left:157.994133pt;}
.x24_c00356{left:214.546667pt;}
.x4_c00356{left:218.386667pt;}
.x25_c00356{left:239.293333pt;}
.x5_c00356{left:243.333333pt;}
.x23_c00356{left:252.613333pt;}
.x2_c00356{left:264.133333pt;}
.x14_c00356{left:288.933333pt;}
.x7_c00356{left:315.666667pt;}
.x15_c00356{left:316.666667pt;}
.x8_c00356{left:341.853333pt;}
.x1d_c00356{left:357.133333pt;}
.x1b_c00356{left:365.760000pt;}
.x26_c00356{left:376.493333pt;}
.x1c_c00356{left:398.906667pt;}
.x22_c00356{left:414.413333pt;}
.xf_c00356{left:433.173333pt;}
.x1e_c00356{left:446.253333pt;}
.x10_c00356{left:464.733333pt;}
.x11_c00356{left:487.506667pt;}
.xc_c00356{left:498.986667pt;}
.x12_c00356{left:512.253333pt;}
.xd_c00356{left:521.426667pt;}
.x16_c00356{left:523.666667pt;}
.x9_c00356{left:529.426667pt;}
.xe_c00356{left:546.986667pt;}
.x17_c00356{left:549.213333pt;}
.xa_c00356{left:554.813333pt;}
.x1f_c00356{left:562.253333pt;}
.xb_c00356{left:571.653333pt;}
.x28_c00356{left:755.320000pt;}
.x27_c00356{left:756.253333pt;}
}





/* 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_c00357 {
    display:none;
  }
  .loading-indicator_c00357.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00357 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_c00357 { 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_c00357" -> "#page-container .classname_c00357")
 */
.pf_c00357 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00357 { /* 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_c00357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00357 { /* 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_c00357 { /* 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_c00357 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00357 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00357 {overflow:visible;}
  }
}
.c_c00357 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00357 { /* 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_c00357:after { /* webkit #35443 */
  content: '';
}
.t_c00357:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00357 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 */
}
.__c00357 { /* 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_c00357 { /* info for Javascript */
  display:none;
}
.l_c00357 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00357 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00357 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00357: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_c00357 {
    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_c00357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00357.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_c00357 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00357;src:url('chunks/assets/font_9ee5a3b27155e67e9acf4d43.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.284668;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_c00357;src:url('chunks/assets/font_8e142b876d38c11dccfd0752.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.284180;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_c00357;src:url('chunks/assets/font_e5cc58055fcca96b297ee0ca.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;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:ff4_c00357;src:url('chunks/assets/font_bf12bac9c3d9a6793460122f.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:1.311035;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_c00357;src:url('chunks/assets/font_5e77e7d9946658721b5242cf.woff2')format("woff");}.ff5_c00357{font-family:ff5_c00357;line-height:0.666000;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;}
.mc_c00357{transform:matrix(0.144737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144737,0.000000,0.000000,0.250000,0,0);}
.m4_c00357{transform:matrix(0.193866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193866,0.000000,0.000000,0.250000,0,0);}
.m12_c00357{transform:matrix(0.196481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196481,0.000000,0.000000,0.250000,0,0);}
.m14_c00357{transform:matrix(0.224979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224979,0.000000,0.000000,0.250000,0,0);}
.ma_c00357{transform:matrix(0.227381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227381,0.000000,0.000000,0.250000,0,0);}
.m9_c00357{transform:matrix(0.234610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234610,0.000000,0.000000,0.250000,0,0);}
.md_c00357{transform:matrix(0.236713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236713,0.000000,0.000000,0.250000,0,0);}
.m13_c00357{transform:matrix(0.237633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237633,0.000000,0.000000,0.250000,0,0);}
.mf_c00357{transform:matrix(0.237983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237983,0.000000,0.000000,0.250000,0,0);}
.m7_c00357{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m2_c00357{transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);}
.m11_c00357{transform:matrix(0.242365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242365,0.000000,0.000000,0.250000,0,0);}
.m6_c00357{transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);}
.me_c00357{transform:matrix(0.243731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243731,0.000000,0.000000,0.250000,0,0);}
.m8_c00357{transform:matrix(0.244784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244784,0.000000,0.000000,0.250000,0,0);}
.mb_c00357{transform:matrix(0.245431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245431,0.000000,0.000000,0.250000,0,0);}
.m5_c00357{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m3_c00357{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m10_c00357{transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);}
.m1_c00357{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);}
.m0_c00357{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls8c_c00357{letter-spacing:-2.520000px;}
.ls54_c00357{letter-spacing:-2.436000px;}
.ls6e_c00357{letter-spacing:-2.415000px;}
.ls6d_c00357{letter-spacing:-2.394000px;}
.ls77_c00357{letter-spacing:-2.310000px;}
.ls47_c00357{letter-spacing:-2.234160px;}
.ls72_c00357{letter-spacing:-2.192400px;}
.ls50_c00357{letter-spacing:-2.136720px;}
.ls52_c00357{letter-spacing:-1.927920px;}
.ls6b_c00357{letter-spacing:-1.886160px;}
.ls5e_c00357{letter-spacing:-1.823520px;}
.ls49_c00357{letter-spacing:-1.774800px;}
.ls7d_c00357{letter-spacing:-1.767840px;}
.ls4b_c00357{letter-spacing:-1.760880px;}
.ls61_c00357{letter-spacing:-1.691280px;}
.ls66_c00357{letter-spacing:-1.649520px;}
.ls58_c00357{letter-spacing:-1.600800px;}
.ls55_c00357{letter-spacing:-1.593840px;}
.ls86_c00357{letter-spacing:-1.531200px;}
.ls48_c00357{letter-spacing:-1.503360px;}
.ls79_c00357{letter-spacing:-1.426800px;}
.ls53_c00357{letter-spacing:-1.294560px;}
.ls7a_c00357{letter-spacing:-1.218000px;}
.ls51_c00357{letter-spacing:-1.190160px;}
.ls4e_c00357{letter-spacing:-1.148400px;}
.ls64_c00357{letter-spacing:-1.120560px;}
.ls4c_c00357{letter-spacing:-1.113600px;}
.ls46_c00357{letter-spacing:-1.023120px;}
.ls82_c00357{letter-spacing:-0.981360px;}
.ls63_c00357{letter-spacing:-0.897840px;}
.ls4d_c00357{letter-spacing:-0.828240px;}
.ls67_c00357{letter-spacing:-0.793440px;}
.ls5c_c00357{letter-spacing:-0.765600px;}
.ls6f_c00357{letter-spacing:-0.744720px;}
.ls80_c00357{letter-spacing:-0.689040px;}
.ls69_c00357{letter-spacing:-0.626400px;}
.ls6c_c00357{letter-spacing:-0.619440px;}
.ls81_c00357{letter-spacing:-0.515040px;}
.ls76_c00357{letter-spacing:-0.494160px;}
.ls57_c00357{letter-spacing:-0.487200px;}
.ls5b_c00357{letter-spacing:-0.480240px;}
.ls4f_c00357{letter-spacing:-0.466320px;}
.ls4a_c00357{letter-spacing:-0.452400px;}
.ls84_c00357{letter-spacing:-0.445440px;}
.ls83_c00357{letter-spacing:-0.438480px;}
.ls5f_c00357{letter-spacing:-0.431520px;}
.ls75_c00357{letter-spacing:-0.424560px;}
.ls70_c00357{letter-spacing:-0.313200px;}
.ls89_c00357{letter-spacing:-0.292320px;}
.ls87_c00357{letter-spacing:-0.285360px;}
.ls44_c00357{letter-spacing:-0.271440px;}
.ls5d_c00357{letter-spacing:-0.250560px;}
.ls68_c00357{letter-spacing:-0.236640px;}
.ls8d_c00357{letter-spacing:-0.229680px;}
.ls65_c00357{letter-spacing:-0.222720px;}
.ls59_c00357{letter-spacing:-0.215760px;}
.ls73_c00357{letter-spacing:-0.208800px;}
.ls7f_c00357{letter-spacing:-0.194880px;}
.ls45_c00357{letter-spacing:-0.187920px;}
.ls71_c00357{letter-spacing:-0.180960px;}
.ls60_c00357{letter-spacing:-0.139200px;}
.ls8b_c00357{letter-spacing:-0.132240px;}
.ls85_c00357{letter-spacing:-0.097440px;}
.ls56_c00357{letter-spacing:-0.090480px;}
.ls88_c00357{letter-spacing:-0.083520px;}
.ls6a_c00357{letter-spacing:-0.076560px;}
.ls74_c00357{letter-spacing:-0.062640px;}
.ls62_c00357{letter-spacing:-0.055680px;}
.ls78_c00357{letter-spacing:-0.027840px;}
.ls7b_c00357{letter-spacing:-0.013920px;}
.ls5a_c00357{letter-spacing:0.000000px;}
.lsf_c00357{letter-spacing:0.006960px;}
.ls2_c00357{letter-spacing:0.013920px;}
.ls11_c00357{letter-spacing:0.027840px;}
.ls23_c00357{letter-spacing:0.041760px;}
.ls2b_c00357{letter-spacing:0.055680px;}
.ls35_c00357{letter-spacing:0.062640px;}
.ls3c_c00357{letter-spacing:0.083520px;}
.ls6_c00357{letter-spacing:0.090480px;}
.ls9_c00357{letter-spacing:0.097440px;}
.ls15_c00357{letter-spacing:0.104400px;}
.ls21_c00357{letter-spacing:0.146160px;}
.ls16_c00357{letter-spacing:0.153120px;}
.ls12_c00357{letter-spacing:0.160080px;}
.ls29_c00357{letter-spacing:0.167040px;}
.ls8a_c00357{letter-spacing:0.174000px;}
.ls2d_c00357{letter-spacing:0.208800px;}
.ls3a_c00357{letter-spacing:0.222720px;}
.ls3e_c00357{letter-spacing:0.223740px;}
.ls38_c00357{letter-spacing:0.229680px;}
.ls1d_c00357{letter-spacing:0.236640px;}
.lsc_c00357{letter-spacing:0.257520px;}
.ls3_c00357{letter-spacing:0.292320px;}
.ls8_c00357{letter-spacing:0.299280px;}
.ls1_c00357{letter-spacing:0.306240px;}
.ls39_c00357{letter-spacing:0.313200px;}
.ls3d_c00357{letter-spacing:0.320160px;}
.ls7e_c00357{letter-spacing:0.327120px;}
.ls26_c00357{letter-spacing:0.334080px;}
.ls14_c00357{letter-spacing:0.341040px;}
.ls8e_c00357{letter-spacing:0.345600px;}
.ls31_c00357{letter-spacing:0.348000px;}
.ls25_c00357{letter-spacing:0.354960px;}
.ls17_c00357{letter-spacing:0.361920px;}
.ls1a_c00357{letter-spacing:0.368880px;}
.ls1e_c00357{letter-spacing:0.375840px;}
.ls1c_c00357{letter-spacing:0.403680px;}
.ls2f_c00357{letter-spacing:0.459360px;}
.ls28_c00357{letter-spacing:0.480240px;}
.ls32_c00357{letter-spacing:0.522000px;}
.ls2e_c00357{letter-spacing:0.535920px;}
.ls19_c00357{letter-spacing:0.542880px;}
.ls40_c00357{letter-spacing:0.556800px;}
.ls3b_c00357{letter-spacing:0.570720px;}
.ls0_c00357{letter-spacing:0.577680px;}
.ls13_c00357{letter-spacing:0.584640px;}
.ls22_c00357{letter-spacing:0.591600px;}
.ls3f_c00357{letter-spacing:0.603420px;}
.lsb_c00357{letter-spacing:0.637320px;}
.ls1b_c00357{letter-spacing:0.675120px;}
.ls18_c00357{letter-spacing:0.737760px;}
.ls5_c00357{letter-spacing:0.752580px;}
.ls27_c00357{letter-spacing:0.759360px;}
.ls2c_c00357{letter-spacing:0.883920px;}
.ls7_c00357{letter-spacing:0.888180px;}
.ls34_c00357{letter-spacing:0.932640px;}
.ls4_c00357{letter-spacing:0.942420px;}
.ls10_c00357{letter-spacing:0.981360px;}
.ls1f_c00357{letter-spacing:1.002240px;}
.lsd_c00357{letter-spacing:1.017000px;}
.ls37_c00357{letter-spacing:1.057680px;}
.lsa_c00357{letter-spacing:1.098360px;}
.ls42_c00357{letter-spacing:1.113600px;}
.lse_c00357{letter-spacing:1.139040px;}
.ls20_c00357{letter-spacing:1.240740px;}
.ls30_c00357{letter-spacing:1.398960px;}
.ls7c_c00357{letter-spacing:1.405920px;}
.ls36_c00357{letter-spacing:1.447680px;}
.ls33_c00357{letter-spacing:1.607760px;}
.ls2a_c00357{letter-spacing:1.983600px;}
.ls24_c00357{letter-spacing:2.164560px;}
.ls41_c00357{letter-spacing:2.442960px;}
.ls43_c00357{letter-spacing:2.940000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{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__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00357{word-spacing:0.000000px;}
.ws4_c00357{word-spacing:5.154780px;}
.ws0_c00357{word-spacing:14.249640px;}
.ws1_c00357{word-spacing:19.837440px;}
.ws2_c00357{word-spacing:28.852200px;}
.ws3_c00357{word-spacing:39.960600px;}
._12_c00357{margin-left:-5.579280px;}
._15_c00357{margin-left:-2.484720px;}
._7_c00357{margin-left:-1.130160px;}
._0_c00357{width:1.266720px;}
._2_c00357{width:2.888400px;}
._5_c00357{width:4.036800px;}
._3_c00357{width:5.978640px;}
._1_c00357{width:7.134000px;}
._4_c00357{width:9.082800px;}
._6_c00357{width:10.405200px;}
._8_c00357{width:11.449200px;}
._d_c00357{width:13.398000px;}
._b_c00357{width:14.588160px;}
._9_c00357{width:15.875760px;}
._c_c00357{width:17.038080px;}
._a_c00357{width:18.450960px;}
._f_c00357{width:20.525040px;}
._10_c00357{width:22.327680px;}
._e_c00357{width:23.928480px;}
._11_c00357{width:25.431840px;}
._14_c00357{width:28.007040px;}
._13_c00357{width:33.317520px;}
._18_c00357{width:38.913360px;}
._17_c00357{width:43.033680px;}
._16_c00357{width:47.522880px;}
.fc0_c00357{color:transparent;}
.fs7_c00357{font-size:54.720000px;}
.fs9_c00357{font-size:57.600000px;}
.fs0_c00357{font-size:58.800000px;}
.fs5_c00357{font-size:66.000000px;}
.fs2_c00357{font-size:67.800000px;}
.fs3_c00357{font-size:68.400000px;}
.fs4_c00357{font-size:69.000000px;}
.fs1_c00357{font-size:69.600000px;}
.fs8_c00357{font-size:71.400000px;}
.fs6_c00357{font-size:72.000000px;}
.y0_c00357{bottom:0.000000px;}
.y1d_c00357{bottom:69.120015px;}
.y1c_c00357{bottom:188.280015px;}
.y1b_c00357{bottom:219.255015px;}
.y1a_c00357{bottom:250.575015px;}
.y19_c00357{bottom:312.468615px;}
.y18_c00357{bottom:342.727215px;}
.y17_c00357{bottom:372.968415px;}
.y16_c00357{bottom:403.575015px;}
.y14_c00357{bottom:465.476415px;}
.y15_c00357{bottom:465.480015px;}
.y13_c00357{bottom:495.735015px;}
.y12_c00357{bottom:557.655015px;}
.y11_c00357{bottom:557.662815px;}
.y10_c00357{bottom:588.608415px;}
.yf_c00357{bottom:619.215015px;}
.ye_c00357{bottom:680.760015px;}
.yd_c00357{bottom:714.255015px;}
.yc_c00357{bottom:714.256215px;}
.yb_c00357{bottom:746.655015px;}
.ya_c00357{bottom:808.221615px;}
.y9_c00357{bottom:838.828215px;}
.y8_c00357{bottom:869.782815px;}
.y7_c00357{bottom:900.720015px;}
.y6_c00357{bottom:962.295015px;}
.y5_c00357{bottom:992.880015px;}
.y4_c00357{bottom:1023.480015px;}
.y3_c00357{bottom:1054.095015px;}
.y2_c00357{bottom:1116.000015px;}
.y1_c00357{bottom:1191.975015px;}
.h8_c00357{height:36.443520px;}
.ha_c00357{height:56.531250px;}
.h2_c00357{height:57.708984px;}
.h4_c00357{height:67.130859px;}
.h3_c00357{height:68.308594px;}
.h6_c00357{height:68.835938px;}
.h9_c00357{height:71.957813px;}
.h5_c00357{height:71.964844px;}
.h7_c00357{height:72.562500px;}
.h1_c00357{height:1263.000000px;}
.h0_c00357{height:1263.240015px;}
.w1_c00357{width:892.500000px;}
.w0_c00357{width:892.800015px;}
.x0_c00357{left:0.000000px;}
.x1_c00357{left:123.765015px;}
.x6_c00357{left:124.872015px;}
.xb_c00357{left:170.925015px;}
.x2_c00357{left:177.405015px;}
.x14_c00357{left:182.325015px;}
.x5_c00357{left:185.565015px;}
.x15_c00357{left:205.920015px;}
.x16_c00357{left:262.605015px;}
.x17_c00357{left:286.725015px;}
.xc_c00357{left:324.900015px;}
.xd_c00357{left:348.660015px;}
.x11_c00357{left:363.495015px;}
.x18_c00357{left:379.605015px;}
.x7_c00357{left:391.155015px;}
.x12_c00357{left:395.460015px;}
.x19_c00357{left:405.165015px;}
.x8_c00357{left:417.090015px;}
.x1f_c00357{left:425.715015px;}
.x1a_c00357{left:426.735015px;}
.x13_c00357{left:465.630015px;}
.xe_c00357{left:482.895015px;}
.xf_c00357{left:510.315015px;}
.x1b_c00357{left:521.835015px;}
.x3_c00357{left:552.015015px;}
.x9_c00357{left:564.765015px;}
.x4_c00357{left:568.605015px;}
.x1c_c00357{left:591.015015px;}
.xa_c00357{left:597.090015px;}
.x10_c00357{left:672.615015px;}
.x1d_c00357{left:697.650015px;}
.x1e_c00357{left:716.205015px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls8c_c00357{letter-spacing:-2.240000pt;}
.ls54_c00357{letter-spacing:-2.165333pt;}
.ls6e_c00357{letter-spacing:-2.146667pt;}
.ls6d_c00357{letter-spacing:-2.128000pt;}
.ls77_c00357{letter-spacing:-2.053333pt;}
.ls47_c00357{letter-spacing:-1.985920pt;}
.ls72_c00357{letter-spacing:-1.948800pt;}
.ls50_c00357{letter-spacing:-1.899307pt;}
.ls52_c00357{letter-spacing:-1.713707pt;}
.ls6b_c00357{letter-spacing:-1.676587pt;}
.ls5e_c00357{letter-spacing:-1.620907pt;}
.ls49_c00357{letter-spacing:-1.577600pt;}
.ls7d_c00357{letter-spacing:-1.571413pt;}
.ls4b_c00357{letter-spacing:-1.565227pt;}
.ls61_c00357{letter-spacing:-1.503360pt;}
.ls66_c00357{letter-spacing:-1.466240pt;}
.ls58_c00357{letter-spacing:-1.422933pt;}
.ls55_c00357{letter-spacing:-1.416747pt;}
.ls86_c00357{letter-spacing:-1.361067pt;}
.ls48_c00357{letter-spacing:-1.336320pt;}
.ls79_c00357{letter-spacing:-1.268267pt;}
.ls53_c00357{letter-spacing:-1.150720pt;}
.ls7a_c00357{letter-spacing:-1.082667pt;}
.ls51_c00357{letter-spacing:-1.057920pt;}
.ls4e_c00357{letter-spacing:-1.020800pt;}
.ls64_c00357{letter-spacing:-0.996053pt;}
.ls4c_c00357{letter-spacing:-0.989867pt;}
.ls46_c00357{letter-spacing:-0.909440pt;}
.ls82_c00357{letter-spacing:-0.872320pt;}
.ls63_c00357{letter-spacing:-0.798080pt;}
.ls4d_c00357{letter-spacing:-0.736213pt;}
.ls67_c00357{letter-spacing:-0.705280pt;}
.ls5c_c00357{letter-spacing:-0.680533pt;}
.ls6f_c00357{letter-spacing:-0.661973pt;}
.ls80_c00357{letter-spacing:-0.612480pt;}
.ls69_c00357{letter-spacing:-0.556800pt;}
.ls6c_c00357{letter-spacing:-0.550613pt;}
.ls81_c00357{letter-spacing:-0.457813pt;}
.ls76_c00357{letter-spacing:-0.439253pt;}
.ls57_c00357{letter-spacing:-0.433067pt;}
.ls5b_c00357{letter-spacing:-0.426880pt;}
.ls4f_c00357{letter-spacing:-0.414507pt;}
.ls4a_c00357{letter-spacing:-0.402133pt;}
.ls84_c00357{letter-spacing:-0.395947pt;}
.ls83_c00357{letter-spacing:-0.389760pt;}
.ls5f_c00357{letter-spacing:-0.383573pt;}
.ls75_c00357{letter-spacing:-0.377387pt;}
.ls70_c00357{letter-spacing:-0.278400pt;}
.ls89_c00357{letter-spacing:-0.259840pt;}
.ls87_c00357{letter-spacing:-0.253653pt;}
.ls44_c00357{letter-spacing:-0.241280pt;}
.ls5d_c00357{letter-spacing:-0.222720pt;}
.ls68_c00357{letter-spacing:-0.210347pt;}
.ls8d_c00357{letter-spacing:-0.204160pt;}
.ls65_c00357{letter-spacing:-0.197973pt;}
.ls59_c00357{letter-spacing:-0.191787pt;}
.ls73_c00357{letter-spacing:-0.185600pt;}
.ls7f_c00357{letter-spacing:-0.173227pt;}
.ls45_c00357{letter-spacing:-0.167040pt;}
.ls71_c00357{letter-spacing:-0.160853pt;}
.ls60_c00357{letter-spacing:-0.123733pt;}
.ls8b_c00357{letter-spacing:-0.117547pt;}
.ls85_c00357{letter-spacing:-0.086613pt;}
.ls56_c00357{letter-spacing:-0.080427pt;}
.ls88_c00357{letter-spacing:-0.074240pt;}
.ls6a_c00357{letter-spacing:-0.068053pt;}
.ls74_c00357{letter-spacing:-0.055680pt;}
.ls62_c00357{letter-spacing:-0.049493pt;}
.ls78_c00357{letter-spacing:-0.024747pt;}
.ls7b_c00357{letter-spacing:-0.012373pt;}
.ls5a_c00357{letter-spacing:0.000000pt;}
.lsf_c00357{letter-spacing:0.006187pt;}
.ls2_c00357{letter-spacing:0.012373pt;}
.ls11_c00357{letter-spacing:0.024747pt;}
.ls23_c00357{letter-spacing:0.037120pt;}
.ls2b_c00357{letter-spacing:0.049493pt;}
.ls35_c00357{letter-spacing:0.055680pt;}
.ls3c_c00357{letter-spacing:0.074240pt;}
.ls6_c00357{letter-spacing:0.080427pt;}
.ls9_c00357{letter-spacing:0.086613pt;}
.ls15_c00357{letter-spacing:0.092800pt;}
.ls21_c00357{letter-spacing:0.129920pt;}
.ls16_c00357{letter-spacing:0.136107pt;}
.ls12_c00357{letter-spacing:0.142293pt;}
.ls29_c00357{letter-spacing:0.148480pt;}
.ls8a_c00357{letter-spacing:0.154667pt;}
.ls2d_c00357{letter-spacing:0.185600pt;}
.ls3a_c00357{letter-spacing:0.197973pt;}
.ls3e_c00357{letter-spacing:0.198880pt;}
.ls38_c00357{letter-spacing:0.204160pt;}
.ls1d_c00357{letter-spacing:0.210347pt;}
.lsc_c00357{letter-spacing:0.228907pt;}
.ls3_c00357{letter-spacing:0.259840pt;}
.ls8_c00357{letter-spacing:0.266027pt;}
.ls1_c00357{letter-spacing:0.272213pt;}
.ls39_c00357{letter-spacing:0.278400pt;}
.ls3d_c00357{letter-spacing:0.284587pt;}
.ls7e_c00357{letter-spacing:0.290773pt;}
.ls26_c00357{letter-spacing:0.296960pt;}
.ls14_c00357{letter-spacing:0.303147pt;}
.ls8e_c00357{letter-spacing:0.307200pt;}
.ls31_c00357{letter-spacing:0.309333pt;}
.ls25_c00357{letter-spacing:0.315520pt;}
.ls17_c00357{letter-spacing:0.321707pt;}
.ls1a_c00357{letter-spacing:0.327893pt;}
.ls1e_c00357{letter-spacing:0.334080pt;}
.ls1c_c00357{letter-spacing:0.358827pt;}
.ls2f_c00357{letter-spacing:0.408320pt;}
.ls28_c00357{letter-spacing:0.426880pt;}
.ls32_c00357{letter-spacing:0.464000pt;}
.ls2e_c00357{letter-spacing:0.476373pt;}
.ls19_c00357{letter-spacing:0.482560pt;}
.ls40_c00357{letter-spacing:0.494933pt;}
.ls3b_c00357{letter-spacing:0.507307pt;}
.ls0_c00357{letter-spacing:0.513493pt;}
.ls13_c00357{letter-spacing:0.519680pt;}
.ls22_c00357{letter-spacing:0.525867pt;}
.ls3f_c00357{letter-spacing:0.536373pt;}
.lsb_c00357{letter-spacing:0.566507pt;}
.ls1b_c00357{letter-spacing:0.600107pt;}
.ls18_c00357{letter-spacing:0.655787pt;}
.ls5_c00357{letter-spacing:0.668960pt;}
.ls27_c00357{letter-spacing:0.674987pt;}
.ls2c_c00357{letter-spacing:0.785707pt;}
.ls7_c00357{letter-spacing:0.789493pt;}
.ls34_c00357{letter-spacing:0.829013pt;}
.ls4_c00357{letter-spacing:0.837707pt;}
.ls10_c00357{letter-spacing:0.872320pt;}
.ls1f_c00357{letter-spacing:0.890880pt;}
.lsd_c00357{letter-spacing:0.904000pt;}
.ls37_c00357{letter-spacing:0.940160pt;}
.lsa_c00357{letter-spacing:0.976320pt;}
.ls42_c00357{letter-spacing:0.989867pt;}
.lse_c00357{letter-spacing:1.012480pt;}
.ls20_c00357{letter-spacing:1.102880pt;}
.ls30_c00357{letter-spacing:1.243520pt;}
.ls7c_c00357{letter-spacing:1.249707pt;}
.ls36_c00357{letter-spacing:1.286827pt;}
.ls33_c00357{letter-spacing:1.429120pt;}
.ls2a_c00357{letter-spacing:1.763200pt;}
.ls24_c00357{letter-spacing:1.924053pt;}
.ls41_c00357{letter-spacing:2.171520pt;}
.ls43_c00357{letter-spacing:2.613333pt;}
.ws5_c00357{word-spacing:0.000000pt;}
.ws4_c00357{word-spacing:4.582027pt;}
.ws0_c00357{word-spacing:12.666347pt;}
.ws1_c00357{word-spacing:17.633280pt;}
.ws2_c00357{word-spacing:25.646400pt;}
.ws3_c00357{word-spacing:35.520533pt;}
._12_c00357{margin-left:-4.959360pt;}
._15_c00357{margin-left:-2.208640pt;}
._7_c00357{margin-left:-1.004587pt;}
._0_c00357{width:1.125973pt;}
._2_c00357{width:2.567467pt;}
._5_c00357{width:3.588267pt;}
._3_c00357{width:5.314347pt;}
._1_c00357{width:6.341333pt;}
._4_c00357{width:8.073600pt;}
._6_c00357{width:9.249067pt;}
._8_c00357{width:10.177067pt;}
._d_c00357{width:11.909333pt;}
._b_c00357{width:12.967253pt;}
._9_c00357{width:14.111787pt;}
._c_c00357{width:15.144960pt;}
._a_c00357{width:16.400853pt;}
._f_c00357{width:18.244480pt;}
._10_c00357{width:19.846827pt;}
._e_c00357{width:21.269760pt;}
._11_c00357{width:22.606080pt;}
._14_c00357{width:24.895147pt;}
._13_c00357{width:29.615573pt;}
._18_c00357{width:34.589653pt;}
._17_c00357{width:38.252160pt;}
._16_c00357{width:42.242560pt;}
.fs7_c00357{font-size:48.640000pt;}
.fs9_c00357{font-size:51.200000pt;}
.fs0_c00357{font-size:52.266667pt;}
.fs5_c00357{font-size:58.666667pt;}
.fs2_c00357{font-size:60.266667pt;}
.fs3_c00357{font-size:60.800000pt;}
.fs4_c00357{font-size:61.333333pt;}
.fs1_c00357{font-size:61.866667pt;}
.fs8_c00357{font-size:63.466667pt;}
.fs6_c00357{font-size:64.000000pt;}
.y0_c00357{bottom:0.000000pt;}
.y1d_c00357{bottom:61.440013pt;}
.y1c_c00357{bottom:167.360013pt;}
.y1b_c00357{bottom:194.893347pt;}
.y1a_c00357{bottom:222.733347pt;}
.y19_c00357{bottom:277.749880pt;}
.y18_c00357{bottom:304.646413pt;}
.y17_c00357{bottom:331.527480pt;}
.y16_c00357{bottom:358.733347pt;}
.y14_c00357{bottom:413.756813pt;}
.y15_c00357{bottom:413.760013pt;}
.y13_c00357{bottom:440.653347pt;}
.y12_c00357{bottom:495.693347pt;}
.y11_c00357{bottom:495.700280pt;}
.y10_c00357{bottom:523.207480pt;}
.yf_c00357{bottom:550.413347pt;}
.ye_c00357{bottom:605.120013pt;}
.yd_c00357{bottom:634.893347pt;}
.yc_c00357{bottom:634.894413pt;}
.yb_c00357{bottom:663.693347pt;}
.ya_c00357{bottom:718.419213pt;}
.y9_c00357{bottom:745.625080pt;}
.y8_c00357{bottom:773.140280pt;}
.y7_c00357{bottom:800.640013pt;}
.y6_c00357{bottom:855.373347pt;}
.y5_c00357{bottom:882.560013pt;}
.y4_c00357{bottom:909.760013pt;}
.y3_c00357{bottom:936.973347pt;}
.y2_c00357{bottom:992.000013pt;}
.y1_c00357{bottom:1059.533347pt;}
.h8_c00357{height:32.394240pt;}
.ha_c00357{height:50.250000pt;}
.h2_c00357{height:51.296875pt;}
.h4_c00357{height:59.671875pt;}
.h3_c00357{height:60.718750pt;}
.h6_c00357{height:61.187500pt;}
.h9_c00357{height:63.962500pt;}
.h5_c00357{height:63.968750pt;}
.h7_c00357{height:64.500000pt;}
.h1_c00357{height:1122.666667pt;}
.h0_c00357{height:1122.880013pt;}
.w1_c00357{width:793.333333pt;}
.w0_c00357{width:793.600013pt;}
.x0_c00357{left:0.000000pt;}
.x1_c00357{left:110.013347pt;}
.x6_c00357{left:110.997347pt;}
.xb_c00357{left:151.933347pt;}
.x2_c00357{left:157.693347pt;}
.x14_c00357{left:162.066680pt;}
.x5_c00357{left:164.946680pt;}
.x15_c00357{left:183.040013pt;}
.x16_c00357{left:233.426680pt;}
.x17_c00357{left:254.866680pt;}
.xc_c00357{left:288.800013pt;}
.xd_c00357{left:309.920013pt;}
.x11_c00357{left:323.106680pt;}
.x18_c00357{left:337.426680pt;}
.x7_c00357{left:347.693347pt;}
.x12_c00357{left:351.520013pt;}
.x19_c00357{left:360.146680pt;}
.x8_c00357{left:370.746680pt;}
.x1f_c00357{left:378.413347pt;}
.x1a_c00357{left:379.320013pt;}
.x13_c00357{left:413.893347pt;}
.xe_c00357{left:429.240013pt;}
.xf_c00357{left:453.613347pt;}
.x1b_c00357{left:463.853347pt;}
.x3_c00357{left:490.680013pt;}
.x9_c00357{left:502.013347pt;}
.x4_c00357{left:505.426680pt;}
.x1c_c00357{left:525.346680pt;}
.xa_c00357{left:530.746680pt;}
.x10_c00357{left:597.880013pt;}
.x1d_c00357{left:620.133347pt;}
.x1e_c00357{left:636.626680pt;}
}





/* 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_c00358 {
    display:none;
  }
  .loading-indicator_c00358.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00358 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_c00358 { 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_c00358" -> "#page-container .classname_c00358")
 */
.pf_c00358 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00358 { /* 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_c00358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00358 { /* 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_c00358 { /* 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_c00358 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00358 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00358 {overflow:visible;}
  }
}
.c_c00358 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00358 { /* 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_c00358:after { /* webkit #35443 */
  content: '';
}
.t_c00358:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00358 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 */
}
.__c00358 { /* 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_c00358 { /* info for Javascript */
  display:none;
}
.l_c00358 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00358 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00358 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00358: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_c00358 {
    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_c00358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00358.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_c00358 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00358;src:url('chunks/assets/font_3b1736d73fe37ea64ea40dde.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.284668;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_c00358;src:url('chunks/assets/font_a6db21c5c9624643879f8b53.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.284180;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_c00358;src:url('chunks/assets/font_ff7617dbd81adc6335e09a35.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.284180;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_c00358;src:url('chunks/assets/font_3895652a506619fdbd651750.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.311035;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_c00358;src:url('chunks/assets/font_e99ff1929e247703f8e69e22.woff2')format("woff");}.ff5_c00358{font-family:ff5_c00358;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;}
.m6_c00358{transform:matrix(0.114766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114766,0.000000,0.000000,0.250000,0,0);}
.m5_c00358{transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201612,0.000000,0.000000,0.250000,0,0);}
.m3_c00358{transform:matrix(0.207136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207136,0.000000,0.000000,0.250000,0,0);}
.m7_c00358{transform:matrix(0.232522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232522,0.000000,0.000000,0.250000,0,0);}
.mb_c00358{transform:matrix(0.242839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242839,0.000000,0.000000,0.250000,0,0);}
.md_c00358{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m4_c00358{transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);}
.m0_c00358{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m9_c00358{transform:matrix(0.246288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246288,0.000000,0.000000,0.250000,0,0);}
.m8_c00358{transform:matrix(0.247009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247009,0.000000,0.000000,0.250000,0,0);}
.m2_c00358{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m1_c00358{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);}
.ma_c00358{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.mc_c00358{transform:matrix(0.254696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254696,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls76_c00358{letter-spacing:-2.478000px;}
.ls64_c00358{letter-spacing:-2.415000px;}
.ls7b_c00358{letter-spacing:-2.373000px;}
.ls60_c00358{letter-spacing:-2.352000px;}
.ls7a_c00358{letter-spacing:-2.331000px;}
.ls69_c00358{letter-spacing:-1.959600px;}
.ls6b_c00358{letter-spacing:-1.794000px;}
.ls7d_c00358{letter-spacing:-1.667880px;}
.ls68_c00358{letter-spacing:-1.428300px;}
.ls70_c00358{letter-spacing:-1.235100px;}
.ls6e_c00358{letter-spacing:-1.166100px;}
.ls62_c00358{letter-spacing:-1.159200px;}
.ls83_c00358{letter-spacing:-1.110900px;}
.ls73_c00358{letter-spacing:-1.083300px;}
.ls8d_c00358{letter-spacing:-0.988200px;}
.ls66_c00358{letter-spacing:-0.952200px;}
.ls71_c00358{letter-spacing:-0.945300px;}
.ls6f_c00358{letter-spacing:-0.862500px;}
.ls8c_c00358{letter-spacing:-0.834900px;}
.ls85_c00358{letter-spacing:-0.821100px;}
.ls8a_c00358{letter-spacing:-0.800400px;}
.ls81_c00358{letter-spacing:-0.705120px;}
.ls65_c00358{letter-spacing:-0.690000px;}
.ls89_c00358{letter-spacing:-0.676200px;}
.ls6c_c00358{letter-spacing:-0.503700px;}
.ls88_c00358{letter-spacing:-0.379500px;}
.ls74_c00358{letter-spacing:-0.358800px;}
.ls87_c00358{letter-spacing:-0.345000px;}
.ls82_c00358{letter-spacing:-0.324300px;}
.ls7f_c00358{letter-spacing:-0.311880px;}
.ls80_c00358{letter-spacing:-0.237300px;}
.ls67_c00358{letter-spacing:-0.200100px;}
.ls6d_c00358{letter-spacing:-0.138000px;}
.ls63_c00358{letter-spacing:-0.117300px;}
.ls7e_c00358{letter-spacing:-0.115260px;}
.ls86_c00358{letter-spacing:-0.048300px;}
.ls6a_c00358{letter-spacing:-0.041400px;}
.ls77_c00358{letter-spacing:-0.020700px;}
.ls61_c00358{letter-spacing:0.000000px;}
.lsb_c00358{letter-spacing:0.048300px;}
.ls8e_c00358{letter-spacing:0.080100px;}
.ls8_c00358{letter-spacing:0.144900px;}
.ls37_c00358{letter-spacing:0.186300px;}
.ls4a_c00358{letter-spacing:0.200100px;}
.ls2e_c00358{letter-spacing:0.207000px;}
.ls49_c00358{letter-spacing:0.220800px;}
.ls57_c00358{letter-spacing:0.227700px;}
.ls51_c00358{letter-spacing:0.234600px;}
.ls19_c00358{letter-spacing:0.241500px;}
.ls4_c00358{letter-spacing:0.296700px;}
.ls7_c00358{letter-spacing:0.331200px;}
.lsd_c00358{letter-spacing:0.351900px;}
.ls55_c00358{letter-spacing:0.365700px;}
.ls3e_c00358{letter-spacing:0.366120px;}
.ls32_c00358{letter-spacing:0.372600px;}
.ls33_c00358{letter-spacing:0.379500px;}
.ls18_c00358{letter-spacing:0.386400px;}
.ls5b_c00358{letter-spacing:0.393300px;}
.ls3b_c00358{letter-spacing:0.400200px;}
.ls4e_c00358{letter-spacing:0.407100px;}
.ls46_c00358{letter-spacing:0.414000px;}
.ls2f_c00358{letter-spacing:0.434700px;}
.ls5_c00358{letter-spacing:0.441600px;}
.ls72_c00358{letter-spacing:0.448500px;}
.ls24_c00358{letter-spacing:0.455400px;}
.ls35_c00358{letter-spacing:0.462300px;}
.ls4b_c00358{letter-spacing:0.469200px;}
.ls41_c00358{letter-spacing:0.476100px;}
.ls75_c00358{letter-spacing:0.496800px;}
.ls27_c00358{letter-spacing:0.503700px;}
.ls42_c00358{letter-spacing:0.510600px;}
.ls5e_c00358{letter-spacing:0.512460px;}
.ls36_c00358{letter-spacing:0.524400px;}
.ls30_c00358{letter-spacing:0.531300px;}
.ls14_c00358{letter-spacing:0.538200px;}
.ls25_c00358{letter-spacing:0.545100px;}
.lsc_c00358{letter-spacing:0.552000px;}
.ls43_c00358{letter-spacing:0.558900px;}
.ls45_c00358{letter-spacing:0.565800px;}
.ls26_c00358{letter-spacing:0.579600px;}
.ls10_c00358{letter-spacing:0.586500px;}
.ls3_c00358{letter-spacing:0.593400px;}
.ls8b_c00358{letter-spacing:0.614100px;}
.ls9_c00358{letter-spacing:0.621000px;}
.ls16_c00358{letter-spacing:0.627900px;}
.ls3c_c00358{letter-spacing:0.641700px;}
.ls47_c00358{letter-spacing:0.669300px;}
.ls2c_c00358{letter-spacing:0.676200px;}
.ls1a_c00358{letter-spacing:0.683100px;}
.lsf_c00358{letter-spacing:0.690000px;}
.ls38_c00358{letter-spacing:0.696900px;}
.ls28_c00358{letter-spacing:0.703800px;}
.ls29_c00358{letter-spacing:0.724500px;}
.lsa_c00358{letter-spacing:0.745200px;}
.ls58_c00358{letter-spacing:0.759000px;}
.ls5f_c00358{letter-spacing:0.772800px;}
.ls23_c00358{letter-spacing:0.779700px;}
.ls3f_c00358{letter-spacing:0.807300px;}
.ls48_c00358{letter-spacing:0.814200px;}
.lse_c00358{letter-spacing:0.821100px;}
.ls1b_c00358{letter-spacing:0.841800px;}
.ls78_c00358{letter-spacing:0.848700px;}
.ls13_c00358{letter-spacing:0.855600px;}
.ls4d_c00358{letter-spacing:0.869400px;}
.ls39_c00358{letter-spacing:0.903900px;}
.ls4c_c00358{letter-spacing:0.910800px;}
.ls6_c00358{letter-spacing:0.924600px;}
.ls50_c00358{letter-spacing:0.938400px;}
.ls21_c00358{letter-spacing:0.945300px;}
.ls15_c00358{letter-spacing:0.952200px;}
.ls59_c00358{letter-spacing:0.959100px;}
.ls1f_c00358{letter-spacing:0.966000px;}
.ls20_c00358{letter-spacing:0.972900px;}
.ls12_c00358{letter-spacing:0.979800px;}
.ls31_c00358{letter-spacing:1.000500px;}
.ls0_c00358{letter-spacing:1.003860px;}
.ls2_c00358{letter-spacing:1.021200px;}
.ls44_c00358{letter-spacing:1.028100px;}
.ls1d_c00358{letter-spacing:1.062600px;}
.ls5c_c00358{letter-spacing:1.076400px;}
.ls1c_c00358{letter-spacing:1.097100px;}
.ls11_c00358{letter-spacing:1.145400px;}
.ls4f_c00358{letter-spacing:1.200600px;}
.ls3d_c00358{letter-spacing:1.206840px;}
.ls3a_c00358{letter-spacing:1.235100px;}
.ls53_c00358{letter-spacing:1.283400px;}
.ls40_c00358{letter-spacing:1.311000px;}
.ls7c_c00358{letter-spacing:1.403460px;}
.ls5d_c00358{letter-spacing:1.418040px;}
.ls56_c00358{letter-spacing:1.435200px;}
.ls2d_c00358{letter-spacing:1.469700px;}
.ls2a_c00358{letter-spacing:1.490400px;}
.ls1e_c00358{letter-spacing:1.545600px;}
.ls1_c00358{letter-spacing:1.677780px;}
.ls79_c00358{letter-spacing:1.844820px;}
.ls54_c00358{letter-spacing:2.014800px;}
.ls2b_c00358{letter-spacing:2.028600px;}
.ls34_c00358{letter-spacing:2.042400px;}
.ls17_c00358{letter-spacing:2.090700px;}
.ls5a_c00358{letter-spacing:2.318400px;}
.ls22_c00358{letter-spacing:2.539200px;}
.ls52_c00358{letter-spacing:2.732400px;}
.ls84_c00358{letter-spacing:3.450000px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{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__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00358{word-spacing:0.000000px;}
.ws1_c00358{word-spacing:0.041400px;}
.ws0_c00358{word-spacing:8.542200px;}
.ws2_c00358{word-spacing:22.770000px;}
.ws3_c00358{word-spacing:34.148100px;}
._19_c00358{margin-left:-8.147880px;}
._0_c00358{margin-left:-7.121820px;}
._9_c00358{margin-left:-5.669400px;}
._a_c00358{margin-left:-4.112400px;}
._1_c00358{margin-left:-2.649600px;}
._4_c00358{margin-left:-1.297200px;}
._2_c00358{width:1.863000px;}
._18_c00358{width:3.036000px;}
._5_c00358{width:4.036500px;}
._6_c00358{width:5.313000px;}
._3_c00358{width:7.134600px;}
._8_c00358{width:8.694000px;}
._11_c00358{width:10.322400px;}
._7_c00358{width:11.385000px;}
._c_c00358{width:13.082400px;}
._e_c00358{width:14.545200px;}
._b_c00358{width:16.435800px;}
._d_c00358{width:20.348100px;}
._12_c00358{width:23.272560px;}
._10_c00358{width:24.522600px;}
._f_c00358{width:26.482200px;}
._13_c00358{width:28.110600px;}
._16_c00358{width:30.318600px;}
._1a_c00358{width:31.705500px;}
._14_c00358{width:33.120000px;}
._15_c00358{width:34.293000px;}
._17_c00358{width:37.101300px;}
.fc0_c00358{color:transparent;}
.fs7_c00358{font-size:53.400000px;}
.fs4_c00358{font-size:66.600000px;}
.fs0_c00358{font-size:67.200000px;}
.fs5_c00358{font-size:67.800000px;}
.fs2_c00358{font-size:69.000000px;}
.fs1_c00358{font-size:70.200000px;}
.fs3_c00358{font-size:70.800000px;}
.fs6_c00358{font-size:73.200000px;}
.y0_c00358{bottom:0.000000px;}
.y21_c00358{bottom:61.200006px;}
.y20_c00358{bottom:120.234006px;}
.y1f_c00358{bottom:151.560006px;}
.y1e_c00358{bottom:212.771256px;}
.y1c_c00358{bottom:243.720006px;}
.y1d_c00358{bottom:243.735006px;}
.y1b_c00358{bottom:274.683756px;}
.y1a_c00358{bottom:336.249006px;}
.y19_c00358{bottom:367.575006px;}
.y17_c00358{bottom:428.773506px;}
.y18_c00358{bottom:428.775006px;}
.y15_c00358{bottom:459.718506px;}
.y16_c00358{bottom:459.720006px;}
.y14_c00358{bottom:490.320006px;}
.y13_c00358{bottom:521.640006px;}
.y11_c00358{bottom:583.919256px;}
.y12_c00358{bottom:583.935006px;}
.y10_c00358{bottom:646.536756px;}
.yf_c00358{bottom:677.862756px;}
.ye_c00358{bottom:708.843756px;}
.yd_c00358{bottom:739.790256px;}
.yc_c00358{bottom:770.771256px;}
.yb_c00358{bottom:801.735006px;}
.ya_c00358{bottom:863.994006px;}
.y9_c00358{bottom:894.975006px;}
.y8_c00358{bottom:925.926006px;}
.y7_c00358{bottom:987.836256px;}
.y6_c00358{bottom:1018.455006px;}
.y5_c00358{bottom:1018.462506px;}
.y4_c00358{bottom:1080.735006px;}
.y3_c00358{bottom:1080.735756px;}
.y2_c00358{bottom:1111.320006px;}
.y1_c00358{bottom:1188.360006px;}
.hc_c00358{height:55.694531px;}
.h8_c00358{height:65.331738px;}
.h2_c00358{height:65.953125px;}
.h4_c00358{height:67.719727px;}
.h5_c00358{height:67.743727px;}
.h6_c00358{height:67.782727px;}
.h9_c00358{height:68.329688px;}
.h3_c00358{height:68.863184px;}
.h7_c00358{height:69.486328px;}
.ha_c00358{height:70.713281px;}
.hb_c00358{height:71.865797px;}
.h1_c00358{height:1263.000000px;}
.h0_c00358{height:1263.240006px;}
.w1_c00358{width:892.500000px;}
.w0_c00358{width:892.799998px;}
.x0_c00358{left:0.000000px;}
.x17_c00358{left:117.689998px;}
.xa_c00358{left:118.767748px;}
.x1_c00358{left:123.404999px;}
.x1b_c00358{left:151.724998px;}
.xb_c00358{left:171.552748px;}
.x9_c00358{left:172.604998px;}
.x3_c00358{left:173.798999px;}
.x6_c00358{left:175.609499px;}
.x1c_c00358{left:183.854998px;}
.x1d_c00358{left:208.979998px;}
.x10_c00358{left:227.564999px;}
.x4_c00358{left:242.084998px;}
.x11_c00358{left:245.759998px;}
.x2_c00358{left:263.294999px;}
.x20_c00358{left:267.974999px;}
.x5_c00358{left:269.759999px;}
.x12_c00358{left:288.524999px;}
.x13_c00358{left:337.454998px;}
.x14_c00358{left:376.724999px;}
.x15_c00358{left:403.019998px;}
.x7_c00358{left:411.644999px;}
.x21_c00358{left:422.474999px;}
.xc_c00358{left:429.359998px;}
.x8_c00358{left:439.484998px;}
.xd_c00358{left:462.089998px;}
.x16_c00358{left:468.104998px;}
.x1e_c00358{left:499.499998px;}
.x1f_c00358{left:517.139998px;}
.x18_c00358{left:544.574998px;}
.x19_c00358{left:577.649999px;}
.xe_c00358{left:622.229999px;}
.x1a_c00358{left:630.539999px;}
.xf_c00358{left:643.934999px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls76_c00358{letter-spacing:-2.202667pt;}
.ls64_c00358{letter-spacing:-2.146667pt;}
.ls7b_c00358{letter-spacing:-2.109333pt;}
.ls60_c00358{letter-spacing:-2.090667pt;}
.ls7a_c00358{letter-spacing:-2.072000pt;}
.ls69_c00358{letter-spacing:-1.741867pt;}
.ls6b_c00358{letter-spacing:-1.594667pt;}
.ls7d_c00358{letter-spacing:-1.482560pt;}
.ls68_c00358{letter-spacing:-1.269600pt;}
.ls70_c00358{letter-spacing:-1.097867pt;}
.ls6e_c00358{letter-spacing:-1.036533pt;}
.ls62_c00358{letter-spacing:-1.030400pt;}
.ls83_c00358{letter-spacing:-0.987467pt;}
.ls73_c00358{letter-spacing:-0.962933pt;}
.ls8d_c00358{letter-spacing:-0.878400pt;}
.ls66_c00358{letter-spacing:-0.846400pt;}
.ls71_c00358{letter-spacing:-0.840267pt;}
.ls6f_c00358{letter-spacing:-0.766667pt;}
.ls8c_c00358{letter-spacing:-0.742133pt;}
.ls85_c00358{letter-spacing:-0.729867pt;}
.ls8a_c00358{letter-spacing:-0.711467pt;}
.ls81_c00358{letter-spacing:-0.626773pt;}
.ls65_c00358{letter-spacing:-0.613333pt;}
.ls89_c00358{letter-spacing:-0.601067pt;}
.ls6c_c00358{letter-spacing:-0.447733pt;}
.ls88_c00358{letter-spacing:-0.337333pt;}
.ls74_c00358{letter-spacing:-0.318933pt;}
.ls87_c00358{letter-spacing:-0.306667pt;}
.ls82_c00358{letter-spacing:-0.288267pt;}
.ls7f_c00358{letter-spacing:-0.277227pt;}
.ls80_c00358{letter-spacing:-0.210933pt;}
.ls67_c00358{letter-spacing:-0.177867pt;}
.ls6d_c00358{letter-spacing:-0.122667pt;}
.ls63_c00358{letter-spacing:-0.104267pt;}
.ls7e_c00358{letter-spacing:-0.102453pt;}
.ls86_c00358{letter-spacing:-0.042933pt;}
.ls6a_c00358{letter-spacing:-0.036800pt;}
.ls77_c00358{letter-spacing:-0.018400pt;}
.ls61_c00358{letter-spacing:0.000000pt;}
.lsb_c00358{letter-spacing:0.042933pt;}
.ls8e_c00358{letter-spacing:0.071200pt;}
.ls8_c00358{letter-spacing:0.128800pt;}
.ls37_c00358{letter-spacing:0.165600pt;}
.ls4a_c00358{letter-spacing:0.177867pt;}
.ls2e_c00358{letter-spacing:0.184000pt;}
.ls49_c00358{letter-spacing:0.196267pt;}
.ls57_c00358{letter-spacing:0.202400pt;}
.ls51_c00358{letter-spacing:0.208533pt;}
.ls19_c00358{letter-spacing:0.214667pt;}
.ls4_c00358{letter-spacing:0.263733pt;}
.ls7_c00358{letter-spacing:0.294400pt;}
.lsd_c00358{letter-spacing:0.312800pt;}
.ls55_c00358{letter-spacing:0.325067pt;}
.ls3e_c00358{letter-spacing:0.325440pt;}
.ls32_c00358{letter-spacing:0.331200pt;}
.ls33_c00358{letter-spacing:0.337333pt;}
.ls18_c00358{letter-spacing:0.343467pt;}
.ls5b_c00358{letter-spacing:0.349600pt;}
.ls3b_c00358{letter-spacing:0.355733pt;}
.ls4e_c00358{letter-spacing:0.361867pt;}
.ls46_c00358{letter-spacing:0.368000pt;}
.ls2f_c00358{letter-spacing:0.386400pt;}
.ls5_c00358{letter-spacing:0.392533pt;}
.ls72_c00358{letter-spacing:0.398667pt;}
.ls24_c00358{letter-spacing:0.404800pt;}
.ls35_c00358{letter-spacing:0.410933pt;}
.ls4b_c00358{letter-spacing:0.417067pt;}
.ls41_c00358{letter-spacing:0.423200pt;}
.ls75_c00358{letter-spacing:0.441600pt;}
.ls27_c00358{letter-spacing:0.447733pt;}
.ls42_c00358{letter-spacing:0.453867pt;}
.ls5e_c00358{letter-spacing:0.455520pt;}
.ls36_c00358{letter-spacing:0.466133pt;}
.ls30_c00358{letter-spacing:0.472267pt;}
.ls14_c00358{letter-spacing:0.478400pt;}
.ls25_c00358{letter-spacing:0.484533pt;}
.lsc_c00358{letter-spacing:0.490667pt;}
.ls43_c00358{letter-spacing:0.496800pt;}
.ls45_c00358{letter-spacing:0.502933pt;}
.ls26_c00358{letter-spacing:0.515200pt;}
.ls10_c00358{letter-spacing:0.521333pt;}
.ls3_c00358{letter-spacing:0.527467pt;}
.ls8b_c00358{letter-spacing:0.545867pt;}
.ls9_c00358{letter-spacing:0.552000pt;}
.ls16_c00358{letter-spacing:0.558133pt;}
.ls3c_c00358{letter-spacing:0.570400pt;}
.ls47_c00358{letter-spacing:0.594933pt;}
.ls2c_c00358{letter-spacing:0.601067pt;}
.ls1a_c00358{letter-spacing:0.607200pt;}
.lsf_c00358{letter-spacing:0.613333pt;}
.ls38_c00358{letter-spacing:0.619467pt;}
.ls28_c00358{letter-spacing:0.625600pt;}
.ls29_c00358{letter-spacing:0.644000pt;}
.lsa_c00358{letter-spacing:0.662400pt;}
.ls58_c00358{letter-spacing:0.674667pt;}
.ls5f_c00358{letter-spacing:0.686933pt;}
.ls23_c00358{letter-spacing:0.693067pt;}
.ls3f_c00358{letter-spacing:0.717600pt;}
.ls48_c00358{letter-spacing:0.723733pt;}
.lse_c00358{letter-spacing:0.729867pt;}
.ls1b_c00358{letter-spacing:0.748267pt;}
.ls78_c00358{letter-spacing:0.754400pt;}
.ls13_c00358{letter-spacing:0.760533pt;}
.ls4d_c00358{letter-spacing:0.772800pt;}
.ls39_c00358{letter-spacing:0.803467pt;}
.ls4c_c00358{letter-spacing:0.809600pt;}
.ls6_c00358{letter-spacing:0.821867pt;}
.ls50_c00358{letter-spacing:0.834133pt;}
.ls21_c00358{letter-spacing:0.840267pt;}
.ls15_c00358{letter-spacing:0.846400pt;}
.ls59_c00358{letter-spacing:0.852533pt;}
.ls1f_c00358{letter-spacing:0.858667pt;}
.ls20_c00358{letter-spacing:0.864800pt;}
.ls12_c00358{letter-spacing:0.870933pt;}
.ls31_c00358{letter-spacing:0.889333pt;}
.ls0_c00358{letter-spacing:0.892320pt;}
.ls2_c00358{letter-spacing:0.907733pt;}
.ls44_c00358{letter-spacing:0.913867pt;}
.ls1d_c00358{letter-spacing:0.944533pt;}
.ls5c_c00358{letter-spacing:0.956800pt;}
.ls1c_c00358{letter-spacing:0.975200pt;}
.ls11_c00358{letter-spacing:1.018133pt;}
.ls4f_c00358{letter-spacing:1.067200pt;}
.ls3d_c00358{letter-spacing:1.072747pt;}
.ls3a_c00358{letter-spacing:1.097867pt;}
.ls53_c00358{letter-spacing:1.140800pt;}
.ls40_c00358{letter-spacing:1.165333pt;}
.ls7c_c00358{letter-spacing:1.247520pt;}
.ls5d_c00358{letter-spacing:1.260480pt;}
.ls56_c00358{letter-spacing:1.275733pt;}
.ls2d_c00358{letter-spacing:1.306400pt;}
.ls2a_c00358{letter-spacing:1.324800pt;}
.ls1e_c00358{letter-spacing:1.373867pt;}
.ls1_c00358{letter-spacing:1.491360pt;}
.ls79_c00358{letter-spacing:1.639840pt;}
.ls54_c00358{letter-spacing:1.790933pt;}
.ls2b_c00358{letter-spacing:1.803200pt;}
.ls34_c00358{letter-spacing:1.815467pt;}
.ls17_c00358{letter-spacing:1.858400pt;}
.ls5a_c00358{letter-spacing:2.060800pt;}
.ls22_c00358{letter-spacing:2.257067pt;}
.ls52_c00358{letter-spacing:2.428800pt;}
.ls84_c00358{letter-spacing:3.066667pt;}
.ws4_c00358{word-spacing:0.000000pt;}
.ws1_c00358{word-spacing:0.036800pt;}
.ws0_c00358{word-spacing:7.593067pt;}
.ws2_c00358{word-spacing:20.240000pt;}
.ws3_c00358{word-spacing:30.353867pt;}
._19_c00358{margin-left:-7.242560pt;}
._0_c00358{margin-left:-6.330507pt;}
._9_c00358{margin-left:-5.039467pt;}
._a_c00358{margin-left:-3.655467pt;}
._1_c00358{margin-left:-2.355200pt;}
._4_c00358{margin-left:-1.153067pt;}
._2_c00358{width:1.656000pt;}
._18_c00358{width:2.698667pt;}
._5_c00358{width:3.588000pt;}
._6_c00358{width:4.722667pt;}
._3_c00358{width:6.341867pt;}
._8_c00358{width:7.728000pt;}
._11_c00358{width:9.175467pt;}
._7_c00358{width:10.120000pt;}
._c_c00358{width:11.628800pt;}
._e_c00358{width:12.929067pt;}
._b_c00358{width:14.609600pt;}
._d_c00358{width:18.087200pt;}
._12_c00358{width:20.686720pt;}
._10_c00358{width:21.797867pt;}
._f_c00358{width:23.539733pt;}
._13_c00358{width:24.987200pt;}
._16_c00358{width:26.949867pt;}
._1a_c00358{width:28.182667pt;}
._14_c00358{width:29.440000pt;}
._15_c00358{width:30.482667pt;}
._17_c00358{width:32.978933pt;}
.fs7_c00358{font-size:47.466667pt;}
.fs4_c00358{font-size:59.200000pt;}
.fs0_c00358{font-size:59.733333pt;}
.fs5_c00358{font-size:60.266667pt;}
.fs2_c00358{font-size:61.333333pt;}
.fs1_c00358{font-size:62.400000pt;}
.fs3_c00358{font-size:62.933333pt;}
.fs6_c00358{font-size:65.066667pt;}
.y0_c00358{bottom:0.000000pt;}
.y21_c00358{bottom:54.400005pt;}
.y20_c00358{bottom:106.874672pt;}
.y1f_c00358{bottom:134.720005pt;}
.y1e_c00358{bottom:189.130005pt;}
.y1c_c00358{bottom:216.640005pt;}
.y1d_c00358{bottom:216.653339pt;}
.y1b_c00358{bottom:244.163339pt;}
.y1a_c00358{bottom:298.888005pt;}
.y19_c00358{bottom:326.733339pt;}
.y17_c00358{bottom:381.132005pt;}
.y18_c00358{bottom:381.133339pt;}
.y15_c00358{bottom:408.638672pt;}
.y16_c00358{bottom:408.640005pt;}
.y14_c00358{bottom:435.840005pt;}
.y13_c00358{bottom:463.680005pt;}
.y11_c00358{bottom:519.039339pt;}
.y12_c00358{bottom:519.053339pt;}
.y10_c00358{bottom:574.699339pt;}
.yf_c00358{bottom:602.544672pt;}
.ye_c00358{bottom:630.083339pt;}
.yd_c00358{bottom:657.591339pt;}
.yc_c00358{bottom:685.130005pt;}
.yb_c00358{bottom:712.653339pt;}
.ya_c00358{bottom:767.994672pt;}
.y9_c00358{bottom:795.533339pt;}
.y8_c00358{bottom:823.045339pt;}
.y7_c00358{bottom:878.076672pt;}
.y6_c00358{bottom:905.293339pt;}
.y5_c00358{bottom:905.300005pt;}
.y4_c00358{bottom:960.653339pt;}
.y3_c00358{bottom:960.654005pt;}
.y2_c00358{bottom:987.840005pt;}
.y1_c00358{bottom:1056.320005pt;}
.hc_c00358{height:49.506250pt;}
.h8_c00358{height:58.072656pt;}
.h2_c00358{height:58.625000pt;}
.h4_c00358{height:60.195312pt;}
.h5_c00358{height:60.216646pt;}
.h6_c00358{height:60.251312pt;}
.h9_c00358{height:60.737500pt;}
.h3_c00358{height:61.211719pt;}
.h7_c00358{height:61.765625pt;}
.ha_c00358{height:62.856250pt;}
.hb_c00358{height:63.880708pt;}
.h1_c00358{height:1122.666667pt;}
.h0_c00358{height:1122.880005pt;}
.w1_c00358{width:793.333333pt;}
.w0_c00358{width:793.599999pt;}
.x0_c00358{left:0.000000pt;}
.x17_c00358{left:104.613332pt;}
.xa_c00358{left:105.571332pt;}
.x1_c00358{left:109.693332pt;}
.x1b_c00358{left:134.866665pt;}
.xb_c00358{left:152.491332pt;}
.x9_c00358{left:153.426665pt;}
.x3_c00358{left:154.487999pt;}
.x6_c00358{left:156.097332pt;}
.x1c_c00358{left:163.426665pt;}
.x1d_c00358{left:185.759999pt;}
.x10_c00358{left:202.279999pt;}
.x4_c00358{left:215.186665pt;}
.x11_c00358{left:218.453332pt;}
.x2_c00358{left:234.039999pt;}
.x20_c00358{left:238.199999pt;}
.x5_c00358{left:239.786665pt;}
.x12_c00358{left:256.466665pt;}
.x13_c00358{left:299.959999pt;}
.x14_c00358{left:334.866665pt;}
.x15_c00358{left:358.239999pt;}
.x7_c00358{left:365.906665pt;}
.x21_c00358{left:375.533332pt;}
.xc_c00358{left:381.653332pt;}
.x8_c00358{left:390.653332pt;}
.xd_c00358{left:410.746665pt;}
.x16_c00358{left:416.093332pt;}
.x1e_c00358{left:443.999999pt;}
.x1f_c00358{left:459.679999pt;}
.x18_c00358{left:484.066665pt;}
.x19_c00358{left:513.466665pt;}
.xe_c00358{left:553.093332pt;}
.x1a_c00358{left:560.479999pt;}
.xf_c00358{left:572.386665pt;}
}





/* 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_c00359 {
    display:none;
  }
  .loading-indicator_c00359.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00359 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_c00359 { 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_c00359" -> "#page-container .classname_c00359")
 */
.pf_c00359 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00359 { /* 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_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00359 { /* 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_c00359 { /* 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_c00359 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00359 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00359 {overflow:visible;}
  }
}
.c_c00359 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00359 { /* 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_c00359:after { /* webkit #35443 */
  content: '';
}
.t_c00359:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00359 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 */
}
.__c00359 { /* 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_c00359 { /* info for Javascript */
  display:none;
}
.l_c00359 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00359 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00359 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00359: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_c00359 {
    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_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00359.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_c00359 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00359;src:url('chunks/assets/font_ebef4832bb856ec3b8ca6e9b.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.284668;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_c00359;src:url('chunks/assets/font_3978534879799b56207b97ab.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.284180;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_c00359;src:url('chunks/assets/font_13034fef15926c41616ee9b3.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;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:ff4_c00359;src:url('chunks/assets/font_9590105a19b575c3c195679c.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:0.666000;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;}
.m9_c00359{transform:matrix(0.145836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145836,0.000000,0.000000,0.250000,0,0);}
.m5_c00359{transform:matrix(0.181839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181839,0.000000,0.000000,0.250000,0,0);}
.m2_c00359{transform:matrix(0.231394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231394,0.000000,0.000000,0.250000,0,0);}
.mb_c00359{transform:matrix(0.237514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237514,0.000000,0.000000,0.250000,0,0);}
.ma_c00359{transform:matrix(0.241280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241280,0.000000,0.000000,0.250000,0,0);}
.m4_c00359{transform:matrix(0.243239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243239,0.000000,0.000000,0.250000,0,0);}
.m0_c00359{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m8_c00359{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m7_c00359{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m3_c00359{transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);}
.m6_c00359{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m1_c00359{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);}
.v0_c00359{vertical-align:0.000000px;}
.ls4b_c00359{letter-spacing:-2.436000px;}
.ls72_c00359{letter-spacing:-2.415000px;}
.ls3b_c00359{letter-spacing:-2.352000px;}
.ls5a_c00359{letter-spacing:-2.324640px;}
.ls46_c00359{letter-spacing:-2.255040px;}
.ls3d_c00359{letter-spacing:-2.234160px;}
.ls9a_c00359{letter-spacing:-2.018400px;}
.lsa4_c00359{letter-spacing:-1.890000px;}
.ls7c_c00359{letter-spacing:-1.886160px;}
.ls4a_c00359{letter-spacing:-1.774800px;}
.ls48_c00359{letter-spacing:-1.760880px;}
.ls5f_c00359{letter-spacing:-1.649520px;}
.lsa0_c00359{letter-spacing:-1.552080px;}
.ls55_c00359{letter-spacing:-1.545120px;}
.ls4d_c00359{letter-spacing:-1.503360px;}
.ls80_c00359{letter-spacing:-1.475520px;}
.ls82_c00359{letter-spacing:-1.468560px;}
.ls8f_c00359{letter-spacing:-1.426800px;}
.ls94_c00359{letter-spacing:-1.343280px;}
.ls6d_c00359{letter-spacing:-1.336320px;}
.ls8c_c00359{letter-spacing:-1.322400px;}
.ls53_c00359{letter-spacing:-1.294560px;}
.ls49_c00359{letter-spacing:-1.266720px;}
.ls78_c00359{letter-spacing:-1.218000px;}
.ls47_c00359{letter-spacing:-1.211040px;}
.ls59_c00359{letter-spacing:-1.190160px;}
.ls6f_c00359{letter-spacing:-1.169280px;}
.ls51_c00359{letter-spacing:-1.148400px;}
.ls71_c00359{letter-spacing:-1.134480px;}
.ls45_c00359{letter-spacing:-1.106640px;}
.ls8b_c00359{letter-spacing:-1.099680px;}
.ls42_c00359{letter-spacing:-1.023120px;}
.ls83_c00359{letter-spacing:-1.002240px;}
.ls6c_c00359{letter-spacing:-0.981360px;}
.ls5e_c00359{letter-spacing:-0.974400px;}
.ls9c_c00359{letter-spacing:-0.939600px;}
.ls3e_c00359{letter-spacing:-0.911760px;}
.ls92_c00359{letter-spacing:-0.904800px;}
.ls84_c00359{letter-spacing:-0.897840px;}
.ls81_c00359{letter-spacing:-0.870000px;}
.ls8a_c00359{letter-spacing:-0.849120px;}
.ls88_c00359{letter-spacing:-0.835200px;}
.ls4e_c00359{letter-spacing:-0.821280px;}
.ls98_c00359{letter-spacing:-0.814320px;}
.ls56_c00359{letter-spacing:-0.800400px;}
.ls96_c00359{letter-spacing:-0.786480px;}
.ls85_c00359{letter-spacing:-0.779520px;}
.ls76_c00359{letter-spacing:-0.758640px;}
.ls69_c00359{letter-spacing:-0.723840px;}
.ls41_c00359{letter-spacing:-0.668160px;}
.ls64_c00359{letter-spacing:-0.654240px;}
.ls68_c00359{letter-spacing:-0.633360px;}
.ls87_c00359{letter-spacing:-0.626400px;}
.ls8e_c00359{letter-spacing:-0.591600px;}
.ls6e_c00359{letter-spacing:-0.563760px;}
.ls50_c00359{letter-spacing:-0.556800px;}
.ls7e_c00359{letter-spacing:-0.549840px;}
.ls89_c00359{letter-spacing:-0.535920px;}
.ls99_c00359{letter-spacing:-0.515040px;}
.ls52_c00359{letter-spacing:-0.487200px;}
.ls7b_c00359{letter-spacing:-0.480240px;}
.ls9d_c00359{letter-spacing:-0.473280px;}
.ls70_c00359{letter-spacing:-0.438480px;}
.ls60_c00359{letter-spacing:-0.431520px;}
.ls5b_c00359{letter-spacing:-0.417600px;}
.ls61_c00359{letter-spacing:-0.396720px;}
.ls74_c00359{letter-spacing:-0.382800px;}
.ls79_c00359{letter-spacing:-0.368880px;}
.ls62_c00359{letter-spacing:-0.354960px;}
.ls9f_c00359{letter-spacing:-0.339000px;}
.ls8d_c00359{letter-spacing:-0.327120px;}
.ls3c_c00359{letter-spacing:-0.320160px;}
.ls7d_c00359{letter-spacing:-0.313200px;}
.ls75_c00359{letter-spacing:-0.299280px;}
.ls67_c00359{letter-spacing:-0.292320px;}
.ls3f_c00359{letter-spacing:-0.285360px;}
.ls9e_c00359{letter-spacing:-0.278400px;}
.ls40_c00359{letter-spacing:-0.271440px;}
.ls66_c00359{letter-spacing:-0.264480px;}
.ls65_c00359{letter-spacing:-0.250560px;}
.ls58_c00359{letter-spacing:-0.243600px;}
.lsa1_c00359{letter-spacing:-0.236640px;}
.ls86_c00359{letter-spacing:-0.229680px;}
.ls57_c00359{letter-spacing:-0.208800px;}
.ls44_c00359{letter-spacing:-0.187920px;}
.ls7a_c00359{letter-spacing:-0.174000px;}
.ls77_c00359{letter-spacing:-0.167040px;}
.ls91_c00359{letter-spacing:-0.146160px;}
.lsa3_c00359{letter-spacing:-0.139200px;}
.ls93_c00359{letter-spacing:-0.111360px;}
.ls73_c00359{letter-spacing:-0.104400px;}
.ls54_c00359{letter-spacing:-0.097440px;}
.ls7f_c00359{letter-spacing:-0.090480px;}
.ls6b_c00359{letter-spacing:-0.076560px;}
.ls95_c00359{letter-spacing:-0.069600px;}
.ls63_c00359{letter-spacing:-0.041760px;}
.lsa2_c00359{letter-spacing:-0.027840px;}
.ls5c_c00359{letter-spacing:-0.006960px;}
.ls4f_c00359{letter-spacing:0.000000px;}
.ls1_c00359{letter-spacing:0.013920px;}
.ls1e_c00359{letter-spacing:0.020880px;}
.ls23_c00359{letter-spacing:0.027840px;}
.ls25_c00359{letter-spacing:0.041760px;}
.ls20_c00359{letter-spacing:0.048720px;}
.ls15_c00359{letter-spacing:0.055680px;}
.ls30_c00359{letter-spacing:0.062640px;}
.ls17_c00359{letter-spacing:0.069600px;}
.ls34_c00359{letter-spacing:0.090480px;}
.ls13_c00359{letter-spacing:0.118320px;}
.ls1b_c00359{letter-spacing:0.132240px;}
.ls21_c00359{letter-spacing:0.139200px;}
.ls11_c00359{letter-spacing:0.146160px;}
.ls2b_c00359{letter-spacing:0.153120px;}
.ls28_c00359{letter-spacing:0.160080px;}
.ls4_c00359{letter-spacing:0.194880px;}
.lsf_c00359{letter-spacing:0.208800px;}
.ls27_c00359{letter-spacing:0.222720px;}
.ls5d_c00359{letter-spacing:0.257520px;}
.ls3_c00359{letter-spacing:0.285360px;}
.ls2_c00359{letter-spacing:0.292320px;}
.ls19_c00359{letter-spacing:0.306240px;}
.ls9b_c00359{letter-spacing:0.313200px;}
.ls10_c00359{letter-spacing:0.334080px;}
.lse_c00359{letter-spacing:0.348000px;}
.ls39_c00359{letter-spacing:0.361920px;}
.ls26_c00359{letter-spacing:0.368880px;}
.ls16_c00359{letter-spacing:0.375840px;}
.ls6a_c00359{letter-spacing:0.382800px;}
.ls2a_c00359{letter-spacing:0.424560px;}
.ls37_c00359{letter-spacing:0.447480px;}
.ls2d_c00359{letter-spacing:0.459360px;}
.ls2f_c00359{letter-spacing:0.466320px;}
.lsd_c00359{letter-spacing:0.473280px;}
.ls1c_c00359{letter-spacing:0.480240px;}
.ls3a_c00359{letter-spacing:0.528960px;}
.lsb_c00359{letter-spacing:0.542880px;}
.ls38_c00359{letter-spacing:0.556800px;}
.ls32_c00359{letter-spacing:0.570720px;}
.ls1a_c00359{letter-spacing:0.576300px;}
.ls1d_c00359{letter-spacing:0.577680px;}
.ls36_c00359{letter-spacing:0.583080px;}
.ls43_c00359{letter-spacing:0.591600px;}
.lsa_c00359{letter-spacing:0.619440px;}
.ls90_c00359{letter-spacing:0.647280px;}
.ls29_c00359{letter-spacing:0.654240px;}
.ls4c_c00359{letter-spacing:0.716880px;}
.ls22_c00359{letter-spacing:0.723840px;}
.lsc_c00359{letter-spacing:0.758640px;}
.ls6_c00359{letter-spacing:0.786480px;}
.ls14_c00359{letter-spacing:0.883920px;}
.ls5_c00359{letter-spacing:0.942420px;}
.ls2e_c00359{letter-spacing:0.949200px;}
.ls8_c00359{letter-spacing:0.962760px;}
.ls7_c00359{letter-spacing:1.017000px;}
.ls1f_c00359{letter-spacing:1.057920px;}
.ls97_c00359{letter-spacing:1.127520px;}
.ls9_c00359{letter-spacing:1.139040px;}
.ls18_c00359{letter-spacing:1.240740px;}
.ls12_c00359{letter-spacing:1.447680px;}
.ls35_c00359{letter-spacing:1.552080px;}
.ls2c_c00359{letter-spacing:1.663440px;}
.ls0_c00359{letter-spacing:1.760880px;}
.ls24_c00359{letter-spacing:1.983600px;}
.ls31_c00359{letter-spacing:2.317680px;}
.ls33_c00359{letter-spacing:2.495040px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{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__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00359{word-spacing:-1.762560px;}
.ws3_c00359{word-spacing:-0.172200px;}
.ws5_c00359{word-spacing:0.000000px;}
.ws0_c00359{word-spacing:5.609640px;}
.ws4_c00359{word-spacing:7.082520px;}
.ws2_c00359{word-spacing:24.802800px;}
._0_c00359{margin-left:-6.660720px;}
._19_c00359{margin-left:-5.195640px;}
._12_c00359{margin-left:-3.580800px;}
._13_c00359{width:1.628640px;}
._d_c00359{width:3.162180px;}
._c_c00359{width:4.238640px;}
._18_c00359{width:5.526240px;}
._1_c00359{width:6.723360px;}
._2_c00359{width:8.143200px;}
._5_c00359{width:9.380880px;}
._e_c00359{width:10.526880px;}
._3_c00359{width:11.832000px;}
._f_c00359{width:12.885600px;}
._6_c00359{width:13.892160px;}
._a_c00359{width:14.897520px;}
._10_c00359{width:15.949680px;}
._b_c00359{width:17.017200px;}
._8_c00359{width:18.080640px;}
._7_c00359{width:19.169280px;}
._14_c00359{width:20.239680px;}
._4_c00359{width:21.241200px;}
._11_c00359{width:22.954080px;}
._17_c00359{width:24.124080px;}
._15_c00359{width:25.744320px;}
._16_c00359{width:26.894160px;}
._9_c00359{width:28.405920px;}
.fc0_c00359{color:transparent;}
.fs5_c00359{font-size:51.840000px;}
.fs6_c00359{font-size:54.000000px;}
.fs4_c00359{font-size:59.400000px;}
.fs0_c00359{font-size:67.200000px;}
.fs2_c00359{font-size:67.800000px;}
.fs3_c00359{font-size:69.000000px;}
.fs1_c00359{font-size:69.600000px;}
.y0_c00359{bottom:0.000000px;}
.y23_c00359{bottom:64.815015px;}
.y22_c00359{bottom:124.568415px;}
.y20_c00359{bottom:155.170815px;}
.y21_c00359{bottom:155.175015px;}
.y1f_c00359{bottom:185.760015px;}
.y1e_c00359{bottom:247.688415px;}
.y1d_c00359{bottom:278.295015px;}
.y1c_c00359{bottom:278.300415px;}
.y1b_c00359{bottom:309.255015px;}
.y1a_c00359{bottom:339.480015px;}
.y19_c00359{bottom:401.055015px;}
.y18_c00359{bottom:401.062815px;}
.y17_c00359{bottom:432.000015px;}
.y16_c00359{bottom:462.600015px;}
.y15_c00359{bottom:462.608415px;}
.y14_c00359{bottom:493.215015px;}
.y13_c00359{bottom:493.220415px;}
.y12_c00359{bottom:524.180415px;}
.y11_c00359{bottom:555.135015px;}
.y10_c00359{bottom:586.455015px;}
.yf_c00359{bottom:648.375015px;}
.ye_c00359{bottom:711.375015px;}
.yd_c00359{bottom:741.981615px;}
.yc_c00359{bottom:772.570815px;}
.yb_c00359{bottom:803.525415px;}
.ya_c00359{bottom:834.480015px;}
.y9_c00359{bottom:896.040015px;}
.y8_c00359{bottom:926.655015px;}
.y7_c00359{bottom:987.840015px;}
.y6_c00359{bottom:1018.455015px;}
.y5_c00359{bottom:1018.460415px;}
.y3_c00359{bottom:1049.410815px;}
.y4_c00359{bottom:1049.415015px;}
.y2_c00359{bottom:1080.000015px;}
.y1_c00359{bottom:1186.560015px;}
.h6_c00359{height:34.525440px;}
.h7_c00359{height:56.320312px;}
.h2_c00359{height:65.953125px;}
.h5_c00359{height:67.719727px;}
.h3_c00359{height:68.308594px;}
.h4_c00359{height:68.325394px;}
.h1_c00359{height:1263.000000px;}
.h0_c00359{height:1263.240015px;}
.w1_c00359{width:892.500000px;}
.w0_c00359{width:892.800015px;}
.x0_c00359{left:0.000000px;}
.x1_c00359{left:120.525015px;}
.x7_c00359{left:121.847415px;}
.x2_c00359{left:174.525015px;}
.xf_c00359{left:265.170015px;}
.x6_c00359{left:270.915015px;}
.x10_c00359{left:283.515015px;}
.x8_c00359{left:394.845015px;}
.x13_c00359{left:412.380015px;}
.x17_c00359{left:423.210015px;}
.x9_c00359{left:426.510015px;}
.x16_c00359{left:432.840015px;}
.xd_c00359{left:453.795015px;}
.x14_c00359{left:472.680015px;}
.xe_c00359{left:476.820015px;}
.x15_c00359{left:507.780015px;}
.x11_c00359{left:536.595015px;}
.x12_c00359{left:557.925015px;}
.xa_c00359{left:635.325015px;}
.xb_c00359{left:668.730015px;}
.x3_c00359{left:679.125015px;}
.xc_c00359{left:687.810015px;}
.x4_c00359{left:699.045015px;}
.x5_c00359{left:733.155015px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls4b_c00359{letter-spacing:-2.165333pt;}
.ls72_c00359{letter-spacing:-2.146667pt;}
.ls3b_c00359{letter-spacing:-2.090667pt;}
.ls5a_c00359{letter-spacing:-2.066347pt;}
.ls46_c00359{letter-spacing:-2.004480pt;}
.ls3d_c00359{letter-spacing:-1.985920pt;}
.ls9a_c00359{letter-spacing:-1.794133pt;}
.lsa4_c00359{letter-spacing:-1.680000pt;}
.ls7c_c00359{letter-spacing:-1.676587pt;}
.ls4a_c00359{letter-spacing:-1.577600pt;}
.ls48_c00359{letter-spacing:-1.565227pt;}
.ls5f_c00359{letter-spacing:-1.466240pt;}
.lsa0_c00359{letter-spacing:-1.379627pt;}
.ls55_c00359{letter-spacing:-1.373440pt;}
.ls4d_c00359{letter-spacing:-1.336320pt;}
.ls80_c00359{letter-spacing:-1.311573pt;}
.ls82_c00359{letter-spacing:-1.305387pt;}
.ls8f_c00359{letter-spacing:-1.268267pt;}
.ls94_c00359{letter-spacing:-1.194027pt;}
.ls6d_c00359{letter-spacing:-1.187840pt;}
.ls8c_c00359{letter-spacing:-1.175467pt;}
.ls53_c00359{letter-spacing:-1.150720pt;}
.ls49_c00359{letter-spacing:-1.125973pt;}
.ls78_c00359{letter-spacing:-1.082667pt;}
.ls47_c00359{letter-spacing:-1.076480pt;}
.ls59_c00359{letter-spacing:-1.057920pt;}
.ls6f_c00359{letter-spacing:-1.039360pt;}
.ls51_c00359{letter-spacing:-1.020800pt;}
.ls71_c00359{letter-spacing:-1.008427pt;}
.ls45_c00359{letter-spacing:-0.983680pt;}
.ls8b_c00359{letter-spacing:-0.977493pt;}
.ls42_c00359{letter-spacing:-0.909440pt;}
.ls83_c00359{letter-spacing:-0.890880pt;}
.ls6c_c00359{letter-spacing:-0.872320pt;}
.ls5e_c00359{letter-spacing:-0.866133pt;}
.ls9c_c00359{letter-spacing:-0.835200pt;}
.ls3e_c00359{letter-spacing:-0.810453pt;}
.ls92_c00359{letter-spacing:-0.804267pt;}
.ls84_c00359{letter-spacing:-0.798080pt;}
.ls81_c00359{letter-spacing:-0.773333pt;}
.ls8a_c00359{letter-spacing:-0.754773pt;}
.ls88_c00359{letter-spacing:-0.742400pt;}
.ls4e_c00359{letter-spacing:-0.730027pt;}
.ls98_c00359{letter-spacing:-0.723840pt;}
.ls56_c00359{letter-spacing:-0.711467pt;}
.ls96_c00359{letter-spacing:-0.699093pt;}
.ls85_c00359{letter-spacing:-0.692907pt;}
.ls76_c00359{letter-spacing:-0.674347pt;}
.ls69_c00359{letter-spacing:-0.643413pt;}
.ls41_c00359{letter-spacing:-0.593920pt;}
.ls64_c00359{letter-spacing:-0.581547pt;}
.ls68_c00359{letter-spacing:-0.562987pt;}
.ls87_c00359{letter-spacing:-0.556800pt;}
.ls8e_c00359{letter-spacing:-0.525867pt;}
.ls6e_c00359{letter-spacing:-0.501120pt;}
.ls50_c00359{letter-spacing:-0.494933pt;}
.ls7e_c00359{letter-spacing:-0.488747pt;}
.ls89_c00359{letter-spacing:-0.476373pt;}
.ls99_c00359{letter-spacing:-0.457813pt;}
.ls52_c00359{letter-spacing:-0.433067pt;}
.ls7b_c00359{letter-spacing:-0.426880pt;}
.ls9d_c00359{letter-spacing:-0.420693pt;}
.ls70_c00359{letter-spacing:-0.389760pt;}
.ls60_c00359{letter-spacing:-0.383573pt;}
.ls5b_c00359{letter-spacing:-0.371200pt;}
.ls61_c00359{letter-spacing:-0.352640pt;}
.ls74_c00359{letter-spacing:-0.340267pt;}
.ls79_c00359{letter-spacing:-0.327893pt;}
.ls62_c00359{letter-spacing:-0.315520pt;}
.ls9f_c00359{letter-spacing:-0.301333pt;}
.ls8d_c00359{letter-spacing:-0.290773pt;}
.ls3c_c00359{letter-spacing:-0.284587pt;}
.ls7d_c00359{letter-spacing:-0.278400pt;}
.ls75_c00359{letter-spacing:-0.266027pt;}
.ls67_c00359{letter-spacing:-0.259840pt;}
.ls3f_c00359{letter-spacing:-0.253653pt;}
.ls9e_c00359{letter-spacing:-0.247467pt;}
.ls40_c00359{letter-spacing:-0.241280pt;}
.ls66_c00359{letter-spacing:-0.235093pt;}
.ls65_c00359{letter-spacing:-0.222720pt;}
.ls58_c00359{letter-spacing:-0.216533pt;}
.lsa1_c00359{letter-spacing:-0.210347pt;}
.ls86_c00359{letter-spacing:-0.204160pt;}
.ls57_c00359{letter-spacing:-0.185600pt;}
.ls44_c00359{letter-spacing:-0.167040pt;}
.ls7a_c00359{letter-spacing:-0.154667pt;}
.ls77_c00359{letter-spacing:-0.148480pt;}
.ls91_c00359{letter-spacing:-0.129920pt;}
.lsa3_c00359{letter-spacing:-0.123733pt;}
.ls93_c00359{letter-spacing:-0.098987pt;}
.ls73_c00359{letter-spacing:-0.092800pt;}
.ls54_c00359{letter-spacing:-0.086613pt;}
.ls7f_c00359{letter-spacing:-0.080427pt;}
.ls6b_c00359{letter-spacing:-0.068053pt;}
.ls95_c00359{letter-spacing:-0.061867pt;}
.ls63_c00359{letter-spacing:-0.037120pt;}
.lsa2_c00359{letter-spacing:-0.024747pt;}
.ls5c_c00359{letter-spacing:-0.006187pt;}
.ls4f_c00359{letter-spacing:0.000000pt;}
.ls1_c00359{letter-spacing:0.012373pt;}
.ls1e_c00359{letter-spacing:0.018560pt;}
.ls23_c00359{letter-spacing:0.024747pt;}
.ls25_c00359{letter-spacing:0.037120pt;}
.ls20_c00359{letter-spacing:0.043307pt;}
.ls15_c00359{letter-spacing:0.049493pt;}
.ls30_c00359{letter-spacing:0.055680pt;}
.ls17_c00359{letter-spacing:0.061867pt;}
.ls34_c00359{letter-spacing:0.080427pt;}
.ls13_c00359{letter-spacing:0.105173pt;}
.ls1b_c00359{letter-spacing:0.117547pt;}
.ls21_c00359{letter-spacing:0.123733pt;}
.ls11_c00359{letter-spacing:0.129920pt;}
.ls2b_c00359{letter-spacing:0.136107pt;}
.ls28_c00359{letter-spacing:0.142293pt;}
.ls4_c00359{letter-spacing:0.173227pt;}
.lsf_c00359{letter-spacing:0.185600pt;}
.ls27_c00359{letter-spacing:0.197973pt;}
.ls5d_c00359{letter-spacing:0.228907pt;}
.ls3_c00359{letter-spacing:0.253653pt;}
.ls2_c00359{letter-spacing:0.259840pt;}
.ls19_c00359{letter-spacing:0.272213pt;}
.ls9b_c00359{letter-spacing:0.278400pt;}
.ls10_c00359{letter-spacing:0.296960pt;}
.lse_c00359{letter-spacing:0.309333pt;}
.ls39_c00359{letter-spacing:0.321707pt;}
.ls26_c00359{letter-spacing:0.327893pt;}
.ls16_c00359{letter-spacing:0.334080pt;}
.ls6a_c00359{letter-spacing:0.340267pt;}
.ls2a_c00359{letter-spacing:0.377387pt;}
.ls37_c00359{letter-spacing:0.397760pt;}
.ls2d_c00359{letter-spacing:0.408320pt;}
.ls2f_c00359{letter-spacing:0.414507pt;}
.lsd_c00359{letter-spacing:0.420693pt;}
.ls1c_c00359{letter-spacing:0.426880pt;}
.ls3a_c00359{letter-spacing:0.470187pt;}
.lsb_c00359{letter-spacing:0.482560pt;}
.ls38_c00359{letter-spacing:0.494933pt;}
.ls32_c00359{letter-spacing:0.507307pt;}
.ls1a_c00359{letter-spacing:0.512267pt;}
.ls1d_c00359{letter-spacing:0.513493pt;}
.ls36_c00359{letter-spacing:0.518293pt;}
.ls43_c00359{letter-spacing:0.525867pt;}
.lsa_c00359{letter-spacing:0.550613pt;}
.ls90_c00359{letter-spacing:0.575360pt;}
.ls29_c00359{letter-spacing:0.581547pt;}
.ls4c_c00359{letter-spacing:0.637227pt;}
.ls22_c00359{letter-spacing:0.643413pt;}
.lsc_c00359{letter-spacing:0.674347pt;}
.ls6_c00359{letter-spacing:0.699093pt;}
.ls14_c00359{letter-spacing:0.785707pt;}
.ls5_c00359{letter-spacing:0.837707pt;}
.ls2e_c00359{letter-spacing:0.843733pt;}
.ls8_c00359{letter-spacing:0.855787pt;}
.ls7_c00359{letter-spacing:0.904000pt;}
.ls1f_c00359{letter-spacing:0.940373pt;}
.ls97_c00359{letter-spacing:1.002240pt;}
.ls9_c00359{letter-spacing:1.012480pt;}
.ls18_c00359{letter-spacing:1.102880pt;}
.ls12_c00359{letter-spacing:1.286827pt;}
.ls35_c00359{letter-spacing:1.379627pt;}
.ls2c_c00359{letter-spacing:1.478613pt;}
.ls0_c00359{letter-spacing:1.565227pt;}
.ls24_c00359{letter-spacing:1.763200pt;}
.ls31_c00359{letter-spacing:2.060160pt;}
.ls33_c00359{letter-spacing:2.217813pt;}
.ws1_c00359{word-spacing:-1.566720pt;}
.ws3_c00359{word-spacing:-0.153067pt;}
.ws5_c00359{word-spacing:0.000000pt;}
.ws0_c00359{word-spacing:4.986347pt;}
.ws4_c00359{word-spacing:6.295573pt;}
.ws2_c00359{word-spacing:22.046933pt;}
._0_c00359{margin-left:-5.920640pt;}
._19_c00359{margin-left:-4.618347pt;}
._12_c00359{margin-left:-3.182933pt;}
._13_c00359{width:1.447680pt;}
._d_c00359{width:2.810827pt;}
._c_c00359{width:3.767680pt;}
._18_c00359{width:4.912213pt;}
._1_c00359{width:5.976320pt;}
._2_c00359{width:7.238400pt;}
._5_c00359{width:8.338560pt;}
._e_c00359{width:9.357227pt;}
._3_c00359{width:10.517333pt;}
._f_c00359{width:11.453867pt;}
._6_c00359{width:12.348587pt;}
._a_c00359{width:13.242240pt;}
._10_c00359{width:14.177493pt;}
._b_c00359{width:15.126400pt;}
._8_c00359{width:16.071680pt;}
._7_c00359{width:17.039360pt;}
._14_c00359{width:17.990827pt;}
._4_c00359{width:18.881067pt;}
._11_c00359{width:20.403627pt;}
._17_c00359{width:21.443627pt;}
._15_c00359{width:22.883840pt;}
._16_c00359{width:23.905920pt;}
._9_c00359{width:25.249707pt;}
.fs5_c00359{font-size:46.080000pt;}
.fs6_c00359{font-size:48.000000pt;}
.fs4_c00359{font-size:52.800000pt;}
.fs0_c00359{font-size:59.733333pt;}
.fs2_c00359{font-size:60.266667pt;}
.fs3_c00359{font-size:61.333333pt;}
.fs1_c00359{font-size:61.866667pt;}
.y0_c00359{bottom:0.000000pt;}
.y23_c00359{bottom:57.613347pt;}
.y22_c00359{bottom:110.727480pt;}
.y20_c00359{bottom:137.929613pt;}
.y21_c00359{bottom:137.933347pt;}
.y1f_c00359{bottom:165.120013pt;}
.y1e_c00359{bottom:220.167480pt;}
.y1d_c00359{bottom:247.373347pt;}
.y1c_c00359{bottom:247.378147pt;}
.y1b_c00359{bottom:274.893347pt;}
.y1a_c00359{bottom:301.760013pt;}
.y19_c00359{bottom:356.493347pt;}
.y18_c00359{bottom:356.500280pt;}
.y17_c00359{bottom:384.000013pt;}
.y16_c00359{bottom:411.200013pt;}
.y15_c00359{bottom:411.207480pt;}
.y14_c00359{bottom:438.413347pt;}
.y13_c00359{bottom:438.418147pt;}
.y12_c00359{bottom:465.938147pt;}
.y11_c00359{bottom:493.453347pt;}
.y10_c00359{bottom:521.293347pt;}
.yf_c00359{bottom:576.333347pt;}
.ye_c00359{bottom:632.333347pt;}
.yd_c00359{bottom:659.539213pt;}
.yc_c00359{bottom:686.729613pt;}
.yb_c00359{bottom:714.244813pt;}
.ya_c00359{bottom:741.760013pt;}
.y9_c00359{bottom:796.480013pt;}
.y8_c00359{bottom:823.693347pt;}
.y7_c00359{bottom:878.080013pt;}
.y6_c00359{bottom:905.293347pt;}
.y5_c00359{bottom:905.298147pt;}
.y3_c00359{bottom:932.809613pt;}
.y4_c00359{bottom:932.813347pt;}
.y2_c00359{bottom:960.000013pt;}
.y1_c00359{bottom:1054.720013pt;}
.h6_c00359{height:30.689280pt;}
.h7_c00359{height:50.062500pt;}
.h2_c00359{height:58.625000pt;}
.h5_c00359{height:60.195312pt;}
.h3_c00359{height:60.718750pt;}
.h4_c00359{height:60.733683pt;}
.h1_c00359{height:1122.666667pt;}
.h0_c00359{height:1122.880013pt;}
.w1_c00359{width:793.333333pt;}
.w0_c00359{width:793.600013pt;}
.x0_c00359{left:0.000000pt;}
.x1_c00359{left:107.133347pt;}
.x7_c00359{left:108.308813pt;}
.x2_c00359{left:155.133347pt;}
.xf_c00359{left:235.706680pt;}
.x6_c00359{left:240.813347pt;}
.x10_c00359{left:252.013347pt;}
.x8_c00359{left:350.973347pt;}
.x13_c00359{left:366.560013pt;}
.x17_c00359{left:376.186680pt;}
.x9_c00359{left:379.120013pt;}
.x16_c00359{left:384.746680pt;}
.xd_c00359{left:403.373347pt;}
.x14_c00359{left:420.160013pt;}
.xe_c00359{left:423.840013pt;}
.x15_c00359{left:451.360013pt;}
.x11_c00359{left:476.973347pt;}
.x12_c00359{left:495.933347pt;}
.xa_c00359{left:564.733347pt;}
.xb_c00359{left:594.426680pt;}
.x3_c00359{left:603.666680pt;}
.xc_c00359{left:611.386680pt;}
.x4_c00359{left:621.373347pt;}
.x5_c00359{left:651.693347pt;}
}





/* 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_c00360 {
    display:none;
  }
  .loading-indicator_c00360.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00360 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_c00360 { 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_c00360" -> "#page-container .classname_c00360")
 */
.pf_c00360 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00360 { /* 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_c00360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00360 { /* 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_c00360 { /* 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_c00360 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00360 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00360 {overflow:visible;}
  }
}
.c_c00360 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00360 { /* 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_c00360:after { /* webkit #35443 */
  content: '';
}
.t_c00360:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00360 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 */
}
.__c00360 { /* 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_c00360 { /* info for Javascript */
  display:none;
}
.l_c00360 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00360 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00360 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00360: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_c00360 {
    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_c00360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00360.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_c00360 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00360;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.311035;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_c00360;src:url('chunks/assets/font_9c9fc73c1c8b47f0c167d4b0.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.284180;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_c00360;src:url('chunks/assets/font_5832a823db27e14b4c6db9cb.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.284668;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_c00360;src:url('chunks/assets/font_92e6bf5789a81700559ca914.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:0.666000;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_c00360;src:url('chunks/assets/font_1c1a155ebda70f0b0e1a687a.woff2')format("woff");}.ff5_c00360{font-family:ff5_c00360;line-height:1.284180;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_c00360;src:url('chunks/assets/font_645f7199a8865434a7723c15.woff2')format("woff");}.ff6_c00360{font-family:ff6_c00360;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;}
.m4_c00360{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.mb_c00360{transform:matrix(0.178387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178387,0.000000,0.000000,0.250000,0,0);}
.ma_c00360{transform:matrix(0.183341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183341,0.000000,0.000000,0.250000,0,0);}
.me_c00360{transform:matrix(0.228998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228998,0.000000,0.000000,0.250000,0,0);}
.m7_c00360{transform:matrix(0.237301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237301,0.000000,0.000000,0.250000,0,0);}
.m0_c00360{transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);}
.m5_c00360{transform:matrix(0.237806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237806,0.000000,0.000000,0.250000,0,0);}
.m9_c00360{transform:matrix(0.239441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239441,0.000000,0.000000,0.250000,0,0);}
.m6_c00360{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.mc_c00360{transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);}
.m2_c00360{transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245504,0.000000,0.000000,0.250000,0,0);}
.m8_c00360{transform:matrix(0.245741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245741,0.000000,0.000000,0.250000,0,0);}
.md_c00360{transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);}
.m3_c00360{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m1_c00360{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);}
.v0_c00360{vertical-align:0.000000px;}
.ls90_c00360{letter-spacing:-2.625000px;}
.ls8e_c00360{letter-spacing:-2.467500px;}
.ls4d_c00360{letter-spacing:-2.457000px;}
.ls84_c00360{letter-spacing:-2.415000px;}
.ls78_c00360{letter-spacing:-2.394000px;}
.ls72_c00360{letter-spacing:-2.373000px;}
.ls77_c00360{letter-spacing:-2.352000px;}
.ls47_c00360{letter-spacing:-2.331000px;}
.ls76_c00360{letter-spacing:-2.204280px;}
.ls8d_c00360{letter-spacing:-2.152500px;}
.ls57_c00360{letter-spacing:-2.120040px;}
.ls61_c00360{letter-spacing:-1.972620px;}
.ls74_c00360{letter-spacing:-1.916460px;}
.ls8f_c00360{letter-spacing:-1.852500px;}
.ls52_c00360{letter-spacing:-1.839240px;}
.ls53_c00360{letter-spacing:-1.832220px;}
.ls5c_c00360{letter-spacing:-1.642680px;}
.ls56_c00360{letter-spacing:-1.635660px;}
.ls8a_c00360{letter-spacing:-1.509300px;}
.ls51_c00360{letter-spacing:-1.481220px;}
.ls4a_c00360{letter-spacing:-1.446120px;}
.ls7b_c00360{letter-spacing:-1.249560px;}
.ls5e_c00360{letter-spacing:-1.200420px;}
.ls60_c00360{letter-spacing:-1.151280px;}
.ls64_c00360{letter-spacing:-1.038960px;}
.ls93_c00360{letter-spacing:-0.989820px;}
.ls70_c00360{letter-spacing:-0.877500px;}
.ls4c_c00360{letter-spacing:-0.856440px;}
.ls68_c00360{letter-spacing:-0.849420px;}
.ls5d_c00360{letter-spacing:-0.821340px;}
.ls87_c00360{letter-spacing:-0.793260px;}
.ls6e_c00360{letter-spacing:-0.765180px;}
.ls5a_c00360{letter-spacing:-0.744120px;}
.ls5b_c00360{letter-spacing:-0.723060px;}
.ls8b_c00360{letter-spacing:-0.659880px;}
.ls66_c00360{letter-spacing:-0.610740px;}
.ls82_c00360{letter-spacing:-0.596700px;}
.ls65_c00360{letter-spacing:-0.561600px;}
.ls6c_c00360{letter-spacing:-0.540540px;}
.ls6d_c00360{letter-spacing:-0.533520px;}
.ls4f_c00360{letter-spacing:-0.526500px;}
.ls7e_c00360{letter-spacing:-0.512460px;}
.ls73_c00360{letter-spacing:-0.505440px;}
.ls7a_c00360{letter-spacing:-0.491400px;}
.ls79_c00360{letter-spacing:-0.449280px;}
.ls7d_c00360{letter-spacing:-0.400140px;}
.ls86_c00360{letter-spacing:-0.393120px;}
.ls4b_c00360{letter-spacing:-0.386100px;}
.ls63_c00360{letter-spacing:-0.372060px;}
.ls62_c00360{letter-spacing:-0.343980px;}
.ls6a_c00360{letter-spacing:-0.329940px;}
.ls7c_c00360{letter-spacing:-0.315900px;}
.ls49_c00360{letter-spacing:-0.301860px;}
.ls92_c00360{letter-spacing:-0.280800px;}
.ls58_c00360{letter-spacing:-0.259740px;}
.ls6b_c00360{letter-spacing:-0.252720px;}
.ls94_c00360{letter-spacing:-0.238680px;}
.ls89_c00360{letter-spacing:-0.203580px;}
.ls80_c00360{letter-spacing:-0.196560px;}
.ls50_c00360{letter-spacing:-0.189540px;}
.ls75_c00360{letter-spacing:-0.182520px;}
.ls71_c00360{letter-spacing:-0.175500px;}
.ls81_c00360{letter-spacing:-0.168480px;}
.ls67_c00360{letter-spacing:-0.161460px;}
.ls91_c00360{letter-spacing:-0.133380px;}
.ls48_c00360{letter-spacing:-0.126360px;}
.ls6f_c00360{letter-spacing:-0.105300px;}
.ls83_c00360{letter-spacing:-0.098280px;}
.ls8c_c00360{letter-spacing:-0.070200px;}
.ls5f_c00360{letter-spacing:-0.063180px;}
.ls88_c00360{letter-spacing:-0.049140px;}
.ls55_c00360{letter-spacing:-0.042120px;}
.ls59_c00360{letter-spacing:-0.035100px;}
.ls7f_c00360{letter-spacing:-0.028080px;}
.ls69_c00360{letter-spacing:-0.021060px;}
.ls54_c00360{letter-spacing:-0.014040px;}
.ls4e_c00360{letter-spacing:0.000000px;}
.ls3a_c00360{letter-spacing:0.007020px;}
.ls44_c00360{letter-spacing:0.021060px;}
.ls19_c00360{letter-spacing:0.028080px;}
.ls1a_c00360{letter-spacing:0.035100px;}
.ls16_c00360{letter-spacing:0.042120px;}
.ls45_c00360{letter-spacing:0.056160px;}
.ls34_c00360{letter-spacing:0.070200px;}
.ls13_c00360{letter-spacing:0.105300px;}
.ls2c_c00360{letter-spacing:0.119340px;}
.ls3f_c00360{letter-spacing:0.133380px;}
.ls3b_c00360{letter-spacing:0.140400px;}
.ls85_c00360{letter-spacing:0.168480px;}
.ls17_c00360{letter-spacing:0.175500px;}
.ls95_c00360{letter-spacing:0.182280px;}
.ls14_c00360{letter-spacing:0.189540px;}
.ls35_c00360{letter-spacing:0.203580px;}
.ls30_c00360{letter-spacing:0.266760px;}
.ls15_c00360{letter-spacing:0.273780px;}
.ls10_c00360{letter-spacing:0.280800px;}
.ls11_c00360{letter-spacing:0.294840px;}
.ls28_c00360{letter-spacing:0.315900px;}
.ls31_c00360{letter-spacing:0.336960px;}
.ls4_c00360{letter-spacing:0.358020px;}
.ls2f_c00360{letter-spacing:0.386100px;}
.ls2a_c00360{letter-spacing:0.393120px;}
.ls32_c00360{letter-spacing:0.407160px;}
.ls3_c00360{letter-spacing:0.428220px;}
.lsc_c00360{letter-spacing:0.442260px;}
.ls41_c00360{letter-spacing:0.449280px;}
.ls1c_c00360{letter-spacing:0.456300px;}
.ls12_c00360{letter-spacing:0.470340px;}
.ls3d_c00360{letter-spacing:0.477360px;}
.ls1d_c00360{letter-spacing:0.491400px;}
.ls2b_c00360{letter-spacing:0.519480px;}
.ls24_c00360{letter-spacing:0.526680px;}
.lsf_c00360{letter-spacing:0.561600px;}
.ls26_c00360{letter-spacing:0.574560px;}
.ls2d_c00360{letter-spacing:0.582660px;}
.ls18_c00360{letter-spacing:0.631800px;}
.ls25_c00360{letter-spacing:0.638820px;}
.ls9_c00360{letter-spacing:0.656640px;}
.ls1f_c00360{letter-spacing:0.673920px;}
.ls29_c00360{letter-spacing:0.680940px;}
.ls8_c00360{letter-spacing:0.718200px;}
.ls38_c00360{letter-spacing:0.730080px;}
.ls1e_c00360{letter-spacing:0.737100px;}
.ls36_c00360{letter-spacing:0.841320px;}
.ls2_c00360{letter-spacing:0.842400px;}
.ls27_c00360{letter-spacing:0.856440px;}
.ls42_c00360{letter-spacing:0.870480px;}
.ls22_c00360{letter-spacing:0.877500px;}
.ls6_c00360{letter-spacing:0.896040px;}
.ls40_c00360{letter-spacing:0.909720px;}
.ls39_c00360{letter-spacing:0.912600px;}
.ls3c_c00360{letter-spacing:0.926640px;}
.lsb_c00360{letter-spacing:0.954720px;}
.ls5_c00360{letter-spacing:0.957600px;}
.ls21_c00360{letter-spacing:0.971280px;}
.ls2e_c00360{letter-spacing:0.984960px;}
.ls7_c00360{letter-spacing:1.039680px;}
.ls37_c00360{letter-spacing:1.067040px;}
.ls46_c00360{letter-spacing:1.088100px;}
.ls0_c00360{letter-spacing:1.123200px;}
.ls33_c00360{letter-spacing:1.190160px;}
.ls43_c00360{letter-spacing:1.263600px;}
.lse_c00360{letter-spacing:1.305720px;}
.lsd_c00360{letter-spacing:1.425060px;}
.ls20_c00360{letter-spacing:1.436400px;}
.ls1_c00360{letter-spacing:1.656720px;}
.ls23_c00360{letter-spacing:1.755000px;}
.ls3e_c00360{letter-spacing:2.183220px;}
.ls1b_c00360{letter-spacing:2.485080px;}
.lsa_c00360{letter-spacing:23.808000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{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__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00360{word-spacing:-0.393840px;}
.ws4_c00360{word-spacing:0.000000px;}
.ws0_c00360{word-spacing:12.671280px;}
.ws2_c00360{word-spacing:24.199200px;}
.ws3_c00360{word-spacing:24.246600px;}
._8_c00360{margin-left:-11.340720px;}
._3_c00360{margin-left:-5.152680px;}
._17_c00360{margin-left:-3.073500px;}
._0_c00360{margin-left:-1.965600px;}
._7_c00360{width:1.915200px;}
._1_c00360{width:3.453840px;}
._6_c00360{width:4.786560px;}
._2_c00360{width:6.346080px;}
._11_c00360{width:7.586100px;}
._4_c00360{width:8.641620px;}
._9_c00360{width:9.971820px;}
._5_c00360{width:11.056500px;}
._e_c00360{width:12.518820px;}
._f_c00360{width:13.963500px;}
._10_c00360{width:17.971200px;}
._12_c00360{width:19.796400px;}
._14_c00360{width:21.832200px;}
._13_c00360{width:24.022440px;}
._16_c00360{width:25.040340px;}
._15_c00360{width:26.374140px;}
._b_c00360{width:31.203900px;}
._c_c00360{width:32.460480px;}
._d_c00360{width:34.938540px;}
._a_c00360{width:36.138960px;}
._18_c00360{width:40.744080px;}
.fc0_c00360{color:transparent;}
.fs8_c00360{font-size:32.400600px;}
.fs2_c00360{font-size:51.840000px;}
.fs9_c00360{font-size:58.800000px;}
.fs0_c00360{font-size:66.600000px;}
.fs5_c00360{font-size:67.200000px;}
.fs4_c00360{font-size:67.800000px;}
.fs3_c00360{font-size:68.400000px;}
.fs6_c00360{font-size:69.000000px;}
.fs1_c00360{font-size:70.200000px;}
.fs7_c00360{font-size:75.000000px;}
.y0_c00360{bottom:0.000000px;}
.y21_c00360{bottom:72.375000px;}
.y20_c00360{bottom:192.970350px;}
.y1f_c00360{bottom:223.560000px;}
.y1d_c00360{bottom:284.775000px;}
.y1e_c00360{bottom:292.335000px;}
.y1c_c00360{bottom:316.447800px;}
.y1a_c00360{bottom:347.048250px;}
.y1b_c00360{bottom:347.055000px;}
.y19_c00360{bottom:378.375000px;}
.y18_c00360{bottom:440.280000px;}
.y17_c00360{bottom:502.936800px;}
.y15_c00360{bottom:533.890050px;}
.y16_c00360{bottom:533.895000px;}
.y14_c00360{bottom:565.567800px;}
.y13_c00360{bottom:596.175000px;}
.y12_c00360{bottom:627.120000px;}
.y11_c00360{bottom:658.095000px;}
.y10_c00360{bottom:718.935000px;}
.yf_c00360{bottom:750.255000px;}
.ye_c00360{bottom:750.260400px;}
.yd_c00360{bottom:781.201050px;}
.yc_c00360{bottom:812.176800px;}
.yb_c00360{bottom:843.135000px;}
.ya_c00360{bottom:904.695000px;}
.y9_c00360{bottom:935.655000px;}
.y7_c00360{bottom:997.199250px;}
.y8_c00360{bottom:997.200000px;}
.y5_c00360{bottom:1028.172150px;}
.y6_c00360{bottom:1028.175000px;}
.y3_c00360{bottom:1089.713250px;}
.y4_c00360{bottom:1089.720000px;}
.y2_c00360{bottom:1121.040000px;}
.y1_c00360{bottom:1197.360000px;}
.hb_c00360{height:33.792813px;}
.h4_c00360{height:34.525440px;}
.hc_c00360{height:57.708984px;}
.h7_c00360{height:65.920312px;}
.h8_c00360{height:67.097461px;}
.h2_c00360{height:67.120312px;}
.h9_c00360{height:67.719727px;}
.h3_c00360{height:68.897461px;}
.h5_c00360{height:68.900461px;}
.h6_c00360{height:70.713281px;}
.ha_c00360{height:73.608398px;}
.h1_c00360{height:1263.000000px;}
.h0_c00360{height:1263.240000px;}
.w1_c00360{width:892.500000px;}
.w0_c00360{width:892.800000px;}
.x0_c00360{left:0.000000px;}
.x16_c00360{left:114.975000px;}
.x11_c00360{left:116.136150px;}
.x1_c00360{left:119.085000px;}
.x17_c00360{left:138.105000px;}
.x1c_c00360{left:169.005000px;}
.x10_c00360{left:170.055000px;}
.x3_c00360{left:171.251850px;}
.x18_c00360{left:224.760000px;}
.x4_c00360{left:239.565000px;}
.x19_c00360{left:246.105000px;}
.x5_c00360{left:267.375000px;}
.x2_c00360{left:282.045000px;}
.x14_c00360{left:361.575000px;}
.x1a_c00360{left:363.000000px;}
.x22_c00360{left:366.915000px;}
.x6_c00360{left:369.165000px;}
.x15_c00360{left:382.185000px;}
.x1b_c00360{left:384.705000px;}
.x7_c00360{left:400.065000px;}
.x20_c00360{left:407.775000px;}
.x25_c00360{left:420.675000px;}
.x21_c00360{left:430.170000px;}
.x23_c00360{left:432.990000px;}
.x24_c00360{left:443.340000px;}
.x1d_c00360{left:472.605000px;}
.xc_c00360{left:496.965000px;}
.x1e_c00360{left:505.290000px;}
.xd_c00360{left:525.075000px;}
.xe_c00360{left:568.245000px;}
.xf_c00360{left:596.085000px;}
.x8_c00360{left:625.695000px;}
.x9_c00360{left:662.325000px;}
.xa_c00360{left:691.365000px;}
.x1f_c00360{left:710.925000px;}
.xb_c00360{left:721.560000px;}
.x13_c00360{left:733.080000px;}
.x12_c00360{left:736.380000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls90_c00360{letter-spacing:-2.333333pt;}
.ls8e_c00360{letter-spacing:-2.193333pt;}
.ls4d_c00360{letter-spacing:-2.184000pt;}
.ls84_c00360{letter-spacing:-2.146667pt;}
.ls78_c00360{letter-spacing:-2.128000pt;}
.ls72_c00360{letter-spacing:-2.109333pt;}
.ls77_c00360{letter-spacing:-2.090667pt;}
.ls47_c00360{letter-spacing:-2.072000pt;}
.ls76_c00360{letter-spacing:-1.959360pt;}
.ls8d_c00360{letter-spacing:-1.913333pt;}
.ls57_c00360{letter-spacing:-1.884480pt;}
.ls61_c00360{letter-spacing:-1.753440pt;}
.ls74_c00360{letter-spacing:-1.703520pt;}
.ls8f_c00360{letter-spacing:-1.646667pt;}
.ls52_c00360{letter-spacing:-1.634880pt;}
.ls53_c00360{letter-spacing:-1.628640pt;}
.ls5c_c00360{letter-spacing:-1.460160pt;}
.ls56_c00360{letter-spacing:-1.453920pt;}
.ls8a_c00360{letter-spacing:-1.341600pt;}
.ls51_c00360{letter-spacing:-1.316640pt;}
.ls4a_c00360{letter-spacing:-1.285440pt;}
.ls7b_c00360{letter-spacing:-1.110720pt;}
.ls5e_c00360{letter-spacing:-1.067040pt;}
.ls60_c00360{letter-spacing:-1.023360pt;}
.ls64_c00360{letter-spacing:-0.923520pt;}
.ls93_c00360{letter-spacing:-0.879840pt;}
.ls70_c00360{letter-spacing:-0.780000pt;}
.ls4c_c00360{letter-spacing:-0.761280pt;}
.ls68_c00360{letter-spacing:-0.755040pt;}
.ls5d_c00360{letter-spacing:-0.730080pt;}
.ls87_c00360{letter-spacing:-0.705120pt;}
.ls6e_c00360{letter-spacing:-0.680160pt;}
.ls5a_c00360{letter-spacing:-0.661440pt;}
.ls5b_c00360{letter-spacing:-0.642720pt;}
.ls8b_c00360{letter-spacing:-0.586560pt;}
.ls66_c00360{letter-spacing:-0.542880pt;}
.ls82_c00360{letter-spacing:-0.530400pt;}
.ls65_c00360{letter-spacing:-0.499200pt;}
.ls6c_c00360{letter-spacing:-0.480480pt;}
.ls6d_c00360{letter-spacing:-0.474240pt;}
.ls4f_c00360{letter-spacing:-0.468000pt;}
.ls7e_c00360{letter-spacing:-0.455520pt;}
.ls73_c00360{letter-spacing:-0.449280pt;}
.ls7a_c00360{letter-spacing:-0.436800pt;}
.ls79_c00360{letter-spacing:-0.399360pt;}
.ls7d_c00360{letter-spacing:-0.355680pt;}
.ls86_c00360{letter-spacing:-0.349440pt;}
.ls4b_c00360{letter-spacing:-0.343200pt;}
.ls63_c00360{letter-spacing:-0.330720pt;}
.ls62_c00360{letter-spacing:-0.305760pt;}
.ls6a_c00360{letter-spacing:-0.293280pt;}
.ls7c_c00360{letter-spacing:-0.280800pt;}
.ls49_c00360{letter-spacing:-0.268320pt;}
.ls92_c00360{letter-spacing:-0.249600pt;}
.ls58_c00360{letter-spacing:-0.230880pt;}
.ls6b_c00360{letter-spacing:-0.224640pt;}
.ls94_c00360{letter-spacing:-0.212160pt;}
.ls89_c00360{letter-spacing:-0.180960pt;}
.ls80_c00360{letter-spacing:-0.174720pt;}
.ls50_c00360{letter-spacing:-0.168480pt;}
.ls75_c00360{letter-spacing:-0.162240pt;}
.ls71_c00360{letter-spacing:-0.156000pt;}
.ls81_c00360{letter-spacing:-0.149760pt;}
.ls67_c00360{letter-spacing:-0.143520pt;}
.ls91_c00360{letter-spacing:-0.118560pt;}
.ls48_c00360{letter-spacing:-0.112320pt;}
.ls6f_c00360{letter-spacing:-0.093600pt;}
.ls83_c00360{letter-spacing:-0.087360pt;}
.ls8c_c00360{letter-spacing:-0.062400pt;}
.ls5f_c00360{letter-spacing:-0.056160pt;}
.ls88_c00360{letter-spacing:-0.043680pt;}
.ls55_c00360{letter-spacing:-0.037440pt;}
.ls59_c00360{letter-spacing:-0.031200pt;}
.ls7f_c00360{letter-spacing:-0.024960pt;}
.ls69_c00360{letter-spacing:-0.018720pt;}
.ls54_c00360{letter-spacing:-0.012480pt;}
.ls4e_c00360{letter-spacing:0.000000pt;}
.ls3a_c00360{letter-spacing:0.006240pt;}
.ls44_c00360{letter-spacing:0.018720pt;}
.ls19_c00360{letter-spacing:0.024960pt;}
.ls1a_c00360{letter-spacing:0.031200pt;}
.ls16_c00360{letter-spacing:0.037440pt;}
.ls45_c00360{letter-spacing:0.049920pt;}
.ls34_c00360{letter-spacing:0.062400pt;}
.ls13_c00360{letter-spacing:0.093600pt;}
.ls2c_c00360{letter-spacing:0.106080pt;}
.ls3f_c00360{letter-spacing:0.118560pt;}
.ls3b_c00360{letter-spacing:0.124800pt;}
.ls85_c00360{letter-spacing:0.149760pt;}
.ls17_c00360{letter-spacing:0.156000pt;}
.ls95_c00360{letter-spacing:0.162027pt;}
.ls14_c00360{letter-spacing:0.168480pt;}
.ls35_c00360{letter-spacing:0.180960pt;}
.ls30_c00360{letter-spacing:0.237120pt;}
.ls15_c00360{letter-spacing:0.243360pt;}
.ls10_c00360{letter-spacing:0.249600pt;}
.ls11_c00360{letter-spacing:0.262080pt;}
.ls28_c00360{letter-spacing:0.280800pt;}
.ls31_c00360{letter-spacing:0.299520pt;}
.ls4_c00360{letter-spacing:0.318240pt;}
.ls2f_c00360{letter-spacing:0.343200pt;}
.ls2a_c00360{letter-spacing:0.349440pt;}
.ls32_c00360{letter-spacing:0.361920pt;}
.ls3_c00360{letter-spacing:0.380640pt;}
.lsc_c00360{letter-spacing:0.393120pt;}
.ls41_c00360{letter-spacing:0.399360pt;}
.ls1c_c00360{letter-spacing:0.405600pt;}
.ls12_c00360{letter-spacing:0.418080pt;}
.ls3d_c00360{letter-spacing:0.424320pt;}
.ls1d_c00360{letter-spacing:0.436800pt;}
.ls2b_c00360{letter-spacing:0.461760pt;}
.ls24_c00360{letter-spacing:0.468160pt;}
.lsf_c00360{letter-spacing:0.499200pt;}
.ls26_c00360{letter-spacing:0.510720pt;}
.ls2d_c00360{letter-spacing:0.517920pt;}
.ls18_c00360{letter-spacing:0.561600pt;}
.ls25_c00360{letter-spacing:0.567840pt;}
.ls9_c00360{letter-spacing:0.583680pt;}
.ls1f_c00360{letter-spacing:0.599040pt;}
.ls29_c00360{letter-spacing:0.605280pt;}
.ls8_c00360{letter-spacing:0.638400pt;}
.ls38_c00360{letter-spacing:0.648960pt;}
.ls1e_c00360{letter-spacing:0.655200pt;}
.ls36_c00360{letter-spacing:0.747840pt;}
.ls2_c00360{letter-spacing:0.748800pt;}
.ls27_c00360{letter-spacing:0.761280pt;}
.ls42_c00360{letter-spacing:0.773760pt;}
.ls22_c00360{letter-spacing:0.780000pt;}
.ls6_c00360{letter-spacing:0.796480pt;}
.ls40_c00360{letter-spacing:0.808640pt;}
.ls39_c00360{letter-spacing:0.811200pt;}
.ls3c_c00360{letter-spacing:0.823680pt;}
.lsb_c00360{letter-spacing:0.848640pt;}
.ls5_c00360{letter-spacing:0.851200pt;}
.ls21_c00360{letter-spacing:0.863360pt;}
.ls2e_c00360{letter-spacing:0.875520pt;}
.ls7_c00360{letter-spacing:0.924160pt;}
.ls37_c00360{letter-spacing:0.948480pt;}
.ls46_c00360{letter-spacing:0.967200pt;}
.ls0_c00360{letter-spacing:0.998400pt;}
.ls33_c00360{letter-spacing:1.057920pt;}
.ls43_c00360{letter-spacing:1.123200pt;}
.lse_c00360{letter-spacing:1.160640pt;}
.lsd_c00360{letter-spacing:1.266720pt;}
.ls20_c00360{letter-spacing:1.276800pt;}
.ls1_c00360{letter-spacing:1.472640pt;}
.ls23_c00360{letter-spacing:1.560000pt;}
.ls3e_c00360{letter-spacing:1.940640pt;}
.ls1b_c00360{letter-spacing:2.208960pt;}
.lsa_c00360{letter-spacing:21.162667pt;}
.ws1_c00360{word-spacing:-0.350080pt;}
.ws4_c00360{word-spacing:0.000000pt;}
.ws0_c00360{word-spacing:11.263360pt;}
.ws2_c00360{word-spacing:21.510400pt;}
.ws3_c00360{word-spacing:21.552533pt;}
._8_c00360{margin-left:-10.080640pt;}
._3_c00360{margin-left:-4.580160pt;}
._17_c00360{margin-left:-2.732000pt;}
._0_c00360{margin-left:-1.747200pt;}
._7_c00360{width:1.702400pt;}
._1_c00360{width:3.070080pt;}
._6_c00360{width:4.254720pt;}
._2_c00360{width:5.640960pt;}
._11_c00360{width:6.743200pt;}
._4_c00360{width:7.681440pt;}
._9_c00360{width:8.863840pt;}
._5_c00360{width:9.828000pt;}
._e_c00360{width:11.127840pt;}
._f_c00360{width:12.412000pt;}
._10_c00360{width:15.974400pt;}
._12_c00360{width:17.596800pt;}
._14_c00360{width:19.406400pt;}
._13_c00360{width:21.353280pt;}
._16_c00360{width:22.258080pt;}
._15_c00360{width:23.443680pt;}
._b_c00360{width:27.736800pt;}
._c_c00360{width:28.853760pt;}
._d_c00360{width:31.056480pt;}
._a_c00360{width:32.123520pt;}
._18_c00360{width:36.216960pt;}
.fs8_c00360{font-size:28.800533pt;}
.fs2_c00360{font-size:46.080000pt;}
.fs9_c00360{font-size:52.266667pt;}
.fs0_c00360{font-size:59.200000pt;}
.fs5_c00360{font-size:59.733333pt;}
.fs4_c00360{font-size:60.266667pt;}
.fs3_c00360{font-size:60.800000pt;}
.fs6_c00360{font-size:61.333333pt;}
.fs1_c00360{font-size:62.400000pt;}
.fs7_c00360{font-size:66.666667pt;}
.y0_c00360{bottom:0.000000pt;}
.y21_c00360{bottom:64.333333pt;}
.y20_c00360{bottom:171.529200pt;}
.y1f_c00360{bottom:198.720000pt;}
.y1d_c00360{bottom:253.133333pt;}
.y1e_c00360{bottom:259.853333pt;}
.y1c_c00360{bottom:281.286933pt;}
.y1a_c00360{bottom:308.487333pt;}
.y1b_c00360{bottom:308.493333pt;}
.y19_c00360{bottom:336.333333pt;}
.y18_c00360{bottom:391.360000pt;}
.y17_c00360{bottom:447.054933pt;}
.y15_c00360{bottom:474.568933pt;}
.y16_c00360{bottom:474.573333pt;}
.y14_c00360{bottom:502.726933pt;}
.y13_c00360{bottom:529.933333pt;}
.y12_c00360{bottom:557.440000pt;}
.y11_c00360{bottom:584.973333pt;}
.y10_c00360{bottom:639.053333pt;}
.yf_c00360{bottom:666.893333pt;}
.ye_c00360{bottom:666.898133pt;}
.yd_c00360{bottom:694.400933pt;}
.yc_c00360{bottom:721.934933pt;}
.yb_c00360{bottom:749.453333pt;}
.ya_c00360{bottom:804.173333pt;}
.y9_c00360{bottom:831.693333pt;}
.y7_c00360{bottom:886.399333pt;}
.y8_c00360{bottom:886.400000pt;}
.y5_c00360{bottom:913.930800pt;}
.y6_c00360{bottom:913.933333pt;}
.y3_c00360{bottom:968.634000pt;}
.y4_c00360{bottom:968.640000pt;}
.y2_c00360{bottom:996.480000pt;}
.y1_c00360{bottom:1064.320000pt;}
.hb_c00360{height:30.038056pt;}
.h4_c00360{height:30.689280pt;}
.hc_c00360{height:51.296875pt;}
.h7_c00360{height:58.595833pt;}
.h8_c00360{height:59.642187pt;}
.h2_c00360{height:59.662500pt;}
.h9_c00360{height:60.195312pt;}
.h3_c00360{height:61.242187pt;}
.h5_c00360{height:61.244854pt;}
.h6_c00360{height:62.856250pt;}
.ha_c00360{height:65.429688pt;}
.h1_c00360{height:1122.666667pt;}
.h0_c00360{height:1122.880000pt;}
.w1_c00360{width:793.333333pt;}
.w0_c00360{width:793.600000pt;}
.x0_c00360{left:0.000000pt;}
.x16_c00360{left:102.200000pt;}
.x11_c00360{left:103.232133pt;}
.x1_c00360{left:105.853333pt;}
.x17_c00360{left:122.760000pt;}
.x1c_c00360{left:150.226667pt;}
.x10_c00360{left:151.160000pt;}
.x3_c00360{left:152.223867pt;}
.x18_c00360{left:199.786667pt;}
.x4_c00360{left:212.946667pt;}
.x19_c00360{left:218.760000pt;}
.x5_c00360{left:237.666667pt;}
.x2_c00360{left:250.706667pt;}
.x14_c00360{left:321.400000pt;}
.x1a_c00360{left:322.666667pt;}
.x22_c00360{left:326.146667pt;}
.x6_c00360{left:328.146667pt;}
.x15_c00360{left:339.720000pt;}
.x1b_c00360{left:341.960000pt;}
.x7_c00360{left:355.613333pt;}
.x20_c00360{left:362.466667pt;}
.x25_c00360{left:373.933333pt;}
.x21_c00360{left:382.373333pt;}
.x23_c00360{left:384.880000pt;}
.x24_c00360{left:394.080000pt;}
.x1d_c00360{left:420.093333pt;}
.xc_c00360{left:441.746667pt;}
.x1e_c00360{left:449.146667pt;}
.xd_c00360{left:466.733333pt;}
.xe_c00360{left:505.106667pt;}
.xf_c00360{left:529.853333pt;}
.x8_c00360{left:556.173333pt;}
.x9_c00360{left:588.733333pt;}
.xa_c00360{left:614.546667pt;}
.x1f_c00360{left:631.933333pt;}
.xb_c00360{left:641.386667pt;}
.x13_c00360{left:651.626667pt;}
.x12_c00360{left:654.560000pt;}
}





/* 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_c00361 {
    display:none;
  }
  .loading-indicator_c00361.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00361 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_c00361 { 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_c00361" -> "#page-container .classname_c00361")
 */
.pf_c00361 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00361 { /* 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_c00361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00361 { /* 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_c00361 { /* 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_c00361 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00361 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00361 {overflow:visible;}
  }
}
.c_c00361 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00361 { /* 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_c00361:after { /* webkit #35443 */
  content: '';
}
.t_c00361:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00361 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 */
}
.__c00361 { /* 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_c00361 { /* info for Javascript */
  display:none;
}
.l_c00361 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00361 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00361 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00361: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_c00361 {
    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_c00361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00361.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_c00361 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00361;src:url('chunks/assets/font_6df22dd05749b0d1ee50cb5e.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.284668;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_c00361;src:url('chunks/assets/font_70374d98a21a4a3d47d29f34.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.284180;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_c00361;src:url('chunks/assets/font_ca8687211214cbe7ddada1eb.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;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:ff4_c00361;src:url('chunks/assets/font_509cc567e95444f62bfccfbc.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:0.666000;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;}
.mc_c00361{transform:matrix(0.123264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123264,0.000000,0.000000,0.250000,0,0);}
.ma_c00361{transform:matrix(0.205992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205992,0.000000,0.000000,0.250000,0,0);}
.m7_c00361{transform:matrix(0.207576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207576,0.000000,0.000000,0.250000,0,0);}
.m9_c00361{transform:matrix(0.235201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235201,0.000000,0.000000,0.250000,0,0);}
.mb_c00361{transform:matrix(0.242971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242971,0.000000,0.000000,0.250000,0,0);}
.m0_c00361{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m3_c00361{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m4_c00361{transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{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);}
.m8_c00361{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m5_c00361{transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);}
.m6_c00361{transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253558,0.000000,0.000000,0.250000,0,0);}
.m2_c00361{transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);}
.v1_c00361{vertical-align:-25.860000px;}
.v0_c00361{vertical-align:0.000000px;}
.ls8b_c00361{letter-spacing:-2.478000px;}
.ls6f_c00361{letter-spacing:-2.415000px;}
.ls78_c00361{letter-spacing:-2.373000px;}
.ls69_c00361{letter-spacing:-2.352000px;}
.ls73_c00361{letter-spacing:-1.891620px;}
.ls87_c00361{letter-spacing:-1.600080px;}
.ls71_c00361{letter-spacing:-1.410240px;}
.ls8a_c00361{letter-spacing:-1.247520px;}
.ls8c_c00361{letter-spacing:-0.984120px;}
.ls83_c00361{letter-spacing:-0.908520px;}
.ls85_c00361{letter-spacing:-0.847500px;}
.ls91_c00361{letter-spacing:-0.814800px;}
.ls74_c00361{letter-spacing:-0.698340px;}
.ls79_c00361{letter-spacing:-0.501720px;}
.ls72_c00361{letter-spacing:-0.494940px;}
.ls8e_c00361{letter-spacing:-0.359340px;}
.ls80_c00361{letter-spacing:-0.352560px;}
.ls7b_c00361{letter-spacing:-0.264420px;}
.ls76_c00361{letter-spacing:-0.210180px;}
.ls6a_c00361{letter-spacing:-0.176280px;}
.ls7e_c00361{letter-spacing:-0.162720px;}
.ls77_c00361{letter-spacing:-0.135600px;}
.ls88_c00361{letter-spacing:-0.074580px;}
.ls81_c00361{letter-spacing:-0.067800px;}
.ls6b_c00361{letter-spacing:0.000000px;}
.ls56_c00361{letter-spacing:0.013560px;}
.ls7_c00361{letter-spacing:0.020340px;}
.ls2c_c00361{letter-spacing:0.033900px;}
.ls44_c00361{letter-spacing:0.040680px;}
.ls46_c00361{letter-spacing:0.054240px;}
.ls15_c00361{letter-spacing:0.149160px;}
.ls25_c00361{letter-spacing:0.271200px;}
.ls4_c00361{letter-spacing:0.277980px;}
.ls68_c00361{letter-spacing:0.284760px;}
.ls82_c00361{letter-spacing:0.291540px;}
.ls7d_c00361{letter-spacing:0.305100px;}
.ls47_c00361{letter-spacing:0.318660px;}
.ls21_c00361{letter-spacing:0.339000px;}
.ls7f_c00361{letter-spacing:0.345780px;}
.ls5f_c00361{letter-spacing:0.366120px;}
.ls4f_c00361{letter-spacing:0.379680px;}
.ls33_c00361{letter-spacing:0.386460px;}
.ls5_c00361{letter-spacing:0.413580px;}
.lsb_c00361{letter-spacing:0.433920px;}
.ls7a_c00361{letter-spacing:0.447480px;}
.ls35_c00361{letter-spacing:0.454260px;}
.ls75_c00361{letter-spacing:0.474600px;}
.ls55_c00361{letter-spacing:0.481380px;}
.ls59_c00361{letter-spacing:0.508500px;}
.ls20_c00361{letter-spacing:0.515280px;}
.ls65_c00361{letter-spacing:0.522060px;}
.ls2f_c00361{letter-spacing:0.562740px;}
.ls70_c00361{letter-spacing:0.576300px;}
.ls0_c00361{letter-spacing:0.583080px;}
.ls40_c00361{letter-spacing:0.589860px;}
.ls4b_c00361{letter-spacing:0.603420px;}
.ls49_c00361{letter-spacing:0.616980px;}
.ls11_c00361{letter-spacing:0.623760px;}
.ls90_c00361{letter-spacing:0.630540px;}
.ls1e_c00361{letter-spacing:0.644100px;}
.ls1f_c00361{letter-spacing:0.657660px;}
.ls31_c00361{letter-spacing:0.671220px;}
.ls13_c00361{letter-spacing:0.678000px;}
.ls39_c00361{letter-spacing:0.732240px;}
.ls1c_c00361{letter-spacing:0.739020px;}
.ls42_c00361{letter-spacing:0.759360px;}
.ls1_c00361{letter-spacing:0.766140px;}
.ls10_c00361{letter-spacing:0.786480px;}
.lsa_c00361{letter-spacing:0.800040px;}
.ls2a_c00361{letter-spacing:0.813600px;}
.ls14_c00361{letter-spacing:0.820380px;}
.ls52_c00361{letter-spacing:0.827160px;}
.ls4a_c00361{letter-spacing:0.833940px;}
.ls1b_c00361{letter-spacing:0.847500px;}
.ls8f_c00361{letter-spacing:0.854280px;}
.ls6c_c00361{letter-spacing:0.861060px;}
.ls48_c00361{letter-spacing:0.867840px;}
.ls63_c00361{letter-spacing:0.874620px;}
.ls66_c00361{letter-spacing:0.888180px;}
.lsf_c00361{letter-spacing:0.894960px;}
.lse_c00361{letter-spacing:0.915300px;}
.lsd_c00361{letter-spacing:0.917700px;}
.ls4c_c00361{letter-spacing:0.922080px;}
.ls2d_c00361{letter-spacing:0.928860px;}
.ls7c_c00361{letter-spacing:0.955980px;}
.ls5e_c00361{letter-spacing:0.962760px;}
.ls16_c00361{letter-spacing:0.969540px;}
.ls51_c00361{letter-spacing:0.983100px;}
.ls5d_c00361{letter-spacing:0.989880px;}
.ls89_c00361{letter-spacing:0.996660px;}
.ls9_c00361{letter-spacing:1.010220px;}
.ls1d_c00361{letter-spacing:1.017000px;}
.ls27_c00361{letter-spacing:1.044120px;}
.ls57_c00361{letter-spacing:1.057680px;}
.ls60_c00361{letter-spacing:1.064460px;}
.ls58_c00361{letter-spacing:1.084800px;}
.ls45_c00361{letter-spacing:1.091580px;}
.ls37_c00361{letter-spacing:1.098360px;}
.ls29_c00361{letter-spacing:1.105140px;}
.ls3e_c00361{letter-spacing:1.118700px;}
.ls84_c00361{letter-spacing:1.125480px;}
.ls5b_c00361{letter-spacing:1.132260px;}
.ls22_c00361{letter-spacing:1.139040px;}
.ls5a_c00361{letter-spacing:1.166160px;}
.ls24_c00361{letter-spacing:1.179720px;}
.ls23_c00361{letter-spacing:1.200060px;}
.ls64_c00361{letter-spacing:1.213620px;}
.ls4d_c00361{letter-spacing:1.227180px;}
.ls3f_c00361{letter-spacing:1.247520px;}
.ls19_c00361{letter-spacing:1.254300px;}
.ls1a_c00361{letter-spacing:1.261080px;}
.ls50_c00361{letter-spacing:1.288200px;}
.ls2b_c00361{letter-spacing:1.294980px;}
.ls17_c00361{letter-spacing:1.301760px;}
.ls12_c00361{letter-spacing:1.308540px;}
.ls6e_c00361{letter-spacing:1.322100px;}
.ls6_c00361{letter-spacing:1.328880px;}
.ls53_c00361{letter-spacing:1.342440px;}
.lsc_c00361{letter-spacing:1.373100px;}
.ls86_c00361{letter-spacing:1.376340px;}
.ls3_c00361{letter-spacing:1.396680px;}
.ls2e_c00361{letter-spacing:1.417020px;}
.ls3a_c00361{letter-spacing:1.444140px;}
.ls30_c00361{letter-spacing:1.478040px;}
.ls3c_c00361{letter-spacing:1.484820px;}
.ls41_c00361{letter-spacing:1.491600px;}
.ls5c_c00361{letter-spacing:1.545840px;}
.ls4e_c00361{letter-spacing:1.559400px;}
.ls3d_c00361{letter-spacing:1.566180px;}
.ls67_c00361{letter-spacing:1.613640px;}
.ls2_c00361{letter-spacing:1.742460px;}
.ls28_c00361{letter-spacing:1.749240px;}
.ls32_c00361{letter-spacing:1.762800px;}
.ls8d_c00361{letter-spacing:1.783140px;}
.ls61_c00361{letter-spacing:1.850940px;}
.ls26_c00361{letter-spacing:1.891620px;}
.ls18_c00361{letter-spacing:1.911960px;}
.ls8_c00361{letter-spacing:1.918740px;}
.ls43_c00361{letter-spacing:2.088240px;}
.ls54_c00361{letter-spacing:2.115360px;}
.ls3b_c00361{letter-spacing:2.162820px;}
.ls34_c00361{letter-spacing:2.203500px;}
.ls62_c00361{letter-spacing:2.637420px;}
.ls36_c00361{letter-spacing:2.983200px;}
.ls38_c00361{letter-spacing:3.356100px;}
.ls6d_c00361{letter-spacing:3.390000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{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__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00361{word-spacing:-17.268660px;}
.ws2_c00361{word-spacing:-0.067800px;}
.ws7_c00361{word-spacing:0.000000px;}
.ws0_c00361{word-spacing:1.606860px;}
.ws1_c00361{word-spacing:4.169640px;}
.ws6_c00361{word-spacing:7.220520px;}
.ws5_c00361{word-spacing:18.373800px;}
.ws3_c00361{word-spacing:20.204400px;}
._15_c00361{margin-left:-5.367660px;}
._1_c00361{margin-left:-4.305300px;}
._2_c00361{margin-left:-2.877240px;}
._4_c00361{margin-left:-1.857720px;}
._5_c00361{width:1.389900px;}
._6_c00361{width:2.440800px;}
._0_c00361{width:3.552720px;}
._7_c00361{width:4.615080px;}
._b_c00361{width:5.722320px;}
._c_c00361{width:6.847260px;}
._3_c00361{width:8.232360px;}
._8_c00361{width:10.353060px;}
._9_c00361{width:12.199320px;}
._10_c00361{width:14.149860px;}
._e_c00361{width:15.438060px;}
._d_c00361{width:18.019140px;}
._f_c00361{width:19.562880px;}
._a_c00361{width:20.921640px;}
._16_c00361{width:24.164880px;}
._13_c00361{width:26.089440px;}
._11_c00361{width:31.703280px;}
._12_c00361{width:33.913560px;}
._14_c00361{width:35.011920px;}
.fc0_c00361{color:transparent;}
.fs6_c00361{font-size:51.840000px;}
.fs7_c00361{font-size:58.200000px;}
.fs0_c00361{font-size:67.200000px;}
.fs1_c00361{font-size:67.800000px;}
.fs2_c00361{font-size:69.000000px;}
.fs4_c00361{font-size:70.800000px;}
.fs5_c00361{font-size:71.400000px;}
.fs3_c00361{font-size:110.400000px;}
.y0_c00361{bottom:0.000000px;}
.y20_c00361{bottom:68.055000px;}
.y1f_c00361{bottom:188.643300px;}
.y1e_c00361{bottom:219.255000px;}
.y1d_c00361{bottom:280.807350px;}
.y1b_c00361{bottom:311.762550px;}
.y1c_c00361{bottom:311.775000px;}
.y1a_c00361{bottom:342.357300px;}
.y19_c00361{bottom:403.563750px;}
.y18_c00361{bottom:434.887350px;}
.y17_c00361{bottom:465.855000px;}
.y16_c00361{bottom:465.862200px;}
.y15_c00361{bottom:496.440000px;}
.y13_c00361{bottom:558.731850px;}
.y14_c00361{bottom:558.735000px;}
.y12_c00361{bottom:621.735000px;}
.y11_c00361{bottom:621.740250px;}
.yf_c00361{bottom:652.330950px;}
.y10_c00361{bottom:652.335000px;}
.ye_c00361{bottom:683.281650px;}
.yd_c00361{bottom:714.249300px;}
.yc_c00361{bottom:745.200000px;}
.yb_c00361{bottom:806.775000px;}
.ya_c00361{bottom:837.720000px;}
.y9_c00361{bottom:837.729750px;}
.y8_c00361{bottom:898.563300px;}
.y7_c00361{bottom:929.177850px;}
.y6_c00361{bottom:990.723300px;}
.y5_c00361{bottom:1021.335000px;}
.y3_c00361{bottom:1083.232350px;}
.y4_c00361{bottom:1083.240000px;}
.y2_c00361{bottom:1114.200000px;}
.y1_c00361{bottom:1190.175000px;}
.hb_c00361{height:34.525440px;}
.hc_c00361{height:57.120117px;}
.h2_c00361{height:65.953125px;}
.h8_c00361{height:66.508887px;}
.h3_c00361{height:66.541992px;}
.h5_c00361{height:67.686035px;}
.h6_c00361{height:67.719727px;}
.h9_c00361{height:69.451758px;}
.ha_c00361{height:70.075195px;}
.h4_c00361{height:71.964844px;}
.h7_c00361{height:89.283750px;}
.h1_c00361{height:1263.000000px;}
.h0_c00361{height:1263.240000px;}
.w1_c00361{width:892.500000px;}
.w0_c00361{width:892.800000px;}
.x0_c00361{left:0.000000px;}
.x1_c00361{left:116.565000px;}
.x17_c00361{left:117.641550px;}
.x2_c00361{left:170.085000px;}
.x8_c00361{left:172.701150px;}
.x1c_c00361{left:209.175000px;}
.x5_c00361{left:246.060000px;}
.x6_c00361{left:262.980000px;}
.x7_c00361{left:274.095000px;}
.x18_c00361{left:323.820000px;}
.x1d_c00361{left:328.875000px;}
.x19_c00361{left:346.530000px;}
.x10_c00361{left:390.165000px;}
.x1e_c00361{left:392.250000px;}
.xe_c00361{left:417.135000px;}
.x22_c00361{left:418.875000px;}
.x11_c00361{left:422.130000px;}
.xf_c00361{left:440.970000px;}
.x9_c00361{left:464.460000px;}
.xa_c00361{left:502.905000px;}
.xb_c00361{left:529.950000px;}
.x1f_c00361{left:531.000000px;}
.x3_c00361{left:568.335000px;}
.x20_c00361{left:589.095000px;}
.x4_c00361{left:592.740000px;}
.x12_c00361{left:600.405000px;}
.x13_c00361{left:616.860000px;}
.x21_c00361{left:637.815000px;}
.x15_c00361{left:639.900000px;}
.x14_c00361{left:643.170000px;}
.x1a_c00361{left:657.840000px;}
.xc_c00361{left:660.270000px;}
.x16_c00361{left:662.940000px;}
.x1b_c00361{left:678.825000px;}
.xd_c00361{left:697.650000px;}
@media print{
.v1_c00361{vertical-align:-22.986667pt;}
.v0_c00361{vertical-align:0.000000pt;}
.ls8b_c00361{letter-spacing:-2.202667pt;}
.ls6f_c00361{letter-spacing:-2.146667pt;}
.ls78_c00361{letter-spacing:-2.109333pt;}
.ls69_c00361{letter-spacing:-2.090667pt;}
.ls73_c00361{letter-spacing:-1.681440pt;}
.ls87_c00361{letter-spacing:-1.422293pt;}
.ls71_c00361{letter-spacing:-1.253547pt;}
.ls8a_c00361{letter-spacing:-1.108907pt;}
.ls8c_c00361{letter-spacing:-0.874773pt;}
.ls83_c00361{letter-spacing:-0.807573pt;}
.ls85_c00361{letter-spacing:-0.753333pt;}
.ls91_c00361{letter-spacing:-0.724267pt;}
.ls74_c00361{letter-spacing:-0.620747pt;}
.ls79_c00361{letter-spacing:-0.445973pt;}
.ls72_c00361{letter-spacing:-0.439947pt;}
.ls8e_c00361{letter-spacing:-0.319413pt;}
.ls80_c00361{letter-spacing:-0.313387pt;}
.ls7b_c00361{letter-spacing:-0.235040pt;}
.ls76_c00361{letter-spacing:-0.186827pt;}
.ls6a_c00361{letter-spacing:-0.156693pt;}
.ls7e_c00361{letter-spacing:-0.144640pt;}
.ls77_c00361{letter-spacing:-0.120533pt;}
.ls88_c00361{letter-spacing:-0.066293pt;}
.ls81_c00361{letter-spacing:-0.060267pt;}
.ls6b_c00361{letter-spacing:0.000000pt;}
.ls56_c00361{letter-spacing:0.012053pt;}
.ls7_c00361{letter-spacing:0.018080pt;}
.ls2c_c00361{letter-spacing:0.030133pt;}
.ls44_c00361{letter-spacing:0.036160pt;}
.ls46_c00361{letter-spacing:0.048213pt;}
.ls15_c00361{letter-spacing:0.132587pt;}
.ls25_c00361{letter-spacing:0.241067pt;}
.ls4_c00361{letter-spacing:0.247093pt;}
.ls68_c00361{letter-spacing:0.253120pt;}
.ls82_c00361{letter-spacing:0.259147pt;}
.ls7d_c00361{letter-spacing:0.271200pt;}
.ls47_c00361{letter-spacing:0.283253pt;}
.ls21_c00361{letter-spacing:0.301333pt;}
.ls7f_c00361{letter-spacing:0.307360pt;}
.ls5f_c00361{letter-spacing:0.325440pt;}
.ls4f_c00361{letter-spacing:0.337493pt;}
.ls33_c00361{letter-spacing:0.343520pt;}
.ls5_c00361{letter-spacing:0.367627pt;}
.lsb_c00361{letter-spacing:0.385707pt;}
.ls7a_c00361{letter-spacing:0.397760pt;}
.ls35_c00361{letter-spacing:0.403787pt;}
.ls75_c00361{letter-spacing:0.421867pt;}
.ls55_c00361{letter-spacing:0.427893pt;}
.ls59_c00361{letter-spacing:0.452000pt;}
.ls20_c00361{letter-spacing:0.458027pt;}
.ls65_c00361{letter-spacing:0.464053pt;}
.ls2f_c00361{letter-spacing:0.500213pt;}
.ls70_c00361{letter-spacing:0.512267pt;}
.ls0_c00361{letter-spacing:0.518293pt;}
.ls40_c00361{letter-spacing:0.524320pt;}
.ls4b_c00361{letter-spacing:0.536373pt;}
.ls49_c00361{letter-spacing:0.548427pt;}
.ls11_c00361{letter-spacing:0.554453pt;}
.ls90_c00361{letter-spacing:0.560480pt;}
.ls1e_c00361{letter-spacing:0.572533pt;}
.ls1f_c00361{letter-spacing:0.584587pt;}
.ls31_c00361{letter-spacing:0.596640pt;}
.ls13_c00361{letter-spacing:0.602667pt;}
.ls39_c00361{letter-spacing:0.650880pt;}
.ls1c_c00361{letter-spacing:0.656907pt;}
.ls42_c00361{letter-spacing:0.674987pt;}
.ls1_c00361{letter-spacing:0.681013pt;}
.ls10_c00361{letter-spacing:0.699093pt;}
.lsa_c00361{letter-spacing:0.711147pt;}
.ls2a_c00361{letter-spacing:0.723200pt;}
.ls14_c00361{letter-spacing:0.729227pt;}
.ls52_c00361{letter-spacing:0.735253pt;}
.ls4a_c00361{letter-spacing:0.741280pt;}
.ls1b_c00361{letter-spacing:0.753333pt;}
.ls8f_c00361{letter-spacing:0.759360pt;}
.ls6c_c00361{letter-spacing:0.765387pt;}
.ls48_c00361{letter-spacing:0.771413pt;}
.ls63_c00361{letter-spacing:0.777440pt;}
.ls66_c00361{letter-spacing:0.789493pt;}
.lsf_c00361{letter-spacing:0.795520pt;}
.lse_c00361{letter-spacing:0.813600pt;}
.lsd_c00361{letter-spacing:0.815733pt;}
.ls4c_c00361{letter-spacing:0.819627pt;}
.ls2d_c00361{letter-spacing:0.825653pt;}
.ls7c_c00361{letter-spacing:0.849760pt;}
.ls5e_c00361{letter-spacing:0.855787pt;}
.ls16_c00361{letter-spacing:0.861813pt;}
.ls51_c00361{letter-spacing:0.873867pt;}
.ls5d_c00361{letter-spacing:0.879893pt;}
.ls89_c00361{letter-spacing:0.885920pt;}
.ls9_c00361{letter-spacing:0.897973pt;}
.ls1d_c00361{letter-spacing:0.904000pt;}
.ls27_c00361{letter-spacing:0.928107pt;}
.ls57_c00361{letter-spacing:0.940160pt;}
.ls60_c00361{letter-spacing:0.946187pt;}
.ls58_c00361{letter-spacing:0.964267pt;}
.ls45_c00361{letter-spacing:0.970293pt;}
.ls37_c00361{letter-spacing:0.976320pt;}
.ls29_c00361{letter-spacing:0.982347pt;}
.ls3e_c00361{letter-spacing:0.994400pt;}
.ls84_c00361{letter-spacing:1.000427pt;}
.ls5b_c00361{letter-spacing:1.006453pt;}
.ls22_c00361{letter-spacing:1.012480pt;}
.ls5a_c00361{letter-spacing:1.036587pt;}
.ls24_c00361{letter-spacing:1.048640pt;}
.ls23_c00361{letter-spacing:1.066720pt;}
.ls64_c00361{letter-spacing:1.078773pt;}
.ls4d_c00361{letter-spacing:1.090827pt;}
.ls3f_c00361{letter-spacing:1.108907pt;}
.ls19_c00361{letter-spacing:1.114933pt;}
.ls1a_c00361{letter-spacing:1.120960pt;}
.ls50_c00361{letter-spacing:1.145067pt;}
.ls2b_c00361{letter-spacing:1.151093pt;}
.ls17_c00361{letter-spacing:1.157120pt;}
.ls12_c00361{letter-spacing:1.163147pt;}
.ls6e_c00361{letter-spacing:1.175200pt;}
.ls6_c00361{letter-spacing:1.181227pt;}
.ls53_c00361{letter-spacing:1.193280pt;}
.lsc_c00361{letter-spacing:1.220533pt;}
.ls86_c00361{letter-spacing:1.223413pt;}
.ls3_c00361{letter-spacing:1.241493pt;}
.ls2e_c00361{letter-spacing:1.259573pt;}
.ls3a_c00361{letter-spacing:1.283680pt;}
.ls30_c00361{letter-spacing:1.313813pt;}
.ls3c_c00361{letter-spacing:1.319840pt;}
.ls41_c00361{letter-spacing:1.325867pt;}
.ls5c_c00361{letter-spacing:1.374080pt;}
.ls4e_c00361{letter-spacing:1.386133pt;}
.ls3d_c00361{letter-spacing:1.392160pt;}
.ls67_c00361{letter-spacing:1.434347pt;}
.ls2_c00361{letter-spacing:1.548853pt;}
.ls28_c00361{letter-spacing:1.554880pt;}
.ls32_c00361{letter-spacing:1.566933pt;}
.ls8d_c00361{letter-spacing:1.585013pt;}
.ls61_c00361{letter-spacing:1.645280pt;}
.ls26_c00361{letter-spacing:1.681440pt;}
.ls18_c00361{letter-spacing:1.699520pt;}
.ls8_c00361{letter-spacing:1.705547pt;}
.ls43_c00361{letter-spacing:1.856213pt;}
.ls54_c00361{letter-spacing:1.880320pt;}
.ls3b_c00361{letter-spacing:1.922507pt;}
.ls34_c00361{letter-spacing:1.958667pt;}
.ls62_c00361{letter-spacing:2.344373pt;}
.ls36_c00361{letter-spacing:2.651733pt;}
.ls38_c00361{letter-spacing:2.983200pt;}
.ls6d_c00361{letter-spacing:3.013333pt;}
.ws4_c00361{word-spacing:-15.349920pt;}
.ws2_c00361{word-spacing:-0.060267pt;}
.ws7_c00361{word-spacing:0.000000pt;}
.ws0_c00361{word-spacing:1.428320pt;}
.ws1_c00361{word-spacing:3.706347pt;}
.ws6_c00361{word-spacing:6.418240pt;}
.ws5_c00361{word-spacing:16.332267pt;}
.ws3_c00361{word-spacing:17.959467pt;}
._15_c00361{margin-left:-4.771253pt;}
._1_c00361{margin-left:-3.826933pt;}
._2_c00361{margin-left:-2.557547pt;}
._4_c00361{margin-left:-1.651307pt;}
._5_c00361{width:1.235467pt;}
._6_c00361{width:2.169600pt;}
._0_c00361{width:3.157973pt;}
._7_c00361{width:4.102293pt;}
._b_c00361{width:5.086507pt;}
._c_c00361{width:6.086453pt;}
._3_c00361{width:7.317653pt;}
._8_c00361{width:9.202720pt;}
._9_c00361{width:10.843840pt;}
._10_c00361{width:12.577653pt;}
._e_c00361{width:13.722720pt;}
._d_c00361{width:16.017013pt;}
._f_c00361{width:17.389227pt;}
._a_c00361{width:18.597013pt;}
._16_c00361{width:21.479893pt;}
._13_c00361{width:23.190613pt;}
._11_c00361{width:28.180693pt;}
._12_c00361{width:30.145387pt;}
._14_c00361{width:31.121707pt;}
.fs6_c00361{font-size:46.080000pt;}
.fs7_c00361{font-size:51.733333pt;}
.fs0_c00361{font-size:59.733333pt;}
.fs1_c00361{font-size:60.266667pt;}
.fs2_c00361{font-size:61.333333pt;}
.fs4_c00361{font-size:62.933333pt;}
.fs5_c00361{font-size:63.466667pt;}
.fs3_c00361{font-size:98.133333pt;}
.y0_c00361{bottom:0.000000pt;}
.y20_c00361{bottom:60.493333pt;}
.y1f_c00361{bottom:167.682933pt;}
.y1e_c00361{bottom:194.893333pt;}
.y1d_c00361{bottom:249.606533pt;}
.y1b_c00361{bottom:277.122267pt;}
.y1c_c00361{bottom:277.133333pt;}
.y1a_c00361{bottom:304.317600pt;}
.y19_c00361{bottom:358.723333pt;}
.y18_c00361{bottom:386.566533pt;}
.y17_c00361{bottom:414.093333pt;}
.y16_c00361{bottom:414.099733pt;}
.y15_c00361{bottom:441.280000pt;}
.y13_c00361{bottom:496.650533pt;}
.y14_c00361{bottom:496.653333pt;}
.y12_c00361{bottom:552.653333pt;}
.y11_c00361{bottom:552.658000pt;}
.yf_c00361{bottom:579.849733pt;}
.y10_c00361{bottom:579.853333pt;}
.ye_c00361{bottom:607.361467pt;}
.yd_c00361{bottom:634.888267pt;}
.yc_c00361{bottom:662.400000pt;}
.yb_c00361{bottom:717.133333pt;}
.ya_c00361{bottom:744.640000pt;}
.y9_c00361{bottom:744.648667pt;}
.y8_c00361{bottom:798.722933pt;}
.y7_c00361{bottom:825.935867pt;}
.y6_c00361{bottom:880.642933pt;}
.y5_c00361{bottom:907.853333pt;}
.y3_c00361{bottom:962.873200pt;}
.y4_c00361{bottom:962.880000pt;}
.y2_c00361{bottom:990.400000pt;}
.y1_c00361{bottom:1057.933333pt;}
.hb_c00361{height:30.689280pt;}
.hc_c00361{height:50.773437pt;}
.h2_c00361{height:58.625000pt;}
.h8_c00361{height:59.119010pt;}
.h3_c00361{height:59.148438pt;}
.h5_c00361{height:60.165365pt;}
.h6_c00361{height:60.195312pt;}
.h9_c00361{height:61.734896pt;}
.ha_c00361{height:62.289062pt;}
.h4_c00361{height:63.968750pt;}
.h7_c00361{height:79.363333pt;}
.h1_c00361{height:1122.666667pt;}
.h0_c00361{height:1122.880000pt;}
.w1_c00361{width:793.333333pt;}
.w0_c00361{width:793.600000pt;}
.x0_c00361{left:0.000000pt;}
.x1_c00361{left:103.613333pt;}
.x17_c00361{left:104.570267pt;}
.x2_c00361{left:151.186667pt;}
.x8_c00361{left:153.512133pt;}
.x1c_c00361{left:185.933333pt;}
.x5_c00361{left:218.720000pt;}
.x6_c00361{left:233.760000pt;}
.x7_c00361{left:243.640000pt;}
.x18_c00361{left:287.840000pt;}
.x1d_c00361{left:292.333333pt;}
.x19_c00361{left:308.026667pt;}
.x10_c00361{left:346.813333pt;}
.x1e_c00361{left:348.666667pt;}
.xe_c00361{left:370.786667pt;}
.x22_c00361{left:372.333333pt;}
.x11_c00361{left:375.226667pt;}
.xf_c00361{left:391.973333pt;}
.x9_c00361{left:412.853333pt;}
.xa_c00361{left:447.026667pt;}
.xb_c00361{left:471.066667pt;}
.x1f_c00361{left:472.000000pt;}
.x3_c00361{left:505.186667pt;}
.x20_c00361{left:523.640000pt;}
.x4_c00361{left:526.880000pt;}
.x12_c00361{left:533.693333pt;}
.x13_c00361{left:548.320000pt;}
.x21_c00361{left:566.946667pt;}
.x15_c00361{left:568.800000pt;}
.x14_c00361{left:571.706667pt;}
.x1a_c00361{left:584.746667pt;}
.xc_c00361{left:586.906667pt;}
.x16_c00361{left:589.280000pt;}
.x1b_c00361{left:603.400000pt;}
.xd_c00361{left:620.133333pt;}
}





/* 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_c00362 {
    display:none;
  }
  .loading-indicator_c00362.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00362 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_c00362 { 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_c00362" -> "#page-container .classname_c00362")
 */
.pf_c00362 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00362 { /* 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_c00362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00362 { /* 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_c00362 { /* 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_c00362 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00362 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00362 {overflow:visible;}
  }
}
.c_c00362 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00362 { /* 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_c00362:after { /* webkit #35443 */
  content: '';
}
.t_c00362:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00362 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 */
}
.__c00362 { /* 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_c00362 { /* info for Javascript */
  display:none;
}
.l_c00362 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00362 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00362 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00362: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_c00362 {
    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_c00362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00362.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_c00362 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00362;src:url('chunks/assets/font_543d83e2ddb3769ed8cac530.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.284668;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_c00362;src:url('chunks/assets/font_344613c6388e13d9a0aed108.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.284180;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_c00362;src:url('chunks/assets/font_0e6a0516fcde0a3e270b2e42.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:0.666000;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_c00362;src:url('chunks/assets/font_bb4d439705236e3bd9c1d672.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;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;}
.m7_c00362{transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);}
.md_c00362{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.ma_c00362{transform:matrix(0.190259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190259,0.000000,0.000000,0.250000,0,0);}
.m9_c00362{transform:matrix(0.195472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195472,0.000000,0.000000,0.250000,0,0);}
.m2_c00362{transform:matrix(0.205496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205496,0.000000,0.000000,0.250000,0,0);}
.mc_c00362{transform:matrix(0.235624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235624,0.000000,0.000000,0.250000,0,0);}
.mb_c00362{transform:matrix(0.243771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243771,0.000000,0.000000,0.250000,0,0);}
.m4_c00362{transform:matrix(0.244271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244271,0.000000,0.000000,0.250000,0,0);}
.m6_c00362{transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);}
.m8_c00362{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m0_c00362{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m5_c00362{transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);}
.m3_c00362{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m1_c00362{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);}
.v0_c00362{vertical-align:0.000000px;}
.ls4c_c00362{letter-spacing:-2.457000px;}
.ls5f_c00362{letter-spacing:-2.415000px;}
.ls80_c00362{letter-spacing:-2.358720px;}
.ls40_c00362{letter-spacing:-2.352000px;}
.ls7b_c00362{letter-spacing:-2.309580px;}
.ls69_c00362{letter-spacing:-2.204280px;}
.ls46_c00362{letter-spacing:-2.035800px;}
.ls57_c00362{letter-spacing:-1.972620px;}
.ls73_c00362{letter-spacing:-1.951560px;}
.ls50_c00362{letter-spacing:-1.769040px;}
.ls4b_c00362{letter-spacing:-1.642680px;}
.ls89_c00362{letter-spacing:-1.628640px;}
.ls82_c00362{letter-spacing:-1.565460px;}
.ls55_c00362{letter-spacing:-1.516320px;}
.ls64_c00362{letter-spacing:-1.509300px;}
.ls5e_c00362{letter-spacing:-1.453140px;}
.ls4a_c00362{letter-spacing:-1.361880px;}
.ls8a_c00362{letter-spacing:-1.277640px;}
.ls87_c00362{letter-spacing:-1.270620px;}
.ls52_c00362{letter-spacing:-1.151280px;}
.ls53_c00362{letter-spacing:-1.144260px;}
.ls6b_c00362{letter-spacing:-1.116180px;}
.ls5b_c00362{letter-spacing:-1.017900px;}
.ls72_c00362{letter-spacing:-0.905580px;}
.ls45_c00362{letter-spacing:-0.856440px;}
.ls5c_c00362{letter-spacing:-0.807300px;}
.ls4f_c00362{letter-spacing:-0.793260px;}
.ls7a_c00362{letter-spacing:-0.772200px;}
.ls7f_c00362{letter-spacing:-0.765180px;}
.ls88_c00362{letter-spacing:-0.723060px;}
.ls4d_c00362{letter-spacing:-0.702000px;}
.ls62_c00362{letter-spacing:-0.540540px;}
.ls49_c00362{letter-spacing:-0.526500px;}
.ls65_c00362{letter-spacing:-0.512460px;}
.ls8c_c00362{letter-spacing:-0.498420px;}
.ls7d_c00362{letter-spacing:-0.470340px;}
.ls74_c00362{letter-spacing:-0.449280px;}
.ls58_c00362{letter-spacing:-0.435240px;}
.ls6c_c00362{letter-spacing:-0.428220px;}
.ls5a_c00362{letter-spacing:-0.421200px;}
.ls68_c00362{letter-spacing:-0.407160px;}
.ls79_c00362{letter-spacing:-0.400140px;}
.ls77_c00362{letter-spacing:-0.393120px;}
.ls44_c00362{letter-spacing:-0.386100px;}
.ls66_c00362{letter-spacing:-0.351000px;}
.ls6a_c00362{letter-spacing:-0.343980px;}
.ls7c_c00362{letter-spacing:-0.336960px;}
.ls83_c00362{letter-spacing:-0.322920px;}
.ls81_c00362{letter-spacing:-0.315900px;}
.ls8b_c00362{letter-spacing:-0.308880px;}
.ls6d_c00362{letter-spacing:-0.301860px;}
.ls85_c00362{letter-spacing:-0.294840px;}
.ls63_c00362{letter-spacing:-0.266760px;}
.ls41_c00362{letter-spacing:-0.259740px;}
.ls61_c00362{letter-spacing:-0.252720px;}
.ls6f_c00362{letter-spacing:-0.238680px;}
.ls5d_c00362{letter-spacing:-0.210600px;}
.ls4e_c00362{letter-spacing:-0.196560px;}
.ls60_c00362{letter-spacing:-0.161460px;}
.ls86_c00362{letter-spacing:-0.147420px;}
.ls70_c00362{letter-spacing:-0.133380px;}
.ls75_c00362{letter-spacing:-0.119340px;}
.ls59_c00362{letter-spacing:-0.098280px;}
.ls6e_c00362{letter-spacing:-0.091260px;}
.ls84_c00362{letter-spacing:-0.077220px;}
.ls42_c00362{letter-spacing:-0.063180px;}
.ls76_c00362{letter-spacing:-0.056160px;}
.ls51_c00362{letter-spacing:-0.049140px;}
.ls56_c00362{letter-spacing:-0.042120px;}
.ls71_c00362{letter-spacing:-0.028080px;}
.ls54_c00362{letter-spacing:-0.021060px;}
.ls48_c00362{letter-spacing:-0.014040px;}
.ls67_c00362{letter-spacing:-0.007020px;}
.ls47_c00362{letter-spacing:0.000000px;}
.ls35_c00362{letter-spacing:0.007020px;}
.ls6_c00362{letter-spacing:0.014040px;}
.ls26_c00362{letter-spacing:0.021060px;}
.ls31_c00362{letter-spacing:0.056160px;}
.ls2e_c00362{letter-spacing:0.063180px;}
.lsc_c00362{letter-spacing:0.070200px;}
.ls10_c00362{letter-spacing:0.091260px;}
.lsf_c00362{letter-spacing:0.098280px;}
.ls1f_c00362{letter-spacing:0.105300px;}
.ls27_c00362{letter-spacing:0.119340px;}
.ls22_c00362{letter-spacing:0.133380px;}
.ls16_c00362{letter-spacing:0.140400px;}
.ls29_c00362{letter-spacing:0.147420px;}
.ls14_c00362{letter-spacing:0.154440px;}
.ls13_c00362{letter-spacing:0.175500px;}
.ls33_c00362{letter-spacing:0.182520px;}
.ls30_c00362{letter-spacing:0.203580px;}
.ls34_c00362{letter-spacing:0.217620px;}
.ls25_c00362{letter-spacing:0.224640px;}
.ls1d_c00362{letter-spacing:0.238680px;}
.ls12_c00362{letter-spacing:0.245700px;}
.ls3f_c00362{letter-spacing:0.252720px;}
.ls17_c00362{letter-spacing:0.315900px;}
.ls78_c00362{letter-spacing:0.329940px;}
.ls32_c00362{letter-spacing:0.358020px;}
.ls3b_c00362{letter-spacing:0.372060px;}
.ls2a_c00362{letter-spacing:0.379080px;}
.ls1b_c00362{letter-spacing:0.407160px;}
.lsb_c00362{letter-spacing:0.421200px;}
.ls23_c00362{letter-spacing:0.442260px;}
.lse_c00362{letter-spacing:0.456300px;}
.ls3d_c00362{letter-spacing:0.484380px;}
.ls19_c00362{letter-spacing:0.498420px;}
.ls3e_c00362{letter-spacing:0.505440px;}
.ls37_c00362{letter-spacing:0.512460px;}
.ls7e_c00362{letter-spacing:0.603720px;}
.ls3a_c00362{letter-spacing:0.638820px;}
.ls39_c00362{letter-spacing:0.642960px;}
.ls38_c00362{letter-spacing:0.656640px;}
.ls24_c00362{letter-spacing:0.737100px;}
.ls1e_c00362{letter-spacing:0.772200px;}
.ls5_c00362{letter-spacing:0.800280px;}
.ls11_c00362{letter-spacing:0.821340px;}
.ls1c_c00362{letter-spacing:0.841320px;}
.ls2_c00362{letter-spacing:0.842400px;}
.ls15_c00362{letter-spacing:0.863460px;}
.ls2f_c00362{letter-spacing:0.870480px;}
.ls8_c00362{letter-spacing:0.882360px;}
.lsa_c00362{letter-spacing:0.954720px;}
.ls3_c00362{letter-spacing:0.957600px;}
.ls36_c00362{letter-spacing:0.989820px;}
.ls2d_c00362{letter-spacing:1.019160px;}
.ls7_c00362{letter-spacing:1.039680px;}
.ls3c_c00362{letter-spacing:1.045980px;}
.ls9_c00362{letter-spacing:1.101240px;}
.ls4_c00362{letter-spacing:1.121760px;}
.lsd_c00362{letter-spacing:1.144260px;}
.ls18_c00362{letter-spacing:1.190160px;}
.ls21_c00362{letter-spacing:1.242540px;}
.ls28_c00362{letter-spacing:1.263600px;}
.ls20_c00362{letter-spacing:1.425060px;}
.ls43_c00362{letter-spacing:1.432080px;}
.ls2c_c00362{letter-spacing:1.558440px;}
.ls1_c00362{letter-spacing:1.600560px;}
.ls0_c00362{letter-spacing:2.065680px;}
.ls1a_c00362{letter-spacing:2.183220px;}
.ls2b_c00362{letter-spacing:2.485080px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{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__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00362{word-spacing:0.000000px;}
.ws1_c00362{word-spacing:6.926160px;}
.ws0_c00362{word-spacing:10.926240px;}
.ws4_c00362{word-spacing:11.736240px;}
.ws2_c00362{word-spacing:24.199200px;}
.ws3_c00362{word-spacing:25.785000px;}
._14_c00362{margin-left:-8.075760px;}
._1_c00362{margin-left:-2.959680px;}
._0_c00362{margin-left:-1.860480px;}
._9_c00362{width:1.016520px;}
._7_c00362{width:2.316600px;}
._2_c00362{width:3.896100px;}
._5_c00362{width:5.069400px;}
._6_c00362{width:6.388200px;}
._16_c00362{width:7.446360px;}
._4_c00362{width:8.496660px;}
._8_c00362{width:9.757200px;}
._c_c00362{width:11.159940px;}
._b_c00362{width:12.359760px;}
._3_c00362{width:13.780260px;}
._a_c00362{width:15.626520px;}
._d_c00362{width:20.077200px;}
._10_c00362{width:22.534200px;}
._f_c00362{width:23.938200px;}
._e_c00362{width:26.612820px;}
._11_c00362{width:28.782000px;}
._12_c00362{width:30.038580px;}
._13_c00362{width:31.825200px;}
._15_c00362{width:34.573500px;}
.fc0_c00362{color:transparent;}
.fs7_c00362{font-size:46.080000px;}
.fs3_c00362{font-size:51.840000px;}
.fs5_c00362{font-size:61.200000px;}
.fs6_c00362{font-size:66.000000px;}
.fs0_c00362{font-size:67.200000px;}
.fs1_c00362{font-size:68.400000px;}
.fs4_c00362{font-size:69.000000px;}
.fs2_c00362{font-size:70.200000px;}
.y0_c00362{bottom:0.000000px;}
.y1d_c00362{bottom:65.175000px;}
.y1c_c00362{bottom:154.450800px;}
.y1b_c00362{bottom:185.760000px;}
.y1a_c00362{bottom:246.975000px;}
.y19_c00362{bottom:278.283600px;}
.y18_c00362{bottom:309.610350px;}
.y17_c00362{bottom:340.200000px;}
.y16_c00362{bottom:402.136800px;}
.y14_c00362{bottom:433.091400px;}
.y15_c00362{bottom:433.095000px;}
.y13_c00362{bottom:494.639250px;}
.y12_c00362{bottom:525.609600px;}
.y11_c00362{bottom:556.199250px;}
.y10_c00362{bottom:587.175000px;}
.yf_c00362{bottom:649.800000px;}
.ye_c00362{bottom:682.200000px;}
.yd_c00362{bottom:743.760600px;}
.yc_c00362{bottom:774.367800px;}
.yb_c00362{bottom:804.975000px;}
.ya_c00362{bottom:804.979350px;}
.y9_c00362{bottom:835.920000px;}
.y8_c00362{bottom:897.855000px;}
.y7_c00362{bottom:928.440000px;}
.y6_c00362{bottom:959.400000px;}
.y5_c00362{bottom:1021.335000px;}
.y4_c00362{bottom:1021.342950px;}
.y3_c00362{bottom:1083.241800px;}
.y2_c00362{bottom:1114.200000px;}
.y1_c00362{bottom:1190.535000px;}
.h9_c00362{height:30.689280px;}
.h4_c00362{height:34.525440px;}
.h2_c00362{height:65.953125px;}
.h6_c00362{height:67.719727px;}
.h3_c00362{height:68.897461px;}
.h7_c00362{height:68.919061px;}
.h8_c00362{height:68.943061px;}
.h5_c00362{height:71.964844px;}
.h1_c00362{height:1263.000000px;}
.h0_c00362{height:1263.240000px;}
.w1_c00362{width:892.500000px;}
.w0_c00362{width:892.800000px;}
.x0_c00362{left:0.000000px;}
.x15_c00362{left:120.262800px;}
.xb_c00362{left:121.651650px;}
.x1_c00362{left:124.485000px;}
.x18_c00362{left:173.325000px;}
.x10_c00362{left:174.405000px;}
.x3_c00362{left:175.566750px;}
.x4_c00362{left:176.672400px;}
.x11_c00362{left:185.325000px;}
.x12_c00362{left:218.010000px;}
.x2_c00362{left:271.575000px;}
.x16_c00362{left:372.060000px;}
.x17_c00362{left:392.370000px;}
.x5_c00362{left:413.115000px;}
.x13_c00362{left:424.005000px;}
.x19_c00362{left:431.460000px;}
.x6_c00362{left:442.185000px;}
.xc_c00362{left:451.815000px;}
.x9_c00362{left:473.970000px;}
.x14_c00362{left:490.860000px;}
.x1a_c00362{left:498.390000px;}
.xa_c00362{left:508.500000px;}
.xd_c00362{left:545.235000px;}
.x7_c00362{left:552.405000px;}
.x8_c00362{left:581.520000px;}
.xe_c00362{left:619.020000px;}
.xf_c00362{left:638.595000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls4c_c00362{letter-spacing:-2.184000pt;}
.ls5f_c00362{letter-spacing:-2.146667pt;}
.ls80_c00362{letter-spacing:-2.096640pt;}
.ls40_c00362{letter-spacing:-2.090667pt;}
.ls7b_c00362{letter-spacing:-2.052960pt;}
.ls69_c00362{letter-spacing:-1.959360pt;}
.ls46_c00362{letter-spacing:-1.809600pt;}
.ls57_c00362{letter-spacing:-1.753440pt;}
.ls73_c00362{letter-spacing:-1.734720pt;}
.ls50_c00362{letter-spacing:-1.572480pt;}
.ls4b_c00362{letter-spacing:-1.460160pt;}
.ls89_c00362{letter-spacing:-1.447680pt;}
.ls82_c00362{letter-spacing:-1.391520pt;}
.ls55_c00362{letter-spacing:-1.347840pt;}
.ls64_c00362{letter-spacing:-1.341600pt;}
.ls5e_c00362{letter-spacing:-1.291680pt;}
.ls4a_c00362{letter-spacing:-1.210560pt;}
.ls8a_c00362{letter-spacing:-1.135680pt;}
.ls87_c00362{letter-spacing:-1.129440pt;}
.ls52_c00362{letter-spacing:-1.023360pt;}
.ls53_c00362{letter-spacing:-1.017120pt;}
.ls6b_c00362{letter-spacing:-0.992160pt;}
.ls5b_c00362{letter-spacing:-0.904800pt;}
.ls72_c00362{letter-spacing:-0.804960pt;}
.ls45_c00362{letter-spacing:-0.761280pt;}
.ls5c_c00362{letter-spacing:-0.717600pt;}
.ls4f_c00362{letter-spacing:-0.705120pt;}
.ls7a_c00362{letter-spacing:-0.686400pt;}
.ls7f_c00362{letter-spacing:-0.680160pt;}
.ls88_c00362{letter-spacing:-0.642720pt;}
.ls4d_c00362{letter-spacing:-0.624000pt;}
.ls62_c00362{letter-spacing:-0.480480pt;}
.ls49_c00362{letter-spacing:-0.468000pt;}
.ls65_c00362{letter-spacing:-0.455520pt;}
.ls8c_c00362{letter-spacing:-0.443040pt;}
.ls7d_c00362{letter-spacing:-0.418080pt;}
.ls74_c00362{letter-spacing:-0.399360pt;}
.ls58_c00362{letter-spacing:-0.386880pt;}
.ls6c_c00362{letter-spacing:-0.380640pt;}
.ls5a_c00362{letter-spacing:-0.374400pt;}
.ls68_c00362{letter-spacing:-0.361920pt;}
.ls79_c00362{letter-spacing:-0.355680pt;}
.ls77_c00362{letter-spacing:-0.349440pt;}
.ls44_c00362{letter-spacing:-0.343200pt;}
.ls66_c00362{letter-spacing:-0.312000pt;}
.ls6a_c00362{letter-spacing:-0.305760pt;}
.ls7c_c00362{letter-spacing:-0.299520pt;}
.ls83_c00362{letter-spacing:-0.287040pt;}
.ls81_c00362{letter-spacing:-0.280800pt;}
.ls8b_c00362{letter-spacing:-0.274560pt;}
.ls6d_c00362{letter-spacing:-0.268320pt;}
.ls85_c00362{letter-spacing:-0.262080pt;}
.ls63_c00362{letter-spacing:-0.237120pt;}
.ls41_c00362{letter-spacing:-0.230880pt;}
.ls61_c00362{letter-spacing:-0.224640pt;}
.ls6f_c00362{letter-spacing:-0.212160pt;}
.ls5d_c00362{letter-spacing:-0.187200pt;}
.ls4e_c00362{letter-spacing:-0.174720pt;}
.ls60_c00362{letter-spacing:-0.143520pt;}
.ls86_c00362{letter-spacing:-0.131040pt;}
.ls70_c00362{letter-spacing:-0.118560pt;}
.ls75_c00362{letter-spacing:-0.106080pt;}
.ls59_c00362{letter-spacing:-0.087360pt;}
.ls6e_c00362{letter-spacing:-0.081120pt;}
.ls84_c00362{letter-spacing:-0.068640pt;}
.ls42_c00362{letter-spacing:-0.056160pt;}
.ls76_c00362{letter-spacing:-0.049920pt;}
.ls51_c00362{letter-spacing:-0.043680pt;}
.ls56_c00362{letter-spacing:-0.037440pt;}
.ls71_c00362{letter-spacing:-0.024960pt;}
.ls54_c00362{letter-spacing:-0.018720pt;}
.ls48_c00362{letter-spacing:-0.012480pt;}
.ls67_c00362{letter-spacing:-0.006240pt;}
.ls47_c00362{letter-spacing:0.000000pt;}
.ls35_c00362{letter-spacing:0.006240pt;}
.ls6_c00362{letter-spacing:0.012480pt;}
.ls26_c00362{letter-spacing:0.018720pt;}
.ls31_c00362{letter-spacing:0.049920pt;}
.ls2e_c00362{letter-spacing:0.056160pt;}
.lsc_c00362{letter-spacing:0.062400pt;}
.ls10_c00362{letter-spacing:0.081120pt;}
.lsf_c00362{letter-spacing:0.087360pt;}
.ls1f_c00362{letter-spacing:0.093600pt;}
.ls27_c00362{letter-spacing:0.106080pt;}
.ls22_c00362{letter-spacing:0.118560pt;}
.ls16_c00362{letter-spacing:0.124800pt;}
.ls29_c00362{letter-spacing:0.131040pt;}
.ls14_c00362{letter-spacing:0.137280pt;}
.ls13_c00362{letter-spacing:0.156000pt;}
.ls33_c00362{letter-spacing:0.162240pt;}
.ls30_c00362{letter-spacing:0.180960pt;}
.ls34_c00362{letter-spacing:0.193440pt;}
.ls25_c00362{letter-spacing:0.199680pt;}
.ls1d_c00362{letter-spacing:0.212160pt;}
.ls12_c00362{letter-spacing:0.218400pt;}
.ls3f_c00362{letter-spacing:0.224640pt;}
.ls17_c00362{letter-spacing:0.280800pt;}
.ls78_c00362{letter-spacing:0.293280pt;}
.ls32_c00362{letter-spacing:0.318240pt;}
.ls3b_c00362{letter-spacing:0.330720pt;}
.ls2a_c00362{letter-spacing:0.336960pt;}
.ls1b_c00362{letter-spacing:0.361920pt;}
.lsb_c00362{letter-spacing:0.374400pt;}
.ls23_c00362{letter-spacing:0.393120pt;}
.lse_c00362{letter-spacing:0.405600pt;}
.ls3d_c00362{letter-spacing:0.430560pt;}
.ls19_c00362{letter-spacing:0.443040pt;}
.ls3e_c00362{letter-spacing:0.449280pt;}
.ls37_c00362{letter-spacing:0.455520pt;}
.ls7e_c00362{letter-spacing:0.536640pt;}
.ls3a_c00362{letter-spacing:0.567840pt;}
.ls39_c00362{letter-spacing:0.571520pt;}
.ls38_c00362{letter-spacing:0.583680pt;}
.ls24_c00362{letter-spacing:0.655200pt;}
.ls1e_c00362{letter-spacing:0.686400pt;}
.ls5_c00362{letter-spacing:0.711360pt;}
.ls11_c00362{letter-spacing:0.730080pt;}
.ls1c_c00362{letter-spacing:0.747840pt;}
.ls2_c00362{letter-spacing:0.748800pt;}
.ls15_c00362{letter-spacing:0.767520pt;}
.ls2f_c00362{letter-spacing:0.773760pt;}
.ls8_c00362{letter-spacing:0.784320pt;}
.lsa_c00362{letter-spacing:0.848640pt;}
.ls3_c00362{letter-spacing:0.851200pt;}
.ls36_c00362{letter-spacing:0.879840pt;}
.ls2d_c00362{letter-spacing:0.905920pt;}
.ls7_c00362{letter-spacing:0.924160pt;}
.ls3c_c00362{letter-spacing:0.929760pt;}
.ls9_c00362{letter-spacing:0.978880pt;}
.ls4_c00362{letter-spacing:0.997120pt;}
.lsd_c00362{letter-spacing:1.017120pt;}
.ls18_c00362{letter-spacing:1.057920pt;}
.ls21_c00362{letter-spacing:1.104480pt;}
.ls28_c00362{letter-spacing:1.123200pt;}
.ls20_c00362{letter-spacing:1.266720pt;}
.ls43_c00362{letter-spacing:1.272960pt;}
.ls2c_c00362{letter-spacing:1.385280pt;}
.ls1_c00362{letter-spacing:1.422720pt;}
.ls0_c00362{letter-spacing:1.836160pt;}
.ls1a_c00362{letter-spacing:1.940640pt;}
.ls2b_c00362{letter-spacing:2.208960pt;}
.ws5_c00362{word-spacing:0.000000pt;}
.ws1_c00362{word-spacing:6.156587pt;}
.ws0_c00362{word-spacing:9.712213pt;}
.ws4_c00362{word-spacing:10.432213pt;}
.ws2_c00362{word-spacing:21.510400pt;}
.ws3_c00362{word-spacing:22.920000pt;}
._14_c00362{margin-left:-7.178453pt;}
._1_c00362{margin-left:-2.630827pt;}
._0_c00362{margin-left:-1.653760pt;}
._9_c00362{width:0.903573pt;}
._7_c00362{width:2.059200pt;}
._2_c00362{width:3.463200pt;}
._5_c00362{width:4.506133pt;}
._6_c00362{width:5.678400pt;}
._16_c00362{width:6.618987pt;}
._4_c00362{width:7.552587pt;}
._8_c00362{width:8.673067pt;}
._c_c00362{width:9.919947pt;}
._b_c00362{width:10.986453pt;}
._3_c00362{width:12.249120pt;}
._a_c00362{width:13.890240pt;}
._d_c00362{width:17.846400pt;}
._10_c00362{width:20.030400pt;}
._f_c00362{width:21.278400pt;}
._e_c00362{width:23.655840pt;}
._11_c00362{width:25.584000pt;}
._12_c00362{width:26.700960pt;}
._13_c00362{width:28.289067pt;}
._15_c00362{width:30.732000pt;}
.fs7_c00362{font-size:40.960000pt;}
.fs3_c00362{font-size:46.080000pt;}
.fs5_c00362{font-size:54.400000pt;}
.fs6_c00362{font-size:58.666667pt;}
.fs0_c00362{font-size:59.733333pt;}
.fs1_c00362{font-size:60.800000pt;}
.fs4_c00362{font-size:61.333333pt;}
.fs2_c00362{font-size:62.400000pt;}
.y0_c00362{bottom:0.000000pt;}
.y1d_c00362{bottom:57.933333pt;}
.y1c_c00362{bottom:137.289600pt;}
.y1b_c00362{bottom:165.120000pt;}
.y1a_c00362{bottom:219.533333pt;}
.y19_c00362{bottom:247.363200pt;}
.y18_c00362{bottom:275.209200pt;}
.y17_c00362{bottom:302.400000pt;}
.y16_c00362{bottom:357.454933pt;}
.y14_c00362{bottom:384.970133pt;}
.y15_c00362{bottom:384.973333pt;}
.y13_c00362{bottom:439.679333pt;}
.y12_c00362{bottom:467.208533pt;}
.y11_c00362{bottom:494.399333pt;}
.y10_c00362{bottom:521.933333pt;}
.yf_c00362{bottom:577.600000pt;}
.ye_c00362{bottom:606.400000pt;}
.yd_c00362{bottom:661.120533pt;}
.yc_c00362{bottom:688.326933pt;}
.yb_c00362{bottom:715.533333pt;}
.ya_c00362{bottom:715.537200pt;}
.y9_c00362{bottom:743.040000pt;}
.y8_c00362{bottom:798.093333pt;}
.y7_c00362{bottom:825.280000pt;}
.y6_c00362{bottom:852.800000pt;}
.y5_c00362{bottom:907.853333pt;}
.y4_c00362{bottom:907.860400pt;}
.y3_c00362{bottom:962.881600pt;}
.y2_c00362{bottom:990.400000pt;}
.y1_c00362{bottom:1058.253333pt;}
.h9_c00362{height:27.279360pt;}
.h4_c00362{height:30.689280pt;}
.h2_c00362{height:58.625000pt;}
.h6_c00362{height:60.195312pt;}
.h3_c00362{height:61.242187pt;}
.h7_c00362{height:61.261387pt;}
.h8_c00362{height:61.282721pt;}
.h5_c00362{height:63.968750pt;}
.h1_c00362{height:1122.666667pt;}
.h0_c00362{height:1122.880000pt;}
.w1_c00362{width:793.333333pt;}
.w0_c00362{width:793.600000pt;}
.x0_c00362{left:0.000000pt;}
.x15_c00362{left:106.900267pt;}
.xb_c00362{left:108.134800pt;}
.x1_c00362{left:110.653333pt;}
.x18_c00362{left:154.066667pt;}
.x10_c00362{left:155.026667pt;}
.x3_c00362{left:156.059333pt;}
.x4_c00362{left:157.042133pt;}
.x11_c00362{left:164.733333pt;}
.x12_c00362{left:193.786667pt;}
.x2_c00362{left:241.400000pt;}
.x16_c00362{left:330.720000pt;}
.x17_c00362{left:348.773333pt;}
.x5_c00362{left:367.213333pt;}
.x13_c00362{left:376.893333pt;}
.x19_c00362{left:383.520000pt;}
.x6_c00362{left:393.053333pt;}
.xc_c00362{left:401.613333pt;}
.x9_c00362{left:421.306667pt;}
.x14_c00362{left:436.320000pt;}
.x1a_c00362{left:443.013333pt;}
.xa_c00362{left:452.000000pt;}
.xd_c00362{left:484.653333pt;}
.x7_c00362{left:491.026667pt;}
.x8_c00362{left:516.906667pt;}
.xe_c00362{left:550.240000pt;}
.xf_c00362{left:567.640000pt;}
}





/* 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_c00363 {
    display:none;
  }
  .loading-indicator_c00363.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00363 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_c00363 { 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_c00363" -> "#page-container .classname_c00363")
 */
.pf_c00363 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00363 { /* 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_c00363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00363 { /* 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_c00363 { /* 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_c00363 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00363 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00363 {overflow:visible;}
  }
}
.c_c00363 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00363 { /* 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_c00363:after { /* webkit #35443 */
  content: '';
}
.t_c00363:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00363 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 */
}
.__c00363 { /* 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_c00363 { /* info for Javascript */
  display:none;
}
.l_c00363 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00363 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00363 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00363: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_c00363 {
    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_c00363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00363.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_c00363 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00363;src:url('chunks/assets/font_388def3af8c10e012aaa0949.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.284668;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_c00363;src:url('chunks/assets/font_7154975e9fa1a15bc7e30325.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.284180;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_c00363;src:url('chunks/assets/font_476fb9b3fcf554ce20a62038.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:0.666000;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_c00363;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;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;}
.md_c00363{transform:matrix(0.116776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116776,0.000000,0.000000,0.250000,0,0);}
.m6_c00363{transform:matrix(0.134259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134259,0.000000,0.000000,0.250000,0,0);}
.mb_c00363{transform:matrix(0.143640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143640,0.000000,0.000000,0.250000,0,0);}
.m7_c00363{transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);}
.m5_c00363{transform:matrix(0.172063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172063,0.000000,0.000000,0.250000,0,0);}
.mf_c00363{transform:matrix(0.184577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184577,0.000000,0.000000,0.250000,0,0);}
.m4_c00363{transform:matrix(0.228845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228845,0.000000,0.000000,0.250000,0,0);}
.m8_c00363{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m0_c00363{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{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);}
.m9_c00363{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m3_c00363{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.ma_c00363{transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);}
.m2_c00363{transform:matrix(0.260908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260908,0.000000,0.000000,0.250000,0,0);}
.me_c00363{transform:matrix(0.274792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274792,0.000000,0.000000,0.250000,0,0);}
.mc_c00363{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls8f_c00363{letter-spacing:-2.394000px;}
.ls77_c00363{letter-spacing:-2.373000px;}
.ls6b_c00363{letter-spacing:-2.352000px;}
.ls80_c00363{letter-spacing:-2.310000px;}
.ls8d_c00363{letter-spacing:-2.161440px;}
.ls6f_c00363{letter-spacing:-1.682640px;}
.ls76_c00363{letter-spacing:-1.409040px;}
.ls7e_c00363{letter-spacing:-1.388520px;}
.ls74_c00363{letter-spacing:-1.197000px;}
.ls7c_c00363{letter-spacing:-0.684000px;}
.ls6e_c00363{letter-spacing:-0.670320px;}
.ls7d_c00363{letter-spacing:-0.615600px;}
.ls8a_c00363{letter-spacing:-0.588240px;}
.ls85_c00363{letter-spacing:-0.560880px;}
.ls71_c00363{letter-spacing:-0.526680px;}
.ls7a_c00363{letter-spacing:-0.478800px;}
.ls75_c00363{letter-spacing:-0.458280px;}
.ls88_c00363{letter-spacing:-0.376200px;}
.ls82_c00363{letter-spacing:-0.339000px;}
.ls7f_c00363{letter-spacing:-0.259920px;}
.ls91_c00363{letter-spacing:-0.219960px;}
.ls72_c00363{letter-spacing:-0.164160px;}
.ls79_c00363{letter-spacing:-0.129960px;}
.ls8e_c00363{letter-spacing:-0.109440px;}
.ls6c_c00363{letter-spacing:-0.041040px;}
.ls6d_c00363{letter-spacing:0.000000px;}
.lsf_c00363{letter-spacing:0.027360px;}
.ls2a_c00363{letter-spacing:0.034200px;}
.ls44_c00363{letter-spacing:0.102600px;}
.ls90_c00363{letter-spacing:0.109440px;}
.ls2d_c00363{letter-spacing:0.129960px;}
.ls30_c00363{letter-spacing:0.164160px;}
.ls5c_c00363{letter-spacing:0.177840px;}
.ls42_c00363{letter-spacing:0.184680px;}
.ls86_c00363{letter-spacing:0.191520px;}
.ls84_c00363{letter-spacing:0.198360px;}
.ls3d_c00363{letter-spacing:0.205200px;}
.ls39_c00363{letter-spacing:0.218880px;}
.ls3e_c00363{letter-spacing:0.225720px;}
.ls5a_c00363{letter-spacing:0.246240px;}
.ls4b_c00363{letter-spacing:0.253080px;}
.ls17_c00363{letter-spacing:0.259920px;}
.ls19_c00363{letter-spacing:0.280440px;}
.lsb_c00363{letter-spacing:0.294120px;}
.lsa_c00363{letter-spacing:0.300960px;}
.ls11_c00363{letter-spacing:0.307800px;}
.ls52_c00363{letter-spacing:0.314640px;}
.ls34_c00363{letter-spacing:0.335160px;}
.lse_c00363{letter-spacing:0.342000px;}
.ls2c_c00363{letter-spacing:0.348840px;}
.ls60_c00363{letter-spacing:0.362520px;}
.ls26_c00363{letter-spacing:0.369360px;}
.ls1_c00363{letter-spacing:0.376200px;}
.ls78_c00363{letter-spacing:0.389880px;}
.ls33_c00363{letter-spacing:0.396720px;}
.ls58_c00363{letter-spacing:0.410400px;}
.ls5b_c00363{letter-spacing:0.424080px;}
.ls48_c00363{letter-spacing:0.463680px;}
.ls3f_c00363{letter-spacing:0.478800px;}
.ls3a_c00363{letter-spacing:0.492480px;}
.ls4_c00363{letter-spacing:0.499320px;}
.ls49_c00363{letter-spacing:0.533520px;}
.ls57_c00363{letter-spacing:0.540360px;}
.ls13_c00363{letter-spacing:0.547200px;}
.lsd_c00363{letter-spacing:0.554040px;}
.ls15_c00363{letter-spacing:0.560880px;}
.ls45_c00363{letter-spacing:0.574560px;}
.ls9_c00363{letter-spacing:0.588240px;}
.ls24_c00363{letter-spacing:0.595080px;}
.ls3b_c00363{letter-spacing:0.601920px;}
.ls38_c00363{letter-spacing:0.603420px;}
.ls27_c00363{letter-spacing:0.615600px;}
.ls51_c00363{letter-spacing:0.622440px;}
.ls4d_c00363{letter-spacing:0.629280px;}
.ls66_c00363{letter-spacing:0.636120px;}
.ls2e_c00363{letter-spacing:0.663480px;}
.lsc_c00363{letter-spacing:0.670320px;}
.ls2_c00363{letter-spacing:0.671220px;}
.ls6_c00363{letter-spacing:0.677160px;}
.ls7b_c00363{letter-spacing:0.684000px;}
.ls61_c00363{letter-spacing:0.690840px;}
.ls22_c00363{letter-spacing:0.711360px;}
.ls6a_c00363{letter-spacing:0.718200px;}
.ls2b_c00363{letter-spacing:0.725040px;}
.ls54_c00363{letter-spacing:0.731880px;}
.ls31_c00363{letter-spacing:0.752400px;}
.ls62_c00363{letter-spacing:0.759240px;}
.ls1f_c00363{letter-spacing:0.759360px;}
.ls64_c00363{letter-spacing:0.772920px;}
.ls28_c00363{letter-spacing:0.793440px;}
.ls35_c00363{letter-spacing:0.813960px;}
.ls47_c00363{letter-spacing:0.820800px;}
.ls65_c00363{letter-spacing:0.827640px;}
.ls5_c00363{letter-spacing:0.834480px;}
.ls73_c00363{letter-spacing:0.848160px;}
.ls68_c00363{letter-spacing:0.868680px;}
.ls10_c00363{letter-spacing:0.882360px;}
.ls4f_c00363{letter-spacing:0.889200px;}
.ls29_c00363{letter-spacing:0.916560px;}
.ls50_c00363{letter-spacing:0.923400px;}
.ls4e_c00363{letter-spacing:0.930240px;}
.ls1d_c00363{letter-spacing:0.937080px;}
.ls37_c00363{letter-spacing:0.942420px;}
.ls32_c00363{letter-spacing:0.950760px;}
.ls14_c00363{letter-spacing:0.957600px;}
.ls1e_c00363{letter-spacing:0.964440px;}
.ls2f_c00363{letter-spacing:0.978120px;}
.ls83_c00363{letter-spacing:0.998640px;}
.ls67_c00363{letter-spacing:1.012320px;}
.ls53_c00363{letter-spacing:1.026000px;}
.ls1a_c00363{letter-spacing:1.046520px;}
.ls69_c00363{letter-spacing:1.053360px;}
.ls12_c00363{letter-spacing:1.060200px;}
.ls7_c00363{letter-spacing:1.067040px;}
.ls36_c00363{letter-spacing:1.073880px;}
.ls59_c00363{letter-spacing:1.108080px;}
.ls5e_c00363{letter-spacing:1.114920px;}
.ls16_c00363{letter-spacing:1.128600px;}
.ls4c_c00363{letter-spacing:1.139040px;}
.ls41_c00363{letter-spacing:1.142280px;}
.ls18_c00363{letter-spacing:1.190160px;}
.ls8_c00363{letter-spacing:1.197000px;}
.ls1c_c00363{letter-spacing:1.240740px;}
.ls21_c00363{letter-spacing:1.265400px;}
.ls20_c00363{letter-spacing:1.279080px;}
.ls55_c00363{letter-spacing:1.299600px;}
.ls3c_c00363{letter-spacing:1.347480px;}
.ls5d_c00363{letter-spacing:1.368000px;}
.ls63_c00363{letter-spacing:1.402200px;}
.ls87_c00363{letter-spacing:1.504800px;}
.ls56_c00363{letter-spacing:1.627920px;}
.ls23_c00363{letter-spacing:1.648440px;}
.ls1b_c00363{letter-spacing:1.661100px;}
.ls25_c00363{letter-spacing:1.737360px;}
.ls4a_c00363{letter-spacing:1.837380px;}
.ls0_c00363{letter-spacing:1.945860px;}
.ls5f_c00363{letter-spacing:2.181960px;}
.ls8b_c00363{letter-spacing:2.236680px;}
.ls40_c00363{letter-spacing:2.250360px;}
.ls8c_c00363{letter-spacing:2.520000px;}
.ls43_c00363{letter-spacing:2.715480px;}
.ls89_c00363{letter-spacing:2.811240px;}
.ls46_c00363{letter-spacing:2.838600px;}
.ls81_c00363{letter-spacing:3.390000px;}
.ls70_c00363{letter-spacing:3.420000px;}
.ls3_c00363{letter-spacing:52.797000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{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__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00363{word-spacing:-0.322560px;}
.ws5_c00363{word-spacing:0.000000px;}
.ws2_c00363{word-spacing:3.894780px;}
.ws4_c00363{word-spacing:11.197440px;}
.ws3_c00363{word-spacing:12.809640px;}
.ws1_c00363{word-spacing:33.172200px;}
._1_c00363{margin-left:-11.573280px;}
._19_c00363{margin-left:-5.506200px;}
._10_c00363{margin-left:-3.249000px;}
._0_c00363{margin-left:-1.926360px;}
._18_c00363{width:1.203840px;}
._2_c00363{width:2.761800px;}
._3_c00363{width:4.254480px;}
._a_c00363{width:6.580080px;}
._b_c00363{width:8.337960px;}
._4_c00363{width:9.576000px;}
._17_c00363{width:10.616040px;}
._9_c00363{width:12.667680px;}
._f_c00363{width:14.056200px;}
._d_c00363{width:15.636240px;}
._e_c00363{width:17.654040px;}
._1a_c00363{width:19.147800px;}
._c_c00363{width:20.588400px;}
._1b_c00363{width:21.614400px;}
._16_c00363{width:22.851120px;}
._14_c00363{width:23.960520px;}
._15_c00363{width:25.599600px;}
._11_c00363{width:29.562480px;}
._12_c00363{width:31.238280px;}
._13_c00363{width:32.332680px;}
._8_c00363{width:33.748560px;}
._7_c00363{width:36.457200px;}
._6_c00363{width:38.126160px;}
._5_c00363{width:40.910040px;}
.fc0_c00363{color:transparent;}
.fs6_c00363{font-size:28.800000px;}
.fs7_c00363{font-size:50.400000px;}
.fs3_c00363{font-size:51.840000px;}
.fs5_c00363{font-size:54.720000px;}
.fs8_c00363{font-size:56.400000px;}
.fs4_c00363{font-size:66.000000px;}
.fs0_c00363{font-size:67.200000px;}
.fs1_c00363{font-size:67.800000px;}
.fs2_c00363{font-size:68.400000px;}
.y0_c00363{bottom:0.000000px;}
.y1f_c00363{bottom:66.600000px;}
.y1e_c00363{bottom:182.520000px;}
.y1d_c00363{bottom:215.295000px;}
.y1c_c00363{bottom:232.935000px;}
.y1b_c00363{bottom:277.927800px;}
.y1a_c00363{bottom:309.240000px;}
.y19_c00363{bottom:339.831900px;}
.y18_c00363{bottom:370.800000px;}
.y17_c00363{bottom:401.767800px;}
.y16_c00363{bottom:433.095000px;}
.y15_c00363{bottom:495.007200px;}
.y14_c00363{bottom:525.240000px;}
.y13_c00363{bottom:587.167200px;}
.y12_c00363{bottom:617.400000px;}
.y11_c00363{bottom:617.406000px;}
.y10_c00363{bottom:648.015000px;}
.ye_c00363{bottom:709.926900px;}
.yf_c00363{bottom:709.935000px;}
.yd_c00363{bottom:740.886900px;}
.yc_c00363{bottom:771.848100px;}
.yb_c00363{bottom:802.440000px;}
.ya_c00363{bottom:865.080000px;}
.y9_c00363{bottom:927.720000px;}
.y8_c00363{bottom:927.726900px;}
.y6_c00363{bottom:958.680000px;}
.y7_c00363{bottom:958.695000px;}
.y5_c00363{bottom:989.271900px;}
.y4_c00363{bottom:1020.240000px;}
.y3_c00363{bottom:1082.175000px;}
.y2_c00363{bottom:1112.760000px;}
.y1_c00363{bottom:1188.375000px;}
.hc_c00363{height:19.180800px;}
.h5_c00363{height:34.525440px;}
.ha_c00363{height:36.443520px;}
.hd_c00363{height:49.464844px;}
.he_c00363{height:55.353516px;}
.h2_c00363{height:65.953125px;}
.h4_c00363{height:66.508887px;}
.h3_c00363{height:67.130859px;}
.h6_c00363{height:67.158459px;}
.h9_c00363{height:67.162059px;}
.h7_c00363{height:67.163259px;}
.hb_c00363{height:67.190859px;}
.h8_c00363{height:68.835938px;}
.h1_c00363{height:1263.000000px;}
.h0_c00363{height:1263.240000px;}
.w1_c00363{width:892.500000px;}
.w0_c00363{width:892.800000px;}
.x0_c00363{left:0.000000px;}
.x1_c00363{left:121.245000px;}
.x6_c00363{left:122.564400px;}
.x17_c00363{left:174.045000px;}
.x3_c00363{left:175.590000px;}
.x13_c00363{left:182.730000px;}
.x14_c00363{left:200.415000px;}
.x15_c00363{left:220.710000px;}
.x1c_c00363{left:253.290000px;}
.x16_c00363{left:335.895000px;}
.x4_c00363{left:361.725000px;}
.x11_c00363{left:374.310000px;}
.x2_c00363{left:386.775000px;}
.xb_c00363{left:395.220000px;}
.x12_c00363{left:397.620000px;}
.x10_c00363{left:404.775000px;}
.x18_c00363{left:416.880000px;}
.x1e_c00363{left:423.195000px;}
.xc_c00363{left:427.170000px;}
.x19_c00363{left:450.990000px;}
.x5_c00363{left:452.355000px;}
.x9_c00363{left:454.440000px;}
.x1d_c00363{left:470.100000px;}
.xa_c00363{left:473.670000px;}
.xd_c00363{left:489.255000px;}
.xe_c00363{left:514.995000px;}
.x7_c00363{left:524.235000px;}
.x8_c00363{left:555.240000px;}
.x1a_c00363{left:584.970000px;}
.x1b_c00363{left:619.035000px;}
.xf_c00363{left:644.340000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls8f_c00363{letter-spacing:-2.128000pt;}
.ls77_c00363{letter-spacing:-2.109333pt;}
.ls6b_c00363{letter-spacing:-2.090667pt;}
.ls80_c00363{letter-spacing:-2.053333pt;}
.ls8d_c00363{letter-spacing:-1.921280pt;}
.ls6f_c00363{letter-spacing:-1.495680pt;}
.ls76_c00363{letter-spacing:-1.252480pt;}
.ls7e_c00363{letter-spacing:-1.234240pt;}
.ls74_c00363{letter-spacing:-1.064000pt;}
.ls7c_c00363{letter-spacing:-0.608000pt;}
.ls6e_c00363{letter-spacing:-0.595840pt;}
.ls7d_c00363{letter-spacing:-0.547200pt;}
.ls8a_c00363{letter-spacing:-0.522880pt;}
.ls85_c00363{letter-spacing:-0.498560pt;}
.ls71_c00363{letter-spacing:-0.468160pt;}
.ls7a_c00363{letter-spacing:-0.425600pt;}
.ls75_c00363{letter-spacing:-0.407360pt;}
.ls88_c00363{letter-spacing:-0.334400pt;}
.ls82_c00363{letter-spacing:-0.301333pt;}
.ls7f_c00363{letter-spacing:-0.231040pt;}
.ls91_c00363{letter-spacing:-0.195520pt;}
.ls72_c00363{letter-spacing:-0.145920pt;}
.ls79_c00363{letter-spacing:-0.115520pt;}
.ls8e_c00363{letter-spacing:-0.097280pt;}
.ls6c_c00363{letter-spacing:-0.036480pt;}
.ls6d_c00363{letter-spacing:0.000000pt;}
.lsf_c00363{letter-spacing:0.024320pt;}
.ls2a_c00363{letter-spacing:0.030400pt;}
.ls44_c00363{letter-spacing:0.091200pt;}
.ls90_c00363{letter-spacing:0.097280pt;}
.ls2d_c00363{letter-spacing:0.115520pt;}
.ls30_c00363{letter-spacing:0.145920pt;}
.ls5c_c00363{letter-spacing:0.158080pt;}
.ls42_c00363{letter-spacing:0.164160pt;}
.ls86_c00363{letter-spacing:0.170240pt;}
.ls84_c00363{letter-spacing:0.176320pt;}
.ls3d_c00363{letter-spacing:0.182400pt;}
.ls39_c00363{letter-spacing:0.194560pt;}
.ls3e_c00363{letter-spacing:0.200640pt;}
.ls5a_c00363{letter-spacing:0.218880pt;}
.ls4b_c00363{letter-spacing:0.224960pt;}
.ls17_c00363{letter-spacing:0.231040pt;}
.ls19_c00363{letter-spacing:0.249280pt;}
.lsb_c00363{letter-spacing:0.261440pt;}
.lsa_c00363{letter-spacing:0.267520pt;}
.ls11_c00363{letter-spacing:0.273600pt;}
.ls52_c00363{letter-spacing:0.279680pt;}
.ls34_c00363{letter-spacing:0.297920pt;}
.lse_c00363{letter-spacing:0.304000pt;}
.ls2c_c00363{letter-spacing:0.310080pt;}
.ls60_c00363{letter-spacing:0.322240pt;}
.ls26_c00363{letter-spacing:0.328320pt;}
.ls1_c00363{letter-spacing:0.334400pt;}
.ls78_c00363{letter-spacing:0.346560pt;}
.ls33_c00363{letter-spacing:0.352640pt;}
.ls58_c00363{letter-spacing:0.364800pt;}
.ls5b_c00363{letter-spacing:0.376960pt;}
.ls48_c00363{letter-spacing:0.412160pt;}
.ls3f_c00363{letter-spacing:0.425600pt;}
.ls3a_c00363{letter-spacing:0.437760pt;}
.ls4_c00363{letter-spacing:0.443840pt;}
.ls49_c00363{letter-spacing:0.474240pt;}
.ls57_c00363{letter-spacing:0.480320pt;}
.ls13_c00363{letter-spacing:0.486400pt;}
.lsd_c00363{letter-spacing:0.492480pt;}
.ls15_c00363{letter-spacing:0.498560pt;}
.ls45_c00363{letter-spacing:0.510720pt;}
.ls9_c00363{letter-spacing:0.522880pt;}
.ls24_c00363{letter-spacing:0.528960pt;}
.ls3b_c00363{letter-spacing:0.535040pt;}
.ls38_c00363{letter-spacing:0.536373pt;}
.ls27_c00363{letter-spacing:0.547200pt;}
.ls51_c00363{letter-spacing:0.553280pt;}
.ls4d_c00363{letter-spacing:0.559360pt;}
.ls66_c00363{letter-spacing:0.565440pt;}
.ls2e_c00363{letter-spacing:0.589760pt;}
.lsc_c00363{letter-spacing:0.595840pt;}
.ls2_c00363{letter-spacing:0.596640pt;}
.ls6_c00363{letter-spacing:0.601920pt;}
.ls7b_c00363{letter-spacing:0.608000pt;}
.ls61_c00363{letter-spacing:0.614080pt;}
.ls22_c00363{letter-spacing:0.632320pt;}
.ls6a_c00363{letter-spacing:0.638400pt;}
.ls2b_c00363{letter-spacing:0.644480pt;}
.ls54_c00363{letter-spacing:0.650560pt;}
.ls31_c00363{letter-spacing:0.668800pt;}
.ls62_c00363{letter-spacing:0.674880pt;}
.ls1f_c00363{letter-spacing:0.674987pt;}
.ls64_c00363{letter-spacing:0.687040pt;}
.ls28_c00363{letter-spacing:0.705280pt;}
.ls35_c00363{letter-spacing:0.723520pt;}
.ls47_c00363{letter-spacing:0.729600pt;}
.ls65_c00363{letter-spacing:0.735680pt;}
.ls5_c00363{letter-spacing:0.741760pt;}
.ls73_c00363{letter-spacing:0.753920pt;}
.ls68_c00363{letter-spacing:0.772160pt;}
.ls10_c00363{letter-spacing:0.784320pt;}
.ls4f_c00363{letter-spacing:0.790400pt;}
.ls29_c00363{letter-spacing:0.814720pt;}
.ls50_c00363{letter-spacing:0.820800pt;}
.ls4e_c00363{letter-spacing:0.826880pt;}
.ls1d_c00363{letter-spacing:0.832960pt;}
.ls37_c00363{letter-spacing:0.837707pt;}
.ls32_c00363{letter-spacing:0.845120pt;}
.ls14_c00363{letter-spacing:0.851200pt;}
.ls1e_c00363{letter-spacing:0.857280pt;}
.ls2f_c00363{letter-spacing:0.869440pt;}
.ls83_c00363{letter-spacing:0.887680pt;}
.ls67_c00363{letter-spacing:0.899840pt;}
.ls53_c00363{letter-spacing:0.912000pt;}
.ls1a_c00363{letter-spacing:0.930240pt;}
.ls69_c00363{letter-spacing:0.936320pt;}
.ls12_c00363{letter-spacing:0.942400pt;}
.ls7_c00363{letter-spacing:0.948480pt;}
.ls36_c00363{letter-spacing:0.954560pt;}
.ls59_c00363{letter-spacing:0.984960pt;}
.ls5e_c00363{letter-spacing:0.991040pt;}
.ls16_c00363{letter-spacing:1.003200pt;}
.ls4c_c00363{letter-spacing:1.012480pt;}
.ls41_c00363{letter-spacing:1.015360pt;}
.ls18_c00363{letter-spacing:1.057920pt;}
.ls8_c00363{letter-spacing:1.064000pt;}
.ls1c_c00363{letter-spacing:1.102880pt;}
.ls21_c00363{letter-spacing:1.124800pt;}
.ls20_c00363{letter-spacing:1.136960pt;}
.ls55_c00363{letter-spacing:1.155200pt;}
.ls3c_c00363{letter-spacing:1.197760pt;}
.ls5d_c00363{letter-spacing:1.216000pt;}
.ls63_c00363{letter-spacing:1.246400pt;}
.ls87_c00363{letter-spacing:1.337600pt;}
.ls56_c00363{letter-spacing:1.447040pt;}
.ls23_c00363{letter-spacing:1.465280pt;}
.ls1b_c00363{letter-spacing:1.476533pt;}
.ls25_c00363{letter-spacing:1.544320pt;}
.ls4a_c00363{letter-spacing:1.633227pt;}
.ls0_c00363{letter-spacing:1.729653pt;}
.ls5f_c00363{letter-spacing:1.939520pt;}
.ls8b_c00363{letter-spacing:1.988160pt;}
.ls40_c00363{letter-spacing:2.000320pt;}
.ls8c_c00363{letter-spacing:2.240000pt;}
.ls43_c00363{letter-spacing:2.413760pt;}
.ls89_c00363{letter-spacing:2.498880pt;}
.ls46_c00363{letter-spacing:2.523200pt;}
.ls81_c00363{letter-spacing:3.013333pt;}
.ls70_c00363{letter-spacing:3.040000pt;}
.ls3_c00363{letter-spacing:46.930667pt;}
.ws0_c00363{word-spacing:-0.286720pt;}
.ws5_c00363{word-spacing:0.000000pt;}
.ws2_c00363{word-spacing:3.462027pt;}
.ws4_c00363{word-spacing:9.953280pt;}
.ws3_c00363{word-spacing:11.386347pt;}
.ws1_c00363{word-spacing:29.486400pt;}
._1_c00363{margin-left:-10.287360pt;}
._19_c00363{margin-left:-4.894400pt;}
._10_c00363{margin-left:-2.888000pt;}
._0_c00363{margin-left:-1.712320pt;}
._18_c00363{width:1.070080pt;}
._2_c00363{width:2.454933pt;}
._3_c00363{width:3.781760pt;}
._a_c00363{width:5.848960pt;}
._b_c00363{width:7.411520pt;}
._4_c00363{width:8.512000pt;}
._17_c00363{width:9.436480pt;}
._9_c00363{width:11.260160pt;}
._f_c00363{width:12.494400pt;}
._d_c00363{width:13.898880pt;}
._e_c00363{width:15.692480pt;}
._1a_c00363{width:17.020267pt;}
._c_c00363{width:18.300800pt;}
._1b_c00363{width:19.212800pt;}
._16_c00363{width:20.312107pt;}
._14_c00363{width:21.298240pt;}
._15_c00363{width:22.755200pt;}
._11_c00363{width:26.277760pt;}
._12_c00363{width:27.767360pt;}
._13_c00363{width:28.740160pt;}
._8_c00363{width:29.998720pt;}
._7_c00363{width:32.406400pt;}
._6_c00363{width:33.889920pt;}
._5_c00363{width:36.364480pt;}
.fs6_c00363{font-size:25.600000pt;}
.fs7_c00363{font-size:44.800000pt;}
.fs3_c00363{font-size:46.080000pt;}
.fs5_c00363{font-size:48.640000pt;}
.fs8_c00363{font-size:50.133333pt;}
.fs4_c00363{font-size:58.666667pt;}
.fs0_c00363{font-size:59.733333pt;}
.fs1_c00363{font-size:60.266667pt;}
.fs2_c00363{font-size:60.800000pt;}
.y0_c00363{bottom:0.000000pt;}
.y1f_c00363{bottom:59.200000pt;}
.y1e_c00363{bottom:162.240000pt;}
.y1d_c00363{bottom:191.373333pt;}
.y1c_c00363{bottom:207.053333pt;}
.y1b_c00363{bottom:247.046933pt;}
.y1a_c00363{bottom:274.880000pt;}
.y19_c00363{bottom:302.072800pt;}
.y18_c00363{bottom:329.600000pt;}
.y17_c00363{bottom:357.126933pt;}
.y16_c00363{bottom:384.973333pt;}
.y15_c00363{bottom:440.006400pt;}
.y14_c00363{bottom:466.880000pt;}
.y13_c00363{bottom:521.926400pt;}
.y12_c00363{bottom:548.800000pt;}
.y11_c00363{bottom:548.805333pt;}
.y10_c00363{bottom:576.013333pt;}
.ye_c00363{bottom:631.046133pt;}
.yf_c00363{bottom:631.053333pt;}
.yd_c00363{bottom:658.566133pt;}
.yc_c00363{bottom:686.087200pt;}
.yb_c00363{bottom:713.280000pt;}
.ya_c00363{bottom:768.960000pt;}
.y9_c00363{bottom:824.640000pt;}
.y8_c00363{bottom:824.646133pt;}
.y6_c00363{bottom:852.160000pt;}
.y7_c00363{bottom:852.173333pt;}
.y5_c00363{bottom:879.352800pt;}
.y4_c00363{bottom:906.880000pt;}
.y3_c00363{bottom:961.933333pt;}
.y2_c00363{bottom:989.120000pt;}
.y1_c00363{bottom:1056.333333pt;}
.hc_c00363{height:17.049600pt;}
.h5_c00363{height:30.689280pt;}
.ha_c00363{height:32.394240pt;}
.hd_c00363{height:43.968750pt;}
.he_c00363{height:49.203125pt;}
.h2_c00363{height:58.625000pt;}
.h4_c00363{height:59.119010pt;}
.h3_c00363{height:59.671875pt;}
.h6_c00363{height:59.696408pt;}
.h9_c00363{height:59.699608pt;}
.h7_c00363{height:59.700675pt;}
.hb_c00363{height:59.725208pt;}
.h8_c00363{height:61.187500pt;}
.h1_c00363{height:1122.666667pt;}
.h0_c00363{height:1122.880000pt;}
.w1_c00363{width:793.333333pt;}
.w0_c00363{width:793.600000pt;}
.x0_c00363{left:0.000000pt;}
.x1_c00363{left:107.773333pt;}
.x6_c00363{left:108.946133pt;}
.x17_c00363{left:154.706667pt;}
.x3_c00363{left:156.080000pt;}
.x13_c00363{left:162.426667pt;}
.x14_c00363{left:178.146667pt;}
.x15_c00363{left:196.186667pt;}
.x1c_c00363{left:225.146667pt;}
.x16_c00363{left:298.573333pt;}
.x4_c00363{left:321.533333pt;}
.x11_c00363{left:332.720000pt;}
.x2_c00363{left:343.800000pt;}
.xb_c00363{left:351.306667pt;}
.x12_c00363{left:353.440000pt;}
.x10_c00363{left:359.800000pt;}
.x18_c00363{left:370.560000pt;}
.x1e_c00363{left:376.173333pt;}
.xc_c00363{left:379.706667pt;}
.x19_c00363{left:400.880000pt;}
.x5_c00363{left:402.093333pt;}
.x9_c00363{left:403.946667pt;}
.x1d_c00363{left:417.866667pt;}
.xa_c00363{left:421.040000pt;}
.xd_c00363{left:434.893333pt;}
.xe_c00363{left:457.773333pt;}
.x7_c00363{left:465.986667pt;}
.x8_c00363{left:493.546667pt;}
.x1a_c00363{left:519.973333pt;}
.x1b_c00363{left:550.253333pt;}
.xf_c00363{left:572.746667pt;}
}





/* 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_c00364 {
    display:none;
  }
  .loading-indicator_c00364.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00364 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_c00364 { 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_c00364" -> "#page-container .classname_c00364")
 */
.pf_c00364 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00364 { /* 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_c00364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00364 { /* 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_c00364 { /* 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_c00364 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00364 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00364 {overflow:visible;}
  }
}
.c_c00364 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00364 { /* 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_c00364:after { /* webkit #35443 */
  content: '';
}
.t_c00364:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00364 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 */
}
.__c00364 { /* 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_c00364 { /* info for Javascript */
  display:none;
}
.l_c00364 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00364 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00364 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00364: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_c00364 {
    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_c00364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00364.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_c00364 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00364;src:url('chunks/assets/font_523edc4dc16375daf3f1d877.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.284668;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_c00364;src:url('chunks/assets/font_8e142b876d38c11dccfd0752.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.284180;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_c00364;src:url('chunks/assets/font_e5cc58055fcca96b297ee0ca.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;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:ff4_c00364;src:url('chunks/assets/font_9647beea8c25670ac0a04dec.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:0.666000;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;}
.mc_c00364{transform:matrix(0.104733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104733,0.000000,0.000000,0.250000,0,0);}
.m8_c00364{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m9_c00364{transform:matrix(0.201428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201428,0.000000,0.000000,0.250000,0,0);}
.m7_c00364{transform:matrix(0.206948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206948,0.000000,0.000000,0.250000,0,0);}
.md_c00364{transform:matrix(0.216062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216062,0.000000,0.000000,0.250000,0,0);}
.m4_c00364{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m0_c00364{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m3_c00364{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.mb_c00364{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m2_c00364{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m1_c00364{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);}
.m5_c00364{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m6_c00364{transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);}
.ma_c00364{transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.v1_c00364{vertical-align:27.360000px;}
.ls91_c00364{letter-spacing:-2.520000px;}
.ls65_c00364{letter-spacing:-2.436000px;}
.ls68_c00364{letter-spacing:-2.415000px;}
.ls90_c00364{letter-spacing:-2.368800px;}
.ls5a_c00364{letter-spacing:-2.352000px;}
.ls6b_c00364{letter-spacing:-2.310000px;}
.ls5d_c00364{letter-spacing:-2.192400px;}
.ls71_c00364{letter-spacing:-2.101920px;}
.ls8b_c00364{letter-spacing:-1.972800px;}
.ls73_c00364{letter-spacing:-1.760880px;}
.ls70_c00364{letter-spacing:-1.698240px;}
.ls63_c00364{letter-spacing:-1.649520px;}
.ls7c_c00364{letter-spacing:-1.628640px;}
.ls8f_c00364{letter-spacing:-1.533600px;}
.ls60_c00364{letter-spacing:-1.531200px;}
.ls62_c00364{letter-spacing:-1.475520px;}
.ls6f_c00364{letter-spacing:-1.218000px;}
.ls8c_c00364{letter-spacing:-1.173600px;}
.ls7b_c00364{letter-spacing:-1.169280px;}
.ls88_c00364{letter-spacing:-1.106640px;}
.ls86_c00364{letter-spacing:-1.023120px;}
.ls8e_c00364{letter-spacing:-0.964800px;}
.ls77_c00364{letter-spacing:-0.904800px;}
.ls8a_c00364{letter-spacing:-0.814320px;}
.ls82_c00364{letter-spacing:-0.800400px;}
.ls80_c00364{letter-spacing:-0.758640px;}
.ls5b_c00364{letter-spacing:-0.675120px;}
.ls69_c00364{letter-spacing:-0.619440px;}
.ls84_c00364{letter-spacing:-0.584640px;}
.ls89_c00364{letter-spacing:-0.542880px;}
.ls8d_c00364{letter-spacing:-0.511200px;}
.ls72_c00364{letter-spacing:-0.487200px;}
.ls5e_c00364{letter-spacing:-0.445440px;}
.ls79_c00364{letter-spacing:-0.243600px;}
.ls5c_c00364{letter-spacing:-0.208800px;}
.ls87_c00364{letter-spacing:-0.187920px;}
.ls66_c00364{letter-spacing:-0.174000px;}
.ls7d_c00364{letter-spacing:-0.125280px;}
.ls64_c00364{letter-spacing:-0.090480px;}
.ls81_c00364{letter-spacing:-0.083520px;}
.ls6c_c00364{letter-spacing:-0.020880px;}
.ls61_c00364{letter-spacing:0.000000px;}
.ls1c_c00364{letter-spacing:0.006960px;}
.ls58_c00364{letter-spacing:0.013920px;}
.ls4c_c00364{letter-spacing:0.020880px;}
.ls22_c00364{letter-spacing:0.027840px;}
.ls9_c00364{letter-spacing:0.048720px;}
.ls4d_c00364{letter-spacing:0.055680px;}
.ls12_c00364{letter-spacing:0.118320px;}
.ls55_c00364{letter-spacing:0.125280px;}
.lsb_c00364{letter-spacing:0.139200px;}
.ls43_c00364{letter-spacing:0.146160px;}
.ls3e_c00364{letter-spacing:0.153120px;}
.ls8_c00364{letter-spacing:0.160080px;}
.lsa_c00364{letter-spacing:0.174000px;}
.ls4a_c00364{letter-spacing:0.180960px;}
.ls26_c00364{letter-spacing:0.194880px;}
.ls76_c00364{letter-spacing:0.208800px;}
.ls4_c00364{letter-spacing:0.222720px;}
.ls2e_c00364{letter-spacing:0.229680px;}
.ls5_c00364{letter-spacing:0.236640px;}
.ls2a_c00364{letter-spacing:0.250560px;}
.ls52_c00364{letter-spacing:0.257520px;}
.ls19_c00364{letter-spacing:0.292320px;}
.ls4b_c00364{letter-spacing:0.299280px;}
.ls24_c00364{letter-spacing:0.306240px;}
.ls2d_c00364{letter-spacing:0.313200px;}
.ls39_c00364{letter-spacing:0.320160px;}
.ls1d_c00364{letter-spacing:0.327120px;}
.ls3f_c00364{letter-spacing:0.334080px;}
.ls15_c00364{letter-spacing:0.351900px;}
.ls14_c00364{letter-spacing:0.365700px;}
.ls2_c00364{letter-spacing:0.375840px;}
.ls41_c00364{letter-spacing:0.382800px;}
.ls4f_c00364{letter-spacing:0.396720px;}
.ls33_c00364{letter-spacing:0.403680px;}
.ls16_c00364{letter-spacing:0.410640px;}
.ls31_c00364{letter-spacing:0.424560px;}
.ls2c_c00364{letter-spacing:0.431520px;}
.ls6e_c00364{letter-spacing:0.452400px;}
.ls32_c00364{letter-spacing:0.466320px;}
.ls34_c00364{letter-spacing:0.473280px;}
.ls40_c00364{letter-spacing:0.494160px;}
.ls1b_c00364{letter-spacing:0.501120px;}
.ls25_c00364{letter-spacing:0.508080px;}
.ls42_c00364{letter-spacing:0.515040px;}
.ls6_c00364{letter-spacing:0.528960px;}
.ls1_c00364{letter-spacing:0.535920px;}
.ls7_c00364{letter-spacing:0.542880px;}
.lsc_c00364{letter-spacing:0.549840px;}
.ls50_c00364{letter-spacing:0.556800px;}
.lsd_c00364{letter-spacing:0.570720px;}
.ls46_c00364{letter-spacing:0.577680px;}
.ls67_c00364{letter-spacing:0.584640px;}
.ls59_c00364{letter-spacing:0.591600px;}
.ls38_c00364{letter-spacing:0.598560px;}
.ls92_c00364{letter-spacing:0.622740px;}
.ls0_c00364{letter-spacing:0.663480px;}
.ls27_c00364{letter-spacing:0.675120px;}
.ls3d_c00364{letter-spacing:0.716880px;}
.ls48_c00364{letter-spacing:0.723840px;}
.ls11_c00364{letter-spacing:0.730800px;}
.lsf_c00364{letter-spacing:0.744720px;}
.ls13_c00364{letter-spacing:0.751680px;}
.ls7a_c00364{letter-spacing:0.772560px;}
.ls5f_c00364{letter-spacing:0.793440px;}
.ls75_c00364{letter-spacing:0.807360px;}
.ls3b_c00364{letter-spacing:0.821280px;}
.ls23_c00364{letter-spacing:0.828000px;}
.ls44_c00364{letter-spacing:0.841320px;}
.ls47_c00364{letter-spacing:0.883920px;}
.ls4e_c00364{letter-spacing:0.890880px;}
.ls1f_c00364{letter-spacing:0.918720px;}
.ls35_c00364{letter-spacing:0.925680px;}
.ls83_c00364{letter-spacing:0.932640px;}
.ls3a_c00364{letter-spacing:0.953520px;}
.ls45_c00364{letter-spacing:0.960480px;}
.ls78_c00364{letter-spacing:0.967440px;}
.ls7f_c00364{letter-spacing:0.974400px;}
.ls2f_c00364{letter-spacing:1.002240px;}
.ls3c_c00364{letter-spacing:1.028100px;}
.ls17_c00364{letter-spacing:1.037040px;}
.ls6a_c00364{letter-spacing:1.071840px;}
.ls30_c00364{letter-spacing:1.120560px;}
.ls20_c00364{letter-spacing:1.127520px;}
.ls57_c00364{letter-spacing:1.131600px;}
.ls29_c00364{letter-spacing:1.148400px;}
.ls53_c00364{letter-spacing:1.273680px;}
.ls10_c00364{letter-spacing:1.378080px;}
.ls2b_c00364{letter-spacing:1.392000px;}
.ls1a_c00364{letter-spacing:1.398960px;}
.ls18_c00364{letter-spacing:1.496400px;}
.ls54_c00364{letter-spacing:1.607760px;}
.ls36_c00364{letter-spacing:1.635600px;}
.ls21_c00364{letter-spacing:1.676700px;}
.ls28_c00364{letter-spacing:1.677360px;}
.ls49_c00364{letter-spacing:1.705200px;}
.ls74_c00364{letter-spacing:1.726080px;}
.ls56_c00364{letter-spacing:1.780200px;}
.ls37_c00364{letter-spacing:1.802640px;}
.lse_c00364{letter-spacing:1.865280px;}
.ls3_c00364{letter-spacing:1.983600px;}
.ls1e_c00364{letter-spacing:2.164560px;}
.ls51_c00364{letter-spacing:2.839680px;}
.ls85_c00364{letter-spacing:3.326880px;}
.ls6d_c00364{letter-spacing:3.480000px;}
.ls7e_c00364{letter-spacing:3.600000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{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__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00364{word-spacing:-16.599600px;}
.ws7_c00364{word-spacing:0.000000px;}
.ws1_c00364{word-spacing:5.351100px;}
.ws0_c00364{word-spacing:5.817600px;}
.ws4_c00364{word-spacing:6.919200px;}
.ws3_c00364{word-spacing:8.415600px;}
.ws6_c00364{word-spacing:19.772100px;}
.ws2_c00364{word-spacing:29.019000px;}
._e_c00364{margin-left:-7.426320px;}
._17_c00364{margin-left:-4.614720px;}
._1_c00364{margin-left:-3.333600px;}
._d_c00364{margin-left:-1.544640px;}
._c_c00364{width:1.746960px;}
._0_c00364{width:3.020400px;}
._a_c00364{width:4.244400px;}
._15_c00364{width:5.439600px;}
._b_c00364{width:6.568800px;}
._2_c00364{width:8.672160px;}
._3_c00364{width:10.406640px;}
._4_c00364{width:12.319200px;}
._5_c00364{width:14.184480px;}
._8_c00364{width:15.889680px;}
._14_c00364{width:17.598240px;}
._7_c00364{width:18.926160px;}
._6_c00364{width:20.640000px;}
._9_c00364{width:22.223280px;}
._16_c00364{width:23.887800px;}
._13_c00364{width:25.167360px;}
._10_c00364{width:26.448720px;}
._12_c00364{width:27.568560px;}
._f_c00364{width:29.953440px;}
._11_c00364{width:31.695840px;}
.fc0_c00364{color:transparent;}
.fs6_c00364{font-size:32.400600px;}
.fs7_c00364{font-size:53.280000px;}
.fs8_c00364{font-size:58.200000px;}
.fs4_c00364{font-size:66.000000px;}
.fs0_c00364{font-size:67.200000px;}
.fs1_c00364{font-size:68.400000px;}
.fs3_c00364{font-size:69.000000px;}
.fs2_c00364{font-size:69.600000px;}
.fs5_c00364{font-size:72.000000px;}
.y0_c00364{bottom:0.000000px;}
.y20_c00364{bottom:68.400000px;}
.y1f_c00364{bottom:124.920000px;}
.y1e_c00364{bottom:156.255000px;}
.y1d_c00364{bottom:156.264600px;}
.y1c_c00364{bottom:216.381600px;}
.y1b_c00364{bottom:248.415000px;}
.y1a_c00364{bottom:310.337400px;}
.y19_c00364{bottom:341.640000px;}
.y18_c00364{bottom:402.495000px;}
.y17_c00364{bottom:434.513400px;}
.y16_c00364{bottom:465.128400px;}
.y15_c00364{bottom:495.735000px;}
.y14_c00364{bottom:557.655000px;}
.y13_c00364{bottom:557.662800px;}
.y12_c00364{bottom:590.775000px;}
.y11_c00364{bottom:654.123000px;}
.y10_c00364{bottom:685.095000px;}
.yf_c00364{bottom:685.116600px;}
.ye_c00364{bottom:716.053800px;}
.yd_c00364{bottom:746.660400px;}
.yc_c00364{bottom:777.615000px;}
.yb_c00364{bottom:839.528400px;}
.ya_c00364{bottom:870.135000px;}
.y9_c00364{bottom:932.045400px;}
.y8_c00364{bottom:963.000000px;}
.y6_c00364{bottom:1025.290800px;}
.y7_c00364{bottom:1025.295000px;}
.y5_c00364{bottom:1055.880000px;}
.y4_c00364{bottom:1055.883000px;}
.y3_c00364{bottom:1086.855000px;}
.y2_c00364{bottom:1118.175000px;}
.y1_c00364{bottom:1194.135000px;}
.h9_c00364{height:35.484480px;}
.ha_c00364{height:57.120117px;}
.h2_c00364{height:65.953125px;}
.h7_c00364{height:67.719727px;}
.h3_c00364{height:68.308594px;}
.h5_c00364{height:68.325394px;}
.h6_c00364{height:68.835938px;}
.h8_c00364{height:70.664062px;}
.h4_c00364{height:71.964844px;}
.h1_c00364{height:1263.000000px;}
.h0_c00364{height:1263.240000px;}
.w1_c00364{width:892.500000px;}
.w0_c00364{width:892.800000px;}
.x0_c00364{left:0.000000px;}
.x15_c00364{left:119.835600px;}
.xc_c00364{left:121.275600px;}
.x3_c00364{left:122.723400px;}
.x1_c00364{left:124.485000px;}
.x19_c00364{left:161.055000px;}
.x10_c00364{left:173.685000px;}
.x9_c00364{left:175.125000px;}
.x2_c00364{left:176.550000px;}
.x1d_c00364{left:200.895000px;}
.x1e_c00364{left:228.390000px;}
.x4_c00364{left:277.770000px;}
.x5_c00364{left:297.930000px;}
.x1b_c00364{left:353.685000px;}
.x8_c00364{left:373.095000px;}
.x1c_c00364{left:383.520000px;}
.xd_c00364{left:388.575000px;}
.x6_c00364{left:400.860000px;}
.x11_c00364{left:402.765000px;}
.x7_c00364{left:419.940000px;}
.x21_c00364{left:424.635000px;}
.x12_c00364{left:437.610000px;}
.x1f_c00364{left:442.605000px;}
.x16_c00364{left:468.285000px;}
.x20_c00364{left:470.070000px;}
.x17_c00364{left:499.935000px;}
.x18_c00364{left:525.435000px;}
.x1a_c00364{left:609.735000px;}
.xa_c00364{left:624.495000px;}
.xe_c00364{left:637.275000px;}
.xb_c00364{left:648.645000px;}
.x13_c00364{left:653.325000px;}
.xf_c00364{left:668.280000px;}
.x14_c00364{left:683.010000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.v1_c00364{vertical-align:24.320000pt;}
.ls91_c00364{letter-spacing:-2.240000pt;}
.ls65_c00364{letter-spacing:-2.165333pt;}
.ls68_c00364{letter-spacing:-2.146667pt;}
.ls90_c00364{letter-spacing:-2.105600pt;}
.ls5a_c00364{letter-spacing:-2.090667pt;}
.ls6b_c00364{letter-spacing:-2.053333pt;}
.ls5d_c00364{letter-spacing:-1.948800pt;}
.ls71_c00364{letter-spacing:-1.868373pt;}
.ls8b_c00364{letter-spacing:-1.753600pt;}
.ls73_c00364{letter-spacing:-1.565227pt;}
.ls70_c00364{letter-spacing:-1.509547pt;}
.ls63_c00364{letter-spacing:-1.466240pt;}
.ls7c_c00364{letter-spacing:-1.447680pt;}
.ls8f_c00364{letter-spacing:-1.363200pt;}
.ls60_c00364{letter-spacing:-1.361067pt;}
.ls62_c00364{letter-spacing:-1.311573pt;}
.ls6f_c00364{letter-spacing:-1.082667pt;}
.ls8c_c00364{letter-spacing:-1.043200pt;}
.ls7b_c00364{letter-spacing:-1.039360pt;}
.ls88_c00364{letter-spacing:-0.983680pt;}
.ls86_c00364{letter-spacing:-0.909440pt;}
.ls8e_c00364{letter-spacing:-0.857600pt;}
.ls77_c00364{letter-spacing:-0.804267pt;}
.ls8a_c00364{letter-spacing:-0.723840pt;}
.ls82_c00364{letter-spacing:-0.711467pt;}
.ls80_c00364{letter-spacing:-0.674347pt;}
.ls5b_c00364{letter-spacing:-0.600107pt;}
.ls69_c00364{letter-spacing:-0.550613pt;}
.ls84_c00364{letter-spacing:-0.519680pt;}
.ls89_c00364{letter-spacing:-0.482560pt;}
.ls8d_c00364{letter-spacing:-0.454400pt;}
.ls72_c00364{letter-spacing:-0.433067pt;}
.ls5e_c00364{letter-spacing:-0.395947pt;}
.ls79_c00364{letter-spacing:-0.216533pt;}
.ls5c_c00364{letter-spacing:-0.185600pt;}
.ls87_c00364{letter-spacing:-0.167040pt;}
.ls66_c00364{letter-spacing:-0.154667pt;}
.ls7d_c00364{letter-spacing:-0.111360pt;}
.ls64_c00364{letter-spacing:-0.080427pt;}
.ls81_c00364{letter-spacing:-0.074240pt;}
.ls6c_c00364{letter-spacing:-0.018560pt;}
.ls61_c00364{letter-spacing:0.000000pt;}
.ls1c_c00364{letter-spacing:0.006187pt;}
.ls58_c00364{letter-spacing:0.012373pt;}
.ls4c_c00364{letter-spacing:0.018560pt;}
.ls22_c00364{letter-spacing:0.024747pt;}
.ls9_c00364{letter-spacing:0.043307pt;}
.ls4d_c00364{letter-spacing:0.049493pt;}
.ls12_c00364{letter-spacing:0.105173pt;}
.ls55_c00364{letter-spacing:0.111360pt;}
.lsb_c00364{letter-spacing:0.123733pt;}
.ls43_c00364{letter-spacing:0.129920pt;}
.ls3e_c00364{letter-spacing:0.136107pt;}
.ls8_c00364{letter-spacing:0.142293pt;}
.lsa_c00364{letter-spacing:0.154667pt;}
.ls4a_c00364{letter-spacing:0.160853pt;}
.ls26_c00364{letter-spacing:0.173227pt;}
.ls76_c00364{letter-spacing:0.185600pt;}
.ls4_c00364{letter-spacing:0.197973pt;}
.ls2e_c00364{letter-spacing:0.204160pt;}
.ls5_c00364{letter-spacing:0.210347pt;}
.ls2a_c00364{letter-spacing:0.222720pt;}
.ls52_c00364{letter-spacing:0.228907pt;}
.ls19_c00364{letter-spacing:0.259840pt;}
.ls4b_c00364{letter-spacing:0.266027pt;}
.ls24_c00364{letter-spacing:0.272213pt;}
.ls2d_c00364{letter-spacing:0.278400pt;}
.ls39_c00364{letter-spacing:0.284587pt;}
.ls1d_c00364{letter-spacing:0.290773pt;}
.ls3f_c00364{letter-spacing:0.296960pt;}
.ls15_c00364{letter-spacing:0.312800pt;}
.ls14_c00364{letter-spacing:0.325067pt;}
.ls2_c00364{letter-spacing:0.334080pt;}
.ls41_c00364{letter-spacing:0.340267pt;}
.ls4f_c00364{letter-spacing:0.352640pt;}
.ls33_c00364{letter-spacing:0.358827pt;}
.ls16_c00364{letter-spacing:0.365013pt;}
.ls31_c00364{letter-spacing:0.377387pt;}
.ls2c_c00364{letter-spacing:0.383573pt;}
.ls6e_c00364{letter-spacing:0.402133pt;}
.ls32_c00364{letter-spacing:0.414507pt;}
.ls34_c00364{letter-spacing:0.420693pt;}
.ls40_c00364{letter-spacing:0.439253pt;}
.ls1b_c00364{letter-spacing:0.445440pt;}
.ls25_c00364{letter-spacing:0.451627pt;}
.ls42_c00364{letter-spacing:0.457813pt;}
.ls6_c00364{letter-spacing:0.470187pt;}
.ls1_c00364{letter-spacing:0.476373pt;}
.ls7_c00364{letter-spacing:0.482560pt;}
.lsc_c00364{letter-spacing:0.488747pt;}
.ls50_c00364{letter-spacing:0.494933pt;}
.lsd_c00364{letter-spacing:0.507307pt;}
.ls46_c00364{letter-spacing:0.513493pt;}
.ls67_c00364{letter-spacing:0.519680pt;}
.ls59_c00364{letter-spacing:0.525867pt;}
.ls38_c00364{letter-spacing:0.532053pt;}
.ls92_c00364{letter-spacing:0.553547pt;}
.ls0_c00364{letter-spacing:0.589760pt;}
.ls27_c00364{letter-spacing:0.600107pt;}
.ls3d_c00364{letter-spacing:0.637227pt;}
.ls48_c00364{letter-spacing:0.643413pt;}
.ls11_c00364{letter-spacing:0.649600pt;}
.lsf_c00364{letter-spacing:0.661973pt;}
.ls13_c00364{letter-spacing:0.668160pt;}
.ls7a_c00364{letter-spacing:0.686720pt;}
.ls5f_c00364{letter-spacing:0.705280pt;}
.ls75_c00364{letter-spacing:0.717653pt;}
.ls3b_c00364{letter-spacing:0.730027pt;}
.ls23_c00364{letter-spacing:0.736000pt;}
.ls44_c00364{letter-spacing:0.747840pt;}
.ls47_c00364{letter-spacing:0.785707pt;}
.ls4e_c00364{letter-spacing:0.791893pt;}
.ls1f_c00364{letter-spacing:0.816640pt;}
.ls35_c00364{letter-spacing:0.822827pt;}
.ls83_c00364{letter-spacing:0.829013pt;}
.ls3a_c00364{letter-spacing:0.847573pt;}
.ls45_c00364{letter-spacing:0.853760pt;}
.ls78_c00364{letter-spacing:0.859947pt;}
.ls7f_c00364{letter-spacing:0.866133pt;}
.ls2f_c00364{letter-spacing:0.890880pt;}
.ls3c_c00364{letter-spacing:0.913867pt;}
.ls17_c00364{letter-spacing:0.921813pt;}
.ls6a_c00364{letter-spacing:0.952747pt;}
.ls30_c00364{letter-spacing:0.996053pt;}
.ls20_c00364{letter-spacing:1.002240pt;}
.ls57_c00364{letter-spacing:1.005867pt;}
.ls29_c00364{letter-spacing:1.020800pt;}
.ls53_c00364{letter-spacing:1.132160pt;}
.ls10_c00364{letter-spacing:1.224960pt;}
.ls2b_c00364{letter-spacing:1.237333pt;}
.ls1a_c00364{letter-spacing:1.243520pt;}
.ls18_c00364{letter-spacing:1.330133pt;}
.ls54_c00364{letter-spacing:1.429120pt;}
.ls36_c00364{letter-spacing:1.453867pt;}
.ls21_c00364{letter-spacing:1.490400pt;}
.ls28_c00364{letter-spacing:1.490987pt;}
.ls49_c00364{letter-spacing:1.515733pt;}
.ls74_c00364{letter-spacing:1.534293pt;}
.ls56_c00364{letter-spacing:1.582400pt;}
.ls37_c00364{letter-spacing:1.602347pt;}
.lse_c00364{letter-spacing:1.658027pt;}
.ls3_c00364{letter-spacing:1.763200pt;}
.ls1e_c00364{letter-spacing:1.924053pt;}
.ls51_c00364{letter-spacing:2.524160pt;}
.ls85_c00364{letter-spacing:2.957227pt;}
.ls6d_c00364{letter-spacing:3.093333pt;}
.ls7e_c00364{letter-spacing:3.200000pt;}
.ws5_c00364{word-spacing:-14.755200pt;}
.ws7_c00364{word-spacing:0.000000pt;}
.ws1_c00364{word-spacing:4.756533pt;}
.ws0_c00364{word-spacing:5.171200pt;}
.ws4_c00364{word-spacing:6.150400pt;}
.ws3_c00364{word-spacing:7.480533pt;}
.ws6_c00364{word-spacing:17.575200pt;}
.ws2_c00364{word-spacing:25.794667pt;}
._e_c00364{margin-left:-6.601173pt;}
._17_c00364{margin-left:-4.101973pt;}
._1_c00364{margin-left:-2.963200pt;}
._d_c00364{margin-left:-1.373013pt;}
._c_c00364{width:1.552853pt;}
._0_c00364{width:2.684800pt;}
._a_c00364{width:3.772800pt;}
._15_c00364{width:4.835200pt;}
._b_c00364{width:5.838933pt;}
._2_c00364{width:7.708587pt;}
._3_c00364{width:9.250347pt;}
._4_c00364{width:10.950400pt;}
._5_c00364{width:12.608427pt;}
._8_c00364{width:14.124160pt;}
._14_c00364{width:15.642880pt;}
._7_c00364{width:16.823253pt;}
._6_c00364{width:18.346667pt;}
._9_c00364{width:19.754027pt;}
._16_c00364{width:21.233600pt;}
._13_c00364{width:22.370987pt;}
._10_c00364{width:23.509973pt;}
._12_c00364{width:24.505387pt;}
._f_c00364{width:26.625280pt;}
._11_c00364{width:28.174080pt;}
.fs6_c00364{font-size:28.800533pt;}
.fs7_c00364{font-size:47.360000pt;}
.fs8_c00364{font-size:51.733333pt;}
.fs4_c00364{font-size:58.666667pt;}
.fs0_c00364{font-size:59.733333pt;}
.fs1_c00364{font-size:60.800000pt;}
.fs3_c00364{font-size:61.333333pt;}
.fs2_c00364{font-size:61.866667pt;}
.fs5_c00364{font-size:64.000000pt;}
.y0_c00364{bottom:0.000000pt;}
.y20_c00364{bottom:60.800000pt;}
.y1f_c00364{bottom:111.040000pt;}
.y1e_c00364{bottom:138.893333pt;}
.y1d_c00364{bottom:138.901867pt;}
.y1c_c00364{bottom:192.339200pt;}
.y1b_c00364{bottom:220.813333pt;}
.y1a_c00364{bottom:275.855467pt;}
.y19_c00364{bottom:303.680000pt;}
.y18_c00364{bottom:357.773333pt;}
.y17_c00364{bottom:386.234133pt;}
.y16_c00364{bottom:413.447467pt;}
.y15_c00364{bottom:440.653333pt;}
.y14_c00364{bottom:495.693333pt;}
.y13_c00364{bottom:495.700267pt;}
.y12_c00364{bottom:525.133333pt;}
.y11_c00364{bottom:581.442667pt;}
.y10_c00364{bottom:608.973333pt;}
.yf_c00364{bottom:608.992533pt;}
.ye_c00364{bottom:636.492267pt;}
.yd_c00364{bottom:663.698133pt;}
.yc_c00364{bottom:691.213333pt;}
.yb_c00364{bottom:746.247467pt;}
.ya_c00364{bottom:773.453333pt;}
.y9_c00364{bottom:828.484800pt;}
.y8_c00364{bottom:856.000000pt;}
.y6_c00364{bottom:911.369600pt;}
.y7_c00364{bottom:911.373333pt;}
.y5_c00364{bottom:938.560000pt;}
.y4_c00364{bottom:938.562667pt;}
.y3_c00364{bottom:966.093333pt;}
.y2_c00364{bottom:993.933333pt;}
.y1_c00364{bottom:1061.453333pt;}
.h9_c00364{height:31.541760pt;}
.ha_c00364{height:50.773437pt;}
.h2_c00364{height:58.625000pt;}
.h7_c00364{height:60.195312pt;}
.h3_c00364{height:60.718750pt;}
.h5_c00364{height:60.733683pt;}
.h6_c00364{height:61.187500pt;}
.h8_c00364{height:62.812500pt;}
.h4_c00364{height:63.968750pt;}
.h1_c00364{height:1122.666667pt;}
.h0_c00364{height:1122.880000pt;}
.w1_c00364{width:793.333333pt;}
.w0_c00364{width:793.600000pt;}
.x0_c00364{left:0.000000pt;}
.x15_c00364{left:106.520533pt;}
.xc_c00364{left:107.800533pt;}
.x3_c00364{left:109.087467pt;}
.x1_c00364{left:110.653333pt;}
.x19_c00364{left:143.160000pt;}
.x10_c00364{left:154.386667pt;}
.x9_c00364{left:155.666667pt;}
.x2_c00364{left:156.933333pt;}
.x1d_c00364{left:178.573333pt;}
.x1e_c00364{left:203.013333pt;}
.x4_c00364{left:246.906667pt;}
.x5_c00364{left:264.826667pt;}
.x1b_c00364{left:314.386667pt;}
.x8_c00364{left:331.640000pt;}
.x1c_c00364{left:340.906667pt;}
.xd_c00364{left:345.400000pt;}
.x6_c00364{left:356.320000pt;}
.x11_c00364{left:358.013333pt;}
.x7_c00364{left:373.280000pt;}
.x21_c00364{left:377.453333pt;}
.x12_c00364{left:388.986667pt;}
.x1f_c00364{left:393.426667pt;}
.x16_c00364{left:416.253333pt;}
.x20_c00364{left:417.840000pt;}
.x17_c00364{left:444.386667pt;}
.x18_c00364{left:467.053333pt;}
.x1a_c00364{left:541.986667pt;}
.xa_c00364{left:555.106667pt;}
.xe_c00364{left:566.466667pt;}
.xb_c00364{left:576.573333pt;}
.x13_c00364{left:580.733333pt;}
.xf_c00364{left:594.026667pt;}
.x14_c00364{left:607.120000pt;}
}





/* 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_c00365 {
    display:none;
  }
  .loading-indicator_c00365.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00365 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_c00365 { 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_c00365" -> "#page-container .classname_c00365")
 */
.pf_c00365 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00365 { /* 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_c00365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00365 { /* 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_c00365 { /* 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_c00365 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00365 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00365 {overflow:visible;}
  }
}
.c_c00365 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00365 { /* 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_c00365:after { /* webkit #35443 */
  content: '';
}
.t_c00365:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00365 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 */
}
.__c00365 { /* 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_c00365 { /* info for Javascript */
  display:none;
}
.l_c00365 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00365 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00365 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00365: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_c00365 {
    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_c00365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00365.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_c00365 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00365{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00365;src:url('chunks/assets/font_304352b8eed4cb301e97b5d9.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.284668;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_c00365;src:url('chunks/assets/font_261b26f063547d397d0aa1d1.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.284180;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_c00365;src:url('chunks/assets/font_fbec139ed99fe77cf775e734.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:0.666000;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;}
.m8_c00365{transform:matrix(0.135752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135752,0.000000,0.000000,0.250000,0,0);}
.m6_c00365{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.m5_c00365{transform:matrix(0.206985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206985,0.000000,0.000000,0.250000,0,0);}
.m0_c00365{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.m1_c00365{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);}
.m4_c00365{transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);}
.m2_c00365{transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);}
.m3_c00365{transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);}
.m7_c00365{transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls84_c00365{letter-spacing:-2.415000px;}
.ls74_c00365{letter-spacing:-2.331000px;}
.ls8b_c00365{letter-spacing:-2.057400px;}
.ls8c_c00365{letter-spacing:-1.508760px;}
.ls8e_c00365{letter-spacing:-1.338660px;}
.ls95_c00365{letter-spacing:-1.265400px;}
.ls8f_c00365{letter-spacing:-0.859140px;}
.ls93_c00365{letter-spacing:-0.792540px;}
.ls7f_c00365{letter-spacing:-0.779220px;}
.ls86_c00365{letter-spacing:-0.526140px;}
.ls87_c00365{letter-spacing:-0.419580px;}
.ls76_c00365{letter-spacing:-0.379620px;}
.ls75_c00365{letter-spacing:-0.366300px;}
.ls77_c00365{letter-spacing:-0.306360px;}
.ls82_c00365{letter-spacing:-0.286380px;}
.ls7e_c00365{letter-spacing:-0.159840px;}
.ls83_c00365{letter-spacing:-0.113220px;}
.ls96_c00365{letter-spacing:-0.098940px;}
.ls91_c00365{letter-spacing:-0.046620px;}
.ls79_c00365{letter-spacing:0.000000px;}
.ls5b_c00365{letter-spacing:0.223740px;}
.ls78_c00365{letter-spacing:0.233100px;}
.ls94_c00365{letter-spacing:0.253080px;}
.ls80_c00365{letter-spacing:0.299700px;}
.ls73_c00365{letter-spacing:0.432900px;}
.ls5c_c00365{letter-spacing:0.447480px;}
.ls34_c00365{letter-spacing:0.466200px;}
.ls92_c00365{letter-spacing:0.532800px;}
.ls30_c00365{letter-spacing:0.559440px;}
.ls25_c00365{letter-spacing:0.586080px;}
.ls66_c00365{letter-spacing:0.646020px;}
.ls6b_c00365{letter-spacing:0.652680px;}
.ls6_c00365{letter-spacing:0.691560px;}
.ls14_c00365{letter-spacing:0.692640px;}
.ls48_c00365{letter-spacing:0.712620px;}
.ls32_c00365{letter-spacing:0.725940px;}
.ls41_c00365{letter-spacing:0.759240px;}
.ls39_c00365{letter-spacing:0.759360px;}
.ls3e_c00365{letter-spacing:0.799200px;}
.ls3_c00365{letter-spacing:0.805860px;}
.ls5_c00365{letter-spacing:0.813600px;}
.ls19_c00365{letter-spacing:0.859140px;}
.ls31_c00365{letter-spacing:0.865800px;}
.ls3c_c00365{letter-spacing:0.885780px;}
.ls1_c00365{letter-spacing:0.888180px;}
.ls4d_c00365{letter-spacing:0.892440px;}
.lsa_c00365{letter-spacing:0.894960px;}
.ls7c_c00365{letter-spacing:0.912420px;}
.ls49_c00365{letter-spacing:0.919080px;}
.ls68_c00365{letter-spacing:0.932400px;}
.ls0_c00365{letter-spacing:0.942420px;}
.ls4e_c00365{letter-spacing:0.949200px;}
.ls54_c00365{letter-spacing:0.952380px;}
.ls89_c00365{letter-spacing:0.972360px;}
.ls69_c00365{letter-spacing:0.979020px;}
.ls1d_c00365{letter-spacing:0.992340px;}
.ls4_c00365{letter-spacing:1.012320px;}
.ls2c_c00365{letter-spacing:1.018980px;}
.ls60_c00365{letter-spacing:1.025640px;}
.lsf_c00365{letter-spacing:1.038960px;}
.ls70_c00365{letter-spacing:1.072260px;}
.ls51_c00365{letter-spacing:1.078920px;}
.ls16_c00365{letter-spacing:1.098900px;}
.ls35_c00365{letter-spacing:1.118700px;}
.ls62_c00365{letter-spacing:1.118880px;}
.ls6e_c00365{letter-spacing:1.132200px;}
.ls65_c00365{letter-spacing:1.138860px;}
.ls4b_c00365{letter-spacing:1.145520px;}
.ls42_c00365{letter-spacing:1.152180px;}
.ls3d_c00365{letter-spacing:1.158840px;}
.ls47_c00365{letter-spacing:1.185480px;}
.ls5e_c00365{letter-spacing:1.198800px;}
.ls52_c00365{letter-spacing:1.245420px;}
.ls8_c00365{letter-spacing:1.258740px;}
.ls11_c00365{letter-spacing:1.272060px;}
.ls18_c00365{letter-spacing:1.285380px;}
.ls1c_c00365{letter-spacing:1.298700px;}
.ls5f_c00365{letter-spacing:1.305360px;}
.ls7a_c00365{letter-spacing:1.312020px;}
.ls6c_c00365{letter-spacing:1.318680px;}
.ls72_c00365{letter-spacing:1.332000px;}
.ls1f_c00365{letter-spacing:1.338660px;}
.ls7_c00365{letter-spacing:1.358640px;}
.ls71_c00365{letter-spacing:1.365300px;}
.ls21_c00365{letter-spacing:1.378620px;}
.ls1e_c00365{letter-spacing:1.405260px;}
.ls2_c00365{letter-spacing:1.411920px;}
.ls28_c00365{letter-spacing:1.418580px;}
.ls45_c00365{letter-spacing:1.425240px;}
.ls58_c00365{letter-spacing:1.431900px;}
.ls37_c00365{letter-spacing:1.465200px;}
.lsc_c00365{letter-spacing:1.478520px;}
.ls64_c00365{letter-spacing:1.498500px;}
.ls55_c00365{letter-spacing:1.518480px;}
.ls9_c00365{letter-spacing:1.525140px;}
.ls43_c00365{letter-spacing:1.538460px;}
.ls23_c00365{letter-spacing:1.571760px;}
.ls1b_c00365{letter-spacing:1.578420px;}
.ls2e_c00365{letter-spacing:1.591740px;}
.ls29_c00365{letter-spacing:1.598400px;}
.ls6a_c00365{letter-spacing:1.605060px;}
.ls61_c00365{letter-spacing:1.645020px;}
.ls2b_c00365{letter-spacing:1.658340px;}
.ls36_c00365{letter-spacing:1.665000px;}
.ls88_c00365{letter-spacing:1.684980px;}
.ls46_c00365{letter-spacing:1.691640px;}
.ls81_c00365{letter-spacing:1.698300px;}
.ls85_c00365{letter-spacing:1.731600px;}
.ls26_c00365{letter-spacing:1.751580px;}
.ls6f_c00365{letter-spacing:1.756020px;}
.ls5a_c00365{letter-spacing:1.771560px;}
.ls2d_c00365{letter-spacing:1.784880px;}
.ls3f_c00365{letter-spacing:1.798200px;}
.ls33_c00365{letter-spacing:1.824840px;}
.ls4c_c00365{letter-spacing:1.844820px;}
.ls4f_c00365{letter-spacing:1.864800px;}
.ls17_c00365{letter-spacing:1.871460px;}
.ls7b_c00365{letter-spacing:1.878120px;}
.ls8d_c00365{letter-spacing:1.911420px;}
.ls44_c00365{letter-spacing:1.918080px;}
.ls38_c00365{letter-spacing:1.931400px;}
.lse_c00365{letter-spacing:1.964700px;}
.ls12_c00365{letter-spacing:1.971360px;}
.ls90_c00365{letter-spacing:1.984680px;}
.lsd_c00365{letter-spacing:1.998000px;}
.ls20_c00365{letter-spacing:2.024640px;}
.ls2a_c00365{letter-spacing:2.037960px;}
.ls5d_c00365{letter-spacing:2.057940px;}
.ls59_c00365{letter-spacing:2.077920px;}
.ls57_c00365{letter-spacing:2.104560px;}
.ls24_c00365{letter-spacing:2.151180px;}
.ls4a_c00365{letter-spacing:2.177820px;}
.ls6d_c00365{letter-spacing:2.244420px;}
.ls1a_c00365{letter-spacing:2.251080px;}
.ls2f_c00365{letter-spacing:2.297700px;}
.ls22_c00365{letter-spacing:2.324340px;}
.ls3a_c00365{letter-spacing:2.364300px;}
.lsb_c00365{letter-spacing:2.437560px;}
.ls27_c00365{letter-spacing:2.597400px;}
.ls10_c00365{letter-spacing:2.664000px;}
.ls8a_c00365{letter-spacing:2.710620px;}
.ls50_c00365{letter-spacing:2.837160px;}
.ls13_c00365{letter-spacing:2.897100px;}
.ls63_c00365{letter-spacing:2.990340px;}
.ls53_c00365{letter-spacing:3.003660px;}
.ls40_c00365{letter-spacing:3.016980px;}
.ls56_c00365{letter-spacing:3.150180px;}
.ls15_c00365{letter-spacing:3.156840px;}
.ls67_c00365{letter-spacing:3.196800px;}
.ls3b_c00365{letter-spacing:3.310020px;}
.ls7d_c00365{letter-spacing:3.330000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{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__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00365{word-spacing:-0.054000px;}
.ws5_c00365{word-spacing:0.000000px;}
.ws3_c00365{word-spacing:1.267800px;}
.ws4_c00365{word-spacing:9.422520px;}
.ws2_c00365{word-spacing:17.332200px;}
.ws0_c00365{word-spacing:23.426760px;}
._18_c00365{margin-left:-9.269220px;}
._12_c00365{margin-left:-5.948580px;}
._9_c00365{margin-left:-3.944220px;}
._f_c00365{margin-left:-2.875620px;}
._1_c00365{margin-left:-1.835160px;}
._4_c00365{width:1.999200px;}
._0_c00365{width:3.721440px;}
._2_c00365{width:5.594400px;}
._10_c00365{width:7.525800px;}
._17_c00365{width:8.571420px;}
._e_c00365{width:9.575580px;}
._11_c00365{width:10.641180px;}
._3_c00365{width:12.762060px;}
._a_c00365{width:14.652000px;}
._b_c00365{width:16.430220px;}
._d_c00365{width:17.688960px;}
._c_c00365{width:18.694620px;}
._7_c00365{width:21.844800px;}
._6_c00365{width:23.789520px;}
._8_c00365{width:25.880760px;}
._5_c00365{width:27.945360px;}
._16_c00365{width:29.956680px;}
._14_c00365{width:33.233400px;}
._15_c00365{width:34.618680px;}
._13_c00365{width:39.680280px;}
.fc0_c00365{color:transparent;}
.fs4_c00365{font-size:53.280000px;}
.fs5_c00365{font-size:58.200000px;}
.fs0_c00365{font-size:66.600000px;}
.fs1_c00365{font-size:67.800000px;}
.fs2_c00365{font-size:69.000000px;}
.fs3_c00365{font-size:76.200000px;}
.y0_c00365{bottom:0.000000px;}
.y1c_c00365{bottom:66.255000px;}
.y1b_c00365{bottom:155.520000px;}
.y1a_c00365{bottom:185.760000px;}
.y19_c00365{bottom:279.022500px;}
.y18_c00365{bottom:309.625200px;}
.y17_c00365{bottom:371.180250px;}
.y16_c00365{bottom:401.400000px;}
.y15_c00365{bottom:464.058600px;}
.y14_c00365{bottom:494.295000px;}
.y13_c00365{bottom:555.853650px;}
.y12_c00365{bottom:586.806000px;}
.y11_c00365{bottom:617.775000px;}
.y10_c00365{bottom:679.315650px;}
.yf_c00365{bottom:709.942650px;}
.ye_c00365{bottom:740.895000px;}
.yd_c00365{bottom:803.175000px;}
.yb_c00365{bottom:866.524950px;}
.yc_c00365{bottom:866.535000px;}
.ya_c00365{bottom:897.127650px;}
.y8_c00365{bottom:928.075650px;}
.y9_c00365{bottom:928.080000px;}
.y7_c00365{bottom:958.695000px;}
.y6_c00365{bottom:958.701600px;}
.y5_c00365{bottom:989.287650px;}
.y4_c00365{bottom:1020.240000px;}
.y3_c00365{bottom:1081.815000px;}
.y2_c00365{bottom:1112.400000px;}
.y1_c00365{bottom:1188.015000px;}
.h7_c00365{height:35.484480px;}
.h8_c00365{height:57.120117px;}
.h2_c00365{height:65.364258px;}
.h5_c00365{height:65.381658px;}
.h3_c00365{height:66.508887px;}
.h4_c00365{height:67.719727px;}
.h6_c00365{height:74.748926px;}
.h1_c00365{height:1263.000000px;}
.h0_c00365{height:1263.240000px;}
.w1_c00365{width:892.500000px;}
.w0_c00365{width:892.800000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:123.045000px;}
.x2_c00365{left:176.535000px;}
.x15_c00365{left:177.975000px;}
.x7_c00365{left:195.870000px;}
.x8_c00365{left:224.145000px;}
.x12_c00365{left:273.390000px;}
.x5_c00365{left:282.780000px;}
.x3_c00365{left:295.470000px;}
.x6_c00365{left:308.700000px;}
.x4_c00365{left:325.305000px;}
.x16_c00365{left:424.275000px;}
.x9_c00365{left:431.175000px;}
.xa_c00365{left:463.545000px;}
.x13_c00365{left:466.200000px;}
.xe_c00365{left:481.590000px;}
.xf_c00365{left:506.445000px;}
.x14_c00365{left:550.365000px;}
.x10_c00365{left:561.150000px;}
.x11_c00365{left:586.980000px;}
.xc_c00365{left:625.500000px;}
.xd_c00365{left:651.105000px;}
.xb_c00365{left:668.415000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls84_c00365{letter-spacing:-2.146667pt;}
.ls74_c00365{letter-spacing:-2.072000pt;}
.ls8b_c00365{letter-spacing:-1.828800pt;}
.ls8c_c00365{letter-spacing:-1.341120pt;}
.ls8e_c00365{letter-spacing:-1.189920pt;}
.ls95_c00365{letter-spacing:-1.124800pt;}
.ls8f_c00365{letter-spacing:-0.763680pt;}
.ls93_c00365{letter-spacing:-0.704480pt;}
.ls7f_c00365{letter-spacing:-0.692640pt;}
.ls86_c00365{letter-spacing:-0.467680pt;}
.ls87_c00365{letter-spacing:-0.372960pt;}
.ls76_c00365{letter-spacing:-0.337440pt;}
.ls75_c00365{letter-spacing:-0.325600pt;}
.ls77_c00365{letter-spacing:-0.272320pt;}
.ls82_c00365{letter-spacing:-0.254560pt;}
.ls7e_c00365{letter-spacing:-0.142080pt;}
.ls83_c00365{letter-spacing:-0.100640pt;}
.ls96_c00365{letter-spacing:-0.087947pt;}
.ls91_c00365{letter-spacing:-0.041440pt;}
.ls79_c00365{letter-spacing:0.000000pt;}
.ls5b_c00365{letter-spacing:0.198880pt;}
.ls78_c00365{letter-spacing:0.207200pt;}
.ls94_c00365{letter-spacing:0.224960pt;}
.ls80_c00365{letter-spacing:0.266400pt;}
.ls73_c00365{letter-spacing:0.384800pt;}
.ls5c_c00365{letter-spacing:0.397760pt;}
.ls34_c00365{letter-spacing:0.414400pt;}
.ls92_c00365{letter-spacing:0.473600pt;}
.ls30_c00365{letter-spacing:0.497280pt;}
.ls25_c00365{letter-spacing:0.520960pt;}
.ls66_c00365{letter-spacing:0.574240pt;}
.ls6b_c00365{letter-spacing:0.580160pt;}
.ls6_c00365{letter-spacing:0.614720pt;}
.ls14_c00365{letter-spacing:0.615680pt;}
.ls48_c00365{letter-spacing:0.633440pt;}
.ls32_c00365{letter-spacing:0.645280pt;}
.ls41_c00365{letter-spacing:0.674880pt;}
.ls39_c00365{letter-spacing:0.674987pt;}
.ls3e_c00365{letter-spacing:0.710400pt;}
.ls3_c00365{letter-spacing:0.716320pt;}
.ls5_c00365{letter-spacing:0.723200pt;}
.ls19_c00365{letter-spacing:0.763680pt;}
.ls31_c00365{letter-spacing:0.769600pt;}
.ls3c_c00365{letter-spacing:0.787360pt;}
.ls1_c00365{letter-spacing:0.789493pt;}
.ls4d_c00365{letter-spacing:0.793280pt;}
.lsa_c00365{letter-spacing:0.795520pt;}
.ls7c_c00365{letter-spacing:0.811040pt;}
.ls49_c00365{letter-spacing:0.816960pt;}
.ls68_c00365{letter-spacing:0.828800pt;}
.ls0_c00365{letter-spacing:0.837707pt;}
.ls4e_c00365{letter-spacing:0.843733pt;}
.ls54_c00365{letter-spacing:0.846560pt;}
.ls89_c00365{letter-spacing:0.864320pt;}
.ls69_c00365{letter-spacing:0.870240pt;}
.ls1d_c00365{letter-spacing:0.882080pt;}
.ls4_c00365{letter-spacing:0.899840pt;}
.ls2c_c00365{letter-spacing:0.905760pt;}
.ls60_c00365{letter-spacing:0.911680pt;}
.lsf_c00365{letter-spacing:0.923520pt;}
.ls70_c00365{letter-spacing:0.953120pt;}
.ls51_c00365{letter-spacing:0.959040pt;}
.ls16_c00365{letter-spacing:0.976800pt;}
.ls35_c00365{letter-spacing:0.994400pt;}
.ls62_c00365{letter-spacing:0.994560pt;}
.ls6e_c00365{letter-spacing:1.006400pt;}
.ls65_c00365{letter-spacing:1.012320pt;}
.ls4b_c00365{letter-spacing:1.018240pt;}
.ls42_c00365{letter-spacing:1.024160pt;}
.ls3d_c00365{letter-spacing:1.030080pt;}
.ls47_c00365{letter-spacing:1.053760pt;}
.ls5e_c00365{letter-spacing:1.065600pt;}
.ls52_c00365{letter-spacing:1.107040pt;}
.ls8_c00365{letter-spacing:1.118880pt;}
.ls11_c00365{letter-spacing:1.130720pt;}
.ls18_c00365{letter-spacing:1.142560pt;}
.ls1c_c00365{letter-spacing:1.154400pt;}
.ls5f_c00365{letter-spacing:1.160320pt;}
.ls7a_c00365{letter-spacing:1.166240pt;}
.ls6c_c00365{letter-spacing:1.172160pt;}
.ls72_c00365{letter-spacing:1.184000pt;}
.ls1f_c00365{letter-spacing:1.189920pt;}
.ls7_c00365{letter-spacing:1.207680pt;}
.ls71_c00365{letter-spacing:1.213600pt;}
.ls21_c00365{letter-spacing:1.225440pt;}
.ls1e_c00365{letter-spacing:1.249120pt;}
.ls2_c00365{letter-spacing:1.255040pt;}
.ls28_c00365{letter-spacing:1.260960pt;}
.ls45_c00365{letter-spacing:1.266880pt;}
.ls58_c00365{letter-spacing:1.272800pt;}
.ls37_c00365{letter-spacing:1.302400pt;}
.lsc_c00365{letter-spacing:1.314240pt;}
.ls64_c00365{letter-spacing:1.332000pt;}
.ls55_c00365{letter-spacing:1.349760pt;}
.ls9_c00365{letter-spacing:1.355680pt;}
.ls43_c00365{letter-spacing:1.367520pt;}
.ls23_c00365{letter-spacing:1.397120pt;}
.ls1b_c00365{letter-spacing:1.403040pt;}
.ls2e_c00365{letter-spacing:1.414880pt;}
.ls29_c00365{letter-spacing:1.420800pt;}
.ls6a_c00365{letter-spacing:1.426720pt;}
.ls61_c00365{letter-spacing:1.462240pt;}
.ls2b_c00365{letter-spacing:1.474080pt;}
.ls36_c00365{letter-spacing:1.480000pt;}
.ls88_c00365{letter-spacing:1.497760pt;}
.ls46_c00365{letter-spacing:1.503680pt;}
.ls81_c00365{letter-spacing:1.509600pt;}
.ls85_c00365{letter-spacing:1.539200pt;}
.ls26_c00365{letter-spacing:1.556960pt;}
.ls6f_c00365{letter-spacing:1.560907pt;}
.ls5a_c00365{letter-spacing:1.574720pt;}
.ls2d_c00365{letter-spacing:1.586560pt;}
.ls3f_c00365{letter-spacing:1.598400pt;}
.ls33_c00365{letter-spacing:1.622080pt;}
.ls4c_c00365{letter-spacing:1.639840pt;}
.ls4f_c00365{letter-spacing:1.657600pt;}
.ls17_c00365{letter-spacing:1.663520pt;}
.ls7b_c00365{letter-spacing:1.669440pt;}
.ls8d_c00365{letter-spacing:1.699040pt;}
.ls44_c00365{letter-spacing:1.704960pt;}
.ls38_c00365{letter-spacing:1.716800pt;}
.lse_c00365{letter-spacing:1.746400pt;}
.ls12_c00365{letter-spacing:1.752320pt;}
.ls90_c00365{letter-spacing:1.764160pt;}
.lsd_c00365{letter-spacing:1.776000pt;}
.ls20_c00365{letter-spacing:1.799680pt;}
.ls2a_c00365{letter-spacing:1.811520pt;}
.ls5d_c00365{letter-spacing:1.829280pt;}
.ls59_c00365{letter-spacing:1.847040pt;}
.ls57_c00365{letter-spacing:1.870720pt;}
.ls24_c00365{letter-spacing:1.912160pt;}
.ls4a_c00365{letter-spacing:1.935840pt;}
.ls6d_c00365{letter-spacing:1.995040pt;}
.ls1a_c00365{letter-spacing:2.000960pt;}
.ls2f_c00365{letter-spacing:2.042400pt;}
.ls22_c00365{letter-spacing:2.066080pt;}
.ls3a_c00365{letter-spacing:2.101600pt;}
.lsb_c00365{letter-spacing:2.166720pt;}
.ls27_c00365{letter-spacing:2.308800pt;}
.ls10_c00365{letter-spacing:2.368000pt;}
.ls8a_c00365{letter-spacing:2.409440pt;}
.ls50_c00365{letter-spacing:2.521920pt;}
.ls13_c00365{letter-spacing:2.575200pt;}
.ls63_c00365{letter-spacing:2.658080pt;}
.ls53_c00365{letter-spacing:2.669920pt;}
.ls40_c00365{letter-spacing:2.681760pt;}
.ls56_c00365{letter-spacing:2.800160pt;}
.ls15_c00365{letter-spacing:2.806080pt;}
.ls67_c00365{letter-spacing:2.841600pt;}
.ls3b_c00365{letter-spacing:2.942240pt;}
.ls7d_c00365{letter-spacing:2.960000pt;}
.ws1_c00365{word-spacing:-0.048000pt;}
.ws5_c00365{word-spacing:0.000000pt;}
.ws3_c00365{word-spacing:1.126933pt;}
.ws4_c00365{word-spacing:8.375573pt;}
.ws2_c00365{word-spacing:15.406400pt;}
.ws0_c00365{word-spacing:20.823787pt;}
._18_c00365{margin-left:-8.239307pt;}
._12_c00365{margin-left:-5.287627pt;}
._9_c00365{margin-left:-3.505973pt;}
._f_c00365{margin-left:-2.556107pt;}
._1_c00365{margin-left:-1.631253pt;}
._4_c00365{width:1.777067pt;}
._0_c00365{width:3.307947pt;}
._2_c00365{width:4.972800pt;}
._10_c00365{width:6.689600pt;}
._17_c00365{width:7.619040pt;}
._e_c00365{width:8.511627pt;}
._11_c00365{width:9.458827pt;}
._3_c00365{width:11.344053pt;}
._a_c00365{width:13.024000pt;}
._b_c00365{width:14.604640pt;}
._d_c00365{width:15.723520pt;}
._c_c00365{width:16.617440pt;}
._7_c00365{width:19.417600pt;}
._6_c00365{width:21.146240pt;}
._8_c00365{width:23.005120pt;}
._5_c00365{width:24.840320pt;}
._16_c00365{width:26.628160pt;}
._14_c00365{width:29.540800pt;}
._15_c00365{width:30.772160pt;}
._13_c00365{width:35.271360pt;}
.fs4_c00365{font-size:47.360000pt;}
.fs5_c00365{font-size:51.733333pt;}
.fs0_c00365{font-size:59.200000pt;}
.fs1_c00365{font-size:60.266667pt;}
.fs2_c00365{font-size:61.333333pt;}
.fs3_c00365{font-size:67.733333pt;}
.y0_c00365{bottom:0.000000pt;}
.y1c_c00365{bottom:58.893333pt;}
.y1b_c00365{bottom:138.240000pt;}
.y1a_c00365{bottom:165.120000pt;}
.y19_c00365{bottom:248.020000pt;}
.y18_c00365{bottom:275.222400pt;}
.y17_c00365{bottom:329.938000pt;}
.y16_c00365{bottom:356.800000pt;}
.y15_c00365{bottom:412.496533pt;}
.y14_c00365{bottom:439.373333pt;}
.y13_c00365{bottom:494.092133pt;}
.y12_c00365{bottom:521.605333pt;}
.y11_c00365{bottom:549.133333pt;}
.y10_c00365{bottom:603.836133pt;}
.yf_c00365{bottom:631.060133pt;}
.ye_c00365{bottom:658.573333pt;}
.yd_c00365{bottom:713.933333pt;}
.yb_c00365{bottom:770.244400pt;}
.yc_c00365{bottom:770.253333pt;}
.ya_c00365{bottom:797.446800pt;}
.y8_c00365{bottom:824.956133pt;}
.y9_c00365{bottom:824.960000pt;}
.y7_c00365{bottom:852.173333pt;}
.y6_c00365{bottom:852.179200pt;}
.y5_c00365{bottom:879.366800pt;}
.y4_c00365{bottom:906.880000pt;}
.y3_c00365{bottom:961.613333pt;}
.y2_c00365{bottom:988.800000pt;}
.y1_c00365{bottom:1056.013333pt;}
.h7_c00365{height:31.541760pt;}
.h8_c00365{height:50.773437pt;}
.h2_c00365{height:58.101562pt;}
.h5_c00365{height:58.117029pt;}
.h3_c00365{height:59.119010pt;}
.h4_c00365{height:60.195312pt;}
.h6_c00365{height:66.443490pt;}
.h1_c00365{height:1122.666667pt;}
.h0_c00365{height:1122.880000pt;}
.w1_c00365{width:793.333333pt;}
.w0_c00365{width:793.600000pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:109.373333pt;}
.x2_c00365{left:156.920000pt;}
.x15_c00365{left:158.200000pt;}
.x7_c00365{left:174.106667pt;}
.x8_c00365{left:199.240000pt;}
.x12_c00365{left:243.013333pt;}
.x5_c00365{left:251.360000pt;}
.x3_c00365{left:262.640000pt;}
.x6_c00365{left:274.400000pt;}
.x4_c00365{left:289.160000pt;}
.x16_c00365{left:377.133333pt;}
.x9_c00365{left:383.266667pt;}
.xa_c00365{left:412.040000pt;}
.x13_c00365{left:414.400000pt;}
.xe_c00365{left:428.080000pt;}
.xf_c00365{left:450.173333pt;}
.x14_c00365{left:489.213333pt;}
.x10_c00365{left:498.800000pt;}
.x11_c00365{left:521.760000pt;}
.xc_c00365{left:556.000000pt;}
.xd_c00365{left:578.760000pt;}
.xb_c00365{left:594.146667pt;}
}





/* 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_c00366 {
    display:none;
  }
  .loading-indicator_c00366.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00366 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_c00366 { 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_c00366" -> "#page-container .classname_c00366")
 */
.pf_c00366 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00366 { /* 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_c00366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00366 { /* 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_c00366 { /* 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_c00366 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00366 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00366 {overflow:visible;}
  }
}
.c_c00366 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00366 { /* 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_c00366:after { /* webkit #35443 */
  content: '';
}
.t_c00366:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00366 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 */
}
.__c00366 { /* 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_c00366 { /* info for Javascript */
  display:none;
}
.l_c00366 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00366 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00366 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00366: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_c00366 {
    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_c00366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00366.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_c00366 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00366;src:url('chunks/assets/font_3c60399d8d51423443fbc350.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.284668;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_c00366;src:url('chunks/assets/font_c99478dabafee94d8c23affd.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.284180;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_c00366;src:url('chunks/assets/font_a35bacf32b6717fa0d8e0669.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;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:ff4_c00366;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;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:ff5_c00366;src:url('chunks/assets/font_52ac5f1d954af45bbbc6d7ae.woff2')format("woff");}.ff5_c00366{font-family:ff5_c00366;line-height:1.311035;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_c00366;src:url('chunks/assets/font_970d7f0867cb9716b1f1589a.woff2')format("woff");}.ff6_c00366{font-family:ff6_c00366;line-height:0.666000;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;}
.mf_c00366{transform:matrix(0.112981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112981,0.000000,0.000000,0.250000,0,0);}
.mc_c00366{transform:matrix(0.193277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193277,0.000000,0.000000,0.250000,0,0);}
.m18_c00366{transform:matrix(0.205017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205017,0.000000,0.000000,0.250000,0,0);}
.m4_c00366{transform:matrix(0.208686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208686,0.000000,0.000000,0.250000,0,0);}
.m1e_c00366{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3_c00366{transform:matrix(0.211546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211546,0.000000,0.000000,0.250000,0,0);}
.m10_c00366{transform:matrix(0.217957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217957,0.000000,0.000000,0.250000,0,0);}
.m16_c00366{transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);}
.m1c_c00366{transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);}
.m1f_c00366{transform:matrix(0.235546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235546,0.000000,0.000000,0.250000,0,0);}
.m1b_c00366{transform:matrix(0.237708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237708,0.000000,0.000000,0.250000,0,0);}
.m20_c00366{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.me_c00366{transform:matrix(0.244818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244818,0.000000,0.000000,0.250000,0,0);}
.m8_c00366{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.m0_c00366{transform:matrix(0.244918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244918,0.000000,0.000000,0.250000,0,0);}
.m1d_c00366{transform:matrix(0.244938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244938,0.000000,0.000000,0.250000,0,0);}
.m19_c00366{transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);}
.m7_c00366{transform:matrix(0.247087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247087,0.000000,0.000000,0.250000,0,0);}
.m6_c00366{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m17_c00366{transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);}
.m5_c00366{transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);}
.m2_c00366{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m1a_c00366{transform:matrix(0.249206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249206,0.000000,0.000000,0.250000,0,0);}
.md_c00366{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.m1_c00366{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);}
.m15_c00366{transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);}
.m12_c00366{transform:matrix(0.266346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266346,0.000000,0.000000,0.250000,0,0);}
.m9_c00366{transform:matrix(0.307029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307029,0.000000,0.000000,0.250000,0,0);}
.m14_c00366{transform:matrix(0.318550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318550,0.000000,0.000000,0.250000,0,0);}
.m13_c00366{transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);}
.ma_c00366{transform:matrix(0.368201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368201,0.000000,0.000000,0.250000,0,0);}
.m11_c00366{transform:matrix(0.415840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415840,0.000000,0.000000,0.250000,0,0);}
.mb_c00366{transform:matrix(1.476640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.476640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.476640,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls96_c00366{letter-spacing:-2.520000px;}
.ls4b_c00366{letter-spacing:-2.478000px;}
.ls50_c00366{letter-spacing:-2.394000px;}
.ls41_c00366{letter-spacing:-2.378880px;}
.ls2a_c00366{letter-spacing:-2.373000px;}
.ls7d_c00366{letter-spacing:-2.308080px;}
.ls77_c00366{letter-spacing:-2.173560px;}
.ls6b_c00366{letter-spacing:-2.060280px;}
.ls7c_c00366{letter-spacing:-1.989480px;}
.ls57_c00366{letter-spacing:-1.854960px;}
.ls74_c00366{letter-spacing:-1.833720px;}
.ls81_c00366{letter-spacing:-1.826640px;}
.ls8d_c00366{letter-spacing:-1.680000px;}
.ls78_c00366{letter-spacing:-1.600080px;}
.ls82_c00366{letter-spacing:-1.564680px;}
.ls97_c00366{letter-spacing:-1.540800px;}
.ls8e_c00366{letter-spacing:-1.479720px;}
.ls43_c00366{letter-spacing:-1.444320px;}
.ls34_c00366{letter-spacing:-1.359360px;}
.ls3d_c00366{letter-spacing:-1.345200px;}
.ls62_c00366{letter-spacing:-1.323960px;}
.ls35_c00366{letter-spacing:-1.288560px;}
.ls52_c00366{letter-spacing:-1.260240px;}
.ls5a_c00366{letter-spacing:-1.231920px;}
.ls80_c00366{letter-spacing:-1.189440px;}
.ls38_c00366{letter-spacing:-1.154040px;}
.ls39_c00366{letter-spacing:-1.097400px;}
.ls7e_c00366{letter-spacing:-1.083240px;}
.ls66_c00366{letter-spacing:-1.047840px;}
.ls40_c00366{letter-spacing:-1.040760px;}
.ls6c_c00366{letter-spacing:-1.026600px;}
.ls7b_c00366{letter-spacing:-1.012440px;}
.ls85_c00366{letter-spacing:-1.008021px;}
.ls6a_c00366{letter-spacing:-1.005360px;}
.ls70_c00366{letter-spacing:-0.955800px;}
.ls5f_c00366{letter-spacing:-0.934560px;}
.ls86_c00366{letter-spacing:-0.924021px;}
.ls67_c00366{letter-spacing:-0.892080px;}
.ls4f_c00366{letter-spacing:-0.885000px;}
.ls7a_c00366{letter-spacing:-0.863760px;}
.ls8b_c00366{letter-spacing:-0.859200px;}
.ls42_c00366{letter-spacing:-0.835440px;}
.ls5d_c00366{letter-spacing:-0.828360px;}
.ls48_c00366{letter-spacing:-0.800040px;}
.ls4d_c00366{letter-spacing:-0.778800px;}
.ls2b_c00366{letter-spacing:-0.743400px;}
.ls49_c00366{letter-spacing:-0.658440px;}
.ls3e_c00366{letter-spacing:-0.644280px;}
.ls51_c00366{letter-spacing:-0.623040px;}
.ls54_c00366{letter-spacing:-0.615960px;}
.ls6f_c00366{letter-spacing:-0.594720px;}
.ls64_c00366{letter-spacing:-0.587640px;}
.ls53_c00366{letter-spacing:-0.566400px;}
.ls72_c00366{letter-spacing:-0.552240px;}
.ls61_c00366{letter-spacing:-0.531000px;}
.ls31_c00366{letter-spacing:-0.523920px;}
.ls89_c00366{letter-spacing:-0.521400px;}
.ls3f_c00366{letter-spacing:-0.502680px;}
.ls32_c00366{letter-spacing:-0.488520px;}
.ls68_c00366{letter-spacing:-0.474360px;}
.ls94_c00366{letter-spacing:-0.467280px;}
.ls47_c00366{letter-spacing:-0.438960px;}
.ls3a_c00366{letter-spacing:-0.424800px;}
.ls65_c00366{letter-spacing:-0.403560px;}
.ls6e_c00366{letter-spacing:-0.396480px;}
.ls37_c00366{letter-spacing:-0.389400px;}
.ls76_c00366{letter-spacing:-0.382320px;}
.ls73_c00366{letter-spacing:-0.375240px;}
.ls4c_c00366{letter-spacing:-0.368160px;}
.ls60_c00366{letter-spacing:-0.346920px;}
.ls36_c00366{letter-spacing:-0.339840px;}
.ls5b_c00366{letter-spacing:-0.325680px;}
.ls90_c00366{letter-spacing:-0.318600px;}
.ls69_c00366{letter-spacing:-0.311520px;}
.ls93_c00366{letter-spacing:-0.297360px;}
.ls2f_c00366{letter-spacing:-0.290280px;}
.ls33_c00366{letter-spacing:-0.283200px;}
.ls63_c00366{letter-spacing:-0.276120px;}
.ls5c_c00366{letter-spacing:-0.247800px;}
.ls3b_c00366{letter-spacing:-0.240720px;}
.ls56_c00366{letter-spacing:-0.233640px;}
.ls5e_c00366{letter-spacing:-0.226560px;}
.ls46_c00366{letter-spacing:-0.212400px;}
.ls92_c00366{letter-spacing:-0.205320px;}
.ls2d_c00366{letter-spacing:-0.191160px;}
.ls7f_c00366{letter-spacing:-0.184080px;}
.ls58_c00366{letter-spacing:-0.169920px;}
.ls45_c00366{letter-spacing:-0.141600px;}
.ls30_c00366{letter-spacing:-0.127440px;}
.ls4e_c00366{letter-spacing:-0.113280px;}
.ls44_c00366{letter-spacing:-0.106200px;}
.ls98_c00366{letter-spacing:-0.098940px;}
.ls75_c00366{letter-spacing:-0.092040px;}
.ls55_c00366{letter-spacing:-0.084960px;}
.ls79_c00366{letter-spacing:-0.077880px;}
.ls8f_c00366{letter-spacing:-0.070800px;}
.ls6d_c00366{letter-spacing:-0.056640px;}
.ls3c_c00366{letter-spacing:-0.049560px;}
.ls95_c00366{letter-spacing:-0.042480px;}
.ls2e_c00366{letter-spacing:-0.028320px;}
.ls2c_c00366{letter-spacing:0.000000px;}
.ls2_c00366{letter-spacing:0.021240px;}
.ls7_c00366{letter-spacing:0.028320px;}
.ls16_c00366{letter-spacing:0.042480px;}
.ls1c_c00366{letter-spacing:0.084960px;}
.lsf_c00366{letter-spacing:0.092040px;}
.ls6_c00366{letter-spacing:0.113280px;}
.ls1a_c00366{letter-spacing:0.127440px;}
.ls15_c00366{letter-spacing:0.148680px;}
.ls91_c00366{letter-spacing:0.177000px;}
.ls11_c00366{letter-spacing:0.205320px;}
.ls4a_c00366{letter-spacing:0.212400px;}
.ls22_c00366{letter-spacing:0.219480px;}
.ls8_c00366{letter-spacing:0.233640px;}
.ls12_c00366{letter-spacing:0.247800px;}
.ls5_c00366{letter-spacing:0.269040px;}
.ls25_c00366{letter-spacing:0.303600px;}
.ls4_c00366{letter-spacing:0.339840px;}
.ls29_c00366{letter-spacing:0.424800px;}
.lsa_c00366{letter-spacing:0.431880px;}
.lsc_c00366{letter-spacing:0.523920px;}
.ls19_c00366{letter-spacing:0.642960px;}
.lsb_c00366{letter-spacing:0.644280px;}
.ls18_c00366{letter-spacing:0.656640px;}
.ls71_c00366{letter-spacing:0.658440px;}
.ls1b_c00366{letter-spacing:0.722160px;}
.ls59_c00366{letter-spacing:0.750480px;}
.ls1e_c00366{letter-spacing:0.807120px;}
.ls1f_c00366{letter-spacing:0.821280px;}
.ls10_c00366{letter-spacing:0.841320px;}
.ls3_c00366{letter-spacing:0.870840px;}
.ls17_c00366{letter-spacing:0.927480px;}
.ls26_c00366{letter-spacing:0.937080px;}
.ls83_c00366{letter-spacing:0.960030px;}
.ls28_c00366{letter-spacing:0.984960px;}
.ls14_c00366{letter-spacing:1.019160px;}
.ls0_c00366{letter-spacing:1.101240px;}
.lse_c00366{letter-spacing:1.190160px;}
.ls84_c00366{letter-spacing:1.230000px;}
.lsd_c00366{letter-spacing:1.373520px;}
.ls88_c00366{letter-spacing:1.410000px;}
.ls87_c00366{letter-spacing:1.440030px;}
.ls13_c00366{letter-spacing:1.522200px;}
.ls27_c00366{letter-spacing:1.593720px;}
.ls20_c00366{letter-spacing:2.065680px;}
.ls1d_c00366{letter-spacing:2.088600px;}
.ls1_c00366{letter-spacing:2.152320px;}
.ls24_c00366{letter-spacing:2.250360px;}
.ls8a_c00366{letter-spacing:2.400000px;}
.ls23_c00366{letter-spacing:2.578680px;}
.ls9_c00366{letter-spacing:2.633760px;}
.ls21_c00366{letter-spacing:3.030120px;}
.ls8c_c00366{letter-spacing:3.300000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{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__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00366{word-spacing:-0.393840px;}
.ws6_c00366{word-spacing:0.000000px;}
.ws4_c00366{word-spacing:0.607440px;}
.ws2_c00366{word-spacing:3.979200px;}
.ws3_c00366{word-spacing:22.605000px;}
.ws5_c00366{word-spacing:63.374160px;}
.ws0_c00366{word-spacing:87.666240px;}
._1a_c00366{margin-left:-10.547280px;}
._19_c00366{margin-left:-7.462800px;}
._e_c00366{margin-left:-5.635680px;}
._17_c00366{margin-left:-3.440880px;}
._f_c00366{margin-left:-1.323960px;}
._10_c00366{width:1.529280px;}
._11_c00366{width:2.761200px;}
._18_c00366{width:3.780720px;}
._d_c00366{width:4.913520px;}
._15_c00366{width:6.289800px;}
._12_c00366{width:8.127840px;}
._14_c00366{width:9.359760px;}
._1b_c00366{width:10.376760px;}
._9_c00366{width:12.021840px;}
._a_c00366{width:13.112160px;}
._13_c00366{width:14.584800px;}
._b_c00366{width:15.774240px;}
._1c_c00366{width:17.506800px;}
._24_c00366{width:18.507120px;}
._c_c00366{width:19.788600px;}
._6_c00366{width:21.473640px;}
._5_c00366{width:23.222400px;}
._7_c00366{width:24.893280px;}
._8_c00366{width:26.302200px;}
._4_c00366{width:28.029720px;}
._16_c00366{width:30.068760px;}
._1d_c00366{width:34.803060px;}
._1e_c00366{width:46.830000px;}
._20_c00366{width:61.879200px;}
._1f_c00366{width:64.144800px;}
._21_c00366{width:65.702400px;}
._23_c00366{width:67.118400px;}
._22_c00366{width:70.276080px;}
._1_c00366{width:82.028880px;}
._3_c00366{width:85.951200px;}
._2_c00366{width:87.976080px;}
._0_c00366{width:92.217000px;}
.fc0_c00366{color:transparent;}
.fs7_c00366{font-size:18.720000px;}
.fs3_c00366{font-size:19.200600px;}
.fs4_c00366{font-size:24.600000px;}
.fs6_c00366{font-size:26.400600px;}
.fs8_c00366{font-size:27.000600px;}
.fs9_c00366{font-size:28.200000px;}
.fs5_c00366{font-size:28.800600px;}
.fsb_c00366{font-size:48.000000px;}
.fsd_c00366{font-size:58.200000px;}
.fsa_c00366{font-size:66.000000px;}
.fs0_c00366{font-size:67.800000px;}
.fs1_c00366{font-size:68.400000px;}
.fs2_c00366{font-size:70.800000px;}
.fsc_c00366{font-size:72.000000px;}
.y0_c00366{bottom:0.000000px;}
.y21_c00366{bottom:65.160006px;}
.y20_c00366{bottom:123.120006px;}
.y1f_c00366{bottom:154.088706px;}
.y1e_c00366{bottom:185.400006px;}
.y1d_c00366{bottom:246.975006px;}
.y1c_c00366{bottom:277.920006px;}
.y1b_c00366{bottom:286.920006px;}
.y1a_c00366{bottom:340.215006px;}
.y19_c00366{bottom:371.535006px;}
.y18_c00366{bottom:371.540406px;}
.y17_c00366{bottom:402.480006px;}
.y16_c00366{bottom:402.485106px;}
.y15_c00366{bottom:463.320006px;}
.y14_c00366{bottom:463.328706px;}
.y13_c00366{bottom:494.640006px;}
.y12_c00366{bottom:555.474306px;}
.y11_c00366{bottom:587.175006px;}
.y10_c00366{bottom:648.720006px;}
.yf_c00366{bottom:679.695006px;}
.ye_c00366{bottom:740.880006px;}
.yd_c00366{bottom:772.208706px;}
.yc_c00366{bottom:803.520006px;}
.yb_c00366{bottom:803.522706px;}
.ya_c00366{bottom:834.480006px;}
.y9_c00366{bottom:896.775006px;}
.y8_c00366{bottom:959.775006px;}
.y7_c00366{bottom:959.782506px;}
.y6_c00366{bottom:990.739806px;}
.y5_c00366{bottom:1021.325406px;}
.y4_c00366{bottom:1052.282706px;}
.y3_c00366{bottom:1083.257706px;}
.y2_c00366{bottom:1114.215006px;}
.y1_c00366{bottom:1190.520006px;}
.h9_c00366{height:12.467520px;}
.h5_c00366{height:20.025626px;}
.h6_c00366{height:24.792187px;}
.h8_c00366{height:27.535001px;}
.ha_c00366{height:27.676758px;}
.h7_c00366{height:28.266214px;}
.hc_c00366{height:47.109375px;}
.h10_c00366{height:57.120117px;}
.hd_c00366{height:64.775391px;}
.h2_c00366{height:66.541992px;}
.hb_c00366{height:67.097461px;}
.h4_c00366{height:67.130859px;}
.hf_c00366{height:68.934375px;}
.h3_c00366{height:69.486328px;}
.he_c00366{height:72.562500px;}
.h1_c00366{height:1263.000000px;}
.h0_c00366{height:1263.240006px;}
.w1_c00366{width:892.500000px;}
.w0_c00366{width:892.799998px;}
.x0_c00366{left:0.000000px;}
.x10_c00366{left:122.378698px;}
.x4_c00366{left:123.743698px;}
.x3_c00366{left:124.841098px;}
.x1_c00366{left:125.924998px;}
.x2a_c00366{left:175.814999px;}
.x7_c00366{left:176.924998px;}
.x2_c00366{left:178.364998px;}
.x5_c00366{left:195.314999px;}
.xf_c00366{left:200.699999px;}
.x2d_c00366{left:202.844999px;}
.x1b_c00366{left:205.154999px;}
.x1c_c00366{left:213.824998px;}
.x6_c00366{left:216.329998px;}
.x1d_c00366{left:232.139999px;}
.x12_c00366{left:244.604998px;}
.xd_c00366{left:269.114999px;}
.x13_c00366{left:272.774999px;}
.x2e_c00366{left:277.364999px;}
.x1e_c00366{left:278.429999px;}
.xe_c00366{left:294.044999px;}
.x1f_c00366{left:312.854999px;}
.x11_c00366{left:315.134999px;}
.x20_c00366{left:343.709999px;}
.x14_c00366{left:355.124999px;}
.x18_c00366{left:356.924999px;}
.xb_c00366{left:358.034999px;}
.x21_c00366{left:365.429999px;}
.x2f_c00366{left:368.249999px;}
.x22_c00366{left:371.174999px;}
.xc_c00366{left:379.244999px;}
.x15_c00366{left:385.304999px;}
.x30_c00366{left:386.534998px;}
.x19_c00366{left:387.764998px;}
.x23_c00366{left:398.279999px;}
.x8_c00366{left:407.399999px;}
.x37_c00366{left:427.154998px;}
.x9_c00366{left:440.489999px;}
.x28_c00366{left:441.584999px;}
.x24_c00366{left:458.309999px;}
.x31_c00366{left:467.189999px;}
.x32_c00366{left:499.949998px;}
.x25_c00366{left:503.204998px;}
.x26_c00366{left:515.909999px;}
.x29_c00366{left:530.159999px;}
.x27_c00366{left:540.359998px;}
.x33_c00366{left:575.834998px;}
.x2b_c00366{left:582.584998px;}
.x2c_c00366{left:607.844998px;}
.xa_c00366{left:645.734998px;}
.x16_c00366{left:659.714998px;}
.x34_c00366{left:671.669999px;}
.x17_c00366{left:677.324998px;}
.x35_c00366{left:701.444999px;}
.x36_c00366{left:724.214998px;}
.x1a_c00366{left:741.434999px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls96_c00366{letter-spacing:-2.240000pt;}
.ls4b_c00366{letter-spacing:-2.202667pt;}
.ls50_c00366{letter-spacing:-2.128000pt;}
.ls41_c00366{letter-spacing:-2.114560pt;}
.ls2a_c00366{letter-spacing:-2.109333pt;}
.ls7d_c00366{letter-spacing:-2.051627pt;}
.ls77_c00366{letter-spacing:-1.932053pt;}
.ls6b_c00366{letter-spacing:-1.831360pt;}
.ls7c_c00366{letter-spacing:-1.768427pt;}
.ls57_c00366{letter-spacing:-1.648853pt;}
.ls74_c00366{letter-spacing:-1.629973pt;}
.ls81_c00366{letter-spacing:-1.623680pt;}
.ls8d_c00366{letter-spacing:-1.493333pt;}
.ls78_c00366{letter-spacing:-1.422293pt;}
.ls82_c00366{letter-spacing:-1.390827pt;}
.ls97_c00366{letter-spacing:-1.369600pt;}
.ls8e_c00366{letter-spacing:-1.315307pt;}
.ls43_c00366{letter-spacing:-1.283840pt;}
.ls34_c00366{letter-spacing:-1.208320pt;}
.ls3d_c00366{letter-spacing:-1.195733pt;}
.ls62_c00366{letter-spacing:-1.176853pt;}
.ls35_c00366{letter-spacing:-1.145387pt;}
.ls52_c00366{letter-spacing:-1.120213pt;}
.ls5a_c00366{letter-spacing:-1.095040pt;}
.ls80_c00366{letter-spacing:-1.057280pt;}
.ls38_c00366{letter-spacing:-1.025813pt;}
.ls39_c00366{letter-spacing:-0.975467pt;}
.ls7e_c00366{letter-spacing:-0.962880pt;}
.ls66_c00366{letter-spacing:-0.931413pt;}
.ls40_c00366{letter-spacing:-0.925120pt;}
.ls6c_c00366{letter-spacing:-0.912533pt;}
.ls7b_c00366{letter-spacing:-0.899947pt;}
.ls85_c00366{letter-spacing:-0.896019pt;}
.ls6a_c00366{letter-spacing:-0.893653pt;}
.ls70_c00366{letter-spacing:-0.849600pt;}
.ls5f_c00366{letter-spacing:-0.830720pt;}
.ls86_c00366{letter-spacing:-0.821352pt;}
.ls67_c00366{letter-spacing:-0.792960pt;}
.ls4f_c00366{letter-spacing:-0.786667pt;}
.ls7a_c00366{letter-spacing:-0.767787pt;}
.ls8b_c00366{letter-spacing:-0.763733pt;}
.ls42_c00366{letter-spacing:-0.742613pt;}
.ls5d_c00366{letter-spacing:-0.736320pt;}
.ls48_c00366{letter-spacing:-0.711147pt;}
.ls4d_c00366{letter-spacing:-0.692267pt;}
.ls2b_c00366{letter-spacing:-0.660800pt;}
.ls49_c00366{letter-spacing:-0.585280pt;}
.ls3e_c00366{letter-spacing:-0.572693pt;}
.ls51_c00366{letter-spacing:-0.553813pt;}
.ls54_c00366{letter-spacing:-0.547520pt;}
.ls6f_c00366{letter-spacing:-0.528640pt;}
.ls64_c00366{letter-spacing:-0.522347pt;}
.ls53_c00366{letter-spacing:-0.503467pt;}
.ls72_c00366{letter-spacing:-0.490880pt;}
.ls61_c00366{letter-spacing:-0.472000pt;}
.ls31_c00366{letter-spacing:-0.465707pt;}
.ls89_c00366{letter-spacing:-0.463467pt;}
.ls3f_c00366{letter-spacing:-0.446827pt;}
.ls32_c00366{letter-spacing:-0.434240pt;}
.ls68_c00366{letter-spacing:-0.421653pt;}
.ls94_c00366{letter-spacing:-0.415360pt;}
.ls47_c00366{letter-spacing:-0.390187pt;}
.ls3a_c00366{letter-spacing:-0.377600pt;}
.ls65_c00366{letter-spacing:-0.358720pt;}
.ls6e_c00366{letter-spacing:-0.352427pt;}
.ls37_c00366{letter-spacing:-0.346133pt;}
.ls76_c00366{letter-spacing:-0.339840pt;}
.ls73_c00366{letter-spacing:-0.333547pt;}
.ls4c_c00366{letter-spacing:-0.327253pt;}
.ls60_c00366{letter-spacing:-0.308373pt;}
.ls36_c00366{letter-spacing:-0.302080pt;}
.ls5b_c00366{letter-spacing:-0.289493pt;}
.ls90_c00366{letter-spacing:-0.283200pt;}
.ls69_c00366{letter-spacing:-0.276907pt;}
.ls93_c00366{letter-spacing:-0.264320pt;}
.ls2f_c00366{letter-spacing:-0.258027pt;}
.ls33_c00366{letter-spacing:-0.251733pt;}
.ls63_c00366{letter-spacing:-0.245440pt;}
.ls5c_c00366{letter-spacing:-0.220267pt;}
.ls3b_c00366{letter-spacing:-0.213973pt;}
.ls56_c00366{letter-spacing:-0.207680pt;}
.ls5e_c00366{letter-spacing:-0.201387pt;}
.ls46_c00366{letter-spacing:-0.188800pt;}
.ls92_c00366{letter-spacing:-0.182507pt;}
.ls2d_c00366{letter-spacing:-0.169920pt;}
.ls7f_c00366{letter-spacing:-0.163627pt;}
.ls58_c00366{letter-spacing:-0.151040pt;}
.ls45_c00366{letter-spacing:-0.125867pt;}
.ls30_c00366{letter-spacing:-0.113280pt;}
.ls4e_c00366{letter-spacing:-0.100693pt;}
.ls44_c00366{letter-spacing:-0.094400pt;}
.ls98_c00366{letter-spacing:-0.087947pt;}
.ls75_c00366{letter-spacing:-0.081813pt;}
.ls55_c00366{letter-spacing:-0.075520pt;}
.ls79_c00366{letter-spacing:-0.069227pt;}
.ls8f_c00366{letter-spacing:-0.062933pt;}
.ls6d_c00366{letter-spacing:-0.050347pt;}
.ls3c_c00366{letter-spacing:-0.044053pt;}
.ls95_c00366{letter-spacing:-0.037760pt;}
.ls2e_c00366{letter-spacing:-0.025173pt;}
.ls2c_c00366{letter-spacing:0.000000pt;}
.ls2_c00366{letter-spacing:0.018880pt;}
.ls7_c00366{letter-spacing:0.025173pt;}
.ls16_c00366{letter-spacing:0.037760pt;}
.ls1c_c00366{letter-spacing:0.075520pt;}
.lsf_c00366{letter-spacing:0.081813pt;}
.ls6_c00366{letter-spacing:0.100693pt;}
.ls1a_c00366{letter-spacing:0.113280pt;}
.ls15_c00366{letter-spacing:0.132160pt;}
.ls91_c00366{letter-spacing:0.157333pt;}
.ls11_c00366{letter-spacing:0.182507pt;}
.ls4a_c00366{letter-spacing:0.188800pt;}
.ls22_c00366{letter-spacing:0.195093pt;}
.ls8_c00366{letter-spacing:0.207680pt;}
.ls12_c00366{letter-spacing:0.220267pt;}
.ls5_c00366{letter-spacing:0.239147pt;}
.ls25_c00366{letter-spacing:0.269867pt;}
.ls4_c00366{letter-spacing:0.302080pt;}
.ls29_c00366{letter-spacing:0.377600pt;}
.lsa_c00366{letter-spacing:0.383893pt;}
.lsc_c00366{letter-spacing:0.465707pt;}
.ls19_c00366{letter-spacing:0.571520pt;}
.lsb_c00366{letter-spacing:0.572693pt;}
.ls18_c00366{letter-spacing:0.583680pt;}
.ls71_c00366{letter-spacing:0.585280pt;}
.ls1b_c00366{letter-spacing:0.641920pt;}
.ls59_c00366{letter-spacing:0.667093pt;}
.ls1e_c00366{letter-spacing:0.717440pt;}
.ls1f_c00366{letter-spacing:0.730027pt;}
.ls10_c00366{letter-spacing:0.747840pt;}
.ls3_c00366{letter-spacing:0.774080pt;}
.ls17_c00366{letter-spacing:0.824427pt;}
.ls26_c00366{letter-spacing:0.832960pt;}
.ls83_c00366{letter-spacing:0.853360pt;}
.ls28_c00366{letter-spacing:0.875520pt;}
.ls14_c00366{letter-spacing:0.905920pt;}
.ls0_c00366{letter-spacing:0.978880pt;}
.lse_c00366{letter-spacing:1.057920pt;}
.ls84_c00366{letter-spacing:1.093333pt;}
.lsd_c00366{letter-spacing:1.220907pt;}
.ls88_c00366{letter-spacing:1.253333pt;}
.ls87_c00366{letter-spacing:1.280027pt;}
.ls13_c00366{letter-spacing:1.353067pt;}
.ls27_c00366{letter-spacing:1.416640pt;}
.ls20_c00366{letter-spacing:1.836160pt;}
.ls1d_c00366{letter-spacing:1.856533pt;}
.ls1_c00366{letter-spacing:1.913173pt;}
.ls24_c00366{letter-spacing:2.000320pt;}
.ls8a_c00366{letter-spacing:2.133333pt;}
.ls23_c00366{letter-spacing:2.292160pt;}
.ls9_c00366{letter-spacing:2.341120pt;}
.ls21_c00366{letter-spacing:2.693440pt;}
.ls8c_c00366{letter-spacing:2.933333pt;}
.ws1_c00366{word-spacing:-0.350080pt;}
.ws6_c00366{word-spacing:0.000000pt;}
.ws4_c00366{word-spacing:0.539947pt;}
.ws2_c00366{word-spacing:3.537067pt;}
.ws3_c00366{word-spacing:20.093333pt;}
.ws5_c00366{word-spacing:56.332587pt;}
.ws0_c00366{word-spacing:77.925547pt;}
._1a_c00366{margin-left:-9.375360pt;}
._19_c00366{margin-left:-6.633600pt;}
._e_c00366{margin-left:-5.009493pt;}
._17_c00366{margin-left:-3.058560pt;}
._f_c00366{margin-left:-1.176853pt;}
._10_c00366{width:1.359360pt;}
._11_c00366{width:2.454400pt;}
._18_c00366{width:3.360640pt;}
._d_c00366{width:4.367573pt;}
._15_c00366{width:5.590933pt;}
._12_c00366{width:7.224747pt;}
._14_c00366{width:8.319787pt;}
._1b_c00366{width:9.223787pt;}
._9_c00366{width:10.686080pt;}
._a_c00366{width:11.655253pt;}
._13_c00366{width:12.964267pt;}
._b_c00366{width:14.021547pt;}
._1c_c00366{width:15.561600pt;}
._24_c00366{width:16.450773pt;}
._c_c00366{width:17.589867pt;}
._6_c00366{width:19.087680pt;}
._5_c00366{width:20.642133pt;}
._7_c00366{width:22.127360pt;}
._8_c00366{width:23.379733pt;}
._4_c00366{width:24.915307pt;}
._16_c00366{width:26.727787pt;}
._1d_c00366{width:30.936053pt;}
._1e_c00366{width:41.626667pt;}
._20_c00366{width:55.003733pt;}
._1f_c00366{width:57.017600pt;}
._21_c00366{width:58.402133pt;}
._23_c00366{width:59.660800pt;}
._22_c00366{width:62.467627pt;}
._1_c00366{width:72.914560pt;}
._3_c00366{width:76.401067pt;}
._2_c00366{width:78.200960pt;}
._0_c00366{width:81.970667pt;}
.fs7_c00366{font-size:16.640000pt;}
.fs3_c00366{font-size:17.067200pt;}
.fs4_c00366{font-size:21.866667pt;}
.fs6_c00366{font-size:23.467200pt;}
.fs8_c00366{font-size:24.000533pt;}
.fs9_c00366{font-size:25.066667pt;}
.fs5_c00366{font-size:25.600533pt;}
.fsb_c00366{font-size:42.666667pt;}
.fsd_c00366{font-size:51.733333pt;}
.fsa_c00366{font-size:58.666667pt;}
.fs0_c00366{font-size:60.266667pt;}
.fs1_c00366{font-size:60.800000pt;}
.fs2_c00366{font-size:62.933333pt;}
.fsc_c00366{font-size:64.000000pt;}
.y0_c00366{bottom:0.000000pt;}
.y21_c00366{bottom:57.920005pt;}
.y20_c00366{bottom:109.440005pt;}
.y1f_c00366{bottom:136.967739pt;}
.y1e_c00366{bottom:164.800005pt;}
.y1d_c00366{bottom:219.533339pt;}
.y1c_c00366{bottom:247.040005pt;}
.y1b_c00366{bottom:255.040005pt;}
.y1a_c00366{bottom:302.413339pt;}
.y19_c00366{bottom:330.253339pt;}
.y18_c00366{bottom:330.258139pt;}
.y17_c00366{bottom:357.760005pt;}
.y16_c00366{bottom:357.764539pt;}
.y15_c00366{bottom:411.840005pt;}
.y14_c00366{bottom:411.847739pt;}
.y13_c00366{bottom:439.680005pt;}
.y12_c00366{bottom:493.754939pt;}
.y11_c00366{bottom:521.933339pt;}
.y10_c00366{bottom:576.640005pt;}
.yf_c00366{bottom:604.173339pt;}
.ye_c00366{bottom:658.560005pt;}
.yd_c00366{bottom:686.407739pt;}
.yc_c00366{bottom:714.240005pt;}
.yb_c00366{bottom:714.242405pt;}
.ya_c00366{bottom:741.760005pt;}
.y9_c00366{bottom:797.133339pt;}
.y8_c00366{bottom:853.133339pt;}
.y7_c00366{bottom:853.140005pt;}
.y6_c00366{bottom:880.657605pt;}
.y5_c00366{bottom:907.844805pt;}
.y4_c00366{bottom:935.362405pt;}
.y3_c00366{bottom:962.895739pt;}
.y2_c00366{bottom:990.413339pt;}
.y1_c00366{bottom:1058.240005pt;}
.h9_c00366{height:11.082240pt;}
.h5_c00366{height:17.800556pt;}
.h6_c00366{height:22.037500pt;}
.h8_c00366{height:24.475556pt;}
.ha_c00366{height:24.601563pt;}
.h7_c00366{height:25.125523pt;}
.hc_c00366{height:41.875000pt;}
.h10_c00366{height:50.773437pt;}
.hd_c00366{height:57.578125pt;}
.h2_c00366{height:59.148438pt;}
.hb_c00366{height:59.642187pt;}
.h4_c00366{height:59.671875pt;}
.hf_c00366{height:61.275000pt;}
.h3_c00366{height:61.765625pt;}
.he_c00366{height:64.500000pt;}
.h1_c00366{height:1122.666667pt;}
.h0_c00366{height:1122.880005pt;}
.w1_c00366{width:793.333333pt;}
.w0_c00366{width:793.599999pt;}
.x0_c00366{left:0.000000pt;}
.x10_c00366{left:108.781065pt;}
.x4_c00366{left:109.994399pt;}
.x3_c00366{left:110.969865pt;}
.x1_c00366{left:111.933332pt;}
.x2a_c00366{left:156.279999pt;}
.x7_c00366{left:157.266665pt;}
.x2_c00366{left:158.546665pt;}
.x5_c00366{left:173.613332pt;}
.xf_c00366{left:178.399999pt;}
.x2d_c00366{left:180.306665pt;}
.x1b_c00366{left:182.359999pt;}
.x1c_c00366{left:190.066665pt;}
.x6_c00366{left:192.293332pt;}
.x1d_c00366{left:206.346665pt;}
.x12_c00366{left:217.426665pt;}
.xd_c00366{left:239.213332pt;}
.x13_c00366{left:242.466665pt;}
.x2e_c00366{left:246.546665pt;}
.x1e_c00366{left:247.493332pt;}
.xe_c00366{left:261.373332pt;}
.x1f_c00366{left:278.093332pt;}
.x11_c00366{left:280.119999pt;}
.x20_c00366{left:305.519999pt;}
.x14_c00366{left:315.666665pt;}
.x18_c00366{left:317.266665pt;}
.xb_c00366{left:318.253332pt;}
.x21_c00366{left:324.826665pt;}
.x2f_c00366{left:327.333332pt;}
.x22_c00366{left:329.933332pt;}
.xc_c00366{left:337.106665pt;}
.x15_c00366{left:342.493332pt;}
.x30_c00366{left:343.586665pt;}
.x19_c00366{left:344.679999pt;}
.x23_c00366{left:354.026665pt;}
.x8_c00366{left:362.133332pt;}
.x37_c00366{left:379.693332pt;}
.x9_c00366{left:391.546665pt;}
.x28_c00366{left:392.519999pt;}
.x24_c00366{left:407.386665pt;}
.x31_c00366{left:415.279999pt;}
.x32_c00366{left:444.399999pt;}
.x25_c00366{left:447.293332pt;}
.x26_c00366{left:458.586665pt;}
.x29_c00366{left:471.253332pt;}
.x27_c00366{left:480.319999pt;}
.x33_c00366{left:511.853332pt;}
.x2b_c00366{left:517.853332pt;}
.x2c_c00366{left:540.306665pt;}
.xa_c00366{left:573.986665pt;}
.x16_c00366{left:586.413332pt;}
.x34_c00366{left:597.039999pt;}
.x17_c00366{left:602.066665pt;}
.x35_c00366{left:623.506665pt;}
.x36_c00366{left:643.746665pt;}
.x1a_c00366{left:659.053332pt;}
}





/* 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_c00367 {
    display:none;
  }
  .loading-indicator_c00367.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00367 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_c00367 { 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_c00367" -> "#page-container .classname_c00367")
 */
.pf_c00367 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00367 { /* 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_c00367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00367 { /* 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_c00367 { /* 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_c00367 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00367 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00367 {overflow:visible;}
  }
}
.c_c00367 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00367 { /* 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_c00367:after { /* webkit #35443 */
  content: '';
}
.t_c00367:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00367 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 */
}
.__c00367 { /* 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_c00367 { /* info for Javascript */
  display:none;
}
.l_c00367 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00367 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00367 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00367: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_c00367 {
    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_c00367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00367.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_c00367 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00367;src:url('chunks/assets/font_69e3ba5c04d020c545bf9432.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.284668;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_c00367;src:url('chunks/assets/font_8e142b876d38c11dccfd0752.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.284180;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_c00367;src:url('chunks/assets/font_04e63c25fb133724ccf0b5af.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;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;}
.m2_c00367{transform:matrix(0.189548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189548,0.000000,0.000000,0.250000,0,0);}
.m1_c00367{transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);}
.m4_c00367{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m6_c00367{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m3_c00367{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m9_c00367{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m7_c00367{transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);}
.m5_c00367{transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);}
.m0_c00367{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);}
.m8_c00367{transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls5b_c00367{letter-spacing:-2.436000px;}
.ls5a_c00367{letter-spacing:-2.422080px;}
.ls45_c00367{letter-spacing:-2.415000px;}
.ls6b_c00367{letter-spacing:-2.373000px;}
.ls88_c00367{letter-spacing:-2.234160px;}
.ls72_c00367{letter-spacing:-2.060160px;}
.ls56_c00367{letter-spacing:-1.886160px;}
.ls60_c00367{letter-spacing:-1.872240px;}
.ls49_c00367{letter-spacing:-1.649520px;}
.ls74_c00367{letter-spacing:-1.552080px;}
.ls52_c00367{letter-spacing:-1.531200px;}
.ls83_c00367{letter-spacing:-1.503360px;}
.ls67_c00367{letter-spacing:-1.426800px;}
.ls4b_c00367{letter-spacing:-1.343280px;}
.ls84_c00367{letter-spacing:-1.294560px;}
.ls71_c00367{letter-spacing:-1.266720px;}
.ls6d_c00367{letter-spacing:-1.218000px;}
.ls81_c00367{letter-spacing:-1.211040px;}
.ls8a_c00367{letter-spacing:-1.190160px;}
.ls4a_c00367{letter-spacing:-1.169280px;}
.ls76_c00367{letter-spacing:-1.099680px;}
.ls80_c00367{letter-spacing:-1.064880px;}
.ls87_c00367{letter-spacing:-0.828240px;}
.ls61_c00367{letter-spacing:-0.807360px;}
.ls82_c00367{letter-spacing:-0.668160px;}
.ls54_c00367{letter-spacing:-0.661200px;}
.ls6a_c00367{letter-spacing:-0.654240px;}
.ls85_c00367{letter-spacing:-0.640320px;}
.ls43_c00367{letter-spacing:-0.619440px;}
.ls55_c00367{letter-spacing:-0.605520px;}
.ls7c_c00367{letter-spacing:-0.570720px;}
.ls58_c00367{letter-spacing:-0.549840px;}
.ls5c_c00367{letter-spacing:-0.515040px;}
.ls6c_c00367{letter-spacing:-0.508080px;}
.ls4c_c00367{letter-spacing:-0.480240px;}
.ls65_c00367{letter-spacing:-0.473280px;}
.ls86_c00367{letter-spacing:-0.459360px;}
.ls68_c00367{letter-spacing:-0.452400px;}
.ls50_c00367{letter-spacing:-0.445440px;}
.ls5e_c00367{letter-spacing:-0.417600px;}
.ls4f_c00367{letter-spacing:-0.396720px;}
.ls5f_c00367{letter-spacing:-0.389760px;}
.ls46_c00367{letter-spacing:-0.382800px;}
.ls78_c00367{letter-spacing:-0.368880px;}
.ls69_c00367{letter-spacing:-0.348000px;}
.ls48_c00367{letter-spacing:-0.341040px;}
.ls4e_c00367{letter-spacing:-0.334080px;}
.ls79_c00367{letter-spacing:-0.285360px;}
.ls6f_c00367{letter-spacing:-0.271440px;}
.ls41_c00367{letter-spacing:-0.264480px;}
.ls73_c00367{letter-spacing:-0.257520px;}
.ls7f_c00367{letter-spacing:-0.243600px;}
.ls66_c00367{letter-spacing:-0.229680px;}
.ls75_c00367{letter-spacing:-0.222720px;}
.ls42_c00367{letter-spacing:-0.208800px;}
.ls63_c00367{letter-spacing:-0.194880px;}
.ls51_c00367{letter-spacing:-0.180960px;}
.ls4d_c00367{letter-spacing:-0.174000px;}
.ls7b_c00367{letter-spacing:-0.167040px;}
.ls64_c00367{letter-spacing:-0.146160px;}
.ls5d_c00367{letter-spacing:-0.139200px;}
.ls57_c00367{letter-spacing:-0.132240px;}
.ls70_c00367{letter-spacing:-0.111360px;}
.ls3d_c00367{letter-spacing:-0.104400px;}
.ls47_c00367{letter-spacing:-0.090480px;}
.ls77_c00367{letter-spacing:-0.069600px;}
.ls3e_c00367{letter-spacing:-0.062640px;}
.ls40_c00367{letter-spacing:-0.055680px;}
.ls62_c00367{letter-spacing:-0.041760px;}
.ls6e_c00367{letter-spacing:-0.027840px;}
.ls59_c00367{letter-spacing:-0.020880px;}
.ls53_c00367{letter-spacing:-0.013920px;}
.ls44_c00367{letter-spacing:-0.006960px;}
.ls3f_c00367{letter-spacing:0.000000px;}
.ls10_c00367{letter-spacing:0.013920px;}
.ls1f_c00367{letter-spacing:0.020880px;}
.ls19_c00367{letter-spacing:0.055680px;}
.ls13_c00367{letter-spacing:0.062640px;}
.ls30_c00367{letter-spacing:0.069600px;}
.ls16_c00367{letter-spacing:0.076560px;}
.ls22_c00367{letter-spacing:0.090480px;}
.ls35_c00367{letter-spacing:0.097440px;}
.ls5_c00367{letter-spacing:0.104400px;}
.ls27_c00367{letter-spacing:0.125280px;}
.ls9_c00367{letter-spacing:0.132240px;}
.lsd_c00367{letter-spacing:0.146160px;}
.ls1c_c00367{letter-spacing:0.160080px;}
.ls4_c00367{letter-spacing:0.174000px;}
.ls21_c00367{letter-spacing:0.187920px;}
.ls37_c00367{letter-spacing:0.194880px;}
.ls3_c00367{letter-spacing:0.215760px;}
.ls11_c00367{letter-spacing:0.222720px;}
.ls2d_c00367{letter-spacing:0.223740px;}
.ls8_c00367{letter-spacing:0.236640px;}
.ls7a_c00367{letter-spacing:0.257520px;}
.ls2c_c00367{letter-spacing:0.278400px;}
.ls12_c00367{letter-spacing:0.285360px;}
.ls14_c00367{letter-spacing:0.292320px;}
.lsb_c00367{letter-spacing:0.306240px;}
.ls2_c00367{letter-spacing:0.313200px;}
.ls0_c00367{letter-spacing:0.320160px;}
.ls8b_c00367{letter-spacing:0.345600px;}
.ls20_c00367{letter-spacing:0.348000px;}
.ls18_c00367{letter-spacing:0.361920px;}
.ls2e_c00367{letter-spacing:0.447480px;}
.ls7_c00367{letter-spacing:0.473280px;}
.ls34_c00367{letter-spacing:0.480240px;}
.ls1e_c00367{letter-spacing:0.494160px;}
.ls15_c00367{letter-spacing:0.542880px;}
.lse_c00367{letter-spacing:0.576300px;}
.ls33_c00367{letter-spacing:0.640320px;}
.ls28_c00367{letter-spacing:0.647280px;}
.ls1d_c00367{letter-spacing:0.654240px;}
.lsc_c00367{letter-spacing:0.716880px;}
.ls36_c00367{letter-spacing:0.821280px;}
.ls2b_c00367{letter-spacing:0.828240px;}
.ls26_c00367{letter-spacing:0.840720px;}
.ls2a_c00367{letter-spacing:0.849120px;}
.ls17_c00367{letter-spacing:0.883920px;}
.ls1_c00367{letter-spacing:0.925680px;}
.ls38_c00367{letter-spacing:0.942420px;}
.ls39_c00367{letter-spacing:0.962760px;}
.ls1b_c00367{letter-spacing:0.967440px;}
.ls31_c00367{letter-spacing:1.002240px;}
.lsa_c00367{letter-spacing:1.003440px;}
.ls23_c00367{letter-spacing:1.127520px;}
.lsf_c00367{letter-spacing:1.211040px;}
.ls1a_c00367{letter-spacing:1.398960px;}
.ls3b_c00367{letter-spacing:1.444140px;}
.ls6_c00367{letter-spacing:1.447680px;}
.ls25_c00367{letter-spacing:1.552080px;}
.ls89_c00367{letter-spacing:1.572960px;}
.ls7d_c00367{letter-spacing:1.945860px;}
.ls29_c00367{letter-spacing:1.983600px;}
.ls24_c00367{letter-spacing:2.164560px;}
.ls2f_c00367{letter-spacing:2.442960px;}
.ls3a_c00367{letter-spacing:2.461140px;}
.ls3c_c00367{letter-spacing:2.583900px;}
.ls32_c00367{letter-spacing:2.839680px;}
.ls7e_c00367{letter-spacing:3.390000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{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__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00367{word-spacing:0.000000px;}
.ws1_c00367{word-spacing:13.402800px;}
.ws2_c00367{word-spacing:14.715000px;}
.ws3_c00367{word-spacing:15.427920px;}
.ws0_c00367{word-spacing:26.039640px;}
._17_c00367{margin-left:-11.950320px;}
._16_c00367{margin-left:-7.656000px;}
._4_c00367{margin-left:-5.742000px;}
._3_c00367{margin-left:-3.911520px;}
._1_c00367{margin-left:-1.914000px;}
._0_c00367{width:1.781760px;}
._5_c00367{width:2.811840px;}
._2_c00367{width:4.301280px;}
._10_c00367{width:5.790720px;}
._c_c00367{width:7.586400px;}
._e_c00367{width:8.700000px;}
._b_c00367{width:10.196400px;}
._d_c00367{width:11.414400px;}
._f_c00367{width:13.258800px;}
._11_c00367{width:15.103200px;}
._12_c00367{width:16.878000px;}
._15_c00367{width:18.158640px;}
._13_c00367{width:19.418400px;}
._14_c00367{width:21.402000px;}
._6_c00367{width:24.200640px;}
._8_c00367{width:25.731120px;}
._7_c00367{width:27.463440px;}
._9_c00367{width:29.085840px;}
._a_c00367{width:31.326960px;}
.fc0_c00367{color:transparent;}
.fs4_c00367{font-size:57.600000px;}
.fs0_c00367{font-size:59.400000px;}
.fs6_c00367{font-size:66.000000px;}
.fs2_c00367{font-size:67.800000px;}
.fs3_c00367{font-size:69.000000px;}
.fs1_c00367{font-size:69.600000px;}
.fs5_c00367{font-size:76.800000px;}
.y0_c00367{bottom:0.000000px;}
.y22_c00367{bottom:70.560000px;}
.y21_c00367{bottom:128.160000px;}
.y20_c00367{bottom:158.415000px;}
.y1e_c00367{bottom:250.568400px;}
.y1f_c00367{bottom:250.575000px;}
.y1d_c00367{bottom:312.495000px;}
.y1c_c00367{bottom:312.499200px;}
.y1b_c00367{bottom:342.375000px;}
.y1a_c00367{bottom:403.942800px;}
.y19_c00367{bottom:434.880000px;}
.y18_c00367{bottom:434.883000px;}
.y17_c00367{bottom:465.855000px;}
.y16_c00367{bottom:527.408400px;}
.y15_c00367{bottom:558.015000px;}
.y14_c00367{bottom:589.335000px;}
.y24_c00367{bottom:614.535000px;}
.y23_c00367{bottom:618.120000px;}
.y12_c00367{bottom:650.878800px;}
.y13_c00367{bottom:650.880000px;}
.y11_c00367{bottom:681.120000px;}
.y10_c00367{bottom:743.040000px;}
.yf_c00367{bottom:743.048400px;}
.yd_c00367{bottom:773.653800px;}
.ye_c00367{bottom:773.655000px;}
.yc_c00367{bottom:804.243000px;}
.yb_c00367{bottom:835.197600px;}
.y9_c00367{bottom:866.528400px;}
.ya_c00367{bottom:866.535000px;}
.y8_c00367{bottom:897.135000px;}
.y7_c00367{bottom:928.455000px;}
.y6_c00367{bottom:990.015000px;}
.y5_c00367{bottom:990.017400px;}
.y4_c00367{bottom:1023.495000px;}
.y3_c00367{bottom:1085.765400px;}
.y2_c00367{bottom:1116.720000px;}
.y1_c00367{bottom:1191.615000px;}
.h9_c00367{height:56.531250px;}
.h2_c00367{height:58.297852px;}
.h8_c00367{height:66.508887px;}
.h4_c00367{height:67.719727px;}
.h3_c00367{height:68.308594px;}
.h6_c00367{height:68.313394px;}
.h5_c00367{height:68.334994px;}
.hb_c00367{height:68.835938px;}
.h7_c00367{height:70.713281px;}
.ha_c00367{height:80.100000px;}
.h1_c00367{height:1263.000000px;}
.h0_c00367{height:1263.240000px;}
.w1_c00367{width:892.500000px;}
.w0_c00367{width:892.800000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:126.645000px;}
.x2_c00367{left:128.010000px;}
.x17_c00367{left:178.335000px;}
.x3_c00367{left:180.525000px;}
.x12_c00367{left:182.086200px;}
.xb_c00367{left:203.880000px;}
.x6_c00367{left:243.645000px;}
.x13_c00367{left:244.965000px;}
.x14_c00367{left:272.670000px;}
.xf_c00367{left:299.295000px;}
.xc_c00367{left:360.615000px;}
.xd_c00367{left:387.900000px;}
.x4_c00367{left:419.325000px;}
.x10_c00367{left:423.570000px;}
.x15_c00367{left:424.605000px;}
.x18_c00367{left:426.435000px;}
.x7_c00367{left:440.835000px;}
.xe_c00367{left:441.840000px;}
.x16_c00367{left:454.125000px;}
.x5_c00367{left:457.110000px;}
.x8_c00367{left:461.910000px;}
.x11_c00367{left:467.790000px;}
.x9_c00367{left:576.915000px;}
.xa_c00367{left:598.290000px;}
.x1a_c00367{left:855.135000px;}
.x19_c00367{left:856.185000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls5b_c00367{letter-spacing:-2.165333pt;}
.ls5a_c00367{letter-spacing:-2.152960pt;}
.ls45_c00367{letter-spacing:-2.146667pt;}
.ls6b_c00367{letter-spacing:-2.109333pt;}
.ls88_c00367{letter-spacing:-1.985920pt;}
.ls72_c00367{letter-spacing:-1.831253pt;}
.ls56_c00367{letter-spacing:-1.676587pt;}
.ls60_c00367{letter-spacing:-1.664213pt;}
.ls49_c00367{letter-spacing:-1.466240pt;}
.ls74_c00367{letter-spacing:-1.379627pt;}
.ls52_c00367{letter-spacing:-1.361067pt;}
.ls83_c00367{letter-spacing:-1.336320pt;}
.ls67_c00367{letter-spacing:-1.268267pt;}
.ls4b_c00367{letter-spacing:-1.194027pt;}
.ls84_c00367{letter-spacing:-1.150720pt;}
.ls71_c00367{letter-spacing:-1.125973pt;}
.ls6d_c00367{letter-spacing:-1.082667pt;}
.ls81_c00367{letter-spacing:-1.076480pt;}
.ls8a_c00367{letter-spacing:-1.057920pt;}
.ls4a_c00367{letter-spacing:-1.039360pt;}
.ls76_c00367{letter-spacing:-0.977493pt;}
.ls80_c00367{letter-spacing:-0.946560pt;}
.ls87_c00367{letter-spacing:-0.736213pt;}
.ls61_c00367{letter-spacing:-0.717653pt;}
.ls82_c00367{letter-spacing:-0.593920pt;}
.ls54_c00367{letter-spacing:-0.587733pt;}
.ls6a_c00367{letter-spacing:-0.581547pt;}
.ls85_c00367{letter-spacing:-0.569173pt;}
.ls43_c00367{letter-spacing:-0.550613pt;}
.ls55_c00367{letter-spacing:-0.538240pt;}
.ls7c_c00367{letter-spacing:-0.507307pt;}
.ls58_c00367{letter-spacing:-0.488747pt;}
.ls5c_c00367{letter-spacing:-0.457813pt;}
.ls6c_c00367{letter-spacing:-0.451627pt;}
.ls4c_c00367{letter-spacing:-0.426880pt;}
.ls65_c00367{letter-spacing:-0.420693pt;}
.ls86_c00367{letter-spacing:-0.408320pt;}
.ls68_c00367{letter-spacing:-0.402133pt;}
.ls50_c00367{letter-spacing:-0.395947pt;}
.ls5e_c00367{letter-spacing:-0.371200pt;}
.ls4f_c00367{letter-spacing:-0.352640pt;}
.ls5f_c00367{letter-spacing:-0.346453pt;}
.ls46_c00367{letter-spacing:-0.340267pt;}
.ls78_c00367{letter-spacing:-0.327893pt;}
.ls69_c00367{letter-spacing:-0.309333pt;}
.ls48_c00367{letter-spacing:-0.303147pt;}
.ls4e_c00367{letter-spacing:-0.296960pt;}
.ls79_c00367{letter-spacing:-0.253653pt;}
.ls6f_c00367{letter-spacing:-0.241280pt;}
.ls41_c00367{letter-spacing:-0.235093pt;}
.ls73_c00367{letter-spacing:-0.228907pt;}
.ls7f_c00367{letter-spacing:-0.216533pt;}
.ls66_c00367{letter-spacing:-0.204160pt;}
.ls75_c00367{letter-spacing:-0.197973pt;}
.ls42_c00367{letter-spacing:-0.185600pt;}
.ls63_c00367{letter-spacing:-0.173227pt;}
.ls51_c00367{letter-spacing:-0.160853pt;}
.ls4d_c00367{letter-spacing:-0.154667pt;}
.ls7b_c00367{letter-spacing:-0.148480pt;}
.ls64_c00367{letter-spacing:-0.129920pt;}
.ls5d_c00367{letter-spacing:-0.123733pt;}
.ls57_c00367{letter-spacing:-0.117547pt;}
.ls70_c00367{letter-spacing:-0.098987pt;}
.ls3d_c00367{letter-spacing:-0.092800pt;}
.ls47_c00367{letter-spacing:-0.080427pt;}
.ls77_c00367{letter-spacing:-0.061867pt;}
.ls3e_c00367{letter-spacing:-0.055680pt;}
.ls40_c00367{letter-spacing:-0.049493pt;}
.ls62_c00367{letter-spacing:-0.037120pt;}
.ls6e_c00367{letter-spacing:-0.024747pt;}
.ls59_c00367{letter-spacing:-0.018560pt;}
.ls53_c00367{letter-spacing:-0.012373pt;}
.ls44_c00367{letter-spacing:-0.006187pt;}
.ls3f_c00367{letter-spacing:0.000000pt;}
.ls10_c00367{letter-spacing:0.012373pt;}
.ls1f_c00367{letter-spacing:0.018560pt;}
.ls19_c00367{letter-spacing:0.049493pt;}
.ls13_c00367{letter-spacing:0.055680pt;}
.ls30_c00367{letter-spacing:0.061867pt;}
.ls16_c00367{letter-spacing:0.068053pt;}
.ls22_c00367{letter-spacing:0.080427pt;}
.ls35_c00367{letter-spacing:0.086613pt;}
.ls5_c00367{letter-spacing:0.092800pt;}
.ls27_c00367{letter-spacing:0.111360pt;}
.ls9_c00367{letter-spacing:0.117547pt;}
.lsd_c00367{letter-spacing:0.129920pt;}
.ls1c_c00367{letter-spacing:0.142293pt;}
.ls4_c00367{letter-spacing:0.154667pt;}
.ls21_c00367{letter-spacing:0.167040pt;}
.ls37_c00367{letter-spacing:0.173227pt;}
.ls3_c00367{letter-spacing:0.191787pt;}
.ls11_c00367{letter-spacing:0.197973pt;}
.ls2d_c00367{letter-spacing:0.198880pt;}
.ls8_c00367{letter-spacing:0.210347pt;}
.ls7a_c00367{letter-spacing:0.228907pt;}
.ls2c_c00367{letter-spacing:0.247467pt;}
.ls12_c00367{letter-spacing:0.253653pt;}
.ls14_c00367{letter-spacing:0.259840pt;}
.lsb_c00367{letter-spacing:0.272213pt;}
.ls2_c00367{letter-spacing:0.278400pt;}
.ls0_c00367{letter-spacing:0.284587pt;}
.ls8b_c00367{letter-spacing:0.307200pt;}
.ls20_c00367{letter-spacing:0.309333pt;}
.ls18_c00367{letter-spacing:0.321707pt;}
.ls2e_c00367{letter-spacing:0.397760pt;}
.ls7_c00367{letter-spacing:0.420693pt;}
.ls34_c00367{letter-spacing:0.426880pt;}
.ls1e_c00367{letter-spacing:0.439253pt;}
.ls15_c00367{letter-spacing:0.482560pt;}
.lse_c00367{letter-spacing:0.512267pt;}
.ls33_c00367{letter-spacing:0.569173pt;}
.ls28_c00367{letter-spacing:0.575360pt;}
.ls1d_c00367{letter-spacing:0.581547pt;}
.lsc_c00367{letter-spacing:0.637227pt;}
.ls36_c00367{letter-spacing:0.730027pt;}
.ls2b_c00367{letter-spacing:0.736213pt;}
.ls26_c00367{letter-spacing:0.747307pt;}
.ls2a_c00367{letter-spacing:0.754773pt;}
.ls17_c00367{letter-spacing:0.785707pt;}
.ls1_c00367{letter-spacing:0.822827pt;}
.ls38_c00367{letter-spacing:0.837707pt;}
.ls39_c00367{letter-spacing:0.855787pt;}
.ls1b_c00367{letter-spacing:0.859947pt;}
.ls31_c00367{letter-spacing:0.890880pt;}
.lsa_c00367{letter-spacing:0.891947pt;}
.ls23_c00367{letter-spacing:1.002240pt;}
.lsf_c00367{letter-spacing:1.076480pt;}
.ls1a_c00367{letter-spacing:1.243520pt;}
.ls3b_c00367{letter-spacing:1.283680pt;}
.ls6_c00367{letter-spacing:1.286827pt;}
.ls25_c00367{letter-spacing:1.379627pt;}
.ls89_c00367{letter-spacing:1.398187pt;}
.ls7d_c00367{letter-spacing:1.729653pt;}
.ls29_c00367{letter-spacing:1.763200pt;}
.ls24_c00367{letter-spacing:1.924053pt;}
.ls2f_c00367{letter-spacing:2.171520pt;}
.ls3a_c00367{letter-spacing:2.187680pt;}
.ls3c_c00367{letter-spacing:2.296800pt;}
.ls32_c00367{letter-spacing:2.524160pt;}
.ls7e_c00367{letter-spacing:3.013333pt;}
.ws4_c00367{word-spacing:0.000000pt;}
.ws1_c00367{word-spacing:11.913600pt;}
.ws2_c00367{word-spacing:13.080000pt;}
.ws3_c00367{word-spacing:13.713707pt;}
.ws0_c00367{word-spacing:23.146347pt;}
._17_c00367{margin-left:-10.622507pt;}
._16_c00367{margin-left:-6.805333pt;}
._4_c00367{margin-left:-5.104000pt;}
._3_c00367{margin-left:-3.476907pt;}
._1_c00367{margin-left:-1.701333pt;}
._0_c00367{width:1.583787pt;}
._5_c00367{width:2.499413pt;}
._2_c00367{width:3.823360pt;}
._10_c00367{width:5.147307pt;}
._c_c00367{width:6.743467pt;}
._e_c00367{width:7.733333pt;}
._b_c00367{width:9.063467pt;}
._d_c00367{width:10.146133pt;}
._f_c00367{width:11.785600pt;}
._11_c00367{width:13.425067pt;}
._12_c00367{width:15.002667pt;}
._15_c00367{width:16.141013pt;}
._13_c00367{width:17.260800pt;}
._14_c00367{width:19.024000pt;}
._6_c00367{width:21.511680pt;}
._8_c00367{width:22.872107pt;}
._7_c00367{width:24.411947pt;}
._9_c00367{width:25.854080pt;}
._a_c00367{width:27.846187pt;}
.fs4_c00367{font-size:51.200000pt;}
.fs0_c00367{font-size:52.800000pt;}
.fs6_c00367{font-size:58.666667pt;}
.fs2_c00367{font-size:60.266667pt;}
.fs3_c00367{font-size:61.333333pt;}
.fs1_c00367{font-size:61.866667pt;}
.fs5_c00367{font-size:68.266667pt;}
.y0_c00367{bottom:0.000000pt;}
.y22_c00367{bottom:62.720000pt;}
.y21_c00367{bottom:113.920000pt;}
.y20_c00367{bottom:140.813333pt;}
.y1e_c00367{bottom:222.727467pt;}
.y1f_c00367{bottom:222.733333pt;}
.y1d_c00367{bottom:277.773333pt;}
.y1c_c00367{bottom:277.777067pt;}
.y1b_c00367{bottom:304.333333pt;}
.y1a_c00367{bottom:359.060267pt;}
.y19_c00367{bottom:386.560000pt;}
.y18_c00367{bottom:386.562667pt;}
.y17_c00367{bottom:414.093333pt;}
.y16_c00367{bottom:468.807467pt;}
.y15_c00367{bottom:496.013333pt;}
.y14_c00367{bottom:523.853333pt;}
.y24_c00367{bottom:546.253333pt;}
.y23_c00367{bottom:549.440000pt;}
.y12_c00367{bottom:578.558933pt;}
.y13_c00367{bottom:578.560000pt;}
.y11_c00367{bottom:605.440000pt;}
.y10_c00367{bottom:660.480000pt;}
.yf_c00367{bottom:660.487467pt;}
.yd_c00367{bottom:687.692267pt;}
.ye_c00367{bottom:687.693333pt;}
.yc_c00367{bottom:714.882667pt;}
.yb_c00367{bottom:742.397867pt;}
.y9_c00367{bottom:770.247467pt;}
.ya_c00367{bottom:770.253333pt;}
.y8_c00367{bottom:797.453333pt;}
.y7_c00367{bottom:825.293333pt;}
.y6_c00367{bottom:880.013333pt;}
.y5_c00367{bottom:880.015467pt;}
.y4_c00367{bottom:909.773333pt;}
.y3_c00367{bottom:965.124800pt;}
.y2_c00367{bottom:992.640000pt;}
.y1_c00367{bottom:1059.213333pt;}
.h9_c00367{height:50.250000pt;}
.h2_c00367{height:51.820312pt;}
.h8_c00367{height:59.119010pt;}
.h4_c00367{height:60.195312pt;}
.h3_c00367{height:60.718750pt;}
.h6_c00367{height:60.723017pt;}
.h5_c00367{height:60.742217pt;}
.hb_c00367{height:61.187500pt;}
.h7_c00367{height:62.856250pt;}
.ha_c00367{height:71.200000pt;}
.h1_c00367{height:1122.666667pt;}
.h0_c00367{height:1122.880000pt;}
.w1_c00367{width:793.333333pt;}
.w0_c00367{width:793.600000pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:112.573333pt;}
.x2_c00367{left:113.786667pt;}
.x17_c00367{left:158.520000pt;}
.x3_c00367{left:160.466667pt;}
.x12_c00367{left:161.854400pt;}
.xb_c00367{left:181.226667pt;}
.x6_c00367{left:216.573333pt;}
.x13_c00367{left:217.746667pt;}
.x14_c00367{left:242.373333pt;}
.xf_c00367{left:266.040000pt;}
.xc_c00367{left:320.546667pt;}
.xd_c00367{left:344.800000pt;}
.x4_c00367{left:372.733333pt;}
.x10_c00367{left:376.506667pt;}
.x15_c00367{left:377.426667pt;}
.x18_c00367{left:379.053333pt;}
.x7_c00367{left:391.853333pt;}
.xe_c00367{left:392.746667pt;}
.x16_c00367{left:403.666667pt;}
.x5_c00367{left:406.320000pt;}
.x8_c00367{left:410.586667pt;}
.x11_c00367{left:415.813333pt;}
.x9_c00367{left:512.813333pt;}
.xa_c00367{left:531.813333pt;}
.x1a_c00367{left:760.120000pt;}
.x19_c00367{left:761.053333pt;}
}





/* 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_c00368 {
    display:none;
  }
  .loading-indicator_c00368.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00368 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_c00368 { 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_c00368" -> "#page-container .classname_c00368")
 */
.pf_c00368 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00368 { /* 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_c00368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00368 { /* 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_c00368 { /* 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_c00368 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00368 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00368 {overflow:visible;}
  }
}
.c_c00368 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00368 { /* 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_c00368:after { /* webkit #35443 */
  content: '';
}
.t_c00368:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00368 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 */
}
.__c00368 { /* 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_c00368 { /* info for Javascript */
  display:none;
}
.l_c00368 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00368 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00368 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00368: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_c00368 {
    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_c00368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00368.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_c00368 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00368;src:url('chunks/assets/font_5f0dc19e2cc2286395b5eb32.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.284668;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_c00368;src:url('chunks/assets/font_d2fa8a077bf6121ffe27f046.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.284180;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;}
.m5_c00368{transform:matrix(0.221492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221492,0.000000,0.000000,0.250000,0,0);}
.m4_c00368{transform:matrix(0.227561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227561,0.000000,0.000000,0.250000,0,0);}
.m2_c00368{transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);}
.m6_c00368{transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);}
.m3_c00368{transform:matrix(0.245635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245635,0.000000,0.000000,0.250000,0,0);}
.m1_c00368{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m0_c00368{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);}
.v0_c00368{vertical-align:0.000000px;}
.ls66_c00368{letter-spacing:-2.478000px;}
.ls4b_c00368{letter-spacing:-2.457000px;}
.ls7a_c00368{letter-spacing:-2.358720px;}
.ls76_c00368{letter-spacing:-2.309580px;}
.ls6b_c00368{letter-spacing:-2.204280px;}
.ls50_c00368{letter-spacing:-1.972620px;}
.ls5c_c00368{letter-spacing:-1.670760px;}
.ls78_c00368{letter-spacing:-1.635660px;}
.ls48_c00368{letter-spacing:-1.516320px;}
.ls73_c00368{letter-spacing:-1.509300px;}
.ls7c_c00368{letter-spacing:-1.277640px;}
.ls69_c00368{letter-spacing:-1.207440px;}
.ls5f_c00368{letter-spacing:-1.038960px;}
.ls82_c00368{letter-spacing:-0.968760px;}
.ls75_c00368{letter-spacing:-0.933660px;}
.ls5d_c00368{letter-spacing:-0.926640px;}
.ls84_c00368{letter-spacing:-0.856440px;}
.ls4e_c00368{letter-spacing:-0.793260px;}
.ls5e_c00368{letter-spacing:-0.765180px;}
.ls56_c00368{letter-spacing:-0.694980px;}
.ls57_c00368{letter-spacing:-0.652860px;}
.ls53_c00368{letter-spacing:-0.610740px;}
.ls4f_c00368{letter-spacing:-0.526500px;}
.ls47_c00368{letter-spacing:-0.512460px;}
.ls5a_c00368{letter-spacing:-0.470340px;}
.ls71_c00368{letter-spacing:-0.428220px;}
.ls70_c00368{letter-spacing:-0.400140px;}
.ls6c_c00368{letter-spacing:-0.393120px;}
.ls83_c00368{letter-spacing:-0.386100px;}
.ls55_c00368{letter-spacing:-0.351000px;}
.ls77_c00368{letter-spacing:-0.336960px;}
.ls4c_c00368{letter-spacing:-0.322920px;}
.ls51_c00368{letter-spacing:-0.301860px;}
.ls63_c00368{letter-spacing:-0.266760px;}
.ls4a_c00368{letter-spacing:-0.245700px;}
.ls7e_c00368{letter-spacing:-0.238680px;}
.ls52_c00368{letter-spacing:-0.231660px;}
.ls72_c00368{letter-spacing:-0.210600px;}
.ls6a_c00368{letter-spacing:-0.196560px;}
.ls74_c00368{letter-spacing:-0.182520px;}
.ls6d_c00368{letter-spacing:-0.168480px;}
.ls62_c00368{letter-spacing:-0.154440px;}
.ls65_c00368{letter-spacing:-0.133380px;}
.ls6f_c00368{letter-spacing:-0.126360px;}
.ls6e_c00368{letter-spacing:-0.119340px;}
.ls80_c00368{letter-spacing:-0.105300px;}
.ls79_c00368{letter-spacing:-0.091260px;}
.ls61_c00368{letter-spacing:-0.077220px;}
.ls68_c00368{letter-spacing:-0.070200px;}
.ls4d_c00368{letter-spacing:-0.063180px;}
.ls60_c00368{letter-spacing:-0.056160px;}
.ls49_c00368{letter-spacing:-0.042120px;}
.ls7b_c00368{letter-spacing:-0.035100px;}
.ls67_c00368{letter-spacing:-0.028080px;}
.ls81_c00368{letter-spacing:-0.021060px;}
.ls5b_c00368{letter-spacing:-0.014040px;}
.ls7d_c00368{letter-spacing:-0.007020px;}
.ls58_c00368{letter-spacing:0.000000px;}
.ls2e_c00368{letter-spacing:0.021060px;}
.ls9_c00368{letter-spacing:0.028080px;}
.ls5_c00368{letter-spacing:0.035100px;}
.lsa_c00368{letter-spacing:0.049140px;}
.ls8_c00368{letter-spacing:0.056160px;}
.ls4_c00368{letter-spacing:0.070200px;}
.ls42_c00368{letter-spacing:0.084240px;}
.ls23_c00368{letter-spacing:0.105300px;}
.ls2a_c00368{letter-spacing:0.119340px;}
.ls22_c00368{letter-spacing:0.126360px;}
.ls3e_c00368{letter-spacing:0.133380px;}
.ls25_c00368{letter-spacing:0.140400px;}
.ls3c_c00368{letter-spacing:0.161460px;}
.ls10_c00368{letter-spacing:0.168480px;}
.ls13_c00368{letter-spacing:0.196560px;}
.ls1b_c00368{letter-spacing:0.203580px;}
.ls1a_c00368{letter-spacing:0.224640px;}
.ls20_c00368{letter-spacing:0.245700px;}
.ls6_c00368{letter-spacing:0.252720px;}
.ls54_c00368{letter-spacing:0.259740px;}
.lsb_c00368{letter-spacing:0.266760px;}
.ls7_c00368{letter-spacing:0.280800px;}
.ls16_c00368{letter-spacing:0.287820px;}
.ls2b_c00368{letter-spacing:0.301860px;}
.ls28_c00368{letter-spacing:0.308880px;}
.ls15_c00368{letter-spacing:0.315900px;}
.ls2f_c00368{letter-spacing:0.322920px;}
.ls41_c00368{letter-spacing:0.358020px;}
.lse_c00368{letter-spacing:0.379080px;}
.ls38_c00368{letter-spacing:0.386100px;}
.ls3a_c00368{letter-spacing:0.393120px;}
.ls17_c00368{letter-spacing:0.400140px;}
.ls29_c00368{letter-spacing:0.414180px;}
.ls21_c00368{letter-spacing:0.442260px;}
.ls24_c00368{letter-spacing:0.456300px;}
.ls1d_c00368{letter-spacing:0.498420px;}
.ls43_c00368{letter-spacing:0.526500px;}
.lsc_c00368{letter-spacing:0.533520px;}
.ls11_c00368{letter-spacing:0.568620px;}
.ls1f_c00368{letter-spacing:0.582660px;}
.ls36_c00368{letter-spacing:0.596700px;}
.ls2d_c00368{letter-spacing:0.603720px;}
.ls19_c00368{letter-spacing:0.610740px;}
.ls85_c00368{letter-spacing:0.622740px;}
.ls32_c00368{letter-spacing:0.624780px;}
.ls64_c00368{letter-spacing:0.659880px;}
.lsd_c00368{letter-spacing:0.666900px;}
.ls30_c00368{letter-spacing:0.673920px;}
.ls26_c00368{letter-spacing:0.730080px;}
.ls12_c00368{letter-spacing:0.737100px;}
.ls27_c00368{letter-spacing:0.793260px;}
.ls3b_c00368{letter-spacing:0.800280px;}
.ls3f_c00368{letter-spacing:0.821340px;}
.ls1e_c00368{letter-spacing:0.841320px;}
.ls37_c00368{letter-spacing:0.870480px;}
.ls2_c00368{letter-spacing:0.937080px;}
.ls14_c00368{letter-spacing:0.947700px;}
.ls35_c00368{letter-spacing:1.019160px;}
.ls1_c00368{letter-spacing:1.060200px;}
.ls39_c00368{letter-spacing:1.088100px;}
.ls3_c00368{letter-spacing:1.101240px;}
.ls40_c00368{letter-spacing:1.102140px;}
.ls7f_c00368{letter-spacing:1.116180px;}
.ls0_c00368{letter-spacing:1.121760px;}
.ls31_c00368{letter-spacing:1.263600px;}
.ls18_c00368{letter-spacing:1.313280px;}
.ls1c_c00368{letter-spacing:1.425060px;}
.ls45_c00368{letter-spacing:1.580040px;}
.ls34_c00368{letter-spacing:1.670760px;}
.ls59_c00368{letter-spacing:1.769040px;}
.lsf_c00368{letter-spacing:1.818180px;}
.ls44_c00368{letter-spacing:1.963080px;}
.ls46_c00368{letter-spacing:2.036160px;}
.ls2c_c00368{letter-spacing:2.183220px;}
.ls33_c00368{letter-spacing:2.485080px;}
.ls3d_c00368{letter-spacing:3.257280px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{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__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00368{word-spacing:0.000000px;}
.ws1_c00368{word-spacing:6.522480px;}
.ws2_c00368{word-spacing:8.359200px;}
.ws3_c00368{word-spacing:13.965000px;}
.ws0_c00368{word-spacing:17.106240px;}
.ws4_c00368{word-spacing:35.078520px;}
._16_c00368{margin-left:-8.578440px;}
._18_c00368{margin-left:-4.046220px;}
._11_c00368{margin-left:-2.457000px;}
._0_c00368{margin-left:-1.326360px;}
._3_c00368{width:1.764720px;}
._14_c00368{width:2.872800px;}
._2_c00368{width:4.254120px;}
._4_c00368{width:5.416740px;}
._e_c00368{width:7.174440px;}
._f_c00368{width:8.195940px;}
._1_c00368{width:9.441900px;}
._12_c00368{width:11.252880px;}
._10_c00368{width:12.635640px;}
._13_c00368{width:13.714200px;}
._15_c00368{width:14.941920px;}
._7_c00368{width:16.335060px;}
._6_c00368{width:18.567900px;}
._5_c00368{width:20.239140px;}
._17_c00368{width:23.287920px;}
._19_c00368{width:27.395940px;}
._d_c00368{width:31.618080px;}
._b_c00368{width:32.839560px;}
._c_c00368{width:34.027200px;}
._9_c00368{width:35.400600px;}
._8_c00368{width:36.481200px;}
._a_c00368{width:37.865880px;}
.fc0_c00368{color:transparent;}
.fs4_c00368{font-size:58.200000px;}
.fs0_c00368{font-size:60.600000px;}
.fs1_c00368{font-size:68.400000px;}
.fs2_c00368{font-size:70.200000px;}
.fs3_c00368{font-size:70.800000px;}
.y0_c00368{bottom:0.000000px;}
.y1c_c00368{bottom:64.095006px;}
.y1a_c00368{bottom:212.408706px;}
.y1b_c00368{bottom:212.415006px;}
.y19_c00368{bottom:244.455006px;}
.y18_c00368{bottom:303.833406px;}
.y17_c00368{bottom:336.248256px;}
.y16_c00368{bottom:367.576806px;}
.y15_c00368{bottom:398.535006px;}
.y14_c00368{bottom:460.096806px;}
.y13_c00368{bottom:491.055006px;}
.y12_c00368{bottom:551.868906px;}
.y11_c00368{bottom:583.546656px;}
.y10_c00368{bottom:644.761056px;}
.yf_c00368{bottom:676.087806px;}
.ye_c00368{bottom:706.695006px;}
.yd_c00368{bottom:706.699356px;}
.yc_c00368{bottom:737.640006px;}
.yb_c00368{bottom:799.575006px;}
.ya_c00368{bottom:799.578606px;}
.y9_c00368{bottom:833.415006px;}
.y8_c00368{bottom:897.132156px;}
.y7_c00368{bottom:928.090356px;}
.y6_c00368{bottom:958.672806px;}
.y5_c00368{bottom:989.279256px;}
.y4_c00368{bottom:1020.255006px;}
.y3_c00368{bottom:1082.160006px;}
.y2_c00368{bottom:1113.135006px;}
.y1_c00368{bottom:1189.095006px;}
.h9_c00368{height:57.120117px;}
.h2_c00368{height:59.475586px;}
.h4_c00368{height:67.097461px;}
.h3_c00368{height:68.897461px;}
.h5_c00368{height:68.900461px;}
.h6_c00368{height:68.926261px;}
.h8_c00368{height:68.941861px;}
.h7_c00368{height:69.486328px;}
.h1_c00368{height:1263.000000px;}
.h0_c00368{height:1263.240006px;}
.w1_c00368{width:892.500000px;}
.w0_c00368{width:892.799998px;}
.x0_c00368{left:0.000000px;}
.x7_c00368{left:120.082499px;}
.x1_c00368{left:121.964999px;}
.x8_c00368{left:172.964999px;}
.x2_c00368{left:174.734998px;}
.xb_c00368{left:237.149999px;}
.xf_c00368{left:241.364998px;}
.x10_c00368{left:269.564999px;}
.xe_c00368{left:290.294999px;}
.x5_c00368{left:339.989999px;}
.x6_c00368{left:355.514998px;}
.x11_c00368{left:424.634999px;}
.x9_c00368{left:451.709999px;}
.xc_c00368{left:480.059999px;}
.xa_c00368{left:486.209999px;}
.x3_c00368{left:498.404998px;}
.xd_c00368{left:503.969998px;}
.x4_c00368{left:527.519998px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls66_c00368{letter-spacing:-2.202667pt;}
.ls4b_c00368{letter-spacing:-2.184000pt;}
.ls7a_c00368{letter-spacing:-2.096640pt;}
.ls76_c00368{letter-spacing:-2.052960pt;}
.ls6b_c00368{letter-spacing:-1.959360pt;}
.ls50_c00368{letter-spacing:-1.753440pt;}
.ls5c_c00368{letter-spacing:-1.485120pt;}
.ls78_c00368{letter-spacing:-1.453920pt;}
.ls48_c00368{letter-spacing:-1.347840pt;}
.ls73_c00368{letter-spacing:-1.341600pt;}
.ls7c_c00368{letter-spacing:-1.135680pt;}
.ls69_c00368{letter-spacing:-1.073280pt;}
.ls5f_c00368{letter-spacing:-0.923520pt;}
.ls82_c00368{letter-spacing:-0.861120pt;}
.ls75_c00368{letter-spacing:-0.829920pt;}
.ls5d_c00368{letter-spacing:-0.823680pt;}
.ls84_c00368{letter-spacing:-0.761280pt;}
.ls4e_c00368{letter-spacing:-0.705120pt;}
.ls5e_c00368{letter-spacing:-0.680160pt;}
.ls56_c00368{letter-spacing:-0.617760pt;}
.ls57_c00368{letter-spacing:-0.580320pt;}
.ls53_c00368{letter-spacing:-0.542880pt;}
.ls4f_c00368{letter-spacing:-0.468000pt;}
.ls47_c00368{letter-spacing:-0.455520pt;}
.ls5a_c00368{letter-spacing:-0.418080pt;}
.ls71_c00368{letter-spacing:-0.380640pt;}
.ls70_c00368{letter-spacing:-0.355680pt;}
.ls6c_c00368{letter-spacing:-0.349440pt;}
.ls83_c00368{letter-spacing:-0.343200pt;}
.ls55_c00368{letter-spacing:-0.312000pt;}
.ls77_c00368{letter-spacing:-0.299520pt;}
.ls4c_c00368{letter-spacing:-0.287040pt;}
.ls51_c00368{letter-spacing:-0.268320pt;}
.ls63_c00368{letter-spacing:-0.237120pt;}
.ls4a_c00368{letter-spacing:-0.218400pt;}
.ls7e_c00368{letter-spacing:-0.212160pt;}
.ls52_c00368{letter-spacing:-0.205920pt;}
.ls72_c00368{letter-spacing:-0.187200pt;}
.ls6a_c00368{letter-spacing:-0.174720pt;}
.ls74_c00368{letter-spacing:-0.162240pt;}
.ls6d_c00368{letter-spacing:-0.149760pt;}
.ls62_c00368{letter-spacing:-0.137280pt;}
.ls65_c00368{letter-spacing:-0.118560pt;}
.ls6f_c00368{letter-spacing:-0.112320pt;}
.ls6e_c00368{letter-spacing:-0.106080pt;}
.ls80_c00368{letter-spacing:-0.093600pt;}
.ls79_c00368{letter-spacing:-0.081120pt;}
.ls61_c00368{letter-spacing:-0.068640pt;}
.ls68_c00368{letter-spacing:-0.062400pt;}
.ls4d_c00368{letter-spacing:-0.056160pt;}
.ls60_c00368{letter-spacing:-0.049920pt;}
.ls49_c00368{letter-spacing:-0.037440pt;}
.ls7b_c00368{letter-spacing:-0.031200pt;}
.ls67_c00368{letter-spacing:-0.024960pt;}
.ls81_c00368{letter-spacing:-0.018720pt;}
.ls5b_c00368{letter-spacing:-0.012480pt;}
.ls7d_c00368{letter-spacing:-0.006240pt;}
.ls58_c00368{letter-spacing:0.000000pt;}
.ls2e_c00368{letter-spacing:0.018720pt;}
.ls9_c00368{letter-spacing:0.024960pt;}
.ls5_c00368{letter-spacing:0.031200pt;}
.lsa_c00368{letter-spacing:0.043680pt;}
.ls8_c00368{letter-spacing:0.049920pt;}
.ls4_c00368{letter-spacing:0.062400pt;}
.ls42_c00368{letter-spacing:0.074880pt;}
.ls23_c00368{letter-spacing:0.093600pt;}
.ls2a_c00368{letter-spacing:0.106080pt;}
.ls22_c00368{letter-spacing:0.112320pt;}
.ls3e_c00368{letter-spacing:0.118560pt;}
.ls25_c00368{letter-spacing:0.124800pt;}
.ls3c_c00368{letter-spacing:0.143520pt;}
.ls10_c00368{letter-spacing:0.149760pt;}
.ls13_c00368{letter-spacing:0.174720pt;}
.ls1b_c00368{letter-spacing:0.180960pt;}
.ls1a_c00368{letter-spacing:0.199680pt;}
.ls20_c00368{letter-spacing:0.218400pt;}
.ls6_c00368{letter-spacing:0.224640pt;}
.ls54_c00368{letter-spacing:0.230880pt;}
.lsb_c00368{letter-spacing:0.237120pt;}
.ls7_c00368{letter-spacing:0.249600pt;}
.ls16_c00368{letter-spacing:0.255840pt;}
.ls2b_c00368{letter-spacing:0.268320pt;}
.ls28_c00368{letter-spacing:0.274560pt;}
.ls15_c00368{letter-spacing:0.280800pt;}
.ls2f_c00368{letter-spacing:0.287040pt;}
.ls41_c00368{letter-spacing:0.318240pt;}
.lse_c00368{letter-spacing:0.336960pt;}
.ls38_c00368{letter-spacing:0.343200pt;}
.ls3a_c00368{letter-spacing:0.349440pt;}
.ls17_c00368{letter-spacing:0.355680pt;}
.ls29_c00368{letter-spacing:0.368160pt;}
.ls21_c00368{letter-spacing:0.393120pt;}
.ls24_c00368{letter-spacing:0.405600pt;}
.ls1d_c00368{letter-spacing:0.443040pt;}
.ls43_c00368{letter-spacing:0.468000pt;}
.lsc_c00368{letter-spacing:0.474240pt;}
.ls11_c00368{letter-spacing:0.505440pt;}
.ls1f_c00368{letter-spacing:0.517920pt;}
.ls36_c00368{letter-spacing:0.530400pt;}
.ls2d_c00368{letter-spacing:0.536640pt;}
.ls19_c00368{letter-spacing:0.542880pt;}
.ls85_c00368{letter-spacing:0.553547pt;}
.ls32_c00368{letter-spacing:0.555360pt;}
.ls64_c00368{letter-spacing:0.586560pt;}
.lsd_c00368{letter-spacing:0.592800pt;}
.ls30_c00368{letter-spacing:0.599040pt;}
.ls26_c00368{letter-spacing:0.648960pt;}
.ls12_c00368{letter-spacing:0.655200pt;}
.ls27_c00368{letter-spacing:0.705120pt;}
.ls3b_c00368{letter-spacing:0.711360pt;}
.ls3f_c00368{letter-spacing:0.730080pt;}
.ls1e_c00368{letter-spacing:0.747840pt;}
.ls37_c00368{letter-spacing:0.773760pt;}
.ls2_c00368{letter-spacing:0.832960pt;}
.ls14_c00368{letter-spacing:0.842400pt;}
.ls35_c00368{letter-spacing:0.905920pt;}
.ls1_c00368{letter-spacing:0.942400pt;}
.ls39_c00368{letter-spacing:0.967200pt;}
.ls3_c00368{letter-spacing:0.978880pt;}
.ls40_c00368{letter-spacing:0.979680pt;}
.ls7f_c00368{letter-spacing:0.992160pt;}
.ls0_c00368{letter-spacing:0.997120pt;}
.ls31_c00368{letter-spacing:1.123200pt;}
.ls18_c00368{letter-spacing:1.167360pt;}
.ls1c_c00368{letter-spacing:1.266720pt;}
.ls45_c00368{letter-spacing:1.404480pt;}
.ls34_c00368{letter-spacing:1.485120pt;}
.ls59_c00368{letter-spacing:1.572480pt;}
.lsf_c00368{letter-spacing:1.616160pt;}
.ls44_c00368{letter-spacing:1.744960pt;}
.ls46_c00368{letter-spacing:1.809920pt;}
.ls2c_c00368{letter-spacing:1.940640pt;}
.ls33_c00368{letter-spacing:2.208960pt;}
.ls3d_c00368{letter-spacing:2.895360pt;}
.ws5_c00368{word-spacing:0.000000pt;}
.ws1_c00368{word-spacing:5.797760pt;}
.ws2_c00368{word-spacing:7.430400pt;}
.ws3_c00368{word-spacing:12.413333pt;}
.ws0_c00368{word-spacing:15.205547pt;}
.ws4_c00368{word-spacing:31.180907pt;}
._16_c00368{margin-left:-7.625280pt;}
._18_c00368{margin-left:-3.596640pt;}
._11_c00368{margin-left:-2.184000pt;}
._0_c00368{margin-left:-1.178987pt;}
._3_c00368{width:1.568640pt;}
._14_c00368{width:2.553600pt;}
._2_c00368{width:3.781440pt;}
._4_c00368{width:4.814880pt;}
._e_c00368{width:6.377280pt;}
._f_c00368{width:7.285280pt;}
._1_c00368{width:8.392800pt;}
._12_c00368{width:10.002560pt;}
._10_c00368{width:11.231680pt;}
._13_c00368{width:12.190400pt;}
._15_c00368{width:13.281707pt;}
._7_c00368{width:14.520053pt;}
._6_c00368{width:16.504800pt;}
._5_c00368{width:17.990347pt;}
._17_c00368{width:20.700373pt;}
._19_c00368{width:24.351947pt;}
._d_c00368{width:28.104960pt;}
._b_c00368{width:29.190720pt;}
._c_c00368{width:30.246400pt;}
._9_c00368{width:31.467200pt;}
._8_c00368{width:32.427733pt;}
._a_c00368{width:33.658560pt;}
.fs4_c00368{font-size:51.733333pt;}
.fs0_c00368{font-size:53.866667pt;}
.fs1_c00368{font-size:60.800000pt;}
.fs2_c00368{font-size:62.400000pt;}
.fs3_c00368{font-size:62.933333pt;}
.y0_c00368{bottom:0.000000pt;}
.y1c_c00368{bottom:56.973339pt;}
.y1a_c00368{bottom:188.807739pt;}
.y1b_c00368{bottom:188.813339pt;}
.y19_c00368{bottom:217.293339pt;}
.y18_c00368{bottom:270.074139pt;}
.y17_c00368{bottom:298.887339pt;}
.y16_c00368{bottom:326.734939pt;}
.y15_c00368{bottom:354.253339pt;}
.y14_c00368{bottom:408.974939pt;}
.y13_c00368{bottom:436.493339pt;}
.y12_c00368{bottom:490.550139pt;}
.y11_c00368{bottom:518.708139pt;}
.y10_c00368{bottom:573.120939pt;}
.yf_c00368{bottom:600.966939pt;}
.ye_c00368{bottom:628.173339pt;}
.yd_c00368{bottom:628.177205pt;}
.yc_c00368{bottom:655.680005pt;}
.yb_c00368{bottom:710.733339pt;}
.ya_c00368{bottom:710.736539pt;}
.y9_c00368{bottom:740.813339pt;}
.y8_c00368{bottom:797.450805pt;}
.y7_c00368{bottom:824.969205pt;}
.y6_c00368{bottom:852.153605pt;}
.y5_c00368{bottom:879.359339pt;}
.y4_c00368{bottom:906.893339pt;}
.y3_c00368{bottom:961.920005pt;}
.y2_c00368{bottom:989.453339pt;}
.y1_c00368{bottom:1056.973339pt;}
.h9_c00368{height:50.773437pt;}
.h2_c00368{height:52.867187pt;}
.h4_c00368{height:59.642187pt;}
.h3_c00368{height:61.242187pt;}
.h5_c00368{height:61.244854pt;}
.h6_c00368{height:61.267788pt;}
.h8_c00368{height:61.281654pt;}
.h7_c00368{height:61.765625pt;}
.h1_c00368{height:1122.666667pt;}
.h0_c00368{height:1122.880005pt;}
.w1_c00368{width:793.333333pt;}
.w0_c00368{width:793.599999pt;}
.x0_c00368{left:0.000000pt;}
.x7_c00368{left:106.739999pt;}
.x1_c00368{left:108.413332pt;}
.x8_c00368{left:153.746665pt;}
.x2_c00368{left:155.319999pt;}
.xb_c00368{left:210.799999pt;}
.xf_c00368{left:214.546665pt;}
.x10_c00368{left:239.613332pt;}
.xe_c00368{left:258.039999pt;}
.x5_c00368{left:302.213332pt;}
.x6_c00368{left:316.013332pt;}
.x11_c00368{left:377.453332pt;}
.x9_c00368{left:401.519999pt;}
.xc_c00368{left:426.719999pt;}
.xa_c00368{left:432.186665pt;}
.x3_c00368{left:443.026665pt;}
.xd_c00368{left:447.973332pt;}
.x4_c00368{left:468.906665pt;}
}





/* 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_c00369 {
    display:none;
  }
  .loading-indicator_c00369.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00369 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_c00369 { 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_c00369" -> "#page-container .classname_c00369")
 */
.pf_c00369 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00369 { /* 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_c00369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00369 { /* 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_c00369 { /* 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_c00369 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00369 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00369 {overflow:visible;}
  }
}
.c_c00369 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00369 { /* 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_c00369:after { /* webkit #35443 */
  content: '';
}
.t_c00369:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00369 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 */
}
.__c00369 { /* 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_c00369 { /* info for Javascript */
  display:none;
}
.l_c00369 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00369 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00369 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00369: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_c00369 {
    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_c00369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00369.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_c00369 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00369;src:url('chunks/assets/font_55bd0afee190fa4fd2ce7793.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.284668;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_c00369;src:url('chunks/assets/font_d3c57bbcde74d21924578650.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.284180;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_c00369;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;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;}
.m5_c00369{transform:matrix(0.155426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155426,0.000000,0.000000,0.250000,0,0);}
.m7_c00369{transform:matrix(0.157616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157616,0.000000,0.000000,0.250000,0,0);}
.m4_c00369{transform:matrix(0.161993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161993,0.000000,0.000000,0.250000,0,0);}
.m6_c00369{transform:matrix(0.237219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237219,0.000000,0.000000,0.250000,0,0);}
.m3_c00369{transform:matrix(0.237885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237885,0.000000,0.000000,0.250000,0,0);}
.m8_c00369{transform:matrix(0.245347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245347,0.000000,0.000000,0.250000,0,0);}
.ma_c00369{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m2_c00369{transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);}
.m0_c00369{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m1_c00369{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);}
.m9_c00369{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.mb_c00369{transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls7a_c00369{letter-spacing:-2.415000px;}
.ls6a_c00369{letter-spacing:-2.373000px;}
.ls73_c00369{letter-spacing:-2.352000px;}
.ls5f_c00369{letter-spacing:-2.331000px;}
.ls77_c00369{letter-spacing:-1.939080px;}
.ls83_c00369{letter-spacing:-1.814400px;}
.ls6c_c00369{letter-spacing:-1.661100px;}
.ls7e_c00369{letter-spacing:-1.600080px;}
.ls62_c00369{letter-spacing:-1.410240px;}
.ls75_c00369{letter-spacing:-1.403460px;}
.ls6b_c00369{letter-spacing:-1.071240px;}
.ls60_c00369{letter-spacing:-0.928860px;}
.ls68_c00369{letter-spacing:-0.739020px;}
.ls66_c00369{letter-spacing:-0.610200px;}
.ls64_c00369{letter-spacing:-0.501720px;}
.ls6d_c00369{letter-spacing:-0.359340px;}
.ls7f_c00369{letter-spacing:-0.305100px;}
.ls65_c00369{letter-spacing:-0.257640px;}
.ls70_c00369{letter-spacing:-0.244080px;}
.ls6e_c00369{letter-spacing:-0.203400px;}
.ls7d_c00369{letter-spacing:-0.142380px;}
.ls76_c00369{letter-spacing:-0.128820px;}
.ls67_c00369{letter-spacing:-0.094920px;}
.ls74_c00369{letter-spacing:-0.081360px;}
.ls81_c00369{letter-spacing:-0.067800px;}
.ls7c_c00369{letter-spacing:-0.033900px;}
.ls6f_c00369{letter-spacing:-0.020340px;}
.ls61_c00369{letter-spacing:-0.006780px;}
.ls63_c00369{letter-spacing:0.000000px;}
.ls5d_c00369{letter-spacing:0.020340px;}
.ls18_c00369{letter-spacing:0.033900px;}
.ls82_c00369{letter-spacing:0.040680px;}
.ls32_c00369{letter-spacing:0.061020px;}
.ls20_c00369{letter-spacing:0.074580px;}
.ls72_c00369{letter-spacing:0.108480px;}
.ls11_c00369{letter-spacing:0.155940px;}
.ls2e_c00369{letter-spacing:0.176280px;}
.ls53_c00369{letter-spacing:0.230520px;}
.ls46_c00369{letter-spacing:0.264420px;}
.ls38_c00369{letter-spacing:0.271200px;}
.ls71_c00369{letter-spacing:0.332220px;}
.lsd_c00369{letter-spacing:0.339000px;}
.ls5c_c00369{letter-spacing:0.420360px;}
.lsa_c00369{letter-spacing:0.447480px;}
.ls16_c00369{letter-spacing:0.454260px;}
.ls36_c00369{letter-spacing:0.494940px;}
.ls69_c00369{letter-spacing:0.549180px;}
.ls7b_c00369{letter-spacing:0.555960px;}
.ls7_c00369{letter-spacing:0.562740px;}
.ls57_c00369{letter-spacing:0.569520px;}
.ls39_c00369{letter-spacing:0.583080px;}
.ls3d_c00369{letter-spacing:0.589860px;}
.ls5a_c00369{letter-spacing:0.603420px;}
.ls4d_c00369{letter-spacing:0.610200px;}
.ls4a_c00369{letter-spacing:0.616980px;}
.lsf_c00369{letter-spacing:0.644100px;}
.ls52_c00369{letter-spacing:0.650880px;}
.ls14_c00369{letter-spacing:0.657660px;}
.ls5_c00369{letter-spacing:0.684780px;}
.ls13_c00369{letter-spacing:0.691560px;}
.ls1f_c00369{letter-spacing:0.698340px;}
.ls3e_c00369{letter-spacing:0.705120px;}
.ls2_c00369{letter-spacing:0.718680px;}
.ls42_c00369{letter-spacing:0.759360px;}
.ls21_c00369{letter-spacing:0.766140px;}
.ls23_c00369{letter-spacing:0.786480px;}
.ls1a_c00369{letter-spacing:0.800040px;}
.ls51_c00369{letter-spacing:0.806820px;}
.ls1_c00369{letter-spacing:0.820380px;}
.ls44_c00369{letter-spacing:0.827160px;}
.ls31_c00369{letter-spacing:0.854280px;}
.ls48_c00369{letter-spacing:0.867840px;}
.ls28_c00369{letter-spacing:0.874620px;}
.ls1c_c00369{letter-spacing:0.881400px;}
.ls1b_c00369{letter-spacing:0.894960px;}
.ls22_c00369{letter-spacing:0.901740px;}
.ls25_c00369{letter-spacing:0.922080px;}
.ls5e_c00369{letter-spacing:0.928860px;}
.ls34_c00369{letter-spacing:0.935640px;}
.ls4e_c00369{letter-spacing:0.949200px;}
.ls56_c00369{letter-spacing:0.955980px;}
.ls80_c00369{letter-spacing:0.962760px;}
.ls4_c00369{letter-spacing:0.969540px;}
.ls43_c00369{letter-spacing:0.976320px;}
.ls37_c00369{letter-spacing:0.983100px;}
.ls19_c00369{letter-spacing:0.989880px;}
.ls49_c00369{letter-spacing:1.003440px;}
.ls12_c00369{letter-spacing:1.017000px;}
.ls1e_c00369{letter-spacing:1.023780px;}
.ls10_c00369{letter-spacing:1.030560px;}
.ls29_c00369{letter-spacing:1.064460px;}
.lse_c00369{letter-spacing:1.098360px;}
.ls3b_c00369{letter-spacing:1.118700px;}
.ls47_c00369{letter-spacing:1.166160px;}
.ls3_c00369{letter-spacing:1.186500px;}
.ls50_c00369{letter-spacing:1.227180px;}
.ls35_c00369{letter-spacing:1.233960px;}
.ls4f_c00369{letter-spacing:1.240740px;}
.ls3c_c00369{letter-spacing:1.247520px;}
.ls8_c00369{letter-spacing:1.254300px;}
.ls3a_c00369{letter-spacing:1.261080px;}
.ls3f_c00369{letter-spacing:1.288200px;}
.lsb_c00369{letter-spacing:1.294980px;}
.ls9_c00369{letter-spacing:1.301760px;}
.ls6_c00369{letter-spacing:1.322100px;}
.ls24_c00369{letter-spacing:1.389900px;}
.ls15_c00369{letter-spacing:1.423800px;}
.ls58_c00369{letter-spacing:1.471260px;}
.ls2a_c00369{letter-spacing:1.478040px;}
.ls55_c00369{letter-spacing:1.484820px;}
.ls30_c00369{letter-spacing:1.511940px;}
.ls17_c00369{letter-spacing:1.532280px;}
.ls27_c00369{letter-spacing:1.545840px;}
.ls45_c00369{letter-spacing:1.566180px;}
.ls4c_c00369{letter-spacing:1.579740px;}
.ls26_c00369{letter-spacing:1.606860px;}
.ls78_c00369{letter-spacing:1.613640px;}
.lsc_c00369{letter-spacing:1.620420px;}
.ls54_c00369{letter-spacing:1.674660px;}
.ls59_c00369{letter-spacing:1.695000px;}
.ls41_c00369{letter-spacing:1.728900px;}
.ls5b_c00369{letter-spacing:1.742460px;}
.ls33_c00369{letter-spacing:1.776360px;}
.ls1d_c00369{letter-spacing:1.830600px;}
.ls2d_c00369{letter-spacing:1.918740px;}
.ls2c_c00369{letter-spacing:2.162820px;}
.ls4b_c00369{letter-spacing:2.203500px;}
.ls2b_c00369{letter-spacing:2.223840px;}
.ls0_c00369{letter-spacing:2.501820px;}
.ls2f_c00369{letter-spacing:3.356100px;}
.ls40_c00369{letter-spacing:3.376440px;}
.ls79_c00369{letter-spacing:3.390000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{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__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00369{word-spacing:-0.067800px;}
.ws5_c00369{word-spacing:0.000000px;}
.ws3_c00369{word-spacing:2.712000px;}
.ws4_c00369{word-spacing:12.007380px;}
.ws2_c00369{word-spacing:23.119800px;}
.ws0_c00369{word-spacing:31.798200px;}
._0_c00369{margin-left:-5.186700px;}
._6_c00369{margin-left:-2.291640px;}
._5_c00369{margin-left:-1.245360px;}
._1_c00369{width:1.796700px;}
._3_c00369{width:3.164100px;}
._b_c00369{width:4.440900px;}
._8_c00369{width:5.559600px;}
._7_c00369{width:7.182180px;}
._a_c00369{width:8.199240px;}
._12_c00369{width:9.227160px;}
._4_c00369{width:10.278900px;}
._9_c00369{width:11.530620px;}
._2_c00369{width:13.526100px;}
._13_c00369{width:15.661800px;}
._15_c00369{width:18.590760px;}
._14_c00369{width:20.075580px;}
._17_c00369{width:21.302760px;}
._16_c00369{width:23.675760px;}
._f_c00369{width:27.174240px;}
._c_c00369{width:29.289600px;}
._11_c00369{width:30.672720px;}
._d_c00369{width:32.747400px;}
._e_c00369{width:34.198320px;}
._10_c00369{width:35.493300px;}
.fc0_c00369{color:transparent;}
.fs4_c00369{font-size:57.600000px;}
.fs0_c00369{font-size:66.600000px;}
.fs2_c00369{font-size:67.200000px;}
.fs1_c00369{font-size:67.800000px;}
.fs3_c00369{font-size:69.000000px;}
.y0_c00369{bottom:0.000000px;}
.y1e_c00369{bottom:65.535000px;}
.y1d_c00369{bottom:275.427900px;}
.y1c_c00369{bottom:306.022650px;}
.y1b_c00369{bottom:366.500250px;}
.y19_c00369{bottom:397.093350px;}
.y1a_c00369{bottom:397.095000px;}
.y18_c00369{bottom:428.400000px;}
.y17_c00369{bottom:489.972600px;}
.y16_c00369{bottom:520.940250px;}
.y15_c00369{bottom:551.535000px;}
.y14_c00369{bottom:613.455000px;}
.y13_c00369{bottom:613.456650px;}
.y12_c00369{bottom:646.560000px;}
.y11_c00369{bottom:646.566600px;}
.yf_c00369{bottom:678.965850px;}
.y10_c00369{bottom:678.975000px;}
.ye_c00369{bottom:741.969000px;}
.yd_c00369{bottom:772.919700px;}
.yc_c00369{bottom:803.887350px;}
.ya_c00369{bottom:834.840450px;}
.yb_c00369{bottom:834.855000px;}
.y9_c00369{bottom:866.164050px;}
.y8_c00369{bottom:897.131700px;}
.y7_c00369{bottom:958.338150px;}
.y6_c00369{bottom:988.560000px;}
.y4_c00369{bottom:1049.399700px;}
.y5_c00369{bottom:1049.400000px;}
.y3_c00369{bottom:1080.367350px;}
.y2_c00369{bottom:1111.335000px;}
.y1_c00369{bottom:1186.560000px;}
.h7_c00369{height:56.531250px;}
.h2_c00369{height:65.364258px;}
.h4_c00369{height:65.953125px;}
.h3_c00369{height:66.541992px;}
.h6_c00369{height:66.551592px;}
.h5_c00369{height:71.964844px;}
.h1_c00369{height:1263.000000px;}
.h0_c00369{height:1263.240000px;}
.w1_c00369{width:892.500000px;}
.w0_c00369{width:892.800000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:125.205000px;}
.x2_c00369{left:178.845000px;}
.xf_c00369{left:197.910000px;}
.x3_c00369{left:206.835000px;}
.x10_c00369{left:294.660000px;}
.x11_c00369{left:320.580000px;}
.x12_c00369{left:342.540000px;}
.xa_c00369{left:345.420000px;}
.xb_c00369{left:370.680000px;}
.xc_c00369{left:405.840000px;}
.x6_c00369{left:411.720000px;}
.x15_c00369{left:426.435000px;}
.x7_c00369{left:444.090000px;}
.x13_c00369{left:609.090000px;}
.x4_c00369{left:610.395000px;}
.xd_c00369{left:622.680000px;}
.x14_c00369{left:643.875000px;}
.x8_c00369{left:648.600000px;}
.xe_c00369{left:657.210000px;}
.x5_c00369{left:658.275000px;}
.x9_c00369{left:680.310000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls7a_c00369{letter-spacing:-2.146667pt;}
.ls6a_c00369{letter-spacing:-2.109333pt;}
.ls73_c00369{letter-spacing:-2.090667pt;}
.ls5f_c00369{letter-spacing:-2.072000pt;}
.ls77_c00369{letter-spacing:-1.723627pt;}
.ls83_c00369{letter-spacing:-1.612800pt;}
.ls6c_c00369{letter-spacing:-1.476533pt;}
.ls7e_c00369{letter-spacing:-1.422293pt;}
.ls62_c00369{letter-spacing:-1.253547pt;}
.ls75_c00369{letter-spacing:-1.247520pt;}
.ls6b_c00369{letter-spacing:-0.952213pt;}
.ls60_c00369{letter-spacing:-0.825653pt;}
.ls68_c00369{letter-spacing:-0.656907pt;}
.ls66_c00369{letter-spacing:-0.542400pt;}
.ls64_c00369{letter-spacing:-0.445973pt;}
.ls6d_c00369{letter-spacing:-0.319413pt;}
.ls7f_c00369{letter-spacing:-0.271200pt;}
.ls65_c00369{letter-spacing:-0.229013pt;}
.ls70_c00369{letter-spacing:-0.216960pt;}
.ls6e_c00369{letter-spacing:-0.180800pt;}
.ls7d_c00369{letter-spacing:-0.126560pt;}
.ls76_c00369{letter-spacing:-0.114507pt;}
.ls67_c00369{letter-spacing:-0.084373pt;}
.ls74_c00369{letter-spacing:-0.072320pt;}
.ls81_c00369{letter-spacing:-0.060267pt;}
.ls7c_c00369{letter-spacing:-0.030133pt;}
.ls6f_c00369{letter-spacing:-0.018080pt;}
.ls61_c00369{letter-spacing:-0.006027pt;}
.ls63_c00369{letter-spacing:0.000000pt;}
.ls5d_c00369{letter-spacing:0.018080pt;}
.ls18_c00369{letter-spacing:0.030133pt;}
.ls82_c00369{letter-spacing:0.036160pt;}
.ls32_c00369{letter-spacing:0.054240pt;}
.ls20_c00369{letter-spacing:0.066293pt;}
.ls72_c00369{letter-spacing:0.096427pt;}
.ls11_c00369{letter-spacing:0.138613pt;}
.ls2e_c00369{letter-spacing:0.156693pt;}
.ls53_c00369{letter-spacing:0.204907pt;}
.ls46_c00369{letter-spacing:0.235040pt;}
.ls38_c00369{letter-spacing:0.241067pt;}
.ls71_c00369{letter-spacing:0.295307pt;}
.lsd_c00369{letter-spacing:0.301333pt;}
.ls5c_c00369{letter-spacing:0.373653pt;}
.lsa_c00369{letter-spacing:0.397760pt;}
.ls16_c00369{letter-spacing:0.403787pt;}
.ls36_c00369{letter-spacing:0.439947pt;}
.ls69_c00369{letter-spacing:0.488160pt;}
.ls7b_c00369{letter-spacing:0.494187pt;}
.ls7_c00369{letter-spacing:0.500213pt;}
.ls57_c00369{letter-spacing:0.506240pt;}
.ls39_c00369{letter-spacing:0.518293pt;}
.ls3d_c00369{letter-spacing:0.524320pt;}
.ls5a_c00369{letter-spacing:0.536373pt;}
.ls4d_c00369{letter-spacing:0.542400pt;}
.ls4a_c00369{letter-spacing:0.548427pt;}
.lsf_c00369{letter-spacing:0.572533pt;}
.ls52_c00369{letter-spacing:0.578560pt;}
.ls14_c00369{letter-spacing:0.584587pt;}
.ls5_c00369{letter-spacing:0.608693pt;}
.ls13_c00369{letter-spacing:0.614720pt;}
.ls1f_c00369{letter-spacing:0.620747pt;}
.ls3e_c00369{letter-spacing:0.626773pt;}
.ls2_c00369{letter-spacing:0.638827pt;}
.ls42_c00369{letter-spacing:0.674987pt;}
.ls21_c00369{letter-spacing:0.681013pt;}
.ls23_c00369{letter-spacing:0.699093pt;}
.ls1a_c00369{letter-spacing:0.711147pt;}
.ls51_c00369{letter-spacing:0.717173pt;}
.ls1_c00369{letter-spacing:0.729227pt;}
.ls44_c00369{letter-spacing:0.735253pt;}
.ls31_c00369{letter-spacing:0.759360pt;}
.ls48_c00369{letter-spacing:0.771413pt;}
.ls28_c00369{letter-spacing:0.777440pt;}
.ls1c_c00369{letter-spacing:0.783467pt;}
.ls1b_c00369{letter-spacing:0.795520pt;}
.ls22_c00369{letter-spacing:0.801547pt;}
.ls25_c00369{letter-spacing:0.819627pt;}
.ls5e_c00369{letter-spacing:0.825653pt;}
.ls34_c00369{letter-spacing:0.831680pt;}
.ls4e_c00369{letter-spacing:0.843733pt;}
.ls56_c00369{letter-spacing:0.849760pt;}
.ls80_c00369{letter-spacing:0.855787pt;}
.ls4_c00369{letter-spacing:0.861813pt;}
.ls43_c00369{letter-spacing:0.867840pt;}
.ls37_c00369{letter-spacing:0.873867pt;}
.ls19_c00369{letter-spacing:0.879893pt;}
.ls49_c00369{letter-spacing:0.891947pt;}
.ls12_c00369{letter-spacing:0.904000pt;}
.ls1e_c00369{letter-spacing:0.910027pt;}
.ls10_c00369{letter-spacing:0.916053pt;}
.ls29_c00369{letter-spacing:0.946187pt;}
.lse_c00369{letter-spacing:0.976320pt;}
.ls3b_c00369{letter-spacing:0.994400pt;}
.ls47_c00369{letter-spacing:1.036587pt;}
.ls3_c00369{letter-spacing:1.054667pt;}
.ls50_c00369{letter-spacing:1.090827pt;}
.ls35_c00369{letter-spacing:1.096853pt;}
.ls4f_c00369{letter-spacing:1.102880pt;}
.ls3c_c00369{letter-spacing:1.108907pt;}
.ls8_c00369{letter-spacing:1.114933pt;}
.ls3a_c00369{letter-spacing:1.120960pt;}
.ls3f_c00369{letter-spacing:1.145067pt;}
.lsb_c00369{letter-spacing:1.151093pt;}
.ls9_c00369{letter-spacing:1.157120pt;}
.ls6_c00369{letter-spacing:1.175200pt;}
.ls24_c00369{letter-spacing:1.235467pt;}
.ls15_c00369{letter-spacing:1.265600pt;}
.ls58_c00369{letter-spacing:1.307787pt;}
.ls2a_c00369{letter-spacing:1.313813pt;}
.ls55_c00369{letter-spacing:1.319840pt;}
.ls30_c00369{letter-spacing:1.343947pt;}
.ls17_c00369{letter-spacing:1.362027pt;}
.ls27_c00369{letter-spacing:1.374080pt;}
.ls45_c00369{letter-spacing:1.392160pt;}
.ls4c_c00369{letter-spacing:1.404213pt;}
.ls26_c00369{letter-spacing:1.428320pt;}
.ls78_c00369{letter-spacing:1.434347pt;}
.lsc_c00369{letter-spacing:1.440373pt;}
.ls54_c00369{letter-spacing:1.488587pt;}
.ls59_c00369{letter-spacing:1.506667pt;}
.ls41_c00369{letter-spacing:1.536800pt;}
.ls5b_c00369{letter-spacing:1.548853pt;}
.ls33_c00369{letter-spacing:1.578987pt;}
.ls1d_c00369{letter-spacing:1.627200pt;}
.ls2d_c00369{letter-spacing:1.705547pt;}
.ls2c_c00369{letter-spacing:1.922507pt;}
.ls4b_c00369{letter-spacing:1.958667pt;}
.ls2b_c00369{letter-spacing:1.976747pt;}
.ls0_c00369{letter-spacing:2.223840pt;}
.ls2f_c00369{letter-spacing:2.983200pt;}
.ls40_c00369{letter-spacing:3.001280pt;}
.ls79_c00369{letter-spacing:3.013333pt;}
.ws1_c00369{word-spacing:-0.060267pt;}
.ws5_c00369{word-spacing:0.000000pt;}
.ws3_c00369{word-spacing:2.410667pt;}
.ws4_c00369{word-spacing:10.673227pt;}
.ws2_c00369{word-spacing:20.550933pt;}
.ws0_c00369{word-spacing:28.265067pt;}
._0_c00369{margin-left:-4.610400pt;}
._6_c00369{margin-left:-2.037013pt;}
._5_c00369{margin-left:-1.106987pt;}
._1_c00369{width:1.597067pt;}
._3_c00369{width:2.812533pt;}
._b_c00369{width:3.947467pt;}
._8_c00369{width:4.941867pt;}
._7_c00369{width:6.384160pt;}
._a_c00369{width:7.288213pt;}
._12_c00369{width:8.201920pt;}
._4_c00369{width:9.136800pt;}
._9_c00369{width:10.249440pt;}
._2_c00369{width:12.023200pt;}
._13_c00369{width:13.921600pt;}
._15_c00369{width:16.525120pt;}
._14_c00369{width:17.844960pt;}
._17_c00369{width:18.935787pt;}
._16_c00369{width:21.045120pt;}
._f_c00369{width:24.154880pt;}
._c_c00369{width:26.035200pt;}
._11_c00369{width:27.264640pt;}
._d_c00369{width:29.108800pt;}
._e_c00369{width:30.398507pt;}
._10_c00369{width:31.549600pt;}
.fs4_c00369{font-size:51.200000pt;}
.fs0_c00369{font-size:59.200000pt;}
.fs2_c00369{font-size:59.733333pt;}
.fs1_c00369{font-size:60.266667pt;}
.fs3_c00369{font-size:61.333333pt;}
.y0_c00369{bottom:0.000000pt;}
.y1e_c00369{bottom:58.253333pt;}
.y1d_c00369{bottom:244.824800pt;}
.y1c_c00369{bottom:272.020133pt;}
.y1b_c00369{bottom:325.778000pt;}
.y19_c00369{bottom:352.971867pt;}
.y1a_c00369{bottom:352.973333pt;}
.y18_c00369{bottom:380.800000pt;}
.y17_c00369{bottom:435.531200pt;}
.y16_c00369{bottom:463.058000pt;}
.y15_c00369{bottom:490.253333pt;}
.y14_c00369{bottom:545.293333pt;}
.y13_c00369{bottom:545.294800pt;}
.y12_c00369{bottom:574.720000pt;}
.y11_c00369{bottom:574.725867pt;}
.yf_c00369{bottom:603.525200pt;}
.y10_c00369{bottom:603.533333pt;}
.ye_c00369{bottom:659.528000pt;}
.yd_c00369{bottom:687.039733pt;}
.yc_c00369{bottom:714.566533pt;}
.ya_c00369{bottom:742.080400pt;}
.yb_c00369{bottom:742.093333pt;}
.y9_c00369{bottom:769.923600pt;}
.y8_c00369{bottom:797.450400pt;}
.y7_c00369{bottom:851.856133pt;}
.y6_c00369{bottom:878.720000pt;}
.y4_c00369{bottom:932.799733pt;}
.y5_c00369{bottom:932.800000pt;}
.y3_c00369{bottom:960.326533pt;}
.y2_c00369{bottom:987.853333pt;}
.y1_c00369{bottom:1054.720000pt;}
.h7_c00369{height:50.250000pt;}
.h2_c00369{height:58.101562pt;}
.h4_c00369{height:58.625000pt;}
.h3_c00369{height:59.148438pt;}
.h6_c00369{height:59.156971pt;}
.h5_c00369{height:63.968750pt;}
.h1_c00369{height:1122.666667pt;}
.h0_c00369{height:1122.880000pt;}
.w1_c00369{width:793.333333pt;}
.w0_c00369{width:793.600000pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:111.293333pt;}
.x2_c00369{left:158.973333pt;}
.xf_c00369{left:175.920000pt;}
.x3_c00369{left:183.853333pt;}
.x10_c00369{left:261.920000pt;}
.x11_c00369{left:284.960000pt;}
.x12_c00369{left:304.480000pt;}
.xa_c00369{left:307.040000pt;}
.xb_c00369{left:329.493333pt;}
.xc_c00369{left:360.746667pt;}
.x6_c00369{left:365.973333pt;}
.x15_c00369{left:379.053333pt;}
.x7_c00369{left:394.746667pt;}
.x13_c00369{left:541.413333pt;}
.x4_c00369{left:542.573333pt;}
.xd_c00369{left:553.493333pt;}
.x14_c00369{left:572.333333pt;}
.x8_c00369{left:576.533333pt;}
.xe_c00369{left:584.186667pt;}
.x5_c00369{left:585.133333pt;}
.x9_c00369{left:604.720000pt;}
}





/* 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_c00370 {
    display:none;
  }
  .loading-indicator_c00370.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00370 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_c00370 { 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_c00370" -> "#page-container .classname_c00370")
 */
.pf_c00370 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00370 { /* 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_c00370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00370 { /* 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_c00370 { /* 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_c00370 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00370 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00370 {overflow:visible;}
  }
}
.c_c00370 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00370 { /* 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_c00370:after { /* webkit #35443 */
  content: '';
}
.t_c00370:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00370 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 */
}
.__c00370 { /* 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_c00370 { /* info for Javascript */
  display:none;
}
.l_c00370 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00370 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00370 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00370: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_c00370 {
    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_c00370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00370.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_c00370 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00370;src:url('chunks/assets/font_183efa8b8a7bba45bdc94b17.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.284668;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_c00370;src:url('chunks/assets/font_f449da167c10340b8decc0f5.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.311035;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_c00370;src:url('chunks/assets/font_95bc3ab752afda152a29745c.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.284180;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_c00370;src:url('chunks/assets/font_76b025f02270d41c5c37d701.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;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:ff5_c00370;src:url('chunks/assets/font_4085786e293f1ba9589321d4.woff2')format("woff");}.ff5_c00370{font-family:ff5_c00370;line-height:0.666000;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_c00370;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff6_c00370{font-family:ff6_c00370;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:ff7_c00370;src:url('chunks/assets/font_9714f16915e3b11a11a033a6.woff2')format("woff");}.ff7_c00370{font-family:ff7_c00370;line-height:1.284180;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;}
.mb_c00370{transform:matrix(0.131982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131982,0.000000,0.000000,0.250000,0,0);}
.m6_c00370{transform:matrix(0.145648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145648,0.000000,0.000000,0.250000,0,0);}
.m12_c00370{transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);}
.m13_c00370{transform:matrix(0.208012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208012,0.000000,0.000000,0.250000,0,0);}
.m1a_c00370{transform:matrix(0.221010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221010,0.000000,0.000000,0.250000,0,0);}
.m8_c00370{transform:matrix(0.230685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230685,0.000000,0.000000,0.250000,0,0);}
.m1d_c00370{transform:matrix(0.241512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241512,0.000000,0.000000,0.250000,0,0);}
.mc_c00370{transform:matrix(0.245088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245088,0.000000,0.000000,0.250000,0,0);}
.m4_c00370{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m2_c00370{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m5_c00370{transform:matrix(0.247235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247235,0.000000,0.000000,0.250000,0,0);}
.m0_c00370{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.md_c00370{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m16_c00370{transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);}
.m1_c00370{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);}
.m3_c00370{transform:matrix(0.256784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256784,0.000000,0.000000,0.250000,0,0);}
.m1c_c00370{transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);}
.m7_c00370{transform:matrix(0.263188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263188,0.000000,0.000000,0.250000,0,0);}
.me_c00370{transform:matrix(0.267710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267710,0.000000,0.000000,0.250000,0,0);}
.m18_c00370{transform:matrix(0.275951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275951,0.000000,0.000000,0.250000,0,0);}
.m1b_c00370{transform:matrix(0.318835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318835,0.000000,0.000000,0.250000,0,0);}
.m14_c00370{transform:matrix(0.326580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326580,0.000000,0.000000,0.250000,0,0);}
.m15_c00370{transform:matrix(0.352656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352656,0.000000,0.000000,0.250000,0,0);}
.mf_c00370{transform:matrix(0.417022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417022,0.000000,0.000000,0.250000,0,0);}
.m19_c00370{transform:matrix(0.447611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447611,0.000000,0.000000,0.250000,0,0);}
.m10_c00370{transform:matrix(0.468759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468759,0.000000,0.000000,0.250000,0,0);}
.m17_c00370{transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);}
.m11_c00370{transform:matrix(0.543025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543025,0.000000,0.000000,0.250000,0,0);}
.m9_c00370{transform:matrix(1.686222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.686222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.686222,0.000000,0.000000,0.250000,0,0);}
.ma_c00370{transform:matrix(3.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.166667,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls66_c00370{letter-spacing:-2.436000px;}
.ls75_c00370{letter-spacing:-2.415000px;}
.ls62_c00370{letter-spacing:-2.331000px;}
.ls94_c00370{letter-spacing:-2.247000px;}
.ls73_c00370{letter-spacing:-1.649520px;}
.ls63_c00370{letter-spacing:-1.545120px;}
.ls71_c00370{letter-spacing:-1.531200px;}
.ls8b_c00370{letter-spacing:-1.428021px;}
.ls7d_c00370{letter-spacing:-1.426800px;}
.ls82_c00370{letter-spacing:-1.344021px;}
.ls80_c00370{letter-spacing:-1.218000px;}
.ls83_c00370{letter-spacing:-1.155360px;}
.ls6a_c00370{letter-spacing:-0.883920px;}
.ls8e_c00370{letter-spacing:-0.840000px;}
.ls8a_c00370{letter-spacing:-0.756000px;}
.ls90_c00370{letter-spacing:-0.501120px;}
.ls74_c00370{letter-spacing:-0.445440px;}
.ls6c_c00370{letter-spacing:-0.417600px;}
.ls7b_c00370{letter-spacing:-0.382800px;}
.ls64_c00370{letter-spacing:-0.334080px;}
.ls86_c00370{letter-spacing:-0.250560px;}
.ls65_c00370{letter-spacing:-0.243600px;}
.ls79_c00370{letter-spacing:-0.208800px;}
.ls91_c00370{letter-spacing:-0.193200px;}
.ls6e_c00370{letter-spacing:-0.187920px;}
.ls84_c00370{letter-spacing:-0.180960px;}
.ls87_c00370{letter-spacing:-0.111360px;}
.ls69_c00370{letter-spacing:-0.104400px;}
.ls6b_c00370{letter-spacing:-0.090480px;}
.ls70_c00370{letter-spacing:-0.013920px;}
.ls67_c00370{letter-spacing:0.000000px;}
.ls48_c00370{letter-spacing:0.006960px;}
.ls3a_c00370{letter-spacing:0.013920px;}
.lsd_c00370{letter-spacing:0.027840px;}
.ls1a_c00370{letter-spacing:0.034800px;}
.ls15_c00370{letter-spacing:0.048720px;}
.ls6f_c00370{letter-spacing:0.055680px;}
.ls51_c00370{letter-spacing:0.062640px;}
.ls5d_c00370{letter-spacing:0.090480px;}
.ls3c_c00370{letter-spacing:0.160080px;}
.ls18_c00370{letter-spacing:0.201840px;}
.ls33_c00370{letter-spacing:0.208800px;}
.ls2_c00370{letter-spacing:0.215760px;}
.lsa_c00370{letter-spacing:0.222720px;}
.ls19_c00370{letter-spacing:0.236640px;}
.ls5a_c00370{letter-spacing:0.243600px;}
.ls21_c00370{letter-spacing:0.250560px;}
.ls5b_c00370{letter-spacing:0.257520px;}
.ls32_c00370{letter-spacing:0.271440px;}
.ls58_c00370{letter-spacing:0.285360px;}
.ls27_c00370{letter-spacing:0.306240px;}
.ls4f_c00370{letter-spacing:0.320160px;}
.ls61_c00370{letter-spacing:0.348000px;}
.ls1f_c00370{letter-spacing:0.354960px;}
.ls6d_c00370{letter-spacing:0.361920px;}
.ls4d_c00370{letter-spacing:0.375840px;}
.ls45_c00370{letter-spacing:0.389760px;}
.ls36_c00370{letter-spacing:0.396720px;}
.ls39_c00370{letter-spacing:0.403680px;}
.lsc_c00370{letter-spacing:0.410640px;}
.ls1d_c00370{letter-spacing:0.417600px;}
.ls31_c00370{letter-spacing:0.431520px;}
.ls38_c00370{letter-spacing:0.445440px;}
.ls7e_c00370{letter-spacing:0.452400px;}
.ls57_c00370{letter-spacing:0.473280px;}
.ls23_c00370{letter-spacing:0.480240px;}
.ls3d_c00370{letter-spacing:0.489900px;}
.ls55_c00370{letter-spacing:0.494160px;}
.ls46_c00370{letter-spacing:0.501120px;}
.ls60_c00370{letter-spacing:0.517500px;}
.ls11_c00370{letter-spacing:0.528960px;}
.ls2b_c00370{letter-spacing:0.535920px;}
.ls24_c00370{letter-spacing:0.542880px;}
.lsb_c00370{letter-spacing:0.549840px;}
.ls30_c00370{letter-spacing:0.556800px;}
.ls72_c00370{letter-spacing:0.563760px;}
.ls47_c00370{letter-spacing:0.577680px;}
.ls85_c00370{letter-spacing:0.584640px;}
.lse_c00370{letter-spacing:0.591600px;}
.ls26_c00370{letter-spacing:0.593400px;}
.ls2c_c00370{letter-spacing:0.600300px;}
.ls8_c00370{letter-spacing:0.619440px;}
.ls12_c00370{letter-spacing:0.640320px;}
.ls4b_c00370{letter-spacing:0.661200px;}
.ls43_c00370{letter-spacing:0.662400px;}
.ls1b_c00370{letter-spacing:0.682080px;}
.ls28_c00370{letter-spacing:0.702960px;}
.ls4a_c00370{letter-spacing:0.709920px;}
.ls9_c00370{letter-spacing:0.710700px;}
.ls3_c00370{letter-spacing:0.716880px;}
.ls5c_c00370{letter-spacing:0.723840px;}
.ls0_c00370{letter-spacing:0.744720px;}
.ls29_c00370{letter-spacing:0.745200px;}
.ls3e_c00370{letter-spacing:0.765600px;}
.ls7_c00370{letter-spacing:0.772800px;}
.ls88_c00370{letter-spacing:0.793500px;}
.ls37_c00370{letter-spacing:0.800400px;}
.ls17_c00370{letter-spacing:0.807360px;}
.ls6_c00370{letter-spacing:0.821100px;}
.ls2e_c00370{letter-spacing:0.821280px;}
.ls2f_c00370{letter-spacing:0.834900px;}
.ls2a_c00370{letter-spacing:0.835200px;}
.ls5_c00370{letter-spacing:0.869400px;}
.ls4_c00370{letter-spacing:0.883920px;}
.ls44_c00370{letter-spacing:0.890880px;}
.ls50_c00370{letter-spacing:0.904800px;}
.ls42_c00370{letter-spacing:0.918720px;}
.ls1c_c00370{letter-spacing:0.939600px;}
.ls4c_c00370{letter-spacing:0.966000px;}
.ls7c_c00370{letter-spacing:0.967440px;}
.ls76_c00370{letter-spacing:0.974400px;}
.ls41_c00370{letter-spacing:1.002240px;}
.ls53_c00370{letter-spacing:1.014300px;}
.ls1_c00370{letter-spacing:1.032840px;}
.ls34_c00370{letter-spacing:1.037040px;}
.ls54_c00370{letter-spacing:1.044000px;}
.ls3b_c00370{letter-spacing:1.078800px;}
.ls1e_c00370{letter-spacing:1.120560px;}
.ls25_c00370{letter-spacing:1.131600px;}
.ls89_c00370{letter-spacing:1.140030px;}
.ls14_c00370{letter-spacing:1.176240px;}
.ls52_c00370{letter-spacing:1.190160px;}
.ls8d_c00370{letter-spacing:1.200000px;}
.ls49_c00370{letter-spacing:1.211040px;}
.ls5e_c00370{letter-spacing:1.255800px;}
.ls7a_c00370{letter-spacing:1.259760px;}
.ls40_c00370{letter-spacing:1.280640px;}
.ls35_c00370{letter-spacing:1.287600px;}
.ls10_c00370{letter-spacing:1.308480px;}
.ls22_c00370{letter-spacing:1.329360px;}
.ls3f_c00370{letter-spacing:1.350240px;}
.ls59_c00370{letter-spacing:1.559040px;}
.ls77_c00370{letter-spacing:1.600800px;}
.ls4e_c00370{letter-spacing:1.607760px;}
.ls13_c00370{letter-spacing:1.642560px;}
.ls56_c00370{letter-spacing:1.670400px;}
.ls2d_c00370{letter-spacing:1.731900px;}
.ls20_c00370{letter-spacing:1.983600px;}
.ls8c_c00370{letter-spacing:2.040030px;}
.ls78_c00370{letter-spacing:2.317680px;}
.ls81_c00370{letter-spacing:2.370030px;}
.ls7f_c00370{letter-spacing:2.430000px;}
.ls8f_c00370{letter-spacing:2.760000px;}
.ls16_c00370{letter-spacing:2.839680px;}
.lsf_c00370{letter-spacing:2.888400px;}
.ls93_c00370{letter-spacing:2.923200px;}
.ls5f_c00370{letter-spacing:3.340800px;}
.ls92_c00370{letter-spacing:3.381000px;}
.ls68_c00370{letter-spacing:3.480000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{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__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00370{word-spacing:0.000000px;}
.ws0_c00370{word-spacing:30.680400px;}
._4_c00370{margin-left:-8.903400px;}
._0_c00370{margin-left:-2.877240px;}
._5_c00370{margin-left:-1.702440px;}
._3_c00370{width:1.758000px;}
._e_c00370{width:3.182880px;}
._2_c00370{width:4.997280px;}
._1_c00370{width:6.048240px;}
._d_c00370{width:7.186800px;}
._17_c00370{width:8.628900px;}
._9_c00370{width:10.342560px;}
._6_c00370{width:11.386560px;}
._7_c00370{width:13.119600px;}
._a_c00370{width:14.609040px;}
._b_c00370{width:15.910560px;}
._16_c00370{width:17.998560px;}
._8_c00370{width:19.021680px;}
._c_c00370{width:20.921760px;}
._15_c00370{width:22.259220px;}
._14_c00370{width:23.803200px;}
._13_c00370{width:24.823320px;}
._f_c00370{width:27.669000px;}
._12_c00370{width:29.461680px;}
._10_c00370{width:30.941160px;}
._1b_c00370{width:31.998120px;}
._1a_c00370{width:34.347600px;}
._11_c00370{width:35.683920px;}
._19_c00370{width:37.643520px;}
._1c_c00370{width:112.406958px;}
._18_c00370{width:487.380000px;}
.fc0_c00370{color:transparent;}
.fs7_c00370{font-size:4.320000px;}
.fsc_c00370{font-size:17.280000px;}
.fsd_c00370{font-size:21.600000px;}
.fsb_c00370{font-size:22.800600px;}
.fs11_c00370{font-size:24.000000px;}
.fs10_c00370{font-size:25.200000px;}
.fse_c00370{font-size:27.600000px;}
.fs13_c00370{font-size:33.120600px;}
.fsa_c00370{font-size:38.400600px;}
.fsf_c00370{font-size:40.800600px;}
.fs9_c00370{font-size:46.200000px;}
.fs6_c00370{font-size:47.400600px;}
.fs5_c00370{font-size:48.600000px;}
.fs4_c00370{font-size:53.280000px;}
.fs12_c00370{font-size:55.200000px;}
.fs14_c00370{font-size:64.200000px;}
.fs0_c00370{font-size:66.600000px;}
.fs2_c00370{font-size:68.400000px;}
.fs3_c00370{font-size:69.000000px;}
.fs1_c00370{font-size:69.600000px;}
.fs8_c00370{font-size:124.800000px;}
.y0_c00370{bottom:0.000000px;}
.y1e_c00370{bottom:63.375000px;}
.y1d_c00370{bottom:247.335000px;}
.y1c_c00370{bottom:277.935000px;}
.y1b_c00370{bottom:286.935000px;}
.y1a_c00370{bottom:338.415000px;}
.y19_c00370{bottom:370.460400px;}
.y18_c00370{bottom:401.415000px;}
.y17_c00370{bottom:432.735000px;}
.y16_c00370{bottom:463.335000px;}
.y15_c00370{bottom:493.935000px;}
.y14_c00370{bottom:523.095000px;}
.y13_c00370{bottom:525.255000px;}
.y12_c00370{bottom:555.502800px;}
.y10_c00370{bottom:586.433400px;}
.y11_c00370{bottom:586.440000px;}
.yf_c00370{bottom:617.040000px;}
.ye_c00370{bottom:648.000000px;}
.yd_c00370{bottom:648.003000px;}
.yc_c00370{bottom:678.975000px;}
.yb_c00370{bottom:740.517600px;}
.ya_c00370{bottom:771.860400px;}
.y9_c00370{bottom:802.815000px;}
.y8_c00370{bottom:834.130800px;}
.y7_c00370{bottom:896.040000px;}
.y6_c00370{bottom:926.655000px;}
.y5_c00370{bottom:957.615000px;}
.y4_c00370{bottom:988.200000px;}
.y3_c00370{bottom:1049.779200px;}
.y2_c00370{bottom:1110.975000px;}
.y1_c00370{bottom:1187.295000px;}
.ha_c00370{height:2.877120px;}
.hf_c00370{height:11.508480px;}
.h10_c00370{height:21.199219px;}
.h18_c00370{height:22.058320px;}
.h14_c00370{height:23.542969px;}
.h16_c00370{height:23.554688px;}
.he_c00370{height:23.780313px;}
.h15_c00370{height:24.187500px;}
.h13_c00370{height:26.282813px;}
.h11_c00370{height:27.087891px;}
.h7_c00370{height:35.484480px;}
.hc_c00370{height:37.688089px;}
.h12_c00370{height:41.119355px;}
.h9_c00370{height:46.521097px;}
.h8_c00370{height:47.698242px;}
.h17_c00370{height:55.631250px;}
.h19_c00370{height:63.008789px;}
.h2_c00370{height:65.364258px;}
.hd_c00370{height:67.686035px;}
.h4_c00370{height:68.308594px;}
.h5_c00370{height:68.325394px;}
.h3_c00370{height:68.934375px;}
.h6_c00370{height:71.964844px;}
.hb_c00370{height:122.484375px;}
.h1_c00370{height:1263.000000px;}
.h0_c00370{height:1263.240000px;}
.w1_c00370{width:892.500000px;}
.w0_c00370{width:892.800000px;}
.x0_c00370{left:0.000000px;}
.xc_c00370{left:119.685000px;}
.x8_c00370{left:120.954000px;}
.x1_c00370{left:124.485000px;}
.x9_c00370{left:174.045000px;}
.x3_c00370{left:175.845000px;}
.x2_c00370{left:176.940000px;}
.x1b_c00370{left:190.305000px;}
.x1c_c00370{left:234.570000px;}
.x1d_c00370{left:275.055000px;}
.x1e_c00370{left:301.665000px;}
.x5_c00370{left:309.720000px;}
.x4_c00370{left:315.480000px;}
.x1f_c00370{left:331.980000px;}
.x20_c00370{left:367.470000px;}
.x11_c00370{left:369.285000px;}
.x12_c00370{left:417.780000px;}
.x2a_c00370{left:424.620000px;}
.x28_c00370{left:433.440000px;}
.x17_c00370{left:435.420000px;}
.x13_c00370{left:438.375000px;}
.x6_c00370{left:443.040000px;}
.xf_c00370{left:459.000000px;}
.x21_c00370{left:466.185000px;}
.x7_c00370{left:470.280000px;}
.x14_c00370{left:493.005000px;}
.x18_c00370{left:495.915000px;}
.x29_c00370{left:507.210000px;}
.x10_c00370{left:535.140000px;}
.x22_c00370{left:567.225000px;}
.x23_c00370{left:580.635000px;}
.x15_c00370{left:594.975000px;}
.x19_c00370{left:601.410000px;}
.x24_c00370{left:606.090000px;}
.x1a_c00370{left:620.475000px;}
.x25_c00370{left:622.800000px;}
.x26_c00370{left:639.360000px;}
.x27_c00370{left:675.420000px;}
.xa_c00370{left:682.740000px;}
.xd_c00370{left:687.780000px;}
.xb_c00370{left:705.630000px;}
.xe_c00370{left:710.685000px;}
.x16_c00370{left:741.420000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls66_c00370{letter-spacing:-2.165333pt;}
.ls75_c00370{letter-spacing:-2.146667pt;}
.ls62_c00370{letter-spacing:-2.072000pt;}
.ls94_c00370{letter-spacing:-1.997333pt;}
.ls73_c00370{letter-spacing:-1.466240pt;}
.ls63_c00370{letter-spacing:-1.373440pt;}
.ls71_c00370{letter-spacing:-1.361067pt;}
.ls8b_c00370{letter-spacing:-1.269352pt;}
.ls7d_c00370{letter-spacing:-1.268267pt;}
.ls82_c00370{letter-spacing:-1.194685pt;}
.ls80_c00370{letter-spacing:-1.082667pt;}
.ls83_c00370{letter-spacing:-1.026987pt;}
.ls6a_c00370{letter-spacing:-0.785707pt;}
.ls8e_c00370{letter-spacing:-0.746667pt;}
.ls8a_c00370{letter-spacing:-0.672000pt;}
.ls90_c00370{letter-spacing:-0.445440pt;}
.ls74_c00370{letter-spacing:-0.395947pt;}
.ls6c_c00370{letter-spacing:-0.371200pt;}
.ls7b_c00370{letter-spacing:-0.340267pt;}
.ls64_c00370{letter-spacing:-0.296960pt;}
.ls86_c00370{letter-spacing:-0.222720pt;}
.ls65_c00370{letter-spacing:-0.216533pt;}
.ls79_c00370{letter-spacing:-0.185600pt;}
.ls91_c00370{letter-spacing:-0.171733pt;}
.ls6e_c00370{letter-spacing:-0.167040pt;}
.ls84_c00370{letter-spacing:-0.160853pt;}
.ls87_c00370{letter-spacing:-0.098987pt;}
.ls69_c00370{letter-spacing:-0.092800pt;}
.ls6b_c00370{letter-spacing:-0.080427pt;}
.ls70_c00370{letter-spacing:-0.012373pt;}
.ls67_c00370{letter-spacing:0.000000pt;}
.ls48_c00370{letter-spacing:0.006187pt;}
.ls3a_c00370{letter-spacing:0.012373pt;}
.lsd_c00370{letter-spacing:0.024747pt;}
.ls1a_c00370{letter-spacing:0.030933pt;}
.ls15_c00370{letter-spacing:0.043307pt;}
.ls6f_c00370{letter-spacing:0.049493pt;}
.ls51_c00370{letter-spacing:0.055680pt;}
.ls5d_c00370{letter-spacing:0.080427pt;}
.ls3c_c00370{letter-spacing:0.142293pt;}
.ls18_c00370{letter-spacing:0.179413pt;}
.ls33_c00370{letter-spacing:0.185600pt;}
.ls2_c00370{letter-spacing:0.191787pt;}
.lsa_c00370{letter-spacing:0.197973pt;}
.ls19_c00370{letter-spacing:0.210347pt;}
.ls5a_c00370{letter-spacing:0.216533pt;}
.ls21_c00370{letter-spacing:0.222720pt;}
.ls5b_c00370{letter-spacing:0.228907pt;}
.ls32_c00370{letter-spacing:0.241280pt;}
.ls58_c00370{letter-spacing:0.253653pt;}
.ls27_c00370{letter-spacing:0.272213pt;}
.ls4f_c00370{letter-spacing:0.284587pt;}
.ls61_c00370{letter-spacing:0.309333pt;}
.ls1f_c00370{letter-spacing:0.315520pt;}
.ls6d_c00370{letter-spacing:0.321707pt;}
.ls4d_c00370{letter-spacing:0.334080pt;}
.ls45_c00370{letter-spacing:0.346453pt;}
.ls36_c00370{letter-spacing:0.352640pt;}
.ls39_c00370{letter-spacing:0.358827pt;}
.lsc_c00370{letter-spacing:0.365013pt;}
.ls1d_c00370{letter-spacing:0.371200pt;}
.ls31_c00370{letter-spacing:0.383573pt;}
.ls38_c00370{letter-spacing:0.395947pt;}
.ls7e_c00370{letter-spacing:0.402133pt;}
.ls57_c00370{letter-spacing:0.420693pt;}
.ls23_c00370{letter-spacing:0.426880pt;}
.ls3d_c00370{letter-spacing:0.435467pt;}
.ls55_c00370{letter-spacing:0.439253pt;}
.ls46_c00370{letter-spacing:0.445440pt;}
.ls60_c00370{letter-spacing:0.460000pt;}
.ls11_c00370{letter-spacing:0.470187pt;}
.ls2b_c00370{letter-spacing:0.476373pt;}
.ls24_c00370{letter-spacing:0.482560pt;}
.lsb_c00370{letter-spacing:0.488747pt;}
.ls30_c00370{letter-spacing:0.494933pt;}
.ls72_c00370{letter-spacing:0.501120pt;}
.ls47_c00370{letter-spacing:0.513493pt;}
.ls85_c00370{letter-spacing:0.519680pt;}
.lse_c00370{letter-spacing:0.525867pt;}
.ls26_c00370{letter-spacing:0.527467pt;}
.ls2c_c00370{letter-spacing:0.533600pt;}
.ls8_c00370{letter-spacing:0.550613pt;}
.ls12_c00370{letter-spacing:0.569173pt;}
.ls4b_c00370{letter-spacing:0.587733pt;}
.ls43_c00370{letter-spacing:0.588800pt;}
.ls1b_c00370{letter-spacing:0.606293pt;}
.ls28_c00370{letter-spacing:0.624853pt;}
.ls4a_c00370{letter-spacing:0.631040pt;}
.ls9_c00370{letter-spacing:0.631733pt;}
.ls3_c00370{letter-spacing:0.637227pt;}
.ls5c_c00370{letter-spacing:0.643413pt;}
.ls0_c00370{letter-spacing:0.661973pt;}
.ls29_c00370{letter-spacing:0.662400pt;}
.ls3e_c00370{letter-spacing:0.680533pt;}
.ls7_c00370{letter-spacing:0.686933pt;}
.ls88_c00370{letter-spacing:0.705333pt;}
.ls37_c00370{letter-spacing:0.711467pt;}
.ls17_c00370{letter-spacing:0.717653pt;}
.ls6_c00370{letter-spacing:0.729867pt;}
.ls2e_c00370{letter-spacing:0.730027pt;}
.ls2f_c00370{letter-spacing:0.742133pt;}
.ls2a_c00370{letter-spacing:0.742400pt;}
.ls5_c00370{letter-spacing:0.772800pt;}
.ls4_c00370{letter-spacing:0.785707pt;}
.ls44_c00370{letter-spacing:0.791893pt;}
.ls50_c00370{letter-spacing:0.804267pt;}
.ls42_c00370{letter-spacing:0.816640pt;}
.ls1c_c00370{letter-spacing:0.835200pt;}
.ls4c_c00370{letter-spacing:0.858667pt;}
.ls7c_c00370{letter-spacing:0.859947pt;}
.ls76_c00370{letter-spacing:0.866133pt;}
.ls41_c00370{letter-spacing:0.890880pt;}
.ls53_c00370{letter-spacing:0.901600pt;}
.ls1_c00370{letter-spacing:0.918080pt;}
.ls34_c00370{letter-spacing:0.921813pt;}
.ls54_c00370{letter-spacing:0.928000pt;}
.ls3b_c00370{letter-spacing:0.958933pt;}
.ls1e_c00370{letter-spacing:0.996053pt;}
.ls25_c00370{letter-spacing:1.005867pt;}
.ls89_c00370{letter-spacing:1.013360pt;}
.ls14_c00370{letter-spacing:1.045547pt;}
.ls52_c00370{letter-spacing:1.057920pt;}
.ls8d_c00370{letter-spacing:1.066667pt;}
.ls49_c00370{letter-spacing:1.076480pt;}
.ls5e_c00370{letter-spacing:1.116267pt;}
.ls7a_c00370{letter-spacing:1.119787pt;}
.ls40_c00370{letter-spacing:1.138347pt;}
.ls35_c00370{letter-spacing:1.144533pt;}
.ls10_c00370{letter-spacing:1.163093pt;}
.ls22_c00370{letter-spacing:1.181653pt;}
.ls3f_c00370{letter-spacing:1.200213pt;}
.ls59_c00370{letter-spacing:1.385813pt;}
.ls77_c00370{letter-spacing:1.422933pt;}
.ls4e_c00370{letter-spacing:1.429120pt;}
.ls13_c00370{letter-spacing:1.460053pt;}
.ls56_c00370{letter-spacing:1.484800pt;}
.ls2d_c00370{letter-spacing:1.539467pt;}
.ls20_c00370{letter-spacing:1.763200pt;}
.ls8c_c00370{letter-spacing:1.813360pt;}
.ls78_c00370{letter-spacing:2.060160pt;}
.ls81_c00370{letter-spacing:2.106693pt;}
.ls7f_c00370{letter-spacing:2.160000pt;}
.ls8f_c00370{letter-spacing:2.453333pt;}
.ls16_c00370{letter-spacing:2.524160pt;}
.lsf_c00370{letter-spacing:2.567467pt;}
.ls93_c00370{letter-spacing:2.598400pt;}
.ls5f_c00370{letter-spacing:2.969600pt;}
.ls92_c00370{letter-spacing:3.005333pt;}
.ls68_c00370{letter-spacing:3.093333pt;}
.ws1_c00370{word-spacing:0.000000pt;}
.ws0_c00370{word-spacing:27.271467pt;}
._4_c00370{margin-left:-7.914133pt;}
._0_c00370{margin-left:-2.557547pt;}
._5_c00370{margin-left:-1.513280pt;}
._3_c00370{width:1.562667pt;}
._e_c00370{width:2.829227pt;}
._2_c00370{width:4.442027pt;}
._1_c00370{width:5.376213pt;}
._d_c00370{width:6.388267pt;}
._17_c00370{width:7.670133pt;}
._9_c00370{width:9.193387pt;}
._6_c00370{width:10.121387pt;}
._7_c00370{width:11.661867pt;}
._a_c00370{width:12.985813pt;}
._b_c00370{width:14.142720pt;}
._16_c00370{width:15.998720pt;}
._8_c00370{width:16.908160pt;}
._c_c00370{width:18.597120pt;}
._15_c00370{width:19.785973pt;}
._14_c00370{width:21.158400pt;}
._13_c00370{width:22.065173pt;}
._f_c00370{width:24.594667pt;}
._12_c00370{width:26.188160pt;}
._10_c00370{width:27.503253pt;}
._1b_c00370{width:28.442773pt;}
._1a_c00370{width:30.531200pt;}
._11_c00370{width:31.719040pt;}
._19_c00370{width:33.460907pt;}
._1c_c00370{width:99.917296pt;}
._18_c00370{width:433.226667pt;}
.fs7_c00370{font-size:3.840000pt;}
.fsc_c00370{font-size:15.360000pt;}
.fsd_c00370{font-size:19.200000pt;}
.fsb_c00370{font-size:20.267200pt;}
.fs11_c00370{font-size:21.333333pt;}
.fs10_c00370{font-size:22.400000pt;}
.fse_c00370{font-size:24.533333pt;}
.fs13_c00370{font-size:29.440533pt;}
.fsa_c00370{font-size:34.133867pt;}
.fsf_c00370{font-size:36.267200pt;}
.fs9_c00370{font-size:41.066667pt;}
.fs6_c00370{font-size:42.133867pt;}
.fs5_c00370{font-size:43.200000pt;}
.fs4_c00370{font-size:47.360000pt;}
.fs12_c00370{font-size:49.066667pt;}
.fs14_c00370{font-size:57.066667pt;}
.fs0_c00370{font-size:59.200000pt;}
.fs2_c00370{font-size:60.800000pt;}
.fs3_c00370{font-size:61.333333pt;}
.fs1_c00370{font-size:61.866667pt;}
.fs8_c00370{font-size:110.933333pt;}
.y0_c00370{bottom:0.000000pt;}
.y1e_c00370{bottom:56.333333pt;}
.y1d_c00370{bottom:219.853333pt;}
.y1c_c00370{bottom:247.053333pt;}
.y1b_c00370{bottom:255.053333pt;}
.y1a_c00370{bottom:300.813333pt;}
.y19_c00370{bottom:329.298133pt;}
.y18_c00370{bottom:356.813333pt;}
.y17_c00370{bottom:384.653333pt;}
.y16_c00370{bottom:411.853333pt;}
.y15_c00370{bottom:439.053333pt;}
.y14_c00370{bottom:464.973333pt;}
.y13_c00370{bottom:466.893333pt;}
.y12_c00370{bottom:493.780267pt;}
.y10_c00370{bottom:521.274133pt;}
.y11_c00370{bottom:521.280000pt;}
.yf_c00370{bottom:548.480000pt;}
.ye_c00370{bottom:576.000000pt;}
.yd_c00370{bottom:576.002667pt;}
.yc_c00370{bottom:603.533333pt;}
.yb_c00370{bottom:658.237867pt;}
.ya_c00370{bottom:686.098133pt;}
.y9_c00370{bottom:713.613333pt;}
.y8_c00370{bottom:741.449600pt;}
.y7_c00370{bottom:796.480000pt;}
.y6_c00370{bottom:823.693333pt;}
.y5_c00370{bottom:851.213333pt;}
.y4_c00370{bottom:878.400000pt;}
.y3_c00370{bottom:933.137067pt;}
.y2_c00370{bottom:987.533333pt;}
.y1_c00370{bottom:1055.373333pt;}
.ha_c00370{height:2.557440pt;}
.hf_c00370{height:10.229760pt;}
.h10_c00370{height:18.843750pt;}
.h18_c00370{height:19.607395pt;}
.h14_c00370{height:20.927083pt;}
.h16_c00370{height:20.937500pt;}
.he_c00370{height:21.138056pt;}
.h15_c00370{height:21.500000pt;}
.h13_c00370{height:23.362500pt;}
.h11_c00370{height:24.078125pt;}
.h7_c00370{height:31.541760pt;}
.hc_c00370{height:33.500523pt;}
.h12_c00370{height:36.550537pt;}
.h9_c00370{height:41.352086pt;}
.h8_c00370{height:42.398437pt;}
.h17_c00370{height:49.450000pt;}
.h19_c00370{height:56.007812pt;}
.h2_c00370{height:58.101562pt;}
.hd_c00370{height:60.165365pt;}
.h4_c00370{height:60.718750pt;}
.h5_c00370{height:60.733683pt;}
.h3_c00370{height:61.275000pt;}
.h6_c00370{height:63.968750pt;}
.hb_c00370{height:108.875000pt;}
.h1_c00370{height:1122.666667pt;}
.h0_c00370{height:1122.880000pt;}
.w1_c00370{width:793.333333pt;}
.w0_c00370{width:793.600000pt;}
.x0_c00370{left:0.000000pt;}
.xc_c00370{left:106.386667pt;}
.x8_c00370{left:107.514667pt;}
.x1_c00370{left:110.653333pt;}
.x9_c00370{left:154.706667pt;}
.x3_c00370{left:156.306667pt;}
.x2_c00370{left:157.280000pt;}
.x1b_c00370{left:169.160000pt;}
.x1c_c00370{left:208.506667pt;}
.x1d_c00370{left:244.493333pt;}
.x1e_c00370{left:268.146667pt;}
.x5_c00370{left:275.306667pt;}
.x4_c00370{left:280.426667pt;}
.x1f_c00370{left:295.093333pt;}
.x20_c00370{left:326.640000pt;}
.x11_c00370{left:328.253333pt;}
.x12_c00370{left:371.360000pt;}
.x2a_c00370{left:377.440000pt;}
.x28_c00370{left:385.280000pt;}
.x17_c00370{left:387.040000pt;}
.x13_c00370{left:389.666667pt;}
.x6_c00370{left:393.813333pt;}
.xf_c00370{left:408.000000pt;}
.x21_c00370{left:414.386667pt;}
.x7_c00370{left:418.026667pt;}
.x14_c00370{left:438.226667pt;}
.x18_c00370{left:440.813333pt;}
.x29_c00370{left:450.853333pt;}
.x10_c00370{left:475.680000pt;}
.x22_c00370{left:504.200000pt;}
.x23_c00370{left:516.120000pt;}
.x15_c00370{left:528.866667pt;}
.x19_c00370{left:534.586667pt;}
.x24_c00370{left:538.746667pt;}
.x1a_c00370{left:551.533333pt;}
.x25_c00370{left:553.600000pt;}
.x26_c00370{left:568.320000pt;}
.x27_c00370{left:600.373333pt;}
.xa_c00370{left:606.880000pt;}
.xd_c00370{left:611.360000pt;}
.xb_c00370{left:627.226667pt;}
.xe_c00370{left:631.720000pt;}
.x16_c00370{left:659.040000pt;}
}





/* 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_c00371 {
    display:none;
  }
  .loading-indicator_c00371.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00371 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_c00371 { 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_c00371" -> "#page-container .classname_c00371")
 */
.pf_c00371 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00371 { /* 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_c00371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00371 { /* 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_c00371 { /* 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_c00371 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00371 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00371 {overflow:visible;}
  }
}
.c_c00371 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00371 { /* 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_c00371:after { /* webkit #35443 */
  content: '';
}
.t_c00371:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00371 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 */
}
.__c00371 { /* 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_c00371 { /* info for Javascript */
  display:none;
}
.l_c00371 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00371 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00371 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00371: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_c00371 {
    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_c00371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00371.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_c00371 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00371;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;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:ff2_c00371;src:url('chunks/assets/font_58e922be268d6bc3592138d7.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.284180;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_c00371;src:url('chunks/assets/font_e1740013e7d372f56bc5996b.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.284668;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_c00371;src:url('chunks/assets/font_ebd9103498adf7675572cb13.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:0.666000;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;}
.m3_c00371{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m4_c00371{transform:matrix(0.068015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068015,0.000000,0.000000,0.250000,0,0);}
.m2_c00371{transform:matrix(0.111908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111908,0.000000,0.000000,0.250000,0,0);}
.m0_c00371{transform:matrix(0.117137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117137,0.000000,0.000000,0.250000,0,0);}
.m1_c00371{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);}
.v0_c00371{vertical-align:0.000000px;}
.v1_c00371{vertical-align:61.946400px;}
.lse_c00371{letter-spacing:-2.394000px;}
.ls8_c00371{letter-spacing:-2.142000px;}
.ls9_c00371{letter-spacing:-1.392840px;}
.lsd_c00371{letter-spacing:-0.447120px;}
.lsf_c00371{letter-spacing:0.000000px;}
.lsa_c00371{letter-spacing:0.445200px;}
.lsb_c00371{letter-spacing:0.864960px;}
.ls4_c00371{letter-spacing:0.871320px;}
.ls3_c00371{letter-spacing:0.909480px;}
.lsc_c00371{letter-spacing:1.036680px;}
.ls0_c00371{letter-spacing:1.062120px;}
.ls5_c00371{letter-spacing:1.170240px;}
.ls6_c00371{letter-spacing:1.265640px;}
.ls2_c00371{letter-spacing:1.272000px;}
.ls1_c00371{letter-spacing:1.291080px;}
.ls10_c00371{letter-spacing:1.610400px;}
.ls7_c00371{letter-spacing:3.065040px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{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__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00371{word-spacing:-2.811120px;}
.ws2_c00371{word-spacing:-2.213280px;}
.ws3_c00371{word-spacing:-0.992160px;}
.ws4_c00371{word-spacing:0.000000px;}
.ws0_c00371{word-spacing:1.628160px;}
._3_c00371{margin-left:-4.412880px;}
._1_c00371{margin-left:-1.908000px;}
._0_c00371{width:1.577280px;}
._2_c00371{width:203.882520px;}
.fc0_c00371{color:transparent;}
.fs6_c00371{font-size:52.800000px;}
.fs0_c00371{font-size:61.200000px;}
.fs1_c00371{font-size:63.600000px;}
.fs2_c00371{font-size:64.800000px;}
.fs3_c00371{font-size:68.400000px;}
.fs5_c00371{font-size:195.840000px;}
.fs4_c00371{font-size:230.400000px;}
.y0_c00371{bottom:0.000000px;}
.y4_c00371{bottom:146.523285px;}
.y3_c00371{bottom:149.035485px;}
.y2_c00371{bottom:167.399985px;}
.y9_c00371{bottom:521.294985px;}
.y8_c00371{bottom:532.454985px;}
.y7_c00371{bottom:971.639985px;}
.y6_c00371{bottom:1077.839985px;}
.y1_c00371{bottom:1085.774985px;}
.y5_c00371{bottom:1142.294985px;}
.h9_c00371{height:51.820313px;}
.h3_c00371{height:62.388867px;}
.h5_c00371{height:63.597656px;}
.h2_c00371{height:63.829687px;}
.h6_c00371{height:67.130859px;}
.h4_c00371{height:124.335267px;}
.h8_c00371{height:130.429440px;}
.h7_c00371{height:153.446400px;}
.h1_c00371{height:1263.000000px;}
.h0_c00371{height:1263.239985px;}
.w1_c00371{width:892.500000px;}
.w0_c00371{width:892.800000px;}
.x0_c00371{left:0.000000px;}
.x3_c00371{left:118.739700px;}
.x2_c00371{left:121.395000px;}
.x1_c00371{left:123.315000px;}
.x4_c00371{left:384.349200px;}
.x5_c00371{left:681.030000px;}
.x7_c00371{left:740.895000px;}
.x8_c00371{left:744.495000px;}
.x6_c00371{left:795.345000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.v1_c00371{vertical-align:55.063467pt;}
.lse_c00371{letter-spacing:-2.128000pt;}
.ls8_c00371{letter-spacing:-1.904000pt;}
.ls9_c00371{letter-spacing:-1.238080pt;}
.lsd_c00371{letter-spacing:-0.397440pt;}
.lsf_c00371{letter-spacing:0.000000pt;}
.lsa_c00371{letter-spacing:0.395733pt;}
.lsb_c00371{letter-spacing:0.768853pt;}
.ls4_c00371{letter-spacing:0.774507pt;}
.ls3_c00371{letter-spacing:0.808427pt;}
.lsc_c00371{letter-spacing:0.921493pt;}
.ls0_c00371{letter-spacing:0.944107pt;}
.ls5_c00371{letter-spacing:1.040213pt;}
.ls6_c00371{letter-spacing:1.125013pt;}
.ls2_c00371{letter-spacing:1.130667pt;}
.ls1_c00371{letter-spacing:1.147627pt;}
.ls10_c00371{letter-spacing:1.431467pt;}
.ls7_c00371{letter-spacing:2.724480pt;}
.ws1_c00371{word-spacing:-2.498773pt;}
.ws2_c00371{word-spacing:-1.967360pt;}
.ws3_c00371{word-spacing:-0.881920pt;}
.ws4_c00371{word-spacing:0.000000pt;}
.ws0_c00371{word-spacing:1.447253pt;}
._3_c00371{margin-left:-3.922560pt;}
._1_c00371{margin-left:-1.696000pt;}
._0_c00371{width:1.402027pt;}
._2_c00371{width:181.228907pt;}
.fs6_c00371{font-size:46.933333pt;}
.fs0_c00371{font-size:54.400000pt;}
.fs1_c00371{font-size:56.533333pt;}
.fs2_c00371{font-size:57.600000pt;}
.fs3_c00371{font-size:60.800000pt;}
.fs5_c00371{font-size:174.080000pt;}
.fs4_c00371{font-size:204.800000pt;}
.y0_c00371{bottom:0.000000pt;}
.y4_c00371{bottom:130.242920pt;}
.y3_c00371{bottom:132.475987pt;}
.y2_c00371{bottom:148.799987pt;}
.y9_c00371{bottom:463.373320pt;}
.y8_c00371{bottom:473.293320pt;}
.y7_c00371{bottom:863.679987pt;}
.y6_c00371{bottom:958.079987pt;}
.y1_c00371{bottom:965.133320pt;}
.y5_c00371{bottom:1015.373320pt;}
.h9_c00371{height:46.062500pt;}
.h3_c00371{height:55.456771pt;}
.h5_c00371{height:56.531250pt;}
.h2_c00371{height:56.737500pt;}
.h6_c00371{height:59.671875pt;}
.h4_c00371{height:110.520237pt;}
.h8_c00371{height:115.937280pt;}
.h7_c00371{height:136.396800pt;}
.h1_c00371{height:1122.666667pt;}
.h0_c00371{height:1122.879987pt;}
.w1_c00371{width:793.333333pt;}
.w0_c00371{width:793.600000pt;}
.x0_c00371{left:0.000000pt;}
.x3_c00371{left:105.546400pt;}
.x2_c00371{left:107.906667pt;}
.x1_c00371{left:109.613333pt;}
.x4_c00371{left:341.643733pt;}
.x5_c00371{left:605.360000pt;}
.x7_c00371{left:658.573333pt;}
.x8_c00371{left:661.773333pt;}
.x6_c00371{left:706.973333pt;}
}





/* 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_c00372 {
    display:none;
  }
  .loading-indicator_c00372.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00372 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_c00372 { 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_c00372" -> "#page-container .classname_c00372")
 */
.pf_c00372 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00372 { /* 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_c00372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00372 { /* 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_c00372 { /* 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_c00372 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00372 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00372 {overflow:visible;}
  }
}
.c_c00372 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00372 { /* 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_c00372:after { /* webkit #35443 */
  content: '';
}
.t_c00372:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00372 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 */
}
.__c00372 { /* 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_c00372 { /* info for Javascript */
  display:none;
}
.l_c00372 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00372 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00372 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00372: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_c00372 {
    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_c00372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00372.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_c00372 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00372;src:url('chunks/assets/font_2587c1b77dfc75f020546322.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.284180;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_c00372;src:url('chunks/assets/font_e6351fd851ec710bb409c947.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:0.666000;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_c00372;src:url('chunks/assets/font_38f4fd1d33aaa9ffb5cd5b65.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.284668;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;}
.m1_c00372{transform:matrix(0.045226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045226,0.000000,0.000000,0.250000,0,0);}
.m0_c00372{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);}
.v0_c00372{vertical-align:0.000000px;}
.ls7_c00372{letter-spacing:-1.392840px;}
.lsf_c00372{letter-spacing:-0.191400px;}
.lsd_c00372{letter-spacing:-0.057240px;}
.lsb_c00372{letter-spacing:0.000000px;}
.lsc_c00372{letter-spacing:0.254400px;}
.lse_c00372{letter-spacing:0.394320px;}
.ls1_c00372{letter-spacing:0.566040px;}
.ls9_c00372{letter-spacing:0.699600px;}
.ls2_c00372{letter-spacing:0.871320px;}
.lsa_c00372{letter-spacing:0.934920px;}
.ls5_c00372{letter-spacing:1.100280px;}
.ls0_c00372{letter-spacing:1.170240px;}
.ls4_c00372{letter-spacing:1.265640px;}
.ls3_c00372{letter-spacing:1.272000px;}
.ls8_c00372{letter-spacing:1.411920px;}
.ls6_c00372{letter-spacing:2.105400px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{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__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00372{word-spacing:-2.391360px;}
.ws2_c00372{word-spacing:-2.213280px;}
.ws5_c00372{word-spacing:0.000000px;}
.ws4_c00372{word-spacing:0.071760px;}
.ws1_c00372{word-spacing:0.089040px;}
.ws0_c00372{word-spacing:1.628160px;}
._0_c00372{margin-left:-6.258240px;}
._2_c00372{margin-left:-4.243800px;}
._1_c00372{margin-left:-2.442240px;}
.fc0_c00372{color:transparent;}
.fs0_c00372{font-size:63.600000px;}
.fs2_c00372{font-size:66.000000px;}
.fs1_c00372{font-size:286.560000px;}
.y0_c00372{bottom:0.000000px;}
.y3_c00372{bottom:148.697115px;}
.y6_c00372{bottom:166.701615px;}
.y2_c00372{bottom:167.045715px;}
.y5_c00372{bottom:185.400015px;}
.y1_c00372{bottom:185.760015px;}
.y4_c00372{bottom:986.775015px;}
.y7_c00372{bottom:1145.175015px;}
.h2_c00372{height:62.388867px;}
.h4_c00372{height:64.775391px;}
.h3_c00372{height:190.848960px;}
.h1_c00372{height:1263.000000px;}
.h0_c00372{height:1263.240015px;}
.w1_c00372{width:892.500000px;}
.w0_c00372{width:892.800015px;}
.x0_c00372{left:0.000000px;}
.x2_c00372{left:121.260915px;}
.x1_c00372{left:122.835015px;}
.x4_c00372{left:386.865015px;}
.x3_c00372{left:403.920015px;}
.x5_c00372{left:674.910015px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls7_c00372{letter-spacing:-1.238080pt;}
.lsf_c00372{letter-spacing:-0.170133pt;}
.lsd_c00372{letter-spacing:-0.050880pt;}
.lsb_c00372{letter-spacing:0.000000pt;}
.lsc_c00372{letter-spacing:0.226133pt;}
.lse_c00372{letter-spacing:0.350507pt;}
.ls1_c00372{letter-spacing:0.503147pt;}
.ls9_c00372{letter-spacing:0.621867pt;}
.ls2_c00372{letter-spacing:0.774507pt;}
.lsa_c00372{letter-spacing:0.831040pt;}
.ls5_c00372{letter-spacing:0.978027pt;}
.ls0_c00372{letter-spacing:1.040213pt;}
.ls4_c00372{letter-spacing:1.125013pt;}
.ls3_c00372{letter-spacing:1.130667pt;}
.ls8_c00372{letter-spacing:1.255040pt;}
.ls6_c00372{letter-spacing:1.871467pt;}
.ws3_c00372{word-spacing:-2.125653pt;}
.ws2_c00372{word-spacing:-1.967360pt;}
.ws5_c00372{word-spacing:0.000000pt;}
.ws4_c00372{word-spacing:0.063787pt;}
.ws1_c00372{word-spacing:0.079147pt;}
.ws0_c00372{word-spacing:1.447253pt;}
._0_c00372{margin-left:-5.562880pt;}
._2_c00372{margin-left:-3.772267pt;}
._1_c00372{margin-left:-2.170880pt;}
.fs0_c00372{font-size:56.533333pt;}
.fs2_c00372{font-size:58.666667pt;}
.fs1_c00372{font-size:254.720000pt;}
.y0_c00372{bottom:0.000000pt;}
.y3_c00372{bottom:132.175213pt;}
.y6_c00372{bottom:148.179213pt;}
.y2_c00372{bottom:148.485080pt;}
.y5_c00372{bottom:164.800013pt;}
.y1_c00372{bottom:165.120013pt;}
.y4_c00372{bottom:877.133347pt;}
.y7_c00372{bottom:1017.933347pt;}
.h2_c00372{height:55.456771pt;}
.h4_c00372{height:57.578125pt;}
.h3_c00372{height:169.643520pt;}
.h1_c00372{height:1122.666667pt;}
.h0_c00372{height:1122.880013pt;}
.w1_c00372{width:793.333333pt;}
.w0_c00372{width:793.600013pt;}
.x0_c00372{left:0.000000pt;}
.x2_c00372{left:107.787480pt;}
.x1_c00372{left:109.186680pt;}
.x4_c00372{left:343.880013pt;}
.x3_c00372{left:359.040013pt;}
.x5_c00372{left:599.920013pt;}
}





/* 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_c00373 {
    display:none;
  }
  .loading-indicator_c00373.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00373 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_c00373 { 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_c00373" -> "#page-container .classname_c00373")
 */
.pf_c00373 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00373 { /* 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_c00373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00373 { /* 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_c00373 { /* 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_c00373 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00373 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00373 {overflow:visible;}
  }
}
.c_c00373 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00373 { /* 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_c00373:after { /* webkit #35443 */
  content: '';
}
.t_c00373:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00373 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 */
}
.__c00373 { /* 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_c00373 { /* info for Javascript */
  display:none;
}
.l_c00373 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00373 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00373 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00373: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_c00373 {
    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_c00373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00373.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_c00373 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00373{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00373;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;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:ff2_c00373;src:url('chunks/assets/font_28b989d0dd645c99cf8ac231.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.284668;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_c00373;src:url('chunks/assets/font_ffc54ad1257e6bf504e59376.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;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:ff4_c00373;src:url('chunks/assets/font_34e9605e7a27d127efaa06ac.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:1.284180;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_c00373;src:url('chunks/assets/font_9450f06b723f5383763fa7fc.woff2')format("woff");}.ff5_c00373{font-family:ff5_c00373;line-height:0.666000;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_c00373;src:url('chunks/assets/font_965888e8aa9b280156521eba.woff2')format("woff");}.ff6_c00373{font-family:ff6_c00373;line-height:1.311035;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_c00373;src:url('chunks/assets/font_bd9d77563f2368231bd42971.woff2')format("woff");}.ff7_c00373{font-family:ff7_c00373;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;}
.m2_c00373{transform:matrix(0.042092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042092,0.000000,0.000000,0.250000,0,0);}
.m5_c00373{transform:matrix(0.052703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052703,0.000000,0.000000,0.250000,0,0);}
.m8_c00373{transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);}
.m0_c00373{transform:matrix(0.114654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114654,0.000000,0.000000,0.250000,0,0);}
.m6_c00373{transform:matrix(0.124964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124964,0.000000,0.000000,0.250000,0,0);}
.m7_c00373{transform:matrix(0.129506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129506,0.000000,0.000000,0.250000,0,0);}
.m4_c00373{transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{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);}
.m3_c00373{transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls15_c00373{letter-spacing:-15.120000px;}
.ls16_c00373{letter-spacing:-11.172021px;}
.ls14_c00373{letter-spacing:-2.352000px;}
.ls9_c00373{letter-spacing:-2.079000px;}
.ls12_c00373{letter-spacing:-0.943800px;}
.lsb_c00373{letter-spacing:-0.552000px;}
.ls13_c00373{letter-spacing:-0.191400px;}
.ls11_c00373{letter-spacing:-0.057240px;}
.lsa_c00373{letter-spacing:0.000000px;}
.ls6_c00373{letter-spacing:0.483360px;}
.lsc_c00373{letter-spacing:0.591480px;}
.lse_c00373{letter-spacing:0.616920px;}
.lsd_c00373{letter-spacing:0.845880px;}
.ls3_c00373{letter-spacing:0.871320px;}
.ls0_c00373{letter-spacing:1.062120px;}
.ls2_c00373{letter-spacing:1.170240px;}
.ls5_c00373{letter-spacing:1.265640px;}
.ls4_c00373{letter-spacing:1.272000px;}
.ls1_c00373{letter-spacing:1.291080px;}
.ls7_c00373{letter-spacing:1.373760px;}
.ls8_c00373{letter-spacing:2.105400px;}
.lsf_c00373{letter-spacing:2.414880px;}
.ls10_c00373{letter-spacing:3.300000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{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__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00373{word-spacing:-2.811120px;}
.ws2_c00373{word-spacing:-2.213280px;}
.ws3_c00373{word-spacing:-0.992160px;}
.ws0_c00373{word-spacing:-0.732000px;}
.ws5_c00373{word-spacing:-0.089040px;}
.ws6_c00373{word-spacing:0.000000px;}
.ws4_c00373{word-spacing:1.564560px;}
._1_c00373{margin-left:-4.243800px;}
._0_c00373{margin-left:-1.284720px;}
.fc0_c00373{color:transparent;}
.fs9_c00373{font-size:56.400000px;}
.fs0_c00373{font-size:59.400000px;}
.fs1_c00373{font-size:60.000000px;}
.fs3_c00373{font-size:62.400000px;}
.fs2_c00373{font-size:63.600000px;}
.fs5_c00373{font-size:66.000000px;}
.fs7_c00373{font-size:67.200000px;}
.fs6_c00373{font-size:85.200000px;}
.fsc_c00373{font-size:97.200600px;}
.fsd_c00373{font-size:216.000000px;}
.fs8_c00373{font-size:266.400000px;}
.fs4_c00373{font-size:282.240000px;}
.fsb_c00373{font-size:319.200600px;}
.fsa_c00373{font-size:432.000000px;}
.y0_c00373{bottom:0.000000px;}
.ya_c00373{bottom:145.455000px;}
.y5_c00373{bottom:145.800300px;}
.y9_c00373{bottom:164.160000px;}
.y4_c00373{bottom:164.164800px;}
.y8_c00373{bottom:182.520000px;}
.y3_c00373{bottom:182.895000px;}
.y13_c00373{bottom:357.495000px;}
.yb_c00373{bottom:500.400000px;}
.y12_c00373{bottom:515.175000px;}
.y11_c00373{bottom:547.935000px;}
.y7_c00373{bottom:589.695000px;}
.yf_c00373{bottom:666.375000px;}
.y10_c00373{bottom:682.560000px;}
.y2_c00373{bottom:741.240000px;}
.y6_c00373{bottom:789.495000px;}
.ye_c00373{bottom:1013.400000px;}
.yd_c00373{bottom:1080.720000px;}
.y1_c00373{bottom:1083.240000px;}
.yc_c00373{bottom:1142.280000px;}
.hc_c00373{height:58.823438px;}
.h3_c00373{height:58.886719px;}
.h6_c00373{height:61.242188px;}
.h2_c00373{height:61.952344px;}
.h5_c00373{height:62.388867px;}
.h4_c00373{height:62.578125px;}
.h8_c00373{height:64.775391px;}
.ha_c00373{height:67.725000px;}
.h9_c00373{height:83.619141px;}
.hf_c00373{height:101.377188px;}
.h10_c00373{height:143.856000px;}
.hb_c00373{height:177.422400px;}
.h7_c00373{height:187.971840px;}
.he_c00373{height:332.916251px;}
.hd_c00373{height:450.562500px;}
.h1_c00373{height:1263.000000px;}
.h0_c00373{height:1263.240000px;}
.w1_c00373{width:892.500000px;}
.w0_c00373{width:892.800000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:120.810000px;}
.x4_c00373{left:124.491300px;}
.x3_c00373{left:125.700000px;}
.x2_c00373{left:274.155000px;}
.x6_c00373{left:389.745000px;}
.x5_c00373{left:401.310000px;}
.x7_c00373{left:526.440000px;}
.x8_c00373{left:574.980000px;}
.xc_c00373{left:590.235000px;}
.x9_c00373{left:678.150000px;}
.xd_c00373{left:709.860000px;}
.xe_c00373{left:721.530000px;}
.xf_c00373{left:723.180000px;}
.x10_c00373{left:743.040000px;}
.xb_c00373{left:745.200000px;}
.xa_c00373{left:791.460000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls15_c00373{letter-spacing:-13.440000pt;}
.ls16_c00373{letter-spacing:-9.930685pt;}
.ls14_c00373{letter-spacing:-2.090667pt;}
.ls9_c00373{letter-spacing:-1.848000pt;}
.ls12_c00373{letter-spacing:-0.838933pt;}
.lsb_c00373{letter-spacing:-0.490667pt;}
.ls13_c00373{letter-spacing:-0.170133pt;}
.ls11_c00373{letter-spacing:-0.050880pt;}
.lsa_c00373{letter-spacing:0.000000pt;}
.ls6_c00373{letter-spacing:0.429653pt;}
.lsc_c00373{letter-spacing:0.525760pt;}
.lse_c00373{letter-spacing:0.548373pt;}
.lsd_c00373{letter-spacing:0.751893pt;}
.ls3_c00373{letter-spacing:0.774507pt;}
.ls0_c00373{letter-spacing:0.944107pt;}
.ls2_c00373{letter-spacing:1.040213pt;}
.ls5_c00373{letter-spacing:1.125013pt;}
.ls4_c00373{letter-spacing:1.130667pt;}
.ls1_c00373{letter-spacing:1.147627pt;}
.ls7_c00373{letter-spacing:1.221120pt;}
.ls8_c00373{letter-spacing:1.871467pt;}
.lsf_c00373{letter-spacing:2.146560pt;}
.ls10_c00373{letter-spacing:2.933333pt;}
.ws1_c00373{word-spacing:-2.498773pt;}
.ws2_c00373{word-spacing:-1.967360pt;}
.ws3_c00373{word-spacing:-0.881920pt;}
.ws0_c00373{word-spacing:-0.650667pt;}
.ws5_c00373{word-spacing:-0.079147pt;}
.ws6_c00373{word-spacing:0.000000pt;}
.ws4_c00373{word-spacing:1.390720pt;}
._1_c00373{margin-left:-3.772267pt;}
._0_c00373{margin-left:-1.141973pt;}
.fs9_c00373{font-size:50.133333pt;}
.fs0_c00373{font-size:52.800000pt;}
.fs1_c00373{font-size:53.333333pt;}
.fs3_c00373{font-size:55.466667pt;}
.fs2_c00373{font-size:56.533333pt;}
.fs5_c00373{font-size:58.666667pt;}
.fs7_c00373{font-size:59.733333pt;}
.fs6_c00373{font-size:75.733333pt;}
.fsc_c00373{font-size:86.400533pt;}
.fsd_c00373{font-size:192.000000pt;}
.fs8_c00373{font-size:236.800000pt;}
.fs4_c00373{font-size:250.880000pt;}
.fsb_c00373{font-size:283.733867pt;}
.fsa_c00373{font-size:384.000000pt;}
.y0_c00373{bottom:0.000000pt;}
.ya_c00373{bottom:129.293333pt;}
.y5_c00373{bottom:129.600267pt;}
.y9_c00373{bottom:145.920000pt;}
.y4_c00373{bottom:145.924267pt;}
.y8_c00373{bottom:162.240000pt;}
.y3_c00373{bottom:162.573333pt;}
.y13_c00373{bottom:317.773333pt;}
.yb_c00373{bottom:444.800000pt;}
.y12_c00373{bottom:457.933333pt;}
.y11_c00373{bottom:487.053333pt;}
.y7_c00373{bottom:524.173333pt;}
.yf_c00373{bottom:592.333333pt;}
.y10_c00373{bottom:606.720000pt;}
.y2_c00373{bottom:658.880000pt;}
.y6_c00373{bottom:701.773333pt;}
.ye_c00373{bottom:900.800000pt;}
.yd_c00373{bottom:960.640000pt;}
.y1_c00373{bottom:962.880000pt;}
.yc_c00373{bottom:1015.360000pt;}
.hc_c00373{height:52.287500pt;}
.h3_c00373{height:52.343750pt;}
.h6_c00373{height:54.437500pt;}
.h2_c00373{height:55.068750pt;}
.h5_c00373{height:55.456771pt;}
.h4_c00373{height:55.625000pt;}
.h8_c00373{height:57.578125pt;}
.ha_c00373{height:60.200000pt;}
.h9_c00373{height:74.328125pt;}
.hf_c00373{height:90.113056pt;}
.h10_c00373{height:127.872000pt;}
.hb_c00373{height:157.708800pt;}
.h7_c00373{height:167.086080pt;}
.he_c00373{height:295.925556pt;}
.hd_c00373{height:400.500000pt;}
.h1_c00373{height:1122.666667pt;}
.h0_c00373{height:1122.880000pt;}
.w1_c00373{width:793.333333pt;}
.w0_c00373{width:793.600000pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:107.386667pt;}
.x4_c00373{left:110.658933pt;}
.x3_c00373{left:111.733333pt;}
.x2_c00373{left:243.693333pt;}
.x6_c00373{left:346.440000pt;}
.x5_c00373{left:356.720000pt;}
.x7_c00373{left:467.946667pt;}
.x8_c00373{left:511.093333pt;}
.xc_c00373{left:524.653333pt;}
.x9_c00373{left:602.800000pt;}
.xd_c00373{left:630.986667pt;}
.xe_c00373{left:641.360000pt;}
.xf_c00373{left:642.826667pt;}
.x10_c00373{left:660.480000pt;}
.xb_c00373{left:662.400000pt;}
.xa_c00373{left:703.520000pt;}
}





/* 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_c00374 {
    display:none;
  }
  .loading-indicator_c00374.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00374 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_c00374 { 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_c00374" -> "#page-container .classname_c00374")
 */
.pf_c00374 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00374 { /* 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_c00374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00374 { /* 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_c00374 { /* 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_c00374 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00374 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00374 {overflow:visible;}
  }
}
.c_c00374 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00374 { /* 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_c00374:after { /* webkit #35443 */
  content: '';
}
.t_c00374:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00374 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 */
}
.__c00374 { /* 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_c00374 { /* info for Javascript */
  display:none;
}
.l_c00374 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00374 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00374 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00374: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_c00374 {
    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_c00374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00374.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_c00374 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00374;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;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:ff2_c00374;src:url('chunks/assets/font_a84f13bbceb166fbb2d982c6.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;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_c00374;src:url('chunks/assets/font_5488df2ea8bde27156b060f9.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.284180;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_c00374;src:url('chunks/assets/font_e4588354afd2ea07b2f4927f.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:1.284668;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_c00374;src:url('chunks/assets/font_29a02cf7b2bbc67ebf780463.woff2')format("woff");}.ff5_c00374{font-family:ff5_c00374;line-height:0.666000;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;}
.mf_c00374{transform:matrix(0.060184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060184,0.000000,0.000000,0.250000,0,0);}
.m3_c00374{transform:matrix(0.064570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064570,0.000000,0.000000,0.250000,0,0);}
.m5_c00374{transform:matrix(0.085526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085526,0.000000,0.000000,0.250000,0,0);}
.ma_c00374{transform:matrix(0.107070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107070,0.000000,0.000000,0.250000,0,0);}
.m4_c00374{transform:matrix(0.112953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112953,0.000000,0.000000,0.250000,0,0);}
.m0_c00374{transform:matrix(0.114885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114885,0.000000,0.000000,0.250000,0,0);}
.mb_c00374{transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);}
.m6_c00374{transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);}
.m7_c00374{transform:matrix(0.169379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169379,0.000000,0.000000,0.250000,0,0);}
.m9_c00374{transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);}
.m8_c00374{transform:matrix(0.208407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208407,0.000000,0.000000,0.250000,0,0);}
.me_c00374{transform:matrix(0.219238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219238,0.000000,0.000000,0.250000,0,0);}
.m2_c00374{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_c00374{transform:matrix(0.268114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268114,0.000000,0.000000,0.250000,0,0);}
.m10_c00374{transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);}
.md_c00374{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.mc_c00374{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.lsa_c00374{letter-spacing:-2.247000px;}
.ls4_c00374{letter-spacing:-2.184000px;}
.lse_c00374{letter-spacing:-1.806000px;}
.lsc_c00374{letter-spacing:-1.239021px;}
.lsb_c00374{letter-spacing:-1.176000px;}
.lsd_c00374{letter-spacing:-0.966000px;}
.lsf_c00374{letter-spacing:-0.882000px;}
.ls8_c00374{letter-spacing:-0.191400px;}
.ls9_c00374{letter-spacing:0.000000px;}
.ls2_c00374{letter-spacing:0.522900px;}
.ls7_c00374{letter-spacing:1.008000px;}
.ls10_c00374{letter-spacing:1.050030px;}
.ls6_c00374{letter-spacing:1.052100px;}
.ls0_c00374{letter-spacing:1.455300px;}
.ls1_c00374{letter-spacing:1.606500px;}
.ls3_c00374{letter-spacing:2.395800px;}
.ls5_c00374{letter-spacing:2.970000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{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__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00374{word-spacing:-3.249000px;}
.ws1_c00374{word-spacing:0.000000px;}
._1_c00374{margin-left:-4.824600px;}
._0_c00374{margin-left:-2.179800px;}
.fc0_c00374{color:transparent;}
.fs12_c00374{font-size:11.520000px;}
.fs13_c00374{font-size:12.960000px;}
.fs16_c00374{font-size:21.000600px;}
.fs10_c00374{font-size:23.400600px;}
.fs14_c00374{font-size:25.200000px;}
.fsc_c00374{font-size:27.600000px;}
.fse_c00374{font-size:28.800600px;}
.fsa_c00374{font-size:33.600000px;}
.fs11_c00374{font-size:34.560000px;}
.fsb_c00374{font-size:35.400600px;}
.fs15_c00374{font-size:38.880600px;}
.fs9_c00374{font-size:41.400600px;}
.fs8_c00374{font-size:44.640600px;}
.fsd_c00374{font-size:51.600000px;}
.fs7_c00374{font-size:54.720000px;}
.fs1_c00374{font-size:59.400000px;}
.fs5_c00374{font-size:60.000000px;}
.fs0_c00374{font-size:62.400000px;}
.fs2_c00374{font-size:63.000000px;}
.fs6_c00374{font-size:64.200000px;}
.fs3_c00374{font-size:66.000000px;}
.fsf_c00374{font-size:76.800000px;}
.fs4_c00374{font-size:217.440000px;}
.y0_c00374{bottom:0.000000px;}
.y3_c00374{bottom:149.034750px;}
.y2_c00374{bottom:167.415000px;}
.y19_c00374{bottom:527.400000px;}
.y18_c00374{bottom:534.240000px;}
.y17_c00374{bottom:540.375000px;}
.y16_c00374{bottom:552.615000px;}
.y15_c00374{bottom:564.855000px;}
.y14_c00374{bottom:579.615000px;}
.y13_c00374{bottom:591.855000px;}
.y12_c00374{bottom:601.200000px;}
.y11_c00374{bottom:616.695000px;}
.y10_c00374{bottom:620.295000px;}
.yf_c00374{bottom:640.455000px;}
.ye_c00374{bottom:645.480000px;}
.yd_c00374{bottom:666.720000px;}
.yc_c00374{bottom:672.480000px;}
.y6_c00374{bottom:675.375000px;}
.yb_c00374{bottom:677.535000px;}
.ya_c00374{bottom:696.615000px;}
.y9_c00374{bottom:702.720000px;}
.y8_c00374{bottom:718.200000px;}
.y5_c00374{bottom:973.815000px;}
.y7_c00374{bottom:1080.375000px;}
.y1_c00374{bottom:1082.535000px;}
.y4_c00374{bottom:1145.895000px;}
.h16_c00374{height:7.672320px;}
.h17_c00374{height:8.631360px;}
.h1a_c00374{height:21.902970px;}
.h15_c00374{height:23.016960px;}
.h14_c00374{height:24.406095px;}
.h19_c00374{height:25.894480px;}
.h18_c00374{height:26.282813px;}
.hf_c00374{height:28.785937px;}
.hb_c00374{height:29.730640px;}
.h11_c00374{height:30.038126px;}
.hd_c00374{height:32.976562px;}
.he_c00374{height:34.743753px;}
.ha_c00374{height:36.443520px;}
.hc_c00374{height:40.632425px;}
.h10_c00374{height:53.817187px;}
.h8_c00374{height:58.886719px;}
.h4_c00374{height:61.800293px;}
.h5_c00374{height:61.821293px;}
.h3_c00374{height:61.952344px;}
.h9_c00374{height:63.008789px;}
.h6_c00374{height:64.775391px;}
.h2_c00374{height:65.081250px;}
.h13_c00374{height:68.835938px;}
.h12_c00374{height:80.100000px;}
.h7_c00374{height:144.815040px;}
.h1_c00374{height:1263.000000px;}
.h0_c00374{height:1263.240000px;}
.w1_c00374{width:892.500000px;}
.w0_c00374{width:892.800000px;}
.x0_c00374{left:0.000000px;}
.x4_c00374{left:117.291000px;}
.x2_c00374{left:120.210000px;}
.x1_c00374{left:121.515000px;}
.x3_c00374{left:140.160000px;}
.x7_c00374{left:461.355000px;}
.x6_c00374{left:525.615000px;}
.x5_c00374{left:670.590000px;}
.x8_c00374{left:791.760000px;}
.x9_c00374{left:856.080000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.lsa_c00374{letter-spacing:-1.997333pt;}
.ls4_c00374{letter-spacing:-1.941333pt;}
.lse_c00374{letter-spacing:-1.605333pt;}
.lsc_c00374{letter-spacing:-1.101352pt;}
.lsb_c00374{letter-spacing:-1.045333pt;}
.lsd_c00374{letter-spacing:-0.858667pt;}
.lsf_c00374{letter-spacing:-0.784000pt;}
.ls8_c00374{letter-spacing:-0.170133pt;}
.ls9_c00374{letter-spacing:0.000000pt;}
.ls2_c00374{letter-spacing:0.464800pt;}
.ls7_c00374{letter-spacing:0.896000pt;}
.ls10_c00374{letter-spacing:0.933360pt;}
.ls6_c00374{letter-spacing:0.935200pt;}
.ls0_c00374{letter-spacing:1.293600pt;}
.ls1_c00374{letter-spacing:1.428000pt;}
.ls3_c00374{letter-spacing:2.129600pt;}
.ls5_c00374{letter-spacing:2.640000pt;}
.ws0_c00374{word-spacing:-2.888000pt;}
.ws1_c00374{word-spacing:0.000000pt;}
._1_c00374{margin-left:-4.288533pt;}
._0_c00374{margin-left:-1.937600pt;}
.fs12_c00374{font-size:10.240000pt;}
.fs13_c00374{font-size:11.520000pt;}
.fs16_c00374{font-size:18.667200pt;}
.fs10_c00374{font-size:20.800533pt;}
.fs14_c00374{font-size:22.400000pt;}
.fsc_c00374{font-size:24.533333pt;}
.fse_c00374{font-size:25.600533pt;}
.fsa_c00374{font-size:29.866667pt;}
.fs11_c00374{font-size:30.720000pt;}
.fsb_c00374{font-size:31.467200pt;}
.fs15_c00374{font-size:34.560533pt;}
.fs9_c00374{font-size:36.800533pt;}
.fs8_c00374{font-size:39.680533pt;}
.fsd_c00374{font-size:45.866667pt;}
.fs7_c00374{font-size:48.640000pt;}
.fs1_c00374{font-size:52.800000pt;}
.fs5_c00374{font-size:53.333333pt;}
.fs0_c00374{font-size:55.466667pt;}
.fs2_c00374{font-size:56.000000pt;}
.fs6_c00374{font-size:57.066667pt;}
.fs3_c00374{font-size:58.666667pt;}
.fsf_c00374{font-size:68.266667pt;}
.fs4_c00374{font-size:193.280000pt;}
.y0_c00374{bottom:0.000000pt;}
.y3_c00374{bottom:132.475333pt;}
.y2_c00374{bottom:148.813333pt;}
.y19_c00374{bottom:468.800000pt;}
.y18_c00374{bottom:474.880000pt;}
.y17_c00374{bottom:480.333333pt;}
.y16_c00374{bottom:491.213333pt;}
.y15_c00374{bottom:502.093333pt;}
.y14_c00374{bottom:515.213333pt;}
.y13_c00374{bottom:526.093333pt;}
.y12_c00374{bottom:534.400000pt;}
.y11_c00374{bottom:548.173333pt;}
.y10_c00374{bottom:551.373333pt;}
.yf_c00374{bottom:569.293333pt;}
.ye_c00374{bottom:573.760000pt;}
.yd_c00374{bottom:592.640000pt;}
.yc_c00374{bottom:597.760000pt;}
.y6_c00374{bottom:600.333333pt;}
.yb_c00374{bottom:602.253333pt;}
.ya_c00374{bottom:619.213333pt;}
.y9_c00374{bottom:624.640000pt;}
.y8_c00374{bottom:638.400000pt;}
.y5_c00374{bottom:865.613333pt;}
.y7_c00374{bottom:960.333333pt;}
.y1_c00374{bottom:962.253333pt;}
.y4_c00374{bottom:1018.573333pt;}
.h16_c00374{height:6.819840pt;}
.h17_c00374{height:7.672320pt;}
.h1a_c00374{height:19.469306pt;}
.h15_c00374{height:20.459520pt;}
.h14_c00374{height:21.694306pt;}
.h19_c00374{height:23.017315pt;}
.h18_c00374{height:23.362500pt;}
.hf_c00374{height:25.587500pt;}
.hb_c00374{height:26.427235pt;}
.h11_c00374{height:26.700556pt;}
.hd_c00374{height:29.312500pt;}
.he_c00374{height:30.883336pt;}
.ha_c00374{height:32.394240pt;}
.hc_c00374{height:36.117711pt;}
.h10_c00374{height:47.837500pt;}
.h8_c00374{height:52.343750pt;}
.h4_c00374{height:54.933594pt;}
.h5_c00374{height:54.952260pt;}
.h3_c00374{height:55.068750pt;}
.h9_c00374{height:56.007812pt;}
.h6_c00374{height:57.578125pt;}
.h2_c00374{height:57.850000pt;}
.h13_c00374{height:61.187500pt;}
.h12_c00374{height:71.200000pt;}
.h7_c00374{height:128.724480pt;}
.h1_c00374{height:1122.666667pt;}
.h0_c00374{height:1122.880000pt;}
.w1_c00374{width:793.333333pt;}
.w0_c00374{width:793.600000pt;}
.x0_c00374{left:0.000000pt;}
.x4_c00374{left:104.258667pt;}
.x2_c00374{left:106.853333pt;}
.x1_c00374{left:108.013333pt;}
.x3_c00374{left:124.586667pt;}
.x7_c00374{left:410.093333pt;}
.x6_c00374{left:467.213333pt;}
.x5_c00374{left:596.080000pt;}
.x8_c00374{left:703.786667pt;}
.x9_c00374{left:760.960000pt;}
}





/* 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_c00375 {
    display:none;
  }
  .loading-indicator_c00375.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00375 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_c00375 { 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_c00375" -> "#page-container .classname_c00375")
 */
.pf_c00375 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00375 { /* 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_c00375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00375 { /* 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_c00375 { /* 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_c00375 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00375 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00375 {overflow:visible;}
  }
}
.c_c00375 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00375 { /* 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_c00375:after { /* webkit #35443 */
  content: '';
}
.t_c00375:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00375 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 */
}
.__c00375 { /* 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_c00375 { /* info for Javascript */
  display:none;
}
.l_c00375 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00375 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00375 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00375: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_c00375 {
    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_c00375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00375.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_c00375 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00375;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;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:ff2_c00375;src:url('chunks/assets/font_90421f11a457e6309a9563a5.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.284180;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_c00375;src:url('chunks/assets/font_836b7ace1d345158f082ae57.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:0.666000;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_c00375;src:url('chunks/assets/font_d93742a647311e323384cec4.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:1.284668;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_c00375;src:url('chunks/assets/font_965888e8aa9b280156521eba.woff2')format("woff");}.ff5_c00375{font-family:ff5_c00375;line-height:1.311035;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_c00375;src:url('chunks/assets/font_ac47258b1a76a08d3d768f53.woff2')format("woff");}.ff6_c00375{font-family:ff6_c00375;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;}
.m3_c00375{transform:matrix(0.055743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055743,0.000000,0.000000,0.250000,0,0);}
.m0_c00375{transform:matrix(0.117248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117248,0.000000,0.000000,0.250000,0,0);}
.m4_c00375{transform:matrix(0.146561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146561,0.000000,0.000000,0.250000,0,0);}
.m6_c00375{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m5_c00375{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1_c00375{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);}
.m2_c00375{transform:matrix(0.268645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268645,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls10_c00375{letter-spacing:-2.331000px;}
.ls7_c00375{letter-spacing:-2.247000px;}
.ls8_c00375{letter-spacing:-0.982260px;}
.lsf_c00375{letter-spacing:-0.447120px;}
.lsd_c00375{letter-spacing:-0.276060px;}
.lsc_c00375{letter-spacing:0.000000px;}
.lse_c00375{letter-spacing:0.109140px;}
.ls2_c00375{letter-spacing:0.558540px;}
.ls3_c00375{letter-spacing:0.776820px;}
.ls0_c00375{letter-spacing:0.879540px;}
.ls4_c00375{letter-spacing:0.943740px;}
.ls1_c00375{letter-spacing:0.982260px;}
.ls5_c00375{letter-spacing:1.084980px;}
.lsb_c00375{letter-spacing:1.129920px;}
.ls9_c00375{letter-spacing:1.322520px;}
.ls6_c00375{letter-spacing:2.773440px;}
.lsa_c00375{letter-spacing:3.210000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{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__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00375{word-spacing:-0.436560px;}
.ws1_c00375{word-spacing:-0.308160px;}
.ws3_c00375{word-spacing:0.000000px;}
.ws0_c00375{word-spacing:0.610440px;}
._0_c00375{margin-left:-5.744040px;}
._1_c00375{margin-left:-4.481160px;}
.fc0_c00375{color:transparent;}
.fs8_c00375{font-size:31.200000px;}
.fs6_c00375{font-size:33.000600px;}
.fs4_c00375{font-size:63.000000px;}
.fs0_c00375{font-size:64.200000px;}
.fs2_c00375{font-size:64.800000px;}
.fs3_c00375{font-size:66.600000px;}
.fs5_c00375{font-size:80.640000px;}
.fs7_c00375{font-size:83.520000px;}
.fs1_c00375{font-size:213.120600px;}
.y0_c00375{bottom:0.000000px;}
.y5_c00375{bottom:145.805700px;}
.y3_c00375{bottom:146.160000px;}
.y2_c00375{bottom:164.520000px;}
.ye_c00375{bottom:352.095000px;}
.yd_c00375{bottom:552.240000px;}
.yc_c00375{bottom:559.095000px;}
.yb_c00375{bottom:582.135000px;}
.ya_c00375{bottom:895.695000px;}
.y9_c00375{bottom:904.335000px;}
.y8_c00375{bottom:927.375000px;}
.y4_c00375{bottom:940.335000px;}
.y7_c00375{bottom:1080.015000px;}
.y1_c00375{bottom:1082.535000px;}
.y6_c00375{bottom:1143.015000px;}
.hb_c00375{height:32.540625px;}
.h9_c00375{height:34.418595px;}
.h8_c00375{height:53.706240px;}
.ha_c00375{height:55.624320px;}
.hc_c00375{height:61.800293px;}
.h7_c00375{height:61.831055px;}
.h3_c00375{height:62.977441px;}
.h5_c00375{height:63.597656px;}
.h2_c00375{height:66.958594px;}
.h6_c00375{height:67.120312px;}
.h4_c00375{height:141.938320px;}
.h1_c00375{height:1263.000000px;}
.h0_c00375{height:1263.240000px;}
.w1_c00375{width:892.500000px;}
.w0_c00375{width:892.800000px;}
.x0_c00375{left:0.000000px;}
.x2_c00375{left:116.925000px;}
.x1_c00375{left:121.155000px;}
.x3_c00375{left:141.600000px;}
.x4_c00375{left:381.615000px;}
.x5_c00375{left:386.850000px;}
.xc_c00375{left:671.205000px;}
.x6_c00375{left:673.470000px;}
.xb_c00375{left:698.415000px;}
.xa_c00375{left:700.470000px;}
.x9_c00375{left:732.615000px;}
.x8_c00375{left:735.390000px;}
.x7_c00375{left:789.300000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls10_c00375{letter-spacing:-2.072000pt;}
.ls7_c00375{letter-spacing:-1.997333pt;}
.ls8_c00375{letter-spacing:-0.873120pt;}
.lsf_c00375{letter-spacing:-0.397440pt;}
.lsd_c00375{letter-spacing:-0.245387pt;}
.lsc_c00375{letter-spacing:0.000000pt;}
.lse_c00375{letter-spacing:0.097013pt;}
.ls2_c00375{letter-spacing:0.496480pt;}
.ls3_c00375{letter-spacing:0.690507pt;}
.ls0_c00375{letter-spacing:0.781813pt;}
.ls4_c00375{letter-spacing:0.838880pt;}
.ls1_c00375{letter-spacing:0.873120pt;}
.ls5_c00375{letter-spacing:0.964427pt;}
.lsb_c00375{letter-spacing:1.004373pt;}
.ls9_c00375{letter-spacing:1.175573pt;}
.ls6_c00375{letter-spacing:2.465280pt;}
.lsa_c00375{letter-spacing:2.853333pt;}
.ws2_c00375{word-spacing:-0.388053pt;}
.ws1_c00375{word-spacing:-0.273920pt;}
.ws3_c00375{word-spacing:0.000000pt;}
.ws0_c00375{word-spacing:0.542613pt;}
._0_c00375{margin-left:-5.105813pt;}
._1_c00375{margin-left:-3.983253pt;}
.fs8_c00375{font-size:27.733333pt;}
.fs6_c00375{font-size:29.333867pt;}
.fs4_c00375{font-size:56.000000pt;}
.fs0_c00375{font-size:57.066667pt;}
.fs2_c00375{font-size:57.600000pt;}
.fs3_c00375{font-size:59.200000pt;}
.fs5_c00375{font-size:71.680000pt;}
.fs7_c00375{font-size:74.240000pt;}
.fs1_c00375{font-size:189.440533pt;}
.y0_c00375{bottom:0.000000pt;}
.y5_c00375{bottom:129.605067pt;}
.y3_c00375{bottom:129.920000pt;}
.y2_c00375{bottom:146.240000pt;}
.ye_c00375{bottom:312.973333pt;}
.yd_c00375{bottom:490.880000pt;}
.yc_c00375{bottom:496.973333pt;}
.yb_c00375{bottom:517.453333pt;}
.ya_c00375{bottom:796.173333pt;}
.y9_c00375{bottom:803.853333pt;}
.y8_c00375{bottom:824.333333pt;}
.y4_c00375{bottom:835.853333pt;}
.y7_c00375{bottom:960.013333pt;}
.y1_c00375{bottom:962.253333pt;}
.y6_c00375{bottom:1016.013333pt;}
.hb_c00375{height:28.925000pt;}
.h9_c00375{height:30.594306pt;}
.h8_c00375{height:47.738880pt;}
.ha_c00375{height:49.443840pt;}
.hc_c00375{height:54.933594pt;}
.h7_c00375{height:54.960938pt;}
.h3_c00375{height:55.979948pt;}
.h5_c00375{height:56.531250pt;}
.h2_c00375{height:59.518750pt;}
.h6_c00375{height:59.662500pt;}
.h4_c00375{height:126.167395pt;}
.h1_c00375{height:1122.666667pt;}
.h0_c00375{height:1122.880000pt;}
.w1_c00375{width:793.333333pt;}
.w0_c00375{width:793.600000pt;}
.x0_c00375{left:0.000000pt;}
.x2_c00375{left:103.933333pt;}
.x1_c00375{left:107.693333pt;}
.x3_c00375{left:125.866667pt;}
.x4_c00375{left:339.213333pt;}
.x5_c00375{left:343.866667pt;}
.xc_c00375{left:596.626667pt;}
.x6_c00375{left:598.640000pt;}
.xb_c00375{left:620.813333pt;}
.xa_c00375{left:622.640000pt;}
.x9_c00375{left:651.213333pt;}
.x8_c00375{left:653.680000pt;}
.x7_c00375{left:701.600000pt;}
}





/* 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_c00376 {
    display:none;
  }
  .loading-indicator_c00376.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00376 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_c00376 { 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_c00376" -> "#page-container .classname_c00376")
 */
.pf_c00376 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00376 { /* 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_c00376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00376 { /* 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_c00376 { /* 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_c00376 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00376 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00376 {overflow:visible;}
  }
}
.c_c00376 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00376 { /* 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_c00376:after { /* webkit #35443 */
  content: '';
}
.t_c00376:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00376 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 */
}
.__c00376 { /* 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_c00376 { /* info for Javascript */
  display:none;
}
.l_c00376 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00376 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00376 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00376: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_c00376 {
    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_c00376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00376.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_c00376 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00376;src:url('chunks/assets/font_a19496de67bdbc3354266b91.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.284668;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_c00376;src:url('chunks/assets/font_bd96b4d573d174fd05dfb6cf.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.284180;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_c00376;src:url('chunks/assets/font_318b333b66bd0fcf1492e1e3.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.311035;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_c00376;src:url('chunks/assets/font_2ba55f10604c201cc5f9372b.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;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;}
.m12_c00376{transform:matrix(0.150847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150847,0.000000,0.000000,0.250000,0,0);}
.mf_c00376{transform:matrix(0.180863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180863,0.000000,0.000000,0.250000,0,0);}
.m13_c00376{transform:matrix(0.229179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229179,0.000000,0.000000,0.250000,0,0);}
.me_c00376{transform:matrix(0.233761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233761,0.000000,0.000000,0.250000,0,0);}
.m8_c00376{transform:matrix(0.234674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234674,0.000000,0.000000,0.250000,0,0);}
.m10_c00376{transform:matrix(0.238858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238858,0.000000,0.000000,0.250000,0,0);}
.mb_c00376{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.m6_c00376{transform:matrix(0.244784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244784,0.000000,0.000000,0.250000,0,0);}
.m9_c00376{transform:matrix(0.245616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245616,0.000000,0.000000,0.250000,0,0);}
.m4_c00376{transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);}
.ma_c00376{transform:matrix(0.246471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246471,0.000000,0.000000,0.250000,0,0);}
.md_c00376{transform:matrix(0.247288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247288,0.000000,0.000000,0.250000,0,0);}
.m0_c00376{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.m7_c00376{transform:matrix(0.248408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248408,0.000000,0.000000,0.250000,0,0);}
.mc_c00376{transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);}
.m1_c00376{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);}
.m5_c00376{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m2_c00376{transform:matrix(0.253882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253882,0.000000,0.000000,0.250000,0,0);}
.m3_c00376{transform:matrix(0.256865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256865,0.000000,0.000000,0.250000,0,0);}
.m11_c00376{transform:matrix(0.267792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267792,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls9b_c00376{letter-spacing:-2.499000px;}
.ls9e_c00376{letter-spacing:-2.415000px;}
.ls8e_c00376{letter-spacing:-2.373000px;}
.ls7b_c00376{letter-spacing:-2.331000px;}
.lsac_c00376{letter-spacing:-2.289000px;}
.ls8b_c00376{letter-spacing:-1.640760px;}
.lsaa_c00376{letter-spacing:-1.600080px;}
.ls9c_c00376{letter-spacing:-1.520820px;}
.ls9f_c00376{letter-spacing:-1.450920px;}
.lsa7_c00376{letter-spacing:-1.430580px;}
.ls93_c00376{letter-spacing:-1.417020px;}
.ls80_c00376{letter-spacing:-1.410240px;}
.ls99_c00376{letter-spacing:-1.403460px;}
.ls83_c00376{letter-spacing:-0.976320px;}
.ls7e_c00376{letter-spacing:-0.867840px;}
.ls90_c00376{letter-spacing:-0.854280px;}
.lsa2_c00376{letter-spacing:-0.847500px;}
.ls87_c00376{letter-spacing:-0.739020px;}
.lsa1_c00376{letter-spacing:-0.569520px;}
.ls89_c00376{letter-spacing:-0.562740px;}
.ls86_c00376{letter-spacing:-0.501720px;}
.ls82_c00376{letter-spacing:-0.494940px;}
.ls98_c00376{letter-spacing:-0.359340px;}
.ls88_c00376{letter-spacing:-0.352560px;}
.lsa0_c00376{letter-spacing:-0.264420px;}
.ls8c_c00376{letter-spacing:-0.203400px;}
.lsa4_c00376{letter-spacing:-0.189840px;}
.ls8f_c00376{letter-spacing:-0.176280px;}
.lsa9_c00376{letter-spacing:-0.142380px;}
.ls85_c00376{letter-spacing:-0.135600px;}
.lsa6_c00376{letter-spacing:-0.128820px;}
.ls91_c00376{letter-spacing:-0.108480px;}
.lsa5_c00376{letter-spacing:-0.101700px;}
.ls7f_c00376{letter-spacing:-0.094920px;}
.ls81_c00376{letter-spacing:0.000000px;}
.lsa8_c00376{letter-spacing:0.020340px;}
.ls2c_c00376{letter-spacing:0.033900px;}
.ls8d_c00376{letter-spacing:0.094920px;}
.ls2a_c00376{letter-spacing:0.128820px;}
.ls12_c00376{letter-spacing:0.155940px;}
.ls3f_c00376{letter-spacing:0.196620px;}
.ls26_c00376{letter-spacing:0.210180px;}
.ls72_c00376{letter-spacing:0.216960px;}
.ls6_c00376{letter-spacing:0.311880px;}
.ls6d_c00376{letter-spacing:0.318660px;}
.ls71_c00376{letter-spacing:0.332220px;}
.ls5_c00376{letter-spacing:0.339000px;}
.lsa_c00376{letter-spacing:0.345780px;}
.ls46_c00376{letter-spacing:0.386460px;}
.ls33_c00376{letter-spacing:0.413580px;}
.ls10_c00376{letter-spacing:0.427140px;}
.ls19_c00376{letter-spacing:0.467820px;}
.ls92_c00376{letter-spacing:0.481380px;}
.ls42_c00376{letter-spacing:0.494940px;}
.ls2d_c00376{letter-spacing:0.508500px;}
.ls1d_c00376{letter-spacing:0.535620px;}
.ls22_c00376{letter-spacing:0.549180px;}
.ls63_c00376{letter-spacing:0.555960px;}
.ls3b_c00376{letter-spacing:0.562740px;}
.ls6b_c00376{letter-spacing:0.583080px;}
.ls3c_c00376{letter-spacing:0.589860px;}
.ls5f_c00376{letter-spacing:0.603420px;}
.ls36_c00376{letter-spacing:0.610200px;}
.ls5d_c00376{letter-spacing:0.616980px;}
.ls4_c00376{letter-spacing:0.623760px;}
.ls13_c00376{letter-spacing:0.637320px;}
.ls62_c00376{letter-spacing:0.644100px;}
.ls16_c00376{letter-spacing:0.664440px;}
.ls8_c00376{letter-spacing:0.678000px;}
.ls67_c00376{letter-spacing:0.691560px;}
.ls7a_c00376{letter-spacing:0.698340px;}
.ls5b_c00376{letter-spacing:0.705120px;}
.ls95_c00376{letter-spacing:0.718680px;}
.ls2f_c00376{letter-spacing:0.725460px;}
.ls39_c00376{letter-spacing:0.732240px;}
.ls40_c00376{letter-spacing:0.739020px;}
.ls45_c00376{letter-spacing:0.745800px;}
.ls34_c00376{letter-spacing:0.752580px;}
.ls17_c00376{letter-spacing:0.759360px;}
.ls59_c00376{letter-spacing:0.766140px;}
.lsf_c00376{letter-spacing:0.779700px;}
.ls2_c00376{letter-spacing:0.786480px;}
.ls49_c00376{letter-spacing:0.793260px;}
.ls9_c00376{letter-spacing:0.820380px;}
.ls1_c00376{letter-spacing:0.827160px;}
.ls5e_c00376{letter-spacing:0.833940px;}
.ls1f_c00376{letter-spacing:0.840720px;}
.ls4e_c00376{letter-spacing:0.847500px;}
.ls75_c00376{letter-spacing:0.861060px;}
.ls4d_c00376{letter-spacing:0.867840px;}
.lse_c00376{letter-spacing:0.874620px;}
.ls9d_c00376{letter-spacing:0.881400px;}
.ls7c_c00376{letter-spacing:0.889200px;}
.ls20_c00376{letter-spacing:0.894960px;}
.ls66_c00376{letter-spacing:0.901740px;}
.ls1b_c00376{letter-spacing:0.908520px;}
.ls1c_c00376{letter-spacing:0.928860px;}
.ls54_c00376{letter-spacing:0.935640px;}
.ls6a_c00376{letter-spacing:0.942420px;}
.lsd_c00376{letter-spacing:0.949200px;}
.ls77_c00376{letter-spacing:0.962760px;}
.lsb_c00376{letter-spacing:0.969540px;}
.ls94_c00376{letter-spacing:0.976320px;}
.ls65_c00376{letter-spacing:0.989880px;}
.ls53_c00376{letter-spacing:1.003440px;}
.ls73_c00376{letter-spacing:1.010220px;}
.ls38_c00376{letter-spacing:1.030560px;}
.ls11_c00376{letter-spacing:1.044120px;}
.ls61_c00376{letter-spacing:1.050900px;}
.ls21_c00376{letter-spacing:1.057680px;}
.ls70_c00376{letter-spacing:1.064460px;}
.ls43_c00376{letter-spacing:1.071240px;}
.ls51_c00376{letter-spacing:1.078020px;}
.ls41_c00376{letter-spacing:1.091580px;}
.ls69_c00376{letter-spacing:1.098360px;}
.ls52_c00376{letter-spacing:1.105140px;}
.ls1e_c00376{letter-spacing:1.118700px;}
.ls2b_c00376{letter-spacing:1.125480px;}
.ls1a_c00376{letter-spacing:1.132260px;}
.ls9a_c00376{letter-spacing:1.139040px;}
.ls96_c00376{letter-spacing:1.159380px;}
.ls5a_c00376{letter-spacing:1.166160px;}
.ls37_c00376{letter-spacing:1.179720px;}
.ls31_c00376{letter-spacing:1.186500px;}
.ls97_c00376{letter-spacing:1.200060px;}
.ls68_c00376{letter-spacing:1.220400px;}
.ls0_c00376{letter-spacing:1.227180px;}
.ls3a_c00376{letter-spacing:1.247520px;}
.ls79_c00376{letter-spacing:1.261080px;}
.ls2e_c00376{letter-spacing:1.274640px;}
.lsa3_c00376{letter-spacing:1.281420px;}
.ls47_c00376{letter-spacing:1.288200px;}
.ls44_c00376{letter-spacing:1.328880px;}
.ls74_c00376{letter-spacing:1.369560px;}
.ls27_c00376{letter-spacing:1.376340px;}
.ls6f_c00376{letter-spacing:1.383120px;}
.ls15_c00376{letter-spacing:1.410240px;}
.ls4a_c00376{letter-spacing:1.444140px;}
.ls57_c00376{letter-spacing:1.478040px;}
.ls56_c00376{letter-spacing:1.484820px;}
.ls3d_c00376{letter-spacing:1.491600px;}
.ls4f_c00376{letter-spacing:1.505160px;}
.ls25_c00376{letter-spacing:1.511940px;}
.ls58_c00376{letter-spacing:1.545840px;}
.ls55_c00376{letter-spacing:1.579740px;}
.ls84_c00376{letter-spacing:1.586520px;}
.ls3_c00376{letter-spacing:1.593300px;}
.ls29_c00376{letter-spacing:1.606860px;}
.ls78_c00376{letter-spacing:1.667880px;}
.ls64_c00376{letter-spacing:1.769580px;}
.ls4b_c00376{letter-spacing:1.830600px;}
.ls48_c00376{letter-spacing:1.837380px;}
.ls50_c00376{letter-spacing:1.898400px;}
.ls7_c00376{letter-spacing:1.911960px;}
.ls3e_c00376{letter-spacing:1.918740px;}
.ls32_c00376{letter-spacing:1.932300px;}
.ls14_c00376{letter-spacing:1.939080px;}
.ls60_c00376{letter-spacing:2.067900px;}
.ls6e_c00376{letter-spacing:2.128920px;}
.ls5c_c00376{letter-spacing:2.162820px;}
.ls28_c00376{letter-spacing:2.203500px;}
.lsc_c00376{letter-spacing:2.298420px;}
.ls24_c00376{letter-spacing:2.495040px;}
.ls76_c00376{letter-spacing:2.528940px;}
.ls23_c00376{letter-spacing:2.576400px;}
.ls35_c00376{letter-spacing:2.637420px;}
.ls4c_c00376{letter-spacing:2.800140px;}
.ls18_c00376{letter-spacing:2.854380px;}
.lsab_c00376{letter-spacing:2.874720px;}
.ls30_c00376{letter-spacing:2.942520px;}
.ls6c_c00376{letter-spacing:3.356100px;}
.ls8a_c00376{letter-spacing:3.390000px;}
.ls7d_c00376{letter-spacing:3.420000px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{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__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00376{word-spacing:0.000000px;}
.ws1_c00376{word-spacing:0.122040px;}
.ws0_c00376{word-spacing:5.844360px;}
.ws2_c00376{word-spacing:8.678400px;}
.ws3_c00376{word-spacing:9.898800px;}
._17_c00376{margin-left:-9.450900px;}
._8_c00376{margin-left:-6.942720px;}
._b_c00376{margin-left:-5.261280px;}
._9_c00376{margin-left:-3.570120px;}
._c_c00376{margin-left:-2.034000px;}
._18_c00376{margin-left:-1.017000px;}
._e_c00376{width:1.078020px;}
._1_c00376{width:2.101800px;}
._2_c00376{width:3.295080px;}
._0_c00376{width:5.139240px;}
._5_c00376{width:6.149460px;}
._d_c00376{width:7.871580px;}
._6_c00376{width:8.915700px;}
._4_c00376{width:10.095420px;}
._15_c00376{width:11.363280px;}
._7_c00376{width:12.868440px;}
._3_c00376{width:14.373600px;}
._a_c00376{width:15.865200px;}
._16_c00376{width:19.472160px;}
._11_c00376{width:22.536720px;}
._f_c00376{width:24.733440px;}
._10_c00376{width:27.025080px;}
._13_c00376{width:28.204800px;}
._12_c00376{width:30.591360px;}
._14_c00376{width:32.218560px;}
.fc0_c00376{color:transparent;}
.fs4_c00376{font-size:61.800000px;}
.fs6_c00376{font-size:65.400000px;}
.fs0_c00376{font-size:66.600000px;}
.fs2_c00376{font-size:67.800000px;}
.fs1_c00376{font-size:68.400000px;}
.fs5_c00376{font-size:69.000000px;}
.fs3_c00376{font-size:71.400000px;}
.y0_c00376{bottom:0.000000px;}
.y23_c00376{bottom:67.335000px;}
.y22_c00376{bottom:127.072350px;}
.y21_c00376{bottom:158.040000px;}
.y1f_c00376{bottom:219.251400px;}
.y20_c00376{bottom:219.255000px;}
.y1d_c00376{bottom:250.572600px;}
.y1e_c00376{bottom:250.575000px;}
.y1c_c00376{bottom:281.540250px;}
.y1b_c00376{bottom:312.135000px;}
.y1a_c00376{bottom:342.723300px;}
.y19_c00376{bottom:373.335000px;}
.y17_c00376{bottom:435.238950px;}
.y18_c00376{bottom:435.240000px;}
.y16_c00376{bottom:498.615000px;}
.y15_c00376{bottom:529.560000px;}
.y14_c00376{bottom:560.181900px;}
.y13_c00376{bottom:591.488550px;}
.y12_c00376{bottom:622.100250px;}
.y10_c00376{bottom:652.694250px;}
.y11_c00376{bottom:652.695000px;}
.yf_c00376{bottom:683.644950px;}
.ye_c00376{bottom:714.612600px;}
.yd_c00376{bottom:776.185500px;}
.yc_c00376{bottom:806.763300px;}
.yb_c00376{bottom:837.375000px;}
.y9_c00376{bottom:868.329300px;}
.ya_c00376{bottom:868.335000px;}
.y8_c00376{bottom:899.283300px;}
.y7_c00376{bottom:929.895000px;}
.y6_c00376{bottom:929.897850px;}
.y5_c00376{bottom:991.087350px;}
.y4_c00376{bottom:1022.063850px;}
.y3_c00376{bottom:1082.897400px;}
.y2_c00376{bottom:1114.560000px;}
.y1_c00376{bottom:1189.080000px;}
.h9_c00376{height:64.186523px;}
.h7_c00376{height:64.455469px;}
.h2_c00376{height:65.364258px;}
.h5_c00376{height:66.508887px;}
.h4_c00376{height:66.541992px;}
.h3_c00376{height:67.097461px;}
.h8_c00376{height:67.719727px;}
.h6_c00376{height:71.957813px;}
.h1_c00376{height:1263.000000px;}
.h0_c00376{height:1263.240000px;}
.w1_c00376{width:892.500000px;}
.w0_c00376{width:892.800000px;}
.x0_c00376{left:0.000000px;}
.x1_c00376{left:120.885000px;}
.xa_c00376{left:122.200350px;}
.x1b_c00376{left:123.615000px;}
.x5_c00376{left:174.872550px;}
.x9_c00376{left:176.055000px;}
.x1e_c00376{left:199.980000px;}
.x20_c00376{left:210.450000px;}
.x1f_c00376{left:224.115000px;}
.xd_c00376{left:227.055000px;}
.x21_c00376{left:242.805000px;}
.x6_c00376{left:260.445000px;}
.x2_c00376{left:268.365000px;}
.xe_c00376{left:296.460000px;}
.xf_c00376{left:319.215000px;}
.x7_c00376{left:338.685000px;}
.x10_c00376{left:362.325000px;}
.x3_c00376{left:375.045000px;}
.x18_c00376{left:395.205000px;}
.x4_c00376{left:423.885000px;}
.x19_c00376{left:427.140000px;}
.x11_c00376{left:439.005000px;}
.xb_c00376{left:490.860000px;}
.xc_c00376{left:511.890000px;}
.x12_c00376{left:519.390000px;}
.x1a_c00376{left:535.245000px;}
.x13_c00376{left:549.540000px;}
.x8_c00376{left:552.420000px;}
.x1c_c00376{left:562.140000px;}
.x14_c00376{left:563.670000px;}
.x22_c00376{left:566.430000px;}
.x1d_c00376{left:586.620000px;}
.x15_c00376{left:613.350000px;}
.x16_c00376{left:720.330000px;}
.x17_c00376{left:735.735000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls9b_c00376{letter-spacing:-2.221333pt;}
.ls9e_c00376{letter-spacing:-2.146667pt;}
.ls8e_c00376{letter-spacing:-2.109333pt;}
.ls7b_c00376{letter-spacing:-2.072000pt;}
.lsac_c00376{letter-spacing:-2.034667pt;}
.ls8b_c00376{letter-spacing:-1.458453pt;}
.lsaa_c00376{letter-spacing:-1.422293pt;}
.ls9c_c00376{letter-spacing:-1.351840pt;}
.ls9f_c00376{letter-spacing:-1.289707pt;}
.lsa7_c00376{letter-spacing:-1.271627pt;}
.ls93_c00376{letter-spacing:-1.259573pt;}
.ls80_c00376{letter-spacing:-1.253547pt;}
.ls99_c00376{letter-spacing:-1.247520pt;}
.ls83_c00376{letter-spacing:-0.867840pt;}
.ls7e_c00376{letter-spacing:-0.771413pt;}
.ls90_c00376{letter-spacing:-0.759360pt;}
.lsa2_c00376{letter-spacing:-0.753333pt;}
.ls87_c00376{letter-spacing:-0.656907pt;}
.lsa1_c00376{letter-spacing:-0.506240pt;}
.ls89_c00376{letter-spacing:-0.500213pt;}
.ls86_c00376{letter-spacing:-0.445973pt;}
.ls82_c00376{letter-spacing:-0.439947pt;}
.ls98_c00376{letter-spacing:-0.319413pt;}
.ls88_c00376{letter-spacing:-0.313387pt;}
.lsa0_c00376{letter-spacing:-0.235040pt;}
.ls8c_c00376{letter-spacing:-0.180800pt;}
.lsa4_c00376{letter-spacing:-0.168747pt;}
.ls8f_c00376{letter-spacing:-0.156693pt;}
.lsa9_c00376{letter-spacing:-0.126560pt;}
.ls85_c00376{letter-spacing:-0.120533pt;}
.lsa6_c00376{letter-spacing:-0.114507pt;}
.ls91_c00376{letter-spacing:-0.096427pt;}
.lsa5_c00376{letter-spacing:-0.090400pt;}
.ls7f_c00376{letter-spacing:-0.084373pt;}
.ls81_c00376{letter-spacing:0.000000pt;}
.lsa8_c00376{letter-spacing:0.018080pt;}
.ls2c_c00376{letter-spacing:0.030133pt;}
.ls8d_c00376{letter-spacing:0.084373pt;}
.ls2a_c00376{letter-spacing:0.114507pt;}
.ls12_c00376{letter-spacing:0.138613pt;}
.ls3f_c00376{letter-spacing:0.174773pt;}
.ls26_c00376{letter-spacing:0.186827pt;}
.ls72_c00376{letter-spacing:0.192853pt;}
.ls6_c00376{letter-spacing:0.277227pt;}
.ls6d_c00376{letter-spacing:0.283253pt;}
.ls71_c00376{letter-spacing:0.295307pt;}
.ls5_c00376{letter-spacing:0.301333pt;}
.lsa_c00376{letter-spacing:0.307360pt;}
.ls46_c00376{letter-spacing:0.343520pt;}
.ls33_c00376{letter-spacing:0.367627pt;}
.ls10_c00376{letter-spacing:0.379680pt;}
.ls19_c00376{letter-spacing:0.415840pt;}
.ls92_c00376{letter-spacing:0.427893pt;}
.ls42_c00376{letter-spacing:0.439947pt;}
.ls2d_c00376{letter-spacing:0.452000pt;}
.ls1d_c00376{letter-spacing:0.476107pt;}
.ls22_c00376{letter-spacing:0.488160pt;}
.ls63_c00376{letter-spacing:0.494187pt;}
.ls3b_c00376{letter-spacing:0.500213pt;}
.ls6b_c00376{letter-spacing:0.518293pt;}
.ls3c_c00376{letter-spacing:0.524320pt;}
.ls5f_c00376{letter-spacing:0.536373pt;}
.ls36_c00376{letter-spacing:0.542400pt;}
.ls5d_c00376{letter-spacing:0.548427pt;}
.ls4_c00376{letter-spacing:0.554453pt;}
.ls13_c00376{letter-spacing:0.566507pt;}
.ls62_c00376{letter-spacing:0.572533pt;}
.ls16_c00376{letter-spacing:0.590613pt;}
.ls8_c00376{letter-spacing:0.602667pt;}
.ls67_c00376{letter-spacing:0.614720pt;}
.ls7a_c00376{letter-spacing:0.620747pt;}
.ls5b_c00376{letter-spacing:0.626773pt;}
.ls95_c00376{letter-spacing:0.638827pt;}
.ls2f_c00376{letter-spacing:0.644853pt;}
.ls39_c00376{letter-spacing:0.650880pt;}
.ls40_c00376{letter-spacing:0.656907pt;}
.ls45_c00376{letter-spacing:0.662933pt;}
.ls34_c00376{letter-spacing:0.668960pt;}
.ls17_c00376{letter-spacing:0.674987pt;}
.ls59_c00376{letter-spacing:0.681013pt;}
.lsf_c00376{letter-spacing:0.693067pt;}
.ls2_c00376{letter-spacing:0.699093pt;}
.ls49_c00376{letter-spacing:0.705120pt;}
.ls9_c00376{letter-spacing:0.729227pt;}
.ls1_c00376{letter-spacing:0.735253pt;}
.ls5e_c00376{letter-spacing:0.741280pt;}
.ls1f_c00376{letter-spacing:0.747307pt;}
.ls4e_c00376{letter-spacing:0.753333pt;}
.ls75_c00376{letter-spacing:0.765387pt;}
.ls4d_c00376{letter-spacing:0.771413pt;}
.lse_c00376{letter-spacing:0.777440pt;}
.ls9d_c00376{letter-spacing:0.783467pt;}
.ls7c_c00376{letter-spacing:0.790400pt;}
.ls20_c00376{letter-spacing:0.795520pt;}
.ls66_c00376{letter-spacing:0.801547pt;}
.ls1b_c00376{letter-spacing:0.807573pt;}
.ls1c_c00376{letter-spacing:0.825653pt;}
.ls54_c00376{letter-spacing:0.831680pt;}
.ls6a_c00376{letter-spacing:0.837707pt;}
.lsd_c00376{letter-spacing:0.843733pt;}
.ls77_c00376{letter-spacing:0.855787pt;}
.lsb_c00376{letter-spacing:0.861813pt;}
.ls94_c00376{letter-spacing:0.867840pt;}
.ls65_c00376{letter-spacing:0.879893pt;}
.ls53_c00376{letter-spacing:0.891947pt;}
.ls73_c00376{letter-spacing:0.897973pt;}
.ls38_c00376{letter-spacing:0.916053pt;}
.ls11_c00376{letter-spacing:0.928107pt;}
.ls61_c00376{letter-spacing:0.934133pt;}
.ls21_c00376{letter-spacing:0.940160pt;}
.ls70_c00376{letter-spacing:0.946187pt;}
.ls43_c00376{letter-spacing:0.952213pt;}
.ls51_c00376{letter-spacing:0.958240pt;}
.ls41_c00376{letter-spacing:0.970293pt;}
.ls69_c00376{letter-spacing:0.976320pt;}
.ls52_c00376{letter-spacing:0.982347pt;}
.ls1e_c00376{letter-spacing:0.994400pt;}
.ls2b_c00376{letter-spacing:1.000427pt;}
.ls1a_c00376{letter-spacing:1.006453pt;}
.ls9a_c00376{letter-spacing:1.012480pt;}
.ls96_c00376{letter-spacing:1.030560pt;}
.ls5a_c00376{letter-spacing:1.036587pt;}
.ls37_c00376{letter-spacing:1.048640pt;}
.ls31_c00376{letter-spacing:1.054667pt;}
.ls97_c00376{letter-spacing:1.066720pt;}
.ls68_c00376{letter-spacing:1.084800pt;}
.ls0_c00376{letter-spacing:1.090827pt;}
.ls3a_c00376{letter-spacing:1.108907pt;}
.ls79_c00376{letter-spacing:1.120960pt;}
.ls2e_c00376{letter-spacing:1.133013pt;}
.lsa3_c00376{letter-spacing:1.139040pt;}
.ls47_c00376{letter-spacing:1.145067pt;}
.ls44_c00376{letter-spacing:1.181227pt;}
.ls74_c00376{letter-spacing:1.217387pt;}
.ls27_c00376{letter-spacing:1.223413pt;}
.ls6f_c00376{letter-spacing:1.229440pt;}
.ls15_c00376{letter-spacing:1.253547pt;}
.ls4a_c00376{letter-spacing:1.283680pt;}
.ls57_c00376{letter-spacing:1.313813pt;}
.ls56_c00376{letter-spacing:1.319840pt;}
.ls3d_c00376{letter-spacing:1.325867pt;}
.ls4f_c00376{letter-spacing:1.337920pt;}
.ls25_c00376{letter-spacing:1.343947pt;}
.ls58_c00376{letter-spacing:1.374080pt;}
.ls55_c00376{letter-spacing:1.404213pt;}
.ls84_c00376{letter-spacing:1.410240pt;}
.ls3_c00376{letter-spacing:1.416267pt;}
.ls29_c00376{letter-spacing:1.428320pt;}
.ls78_c00376{letter-spacing:1.482560pt;}
.ls64_c00376{letter-spacing:1.572960pt;}
.ls4b_c00376{letter-spacing:1.627200pt;}
.ls48_c00376{letter-spacing:1.633227pt;}
.ls50_c00376{letter-spacing:1.687467pt;}
.ls7_c00376{letter-spacing:1.699520pt;}
.ls3e_c00376{letter-spacing:1.705547pt;}
.ls32_c00376{letter-spacing:1.717600pt;}
.ls14_c00376{letter-spacing:1.723627pt;}
.ls60_c00376{letter-spacing:1.838133pt;}
.ls6e_c00376{letter-spacing:1.892373pt;}
.ls5c_c00376{letter-spacing:1.922507pt;}
.ls28_c00376{letter-spacing:1.958667pt;}
.lsc_c00376{letter-spacing:2.043040pt;}
.ls24_c00376{letter-spacing:2.217813pt;}
.ls76_c00376{letter-spacing:2.247947pt;}
.ls23_c00376{letter-spacing:2.290133pt;}
.ls35_c00376{letter-spacing:2.344373pt;}
.ls4c_c00376{letter-spacing:2.489013pt;}
.ls18_c00376{letter-spacing:2.537227pt;}
.lsab_c00376{letter-spacing:2.555307pt;}
.ls30_c00376{letter-spacing:2.615573pt;}
.ls6c_c00376{letter-spacing:2.983200pt;}
.ls8a_c00376{letter-spacing:3.013333pt;}
.ls7d_c00376{letter-spacing:3.040000pt;}
.ws4_c00376{word-spacing:0.000000pt;}
.ws1_c00376{word-spacing:0.108480pt;}
.ws0_c00376{word-spacing:5.194987pt;}
.ws2_c00376{word-spacing:7.714133pt;}
.ws3_c00376{word-spacing:8.798933pt;}
._17_c00376{margin-left:-8.400800pt;}
._8_c00376{margin-left:-6.171307pt;}
._b_c00376{margin-left:-4.676693pt;}
._9_c00376{margin-left:-3.173440pt;}
._c_c00376{margin-left:-1.808000pt;}
._18_c00376{margin-left:-0.904000pt;}
._e_c00376{width:0.958240pt;}
._1_c00376{width:1.868267pt;}
._2_c00376{width:2.928960pt;}
._0_c00376{width:4.568213pt;}
._5_c00376{width:5.466187pt;}
._d_c00376{width:6.996960pt;}
._6_c00376{width:7.925067pt;}
._4_c00376{width:8.973707pt;}
._15_c00376{width:10.100693pt;}
._7_c00376{width:11.438613pt;}
._3_c00376{width:12.776533pt;}
._a_c00376{width:14.102400pt;}
._16_c00376{width:17.308587pt;}
._11_c00376{width:20.032640pt;}
._f_c00376{width:21.985280pt;}
._10_c00376{width:24.022293pt;}
._13_c00376{width:25.070933pt;}
._12_c00376{width:27.192320pt;}
._14_c00376{width:28.638720pt;}
.fs4_c00376{font-size:54.933333pt;}
.fs6_c00376{font-size:58.133333pt;}
.fs0_c00376{font-size:59.200000pt;}
.fs2_c00376{font-size:60.266667pt;}
.fs1_c00376{font-size:60.800000pt;}
.fs5_c00376{font-size:61.333333pt;}
.fs3_c00376{font-size:63.466667pt;}
.y0_c00376{bottom:0.000000pt;}
.y23_c00376{bottom:59.853333pt;}
.y22_c00376{bottom:112.953200pt;}
.y21_c00376{bottom:140.480000pt;}
.y1f_c00376{bottom:194.890133pt;}
.y20_c00376{bottom:194.893333pt;}
.y1d_c00376{bottom:222.731200pt;}
.y1e_c00376{bottom:222.733333pt;}
.y1c_c00376{bottom:250.258000pt;}
.y1b_c00376{bottom:277.453333pt;}
.y1a_c00376{bottom:304.642933pt;}
.y19_c00376{bottom:331.853333pt;}
.y17_c00376{bottom:386.879067pt;}
.y18_c00376{bottom:386.880000pt;}
.y16_c00376{bottom:443.213333pt;}
.y15_c00376{bottom:470.720000pt;}
.y14_c00376{bottom:497.939467pt;}
.y13_c00376{bottom:525.767600pt;}
.y12_c00376{bottom:552.978000pt;}
.y10_c00376{bottom:580.172667pt;}
.y11_c00376{bottom:580.173333pt;}
.yf_c00376{bottom:607.684400pt;}
.ye_c00376{bottom:635.211200pt;}
.yd_c00376{bottom:689.942667pt;}
.yc_c00376{bottom:717.122933pt;}
.yb_c00376{bottom:744.333333pt;}
.y9_c00376{bottom:771.848267pt;}
.ya_c00376{bottom:771.853333pt;}
.y8_c00376{bottom:799.362933pt;}
.y7_c00376{bottom:826.573333pt;}
.y6_c00376{bottom:826.575867pt;}
.y5_c00376{bottom:880.966533pt;}
.y4_c00376{bottom:908.501200pt;}
.y3_c00376{bottom:962.575467pt;}
.y2_c00376{bottom:990.720000pt;}
.y1_c00376{bottom:1056.960000pt;}
.h9_c00376{height:57.054688pt;}
.h7_c00376{height:57.293750pt;}
.h2_c00376{height:58.101562pt;}
.h5_c00376{height:59.119010pt;}
.h4_c00376{height:59.148438pt;}
.h3_c00376{height:59.642187pt;}
.h8_c00376{height:60.195312pt;}
.h6_c00376{height:63.962500pt;}
.h1_c00376{height:1122.666667pt;}
.h0_c00376{height:1122.880000pt;}
.w1_c00376{width:793.333333pt;}
.w0_c00376{width:793.600000pt;}
.x0_c00376{left:0.000000pt;}
.x1_c00376{left:107.453333pt;}
.xa_c00376{left:108.622533pt;}
.x1b_c00376{left:109.880000pt;}
.x5_c00376{left:155.442267pt;}
.x9_c00376{left:156.493333pt;}
.x1e_c00376{left:177.760000pt;}
.x20_c00376{left:187.066667pt;}
.x1f_c00376{left:199.213333pt;}
.xd_c00376{left:201.826667pt;}
.x21_c00376{left:215.826667pt;}
.x6_c00376{left:231.506667pt;}
.x2_c00376{left:238.546667pt;}
.xe_c00376{left:263.520000pt;}
.xf_c00376{left:283.746667pt;}
.x7_c00376{left:301.053333pt;}
.x10_c00376{left:322.066667pt;}
.x3_c00376{left:333.373333pt;}
.x18_c00376{left:351.293333pt;}
.x4_c00376{left:376.786667pt;}
.x19_c00376{left:379.680000pt;}
.x11_c00376{left:390.226667pt;}
.xb_c00376{left:436.320000pt;}
.xc_c00376{left:455.013333pt;}
.x12_c00376{left:461.680000pt;}
.x1a_c00376{left:475.773333pt;}
.x13_c00376{left:488.480000pt;}
.x8_c00376{left:491.040000pt;}
.x1c_c00376{left:499.680000pt;}
.x14_c00376{left:501.040000pt;}
.x22_c00376{left:503.493333pt;}
.x1d_c00376{left:521.440000pt;}
.x15_c00376{left:545.200000pt;}
.x16_c00376{left:640.293333pt;}
.x17_c00376{left:653.986667pt;}
}





/* 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_c00377 {
    display:none;
  }
  .loading-indicator_c00377.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00377 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_c00377 { 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_c00377" -> "#page-container .classname_c00377")
 */
.pf_c00377 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00377 { /* 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_c00377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00377 { /* 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_c00377 { /* 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_c00377 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00377 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00377 {overflow:visible;}
  }
}
.c_c00377 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00377 { /* 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_c00377:after { /* webkit #35443 */
  content: '';
}
.t_c00377:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00377 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 */
}
.__c00377 { /* 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_c00377 { /* info for Javascript */
  display:none;
}
.l_c00377 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00377 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00377 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00377: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_c00377 {
    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_c00377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00377.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_c00377 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00377;src:url('chunks/assets/font_aa834ae430f796a3b56360c3.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.284668;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_c00377;src:url('chunks/assets/font_05c2d18f81c50deeecb0bce4.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.284180;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_c00377;src:url('chunks/assets/font_8a295eb4560930359a880c9f.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:0.666000;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_c00377;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;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:ff5_c00377;src:url('chunks/assets/font_cec604c6b55b5dbdaa6f1c9f.woff2')format("woff");}.ff5_c00377{font-family:ff5_c00377;line-height:1.311035;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_c00377;src:url('chunks/assets/font_001da714cac2dfa6864bc477.woff2')format("woff");}.ff6_c00377{font-family:ff6_c00377;line-height:1.284180;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_c00377;src:url('chunks/assets/font_4c5ba8aa3e6cdb8864704e4f.woff2')format("woff");}.ff7_c00377{font-family:ff7_c00377;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;}
.me_c00377{transform:matrix(0.092345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092345,0.000000,0.000000,0.250000,0,0);}
.m5_c00377{transform:matrix(0.125003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125003,0.000000,0.000000,0.250000,0,0);}
.mc_c00377{transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);}
.m10_c00377{transform:matrix(0.229191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229191,0.000000,0.000000,0.250000,0,0);}
.m11_c00377{transform:matrix(0.234546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234546,0.000000,0.000000,0.250000,0,0);}
.m9_c00377{transform:matrix(0.237806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237806,0.000000,0.000000,0.250000,0,0);}
.mf_c00377{transform:matrix(0.241361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241361,0.000000,0.000000,0.250000,0,0);}
.m6_c00377{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.ma_c00377{transform:matrix(0.244129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244129,0.000000,0.000000,0.250000,0,0);}
.m3_c00377{transform:matrix(0.246607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246607,0.000000,0.000000,0.250000,0,0);}
.md_c00377{transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);}
.mb_c00377{transform:matrix(0.248307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248307,0.000000,0.000000,0.250000,0,0);}
.m0_c00377{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m8_c00377{transform:matrix(0.248671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248671,0.000000,0.000000,0.250000,0,0);}
.m7_c00377{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m1_c00377{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);}
.m4_c00377{transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);}
.m2_c00377{transform:matrix(0.286560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286560,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls8a_c00377{letter-spacing:-2.562000px;}
.ls8b_c00377{letter-spacing:-2.520000px;}
.ls79_c00377{letter-spacing:-2.488320px;}
.ls8c_c00377{letter-spacing:-2.478000px;}
.ls42_c00377{letter-spacing:-2.457000px;}
.ls5b_c00377{letter-spacing:-2.373000px;}
.ls3c_c00377{letter-spacing:-2.331000px;}
.ls43_c00377{letter-spacing:-2.309580px;}
.ls78_c00377{letter-spacing:-2.234880px;}
.ls3e_c00377{letter-spacing:-2.204280px;}
.ls7f_c00377{letter-spacing:-2.035800px;}
.ls82_c00377{letter-spacing:-1.839240px;}
.ls46_c00377{letter-spacing:-1.670760px;}
.ls84_c00377{letter-spacing:-1.642680px;}
.ls54_c00377{letter-spacing:-1.635660px;}
.ls56_c00377{letter-spacing:-1.628640px;}
.ls57_c00377{letter-spacing:-1.385160px;}
.ls85_c00377{letter-spacing:-1.361880px;}
.ls87_c00377{letter-spacing:-1.249560px;}
.ls86_c00377{letter-spacing:-1.165320px;}
.ls7b_c00377{letter-spacing:-1.045980px;}
.ls45_c00377{letter-spacing:-0.989820px;}
.ls5d_c00377{letter-spacing:-0.968760px;}
.ls50_c00377{letter-spacing:-0.949620px;}
.ls6c_c00377{letter-spacing:-0.919620px;}
.ls89_c00377{letter-spacing:-0.891540px;}
.ls72_c00377{letter-spacing:-0.863460px;}
.ls7d_c00377{letter-spacing:-0.856440px;}
.ls60_c00377{letter-spacing:-0.828360px;}
.ls55_c00377{letter-spacing:-0.793260px;}
.ls4f_c00377{letter-spacing:-0.785400px;}
.ls75_c00377{letter-spacing:-0.772200px;}
.ls44_c00377{letter-spacing:-0.765180px;}
.ls4b_c00377{letter-spacing:-0.744120px;}
.ls88_c00377{letter-spacing:-0.596700px;}
.ls83_c00377{letter-spacing:-0.575640px;}
.ls61_c00377{letter-spacing:-0.561600px;}
.ls47_c00377{letter-spacing:-0.554580px;}
.ls5c_c00377{letter-spacing:-0.533520px;}
.ls81_c00377{letter-spacing:-0.526500px;}
.ls6e_c00377{letter-spacing:-0.491400px;}
.ls5a_c00377{letter-spacing:-0.470340px;}
.ls62_c00377{letter-spacing:-0.442260px;}
.ls7c_c00377{letter-spacing:-0.386100px;}
.ls5e_c00377{letter-spacing:-0.372060px;}
.ls70_c00377{letter-spacing:-0.365040px;}
.ls68_c00377{letter-spacing:-0.358020px;}
.ls80_c00377{letter-spacing:-0.301860px;}
.ls4d_c00377{letter-spacing:-0.294840px;}
.ls76_c00377{letter-spacing:-0.278460px;}
.ls73_c00377{letter-spacing:-0.238680px;}
.ls53_c00377{letter-spacing:-0.224640px;}
.ls4c_c00377{letter-spacing:-0.217620px;}
.ls69_c00377{letter-spacing:-0.203580px;}
.ls65_c00377{letter-spacing:-0.196560px;}
.ls7e_c00377{letter-spacing:-0.189540px;}
.ls3f_c00377{letter-spacing:-0.168480px;}
.ls64_c00377{letter-spacing:-0.161460px;}
.ls7a_c00377{letter-spacing:-0.154440px;}
.ls49_c00377{letter-spacing:-0.140400px;}
.ls71_c00377{letter-spacing:-0.133380px;}
.ls63_c00377{letter-spacing:-0.112320px;}
.ls52_c00377{letter-spacing:-0.105300px;}
.ls4a_c00377{letter-spacing:-0.098280px;}
.ls51_c00377{letter-spacing:-0.091260px;}
.ls77_c00377{letter-spacing:-0.085680px;}
.ls5f_c00377{letter-spacing:-0.084240px;}
.ls4e_c00377{letter-spacing:-0.077220px;}
.ls67_c00377{letter-spacing:-0.070200px;}
.ls6a_c00377{letter-spacing:-0.042120px;}
.ls3d_c00377{letter-spacing:-0.035100px;}
.ls59_c00377{letter-spacing:-0.014040px;}
.ls6f_c00377{letter-spacing:-0.007020px;}
.ls41_c00377{letter-spacing:0.000000px;}
.ls66_c00377{letter-spacing:0.007020px;}
.lsa_c00377{letter-spacing:0.014040px;}
.ls12_c00377{letter-spacing:0.021060px;}
.ls6b_c00377{letter-spacing:0.028080px;}
.ls74_c00377{letter-spacing:0.035100px;}
.ls26_c00377{letter-spacing:0.042120px;}
.ls5_c00377{letter-spacing:0.049140px;}
.ls30_c00377{letter-spacing:0.056160px;}
.ls6_c00377{letter-spacing:0.070200px;}
.ls4_c00377{letter-spacing:0.077220px;}
.ls1_c00377{letter-spacing:0.091260px;}
.lsc_c00377{letter-spacing:0.098280px;}
.ls25_c00377{letter-spacing:0.112320px;}
.ls7_c00377{letter-spacing:0.119340px;}
.ls48_c00377{letter-spacing:0.133380px;}
.ls10_c00377{letter-spacing:0.161460px;}
.ls1c_c00377{letter-spacing:0.175500px;}
.ls20_c00377{letter-spacing:0.182520px;}
.ls2b_c00377{letter-spacing:0.189540px;}
.ls2c_c00377{letter-spacing:0.196560px;}
.lsf_c00377{letter-spacing:0.203580px;}
.ls2d_c00377{letter-spacing:0.210600px;}
.ls24_c00377{letter-spacing:0.224640px;}
.ls28_c00377{letter-spacing:0.245700px;}
.ls1f_c00377{letter-spacing:0.252720px;}
.ls1e_c00377{letter-spacing:0.266760px;}
.ls9_c00377{letter-spacing:0.273780px;}
.ls29_c00377{letter-spacing:0.294840px;}
.ls14_c00377{letter-spacing:0.301860px;}
.ls39_c00377{letter-spacing:0.315900px;}
.ls6d_c00377{letter-spacing:0.365040px;}
.ls0_c00377{letter-spacing:0.372060px;}
.ls1a_c00377{letter-spacing:0.393120px;}
.ls22_c00377{letter-spacing:0.421200px;}
.ls2a_c00377{letter-spacing:0.456300px;}
.ls34_c00377{letter-spacing:0.463320px;}
.ls38_c00377{letter-spacing:0.470340px;}
.ls36_c00377{letter-spacing:0.491400px;}
.ls2_c00377{letter-spacing:0.519480px;}
.ls3b_c00377{letter-spacing:0.554580px;}
.ls18_c00377{letter-spacing:0.575640px;}
.ls23_c00377{letter-spacing:0.596700px;}
.ls16_c00377{letter-spacing:0.603720px;}
.ls2e_c00377{letter-spacing:0.631800px;}
.ls8_c00377{letter-spacing:0.673920px;}
.ls1d_c00377{letter-spacing:0.680940px;}
.ls58_c00377{letter-spacing:0.737100px;}
.ls13_c00377{letter-spacing:0.744120px;}
.ls2f_c00377{letter-spacing:0.779220px;}
.ls31_c00377{letter-spacing:0.807300px;}
.lse_c00377{letter-spacing:0.849420px;}
.ls8d_c00377{letter-spacing:0.905520px;}
.ls21_c00377{letter-spacing:0.905580px;}
.ls1b_c00377{letter-spacing:0.930240px;}
.ls27_c00377{letter-spacing:0.954720px;}
.ls33_c00377{letter-spacing:1.081080px;}
.lsd_c00377{letter-spacing:1.088100px;}
.ls17_c00377{letter-spacing:1.284660px;}
.ls15_c00377{letter-spacing:1.392300px;}
.ls37_c00377{letter-spacing:1.425060px;}
.ls3a_c00377{letter-spacing:1.670760px;}
.ls35_c00377{letter-spacing:1.769040px;}
.lsb_c00377{letter-spacing:1.804140px;}
.ls11_c00377{letter-spacing:1.818180px;}
.ls3_c00377{letter-spacing:1.867320px;}
.ls32_c00377{letter-spacing:2.485080px;}
.ls19_c00377{letter-spacing:3.257280px;}
.ls40_c00377{letter-spacing:3.510000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{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__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00377{word-spacing:0.000000px;}
.ws0_c00377{word-spacing:39.274620px;}
._13_c00377{margin-left:-8.087040px;}
._15_c00377{margin-left:-5.819580px;}
._7_c00377{margin-left:-4.190940px;}
._8_c00377{margin-left:-2.211300px;}
._3_c00377{margin-left:-1.095120px;}
._0_c00377{width:1.790100px;}
._5_c00377{width:3.257280px;}
._1_c00377{width:4.808700px;}
._6_c00377{width:6.458400px;}
._2_c00377{width:7.700940px;}
._4_c00377{width:9.666540px;}
._f_c00377{width:11.336400px;}
._12_c00377{width:13.368780px;}
._10_c00377{width:14.391000px;}
._e_c00377{width:15.654600px;}
._11_c00377{width:19.227780px;}
._17_c00377{width:22.098960px;}
._18_c00377{width:24.864840px;}
._16_c00377{width:26.444340px;}
._14_c00377{width:29.617380px;}
._b_c00377{width:30.768660px;}
._d_c00377{width:36.117900px;}
._a_c00377{width:37.255140px;}
._c_c00377{width:39.171600px;}
._9_c00377{width:41.340600px;}
.fc0_c00377{color:transparent;}
.fs3_c00377{font-size:53.280000px;}
.fsa_c00377{font-size:58.800000px;}
.fs0_c00377{font-size:66.600000px;}
.fs4_c00377{font-size:67.800000px;}
.fs5_c00377{font-size:68.400000px;}
.fs1_c00377{font-size:70.200000px;}
.fs9_c00377{font-size:70.800000px;}
.fs2_c00377{font-size:71.400000px;}
.fs8_c00377{font-size:72.000000px;}
.fs7_c00377{font-size:73.200000px;}
.fs6_c00377{font-size:76.800000px;}
.y0_c00377{bottom:0.000000px;}
.y1f_c00377{bottom:63.735000px;}
.y1e_c00377{bottom:123.840000px;}
.y1d_c00377{bottom:185.040000px;}
.y1c_c00377{bottom:185.048700px;}
.y1b_c00377{bottom:217.095000px;}
.y1a_c00377{bottom:248.055000px;}
.y19_c00377{bottom:248.058600px;}
.y17_c00377{bottom:309.970350px;}
.y18_c00377{bottom:309.975000px;}
.y16_c00377{bottom:340.560000px;}
.y15_c00377{bottom:402.110700px;}
.y14_c00377{bottom:463.325100px;}
.y13_c00377{bottom:494.985300px;}
.y12_c00377{bottom:525.961050px;}
.y11_c00377{bottom:556.568250px;}
.y10_c00377{bottom:587.892150px;}
.yf_c00377{bottom:618.850350px;}
.ye_c00377{bottom:649.440000px;}
.yd_c00377{bottom:680.415750px;}
.yc_c00377{bottom:742.332150px;}
.yb_c00377{bottom:803.876400px;}
.ya_c00377{bottom:865.810350px;}
.y9_c00377{bottom:896.400000px;}
.y8_c00377{bottom:927.359250px;}
.y7_c00377{bottom:958.335000px;}
.y6_c00377{bottom:1020.238800px;}
.y4_c00377{bottom:1050.492150px;}
.y5_c00377{bottom:1050.495000px;}
.y3_c00377{bottom:1081.081800px;}
.y2_c00377{bottom:1112.040000px;}
.y1_c00377{bottom:1188.720000px;}
.h6_c00377{height:35.484480px;}
.h10_c00377{height:57.708984px;}
.h2_c00377{height:65.364258px;}
.h3_c00377{height:68.897461px;}
.h9_c00377{height:68.908861px;}
.h8_c00377{height:68.948775px;}
.h4_c00377{height:70.040332px;}
.h5_c00377{height:70.043332px;}
.ha_c00377{height:70.077532px;}
.h7_c00377{height:70.713281px;}
.hc_c00377{height:71.806055px;}
.hd_c00377{height:72.562500px;}
.he_c00377{height:73.771875px;}
.hf_c00377{height:73.842188px;}
.hb_c00377{height:75.337500px;}
.h1_c00377{height:1263.000000px;}
.h0_c00377{height:1263.240000px;}
.w1_c00377{width:892.500000px;}
.w0_c00377{width:892.800000px;}
.x0_c00377{left:0.000000px;}
.x11_c00377{left:121.656000px;}
.xf_c00377{left:123.015600px;}
.xa_c00377{left:124.025100px;}
.x2_c00377{left:125.250000px;}
.x1_c00377{left:126.645000px;}
.x12_c00377{left:175.253700px;}
.x10_c00377{left:176.578200px;}
.x9_c00377{left:177.660000px;}
.xb_c00377{left:200.175000px;}
.x17_c00377{left:211.605000px;}
.xc_c00377{left:232.155000px;}
.x13_c00377{left:243.165000px;}
.x7_c00377{left:260.355000px;}
.x1a_c00377{left:264.765000px;}
.x14_c00377{left:271.335000px;}
.x1b_c00377{left:292.875000px;}
.x8_c00377{left:295.755000px;}
.x1c_c00377{left:365.880000px;}
.x1d_c00377{left:411.855000px;}
.x22_c00377{left:425.715000px;}
.x1e_c00377{left:455.040000px;}
.x18_c00377{left:456.285000px;}
.x19_c00377{left:485.805000px;}
.x1f_c00377{left:489.885000px;}
.xd_c00377{left:492.660000px;}
.x20_c00377{left:507.555000px;}
.xe_c00377{left:510.660000px;}
.x21_c00377{left:535.560000px;}
.x3_c00377{left:592.320000px;}
.x4_c00377{left:615.780000px;}
.x5_c00377{left:628.815000px;}
.x15_c00377{left:637.365000px;}
.x6_c00377{left:657.180000px;}
.x16_c00377{left:667.185000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls8a_c00377{letter-spacing:-2.277333pt;}
.ls8b_c00377{letter-spacing:-2.240000pt;}
.ls79_c00377{letter-spacing:-2.211840pt;}
.ls8c_c00377{letter-spacing:-2.202667pt;}
.ls42_c00377{letter-spacing:-2.184000pt;}
.ls5b_c00377{letter-spacing:-2.109333pt;}
.ls3c_c00377{letter-spacing:-2.072000pt;}
.ls43_c00377{letter-spacing:-2.052960pt;}
.ls78_c00377{letter-spacing:-1.986560pt;}
.ls3e_c00377{letter-spacing:-1.959360pt;}
.ls7f_c00377{letter-spacing:-1.809600pt;}
.ls82_c00377{letter-spacing:-1.634880pt;}
.ls46_c00377{letter-spacing:-1.485120pt;}
.ls84_c00377{letter-spacing:-1.460160pt;}
.ls54_c00377{letter-spacing:-1.453920pt;}
.ls56_c00377{letter-spacing:-1.447680pt;}
.ls57_c00377{letter-spacing:-1.231253pt;}
.ls85_c00377{letter-spacing:-1.210560pt;}
.ls87_c00377{letter-spacing:-1.110720pt;}
.ls86_c00377{letter-spacing:-1.035840pt;}
.ls7b_c00377{letter-spacing:-0.929760pt;}
.ls45_c00377{letter-spacing:-0.879840pt;}
.ls5d_c00377{letter-spacing:-0.861120pt;}
.ls50_c00377{letter-spacing:-0.844107pt;}
.ls6c_c00377{letter-spacing:-0.817440pt;}
.ls89_c00377{letter-spacing:-0.792480pt;}
.ls72_c00377{letter-spacing:-0.767520pt;}
.ls7d_c00377{letter-spacing:-0.761280pt;}
.ls60_c00377{letter-spacing:-0.736320pt;}
.ls55_c00377{letter-spacing:-0.705120pt;}
.ls4f_c00377{letter-spacing:-0.698133pt;}
.ls75_c00377{letter-spacing:-0.686400pt;}
.ls44_c00377{letter-spacing:-0.680160pt;}
.ls4b_c00377{letter-spacing:-0.661440pt;}
.ls88_c00377{letter-spacing:-0.530400pt;}
.ls83_c00377{letter-spacing:-0.511680pt;}
.ls61_c00377{letter-spacing:-0.499200pt;}
.ls47_c00377{letter-spacing:-0.492960pt;}
.ls5c_c00377{letter-spacing:-0.474240pt;}
.ls81_c00377{letter-spacing:-0.468000pt;}
.ls6e_c00377{letter-spacing:-0.436800pt;}
.ls5a_c00377{letter-spacing:-0.418080pt;}
.ls62_c00377{letter-spacing:-0.393120pt;}
.ls7c_c00377{letter-spacing:-0.343200pt;}
.ls5e_c00377{letter-spacing:-0.330720pt;}
.ls70_c00377{letter-spacing:-0.324480pt;}
.ls68_c00377{letter-spacing:-0.318240pt;}
.ls80_c00377{letter-spacing:-0.268320pt;}
.ls4d_c00377{letter-spacing:-0.262080pt;}
.ls76_c00377{letter-spacing:-0.247520pt;}
.ls73_c00377{letter-spacing:-0.212160pt;}
.ls53_c00377{letter-spacing:-0.199680pt;}
.ls4c_c00377{letter-spacing:-0.193440pt;}
.ls69_c00377{letter-spacing:-0.180960pt;}
.ls65_c00377{letter-spacing:-0.174720pt;}
.ls7e_c00377{letter-spacing:-0.168480pt;}
.ls3f_c00377{letter-spacing:-0.149760pt;}
.ls64_c00377{letter-spacing:-0.143520pt;}
.ls7a_c00377{letter-spacing:-0.137280pt;}
.ls49_c00377{letter-spacing:-0.124800pt;}
.ls71_c00377{letter-spacing:-0.118560pt;}
.ls63_c00377{letter-spacing:-0.099840pt;}
.ls52_c00377{letter-spacing:-0.093600pt;}
.ls4a_c00377{letter-spacing:-0.087360pt;}
.ls51_c00377{letter-spacing:-0.081120pt;}
.ls77_c00377{letter-spacing:-0.076160pt;}
.ls5f_c00377{letter-spacing:-0.074880pt;}
.ls4e_c00377{letter-spacing:-0.068640pt;}
.ls67_c00377{letter-spacing:-0.062400pt;}
.ls6a_c00377{letter-spacing:-0.037440pt;}
.ls3d_c00377{letter-spacing:-0.031200pt;}
.ls59_c00377{letter-spacing:-0.012480pt;}
.ls6f_c00377{letter-spacing:-0.006240pt;}
.ls41_c00377{letter-spacing:0.000000pt;}
.ls66_c00377{letter-spacing:0.006240pt;}
.lsa_c00377{letter-spacing:0.012480pt;}
.ls12_c00377{letter-spacing:0.018720pt;}
.ls6b_c00377{letter-spacing:0.024960pt;}
.ls74_c00377{letter-spacing:0.031200pt;}
.ls26_c00377{letter-spacing:0.037440pt;}
.ls5_c00377{letter-spacing:0.043680pt;}
.ls30_c00377{letter-spacing:0.049920pt;}
.ls6_c00377{letter-spacing:0.062400pt;}
.ls4_c00377{letter-spacing:0.068640pt;}
.ls1_c00377{letter-spacing:0.081120pt;}
.lsc_c00377{letter-spacing:0.087360pt;}
.ls25_c00377{letter-spacing:0.099840pt;}
.ls7_c00377{letter-spacing:0.106080pt;}
.ls48_c00377{letter-spacing:0.118560pt;}
.ls10_c00377{letter-spacing:0.143520pt;}
.ls1c_c00377{letter-spacing:0.156000pt;}
.ls20_c00377{letter-spacing:0.162240pt;}
.ls2b_c00377{letter-spacing:0.168480pt;}
.ls2c_c00377{letter-spacing:0.174720pt;}
.lsf_c00377{letter-spacing:0.180960pt;}
.ls2d_c00377{letter-spacing:0.187200pt;}
.ls24_c00377{letter-spacing:0.199680pt;}
.ls28_c00377{letter-spacing:0.218400pt;}
.ls1f_c00377{letter-spacing:0.224640pt;}
.ls1e_c00377{letter-spacing:0.237120pt;}
.ls9_c00377{letter-spacing:0.243360pt;}
.ls29_c00377{letter-spacing:0.262080pt;}
.ls14_c00377{letter-spacing:0.268320pt;}
.ls39_c00377{letter-spacing:0.280800pt;}
.ls6d_c00377{letter-spacing:0.324480pt;}
.ls0_c00377{letter-spacing:0.330720pt;}
.ls1a_c00377{letter-spacing:0.349440pt;}
.ls22_c00377{letter-spacing:0.374400pt;}
.ls2a_c00377{letter-spacing:0.405600pt;}
.ls34_c00377{letter-spacing:0.411840pt;}
.ls38_c00377{letter-spacing:0.418080pt;}
.ls36_c00377{letter-spacing:0.436800pt;}
.ls2_c00377{letter-spacing:0.461760pt;}
.ls3b_c00377{letter-spacing:0.492960pt;}
.ls18_c00377{letter-spacing:0.511680pt;}
.ls23_c00377{letter-spacing:0.530400pt;}
.ls16_c00377{letter-spacing:0.536640pt;}
.ls2e_c00377{letter-spacing:0.561600pt;}
.ls8_c00377{letter-spacing:0.599040pt;}
.ls1d_c00377{letter-spacing:0.605280pt;}
.ls58_c00377{letter-spacing:0.655200pt;}
.ls13_c00377{letter-spacing:0.661440pt;}
.ls2f_c00377{letter-spacing:0.692640pt;}
.ls31_c00377{letter-spacing:0.717600pt;}
.lse_c00377{letter-spacing:0.755040pt;}
.ls8d_c00377{letter-spacing:0.804907pt;}
.ls21_c00377{letter-spacing:0.804960pt;}
.ls1b_c00377{letter-spacing:0.826880pt;}
.ls27_c00377{letter-spacing:0.848640pt;}
.ls33_c00377{letter-spacing:0.960960pt;}
.lsd_c00377{letter-spacing:0.967200pt;}
.ls17_c00377{letter-spacing:1.141920pt;}
.ls15_c00377{letter-spacing:1.237600pt;}
.ls37_c00377{letter-spacing:1.266720pt;}
.ls3a_c00377{letter-spacing:1.485120pt;}
.ls35_c00377{letter-spacing:1.572480pt;}
.lsb_c00377{letter-spacing:1.603680pt;}
.ls11_c00377{letter-spacing:1.616160pt;}
.ls3_c00377{letter-spacing:1.659840pt;}
.ls32_c00377{letter-spacing:2.208960pt;}
.ls19_c00377{letter-spacing:2.895360pt;}
.ls40_c00377{letter-spacing:3.120000pt;}
.ws1_c00377{word-spacing:0.000000pt;}
.ws0_c00377{word-spacing:34.910773pt;}
._13_c00377{margin-left:-7.188480pt;}
._15_c00377{margin-left:-5.172960pt;}
._7_c00377{margin-left:-3.725280pt;}
._8_c00377{margin-left:-1.965600pt;}
._3_c00377{margin-left:-0.973440pt;}
._0_c00377{width:1.591200pt;}
._5_c00377{width:2.895360pt;}
._1_c00377{width:4.274400pt;}
._6_c00377{width:5.740800pt;}
._2_c00377{width:6.845280pt;}
._4_c00377{width:8.592480pt;}
._f_c00377{width:10.076800pt;}
._12_c00377{width:11.883360pt;}
._10_c00377{width:12.792000pt;}
._e_c00377{width:13.915200pt;}
._11_c00377{width:17.091360pt;}
._17_c00377{width:19.643520pt;}
._18_c00377{width:22.102080pt;}
._16_c00377{width:23.506080pt;}
._14_c00377{width:26.326560pt;}
._b_c00377{width:27.349920pt;}
._d_c00377{width:32.104800pt;}
._a_c00377{width:33.115680pt;}
._c_c00377{width:34.819200pt;}
._9_c00377{width:36.747200pt;}
.fs3_c00377{font-size:47.360000pt;}
.fsa_c00377{font-size:52.266667pt;}
.fs0_c00377{font-size:59.200000pt;}
.fs4_c00377{font-size:60.266667pt;}
.fs5_c00377{font-size:60.800000pt;}
.fs1_c00377{font-size:62.400000pt;}
.fs9_c00377{font-size:62.933333pt;}
.fs2_c00377{font-size:63.466667pt;}
.fs8_c00377{font-size:64.000000pt;}
.fs7_c00377{font-size:65.066667pt;}
.fs6_c00377{font-size:68.266667pt;}
.y0_c00377{bottom:0.000000pt;}
.y1f_c00377{bottom:56.653333pt;}
.y1e_c00377{bottom:110.080000pt;}
.y1d_c00377{bottom:164.480000pt;}
.y1c_c00377{bottom:164.487733pt;}
.y1b_c00377{bottom:192.973333pt;}
.y1a_c00377{bottom:220.493333pt;}
.y19_c00377{bottom:220.496533pt;}
.y17_c00377{bottom:275.529200pt;}
.y18_c00377{bottom:275.533333pt;}
.y16_c00377{bottom:302.720000pt;}
.y15_c00377{bottom:357.431733pt;}
.y14_c00377{bottom:411.844533pt;}
.y13_c00377{bottom:439.986933pt;}
.y12_c00377{bottom:467.520933pt;}
.y11_c00377{bottom:494.727333pt;}
.y10_c00377{bottom:522.570800pt;}
.yf_c00377{bottom:550.089200pt;}
.ye_c00377{bottom:577.280000pt;}
.yd_c00377{bottom:604.814000pt;}
.yc_c00377{bottom:659.850800pt;}
.yb_c00377{bottom:714.556800pt;}
.ya_c00377{bottom:769.609200pt;}
.y9_c00377{bottom:796.800000pt;}
.y8_c00377{bottom:824.319333pt;}
.y7_c00377{bottom:851.853333pt;}
.y6_c00377{bottom:906.878933pt;}
.y4_c00377{bottom:933.770800pt;}
.y5_c00377{bottom:933.773333pt;}
.y3_c00377{bottom:960.961600pt;}
.y2_c00377{bottom:988.480000pt;}
.y1_c00377{bottom:1056.640000pt;}
.h6_c00377{height:31.541760pt;}
.h10_c00377{height:51.296875pt;}
.h2_c00377{height:58.101562pt;}
.h3_c00377{height:61.242187pt;}
.h9_c00377{height:61.252321pt;}
.h8_c00377{height:61.287800pt;}
.h4_c00377{height:62.258073pt;}
.h5_c00377{height:62.260740pt;}
.ha_c00377{height:62.291140pt;}
.h7_c00377{height:62.856250pt;}
.hc_c00377{height:63.827604pt;}
.hd_c00377{height:64.500000pt;}
.he_c00377{height:65.575000pt;}
.hf_c00377{height:65.637500pt;}
.hb_c00377{height:66.966667pt;}
.h1_c00377{height:1122.666667pt;}
.h0_c00377{height:1122.880000pt;}
.w1_c00377{width:793.333333pt;}
.w0_c00377{width:793.600000pt;}
.x0_c00377{left:0.000000pt;}
.x11_c00377{left:108.138667pt;}
.xf_c00377{left:109.347200pt;}
.xa_c00377{left:110.244533pt;}
.x2_c00377{left:111.333333pt;}
.x1_c00377{left:112.573333pt;}
.x12_c00377{left:155.781067pt;}
.x10_c00377{left:156.958400pt;}
.x9_c00377{left:157.920000pt;}
.xb_c00377{left:177.933333pt;}
.x17_c00377{left:188.093333pt;}
.xc_c00377{left:206.360000pt;}
.x13_c00377{left:216.146667pt;}
.x7_c00377{left:231.426667pt;}
.x1a_c00377{left:235.346667pt;}
.x14_c00377{left:241.186667pt;}
.x1b_c00377{left:260.333333pt;}
.x8_c00377{left:262.893333pt;}
.x1c_c00377{left:325.226667pt;}
.x1d_c00377{left:366.093333pt;}
.x22_c00377{left:378.413333pt;}
.x1e_c00377{left:404.480000pt;}
.x18_c00377{left:405.586667pt;}
.x19_c00377{left:431.826667pt;}
.x1f_c00377{left:435.453333pt;}
.xd_c00377{left:437.920000pt;}
.x20_c00377{left:451.160000pt;}
.xe_c00377{left:453.920000pt;}
.x21_c00377{left:476.053333pt;}
.x3_c00377{left:526.506667pt;}
.x4_c00377{left:547.360000pt;}
.x5_c00377{left:558.946667pt;}
.x15_c00377{left:566.546667pt;}
.x6_c00377{left:584.160000pt;}
.x16_c00377{left:593.053333pt;}
}





/* 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_c00378 {
    display:none;
  }
  .loading-indicator_c00378.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00378 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_c00378 { 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_c00378" -> "#page-container .classname_c00378")
 */
.pf_c00378 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00378 { /* 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_c00378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00378 { /* 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_c00378 { /* 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_c00378 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00378 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00378 {overflow:visible;}
  }
}
.c_c00378 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00378 { /* 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_c00378:after { /* webkit #35443 */
  content: '';
}
.t_c00378:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00378 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 */
}
.__c00378 { /* 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_c00378 { /* info for Javascript */
  display:none;
}
.l_c00378 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00378 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00378 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00378: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_c00378 {
    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_c00378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00378.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_c00378 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00378;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.311035;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_c00378;src:url('chunks/assets/font_172dda1e370f489303eb6c9b.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.284180;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_c00378;src:url('chunks/assets/font_fdda9cf2853439e1691b047e.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.284668;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_c00378;src:url('chunks/assets/font_37a7338165ec2bd461740132.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:0.666000;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_c00378;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff5_c00378{font-family:ff5_c00378;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;}
.m10_c00378{transform:matrix(0.149268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149268,0.000000,0.000000,0.250000,0,0);}
.md_c00378{transform:matrix(0.154851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154851,0.000000,0.000000,0.250000,0,0);}
.m14_c00378{transform:matrix(0.156757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156757,0.000000,0.000000,0.250000,0,0);}
.mc_c00378{transform:matrix(0.159151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159151,0.000000,0.000000,0.250000,0,0);}
.m12_c00378{transform:matrix(0.236536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236536,0.000000,0.000000,0.250000,0,0);}
.m0_c00378{transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);}
.m13_c00378{transform:matrix(0.242306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242306,0.000000,0.000000,0.250000,0,0);}
.m3_c00378{transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243123,0.000000,0.000000,0.250000,0,0);}
.m4_c00378{transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243563,0.000000,0.000000,0.250000,0,0);}
.m6_c00378{transform:matrix(0.246222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246222,0.000000,0.000000,0.250000,0,0);}
.m9_c00378{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.me_c00378{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m2_c00378{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m16_c00378{transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);}
.m11_c00378{transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);}
.mf_c00378{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m5_c00378{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.m1_c00378{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);}
.m15_c00378{transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);}
.m7_c00378{transform:matrix(0.254875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254875,0.000000,0.000000,0.250000,0,0);}
.m8_c00378{transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);}
.mb_c00378{transform:matrix(0.275506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275506,0.000000,0.000000,0.250000,0,0);}
.ma_c00378{transform:matrix(0.284239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284239,0.000000,0.000000,0.250000,0,0);}
.v2_c00378{vertical-align:-25.929950px;}
.v0_c00378{vertical-align:0.000000px;}
.v1_c00378{vertical-align:25.920000px;}
.v4_c00378{vertical-align:27.338400px;}
.v3_c00378{vertical-align:28.766400px;}
.ls50_c00378{letter-spacing:-2.436000px;}
.ls75_c00378{letter-spacing:-2.394000px;}
.ls47_c00378{letter-spacing:-2.331000px;}
.ls52_c00378{letter-spacing:-2.296800px;}
.ls7f_c00378{letter-spacing:-2.192400px;}
.ls91_c00378{letter-spacing:-2.046240px;}
.ls4c_c00378{letter-spacing:-1.893120px;}
.ls79_c00378{letter-spacing:-1.886160px;}
.ls62_c00378{letter-spacing:-1.649520px;}
.ls85_c00378{letter-spacing:-1.579920px;}
.ls51_c00378{letter-spacing:-1.552080px;}
.ls56_c00378{letter-spacing:-1.545120px;}
.ls7d_c00378{letter-spacing:-1.531200px;}
.ls57_c00378{letter-spacing:-1.503360px;}
.ls8e_c00378{letter-spacing:-1.426800px;}
.ls4f_c00378{letter-spacing:-1.343280px;}
.ls77_c00378{letter-spacing:-1.336320px;}
.ls87_c00378{letter-spacing:-1.315440px;}
.ls93_c00378{letter-spacing:-1.266720px;}
.ls9f_c00378{letter-spacing:-1.218000px;}
.ls4a_c00378{letter-spacing:-1.190160px;}
.ls5e_c00378{letter-spacing:-1.148400px;}
.ls95_c00378{letter-spacing:-1.099680px;}
.ls86_c00378{letter-spacing:-1.078800px;}
.ls81_c00378{letter-spacing:-0.897840px;}
.ls9c_c00378{letter-spacing:-0.835200px;}
.ls5d_c00378{letter-spacing:-0.828240px;}
.ls71_c00378{letter-spacing:-0.716880px;}
.lsa1_c00378{letter-spacing:-0.709920px;}
.ls73_c00378{letter-spacing:-0.696000px;}
.ls58_c00378{letter-spacing:-0.689040px;}
.ls70_c00378{letter-spacing:-0.675120px;}
.ls4b_c00378{letter-spacing:-0.668160px;}
.lsa2_c00378{letter-spacing:-0.655500px;}
.lsa0_c00378{letter-spacing:-0.654240px;}
.ls8a_c00378{letter-spacing:-0.633360px;}
.ls59_c00378{letter-spacing:-0.598560px;}
.ls64_c00378{letter-spacing:-0.563760px;}
.ls7b_c00378{letter-spacing:-0.556800px;}
.ls67_c00378{letter-spacing:-0.535920px;}
.ls55_c00378{letter-spacing:-0.522000px;}
.ls82_c00378{letter-spacing:-0.515040px;}
.ls8d_c00378{letter-spacing:-0.508080px;}
.ls61_c00378{letter-spacing:-0.494160px;}
.ls8b_c00378{letter-spacing:-0.438480px;}
.ls96_c00378{letter-spacing:-0.431520px;}
.ls88_c00378{letter-spacing:-0.410640px;}
.ls6c_c00378{letter-spacing:-0.396720px;}
.ls76_c00378{letter-spacing:-0.382800px;}
.ls6b_c00378{letter-spacing:-0.375840px;}
.ls84_c00378{letter-spacing:-0.368880px;}
.ls5b_c00378{letter-spacing:-0.361920px;}
.ls92_c00378{letter-spacing:-0.354960px;}
.ls7e_c00378{letter-spacing:-0.341040px;}
.ls8c_c00378{letter-spacing:-0.320160px;}
.ls97_c00378{letter-spacing:-0.313200px;}
.ls69_c00378{letter-spacing:-0.299280px;}
.ls98_c00378{letter-spacing:-0.292320px;}
.ls63_c00378{letter-spacing:-0.285360px;}
.ls6e_c00378{letter-spacing:-0.271440px;}
.ls4e_c00378{letter-spacing:-0.264480px;}
.ls68_c00378{letter-spacing:-0.257520px;}
.ls5c_c00378{letter-spacing:-0.243600px;}
.ls80_c00378{letter-spacing:-0.236640px;}
.ls74_c00378{letter-spacing:-0.229680px;}
.ls65_c00378{letter-spacing:-0.222720px;}
.ls6a_c00378{letter-spacing:-0.208800px;}
.ls5f_c00378{letter-spacing:-0.194880px;}
.ls7c_c00378{letter-spacing:-0.187920px;}
.ls72_c00378{letter-spacing:-0.180960px;}
.ls89_c00378{letter-spacing:-0.153120px;}
.ls94_c00378{letter-spacing:-0.146160px;}
.ls49_c00378{letter-spacing:-0.139200px;}
.ls9d_c00378{letter-spacing:-0.132240px;}
.ls4d_c00378{letter-spacing:-0.118320px;}
.ls78_c00378{letter-spacing:-0.111360px;}
.ls7a_c00378{letter-spacing:-0.104400px;}
.ls53_c00378{letter-spacing:-0.090480px;}
.ls60_c00378{letter-spacing:-0.062640px;}
.ls90_c00378{letter-spacing:-0.055680px;}
.ls9e_c00378{letter-spacing:-0.041760px;}
.ls66_c00378{letter-spacing:-0.027840px;}
.ls83_c00378{letter-spacing:-0.020880px;}
.ls8f_c00378{letter-spacing:-0.013920px;}
.ls5a_c00378{letter-spacing:-0.006960px;}
.ls54_c00378{letter-spacing:0.000000px;}
.ls1b_c00378{letter-spacing:0.006960px;}
.ls22_c00378{letter-spacing:0.013920px;}
.ls2c_c00378{letter-spacing:0.020880px;}
.ls34_c00378{letter-spacing:0.027840px;}
.lsd_c00378{letter-spacing:0.034800px;}
.ls16_c00378{letter-spacing:0.041760px;}
.ls2d_c00378{letter-spacing:0.062640px;}
.ls2a_c00378{letter-spacing:0.076560px;}
.ls4_c00378{letter-spacing:0.090480px;}
.ls12_c00378{letter-spacing:0.097440px;}
.ls33_c00378{letter-spacing:0.104400px;}
.ls44_c00378{letter-spacing:0.139200px;}
.ls24_c00378{letter-spacing:0.146160px;}
.ls23_c00378{letter-spacing:0.160080px;}
.ls2e_c00378{letter-spacing:0.167040px;}
.ls25_c00378{letter-spacing:0.174000px;}
.ls8_c00378{letter-spacing:0.187920px;}
.ls18_c00378{letter-spacing:0.201840px;}
.lsa_c00378{letter-spacing:0.208800px;}
.ls27_c00378{letter-spacing:0.222720px;}
.lsf_c00378{letter-spacing:0.229680px;}
.ls32_c00378{letter-spacing:0.236640px;}
.ls15_c00378{letter-spacing:0.264480px;}
.ls36_c00378{letter-spacing:0.299280px;}
.ls7_c00378{letter-spacing:0.306240px;}
.ls46_c00378{letter-spacing:0.361920px;}
.ls41_c00378{letter-spacing:0.389760px;}
.ls10_c00378{letter-spacing:0.424560px;}
.ls29_c00378{letter-spacing:0.480240px;}
.ls13_c00378{letter-spacing:0.494160px;}
.lsb_c00378{letter-spacing:0.501120px;}
.ls6d_c00378{letter-spacing:0.522000px;}
.ls26_c00378{letter-spacing:0.535920px;}
.ls11_c00378{letter-spacing:0.542880px;}
.ls1a_c00378{letter-spacing:0.591600px;}
.ls19_c00378{letter-spacing:0.605520px;}
.ls1e_c00378{letter-spacing:0.612480px;}
.ls45_c00378{letter-spacing:0.640320px;}
.ls35_c00378{letter-spacing:0.647280px;}
.ls99_c00378{letter-spacing:0.732480px;}
.ls1f_c00378{letter-spacing:0.737760px;}
.ls43_c00378{letter-spacing:0.758640px;}
.ls38_c00378{letter-spacing:0.828240px;}
.ls3c_c00378{letter-spacing:0.859140px;}
.ls3a_c00378{letter-spacing:0.873600px;}
.ls1d_c00378{letter-spacing:0.883920px;}
.ls6_c00378{letter-spacing:0.974400px;}
.ls1c_c00378{letter-spacing:0.995280px;}
.ls9_c00378{letter-spacing:1.001280px;}
.ls21_c00378{letter-spacing:1.028160px;}
.ls3d_c00378{letter-spacing:1.065600px;}
.ls3b_c00378{letter-spacing:1.072260px;}
.ls2_c00378{letter-spacing:1.088640px;}
.ls39_c00378{letter-spacing:1.120560px;}
.lsc_c00378{letter-spacing:1.162560px;}
.ls1_c00378{letter-spacing:1.243200px;}
.ls5_c00378{letter-spacing:1.283520px;}
.ls31_c00378{letter-spacing:1.317120px;}
.ls40_c00378{letter-spacing:1.332000px;}
.ls48_c00378{letter-spacing:1.357440px;}
.ls2b_c00378{letter-spacing:1.398960px;}
.lse_c00378{letter-spacing:1.411200px;}
.ls14_c00378{letter-spacing:1.447680px;}
.ls20_c00378{letter-spacing:1.525440px;}
.ls3f_c00378{letter-spacing:1.531800px;}
.ls0_c00378{letter-spacing:1.572480px;}
.ls3e_c00378{letter-spacing:1.578420px;}
.ls28_c00378{letter-spacing:1.642560px;}
.ls17_c00378{letter-spacing:1.642822px;}
.ls30_c00378{letter-spacing:1.969680px;}
.ls2f_c00378{letter-spacing:2.164560px;}
.ls37_c00378{letter-spacing:2.331600px;}
.ls3_c00378{letter-spacing:2.439360px;}
.ls42_c00378{letter-spacing:2.442960px;}
.ls9b_c00378{letter-spacing:2.923200px;}
.ls9a_c00378{letter-spacing:3.330000px;}
.ls6f_c00378{letter-spacing:3.480000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{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__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00378{word-spacing:-17.400000px;}
.ws5_c00378{word-spacing:-17.079840px;}
.ws6_c00378{word-spacing:-15.353760px;}
.ws2_c00378{word-spacing:-0.708960px;}
.ws8_c00378{word-spacing:0.000000px;}
.ws4_c00378{word-spacing:0.612480px;}
.ws3_c00378{word-spacing:3.897600px;}
.ws7_c00378{word-spacing:13.982400px;}
.ws0_c00378{word-spacing:18.192000px;}
._14_c00378{margin-left:-12.994080px;}
._11_c00378{margin-left:-8.078880px;}
._4_c00378{margin-left:-5.140800px;}
._a_c00378{margin-left:-3.354960px;}
._9_c00378{margin-left:-1.776720px;}
._1_c00378{width:1.294560px;}
._3_c00378{width:2.788800px;}
._12_c00378{width:4.230480px;}
._2_c00378{width:5.289600px;}
._0_c00378{width:6.935040px;}
._e_c00378{width:8.169840px;}
._7_c00378{width:9.564240px;}
._6_c00378{width:10.579200px;}
._5_c00378{width:11.835840px;}
._10_c00378{width:13.711200px;}
._f_c00378{width:14.748240px;}
._13_c00378{width:16.268640px;}
._8_c00378{width:18.269280px;}
._16_c00378{width:19.655040px;}
._15_c00378{width:20.712960px;}
._b_c00378{width:22.007520px;}
._d_c00378{width:23.858880px;}
._c_c00378{width:25.731120px;}
._1b_c00378{width:31.055520px;}
._17_c00378{width:36.094560px;}
._18_c00378{width:38.029440px;}
._1a_c00378{width:40.493280px;}
._19_c00378{width:42.950160px;}
.fc0_c00378{color:transparent;}
.fs6_c00378{font-size:32.400600px;}
.fs3_c00378{font-size:44.400600px;}
.fs7_c00378{font-size:53.280000px;}
.fs5_c00378{font-size:56.160000px;}
.fs8_c00378{font-size:57.000000px;}
.fs0_c00378{font-size:66.600000px;}
.fs1_c00378{font-size:67.200000px;}
.fs4_c00378{font-size:68.400000px;}
.fs2_c00378{font-size:69.600000px;}
.y0_c00378{bottom:0.000000px;}
.y23_c00378{bottom:67.695015px;}
.y22_c00378{bottom:127.443015px;}
.y21_c00378{bottom:157.318815px;}
.y1f_c00378{bottom:187.555815px;}
.y20_c00378{bottom:187.560015px;}
.y1e_c00378{bottom:218.535015px;}
.y1d_c00378{bottom:281.168415px;}
.y1c_c00378{bottom:311.775015px;}
.y1b_c00378{bottom:311.776215px;}
.y1a_c00378{bottom:342.000015px;}
.y19_c00378{bottom:403.215015px;}
.y18_c00378{bottom:403.220415px;}
.y17_c00378{bottom:434.175015px;}
.y15_c00378{bottom:495.728415px;}
.y16_c00378{bottom:495.735015px;}
.y14_c00378{bottom:526.335015px;}
.y12_c00378{bottom:556.914615px;}
.y13_c00378{bottom:556.920015px;}
.y11_c00378{bottom:588.600015px;}
.y10_c00378{bottom:619.215015px;}
.yf_c00378{bottom:681.840015px;}
.ye_c00378{bottom:745.208415px;}
.yc_c00378{bottom:775.807215px;}
.yd_c00378{bottom:775.815015px;}
.yb_c00378{bottom:806.413815px;}
.ya_c00378{bottom:837.003015px;}
.y9_c00378{bottom:867.975015px;}
.y8_c00378{bottom:929.175015px;}
.y7_c00378{bottom:959.775015px;}
.y6_c00378{bottom:990.360015px;}
.y5_c00378{bottom:1021.680015px;}
.y4_c00378{bottom:1052.295015px;}
.y3_c00378{bottom:1082.880015px;}
.y2_c00378{bottom:1113.840015px;}
.y1_c00378{bottom:1188.720015px;}
.h8_c00378{height:35.484480px;}
.h6_c00378{height:37.402560px;}
.hd_c00378{height:55.942383px;}
.hb_c00378{height:65.364258px;}
.ha_c00378{height:65.920312px;}
.h2_c00378{height:67.120312px;}
.h5_c00378{height:67.130859px;}
.h3_c00378{height:68.308594px;}
.hc_c00378{height:68.325394px;}
.h9_c00378{height:68.334994px;}
.h7_c00378{height:69.461719px;}
.h4_c00378{height:69.496761px;}
.h1_c00378{height:1263.000000px;}
.h0_c00378{height:1263.240015px;}
.w1_c00378{width:892.500000px;}
.w0_c00378{width:892.800015px;}
.x0_c00378{left:0.000000px;}
.x26_c00378{left:121.984215px;}
.x1_c00378{left:123.045015px;}
.xc_c00378{left:124.376415px;}
.x21_c00378{left:176.205015px;}
.x2_c00378{left:177.495015px;}
.x8_c00378{left:178.680015px;}
.xd_c00378{left:212.685015px;}
.xe_c00378{left:237.750015px;}
.xf_c00378{left:261.885015px;}
.x10_c00378{left:292.470015px;}
.x22_c00378{left:295.470015px;}
.x1e_c00378{left:299.295015px;}
.x11_c00378{left:307.260015px;}
.x1a_c00378{left:313.770015px;}
.x23_c00378{left:319.155015px;}
.x12_c00378{left:329.490015px;}
.x1b_c00378{left:332.490015px;}
.x13_c00378{left:365.640015px;}
.x1f_c00378{left:384.960015px;}
.x14_c00378{left:396.645015px;}
.x27_c00378{left:424.635015px;}
.x24_c00378{left:433.260015px;}
.x15_c00378{left:445.200015px;}
.x25_c00378{left:452.445015px;}
.x16_c00378{left:477.570015px;}
.x5_c00378{left:491.565015px;}
.x6_c00378{left:519.240015px;}
.x20_c00378{left:568.095015px;}
.x18_c00378{left:569.715015px;}
.x9_c00378{left:582.285015px;}
.x19_c00378{left:591.150015px;}
.x1c_c00378{left:601.215015px;}
.xa_c00378{left:609.375015px;}
.xb_c00378{left:620.820015px;}
.x3_c00378{left:624.765015px;}
.x4_c00378{left:653.520015px;}
.x1d_c00378{left:664.875015px;}
.x17_c00378{left:692.880015px;}
.x7_c00378{left:725.925015px;}
@media print{
.v2_c00378{vertical-align:-23.048845pt;}
.v0_c00378{vertical-align:0.000000pt;}
.v1_c00378{vertical-align:23.040000pt;}
.v4_c00378{vertical-align:24.300800pt;}
.v3_c00378{vertical-align:25.570133pt;}
.ls50_c00378{letter-spacing:-2.165333pt;}
.ls75_c00378{letter-spacing:-2.128000pt;}
.ls47_c00378{letter-spacing:-2.072000pt;}
.ls52_c00378{letter-spacing:-2.041600pt;}
.ls7f_c00378{letter-spacing:-1.948800pt;}
.ls91_c00378{letter-spacing:-1.818880pt;}
.ls4c_c00378{letter-spacing:-1.682773pt;}
.ls79_c00378{letter-spacing:-1.676587pt;}
.ls62_c00378{letter-spacing:-1.466240pt;}
.ls85_c00378{letter-spacing:-1.404373pt;}
.ls51_c00378{letter-spacing:-1.379627pt;}
.ls56_c00378{letter-spacing:-1.373440pt;}
.ls7d_c00378{letter-spacing:-1.361067pt;}
.ls57_c00378{letter-spacing:-1.336320pt;}
.ls8e_c00378{letter-spacing:-1.268267pt;}
.ls4f_c00378{letter-spacing:-1.194027pt;}
.ls77_c00378{letter-spacing:-1.187840pt;}
.ls87_c00378{letter-spacing:-1.169280pt;}
.ls93_c00378{letter-spacing:-1.125973pt;}
.ls9f_c00378{letter-spacing:-1.082667pt;}
.ls4a_c00378{letter-spacing:-1.057920pt;}
.ls5e_c00378{letter-spacing:-1.020800pt;}
.ls95_c00378{letter-spacing:-0.977493pt;}
.ls86_c00378{letter-spacing:-0.958933pt;}
.ls81_c00378{letter-spacing:-0.798080pt;}
.ls9c_c00378{letter-spacing:-0.742400pt;}
.ls5d_c00378{letter-spacing:-0.736213pt;}
.ls71_c00378{letter-spacing:-0.637227pt;}
.lsa1_c00378{letter-spacing:-0.631040pt;}
.ls73_c00378{letter-spacing:-0.618667pt;}
.ls58_c00378{letter-spacing:-0.612480pt;}
.ls70_c00378{letter-spacing:-0.600107pt;}
.ls4b_c00378{letter-spacing:-0.593920pt;}
.lsa2_c00378{letter-spacing:-0.582667pt;}
.lsa0_c00378{letter-spacing:-0.581547pt;}
.ls8a_c00378{letter-spacing:-0.562987pt;}
.ls59_c00378{letter-spacing:-0.532053pt;}
.ls64_c00378{letter-spacing:-0.501120pt;}
.ls7b_c00378{letter-spacing:-0.494933pt;}
.ls67_c00378{letter-spacing:-0.476373pt;}
.ls55_c00378{letter-spacing:-0.464000pt;}
.ls82_c00378{letter-spacing:-0.457813pt;}
.ls8d_c00378{letter-spacing:-0.451627pt;}
.ls61_c00378{letter-spacing:-0.439253pt;}
.ls8b_c00378{letter-spacing:-0.389760pt;}
.ls96_c00378{letter-spacing:-0.383573pt;}
.ls88_c00378{letter-spacing:-0.365013pt;}
.ls6c_c00378{letter-spacing:-0.352640pt;}
.ls76_c00378{letter-spacing:-0.340267pt;}
.ls6b_c00378{letter-spacing:-0.334080pt;}
.ls84_c00378{letter-spacing:-0.327893pt;}
.ls5b_c00378{letter-spacing:-0.321707pt;}
.ls92_c00378{letter-spacing:-0.315520pt;}
.ls7e_c00378{letter-spacing:-0.303147pt;}
.ls8c_c00378{letter-spacing:-0.284587pt;}
.ls97_c00378{letter-spacing:-0.278400pt;}
.ls69_c00378{letter-spacing:-0.266027pt;}
.ls98_c00378{letter-spacing:-0.259840pt;}
.ls63_c00378{letter-spacing:-0.253653pt;}
.ls6e_c00378{letter-spacing:-0.241280pt;}
.ls4e_c00378{letter-spacing:-0.235093pt;}
.ls68_c00378{letter-spacing:-0.228907pt;}
.ls5c_c00378{letter-spacing:-0.216533pt;}
.ls80_c00378{letter-spacing:-0.210347pt;}
.ls74_c00378{letter-spacing:-0.204160pt;}
.ls65_c00378{letter-spacing:-0.197973pt;}
.ls6a_c00378{letter-spacing:-0.185600pt;}
.ls5f_c00378{letter-spacing:-0.173227pt;}
.ls7c_c00378{letter-spacing:-0.167040pt;}
.ls72_c00378{letter-spacing:-0.160853pt;}
.ls89_c00378{letter-spacing:-0.136107pt;}
.ls94_c00378{letter-spacing:-0.129920pt;}
.ls49_c00378{letter-spacing:-0.123733pt;}
.ls9d_c00378{letter-spacing:-0.117547pt;}
.ls4d_c00378{letter-spacing:-0.105173pt;}
.ls78_c00378{letter-spacing:-0.098987pt;}
.ls7a_c00378{letter-spacing:-0.092800pt;}
.ls53_c00378{letter-spacing:-0.080427pt;}
.ls60_c00378{letter-spacing:-0.055680pt;}
.ls90_c00378{letter-spacing:-0.049493pt;}
.ls9e_c00378{letter-spacing:-0.037120pt;}
.ls66_c00378{letter-spacing:-0.024747pt;}
.ls83_c00378{letter-spacing:-0.018560pt;}
.ls8f_c00378{letter-spacing:-0.012373pt;}
.ls5a_c00378{letter-spacing:-0.006187pt;}
.ls54_c00378{letter-spacing:0.000000pt;}
.ls1b_c00378{letter-spacing:0.006187pt;}
.ls22_c00378{letter-spacing:0.012373pt;}
.ls2c_c00378{letter-spacing:0.018560pt;}
.ls34_c00378{letter-spacing:0.024747pt;}
.lsd_c00378{letter-spacing:0.030933pt;}
.ls16_c00378{letter-spacing:0.037120pt;}
.ls2d_c00378{letter-spacing:0.055680pt;}
.ls2a_c00378{letter-spacing:0.068053pt;}
.ls4_c00378{letter-spacing:0.080427pt;}
.ls12_c00378{letter-spacing:0.086613pt;}
.ls33_c00378{letter-spacing:0.092800pt;}
.ls44_c00378{letter-spacing:0.123733pt;}
.ls24_c00378{letter-spacing:0.129920pt;}
.ls23_c00378{letter-spacing:0.142293pt;}
.ls2e_c00378{letter-spacing:0.148480pt;}
.ls25_c00378{letter-spacing:0.154667pt;}
.ls8_c00378{letter-spacing:0.167040pt;}
.ls18_c00378{letter-spacing:0.179413pt;}
.lsa_c00378{letter-spacing:0.185600pt;}
.ls27_c00378{letter-spacing:0.197973pt;}
.lsf_c00378{letter-spacing:0.204160pt;}
.ls32_c00378{letter-spacing:0.210347pt;}
.ls15_c00378{letter-spacing:0.235093pt;}
.ls36_c00378{letter-spacing:0.266027pt;}
.ls7_c00378{letter-spacing:0.272213pt;}
.ls46_c00378{letter-spacing:0.321707pt;}
.ls41_c00378{letter-spacing:0.346453pt;}
.ls10_c00378{letter-spacing:0.377387pt;}
.ls29_c00378{letter-spacing:0.426880pt;}
.ls13_c00378{letter-spacing:0.439253pt;}
.lsb_c00378{letter-spacing:0.445440pt;}
.ls6d_c00378{letter-spacing:0.464000pt;}
.ls26_c00378{letter-spacing:0.476373pt;}
.ls11_c00378{letter-spacing:0.482560pt;}
.ls1a_c00378{letter-spacing:0.525867pt;}
.ls19_c00378{letter-spacing:0.538240pt;}
.ls1e_c00378{letter-spacing:0.544427pt;}
.ls45_c00378{letter-spacing:0.569173pt;}
.ls35_c00378{letter-spacing:0.575360pt;}
.ls99_c00378{letter-spacing:0.651093pt;}
.ls1f_c00378{letter-spacing:0.655787pt;}
.ls43_c00378{letter-spacing:0.674347pt;}
.ls38_c00378{letter-spacing:0.736213pt;}
.ls3c_c00378{letter-spacing:0.763680pt;}
.ls3a_c00378{letter-spacing:0.776533pt;}
.ls1d_c00378{letter-spacing:0.785707pt;}
.ls6_c00378{letter-spacing:0.866133pt;}
.ls1c_c00378{letter-spacing:0.884693pt;}
.ls9_c00378{letter-spacing:0.890027pt;}
.ls21_c00378{letter-spacing:0.913920pt;}
.ls3d_c00378{letter-spacing:0.947200pt;}
.ls3b_c00378{letter-spacing:0.953120pt;}
.ls2_c00378{letter-spacing:0.967680pt;}
.ls39_c00378{letter-spacing:0.996053pt;}
.lsc_c00378{letter-spacing:1.033387pt;}
.ls1_c00378{letter-spacing:1.105067pt;}
.ls5_c00378{letter-spacing:1.140907pt;}
.ls31_c00378{letter-spacing:1.170773pt;}
.ls40_c00378{letter-spacing:1.184000pt;}
.ls48_c00378{letter-spacing:1.206613pt;}
.ls2b_c00378{letter-spacing:1.243520pt;}
.lse_c00378{letter-spacing:1.254400pt;}
.ls14_c00378{letter-spacing:1.286827pt;}
.ls20_c00378{letter-spacing:1.355947pt;}
.ls3f_c00378{letter-spacing:1.361600pt;}
.ls0_c00378{letter-spacing:1.397760pt;}
.ls3e_c00378{letter-spacing:1.403040pt;}
.ls28_c00378{letter-spacing:1.460053pt;}
.ls17_c00378{letter-spacing:1.460286pt;}
.ls30_c00378{letter-spacing:1.750827pt;}
.ls2f_c00378{letter-spacing:1.924053pt;}
.ls37_c00378{letter-spacing:2.072533pt;}
.ls3_c00378{letter-spacing:2.168320pt;}
.ls42_c00378{letter-spacing:2.171520pt;}
.ls9b_c00378{letter-spacing:2.598400pt;}
.ls9a_c00378{letter-spacing:2.960000pt;}
.ls6f_c00378{letter-spacing:3.093333pt;}
.ws1_c00378{word-spacing:-15.466667pt;}
.ws5_c00378{word-spacing:-15.182080pt;}
.ws6_c00378{word-spacing:-13.647787pt;}
.ws2_c00378{word-spacing:-0.630187pt;}
.ws8_c00378{word-spacing:0.000000pt;}
.ws4_c00378{word-spacing:0.544427pt;}
.ws3_c00378{word-spacing:3.464533pt;}
.ws7_c00378{word-spacing:12.428800pt;}
.ws0_c00378{word-spacing:16.170667pt;}
._14_c00378{margin-left:-11.550293pt;}
._11_c00378{margin-left:-7.181227pt;}
._4_c00378{margin-left:-4.569600pt;}
._a_c00378{margin-left:-2.982187pt;}
._9_c00378{margin-left:-1.579307pt;}
._1_c00378{width:1.150720pt;}
._3_c00378{width:2.478933pt;}
._12_c00378{width:3.760427pt;}
._2_c00378{width:4.701867pt;}
._0_c00378{width:6.164480pt;}
._e_c00378{width:7.262080pt;}
._7_c00378{width:8.501547pt;}
._6_c00378{width:9.403733pt;}
._5_c00378{width:10.520747pt;}
._10_c00378{width:12.187733pt;}
._f_c00378{width:13.109547pt;}
._13_c00378{width:14.461013pt;}
._8_c00378{width:16.239360pt;}
._16_c00378{width:17.471147pt;}
._15_c00378{width:18.411520pt;}
._b_c00378{width:19.562240pt;}
._d_c00378{width:21.207893pt;}
._c_c00378{width:22.872107pt;}
._1b_c00378{width:27.604907pt;}
._17_c00378{width:32.084053pt;}
._18_c00378{width:33.803947pt;}
._1a_c00378{width:35.994027pt;}
._19_c00378{width:38.177920pt;}
.fs6_c00378{font-size:28.800533pt;}
.fs3_c00378{font-size:39.467200pt;}
.fs7_c00378{font-size:47.360000pt;}
.fs5_c00378{font-size:49.920000pt;}
.fs8_c00378{font-size:50.666667pt;}
.fs0_c00378{font-size:59.200000pt;}
.fs1_c00378{font-size:59.733333pt;}
.fs4_c00378{font-size:60.800000pt;}
.fs2_c00378{font-size:61.866667pt;}
.y0_c00378{bottom:0.000000pt;}
.y23_c00378{bottom:60.173347pt;}
.y22_c00378{bottom:113.282680pt;}
.y21_c00378{bottom:139.838947pt;}
.y1f_c00378{bottom:166.716280pt;}
.y20_c00378{bottom:166.720013pt;}
.y1e_c00378{bottom:194.253347pt;}
.y1d_c00378{bottom:249.927480pt;}
.y1c_c00378{bottom:277.133347pt;}
.y1b_c00378{bottom:277.134413pt;}
.y1a_c00378{bottom:304.000013pt;}
.y19_c00378{bottom:358.413347pt;}
.y18_c00378{bottom:358.418147pt;}
.y17_c00378{bottom:385.933347pt;}
.y15_c00378{bottom:440.647480pt;}
.y16_c00378{bottom:440.653347pt;}
.y14_c00378{bottom:467.853347pt;}
.y12_c00378{bottom:495.035213pt;}
.y13_c00378{bottom:495.040013pt;}
.y11_c00378{bottom:523.200013pt;}
.y10_c00378{bottom:550.413347pt;}
.yf_c00378{bottom:606.080013pt;}
.ye_c00378{bottom:662.407480pt;}
.yc_c00378{bottom:689.606413pt;}
.yd_c00378{bottom:689.613347pt;}
.yb_c00378{bottom:716.812280pt;}
.ya_c00378{bottom:744.002680pt;}
.y9_c00378{bottom:771.533347pt;}
.y8_c00378{bottom:825.933347pt;}
.y7_c00378{bottom:853.133347pt;}
.y6_c00378{bottom:880.320013pt;}
.y5_c00378{bottom:908.160013pt;}
.y4_c00378{bottom:935.373347pt;}
.y3_c00378{bottom:962.560013pt;}
.y2_c00378{bottom:990.080013pt;}
.y1_c00378{bottom:1056.640013pt;}
.h8_c00378{height:31.541760pt;}
.h6_c00378{height:33.246720pt;}
.hd_c00378{height:49.726562pt;}
.hb_c00378{height:58.101562pt;}
.ha_c00378{height:58.595833pt;}
.h2_c00378{height:59.662500pt;}
.h5_c00378{height:59.671875pt;}
.h3_c00378{height:60.718750pt;}
.hc_c00378{height:60.733683pt;}
.h9_c00378{height:60.742217pt;}
.h7_c00378{height:61.743750pt;}
.h4_c00378{height:61.774898pt;}
.h1_c00378{height:1122.666667pt;}
.h0_c00378{height:1122.880013pt;}
.w1_c00378{width:793.333333pt;}
.w0_c00378{width:793.600013pt;}
.x0_c00378{left:0.000000pt;}
.x26_c00378{left:108.430413pt;}
.x1_c00378{left:109.373347pt;}
.xc_c00378{left:110.556813pt;}
.x21_c00378{left:156.626680pt;}
.x2_c00378{left:157.773347pt;}
.x8_c00378{left:158.826680pt;}
.xd_c00378{left:189.053347pt;}
.xe_c00378{left:211.333347pt;}
.xf_c00378{left:232.786680pt;}
.x10_c00378{left:259.973347pt;}
.x22_c00378{left:262.640013pt;}
.x1e_c00378{left:266.040013pt;}
.x11_c00378{left:273.120013pt;}
.x1a_c00378{left:278.906680pt;}
.x23_c00378{left:283.693347pt;}
.x12_c00378{left:292.880013pt;}
.x1b_c00378{left:295.546680pt;}
.x13_c00378{left:325.013347pt;}
.x1f_c00378{left:342.186680pt;}
.x14_c00378{left:352.573347pt;}
.x27_c00378{left:377.453347pt;}
.x24_c00378{left:385.120013pt;}
.x15_c00378{left:395.733347pt;}
.x25_c00378{left:402.173347pt;}
.x16_c00378{left:424.506680pt;}
.x5_c00378{left:436.946680pt;}
.x6_c00378{left:461.546680pt;}
.x20_c00378{left:504.973347pt;}
.x18_c00378{left:506.413347pt;}
.x9_c00378{left:517.586680pt;}
.x19_c00378{left:525.466680pt;}
.x1c_c00378{left:534.413347pt;}
.xa_c00378{left:541.666680pt;}
.xb_c00378{left:551.840013pt;}
.x3_c00378{left:555.346680pt;}
.x4_c00378{left:580.906680pt;}
.x1d_c00378{left:591.000013pt;}
.x17_c00378{left:615.893347pt;}
.x7_c00378{left:645.266680pt;}
}





/* 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_c00379 {
    display:none;
  }
  .loading-indicator_c00379.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00379 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_c00379 { 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_c00379" -> "#page-container .classname_c00379")
 */
.pf_c00379 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00379 { /* 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_c00379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00379 { /* 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_c00379 { /* 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_c00379 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00379 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00379 {overflow:visible;}
  }
}
.c_c00379 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00379 { /* 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_c00379:after { /* webkit #35443 */
  content: '';
}
.t_c00379:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00379 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 */
}
.__c00379 { /* 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_c00379 { /* info for Javascript */
  display:none;
}
.l_c00379 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00379 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00379 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00379: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_c00379 {
    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_c00379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00379.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_c00379 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00379{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00379;src:url('chunks/assets/font_06043a4dbdc2b8553faa572f.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.284668;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_c00379;src:url('chunks/assets/font_e67fdbc9cc51c7cc2b478b83.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.284180;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;}
.m7_c00379{transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);}
.m6_c00379{transform:matrix(0.244556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244556,0.000000,0.000000,0.250000,0,0);}
.m2_c00379{transform:matrix(0.245073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245073,0.000000,0.000000,0.250000,0,0);}
.m0_c00379{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m9_c00379{transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);}
.m8_c00379{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m1_c00379{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);}
.m4_c00379{transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);}
.m3_c00379{transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);}
.m5_c00379{transform:matrix(0.299308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299308,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls57_c00379{letter-spacing:-2.457000px;}
.ls4f_c00379{letter-spacing:-2.352000px;}
.ls78_c00379{letter-spacing:-2.309580px;}
.ls75_c00379{letter-spacing:-2.232360px;}
.ls6d_c00379{letter-spacing:-2.204280px;}
.ls83_c00379{letter-spacing:-2.035800px;}
.ls64_c00379{letter-spacing:-1.930500px;}
.ls82_c00379{letter-spacing:-1.839240px;}
.ls87_c00379{letter-spacing:-1.769040px;}
.ls60_c00379{letter-spacing:-1.593540px;}
.ls50_c00379{letter-spacing:-1.446120px;}
.ls8a_c00379{letter-spacing:-1.207440px;}
.ls85_c00379{letter-spacing:-1.165320px;}
.ls88_c00379{letter-spacing:-1.151280px;}
.ls84_c00379{letter-spacing:-1.017900px;}
.ls6c_c00379{letter-spacing:-0.961740px;}
.ls86_c00379{letter-spacing:-0.884520px;}
.ls69_c00379{letter-spacing:-0.877500px;}
.ls7e_c00379{letter-spacing:-0.793260px;}
.ls7c_c00379{letter-spacing:-0.772200px;}
.ls51_c00379{letter-spacing:-0.765180px;}
.ls89_c00379{letter-spacing:-0.730080px;}
.ls73_c00379{letter-spacing:-0.610740px;}
.ls8b_c00379{letter-spacing:-0.603720px;}
.ls6f_c00379{letter-spacing:-0.589680px;}
.ls76_c00379{letter-spacing:-0.568620px;}
.ls80_c00379{letter-spacing:-0.526500px;}
.ls6a_c00379{letter-spacing:-0.519480px;}
.ls6e_c00379{letter-spacing:-0.512460px;}
.ls71_c00379{letter-spacing:-0.463320px;}
.ls7d_c00379{letter-spacing:-0.456300px;}
.ls8c_c00379{letter-spacing:-0.435240px;}
.ls7b_c00379{letter-spacing:-0.407160px;}
.ls74_c00379{letter-spacing:-0.386100px;}
.ls65_c00379{letter-spacing:-0.372060px;}
.ls67_c00379{letter-spacing:-0.322920px;}
.ls66_c00379{letter-spacing:-0.294840px;}
.ls72_c00379{letter-spacing:-0.266760px;}
.ls5e_c00379{letter-spacing:-0.245700px;}
.ls5f_c00379{letter-spacing:-0.231660px;}
.ls68_c00379{letter-spacing:-0.217620px;}
.ls61_c00379{letter-spacing:-0.196560px;}
.ls5d_c00379{letter-spacing:-0.189540px;}
.ls55_c00379{letter-spacing:-0.182520px;}
.ls56_c00379{letter-spacing:-0.175500px;}
.ls63_c00379{letter-spacing:-0.168480px;}
.ls5c_c00379{letter-spacing:-0.161460px;}
.ls7f_c00379{letter-spacing:-0.140400px;}
.ls62_c00379{letter-spacing:-0.133380px;}
.ls7a_c00379{letter-spacing:-0.126360px;}
.ls59_c00379{letter-spacing:-0.091260px;}
.ls58_c00379{letter-spacing:-0.084240px;}
.ls70_c00379{letter-spacing:-0.070200px;}
.ls81_c00379{letter-spacing:-0.042120px;}
.ls79_c00379{letter-spacing:-0.035100px;}
.ls5a_c00379{letter-spacing:-0.028080px;}
.ls6b_c00379{letter-spacing:-0.014040px;}
.ls53_c00379{letter-spacing:-0.007020px;}
.ls52_c00379{letter-spacing:0.000000px;}
.ls22_c00379{letter-spacing:0.007020px;}
.ls37_c00379{letter-spacing:0.014040px;}
.ls54_c00379{letter-spacing:0.042120px;}
.ls5b_c00379{letter-spacing:0.049140px;}
.ls35_c00379{letter-spacing:0.056160px;}
.ls1f_c00379{letter-spacing:0.063180px;}
.ls48_c00379{letter-spacing:0.070200px;}
.ls2_c00379{letter-spacing:0.098280px;}
.ls13_c00379{letter-spacing:0.105300px;}
.ls41_c00379{letter-spacing:0.119340px;}
.ls8_c00379{letter-spacing:0.126360px;}
.lse_c00379{letter-spacing:0.133380px;}
.ls32_c00379{letter-spacing:0.140400px;}
.ls15_c00379{letter-spacing:0.147420px;}
.ls23_c00379{letter-spacing:0.161460px;}
.ls36_c00379{letter-spacing:0.168480px;}
.ls4a_c00379{letter-spacing:0.196560px;}
.ls1_c00379{letter-spacing:0.210600px;}
.lsf_c00379{letter-spacing:0.217620px;}
.ls4_c00379{letter-spacing:0.224640px;}
.lsd_c00379{letter-spacing:0.231660px;}
.ls6_c00379{letter-spacing:0.238680px;}
.ls38_c00379{letter-spacing:0.245700px;}
.ls3_c00379{letter-spacing:0.252720px;}
.ls4b_c00379{letter-spacing:0.259740px;}
.ls24_c00379{letter-spacing:0.273780px;}
.ls29_c00379{letter-spacing:0.280800px;}
.ls28_c00379{letter-spacing:0.294840px;}
.ls39_c00379{letter-spacing:0.322920px;}
.ls2a_c00379{letter-spacing:0.351000px;}
.ls5_c00379{letter-spacing:0.365040px;}
.ls47_c00379{letter-spacing:0.372060px;}
.ls18_c00379{letter-spacing:0.393120px;}
.ls16_c00379{letter-spacing:0.400140px;}
.ls2e_c00379{letter-spacing:0.407160px;}
.ls26_c00379{letter-spacing:0.414180px;}
.ls9_c00379{letter-spacing:0.421200px;}
.ls7_c00379{letter-spacing:0.428220px;}
.ls27_c00379{letter-spacing:0.449280px;}
.ls30_c00379{letter-spacing:0.463320px;}
.ls46_c00379{letter-spacing:0.477360px;}
.ls49_c00379{letter-spacing:0.484380px;}
.ls17_c00379{letter-spacing:0.491400px;}
.ls1c_c00379{letter-spacing:0.505440px;}
.ls3b_c00379{letter-spacing:0.533520px;}
.ls3c_c00379{letter-spacing:0.540540px;}
.ls10_c00379{letter-spacing:0.547560px;}
.ls45_c00379{letter-spacing:0.575640px;}
.ls21_c00379{letter-spacing:0.582660px;}
.ls3a_c00379{letter-spacing:0.610740px;}
.ls8d_c00379{letter-spacing:0.638820px;}
.ls20_c00379{letter-spacing:0.645840px;}
.ls1b_c00379{letter-spacing:0.680940px;}
.ls0_c00379{letter-spacing:0.758160px;}
.ls4c_c00379{letter-spacing:0.779220px;}
.ls25_c00379{letter-spacing:0.835380px;}
.ls1d_c00379{letter-spacing:0.842400px;}
.ls1a_c00379{letter-spacing:0.856440px;}
.ls8e_c00379{letter-spacing:0.905520px;}
.ls34_c00379{letter-spacing:0.919620px;}
.ls43_c00379{letter-spacing:0.991800px;}
.ls11_c00379{letter-spacing:0.996840px;}
.lsc_c00379{letter-spacing:1.010880px;}
.lsa_c00379{letter-spacing:1.045980px;}
.ls44_c00379{letter-spacing:1.101240px;}
.ls2b_c00379{letter-spacing:1.144260px;}
.ls3e_c00379{letter-spacing:1.155960px;}
.ls2d_c00379{letter-spacing:1.158300px;}
.ls14_c00379{letter-spacing:1.221480px;}
.ls3d_c00379{letter-spacing:1.238040px;}
.ls2c_c00379{letter-spacing:1.326780px;}
.ls1e_c00379{letter-spacing:1.481220px;}
.ls4d_c00379{letter-spacing:1.769040px;}
.ls12_c00379{letter-spacing:1.825200px;}
.ls42_c00379{letter-spacing:1.860300px;}
.ls33_c00379{letter-spacing:1.888380px;}
.ls4e_c00379{letter-spacing:1.930500px;}
.ls2f_c00379{letter-spacing:2.190240px;}
.lsb_c00379{letter-spacing:2.485080px;}
.ls40_c00379{letter-spacing:2.592360px;}
.ls3f_c00379{letter-spacing:2.681280px;}
.ls31_c00379{letter-spacing:3.151980px;}
.ls19_c00379{letter-spacing:3.257280px;}
.ls77_c00379{letter-spacing:3.510000px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{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__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00379{word-spacing:0.000000px;}
.ws0_c00379{word-spacing:9.486240px;}
._9_c00379{margin-left:-7.413120px;}
._6_c00379{margin-left:-6.149520px;}
._8_c00379{margin-left:-5.047380px;}
._0_c00379{margin-left:-3.397680px;}
._5_c00379{margin-left:-1.881360px;}
._4_c00379{width:1.797120px;}
._2_c00379{width:3.173040px;}
._7_c00379{width:4.197960px;}
._3_c00379{width:5.384340px;}
._1_c00379{width:6.851520px;}
._a_c00379{width:7.911540px;}
._b_c00379{width:9.673560px;}
._12_c00379{width:11.232000px;}
._15_c00379{width:12.250260px;}
._14_c00379{width:13.379760px;}
._13_c00379{width:15.247380px;}
._19_c00379{width:16.574220px;}
._1a_c00379{width:18.104580px;}
._18_c00379{width:19.157640px;}
._16_c00379{width:20.308860px;}
._17_c00379{width:22.056840px;}
._e_c00379{width:23.488920px;}
._d_c00379{width:25.966980px;}
._11_c00379{width:27.314820px;}
._10_c00379{width:28.774980px;}
._f_c00379{width:31.533840px;}
._c_c00379{width:35.184240px;}
.fc0_c00379{color:transparent;}
.fs3_c00379{font-size:58.800000px;}
.fs0_c00379{font-size:67.200000px;}
.fs2_c00379{font-size:68.400000px;}
.fs1_c00379{font-size:70.200000px;}
.y0_c00379{bottom:0.000000px;}
.y1d_c00379{bottom:73.440006px;}
.y1c_c00379{bottom:164.536806px;}
.y1b_c00379{bottom:195.495006px;}
.y1a_c00379{bottom:257.775006px;}
.y19_c00379{bottom:319.335006px;}
.y18_c00379{bottom:319.339356px;}
.y16_c00379{bottom:350.271606px;}
.y17_c00379{bottom:350.280006px;}
.y15_c00379{bottom:411.135006px;}
.y14_c00379{bottom:411.139806px;}
.y13_c00379{bottom:442.800006px;}
.y12_c00379{bottom:504.029856px;}
.y11_c00379{bottom:566.648256px;}
.y10_c00379{bottom:597.975006px;}
.yf_c00379{bottom:628.920606px;}
.ye_c00379{bottom:659.527806px;}
.yd_c00379{bottom:690.135006px;}
.yc_c00379{bottom:720.724656px;}
.yb_c00379{bottom:751.700406px;}
.ya_c00379{bottom:782.641056px;}
.y9_c00379{bottom:844.569606px;}
.y8_c00379{bottom:906.132756px;}
.y7_c00379{bottom:967.680606px;}
.y6_c00379{bottom:998.287806px;}
.y5_c00379{bottom:1028.895006px;}
.y4_c00379{bottom:1028.900406px;}
.y3_c00379{bottom:1059.841056px;}
.y2_c00379{bottom:1121.775006px;}
.y1_c00379{bottom:1197.360006px;}
.h7_c00379{height:57.708984px;}
.h2_c00379{height:65.953125px;}
.h3_c00379{height:68.897461px;}
.h4_c00379{height:68.906461px;}
.h5_c00379{height:68.919061px;}
.h6_c00379{height:68.955061px;}
.h1_c00379{height:1263.000000px;}
.h0_c00379{height:1263.240006px;}
.w1_c00379{width:892.500000px;}
.w0_c00379{width:892.799998px;}
.x0_c00379{left:0.000000px;}
.x6_c00379{left:120.986249px;}
.x2_c00379{left:122.684999px;}
.x1_c00379{left:123.764999px;}
.x8_c00379{left:159.284999px;}
.x7_c00379{left:175.145548px;}
.x3_c00379{left:176.230049px;}
.x9_c00379{left:217.949999px;}
.x10_c00379{left:242.804998px;}
.x11_c00379{left:270.869999px;}
.xa_c00379{left:276.944999px;}
.xf_c00379{left:305.774999px;}
.xb_c00379{left:319.439999px;}
.x4_c00379{left:333.404999px;}
.xc_c00379{left:355.244999px;}
.x12_c00379{left:379.964999px;}
.x5_c00379{left:385.169999px;}
.xd_c00379{left:398.204998px;}
.x16_c00379{left:411.284998px;}
.x13_c00379{left:413.024999px;}
.xe_c00379{left:417.419999px;}
.x1a_c00379{left:426.074998px;}
.x17_c00379{left:440.384999px;}
.x14_c00379{left:475.604998px;}
.x15_c00379{left:498.164999px;}
.x18_c00379{left:562.844998px;}
.x19_c00379{left:591.254999px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls57_c00379{letter-spacing:-2.184000pt;}
.ls4f_c00379{letter-spacing:-2.090667pt;}
.ls78_c00379{letter-spacing:-2.052960pt;}
.ls75_c00379{letter-spacing:-1.984320pt;}
.ls6d_c00379{letter-spacing:-1.959360pt;}
.ls83_c00379{letter-spacing:-1.809600pt;}
.ls64_c00379{letter-spacing:-1.716000pt;}
.ls82_c00379{letter-spacing:-1.634880pt;}
.ls87_c00379{letter-spacing:-1.572480pt;}
.ls60_c00379{letter-spacing:-1.416480pt;}
.ls50_c00379{letter-spacing:-1.285440pt;}
.ls8a_c00379{letter-spacing:-1.073280pt;}
.ls85_c00379{letter-spacing:-1.035840pt;}
.ls88_c00379{letter-spacing:-1.023360pt;}
.ls84_c00379{letter-spacing:-0.904800pt;}
.ls6c_c00379{letter-spacing:-0.854880pt;}
.ls86_c00379{letter-spacing:-0.786240pt;}
.ls69_c00379{letter-spacing:-0.780000pt;}
.ls7e_c00379{letter-spacing:-0.705120pt;}
.ls7c_c00379{letter-spacing:-0.686400pt;}
.ls51_c00379{letter-spacing:-0.680160pt;}
.ls89_c00379{letter-spacing:-0.648960pt;}
.ls73_c00379{letter-spacing:-0.542880pt;}
.ls8b_c00379{letter-spacing:-0.536640pt;}
.ls6f_c00379{letter-spacing:-0.524160pt;}
.ls76_c00379{letter-spacing:-0.505440pt;}
.ls80_c00379{letter-spacing:-0.468000pt;}
.ls6a_c00379{letter-spacing:-0.461760pt;}
.ls6e_c00379{letter-spacing:-0.455520pt;}
.ls71_c00379{letter-spacing:-0.411840pt;}
.ls7d_c00379{letter-spacing:-0.405600pt;}
.ls8c_c00379{letter-spacing:-0.386880pt;}
.ls7b_c00379{letter-spacing:-0.361920pt;}
.ls74_c00379{letter-spacing:-0.343200pt;}
.ls65_c00379{letter-spacing:-0.330720pt;}
.ls67_c00379{letter-spacing:-0.287040pt;}
.ls66_c00379{letter-spacing:-0.262080pt;}
.ls72_c00379{letter-spacing:-0.237120pt;}
.ls5e_c00379{letter-spacing:-0.218400pt;}
.ls5f_c00379{letter-spacing:-0.205920pt;}
.ls68_c00379{letter-spacing:-0.193440pt;}
.ls61_c00379{letter-spacing:-0.174720pt;}
.ls5d_c00379{letter-spacing:-0.168480pt;}
.ls55_c00379{letter-spacing:-0.162240pt;}
.ls56_c00379{letter-spacing:-0.156000pt;}
.ls63_c00379{letter-spacing:-0.149760pt;}
.ls5c_c00379{letter-spacing:-0.143520pt;}
.ls7f_c00379{letter-spacing:-0.124800pt;}
.ls62_c00379{letter-spacing:-0.118560pt;}
.ls7a_c00379{letter-spacing:-0.112320pt;}
.ls59_c00379{letter-spacing:-0.081120pt;}
.ls58_c00379{letter-spacing:-0.074880pt;}
.ls70_c00379{letter-spacing:-0.062400pt;}
.ls81_c00379{letter-spacing:-0.037440pt;}
.ls79_c00379{letter-spacing:-0.031200pt;}
.ls5a_c00379{letter-spacing:-0.024960pt;}
.ls6b_c00379{letter-spacing:-0.012480pt;}
.ls53_c00379{letter-spacing:-0.006240pt;}
.ls52_c00379{letter-spacing:0.000000pt;}
.ls22_c00379{letter-spacing:0.006240pt;}
.ls37_c00379{letter-spacing:0.012480pt;}
.ls54_c00379{letter-spacing:0.037440pt;}
.ls5b_c00379{letter-spacing:0.043680pt;}
.ls35_c00379{letter-spacing:0.049920pt;}
.ls1f_c00379{letter-spacing:0.056160pt;}
.ls48_c00379{letter-spacing:0.062400pt;}
.ls2_c00379{letter-spacing:0.087360pt;}
.ls13_c00379{letter-spacing:0.093600pt;}
.ls41_c00379{letter-spacing:0.106080pt;}
.ls8_c00379{letter-spacing:0.112320pt;}
.lse_c00379{letter-spacing:0.118560pt;}
.ls32_c00379{letter-spacing:0.124800pt;}
.ls15_c00379{letter-spacing:0.131040pt;}
.ls23_c00379{letter-spacing:0.143520pt;}
.ls36_c00379{letter-spacing:0.149760pt;}
.ls4a_c00379{letter-spacing:0.174720pt;}
.ls1_c00379{letter-spacing:0.187200pt;}
.lsf_c00379{letter-spacing:0.193440pt;}
.ls4_c00379{letter-spacing:0.199680pt;}
.lsd_c00379{letter-spacing:0.205920pt;}
.ls6_c00379{letter-spacing:0.212160pt;}
.ls38_c00379{letter-spacing:0.218400pt;}
.ls3_c00379{letter-spacing:0.224640pt;}
.ls4b_c00379{letter-spacing:0.230880pt;}
.ls24_c00379{letter-spacing:0.243360pt;}
.ls29_c00379{letter-spacing:0.249600pt;}
.ls28_c00379{letter-spacing:0.262080pt;}
.ls39_c00379{letter-spacing:0.287040pt;}
.ls2a_c00379{letter-spacing:0.312000pt;}
.ls5_c00379{letter-spacing:0.324480pt;}
.ls47_c00379{letter-spacing:0.330720pt;}
.ls18_c00379{letter-spacing:0.349440pt;}
.ls16_c00379{letter-spacing:0.355680pt;}
.ls2e_c00379{letter-spacing:0.361920pt;}
.ls26_c00379{letter-spacing:0.368160pt;}
.ls9_c00379{letter-spacing:0.374400pt;}
.ls7_c00379{letter-spacing:0.380640pt;}
.ls27_c00379{letter-spacing:0.399360pt;}
.ls30_c00379{letter-spacing:0.411840pt;}
.ls46_c00379{letter-spacing:0.424320pt;}
.ls49_c00379{letter-spacing:0.430560pt;}
.ls17_c00379{letter-spacing:0.436800pt;}
.ls1c_c00379{letter-spacing:0.449280pt;}
.ls3b_c00379{letter-spacing:0.474240pt;}
.ls3c_c00379{letter-spacing:0.480480pt;}
.ls10_c00379{letter-spacing:0.486720pt;}
.ls45_c00379{letter-spacing:0.511680pt;}
.ls21_c00379{letter-spacing:0.517920pt;}
.ls3a_c00379{letter-spacing:0.542880pt;}
.ls8d_c00379{letter-spacing:0.567840pt;}
.ls20_c00379{letter-spacing:0.574080pt;}
.ls1b_c00379{letter-spacing:0.605280pt;}
.ls0_c00379{letter-spacing:0.673920pt;}
.ls4c_c00379{letter-spacing:0.692640pt;}
.ls25_c00379{letter-spacing:0.742560pt;}
.ls1d_c00379{letter-spacing:0.748800pt;}
.ls1a_c00379{letter-spacing:0.761280pt;}
.ls8e_c00379{letter-spacing:0.804907pt;}
.ls34_c00379{letter-spacing:0.817440pt;}
.ls43_c00379{letter-spacing:0.881600pt;}
.ls11_c00379{letter-spacing:0.886080pt;}
.lsc_c00379{letter-spacing:0.898560pt;}
.lsa_c00379{letter-spacing:0.929760pt;}
.ls44_c00379{letter-spacing:0.978880pt;}
.ls2b_c00379{letter-spacing:1.017120pt;}
.ls3e_c00379{letter-spacing:1.027520pt;}
.ls2d_c00379{letter-spacing:1.029600pt;}
.ls14_c00379{letter-spacing:1.085760pt;}
.ls3d_c00379{letter-spacing:1.100480pt;}
.ls2c_c00379{letter-spacing:1.179360pt;}
.ls1e_c00379{letter-spacing:1.316640pt;}
.ls4d_c00379{letter-spacing:1.572480pt;}
.ls12_c00379{letter-spacing:1.622400pt;}
.ls42_c00379{letter-spacing:1.653600pt;}
.ls33_c00379{letter-spacing:1.678560pt;}
.ls4e_c00379{letter-spacing:1.716000pt;}
.ls2f_c00379{letter-spacing:1.946880pt;}
.lsb_c00379{letter-spacing:2.208960pt;}
.ls40_c00379{letter-spacing:2.304320pt;}
.ls3f_c00379{letter-spacing:2.383360pt;}
.ls31_c00379{letter-spacing:2.801760pt;}
.ls19_c00379{letter-spacing:2.895360pt;}
.ls77_c00379{letter-spacing:3.120000pt;}
.ws1_c00379{word-spacing:0.000000pt;}
.ws0_c00379{word-spacing:8.432213pt;}
._9_c00379{margin-left:-6.589440pt;}
._6_c00379{margin-left:-5.466240pt;}
._8_c00379{margin-left:-4.486560pt;}
._0_c00379{margin-left:-3.020160pt;}
._5_c00379{margin-left:-1.672320pt;}
._4_c00379{width:1.597440pt;}
._2_c00379{width:2.820480pt;}
._7_c00379{width:3.731520pt;}
._3_c00379{width:4.786080pt;}
._1_c00379{width:6.090240pt;}
._a_c00379{width:7.032480pt;}
._b_c00379{width:8.598720pt;}
._12_c00379{width:9.984000pt;}
._15_c00379{width:10.889120pt;}
._14_c00379{width:11.893120pt;}
._13_c00379{width:13.553227pt;}
._19_c00379{width:14.732640pt;}
._1a_c00379{width:16.092960pt;}
._18_c00379{width:17.029013pt;}
._16_c00379{width:18.052320pt;}
._17_c00379{width:19.606080pt;}
._e_c00379{width:20.879040pt;}
._d_c00379{width:23.081760pt;}
._11_c00379{width:24.279840pt;}
._10_c00379{width:25.577760pt;}
._f_c00379{width:28.030080pt;}
._c_c00379{width:31.274880pt;}
.fs3_c00379{font-size:52.266667pt;}
.fs0_c00379{font-size:59.733333pt;}
.fs2_c00379{font-size:60.800000pt;}
.fs1_c00379{font-size:62.400000pt;}
.y0_c00379{bottom:0.000000pt;}
.y1d_c00379{bottom:65.280005pt;}
.y1c_c00379{bottom:146.254939pt;}
.y1b_c00379{bottom:173.773339pt;}
.y1a_c00379{bottom:229.133339pt;}
.y19_c00379{bottom:283.853339pt;}
.y18_c00379{bottom:283.857205pt;}
.y16_c00379{bottom:311.352539pt;}
.y17_c00379{bottom:311.360005pt;}
.y15_c00379{bottom:365.453339pt;}
.y14_c00379{bottom:365.457605pt;}
.y13_c00379{bottom:393.600005pt;}
.y12_c00379{bottom:448.026539pt;}
.y11_c00379{bottom:503.687339pt;}
.y10_c00379{bottom:531.533339pt;}
.yf_c00379{bottom:559.040539pt;}
.ye_c00379{bottom:586.246939pt;}
.yd_c00379{bottom:613.453339pt;}
.yc_c00379{bottom:640.644139pt;}
.yb_c00379{bottom:668.178139pt;}
.ya_c00379{bottom:695.680939pt;}
.y9_c00379{bottom:750.728539pt;}
.y8_c00379{bottom:805.451339pt;}
.y7_c00379{bottom:860.160539pt;}
.y6_c00379{bottom:887.366939pt;}
.y5_c00379{bottom:914.573339pt;}
.y4_c00379{bottom:914.578139pt;}
.y3_c00379{bottom:942.080939pt;}
.y2_c00379{bottom:997.133339pt;}
.y1_c00379{bottom:1064.320005pt;}
.h7_c00379{height:51.296875pt;}
.h2_c00379{height:58.625000pt;}
.h3_c00379{height:61.242187pt;}
.h4_c00379{height:61.250187pt;}
.h5_c00379{height:61.261387pt;}
.h6_c00379{height:61.293387pt;}
.h1_c00379{height:1122.666667pt;}
.h0_c00379{height:1122.880005pt;}
.w1_c00379{width:793.333333pt;}
.w0_c00379{width:793.599999pt;}
.x0_c00379{left:0.000000pt;}
.x6_c00379{left:107.543332pt;}
.x2_c00379{left:109.053332pt;}
.x1_c00379{left:110.013332pt;}
.x8_c00379{left:141.586665pt;}
.x7_c00379{left:155.684932pt;}
.x3_c00379{left:156.648932pt;}
.x9_c00379{left:193.733332pt;}
.x10_c00379{left:215.826665pt;}
.x11_c00379{left:240.773332pt;}
.xa_c00379{left:246.173332pt;}
.xf_c00379{left:271.799999pt;}
.xb_c00379{left:283.946665pt;}
.x4_c00379{left:296.359999pt;}
.xc_c00379{left:315.773332pt;}
.x12_c00379{left:337.746665pt;}
.x5_c00379{left:342.373332pt;}
.xd_c00379{left:353.959999pt;}
.x16_c00379{left:365.586665pt;}
.x13_c00379{left:367.133332pt;}
.xe_c00379{left:371.039999pt;}
.x1a_c00379{left:378.733332pt;}
.x17_c00379{left:391.453332pt;}
.x14_c00379{left:422.759999pt;}
.x15_c00379{left:442.813332pt;}
.x18_c00379{left:500.306665pt;}
.x19_c00379{left:525.559999pt;}
}





/* 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_c00380 {
    display:none;
  }
  .loading-indicator_c00380.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00380 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_c00380 { 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_c00380" -> "#page-container .classname_c00380")
 */
.pf_c00380 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00380 { /* 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_c00380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00380 { /* 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_c00380 { /* 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_c00380 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00380 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00380 {overflow:visible;}
  }
}
.c_c00380 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00380 { /* 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_c00380:after { /* webkit #35443 */
  content: '';
}
.t_c00380:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00380 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 */
}
.__c00380 { /* 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_c00380 { /* info for Javascript */
  display:none;
}
.l_c00380 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00380 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00380 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00380: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_c00380 {
    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_c00380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00380.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_c00380 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00380;src:url('chunks/assets/font_7fc67b1c1f404ff03449d654.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.284668;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_c00380;src:url('chunks/assets/font_3a9698c44f02cdfe97565054.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.284180;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_c00380;src:url('chunks/assets/font_c12afca76f5b85eb84e3fc24.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;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:ff4_c00380;src:url('chunks/assets/font_28e841c96d7577e7cdd83488.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:0.666000;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_c00380;src:url('chunks/assets/font_1eadd2be9d9d8d03c08b570e.woff2')format("woff");}.ff5_c00380{font-family:ff5_c00380;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;}
.m7_c00380{transform:matrix(0.172055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172055,0.000000,0.000000,0.250000,0,0);}
.m15_c00380{transform:matrix(0.174412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174412,0.000000,0.000000,0.250000,0,0);}
.m16_c00380{transform:matrix(0.217266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217266,0.000000,0.000000,0.250000,0,0);}
.m11_c00380{transform:matrix(0.224004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224004,0.000000,0.000000,0.250000,0,0);}
.m8_c00380{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m13_c00380{transform:matrix(0.229542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229542,0.000000,0.000000,0.250000,0,0);}
.m0_c00380{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m12_c00380{transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);}
.m1_c00380{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);}
.m9_c00380{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.ma_c00380{transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);}
.m2_c00380{transform:matrix(0.261274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261274,0.000000,0.000000,0.250000,0,0);}
.m14_c00380{transform:matrix(0.274726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274726,0.000000,0.000000,0.250000,0,0);}
.m6_c00380{transform:matrix(0.278122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278122,0.000000,0.000000,0.250000,0,0);}
.mf_c00380{transform:matrix(0.278746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278746,0.000000,0.000000,0.250000,0,0);}
.m4_c00380{transform:matrix(0.297181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297181,0.000000,0.000000,0.250000,0,0);}
.m3_c00380{transform:matrix(0.306717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306717,0.000000,0.000000,0.250000,0,0);}
.m5_c00380{transform:matrix(0.309903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309903,0.000000,0.000000,0.250000,0,0);}
.me_c00380{transform:matrix(0.321742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321742,0.000000,0.000000,0.250000,0,0);}
.md_c00380{transform:matrix(0.325117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325117,0.000000,0.000000,0.250000,0,0);}
.m10_c00380{transform:matrix(0.333218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333218,0.000000,0.000000,0.250000,0,0);}
.mc_c00380{transform:matrix(0.346866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346866,0.000000,0.000000,0.250000,0,0);}
.mb_c00380{transform:matrix(0.473214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473214,0.000000,0.000000,0.250000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls6c_c00380{letter-spacing:-2.373000px;}
.ls65_c00380{letter-spacing:-2.352000px;}
.ls6a_c00380{letter-spacing:-1.905180px;}
.ls83_c00380{letter-spacing:-1.891620px;}
.ls76_c00380{letter-spacing:-1.823820px;}
.ls71_c00380{letter-spacing:-1.701780px;}
.ls73_c00380{letter-spacing:-1.600080px;}
.ls7d_c00380{letter-spacing:-1.410240px;}
.ls82_c00380{letter-spacing:-1.389900px;}
.ls79_c00380{letter-spacing:-1.302000px;}
.ls7b_c00380{letter-spacing:-0.739020px;}
.ls7a_c00380{letter-spacing:-0.494940px;}
.ls74_c00380{letter-spacing:-0.359340px;}
.ls7e_c00380{letter-spacing:-0.311880px;}
.ls6f_c00380{letter-spacing:-0.264420px;}
.ls7f_c00380{letter-spacing:-0.257640px;}
.ls87_c00380{letter-spacing:-0.176280px;}
.ls69_c00380{letter-spacing:-0.162720px;}
.ls7c_c00380{letter-spacing:-0.142380px;}
.ls6d_c00380{letter-spacing:-0.128820px;}
.ls75_c00380{letter-spacing:-0.013560px;}
.ls66_c00380{letter-spacing:0.000000px;}
.ls40_c00380{letter-spacing:0.020340px;}
.ls15_c00380{letter-spacing:0.033900px;}
.ls81_c00380{letter-spacing:0.067800px;}
.ls89_c00380{letter-spacing:0.101700px;}
.ls53_c00380{letter-spacing:0.155940px;}
.ls25_c00380{letter-spacing:0.176280px;}
.ls48_c00380{letter-spacing:0.203400px;}
.ls3d_c00380{letter-spacing:0.216960px;}
.ls54_c00380{letter-spacing:0.237300px;}
.ls5_c00380{letter-spacing:0.250860px;}
.ls16_c00380{letter-spacing:0.264420px;}
.ls4e_c00380{letter-spacing:0.291540px;}
.ls38_c00380{letter-spacing:0.294120px;}
.ls39_c00380{letter-spacing:0.321480px;}
.ls8b_c00380{letter-spacing:0.345600px;}
.ls4_c00380{letter-spacing:0.359340px;}
.ls84_c00380{letter-spacing:0.366120px;}
.ls21_c00380{letter-spacing:0.440700px;}
.ls51_c00380{letter-spacing:0.454260px;}
.ls42_c00380{letter-spacing:0.474600px;}
.ls11_c00380{letter-spacing:0.478800px;}
.ls29_c00380{letter-spacing:0.508500px;}
.ls4f_c00380{letter-spacing:0.515280px;}
.ls2f_c00380{letter-spacing:0.535620px;}
.lsa_c00380{letter-spacing:0.555960px;}
.ls17_c00380{letter-spacing:0.596640px;}
.ls1b_c00380{letter-spacing:0.616980px;}
.ls44_c00380{letter-spacing:0.637320px;}
.ls61_c00380{letter-spacing:0.650880px;}
.ls72_c00380{letter-spacing:0.664440px;}
.ls80_c00380{letter-spacing:0.670320px;}
.ls43_c00380{letter-spacing:0.671220px;}
.ls6b_c00380{letter-spacing:0.678000px;}
.ls88_c00380{letter-spacing:0.732240px;}
.ls55_c00380{letter-spacing:0.745560px;}
.ls23_c00380{letter-spacing:0.745800px;}
.ls3a_c00380{letter-spacing:0.752580px;}
.lse_c00380{letter-spacing:0.766140px;}
.ls26_c00380{letter-spacing:0.800280px;}
.ls30_c00380{letter-spacing:0.813600px;}
.ls2b_c00380{letter-spacing:0.820380px;}
.ls8a_c00380{letter-spacing:0.827160px;}
.ls1c_c00380{letter-spacing:0.833940px;}
.ls85_c00380{letter-spacing:0.847500px;}
.ls19_c00380{letter-spacing:0.867840px;}
.ls5a_c00380{letter-spacing:0.881400px;}
.ls67_c00380{letter-spacing:0.888180px;}
.ls86_c00380{letter-spacing:0.901740px;}
.ls4c_c00380{letter-spacing:0.916560px;}
.ls70_c00380{letter-spacing:0.922080px;}
.lsd_c00380{letter-spacing:0.928860px;}
.ls52_c00380{letter-spacing:0.949200px;}
.ls62_c00380{letter-spacing:0.950760px;}
.ls2c_c00380{letter-spacing:0.969540px;}
.ls34_c00380{letter-spacing:0.976320px;}
.ls0_c00380{letter-spacing:1.010220px;}
.ls4d_c00380{letter-spacing:1.039680px;}
.ls63_c00380{letter-spacing:1.044120px;}
.ls20_c00380{letter-spacing:1.050900px;}
.ls2e_c00380{letter-spacing:1.064460px;}
.ls22_c00380{letter-spacing:1.071240px;}
.lsb_c00380{letter-spacing:1.073880px;}
.ls5e_c00380{letter-spacing:1.078020px;}
.ls3f_c00380{letter-spacing:1.091580px;}
.ls59_c00380{letter-spacing:1.105140px;}
.ls1d_c00380{letter-spacing:1.125480px;}
.ls18_c00380{letter-spacing:1.139040px;}
.ls64_c00380{letter-spacing:1.145820px;}
.ls35_c00380{letter-spacing:1.152600px;}
.ls3b_c00380{letter-spacing:1.159380px;}
.ls6e_c00380{letter-spacing:1.166160px;}
.ls2_c00380{letter-spacing:1.179720px;}
.ls32_c00380{letter-spacing:1.186500px;}
.ls4b_c00380{letter-spacing:1.200060px;}
.ls3_c00380{letter-spacing:1.213620px;}
.ls1e_c00380{letter-spacing:1.227180px;}
.ls27_c00380{letter-spacing:1.240740px;}
.lsc_c00380{letter-spacing:1.247520px;}
.ls50_c00380{letter-spacing:1.279080px;}
.ls6_c00380{letter-spacing:1.294980px;}
.ls33_c00380{letter-spacing:1.315320px;}
.ls41_c00380{letter-spacing:1.322100px;}
.ls56_c00380{letter-spacing:1.335660px;}
.ls2a_c00380{letter-spacing:1.342440px;}
.ls58_c00380{letter-spacing:1.349220px;}
.ls45_c00380{letter-spacing:1.389900px;}
.ls1f_c00380{letter-spacing:1.396680px;}
.ls49_c00380{letter-spacing:1.423800px;}
.ls57_c00380{letter-spacing:1.444140px;}
.ls28_c00380{letter-spacing:1.478040px;}
.ls13_c00380{letter-spacing:1.484820px;}
.lsf_c00380{letter-spacing:1.505160px;}
.ls5c_c00380{letter-spacing:1.511940px;}
.ls24_c00380{letter-spacing:1.518720px;}
.ls60_c00380{letter-spacing:1.545840px;}
.ls36_c00380{letter-spacing:1.559400px;}
.ls14_c00380{letter-spacing:1.566180px;}
.ls7_c00380{letter-spacing:1.572960px;}
.ls8_c00380{letter-spacing:1.579740px;}
.ls4a_c00380{letter-spacing:1.586520px;}
.ls77_c00380{letter-spacing:1.590030px;}
.ls5d_c00380{letter-spacing:1.606860px;}
.ls10_c00380{letter-spacing:1.742460px;}
.ls5b_c00380{letter-spacing:1.762800px;}
.ls2d_c00380{letter-spacing:1.817040px;}
.ls78_c00380{letter-spacing:1.860000px;}
.ls9_c00380{letter-spacing:1.871280px;}
.ls46_c00380{letter-spacing:2.038320px;}
.ls12_c00380{letter-spacing:2.088240px;}
.ls1a_c00380{letter-spacing:2.162820px;}
.ls1_c00380{letter-spacing:2.203500px;}
.ls31_c00380{letter-spacing:2.223840px;}
.ls3c_c00380{letter-spacing:2.230620px;}
.ls47_c00380{letter-spacing:2.236680px;}
.ls5f_c00380{letter-spacing:2.637420px;}
.ls37_c00380{letter-spacing:2.942520px;}
.ls3e_c00380{letter-spacing:3.376440px;}
.ls68_c00380{letter-spacing:3.390000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{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__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00380{word-spacing:0.000000px;}
.ws3_c00380{word-spacing:5.590920px;}
.ws0_c00380{word-spacing:5.614080px;}
.ws4_c00380{word-spacing:9.125760px;}
.ws2_c00380{word-spacing:23.008200px;}
.ws5_c00380{word-spacing:23.177760px;}
.ws1_c00380{word-spacing:23.504400px;}
._11_c00380{margin-left:-11.014500px;}
._d_c00380{margin-left:-6.764280px;}
._10_c00380{margin-left:-4.993740px;}
._a_c00380{margin-left:-3.634080px;}
._b_c00380{margin-left:-1.945860px;}
._0_c00380{width:1.261080px;}
._8_c00380{width:2.989980px;}
._3_c00380{width:4.718880px;}
._1_c00380{width:6.447780px;}
._2_c00380{width:7.864800px;}
._7_c00380{width:10.373400px;}
._9_c00380{width:11.851440px;}
._12_c00380{width:13.404060px;}
._4_c00380{width:15.526200px;}
._f_c00380{width:16.936440px;}
._e_c00380{width:19.790820px;}
._5_c00380{width:21.614640px;}
._6_c00380{width:25.067820px;}
._c_c00380{width:28.186920px;}
.fc0_c00380{color:transparent;}
.fs4_c00380{font-size:20.160000px;}
.fs3_c00380{font-size:29.400600px;}
.fs5_c00380{font-size:31.800600px;}
.fs6_c00380{font-size:37.200000px;}
.fs7_c00380{font-size:40.320000px;}
.fs8_c00380{font-size:57.600000px;}
.fs0_c00380{font-size:67.200000px;}
.fs1_c00380{font-size:67.800000px;}
.fs2_c00380{font-size:68.400000px;}
.y0_c00380{bottom:0.000000px;}
.y1e_c00380{bottom:71.295000px;}
.y1d_c00380{bottom:123.840000px;}
.y1c_c00380{bottom:158.040000px;}
.y1b_c00380{bottom:220.687350px;}
.y1a_c00380{bottom:251.655000px;}
.y19_c00380{bottom:282.255000px;}
.y18_c00380{bottom:343.455000px;}
.y17_c00380{bottom:374.055000px;}
.y15_c00380{bottom:435.967350px;}
.y16_c00380{bottom:435.975000px;}
.y14_c00380{bottom:466.935000px;}
.y13_c00380{bottom:528.135000px;}
.y12_c00380{bottom:536.775000px;}
.y11_c00380{bottom:559.800000px;}
.y10_c00380{bottom:621.016650px;}
.yf_c00380{bottom:652.323300px;}
.ye_c00380{bottom:682.935000px;}
.yd_c00380{bottom:744.135000px;}
.yc_c00380{bottom:774.727350px;}
.yb_c00380{bottom:805.695000px;}
.ya_c00380{bottom:867.240000px;}
.y9_c00380{bottom:867.243300px;}
.y8_c00380{bottom:897.855000px;}
.y7_c00380{bottom:897.862200px;}
.y6_c00380{bottom:928.440000px;}
.y5_c00380{bottom:987.495000px;}
.y4_c00380{bottom:1023.135000px;}
.y3_c00380{bottom:1086.135000px;}
.y2_c00380{bottom:1117.080000px;}
.y1_c00380{bottom:1191.975000px;}
.h6_c00380{height:13.426560px;}
.h9_c00380{height:26.853120px;}
.h5_c00380{height:30.663907px;}
.h7_c00380{height:33.167032px;}
.h8_c00380{height:36.509766px;}
.ha_c00380{height:56.531250px;}
.h2_c00380{height:65.953125px;}
.h3_c00380{height:66.541992px;}
.h4_c00380{height:67.097461px;}
.h1_c00380{height:1263.000000px;}
.h0_c00380{height:1263.240000px;}
.w1_c00380{width:892.500000px;}
.w0_c00380{width:892.800000px;}
.x0_c00380{left:0.000000px;}
.x1_c00380{left:121.605000px;}
.x2_c00380{left:122.625000px;}
.x1c_c00380{left:123.675000px;}
.x4_c00380{left:164.700000px;}
.x9_c00380{left:175.125000px;}
.x10_c00380{left:176.205000px;}
.x5_c00380{left:185.175000px;}
.x14_c00380{left:188.640000px;}
.x17_c00380{left:218.040000px;}
.x6_c00380{left:220.065000px;}
.x15_c00380{left:244.170000px;}
.xe_c00380{left:260.100000px;}
.x7_c00380{left:261.420000px;}
.x19_c00380{left:263.355000px;}
.x13_c00380{left:267.975000px;}
.x18_c00380{left:272.070000px;}
.x16_c00380{left:273.300000px;}
.xf_c00380{left:280.770000px;}
.x8_c00380{left:297.060000px;}
.x1a_c00380{left:350.970000px;}
.x1b_c00380{left:381.660000px;}
.x21_c00380{left:424.635000px;}
.xc_c00380{left:476.835000px;}
.xd_c00380{left:507.930000px;}
.x11_c00380{left:516.150000px;}
.x12_c00380{left:540.285000px;}
.x1f_c00380{left:547.500000px;}
.xa_c00380{left:564.780000px;}
.x20_c00380{left:580.500000px;}
.xb_c00380{left:597.780000px;}
.x1d_c00380{left:634.875000px;}
.x1e_c00380{left:658.620000px;}
.x3_c00380{left:732.720000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls6c_c00380{letter-spacing:-2.109333pt;}
.ls65_c00380{letter-spacing:-2.090667pt;}
.ls6a_c00380{letter-spacing:-1.693493pt;}
.ls83_c00380{letter-spacing:-1.681440pt;}
.ls76_c00380{letter-spacing:-1.621173pt;}
.ls71_c00380{letter-spacing:-1.512693pt;}
.ls73_c00380{letter-spacing:-1.422293pt;}
.ls7d_c00380{letter-spacing:-1.253547pt;}
.ls82_c00380{letter-spacing:-1.235467pt;}
.ls79_c00380{letter-spacing:-1.157333pt;}
.ls7b_c00380{letter-spacing:-0.656907pt;}
.ls7a_c00380{letter-spacing:-0.439947pt;}
.ls74_c00380{letter-spacing:-0.319413pt;}
.ls7e_c00380{letter-spacing:-0.277227pt;}
.ls6f_c00380{letter-spacing:-0.235040pt;}
.ls7f_c00380{letter-spacing:-0.229013pt;}
.ls87_c00380{letter-spacing:-0.156693pt;}
.ls69_c00380{letter-spacing:-0.144640pt;}
.ls7c_c00380{letter-spacing:-0.126560pt;}
.ls6d_c00380{letter-spacing:-0.114507pt;}
.ls75_c00380{letter-spacing:-0.012053pt;}
.ls66_c00380{letter-spacing:0.000000pt;}
.ls40_c00380{letter-spacing:0.018080pt;}
.ls15_c00380{letter-spacing:0.030133pt;}
.ls81_c00380{letter-spacing:0.060267pt;}
.ls89_c00380{letter-spacing:0.090400pt;}
.ls53_c00380{letter-spacing:0.138613pt;}
.ls25_c00380{letter-spacing:0.156693pt;}
.ls48_c00380{letter-spacing:0.180800pt;}
.ls3d_c00380{letter-spacing:0.192853pt;}
.ls54_c00380{letter-spacing:0.210933pt;}
.ls5_c00380{letter-spacing:0.222987pt;}
.ls16_c00380{letter-spacing:0.235040pt;}
.ls4e_c00380{letter-spacing:0.259147pt;}
.ls38_c00380{letter-spacing:0.261440pt;}
.ls39_c00380{letter-spacing:0.285760pt;}
.ls8b_c00380{letter-spacing:0.307200pt;}
.ls4_c00380{letter-spacing:0.319413pt;}
.ls84_c00380{letter-spacing:0.325440pt;}
.ls21_c00380{letter-spacing:0.391733pt;}
.ls51_c00380{letter-spacing:0.403787pt;}
.ls42_c00380{letter-spacing:0.421867pt;}
.ls11_c00380{letter-spacing:0.425600pt;}
.ls29_c00380{letter-spacing:0.452000pt;}
.ls4f_c00380{letter-spacing:0.458027pt;}
.ls2f_c00380{letter-spacing:0.476107pt;}
.lsa_c00380{letter-spacing:0.494187pt;}
.ls17_c00380{letter-spacing:0.530347pt;}
.ls1b_c00380{letter-spacing:0.548427pt;}
.ls44_c00380{letter-spacing:0.566507pt;}
.ls61_c00380{letter-spacing:0.578560pt;}
.ls72_c00380{letter-spacing:0.590613pt;}
.ls80_c00380{letter-spacing:0.595840pt;}
.ls43_c00380{letter-spacing:0.596640pt;}
.ls6b_c00380{letter-spacing:0.602667pt;}
.ls88_c00380{letter-spacing:0.650880pt;}
.ls55_c00380{letter-spacing:0.662720pt;}
.ls23_c00380{letter-spacing:0.662933pt;}
.ls3a_c00380{letter-spacing:0.668960pt;}
.lse_c00380{letter-spacing:0.681013pt;}
.ls26_c00380{letter-spacing:0.711360pt;}
.ls30_c00380{letter-spacing:0.723200pt;}
.ls2b_c00380{letter-spacing:0.729227pt;}
.ls8a_c00380{letter-spacing:0.735253pt;}
.ls1c_c00380{letter-spacing:0.741280pt;}
.ls85_c00380{letter-spacing:0.753333pt;}
.ls19_c00380{letter-spacing:0.771413pt;}
.ls5a_c00380{letter-spacing:0.783467pt;}
.ls67_c00380{letter-spacing:0.789493pt;}
.ls86_c00380{letter-spacing:0.801547pt;}
.ls4c_c00380{letter-spacing:0.814720pt;}
.ls70_c00380{letter-spacing:0.819627pt;}
.lsd_c00380{letter-spacing:0.825653pt;}
.ls52_c00380{letter-spacing:0.843733pt;}
.ls62_c00380{letter-spacing:0.845120pt;}
.ls2c_c00380{letter-spacing:0.861813pt;}
.ls34_c00380{letter-spacing:0.867840pt;}
.ls0_c00380{letter-spacing:0.897973pt;}
.ls4d_c00380{letter-spacing:0.924160pt;}
.ls63_c00380{letter-spacing:0.928107pt;}
.ls20_c00380{letter-spacing:0.934133pt;}
.ls2e_c00380{letter-spacing:0.946187pt;}
.ls22_c00380{letter-spacing:0.952213pt;}
.lsb_c00380{letter-spacing:0.954560pt;}
.ls5e_c00380{letter-spacing:0.958240pt;}
.ls3f_c00380{letter-spacing:0.970293pt;}
.ls59_c00380{letter-spacing:0.982347pt;}
.ls1d_c00380{letter-spacing:1.000427pt;}
.ls18_c00380{letter-spacing:1.012480pt;}
.ls64_c00380{letter-spacing:1.018507pt;}
.ls35_c00380{letter-spacing:1.024533pt;}
.ls3b_c00380{letter-spacing:1.030560pt;}
.ls6e_c00380{letter-spacing:1.036587pt;}
.ls2_c00380{letter-spacing:1.048640pt;}
.ls32_c00380{letter-spacing:1.054667pt;}
.ls4b_c00380{letter-spacing:1.066720pt;}
.ls3_c00380{letter-spacing:1.078773pt;}
.ls1e_c00380{letter-spacing:1.090827pt;}
.ls27_c00380{letter-spacing:1.102880pt;}
.lsc_c00380{letter-spacing:1.108907pt;}
.ls50_c00380{letter-spacing:1.136960pt;}
.ls6_c00380{letter-spacing:1.151093pt;}
.ls33_c00380{letter-spacing:1.169173pt;}
.ls41_c00380{letter-spacing:1.175200pt;}
.ls56_c00380{letter-spacing:1.187253pt;}
.ls2a_c00380{letter-spacing:1.193280pt;}
.ls58_c00380{letter-spacing:1.199307pt;}
.ls45_c00380{letter-spacing:1.235467pt;}
.ls1f_c00380{letter-spacing:1.241493pt;}
.ls49_c00380{letter-spacing:1.265600pt;}
.ls57_c00380{letter-spacing:1.283680pt;}
.ls28_c00380{letter-spacing:1.313813pt;}
.ls13_c00380{letter-spacing:1.319840pt;}
.lsf_c00380{letter-spacing:1.337920pt;}
.ls5c_c00380{letter-spacing:1.343947pt;}
.ls24_c00380{letter-spacing:1.349973pt;}
.ls60_c00380{letter-spacing:1.374080pt;}
.ls36_c00380{letter-spacing:1.386133pt;}
.ls14_c00380{letter-spacing:1.392160pt;}
.ls7_c00380{letter-spacing:1.398187pt;}
.ls8_c00380{letter-spacing:1.404213pt;}
.ls4a_c00380{letter-spacing:1.410240pt;}
.ls77_c00380{letter-spacing:1.413360pt;}
.ls5d_c00380{letter-spacing:1.428320pt;}
.ls10_c00380{letter-spacing:1.548853pt;}
.ls5b_c00380{letter-spacing:1.566933pt;}
.ls2d_c00380{letter-spacing:1.615147pt;}
.ls78_c00380{letter-spacing:1.653333pt;}
.ls9_c00380{letter-spacing:1.663360pt;}
.ls46_c00380{letter-spacing:1.811840pt;}
.ls12_c00380{letter-spacing:1.856213pt;}
.ls1a_c00380{letter-spacing:1.922507pt;}
.ls1_c00380{letter-spacing:1.958667pt;}
.ls31_c00380{letter-spacing:1.976747pt;}
.ls3c_c00380{letter-spacing:1.982773pt;}
.ls47_c00380{letter-spacing:1.988160pt;}
.ls5f_c00380{letter-spacing:2.344373pt;}
.ls37_c00380{letter-spacing:2.615573pt;}
.ls3e_c00380{letter-spacing:3.001280pt;}
.ls68_c00380{letter-spacing:3.013333pt;}
.ws6_c00380{word-spacing:0.000000pt;}
.ws3_c00380{word-spacing:4.969707pt;}
.ws0_c00380{word-spacing:4.990293pt;}
.ws4_c00380{word-spacing:8.111787pt;}
.ws2_c00380{word-spacing:20.451733pt;}
.ws5_c00380{word-spacing:20.602453pt;}
.ws1_c00380{word-spacing:20.892800pt;}
._11_c00380{margin-left:-9.790667pt;}
._d_c00380{margin-left:-6.012693pt;}
._10_c00380{margin-left:-4.438880pt;}
._a_c00380{margin-left:-3.230293pt;}
._b_c00380{margin-left:-1.729653pt;}
._0_c00380{width:1.120960pt;}
._8_c00380{width:2.657760pt;}
._3_c00380{width:4.194560pt;}
._1_c00380{width:5.731360pt;}
._2_c00380{width:6.990933pt;}
._7_c00380{width:9.220800pt;}
._9_c00380{width:10.534613pt;}
._12_c00380{width:11.914720pt;}
._4_c00380{width:13.801067pt;}
._f_c00380{width:15.054613pt;}
._e_c00380{width:17.591840pt;}
._5_c00380{width:19.213013pt;}
._6_c00380{width:22.282507pt;}
._c_c00380{width:25.055040pt;}
.fs4_c00380{font-size:17.920000pt;}
.fs3_c00380{font-size:26.133867pt;}
.fs5_c00380{font-size:28.267200pt;}
.fs6_c00380{font-size:33.066667pt;}
.fs7_c00380{font-size:35.840000pt;}
.fs8_c00380{font-size:51.200000pt;}
.fs0_c00380{font-size:59.733333pt;}
.fs1_c00380{font-size:60.266667pt;}
.fs2_c00380{font-size:60.800000pt;}
.y0_c00380{bottom:0.000000pt;}
.y1e_c00380{bottom:63.373333pt;}
.y1d_c00380{bottom:110.080000pt;}
.y1c_c00380{bottom:140.480000pt;}
.y1b_c00380{bottom:196.166533pt;}
.y1a_c00380{bottom:223.693333pt;}
.y19_c00380{bottom:250.893333pt;}
.y18_c00380{bottom:305.293333pt;}
.y17_c00380{bottom:332.493333pt;}
.y15_c00380{bottom:387.526533pt;}
.y16_c00380{bottom:387.533333pt;}
.y14_c00380{bottom:415.053333pt;}
.y13_c00380{bottom:469.453333pt;}
.y12_c00380{bottom:477.133333pt;}
.y11_c00380{bottom:497.600000pt;}
.y10_c00380{bottom:552.014800pt;}
.yf_c00380{bottom:579.842933pt;}
.ye_c00380{bottom:607.053333pt;}
.yd_c00380{bottom:661.453333pt;}
.yc_c00380{bottom:688.646533pt;}
.yb_c00380{bottom:716.173333pt;}
.ya_c00380{bottom:770.880000pt;}
.y9_c00380{bottom:770.882933pt;}
.y8_c00380{bottom:798.093333pt;}
.y7_c00380{bottom:798.099733pt;}
.y6_c00380{bottom:825.280000pt;}
.y5_c00380{bottom:877.773333pt;}
.y4_c00380{bottom:909.453333pt;}
.y3_c00380{bottom:965.453333pt;}
.y2_c00380{bottom:992.960000pt;}
.y1_c00380{bottom:1059.533333pt;}
.h6_c00380{height:11.934720pt;}
.h9_c00380{height:23.869440pt;}
.h5_c00380{height:27.256806pt;}
.h7_c00380{height:29.481806pt;}
.h8_c00380{height:32.453125pt;}
.ha_c00380{height:50.250000pt;}
.h2_c00380{height:58.625000pt;}
.h3_c00380{height:59.148438pt;}
.h4_c00380{height:59.642187pt;}
.h1_c00380{height:1122.666667pt;}
.h0_c00380{height:1122.880000pt;}
.w1_c00380{width:793.333333pt;}
.w0_c00380{width:793.600000pt;}
.x0_c00380{left:0.000000pt;}
.x1_c00380{left:108.093333pt;}
.x2_c00380{left:109.000000pt;}
.x1c_c00380{left:109.933333pt;}
.x4_c00380{left:146.400000pt;}
.x9_c00380{left:155.666667pt;}
.x10_c00380{left:156.626667pt;}
.x5_c00380{left:164.600000pt;}
.x14_c00380{left:167.680000pt;}
.x17_c00380{left:193.813333pt;}
.x6_c00380{left:195.613333pt;}
.x15_c00380{left:217.040000pt;}
.xe_c00380{left:231.200000pt;}
.x7_c00380{left:232.373333pt;}
.x19_c00380{left:234.093333pt;}
.x13_c00380{left:238.200000pt;}
.x18_c00380{left:241.840000pt;}
.x16_c00380{left:242.933333pt;}
.xf_c00380{left:249.573333pt;}
.x8_c00380{left:264.053333pt;}
.x1a_c00380{left:311.973333pt;}
.x1b_c00380{left:339.253333pt;}
.x21_c00380{left:377.453333pt;}
.xc_c00380{left:423.853333pt;}
.xd_c00380{left:451.493333pt;}
.x11_c00380{left:458.800000pt;}
.x12_c00380{left:480.253333pt;}
.x1f_c00380{left:486.666667pt;}
.xa_c00380{left:502.026667pt;}
.x20_c00380{left:516.000000pt;}
.xb_c00380{left:531.360000pt;}
.x1d_c00380{left:564.333333pt;}
.x1e_c00380{left:585.440000pt;}
.x3_c00380{left:651.306667pt;}
}





/* 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_c00381 {
    display:none;
  }
  .loading-indicator_c00381.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00381 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_c00381 { 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_c00381" -> "#page-container .classname_c00381")
 */
.pf_c00381 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00381 { /* 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_c00381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00381 { /* 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_c00381 { /* 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_c00381 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00381 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00381 {overflow:visible;}
  }
}
.c_c00381 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00381 { /* 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_c00381:after { /* webkit #35443 */
  content: '';
}
.t_c00381:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00381 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 */
}
.__c00381 { /* 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_c00381 { /* info for Javascript */
  display:none;
}
.l_c00381 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00381 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00381 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00381: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_c00381 {
    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_c00381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00381.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_c00381 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00381{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00381;src:url('chunks/assets/font_0ecc2e9b0de2e3bf1094b0a8.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.284668;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_c00381;src:url('chunks/assets/font_918d130e7f210612ab055d62.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.284180;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_c00381;src:url('chunks/assets/font_21f52db5fd27e2a370cc69dd.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;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:ff4_c00381;src:url('chunks/assets/font_31f61434fea8f187e1127d4d.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:0.666000;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_c00381;src:url('chunks/assets/font_6de37e05e5282c29c65e0c64.woff2')format("woff");}.ff5_c00381{font-family:ff5_c00381;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;}
.m6_c00381{transform:matrix(0.140874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140874,0.000000,0.000000,0.250000,0,0);}
.m5_c00381{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.m8_c00381{transform:matrix(0.241985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241985,0.000000,0.000000,0.250000,0,0);}
.m2_c00381{transform:matrix(0.242013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242013,0.000000,0.000000,0.250000,0,0);}
.me_c00381{transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);}
.m0_c00381{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m4_c00381{transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);}
.m3_c00381{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m1_c00381{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);}
.m7_c00381{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.ma_c00381{transform:matrix(0.259972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259972,0.000000,0.000000,0.250000,0,0);}
.mc_c00381{transform:matrix(0.287791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287791,0.000000,0.000000,0.250000,0,0);}
.mb_c00381{transform:matrix(0.292542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292542,0.000000,0.000000,0.250000,0,0);}
.m9_c00381{transform:matrix(0.297015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297015,0.000000,0.000000,0.250000,0,0);}
.md_c00381{transform:matrix(0.318394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318394,0.000000,0.000000,0.250000,0,0);}
.v2_c00381{vertical-align:-27.350770px;}
.v0_c00381{vertical-align:0.000000px;}
.v1_c00381{vertical-align:27.360000px;}
.ls71_c00381{letter-spacing:-2.436000px;}
.ls7b_c00381{letter-spacing:-2.373000px;}
.ls69_c00381{letter-spacing:-2.352000px;}
.ls94_c00381{letter-spacing:-2.206320px;}
.ls75_c00381{letter-spacing:-1.872240px;}
.ls98_c00381{letter-spacing:-1.767840px;}
.ls6c_c00381{letter-spacing:-1.649520px;}
.ls8d_c00381{letter-spacing:-1.545120px;}
.ls9c_c00381{letter-spacing:-1.544400px;}
.ls72_c00381{letter-spacing:-1.475520px;}
.ls84_c00381{letter-spacing:-1.426800px;}
.ls89_c00381{letter-spacing:-1.343280px;}
.ls77_c00381{letter-spacing:-1.218000px;}
.ls70_c00381{letter-spacing:-1.169280px;}
.ls6f_c00381{letter-spacing:-1.099680px;}
.ls6a_c00381{letter-spacing:-0.689040px;}
.ls78_c00381{letter-spacing:-0.619440px;}
.ls74_c00381{letter-spacing:-0.445440px;}
.ls92_c00381{letter-spacing:-0.417600px;}
.ls87_c00381{letter-spacing:-0.396720px;}
.ls6e_c00381{letter-spacing:-0.382800px;}
.ls88_c00381{letter-spacing:-0.375840px;}
.ls7f_c00381{letter-spacing:-0.365700px;}
.ls7a_c00381{letter-spacing:-0.334080px;}
.ls99_c00381{letter-spacing:-0.285360px;}
.ls8a_c00381{letter-spacing:-0.278400px;}
.ls96_c00381{letter-spacing:-0.271440px;}
.ls86_c00381{letter-spacing:-0.250560px;}
.ls73_c00381{letter-spacing:-0.208800px;}
.ls8c_c00381{letter-spacing:-0.187920px;}
.ls85_c00381{letter-spacing:-0.180960px;}
.ls76_c00381{letter-spacing:-0.174000px;}
.ls79_c00381{letter-spacing:-0.146160px;}
.ls80_c00381{letter-spacing:-0.111360px;}
.ls9e_c00381{letter-spacing:-0.098940px;}
.ls91_c00381{letter-spacing:-0.097440px;}
.ls6d_c00381{letter-spacing:-0.090480px;}
.ls8e_c00381{letter-spacing:-0.076560px;}
.ls9b_c00381{letter-spacing:-0.062640px;}
.ls7d_c00381{letter-spacing:-0.041760px;}
.ls7c_c00381{letter-spacing:-0.034800px;}
.ls83_c00381{letter-spacing:-0.027840px;}
.ls8f_c00381{letter-spacing:-0.006960px;}
.ls6b_c00381{letter-spacing:0.000000px;}
.ls20_c00381{letter-spacing:0.006960px;}
.ls4e_c00381{letter-spacing:0.013920px;}
.ls1d_c00381{letter-spacing:0.027840px;}
.lsd_c00381{letter-spacing:0.048720px;}
.ls60_c00381{letter-spacing:0.111360px;}
.ls14_c00381{letter-spacing:0.139200px;}
.ls2_c00381{letter-spacing:0.153120px;}
.ls7e_c00381{letter-spacing:0.160080px;}
.ls1c_c00381{letter-spacing:0.174000px;}
.ls51_c00381{letter-spacing:0.180960px;}
.ls3f_c00381{letter-spacing:0.187920px;}
.ls4_c00381{letter-spacing:0.194880px;}
.ls28_c00381{letter-spacing:0.208800px;}
.lsb_c00381{letter-spacing:0.215760px;}
.ls6_c00381{letter-spacing:0.222720px;}
.ls29_c00381{letter-spacing:0.236640px;}
.lsf_c00381{letter-spacing:0.243600px;}
.lsa_c00381{letter-spacing:0.257520px;}
.ls4f_c00381{letter-spacing:0.278400px;}
.ls23_c00381{letter-spacing:0.292320px;}
.ls43_c00381{letter-spacing:0.306240px;}
.ls11_c00381{letter-spacing:0.320160px;}
.ls9_c00381{letter-spacing:0.334080px;}
.ls50_c00381{letter-spacing:0.341040px;}
.ls33_c00381{letter-spacing:0.348000px;}
.ls2e_c00381{letter-spacing:0.351900px;}
.ls3a_c00381{letter-spacing:0.354960px;}
.ls35_c00381{letter-spacing:0.361920px;}
.ls36_c00381{letter-spacing:0.389760px;}
.ls54_c00381{letter-spacing:0.403680px;}
.ls10_c00381{letter-spacing:0.417600px;}
.ls63_c00381{letter-spacing:0.424560px;}
.ls5a_c00381{letter-spacing:0.431520px;}
.ls18_c00381{letter-spacing:0.438480px;}
.ls15_c00381{letter-spacing:0.452400px;}
.ls95_c00381{letter-spacing:0.459360px;}
.ls53_c00381{letter-spacing:0.466320px;}
.ls5c_c00381{letter-spacing:0.473280px;}
.ls1f_c00381{letter-spacing:0.487200px;}
.ls48_c00381{letter-spacing:0.501120px;}
.ls5f_c00381{letter-spacing:0.515040px;}
.ls40_c00381{letter-spacing:0.535920px;}
.ls5_c00381{letter-spacing:0.542880px;}
.ls3e_c00381{letter-spacing:0.549840px;}
.ls9a_c00381{letter-spacing:0.563760px;}
.ls0_c00381{letter-spacing:0.565800px;}
.lse_c00381{letter-spacing:0.570720px;}
.ls42_c00381{letter-spacing:0.577680px;}
.ls1a_c00381{letter-spacing:0.584640px;}
.ls8b_c00381{letter-spacing:0.591600px;}
.ls3b_c00381{letter-spacing:0.598560px;}
.ls25_c00381{letter-spacing:0.605520px;}
.ls21_c00381{letter-spacing:0.619440px;}
.ls3c_c00381{letter-spacing:0.626400px;}
.ls37_c00381{letter-spacing:0.633360px;}
.ls3d_c00381{letter-spacing:0.640320px;}
.ls1b_c00381{letter-spacing:0.654240px;}
.ls7_c00381{letter-spacing:0.661200px;}
.ls4c_c00381{letter-spacing:0.668160px;}
.ls44_c00381{letter-spacing:0.702960px;}
.ls52_c00381{letter-spacing:0.709920px;}
.ls2d_c00381{letter-spacing:0.731400px;}
.ls49_c00381{letter-spacing:0.744720px;}
.ls27_c00381{letter-spacing:0.758640px;}
.ls26_c00381{letter-spacing:0.759000px;}
.ls4d_c00381{letter-spacing:0.772560px;}
.ls62_c00381{letter-spacing:0.779520px;}
.ls65_c00381{letter-spacing:0.785400px;}
.ls46_c00381{letter-spacing:0.786480px;}
.ls59_c00381{letter-spacing:0.793440px;}
.ls39_c00381{letter-spacing:0.821280px;}
.ls67_c00381{letter-spacing:0.834480px;}
.ls13_c00381{letter-spacing:0.842160px;}
.lsc_c00381{letter-spacing:0.883920px;}
.ls2a_c00381{letter-spacing:0.890880px;}
.ls58_c00381{letter-spacing:0.904800px;}
.ls12_c00381{letter-spacing:0.925680px;}
.ls19_c00381{letter-spacing:0.932640px;}
.ls30_c00381{letter-spacing:0.953520px;}
.ls3_c00381{letter-spacing:0.960480px;}
.ls38_c00381{letter-spacing:0.988320px;}
.ls61_c00381{letter-spacing:1.023120px;}
.ls2f_c00381{letter-spacing:1.037040px;}
.ls22_c00381{letter-spacing:1.044000px;}
.ls1_c00381{letter-spacing:1.064880px;}
.ls4b_c00381{letter-spacing:1.078800px;}
.ls55_c00381{letter-spacing:1.092720px;}
.ls90_c00381{letter-spacing:1.120560px;}
.ls57_c00381{letter-spacing:1.127520px;}
.ls81_c00381{letter-spacing:1.204080px;}
.ls5b_c00381{letter-spacing:1.211040px;}
.ls8_c00381{letter-spacing:1.218000px;}
.ls47_c00381{letter-spacing:1.231920px;}
.ls66_c00381{letter-spacing:1.272240px;}
.ls17_c00381{letter-spacing:1.398960px;}
.ls9d_c00381{letter-spacing:1.491600px;}
.ls2b_c00381{letter-spacing:1.607760px;}
.ls34_c00381{letter-spacing:1.802640px;}
.ls56_c00381{letter-spacing:1.879200px;}
.ls1e_c00381{letter-spacing:1.983600px;}
.ls68_c00381{letter-spacing:2.098800px;}
.ls41_c00381{letter-spacing:2.101920px;}
.ls45_c00381{letter-spacing:2.164560px;}
.ls64_c00381{letter-spacing:2.224200px;}
.ls2c_c00381{letter-spacing:2.268960px;}
.ls5d_c00381{letter-spacing:2.275920px;}
.ls16_c00381{letter-spacing:2.442960px;}
.ls93_c00381{letter-spacing:2.520000px;}
.ls32_c00381{letter-spacing:2.839680px;}
.ls24_c00381{letter-spacing:2.888400px;}
.ls31_c00381{letter-spacing:3.091200px;}
.ls5e_c00381{letter-spacing:3.108042px;}
.ls4a_c00381{letter-spacing:3.306000px;}
.ls97_c00381{letter-spacing:3.420000px;}
.ls82_c00381{letter-spacing:3.480000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{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__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00381{word-spacing:-17.400000px;}
.ws4_c00381{word-spacing:0.000000px;}
.ws2_c00381{word-spacing:7.853100px;}
.ws1_c00381{word-spacing:14.334000px;}
.ws0_c00381{word-spacing:23.061000px;}
._e_c00381{margin-left:-8.212800px;}
._12_c00381{margin-left:-5.929920px;}
._15_c00381{margin-left:-3.781440px;}
._13_c00381{margin-left:-2.383320px;}
._d_c00381{margin-left:-1.336320px;}
._6_c00381{width:1.062240px;}
._4_c00381{width:2.271600px;}
._16_c00381{width:3.291600px;}
._9_c00381{width:4.524000px;}
._7_c00381{width:5.568000px;}
._5_c00381{width:7.560000px;}
._c_c00381{width:8.713920px;}
._8_c00381{width:10.022400px;}
._11_c00381{width:11.511840px;}
._a_c00381{width:12.530640px;}
._14_c00381{width:14.002500px;}
._b_c00381{width:15.304080px;}
._f_c00381{width:16.369920px;}
._10_c00381{width:18.179520px;}
._2_c00381{width:21.659520px;}
._3_c00381{width:22.689600px;}
._1_c00381{width:24.311280px;}
._0_c00381{width:27.053520px;}
._17_c00381{width:29.120640px;}
._1a_c00381{width:33.484560px;}
._19_c00381{width:35.196720px;}
._18_c00381{width:36.665280px;}
._1b_c00381{width:38.488800px;}
._1c_c00381{width:41.474640px;}
.fc0_c00381{color:transparent;}
.fs8_c00381{font-size:44.400600px;}
.fs6_c00381{font-size:50.400000px;}
.fs5_c00381{font-size:51.840000px;}
.fsa_c00381{font-size:58.200000px;}
.fs3_c00381{font-size:66.000000px;}
.fs0_c00381{font-size:67.200000px;}
.fs4_c00381{font-size:67.800000px;}
.fs9_c00381{font-size:68.400000px;}
.fs1_c00381{font-size:69.000000px;}
.fs2_c00381{font-size:69.600000px;}
.fs7_c00381{font-size:73.800000px;}
.y0_c00381{bottom:0.000000px;}
.y20_c00381{bottom:65.535000px;}
.y1f_c00381{bottom:125.640000px;}
.y1e_c00381{bottom:187.556400px;}
.y1d_c00381{bottom:217.815000px;}
.y1b_c00381{bottom:249.128400px;}
.y1c_c00381{bottom:249.135000px;}
.y19_c00381{bottom:279.723000px;}
.y1a_c00381{bottom:279.735000px;}
.y18_c00381{bottom:310.677600px;}
.y17_c00381{bottom:340.918800px;}
.y16_c00381{bottom:372.586800px;}
.y15_c00381{bottom:434.513400px;}
.y14_c00381{bottom:496.440000px;}
.y13_c00381{bottom:557.991000px;}
.y12_c00381{bottom:589.328400px;}
.y10_c00381{bottom:619.930800px;}
.y11_c00381{bottom:619.935000px;}
.yf_c00381{bottom:650.520000px;}
.ye_c00381{bottom:712.093800px;}
.yd_c00381{bottom:773.655000px;}
.yc_c00381{bottom:804.615000px;}
.yb_c00381{bottom:866.888400px;}
.ya_c00381{bottom:897.495000px;}
.y9_c00381{bottom:959.040000px;}
.y8_c00381{bottom:989.655000px;}
.y7_c00381{bottom:1020.240000px;}
.y6_c00381{bottom:1020.245400px;}
.y5_c00381{bottom:1051.200000px;}
.y4_c00381{bottom:1051.208400px;}
.y3_c00381{bottom:1081.815000px;}
.y2_c00381{bottom:1113.135000px;}
.y1_c00381{bottom:1189.815000px;}
.h5_c00381{height:34.525440px;}
.h9_c00381{height:52.565625px;}
.hf_c00381{height:57.120117px;}
.h2_c00381{height:65.953125px;}
.he_c00381{height:67.097461px;}
.h3_c00381{height:68.308594px;}
.h6_c00381{height:68.313394px;}
.hb_c00381{height:68.334994px;}
.h7_c00381{height:68.344594px;}
.h8_c00381{height:68.356594px;}
.h4_c00381{height:70.713281px;}
.hc_c00381{height:70.936761px;}
.hd_c00381{height:71.339063px;}
.ha_c00381{height:72.430664px;}
.h1_c00381{height:1263.000000px;}
.h0_c00381{height:1263.240000px;}
.w1_c00381{width:892.500000px;}
.w0_c00381{width:892.800000px;}
.x0_c00381{left:0.000000px;}
.x11_c00381{left:118.621200px;}
.xa_c00381{left:119.857200px;}
.x3_c00381{left:121.671000px;}
.x1_c00381{left:123.405000px;}
.xb_c00381{left:172.965000px;}
.x9_c00381{left:174.045000px;}
.x2_c00381{left:175.470000px;}
.x4_c00381{left:278.100000px;}
.x5_c00381{left:300.210000px;}
.xf_c00381{left:332.130000px;}
.x10_c00381{left:351.555000px;}
.x1b_c00381{left:423.195000px;}
.x12_c00381{left:459.795000px;}
.x14_c00381{left:498.885000px;}
.x13_c00381{left:500.235000px;}
.x15_c00381{left:525.855000px;}
.x8_c00381{left:547.680000px;}
.x16_c00381{left:551.145000px;}
.x17_c00381{left:583.710000px;}
.xc_c00381{left:614.520000px;}
.x18_c00381{left:624.315000px;}
.x19_c00381{left:662.625000px;}
.xd_c00381{left:673.320000px;}
.x1a_c00381{left:702.330000px;}
.xe_c00381{left:733.935000px;}
.x7_c00381{left:736.680000px;}
.x6_c00381{left:740.370000px;}
@media print{
.v2_c00381{vertical-align:-24.311795pt;}
.v0_c00381{vertical-align:0.000000pt;}
.v1_c00381{vertical-align:24.320000pt;}
.ls71_c00381{letter-spacing:-2.165333pt;}
.ls7b_c00381{letter-spacing:-2.109333pt;}
.ls69_c00381{letter-spacing:-2.090667pt;}
.ls94_c00381{letter-spacing:-1.961173pt;}
.ls75_c00381{letter-spacing:-1.664213pt;}
.ls98_c00381{letter-spacing:-1.571413pt;}
.ls6c_c00381{letter-spacing:-1.466240pt;}
.ls8d_c00381{letter-spacing:-1.373440pt;}
.ls9c_c00381{letter-spacing:-1.372800pt;}
.ls72_c00381{letter-spacing:-1.311573pt;}
.ls84_c00381{letter-spacing:-1.268267pt;}
.ls89_c00381{letter-spacing:-1.194027pt;}
.ls77_c00381{letter-spacing:-1.082667pt;}
.ls70_c00381{letter-spacing:-1.039360pt;}
.ls6f_c00381{letter-spacing:-0.977493pt;}
.ls6a_c00381{letter-spacing:-0.612480pt;}
.ls78_c00381{letter-spacing:-0.550613pt;}
.ls74_c00381{letter-spacing:-0.395947pt;}
.ls92_c00381{letter-spacing:-0.371200pt;}
.ls87_c00381{letter-spacing:-0.352640pt;}
.ls6e_c00381{letter-spacing:-0.340267pt;}
.ls88_c00381{letter-spacing:-0.334080pt;}
.ls7f_c00381{letter-spacing:-0.325067pt;}
.ls7a_c00381{letter-spacing:-0.296960pt;}
.ls99_c00381{letter-spacing:-0.253653pt;}
.ls8a_c00381{letter-spacing:-0.247467pt;}
.ls96_c00381{letter-spacing:-0.241280pt;}
.ls86_c00381{letter-spacing:-0.222720pt;}
.ls73_c00381{letter-spacing:-0.185600pt;}
.ls8c_c00381{letter-spacing:-0.167040pt;}
.ls85_c00381{letter-spacing:-0.160853pt;}
.ls76_c00381{letter-spacing:-0.154667pt;}
.ls79_c00381{letter-spacing:-0.129920pt;}
.ls80_c00381{letter-spacing:-0.098987pt;}
.ls9e_c00381{letter-spacing:-0.087947pt;}
.ls91_c00381{letter-spacing:-0.086613pt;}
.ls6d_c00381{letter-spacing:-0.080427pt;}
.ls8e_c00381{letter-spacing:-0.068053pt;}
.ls9b_c00381{letter-spacing:-0.055680pt;}
.ls7d_c00381{letter-spacing:-0.037120pt;}
.ls7c_c00381{letter-spacing:-0.030933pt;}
.ls83_c00381{letter-spacing:-0.024747pt;}
.ls8f_c00381{letter-spacing:-0.006187pt;}
.ls6b_c00381{letter-spacing:0.000000pt;}
.ls20_c00381{letter-spacing:0.006187pt;}
.ls4e_c00381{letter-spacing:0.012373pt;}
.ls1d_c00381{letter-spacing:0.024747pt;}
.lsd_c00381{letter-spacing:0.043307pt;}
.ls60_c00381{letter-spacing:0.098987pt;}
.ls14_c00381{letter-spacing:0.123733pt;}
.ls2_c00381{letter-spacing:0.136107pt;}
.ls7e_c00381{letter-spacing:0.142293pt;}
.ls1c_c00381{letter-spacing:0.154667pt;}
.ls51_c00381{letter-spacing:0.160853pt;}
.ls3f_c00381{letter-spacing:0.167040pt;}
.ls4_c00381{letter-spacing:0.173227pt;}
.ls28_c00381{letter-spacing:0.185600pt;}
.lsb_c00381{letter-spacing:0.191787pt;}
.ls6_c00381{letter-spacing:0.197973pt;}
.ls29_c00381{letter-spacing:0.210347pt;}
.lsf_c00381{letter-spacing:0.216533pt;}
.lsa_c00381{letter-spacing:0.228907pt;}
.ls4f_c00381{letter-spacing:0.247467pt;}
.ls23_c00381{letter-spacing:0.259840pt;}
.ls43_c00381{letter-spacing:0.272213pt;}
.ls11_c00381{letter-spacing:0.284587pt;}
.ls9_c00381{letter-spacing:0.296960pt;}
.ls50_c00381{letter-spacing:0.303147pt;}
.ls33_c00381{letter-spacing:0.309333pt;}
.ls2e_c00381{letter-spacing:0.312800pt;}
.ls3a_c00381{letter-spacing:0.315520pt;}
.ls35_c00381{letter-spacing:0.321707pt;}
.ls36_c00381{letter-spacing:0.346453pt;}
.ls54_c00381{letter-spacing:0.358827pt;}
.ls10_c00381{letter-spacing:0.371200pt;}
.ls63_c00381{letter-spacing:0.377387pt;}
.ls5a_c00381{letter-spacing:0.383573pt;}
.ls18_c00381{letter-spacing:0.389760pt;}
.ls15_c00381{letter-spacing:0.402133pt;}
.ls95_c00381{letter-spacing:0.408320pt;}
.ls53_c00381{letter-spacing:0.414507pt;}
.ls5c_c00381{letter-spacing:0.420693pt;}
.ls1f_c00381{letter-spacing:0.433067pt;}
.ls48_c00381{letter-spacing:0.445440pt;}
.ls5f_c00381{letter-spacing:0.457813pt;}
.ls40_c00381{letter-spacing:0.476373pt;}
.ls5_c00381{letter-spacing:0.482560pt;}
.ls3e_c00381{letter-spacing:0.488747pt;}
.ls9a_c00381{letter-spacing:0.501120pt;}
.ls0_c00381{letter-spacing:0.502933pt;}
.lse_c00381{letter-spacing:0.507307pt;}
.ls42_c00381{letter-spacing:0.513493pt;}
.ls1a_c00381{letter-spacing:0.519680pt;}
.ls8b_c00381{letter-spacing:0.525867pt;}
.ls3b_c00381{letter-spacing:0.532053pt;}
.ls25_c00381{letter-spacing:0.538240pt;}
.ls21_c00381{letter-spacing:0.550613pt;}
.ls3c_c00381{letter-spacing:0.556800pt;}
.ls37_c00381{letter-spacing:0.562987pt;}
.ls3d_c00381{letter-spacing:0.569173pt;}
.ls1b_c00381{letter-spacing:0.581547pt;}
.ls7_c00381{letter-spacing:0.587733pt;}
.ls4c_c00381{letter-spacing:0.593920pt;}
.ls44_c00381{letter-spacing:0.624853pt;}
.ls52_c00381{letter-spacing:0.631040pt;}
.ls2d_c00381{letter-spacing:0.650133pt;}
.ls49_c00381{letter-spacing:0.661973pt;}
.ls27_c00381{letter-spacing:0.674347pt;}
.ls26_c00381{letter-spacing:0.674667pt;}
.ls4d_c00381{letter-spacing:0.686720pt;}
.ls62_c00381{letter-spacing:0.692907pt;}
.ls65_c00381{letter-spacing:0.698133pt;}
.ls46_c00381{letter-spacing:0.699093pt;}
.ls59_c00381{letter-spacing:0.705280pt;}
.ls39_c00381{letter-spacing:0.730027pt;}
.ls67_c00381{letter-spacing:0.741760pt;}
.ls13_c00381{letter-spacing:0.748587pt;}
.lsc_c00381{letter-spacing:0.785707pt;}
.ls2a_c00381{letter-spacing:0.791893pt;}
.ls58_c00381{letter-spacing:0.804267pt;}
.ls12_c00381{letter-spacing:0.822827pt;}
.ls19_c00381{letter-spacing:0.829013pt;}
.ls30_c00381{letter-spacing:0.847573pt;}
.ls3_c00381{letter-spacing:0.853760pt;}
.ls38_c00381{letter-spacing:0.878507pt;}
.ls61_c00381{letter-spacing:0.909440pt;}
.ls2f_c00381{letter-spacing:0.921813pt;}
.ls22_c00381{letter-spacing:0.928000pt;}
.ls1_c00381{letter-spacing:0.946560pt;}
.ls4b_c00381{letter-spacing:0.958933pt;}
.ls55_c00381{letter-spacing:0.971307pt;}
.ls90_c00381{letter-spacing:0.996053pt;}
.ls57_c00381{letter-spacing:1.002240pt;}
.ls81_c00381{letter-spacing:1.070293pt;}
.ls5b_c00381{letter-spacing:1.076480pt;}
.ls8_c00381{letter-spacing:1.082667pt;}
.ls47_c00381{letter-spacing:1.095040pt;}
.ls66_c00381{letter-spacing:1.130880pt;}
.ls17_c00381{letter-spacing:1.243520pt;}
.ls9d_c00381{letter-spacing:1.325867pt;}
.ls2b_c00381{letter-spacing:1.429120pt;}
.ls34_c00381{letter-spacing:1.602347pt;}
.ls56_c00381{letter-spacing:1.670400pt;}
.ls1e_c00381{letter-spacing:1.763200pt;}
.ls68_c00381{letter-spacing:1.865600pt;}
.ls41_c00381{letter-spacing:1.868373pt;}
.ls45_c00381{letter-spacing:1.924053pt;}
.ls64_c00381{letter-spacing:1.977067pt;}
.ls2c_c00381{letter-spacing:2.016853pt;}
.ls5d_c00381{letter-spacing:2.023040pt;}
.ls16_c00381{letter-spacing:2.171520pt;}
.ls93_c00381{letter-spacing:2.240000pt;}
.ls32_c00381{letter-spacing:2.524160pt;}
.ls24_c00381{letter-spacing:2.567467pt;}
.ls31_c00381{letter-spacing:2.747733pt;}
.ls5e_c00381{letter-spacing:2.762704pt;}
.ls4a_c00381{letter-spacing:2.938667pt;}
.ls97_c00381{letter-spacing:3.040000pt;}
.ls82_c00381{letter-spacing:3.093333pt;}
.ws3_c00381{word-spacing:-15.466667pt;}
.ws4_c00381{word-spacing:0.000000pt;}
.ws2_c00381{word-spacing:6.980533pt;}
.ws1_c00381{word-spacing:12.741333pt;}
.ws0_c00381{word-spacing:20.498667pt;}
._e_c00381{margin-left:-7.300267pt;}
._12_c00381{margin-left:-5.271040pt;}
._15_c00381{margin-left:-3.361280pt;}
._13_c00381{margin-left:-2.118507pt;}
._d_c00381{margin-left:-1.187840pt;}
._6_c00381{width:0.944213pt;}
._4_c00381{width:2.019200pt;}
._16_c00381{width:2.925867pt;}
._9_c00381{width:4.021333pt;}
._7_c00381{width:4.949333pt;}
._5_c00381{width:6.720000pt;}
._c_c00381{width:7.745707pt;}
._8_c00381{width:8.908800pt;}
._11_c00381{width:10.232747pt;}
._a_c00381{width:11.138347pt;}
._14_c00381{width:12.446667pt;}
._b_c00381{width:13.603627pt;}
._f_c00381{width:14.551040pt;}
._10_c00381{width:16.159573pt;}
._2_c00381{width:19.252907pt;}
._3_c00381{width:20.168533pt;}
._1_c00381{width:21.610027pt;}
._0_c00381{width:24.047573pt;}
._17_c00381{width:25.885013pt;}
._1a_c00381{width:29.764053pt;}
._19_c00381{width:31.285973pt;}
._18_c00381{width:32.591360pt;}
._1b_c00381{width:34.212267pt;}
._1c_c00381{width:36.866347pt;}
.fs8_c00381{font-size:39.467200pt;}
.fs6_c00381{font-size:44.800000pt;}
.fs5_c00381{font-size:46.080000pt;}
.fsa_c00381{font-size:51.733333pt;}
.fs3_c00381{font-size:58.666667pt;}
.fs0_c00381{font-size:59.733333pt;}
.fs4_c00381{font-size:60.266667pt;}
.fs9_c00381{font-size:60.800000pt;}
.fs1_c00381{font-size:61.333333pt;}
.fs2_c00381{font-size:61.866667pt;}
.fs7_c00381{font-size:65.600000pt;}
.y0_c00381{bottom:0.000000pt;}
.y20_c00381{bottom:58.253333pt;}
.y1f_c00381{bottom:111.680000pt;}
.y1e_c00381{bottom:166.716800pt;}
.y1d_c00381{bottom:193.613333pt;}
.y1b_c00381{bottom:221.447467pt;}
.y1c_c00381{bottom:221.453333pt;}
.y19_c00381{bottom:248.642667pt;}
.y1a_c00381{bottom:248.653333pt;}
.y18_c00381{bottom:276.157867pt;}
.y17_c00381{bottom:303.038933pt;}
.y16_c00381{bottom:331.188267pt;}
.y15_c00381{bottom:386.234133pt;}
.y14_c00381{bottom:441.280000pt;}
.y13_c00381{bottom:495.992000pt;}
.y12_c00381{bottom:523.847467pt;}
.y10_c00381{bottom:551.049600pt;}
.y11_c00381{bottom:551.053333pt;}
.yf_c00381{bottom:578.240000pt;}
.ye_c00381{bottom:632.972267pt;}
.yd_c00381{bottom:687.693333pt;}
.yc_c00381{bottom:715.213333pt;}
.yb_c00381{bottom:770.567467pt;}
.ya_c00381{bottom:797.773333pt;}
.y9_c00381{bottom:852.480000pt;}
.y8_c00381{bottom:879.693333pt;}
.y7_c00381{bottom:906.880000pt;}
.y6_c00381{bottom:906.884800pt;}
.y5_c00381{bottom:934.400000pt;}
.y4_c00381{bottom:934.407467pt;}
.y3_c00381{bottom:961.613333pt;}
.y2_c00381{bottom:989.453333pt;}
.y1_c00381{bottom:1057.613333pt;}
.h5_c00381{height:30.689280pt;}
.h9_c00381{height:46.725000pt;}
.hf_c00381{height:50.773437pt;}
.h2_c00381{height:58.625000pt;}
.he_c00381{height:59.642187pt;}
.h3_c00381{height:60.718750pt;}
.h6_c00381{height:60.723017pt;}
.hb_c00381{height:60.742217pt;}
.h7_c00381{height:60.750750pt;}
.h8_c00381{height:60.761417pt;}
.h4_c00381{height:62.856250pt;}
.hc_c00381{height:63.054898pt;}
.hd_c00381{height:63.412500pt;}
.ha_c00381{height:64.382813pt;}
.h1_c00381{height:1122.666667pt;}
.h0_c00381{height:1122.880000pt;}
.w1_c00381{width:793.333333pt;}
.w0_c00381{width:793.600000pt;}
.x0_c00381{left:0.000000pt;}
.x11_c00381{left:105.441067pt;}
.xa_c00381{left:106.539733pt;}
.x3_c00381{left:108.152000pt;}
.x1_c00381{left:109.693333pt;}
.xb_c00381{left:153.746667pt;}
.x9_c00381{left:154.706667pt;}
.x2_c00381{left:155.973333pt;}
.x4_c00381{left:247.200000pt;}
.x5_c00381{left:266.853333pt;}
.xf_c00381{left:295.226667pt;}
.x10_c00381{left:312.493333pt;}
.x1b_c00381{left:376.173333pt;}
.x12_c00381{left:408.706667pt;}
.x14_c00381{left:443.453333pt;}
.x13_c00381{left:444.653333pt;}
.x15_c00381{left:467.426667pt;}
.x8_c00381{left:486.826667pt;}
.x16_c00381{left:489.906667pt;}
.x17_c00381{left:518.853333pt;}
.xc_c00381{left:546.240000pt;}
.x18_c00381{left:554.946667pt;}
.x19_c00381{left:589.000000pt;}
.xd_c00381{left:598.506667pt;}
.x1a_c00381{left:624.293333pt;}
.xe_c00381{left:652.386667pt;}
.x7_c00381{left:654.826667pt;}
.x6_c00381{left:658.106667pt;}
}





/* 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_c00382 {
    display:none;
  }
  .loading-indicator_c00382.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00382 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_c00382 { 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_c00382" -> "#page-container .classname_c00382")
 */
.pf_c00382 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00382 { /* 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_c00382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00382 { /* 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_c00382 { /* 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_c00382 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00382 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00382 {overflow:visible;}
  }
}
.c_c00382 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00382 { /* 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_c00382:after { /* webkit #35443 */
  content: '';
}
.t_c00382:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00382 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 */
}
.__c00382 { /* 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_c00382 { /* info for Javascript */
  display:none;
}
.l_c00382 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00382 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00382 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00382: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_c00382 {
    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_c00382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00382.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_c00382 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00382{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00382;src:url('chunks/assets/font_de0a0ed2dd76610a8ed9dfc3.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.284668;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_c00382;src:url('chunks/assets/font_4e7403e2fefd3a543f1b03cd.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;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_c00382;src:url('chunks/assets/font_25fdea76a1c91c0d1aecb6ab.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.284180;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_c00382;src:url('chunks/assets/font_298f78a289135d8fb7d08e4d.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;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:ff5_c00382;src:url('chunks/assets/font_7b73e2205724526e688efb35.woff2')format("woff");}.ff5_c00382{font-family:ff5_c00382;line-height:0.666000;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;}
.m3_c00382{transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);}
.m1_c00382{transform:matrix(0.243878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243878,0.000000,0.000000,0.250000,0,0);}
.m0_c00382{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);}
.m2_c00382{transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);}
.m4_c00382{transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.lsb_c00382{letter-spacing:-8.400000px;}
.ls9_c00382{letter-spacing:-1.068480px;}
.ls8_c00382{letter-spacing:0.000000px;}
.ls0_c00382{letter-spacing:0.046080px;}
.lsf_c00382{letter-spacing:0.141240px;}
.lsd_c00382{letter-spacing:0.286200px;}
.ls6_c00382{letter-spacing:0.460560px;}
.lsc_c00382{letter-spacing:0.674160px;}
.lsa_c00382{letter-spacing:0.725040px;}
.ls4_c00382{letter-spacing:0.725760px;}
.ls5_c00382{letter-spacing:0.909480px;}
.ls10_c00382{letter-spacing:1.050030px;}
.ls7_c00382{letter-spacing:1.068480px;}
.ls3_c00382{letter-spacing:1.278360px;}
.ls1_c00382{letter-spacing:1.380120px;}
.ls2_c00382{letter-spacing:2.160000px;}
.lse_c00382{letter-spacing:3.210000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{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__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00382{word-spacing:-1.752000px;}
.ws3_c00382{word-spacing:-1.749240px;}
.ws0_c00382{word-spacing:-1.096320px;}
.ws4_c00382{word-spacing:0.000000px;}
.ws2_c00382{word-spacing:0.204960px;}
._0_c00382{margin-left:-2.448600px;}
.fc0_c00382{color:transparent;}
.fsb_c00382{font-size:19.800600px;}
.fsa_c00382{font-size:21.000600px;}
.fs6_c00382{font-size:23.400600px;}
.fs9_c00382{font-size:36.000000px;}
.fs1_c00382{font-size:57.600000px;}
.fs3_c00382{font-size:58.200000px;}
.fs5_c00382{font-size:60.600000px;}
.fs2_c00382{font-size:63.600000px;}
.fs0_c00382{font-size:64.200000px;}
.fs7_c00382{font-size:66.000000px;}
.fs8_c00382{font-size:71.400000px;}
.fs4_c00382{font-size:240.000000px;}
.y0_c00382{bottom:0.000000px;}
.y7_c00382{bottom:147.600015px;}
.y3_c00382{bottom:148.695015px;}
.y6_c00382{bottom:165.960015px;}
.y2_c00382{bottom:167.400015px;}
.y1_c00382{bottom:350.295015px;}
.y5_c00382{bottom:433.815015px;}
.ye_c00382{bottom:527.760015px;}
.yd_c00382{bottom:533.520015px;}
.yc_c00382{bottom:540.375015px;}
.yb_c00382{bottom:541.815015px;}
.ya_c00382{bottom:547.920015px;}
.y9_c00382{bottom:564.135015px;}
.y4_c00382{bottom:723.600015px;}
.y8_c00382{bottom:1143.000015px;}
.hc_c00382{height:19.433206px;}
.hb_c00382{height:21.902970px;}
.ha_c00382{height:23.976000px;}
.h7_c00382{height:24.406095px;}
.h4_c00382{height:60.700781px;}
.h3_c00382{height:62.388867px;}
.h2_c00382{height:63.008789px;}
.h6_c00382{height:63.203906px;}
.h8_c00382{height:68.835938px;}
.h9_c00382{height:74.467969px;}
.h5_c00382{height:250.312500px;}
.h1_c00382{height:1263.000000px;}
.h0_c00382{height:1263.240015px;}
.w1_c00382{width:892.500000px;}
.w0_c00382{width:892.800015px;}
.x0_c00382{left:0.000000px;}
.x3_c00382{left:116.040015px;}
.x2_c00382{left:118.530015px;}
.x1_c00382{left:296.445015px;}
.x4_c00382{left:343.695015px;}
.x7_c00382{left:382.485015px;}
.x6_c00382{left:383.535015px;}
.x5_c00382{left:465.765015px;}
.x8_c00382{left:673.110015px;}
.x9_c00382{left:746.205015px;}
.xa_c00382{left:854.895015px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.lsb_c00382{letter-spacing:-7.466667pt;}
.ls9_c00382{letter-spacing:-0.949760pt;}
.ls8_c00382{letter-spacing:0.000000pt;}
.ls0_c00382{letter-spacing:0.040960pt;}
.lsf_c00382{letter-spacing:0.125547pt;}
.lsd_c00382{letter-spacing:0.254400pt;}
.ls6_c00382{letter-spacing:0.409387pt;}
.lsc_c00382{letter-spacing:0.599253pt;}
.lsa_c00382{letter-spacing:0.644480pt;}
.ls4_c00382{letter-spacing:0.645120pt;}
.ls5_c00382{letter-spacing:0.808427pt;}
.ls10_c00382{letter-spacing:0.933360pt;}
.ls7_c00382{letter-spacing:0.949760pt;}
.ls3_c00382{letter-spacing:1.136320pt;}
.ls1_c00382{letter-spacing:1.226773pt;}
.ls2_c00382{letter-spacing:1.920000pt;}
.lse_c00382{letter-spacing:2.853333pt;}
.ws1_c00382{word-spacing:-1.557333pt;}
.ws3_c00382{word-spacing:-1.554880pt;}
.ws0_c00382{word-spacing:-0.974507pt;}
.ws4_c00382{word-spacing:0.000000pt;}
.ws2_c00382{word-spacing:0.182187pt;}
._0_c00382{margin-left:-2.176533pt;}
.fsb_c00382{font-size:17.600533pt;}
.fsa_c00382{font-size:18.667200pt;}
.fs6_c00382{font-size:20.800533pt;}
.fs9_c00382{font-size:32.000000pt;}
.fs1_c00382{font-size:51.200000pt;}
.fs3_c00382{font-size:51.733333pt;}
.fs5_c00382{font-size:53.866667pt;}
.fs2_c00382{font-size:56.533333pt;}
.fs0_c00382{font-size:57.066667pt;}
.fs7_c00382{font-size:58.666667pt;}
.fs8_c00382{font-size:63.466667pt;}
.fs4_c00382{font-size:213.333333pt;}
.y0_c00382{bottom:0.000000pt;}
.y7_c00382{bottom:131.200013pt;}
.y3_c00382{bottom:132.173347pt;}
.y6_c00382{bottom:147.520013pt;}
.y2_c00382{bottom:148.800013pt;}
.y1_c00382{bottom:311.373347pt;}
.y5_c00382{bottom:385.613347pt;}
.ye_c00382{bottom:469.120013pt;}
.yd_c00382{bottom:474.240013pt;}
.yc_c00382{bottom:480.333347pt;}
.yb_c00382{bottom:481.613347pt;}
.ya_c00382{bottom:487.040013pt;}
.y9_c00382{bottom:501.453347pt;}
.y4_c00382{bottom:643.200013pt;}
.y8_c00382{bottom:1016.000013pt;}
.hc_c00382{height:17.273961pt;}
.hb_c00382{height:19.469306pt;}
.ha_c00382{height:21.312000pt;}
.h7_c00382{height:21.694306pt;}
.h4_c00382{height:53.956250pt;}
.h3_c00382{height:55.456771pt;}
.h2_c00382{height:56.007812pt;}
.h6_c00382{height:56.181250pt;}
.h8_c00382{height:61.187500pt;}
.h9_c00382{height:66.193750pt;}
.h5_c00382{height:222.500000pt;}
.h1_c00382{height:1122.666667pt;}
.h0_c00382{height:1122.880013pt;}
.w1_c00382{width:793.333333pt;}
.w0_c00382{width:793.600013pt;}
.x0_c00382{left:0.000000pt;}
.x3_c00382{left:103.146680pt;}
.x2_c00382{left:105.360013pt;}
.x1_c00382{left:263.506680pt;}
.x4_c00382{left:305.506680pt;}
.x7_c00382{left:339.986680pt;}
.x6_c00382{left:340.920013pt;}
.x5_c00382{left:414.013347pt;}
.x8_c00382{left:598.320013pt;}
.x9_c00382{left:663.293347pt;}
.xa_c00382{left:759.906680pt;}
}





/* 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_c00383 {
    display:none;
  }
  .loading-indicator_c00383.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00383 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_c00383 { 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_c00383" -> "#page-container .classname_c00383")
 */
.pf_c00383 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00383 { /* 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_c00383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00383 { /* 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_c00383 { /* 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_c00383 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00383 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00383 {overflow:visible;}
  }
}
.c_c00383 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00383 { /* 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_c00383:after { /* webkit #35443 */
  content: '';
}
.t_c00383:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00383 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 */
}
.__c00383 { /* 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_c00383 { /* info for Javascript */
  display:none;
}
.l_c00383 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00383 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00383 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00383: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_c00383 {
    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_c00383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00383.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_c00383 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00383{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00383;src:url('chunks/assets/font_60ed1478fc6d73a953fe6903.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.284668;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_c00383;src:url('chunks/assets/font_6ea08ef58b4f8ca58baa9404.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.284180;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_c00383;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;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;}
.m7_c00383{transform:matrix(0.166145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166145,0.000000,0.000000,0.250000,0,0);}
.m6_c00383{transform:matrix(0.170759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170759,0.000000,0.000000,0.250000,0,0);}
.m5_c00383{transform:matrix(0.239848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239848,0.000000,0.000000,0.250000,0,0);}
.m9_c00383{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m0_c00383{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m3_c00383{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.m8_c00383{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m4_c00383{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m2_c00383{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m1_c00383{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);}
.v0_c00383{vertical-align:0.000000px;}
.ls66_c00383{letter-spacing:-2.415000px;}
.ls90_c00383{letter-spacing:-2.394000px;}
.ls9e_c00383{letter-spacing:-2.373000px;}
.ls61_c00383{letter-spacing:-2.352000px;}
.ls9b_c00383{letter-spacing:-2.201100px;}
.ls6a_c00383{letter-spacing:-1.959600px;}
.ls73_c00383{letter-spacing:-1.794000px;}
.ls77_c00383{letter-spacing:-1.780200px;}
.ls99_c00383{letter-spacing:-1.766400px;}
.ls79_c00383{letter-spacing:-1.642200px;}
.ls95_c00383{letter-spacing:-1.538700px;}
.ls6f_c00383{letter-spacing:-1.428300px;}
.ls88_c00383{letter-spacing:-1.393800px;}
.ls70_c00383{letter-spacing:-1.235100px;}
.ls69_c00383{letter-spacing:-1.166100px;}
.ls63_c00383{letter-spacing:-1.159200px;}
.ls6c_c00383{letter-spacing:-1.124700px;}
.ls8a_c00383{letter-spacing:-1.110900px;}
.ls87_c00383{letter-spacing:-1.090200px;}
.ls7e_c00383{letter-spacing:-1.083300px;}
.ls6b_c00383{letter-spacing:-1.014300px;}
.ls6d_c00383{letter-spacing:-0.952200px;}
.ls75_c00383{letter-spacing:-0.938400px;}
.ls7a_c00383{letter-spacing:-0.903900px;}
.ls74_c00383{letter-spacing:-0.862500px;}
.ls92_c00383{letter-spacing:-0.855600px;}
.ls9c_c00383{letter-spacing:-0.821100px;}
.ls8d_c00383{letter-spacing:-0.800400px;}
.ls91_c00383{letter-spacing:-0.738300px;}
.ls7d_c00383{letter-spacing:-0.690000px;}
.ls71_c00383{letter-spacing:-0.676200px;}
.ls84_c00383{letter-spacing:-0.565800px;}
.ls6e_c00383{letter-spacing:-0.552000px;}
.ls9d_c00383{letter-spacing:-0.538200px;}
.ls76_c00383{letter-spacing:-0.503700px;}
.ls62_c00383{letter-spacing:-0.489900px;}
.ls96_c00383{letter-spacing:-0.469200px;}
.ls72_c00383{letter-spacing:-0.386400px;}
.ls68_c00383{letter-spacing:-0.331200px;}
.ls7b_c00383{letter-spacing:-0.296700px;}
.ls78_c00383{letter-spacing:-0.289800px;}
.ls93_c00383{letter-spacing:-0.269100px;}
.ls8c_c00383{letter-spacing:-0.248400px;}
.ls8e_c00383{letter-spacing:-0.172500px;}
.ls98_c00383{letter-spacing:-0.165600px;}
.ls80_c00383{letter-spacing:-0.144900px;}
.ls9a_c00383{letter-spacing:-0.138000px;}
.ls81_c00383{letter-spacing:-0.124200px;}
.ls65_c00383{letter-spacing:-0.117300px;}
.ls86_c00383{letter-spacing:-0.110400px;}
.ls8b_c00383{letter-spacing:-0.089700px;}
.ls82_c00383{letter-spacing:-0.075900px;}
.ls7f_c00383{letter-spacing:-0.062100px;}
.ls89_c00383{letter-spacing:-0.055200px;}
.ls64_c00383{letter-spacing:-0.041400px;}
.ls7c_c00383{letter-spacing:-0.027600px;}
.ls9f_c00383{letter-spacing:-0.020700px;}
.ls85_c00383{letter-spacing:-0.013800px;}
.ls67_c00383{letter-spacing:0.000000px;}
.ls43_c00383{letter-spacing:0.027600px;}
.ls97_c00383{letter-spacing:0.034500px;}
.ls8f_c00383{letter-spacing:0.041400px;}
.ls9_c00383{letter-spacing:0.048300px;}
.ls1f_c00383{letter-spacing:0.055200px;}
.ls3e_c00383{letter-spacing:0.062100px;}
.ls4e_c00383{letter-spacing:0.082800px;}
.ls1b_c00383{letter-spacing:0.103500px;}
.ls32_c00383{letter-spacing:0.117300px;}
.ls54_c00383{letter-spacing:0.131100px;}
.ls3b_c00383{letter-spacing:0.138000px;}
.ls6_c00383{letter-spacing:0.144900px;}
.ls3c_c00383{letter-spacing:0.172500px;}
.ls19_c00383{letter-spacing:0.179400px;}
.ls51_c00383{letter-spacing:0.186300px;}
.lsa0_c00383{letter-spacing:0.200100px;}
.ls28_c00383{letter-spacing:0.207000px;}
.ls20_c00383{letter-spacing:0.213900px;}
.ls2d_c00383{letter-spacing:0.220800px;}
.ls2_c00383{letter-spacing:0.227700px;}
.ls2a_c00383{letter-spacing:0.248400px;}
.ls2e_c00383{letter-spacing:0.262200px;}
.ls8_c00383{letter-spacing:0.269100px;}
.ls12_c00383{letter-spacing:0.276000px;}
.ls29_c00383{letter-spacing:0.282900px;}
.ls34_c00383{letter-spacing:0.303600px;}
.ls15_c00383{letter-spacing:0.317400px;}
.ls46_c00383{letter-spacing:0.324300px;}
.ls4_c00383{letter-spacing:0.331200px;}
.ls48_c00383{letter-spacing:0.338100px;}
.ls57_c00383{letter-spacing:0.345000px;}
.lsc_c00383{letter-spacing:0.351900px;}
.ls56_c00383{letter-spacing:0.358800px;}
.lsf_c00383{letter-spacing:0.372600px;}
.ls45_c00383{letter-spacing:0.379500px;}
.ls18_c00383{letter-spacing:0.400200px;}
.ls3d_c00383{letter-spacing:0.407100px;}
.ls30_c00383{letter-spacing:0.427800px;}
.ls1e_c00383{letter-spacing:0.434700px;}
.ls3a_c00383{letter-spacing:0.441600px;}
.ls1a_c00383{letter-spacing:0.455400px;}
.ls42_c00383{letter-spacing:0.462300px;}
.lsb_c00383{letter-spacing:0.488160px;}
.ls4d_c00383{letter-spacing:0.510600px;}
.ls83_c00383{letter-spacing:0.517500px;}
.ls2f_c00383{letter-spacing:0.524400px;}
.ls40_c00383{letter-spacing:0.558900px;}
.ls33_c00383{letter-spacing:0.579600px;}
.ls47_c00383{letter-spacing:0.586500px;}
.ls37_c00383{letter-spacing:0.621000px;}
.lsa1_c00383{letter-spacing:0.622740px;}
.ls38_c00383{letter-spacing:0.641700px;}
.ls41_c00383{letter-spacing:0.648600px;}
.ls16_c00383{letter-spacing:0.650880px;}
.ls49_c00383{letter-spacing:0.655500px;}
.ls5d_c00383{letter-spacing:0.669300px;}
.ls21_c00383{letter-spacing:0.683100px;}
.lse_c00383{letter-spacing:0.691560px;}
.ls14_c00383{letter-spacing:0.725460px;}
.ls4c_c00383{letter-spacing:0.745200px;}
.ls3_c00383{letter-spacing:0.752100px;}
.ls26_c00383{letter-spacing:0.759000px;}
.ls39_c00383{letter-spacing:0.759360px;}
.ls1c_c00383{letter-spacing:0.765900px;}
.ls24_c00383{letter-spacing:0.779700px;}
.ls5e_c00383{letter-spacing:0.807300px;}
.ls55_c00383{letter-spacing:0.814200px;}
.ls53_c00383{letter-spacing:0.821100px;}
.ls59_c00383{letter-spacing:0.840720px;}
.ls44_c00383{letter-spacing:0.855600px;}
.ls7_c00383{letter-spacing:0.862500px;}
.ls2b_c00383{letter-spacing:0.883200px;}
.ls25_c00383{letter-spacing:0.890100px;}
.lsa_c00383{letter-spacing:0.901740px;}
.ls58_c00383{letter-spacing:0.910800px;}
.ls5_c00383{letter-spacing:0.924600px;}
.ls13_c00383{letter-spacing:0.942420px;}
.ls3f_c00383{letter-spacing:0.959100px;}
.ls5f_c00383{letter-spacing:0.993600px;}
.ls10_c00383{letter-spacing:1.017000px;}
.ls4f_c00383{letter-spacing:1.028100px;}
.ls35_c00383{letter-spacing:1.035000px;}
.ls1_c00383{letter-spacing:1.039680px;}
.ls2c_c00383{letter-spacing:1.083300px;}
.ls22_c00383{letter-spacing:1.097100px;}
.ls36_c00383{letter-spacing:1.118700px;}
.lsd_c00383{letter-spacing:1.152600px;}
.ls94_c00383{letter-spacing:1.186800px;}
.ls5c_c00383{letter-spacing:1.193700px;}
.ls4b_c00383{letter-spacing:1.235100px;}
.ls11_c00383{letter-spacing:1.274640px;}
.ls5b_c00383{letter-spacing:1.297200px;}
.ls4a_c00383{letter-spacing:1.311000px;}
.ls0_c00383{letter-spacing:1.415880px;}
.ls17_c00383{letter-spacing:1.435200px;}
.ls23_c00383{letter-spacing:1.462800px;}
.ls5a_c00383{letter-spacing:1.469700px;}
.ls31_c00383{letter-spacing:1.518000px;}
.ls1d_c00383{letter-spacing:1.524900px;}
.ls27_c00383{letter-spacing:1.600800px;}
.ls52_c00383{letter-spacing:1.773300px;}
.ls60_c00383{letter-spacing:2.014800px;}
.ls50_c00383{letter-spacing:2.539200px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{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__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00383{word-spacing:-0.054000px;}
.ws4_c00383{word-spacing:0.000000px;}
.ws2_c00383{word-spacing:8.572200px;}
.ws3_c00383{word-spacing:8.655000px;}
.ws0_c00383{word-spacing:10.198200px;}
._12_c00383{margin-left:-5.989200px;}
._11_c00383{margin-left:-4.631100px;}
._8_c00383{margin-left:-3.072720px;}
._c_c00383{margin-left:-1.252140px;}
._9_c00383{width:1.380000px;}
._0_c00383{width:3.114120px;}
._a_c00383{width:4.236600px;}
._6_c00383{width:5.878800px;}
._1_c00383{width:7.362300px;}
._7_c00383{width:8.728500px;}
._2_c00383{width:10.094700px;}
._b_c00383{width:11.407560px;}
._3_c00383{width:12.785700px;}
._5_c00383{width:13.993200px;}
._d_c00383{width:15.185040px;}
._e_c00383{width:18.298800px;}
._f_c00383{width:19.425360px;}
._10_c00383{width:20.989800px;}
._4_c00383{width:22.287000px;}
.fc0_c00383{color:transparent;}
.fs4_c00383{font-size:58.200000px;}
.fs0_c00383{font-size:67.200000px;}
.fs3_c00383{font-size:67.800000px;}
.fs1_c00383{font-size:68.400000px;}
.fs2_c00383{font-size:69.000000px;}
.y0_c00383{bottom:0.000000px;}
.y20_c00383{bottom:68.775000px;}
.y1f_c00383{bottom:159.120750px;}
.y1e_c00383{bottom:189.360000px;}
.y1d_c00383{bottom:220.335000px;}
.y1b_c00383{bottom:282.254250px;}
.y1c_c00383{bottom:282.255000px;}
.y1a_c00383{bottom:312.838500px;}
.y19_c00383{bottom:343.090500px;}
.y18_c00383{bottom:373.692000px;}
.y17_c00383{bottom:403.931250px;}
.y16_c00383{bottom:435.240000px;}
.y15_c00383{bottom:497.895000px;}
.y14_c00383{bottom:560.163750px;}
.y13_c00383{bottom:591.852000px;}
.y12_c00383{bottom:622.453500px;}
.y11_c00383{bottom:653.048250px;}
.y10_c00383{bottom:684.012000px;}
.yf_c00383{bottom:714.613500px;}
.ye_c00383{bottom:745.560000px;}
.yd_c00383{bottom:807.495000px;}
.yc_c00383{bottom:838.440000px;}
.yb_c00383{bottom:869.400000px;}
.ya_c00383{bottom:899.655000px;}
.y9_c00383{bottom:930.240000px;}
.y7_c00383{bottom:991.436250px;}
.y8_c00383{bottom:991.440000px;}
.y5_c00383{bottom:1022.054250px;}
.y6_c00383{bottom:1022.055000px;}
.y3_c00383{bottom:1083.231750px;}
.y4_c00383{bottom:1083.240000px;}
.y2_c00383{bottom:1114.920000px;}
.y1_c00383{bottom:1190.175000px;}
.h8_c00383{height:57.120117px;}
.h2_c00383{height:65.953125px;}
.h5_c00383{height:67.130859px;}
.h3_c00383{height:67.719727px;}
.h6_c00383{height:67.737727px;}
.h4_c00383{height:67.746727px;}
.h7_c00383{height:70.713281px;}
.h1_c00383{height:1263.000000px;}
.h0_c00383{height:1263.240000px;}
.w1_c00383{width:892.500000px;}
.w0_c00383{width:892.800000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:121.605000px;}
.xc_c00383{left:123.330000px;}
.x3_c00383{left:175.589250px;}
.x7_c00383{left:237.405000px;}
.x4_c00383{left:243.525000px;}
.x8_c00383{left:266.160000px;}
.x2_c00383{left:273.030000px;}
.x13_c00383{left:423.915000px;}
.xd_c00383{left:443.460000px;}
.x10_c00383{left:444.780000px;}
.xe_c00383{left:475.770000px;}
.x5_c00383{left:555.300000px;}
.x6_c00383{left:574.125000px;}
.x9_c00383{left:581.520000px;}
.xb_c00383{left:586.695000px;}
.x11_c00383{left:604.620000px;}
.xa_c00383{left:606.405000px;}
.x12_c00383{left:623.130000px;}
.xf_c00383{left:679.620000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls66_c00383{letter-spacing:-2.146667pt;}
.ls90_c00383{letter-spacing:-2.128000pt;}
.ls9e_c00383{letter-spacing:-2.109333pt;}
.ls61_c00383{letter-spacing:-2.090667pt;}
.ls9b_c00383{letter-spacing:-1.956533pt;}
.ls6a_c00383{letter-spacing:-1.741867pt;}
.ls73_c00383{letter-spacing:-1.594667pt;}
.ls77_c00383{letter-spacing:-1.582400pt;}
.ls99_c00383{letter-spacing:-1.570133pt;}
.ls79_c00383{letter-spacing:-1.459733pt;}
.ls95_c00383{letter-spacing:-1.367733pt;}
.ls6f_c00383{letter-spacing:-1.269600pt;}
.ls88_c00383{letter-spacing:-1.238933pt;}
.ls70_c00383{letter-spacing:-1.097867pt;}
.ls69_c00383{letter-spacing:-1.036533pt;}
.ls63_c00383{letter-spacing:-1.030400pt;}
.ls6c_c00383{letter-spacing:-0.999733pt;}
.ls8a_c00383{letter-spacing:-0.987467pt;}
.ls87_c00383{letter-spacing:-0.969067pt;}
.ls7e_c00383{letter-spacing:-0.962933pt;}
.ls6b_c00383{letter-spacing:-0.901600pt;}
.ls6d_c00383{letter-spacing:-0.846400pt;}
.ls75_c00383{letter-spacing:-0.834133pt;}
.ls7a_c00383{letter-spacing:-0.803467pt;}
.ls74_c00383{letter-spacing:-0.766667pt;}
.ls92_c00383{letter-spacing:-0.760533pt;}
.ls9c_c00383{letter-spacing:-0.729867pt;}
.ls8d_c00383{letter-spacing:-0.711467pt;}
.ls91_c00383{letter-spacing:-0.656267pt;}
.ls7d_c00383{letter-spacing:-0.613333pt;}
.ls71_c00383{letter-spacing:-0.601067pt;}
.ls84_c00383{letter-spacing:-0.502933pt;}
.ls6e_c00383{letter-spacing:-0.490667pt;}
.ls9d_c00383{letter-spacing:-0.478400pt;}
.ls76_c00383{letter-spacing:-0.447733pt;}
.ls62_c00383{letter-spacing:-0.435467pt;}
.ls96_c00383{letter-spacing:-0.417067pt;}
.ls72_c00383{letter-spacing:-0.343467pt;}
.ls68_c00383{letter-spacing:-0.294400pt;}
.ls7b_c00383{letter-spacing:-0.263733pt;}
.ls78_c00383{letter-spacing:-0.257600pt;}
.ls93_c00383{letter-spacing:-0.239200pt;}
.ls8c_c00383{letter-spacing:-0.220800pt;}
.ls8e_c00383{letter-spacing:-0.153333pt;}
.ls98_c00383{letter-spacing:-0.147200pt;}
.ls80_c00383{letter-spacing:-0.128800pt;}
.ls9a_c00383{letter-spacing:-0.122667pt;}
.ls81_c00383{letter-spacing:-0.110400pt;}
.ls65_c00383{letter-spacing:-0.104267pt;}
.ls86_c00383{letter-spacing:-0.098133pt;}
.ls8b_c00383{letter-spacing:-0.079733pt;}
.ls82_c00383{letter-spacing:-0.067467pt;}
.ls7f_c00383{letter-spacing:-0.055200pt;}
.ls89_c00383{letter-spacing:-0.049067pt;}
.ls64_c00383{letter-spacing:-0.036800pt;}
.ls7c_c00383{letter-spacing:-0.024533pt;}
.ls9f_c00383{letter-spacing:-0.018400pt;}
.ls85_c00383{letter-spacing:-0.012267pt;}
.ls67_c00383{letter-spacing:0.000000pt;}
.ls43_c00383{letter-spacing:0.024533pt;}
.ls97_c00383{letter-spacing:0.030667pt;}
.ls8f_c00383{letter-spacing:0.036800pt;}
.ls9_c00383{letter-spacing:0.042933pt;}
.ls1f_c00383{letter-spacing:0.049067pt;}
.ls3e_c00383{letter-spacing:0.055200pt;}
.ls4e_c00383{letter-spacing:0.073600pt;}
.ls1b_c00383{letter-spacing:0.092000pt;}
.ls32_c00383{letter-spacing:0.104267pt;}
.ls54_c00383{letter-spacing:0.116533pt;}
.ls3b_c00383{letter-spacing:0.122667pt;}
.ls6_c00383{letter-spacing:0.128800pt;}
.ls3c_c00383{letter-spacing:0.153333pt;}
.ls19_c00383{letter-spacing:0.159467pt;}
.ls51_c00383{letter-spacing:0.165600pt;}
.lsa0_c00383{letter-spacing:0.177867pt;}
.ls28_c00383{letter-spacing:0.184000pt;}
.ls20_c00383{letter-spacing:0.190133pt;}
.ls2d_c00383{letter-spacing:0.196267pt;}
.ls2_c00383{letter-spacing:0.202400pt;}
.ls2a_c00383{letter-spacing:0.220800pt;}
.ls2e_c00383{letter-spacing:0.233067pt;}
.ls8_c00383{letter-spacing:0.239200pt;}
.ls12_c00383{letter-spacing:0.245333pt;}
.ls29_c00383{letter-spacing:0.251467pt;}
.ls34_c00383{letter-spacing:0.269867pt;}
.ls15_c00383{letter-spacing:0.282133pt;}
.ls46_c00383{letter-spacing:0.288267pt;}
.ls4_c00383{letter-spacing:0.294400pt;}
.ls48_c00383{letter-spacing:0.300533pt;}
.ls57_c00383{letter-spacing:0.306667pt;}
.lsc_c00383{letter-spacing:0.312800pt;}
.ls56_c00383{letter-spacing:0.318933pt;}
.lsf_c00383{letter-spacing:0.331200pt;}
.ls45_c00383{letter-spacing:0.337333pt;}
.ls18_c00383{letter-spacing:0.355733pt;}
.ls3d_c00383{letter-spacing:0.361867pt;}
.ls30_c00383{letter-spacing:0.380267pt;}
.ls1e_c00383{letter-spacing:0.386400pt;}
.ls3a_c00383{letter-spacing:0.392533pt;}
.ls1a_c00383{letter-spacing:0.404800pt;}
.ls42_c00383{letter-spacing:0.410933pt;}
.lsb_c00383{letter-spacing:0.433920pt;}
.ls4d_c00383{letter-spacing:0.453867pt;}
.ls83_c00383{letter-spacing:0.460000pt;}
.ls2f_c00383{letter-spacing:0.466133pt;}
.ls40_c00383{letter-spacing:0.496800pt;}
.ls33_c00383{letter-spacing:0.515200pt;}
.ls47_c00383{letter-spacing:0.521333pt;}
.ls37_c00383{letter-spacing:0.552000pt;}
.lsa1_c00383{letter-spacing:0.553547pt;}
.ls38_c00383{letter-spacing:0.570400pt;}
.ls41_c00383{letter-spacing:0.576533pt;}
.ls16_c00383{letter-spacing:0.578560pt;}
.ls49_c00383{letter-spacing:0.582667pt;}
.ls5d_c00383{letter-spacing:0.594933pt;}
.ls21_c00383{letter-spacing:0.607200pt;}
.lse_c00383{letter-spacing:0.614720pt;}
.ls14_c00383{letter-spacing:0.644853pt;}
.ls4c_c00383{letter-spacing:0.662400pt;}
.ls3_c00383{letter-spacing:0.668533pt;}
.ls26_c00383{letter-spacing:0.674667pt;}
.ls39_c00383{letter-spacing:0.674987pt;}
.ls1c_c00383{letter-spacing:0.680800pt;}
.ls24_c00383{letter-spacing:0.693067pt;}
.ls5e_c00383{letter-spacing:0.717600pt;}
.ls55_c00383{letter-spacing:0.723733pt;}
.ls53_c00383{letter-spacing:0.729867pt;}
.ls59_c00383{letter-spacing:0.747307pt;}
.ls44_c00383{letter-spacing:0.760533pt;}
.ls7_c00383{letter-spacing:0.766667pt;}
.ls2b_c00383{letter-spacing:0.785067pt;}
.ls25_c00383{letter-spacing:0.791200pt;}
.lsa_c00383{letter-spacing:0.801547pt;}
.ls58_c00383{letter-spacing:0.809600pt;}
.ls5_c00383{letter-spacing:0.821867pt;}
.ls13_c00383{letter-spacing:0.837707pt;}
.ls3f_c00383{letter-spacing:0.852533pt;}
.ls5f_c00383{letter-spacing:0.883200pt;}
.ls10_c00383{letter-spacing:0.904000pt;}
.ls4f_c00383{letter-spacing:0.913867pt;}
.ls35_c00383{letter-spacing:0.920000pt;}
.ls1_c00383{letter-spacing:0.924160pt;}
.ls2c_c00383{letter-spacing:0.962933pt;}
.ls22_c00383{letter-spacing:0.975200pt;}
.ls36_c00383{letter-spacing:0.994400pt;}
.lsd_c00383{letter-spacing:1.024533pt;}
.ls94_c00383{letter-spacing:1.054933pt;}
.ls5c_c00383{letter-spacing:1.061067pt;}
.ls4b_c00383{letter-spacing:1.097867pt;}
.ls11_c00383{letter-spacing:1.133013pt;}
.ls5b_c00383{letter-spacing:1.153067pt;}
.ls4a_c00383{letter-spacing:1.165333pt;}
.ls0_c00383{letter-spacing:1.258560pt;}
.ls17_c00383{letter-spacing:1.275733pt;}
.ls23_c00383{letter-spacing:1.300267pt;}
.ls5a_c00383{letter-spacing:1.306400pt;}
.ls31_c00383{letter-spacing:1.349333pt;}
.ls1d_c00383{letter-spacing:1.355467pt;}
.ls27_c00383{letter-spacing:1.422933pt;}
.ls52_c00383{letter-spacing:1.576267pt;}
.ls60_c00383{letter-spacing:1.790933pt;}
.ls50_c00383{letter-spacing:2.257067pt;}
.ws1_c00383{word-spacing:-0.048000pt;}
.ws4_c00383{word-spacing:0.000000pt;}
.ws2_c00383{word-spacing:7.619733pt;}
.ws3_c00383{word-spacing:7.693333pt;}
.ws0_c00383{word-spacing:9.065067pt;}
._12_c00383{margin-left:-5.323733pt;}
._11_c00383{margin-left:-4.116533pt;}
._8_c00383{margin-left:-2.731307pt;}
._c_c00383{margin-left:-1.113013pt;}
._9_c00383{width:1.226667pt;}
._0_c00383{width:2.768107pt;}
._a_c00383{width:3.765867pt;}
._6_c00383{width:5.225600pt;}
._1_c00383{width:6.544267pt;}
._7_c00383{width:7.758667pt;}
._2_c00383{width:8.973067pt;}
._b_c00383{width:10.140053pt;}
._3_c00383{width:11.365067pt;}
._5_c00383{width:12.438400pt;}
._d_c00383{width:13.497813pt;}
._e_c00383{width:16.265600pt;}
._f_c00383{width:17.266987pt;}
._10_c00383{width:18.657600pt;}
._4_c00383{width:19.810667pt;}
.fs4_c00383{font-size:51.733333pt;}
.fs0_c00383{font-size:59.733333pt;}
.fs3_c00383{font-size:60.266667pt;}
.fs1_c00383{font-size:60.800000pt;}
.fs2_c00383{font-size:61.333333pt;}
.y0_c00383{bottom:0.000000pt;}
.y20_c00383{bottom:61.133333pt;}
.y1f_c00383{bottom:141.440667pt;}
.y1e_c00383{bottom:168.320000pt;}
.y1d_c00383{bottom:195.853333pt;}
.y1b_c00383{bottom:250.892667pt;}
.y1c_c00383{bottom:250.893333pt;}
.y1a_c00383{bottom:278.078667pt;}
.y19_c00383{bottom:304.969333pt;}
.y18_c00383{bottom:332.170667pt;}
.y17_c00383{bottom:359.050000pt;}
.y16_c00383{bottom:386.880000pt;}
.y15_c00383{bottom:442.573333pt;}
.y14_c00383{bottom:497.923333pt;}
.y13_c00383{bottom:526.090667pt;}
.y12_c00383{bottom:553.292000pt;}
.y11_c00383{bottom:580.487333pt;}
.y10_c00383{bottom:608.010667pt;}
.yf_c00383{bottom:635.212000pt;}
.ye_c00383{bottom:662.720000pt;}
.yd_c00383{bottom:717.773333pt;}
.yc_c00383{bottom:745.280000pt;}
.yb_c00383{bottom:772.800000pt;}
.ya_c00383{bottom:799.693333pt;}
.y9_c00383{bottom:826.880000pt;}
.y7_c00383{bottom:881.276667pt;}
.y8_c00383{bottom:881.280000pt;}
.y5_c00383{bottom:908.492667pt;}
.y6_c00383{bottom:908.493333pt;}
.y3_c00383{bottom:962.872667pt;}
.y4_c00383{bottom:962.880000pt;}
.y2_c00383{bottom:991.040000pt;}
.y1_c00383{bottom:1057.933333pt;}
.h8_c00383{height:50.773437pt;}
.h2_c00383{height:58.625000pt;}
.h5_c00383{height:59.671875pt;}
.h3_c00383{height:60.195312pt;}
.h6_c00383{height:60.211312pt;}
.h4_c00383{height:60.219313pt;}
.h7_c00383{height:62.856250pt;}
.h1_c00383{height:1122.666667pt;}
.h0_c00383{height:1122.880000pt;}
.w1_c00383{width:793.333333pt;}
.w0_c00383{width:793.600000pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:108.093333pt;}
.xc_c00383{left:109.626667pt;}
.x3_c00383{left:156.079333pt;}
.x7_c00383{left:211.026667pt;}
.x4_c00383{left:216.466667pt;}
.x8_c00383{left:236.586667pt;}
.x2_c00383{left:242.693333pt;}
.x13_c00383{left:376.813333pt;}
.xd_c00383{left:394.186667pt;}
.x10_c00383{left:395.360000pt;}
.xe_c00383{left:422.906667pt;}
.x5_c00383{left:493.600000pt;}
.x6_c00383{left:510.333333pt;}
.x9_c00383{left:516.906667pt;}
.xb_c00383{left:521.506667pt;}
.x11_c00383{left:537.440000pt;}
.xa_c00383{left:539.026667pt;}
.x12_c00383{left:553.893333pt;}
.xf_c00383{left:604.106667pt;}
}





/* 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_c00384 {
    display:none;
  }
  .loading-indicator_c00384.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00384 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_c00384 { 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_c00384" -> "#page-container .classname_c00384")
 */
.pf_c00384 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00384 { /* 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_c00384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00384 { /* 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_c00384 { /* 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_c00384 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00384 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00384 {overflow:visible;}
  }
}
.c_c00384 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00384 { /* 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_c00384:after { /* webkit #35443 */
  content: '';
}
.t_c00384:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00384 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 */
}
.__c00384 { /* 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_c00384 { /* info for Javascript */
  display:none;
}
.l_c00384 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00384 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00384 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00384: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_c00384 {
    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_c00384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00384.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_c00384 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00384{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00384;src:url('chunks/assets/font_27ebc2f7fd07fec20640fc42.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.284668;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_c00384;src:url('chunks/assets/font_5b5061e0873854020d9d147d.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.284180;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_c00384;src:url('chunks/assets/font_865071a1b7454b60c19083ed.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.311035;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_c00384;src:url('chunks/assets/font_aab76df9d240c5d7814a5da4.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:0.666000;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;}
.mf_c00384{transform:matrix(0.131757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131757,0.000000,0.000000,0.250000,0,0);}
.me_c00384{transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);}
.m2_c00384{transform:matrix(0.226593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226593,0.000000,0.000000,0.250000,0,0);}
.m9_c00384{transform:matrix(0.231532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231532,0.000000,0.000000,0.250000,0,0);}
.m8_c00384{transform:matrix(0.238797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238797,0.000000,0.000000,0.250000,0,0);}
.mb_c00384{transform:matrix(0.246072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246072,0.000000,0.000000,0.250000,0,0);}
.m0_c00384{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.ma_c00384{transform:matrix(0.247422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247422,0.000000,0.000000,0.250000,0,0);}
.mc_c00384{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m1_c00384{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);}
.m3_c00384{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m4_c00384{transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);}
.md_c00384{transform:matrix(0.255766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255766,0.000000,0.000000,0.250000,0,0);}
.m5_c00384{transform:matrix(0.272586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272586,0.000000,0.000000,0.250000,0,0);}
.m6_c00384{transform:matrix(0.289435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289435,0.000000,0.000000,0.250000,0,0);}
.m7_c00384{transform:matrix(0.318394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318394,0.000000,0.000000,0.250000,0,0);}
.v2_c00384{vertical-align:-28.866965px;}
.v0_c00384{vertical-align:0.000000px;}
.v1_c00384{vertical-align:28.860000px;}
.ls87_c00384{letter-spacing:-2.562000px;}
.ls7f_c00384{letter-spacing:-2.459520px;}
.ls5d_c00384{letter-spacing:-2.436000px;}
.ls7d_c00384{letter-spacing:-2.352480px;}
.ls58_c00384{letter-spacing:-2.352000px;}
.ls86_c00384{letter-spacing:-2.313120px;}
.ls91_c00384{letter-spacing:-2.310000px;}
.ls78_c00384{letter-spacing:-2.234160px;}
.ls71_c00384{letter-spacing:-1.767840px;}
.ls84_c00384{letter-spacing:-1.760880px;}
.ls65_c00384{letter-spacing:-1.649520px;}
.ls8a_c00384{letter-spacing:-1.600800px;}
.ls8d_c00384{letter-spacing:-1.531200px;}
.ls83_c00384{letter-spacing:-1.412880px;}
.ls7e_c00384{letter-spacing:-1.294560px;}
.ls81_c00384{letter-spacing:-1.190160px;}
.ls76_c00384{letter-spacing:-1.064880px;}
.ls7c_c00384{letter-spacing:-0.883920px;}
.ls80_c00384{letter-spacing:-0.856080px;}
.ls7b_c00384{letter-spacing:-0.814320px;}
.ls63_c00384{letter-spacing:-0.793440px;}
.ls75_c00384{letter-spacing:-0.779520px;}
.ls73_c00384{letter-spacing:-0.689040px;}
.ls8e_c00384{letter-spacing:-0.577680px;}
.ls6e_c00384{letter-spacing:-0.563760px;}
.ls89_c00384{letter-spacing:-0.549840px;}
.ls7a_c00384{letter-spacing:-0.542880px;}
.ls74_c00384{letter-spacing:-0.501120px;}
.ls62_c00384{letter-spacing:-0.487200px;}
.ls88_c00384{letter-spacing:-0.466320px;}
.ls77_c00384{letter-spacing:-0.452400px;}
.ls5a_c00384{letter-spacing:-0.403680px;}
.ls85_c00384{letter-spacing:-0.387960px;}
.ls6d_c00384{letter-spacing:-0.382800px;}
.ls6c_c00384{letter-spacing:-0.361920px;}
.ls82_c00384{letter-spacing:-0.320160px;}
.ls60_c00384{letter-spacing:-0.222720px;}
.ls68_c00384{letter-spacing:-0.208800px;}
.ls79_c00384{letter-spacing:-0.187920px;}
.ls92_c00384{letter-spacing:-0.180960px;}
.ls93_c00384{letter-spacing:-0.160080px;}
.ls8b_c00384{letter-spacing:-0.118320px;}
.ls6b_c00384{letter-spacing:-0.111360px;}
.ls64_c00384{letter-spacing:-0.104400px;}
.ls67_c00384{letter-spacing:-0.097440px;}
.ls66_c00384{letter-spacing:-0.090480px;}
.ls61_c00384{letter-spacing:-0.076560px;}
.ls5e_c00384{letter-spacing:-0.034800px;}
.ls5f_c00384{letter-spacing:-0.020880px;}
.ls59_c00384{letter-spacing:0.000000px;}
.lsa_c00384{letter-spacing:0.006960px;}
.ls12_c00384{letter-spacing:0.034800px;}
.ls4f_c00384{letter-spacing:0.062640px;}
.ls27_c00384{letter-spacing:0.090480px;}
.ls25_c00384{letter-spacing:0.097440px;}
.ls9_c00384{letter-spacing:0.111360px;}
.ls8_c00384{letter-spacing:0.139200px;}
.ls70_c00384{letter-spacing:0.146160px;}
.ls3_c00384{letter-spacing:0.180960px;}
.ls28_c00384{letter-spacing:0.187920px;}
.ls44_c00384{letter-spacing:0.194880px;}
.ls1b_c00384{letter-spacing:0.201840px;}
.ls7_c00384{letter-spacing:0.222720px;}
.ls2d_c00384{letter-spacing:0.250560px;}
.lsf_c00384{letter-spacing:0.257520px;}
.ls4_c00384{letter-spacing:0.264480px;}
.ls22_c00384{letter-spacing:0.271440px;}
.ls2e_c00384{letter-spacing:0.278400px;}
.ls3f_c00384{letter-spacing:0.285360px;}
.ls47_c00384{letter-spacing:0.292320px;}
.ls43_c00384{letter-spacing:0.306240px;}
.ls6f_c00384{letter-spacing:0.320160px;}
.ls51_c00384{letter-spacing:0.334080px;}
.ls2c_c00384{letter-spacing:0.341040px;}
.ls1_c00384{letter-spacing:0.351900px;}
.lsc_c00384{letter-spacing:0.361920px;}
.ls0_c00384{letter-spacing:0.365700px;}
.ls18_c00384{letter-spacing:0.382800px;}
.ls8c_c00384{letter-spacing:0.445440px;}
.ls5c_c00384{letter-spacing:0.452400px;}
.ls1e_c00384{letter-spacing:0.459360px;}
.lsd_c00384{letter-spacing:0.487200px;}
.ls19_c00384{letter-spacing:0.494160px;}
.ls4c_c00384{letter-spacing:0.508080px;}
.ls36_c00384{letter-spacing:0.515040px;}
.ls37_c00384{letter-spacing:0.522000px;}
.ls23_c00384{letter-spacing:0.528960px;}
.ls32_c00384{letter-spacing:0.535920px;}
.lse_c00384{letter-spacing:0.542880px;}
.ls1d_c00384{letter-spacing:0.549840px;}
.ls31_c00384{letter-spacing:0.570720px;}
.ls14_c00384{letter-spacing:0.577680px;}
.ls26_c00384{letter-spacing:0.584640px;}
.ls15_c00384{letter-spacing:0.591600px;}
.ls56_c00384{letter-spacing:0.598560px;}
.ls3d_c00384{letter-spacing:0.612480px;}
.ls17_c00384{letter-spacing:0.619440px;}
.ls29_c00384{letter-spacing:0.626400px;}
.lsb_c00384{letter-spacing:0.640320px;}
.ls4b_c00384{letter-spacing:0.683100px;}
.ls1c_c00384{letter-spacing:0.709920px;}
.ls30_c00384{letter-spacing:0.730800px;}
.ls1a_c00384{letter-spacing:0.737760px;}
.ls10_c00384{letter-spacing:0.744720px;}
.ls2a_c00384{letter-spacing:0.765600px;}
.ls45_c00384{letter-spacing:0.772560px;}
.ls53_c00384{letter-spacing:0.821280px;}
.ls4d_c00384{letter-spacing:0.828000px;}
.ls13_c00384{letter-spacing:0.890880px;}
.ls94_c00384{letter-spacing:0.905520px;}
.ls24_c00384{letter-spacing:0.925680px;}
.ls16_c00384{letter-spacing:0.931500px;}
.ls4a_c00384{letter-spacing:0.952200px;}
.ls20_c00384{letter-spacing:0.953520px;}
.ls72_c00384{letter-spacing:1.009200px;}
.ls57_c00384{letter-spacing:1.023120px;}
.ls11_c00384{letter-spacing:1.035000px;}
.ls2_c00384{letter-spacing:1.037040px;}
.ls50_c00384{letter-spacing:1.064880px;}
.ls33_c00384{letter-spacing:1.085760px;}
.ls48_c00384{letter-spacing:1.110900px;}
.ls6_c00384{letter-spacing:1.113600px;}
.ls4e_c00384{letter-spacing:1.134480px;}
.ls34_c00384{letter-spacing:1.162320px;}
.ls42_c00384{letter-spacing:1.169280px;}
.ls6a_c00384{letter-spacing:1.176240px;}
.ls38_c00384{letter-spacing:1.238880px;}
.ls52_c00384{letter-spacing:1.259760px;}
.ls3c_c00384{letter-spacing:1.287600px;}
.ls1f_c00384{letter-spacing:1.621680px;}
.ls2f_c00384{letter-spacing:1.642560px;}
.ls39_c00384{letter-spacing:1.753822px;}
.ls46_c00384{letter-spacing:1.794000px;}
.ls54_c00384{letter-spacing:1.802640px;}
.ls3e_c00384{letter-spacing:1.932000px;}
.ls21_c00384{letter-spacing:1.983600px;}
.ls55_c00384{letter-spacing:2.065800px;}
.ls41_c00384{letter-spacing:2.125200px;}
.ls35_c00384{letter-spacing:2.164560px;}
.ls3b_c00384{letter-spacing:2.317680px;}
.ls5_c00384{letter-spacing:2.442960px;}
.ls49_c00384{letter-spacing:2.596080px;}
.ls3a_c00384{letter-spacing:2.784000px;}
.ls5b_c00384{letter-spacing:2.839680px;}
.ls2b_c00384{letter-spacing:2.888400px;}
.ls8f_c00384{letter-spacing:2.917200px;}
.ls40_c00384{letter-spacing:3.111900px;}
.ls90_c00384{letter-spacing:3.300000px;}
.ls69_c00384{letter-spacing:3.480000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{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__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00384{word-spacing:-17.400000px;}
.ws3_c00384{word-spacing:0.000000px;}
.ws0_c00384{word-spacing:6.422100px;}
.ws2_c00384{word-spacing:11.319000px;}
._14_c00384{margin-left:-8.625000px;}
._12_c00384{margin-left:-6.271200px;}
._13_c00384{margin-left:-4.863720px;}
._10_c00384{margin-left:-3.361680px;}
._3_c00384{margin-left:-1.393680px;}
._1_c00384{width:1.009200px;}
._6_c00384{width:2.900400px;}
._2_c00384{width:4.844160px;}
._4_c00384{width:6.001920px;}
._0_c00384{width:8.017800px;}
._8_c00384{width:9.368160px;}
._7_c00384{width:11.094360px;}
._5_c00384{width:12.407520px;}
._e_c00384{width:14.100960px;}
._d_c00384{width:15.369840px;}
._9_c00384{width:16.787520px;}
._f_c00384{width:18.638880px;}
._a_c00384{width:21.395040px;}
._c_c00384{width:23.239440px;}
._b_c00384{width:25.236960px;}
._11_c00384{width:28.327200px;}
.fc0_c00384{color:transparent;}
.fs3_c00384{font-size:47.400600px;}
.fs6_c00384{font-size:53.280000px;}
.fs7_c00384{font-size:58.800000px;}
.fs5_c00384{font-size:66.000000px;}
.fs0_c00384{font-size:67.200000px;}
.fs1_c00384{font-size:69.000000px;}
.fs2_c00384{font-size:69.600000px;}
.fs4_c00384{font-size:73.200000px;}
.y0_c00384{bottom:0.000000px;}
.y1d_c00384{bottom:65.160000px;}
.y1c_c00384{bottom:125.640000px;}
.y1b_c00384{bottom:156.257400px;}
.y1a_c00384{bottom:187.560000px;}
.y19_c00384{bottom:249.135000px;}
.y18_c00384{bottom:279.735000px;}
.y17_c00384{bottom:311.055000px;}
.y16_c00384{bottom:372.255000px;}
.y15_c00384{bottom:403.575000px;}
.y14_c00384{bottom:403.579200px;}
.y13_c00384{bottom:464.775000px;}
.y12_c00384{bottom:496.095000px;}
.y11_c00384{bottom:557.656200px;}
.y10_c00384{bottom:619.200000px;}
.ye_c00384{bottom:650.515200px;}
.yf_c00384{bottom:650.520000px;}
.yd_c00384{bottom:681.121800px;}
.yc_c00384{bottom:712.441800px;}
.yb_c00384{bottom:743.413800px;}
.ya_c00384{bottom:774.003000px;}
.y8_c00384{bottom:804.973800px;}
.y9_c00384{bottom:804.975000px;}
.y7_c00384{bottom:835.928400px;}
.y6_c00384{bottom:897.855000px;}
.y5_c00384{bottom:959.396400px;}
.y4_c00384{bottom:1020.979200px;}
.y3_c00384{bottom:1082.175000px;}
.y2_c00384{bottom:1113.495000px;}
.y1_c00384{bottom:1190.880000px;}
.h8_c00384{height:35.484480px;}
.h9_c00384{height:57.708984px;}
.h7_c00384{height:64.775391px;}
.h2_c00384{height:65.953125px;}
.h3_c00384{height:68.308594px;}
.h4_c00384{height:69.522262px;}
.h6_c00384{height:71.841797px;}
.h5_c00384{height:75.381097px;}
.h1_c00384{height:1263.000000px;}
.h0_c00384{height:1263.240000px;}
.w1_c00384{width:892.500000px;}
.w0_c00384{width:892.800000px;}
.x0_c00384{left:0.000000px;}
.x1c_c00384{left:120.130800px;}
.x7_c00384{left:121.606800px;}
.x3_c00384{left:123.675000px;}
.x1_c00384{left:125.205000px;}
.x4_c00384{left:155.835000px;}
.x1b_c00384{left:173.325000px;}
.x13_c00384{left:174.493200px;}
.x6_c00384{left:176.010000px;}
.x2_c00384{left:177.645000px;}
.x1d_c00384{left:206.445000px;}
.x5_c00384{left:209.280000px;}
.xa_c00384{left:247.110000px;}
.x1e_c00384{left:254.400000px;}
.xb_c00384{left:271.695000px;}
.x1f_c00384{left:284.790000px;}
.xc_c00384{left:295.680000px;}
.x14_c00384{left:317.490000px;}
.xd_c00384{left:326.310000px;}
.xe_c00384{left:362.625000px;}
.xf_c00384{left:399.105000px;}
.x22_c00384{left:424.995000px;}
.x10_c00384{left:436.275000px;}
.x15_c00384{left:446.925000px;}
.x11_c00384{left:466.620000px;}
.x16_c00384{left:468.675000px;}
.x19_c00384{left:476.445000px;}
.x12_c00384{left:485.355000px;}
.x18_c00384{left:489.690000px;}
.x1a_c00384{left:504.150000px;}
.x20_c00384{left:506.175000px;}
.x8_c00384{left:567.255000px;}
.x21_c00384{left:569.730000px;}
.x9_c00384{left:596.490000px;}
.x17_c00384{left:715.800000px;}
@media print{
.v2_c00384{vertical-align:-25.659525pt;}
.v0_c00384{vertical-align:0.000000pt;}
.v1_c00384{vertical-align:25.653333pt;}
.ls87_c00384{letter-spacing:-2.277333pt;}
.ls7f_c00384{letter-spacing:-2.186240pt;}
.ls5d_c00384{letter-spacing:-2.165333pt;}
.ls7d_c00384{letter-spacing:-2.091093pt;}
.ls58_c00384{letter-spacing:-2.090667pt;}
.ls86_c00384{letter-spacing:-2.056107pt;}
.ls91_c00384{letter-spacing:-2.053333pt;}
.ls78_c00384{letter-spacing:-1.985920pt;}
.ls71_c00384{letter-spacing:-1.571413pt;}
.ls84_c00384{letter-spacing:-1.565227pt;}
.ls65_c00384{letter-spacing:-1.466240pt;}
.ls8a_c00384{letter-spacing:-1.422933pt;}
.ls8d_c00384{letter-spacing:-1.361067pt;}
.ls83_c00384{letter-spacing:-1.255893pt;}
.ls7e_c00384{letter-spacing:-1.150720pt;}
.ls81_c00384{letter-spacing:-1.057920pt;}
.ls76_c00384{letter-spacing:-0.946560pt;}
.ls7c_c00384{letter-spacing:-0.785707pt;}
.ls80_c00384{letter-spacing:-0.760960pt;}
.ls7b_c00384{letter-spacing:-0.723840pt;}
.ls63_c00384{letter-spacing:-0.705280pt;}
.ls75_c00384{letter-spacing:-0.692907pt;}
.ls73_c00384{letter-spacing:-0.612480pt;}
.ls8e_c00384{letter-spacing:-0.513493pt;}
.ls6e_c00384{letter-spacing:-0.501120pt;}
.ls89_c00384{letter-spacing:-0.488747pt;}
.ls7a_c00384{letter-spacing:-0.482560pt;}
.ls74_c00384{letter-spacing:-0.445440pt;}
.ls62_c00384{letter-spacing:-0.433067pt;}
.ls88_c00384{letter-spacing:-0.414507pt;}
.ls77_c00384{letter-spacing:-0.402133pt;}
.ls5a_c00384{letter-spacing:-0.358827pt;}
.ls85_c00384{letter-spacing:-0.344853pt;}
.ls6d_c00384{letter-spacing:-0.340267pt;}
.ls6c_c00384{letter-spacing:-0.321707pt;}
.ls82_c00384{letter-spacing:-0.284587pt;}
.ls60_c00384{letter-spacing:-0.197973pt;}
.ls68_c00384{letter-spacing:-0.185600pt;}
.ls79_c00384{letter-spacing:-0.167040pt;}
.ls92_c00384{letter-spacing:-0.160853pt;}
.ls93_c00384{letter-spacing:-0.142293pt;}
.ls8b_c00384{letter-spacing:-0.105173pt;}
.ls6b_c00384{letter-spacing:-0.098987pt;}
.ls64_c00384{letter-spacing:-0.092800pt;}
.ls67_c00384{letter-spacing:-0.086613pt;}
.ls66_c00384{letter-spacing:-0.080427pt;}
.ls61_c00384{letter-spacing:-0.068053pt;}
.ls5e_c00384{letter-spacing:-0.030933pt;}
.ls5f_c00384{letter-spacing:-0.018560pt;}
.ls59_c00384{letter-spacing:0.000000pt;}
.lsa_c00384{letter-spacing:0.006187pt;}
.ls12_c00384{letter-spacing:0.030933pt;}
.ls4f_c00384{letter-spacing:0.055680pt;}
.ls27_c00384{letter-spacing:0.080427pt;}
.ls25_c00384{letter-spacing:0.086613pt;}
.ls9_c00384{letter-spacing:0.098987pt;}
.ls8_c00384{letter-spacing:0.123733pt;}
.ls70_c00384{letter-spacing:0.129920pt;}
.ls3_c00384{letter-spacing:0.160853pt;}
.ls28_c00384{letter-spacing:0.167040pt;}
.ls44_c00384{letter-spacing:0.173227pt;}
.ls1b_c00384{letter-spacing:0.179413pt;}
.ls7_c00384{letter-spacing:0.197973pt;}
.ls2d_c00384{letter-spacing:0.222720pt;}
.lsf_c00384{letter-spacing:0.228907pt;}
.ls4_c00384{letter-spacing:0.235093pt;}
.ls22_c00384{letter-spacing:0.241280pt;}
.ls2e_c00384{letter-spacing:0.247467pt;}
.ls3f_c00384{letter-spacing:0.253653pt;}
.ls47_c00384{letter-spacing:0.259840pt;}
.ls43_c00384{letter-spacing:0.272213pt;}
.ls6f_c00384{letter-spacing:0.284587pt;}
.ls51_c00384{letter-spacing:0.296960pt;}
.ls2c_c00384{letter-spacing:0.303147pt;}
.ls1_c00384{letter-spacing:0.312800pt;}
.lsc_c00384{letter-spacing:0.321707pt;}
.ls0_c00384{letter-spacing:0.325067pt;}
.ls18_c00384{letter-spacing:0.340267pt;}
.ls8c_c00384{letter-spacing:0.395947pt;}
.ls5c_c00384{letter-spacing:0.402133pt;}
.ls1e_c00384{letter-spacing:0.408320pt;}
.lsd_c00384{letter-spacing:0.433067pt;}
.ls19_c00384{letter-spacing:0.439253pt;}
.ls4c_c00384{letter-spacing:0.451627pt;}
.ls36_c00384{letter-spacing:0.457813pt;}
.ls37_c00384{letter-spacing:0.464000pt;}
.ls23_c00384{letter-spacing:0.470187pt;}
.ls32_c00384{letter-spacing:0.476373pt;}
.lse_c00384{letter-spacing:0.482560pt;}
.ls1d_c00384{letter-spacing:0.488747pt;}
.ls31_c00384{letter-spacing:0.507307pt;}
.ls14_c00384{letter-spacing:0.513493pt;}
.ls26_c00384{letter-spacing:0.519680pt;}
.ls15_c00384{letter-spacing:0.525867pt;}
.ls56_c00384{letter-spacing:0.532053pt;}
.ls3d_c00384{letter-spacing:0.544427pt;}
.ls17_c00384{letter-spacing:0.550613pt;}
.ls29_c00384{letter-spacing:0.556800pt;}
.lsb_c00384{letter-spacing:0.569173pt;}
.ls4b_c00384{letter-spacing:0.607200pt;}
.ls1c_c00384{letter-spacing:0.631040pt;}
.ls30_c00384{letter-spacing:0.649600pt;}
.ls1a_c00384{letter-spacing:0.655787pt;}
.ls10_c00384{letter-spacing:0.661973pt;}
.ls2a_c00384{letter-spacing:0.680533pt;}
.ls45_c00384{letter-spacing:0.686720pt;}
.ls53_c00384{letter-spacing:0.730027pt;}
.ls4d_c00384{letter-spacing:0.736000pt;}
.ls13_c00384{letter-spacing:0.791893pt;}
.ls94_c00384{letter-spacing:0.804907pt;}
.ls24_c00384{letter-spacing:0.822827pt;}
.ls16_c00384{letter-spacing:0.828000pt;}
.ls4a_c00384{letter-spacing:0.846400pt;}
.ls20_c00384{letter-spacing:0.847573pt;}
.ls72_c00384{letter-spacing:0.897067pt;}
.ls57_c00384{letter-spacing:0.909440pt;}
.ls11_c00384{letter-spacing:0.920000pt;}
.ls2_c00384{letter-spacing:0.921813pt;}
.ls50_c00384{letter-spacing:0.946560pt;}
.ls33_c00384{letter-spacing:0.965120pt;}
.ls48_c00384{letter-spacing:0.987467pt;}
.ls6_c00384{letter-spacing:0.989867pt;}
.ls4e_c00384{letter-spacing:1.008427pt;}
.ls34_c00384{letter-spacing:1.033173pt;}
.ls42_c00384{letter-spacing:1.039360pt;}
.ls6a_c00384{letter-spacing:1.045547pt;}
.ls38_c00384{letter-spacing:1.101227pt;}
.ls52_c00384{letter-spacing:1.119787pt;}
.ls3c_c00384{letter-spacing:1.144533pt;}
.ls1f_c00384{letter-spacing:1.441493pt;}
.ls2f_c00384{letter-spacing:1.460053pt;}
.ls39_c00384{letter-spacing:1.558953pt;}
.ls46_c00384{letter-spacing:1.594667pt;}
.ls54_c00384{letter-spacing:1.602347pt;}
.ls3e_c00384{letter-spacing:1.717333pt;}
.ls21_c00384{letter-spacing:1.763200pt;}
.ls55_c00384{letter-spacing:1.836267pt;}
.ls41_c00384{letter-spacing:1.889067pt;}
.ls35_c00384{letter-spacing:1.924053pt;}
.ls3b_c00384{letter-spacing:2.060160pt;}
.ls5_c00384{letter-spacing:2.171520pt;}
.ls49_c00384{letter-spacing:2.307627pt;}
.ls3a_c00384{letter-spacing:2.474667pt;}
.ls5b_c00384{letter-spacing:2.524160pt;}
.ls2b_c00384{letter-spacing:2.567467pt;}
.ls8f_c00384{letter-spacing:2.593067pt;}
.ls40_c00384{letter-spacing:2.766133pt;}
.ls90_c00384{letter-spacing:2.933333pt;}
.ls69_c00384{letter-spacing:3.093333pt;}
.ws1_c00384{word-spacing:-15.466667pt;}
.ws3_c00384{word-spacing:0.000000pt;}
.ws0_c00384{word-spacing:5.708533pt;}
.ws2_c00384{word-spacing:10.061333pt;}
._14_c00384{margin-left:-7.666667pt;}
._12_c00384{margin-left:-5.574400pt;}
._13_c00384{margin-left:-4.323307pt;}
._10_c00384{margin-left:-2.988160pt;}
._3_c00384{margin-left:-1.238827pt;}
._1_c00384{width:0.897067pt;}
._6_c00384{width:2.578133pt;}
._2_c00384{width:4.305920pt;}
._4_c00384{width:5.335040pt;}
._0_c00384{width:7.126933pt;}
._8_c00384{width:8.327253pt;}
._7_c00384{width:9.861653pt;}
._5_c00384{width:11.028907pt;}
._e_c00384{width:12.534187pt;}
._d_c00384{width:13.662080pt;}
._9_c00384{width:14.922240pt;}
._f_c00384{width:16.567893pt;}
._a_c00384{width:19.017813pt;}
._c_c00384{width:20.657280pt;}
._b_c00384{width:22.432853pt;}
._11_c00384{width:25.179733pt;}
.fs3_c00384{font-size:42.133867pt;}
.fs6_c00384{font-size:47.360000pt;}
.fs7_c00384{font-size:52.266667pt;}
.fs5_c00384{font-size:58.666667pt;}
.fs0_c00384{font-size:59.733333pt;}
.fs1_c00384{font-size:61.333333pt;}
.fs2_c00384{font-size:61.866667pt;}
.fs4_c00384{font-size:65.066667pt;}
.y0_c00384{bottom:0.000000pt;}
.y1d_c00384{bottom:57.920000pt;}
.y1c_c00384{bottom:111.680000pt;}
.y1b_c00384{bottom:138.895467pt;}
.y1a_c00384{bottom:166.720000pt;}
.y19_c00384{bottom:221.453333pt;}
.y18_c00384{bottom:248.653333pt;}
.y17_c00384{bottom:276.493333pt;}
.y16_c00384{bottom:330.893333pt;}
.y15_c00384{bottom:358.733333pt;}
.y14_c00384{bottom:358.737067pt;}
.y13_c00384{bottom:413.133333pt;}
.y12_c00384{bottom:440.973333pt;}
.y11_c00384{bottom:495.694400pt;}
.y10_c00384{bottom:550.400000pt;}
.ye_c00384{bottom:578.235733pt;}
.yf_c00384{bottom:578.240000pt;}
.yd_c00384{bottom:605.441600pt;}
.yc_c00384{bottom:633.281600pt;}
.yb_c00384{bottom:660.812267pt;}
.ya_c00384{bottom:688.002667pt;}
.y8_c00384{bottom:715.532267pt;}
.y9_c00384{bottom:715.533333pt;}
.y7_c00384{bottom:743.047467pt;}
.y6_c00384{bottom:798.093333pt;}
.y5_c00384{bottom:852.796800pt;}
.y4_c00384{bottom:907.537067pt;}
.y3_c00384{bottom:961.933333pt;}
.y2_c00384{bottom:989.773333pt;}
.y1_c00384{bottom:1058.560000pt;}
.h8_c00384{height:31.541760pt;}
.h9_c00384{height:51.296875pt;}
.h7_c00384{height:57.578125pt;}
.h2_c00384{height:58.625000pt;}
.h3_c00384{height:60.718750pt;}
.h4_c00384{height:61.797567pt;}
.h6_c00384{height:63.859375pt;}
.h5_c00384{height:67.005419pt;}
.h1_c00384{height:1122.666667pt;}
.h0_c00384{height:1122.880000pt;}
.w1_c00384{width:793.333333pt;}
.w0_c00384{width:793.600000pt;}
.x0_c00384{left:0.000000pt;}
.x1c_c00384{left:106.782933pt;}
.x7_c00384{left:108.094933pt;}
.x3_c00384{left:109.933333pt;}
.x1_c00384{left:111.293333pt;}
.x4_c00384{left:138.520000pt;}
.x1b_c00384{left:154.066667pt;}
.x13_c00384{left:155.105067pt;}
.x6_c00384{left:156.453333pt;}
.x2_c00384{left:157.906667pt;}
.x1d_c00384{left:183.506667pt;}
.x5_c00384{left:186.026667pt;}
.xa_c00384{left:219.653333pt;}
.x1e_c00384{left:226.133333pt;}
.xb_c00384{left:241.506667pt;}
.x1f_c00384{left:253.146667pt;}
.xc_c00384{left:262.826667pt;}
.x14_c00384{left:282.213333pt;}
.xd_c00384{left:290.053333pt;}
.xe_c00384{left:322.333333pt;}
.xf_c00384{left:354.760000pt;}
.x22_c00384{left:377.773333pt;}
.x10_c00384{left:387.800000pt;}
.x15_c00384{left:397.266667pt;}
.x11_c00384{left:414.773333pt;}
.x16_c00384{left:416.600000pt;}
.x19_c00384{left:423.506667pt;}
.x12_c00384{left:431.426667pt;}
.x18_c00384{left:435.280000pt;}
.x1a_c00384{left:448.133333pt;}
.x20_c00384{left:449.933333pt;}
.x8_c00384{left:504.226667pt;}
.x21_c00384{left:506.426667pt;}
.x9_c00384{left:530.213333pt;}
.x17_c00384{left:636.266667pt;}
}





/* 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_c00385 {
    display:none;
  }
  .loading-indicator_c00385.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00385 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_c00385 { 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_c00385" -> "#page-container .classname_c00385")
 */
.pf_c00385 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00385 { /* 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_c00385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00385 { /* 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_c00385 { /* 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_c00385 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00385 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00385 {overflow:visible;}
  }
}
.c_c00385 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00385 { /* 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_c00385:after { /* webkit #35443 */
  content: '';
}
.t_c00385:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00385 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 */
}
.__c00385 { /* 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_c00385 { /* info for Javascript */
  display:none;
}
.l_c00385 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00385 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00385 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00385: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_c00385 {
    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_c00385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00385.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_c00385 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00385{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00385;src:url('chunks/assets/font_71ac224afbab6333442488ef.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.311035;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_c00385;src:url('chunks/assets/font_6da84c9f4c3a0f8fbe97f1ff.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.284668;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_c00385;src:url('chunks/assets/font_4cdbe9b7d979d58e2ce9815f.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:1.284180;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_c00385;src:url('chunks/assets/font_2a84daaf5ce83d7bf762fbb4.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:0.666000;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;}
.m6_c00385{transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);}
.m5_c00385{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m4_c00385{transform:matrix(0.215989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215989,0.000000,0.000000,0.250000,0,0);}
.m0_c00385{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m3_c00385{transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);}
.m1_c00385{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);}
.m2_c00385{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls69_c00385{letter-spacing:-2.394000px;}
.ls60_c00385{letter-spacing:-2.310000px;}
.ls7c_c00385{letter-spacing:-2.134080px;}
.ls78_c00385{letter-spacing:-1.963080px;}
.ls71_c00385{letter-spacing:-1.833120px;}
.ls87_c00385{letter-spacing:-1.814400px;}
.ls75_c00385{letter-spacing:-1.812600px;}
.ls70_c00385{letter-spacing:-1.682640px;}
.ls83_c00385{letter-spacing:-1.197000px;}
.ls66_c00385{letter-spacing:-0.684000px;}
.ls86_c00385{letter-spacing:-0.670320px;}
.ls6f_c00385{letter-spacing:-0.622440px;}
.ls62_c00385{letter-spacing:-0.526680px;}
.ls76_c00385{letter-spacing:-0.478800px;}
.ls6b_c00385{letter-spacing:-0.458280px;}
.ls6e_c00385{letter-spacing:-0.376200px;}
.ls7f_c00385{letter-spacing:-0.294120px;}
.ls7d_c00385{letter-spacing:-0.246420px;}
.ls74_c00385{letter-spacing:-0.212040px;}
.ls79_c00385{letter-spacing:-0.171000px;}
.ls6c_c00385{letter-spacing:-0.109440px;}
.ls7b_c00385{letter-spacing:-0.102600px;}
.ls82_c00385{letter-spacing:-0.054720px;}
.ls6a_c00385{letter-spacing:-0.041040px;}
.ls7a_c00385{letter-spacing:-0.034200px;}
.ls67_c00385{letter-spacing:-0.010800px;}
.ls61_c00385{letter-spacing:0.000000px;}
.ls5f_c00385{letter-spacing:0.034200px;}
.ls48_c00385{letter-spacing:0.068400px;}
.lse_c00385{letter-spacing:0.075240px;}
.lsc_c00385{letter-spacing:0.082080px;}
.ls4_c00385{letter-spacing:0.095760px;}
.ls5a_c00385{letter-spacing:0.116280px;}
.ls73_c00385{letter-spacing:0.123120px;}
.ls3b_c00385{letter-spacing:0.136800px;}
.ls56_c00385{letter-spacing:0.143640px;}
.ls58_c00385{letter-spacing:0.157320px;}
.ls7e_c00385{letter-spacing:0.198360px;}
.ls4c_c00385{letter-spacing:0.205200px;}
.ls2b_c00385{letter-spacing:0.212040px;}
.ls85_c00385{letter-spacing:0.218880px;}
.ls72_c00385{letter-spacing:0.259920px;}
.ls11_c00385{letter-spacing:0.266760px;}
.ls12_c00385{letter-spacing:0.280800px;}
.ls51_c00385{letter-spacing:0.300960px;}
.lsd_c00385{letter-spacing:0.321480px;}
.ls24_c00385{letter-spacing:0.342000px;}
.ls44_c00385{letter-spacing:0.348840px;}
.ls2f_c00385{letter-spacing:0.369360px;}
.ls63_c00385{letter-spacing:0.389880px;}
.ls4b_c00385{letter-spacing:0.410400px;}
.ls49_c00385{letter-spacing:0.424080px;}
.ls1a_c00385{letter-spacing:0.444600px;}
.ls5b_c00385{letter-spacing:0.478800px;}
.ls17_c00385{letter-spacing:0.485640px;}
.ls35_c00385{letter-spacing:0.499320px;}
.ls4e_c00385{letter-spacing:0.513000px;}
.ls2a_c00385{letter-spacing:0.519840px;}
.ls41_c00385{letter-spacing:0.533520px;}
.ls1d_c00385{letter-spacing:0.540360px;}
.ls15_c00385{letter-spacing:0.547200px;}
.ls25_c00385{letter-spacing:0.554040px;}
.ls14_c00385{letter-spacing:0.567720px;}
.ls3c_c00385{letter-spacing:0.574560px;}
.ls84_c00385{letter-spacing:0.581400px;}
.ls2_c00385{letter-spacing:0.601920px;}
.ls19_c00385{letter-spacing:0.615600px;}
.ls6d_c00385{letter-spacing:0.642960px;}
.ls23_c00385{letter-spacing:0.663480px;}
.lsf_c00385{letter-spacing:0.670320px;}
.ls52_c00385{letter-spacing:0.677160px;}
.ls77_c00385{letter-spacing:0.684000px;}
.ls4a_c00385{letter-spacing:0.690840px;}
.ls46_c00385{letter-spacing:0.711360px;}
.ls9_c00385{letter-spacing:0.718200px;}
.ls22_c00385{letter-spacing:0.731880px;}
.ls59_c00385{letter-spacing:0.738720px;}
.ls27_c00385{letter-spacing:0.752400px;}
.ls36_c00385{letter-spacing:0.759240px;}
.ls32_c00385{letter-spacing:0.779760px;}
.ls2d_c00385{letter-spacing:0.786600px;}
.ls8_c00385{letter-spacing:0.793440px;}
.lsb_c00385{letter-spacing:0.807120px;}
.ls1f_c00385{letter-spacing:0.813960px;}
.ls3_c00385{letter-spacing:0.827640px;}
.ls55_c00385{letter-spacing:0.848160px;}
.ls57_c00385{letter-spacing:0.855000px;}
.ls42_c00385{letter-spacing:0.868680px;}
.ls30_c00385{letter-spacing:0.875520px;}
.ls1c_c00385{letter-spacing:0.882360px;}
.ls5_c00385{letter-spacing:0.896040px;}
.ls10_c00385{letter-spacing:0.916560px;}
.ls50_c00385{letter-spacing:0.923400px;}
.ls1_c00385{letter-spacing:0.943920px;}
.ls5e_c00385{letter-spacing:0.957600px;}
.ls31_c00385{letter-spacing:0.964440px;}
.ls20_c00385{letter-spacing:0.971280px;}
.ls1b_c00385{letter-spacing:0.978120px;}
.ls2e_c00385{letter-spacing:0.998640px;}
.ls4f_c00385{letter-spacing:1.012320px;}
.ls80_c00385{letter-spacing:1.032840px;}
.ls28_c00385{letter-spacing:1.046520px;}
.ls0_c00385{letter-spacing:1.060200px;}
.ls4d_c00385{letter-spacing:1.067040px;}
.ls81_c00385{letter-spacing:1.128600px;}
.ls5d_c00385{letter-spacing:1.138860px;}
.ls45_c00385{letter-spacing:1.149120px;}
.ls38_c00385{letter-spacing:1.158840px;}
.ls39_c00385{letter-spacing:1.178820px;}
.ls1e_c00385{letter-spacing:1.203840px;}
.ls47_c00385{letter-spacing:1.205460px;}
.ls33_c00385{letter-spacing:1.224360px;}
.ls43_c00385{letter-spacing:1.261080px;}
.ls13_c00385{letter-spacing:1.299600px;}
.ls26_c00385{letter-spacing:1.305360px;}
.ls40_c00385{letter-spacing:1.333800px;}
.ls3a_c00385{letter-spacing:1.347480px;}
.ls53_c00385{letter-spacing:1.402200px;}
.ls3e_c00385{letter-spacing:1.415880px;}
.ls54_c00385{letter-spacing:1.422720px;}
.ls5c_c00385{letter-spacing:1.445220px;}
.ls6_c00385{letter-spacing:1.648440px;}
.ls21_c00385{letter-spacing:1.698300px;}
.ls29_c00385{letter-spacing:1.710000px;}
.ls2c_c00385{letter-spacing:1.716840px;}
.ls16_c00385{letter-spacing:1.737360px;}
.ls3f_c00385{letter-spacing:1.744200px;}
.ls37_c00385{letter-spacing:1.757880px;}
.ls65_c00385{letter-spacing:1.792080px;}
.ls7_c00385{letter-spacing:2.154600px;}
.ls3d_c00385{letter-spacing:2.236680px;}
.ls34_c00385{letter-spacing:2.291400px;}
.ls18_c00385{letter-spacing:2.715480px;}
.lsa_c00385{letter-spacing:2.749680px;}
.ls68_c00385{letter-spacing:2.961720px;}
.ls64_c00385{letter-spacing:3.420000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{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__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00385{word-spacing:0.000000px;}
.ws0_c00385{word-spacing:0.530400px;}
.ws1_c00385{word-spacing:2.019000px;}
.ws2_c00385{word-spacing:2.711100px;}
.ws3_c00385{word-spacing:11.067180px;}
._13_c00385{margin-left:-6.176520px;}
._3_c00385{margin-left:-4.350240px;}
._0_c00385{margin-left:-2.428200px;}
._10_c00385{margin-left:-1.094400px;}
._11_c00385{width:1.101240px;}
._1_c00385{width:2.147760px;}
._2_c00385{width:3.160080px;}
._5_c00385{width:4.856400px;}
._4_c00385{width:6.429600px;}
._6_c00385{width:8.290080px;}
._7_c00385{width:10.653480px;}
._12_c00385{width:12.517200px;}
._14_c00385{width:14.225760px;}
._f_c00385{width:15.814080px;}
._19_c00385{width:17.930880px;}
._1a_c00385{width:20.186280px;}
._18_c00385{width:31.505040px;}
._15_c00385{width:32.927760px;}
._16_c00385{width:33.994800px;}
._17_c00385{width:35.485920px;}
._1c_c00385{width:37.806960px;}
._1d_c00385{width:39.877200px;}
._1b_c00385{width:43.103760px;}
._1f_c00385{width:44.460000px;}
._1e_c00385{width:46.997640px;}
._b_c00385{width:48.952800px;}
._d_c00385{width:74.210400px;}
._a_c00385{width:117.136800px;}
._8_c00385{width:369.705600px;}
._c_c00385{width:379.036800px;}
._9_c00385{width:409.579200px;}
._e_c00385{width:763.207200px;}
.fc0_c00385{color:transparent;}
.fs3_c00385{font-size:21.600000px;}
.fs5_c00385{font-size:51.840000px;}
.fs7_c00385{font-size:57.600000px;}
.fs2_c00385{font-size:61.200000px;}
.fs0_c00385{font-size:66.000000px;}
.fs4_c00385{font-size:66.600000px;}
.fs6_c00385{font-size:67.800000px;}
.fs1_c00385{font-size:68.400000px;}
.y0_c00385{bottom:0.000000px;}
.y19_c00385{bottom:67.695000px;}
.y18_c00385{bottom:249.143100px;}
.y17_c00385{bottom:310.703100px;}
.y16_c00385{bottom:341.303100px;}
.y15_c00385{bottom:371.895000px;}
.y14_c00385{bottom:402.486900px;}
.y13_c00385{bottom:433.455000px;}
.y12_c00385{bottom:495.015000px;}
.y11_c00385{bottom:556.938900px;}
.y10_c00385{bottom:619.205100px;}
.yf_c00385{bottom:680.406000px;}
.ye_c00385{bottom:711.015000px;}
.yd_c00385{bottom:772.560000px;}
.yc_c00385{bottom:834.128100px;}
.yb_c00385{bottom:864.720000px;}
.ya_c00385{bottom:864.726900px;}
.y9_c00385{bottom:895.695000px;}
.y8_c00385{bottom:957.600000px;}
.y7_c00385{bottom:1020.231900px;}
.y6_c00385{bottom:1051.200000px;}
.y5_c00385{bottom:1077.495000px;}
.y3_c00385{bottom:1082.166900px;}
.y4_c00385{bottom:1082.175000px;}
.y2_c00385{bottom:1113.135000px;}
.y1_c00385{bottom:1188.375000px;}
.h5_c00385{height:21.199219px;}
.h6_c00385{height:34.525440px;}
.h8_c00385{height:56.531250px;}
.h2_c00385{height:66.515625px;}
.h3_c00385{height:67.130859px;}
.h4_c00385{height:67.163259px;}
.h7_c00385{height:68.309288px;}
.h1_c00385{height:1263.000000px;}
.h0_c00385{height:1263.240000px;}
.w1_c00385{width:892.500000px;}
.w0_c00385{width:892.800000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:123.405000px;}
.xc_c00385{left:124.587300px;}
.x8_c00385{left:176.910000px;}
.x6_c00385{left:232.410000px;}
.x7_c00385{left:250.035000px;}
.xf_c00385{left:424.275000px;}
.xd_c00385{left:431.655000px;}
.x9_c00385{left:449.550000px;}
.xa_c00385{left:481.530000px;}
.xe_c00385{left:507.795000px;}
.x2_c00385{left:559.710000px;}
.x4_c00385{left:570.870000px;}
.x3_c00385{left:582.810000px;}
.x5_c00385{left:594.720000px;}
.xb_c00385{left:686.445000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls69_c00385{letter-spacing:-2.128000pt;}
.ls60_c00385{letter-spacing:-2.053333pt;}
.ls7c_c00385{letter-spacing:-1.896960pt;}
.ls78_c00385{letter-spacing:-1.744960pt;}
.ls71_c00385{letter-spacing:-1.629440pt;}
.ls87_c00385{letter-spacing:-1.612800pt;}
.ls75_c00385{letter-spacing:-1.611200pt;}
.ls70_c00385{letter-spacing:-1.495680pt;}
.ls83_c00385{letter-spacing:-1.064000pt;}
.ls66_c00385{letter-spacing:-0.608000pt;}
.ls86_c00385{letter-spacing:-0.595840pt;}
.ls6f_c00385{letter-spacing:-0.553280pt;}
.ls62_c00385{letter-spacing:-0.468160pt;}
.ls76_c00385{letter-spacing:-0.425600pt;}
.ls6b_c00385{letter-spacing:-0.407360pt;}
.ls6e_c00385{letter-spacing:-0.334400pt;}
.ls7f_c00385{letter-spacing:-0.261440pt;}
.ls7d_c00385{letter-spacing:-0.219040pt;}
.ls74_c00385{letter-spacing:-0.188480pt;}
.ls79_c00385{letter-spacing:-0.152000pt;}
.ls6c_c00385{letter-spacing:-0.097280pt;}
.ls7b_c00385{letter-spacing:-0.091200pt;}
.ls82_c00385{letter-spacing:-0.048640pt;}
.ls6a_c00385{letter-spacing:-0.036480pt;}
.ls7a_c00385{letter-spacing:-0.030400pt;}
.ls67_c00385{letter-spacing:-0.009600pt;}
.ls61_c00385{letter-spacing:0.000000pt;}
.ls5f_c00385{letter-spacing:0.030400pt;}
.ls48_c00385{letter-spacing:0.060800pt;}
.lse_c00385{letter-spacing:0.066880pt;}
.lsc_c00385{letter-spacing:0.072960pt;}
.ls4_c00385{letter-spacing:0.085120pt;}
.ls5a_c00385{letter-spacing:0.103360pt;}
.ls73_c00385{letter-spacing:0.109440pt;}
.ls3b_c00385{letter-spacing:0.121600pt;}
.ls56_c00385{letter-spacing:0.127680pt;}
.ls58_c00385{letter-spacing:0.139840pt;}
.ls7e_c00385{letter-spacing:0.176320pt;}
.ls4c_c00385{letter-spacing:0.182400pt;}
.ls2b_c00385{letter-spacing:0.188480pt;}
.ls85_c00385{letter-spacing:0.194560pt;}
.ls72_c00385{letter-spacing:0.231040pt;}
.ls11_c00385{letter-spacing:0.237120pt;}
.ls12_c00385{letter-spacing:0.249600pt;}
.ls51_c00385{letter-spacing:0.267520pt;}
.lsd_c00385{letter-spacing:0.285760pt;}
.ls24_c00385{letter-spacing:0.304000pt;}
.ls44_c00385{letter-spacing:0.310080pt;}
.ls2f_c00385{letter-spacing:0.328320pt;}
.ls63_c00385{letter-spacing:0.346560pt;}
.ls4b_c00385{letter-spacing:0.364800pt;}
.ls49_c00385{letter-spacing:0.376960pt;}
.ls1a_c00385{letter-spacing:0.395200pt;}
.ls5b_c00385{letter-spacing:0.425600pt;}
.ls17_c00385{letter-spacing:0.431680pt;}
.ls35_c00385{letter-spacing:0.443840pt;}
.ls4e_c00385{letter-spacing:0.456000pt;}
.ls2a_c00385{letter-spacing:0.462080pt;}
.ls41_c00385{letter-spacing:0.474240pt;}
.ls1d_c00385{letter-spacing:0.480320pt;}
.ls15_c00385{letter-spacing:0.486400pt;}
.ls25_c00385{letter-spacing:0.492480pt;}
.ls14_c00385{letter-spacing:0.504640pt;}
.ls3c_c00385{letter-spacing:0.510720pt;}
.ls84_c00385{letter-spacing:0.516800pt;}
.ls2_c00385{letter-spacing:0.535040pt;}
.ls19_c00385{letter-spacing:0.547200pt;}
.ls6d_c00385{letter-spacing:0.571520pt;}
.ls23_c00385{letter-spacing:0.589760pt;}
.lsf_c00385{letter-spacing:0.595840pt;}
.ls52_c00385{letter-spacing:0.601920pt;}
.ls77_c00385{letter-spacing:0.608000pt;}
.ls4a_c00385{letter-spacing:0.614080pt;}
.ls46_c00385{letter-spacing:0.632320pt;}
.ls9_c00385{letter-spacing:0.638400pt;}
.ls22_c00385{letter-spacing:0.650560pt;}
.ls59_c00385{letter-spacing:0.656640pt;}
.ls27_c00385{letter-spacing:0.668800pt;}
.ls36_c00385{letter-spacing:0.674880pt;}
.ls32_c00385{letter-spacing:0.693120pt;}
.ls2d_c00385{letter-spacing:0.699200pt;}
.ls8_c00385{letter-spacing:0.705280pt;}
.lsb_c00385{letter-spacing:0.717440pt;}
.ls1f_c00385{letter-spacing:0.723520pt;}
.ls3_c00385{letter-spacing:0.735680pt;}
.ls55_c00385{letter-spacing:0.753920pt;}
.ls57_c00385{letter-spacing:0.760000pt;}
.ls42_c00385{letter-spacing:0.772160pt;}
.ls30_c00385{letter-spacing:0.778240pt;}
.ls1c_c00385{letter-spacing:0.784320pt;}
.ls5_c00385{letter-spacing:0.796480pt;}
.ls10_c00385{letter-spacing:0.814720pt;}
.ls50_c00385{letter-spacing:0.820800pt;}
.ls1_c00385{letter-spacing:0.839040pt;}
.ls5e_c00385{letter-spacing:0.851200pt;}
.ls31_c00385{letter-spacing:0.857280pt;}
.ls20_c00385{letter-spacing:0.863360pt;}
.ls1b_c00385{letter-spacing:0.869440pt;}
.ls2e_c00385{letter-spacing:0.887680pt;}
.ls4f_c00385{letter-spacing:0.899840pt;}
.ls80_c00385{letter-spacing:0.918080pt;}
.ls28_c00385{letter-spacing:0.930240pt;}
.ls0_c00385{letter-spacing:0.942400pt;}
.ls4d_c00385{letter-spacing:0.948480pt;}
.ls81_c00385{letter-spacing:1.003200pt;}
.ls5d_c00385{letter-spacing:1.012320pt;}
.ls45_c00385{letter-spacing:1.021440pt;}
.ls38_c00385{letter-spacing:1.030080pt;}
.ls39_c00385{letter-spacing:1.047840pt;}
.ls1e_c00385{letter-spacing:1.070080pt;}
.ls47_c00385{letter-spacing:1.071520pt;}
.ls33_c00385{letter-spacing:1.088320pt;}
.ls43_c00385{letter-spacing:1.120960pt;}
.ls13_c00385{letter-spacing:1.155200pt;}
.ls26_c00385{letter-spacing:1.160320pt;}
.ls40_c00385{letter-spacing:1.185600pt;}
.ls3a_c00385{letter-spacing:1.197760pt;}
.ls53_c00385{letter-spacing:1.246400pt;}
.ls3e_c00385{letter-spacing:1.258560pt;}
.ls54_c00385{letter-spacing:1.264640pt;}
.ls5c_c00385{letter-spacing:1.284640pt;}
.ls6_c00385{letter-spacing:1.465280pt;}
.ls21_c00385{letter-spacing:1.509600pt;}
.ls29_c00385{letter-spacing:1.520000pt;}
.ls2c_c00385{letter-spacing:1.526080pt;}
.ls16_c00385{letter-spacing:1.544320pt;}
.ls3f_c00385{letter-spacing:1.550400pt;}
.ls37_c00385{letter-spacing:1.562560pt;}
.ls65_c00385{letter-spacing:1.592960pt;}
.ls7_c00385{letter-spacing:1.915200pt;}
.ls3d_c00385{letter-spacing:1.988160pt;}
.ls34_c00385{letter-spacing:2.036800pt;}
.ls18_c00385{letter-spacing:2.413760pt;}
.lsa_c00385{letter-spacing:2.444160pt;}
.ls68_c00385{letter-spacing:2.632640pt;}
.ls64_c00385{letter-spacing:3.040000pt;}
.ws4_c00385{word-spacing:0.000000pt;}
.ws0_c00385{word-spacing:0.471467pt;}
.ws1_c00385{word-spacing:1.794667pt;}
.ws2_c00385{word-spacing:2.409867pt;}
.ws3_c00385{word-spacing:9.837493pt;}
._13_c00385{margin-left:-5.490240pt;}
._3_c00385{margin-left:-3.866880pt;}
._0_c00385{margin-left:-2.158400pt;}
._10_c00385{margin-left:-0.972800pt;}
._11_c00385{width:0.978880pt;}
._1_c00385{width:1.909120pt;}
._2_c00385{width:2.808960pt;}
._5_c00385{width:4.316800pt;}
._4_c00385{width:5.715200pt;}
._6_c00385{width:7.368960pt;}
._7_c00385{width:9.469760pt;}
._12_c00385{width:11.126400pt;}
._14_c00385{width:12.645120pt;}
._f_c00385{width:14.056960pt;}
._19_c00385{width:15.938560pt;}
._1a_c00385{width:17.943360pt;}
._18_c00385{width:28.004480pt;}
._15_c00385{width:29.269120pt;}
._16_c00385{width:30.217600pt;}
._17_c00385{width:31.543040pt;}
._1c_c00385{width:33.606187pt;}
._1d_c00385{width:35.446400pt;}
._1b_c00385{width:38.314453pt;}
._1f_c00385{width:39.520000pt;}
._1e_c00385{width:41.775680pt;}
._b_c00385{width:43.513600pt;}
._d_c00385{width:65.964800pt;}
._a_c00385{width:104.121600pt;}
._8_c00385{width:328.627200pt;}
._c_c00385{width:336.921600pt;}
._9_c00385{width:364.070400pt;}
._e_c00385{width:678.406400pt;}
.fs3_c00385{font-size:19.200000pt;}
.fs5_c00385{font-size:46.080000pt;}
.fs7_c00385{font-size:51.200000pt;}
.fs2_c00385{font-size:54.400000pt;}
.fs0_c00385{font-size:58.666667pt;}
.fs4_c00385{font-size:59.200000pt;}
.fs6_c00385{font-size:60.266667pt;}
.fs1_c00385{font-size:60.800000pt;}
.y0_c00385{bottom:0.000000pt;}
.y19_c00385{bottom:60.173333pt;}
.y18_c00385{bottom:221.460533pt;}
.y17_c00385{bottom:276.180533pt;}
.y16_c00385{bottom:303.380533pt;}
.y15_c00385{bottom:330.573333pt;}
.y14_c00385{bottom:357.766133pt;}
.y13_c00385{bottom:385.293333pt;}
.y12_c00385{bottom:440.013333pt;}
.y11_c00385{bottom:495.056800pt;}
.y10_c00385{bottom:550.404533pt;}
.yf_c00385{bottom:604.805333pt;}
.ye_c00385{bottom:632.013333pt;}
.yd_c00385{bottom:686.720000pt;}
.yc_c00385{bottom:741.447200pt;}
.yb_c00385{bottom:768.640000pt;}
.ya_c00385{bottom:768.646133pt;}
.y9_c00385{bottom:796.173333pt;}
.y8_c00385{bottom:851.200000pt;}
.y7_c00385{bottom:906.872800pt;}
.y6_c00385{bottom:934.400000pt;}
.y5_c00385{bottom:957.773333pt;}
.y3_c00385{bottom:961.926133pt;}
.y4_c00385{bottom:961.933333pt;}
.y2_c00385{bottom:989.453333pt;}
.y1_c00385{bottom:1056.333333pt;}
.h5_c00385{height:18.843750pt;}
.h6_c00385{height:30.689280pt;}
.h8_c00385{height:50.250000pt;}
.h2_c00385{height:59.125000pt;}
.h3_c00385{height:59.671875pt;}
.h4_c00385{height:59.700675pt;}
.h7_c00385{height:60.719367pt;}
.h1_c00385{height:1122.666667pt;}
.h0_c00385{height:1122.880000pt;}
.w1_c00385{width:793.333333pt;}
.w0_c00385{width:793.600000pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:109.693333pt;}
.xc_c00385{left:110.744267pt;}
.x8_c00385{left:157.253333pt;}
.x6_c00385{left:206.586667pt;}
.x7_c00385{left:222.253333pt;}
.xf_c00385{left:377.133333pt;}
.xd_c00385{left:383.693333pt;}
.x9_c00385{left:399.600000pt;}
.xa_c00385{left:428.026667pt;}
.xe_c00385{left:451.373333pt;}
.x2_c00385{left:497.520000pt;}
.x4_c00385{left:507.440000pt;}
.x3_c00385{left:518.053333pt;}
.x5_c00385{left:528.640000pt;}
.xb_c00385{left:610.173333pt;}
}





/* 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_c00386 {
    display:none;
  }
  .loading-indicator_c00386.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00386 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_c00386 { 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_c00386" -> "#page-container .classname_c00386")
 */
.pf_c00386 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00386 { /* 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_c00386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00386 { /* 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_c00386 { /* 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_c00386 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00386 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00386 {overflow:visible;}
  }
}
.c_c00386 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00386 { /* 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_c00386:after { /* webkit #35443 */
  content: '';
}
.t_c00386:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00386 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 */
}
.__c00386 { /* 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_c00386 { /* info for Javascript */
  display:none;
}
.l_c00386 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00386 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00386 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00386: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_c00386 {
    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_c00386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00386.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_c00386 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00386{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00386;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.311035;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_c00386;src:url('chunks/assets/font_3da25850d002fa4dfffdd511.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.284180;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_c00386;src:url('chunks/assets/font_a47d36c8b05a6906748bfb5e.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.284668;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_c00386;src:url('chunks/assets/font_cced5f06f470aeaca9a5ce04.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:1.284180;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_c00386;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff5_c00386{font-family:ff5_c00386;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;}
.m9_c00386{transform:matrix(0.206676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206676,0.000000,0.000000,0.250000,0,0);}
.m6_c00386{transform:matrix(0.207888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207888,0.000000,0.000000,0.250000,0,0);}
.m8_c00386{transform:matrix(0.209507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209507,0.000000,0.000000,0.250000,0,0);}
.m5_c00386{transform:matrix(0.233299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233299,0.000000,0.000000,0.250000,0,0);}
.ma_c00386{transform:matrix(0.237911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237911,0.000000,0.000000,0.250000,0,0);}
.m0_c00386{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.md_c00386{transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);}
.m3_c00386{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.mb_c00386{transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);}
.mc_c00386{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m1_c00386{transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);}
.m4_c00386{transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);}
.me_c00386{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m2_c00386{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);}
.m7_c00386{transform:matrix(0.251828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251828,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls29_c00386{letter-spacing:-2.604000px;}
.ls30_c00386{letter-spacing:-2.478000px;}
.ls2a_c00386{letter-spacing:-2.462640px;}
.ls79_c00386{letter-spacing:-2.436000px;}
.ls5f_c00386{letter-spacing:-2.415000px;}
.ls4c_c00386{letter-spacing:-2.378880px;}
.ls28_c00386{letter-spacing:-2.310000px;}
.ls7e_c00386{letter-spacing:-2.308080px;}
.ls6c_c00386{letter-spacing:-2.138160px;}
.ls6b_c00386{letter-spacing:-2.124000px;}
.ls37_c00386{letter-spacing:-1.996560px;}
.ls7b_c00386{letter-spacing:-1.874880px;}
.ls67_c00386{letter-spacing:-1.854960px;}
.ls2d_c00386{letter-spacing:-1.833720px;}
.ls5e_c00386{letter-spacing:-1.508040px;}
.ls7d_c00386{letter-spacing:-1.352280px;}
.ls57_c00386{letter-spacing:-1.323960px;}
.ls2f_c00386{letter-spacing:-1.231920px;}
.ls6f_c00386{letter-spacing:-1.210680px;}
.ls3c_c00386{letter-spacing:-1.182360px;}
.ls62_c00386{letter-spacing:-1.146960px;}
.ls52_c00386{letter-spacing:-1.139880px;}
.ls35_c00386{letter-spacing:-1.118640px;}
.ls54_c00386{letter-spacing:-1.111560px;}
.ls40_c00386{letter-spacing:-1.040760px;}
.ls39_c00386{letter-spacing:-1.012440px;}
.ls5a_c00386{letter-spacing:-0.955800px;}
.ls3a_c00386{letter-spacing:-0.941640px;}
.ls41_c00386{letter-spacing:-0.934560px;}
.ls38_c00386{letter-spacing:-0.885000px;}
.ls36_c00386{letter-spacing:-0.863760px;}
.ls3b_c00386{letter-spacing:-0.835440px;}
.ls2e_c00386{letter-spacing:-0.800040px;}
.ls49_c00386{letter-spacing:-0.792960px;}
.ls33_c00386{letter-spacing:-0.785880px;}
.ls5c_c00386{letter-spacing:-0.750480px;}
.ls65_c00386{letter-spacing:-0.743400px;}
.ls64_c00386{letter-spacing:-0.658440px;}
.ls44_c00386{letter-spacing:-0.651360px;}
.ls77_c00386{letter-spacing:-0.644280px;}
.ls60_c00386{letter-spacing:-0.637200px;}
.ls63_c00386{letter-spacing:-0.615960px;}
.ls4a_c00386{letter-spacing:-0.601800px;}
.ls76_c00386{letter-spacing:-0.594720px;}
.ls4d_c00386{letter-spacing:-0.587640px;}
.ls4f_c00386{letter-spacing:-0.566400px;}
.ls7a_c00386{letter-spacing:-0.552240px;}
.ls2b_c00386{letter-spacing:-0.538080px;}
.ls32_c00386{letter-spacing:-0.531000px;}
.ls55_c00386{letter-spacing:-0.516840px;}
.ls47_c00386{letter-spacing:-0.502680px;}
.ls71_c00386{letter-spacing:-0.474360px;}
.ls69_c00386{letter-spacing:-0.460200px;}
.ls7c_c00386{letter-spacing:-0.453120px;}
.ls72_c00386{letter-spacing:-0.446040px;}
.ls50_c00386{letter-spacing:-0.438960px;}
.ls2c_c00386{letter-spacing:-0.431880px;}
.ls5d_c00386{letter-spacing:-0.396480px;}
.ls3e_c00386{letter-spacing:-0.389400px;}
.ls46_c00386{letter-spacing:-0.382320px;}
.ls34_c00386{letter-spacing:-0.375240px;}
.ls6e_c00386{letter-spacing:-0.354000px;}
.ls75_c00386{letter-spacing:-0.311520px;}
.ls56_c00386{letter-spacing:-0.269040px;}
.ls48_c00386{letter-spacing:-0.240720px;}
.ls61_c00386{letter-spacing:-0.219480px;}
.ls4b_c00386{letter-spacing:-0.212400px;}
.ls73_c00386{letter-spacing:-0.205320px;}
.ls3d_c00386{letter-spacing:-0.198240px;}
.ls53_c00386{letter-spacing:-0.162840px;}
.ls66_c00386{letter-spacing:-0.155760px;}
.ls42_c00386{letter-spacing:-0.141600px;}
.ls6a_c00386{letter-spacing:-0.113280px;}
.ls58_c00386{letter-spacing:-0.106200px;}
.ls4e_c00386{letter-spacing:-0.084960px;}
.ls43_c00386{letter-spacing:-0.077880px;}
.ls6d_c00386{letter-spacing:-0.070800px;}
.ls5b_c00386{letter-spacing:-0.063720px;}
.ls3f_c00386{letter-spacing:-0.042480px;}
.ls70_c00386{letter-spacing:-0.021240px;}
.ls45_c00386{letter-spacing:-0.014160px;}
.ls31_c00386{letter-spacing:0.000000px;}
.ls68_c00386{letter-spacing:0.007080px;}
.ls15_c00386{letter-spacing:0.028320px;}
.ls51_c00386{letter-spacing:0.035400px;}
.ls13_c00386{letter-spacing:0.042480px;}
.lsa_c00386{letter-spacing:0.063720px;}
.lsf_c00386{letter-spacing:0.084960px;}
.ls19_c00386{letter-spacing:0.092040px;}
.ls80_c00386{letter-spacing:0.106200px;}
.lsb_c00386{letter-spacing:0.113280px;}
.ls1e_c00386{letter-spacing:0.120360px;}
.ls1f_c00386{letter-spacing:0.141600px;}
.ls1d_c00386{letter-spacing:0.155760px;}
.ls1a_c00386{letter-spacing:0.177000px;}
.ls16_c00386{letter-spacing:0.184080px;}
.ls17_c00386{letter-spacing:0.219480px;}
.ls25_c00386{letter-spacing:0.240720px;}
.ls7_c00386{letter-spacing:0.247800px;}
.lse_c00386{letter-spacing:0.254880px;}
.ls11_c00386{letter-spacing:0.290280px;}
.ls8_c00386{letter-spacing:0.382320px;}
.ls26_c00386{letter-spacing:0.417720px;}
.ls12_c00386{letter-spacing:0.488520px;}
.ls10_c00386{letter-spacing:0.601800px;}
.ls81_c00386{letter-spacing:0.622740px;}
.ls24_c00386{letter-spacing:0.642960px;}
.ls21_c00386{letter-spacing:0.672600px;}
.ls1c_c00386{letter-spacing:0.686760px;}
.lsd_c00386{letter-spacing:0.778800px;}
.ls27_c00386{letter-spacing:0.807120px;}
.ls22_c00386{letter-spacing:0.821280px;}
.ls1b_c00386{letter-spacing:0.841320px;}
.ls14_c00386{letter-spacing:0.870840px;}
.ls78_c00386{letter-spacing:0.927480px;}
.ls1_c00386{letter-spacing:0.950760px;}
.ls20_c00386{letter-spacing:1.019160px;}
.ls3_c00386{letter-spacing:1.087560px;}
.ls9_c00386{letter-spacing:1.193700px;}
.ls2_c00386{letter-spacing:1.197000px;}
.ls4_c00386{letter-spacing:1.203840px;}
.ls5_c00386{letter-spacing:1.224360px;}
.ls6_c00386{letter-spacing:1.239000px;}
.ls18_c00386{letter-spacing:1.313280px;}
.ls23_c00386{letter-spacing:1.338120px;}
.ls74_c00386{letter-spacing:1.401840px;}
.lsc_c00386{letter-spacing:2.088600px;}
.ls0_c00386{letter-spacing:2.414280px;}
.ls7f_c00386{letter-spacing:2.754120px;}
.ls59_c00386{letter-spacing:3.540000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{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__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00386{word-spacing:-0.677520px;}
.ws5_c00386{word-spacing:0.000000px;}
.ws3_c00386{word-spacing:2.445000px;}
.ws4_c00386{word-spacing:11.739840px;}
.ws0_c00386{word-spacing:12.502560px;}
.ws2_c00386{word-spacing:21.259200px;}
._5_c00386{margin-left:-4.749000px;}
._3_c00386{margin-left:-2.311680px;}
._4_c00386{width:1.032840px;}
._0_c00386{width:3.251520px;}
._2_c00386{width:4.566600px;}
._6_c00386{width:6.195000px;}
._1_c00386{width:7.200360px;}
._8_c00386{width:9.310200px;}
._7_c00386{width:11.162520px;}
._a_c00386{width:13.133400px;}
._f_c00386{width:14.252880px;}
._9_c00386{width:15.519360px;}
._b_c00386{width:18.223920px;}
._c_c00386{width:19.937280px;}
._d_c00386{width:21.523200px;}
._e_c00386{width:23.817120px;}
._10_c00386{width:25.318080px;}
.fc0_c00386{color:transparent;}
.fs5_c00386{font-size:54.600000px;}
.fs7_c00386{font-size:58.200000px;}
.fs0_c00386{font-size:66.000000px;}
.fs3_c00386{font-size:68.400000px;}
.fs4_c00386{font-size:69.000000px;}
.fs6_c00386{font-size:69.600000px;}
.fs2_c00386{font-size:70.800000px;}
.fs1_c00386{font-size:74.400000px;}
.y0_c00386{bottom:0.000000px;}
.y21_c00386{bottom:75.615006px;}
.y1f_c00386{bottom:164.531406px;}
.y20_c00386{bottom:164.535006px;}
.y1e_c00386{bottom:225.738006px;}
.y1d_c00386{bottom:257.775006px;}
.y1c_c00386{bottom:318.615006px;}
.y1b_c00386{bottom:349.920006px;}
.y1a_c00386{bottom:411.134706px;}
.y19_c00386{bottom:442.800006px;}
.y18_c00386{bottom:504.375006px;}
.y17_c00386{bottom:504.380406px;}
.y16_c00386{bottom:535.320006px;}
.y15_c00386{bottom:535.328706px;}
.y14_c00386{bottom:566.640006px;}
.y13_c00386{bottom:628.935006px;}
.y12_c00386{bottom:691.931706px;}
.y11_c00386{bottom:722.535006px;}
.y10_c00386{bottom:722.540406px;}
.ye_c00386{bottom:753.474006px;}
.yf_c00386{bottom:753.480006px;}
.yd_c00386{bottom:784.095006px;}
.yc_c00386{bottom:784.103106px;}
.yb_c00386{bottom:815.060406px;}
.ya_c00386{bottom:846.000006px;}
.y9_c00386{bottom:907.934406px;}
.y8_c00386{bottom:938.520006px;}
.y7_c00386{bottom:969.135006px;}
.y5_c00386{bottom:1031.414406px;}
.y6_c00386{bottom:1031.415006px;}
.y3_c00386{bottom:1092.968706px;}
.y4_c00386{bottom:1092.975006px;}
.y2_c00386{bottom:1124.280006px;}
.y1_c00386{bottom:1199.895006px;}
.h8_c00386{height:57.120117px;}
.h2_c00386{height:66.515625px;}
.h6_c00386{height:67.719727px;}
.h4_c00386{height:69.486328px;}
.h5_c00386{height:69.488728px;}
.h7_c00386{height:72.590625px;}
.h3_c00386{height:72.983203px;}
.h1_c00386{height:1263.000000px;}
.h0_c00386{height:1263.240006px;}
.w1_c00386{width:892.500000px;}
.w0_c00386{width:892.799998px;}
.x0_c00386{left:0.000000px;}
.x1b_c00386{left:117.711899px;}
.xe_c00386{left:119.347198px;}
.x1_c00386{left:123.044999px;}
.x17_c00386{left:171.884998px;}
.xb_c00386{left:173.339999px;}
.x4_c00386{left:175.214099px;}
.x22_c00386{left:222.314999px;}
.x11_c00386{left:227.354998px;}
.x5_c00386{left:243.164998px;}
.x2_c00386{left:246.794998px;}
.x6_c00386{left:271.364999px;}
.x12_c00386{left:284.939999px;}
.x24_c00386{left:345.044999px;}
.x13_c00386{left:346.409999px;}
.x7_c00386{left:347.924999px;}
.x14_c00386{left:369.914999px;}
.x23_c00386{left:373.694999px;}
.x8_c00386{left:375.629998px;}
.x3_c00386{left:398.024999px;}
.x25_c00386{left:422.834999px;}
.x18_c00386{left:429.764998px;}
.xf_c00386{left:436.124998px;}
.x1f_c00386{left:455.954998px;}
.x19_c00386{left:461.699998px;}
.x20_c00386{left:476.354998px;}
.x10_c00386{left:479.684999px;}
.x9_c00386{left:487.604998px;}
.x1e_c00386{left:493.379999px;}
.xa_c00386{left:515.774999px;}
.x1c_c00386{left:568.259999px;}
.x1d_c00386{left:592.169999px;}
.xc_c00386{left:634.124998px;}
.xd_c00386{left:663.989998px;}
.x15_c00386{left:672.554999px;}
.x1a_c00386{left:681.044999px;}
.x16_c00386{left:703.184999px;}
.x21_c00386{left:737.099999px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls29_c00386{letter-spacing:-2.314667pt;}
.ls30_c00386{letter-spacing:-2.202667pt;}
.ls2a_c00386{letter-spacing:-2.189013pt;}
.ls79_c00386{letter-spacing:-2.165333pt;}
.ls5f_c00386{letter-spacing:-2.146667pt;}
.ls4c_c00386{letter-spacing:-2.114560pt;}
.ls28_c00386{letter-spacing:-2.053333pt;}
.ls7e_c00386{letter-spacing:-2.051627pt;}
.ls6c_c00386{letter-spacing:-1.900587pt;}
.ls6b_c00386{letter-spacing:-1.888000pt;}
.ls37_c00386{letter-spacing:-1.774720pt;}
.ls7b_c00386{letter-spacing:-1.666560pt;}
.ls67_c00386{letter-spacing:-1.648853pt;}
.ls2d_c00386{letter-spacing:-1.629973pt;}
.ls5e_c00386{letter-spacing:-1.340480pt;}
.ls7d_c00386{letter-spacing:-1.202027pt;}
.ls57_c00386{letter-spacing:-1.176853pt;}
.ls2f_c00386{letter-spacing:-1.095040pt;}
.ls6f_c00386{letter-spacing:-1.076160pt;}
.ls3c_c00386{letter-spacing:-1.050987pt;}
.ls62_c00386{letter-spacing:-1.019520pt;}
.ls52_c00386{letter-spacing:-1.013227pt;}
.ls35_c00386{letter-spacing:-0.994347pt;}
.ls54_c00386{letter-spacing:-0.988053pt;}
.ls40_c00386{letter-spacing:-0.925120pt;}
.ls39_c00386{letter-spacing:-0.899947pt;}
.ls5a_c00386{letter-spacing:-0.849600pt;}
.ls3a_c00386{letter-spacing:-0.837013pt;}
.ls41_c00386{letter-spacing:-0.830720pt;}
.ls38_c00386{letter-spacing:-0.786667pt;}
.ls36_c00386{letter-spacing:-0.767787pt;}
.ls3b_c00386{letter-spacing:-0.742613pt;}
.ls2e_c00386{letter-spacing:-0.711147pt;}
.ls49_c00386{letter-spacing:-0.704853pt;}
.ls33_c00386{letter-spacing:-0.698560pt;}
.ls5c_c00386{letter-spacing:-0.667093pt;}
.ls65_c00386{letter-spacing:-0.660800pt;}
.ls64_c00386{letter-spacing:-0.585280pt;}
.ls44_c00386{letter-spacing:-0.578987pt;}
.ls77_c00386{letter-spacing:-0.572693pt;}
.ls60_c00386{letter-spacing:-0.566400pt;}
.ls63_c00386{letter-spacing:-0.547520pt;}
.ls4a_c00386{letter-spacing:-0.534933pt;}
.ls76_c00386{letter-spacing:-0.528640pt;}
.ls4d_c00386{letter-spacing:-0.522347pt;}
.ls4f_c00386{letter-spacing:-0.503467pt;}
.ls7a_c00386{letter-spacing:-0.490880pt;}
.ls2b_c00386{letter-spacing:-0.478293pt;}
.ls32_c00386{letter-spacing:-0.472000pt;}
.ls55_c00386{letter-spacing:-0.459413pt;}
.ls47_c00386{letter-spacing:-0.446827pt;}
.ls71_c00386{letter-spacing:-0.421653pt;}
.ls69_c00386{letter-spacing:-0.409067pt;}
.ls7c_c00386{letter-spacing:-0.402773pt;}
.ls72_c00386{letter-spacing:-0.396480pt;}
.ls50_c00386{letter-spacing:-0.390187pt;}
.ls2c_c00386{letter-spacing:-0.383893pt;}
.ls5d_c00386{letter-spacing:-0.352427pt;}
.ls3e_c00386{letter-spacing:-0.346133pt;}
.ls46_c00386{letter-spacing:-0.339840pt;}
.ls34_c00386{letter-spacing:-0.333547pt;}
.ls6e_c00386{letter-spacing:-0.314667pt;}
.ls75_c00386{letter-spacing:-0.276907pt;}
.ls56_c00386{letter-spacing:-0.239147pt;}
.ls48_c00386{letter-spacing:-0.213973pt;}
.ls61_c00386{letter-spacing:-0.195093pt;}
.ls4b_c00386{letter-spacing:-0.188800pt;}
.ls73_c00386{letter-spacing:-0.182507pt;}
.ls3d_c00386{letter-spacing:-0.176213pt;}
.ls53_c00386{letter-spacing:-0.144747pt;}
.ls66_c00386{letter-spacing:-0.138453pt;}
.ls42_c00386{letter-spacing:-0.125867pt;}
.ls6a_c00386{letter-spacing:-0.100693pt;}
.ls58_c00386{letter-spacing:-0.094400pt;}
.ls4e_c00386{letter-spacing:-0.075520pt;}
.ls43_c00386{letter-spacing:-0.069227pt;}
.ls6d_c00386{letter-spacing:-0.062933pt;}
.ls5b_c00386{letter-spacing:-0.056640pt;}
.ls3f_c00386{letter-spacing:-0.037760pt;}
.ls70_c00386{letter-spacing:-0.018880pt;}
.ls45_c00386{letter-spacing:-0.012587pt;}
.ls31_c00386{letter-spacing:0.000000pt;}
.ls68_c00386{letter-spacing:0.006293pt;}
.ls15_c00386{letter-spacing:0.025173pt;}
.ls51_c00386{letter-spacing:0.031467pt;}
.ls13_c00386{letter-spacing:0.037760pt;}
.lsa_c00386{letter-spacing:0.056640pt;}
.lsf_c00386{letter-spacing:0.075520pt;}
.ls19_c00386{letter-spacing:0.081813pt;}
.ls80_c00386{letter-spacing:0.094400pt;}
.lsb_c00386{letter-spacing:0.100693pt;}
.ls1e_c00386{letter-spacing:0.106987pt;}
.ls1f_c00386{letter-spacing:0.125867pt;}
.ls1d_c00386{letter-spacing:0.138453pt;}
.ls1a_c00386{letter-spacing:0.157333pt;}
.ls16_c00386{letter-spacing:0.163627pt;}
.ls17_c00386{letter-spacing:0.195093pt;}
.ls25_c00386{letter-spacing:0.213973pt;}
.ls7_c00386{letter-spacing:0.220267pt;}
.lse_c00386{letter-spacing:0.226560pt;}
.ls11_c00386{letter-spacing:0.258027pt;}
.ls8_c00386{letter-spacing:0.339840pt;}
.ls26_c00386{letter-spacing:0.371307pt;}
.ls12_c00386{letter-spacing:0.434240pt;}
.ls10_c00386{letter-spacing:0.534933pt;}
.ls81_c00386{letter-spacing:0.553547pt;}
.ls24_c00386{letter-spacing:0.571520pt;}
.ls21_c00386{letter-spacing:0.597867pt;}
.ls1c_c00386{letter-spacing:0.610453pt;}
.lsd_c00386{letter-spacing:0.692267pt;}
.ls27_c00386{letter-spacing:0.717440pt;}
.ls22_c00386{letter-spacing:0.730027pt;}
.ls1b_c00386{letter-spacing:0.747840pt;}
.ls14_c00386{letter-spacing:0.774080pt;}
.ls78_c00386{letter-spacing:0.824427pt;}
.ls1_c00386{letter-spacing:0.845120pt;}
.ls20_c00386{letter-spacing:0.905920pt;}
.ls3_c00386{letter-spacing:0.966720pt;}
.ls9_c00386{letter-spacing:1.061067pt;}
.ls2_c00386{letter-spacing:1.064000pt;}
.ls4_c00386{letter-spacing:1.070080pt;}
.ls5_c00386{letter-spacing:1.088320pt;}
.ls6_c00386{letter-spacing:1.101333pt;}
.ls18_c00386{letter-spacing:1.167360pt;}
.ls23_c00386{letter-spacing:1.189440pt;}
.ls74_c00386{letter-spacing:1.246080pt;}
.lsc_c00386{letter-spacing:1.856533pt;}
.ls0_c00386{letter-spacing:2.146027pt;}
.ls7f_c00386{letter-spacing:2.448107pt;}
.ls59_c00386{letter-spacing:3.146667pt;}
.ws1_c00386{word-spacing:-0.602240pt;}
.ws5_c00386{word-spacing:0.000000pt;}
.ws3_c00386{word-spacing:2.173333pt;}
.ws4_c00386{word-spacing:10.435413pt;}
.ws0_c00386{word-spacing:11.113387pt;}
.ws2_c00386{word-spacing:18.897067pt;}
._5_c00386{margin-left:-4.221333pt;}
._3_c00386{margin-left:-2.054827pt;}
._4_c00386{width:0.918080pt;}
._0_c00386{width:2.890240pt;}
._2_c00386{width:4.059200pt;}
._6_c00386{width:5.506667pt;}
._1_c00386{width:6.400320pt;}
._8_c00386{width:8.275733pt;}
._7_c00386{width:9.922240pt;}
._a_c00386{width:11.674133pt;}
._f_c00386{width:12.669227pt;}
._9_c00386{width:13.794987pt;}
._b_c00386{width:16.199040pt;}
._c_c00386{width:17.722027pt;}
._d_c00386{width:19.131733pt;}
._e_c00386{width:21.170773pt;}
._10_c00386{width:22.504960pt;}
.fs5_c00386{font-size:48.533333pt;}
.fs7_c00386{font-size:51.733333pt;}
.fs0_c00386{font-size:58.666667pt;}
.fs3_c00386{font-size:60.800000pt;}
.fs4_c00386{font-size:61.333333pt;}
.fs6_c00386{font-size:61.866667pt;}
.fs2_c00386{font-size:62.933333pt;}
.fs1_c00386{font-size:66.133333pt;}
.y0_c00386{bottom:0.000000pt;}
.y21_c00386{bottom:67.213339pt;}
.y1f_c00386{bottom:146.250139pt;}
.y20_c00386{bottom:146.253339pt;}
.y1e_c00386{bottom:200.656005pt;}
.y1d_c00386{bottom:229.133339pt;}
.y1c_c00386{bottom:283.213339pt;}
.y1b_c00386{bottom:311.040005pt;}
.y1a_c00386{bottom:365.453072pt;}
.y19_c00386{bottom:393.600005pt;}
.y18_c00386{bottom:448.333339pt;}
.y17_c00386{bottom:448.338139pt;}
.y16_c00386{bottom:475.840005pt;}
.y15_c00386{bottom:475.847739pt;}
.y14_c00386{bottom:503.680005pt;}
.y13_c00386{bottom:559.053339pt;}
.y12_c00386{bottom:615.050405pt;}
.y11_c00386{bottom:642.253339pt;}
.y10_c00386{bottom:642.258139pt;}
.ye_c00386{bottom:669.754672pt;}
.yf_c00386{bottom:669.760005pt;}
.yd_c00386{bottom:696.973339pt;}
.yc_c00386{bottom:696.980539pt;}
.yb_c00386{bottom:724.498139pt;}
.ya_c00386{bottom:752.000005pt;}
.y9_c00386{bottom:807.052805pt;}
.y8_c00386{bottom:834.240005pt;}
.y7_c00386{bottom:861.453339pt;}
.y5_c00386{bottom:916.812805pt;}
.y6_c00386{bottom:916.813339pt;}
.y3_c00386{bottom:971.527739pt;}
.y4_c00386{bottom:971.533339pt;}
.y2_c00386{bottom:999.360005pt;}
.y1_c00386{bottom:1066.573339pt;}
.h8_c00386{height:50.773437pt;}
.h2_c00386{height:59.125000pt;}
.h6_c00386{height:60.195312pt;}
.h4_c00386{height:61.765625pt;}
.h5_c00386{height:61.767758pt;}
.h7_c00386{height:64.525000pt;}
.h3_c00386{height:64.873958pt;}
.h1_c00386{height:1122.666667pt;}
.h0_c00386{height:1122.880005pt;}
.w1_c00386{width:793.333333pt;}
.w0_c00386{width:793.599999pt;}
.x0_c00386{left:0.000000pt;}
.x1b_c00386{left:104.632799pt;}
.xe_c00386{left:106.086399pt;}
.x1_c00386{left:109.373332pt;}
.x17_c00386{left:152.786665pt;}
.xb_c00386{left:154.079999pt;}
.x4_c00386{left:155.745865pt;}
.x22_c00386{left:197.613332pt;}
.x11_c00386{left:202.093332pt;}
.x5_c00386{left:216.146665pt;}
.x2_c00386{left:219.373332pt;}
.x6_c00386{left:241.213332pt;}
.x12_c00386{left:253.279999pt;}
.x24_c00386{left:306.706665pt;}
.x13_c00386{left:307.919999pt;}
.x7_c00386{left:309.266665pt;}
.x14_c00386{left:328.813332pt;}
.x23_c00386{left:332.173332pt;}
.x8_c00386{left:333.893332pt;}
.x3_c00386{left:353.799999pt;}
.x25_c00386{left:375.853332pt;}
.x18_c00386{left:382.013332pt;}
.xf_c00386{left:387.666665pt;}
.x1f_c00386{left:405.293332pt;}
.x19_c00386{left:410.399999pt;}
.x20_c00386{left:423.426665pt;}
.x10_c00386{left:426.386665pt;}
.x9_c00386{left:433.426665pt;}
.x1e_c00386{left:438.559999pt;}
.xa_c00386{left:458.466665pt;}
.x1c_c00386{left:505.119999pt;}
.x1d_c00386{left:526.373332pt;}
.xc_c00386{left:563.666665pt;}
.xd_c00386{left:590.213332pt;}
.x15_c00386{left:597.826665pt;}
.x1a_c00386{left:605.373332pt;}
.x16_c00386{left:625.053332pt;}
.x21_c00386{left:655.199999pt;}
}





/* 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_c00387 {
    display:none;
  }
  .loading-indicator_c00387.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00387 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_c00387 { 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_c00387" -> "#page-container .classname_c00387")
 */
.pf_c00387 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00387 { /* 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_c00387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00387 { /* 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_c00387 { /* 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_c00387 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00387 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00387 {overflow:visible;}
  }
}
.c_c00387 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00387 { /* 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_c00387:after { /* webkit #35443 */
  content: '';
}
.t_c00387:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00387 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 */
}
.__c00387 { /* 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_c00387 { /* info for Javascript */
  display:none;
}
.l_c00387 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00387 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00387 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00387: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_c00387 {
    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_c00387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00387.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_c00387 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00387{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00387;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;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:ff2_c00387;src:url('chunks/assets/font_b0c4f6b57bae22eb02351bf2.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.284180;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_c00387;src:url('chunks/assets/font_d2e58b91783a1be2fd13b8eb.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.284668;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_c00387;src:url('chunks/assets/font_5f6c04ac12339df934335601.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;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:ff5_c00387;src:url('chunks/assets/font_aaa2d23bd08fa061b62d1108.woff2')format("woff");}.ff5_c00387{font-family:ff5_c00387;line-height:0.666000;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;}
.m3_c00387{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m0_c00387{transform:matrix(0.125505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125505,0.000000,0.000000,0.250000,0,0);}
.m4_c00387{transform:matrix(0.127937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127937,0.000000,0.000000,0.250000,0,0);}
.m1_c00387{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);}
.m2_c00387{transform:matrix(0.394837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394837,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls7_c00387{letter-spacing:-3.045000px;}
.ls11_c00387{letter-spacing:-2.982000px;}
.ls8_c00387{letter-spacing:-0.674160px;}
.lse_c00387{letter-spacing:-0.394320px;}
.lsb_c00387{letter-spacing:0.000000px;}
.ls10_c00387{letter-spacing:0.141240px;}
.lsa_c00387{letter-spacing:0.496080px;}
.lsc_c00387{letter-spacing:0.630240px;}
.ls9_c00387{letter-spacing:0.636000px;}
.ls3_c00387{letter-spacing:0.871320px;}
.ls4_c00387{letter-spacing:0.960360px;}
.lsf_c00387{letter-spacing:1.119360px;}
.ls5_c00387{letter-spacing:1.265640px;}
.ls1_c00387{letter-spacing:1.291080px;}
.lsd_c00387{letter-spacing:1.380000px;}
.ls0_c00387{letter-spacing:1.437360px;}
.ls2_c00387{letter-spacing:1.602720px;}
.ls6_c00387{letter-spacing:2.966040px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{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__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00387{word-spacing:-2.264160px;}
.ws2_c00387{word-spacing:-2.022480px;}
.ws1_c00387{word-spacing:-1.984320px;}
.ws4_c00387{word-spacing:0.000000px;}
.ws0_c00387{word-spacing:0.216240px;}
._2_c00387{margin-left:-4.070280px;}
._0_c00387{margin-left:-2.365920px;}
._1_c00387{width:1.793520px;}
.fc0_c00387{color:transparent;}
.fs4_c00387{font-size:27.600000px;}
.fs5_c00387{font-size:33.000600px;}
.fs3_c00387{font-size:62.400000px;}
.fs2_c00387{font-size:63.000000px;}
.fs1_c00387{font-size:63.600000px;}
.fs7_c00387{font-size:64.200000px;}
.fs8_c00387{font-size:85.200000px;}
.fs0_c00387{font-size:87.000000px;}
.fs6_c00387{font-size:288.000000px;}
.y0_c00387{bottom:0.000000px;}
.ya_c00387{bottom:149.045715px;}
.y3_c00387{bottom:149.755515px;}
.y9_c00387{bottom:167.760015px;}
.y2_c00387{bottom:168.120015px;}
.y8_c00387{bottom:418.680015px;}
.y7_c00387{bottom:810.000015px;}
.y6_c00387{bottom:818.295015px;}
.y5_c00387{bottom:828.360015px;}
.y4_c00387{bottom:841.680015px;}
.yc_c00387{bottom:1080.360015px;}
.y1_c00387{bottom:1083.975015px;}
.yb_c00387{bottom:1144.815015px;}
.h6_c00387{height:27.087891px;}
.h7_c00387{height:34.418595px;}
.h4_c00387{height:61.831055px;}
.h3_c00387{height:62.388867px;}
.h9_c00387{height:63.008789px;}
.h5_c00387{height:65.081250px;}
.ha_c00387{height:83.619141px;}
.h2_c00387{height:90.738281px;}
.h8_c00387{height:191.808000px;}
.h1_c00387{height:1263.000000px;}
.h0_c00387{height:1263.240015px;}
.w1_c00387{width:892.500000px;}
.w0_c00387{width:892.800015px;}
.x0_c00387{left:0.000000px;}
.x2_c00387{left:116.923815px;}
.x1_c00387{left:119.985015px;}
.x7_c00387{left:331.050015px;}
.x5_c00387{left:369.600015px;}
.x3_c00387{left:371.070015px;}
.x4_c00387{left:372.540015px;}
.x6_c00387{left:440.655015px;}
.x8_c00387{left:674.910015px;}
.x9_c00387{left:789.465015px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls7_c00387{letter-spacing:-2.706667pt;}
.ls11_c00387{letter-spacing:-2.650667pt;}
.ls8_c00387{letter-spacing:-0.599253pt;}
.lse_c00387{letter-spacing:-0.350507pt;}
.lsb_c00387{letter-spacing:0.000000pt;}
.ls10_c00387{letter-spacing:0.125547pt;}
.lsa_c00387{letter-spacing:0.440960pt;}
.lsc_c00387{letter-spacing:0.560213pt;}
.ls9_c00387{letter-spacing:0.565333pt;}
.ls3_c00387{letter-spacing:0.774507pt;}
.ls4_c00387{letter-spacing:0.853653pt;}
.lsf_c00387{letter-spacing:0.994987pt;}
.ls5_c00387{letter-spacing:1.125013pt;}
.ls1_c00387{letter-spacing:1.147627pt;}
.lsd_c00387{letter-spacing:1.226667pt;}
.ls0_c00387{letter-spacing:1.277653pt;}
.ls2_c00387{letter-spacing:1.424640pt;}
.ls6_c00387{letter-spacing:2.636480pt;}
.ws3_c00387{word-spacing:-2.012587pt;}
.ws2_c00387{word-spacing:-1.797760pt;}
.ws1_c00387{word-spacing:-1.763840pt;}
.ws4_c00387{word-spacing:0.000000pt;}
.ws0_c00387{word-spacing:0.192213pt;}
._2_c00387{margin-left:-3.618027pt;}
._0_c00387{margin-left:-2.103040pt;}
._1_c00387{width:1.594240pt;}
.fs4_c00387{font-size:24.533333pt;}
.fs5_c00387{font-size:29.333867pt;}
.fs3_c00387{font-size:55.466667pt;}
.fs2_c00387{font-size:56.000000pt;}
.fs1_c00387{font-size:56.533333pt;}
.fs7_c00387{font-size:57.066667pt;}
.fs8_c00387{font-size:75.733333pt;}
.fs0_c00387{font-size:77.333333pt;}
.fs6_c00387{font-size:256.000000pt;}
.y0_c00387{bottom:0.000000pt;}
.ya_c00387{bottom:132.485080pt;}
.y3_c00387{bottom:133.116013pt;}
.y9_c00387{bottom:149.120013pt;}
.y2_c00387{bottom:149.440013pt;}
.y8_c00387{bottom:372.160013pt;}
.y7_c00387{bottom:720.000013pt;}
.y6_c00387{bottom:727.373347pt;}
.y5_c00387{bottom:736.320013pt;}
.y4_c00387{bottom:748.160013pt;}
.yc_c00387{bottom:960.320013pt;}
.y1_c00387{bottom:963.533347pt;}
.yb_c00387{bottom:1017.613347pt;}
.h6_c00387{height:24.078125pt;}
.h7_c00387{height:30.594306pt;}
.h4_c00387{height:54.960938pt;}
.h3_c00387{height:55.456771pt;}
.h9_c00387{height:56.007812pt;}
.h5_c00387{height:57.850000pt;}
.ha_c00387{height:74.328125pt;}
.h2_c00387{height:80.656250pt;}
.h8_c00387{height:170.496000pt;}
.h1_c00387{height:1122.666667pt;}
.h0_c00387{height:1122.880013pt;}
.w1_c00387{width:793.333333pt;}
.w0_c00387{width:793.600013pt;}
.x0_c00387{left:0.000000pt;}
.x2_c00387{left:103.932280pt;}
.x1_c00387{left:106.653347pt;}
.x7_c00387{left:294.266680pt;}
.x5_c00387{left:328.533347pt;}
.x3_c00387{left:329.840013pt;}
.x4_c00387{left:331.146680pt;}
.x6_c00387{left:391.693347pt;}
.x8_c00387{left:599.920013pt;}
.x9_c00387{left:701.746680pt;}
}





/* 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_c00388 {
    display:none;
  }
  .loading-indicator_c00388.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00388 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_c00388 { 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_c00388" -> "#page-container .classname_c00388")
 */
.pf_c00388 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00388 { /* 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_c00388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00388 { /* 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_c00388 { /* 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_c00388 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00388 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00388 {overflow:visible;}
  }
}
.c_c00388 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00388 { /* 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_c00388:after { /* webkit #35443 */
  content: '';
}
.t_c00388:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00388 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 */
}
.__c00388 { /* 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_c00388 { /* info for Javascript */
  display:none;
}
.l_c00388 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00388 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00388 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00388: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_c00388 {
    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_c00388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00388.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_c00388 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00388{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00388;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.311035;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_c00388;src:url('chunks/assets/font_49ed91b9d23440b511819d33.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.284180;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_c00388;src:url('chunks/assets/font_f7a6079a9913514d1c013cbf.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.284668;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_c00388;src:url('chunks/assets/font_3315ea7a85a7b98e88ec9d73.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:0.666000;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_c00388;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;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;}
.m9_c00388{transform:matrix(0.233807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233807,0.000000,0.000000,0.250000,0,0);}
.m0_c00388{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m2_c00388{transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);}
.m5_c00388{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m6_c00388{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m7_c00388{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m4_c00388{transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);}
.m3_c00388{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.m8_c00388{transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);}
.m1_c00388{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);}
.v0_c00388{vertical-align:0.000000px;}
.ls3d_c00388{letter-spacing:-2.436000px;}
.ls55_c00388{letter-spacing:-2.373000px;}
.ls38_c00388{letter-spacing:-2.310000px;}
.ls70_c00388{letter-spacing:-2.205000px;}
.ls51_c00388{letter-spacing:-2.060160px;}
.ls5a_c00388{letter-spacing:-1.886160px;}
.ls4a_c00388{letter-spacing:-1.816560px;}
.ls6b_c00388{letter-spacing:-1.783140px;}
.ls4d_c00388{letter-spacing:-1.649520px;}
.ls46_c00388{letter-spacing:-1.531200px;}
.ls40_c00388{letter-spacing:-1.503360px;}
.ls5e_c00388{letter-spacing:-1.475520px;}
.ls4f_c00388{letter-spacing:-1.426800px;}
.ls66_c00388{letter-spacing:-1.218000px;}
.ls4e_c00388{letter-spacing:-1.016160px;}
.ls6c_c00388{letter-spacing:-0.974400px;}
.ls45_c00388{letter-spacing:-0.904800px;}
.ls42_c00388{letter-spacing:-0.897840px;}
.ls3c_c00388{letter-spacing:-0.814320px;}
.ls58_c00388{letter-spacing:-0.793440px;}
.ls63_c00388{letter-spacing:-0.779520px;}
.ls3f_c00388{letter-spacing:-0.668160px;}
.ls3b_c00388{letter-spacing:-0.549840px;}
.ls6d_c00388{letter-spacing:-0.508080px;}
.ls54_c00388{letter-spacing:-0.473280px;}
.ls39_c00388{letter-spacing:-0.466320px;}
.ls52_c00388{letter-spacing:-0.452400px;}
.ls62_c00388{letter-spacing:-0.431520px;}
.ls44_c00388{letter-spacing:-0.396720px;}
.ls64_c00388{letter-spacing:-0.389760px;}
.ls61_c00388{letter-spacing:-0.382800px;}
.ls68_c00388{letter-spacing:-0.341040px;}
.ls65_c00388{letter-spacing:-0.264480px;}
.ls69_c00388{letter-spacing:-0.243600px;}
.ls5f_c00388{letter-spacing:-0.236640px;}
.ls53_c00388{letter-spacing:-0.229680px;}
.ls57_c00388{letter-spacing:-0.208800px;}
.ls41_c00388{letter-spacing:-0.194880px;}
.ls3a_c00388{letter-spacing:-0.187920px;}
.ls43_c00388{letter-spacing:-0.174000px;}
.ls4b_c00388{letter-spacing:-0.167040px;}
.ls60_c00388{letter-spacing:-0.160080px;}
.ls48_c00388{letter-spacing:-0.153120px;}
.ls5c_c00388{letter-spacing:-0.132240px;}
.ls56_c00388{letter-spacing:-0.125280px;}
.ls5b_c00388{letter-spacing:-0.104400px;}
.ls4c_c00388{letter-spacing:-0.090480px;}
.ls47_c00388{letter-spacing:-0.076560px;}
.ls59_c00388{letter-spacing:-0.069600px;}
.ls3e_c00388{letter-spacing:-0.055680px;}
.ls67_c00388{letter-spacing:-0.041760px;}
.ls6e_c00388{letter-spacing:-0.034800px;}
.ls5d_c00388{letter-spacing:-0.020880px;}
.ls50_c00388{letter-spacing:-0.013920px;}
.ls6f_c00388{letter-spacing:-0.006960px;}
.ls49_c00388{letter-spacing:0.000000px;}
.ls1b_c00388{letter-spacing:0.013920px;}
.ls34_c00388{letter-spacing:0.020880px;}
.ls31_c00388{letter-spacing:0.027840px;}
.lsc_c00388{letter-spacing:0.062640px;}
.ls1e_c00388{letter-spacing:0.076560px;}
.ls37_c00388{letter-spacing:0.118320px;}
.lsb_c00388{letter-spacing:0.132240px;}
.ls1f_c00388{letter-spacing:0.160080px;}
.ls2b_c00388{letter-spacing:0.167040px;}
.lsf_c00388{letter-spacing:0.174000px;}
.ls12_c00388{letter-spacing:0.201840px;}
.ls21_c00388{letter-spacing:0.208800px;}
.lsd_c00388{letter-spacing:0.222720px;}
.ls30_c00388{letter-spacing:0.229680px;}
.ls15_c00388{letter-spacing:0.257520px;}
.ls2_c00388{letter-spacing:0.285360px;}
.ls24_c00388{letter-spacing:0.292320px;}
.ls29_c00388{letter-spacing:0.299280px;}
.ls18_c00388{letter-spacing:0.306240px;}
.ls27_c00388{letter-spacing:0.313200px;}
.ls14_c00388{letter-spacing:0.320160px;}
.lse_c00388{letter-spacing:0.327120px;}
.ls35_c00388{letter-spacing:0.348000px;}
.ls9_c00388{letter-spacing:0.368880px;}
.ls22_c00388{letter-spacing:0.375840px;}
.lsa_c00388{letter-spacing:0.382800px;}
.ls33_c00388{letter-spacing:0.424560px;}
.ls2e_c00388{letter-spacing:0.447480px;}
.ls25_c00388{letter-spacing:0.459360px;}
.ls8_c00388{letter-spacing:0.473280px;}
.ls16_c00388{letter-spacing:0.528960px;}
.ls1a_c00388{letter-spacing:0.535920px;}
.ls10_c00388{letter-spacing:0.542880px;}
.ls6_c00388{letter-spacing:0.549840px;}
.ls1c_c00388{letter-spacing:0.577680px;}
.ls2d_c00388{letter-spacing:0.583080px;}
.ls20_c00388{letter-spacing:0.723840px;}
.ls11_c00388{letter-spacing:0.751680px;}
.ls7_c00388{letter-spacing:0.758640px;}
.ls19_c00388{letter-spacing:0.759360px;}
.ls0_c00388{letter-spacing:0.766140px;}
.ls2c_c00388{letter-spacing:0.828240px;}
.ls1_c00388{letter-spacing:0.867840px;}
.ls3_c00388{letter-spacing:0.935640px;}
.ls4_c00388{letter-spacing:0.942420px;}
.ls26_c00388{letter-spacing:0.949200px;}
.ls1d_c00388{letter-spacing:0.953520px;}
.ls2f_c00388{letter-spacing:1.002240px;}
.ls5_c00388{letter-spacing:1.017000px;}
.ls17_c00388{letter-spacing:1.118700px;}
.ls28_c00388{letter-spacing:1.127520px;}
.ls2a_c00388{letter-spacing:1.552080px;}
.ls36_c00388{letter-spacing:1.802640px;}
.ls23_c00388{letter-spacing:1.983600px;}
.ls32_c00388{letter-spacing:2.442960px;}
.ls6a_c00388{letter-spacing:2.495040px;}
.ls13_c00388{letter-spacing:2.784000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{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__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00388{word-spacing:-0.172200px;}
.ws1_c00388{word-spacing:-0.054000px;}
.ws5_c00388{word-spacing:0.000000px;}
.ws0_c00388{word-spacing:0.118200px;}
.ws4_c00388{word-spacing:5.386320px;}
.ws2_c00388{word-spacing:5.812200px;}
._10_c00388{margin-left:-5.655360px;}
._b_c00388{margin-left:-3.152400px;}
._1_c00388{margin-left:-1.642080px;}
._3_c00388{width:1.667880px;}
._2_c00388{width:3.066900px;}
._0_c00388{width:4.456860px;}
._6_c00388{width:6.278520px;}
._4_c00388{width:8.101680px;}
._5_c00388{width:9.340320px;}
._c_c00388{width:10.648800px;}
._d_c00388{width:12.172800px;}
._e_c00388{width:13.909920px;}
._8_c00388{width:16.042800px;}
._9_c00388{width:19.112160px;}
._7_c00388{width:20.462400px;}
._f_c00388{width:23.263440px;}
._a_c00388{width:24.986400px;}
._11_c00388{width:27.195300px;}
._18_c00388{width:31.647120px;}
._13_c00388{width:33.707280px;}
._12_c00388{width:36.679200px;}
._15_c00388{width:37.695360px;}
._14_c00388{width:39.219600px;}
._17_c00388{width:40.388880px;}
._16_c00388{width:42.560400px;}
.fc0_c00388{color:transparent;}
.fs3_c00388{font-size:53.280000px;}
.fs4_c00388{font-size:63.000000px;}
.fs0_c00388{font-size:66.000000px;}
.fs1_c00388{font-size:67.800000px;}
.fs2_c00388{font-size:69.600000px;}
.y0_c00388{bottom:0.000000px;}
.y14_c00388{bottom:74.895000px;}
.y13_c00388{bottom:502.936200px;}
.y12_c00388{bottom:533.542800px;}
.y10_c00388{bottom:564.478500px;}
.y11_c00388{bottom:564.480000px;}
.yf_c00388{bottom:596.175000px;}
.ye_c00388{bottom:657.720000px;}
.yc_c00388{bottom:719.281800px;}
.yd_c00388{bottom:719.295000px;}
.yb_c00388{bottom:749.888400px;}
.ya_c00388{bottom:780.490800px;}
.y9_c00388{bottom:811.080000px;}
.y8_c00388{bottom:873.720000px;}
.y7_c00388{bottom:936.741600px;}
.y6_c00388{bottom:967.348200px;}
.y5_c00388{bottom:998.285400px;}
.y4_c00388{bottom:1029.240000px;}
.y3_c00388{bottom:1090.440000px;}
.y2_c00388{bottom:1121.055000px;}
.y1_c00388{bottom:1195.920000px;}
.h4_c00388{height:35.484480px;}
.h8_c00388{height:61.831055px;}
.h2_c00388{height:66.515625px;}
.h3_c00388{height:68.308594px;}
.h7_c00388{height:68.314594px;}
.h6_c00388{height:68.325394px;}
.h5_c00388{height:70.713281px;}
.h1_c00388{height:1263.000000px;}
.h0_c00388{height:1263.240000px;}
.w1_c00388{width:892.500000px;}
.w0_c00388{width:892.800000px;}
.x0_c00388{left:0.000000px;}
.x1_c00388{left:121.245000px;}
.x6_c00388{left:122.386200px;}
.x2_c00388{left:175.710000px;}
.x8_c00388{left:385.380000px;}
.x9_c00388{left:403.380000px;}
.xd_c00388{left:422.115000px;}
.x7_c00388{left:430.575000px;}
.xb_c00388{left:432.180000px;}
.xc_c00388{left:451.725000px;}
.xa_c00388{left:464.220000px;}
.x3_c00388{left:532.215000px;}
.x4_c00388{left:548.805000px;}
.x5_c00388{left:577.560000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls3d_c00388{letter-spacing:-2.165333pt;}
.ls55_c00388{letter-spacing:-2.109333pt;}
.ls38_c00388{letter-spacing:-2.053333pt;}
.ls70_c00388{letter-spacing:-1.960000pt;}
.ls51_c00388{letter-spacing:-1.831253pt;}
.ls5a_c00388{letter-spacing:-1.676587pt;}
.ls4a_c00388{letter-spacing:-1.614720pt;}
.ls6b_c00388{letter-spacing:-1.585013pt;}
.ls4d_c00388{letter-spacing:-1.466240pt;}
.ls46_c00388{letter-spacing:-1.361067pt;}
.ls40_c00388{letter-spacing:-1.336320pt;}
.ls5e_c00388{letter-spacing:-1.311573pt;}
.ls4f_c00388{letter-spacing:-1.268267pt;}
.ls66_c00388{letter-spacing:-1.082667pt;}
.ls4e_c00388{letter-spacing:-0.903253pt;}
.ls6c_c00388{letter-spacing:-0.866133pt;}
.ls45_c00388{letter-spacing:-0.804267pt;}
.ls42_c00388{letter-spacing:-0.798080pt;}
.ls3c_c00388{letter-spacing:-0.723840pt;}
.ls58_c00388{letter-spacing:-0.705280pt;}
.ls63_c00388{letter-spacing:-0.692907pt;}
.ls3f_c00388{letter-spacing:-0.593920pt;}
.ls3b_c00388{letter-spacing:-0.488747pt;}
.ls6d_c00388{letter-spacing:-0.451627pt;}
.ls54_c00388{letter-spacing:-0.420693pt;}
.ls39_c00388{letter-spacing:-0.414507pt;}
.ls52_c00388{letter-spacing:-0.402133pt;}
.ls62_c00388{letter-spacing:-0.383573pt;}
.ls44_c00388{letter-spacing:-0.352640pt;}
.ls64_c00388{letter-spacing:-0.346453pt;}
.ls61_c00388{letter-spacing:-0.340267pt;}
.ls68_c00388{letter-spacing:-0.303147pt;}
.ls65_c00388{letter-spacing:-0.235093pt;}
.ls69_c00388{letter-spacing:-0.216533pt;}
.ls5f_c00388{letter-spacing:-0.210347pt;}
.ls53_c00388{letter-spacing:-0.204160pt;}
.ls57_c00388{letter-spacing:-0.185600pt;}
.ls41_c00388{letter-spacing:-0.173227pt;}
.ls3a_c00388{letter-spacing:-0.167040pt;}
.ls43_c00388{letter-spacing:-0.154667pt;}
.ls4b_c00388{letter-spacing:-0.148480pt;}
.ls60_c00388{letter-spacing:-0.142293pt;}
.ls48_c00388{letter-spacing:-0.136107pt;}
.ls5c_c00388{letter-spacing:-0.117547pt;}
.ls56_c00388{letter-spacing:-0.111360pt;}
.ls5b_c00388{letter-spacing:-0.092800pt;}
.ls4c_c00388{letter-spacing:-0.080427pt;}
.ls47_c00388{letter-spacing:-0.068053pt;}
.ls59_c00388{letter-spacing:-0.061867pt;}
.ls3e_c00388{letter-spacing:-0.049493pt;}
.ls67_c00388{letter-spacing:-0.037120pt;}
.ls6e_c00388{letter-spacing:-0.030933pt;}
.ls5d_c00388{letter-spacing:-0.018560pt;}
.ls50_c00388{letter-spacing:-0.012373pt;}
.ls6f_c00388{letter-spacing:-0.006187pt;}
.ls49_c00388{letter-spacing:0.000000pt;}
.ls1b_c00388{letter-spacing:0.012373pt;}
.ls34_c00388{letter-spacing:0.018560pt;}
.ls31_c00388{letter-spacing:0.024747pt;}
.lsc_c00388{letter-spacing:0.055680pt;}
.ls1e_c00388{letter-spacing:0.068053pt;}
.ls37_c00388{letter-spacing:0.105173pt;}
.lsb_c00388{letter-spacing:0.117547pt;}
.ls1f_c00388{letter-spacing:0.142293pt;}
.ls2b_c00388{letter-spacing:0.148480pt;}
.lsf_c00388{letter-spacing:0.154667pt;}
.ls12_c00388{letter-spacing:0.179413pt;}
.ls21_c00388{letter-spacing:0.185600pt;}
.lsd_c00388{letter-spacing:0.197973pt;}
.ls30_c00388{letter-spacing:0.204160pt;}
.ls15_c00388{letter-spacing:0.228907pt;}
.ls2_c00388{letter-spacing:0.253653pt;}
.ls24_c00388{letter-spacing:0.259840pt;}
.ls29_c00388{letter-spacing:0.266027pt;}
.ls18_c00388{letter-spacing:0.272213pt;}
.ls27_c00388{letter-spacing:0.278400pt;}
.ls14_c00388{letter-spacing:0.284587pt;}
.lse_c00388{letter-spacing:0.290773pt;}
.ls35_c00388{letter-spacing:0.309333pt;}
.ls9_c00388{letter-spacing:0.327893pt;}
.ls22_c00388{letter-spacing:0.334080pt;}
.lsa_c00388{letter-spacing:0.340267pt;}
.ls33_c00388{letter-spacing:0.377387pt;}
.ls2e_c00388{letter-spacing:0.397760pt;}
.ls25_c00388{letter-spacing:0.408320pt;}
.ls8_c00388{letter-spacing:0.420693pt;}
.ls16_c00388{letter-spacing:0.470187pt;}
.ls1a_c00388{letter-spacing:0.476373pt;}
.ls10_c00388{letter-spacing:0.482560pt;}
.ls6_c00388{letter-spacing:0.488747pt;}
.ls1c_c00388{letter-spacing:0.513493pt;}
.ls2d_c00388{letter-spacing:0.518293pt;}
.ls20_c00388{letter-spacing:0.643413pt;}
.ls11_c00388{letter-spacing:0.668160pt;}
.ls7_c00388{letter-spacing:0.674347pt;}
.ls19_c00388{letter-spacing:0.674987pt;}
.ls0_c00388{letter-spacing:0.681013pt;}
.ls2c_c00388{letter-spacing:0.736213pt;}
.ls1_c00388{letter-spacing:0.771413pt;}
.ls3_c00388{letter-spacing:0.831680pt;}
.ls4_c00388{letter-spacing:0.837707pt;}
.ls26_c00388{letter-spacing:0.843733pt;}
.ls1d_c00388{letter-spacing:0.847573pt;}
.ls2f_c00388{letter-spacing:0.890880pt;}
.ls5_c00388{letter-spacing:0.904000pt;}
.ls17_c00388{letter-spacing:0.994400pt;}
.ls28_c00388{letter-spacing:1.002240pt;}
.ls2a_c00388{letter-spacing:1.379627pt;}
.ls36_c00388{letter-spacing:1.602347pt;}
.ls23_c00388{letter-spacing:1.763200pt;}
.ls32_c00388{letter-spacing:2.171520pt;}
.ls6a_c00388{letter-spacing:2.217813pt;}
.ls13_c00388{letter-spacing:2.474667pt;}
.ws3_c00388{word-spacing:-0.153067pt;}
.ws1_c00388{word-spacing:-0.048000pt;}
.ws5_c00388{word-spacing:0.000000pt;}
.ws0_c00388{word-spacing:0.105067pt;}
.ws4_c00388{word-spacing:4.787840pt;}
.ws2_c00388{word-spacing:5.166400pt;}
._10_c00388{margin-left:-5.026987pt;}
._b_c00388{margin-left:-2.802133pt;}
._1_c00388{margin-left:-1.459627pt;}
._3_c00388{width:1.482560pt;}
._2_c00388{width:2.726133pt;}
._0_c00388{width:3.961653pt;}
._6_c00388{width:5.580907pt;}
._4_c00388{width:7.201493pt;}
._5_c00388{width:8.302507pt;}
._c_c00388{width:9.465600pt;}
._d_c00388{width:10.820267pt;}
._e_c00388{width:12.364373pt;}
._8_c00388{width:14.260267pt;}
._9_c00388{width:16.988587pt;}
._7_c00388{width:18.188800pt;}
._f_c00388{width:20.678613pt;}
._a_c00388{width:22.210133pt;}
._11_c00388{width:24.173600pt;}
._18_c00388{width:28.130773pt;}
._13_c00388{width:29.962027pt;}
._12_c00388{width:32.603733pt;}
._15_c00388{width:33.506987pt;}
._14_c00388{width:34.861867pt;}
._17_c00388{width:35.901227pt;}
._16_c00388{width:37.831467pt;}
.fs3_c00388{font-size:47.360000pt;}
.fs4_c00388{font-size:56.000000pt;}
.fs0_c00388{font-size:58.666667pt;}
.fs1_c00388{font-size:60.266667pt;}
.fs2_c00388{font-size:61.866667pt;}
.y0_c00388{bottom:0.000000pt;}
.y14_c00388{bottom:66.573333pt;}
.y13_c00388{bottom:447.054400pt;}
.y12_c00388{bottom:474.260267pt;}
.y10_c00388{bottom:501.758667pt;}
.y11_c00388{bottom:501.760000pt;}
.yf_c00388{bottom:529.933333pt;}
.ye_c00388{bottom:584.640000pt;}
.yc_c00388{bottom:639.361600pt;}
.yd_c00388{bottom:639.373333pt;}
.yb_c00388{bottom:666.567467pt;}
.ya_c00388{bottom:693.769600pt;}
.y9_c00388{bottom:720.960000pt;}
.y8_c00388{bottom:776.640000pt;}
.y7_c00388{bottom:832.659200pt;}
.y6_c00388{bottom:859.865067pt;}
.y5_c00388{bottom:887.364800pt;}
.y4_c00388{bottom:914.880000pt;}
.y3_c00388{bottom:969.280000pt;}
.y2_c00388{bottom:996.493333pt;}
.y1_c00388{bottom:1063.040000pt;}
.h4_c00388{height:31.541760pt;}
.h8_c00388{height:54.960938pt;}
.h2_c00388{height:59.125000pt;}
.h3_c00388{height:60.718750pt;}
.h7_c00388{height:60.724083pt;}
.h6_c00388{height:60.733683pt;}
.h5_c00388{height:62.856250pt;}
.h1_c00388{height:1122.666667pt;}
.h0_c00388{height:1122.880000pt;}
.w1_c00388{width:793.333333pt;}
.w0_c00388{width:793.600000pt;}
.x0_c00388{left:0.000000pt;}
.x1_c00388{left:107.773333pt;}
.x6_c00388{left:108.787733pt;}
.x2_c00388{left:156.186667pt;}
.x8_c00388{left:342.560000pt;}
.x9_c00388{left:358.560000pt;}
.xd_c00388{left:375.213333pt;}
.x7_c00388{left:382.733333pt;}
.xb_c00388{left:384.160000pt;}
.xc_c00388{left:401.533333pt;}
.xa_c00388{left:412.640000pt;}
.x3_c00388{left:473.080000pt;}
.x4_c00388{left:487.826667pt;}
.x5_c00388{left:513.386667pt;}
}





/* 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_c00389 {
    display:none;
  }
  .loading-indicator_c00389.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00389 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_c00389 { 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_c00389" -> "#page-container .classname_c00389")
 */
.pf_c00389 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00389 { /* 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_c00389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00389 { /* 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_c00389 { /* 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_c00389 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00389 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00389 {overflow:visible;}
  }
}
.c_c00389 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00389 { /* 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_c00389:after { /* webkit #35443 */
  content: '';
}
.t_c00389:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00389 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 */
}
.__c00389 { /* 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_c00389 { /* info for Javascript */
  display:none;
}
.l_c00389 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00389 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00389 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00389: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_c00389 {
    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_c00389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00389.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_c00389 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00389{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00389;src:url('chunks/assets/font_1d6913b935875a29242267c0.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.284668;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_c00389;src:url('chunks/assets/font_d9bda63ae528de540658082e.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.284180;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_c00389;src:url('chunks/assets/font_459657bfd9cfb631cbb79dc4.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;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;}
.mb_c00389{transform:matrix(0.203067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203067,0.000000,0.000000,0.250000,0,0);}
.me_c00389{transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);}
.m4_c00389{transform:matrix(0.213954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213954,0.000000,0.000000,0.250000,0,0);}
.ma_c00389{transform:matrix(0.219583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219583,0.000000,0.000000,0.250000,0,0);}
.m6_c00389{transform:matrix(0.227079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227079,0.000000,0.000000,0.250000,0,0);}
.m1_c00389{transform:matrix(0.233056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233056,0.000000,0.000000,0.250000,0,0);}
.m13_c00389{transform:matrix(0.233064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233064,0.000000,0.000000,0.250000,0,0);}
.m11_c00389{transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);}
.m9_c00389{transform:matrix(0.240550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240550,0.000000,0.000000,0.250000,0,0);}
.m10_c00389{transform:matrix(0.242337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242337,0.000000,0.000000,0.250000,0,0);}
.md_c00389{transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);}
.mf_c00389{transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);}
.m8_c00389{transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);}
.m12_c00389{transform:matrix(0.246074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246074,0.000000,0.000000,0.250000,0,0);}
.mc_c00389{transform:matrix(0.247496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247496,0.000000,0.000000,0.250000,0,0);}
.m7_c00389{transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);}
.m3_c00389{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m2_c00389{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m5_c00389{transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);}
.m0_c00389{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);}
.v0_c00389{vertical-align:0.000000px;}
.ls7b_c00389{letter-spacing:-4.011000px;}
.ls6c_c00389{letter-spacing:-3.696000px;}
.ls52_c00389{letter-spacing:-2.604000px;}
.ls8b_c00389{letter-spacing:-2.562000px;}
.ls40_c00389{letter-spacing:-2.541000px;}
.ls44_c00389{letter-spacing:-2.410320px;}
.ls87_c00389{letter-spacing:-2.337720px;}
.ls4c_c00389{letter-spacing:-2.228820px;}
.ls2c_c00389{letter-spacing:-2.170740px;}
.ls42_c00389{letter-spacing:-2.040060px;}
.ls75_c00389{letter-spacing:-1.996500px;}
.ls32_c00389{letter-spacing:-1.880340px;}
.ls59_c00389{letter-spacing:-1.800480px;}
.ls77_c00389{letter-spacing:-1.785960px;}
.ls81_c00389{letter-spacing:-1.771440px;}
.ls93_c00389{letter-spacing:-1.611720px;}
.ls3a_c00389{letter-spacing:-1.568160px;}
.ls46_c00389{letter-spacing:-1.546380px;}
.ls58_c00389{letter-spacing:-1.452000px;}
.ls8e_c00389{letter-spacing:-1.422960px;}
.ls48_c00389{letter-spacing:-1.364880px;}
.ls82_c00389{letter-spacing:-1.306800px;}
.ls29_c00389{letter-spacing:-1.285020px;}
.ls8a_c00389{letter-spacing:-1.089000px;}
.ls67_c00389{letter-spacing:-1.059960px;}
.ls35_c00389{letter-spacing:-0.972840px;}
.ls5e_c00389{letter-spacing:-0.965580px;}
.ls41_c00389{letter-spacing:-0.922020px;}
.ls4d_c00389{letter-spacing:-0.892980px;}
.ls4e_c00389{letter-spacing:-0.827640px;}
.ls2b_c00389{letter-spacing:-0.791340px;}
.ls39_c00389{letter-spacing:-0.762300px;}
.ls91_c00389{letter-spacing:-0.711480px;}
.ls53_c00389{letter-spacing:-0.682080px;}
.ls54_c00389{letter-spacing:-0.653400px;}
.ls4b_c00389{letter-spacing:-0.624360px;}
.ls7d_c00389{letter-spacing:-0.602580px;}
.ls8c_c00389{letter-spacing:-0.588060px;}
.ls45_c00389{letter-spacing:-0.559020px;}
.ls92_c00389{letter-spacing:-0.544500px;}
.ls7e_c00389{letter-spacing:-0.529980px;}
.ls4a_c00389{letter-spacing:-0.522720px;}
.ls72_c00389{letter-spacing:-0.486420px;}
.ls3e_c00389{letter-spacing:-0.464640px;}
.ls3d_c00389{letter-spacing:-0.435600px;}
.ls38_c00389{letter-spacing:-0.428340px;}
.ls31_c00389{letter-spacing:-0.421080px;}
.ls71_c00389{letter-spacing:-0.413820px;}
.ls68_c00389{letter-spacing:-0.384780px;}
.ls5f_c00389{letter-spacing:-0.370260px;}
.ls47_c00389{letter-spacing:-0.355740px;}
.ls66_c00389{letter-spacing:-0.348480px;}
.ls5a_c00389{letter-spacing:-0.341220px;}
.ls88_c00389{letter-spacing:-0.333960px;}
.ls43_c00389{letter-spacing:-0.319440px;}
.ls86_c00389{letter-spacing:-0.312180px;}
.ls30_c00389{letter-spacing:-0.304920px;}
.ls6d_c00389{letter-spacing:-0.292320px;}
.ls36_c00389{letter-spacing:-0.290400px;}
.ls3c_c00389{letter-spacing:-0.283140px;}
.ls70_c00389{letter-spacing:-0.275880px;}
.ls90_c00389{letter-spacing:-0.268620px;}
.ls60_c00389{letter-spacing:-0.261360px;}
.ls3b_c00389{letter-spacing:-0.254100px;}
.ls37_c00389{letter-spacing:-0.239580px;}
.ls57_c00389{letter-spacing:-0.232320px;}
.ls64_c00389{letter-spacing:-0.225060px;}
.ls4f_c00389{letter-spacing:-0.217800px;}
.ls2d_c00389{letter-spacing:-0.196020px;}
.ls2e_c00389{letter-spacing:-0.188760px;}
.ls55_c00389{letter-spacing:-0.181500px;}
.ls56_c00389{letter-spacing:-0.174240px;}
.ls5d_c00389{letter-spacing:-0.166980px;}
.ls65_c00389{letter-spacing:-0.159720px;}
.ls89_c00389{letter-spacing:-0.152460px;}
.ls5c_c00389{letter-spacing:-0.145200px;}
.ls7f_c00389{letter-spacing:-0.130680px;}
.ls51_c00389{letter-spacing:-0.123420px;}
.ls33_c00389{letter-spacing:-0.108900px;}
.ls34_c00389{letter-spacing:-0.101640px;}
.ls62_c00389{letter-spacing:-0.094380px;}
.ls63_c00389{letter-spacing:-0.079860px;}
.ls74_c00389{letter-spacing:-0.065340px;}
.ls3f_c00389{letter-spacing:-0.050820px;}
.ls80_c00389{letter-spacing:-0.043560px;}
.ls8f_c00389{letter-spacing:-0.036300px;}
.ls61_c00389{letter-spacing:-0.021780px;}
.ls5b_c00389{letter-spacing:-0.014520px;}
.ls49_c00389{letter-spacing:-0.007260px;}
.ls2f_c00389{letter-spacing:0.000000px;}
.ls2_c00389{letter-spacing:0.021780px;}
.ls1f_c00389{letter-spacing:0.036300px;}
.ls20_c00389{letter-spacing:0.043560px;}
.ls12_c00389{letter-spacing:0.050820px;}
.ls24_c00389{letter-spacing:0.058080px;}
.lsc_c00389{letter-spacing:0.065340px;}
.ls6f_c00389{letter-spacing:0.087120px;}
.ls10_c00389{letter-spacing:0.094380px;}
.ls14_c00389{letter-spacing:0.101640px;}
.ls5_c00389{letter-spacing:0.116160px;}
.ls17_c00389{letter-spacing:0.130680px;}
.ls50_c00389{letter-spacing:0.152460px;}
.ls9_c00389{letter-spacing:0.159720px;}
.ls1a_c00389{letter-spacing:0.188760px;}
.ls19_c00389{letter-spacing:0.203280px;}
.lsd_c00389{letter-spacing:0.239580px;}
.ls73_c00389{letter-spacing:0.246840px;}
.ls1_c00389{letter-spacing:0.254100px;}
.ls8_c00389{letter-spacing:0.268620px;}
.ls27_c00389{letter-spacing:0.319440px;}
.ls76_c00389{letter-spacing:0.355740px;}
.ls8d_c00389{letter-spacing:0.377520px;}
.lsb_c00389{letter-spacing:0.384780px;}
.ls1e_c00389{letter-spacing:0.421080px;}
.ls18_c00389{letter-spacing:0.442860px;}
.ls84_c00389{letter-spacing:0.515040px;}
.ls6a_c00389{letter-spacing:0.570720px;}
.lse_c00389{letter-spacing:0.653400px;}
.ls1c_c00389{letter-spacing:0.744720px;}
.ls6b_c00389{letter-spacing:0.758640px;}
.ls85_c00389{letter-spacing:0.814320px;}
.ls6_c00389{letter-spacing:0.828240px;}
.ls4_c00389{letter-spacing:0.856680px;}
.ls78_c00389{letter-spacing:0.870000px;}
.ls3_c00389{letter-spacing:0.900240px;}
.ls94_c00389{letter-spacing:0.905520px;}
.lsf_c00389{letter-spacing:0.922020px;}
.ls69_c00389{letter-spacing:0.939600px;}
.ls7_c00389{letter-spacing:0.943800px;}
.ls6e_c00389{letter-spacing:0.951060px;}
.lsa_c00389{letter-spacing:0.987360px;}
.ls25_c00389{letter-spacing:0.995280px;}
.ls83_c00389{letter-spacing:1.002240px;}
.ls7c_c00389{letter-spacing:1.064880px;}
.ls21_c00389{letter-spacing:1.104480px;}
.ls7a_c00389{letter-spacing:1.176240px;}
.ls1d_c00389{letter-spacing:1.211040px;}
.ls79_c00389{letter-spacing:1.273680px;}
.ls28_c00389{letter-spacing:1.285200px;}
.ls15_c00389{letter-spacing:1.357200px;}
.ls22_c00389{letter-spacing:1.489440px;}
.ls1b_c00389{letter-spacing:1.579920px;}
.ls13_c00389{letter-spacing:1.618980px;}
.ls26_c00389{letter-spacing:1.893120px;}
.ls23_c00389{letter-spacing:2.046120px;}
.ls11_c00389{letter-spacing:2.337720px;}
.ls16_c00389{letter-spacing:2.456880px;}
.ls0_c00389{letter-spacing:2.657160px;}
.ls2a_c00389{letter-spacing:3.049200px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{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__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00389{word-spacing:0.000000px;}
.ws0_c00389{word-spacing:3.125280px;}
.ws4_c00389{word-spacing:4.896000px;}
.ws1_c00389{word-spacing:7.742400px;}
.ws2_c00389{word-spacing:15.865680px;}
.ws3_c00389{word-spacing:16.806900px;}
._14_c00389{margin-left:-17.761920px;}
._1_c00389{margin-left:-3.455760px;}
._10_c00389{margin-left:-1.410300px;}
._f_c00389{width:1.016400px;}
._11_c00389{width:2.292300px;}
._12_c00389{width:3.484800px;}
._c_c00389{width:4.595580px;}
._13_c00389{width:5.619240px;}
._0_c00389{width:7.240080px;}
._e_c00389{width:9.038700px;}
._d_c00389{width:10.730280px;}
._5_c00389{width:12.334740px;}
._6_c00389{width:13.917420px;}
._2_c00389{width:15.137100px;}
._17_c00389{width:16.331340px;}
._18_c00389{width:17.696280px;}
._4_c00389{width:19.282560px;}
._3_c00389{width:20.959620px;}
._7_c00389{width:22.273680px;}
._15_c00389{width:23.377200px;}
._a_c00389{width:24.553320px;}
._b_c00389{width:25.606020px;}
._8_c00389{width:26.680500px;}
._9_c00389{width:28.167540px;}
._16_c00389{width:29.526420px;}
.fc0_c00389{color:transparent;}
.fs9_c00389{font-size:58.800000px;}
.fs0_c00389{font-size:61.200000px;}
.fs7_c00389{font-size:69.000000px;}
.fs2_c00389{font-size:69.600000px;}
.fs5_c00389{font-size:70.800000px;}
.fs1_c00389{font-size:72.600000px;}
.fs8_c00389{font-size:73.200000px;}
.fs3_c00389{font-size:74.400000px;}
.fs4_c00389{font-size:105.600000px;}
.fs6_c00389{font-size:114.600000px;}
.y0_c00389{bottom:0.000000px;}
.y29_c00389{bottom:101.160006px;}
.y28_c00389{bottom:163.432956px;}
.y26_c00389{bottom:194.411106px;}
.y27_c00389{bottom:194.415006px;}
.y25_c00389{bottom:225.375006px;}
.y24_c00389{bottom:225.376206px;}
.y23_c00389{bottom:286.920006px;}
.y22_c00389{bottom:286.928106px;}
.y21_c00389{bottom:318.255006px;}
.y1f_c00389{bottom:348.492606px;}
.y20_c00389{bottom:348.495006px;}
.y1e_c00389{bottom:408.975006px;}
.y1c_c00389{bottom:441.011106px;}
.y1d_c00389{bottom:441.015006px;}
.y1b_c00389{bottom:471.975006px;}
.y1a_c00389{bottom:503.280006px;}
.y18_c00389{bottom:565.211106px;}
.y19_c00389{bottom:565.215006px;}
.y16_c00389{bottom:596.171106px;}
.y17_c00389{bottom:596.175006px;}
.y15_c00389{bottom:627.135006px;}
.y14_c00389{bottom:658.095006px;}
.y13_c00389{bottom:658.096356px;}
.y12_c00389{bottom:688.316106px;}
.y11_c00389{bottom:719.280006px;}
.y10_c00389{bottom:781.215006px;}
.yf_c00389{bottom:781.217256px;}
.ye_c00389{bottom:811.800006px;}
.yd_c00389{bottom:811.808106px;}
.yb_c00389{bottom:843.134106px;}
.yc_c00389{bottom:843.135006px;}
.y9_c00389{bottom:873.734256px;}
.ya_c00389{bottom:873.735006px;}
.y7_c00389{bottom:904.676106px;}
.y8_c00389{bottom:904.680006px;}
.y5_c00389{bottom:935.635956px;}
.y6_c00389{bottom:935.640006px;}
.y4_c00389{bottom:966.251106px;}
.y3_c00389{bottom:997.215006px;}
.y2_c00389{bottom:1058.415006px;}
.y1_c00389{bottom:1152.360006px;}
.hd_c00389{height:57.708984px;}
.h2_c00389{height:60.064453px;}
.h6_c00389{height:68.274609px;}
.hb_c00389{height:71.248130px;}
.h3_c00389{height:71.252930px;}
.h9_c00389{height:71.262530px;}
.h4_c00389{height:71.268530px;}
.hc_c00389{height:71.841797px;}
.ha_c00389{height:71.964844px;}
.h5_c00389{height:73.019531px;}
.h7_c00389{height:103.640625px;}
.h8_c00389{height:119.524219px;}
.h1_c00389{height:1263.000000px;}
.h0_c00389{height:1263.240006px;}
.w1_c00389{width:892.500000px;}
.w0_c00389{width:892.799998px;}
.x0_c00389{left:0.000000px;}
.x37_c00389{left:106.870798px;}
.x12_c00389{left:108.030899px;}
.x4_c00389{left:109.244848px;}
.x2_c00389{left:110.654999px;}
.x1_c00389{left:111.884999px;}
.x21_c00389{left:131.519999px;}
.x7_c00389{left:134.789998px;}
.x22_c00389{left:152.459998px;}
.x3f_c00389{left:160.913398px;}
.x1e_c00389{left:161.999998px;}
.x3_c00389{left:163.349998px;}
.x4f_c00389{left:167.594999px;}
.x23_c00389{left:176.234998px;}
.xe_c00389{left:183.074998px;}
.x50_c00389{left:190.394998px;}
.x24_c00389{left:196.034999px;}
.xf_c00389{left:204.644999px;}
.x47_c00389{left:219.794998px;}
.x48_c00389{left:240.179998px;}
.x25_c00389{left:247.514998px;}
.xa_c00389{left:251.114998px;}
.x2e_c00389{left:256.154999px;}
.x13_c00389{left:261.974999px;}
.x26_c00389{left:270.269999px;}
.xb_c00389{left:273.404999px;}
.x38_c00389{left:275.594999px;}
.x2f_c00389{left:277.724999px;}
.x14_c00389{left:291.764998px;}
.x39_c00389{left:297.224999px;}
.x30_c00389{left:313.034999px;}
.x1c_c00389{left:329.234998px;}
.x31_c00389{left:335.699999px;}
.x49_c00389{left:347.234998px;}
.x1d_c00389{left:351.209999px;}
.x51_c00389{left:360.884999px;}
.x4a_c00389{left:367.829998px;}
.x27_c00389{left:370.634999px;}
.xc_c00389{left:381.074998px;}
.x52_c00389{left:384.149999px;}
.xd_c00389{left:402.794999px;}
.x28_c00389{left:422.789999px;}
.x54_c00389{left:423.914999px;}
.x29_c00389{left:445.244999px;}
.x4b_c00389{left:458.474999px;}
.x2c_c00389{left:459.689999px;}
.x32_c00389{left:473.594998px;}
.x4c_c00389{left:478.694999px;}
.x2d_c00389{left:487.604998px;}
.x33_c00389{left:500.714998px;}
.x8_c00389{left:504.914999px;}
.x3a_c00389{left:524.714998px;}
.x9_c00389{left:526.889998px;}
.x42_c00389{left:528.314999px;}
.x1f_c00389{left:542.354998px;}
.x3b_c00389{left:544.544999px;}
.x4e_c00389{left:545.564999px;}
.x15_c00389{left:549.554999px;}
.x4d_c00389{left:551.714998px;}
.x43_c00389{left:554.129999px;}
.x5_c00389{left:558.839998px;}
.x20_c00389{left:565.154998px;}
.x16_c00389{left:572.969998px;}
.x6_c00389{left:579.404998px;}
.x34_c00389{left:598.154998px;}
.x17_c00389{left:600.254999px;}
.x44_c00389{left:608.579998px;}
.x53_c00389{left:611.744999px;}
.x18_c00389{left:620.444999px;}
.x35_c00389{left:625.484998px;}
.x2a_c00389{left:628.754999px;}
.x45_c00389{left:632.489998px;}
.x3c_c00389{left:636.734998px;}
.x19_c00389{left:642.629999px;}
.x2b_c00389{left:651.119999px;}
.x10_c00389{left:656.114998px;}
.x3d_c00389{left:658.664999px;}
.x1a_c00389{left:673.769998px;}
.x11_c00389{left:678.194999px;}
.x1b_c00389{left:693.539999px;}
.x36_c00389{left:701.609998px;}
.x40_c00389{left:719.474999px;}
.x46_c00389{left:727.004999px;}
.x41_c00389{left:746.384999px;}
.x3e_c00389{left:747.554999px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls7b_c00389{letter-spacing:-3.565333pt;}
.ls6c_c00389{letter-spacing:-3.285333pt;}
.ls52_c00389{letter-spacing:-2.314667pt;}
.ls8b_c00389{letter-spacing:-2.277333pt;}
.ls40_c00389{letter-spacing:-2.258667pt;}
.ls44_c00389{letter-spacing:-2.142507pt;}
.ls87_c00389{letter-spacing:-2.077973pt;}
.ls4c_c00389{letter-spacing:-1.981173pt;}
.ls2c_c00389{letter-spacing:-1.929547pt;}
.ls42_c00389{letter-spacing:-1.813387pt;}
.ls75_c00389{letter-spacing:-1.774667pt;}
.ls32_c00389{letter-spacing:-1.671413pt;}
.ls59_c00389{letter-spacing:-1.600427pt;}
.ls77_c00389{letter-spacing:-1.587520pt;}
.ls81_c00389{letter-spacing:-1.574613pt;}
.ls93_c00389{letter-spacing:-1.432640pt;}
.ls3a_c00389{letter-spacing:-1.393920pt;}
.ls46_c00389{letter-spacing:-1.374560pt;}
.ls58_c00389{letter-spacing:-1.290667pt;}
.ls8e_c00389{letter-spacing:-1.264853pt;}
.ls48_c00389{letter-spacing:-1.213227pt;}
.ls82_c00389{letter-spacing:-1.161600pt;}
.ls29_c00389{letter-spacing:-1.142240pt;}
.ls8a_c00389{letter-spacing:-0.968000pt;}
.ls67_c00389{letter-spacing:-0.942187pt;}
.ls35_c00389{letter-spacing:-0.864747pt;}
.ls5e_c00389{letter-spacing:-0.858293pt;}
.ls41_c00389{letter-spacing:-0.819573pt;}
.ls4d_c00389{letter-spacing:-0.793760pt;}
.ls4e_c00389{letter-spacing:-0.735680pt;}
.ls2b_c00389{letter-spacing:-0.703413pt;}
.ls39_c00389{letter-spacing:-0.677600pt;}
.ls91_c00389{letter-spacing:-0.632427pt;}
.ls53_c00389{letter-spacing:-0.606293pt;}
.ls54_c00389{letter-spacing:-0.580800pt;}
.ls4b_c00389{letter-spacing:-0.554987pt;}
.ls7d_c00389{letter-spacing:-0.535627pt;}
.ls8c_c00389{letter-spacing:-0.522720pt;}
.ls45_c00389{letter-spacing:-0.496907pt;}
.ls92_c00389{letter-spacing:-0.484000pt;}
.ls7e_c00389{letter-spacing:-0.471093pt;}
.ls4a_c00389{letter-spacing:-0.464640pt;}
.ls72_c00389{letter-spacing:-0.432373pt;}
.ls3e_c00389{letter-spacing:-0.413013pt;}
.ls3d_c00389{letter-spacing:-0.387200pt;}
.ls38_c00389{letter-spacing:-0.380747pt;}
.ls31_c00389{letter-spacing:-0.374293pt;}
.ls71_c00389{letter-spacing:-0.367840pt;}
.ls68_c00389{letter-spacing:-0.342027pt;}
.ls5f_c00389{letter-spacing:-0.329120pt;}
.ls47_c00389{letter-spacing:-0.316213pt;}
.ls66_c00389{letter-spacing:-0.309760pt;}
.ls5a_c00389{letter-spacing:-0.303307pt;}
.ls88_c00389{letter-spacing:-0.296853pt;}
.ls43_c00389{letter-spacing:-0.283947pt;}
.ls86_c00389{letter-spacing:-0.277493pt;}
.ls30_c00389{letter-spacing:-0.271040pt;}
.ls6d_c00389{letter-spacing:-0.259840pt;}
.ls36_c00389{letter-spacing:-0.258133pt;}
.ls3c_c00389{letter-spacing:-0.251680pt;}
.ls70_c00389{letter-spacing:-0.245227pt;}
.ls90_c00389{letter-spacing:-0.238773pt;}
.ls60_c00389{letter-spacing:-0.232320pt;}
.ls3b_c00389{letter-spacing:-0.225867pt;}
.ls37_c00389{letter-spacing:-0.212960pt;}
.ls57_c00389{letter-spacing:-0.206507pt;}
.ls64_c00389{letter-spacing:-0.200053pt;}
.ls4f_c00389{letter-spacing:-0.193600pt;}
.ls2d_c00389{letter-spacing:-0.174240pt;}
.ls2e_c00389{letter-spacing:-0.167787pt;}
.ls55_c00389{letter-spacing:-0.161333pt;}
.ls56_c00389{letter-spacing:-0.154880pt;}
.ls5d_c00389{letter-spacing:-0.148427pt;}
.ls65_c00389{letter-spacing:-0.141973pt;}
.ls89_c00389{letter-spacing:-0.135520pt;}
.ls5c_c00389{letter-spacing:-0.129067pt;}
.ls7f_c00389{letter-spacing:-0.116160pt;}
.ls51_c00389{letter-spacing:-0.109707pt;}
.ls33_c00389{letter-spacing:-0.096800pt;}
.ls34_c00389{letter-spacing:-0.090347pt;}
.ls62_c00389{letter-spacing:-0.083893pt;}
.ls63_c00389{letter-spacing:-0.070987pt;}
.ls74_c00389{letter-spacing:-0.058080pt;}
.ls3f_c00389{letter-spacing:-0.045173pt;}
.ls80_c00389{letter-spacing:-0.038720pt;}
.ls8f_c00389{letter-spacing:-0.032267pt;}
.ls61_c00389{letter-spacing:-0.019360pt;}
.ls5b_c00389{letter-spacing:-0.012907pt;}
.ls49_c00389{letter-spacing:-0.006453pt;}
.ls2f_c00389{letter-spacing:0.000000pt;}
.ls2_c00389{letter-spacing:0.019360pt;}
.ls1f_c00389{letter-spacing:0.032267pt;}
.ls20_c00389{letter-spacing:0.038720pt;}
.ls12_c00389{letter-spacing:0.045173pt;}
.ls24_c00389{letter-spacing:0.051627pt;}
.lsc_c00389{letter-spacing:0.058080pt;}
.ls6f_c00389{letter-spacing:0.077440pt;}
.ls10_c00389{letter-spacing:0.083893pt;}
.ls14_c00389{letter-spacing:0.090347pt;}
.ls5_c00389{letter-spacing:0.103253pt;}
.ls17_c00389{letter-spacing:0.116160pt;}
.ls50_c00389{letter-spacing:0.135520pt;}
.ls9_c00389{letter-spacing:0.141973pt;}
.ls1a_c00389{letter-spacing:0.167787pt;}
.ls19_c00389{letter-spacing:0.180693pt;}
.lsd_c00389{letter-spacing:0.212960pt;}
.ls73_c00389{letter-spacing:0.219413pt;}
.ls1_c00389{letter-spacing:0.225867pt;}
.ls8_c00389{letter-spacing:0.238773pt;}
.ls27_c00389{letter-spacing:0.283947pt;}
.ls76_c00389{letter-spacing:0.316213pt;}
.ls8d_c00389{letter-spacing:0.335573pt;}
.lsb_c00389{letter-spacing:0.342027pt;}
.ls1e_c00389{letter-spacing:0.374293pt;}
.ls18_c00389{letter-spacing:0.393653pt;}
.ls84_c00389{letter-spacing:0.457813pt;}
.ls6a_c00389{letter-spacing:0.507307pt;}
.lse_c00389{letter-spacing:0.580800pt;}
.ls1c_c00389{letter-spacing:0.661973pt;}
.ls6b_c00389{letter-spacing:0.674347pt;}
.ls85_c00389{letter-spacing:0.723840pt;}
.ls6_c00389{letter-spacing:0.736213pt;}
.ls4_c00389{letter-spacing:0.761493pt;}
.ls78_c00389{letter-spacing:0.773333pt;}
.ls3_c00389{letter-spacing:0.800213pt;}
.ls94_c00389{letter-spacing:0.804907pt;}
.lsf_c00389{letter-spacing:0.819573pt;}
.ls69_c00389{letter-spacing:0.835200pt;}
.ls7_c00389{letter-spacing:0.838933pt;}
.ls6e_c00389{letter-spacing:0.845387pt;}
.lsa_c00389{letter-spacing:0.877653pt;}
.ls25_c00389{letter-spacing:0.884693pt;}
.ls83_c00389{letter-spacing:0.890880pt;}
.ls7c_c00389{letter-spacing:0.946560pt;}
.ls21_c00389{letter-spacing:0.981760pt;}
.ls7a_c00389{letter-spacing:1.045547pt;}
.ls1d_c00389{letter-spacing:1.076480pt;}
.ls79_c00389{letter-spacing:1.132160pt;}
.ls28_c00389{letter-spacing:1.142400pt;}
.ls15_c00389{letter-spacing:1.206400pt;}
.ls22_c00389{letter-spacing:1.323947pt;}
.ls1b_c00389{letter-spacing:1.404373pt;}
.ls13_c00389{letter-spacing:1.439093pt;}
.ls26_c00389{letter-spacing:1.682773pt;}
.ls23_c00389{letter-spacing:1.818773pt;}
.ls11_c00389{letter-spacing:2.077973pt;}
.ls16_c00389{letter-spacing:2.183893pt;}
.ls0_c00389{letter-spacing:2.361920pt;}
.ls2a_c00389{letter-spacing:2.710400pt;}
.ws5_c00389{word-spacing:0.000000pt;}
.ws0_c00389{word-spacing:2.778027pt;}
.ws4_c00389{word-spacing:4.352000pt;}
.ws1_c00389{word-spacing:6.882133pt;}
.ws2_c00389{word-spacing:14.102827pt;}
.ws3_c00389{word-spacing:14.939467pt;}
._14_c00389{margin-left:-15.788373pt;}
._1_c00389{margin-left:-3.071787pt;}
._10_c00389{margin-left:-1.253600pt;}
._f_c00389{width:0.903467pt;}
._11_c00389{width:2.037600pt;}
._12_c00389{width:3.097600pt;}
._c_c00389{width:4.084960pt;}
._13_c00389{width:4.994880pt;}
._0_c00389{width:6.435627pt;}
._e_c00389{width:8.034400pt;}
._d_c00389{width:9.538027pt;}
._5_c00389{width:10.964213pt;}
._6_c00389{width:12.371040pt;}
._2_c00389{width:13.455200pt;}
._17_c00389{width:14.516747pt;}
._18_c00389{width:15.730027pt;}
._4_c00389{width:17.140053pt;}
._3_c00389{width:18.630773pt;}
._7_c00389{width:19.798827pt;}
._15_c00389{width:20.779733pt;}
._a_c00389{width:21.825173pt;}
._b_c00389{width:22.760907pt;}
._8_c00389{width:23.716000pt;}
._9_c00389{width:25.037813pt;}
._16_c00389{width:26.245707pt;}
.fs9_c00389{font-size:52.266667pt;}
.fs0_c00389{font-size:54.400000pt;}
.fs7_c00389{font-size:61.333333pt;}
.fs2_c00389{font-size:61.866667pt;}
.fs5_c00389{font-size:62.933333pt;}
.fs1_c00389{font-size:64.533333pt;}
.fs8_c00389{font-size:65.066667pt;}
.fs3_c00389{font-size:66.133333pt;}
.fs4_c00389{font-size:93.866667pt;}
.fs6_c00389{font-size:101.866667pt;}
.y0_c00389{bottom:0.000000pt;}
.y29_c00389{bottom:89.920005pt;}
.y28_c00389{bottom:145.273739pt;}
.y26_c00389{bottom:172.809872pt;}
.y27_c00389{bottom:172.813339pt;}
.y25_c00389{bottom:200.333339pt;}
.y24_c00389{bottom:200.334405pt;}
.y23_c00389{bottom:255.040005pt;}
.y22_c00389{bottom:255.047205pt;}
.y21_c00389{bottom:282.893339pt;}
.y1f_c00389{bottom:309.771205pt;}
.y20_c00389{bottom:309.773339pt;}
.y1e_c00389{bottom:363.533339pt;}
.y1c_c00389{bottom:392.009872pt;}
.y1d_c00389{bottom:392.013339pt;}
.y1b_c00389{bottom:419.533339pt;}
.y1a_c00389{bottom:447.360005pt;}
.y18_c00389{bottom:502.409872pt;}
.y19_c00389{bottom:502.413339pt;}
.y16_c00389{bottom:529.929872pt;}
.y17_c00389{bottom:529.933339pt;}
.y15_c00389{bottom:557.453339pt;}
.y14_c00389{bottom:584.973339pt;}
.y13_c00389{bottom:584.974539pt;}
.y12_c00389{bottom:611.836539pt;}
.y11_c00389{bottom:639.360005pt;}
.y10_c00389{bottom:694.413339pt;}
.yf_c00389{bottom:694.415339pt;}
.ye_c00389{bottom:721.600005pt;}
.yd_c00389{bottom:721.607205pt;}
.yb_c00389{bottom:749.452539pt;}
.yc_c00389{bottom:749.453339pt;}
.y9_c00389{bottom:776.652672pt;}
.ya_c00389{bottom:776.653339pt;}
.y7_c00389{bottom:804.156539pt;}
.y8_c00389{bottom:804.160005pt;}
.y5_c00389{bottom:831.676405pt;}
.y6_c00389{bottom:831.680005pt;}
.y4_c00389{bottom:858.889872pt;}
.y3_c00389{bottom:886.413339pt;}
.y2_c00389{bottom:940.813339pt;}
.y1_c00389{bottom:1024.320005pt;}
.hd_c00389{height:51.296875pt;}
.h2_c00389{height:53.390625pt;}
.h6_c00389{height:60.688542pt;}
.hb_c00389{height:63.331671pt;}
.h3_c00389{height:63.335938pt;}
.h9_c00389{height:63.344471pt;}
.h4_c00389{height:63.349804pt;}
.hc_c00389{height:63.859375pt;}
.ha_c00389{height:63.968750pt;}
.h5_c00389{height:64.906250pt;}
.h7_c00389{height:92.125000pt;}
.h8_c00389{height:106.243750pt;}
.h1_c00389{height:1122.666667pt;}
.h0_c00389{height:1122.880005pt;}
.w1_c00389{width:793.333333pt;}
.w0_c00389{width:793.599999pt;}
.x0_c00389{left:0.000000pt;}
.x37_c00389{left:94.996265pt;}
.x12_c00389{left:96.027465pt;}
.x4_c00389{left:97.106532pt;}
.x2_c00389{left:98.359999pt;}
.x1_c00389{left:99.453332pt;}
.x21_c00389{left:116.906665pt;}
.x7_c00389{left:119.813332pt;}
.x22_c00389{left:135.519999pt;}
.x3f_c00389{left:143.034132pt;}
.x1e_c00389{left:143.999999pt;}
.x3_c00389{left:145.199999pt;}
.x4f_c00389{left:148.973332pt;}
.x23_c00389{left:156.653332pt;}
.xe_c00389{left:162.733332pt;}
.x50_c00389{left:169.239999pt;}
.x24_c00389{left:174.253332pt;}
.xf_c00389{left:181.906665pt;}
.x47_c00389{left:195.373332pt;}
.x48_c00389{left:213.493332pt;}
.x25_c00389{left:220.013332pt;}
.xa_c00389{left:223.213332pt;}
.x2e_c00389{left:227.693332pt;}
.x13_c00389{left:232.866665pt;}
.x26_c00389{left:240.239999pt;}
.xb_c00389{left:243.026665pt;}
.x38_c00389{left:244.973332pt;}
.x2f_c00389{left:246.866665pt;}
.x14_c00389{left:259.346665pt;}
.x39_c00389{left:264.199999pt;}
.x30_c00389{left:278.253332pt;}
.x1c_c00389{left:292.653332pt;}
.x31_c00389{left:298.399999pt;}
.x49_c00389{left:308.653332pt;}
.x1d_c00389{left:312.186665pt;}
.x51_c00389{left:320.786665pt;}
.x4a_c00389{left:326.959999pt;}
.x27_c00389{left:329.453332pt;}
.xc_c00389{left:338.733332pt;}
.x52_c00389{left:341.466665pt;}
.xd_c00389{left:358.039999pt;}
.x28_c00389{left:375.813332pt;}
.x54_c00389{left:376.813332pt;}
.x29_c00389{left:395.773332pt;}
.x4b_c00389{left:407.533332pt;}
.x2c_c00389{left:408.613332pt;}
.x32_c00389{left:420.973332pt;}
.x4c_c00389{left:425.506665pt;}
.x2d_c00389{left:433.426665pt;}
.x33_c00389{left:445.079999pt;}
.x8_c00389{left:448.813332pt;}
.x3a_c00389{left:466.413332pt;}
.x9_c00389{left:468.346665pt;}
.x42_c00389{left:469.613332pt;}
.x1f_c00389{left:482.093332pt;}
.x3b_c00389{left:484.039999pt;}
.x4e_c00389{left:484.946665pt;}
.x15_c00389{left:488.493332pt;}
.x4d_c00389{left:490.413332pt;}
.x43_c00389{left:492.559999pt;}
.x5_c00389{left:496.746665pt;}
.x20_c00389{left:502.359999pt;}
.x16_c00389{left:509.306665pt;}
.x6_c00389{left:515.026665pt;}
.x34_c00389{left:531.693332pt;}
.x17_c00389{left:533.559999pt;}
.x44_c00389{left:540.959999pt;}
.x53_c00389{left:543.773332pt;}
.x18_c00389{left:551.506665pt;}
.x35_c00389{left:555.986665pt;}
.x2a_c00389{left:558.893332pt;}
.x45_c00389{left:562.213332pt;}
.x3c_c00389{left:565.986665pt;}
.x19_c00389{left:571.226665pt;}
.x2b_c00389{left:578.773332pt;}
.x10_c00389{left:583.213332pt;}
.x3d_c00389{left:585.479999pt;}
.x1a_c00389{left:598.906665pt;}
.x11_c00389{left:602.839999pt;}
.x1b_c00389{left:616.479999pt;}
.x36_c00389{left:623.653332pt;}
.x40_c00389{left:639.533332pt;}
.x46_c00389{left:646.226665pt;}
.x41_c00389{left:663.453332pt;}
.x3e_c00389{left:664.493332pt;}
}





/* 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_c00390 {
    display:none;
  }
  .loading-indicator_c00390.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00390 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_c00390 { 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_c00390" -> "#page-container .classname_c00390")
 */
.pf_c00390 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00390 { /* 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_c00390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00390 { /* 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_c00390 { /* 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_c00390 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00390 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00390 {overflow:visible;}
  }
}
.c_c00390 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00390 { /* 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_c00390:after { /* webkit #35443 */
  content: '';
}
.t_c00390:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00390 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 */
}
.__c00390 { /* 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_c00390 { /* info for Javascript */
  display:none;
}
.l_c00390 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00390 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00390 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00390: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_c00390 {
    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_c00390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00390.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_c00390 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00390{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00390;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.311035;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_c00390;src:url('chunks/assets/font_c08ace2d92c1bb204100344b.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.284668;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_c00390;src:url('chunks/assets/font_734160624eae5bab88425cde.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.284180;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_c00390;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;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:ff5_c00390;src:url('chunks/assets/font_b63e2311d1200fe8a975633f.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;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;}
.m5_c00390{transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);}
.m6_c00390{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.m4_c00390{transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);}
.m0_c00390{transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239057,0.000000,0.000000,0.250000,0,0);}
.m7_c00390{transform:matrix(0.239814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239814,0.000000,0.000000,0.250000,0,0);}
.m3_c00390{transform:matrix(0.240930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240930,0.000000,0.000000,0.250000,0,0);}
.m2_c00390{transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);}
.m1_c00390{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);}
.v0_c00390{vertical-align:0.000000px;}
.ls23_c00390{letter-spacing:-2.541000px;}
.ls22_c00390{letter-spacing:-2.478000px;}
.ls21_c00390{letter-spacing:-2.400120px;}
.ls25_c00390{letter-spacing:-2.373000px;}
.ls1f_c00390{letter-spacing:-2.310000px;}
.ls3c_c00390{letter-spacing:-2.046120px;}
.ls37_c00390{letter-spacing:-1.996560px;}
.ls31_c00390{letter-spacing:-1.323960px;}
.ls32_c00390{letter-spacing:-1.281480px;}
.ls3d_c00390{letter-spacing:-1.139880px;}
.ls39_c00390{letter-spacing:-0.955800px;}
.ls3f_c00390{letter-spacing:-0.934560px;}
.ls36_c00390{letter-spacing:-0.814200px;}
.ls28_c00390{letter-spacing:-0.675120px;}
.ls3a_c00390{letter-spacing:-0.615960px;}
.ls34_c00390{letter-spacing:-0.559320px;}
.ls2a_c00390{letter-spacing:-0.487200px;}
.ls30_c00390{letter-spacing:-0.389400px;}
.ls38_c00390{letter-spacing:-0.318600px;}
.ls42_c00390{letter-spacing:-0.098940px;}
.ls3b_c00390{letter-spacing:-0.084960px;}
.ls35_c00390{letter-spacing:-0.042480px;}
.ls26_c00390{letter-spacing:-0.041760px;}
.ls41_c00390{letter-spacing:-0.021060px;}
.ls20_c00390{letter-spacing:0.000000px;}
.ls6_c00390{letter-spacing:0.042480px;}
.ls19_c00390{letter-spacing:0.056640px;}
.ls14_c00390{letter-spacing:0.077880px;}
.ls11_c00390{letter-spacing:0.099120px;}
.ls33_c00390{letter-spacing:0.134520px;}
.ls2d_c00390{letter-spacing:0.160080px;}
.ls12_c00390{letter-spacing:0.184080px;}
.ls3e_c00390{letter-spacing:0.254880px;}
.lsd_c00390{letter-spacing:0.283200px;}
.ls18_c00390{letter-spacing:0.304440px;}
.ls2b_c00390{letter-spacing:0.306240px;}
.ls10_c00390{letter-spacing:0.318600px;}
.ls2c_c00390{letter-spacing:0.320160px;}
.lsc_c00390{letter-spacing:0.325680px;}
.ls1a_c00390{letter-spacing:0.361080px;}
.ls17_c00390{letter-spacing:0.403560px;}
.ls9_c00390{letter-spacing:0.495600px;}
.ls5_c00390{letter-spacing:0.502680px;}
.ls7_c00390{letter-spacing:0.523920px;}
.ls1b_c00390{letter-spacing:0.552240px;}
.ls16_c00390{letter-spacing:0.566400px;}
.lsb_c00390{letter-spacing:0.573480px;}
.ls2f_c00390{letter-spacing:0.584640px;}
.ls1_c00390{letter-spacing:0.587640px;}
.ls0_c00390{letter-spacing:0.594720px;}
.lse_c00390{letter-spacing:0.601800px;}
.ls1d_c00390{letter-spacing:0.633360px;}
.ls4_c00390{letter-spacing:0.693840px;}
.lsa_c00390{letter-spacing:0.709920px;}
.ls27_c00390{letter-spacing:0.716880px;}
.ls1c_c00390{letter-spacing:0.736320px;}
.ls2_c00390{letter-spacing:0.737760px;}
.ls40_c00390{letter-spacing:0.751680px;}
.lsf_c00390{letter-spacing:0.870840px;}
.ls2e_c00390{letter-spacing:0.890880px;}
.ls15_c00390{letter-spacing:0.927480px;}
.ls1e_c00390{letter-spacing:0.995280px;}
.ls29_c00390{letter-spacing:1.009200px;}
.ls13_c00390{letter-spacing:1.026600px;}
.ls24_c00390{letter-spacing:1.030080px;}
.ls3_c00390{letter-spacing:1.224960px;}
.ls8_c00390{letter-spacing:1.401840px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{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__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00390{word-spacing:0.000000px;}
._5_c00390{margin-left:-17.024160px;}
._15_c00390{margin-left:-1.585920px;}
._14_c00390{width:1.316880px;}
._a_c00390{width:2.690400px;}
._4_c00390{width:3.816000px;}
._d_c00390{width:5.239200px;}
._c_c00390{width:6.552000px;}
._b_c00390{width:8.167080px;}
._f_c00390{width:9.424560px;}
._e_c00390{width:10.931520px;}
._10_c00390{width:12.602400px;}
._11_c00390{width:14.209080px;}
._9_c00390{width:16.864560px;}
._12_c00390{width:18.238080px;}
._6_c00390{width:19.569120px;}
._7_c00390{width:21.098400px;}
._8_c00390{width:23.583480px;}
._13_c00390{width:25.365120px;}
._16_c00390{width:29.334240px;}
._1_c00390{width:33.488400px;}
._0_c00390{width:35.513280px;}
._2_c00390{width:37.885080px;}
._3_c00390{width:41.835720px;}
.fc0_c00390{color:transparent;}
.fs7_c00390{font-size:58.200000px;}
.fs0_c00390{font-size:66.000000px;}
.fs4_c00390{font-size:67.800000px;}
.fs5_c00390{font-size:68.400000px;}
.fs3_c00390{font-size:69.600000px;}
.fs6_c00390{font-size:70.200000px;}
.fs1_c00390{font-size:70.800000px;}
.fs2_c00390{font-size:72.600000px;}
.y0_c00390{bottom:0.000000px;}
.yc_c00390{bottom:109.455000px;}
.yb_c00390{bottom:583.942800px;}
.ya_c00390{bottom:721.455000px;}
.y9_c00390{bottom:834.140400px;}
.y8_c00390{bottom:865.074000px;}
.y7_c00390{bottom:895.695000px;}
.y6_c00390{bottom:926.274000px;}
.y5_c00390{bottom:956.895000px;}
.y4_c00390{bottom:1018.815000px;}
.y3_c00390{bottom:1049.760000px;}
.y2_c00390{bottom:1080.375000px;}
.y1_c00390{bottom:1155.975000px;}
.ha_c00390{height:57.120117px;}
.h2_c00390{height:66.515625px;}
.h5_c00390{height:68.274609px;}
.h3_c00390{height:69.486328px;}
.h7_c00390{height:69.510328px;}
.h6_c00390{height:70.713281px;}
.h4_c00390{height:71.252930px;}
.h8_c00390{height:71.339063px;}
.h9_c00390{height:73.185206px;}
.h1_c00390{height:1263.000000px;}
.h0_c00390{height:1263.240000px;}
.w1_c00390{width:892.500000px;}
.w0_c00390{width:892.800000px;}
.x0_c00390{left:0.000000px;}
.x15_c00390{left:103.185000px;}
.x1_c00390{left:104.685000px;}
.x1a_c00390{left:148.170000px;}
.x1d_c00390{left:149.250000px;}
.x16_c00390{left:168.630000px;}
.x17_c00390{left:188.910000px;}
.x1b_c00390{left:198.285000px;}
.x9_c00390{left:204.270000px;}
.x1c_c00390{left:220.500000px;}
.xa_c00390{left:225.870000px;}
.xb_c00390{left:275.190000px;}
.x18_c00390{left:276.990000px;}
.xc_c00390{left:293.955000px;}
.x19_c00390{left:297.645000px;}
.x1f_c00390{left:326.158200px;}
.x1e_c00390{left:348.840000px;}
.xd_c00390{left:370.230000px;}
.xe_c00390{left:391.830000px;}
.x20_c00390{left:417.795000px;}
.x2_c00390{left:429.375000px;}
.xf_c00390{left:457.350000px;}
.x3_c00390{left:466.020000px;}
.x10_c00390{left:479.025000px;}
.x4_c00390{left:496.635000px;}
.x5_c00390{left:524.385000px;}
.x11_c00390{left:563.190000px;}
.x12_c00390{left:584.595000px;}
.x6_c00390{left:633.390000px;}
.x13_c00390{left:649.950000px;}
.x7_c00390{left:662.910000px;}
.x14_c00390{left:671.100000px;}
.x8_c00390{left:741.030000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls23_c00390{letter-spacing:-2.258667pt;}
.ls22_c00390{letter-spacing:-2.202667pt;}
.ls21_c00390{letter-spacing:-2.133440pt;}
.ls25_c00390{letter-spacing:-2.109333pt;}
.ls1f_c00390{letter-spacing:-2.053333pt;}
.ls3c_c00390{letter-spacing:-1.818773pt;}
.ls37_c00390{letter-spacing:-1.774720pt;}
.ls31_c00390{letter-spacing:-1.176853pt;}
.ls32_c00390{letter-spacing:-1.139093pt;}
.ls3d_c00390{letter-spacing:-1.013227pt;}
.ls39_c00390{letter-spacing:-0.849600pt;}
.ls3f_c00390{letter-spacing:-0.830720pt;}
.ls36_c00390{letter-spacing:-0.723733pt;}
.ls28_c00390{letter-spacing:-0.600107pt;}
.ls3a_c00390{letter-spacing:-0.547520pt;}
.ls34_c00390{letter-spacing:-0.497173pt;}
.ls2a_c00390{letter-spacing:-0.433067pt;}
.ls30_c00390{letter-spacing:-0.346133pt;}
.ls38_c00390{letter-spacing:-0.283200pt;}
.ls42_c00390{letter-spacing:-0.087947pt;}
.ls3b_c00390{letter-spacing:-0.075520pt;}
.ls35_c00390{letter-spacing:-0.037760pt;}
.ls26_c00390{letter-spacing:-0.037120pt;}
.ls41_c00390{letter-spacing:-0.018720pt;}
.ls20_c00390{letter-spacing:0.000000pt;}
.ls6_c00390{letter-spacing:0.037760pt;}
.ls19_c00390{letter-spacing:0.050347pt;}
.ls14_c00390{letter-spacing:0.069227pt;}
.ls11_c00390{letter-spacing:0.088107pt;}
.ls33_c00390{letter-spacing:0.119573pt;}
.ls2d_c00390{letter-spacing:0.142293pt;}
.ls12_c00390{letter-spacing:0.163627pt;}
.ls3e_c00390{letter-spacing:0.226560pt;}
.lsd_c00390{letter-spacing:0.251733pt;}
.ls18_c00390{letter-spacing:0.270613pt;}
.ls2b_c00390{letter-spacing:0.272213pt;}
.ls10_c00390{letter-spacing:0.283200pt;}
.ls2c_c00390{letter-spacing:0.284587pt;}
.lsc_c00390{letter-spacing:0.289493pt;}
.ls1a_c00390{letter-spacing:0.320960pt;}
.ls17_c00390{letter-spacing:0.358720pt;}
.ls9_c00390{letter-spacing:0.440533pt;}
.ls5_c00390{letter-spacing:0.446827pt;}
.ls7_c00390{letter-spacing:0.465707pt;}
.ls1b_c00390{letter-spacing:0.490880pt;}
.ls16_c00390{letter-spacing:0.503467pt;}
.lsb_c00390{letter-spacing:0.509760pt;}
.ls2f_c00390{letter-spacing:0.519680pt;}
.ls1_c00390{letter-spacing:0.522347pt;}
.ls0_c00390{letter-spacing:0.528640pt;}
.lse_c00390{letter-spacing:0.534933pt;}
.ls1d_c00390{letter-spacing:0.562987pt;}
.ls4_c00390{letter-spacing:0.616747pt;}
.lsa_c00390{letter-spacing:0.631040pt;}
.ls27_c00390{letter-spacing:0.637227pt;}
.ls1c_c00390{letter-spacing:0.654507pt;}
.ls2_c00390{letter-spacing:0.655787pt;}
.ls40_c00390{letter-spacing:0.668160pt;}
.lsf_c00390{letter-spacing:0.774080pt;}
.ls2e_c00390{letter-spacing:0.791893pt;}
.ls15_c00390{letter-spacing:0.824427pt;}
.ls1e_c00390{letter-spacing:0.884693pt;}
.ls29_c00390{letter-spacing:0.897067pt;}
.ls13_c00390{letter-spacing:0.912533pt;}
.ls24_c00390{letter-spacing:0.915627pt;}
.ls3_c00390{letter-spacing:1.088853pt;}
.ls8_c00390{letter-spacing:1.246080pt;}
.ws0_c00390{word-spacing:0.000000pt;}
._5_c00390{margin-left:-15.132587pt;}
._15_c00390{margin-left:-1.409707pt;}
._14_c00390{width:1.170560pt;}
._a_c00390{width:2.391467pt;}
._4_c00390{width:3.392000pt;}
._d_c00390{width:4.657067pt;}
._c_c00390{width:5.824000pt;}
._b_c00390{width:7.259627pt;}
._f_c00390{width:8.377387pt;}
._e_c00390{width:9.716907pt;}
._10_c00390{width:11.202133pt;}
._11_c00390{width:12.630293pt;}
._9_c00390{width:14.990720pt;}
._12_c00390{width:16.211627pt;}
._6_c00390{width:17.394773pt;}
._7_c00390{width:18.754133pt;}
._8_c00390{width:20.963093pt;}
._13_c00390{width:22.546773pt;}
._16_c00390{width:26.074880pt;}
._1_c00390{width:29.767467pt;}
._0_c00390{width:31.567360pt;}
._2_c00390{width:33.675627pt;}
._3_c00390{width:37.187307pt;}
.fs7_c00390{font-size:51.733333pt;}
.fs0_c00390{font-size:58.666667pt;}
.fs4_c00390{font-size:60.266667pt;}
.fs5_c00390{font-size:60.800000pt;}
.fs3_c00390{font-size:61.866667pt;}
.fs6_c00390{font-size:62.400000pt;}
.fs1_c00390{font-size:62.933333pt;}
.fs2_c00390{font-size:64.533333pt;}
.y0_c00390{bottom:0.000000pt;}
.yc_c00390{bottom:97.293333pt;}
.yb_c00390{bottom:519.060267pt;}
.ya_c00390{bottom:641.293333pt;}
.y9_c00390{bottom:741.458133pt;}
.y8_c00390{bottom:768.954667pt;}
.y7_c00390{bottom:796.173333pt;}
.y6_c00390{bottom:823.354667pt;}
.y5_c00390{bottom:850.573333pt;}
.y4_c00390{bottom:905.613333pt;}
.y3_c00390{bottom:933.120000pt;}
.y2_c00390{bottom:960.333333pt;}
.y1_c00390{bottom:1027.533333pt;}
.ha_c00390{height:50.773437pt;}
.h2_c00390{height:59.125000pt;}
.h5_c00390{height:60.688542pt;}
.h3_c00390{height:61.765625pt;}
.h7_c00390{height:61.786958pt;}
.h6_c00390{height:62.856250pt;}
.h4_c00390{height:63.335938pt;}
.h8_c00390{height:63.412500pt;}
.h9_c00390{height:65.053517pt;}
.h1_c00390{height:1122.666667pt;}
.h0_c00390{height:1122.880000pt;}
.w1_c00390{width:793.333333pt;}
.w0_c00390{width:793.600000pt;}
.x0_c00390{left:0.000000pt;}
.x15_c00390{left:91.720000pt;}
.x1_c00390{left:93.053333pt;}
.x1a_c00390{left:131.706667pt;}
.x1d_c00390{left:132.666667pt;}
.x16_c00390{left:149.893333pt;}
.x17_c00390{left:167.920000pt;}
.x1b_c00390{left:176.253333pt;}
.x9_c00390{left:181.573333pt;}
.x1c_c00390{left:196.000000pt;}
.xa_c00390{left:200.773333pt;}
.xb_c00390{left:244.613333pt;}
.x18_c00390{left:246.213333pt;}
.xc_c00390{left:261.293333pt;}
.x19_c00390{left:264.573333pt;}
.x1f_c00390{left:289.918400pt;}
.x1e_c00390{left:310.080000pt;}
.xd_c00390{left:329.093333pt;}
.xe_c00390{left:348.293333pt;}
.x20_c00390{left:371.373333pt;}
.x2_c00390{left:381.666667pt;}
.xf_c00390{left:406.533333pt;}
.x3_c00390{left:414.240000pt;}
.x10_c00390{left:425.800000pt;}
.x4_c00390{left:441.453333pt;}
.x5_c00390{left:466.120000pt;}
.x11_c00390{left:500.613333pt;}
.x12_c00390{left:519.640000pt;}
.x6_c00390{left:563.013333pt;}
.x13_c00390{left:577.733333pt;}
.x7_c00390{left:589.253333pt;}
.x14_c00390{left:596.533333pt;}
.x8_c00390{left:658.693333pt;}
}





/* 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_c00391 {
    display:none;
  }
  .loading-indicator_c00391.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00391 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_c00391 { 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_c00391" -> "#page-container .classname_c00391")
 */
.pf_c00391 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00391 { /* 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_c00391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00391 { /* 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_c00391 { /* 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_c00391 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00391 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00391 {overflow:visible;}
  }
}
.c_c00391 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00391 { /* 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_c00391:after { /* webkit #35443 */
  content: '';
}
.t_c00391:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00391 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 */
}
.__c00391 { /* 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_c00391 { /* info for Javascript */
  display:none;
}
.l_c00391 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00391 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00391 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00391: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_c00391 {
    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_c00391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00391.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_c00391 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00391{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00391;src:url('chunks/assets/font_480e50f500e41e1e65984e6f.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.284668;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_c00391;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;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_c00391;src:url('chunks/assets/font_5e23818d1c0f6f27577914cd.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00391{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m6_c00391{transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);}
.m2_c00391{transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);}
.m3_c00391{transform:matrix(0.247301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247301,0.000000,0.000000,0.250000,0,0);}
.m5_c00391{transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);}
.m4_c00391{transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{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);}
.v1_c00391{vertical-align:-1.412400px;}
.v0_c00391{vertical-align:0.000000px;}
.ls2a_c00391{letter-spacing:-2.562000px;}
.ls2c_c00391{letter-spacing:-2.478000px;}
.ls30_c00391{letter-spacing:-2.457000px;}
.ls37_c00391{letter-spacing:-1.323960px;}
.ls35_c00391{letter-spacing:-1.125720px;}
.ls33_c00391{letter-spacing:-0.615960px;}
.ls38_c00391{letter-spacing:-0.559320px;}
.ls32_c00391{letter-spacing:-0.417720px;}
.ls36_c00391{letter-spacing:-0.389400px;}
.ls2d_c00391{letter-spacing:0.000000px;}
.lsc_c00391{letter-spacing:0.113280px;}
.ls17_c00391{letter-spacing:0.205320px;}
.ls20_c00391{letter-spacing:0.304440px;}
.ls29_c00391{letter-spacing:0.318600px;}
.ls11_c00391{letter-spacing:0.332760px;}
.ls21_c00391{letter-spacing:0.339840px;}
.ls6_c00391{letter-spacing:0.346920px;}
.ls34_c00391{letter-spacing:0.368160px;}
.ls1e_c00391{letter-spacing:0.403560px;}
.ls9_c00391{letter-spacing:0.481440px;}
.ls10_c00391{letter-spacing:0.495600px;}
.ls26_c00391{letter-spacing:0.531000px;}
.ls31_c00391{letter-spacing:0.533520px;}
.ls23_c00391{letter-spacing:0.573480px;}
.ls12_c00391{letter-spacing:0.587640px;}
.ls1a_c00391{letter-spacing:0.594720px;}
.ls2f_c00391{letter-spacing:0.610740px;}
.ls5_c00391{letter-spacing:0.615960px;}
.ls19_c00391{letter-spacing:0.637200px;}
.lsf_c00391{letter-spacing:0.651360px;}
.ls24_c00391{letter-spacing:0.686760px;}
.ls2_c00391{letter-spacing:0.725460px;}
.ls1b_c00391{letter-spacing:0.750480px;}
.ls39_c00391{letter-spacing:0.771720px;}
.ls22_c00391{letter-spacing:0.800040px;}
.ls16_c00391{letter-spacing:0.800280px;}
.ls4_c00391{letter-spacing:0.870840px;}
.ls15_c00391{letter-spacing:0.877920px;}
.ls27_c00391{letter-spacing:0.892080px;}
.ls3a_c00391{letter-spacing:0.905520px;}
.lsd_c00391{letter-spacing:0.955800px;}
.ls13_c00391{letter-spacing:1.003860px;}
.ls0_c00391{letter-spacing:1.059300px;}
.ls2e_c00391{letter-spacing:1.065720px;}
.ls1d_c00391{letter-spacing:1.069080px;}
.lsb_c00391{letter-spacing:1.076160px;}
.ls1c_c00391{letter-spacing:1.097400px;}
.ls18_c00391{letter-spacing:1.111560px;}
.lsa_c00391{letter-spacing:1.139880px;}
.ls1_c00391{letter-spacing:1.149180px;}
.ls3_c00391{letter-spacing:1.210680px;}
.ls1f_c00391{letter-spacing:1.401840px;}
.ls2b_c00391{letter-spacing:1.458480px;}
.ls7_c00391{letter-spacing:2.088600px;}
.ls8_c00391{letter-spacing:2.152320px;}
.ls25_c00391{letter-spacing:2.166480px;}
.ls14_c00391{letter-spacing:2.216040px;}
.ls28_c00391{letter-spacing:2.315160px;}
.lse_c00391{letter-spacing:2.364720px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{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__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00391{word-spacing:0.000000px;}
._4_c00391{margin-left:-4.038360px;}
._6_c00391{margin-left:-2.747040px;}
._2_c00391{margin-left:-1.274400px;}
._0_c00391{width:1.286400px;}
._5_c00391{width:2.336400px;}
._3_c00391{width:4.078080px;}
._c_c00391{width:9.529680px;}
._d_c00391{width:22.299000px;}
._a_c00391{width:23.958720px;}
._7_c00391{width:25.827840px;}
._b_c00391{width:26.969400px;}
._9_c00391{width:28.376640px;}
._8_c00391{width:30.373200px;}
._1_c00391{width:257.840040px;}
.fc0_c00391{color:transparent;}
.fs6_c00391{font-size:58.800000px;}
.fs2_c00391{font-size:61.200000px;}
.fs3_c00391{font-size:64.200000px;}
.fs5_c00391{font-size:69.000000px;}
.fs4_c00391{font-size:70.200000px;}
.fs1_c00391{font-size:70.800000px;}
.fs0_c00391{font-size:73.200000px;}
.y0_c00391{bottom:0.000000px;}
.ye_c00391{bottom:105.120000px;}
.yd_c00391{bottom:369.374700px;}
.yc_c00391{bottom:401.040000px;}
.ya_c00391{bottom:432.359700px;}
.yb_c00391{bottom:432.360000px;}
.y9_c00391{bottom:493.566300px;}
.y7_c00391{bottom:525.971700px;}
.y8_c00391{bottom:525.975000px;}
.y6_c00391{bottom:556.580400px;}
.y5_c00391{bottom:587.520000px;}
.y4_c00391{bottom:930.975000px;}
.y3_c00391{bottom:1017.360000px;}
.y2_c00391{bottom:1079.295000px;}
.y1_c00391{bottom:1156.695000px;}
.h8_c00391{height:57.708984px;}
.h4_c00391{height:63.829687px;}
.h5_c00391{height:68.863184px;}
.h3_c00391{height:69.486328px;}
.h7_c00391{height:69.499528px;}
.h2_c00391{height:71.841797px;}
.h6_c00391{height:71.943244px;}
.h1_c00391{height:1263.000000px;}
.h0_c00391{height:1263.240000px;}
.w1_c00391{width:892.500000px;}
.w0_c00391{width:892.800000px;}
.x0_c00391{left:0.000000px;}
.xb_c00391{left:104.888700px;}
.x1_c00391{left:107.565000px;}
.xe_c00391{left:141.694800px;}
.x2_c00391{left:150.330000px;}
.xa_c00391{left:158.325000px;}
.xf_c00391{left:194.880000px;}
.x3_c00391{left:196.485000px;}
.x4_c00391{left:214.740000px;}
.x10_c00391{left:219.780000px;}
.x5_c00391{left:343.365000px;}
.x7_c00391{left:356.760000px;}
.x6_c00391{left:391.980000px;}
.x8_c00391{left:407.685000px;}
.x11_c00391{left:421.395000px;}
.x9_c00391{left:434.880000px;}
.xc_c00391{left:663.375000px;}
.xd_c00391{left:691.740000px;}
@media print{
.v1_c00391{vertical-align:-1.255467pt;}
.v0_c00391{vertical-align:0.000000pt;}
.ls2a_c00391{letter-spacing:-2.277333pt;}
.ls2c_c00391{letter-spacing:-2.202667pt;}
.ls30_c00391{letter-spacing:-2.184000pt;}
.ls37_c00391{letter-spacing:-1.176853pt;}
.ls35_c00391{letter-spacing:-1.000640pt;}
.ls33_c00391{letter-spacing:-0.547520pt;}
.ls38_c00391{letter-spacing:-0.497173pt;}
.ls32_c00391{letter-spacing:-0.371307pt;}
.ls36_c00391{letter-spacing:-0.346133pt;}
.ls2d_c00391{letter-spacing:0.000000pt;}
.lsc_c00391{letter-spacing:0.100693pt;}
.ls17_c00391{letter-spacing:0.182507pt;}
.ls20_c00391{letter-spacing:0.270613pt;}
.ls29_c00391{letter-spacing:0.283200pt;}
.ls11_c00391{letter-spacing:0.295787pt;}
.ls21_c00391{letter-spacing:0.302080pt;}
.ls6_c00391{letter-spacing:0.308373pt;}
.ls34_c00391{letter-spacing:0.327253pt;}
.ls1e_c00391{letter-spacing:0.358720pt;}
.ls9_c00391{letter-spacing:0.427947pt;}
.ls10_c00391{letter-spacing:0.440533pt;}
.ls26_c00391{letter-spacing:0.472000pt;}
.ls31_c00391{letter-spacing:0.474240pt;}
.ls23_c00391{letter-spacing:0.509760pt;}
.ls12_c00391{letter-spacing:0.522347pt;}
.ls1a_c00391{letter-spacing:0.528640pt;}
.ls2f_c00391{letter-spacing:0.542880pt;}
.ls5_c00391{letter-spacing:0.547520pt;}
.ls19_c00391{letter-spacing:0.566400pt;}
.lsf_c00391{letter-spacing:0.578987pt;}
.ls24_c00391{letter-spacing:0.610453pt;}
.ls2_c00391{letter-spacing:0.644853pt;}
.ls1b_c00391{letter-spacing:0.667093pt;}
.ls39_c00391{letter-spacing:0.685973pt;}
.ls22_c00391{letter-spacing:0.711147pt;}
.ls16_c00391{letter-spacing:0.711360pt;}
.ls4_c00391{letter-spacing:0.774080pt;}
.ls15_c00391{letter-spacing:0.780373pt;}
.ls27_c00391{letter-spacing:0.792960pt;}
.ls3a_c00391{letter-spacing:0.804907pt;}
.lsd_c00391{letter-spacing:0.849600pt;}
.ls13_c00391{letter-spacing:0.892320pt;}
.ls0_c00391{letter-spacing:0.941600pt;}
.ls2e_c00391{letter-spacing:0.947307pt;}
.ls1d_c00391{letter-spacing:0.950293pt;}
.lsb_c00391{letter-spacing:0.956587pt;}
.ls1c_c00391{letter-spacing:0.975467pt;}
.ls18_c00391{letter-spacing:0.988053pt;}
.lsa_c00391{letter-spacing:1.013227pt;}
.ls1_c00391{letter-spacing:1.021493pt;}
.ls3_c00391{letter-spacing:1.076160pt;}
.ls1f_c00391{letter-spacing:1.246080pt;}
.ls2b_c00391{letter-spacing:1.296427pt;}
.ls7_c00391{letter-spacing:1.856533pt;}
.ls8_c00391{letter-spacing:1.913173pt;}
.ls25_c00391{letter-spacing:1.925760pt;}
.ls14_c00391{letter-spacing:1.969813pt;}
.ls28_c00391{letter-spacing:2.057920pt;}
.lse_c00391{letter-spacing:2.101973pt;}
.ws0_c00391{word-spacing:0.000000pt;}
._4_c00391{margin-left:-3.589653pt;}
._6_c00391{margin-left:-2.441813pt;}
._2_c00391{margin-left:-1.132800pt;}
._0_c00391{width:1.143467pt;}
._5_c00391{width:2.076800pt;}
._3_c00391{width:3.624960pt;}
._c_c00391{width:8.470827pt;}
._d_c00391{width:19.821333pt;}
._a_c00391{width:21.296640pt;}
._7_c00391{width:22.958080pt;}
._b_c00391{width:23.972800pt;}
._9_c00391{width:25.223680pt;}
._8_c00391{width:26.998400pt;}
._1_c00391{width:229.191147pt;}
.fs6_c00391{font-size:52.266667pt;}
.fs2_c00391{font-size:54.400000pt;}
.fs3_c00391{font-size:57.066667pt;}
.fs5_c00391{font-size:61.333333pt;}
.fs4_c00391{font-size:62.400000pt;}
.fs1_c00391{font-size:62.933333pt;}
.fs0_c00391{font-size:65.066667pt;}
.y0_c00391{bottom:0.000000pt;}
.ye_c00391{bottom:93.440000pt;}
.yd_c00391{bottom:328.333067pt;}
.yc_c00391{bottom:356.480000pt;}
.ya_c00391{bottom:384.319733pt;}
.yb_c00391{bottom:384.320000pt;}
.y9_c00391{bottom:438.725600pt;}
.y7_c00391{bottom:467.530400pt;}
.y8_c00391{bottom:467.533333pt;}
.y6_c00391{bottom:494.738133pt;}
.y5_c00391{bottom:522.240000pt;}
.y4_c00391{bottom:827.533333pt;}
.y3_c00391{bottom:904.320000pt;}
.y2_c00391{bottom:959.373333pt;}
.y1_c00391{bottom:1028.173333pt;}
.h8_c00391{height:51.296875pt;}
.h4_c00391{height:56.737500pt;}
.h5_c00391{height:61.211719pt;}
.h3_c00391{height:61.765625pt;}
.h7_c00391{height:61.777358pt;}
.h2_c00391{height:63.859375pt;}
.h6_c00391{height:63.949550pt;}
.h1_c00391{height:1122.666667pt;}
.h0_c00391{height:1122.880000pt;}
.w1_c00391{width:793.333333pt;}
.w0_c00391{width:793.600000pt;}
.x0_c00391{left:0.000000pt;}
.xb_c00391{left:93.234400pt;}
.x1_c00391{left:95.613333pt;}
.xe_c00391{left:125.950933pt;}
.x2_c00391{left:133.626667pt;}
.xa_c00391{left:140.733333pt;}
.xf_c00391{left:173.226667pt;}
.x3_c00391{left:174.653333pt;}
.x4_c00391{left:190.880000pt;}
.x10_c00391{left:195.360000pt;}
.x5_c00391{left:305.213333pt;}
.x7_c00391{left:317.120000pt;}
.x6_c00391{left:348.426667pt;}
.x8_c00391{left:362.386667pt;}
.x11_c00391{left:374.573333pt;}
.x9_c00391{left:386.560000pt;}
.xc_c00391{left:589.666667pt;}
.xd_c00391{left:614.880000pt;}
}





/* 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_c00392 {
    display:none;
  }
  .loading-indicator_c00392.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00392 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_c00392 { 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_c00392" -> "#page-container .classname_c00392")
 */
.pf_c00392 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00392 { /* 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_c00392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00392 { /* 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_c00392 { /* 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_c00392 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00392 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00392 {overflow:visible;}
  }
}
.c_c00392 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00392 { /* 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_c00392:after { /* webkit #35443 */
  content: '';
}
.t_c00392:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00392 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 */
}
.__c00392 { /* 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_c00392 { /* info for Javascript */
  display:none;
}
.l_c00392 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00392 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00392 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00392: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_c00392 {
    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_c00392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00392.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_c00392 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00392{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00392;src:url('chunks/assets/font_5e1330e0331a0a92448383ce.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.284668;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_c00392;src:url('chunks/assets/font_ba489957177296a389a767bf.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.311035;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_c00392;src:url('chunks/assets/font_2ba55f10604c201cc5f9372b.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;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:ff4_c00392;src:url('chunks/assets/font_f854b242092bd364fa59d6df.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;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:ff5_c00392;src:url('chunks/assets/font_d053b5a455e6d147143315f0.woff2')format("woff");}.ff5_c00392{font-family:ff5_c00392;line-height:0.666000;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_c00392;src:url('chunks/assets/font_7c742af27140f1dc309d4d02.woff2')format("woff");}.ff6_c00392{font-family:ff6_c00392;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:ff7_c00392;src:url('chunks/assets/font_604f896e9d71a8fc404b7fbe.woff2')format("woff");}.ff7_c00392{font-family:ff7_c00392;line-height:1.284180;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;}
.mc_c00392{transform:matrix(0.058876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058876,0.000000,0.000000,0.250000,0,0);}
.m12_c00392{transform:matrix(0.075524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075524,0.000000,0.000000,0.250000,0,0);}
.mb_c00392{transform:matrix(0.084281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084281,0.000000,0.000000,0.250000,0,0);}
.m10_c00392{transform:matrix(0.089861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089861,0.000000,0.000000,0.250000,0,0);}
.me_c00392{transform:matrix(0.091253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091253,0.000000,0.000000,0.250000,0,0);}
.m15_c00392{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.md_c00392{transform:matrix(0.102504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102504,0.000000,0.000000,0.250000,0,0);}
.m14_c00392{transform:matrix(0.102865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102865,0.000000,0.000000,0.250000,0,0);}
.m13_c00392{transform:matrix(0.106061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106061,0.000000,0.000000,0.250000,0,0);}
.m9_c00392{transform:matrix(0.106517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106517,0.000000,0.000000,0.250000,0,0);}
.m11_c00392{transform:matrix(0.192744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192744,0.000000,0.000000,0.250000,0,0);}
.mf_c00392{transform:matrix(0.225004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225004,0.000000,0.000000,0.250000,0,0);}
.m2_c00392{transform:matrix(0.230329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230329,0.000000,0.000000,0.250000,0,0);}
.m4_c00392{transform:matrix(0.233697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233697,0.000000,0.000000,0.250000,0,0);}
.m17_c00392{transform:matrix(0.237066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237066,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(0.246173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246173,0.000000,0.000000,0.250000,0,0);}
.m6_c00392{transform:matrix(0.248147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248147,0.000000,0.000000,0.250000,0,0);}
.m3_c00392{transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);}
.m7_c00392{transform:matrix(0.249437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249437,0.000000,0.000000,0.250000,0,0);}
.m8_c00392{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.m0_c00392{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);}
.ma_c00392{transform:matrix(0.256447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256447,0.000000,0.000000,0.250000,0,0);}
.m5_c00392{transform:matrix(0.260779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260779,0.000000,0.000000,0.250000,0,0);}
.m16_c00392{transform:matrix(0.635324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635324,0.000000,0.000000,0.250000,0,0);}
.v16_c00392{vertical-align:-33.120000px;}
.v10_c00392{vertical-align:-31.680000px;}
.ve_c00392{vertical-align:-30.240000px;}
.v3_c00392{vertical-align:-28.842600px;}
.v8_c00392{vertical-align:-20.220000px;}
.v13_c00392{vertical-align:-18.720000px;}
.v9_c00392{vertical-align:-17.280000px;}
.v11_c00392{vertical-align:-15.780000px;}
.v5_c00392{vertical-align:-14.400000px;}
.vd_c00392{vertical-align:-12.960000px;}
.v7_c00392{vertical-align:-11.460000px;}
.va_c00392{vertical-align:-10.020000px;}
.v14_c00392{vertical-align:-8.640000px;}
.vc_c00392{vertical-align:-7.260000px;}
.v4_c00392{vertical-align:-5.700000px;}
.v12_c00392{vertical-align:-4.320000px;}
.v6_c00392{vertical-align:-2.880000px;}
.v2_c00392{vertical-align:-1.428000px;}
.v0_c00392{vertical-align:0.000000px;}
.v1_c00392{vertical-align:1.428000px;}
.vb_c00392{vertical-align:2.880000px;}
.v15_c00392{vertical-align:10.140000px;}
.vf_c00392{vertical-align:12.960000px;}
.ls78_c00392{letter-spacing:-7.875000px;}
.ls7f_c00392{letter-spacing:-3.234000px;}
.ls4e_c00392{letter-spacing:-2.604000px;}
.ls5f_c00392{letter-spacing:-2.499000px;}
.ls7e_c00392{letter-spacing:-2.457000px;}
.ls47_c00392{letter-spacing:-2.373000px;}
.ls46_c00392{letter-spacing:-2.332320px;}
.ls84_c00392{letter-spacing:-1.995000px;}
.ls55_c00392{letter-spacing:-1.884960px;}
.ls4b_c00392{letter-spacing:-1.796700px;}
.ls73_c00392{letter-spacing:-1.735020px;}
.ls5e_c00392{letter-spacing:-1.606500px;}
.ls68_c00392{letter-spacing:-1.485120px;}
.ls5a_c00392{letter-spacing:-1.470840px;}
.ls79_c00392{letter-spacing:-1.442280px;}
.ls61_c00392{letter-spacing:-1.356600px;}
.ls48_c00392{letter-spacing:-1.315320px;}
.ls53_c00392{letter-spacing:-1.192380px;}
.ls50_c00392{letter-spacing:-1.120980px;}
.ls6d_c00392{letter-spacing:-1.056720px;}
.ls7a_c00392{letter-spacing:-1.035300px;}
.ls5b_c00392{letter-spacing:-0.978180px;}
.ls75_c00392{letter-spacing:-0.921060px;}
.ls56_c00392{letter-spacing:-0.885360px;}
.ls4f_c00392{letter-spacing:-0.867840px;}
.ls66_c00392{letter-spacing:-0.792540px;}
.ls51_c00392{letter-spacing:-0.763980px;}
.ls58_c00392{letter-spacing:-0.749700px;}
.ls5c_c00392{letter-spacing:-0.649740px;}
.ls71_c00392{letter-spacing:-0.642600px;}
.ls4a_c00392{letter-spacing:-0.623760px;}
.ls6c_c00392{letter-spacing:-0.599760px;}
.ls76_c00392{letter-spacing:-0.592620px;}
.ls49_c00392{letter-spacing:-0.528840px;}
.ls70_c00392{letter-spacing:-0.471240px;}
.ls65_c00392{letter-spacing:-0.464100px;}
.ls57_c00392{letter-spacing:-0.435540px;}
.ls4d_c00392{letter-spacing:-0.427140px;}
.ls5d_c00392{letter-spacing:-0.399840px;}
.ls82_c00392{letter-spacing:-0.397440px;}
.ls64_c00392{letter-spacing:-0.378420px;}
.ls6f_c00392{letter-spacing:-0.335580px;}
.ls69_c00392{letter-spacing:-0.328440px;}
.ls6b_c00392{letter-spacing:-0.307020px;}
.ls7b_c00392{letter-spacing:-0.299880px;}
.ls74_c00392{letter-spacing:-0.214200px;}
.ls81_c00392{letter-spacing:-0.192060px;}
.ls83_c00392{letter-spacing:-0.186240px;}
.ls6e_c00392{letter-spacing:-0.157080px;}
.ls72_c00392{letter-spacing:-0.128520px;}
.ls63_c00392{letter-spacing:-0.092820px;}
.ls62_c00392{letter-spacing:-0.071400px;}
.ls60_c00392{letter-spacing:-0.049980px;}
.ls54_c00392{letter-spacing:-0.028560px;}
.ls59_c00392{letter-spacing:-0.021420px;}
.ls52_c00392{letter-spacing:-0.007140px;}
.ls4c_c00392{letter-spacing:0.000000px;}
.ls11_c00392{letter-spacing:0.014280px;}
.ls6_c00392{letter-spacing:0.064260px;}
.lsb_c00392{letter-spacing:0.099960px;}
.ls1d_c00392{letter-spacing:0.107100px;}
.ls19_c00392{letter-spacing:0.121380px;}
.ls16_c00392{letter-spacing:0.149940px;}
.ls67_c00392{letter-spacing:0.199920px;}
.ls1c_c00392{letter-spacing:0.235620px;}
.ls1a_c00392{letter-spacing:0.242760px;}
.lsd_c00392{letter-spacing:0.249900px;}
.ls12_c00392{letter-spacing:0.278460px;}
.ls8_c00392{letter-spacing:0.292740px;}
.ls14_c00392{letter-spacing:0.299880px;}
.ls9_c00392{letter-spacing:0.321300px;}
.ls31_c00392{letter-spacing:0.325920px;}
.ls17_c00392{letter-spacing:0.335580px;}
.ls4_c00392{letter-spacing:0.349860px;}
.ls7_c00392{letter-spacing:0.371280px;}
.ls20_c00392{letter-spacing:0.392700px;}
.lsa_c00392{letter-spacing:0.399840px;}
.lse_c00392{letter-spacing:0.414120px;}
.ls5_c00392{letter-spacing:0.421260px;}
.ls1b_c00392{letter-spacing:0.528360px;}
.ls38_c00392{letter-spacing:0.547080px;}
.ls18_c00392{letter-spacing:0.571200px;}
.ls32_c00392{letter-spacing:0.582000px;}
.lsf_c00392{letter-spacing:0.585480px;}
.ls34_c00392{letter-spacing:0.599460px;}
.ls3_c00392{letter-spacing:0.628320px;}
.ls3d_c00392{letter-spacing:0.628560px;}
.ls3e_c00392{letter-spacing:0.634380px;}
.ls28_c00392{letter-spacing:0.640200px;}
.ls40_c00392{letter-spacing:0.680940px;}
.ls27_c00392{letter-spacing:0.692580px;}
.ls77_c00392{letter-spacing:0.721140px;}
.ls3a_c00392{letter-spacing:0.733320px;}
.ls1_c00392{letter-spacing:0.752400px;}
.ls1e_c00392{letter-spacing:0.763980px;}
.ls3c_c00392{letter-spacing:0.768240px;}
.ls25_c00392{letter-spacing:0.774060px;}
.ls23_c00392{letter-spacing:0.779880px;}
.ls29_c00392{letter-spacing:0.785700px;}
.ls35_c00392{letter-spacing:0.791520px;}
.ls3b_c00392{letter-spacing:0.814800px;}
.ls39_c00392{letter-spacing:0.820620px;}
.ls37_c00392{letter-spacing:0.826440px;}
.ls1f_c00392{letter-spacing:0.828240px;}
.ls43_c00392{letter-spacing:0.832260px;}
.ls22_c00392{letter-spacing:0.878820px;}
.ls3f_c00392{letter-spacing:0.896280px;}
.ls2b_c00392{letter-spacing:0.913740px;}
.ls30_c00392{letter-spacing:0.919560px;}
.ls80_c00392{letter-spacing:0.960030px;}
.ls2a_c00392{letter-spacing:0.960300px;}
.ls2f_c00392{letter-spacing:0.966120px;}
.ls33_c00392{letter-spacing:0.995220px;}
.ls2_c00392{letter-spacing:1.049580px;}
.ls10_c00392{letter-spacing:1.113840px;}
.ls44_c00392{letter-spacing:1.146540px;}
.ls36_c00392{letter-spacing:1.193100px;}
.ls0_c00392{letter-spacing:1.301760px;}
.ls21_c00392{letter-spacing:1.315320px;}
.ls2e_c00392{letter-spacing:1.321140px;}
.ls24_c00392{letter-spacing:1.373520px;}
.ls2d_c00392{letter-spacing:1.455000px;}
.ls41_c00392{letter-spacing:1.489920px;}
.ls26_c00392{letter-spacing:1.519020px;}
.lsc_c00392{letter-spacing:1.542240px;}
.ls13_c00392{letter-spacing:1.692180px;}
.ls45_c00392{letter-spacing:1.714980px;}
.ls2c_c00392{letter-spacing:1.786740px;}
.ls15_c00392{letter-spacing:2.013480px;}
.ls7d_c00392{letter-spacing:2.250030px;}
.ls42_c00392{letter-spacing:2.269800px;}
.ls7c_c00392{letter-spacing:2.713200px;}
.ls6a_c00392{letter-spacing:3.600000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{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__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00392{word-spacing:0.000000px;}
._2a_c00392{margin-left:-6.641580px;}
._13_c00392{margin-left:-3.191580px;}
._d_c00392{margin-left:-1.470840px;}
._7_c00392{width:1.845900px;}
._4_c00392{width:3.420060px;}
._6_c00392{width:4.626720px;}
._5_c00392{width:6.147540px;}
._a_c00392{width:7.232820px;}
._9_c00392{width:8.610840px;}
._8_c00392{width:10.045980px;}
._c_c00392{width:11.559660px;}
._b_c00392{width:13.380360px;}
._12_c00392{width:14.669400px;}
._f_c00392{width:16.743300px;}
._e_c00392{width:18.699660px;}
._10_c00392{width:20.577480px;}
._11_c00392{width:22.817820px;}
._1_c00392{width:27.892920px;}
._3_c00392{width:32.954400px;}
._0_c00392{width:34.469520px;}
._2_c00392{width:36.692040px;}
._1b_c00392{width:77.662800px;}
._1a_c00392{width:79.072800px;}
._17_c00392{width:80.280000px;}
._18_c00392{width:81.408600px;}
._16_c00392{width:82.740000px;}
._2e_c00392{width:83.820000px;}
._2f_c00392{width:213.248400px;}
._3d_c00392{width:215.652600px;}
._1c_c00392{width:344.040000px;}
._1f_c00392{width:345.405600px;}
._2d_c00392{width:347.760000px;}
._23_c00392{width:476.523600px;}
._2c_c00392{width:737.432460px;}
._1d_c00392{width:827.943240px;}
._15_c00392{width:831.124980px;}
._24_c00392{width:863.116860px;}
._19_c00392{width:925.589820px;}
._1e_c00392{width:931.981560px;}
._2b_c00392{width:957.306000px;}
._22_c00392{width:959.404200px;}
._29_c00392{width:1010.834520px;}
._3e_c00392{width:1062.086340px;}
._37_c00392{width:1065.105960px;}
._20_c00392{width:1070.406600px;}
._3c_c00392{width:1106.994900px;}
._27_c00392{width:1135.045920px;}
._14_c00392{width:1161.774600px;}
._26_c00392{width:1170.356160px;}
._31_c00392{width:1178.540700px;}
._39_c00392{width:1204.776240px;}
._32_c00392{width:1211.662800px;}
._35_c00392{width:1225.045860px;}
._36_c00392{width:1228.073220px;}
._34_c00392{width:1244.855220px;}
._33_c00392{width:1246.184100px;}
._21_c00392{width:1260.315000px;}
._38_c00392{width:1261.328220px;}
._28_c00392{width:1262.697900px;}
._3f_c00392{width:1265.148840px;}
._3a_c00392{width:1270.832760px;}
._3b_c00392{width:1284.889020px;}
._30_c00392{width:1335.308220px;}
._25_c00392{width:1367.036940px;}
.fc0_c00392{color:transparent;}
.fs14_c00392{font-size:19.200600px;}
.fsf_c00392{font-size:36.000000px;}
.fs12_c00392{font-size:44.640600px;}
.fsc_c00392{font-size:45.000600px;}
.fsd_c00392{font-size:46.080000px;}
.fse_c00392{font-size:47.520000px;}
.fs16_c00392{font-size:56.400000px;}
.fs1b_c00392{font-size:57.000000px;}
.fs10_c00392{font-size:57.600000px;}
.fs15_c00392{font-size:58.200000px;}
.fs0_c00392{font-size:60.600000px;}
.fs3_c00392{font-size:61.800000px;}
.fs2_c00392{font-size:66.000000px;}
.fs6_c00392{font-size:67.200000px;}
.fs1_c00392{font-size:67.800000px;}
.fs11_c00392{font-size:70.200000px;}
.fs5_c00392{font-size:71.400000px;}
.fs8_c00392{font-size:72.000000px;}
.fs4_c00392{font-size:74.400000px;}
.fs19_c00392{font-size:77.400000px;}
.fsb_c00392{font-size:80.400000px;}
.fs7_c00392{font-size:84.000000px;}
.fs1a_c00392{font-size:84.600000px;}
.fs17_c00392{font-size:85.200000px;}
.fs18_c00392{font-size:90.600000px;}
.fs9_c00392{font-size:91.200000px;}
.fs13_c00392{font-size:92.400000px;}
.fsa_c00392{font-size:225.000000px;}
.y0_c00392{bottom:0.000000px;}
.y40_c00392{bottom:104.040000px;}
.y3f_c00392{bottom:159.840000px;}
.y3e_c00392{bottom:177.480000px;}
.y3d_c00392{bottom:195.135000px;}
.y3c_c00392{bottom:212.760000px;}
.y3b_c00392{bottom:230.760000px;}
.y3a_c00392{bottom:248.760000px;}
.y39_c00392{bottom:266.760000px;}
.y38_c00392{bottom:285.135000px;}
.y37_c00392{bottom:303.135000px;}
.y36_c00392{bottom:320.415000px;}
.y35_c00392{bottom:338.415000px;}
.y34_c00392{bottom:356.055000px;}
.y33_c00392{bottom:373.695000px;}
.y32_c00392{bottom:391.320000px;}
.y31_c00392{bottom:409.695000px;}
.y30_c00392{bottom:427.695000px;}
.y2f_c00392{bottom:445.320000px;}
.y2e_c00392{bottom:463.320000px;}
.y2d_c00392{bottom:481.320000px;}
.y2c_c00392{bottom:498.975000px;}
.y2b_c00392{bottom:516.975000px;}
.y2a_c00392{bottom:534.975000px;}
.y29_c00392{bottom:552.615000px;}
.y28_c00392{bottom:570.615000px;}
.y27_c00392{bottom:588.615000px;}
.y26_c00392{bottom:606.240000px;}
.y25_c00392{bottom:623.895000px;}
.y24_c00392{bottom:641.535000px;}
.y23_c00392{bottom:659.535000px;}
.y22_c00392{bottom:677.175000px;}
.y21_c00392{bottom:695.535000px;}
.y20_c00392{bottom:713.175000px;}
.y1f_c00392{bottom:730.800000px;}
.y1e_c00392{bottom:748.800000px;}
.y19_c00392{bottom:765.015000px;}
.y1d_c00392{bottom:765.720000px;}
.y1c_c00392{bottom:767.175000px;}
.y1b_c00392{bottom:767.535000px;}
.y17_c00392{bottom:767.895000px;}
.y16_c00392{bottom:768.240000px;}
.y1a_c00392{bottom:768.600000px;}
.y18_c00392{bottom:770.760000px;}
.y15_c00392{bottom:785.902350px;}
.y14_c00392{bottom:806.055000px;}
.y10_c00392{bottom:827.650650px;}
.y12_c00392{bottom:827.655000px;}
.y11_c00392{bottom:828.015000px;}
.y13_c00392{bottom:832.695000px;}
.yd_c00392{bottom:849.970500px;}
.yf_c00392{bottom:850.335000px;}
.ye_c00392{bottom:850.695000px;}
.yb_c00392{bottom:870.847500px;}
.yc_c00392{bottom:870.855000px;}
.y9_c00392{bottom:891.015000px;}
.y8_c00392{bottom:891.027300px;}
.ya_c00392{bottom:891.375000px;}
.y7_c00392{bottom:953.662950px;}
.y6_c00392{bottom:984.240000px;}
.y5_c00392{bottom:984.250200px;}
.y4_c00392{bottom:1014.862950px;}
.y3_c00392{bottom:1045.440000px;}
.y2_c00392{bottom:1076.400000px;}
.y1_c00392{bottom:1151.280000px;}
.h16_c00392{height:18.844339px;}
.h11_c00392{height:23.976000px;}
.h14_c00392{height:29.730640px;}
.hf_c00392{height:30.689280px;}
.h10_c00392{height:31.648320px;}
.h12_c00392{height:38.361600px;}
.he_c00392{height:46.934220px;}
.h17_c00392{height:57.091699px;}
.h21_c00392{height:59.449219px;}
.h2_c00392{height:59.475586px;}
.h1f_c00392{height:62.870273px;}
.h1e_c00392{height:64.899141px;}
.h1c_c00392{height:66.339141px;}
.h1b_c00392{height:66.399141px;}
.h1d_c00392{height:67.839141px;}
.h3_c00392{height:68.329688px;}
.h19_c00392{height:68.698945px;}
.h6_c00392{height:70.075195px;}
.h5_c00392{height:70.087500px;}
.h1a_c00392{height:70.138945px;}
.h8_c00392{height:70.664062px;}
.h9_c00392{height:71.503195px;}
.ha_c00392{height:71.515195px;}
.hb_c00392{height:71.532595px;}
.h18_c00392{height:71.638945px;}
.h20_c00392{height:71.698945px;}
.h13_c00392{height:73.216406px;}
.h4_c00392{height:74.981250px;}
.h7_c00392{height:82.441406px;}
.hd_c00392{height:83.854688px;}
.h15_c00392{height:96.370313px;}
.hc_c00392{height:234.667969px;}
.h1_c00392{height:1263.000000px;}
.h0_c00392{height:1263.240000px;}
.w1_c00392{width:892.500000px;}
.w0_c00392{width:892.800000px;}
.x0_c00392{left:0.000000px;}
.x1_c00392{left:110.085000px;}
.x1a_c00392{left:137.850000px;}
.x27_c00392{left:142.785000px;}
.xb_c00392{left:143.882250px;}
.x2_c00392{left:164.070000px;}
.x1b_c00392{left:169.920000px;}
.xc_c00392{left:192.390000px;}
.x3_c00392{left:196.815000px;}
.xd_c00392{left:213.030000px;}
.x4_c00392{left:221.220000px;}
.x7_c00392{left:272.265000px;}
.x8_c00392{left:293.580000px;}
.x1c_c00392{left:335.535000px;}
.xe_c00392{left:362.490000px;}
.xf_c00392{left:388.410000px;}
.x12_c00392{left:408.450000px;}
.x28_c00392{left:423.555000px;}
.x13_c00392{left:432.210000px;}
.x1d_c00392{left:437.415000px;}
.x14_c00392{left:444.045000px;}
.x26_c00392{left:451.305000px;}
.x18_c00392{left:454.425000px;}
.x15_c00392{left:468.570000px;}
.x1e_c00392{left:471.960000px;}
.x19_c00392{left:473.940000px;}
.x1f_c00392{left:510.945000px;}
.x20_c00392{left:539.280000px;}
.x21_c00392{left:571.200000px;}
.x22_c00392{left:601.935000px;}
.x10_c00392{left:609.735000px;}
.x16_c00392{left:613.515000px;}
.x5_c00392{left:627.645000px;}
.x11_c00392{left:631.695000px;}
.x17_c00392{left:634.425000px;}
.x23_c00392{left:636.495000px;}
.x6_c00392{left:657.165000px;}
.x24_c00392{left:671.415000px;}
.x9_c00392{left:675.825000px;}
.xa_c00392{left:697.500000px;}
.x25_c00392{left:703.095000px;}
@media print{
.v16_c00392{vertical-align:-29.440000pt;}
.v10_c00392{vertical-align:-28.160000pt;}
.ve_c00392{vertical-align:-26.880000pt;}
.v3_c00392{vertical-align:-25.637867pt;}
.v8_c00392{vertical-align:-17.973333pt;}
.v13_c00392{vertical-align:-16.640000pt;}
.v9_c00392{vertical-align:-15.360000pt;}
.v11_c00392{vertical-align:-14.026667pt;}
.v5_c00392{vertical-align:-12.800000pt;}
.vd_c00392{vertical-align:-11.520000pt;}
.v7_c00392{vertical-align:-10.186667pt;}
.va_c00392{vertical-align:-8.906667pt;}
.v14_c00392{vertical-align:-7.680000pt;}
.vc_c00392{vertical-align:-6.453333pt;}
.v4_c00392{vertical-align:-5.066667pt;}
.v12_c00392{vertical-align:-3.840000pt;}
.v6_c00392{vertical-align:-2.560000pt;}
.v2_c00392{vertical-align:-1.269333pt;}
.v0_c00392{vertical-align:0.000000pt;}
.v1_c00392{vertical-align:1.269333pt;}
.vb_c00392{vertical-align:2.560000pt;}
.v15_c00392{vertical-align:9.013333pt;}
.vf_c00392{vertical-align:11.520000pt;}
.ls78_c00392{letter-spacing:-7.000000pt;}
.ls7f_c00392{letter-spacing:-2.874667pt;}
.ls4e_c00392{letter-spacing:-2.314667pt;}
.ls5f_c00392{letter-spacing:-2.221333pt;}
.ls7e_c00392{letter-spacing:-2.184000pt;}
.ls47_c00392{letter-spacing:-2.109333pt;}
.ls46_c00392{letter-spacing:-2.073173pt;}
.ls84_c00392{letter-spacing:-1.773333pt;}
.ls55_c00392{letter-spacing:-1.675520pt;}
.ls4b_c00392{letter-spacing:-1.597067pt;}
.ls73_c00392{letter-spacing:-1.542240pt;}
.ls5e_c00392{letter-spacing:-1.428000pt;}
.ls68_c00392{letter-spacing:-1.320107pt;}
.ls5a_c00392{letter-spacing:-1.307413pt;}
.ls79_c00392{letter-spacing:-1.282027pt;}
.ls61_c00392{letter-spacing:-1.205867pt;}
.ls48_c00392{letter-spacing:-1.169173pt;}
.ls53_c00392{letter-spacing:-1.059893pt;}
.ls50_c00392{letter-spacing:-0.996427pt;}
.ls6d_c00392{letter-spacing:-0.939307pt;}
.ls7a_c00392{letter-spacing:-0.920267pt;}
.ls5b_c00392{letter-spacing:-0.869493pt;}
.ls75_c00392{letter-spacing:-0.818720pt;}
.ls56_c00392{letter-spacing:-0.786987pt;}
.ls4f_c00392{letter-spacing:-0.771413pt;}
.ls66_c00392{letter-spacing:-0.704480pt;}
.ls51_c00392{letter-spacing:-0.679093pt;}
.ls58_c00392{letter-spacing:-0.666400pt;}
.ls5c_c00392{letter-spacing:-0.577547pt;}
.ls71_c00392{letter-spacing:-0.571200pt;}
.ls4a_c00392{letter-spacing:-0.554453pt;}
.ls6c_c00392{letter-spacing:-0.533120pt;}
.ls76_c00392{letter-spacing:-0.526773pt;}
.ls49_c00392{letter-spacing:-0.470080pt;}
.ls70_c00392{letter-spacing:-0.418880pt;}
.ls65_c00392{letter-spacing:-0.412533pt;}
.ls57_c00392{letter-spacing:-0.387147pt;}
.ls4d_c00392{letter-spacing:-0.379680pt;}
.ls5d_c00392{letter-spacing:-0.355413pt;}
.ls82_c00392{letter-spacing:-0.353280pt;}
.ls64_c00392{letter-spacing:-0.336373pt;}
.ls6f_c00392{letter-spacing:-0.298293pt;}
.ls69_c00392{letter-spacing:-0.291947pt;}
.ls6b_c00392{letter-spacing:-0.272907pt;}
.ls7b_c00392{letter-spacing:-0.266560pt;}
.ls74_c00392{letter-spacing:-0.190400pt;}
.ls81_c00392{letter-spacing:-0.170720pt;}
.ls83_c00392{letter-spacing:-0.165547pt;}
.ls6e_c00392{letter-spacing:-0.139627pt;}
.ls72_c00392{letter-spacing:-0.114240pt;}
.ls63_c00392{letter-spacing:-0.082507pt;}
.ls62_c00392{letter-spacing:-0.063467pt;}
.ls60_c00392{letter-spacing:-0.044427pt;}
.ls54_c00392{letter-spacing:-0.025387pt;}
.ls59_c00392{letter-spacing:-0.019040pt;}
.ls52_c00392{letter-spacing:-0.006347pt;}
.ls4c_c00392{letter-spacing:0.000000pt;}
.ls11_c00392{letter-spacing:0.012693pt;}
.ls6_c00392{letter-spacing:0.057120pt;}
.lsb_c00392{letter-spacing:0.088853pt;}
.ls1d_c00392{letter-spacing:0.095200pt;}
.ls19_c00392{letter-spacing:0.107893pt;}
.ls16_c00392{letter-spacing:0.133280pt;}
.ls67_c00392{letter-spacing:0.177707pt;}
.ls1c_c00392{letter-spacing:0.209440pt;}
.ls1a_c00392{letter-spacing:0.215787pt;}
.lsd_c00392{letter-spacing:0.222133pt;}
.ls12_c00392{letter-spacing:0.247520pt;}
.ls8_c00392{letter-spacing:0.260213pt;}
.ls14_c00392{letter-spacing:0.266560pt;}
.ls9_c00392{letter-spacing:0.285600pt;}
.ls31_c00392{letter-spacing:0.289707pt;}
.ls17_c00392{letter-spacing:0.298293pt;}
.ls4_c00392{letter-spacing:0.310987pt;}
.ls7_c00392{letter-spacing:0.330027pt;}
.ls20_c00392{letter-spacing:0.349067pt;}
.lsa_c00392{letter-spacing:0.355413pt;}
.lse_c00392{letter-spacing:0.368107pt;}
.ls5_c00392{letter-spacing:0.374453pt;}
.ls1b_c00392{letter-spacing:0.469653pt;}
.ls38_c00392{letter-spacing:0.486293pt;}
.ls18_c00392{letter-spacing:0.507733pt;}
.ls32_c00392{letter-spacing:0.517333pt;}
.lsf_c00392{letter-spacing:0.520427pt;}
.ls34_c00392{letter-spacing:0.532853pt;}
.ls3_c00392{letter-spacing:0.558507pt;}
.ls3d_c00392{letter-spacing:0.558720pt;}
.ls3e_c00392{letter-spacing:0.563893pt;}
.ls28_c00392{letter-spacing:0.569067pt;}
.ls40_c00392{letter-spacing:0.605280pt;}
.ls27_c00392{letter-spacing:0.615627pt;}
.ls77_c00392{letter-spacing:0.641013pt;}
.ls3a_c00392{letter-spacing:0.651840pt;}
.ls1_c00392{letter-spacing:0.668800pt;}
.ls1e_c00392{letter-spacing:0.679093pt;}
.ls3c_c00392{letter-spacing:0.682880pt;}
.ls25_c00392{letter-spacing:0.688053pt;}
.ls23_c00392{letter-spacing:0.693227pt;}
.ls29_c00392{letter-spacing:0.698400pt;}
.ls35_c00392{letter-spacing:0.703573pt;}
.ls3b_c00392{letter-spacing:0.724267pt;}
.ls39_c00392{letter-spacing:0.729440pt;}
.ls37_c00392{letter-spacing:0.734613pt;}
.ls1f_c00392{letter-spacing:0.736213pt;}
.ls43_c00392{letter-spacing:0.739787pt;}
.ls22_c00392{letter-spacing:0.781173pt;}
.ls3f_c00392{letter-spacing:0.796693pt;}
.ls2b_c00392{letter-spacing:0.812213pt;}
.ls30_c00392{letter-spacing:0.817387pt;}
.ls80_c00392{letter-spacing:0.853360pt;}
.ls2a_c00392{letter-spacing:0.853600pt;}
.ls2f_c00392{letter-spacing:0.858773pt;}
.ls33_c00392{letter-spacing:0.884640pt;}
.ls2_c00392{letter-spacing:0.932960pt;}
.ls10_c00392{letter-spacing:0.990080pt;}
.ls44_c00392{letter-spacing:1.019147pt;}
.ls36_c00392{letter-spacing:1.060533pt;}
.ls0_c00392{letter-spacing:1.157120pt;}
.ls21_c00392{letter-spacing:1.169173pt;}
.ls2e_c00392{letter-spacing:1.174347pt;}
.ls24_c00392{letter-spacing:1.220907pt;}
.ls2d_c00392{letter-spacing:1.293333pt;}
.ls41_c00392{letter-spacing:1.324373pt;}
.ls26_c00392{letter-spacing:1.350240pt;}
.lsc_c00392{letter-spacing:1.370880pt;}
.ls13_c00392{letter-spacing:1.504160pt;}
.ls45_c00392{letter-spacing:1.524427pt;}
.ls2c_c00392{letter-spacing:1.588213pt;}
.ls15_c00392{letter-spacing:1.789760pt;}
.ls7d_c00392{letter-spacing:2.000027pt;}
.ls42_c00392{letter-spacing:2.017600pt;}
.ls7c_c00392{letter-spacing:2.411733pt;}
.ls6a_c00392{letter-spacing:3.200000pt;}
.ws0_c00392{word-spacing:0.000000pt;}
._2a_c00392{margin-left:-5.903627pt;}
._13_c00392{margin-left:-2.836960pt;}
._d_c00392{margin-left:-1.307413pt;}
._7_c00392{width:1.640800pt;}
._4_c00392{width:3.040053pt;}
._6_c00392{width:4.112640pt;}
._5_c00392{width:5.464480pt;}
._a_c00392{width:6.429173pt;}
._9_c00392{width:7.654080pt;}
._8_c00392{width:8.929760pt;}
._c_c00392{width:10.275253pt;}
._b_c00392{width:11.893653pt;}
._12_c00392{width:13.039467pt;}
._f_c00392{width:14.882933pt;}
._e_c00392{width:16.621920pt;}
._10_c00392{width:18.291093pt;}
._11_c00392{width:20.282507pt;}
._1_c00392{width:24.793707pt;}
._3_c00392{width:29.292800pt;}
._0_c00392{width:30.639573pt;}
._2_c00392{width:32.615147pt;}
._1b_c00392{width:69.033600pt;}
._1a_c00392{width:70.286933pt;}
._17_c00392{width:71.360000pt;}
._18_c00392{width:72.363200pt;}
._16_c00392{width:73.546667pt;}
._2e_c00392{width:74.506667pt;}
._2f_c00392{width:189.554133pt;}
._3d_c00392{width:191.691200pt;}
._1c_c00392{width:305.813333pt;}
._1f_c00392{width:307.027200pt;}
._2d_c00392{width:309.120000pt;}
._23_c00392{width:423.576533pt;}
._2c_c00392{width:655.495520pt;}
._1d_c00392{width:735.949547pt;}
._15_c00392{width:738.777760pt;}
._24_c00392{width:767.214987pt;}
._19_c00392{width:822.746507pt;}
._1e_c00392{width:828.428053pt;}
._2b_c00392{width:850.938667pt;}
._22_c00392{width:852.803733pt;}
._29_c00392{width:898.519573pt;}
._3e_c00392{width:944.076747pt;}
._37_c00392{width:946.760853pt;}
._20_c00392{width:951.472533pt;}
._3c_c00392{width:983.995467pt;}
._27_c00392{width:1008.929707pt;}
._14_c00392{width:1032.688533pt;}
._26_c00392{width:1040.316587pt;}
._31_c00392{width:1047.591733pt;}
._39_c00392{width:1070.912213pt;}
._32_c00392{width:1077.033600pt;}
._35_c00392{width:1088.929653pt;}
._36_c00392{width:1091.620640pt;}
._34_c00392{width:1106.537973pt;}
._33_c00392{width:1107.719200pt;}
._21_c00392{width:1120.280000pt;}
._38_c00392{width:1121.180640pt;}
._28_c00392{width:1122.398133pt;}
._3f_c00392{width:1124.576747pt;}
._3a_c00392{width:1129.629120pt;}
._3b_c00392{width:1142.123573pt;}
._30_c00392{width:1186.940640pt;}
._25_c00392{width:1215.143947pt;}
.fs14_c00392{font-size:17.067200pt;}
.fsf_c00392{font-size:32.000000pt;}
.fs12_c00392{font-size:39.680533pt;}
.fsc_c00392{font-size:40.000533pt;}
.fsd_c00392{font-size:40.960000pt;}
.fse_c00392{font-size:42.240000pt;}
.fs16_c00392{font-size:50.133333pt;}
.fs1b_c00392{font-size:50.666667pt;}
.fs10_c00392{font-size:51.200000pt;}
.fs15_c00392{font-size:51.733333pt;}
.fs0_c00392{font-size:53.866667pt;}
.fs3_c00392{font-size:54.933333pt;}
.fs2_c00392{font-size:58.666667pt;}
.fs6_c00392{font-size:59.733333pt;}
.fs1_c00392{font-size:60.266667pt;}
.fs11_c00392{font-size:62.400000pt;}
.fs5_c00392{font-size:63.466667pt;}
.fs8_c00392{font-size:64.000000pt;}
.fs4_c00392{font-size:66.133333pt;}
.fs19_c00392{font-size:68.800000pt;}
.fsb_c00392{font-size:71.466667pt;}
.fs7_c00392{font-size:74.666667pt;}
.fs1a_c00392{font-size:75.200000pt;}
.fs17_c00392{font-size:75.733333pt;}
.fs18_c00392{font-size:80.533333pt;}
.fs9_c00392{font-size:81.066667pt;}
.fs13_c00392{font-size:82.133333pt;}
.fsa_c00392{font-size:200.000000pt;}
.y0_c00392{bottom:0.000000pt;}
.y40_c00392{bottom:92.480000pt;}
.y3f_c00392{bottom:142.080000pt;}
.y3e_c00392{bottom:157.760000pt;}
.y3d_c00392{bottom:173.453333pt;}
.y3c_c00392{bottom:189.120000pt;}
.y3b_c00392{bottom:205.120000pt;}
.y3a_c00392{bottom:221.120000pt;}
.y39_c00392{bottom:237.120000pt;}
.y38_c00392{bottom:253.453333pt;}
.y37_c00392{bottom:269.453333pt;}
.y36_c00392{bottom:284.813333pt;}
.y35_c00392{bottom:300.813333pt;}
.y34_c00392{bottom:316.493333pt;}
.y33_c00392{bottom:332.173333pt;}
.y32_c00392{bottom:347.840000pt;}
.y31_c00392{bottom:364.173333pt;}
.y30_c00392{bottom:380.173333pt;}
.y2f_c00392{bottom:395.840000pt;}
.y2e_c00392{bottom:411.840000pt;}
.y2d_c00392{bottom:427.840000pt;}
.y2c_c00392{bottom:443.533333pt;}
.y2b_c00392{bottom:459.533333pt;}
.y2a_c00392{bottom:475.533333pt;}
.y29_c00392{bottom:491.213333pt;}
.y28_c00392{bottom:507.213333pt;}
.y27_c00392{bottom:523.213333pt;}
.y26_c00392{bottom:538.880000pt;}
.y25_c00392{bottom:554.573333pt;}
.y24_c00392{bottom:570.253333pt;}
.y23_c00392{bottom:586.253333pt;}
.y22_c00392{bottom:601.933333pt;}
.y21_c00392{bottom:618.253333pt;}
.y20_c00392{bottom:633.933333pt;}
.y1f_c00392{bottom:649.600000pt;}
.y1e_c00392{bottom:665.600000pt;}
.y19_c00392{bottom:680.013333pt;}
.y1d_c00392{bottom:680.640000pt;}
.y1c_c00392{bottom:681.933333pt;}
.y1b_c00392{bottom:682.253333pt;}
.y17_c00392{bottom:682.573333pt;}
.y16_c00392{bottom:682.880000pt;}
.y1a_c00392{bottom:683.200000pt;}
.y18_c00392{bottom:685.120000pt;}
.y15_c00392{bottom:698.579867pt;}
.y14_c00392{bottom:716.493333pt;}
.y10_c00392{bottom:735.689467pt;}
.y12_c00392{bottom:735.693333pt;}
.y11_c00392{bottom:736.013333pt;}
.y13_c00392{bottom:740.173333pt;}
.yd_c00392{bottom:755.529333pt;}
.yf_c00392{bottom:755.853333pt;}
.ye_c00392{bottom:756.173333pt;}
.yb_c00392{bottom:774.086667pt;}
.yc_c00392{bottom:774.093333pt;}
.y9_c00392{bottom:792.013333pt;}
.y8_c00392{bottom:792.024267pt;}
.ya_c00392{bottom:792.333333pt;}
.y7_c00392{bottom:847.700400pt;}
.y6_c00392{bottom:874.880000pt;}
.y5_c00392{bottom:874.889067pt;}
.y4_c00392{bottom:902.100400pt;}
.y3_c00392{bottom:929.280000pt;}
.y2_c00392{bottom:956.800000pt;}
.y1_c00392{bottom:1023.360000pt;}
.h16_c00392{height:16.750523pt;}
.h11_c00392{height:21.312000pt;}
.h14_c00392{height:26.427235pt;}
.hf_c00392{height:27.279360pt;}
.h10_c00392{height:28.131840pt;}
.h12_c00392{height:34.099200pt;}
.he_c00392{height:41.719306pt;}
.h17_c00392{height:50.748177pt;}
.h21_c00392{height:52.843750pt;}
.h2_c00392{height:52.867187pt;}
.h1f_c00392{height:55.884687pt;}
.h1e_c00392{height:57.688125pt;}
.h1c_c00392{height:58.968125pt;}
.h1b_c00392{height:59.021458pt;}
.h1d_c00392{height:60.301458pt;}
.h3_c00392{height:60.737500pt;}
.h19_c00392{height:61.065729pt;}
.h6_c00392{height:62.289062pt;}
.h5_c00392{height:62.300000pt;}
.h1a_c00392{height:62.345729pt;}
.h8_c00392{height:62.812500pt;}
.h9_c00392{height:63.558396pt;}
.ha_c00392{height:63.569062pt;}
.hb_c00392{height:63.584529pt;}
.h18_c00392{height:63.679063pt;}
.h20_c00392{height:63.732396pt;}
.h13_c00392{height:65.081250pt;}
.h4_c00392{height:66.650000pt;}
.h7_c00392{height:73.281250pt;}
.hd_c00392{height:74.537500pt;}
.h15_c00392{height:85.662500pt;}
.hc_c00392{height:208.593750pt;}
.h1_c00392{height:1122.666667pt;}
.h0_c00392{height:1122.880000pt;}
.w1_c00392{width:793.333333pt;}
.w0_c00392{width:793.600000pt;}
.x0_c00392{left:0.000000pt;}
.x1_c00392{left:97.853333pt;}
.x1a_c00392{left:122.533333pt;}
.x27_c00392{left:126.920000pt;}
.xb_c00392{left:127.895333pt;}
.x2_c00392{left:145.840000pt;}
.x1b_c00392{left:151.040000pt;}
.xc_c00392{left:171.013333pt;}
.x3_c00392{left:174.946667pt;}
.xd_c00392{left:189.360000pt;}
.x4_c00392{left:196.640000pt;}
.x7_c00392{left:242.013333pt;}
.x8_c00392{left:260.960000pt;}
.x1c_c00392{left:298.253333pt;}
.xe_c00392{left:322.213333pt;}
.xf_c00392{left:345.253333pt;}
.x12_c00392{left:363.066667pt;}
.x28_c00392{left:376.493333pt;}
.x13_c00392{left:384.186667pt;}
.x1d_c00392{left:388.813333pt;}
.x14_c00392{left:394.706667pt;}
.x26_c00392{left:401.160000pt;}
.x18_c00392{left:403.933333pt;}
.x15_c00392{left:416.506667pt;}
.x1e_c00392{left:419.520000pt;}
.x19_c00392{left:421.280000pt;}
.x1f_c00392{left:454.173333pt;}
.x20_c00392{left:479.360000pt;}
.x21_c00392{left:507.733333pt;}
.x22_c00392{left:535.053333pt;}
.x10_c00392{left:541.986667pt;}
.x16_c00392{left:545.346667pt;}
.x5_c00392{left:557.906667pt;}
.x11_c00392{left:561.506667pt;}
.x17_c00392{left:563.933333pt;}
.x23_c00392{left:565.773333pt;}
.x6_c00392{left:584.146667pt;}
.x24_c00392{left:596.813333pt;}
.x9_c00392{left:600.733333pt;}
.xa_c00392{left:620.000000pt;}
.x25_c00392{left:624.973333pt;}
}





/* 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_c00393 {
    display:none;
  }
  .loading-indicator_c00393.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00393 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_c00393 { 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_c00393" -> "#page-container .classname_c00393")
 */
.pf_c00393 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00393 { /* 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_c00393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00393 { /* 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_c00393 { /* 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_c00393 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00393 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00393 {overflow:visible;}
  }
}
.c_c00393 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00393 { /* 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_c00393:after { /* webkit #35443 */
  content: '';
}
.t_c00393:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00393 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 */
}
.__c00393 { /* 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_c00393 { /* info for Javascript */
  display:none;
}
.l_c00393 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00393 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00393 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00393: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_c00393 {
    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_c00393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00393.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_c00393 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00393{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00393;src:url('chunks/assets/font_cb6c029aeac2f21f13cf49ab.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.311035;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_c00393;src:url('chunks/assets/font_cb5e11628a70677997fd481a.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;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_c00393;src:url('chunks/assets/font_fbc3476f676d310dcb99226e.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.284180;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_c00393;src:url('chunks/assets/font_511d6d13a38dfce392e4dbba.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;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:ff5_c00393;src:url('chunks/assets/font_c16b3308a1183255f4da0e73.woff2')format("woff");}.ff5_c00393{font-family:ff5_c00393;line-height:1.284668;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_c00393;src:url('chunks/assets/font_1b40b2dad368c725a5087e7a.woff2')format("woff");}.ff6_c00393{font-family:ff6_c00393;line-height:1.284180;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_c00393{transform:matrix(0.235994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235994,0.000000,0.000000,0.250000,0,0);}
.m0_c00393{transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);}
.m3_c00393{transform:matrix(0.243782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243782,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{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);}
.m4_c00393{transform:matrix(0.256848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256848,0.000000,0.000000,0.250000,0,0);}
.m5_c00393{transform:matrix(0.270547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270547,0.000000,0.000000,0.250000,0,0);}
.v2_c00393{vertical-align:-33.180000px;}
.v5_c00393{vertical-align:-31.680000px;}
.v7_c00393{vertical-align:-30.180000px;}
.ve_c00393{vertical-align:-28.800000px;}
.v12_c00393{vertical-align:-27.420000px;}
.v17_c00393{vertical-align:-25.860000px;}
.v18_c00393{vertical-align:-24.480000px;}
.v1a_c00393{vertical-align:-23.040000px;}
.v11_c00393{vertical-align:-18.720000px;}
.va_c00393{vertical-align:-17.280000px;}
.v15_c00393{vertical-align:-15.900000px;}
.v19_c00393{vertical-align:-14.400000px;}
.vb_c00393{vertical-align:-12.900000px;}
.v16_c00393{vertical-align:-11.460000px;}
.v1_c00393{vertical-align:-10.080000px;}
.v3_c00393{vertical-align:-8.640000px;}
.v4_c00393{vertical-align:-7.260000px;}
.v6_c00393{vertical-align:-5.820000px;}
.vf_c00393{vertical-align:-4.320000px;}
.v10_c00393{vertical-align:-2.820000px;}
.v9_c00393{vertical-align:-1.440000px;}
.v0_c00393{vertical-align:0.000000px;}
.v8_c00393{vertical-align:1.440000px;}
.vc_c00393{vertical-align:2.940000px;}
.v1b_c00393{vertical-align:8.640000px;}
.vd_c00393{vertical-align:10.080000px;}
.v13_c00393{vertical-align:11.460000px;}
.v14_c00393{vertical-align:12.960000px;}
.ls36_c00393{letter-spacing:-2.604000px;}
.ls34_c00393{letter-spacing:-2.331000px;}
.ls39_c00393{letter-spacing:-1.449180px;}
.ls3c_c00393{letter-spacing:-0.971940px;}
.ls3a_c00393{letter-spacing:-0.628560px;}
.ls3b_c00393{letter-spacing:-0.483060px;}
.ls38_c00393{letter-spacing:-0.157140px;}
.ls35_c00393{letter-spacing:0.000000px;}
.ls3e_c00393{letter-spacing:0.030000px;}
.ls9_c00393{letter-spacing:0.128040px;}
.ls11_c00393{letter-spacing:0.162960px;}
.ls13_c00393{letter-spacing:0.308460px;}
.ls2f_c00393{letter-spacing:0.655500px;}
.ls1b_c00393{letter-spacing:0.661200px;}
.ls15_c00393{letter-spacing:0.739140px;}
.ls22_c00393{letter-spacing:0.791520px;}
.ls24_c00393{letter-spacing:0.861360px;}
.ls1a_c00393{letter-spacing:0.894900px;}
.ls23_c00393{letter-spacing:0.925380px;}
.ls33_c00393{letter-spacing:0.931200px;}
.lsf_c00393{letter-spacing:0.942840px;}
.ls1d_c00393{letter-spacing:0.948660px;}
.ls31_c00393{letter-spacing:0.971940px;}
.ls5_c00393{letter-spacing:0.977760px;}
.ls0_c00393{letter-spacing:0.995220px;}
.ls32_c00393{letter-spacing:1.001040px;}
.ls1e_c00393{letter-spacing:1.006860px;}
.ls1c_c00393{letter-spacing:1.018500px;}
.ls8_c00393{letter-spacing:1.024320px;}
.ls6_c00393{letter-spacing:1.047600px;}
.ls19_c00393{letter-spacing:1.059240px;}
.ls2d_c00393{letter-spacing:1.070880px;}
.ls4_c00393{letter-spacing:1.088340px;}
.ls26_c00393{letter-spacing:1.117440px;}
.ls7_c00393{letter-spacing:1.134900px;}
.ls2a_c00393{letter-spacing:1.140720px;}
.ls21_c00393{letter-spacing:1.152360px;}
.ls18_c00393{letter-spacing:1.169820px;}
.ls30_c00393{letter-spacing:1.175640px;}
.ls2b_c00393{letter-spacing:1.181460px;}
.ls2_c00393{letter-spacing:1.204740px;}
.ls17_c00393{letter-spacing:1.210560px;}
.ls2e_c00393{letter-spacing:1.216380px;}
.lsd_c00393{letter-spacing:1.228020px;}
.ls2c_c00393{letter-spacing:1.233840px;}
.ls29_c00393{letter-spacing:1.251300px;}
.lsc_c00393{letter-spacing:1.257120px;}
.ls28_c00393{letter-spacing:1.262940px;}
.lsb_c00393{letter-spacing:1.280400px;}
.lse_c00393{letter-spacing:1.309500px;}
.ls14_c00393{letter-spacing:1.321140px;}
.ls27_c00393{letter-spacing:1.332780px;}
.ls1_c00393{letter-spacing:1.344420px;}
.ls25_c00393{letter-spacing:1.396800px;}
.lsa_c00393{letter-spacing:1.420080px;}
.ls16_c00393{letter-spacing:1.425900px;}
.ls3_c00393{letter-spacing:1.443360px;}
.ls10_c00393{letter-spacing:1.484100px;}
.ls1f_c00393{letter-spacing:1.536480px;}
.ls12_c00393{letter-spacing:1.641240px;}
.ls20_c00393{letter-spacing:2.770320px;}
.ls3d_c00393{letter-spacing:2.850000px;}
.ls37_c00393{letter-spacing:2.910000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{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__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00393{word-spacing:0.000000px;}
._30_c00393{margin-left:-19.293300px;}
._3f_c00393{margin-left:-6.308160px;}
._15_c00393{margin-left:-3.643320px;}
._1a_c00393{margin-left:-2.124300px;}
._3_c00393{width:1.379340px;}
._6_c00393{width:2.450220px;}
._2b_c00393{width:77.290200px;}
._27_c00393{width:79.537200px;}
._e_c00393{width:80.996400px;}
._14_c00393{width:82.276200px;}
._b_c00393{width:83.746800px;}
._12_c00393{width:87.030600px;}
._a_c00393{width:88.177200px;}
._18_c00393{width:89.848200px;}
._28_c00393{width:212.980200px;}
._9_c00393{width:216.334200px;}
._13_c00393{width:222.097200px;}
._36_c00393{width:343.530000px;}
._2d_c00393{width:347.760000px;}
._21_c00393{width:348.943800px;}
._1e_c00393{width:350.212200px;}
._38_c00393{width:481.497000px;}
._42_c00393{width:482.677800px;}
._19_c00393{width:487.773600px;}
._33_c00393{width:523.245300px;}
._2a_c00393{width:581.453100px;}
._43_c00393{width:712.528500px;}
._20_c00393{width:763.538160px;}
._11_c00393{width:825.971820px;}
._31_c00393{width:827.580720px;}
._29_c00393{width:899.332200px;}
._26_c00393{width:919.556880px;}
._3a_c00393{width:936.082200px;}
._1b_c00393{width:938.317020px;}
._34_c00393{width:943.059780px;}
._41_c00393{width:960.029160px;}
._17_c00393{width:965.923800px;}
._39_c00393{width:985.018620px;}
._37_c00393{width:995.400660px;}
._16_c00393{width:999.936720px;}
._d_c00393{width:1031.575080px;}
._1f_c00393{width:1035.349860px;}
._3e_c00393{width:1063.149540px;}
._1d_c00393{width:1084.088160px;}
._24_c00393{width:1108.320780px;}
._3d_c00393{width:1113.290400px;}
._2_c00393{width:1132.813140px;}
._40_c00393{width:1144.501740px;}
._2e_c00393{width:1174.245720px;}
._3c_c00393{width:1184.055780px;}
._0_c00393{width:1188.187980px;}
._f_c00393{width:1202.866980px;}
._1c_c00393{width:1212.212040px;}
._32_c00393{width:1220.736780px;}
._23_c00393{width:1222.263180px;}
._35_c00393{width:1230.020340px;}
._1_c00393{width:1284.687900px;}
._5_c00393{width:1314.151200px;}
._7_c00393{width:1317.338700px;}
._3b_c00393{width:1323.933660px;}
._4_c00393{width:1325.376120px;}
._22_c00393{width:1328.204640px;}
._8_c00393{width:1331.343480px;}
._25_c00393{width:1333.599180px;}
._c_c00393{width:1338.024840px;}
._10_c00393{width:1356.937980px;}
._2c_c00393{width:1382.025540px;}
._2f_c00393{width:1397.381460px;}
.fc0_c00393{color:transparent;}
.fs9_c00393{font-size:51.600000px;}
.fs1_c00393{font-size:52.800000px;}
.fs5_c00393{font-size:54.000000px;}
.fsa_c00393{font-size:56.400000px;}
.fse_c00393{font-size:57.000000px;}
.fs3_c00393{font-size:58.200000px;}
.fsb_c00393{font-size:58.800000px;}
.fs11_c00393{font-size:60.000000px;}
.fs0_c00393{font-size:66.600000px;}
.fs6_c00393{font-size:68.400000px;}
.fs8_c00393{font-size:72.600000px;}
.fs2_c00393{font-size:74.400000px;}
.fs4_c00393{font-size:77.400000px;}
.fsc_c00393{font-size:82.200000px;}
.fs10_c00393{font-size:84.600000px;}
.fsf_c00393{font-size:85.200000px;}
.fsd_c00393{font-size:89.400000px;}
.fs7_c00393{font-size:90.600000px;}
.y0_c00393{bottom:0.000000px;}
.y36_c00393{bottom:97.560000px;}
.y35_c00393{bottom:160.215000px;}
.y34_c00393{bottom:178.215000px;}
.y33_c00393{bottom:196.215000px;}
.y32_c00393{bottom:214.215000px;}
.y31_c00393{bottom:232.560000px;}
.y30_c00393{bottom:250.215000px;}
.y2f_c00393{bottom:268.560000px;}
.y2e_c00393{bottom:286.560000px;}
.y2d_c00393{bottom:304.560000px;}
.y2c_c00393{bottom:322.560000px;}
.y2b_c00393{bottom:340.215000px;}
.y2a_c00393{bottom:358.560000px;}
.y29_c00393{bottom:376.215000px;}
.y28_c00393{bottom:394.575000px;}
.y27_c00393{bottom:412.575000px;}
.y26_c00393{bottom:430.200000px;}
.y25_c00393{bottom:448.200000px;}
.y24_c00393{bottom:465.855000px;}
.y23_c00393{bottom:483.855000px;}
.y22_c00393{bottom:501.495000px;}
.y21_c00393{bottom:520.200000px;}
.y20_c00393{bottom:537.495000px;}
.y1f_c00393{bottom:555.120000px;}
.y1e_c00393{bottom:573.120000px;}
.y1d_c00393{bottom:591.120000px;}
.y1c_c00393{bottom:609.120000px;}
.y1b_c00393{bottom:627.120000px;}
.y1a_c00393{bottom:645.120000px;}
.y19_c00393{bottom:663.120000px;}
.y18_c00393{bottom:681.495000px;}
.y17_c00393{bottom:699.120000px;}
.y16_c00393{bottom:716.775000px;}
.y15_c00393{bottom:734.775000px;}
.y14_c00393{bottom:752.775000px;}
.y13_c00393{bottom:770.775000px;}
.y12_c00393{bottom:788.775000px;}
.y11_c00393{bottom:806.775000px;}
.y10_c00393{bottom:824.775000px;}
.yf_c00393{bottom:842.775000px;}
.ye_c00393{bottom:860.775000px;}
.yd_c00393{bottom:878.400000px;}
.yc_c00393{bottom:896.400000px;}
.yb_c00393{bottom:914.040000px;}
.ya_c00393{bottom:931.695000px;}
.y9_c00393{bottom:949.695000px;}
.y8_c00393{bottom:967.335000px;}
.y7_c00393{bottom:985.335000px;}
.y6_c00393{bottom:1003.335000px;}
.y5_c00393{bottom:1021.335000px;}
.y4_c00393{bottom:1031.040000px;}
.y3_c00393{bottom:1038.975000px;}
.y2_c00393{bottom:1072.815000px;}
.y1_c00393{bottom:1149.855000px;}
.h3_c00393{height:55.068750px;}
.h9_c00393{height:55.914551px;}
.h13_c00393{height:55.942383px;}
.h5_c00393{height:57.091699px;}
.hd_c00393{height:57.708984px;}
.he_c00393{height:57.724312px;}
.h15_c00393{height:58.886719px;}
.h14_c00393{height:59.088984px;}
.h2_c00393{height:67.120312px;}
.h7_c00393{height:71.638945px;}
.hf_c00393{height:72.950273px;}
.hc_c00393{height:74.518945px;}
.h8_c00393{height:74.521406px;}
.h4_c00393{height:74.981250px;}
.ha_c00393{height:75.898945px;}
.hb_c00393{height:76.018945px;}
.h12_c00393{height:77.338945px;}
.h11_c00393{height:78.781406px;}
.h10_c00393{height:78.838945px;}
.h6_c00393{height:80.725781px;}
.h1_c00393{height:1263.000000px;}
.h0_c00393{height:1263.240000px;}
.w1_c00393{width:892.500000px;}
.w0_c00393{width:892.800000px;}
.x0_c00393{left:0.000000px;}
.x1_c00393{left:112.605000px;}
.x2_c00393{left:138.330000px;}
.x9_c00393{left:142.635000px;}
.x8_c00393{left:143.715000px;}
.x3_c00393{left:144.900000px;}
.x4_c00393{left:190.965000px;}
.x6_c00393{left:205.125000px;}
.x5_c00393{left:209.310000px;}
.xa_c00393{left:238.815000px;}
.xc_c00393{left:426.780000px;}
.xb_c00393{left:518.100000px;}
.x7_c00393{left:588.420000px;}
@media print{
.v2_c00393{vertical-align:-29.493333pt;}
.v5_c00393{vertical-align:-28.160000pt;}
.v7_c00393{vertical-align:-26.826667pt;}
.ve_c00393{vertical-align:-25.600000pt;}
.v12_c00393{vertical-align:-24.373333pt;}
.v17_c00393{vertical-align:-22.986667pt;}
.v18_c00393{vertical-align:-21.760000pt;}
.v1a_c00393{vertical-align:-20.480000pt;}
.v11_c00393{vertical-align:-16.640000pt;}
.va_c00393{vertical-align:-15.360000pt;}
.v15_c00393{vertical-align:-14.133333pt;}
.v19_c00393{vertical-align:-12.800000pt;}
.vb_c00393{vertical-align:-11.466667pt;}
.v16_c00393{vertical-align:-10.186667pt;}
.v1_c00393{vertical-align:-8.960000pt;}
.v3_c00393{vertical-align:-7.680000pt;}
.v4_c00393{vertical-align:-6.453333pt;}
.v6_c00393{vertical-align:-5.173333pt;}
.vf_c00393{vertical-align:-3.840000pt;}
.v10_c00393{vertical-align:-2.506667pt;}
.v9_c00393{vertical-align:-1.280000pt;}
.v0_c00393{vertical-align:0.000000pt;}
.v8_c00393{vertical-align:1.280000pt;}
.vc_c00393{vertical-align:2.613333pt;}
.v1b_c00393{vertical-align:7.680000pt;}
.vd_c00393{vertical-align:8.960000pt;}
.v13_c00393{vertical-align:10.186667pt;}
.v14_c00393{vertical-align:11.520000pt;}
.ls36_c00393{letter-spacing:-2.314667pt;}
.ls34_c00393{letter-spacing:-2.072000pt;}
.ls39_c00393{letter-spacing:-1.288160pt;}
.ls3c_c00393{letter-spacing:-0.863947pt;}
.ls3a_c00393{letter-spacing:-0.558720pt;}
.ls3b_c00393{letter-spacing:-0.429387pt;}
.ls38_c00393{letter-spacing:-0.139680pt;}
.ls35_c00393{letter-spacing:0.000000pt;}
.ls3e_c00393{letter-spacing:0.026667pt;}
.ls9_c00393{letter-spacing:0.113813pt;}
.ls11_c00393{letter-spacing:0.144853pt;}
.ls13_c00393{letter-spacing:0.274187pt;}
.ls2f_c00393{letter-spacing:0.582667pt;}
.ls1b_c00393{letter-spacing:0.587733pt;}
.ls15_c00393{letter-spacing:0.657013pt;}
.ls22_c00393{letter-spacing:0.703573pt;}
.ls24_c00393{letter-spacing:0.765653pt;}
.ls1a_c00393{letter-spacing:0.795467pt;}
.ls23_c00393{letter-spacing:0.822560pt;}
.ls33_c00393{letter-spacing:0.827733pt;}
.lsf_c00393{letter-spacing:0.838080pt;}
.ls1d_c00393{letter-spacing:0.843253pt;}
.ls31_c00393{letter-spacing:0.863947pt;}
.ls5_c00393{letter-spacing:0.869120pt;}
.ls0_c00393{letter-spacing:0.884640pt;}
.ls32_c00393{letter-spacing:0.889813pt;}
.ls1e_c00393{letter-spacing:0.894987pt;}
.ls1c_c00393{letter-spacing:0.905333pt;}
.ls8_c00393{letter-spacing:0.910507pt;}
.ls6_c00393{letter-spacing:0.931200pt;}
.ls19_c00393{letter-spacing:0.941547pt;}
.ls2d_c00393{letter-spacing:0.951893pt;}
.ls4_c00393{letter-spacing:0.967413pt;}
.ls26_c00393{letter-spacing:0.993280pt;}
.ls7_c00393{letter-spacing:1.008800pt;}
.ls2a_c00393{letter-spacing:1.013973pt;}
.ls21_c00393{letter-spacing:1.024320pt;}
.ls18_c00393{letter-spacing:1.039840pt;}
.ls30_c00393{letter-spacing:1.045013pt;}
.ls2b_c00393{letter-spacing:1.050187pt;}
.ls2_c00393{letter-spacing:1.070880pt;}
.ls17_c00393{letter-spacing:1.076053pt;}
.ls2e_c00393{letter-spacing:1.081227pt;}
.lsd_c00393{letter-spacing:1.091573pt;}
.ls2c_c00393{letter-spacing:1.096747pt;}
.ls29_c00393{letter-spacing:1.112267pt;}
.lsc_c00393{letter-spacing:1.117440pt;}
.ls28_c00393{letter-spacing:1.122613pt;}
.lsb_c00393{letter-spacing:1.138133pt;}
.lse_c00393{letter-spacing:1.164000pt;}
.ls14_c00393{letter-spacing:1.174347pt;}
.ls27_c00393{letter-spacing:1.184693pt;}
.ls1_c00393{letter-spacing:1.195040pt;}
.ls25_c00393{letter-spacing:1.241600pt;}
.lsa_c00393{letter-spacing:1.262293pt;}
.ls16_c00393{letter-spacing:1.267467pt;}
.ls3_c00393{letter-spacing:1.282987pt;}
.ls10_c00393{letter-spacing:1.319200pt;}
.ls1f_c00393{letter-spacing:1.365760pt;}
.ls12_c00393{letter-spacing:1.458880pt;}
.ls20_c00393{letter-spacing:2.462507pt;}
.ls3d_c00393{letter-spacing:2.533333pt;}
.ls37_c00393{letter-spacing:2.586667pt;}
.ws0_c00393{word-spacing:0.000000pt;}
._30_c00393{margin-left:-17.149600pt;}
._3f_c00393{margin-left:-5.607253pt;}
._15_c00393{margin-left:-3.238507pt;}
._1a_c00393{margin-left:-1.888267pt;}
._3_c00393{width:1.226080pt;}
._6_c00393{width:2.177973pt;}
._2b_c00393{width:68.702400pt;}
._27_c00393{width:70.699733pt;}
._e_c00393{width:71.996800pt;}
._14_c00393{width:73.134400pt;}
._b_c00393{width:74.441600pt;}
._12_c00393{width:77.360533pt;}
._a_c00393{width:78.379733pt;}
._18_c00393{width:79.865067pt;}
._28_c00393{width:189.315733pt;}
._9_c00393{width:192.297067pt;}
._13_c00393{width:197.419733pt;}
._36_c00393{width:305.360000pt;}
._2d_c00393{width:309.120000pt;}
._21_c00393{width:310.172267pt;}
._1e_c00393{width:311.299733pt;}
._38_c00393{width:427.997333pt;}
._42_c00393{width:429.046933pt;}
._19_c00393{width:433.576533pt;}
._33_c00393{width:465.106933pt;}
._2a_c00393{width:516.847200pt;}
._43_c00393{width:633.358667pt;}
._20_c00393{width:678.700587pt;}
._11_c00393{width:734.197173pt;}
._31_c00393{width:735.627307pt;}
._29_c00393{width:799.406400pt;}
._26_c00393{width:817.383893pt;}
._3a_c00393{width:832.073067pt;}
._1b_c00393{width:834.059573pt;}
._34_c00393{width:838.275360pt;}
._41_c00393{width:853.359253pt;}
._17_c00393{width:858.598933pt;}
._39_c00393{width:875.572107pt;}
._37_c00393{width:884.800587pt;}
._16_c00393{width:888.832640pt;}
._d_c00393{width:916.955627pt;}
._1f_c00393{width:920.310987pt;}
._3e_c00393{width:945.021813pt;}
._1d_c00393{width:963.633920pt;}
._24_c00393{width:985.174027pt;}
._3d_c00393{width:989.591467pt;}
._2_c00393{width:1006.945013pt;}
._40_c00393{width:1017.334880pt;}
._2e_c00393{width:1043.773973pt;}
._3c_c00393{width:1052.494027pt;}
._0_c00393{width:1056.167093pt;}
._f_c00393{width:1069.215093pt;}
._1c_c00393{width:1077.521813pt;}
._32_c00393{width:1085.099360pt;}
._23_c00393{width:1086.456160pt;}
._35_c00393{width:1093.351413pt;}
._1_c00393{width:1141.944800pt;}
._5_c00393{width:1168.134400pt;}
._7_c00393{width:1170.967733pt;}
._3b_c00393{width:1176.829920pt;}
._4_c00393{width:1178.112107pt;}
._22_c00393{width:1180.626347pt;}
._8_c00393{width:1183.416427pt;}
._25_c00393{width:1185.421493pt;}
._c_c00393{width:1189.355413pt;}
._10_c00393{width:1206.167093pt;}
._2c_c00393{width:1228.467147pt;}
._2f_c00393{width:1242.116853pt;}
.fs9_c00393{font-size:45.866667pt;}
.fs1_c00393{font-size:46.933333pt;}
.fs5_c00393{font-size:48.000000pt;}
.fsa_c00393{font-size:50.133333pt;}
.fse_c00393{font-size:50.666667pt;}
.fs3_c00393{font-size:51.733333pt;}
.fsb_c00393{font-size:52.266667pt;}
.fs11_c00393{font-size:53.333333pt;}
.fs0_c00393{font-size:59.200000pt;}
.fs6_c00393{font-size:60.800000pt;}
.fs8_c00393{font-size:64.533333pt;}
.fs2_c00393{font-size:66.133333pt;}
.fs4_c00393{font-size:68.800000pt;}
.fsc_c00393{font-size:73.066667pt;}
.fs10_c00393{font-size:75.200000pt;}
.fsf_c00393{font-size:75.733333pt;}
.fsd_c00393{font-size:79.466667pt;}
.fs7_c00393{font-size:80.533333pt;}
.y0_c00393{bottom:0.000000pt;}
.y36_c00393{bottom:86.720000pt;}
.y35_c00393{bottom:142.413333pt;}
.y34_c00393{bottom:158.413333pt;}
.y33_c00393{bottom:174.413333pt;}
.y32_c00393{bottom:190.413333pt;}
.y31_c00393{bottom:206.720000pt;}
.y30_c00393{bottom:222.413333pt;}
.y2f_c00393{bottom:238.720000pt;}
.y2e_c00393{bottom:254.720000pt;}
.y2d_c00393{bottom:270.720000pt;}
.y2c_c00393{bottom:286.720000pt;}
.y2b_c00393{bottom:302.413333pt;}
.y2a_c00393{bottom:318.720000pt;}
.y29_c00393{bottom:334.413333pt;}
.y28_c00393{bottom:350.733333pt;}
.y27_c00393{bottom:366.733333pt;}
.y26_c00393{bottom:382.400000pt;}
.y25_c00393{bottom:398.400000pt;}
.y24_c00393{bottom:414.093333pt;}
.y23_c00393{bottom:430.093333pt;}
.y22_c00393{bottom:445.773333pt;}
.y21_c00393{bottom:462.400000pt;}
.y20_c00393{bottom:477.773333pt;}
.y1f_c00393{bottom:493.440000pt;}
.y1e_c00393{bottom:509.440000pt;}
.y1d_c00393{bottom:525.440000pt;}
.y1c_c00393{bottom:541.440000pt;}
.y1b_c00393{bottom:557.440000pt;}
.y1a_c00393{bottom:573.440000pt;}
.y19_c00393{bottom:589.440000pt;}
.y18_c00393{bottom:605.773333pt;}
.y17_c00393{bottom:621.440000pt;}
.y16_c00393{bottom:637.133333pt;}
.y15_c00393{bottom:653.133333pt;}
.y14_c00393{bottom:669.133333pt;}
.y13_c00393{bottom:685.133333pt;}
.y12_c00393{bottom:701.133333pt;}
.y11_c00393{bottom:717.133333pt;}
.y10_c00393{bottom:733.133333pt;}
.yf_c00393{bottom:749.133333pt;}
.ye_c00393{bottom:765.133333pt;}
.yd_c00393{bottom:780.800000pt;}
.yc_c00393{bottom:796.800000pt;}
.yb_c00393{bottom:812.480000pt;}
.ya_c00393{bottom:828.173333pt;}
.y9_c00393{bottom:844.173333pt;}
.y8_c00393{bottom:859.853333pt;}
.y7_c00393{bottom:875.853333pt;}
.y6_c00393{bottom:891.853333pt;}
.y5_c00393{bottom:907.853333pt;}
.y4_c00393{bottom:916.480000pt;}
.y3_c00393{bottom:923.533333pt;}
.y2_c00393{bottom:953.613333pt;}
.y1_c00393{bottom:1022.093333pt;}
.h3_c00393{height:48.950000pt;}
.h9_c00393{height:49.701823pt;}
.h13_c00393{height:49.726562pt;}
.h5_c00393{height:50.748177pt;}
.hd_c00393{height:51.296875pt;}
.he_c00393{height:51.310500pt;}
.h15_c00393{height:52.343750pt;}
.h14_c00393{height:52.523542pt;}
.h2_c00393{height:59.662500pt;}
.h7_c00393{height:63.679062pt;}
.hf_c00393{height:64.844687pt;}
.hc_c00393{height:66.239062pt;}
.h8_c00393{height:66.241250pt;}
.h4_c00393{height:66.650000pt;}
.ha_c00393{height:67.465729pt;}
.hb_c00393{height:67.572396pt;}
.h12_c00393{height:68.745729pt;}
.h11_c00393{height:70.027917pt;}
.h10_c00393{height:70.079062pt;}
.h6_c00393{height:71.756250pt;}
.h1_c00393{height:1122.666667pt;}
.h0_c00393{height:1122.880000pt;}
.w1_c00393{width:793.333333pt;}
.w0_c00393{width:793.600000pt;}
.x0_c00393{left:0.000000pt;}
.x1_c00393{left:100.093333pt;}
.x2_c00393{left:122.960000pt;}
.x9_c00393{left:126.786667pt;}
.x8_c00393{left:127.746667pt;}
.x3_c00393{left:128.800000pt;}
.x4_c00393{left:169.746667pt;}
.x6_c00393{left:182.333333pt;}
.x5_c00393{left:186.053333pt;}
.xa_c00393{left:212.280000pt;}
.xc_c00393{left:379.360000pt;}
.xb_c00393{left:460.533333pt;}
.x7_c00393{left:523.040000pt;}
}





/* 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_c00394 {
    display:none;
  }
  .loading-indicator_c00394.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00394 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_c00394 { 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_c00394" -> "#page-container .classname_c00394")
 */
.pf_c00394 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00394 { /* 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_c00394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00394 { /* 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_c00394 { /* 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_c00394 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00394 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00394 {overflow:visible;}
  }
}
.c_c00394 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00394 { /* 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_c00394:after { /* webkit #35443 */
  content: '';
}
.t_c00394:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00394 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 */
}
.__c00394 { /* 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_c00394 { /* info for Javascript */
  display:none;
}
.l_c00394 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00394 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00394 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00394: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_c00394 {
    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_c00394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00394.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_c00394 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00394{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00394;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.311035;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_c00394;src:url('chunks/assets/font_2b3ee277b791b5ed43fb5e34.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.284668;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_c00394;src:url('chunks/assets/font_dd33039f2a8c56b3cdc739b9.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:0.666000;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_c00394;src:url('chunks/assets/font_d2cbe0eb8292e9a6aa53e90d.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;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:ff5_c00394;src:url('chunks/assets/font_3e0e2c66e791b45b986db410.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;line-height:1.284180;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;}
.m8_c00394{transform:matrix(0.062879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062879,0.000000,0.000000,0.250000,0,0);}
.ma_c00394{transform:matrix(0.077070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077070,0.000000,0.000000,0.250000,0,0);}
.md_c00394{transform:matrix(0.080212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080212,0.000000,0.000000,0.250000,0,0);}
.m4_c00394{transform:matrix(0.086173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086173,0.000000,0.000000,0.250000,0,0);}
.mb_c00394{transform:matrix(0.088678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088678,0.000000,0.000000,0.250000,0,0);}
.mc_c00394{transform:matrix(0.093319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093319,0.000000,0.000000,0.250000,0,0);}
.m5_c00394{transform:matrix(0.099265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099265,0.000000,0.000000,0.250000,0,0);}
.m7_c00394{transform:matrix(0.100493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100493,0.000000,0.000000,0.250000,0,0);}
.m6_c00394{transform:matrix(0.113892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113892,0.000000,0.000000,0.250000,0,0);}
.m10_c00394{transform:matrix(0.127748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127748,0.000000,0.000000,0.250000,0,0);}
.me_c00394{transform:matrix(0.163082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163082,0.000000,0.000000,0.250000,0,0);}
.m11_c00394{transform:matrix(0.179211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179211,0.000000,0.000000,0.250000,0,0);}
.m9_c00394{transform:matrix(0.195421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195421,0.000000,0.000000,0.250000,0,0);}
.m2_c00394{transform:matrix(0.206441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206441,0.000000,0.000000,0.250000,0,0);}
.m3_c00394{transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);}
.m12_c00394{transform:matrix(0.244854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244854,0.000000,0.000000,0.250000,0,0);}
.mf_c00394{transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);}
.m0_c00394{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);}
.m13_c00394{transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(0.272184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272184,0.000000,0.000000,0.250000,0,0);}
.v11_c00394{vertical-align:-30.240000px;}
.ve_c00394{vertical-align:-28.800000px;}
.va_c00394{vertical-align:-27.360000px;}
.vd_c00394{vertical-align:-25.920000px;}
.vb_c00394{vertical-align:-20.160000px;}
.v12_c00394{vertical-align:-18.780000px;}
.v5_c00394{vertical-align:-17.280000px;}
.v3_c00394{vertical-align:-15.840000px;}
.v7_c00394{vertical-align:-14.340000px;}
.v6_c00394{vertical-align:-13.020000px;}
.v4_c00394{vertical-align:-11.460000px;}
.v14_c00394{vertical-align:-8.640000px;}
.vc_c00394{vertical-align:-7.200000px;}
.v10_c00394{vertical-align:-5.820000px;}
.v1_c00394{vertical-align:-4.380000px;}
.v9_c00394{vertical-align:-2.880000px;}
.v8_c00394{vertical-align:-1.470600px;}
.v0_c00394{vertical-align:0.000000px;}
.v2_c00394{vertical-align:1.522800px;}
.v13_c00394{vertical-align:2.940000px;}
.vf_c00394{vertical-align:11.580000px;}
.ls3d_c00394{letter-spacing:-3.276000px;}
.ls38_c00394{letter-spacing:-2.730000px;}
.ls3a_c00394{letter-spacing:-2.016000px;}
.ls37_c00394{letter-spacing:-1.617000px;}
.ls3c_c00394{letter-spacing:-1.064280px;}
.ls39_c00394{letter-spacing:-0.429240px;}
.ls3b_c00394{letter-spacing:-0.126720px;}
.ls34_c00394{letter-spacing:0.000000px;}
.ls3f_c00394{letter-spacing:0.780900px;}
.ls32_c00394{letter-spacing:0.915840px;}
.ls17_c00394{letter-spacing:0.961920px;}
.ls18_c00394{letter-spacing:0.967680px;}
.ls1b_c00394{letter-spacing:1.013760px;}
.ls8_c00394{letter-spacing:1.019520px;}
.ls20_c00394{letter-spacing:1.036800px;}
.ls1e_c00394{letter-spacing:1.048320px;}
.ls2d_c00394{letter-spacing:1.054080px;}
.ls1d_c00394{letter-spacing:1.059840px;}
.ls31_c00394{letter-spacing:1.077120px;}
.ls26_c00394{letter-spacing:1.128960px;}
.ls7_c00394{letter-spacing:1.146240px;}
.ls30_c00394{letter-spacing:1.157760px;}
.ls4_c00394{letter-spacing:1.163520px;}
.ls9_c00394{letter-spacing:1.169280px;}
.ls29_c00394{letter-spacing:1.175040px;}
.ls22_c00394{letter-spacing:1.180800px;}
.ls14_c00394{letter-spacing:1.186560px;}
.ls23_c00394{letter-spacing:1.192320px;}
.ls33_c00394{letter-spacing:1.193640px;}
.ls5_c00394{letter-spacing:1.198080px;}
.ls28_c00394{letter-spacing:1.209600px;}
.ls24_c00394{letter-spacing:1.215360px;}
.ls10_c00394{letter-spacing:1.226880px;}
.ls2e_c00394{letter-spacing:1.232640px;}
.ls0_c00394{letter-spacing:1.238400px;}
.ls25_c00394{letter-spacing:1.255680px;}
.ls2f_c00394{letter-spacing:1.272960px;}
.ls3_c00394{letter-spacing:1.278720px;}
.ls1a_c00394{letter-spacing:1.290240px;}
.ls11_c00394{letter-spacing:1.301760px;}
.ls2c_c00394{letter-spacing:1.307520px;}
.lse_c00394{letter-spacing:1.319040px;}
.ls16_c00394{letter-spacing:1.330560px;}
.ls1f_c00394{letter-spacing:1.336320px;}
.ls21_c00394{letter-spacing:1.342080px;}
.ls6_c00394{letter-spacing:1.376640px;}
.ls15_c00394{letter-spacing:1.388160px;}
.lsf_c00394{letter-spacing:1.411200px;}
.ls2a_c00394{letter-spacing:1.422720px;}
.lsa_c00394{letter-spacing:1.428480px;}
.ls1_c00394{letter-spacing:1.434240px;}
.lsb_c00394{letter-spacing:1.474560px;}
.ls12_c00394{letter-spacing:1.503360px;}
.ls19_c00394{letter-spacing:1.509120px;}
.ls2_c00394{letter-spacing:1.549440px;}
.ls13_c00394{letter-spacing:1.612800px;}
.ls2b_c00394{letter-spacing:1.653120px;}
.lsc_c00394{letter-spacing:1.670400px;}
.lsd_c00394{letter-spacing:1.676160px;}
.ls1c_c00394{letter-spacing:1.739520px;}
.ls27_c00394{letter-spacing:1.860480px;}
.ls35_c00394{letter-spacing:2.544480px;}
.ls36_c00394{letter-spacing:2.730000px;}
.ls3e_c00394{letter-spacing:2.880000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{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__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00394{word-spacing:0.000000px;}
._16_c00394{margin-left:-4.314240px;}
._5_c00394{margin-left:-2.298240px;}
._25_c00394{margin-left:-1.267200px;}
._0_c00394{width:1.336800px;}
._2c_c00394{width:3.600960px;}
._2_c00394{width:76.196400px;}
._3_c00394{width:77.662800px;}
._a_c00394{width:78.840000px;}
._7_c00394{width:80.280000px;}
._e_c00394{width:82.369200px;}
._2e_c00394{width:84.250800px;}
._21_c00394{width:207.780000px;}
._4_c00394{width:210.202800px;}
._d_c00394{width:211.330800px;}
._37_c00394{width:213.060000px;}
._41_c00394{width:336.877200px;}
._3f_c00394{width:339.753600px;}
._24_c00394{width:341.163600px;}
._8_c00394{width:342.274200px;}
._1c_c00394{width:346.980000px;}
._12_c00394{width:470.770800px;}
._15_c00394{width:474.436800px;}
._3d_c00394{width:478.020000px;}
._11_c00394{width:663.094080px;}
._1d_c00394{width:691.088640px;}
._20_c00394{width:719.642400px;}
._c_c00394{width:721.703040px;}
._2d_c00394{width:740.397600px;}
._2b_c00394{width:755.792160px;}
._f_c00394{width:817.370880px;}
._31_c00394{width:822.178560px;}
._1_c00394{width:861.933000px;}
._1e_c00394{width:868.261920px;}
._27_c00394{width:880.677120px;}
._30_c00394{width:929.548320px;}
._19_c00394{width:939.960960px;}
._32_c00394{width:952.026240px;}
._28_c00394{width:971.568000px;}
._26_c00394{width:975.795360px;}
._2f_c00394{width:1049.034480px;}
._40_c00394{width:1050.542400px;}
._6_c00394{width:1054.980000px;}
._3a_c00394{width:1060.035840px;}
._42_c00394{width:1100.464800px;}
._35_c00394{width:1142.564640px;}
._1f_c00394{width:1148.837280px;}
._9_c00394{width:1173.440160px;}
._38_c00394{width:1180.666560px;}
._b_c00394{width:1197.357120px;}
._36_c00394{width:1200.159360px;}
._1a_c00394{width:1206.100800px;}
._33_c00394{width:1212.714240px;}
._34_c00394{width:1222.466880px;}
._17_c00394{width:1230.144000px;}
._23_c00394{width:1231.218240px;}
._29_c00394{width:1248.169920px;}
._3c_c00394{width:1249.395360px;}
._22_c00394{width:1252.732800px;}
._1b_c00394{width:1254.526080px;}
._13_c00394{width:1265.801760px;}
._3b_c00394{width:1270.781760px;}
._10_c00394{width:1276.211520px;}
._39_c00394{width:1289.856240px;}
._3e_c00394{width:1290.872640px;}
._2a_c00394{width:1299.969600px;}
._14_c00394{width:1308.796800px;}
._18_c00394{width:1460.714400px;}
._43_c00394{width:1623.467040px;}
.fc0_c00394{color:transparent;}
.fs4_c00394{font-size:34.560000px;}
.fsc_c00394{font-size:43.200000px;}
.fsb_c00394{font-size:44.640600px;}
.fs1_c00394{font-size:46.200000px;}
.fs8_c00394{font-size:47.520000px;}
.fs15_c00394{font-size:48.000000px;}
.fs6_c00394{font-size:48.960000px;}
.fs7_c00394{font-size:51.840000px;}
.fs3_c00394{font-size:54.600000px;}
.fsa_c00394{font-size:54.720000px;}
.fs5_c00394{font-size:56.160000px;}
.fse_c00394{font-size:56.400000px;}
.fs17_c00394{font-size:57.000000px;}
.fsd_c00394{font-size:57.600000px;}
.fs0_c00394{font-size:58.800000px;}
.fs2_c00394{font-size:68.400000px;}
.fs10_c00394{font-size:77.400000px;}
.fs9_c00394{font-size:78.000000px;}
.fs13_c00394{font-size:78.600000px;}
.fs11_c00394{font-size:84.600000px;}
.fs12_c00394{font-size:85.200000px;}
.fs14_c00394{font-size:89.400000px;}
.fsf_c00394{font-size:90.600000px;}
.fs16_c00394{font-size:93.600000px;}
.y0_c00394{bottom:0.000000px;}
.y43_c00394{bottom:104.415000px;}
.y42_c00394{bottom:168.120000px;}
.y41_c00394{bottom:185.760000px;}
.y40_c00394{bottom:202.335000px;}
.y3f_c00394{bottom:203.415000px;}
.y3e_c00394{bottom:213.840000px;}
.y3d_c00394{bottom:221.415000px;}
.y3c_c00394{bottom:239.760000px;}
.y3b_c00394{bottom:257.415000px;}
.y3a_c00394{bottom:275.415000px;}
.y39_c00394{bottom:293.055000px;}
.y38_c00394{bottom:311.055000px;}
.y37_c00394{bottom:328.695000px;}
.y36_c00394{bottom:346.335000px;}
.y35_c00394{bottom:363.975000px;}
.y34_c00394{bottom:381.975000px;}
.y33_c00394{bottom:399.240000px;}
.y32_c00394{bottom:417.615000px;}
.y31_c00394{bottom:435.615000px;}
.y30_c00394{bottom:453.240000px;}
.y2e_c00394{bottom:460.800000px;}
.y2f_c00394{bottom:463.320000px;}
.y2d_c00394{bottom:471.240000px;}
.y2c_c00394{bottom:488.895000px;}
.y2b_c00394{bottom:506.895000px;}
.y2a_c00394{bottom:524.895000px;}
.y29_c00394{bottom:542.895000px;}
.y28_c00394{bottom:560.895000px;}
.y27_c00394{bottom:578.895000px;}
.y26_c00394{bottom:596.895000px;}
.y25_c00394{bottom:614.895000px;}
.y24_c00394{bottom:632.535000px;}
.y23_c00394{bottom:650.535000px;}
.y22_c00394{bottom:668.175000px;}
.y21_c00394{bottom:685.800000px;}
.y20_c00394{bottom:703.455000px;}
.y1f_c00394{bottom:721.455000px;}
.y1e_c00394{bottom:739.095000px;}
.y1d_c00394{bottom:757.095000px;}
.y1c_c00394{bottom:775.080000px;}
.y1b_c00394{bottom:792.375000px;}
.y1a_c00394{bottom:810.375000px;}
.y19_c00394{bottom:828.375000px;}
.y18_c00394{bottom:846.375000px;}
.y17_c00394{bottom:864.375000px;}
.y16_c00394{bottom:882.015000px;}
.y15_c00394{bottom:899.655000px;}
.y14_c00394{bottom:917.655000px;}
.y13_c00394{bottom:935.280000px;}
.y12_c00394{bottom:953.280000px;}
.y11_c00394{bottom:970.920000px;}
.y10_c00394{bottom:988.920000px;}
.yf_c00394{bottom:1006.560000px;}
.ye_c00394{bottom:1024.200000px;}
.yd_c00394{bottom:1041.855000px;}
.ya_c00394{bottom:1058.400000px;}
.y4_c00394{bottom:1058.760000px;}
.y9_c00394{bottom:1059.135000px;}
.y6_c00394{bottom:1059.495000px;}
.y5_c00394{bottom:1059.855000px;}
.y7_c00394{bottom:1060.200000px;}
.y8_c00394{bottom:1060.920000px;}
.yb_c00394{bottom:1062.015000px;}
.yc_c00394{bottom:1062.375000px;}
.y2_c00394{bottom:1074.600000px;}
.y3_c00394{bottom:1074.975000px;}
.y1_c00394{bottom:1151.280000px;}
.h5_c00394{height:23.016960px;}
.he_c00394{height:28.771200px;}
.hd_c00394{height:29.730640px;}
.ha_c00394{height:31.648320px;}
.h8_c00394{height:32.607360px;}
.h9_c00394{height:34.525440px;}
.hc_c00394{height:36.443520px;}
.h7_c00394{height:37.402560px;}
.h6_c00394{height:45.342773px;}
.h4_c00394{height:53.586914px;}
.h23_c00394{height:55.353516px;}
.h24_c00394{height:55.942383px;}
.h12_c00394{height:56.503125px;}
.hf_c00394{height:57.708984px;}
.h2_c00394{height:59.259375px;}
.h20_c00394{height:64.310273px;}
.h3_c00394{height:67.130859px;}
.h18_c00394{height:67.190273px;}
.h13_c00394{height:67.250273px;}
.h21_c00394{height:67.779141px;}
.h1f_c00394{height:67.839141px;}
.h16_c00394{height:69.159141px;}
.h14_c00394{height:69.279141px;}
.h1b_c00394{height:70.138945px;}
.h1a_c00394{height:70.198945px;}
.h17_c00394{height:70.659141px;}
.h1c_c00394{height:71.578945px;}
.h11_c00394{height:71.638945px;}
.h19_c00394{height:73.018945px;}
.h10_c00394{height:73.078945px;}
.h15_c00394{height:73.081406px;}
.h22_c00394{height:80.725781px;}
.hb_c00394{height:81.351562px;}
.h1e_c00394{height:82.196381px;}
.h1d_c00394{height:97.621875px;}
.h1_c00394{height:1263.000000px;}
.h0_c00394{height:1263.240000px;}
.w1_c00394{width:892.500000px;}
.w0_c00394{width:892.800000px;}
.x0_c00394{left:0.000000px;}
.x1_c00394{left:113.325000px;}
.x6_c00394{left:142.920000px;}
.x10_c00394{left:146.955000px;}
.x2_c00394{left:149.355000px;}
.x3_c00394{left:192.960000px;}
.x4_c00394{left:210.975000px;}
.x11_c00394{left:217.005000px;}
.x14_c00394{left:223.815000px;}
.x5_c00394{left:299.145000px;}
.x17_c00394{left:427.515000px;}
.x7_c00394{left:441.360000px;}
.x16_c00394{left:451.665000px;}
.x8_c00394{left:473.775000px;}
.x9_c00394{left:506.175000px;}
.xa_c00394{left:539.280000px;}
.x12_c00394{left:550.650000px;}
.xb_c00394{left:571.995000px;}
.x13_c00394{left:583.740000px;}
.xc_c00394{left:605.535000px;}
.xd_c00394{left:637.935000px;}
.xe_c00394{left:671.415000px;}
.xf_c00394{left:704.535000px;}
.x15_c00394{left:714.420000px;}
@media print{
.v11_c00394{vertical-align:-26.880000pt;}
.ve_c00394{vertical-align:-25.600000pt;}
.va_c00394{vertical-align:-24.320000pt;}
.vd_c00394{vertical-align:-23.040000pt;}
.vb_c00394{vertical-align:-17.920000pt;}
.v12_c00394{vertical-align:-16.693333pt;}
.v5_c00394{vertical-align:-15.360000pt;}
.v3_c00394{vertical-align:-14.080000pt;}
.v7_c00394{vertical-align:-12.746667pt;}
.v6_c00394{vertical-align:-11.573333pt;}
.v4_c00394{vertical-align:-10.186667pt;}
.v14_c00394{vertical-align:-7.680000pt;}
.vc_c00394{vertical-align:-6.400000pt;}
.v10_c00394{vertical-align:-5.173333pt;}
.v1_c00394{vertical-align:-3.893333pt;}
.v9_c00394{vertical-align:-2.560000pt;}
.v8_c00394{vertical-align:-1.307200pt;}
.v0_c00394{vertical-align:0.000000pt;}
.v2_c00394{vertical-align:1.353600pt;}
.v13_c00394{vertical-align:2.613333pt;}
.vf_c00394{vertical-align:10.293333pt;}
.ls3d_c00394{letter-spacing:-2.912000pt;}
.ls38_c00394{letter-spacing:-2.426667pt;}
.ls3a_c00394{letter-spacing:-1.792000pt;}
.ls37_c00394{letter-spacing:-1.437333pt;}
.ls3c_c00394{letter-spacing:-0.946027pt;}
.ls39_c00394{letter-spacing:-0.381547pt;}
.ls3b_c00394{letter-spacing:-0.112640pt;}
.ls34_c00394{letter-spacing:0.000000pt;}
.ls3f_c00394{letter-spacing:0.694133pt;}
.ls32_c00394{letter-spacing:0.814080pt;}
.ls17_c00394{letter-spacing:0.855040pt;}
.ls18_c00394{letter-spacing:0.860160pt;}
.ls1b_c00394{letter-spacing:0.901120pt;}
.ls8_c00394{letter-spacing:0.906240pt;}
.ls20_c00394{letter-spacing:0.921600pt;}
.ls1e_c00394{letter-spacing:0.931840pt;}
.ls2d_c00394{letter-spacing:0.936960pt;}
.ls1d_c00394{letter-spacing:0.942080pt;}
.ls31_c00394{letter-spacing:0.957440pt;}
.ls26_c00394{letter-spacing:1.003520pt;}
.ls7_c00394{letter-spacing:1.018880pt;}
.ls30_c00394{letter-spacing:1.029120pt;}
.ls4_c00394{letter-spacing:1.034240pt;}
.ls9_c00394{letter-spacing:1.039360pt;}
.ls29_c00394{letter-spacing:1.044480pt;}
.ls22_c00394{letter-spacing:1.049600pt;}
.ls14_c00394{letter-spacing:1.054720pt;}
.ls23_c00394{letter-spacing:1.059840pt;}
.ls33_c00394{letter-spacing:1.061013pt;}
.ls5_c00394{letter-spacing:1.064960pt;}
.ls28_c00394{letter-spacing:1.075200pt;}
.ls24_c00394{letter-spacing:1.080320pt;}
.ls10_c00394{letter-spacing:1.090560pt;}
.ls2e_c00394{letter-spacing:1.095680pt;}
.ls0_c00394{letter-spacing:1.100800pt;}
.ls25_c00394{letter-spacing:1.116160pt;}
.ls2f_c00394{letter-spacing:1.131520pt;}
.ls3_c00394{letter-spacing:1.136640pt;}
.ls1a_c00394{letter-spacing:1.146880pt;}
.ls11_c00394{letter-spacing:1.157120pt;}
.ls2c_c00394{letter-spacing:1.162240pt;}
.lse_c00394{letter-spacing:1.172480pt;}
.ls16_c00394{letter-spacing:1.182720pt;}
.ls1f_c00394{letter-spacing:1.187840pt;}
.ls21_c00394{letter-spacing:1.192960pt;}
.ls6_c00394{letter-spacing:1.223680pt;}
.ls15_c00394{letter-spacing:1.233920pt;}
.lsf_c00394{letter-spacing:1.254400pt;}
.ls2a_c00394{letter-spacing:1.264640pt;}
.lsa_c00394{letter-spacing:1.269760pt;}
.ls1_c00394{letter-spacing:1.274880pt;}
.lsb_c00394{letter-spacing:1.310720pt;}
.ls12_c00394{letter-spacing:1.336320pt;}
.ls19_c00394{letter-spacing:1.341440pt;}
.ls2_c00394{letter-spacing:1.377280pt;}
.ls13_c00394{letter-spacing:1.433600pt;}
.ls2b_c00394{letter-spacing:1.469440pt;}
.lsc_c00394{letter-spacing:1.484800pt;}
.lsd_c00394{letter-spacing:1.489920pt;}
.ls1c_c00394{letter-spacing:1.546240pt;}
.ls27_c00394{letter-spacing:1.653760pt;}
.ls35_c00394{letter-spacing:2.261760pt;}
.ls36_c00394{letter-spacing:2.426667pt;}
.ls3e_c00394{letter-spacing:2.560000pt;}
.ws0_c00394{word-spacing:0.000000pt;}
._16_c00394{margin-left:-3.834880pt;}
._5_c00394{margin-left:-2.042880pt;}
._25_c00394{margin-left:-1.126400pt;}
._0_c00394{width:1.188267pt;}
._2c_c00394{width:3.200853pt;}
._2_c00394{width:67.730133pt;}
._3_c00394{width:69.033600pt;}
._a_c00394{width:70.080000pt;}
._7_c00394{width:71.360000pt;}
._e_c00394{width:73.217067pt;}
._2e_c00394{width:74.889600pt;}
._21_c00394{width:184.693333pt;}
._4_c00394{width:186.846933pt;}
._d_c00394{width:187.849600pt;}
._37_c00394{width:189.386667pt;}
._41_c00394{width:299.446400pt;}
._3f_c00394{width:302.003200pt;}
._24_c00394{width:303.256533pt;}
._8_c00394{width:304.243733pt;}
._1c_c00394{width:308.426667pt;}
._12_c00394{width:418.462933pt;}
._15_c00394{width:421.721600pt;}
._3d_c00394{width:424.906667pt;}
._11_c00394{width:589.416960pt;}
._1d_c00394{width:614.301013pt;}
._20_c00394{width:639.682133pt;}
._c_c00394{width:641.513813pt;}
._2d_c00394{width:658.131200pt;}
._2b_c00394{width:671.815253pt;}
._f_c00394{width:726.551893pt;}
._31_c00394{width:730.825387pt;}
._1_c00394{width:766.162667pt;}
._1e_c00394{width:771.788373pt;}
._27_c00394{width:782.824107pt;}
._30_c00394{width:826.265173pt;}
._19_c00394{width:835.520853pt;}
._32_c00394{width:846.245547pt;}
._28_c00394{width:863.616000pt;}
._26_c00394{width:867.373653pt;}
._2f_c00394{width:932.475093pt;}
._40_c00394{width:933.815467pt;}
._6_c00394{width:937.760000pt;}
._3a_c00394{width:942.254080pt;}
._42_c00394{width:978.190933pt;}
._35_c00394{width:1015.613013pt;}
._1f_c00394{width:1021.188693pt;}
._9_c00394{width:1043.057920pt;}
._38_c00394{width:1049.481387pt;}
._b_c00394{width:1064.317440pt;}
._36_c00394{width:1066.808320pt;}
._1a_c00394{width:1072.089600pt;}
._33_c00394{width:1077.968213pt;}
._34_c00394{width:1086.637227pt;}
._17_c00394{width:1093.461333pt;}
._23_c00394{width:1094.416213pt;}
._29_c00394{width:1109.484373pt;}
._3c_c00394{width:1110.573653pt;}
._22_c00394{width:1113.540267pt;}
._1b_c00394{width:1115.134293pt;}
._13_c00394{width:1125.157120pt;}
._3b_c00394{width:1129.583787pt;}
._10_c00394{width:1134.410240pt;}
._39_c00394{width:1146.538880pt;}
._3e_c00394{width:1147.442347pt;}
._2a_c00394{width:1155.528533pt;}
._14_c00394{width:1163.374933pt;}
._18_c00394{width:1298.412800pt;}
._43_c00394{width:1443.081813pt;}
.fs4_c00394{font-size:30.720000pt;}
.fsc_c00394{font-size:38.400000pt;}
.fsb_c00394{font-size:39.680533pt;}
.fs1_c00394{font-size:41.066667pt;}
.fs8_c00394{font-size:42.240000pt;}
.fs15_c00394{font-size:42.666667pt;}
.fs6_c00394{font-size:43.520000pt;}
.fs7_c00394{font-size:46.080000pt;}
.fs3_c00394{font-size:48.533333pt;}
.fsa_c00394{font-size:48.640000pt;}
.fs5_c00394{font-size:49.920000pt;}
.fse_c00394{font-size:50.133333pt;}
.fs17_c00394{font-size:50.666667pt;}
.fsd_c00394{font-size:51.200000pt;}
.fs0_c00394{font-size:52.266667pt;}
.fs2_c00394{font-size:60.800000pt;}
.fs10_c00394{font-size:68.800000pt;}
.fs9_c00394{font-size:69.333333pt;}
.fs13_c00394{font-size:69.866667pt;}
.fs11_c00394{font-size:75.200000pt;}
.fs12_c00394{font-size:75.733333pt;}
.fs14_c00394{font-size:79.466667pt;}
.fsf_c00394{font-size:80.533333pt;}
.fs16_c00394{font-size:83.200000pt;}
.y0_c00394{bottom:0.000000pt;}
.y43_c00394{bottom:92.813333pt;}
.y42_c00394{bottom:149.440000pt;}
.y41_c00394{bottom:165.120000pt;}
.y40_c00394{bottom:179.853333pt;}
.y3f_c00394{bottom:180.813333pt;}
.y3e_c00394{bottom:190.080000pt;}
.y3d_c00394{bottom:196.813333pt;}
.y3c_c00394{bottom:213.120000pt;}
.y3b_c00394{bottom:228.813333pt;}
.y3a_c00394{bottom:244.813333pt;}
.y39_c00394{bottom:260.493333pt;}
.y38_c00394{bottom:276.493333pt;}
.y37_c00394{bottom:292.173333pt;}
.y36_c00394{bottom:307.853333pt;}
.y35_c00394{bottom:323.533333pt;}
.y34_c00394{bottom:339.533333pt;}
.y33_c00394{bottom:354.880000pt;}
.y32_c00394{bottom:371.213333pt;}
.y31_c00394{bottom:387.213333pt;}
.y30_c00394{bottom:402.880000pt;}
.y2e_c00394{bottom:409.600000pt;}
.y2f_c00394{bottom:411.840000pt;}
.y2d_c00394{bottom:418.880000pt;}
.y2c_c00394{bottom:434.573333pt;}
.y2b_c00394{bottom:450.573333pt;}
.y2a_c00394{bottom:466.573333pt;}
.y29_c00394{bottom:482.573333pt;}
.y28_c00394{bottom:498.573333pt;}
.y27_c00394{bottom:514.573333pt;}
.y26_c00394{bottom:530.573333pt;}
.y25_c00394{bottom:546.573333pt;}
.y24_c00394{bottom:562.253333pt;}
.y23_c00394{bottom:578.253333pt;}
.y22_c00394{bottom:593.933333pt;}
.y21_c00394{bottom:609.600000pt;}
.y20_c00394{bottom:625.293333pt;}
.y1f_c00394{bottom:641.293333pt;}
.y1e_c00394{bottom:656.973333pt;}
.y1d_c00394{bottom:672.973333pt;}
.y1c_c00394{bottom:688.960000pt;}
.y1b_c00394{bottom:704.333333pt;}
.y1a_c00394{bottom:720.333333pt;}
.y19_c00394{bottom:736.333333pt;}
.y18_c00394{bottom:752.333333pt;}
.y17_c00394{bottom:768.333333pt;}
.y16_c00394{bottom:784.013333pt;}
.y15_c00394{bottom:799.693333pt;}
.y14_c00394{bottom:815.693333pt;}
.y13_c00394{bottom:831.360000pt;}
.y12_c00394{bottom:847.360000pt;}
.y11_c00394{bottom:863.040000pt;}
.y10_c00394{bottom:879.040000pt;}
.yf_c00394{bottom:894.720000pt;}
.ye_c00394{bottom:910.400000pt;}
.yd_c00394{bottom:926.093333pt;}
.ya_c00394{bottom:940.800000pt;}
.y4_c00394{bottom:941.120000pt;}
.y9_c00394{bottom:941.453333pt;}
.y6_c00394{bottom:941.773333pt;}
.y5_c00394{bottom:942.093333pt;}
.y7_c00394{bottom:942.400000pt;}
.y8_c00394{bottom:943.040000pt;}
.yb_c00394{bottom:944.013333pt;}
.yc_c00394{bottom:944.333333pt;}
.y2_c00394{bottom:955.200000pt;}
.y3_c00394{bottom:955.533333pt;}
.y1_c00394{bottom:1023.360000pt;}
.h5_c00394{height:20.459520pt;}
.he_c00394{height:25.574400pt;}
.hd_c00394{height:26.427235pt;}
.ha_c00394{height:28.131840pt;}
.h8_c00394{height:28.984320pt;}
.h9_c00394{height:30.689280pt;}
.hc_c00394{height:32.394240pt;}
.h7_c00394{height:33.246720pt;}
.h6_c00394{height:40.304688pt;}
.h4_c00394{height:47.632812pt;}
.h23_c00394{height:49.203125pt;}
.h24_c00394{height:49.726562pt;}
.h12_c00394{height:50.225000pt;}
.hf_c00394{height:51.296875pt;}
.h2_c00394{height:52.675000pt;}
.h20_c00394{height:57.164687pt;}
.h3_c00394{height:59.671875pt;}
.h18_c00394{height:59.724687pt;}
.h13_c00394{height:59.778021pt;}
.h21_c00394{height:60.248125pt;}
.h1f_c00394{height:60.301458pt;}
.h16_c00394{height:61.474792pt;}
.h14_c00394{height:61.581458pt;}
.h1b_c00394{height:62.345729pt;}
.h1a_c00394{height:62.399062pt;}
.h17_c00394{height:62.808125pt;}
.h1c_c00394{height:63.625729pt;}
.h11_c00394{height:63.679062pt;}
.h19_c00394{height:64.905729pt;}
.h10_c00394{height:64.959062pt;}
.h15_c00394{height:64.961250pt;}
.h22_c00394{height:71.756250pt;}
.hb_c00394{height:72.312500pt;}
.h1e_c00394{height:73.063450pt;}
.h1d_c00394{height:86.775000pt;}
.h1_c00394{height:1122.666667pt;}
.h0_c00394{height:1122.880000pt;}
.w1_c00394{width:793.333333pt;}
.w0_c00394{width:793.600000pt;}
.x0_c00394{left:0.000000pt;}
.x1_c00394{left:100.733333pt;}
.x6_c00394{left:127.040000pt;}
.x10_c00394{left:130.626667pt;}
.x2_c00394{left:132.760000pt;}
.x3_c00394{left:171.520000pt;}
.x4_c00394{left:187.533333pt;}
.x11_c00394{left:192.893333pt;}
.x14_c00394{left:198.946667pt;}
.x5_c00394{left:265.906667pt;}
.x17_c00394{left:380.013333pt;}
.x7_c00394{left:392.320000pt;}
.x16_c00394{left:401.480000pt;}
.x8_c00394{left:421.133333pt;}
.x9_c00394{left:449.933333pt;}
.xa_c00394{left:479.360000pt;}
.x12_c00394{left:489.466667pt;}
.xb_c00394{left:508.440000pt;}
.x13_c00394{left:518.880000pt;}
.xc_c00394{left:538.253333pt;}
.xd_c00394{left:567.053333pt;}
.xe_c00394{left:596.813333pt;}
.xf_c00394{left:626.253333pt;}
.x15_c00394{left:635.040000pt;}
}





/* 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_c00395 {
    display:none;
  }
  .loading-indicator_c00395.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00395 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_c00395 { 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_c00395" -> "#page-container .classname_c00395")
 */
.pf_c00395 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00395 { /* 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_c00395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00395 { /* 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_c00395 { /* 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_c00395 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00395 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00395 {overflow:visible;}
  }
}
.c_c00395 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00395 { /* 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_c00395:after { /* webkit #35443 */
  content: '';
}
.t_c00395:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00395 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 */
}
.__c00395 { /* 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_c00395 { /* info for Javascript */
  display:none;
}
.l_c00395 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00395 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00395 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00395: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_c00395 {
    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_c00395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00395.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_c00395 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00395{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00395;src:url('chunks/assets/font_31d793fee430f0d19fbfa5ca.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.311035;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_c00395;src:url('chunks/assets/font_7d969453a1a7df537a836125.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;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_c00395;src:url('chunks/assets/font_898b79bea8633bdfc761cb0c.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:0.666000;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_c00395;src:url('chunks/assets/font_d2ab7b4f7723ef7475b55553.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.284180;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_c00395;src:url('chunks/assets/font_7b05724eb90baaa6722f97bf.woff2')format("woff");}.ff5_c00395{font-family:ff5_c00395;line-height:1.284668;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_c00395;src:url('chunks/assets/font_be0958d4f273f50261d71194.woff2')format("woff");}.ff6_c00395{font-family:ff6_c00395;line-height:1.284180;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;}
.m9_c00395{transform:matrix(0.057143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057143,0.000000,0.000000,0.250000,0,0);}
.m4_c00395{transform:matrix(0.060717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060717,0.000000,0.000000,0.250000,0,0);}
.m5_c00395{transform:matrix(0.065080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065080,0.000000,0.000000,0.250000,0,0);}
.m3_c00395{transform:matrix(0.070750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070750,0.000000,0.000000,0.250000,0,0);}
.m6_c00395{transform:matrix(0.073217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073217,0.000000,0.000000,0.250000,0,0);}
.mb_c00395{transform:matrix(0.074110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074110,0.000000,0.000000,0.250000,0,0);}
.m2_c00395{transform:matrix(0.077446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077446,0.000000,0.000000,0.250000,0,0);}
.mc_c00395{transform:matrix(0.077554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077554,0.000000,0.000000,0.250000,0,0);}
.m8_c00395{transform:matrix(0.083676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083676,0.000000,0.000000,0.250000,0,0);}
.m7_c00395{transform:matrix(0.084696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084696,0.000000,0.000000,0.250000,0,0);}
.ma_c00395{transform:matrix(0.120003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120003,0.000000,0.000000,0.250000,0,0);}
.m0_c00395{transform:matrix(0.239414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239414,0.000000,0.000000,0.250000,0,0);}
.m1_c00395{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);}
.md_c00395{transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);}
.v5_c00395{vertical-align:-33.120000px;}
.v9_c00395{vertical-align:-31.620000px;}
.va_c00395{vertical-align:-30.180000px;}
.vd_c00395{vertical-align:-28.860000px;}
.v12_c00395{vertical-align:-27.300000px;}
.v15_c00395{vertical-align:-25.980000px;}
.v17_c00395{vertical-align:-24.480000px;}
.vf_c00395{vertical-align:-23.100000px;}
.v2_c00395{vertical-align:-20.160000px;}
.ve_c00395{vertical-align:-17.280000px;}
.v10_c00395{vertical-align:-15.900000px;}
.v4_c00395{vertical-align:-14.460000px;}
.v11_c00395{vertical-align:-12.900000px;}
.v8_c00395{vertical-align:-11.520000px;}
.v7_c00395{vertical-align:-10.080000px;}
.v1_c00395{vertical-align:-8.640000px;}
.vb_c00395{vertical-align:-7.140000px;}
.vc_c00395{vertical-align:-5.700000px;}
.v13_c00395{vertical-align:-4.320000px;}
.v14_c00395{vertical-align:-2.880000px;}
.v16_c00395{vertical-align:-1.440000px;}
.v0_c00395{vertical-align:0.000000px;}
.v3_c00395{vertical-align:1.440000px;}
.v18_c00395{vertical-align:2.820000px;}
.v19_c00395{vertical-align:8.640000px;}
.v6_c00395{vertical-align:11.580000px;}
.v1a_c00395{vertical-align:15.900000px;}
.ls39_c00395{letter-spacing:-2.331000px;}
.ls3d_c00395{letter-spacing:-1.064280px;}
.ls3b_c00395{letter-spacing:-0.589860px;}
.ls42_c00395{letter-spacing:-0.424860px;}
.ls41_c00395{letter-spacing:-0.346920px;}
.ls40_c00395{letter-spacing:-0.157140px;}
.ls3e_c00395{letter-spacing:-0.093120px;}
.ls3a_c00395{letter-spacing:0.000000px;}
.ls3c_c00395{letter-spacing:0.054240px;}
.ls43_c00395{letter-spacing:0.182280px;}
.lsf_c00395{letter-spacing:0.285180px;}
.ls2a_c00395{letter-spacing:0.826440px;}
.ls2e_c00395{letter-spacing:0.884640px;}
.ls30_c00395{letter-spacing:0.937020px;}
.ls2_c00395{letter-spacing:0.942840px;}
.ls17_c00395{letter-spacing:0.954480px;}
.ls1e_c00395{letter-spacing:0.971940px;}
.ls20_c00395{letter-spacing:0.983580px;}
.ls24_c00395{letter-spacing:0.989400px;}
.ls15_c00395{letter-spacing:0.995220px;}
.ls5_c00395{letter-spacing:1.006860px;}
.ls31_c00395{letter-spacing:1.041780px;}
.ls16_c00395{letter-spacing:1.047600px;}
.ls38_c00395{letter-spacing:1.065060px;}
.ls36_c00395{letter-spacing:1.077300px;}
.ls0_c00395{letter-spacing:1.105800px;}
.ls6_c00395{letter-spacing:1.117440px;}
.ls33_c00395{letter-spacing:1.123260px;}
.ls35_c00395{letter-spacing:1.128600px;}
.ls34_c00395{letter-spacing:1.129080px;}
.lse_c00395{letter-spacing:1.134900px;}
.ls28_c00395{letter-spacing:1.140720px;}
.ls3_c00395{letter-spacing:1.152360px;}
.ls37_c00395{letter-spacing:1.169820px;}
.lsb_c00395{letter-spacing:1.187280px;}
.ls4_c00395{letter-spacing:1.198920px;}
.ls2d_c00395{letter-spacing:1.204740px;}
.ls29_c00395{letter-spacing:1.210560px;}
.ls2c_c00395{letter-spacing:1.233840px;}
.ls25_c00395{letter-spacing:1.245480px;}
.ls7_c00395{letter-spacing:1.251300px;}
.lsc_c00395{letter-spacing:1.257120px;}
.ls13_c00395{letter-spacing:1.274580px;}
.ls27_c00395{letter-spacing:1.280400px;}
.ls22_c00395{letter-spacing:1.297860px;}
.ls9_c00395{letter-spacing:1.309500px;}
.ls18_c00395{letter-spacing:1.315320px;}
.ls2f_c00395{letter-spacing:1.326960px;}
.ls11_c00395{letter-spacing:1.344420px;}
.lsd_c00395{letter-spacing:1.361880px;}
.ls26_c00395{letter-spacing:1.373520px;}
.ls10_c00395{letter-spacing:1.385160px;}
.ls8_c00395{letter-spacing:1.402620px;}
.ls2b_c00395{letter-spacing:1.408440px;}
.ls1f_c00395{letter-spacing:1.437540px;}
.ls12_c00395{letter-spacing:1.460820px;}
.ls19_c00395{letter-spacing:1.466640px;}
.ls1b_c00395{letter-spacing:1.472460px;}
.ls1d_c00395{letter-spacing:1.484100px;}
.ls21_c00395{letter-spacing:1.530660px;}
.lsa_c00395{letter-spacing:1.548120px;}
.ls32_c00395{letter-spacing:1.553940px;}
.ls1c_c00395{letter-spacing:1.571400px;}
.ls23_c00395{letter-spacing:1.588860px;}
.ls1_c00395{letter-spacing:1.617960px;}
.ls14_c00395{letter-spacing:1.722720px;}
.ls1a_c00395{letter-spacing:2.066100px;}
.ls3f_c00395{letter-spacing:2.910000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{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__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00395{word-spacing:0.000000px;}
._0_c00395{margin-left:-23.762400px;}
._27_c00395{margin-left:-13.938900px;}
._d_c00395{margin-left:-1.827480px;}
._19_c00395{width:1.105800px;}
._1_c00395{width:2.793360px;}
._2_c00395{width:21.085800px;}
._3d_c00395{width:76.996800px;}
._8_c00395{width:78.097200px;}
._7_c00395{width:79.546800px;}
._a_c00395{width:80.883000px;}
._b_c00395{width:82.141800px;}
._9_c00395{width:83.578800px;}
._40_c00395{width:85.876200px;}
._3e_c00395{width:209.332380px;}
._1b_c00395{width:211.356000px;}
._23_c00395{width:212.700000px;}
._25_c00395{width:214.785000px;}
._1f_c00395{width:216.553860px;}
._4_c00395{width:342.630000px;}
._36_c00395{width:344.040000px;}
._38_c00395{width:345.657000px;}
._2a_c00395{width:346.683000px;}
._42_c00395{width:567.274920px;}
._32_c00395{width:621.290340px;}
._f_c00395{width:629.682720px;}
._6_c00395{width:635.017920px;}
._2d_c00395{width:647.536980px;}
._22_c00395{width:748.428480px;}
._3f_c00395{width:806.441400px;}
._2e_c00395{width:823.585500px;}
._1d_c00395{width:853.406520px;}
._21_c00395{width:876.445200px;}
._39_c00395{width:902.589540px;}
._2f_c00395{width:903.785100px;}
._30_c00395{width:907.924380px;}
._29_c00395{width:945.857880px;}
._c_c00395{width:947.320080px;}
._31_c00395{width:954.411600px;}
._37_c00395{width:990.303900px;}
._1a_c00395{width:1037.712480px;}
._e_c00395{width:1041.584880px;}
._2c_c00395{width:1068.387480px;}
._2b_c00395{width:1082.555820px;}
._12_c00395{width:1091.523240px;}
._3b_c00395{width:1104.694320px;}
._41_c00395{width:1119.998940px;}
._13_c00395{width:1121.993820px;}
._3a_c00395{width:1123.443480px;}
._15_c00395{width:1128.078180px;}
._3c_c00395{width:1132.765200px;}
._14_c00395{width:1140.379200px;}
._33_c00395{width:1148.839020px;}
._10_c00395{width:1162.109940px;}
._26_c00395{width:1170.175380px;}
._34_c00395{width:1180.258320px;}
._18_c00395{width:1208.432460px;}
._16_c00395{width:1228.333980px;}
._28_c00395{width:1249.593960px;}
._11_c00395{width:1251.600720px;}
._1c_c00395{width:1259.998800px;}
._20_c00395{width:1267.709640px;}
._24_c00395{width:1268.740440px;}
._1e_c00395{width:1314.610080px;}
._3_c00395{width:1325.014920px;}
._17_c00395{width:1345.656420px;}
._5_c00395{width:1426.110120px;}
._35_c00395{width:1446.946440px;}
.fc0_c00395{color:transparent;}
.fs3_c00395{font-size:50.400000px;}
.fsd_c00395{font-size:54.600000px;}
.fs5_c00395{font-size:56.400000px;}
.fse_c00395{font-size:57.000000px;}
.fs4_c00395{font-size:58.200000px;}
.fs6_c00395{font-size:58.800000px;}
.fs0_c00395{font-size:66.600000px;}
.fs2_c00395{font-size:67.800000px;}
.fsb_c00395{font-size:68.400000px;}
.fs9_c00395{font-size:77.400000px;}
.fsf_c00395{font-size:78.600000px;}
.fsa_c00395{font-size:84.600000px;}
.fs8_c00395{font-size:85.200000px;}
.fsc_c00395{font-size:89.400000px;}
.fs7_c00395{font-size:90.600000px;}
.fs1_c00395{font-size:95.400000px;}
.y0_c00395{bottom:0.000000px;}
.y37_c00395{bottom:105.480000px;}
.y36_c00395{bottom:168.120000px;}
.y35_c00395{bottom:185.760000px;}
.y34_c00395{bottom:203.775000px;}
.y33_c00395{bottom:221.775000px;}
.y32_c00395{bottom:239.415000px;}
.y31_c00395{bottom:257.415000px;}
.y30_c00395{bottom:275.415000px;}
.y2f_c00395{bottom:293.415000px;}
.y2e_c00395{bottom:311.415000px;}
.y2d_c00395{bottom:328.695000px;}
.y2c_c00395{bottom:346.695000px;}
.y2b_c00395{bottom:365.055000px;}
.y2a_c00395{bottom:383.055000px;}
.y29_c00395{bottom:400.695000px;}
.y28_c00395{bottom:418.695000px;}
.y27_c00395{bottom:436.695000px;}
.y26_c00395{bottom:448.200000px;}
.y25_c00395{bottom:454.335000px;}
.y24_c00395{bottom:472.695000px;}
.y23_c00395{bottom:490.695000px;}
.y22_c00395{bottom:508.695000px;}
.y21_c00395{bottom:526.695000px;}
.y20_c00395{bottom:544.335000px;}
.y1f_c00395{bottom:562.695000px;}
.y1e_c00395{bottom:580.695000px;}
.y1d_c00395{bottom:598.695000px;}
.y1c_c00395{bottom:616.695000px;}
.y1b_c00395{bottom:634.335000px;}
.y1a_c00395{bottom:652.335000px;}
.y19_c00395{bottom:669.975000px;}
.y18_c00395{bottom:687.975000px;}
.y17_c00395{bottom:705.975000px;}
.y16_c00395{bottom:723.600000px;}
.y15_c00395{bottom:741.975000px;}
.y14_c00395{bottom:759.975000px;}
.y13_c00395{bottom:777.615000px;}
.y12_c00395{bottom:795.615000px;}
.y11_c00395{bottom:813.615000px;}
.y10_c00395{bottom:831.240000px;}
.yf_c00395{bottom:849.615000px;}
.ye_c00395{bottom:867.615000px;}
.yd_c00395{bottom:885.240000px;}
.yc_c00395{bottom:903.240000px;}
.yb_c00395{bottom:920.880000px;}
.ya_c00395{bottom:938.880000px;}
.y9_c00395{bottom:956.880000px;}
.y8_c00395{bottom:974.880000px;}
.y7_c00395{bottom:992.520000px;}
.y6_c00395{bottom:1010.175000px;}
.y5_c00395{bottom:1027.815000px;}
.y4_c00395{bottom:1045.815000px;}
.y3_c00395{bottom:1063.815000px;}
.y2_c00395{bottom:1079.295000px;}
.y1_c00395{bottom:1156.335000px;}
.h4_c00395{height:33.566400px;}
.h5_c00395{height:57.091699px;}
.h6_c00395{height:57.708984px;}
.h17_c00395{height:57.716381px;}
.h19_c00395{height:58.233516px;}
.h2_c00395{height:67.120312px;}
.hd_c00395{height:67.130273px;}
.h8_c00395{height:67.378945px;}
.hb_c00395{height:67.719141px;}
.h11_c00395{height:68.630273px;}
.h7_c00395{height:68.758945px;}
.h9_c00395{height:68.818945px;}
.hc_c00395{height:69.159141px;}
.h12_c00395{height:70.599141px;}
.hf_c00395{height:70.659141px;}
.h1c_c00395{height:71.450273px;}
.ha_c00395{height:71.638945px;}
.he_c00395{height:73.018945px;}
.h10_c00395{height:74.518945px;}
.h1d_c00395{height:74.777344px;}
.h14_c00395{height:75.877945px;}
.h13_c00395{height:75.898945px;}
.h15_c00395{height:75.901406px;}
.h1b_c00395{height:77.338945px;}
.h18_c00395{height:77.398945px;}
.h1e_c00395{height:77.499145px;}
.h1a_c00395{height:78.841406px;}
.h16_c00395{height:82.196381px;}
.h3_c00395{height:99.499219px;}
.h1_c00395{height:1263.000000px;}
.h0_c00395{height:1263.240000px;}
.w1_c00395{width:892.500000px;}
.w0_c00395{width:892.800000px;}
.x0_c00395{left:0.000000px;}
.x1_c00395{left:110.805000px;}
.x2_c00395{left:136.140000px;}
.x3_c00395{left:139.320000px;}
.x10_c00395{left:140.505000px;}
.xf_c00395{left:141.615000px;}
.xe_c00395{left:143.040000px;}
.x11_c00395{left:230.325000px;}
.x4_c00395{left:362.520000px;}
.x13_c00395{left:425.355000px;}
.x5_c00395{left:440.280000px;}
.x6_c00395{left:474.495000px;}
.x7_c00395{left:507.255000px;}
.x12_c00395{left:517.140000px;}
.x8_c00395{left:540.000000px;}
.x9_c00395{left:573.495000px;}
.xa_c00395{left:606.600000px;}
.xb_c00395{left:639.000000px;}
.xc_c00395{left:672.855000px;}
.xd_c00395{left:706.335000px;}
@media print{
.v5_c00395{vertical-align:-29.440000pt;}
.v9_c00395{vertical-align:-28.106667pt;}
.va_c00395{vertical-align:-26.826667pt;}
.vd_c00395{vertical-align:-25.653333pt;}
.v12_c00395{vertical-align:-24.266667pt;}
.v15_c00395{vertical-align:-23.093333pt;}
.v17_c00395{vertical-align:-21.760000pt;}
.vf_c00395{vertical-align:-20.533333pt;}
.v2_c00395{vertical-align:-17.920000pt;}
.ve_c00395{vertical-align:-15.360000pt;}
.v10_c00395{vertical-align:-14.133333pt;}
.v4_c00395{vertical-align:-12.853333pt;}
.v11_c00395{vertical-align:-11.466667pt;}
.v8_c00395{vertical-align:-10.240000pt;}
.v7_c00395{vertical-align:-8.960000pt;}
.v1_c00395{vertical-align:-7.680000pt;}
.vb_c00395{vertical-align:-6.346667pt;}
.vc_c00395{vertical-align:-5.066667pt;}
.v13_c00395{vertical-align:-3.840000pt;}
.v14_c00395{vertical-align:-2.560000pt;}
.v16_c00395{vertical-align:-1.280000pt;}
.v0_c00395{vertical-align:0.000000pt;}
.v3_c00395{vertical-align:1.280000pt;}
.v18_c00395{vertical-align:2.506667pt;}
.v19_c00395{vertical-align:7.680000pt;}
.v6_c00395{vertical-align:10.293333pt;}
.v1a_c00395{vertical-align:14.133333pt;}
.ls39_c00395{letter-spacing:-2.072000pt;}
.ls3d_c00395{letter-spacing:-0.946027pt;}
.ls3b_c00395{letter-spacing:-0.524320pt;}
.ls42_c00395{letter-spacing:-0.377653pt;}
.ls41_c00395{letter-spacing:-0.308373pt;}
.ls40_c00395{letter-spacing:-0.139680pt;}
.ls3e_c00395{letter-spacing:-0.082773pt;}
.ls3a_c00395{letter-spacing:0.000000pt;}
.ls3c_c00395{letter-spacing:0.048213pt;}
.ls43_c00395{letter-spacing:0.162027pt;}
.lsf_c00395{letter-spacing:0.253493pt;}
.ls2a_c00395{letter-spacing:0.734613pt;}
.ls2e_c00395{letter-spacing:0.786347pt;}
.ls30_c00395{letter-spacing:0.832907pt;}
.ls2_c00395{letter-spacing:0.838080pt;}
.ls17_c00395{letter-spacing:0.848427pt;}
.ls1e_c00395{letter-spacing:0.863947pt;}
.ls20_c00395{letter-spacing:0.874293pt;}
.ls24_c00395{letter-spacing:0.879467pt;}
.ls15_c00395{letter-spacing:0.884640pt;}
.ls5_c00395{letter-spacing:0.894987pt;}
.ls31_c00395{letter-spacing:0.926027pt;}
.ls16_c00395{letter-spacing:0.931200pt;}
.ls38_c00395{letter-spacing:0.946720pt;}
.ls36_c00395{letter-spacing:0.957600pt;}
.ls0_c00395{letter-spacing:0.982933pt;}
.ls6_c00395{letter-spacing:0.993280pt;}
.ls33_c00395{letter-spacing:0.998453pt;}
.ls35_c00395{letter-spacing:1.003200pt;}
.ls34_c00395{letter-spacing:1.003627pt;}
.lse_c00395{letter-spacing:1.008800pt;}
.ls28_c00395{letter-spacing:1.013973pt;}
.ls3_c00395{letter-spacing:1.024320pt;}
.ls37_c00395{letter-spacing:1.039840pt;}
.lsb_c00395{letter-spacing:1.055360pt;}
.ls4_c00395{letter-spacing:1.065707pt;}
.ls2d_c00395{letter-spacing:1.070880pt;}
.ls29_c00395{letter-spacing:1.076053pt;}
.ls2c_c00395{letter-spacing:1.096747pt;}
.ls25_c00395{letter-spacing:1.107093pt;}
.ls7_c00395{letter-spacing:1.112267pt;}
.lsc_c00395{letter-spacing:1.117440pt;}
.ls13_c00395{letter-spacing:1.132960pt;}
.ls27_c00395{letter-spacing:1.138133pt;}
.ls22_c00395{letter-spacing:1.153653pt;}
.ls9_c00395{letter-spacing:1.164000pt;}
.ls18_c00395{letter-spacing:1.169173pt;}
.ls2f_c00395{letter-spacing:1.179520pt;}
.ls11_c00395{letter-spacing:1.195040pt;}
.lsd_c00395{letter-spacing:1.210560pt;}
.ls26_c00395{letter-spacing:1.220907pt;}
.ls10_c00395{letter-spacing:1.231253pt;}
.ls8_c00395{letter-spacing:1.246773pt;}
.ls2b_c00395{letter-spacing:1.251947pt;}
.ls1f_c00395{letter-spacing:1.277813pt;}
.ls12_c00395{letter-spacing:1.298507pt;}
.ls19_c00395{letter-spacing:1.303680pt;}
.ls1b_c00395{letter-spacing:1.308853pt;}
.ls1d_c00395{letter-spacing:1.319200pt;}
.ls21_c00395{letter-spacing:1.360587pt;}
.lsa_c00395{letter-spacing:1.376107pt;}
.ls32_c00395{letter-spacing:1.381280pt;}
.ls1c_c00395{letter-spacing:1.396800pt;}
.ls23_c00395{letter-spacing:1.412320pt;}
.ls1_c00395{letter-spacing:1.438187pt;}
.ls14_c00395{letter-spacing:1.531307pt;}
.ls1a_c00395{letter-spacing:1.836533pt;}
.ls3f_c00395{letter-spacing:2.586667pt;}
.ws0_c00395{word-spacing:0.000000pt;}
._0_c00395{margin-left:-21.122133pt;}
._27_c00395{margin-left:-12.390133pt;}
._d_c00395{margin-left:-1.624427pt;}
._19_c00395{width:0.982933pt;}
._1_c00395{width:2.482987pt;}
._2_c00395{width:18.742933pt;}
._3d_c00395{width:68.441600pt;}
._8_c00395{width:69.419733pt;}
._7_c00395{width:70.708267pt;}
._a_c00395{width:71.896000pt;}
._b_c00395{width:73.014933pt;}
._9_c00395{width:74.292267pt;}
._40_c00395{width:76.334400pt;}
._3e_c00395{width:186.073227pt;}
._1b_c00395{width:187.872000pt;}
._23_c00395{width:189.066667pt;}
._25_c00395{width:190.920000pt;}
._1f_c00395{width:192.492320pt;}
._4_c00395{width:304.560000pt;}
._36_c00395{width:305.813333pt;}
._38_c00395{width:307.250667pt;}
._2a_c00395{width:308.162667pt;}
._42_c00395{width:504.244373pt;}
._32_c00395{width:552.258080pt;}
._f_c00395{width:559.717973pt;}
._6_c00395{width:564.460373pt;}
._2d_c00395{width:575.588427pt;}
._22_c00395{width:665.269760pt;}
._3f_c00395{width:716.836800pt;}
._2e_c00395{width:732.076000pt;}
._1d_c00395{width:758.583573pt;}
._21_c00395{width:779.062400pt;}
._39_c00395{width:802.301813pt;}
._2f_c00395{width:803.364533pt;}
._30_c00395{width:807.043893pt;}
._29_c00395{width:840.762560pt;}
._c_c00395{width:842.062293pt;}
._31_c00395{width:848.365867pt;}
._37_c00395{width:880.270133pt;}
._1a_c00395{width:922.411093pt;}
._e_c00395{width:925.853227pt;}
._2c_c00395{width:949.677760pt;}
._2b_c00395{width:962.271840pt;}
._12_c00395{width:970.242880pt;}
._3b_c00395{width:981.950507pt;}
._41_c00395{width:995.554613pt;}
._13_c00395{width:997.327840pt;}
._3a_c00395{width:998.616427pt;}
._15_c00395{width:1002.736160pt;}
._3c_c00395{width:1006.902400pt;}
._14_c00395{width:1013.670400pt;}
._33_c00395{width:1021.190240pt;}
._10_c00395{width:1032.986613pt;}
._26_c00395{width:1040.155893pt;}
._34_c00395{width:1049.118507pt;}
._18_c00395{width:1074.162187pt;}
._16_c00395{width:1091.852427pt;}
._28_c00395{width:1110.750187pt;}
._11_c00395{width:1112.533973pt;}
._1c_c00395{width:1119.998933pt;}
._20_c00395{width:1126.853013pt;}
._24_c00395{width:1127.769280pt;}
._1e_c00395{width:1168.542293pt;}
._3_c00395{width:1177.791040pt;}
._17_c00395{width:1196.139040pt;}
._5_c00395{width:1267.653440pt;}
._35_c00395{width:1286.174613pt;}
.fs3_c00395{font-size:44.800000pt;}
.fsd_c00395{font-size:48.533333pt;}
.fs5_c00395{font-size:50.133333pt;}
.fse_c00395{font-size:50.666667pt;}
.fs4_c00395{font-size:51.733333pt;}
.fs6_c00395{font-size:52.266667pt;}
.fs0_c00395{font-size:59.200000pt;}
.fs2_c00395{font-size:60.266667pt;}
.fsb_c00395{font-size:60.800000pt;}
.fs9_c00395{font-size:68.800000pt;}
.fsf_c00395{font-size:69.866667pt;}
.fsa_c00395{font-size:75.200000pt;}
.fs8_c00395{font-size:75.733333pt;}
.fsc_c00395{font-size:79.466667pt;}
.fs7_c00395{font-size:80.533333pt;}
.fs1_c00395{font-size:84.800000pt;}
.y0_c00395{bottom:0.000000pt;}
.y37_c00395{bottom:93.760000pt;}
.y36_c00395{bottom:149.440000pt;}
.y35_c00395{bottom:165.120000pt;}
.y34_c00395{bottom:181.133333pt;}
.y33_c00395{bottom:197.133333pt;}
.y32_c00395{bottom:212.813333pt;}
.y31_c00395{bottom:228.813333pt;}
.y30_c00395{bottom:244.813333pt;}
.y2f_c00395{bottom:260.813333pt;}
.y2e_c00395{bottom:276.813333pt;}
.y2d_c00395{bottom:292.173333pt;}
.y2c_c00395{bottom:308.173333pt;}
.y2b_c00395{bottom:324.493333pt;}
.y2a_c00395{bottom:340.493333pt;}
.y29_c00395{bottom:356.173333pt;}
.y28_c00395{bottom:372.173333pt;}
.y27_c00395{bottom:388.173333pt;}
.y26_c00395{bottom:398.400000pt;}
.y25_c00395{bottom:403.853333pt;}
.y24_c00395{bottom:420.173333pt;}
.y23_c00395{bottom:436.173333pt;}
.y22_c00395{bottom:452.173333pt;}
.y21_c00395{bottom:468.173333pt;}
.y20_c00395{bottom:483.853333pt;}
.y1f_c00395{bottom:500.173333pt;}
.y1e_c00395{bottom:516.173333pt;}
.y1d_c00395{bottom:532.173333pt;}
.y1c_c00395{bottom:548.173333pt;}
.y1b_c00395{bottom:563.853333pt;}
.y1a_c00395{bottom:579.853333pt;}
.y19_c00395{bottom:595.533333pt;}
.y18_c00395{bottom:611.533333pt;}
.y17_c00395{bottom:627.533333pt;}
.y16_c00395{bottom:643.200000pt;}
.y15_c00395{bottom:659.533333pt;}
.y14_c00395{bottom:675.533333pt;}
.y13_c00395{bottom:691.213333pt;}
.y12_c00395{bottom:707.213333pt;}
.y11_c00395{bottom:723.213333pt;}
.y10_c00395{bottom:738.880000pt;}
.yf_c00395{bottom:755.213333pt;}
.ye_c00395{bottom:771.213333pt;}
.yd_c00395{bottom:786.880000pt;}
.yc_c00395{bottom:802.880000pt;}
.yb_c00395{bottom:818.560000pt;}
.ya_c00395{bottom:834.560000pt;}
.y9_c00395{bottom:850.560000pt;}
.y8_c00395{bottom:866.560000pt;}
.y7_c00395{bottom:882.240000pt;}
.y6_c00395{bottom:897.933333pt;}
.y5_c00395{bottom:913.613333pt;}
.y4_c00395{bottom:929.613333pt;}
.y3_c00395{bottom:945.613333pt;}
.y2_c00395{bottom:959.373333pt;}
.y1_c00395{bottom:1027.853333pt;}
.h4_c00395{height:29.836800pt;}
.h5_c00395{height:50.748177pt;}
.h6_c00395{height:51.296875pt;}
.h17_c00395{height:51.303450pt;}
.h19_c00395{height:51.763125pt;}
.h2_c00395{height:59.662500pt;}
.hd_c00395{height:59.671354pt;}
.h8_c00395{height:59.892396pt;}
.hb_c00395{height:60.194792pt;}
.h11_c00395{height:61.004687pt;}
.h7_c00395{height:61.119063pt;}
.h9_c00395{height:61.172396pt;}
.hc_c00395{height:61.474792pt;}
.h12_c00395{height:62.754792pt;}
.hf_c00395{height:62.808125pt;}
.h1c_c00395{height:63.511354pt;}
.ha_c00395{height:63.679062pt;}
.he_c00395{height:64.905729pt;}
.h10_c00395{height:66.239062pt;}
.h1d_c00395{height:66.468750pt;}
.h14_c00395{height:67.447062pt;}
.h13_c00395{height:67.465729pt;}
.h15_c00395{height:67.467917pt;}
.h1b_c00395{height:68.745729pt;}
.h18_c00395{height:68.799062pt;}
.h1e_c00395{height:68.888129pt;}
.h1a_c00395{height:70.081250pt;}
.h16_c00395{height:73.063450pt;}
.h3_c00395{height:88.443750pt;}
.h1_c00395{height:1122.666667pt;}
.h0_c00395{height:1122.880000pt;}
.w1_c00395{width:793.333333pt;}
.w0_c00395{width:793.600000pt;}
.x0_c00395{left:0.000000pt;}
.x1_c00395{left:98.493333pt;}
.x2_c00395{left:121.013333pt;}
.x3_c00395{left:123.840000pt;}
.x10_c00395{left:124.893333pt;}
.xf_c00395{left:125.880000pt;}
.xe_c00395{left:127.146667pt;}
.x11_c00395{left:204.733333pt;}
.x4_c00395{left:322.240000pt;}
.x13_c00395{left:378.093333pt;}
.x5_c00395{left:391.360000pt;}
.x6_c00395{left:421.773333pt;}
.x7_c00395{left:450.893333pt;}
.x12_c00395{left:459.680000pt;}
.x8_c00395{left:480.000000pt;}
.x9_c00395{left:509.773333pt;}
.xa_c00395{left:539.200000pt;}
.xb_c00395{left:568.000000pt;}
.xc_c00395{left:598.093333pt;}
.xd_c00395{left:627.853333pt;}
}





/* 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_c00396 {
    display:none;
  }
  .loading-indicator_c00396.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00396 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_c00396 { 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_c00396" -> "#page-container .classname_c00396")
 */
.pf_c00396 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00396 { /* 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_c00396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00396 { /* 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_c00396 { /* 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_c00396 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00396 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00396 {overflow:visible;}
  }
}
.c_c00396 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00396 { /* 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_c00396:after { /* webkit #35443 */
  content: '';
}
.t_c00396:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00396 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 */
}
.__c00396 { /* 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_c00396 { /* info for Javascript */
  display:none;
}
.l_c00396 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00396 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00396 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00396: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_c00396 {
    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_c00396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00396.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_c00396 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00396{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00396;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.311035;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_c00396;src:url('chunks/assets/font_b3d3b3717080c4c22a2408c3.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:0.666000;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_c00396;src:url('chunks/assets/font_29d24b74a2174f19fb2185dd.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.284668;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_c00396;src:url('chunks/assets/font_b40b699e5e47e5dbff0c5080.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:1.284180;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_c00396;src:url('chunks/assets/font_4adc253f221f8b6529fcb749.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;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;}
.m8_c00396{transform:matrix(0.070949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070949,0.000000,0.000000,0.250000,0,0);}
.m7_c00396{transform:matrix(0.079153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079153,0.000000,0.000000,0.250000,0,0);}
.m9_c00396{transform:matrix(0.089918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089918,0.000000,0.000000,0.250000,0,0);}
.m5_c00396{transform:matrix(0.100788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100788,0.000000,0.000000,0.250000,0,0);}
.m6_c00396{transform:matrix(0.106267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106267,0.000000,0.000000,0.250000,0,0);}
.m4_c00396{transform:matrix(0.138516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138516,0.000000,0.000000,0.250000,0,0);}
.mf_c00396{transform:matrix(0.148523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148523,0.000000,0.000000,0.250000,0,0);}
.m1_c00396{transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);}
.m2_c00396{transform:matrix(0.194566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194566,0.000000,0.000000,0.250000,0,0);}
.m3_c00396{transform:matrix(0.210748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210748,0.000000,0.000000,0.250000,0,0);}
.mc_c00396{transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);}
.m0_c00396{transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237739,0.000000,0.000000,0.250000,0,0);}
.m10_c00396{transform:matrix(0.242341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242341,0.000000,0.000000,0.250000,0,0);}
.mb_c00396{transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);}
.m11_c00396{transform:matrix(0.248649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248649,0.000000,0.000000,0.250000,0,0);}
.md_c00396{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.ma_c00396{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);}
.me_c00396{transform:matrix(0.261396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261396,0.000000,0.000000,0.250000,0,0);}
.vb_c00396{vertical-align:-30.180000px;}
.v8_c00396{vertical-align:-27.360000px;}
.vf_c00396{vertical-align:-18.720000px;}
.vc_c00396{vertical-align:-17.280000px;}
.v4_c00396{vertical-align:-15.900000px;}
.v7_c00396{vertical-align:-14.340000px;}
.v6_c00396{vertical-align:-12.900000px;}
.vd_c00396{vertical-align:-11.520000px;}
.ve_c00396{vertical-align:-7.140000px;}
.v1_c00396{vertical-align:-5.820000px;}
.v3_c00396{vertical-align:-4.380000px;}
.va_c00396{vertical-align:-2.880000px;}
.v5_c00396{vertical-align:-1.449600px;}
.v0_c00396{vertical-align:0.000000px;}
.v2_c00396{vertical-align:1.466400px;}
.v10_c00396{vertical-align:2.940000px;}
.v9_c00396{vertical-align:12.960000px;}
.ls21_c00396{letter-spacing:-3.129000px;}
.ls1c_c00396{letter-spacing:-2.562000px;}
.ls1d_c00396{letter-spacing:-2.352000px;}
.ls1a_c00396{letter-spacing:-2.331000px;}
.ls1e_c00396{letter-spacing:-2.142000px;}
.ls23_c00396{letter-spacing:-2.037000px;}
.ls1f_c00396{letter-spacing:-1.719720px;}
.ls1b_c00396{letter-spacing:0.000000px;}
.ls18_c00396{letter-spacing:0.783360px;}
.lse_c00396{letter-spacing:0.892800px;}
.ls16_c00396{letter-spacing:0.927360px;}
.ls15_c00396{letter-spacing:0.938880px;}
.ls8_c00396{letter-spacing:0.973440px;}
.ls19_c00396{letter-spacing:1.019520px;}
.ls4_c00396{letter-spacing:1.059840px;}
.ls1_c00396{letter-spacing:1.071360px;}
.ls12_c00396{letter-spacing:1.100160px;}
.ls22_c00396{letter-spacing:1.128960px;}
.ls13_c00396{letter-spacing:1.140480px;}
.ls5_c00396{letter-spacing:1.146240px;}
.lsa_c00396{letter-spacing:1.152000px;}
.lsf_c00396{letter-spacing:1.163520px;}
.ls3_c00396{letter-spacing:1.186560px;}
.ls2_c00396{letter-spacing:1.203840px;}
.lsc_c00396{letter-spacing:1.238400px;}
.ls0_c00396{letter-spacing:1.249920px;}
.lsd_c00396{letter-spacing:1.307520px;}
.ls9_c00396{letter-spacing:1.342080px;}
.ls7_c00396{letter-spacing:1.347840px;}
.ls11_c00396{letter-spacing:1.382400px;}
.ls17_c00396{letter-spacing:1.393920px;}
.ls14_c00396{letter-spacing:1.463040px;}
.ls10_c00396{letter-spacing:1.537920px;}
.lsb_c00396{letter-spacing:1.555200px;}
.ls6_c00396{letter-spacing:1.825920px;}
.ls20_c00396{letter-spacing:2.880000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{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__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00396{word-spacing:0.000000px;}
._15_c00396{margin-left:-8.073600px;}
._a_c00396{margin-left:-4.861440px;}
._c_c00396{margin-left:-1.981440px;}
._4_c00396{width:1.140480px;}
._24_c00396{width:2.499840px;}
._2_c00396{width:77.662800px;}
._6_c00396{width:79.620000px;}
._8_c00396{width:80.996400px;}
._7_c00396{width:82.740000px;}
._e_c00396{width:85.020000px;}
._13_c00396{width:211.556400px;}
._11_c00396{width:213.022800px;}
._f_c00396{width:214.434600px;}
._9_c00396{width:216.303600px;}
._23_c00396{width:343.492800px;}
._17_c00396{width:345.094200px;}
._1a_c00396{width:479.490600px;}
._1d_c00396{width:480.900000px;}
._d_c00396{width:659.021760px;}
._5_c00396{width:661.000800px;}
._20_c00396{width:777.472320px;}
._10_c00396{width:822.593280px;}
._22_c00396{width:909.478560px;}
._12_c00396{width:912.614880px;}
._1_c00396{width:933.300480px;}
._25_c00396{width:948.589920px;}
._b_c00396{width:978.683520px;}
._1e_c00396{width:1026.982080px;}
._19_c00396{width:1054.967520px;}
._14_c00396{width:1100.813880px;}
._1b_c00396{width:1118.340480px;}
._0_c00396{width:1142.803200px;}
._3_c00396{width:1149.461760px;}
._1c_c00396{width:1159.114080px;}
._16_c00396{width:1239.055200px;}
._18_c00396{width:1270.646400px;}
._1f_c00396{width:1291.726560px;}
._21_c00396{width:1307.829120px;}
.fc0_c00396{color:transparent;}
.fs1_c00396{font-size:47.520000px;}
.fs4_c00396{font-size:53.280000px;}
.fs6_c00396{font-size:56.400000px;}
.fs5_c00396{font-size:57.600000px;}
.fsd_c00396{font-size:58.200000px;}
.fsb_c00396{font-size:61.200000px;}
.fs0_c00396{font-size:66.600000px;}
.fs3_c00396{font-size:67.200000px;}
.fs2_c00396{font-size:73.200000px;}
.fsa_c00396{font-size:77.400000px;}
.fs9_c00396{font-size:84.600000px;}
.fs8_c00396{font-size:85.200000px;}
.fsc_c00396{font-size:89.400000px;}
.fs7_c00396{font-size:90.600000px;}
.y0_c00396{bottom:0.000000px;}
.y1f_c00396{bottom:110.520000px;}
.y1e_c00396{bottom:654.855000px;}
.y1d_c00396{bottom:672.855000px;}
.y1c_c00396{bottom:690.480000px;}
.y1b_c00396{bottom:706.695000px;}
.y1a_c00396{bottom:708.480000px;}
.y19_c00396{bottom:726.135000px;}
.y18_c00396{bottom:744.135000px;}
.y16_c00396{bottom:762.135000px;}
.y17_c00396{bottom:766.095000px;}
.y15_c00396{bottom:779.760000px;}
.y14_c00396{bottom:797.760000px;}
.y13_c00396{bottom:815.400000px;}
.y12_c00396{bottom:833.055000px;}
.y11_c00396{bottom:851.400000px;}
.y10_c00396{bottom:869.055000px;}
.yf_c00396{bottom:885.600000px;}
.ye_c00396{bottom:886.695000px;}
.yd_c00396{bottom:900.375000px;}
.yc_c00396{bottom:904.335000px;}
.yb_c00396{bottom:921.975000px;}
.ya_c00396{bottom:939.975000px;}
.y9_c00396{bottom:957.600000px;}
.y8_c00396{bottom:975.240000px;}
.y7_c00396{bottom:992.895000px;}
.y6_c00396{bottom:1010.535000px;}
.y5_c00396{bottom:1028.535000px;}
.y4_c00396{bottom:1046.175000px;}
.y3_c00396{bottom:1064.535000px;}
.y2_c00396{bottom:1080.375000px;}
.y1_c00396{bottom:1156.335000px;}
.h3_c00396{height:31.648320px;}
.h6_c00396{height:35.484480px;}
.hd_c00396{height:55.353516px;}
.h7_c00396{height:56.503125px;}
.h13_c00396{height:57.120117px;}
.hb_c00396{height:60.064453px;}
.h5_c00396{height:65.953125px;}
.h10_c00396{height:66.279141px;}
.h2_c00396{height:67.120312px;}
.h12_c00396{height:67.779141px;}
.ha_c00396{height:69.219141px;}
.h9_c00396{height:69.279141px;}
.hf_c00396{height:70.198945px;}
.he_c00396{height:71.638945px;}
.h4_c00396{height:71.841797px;}
.h8_c00396{height:73.018945px;}
.hc_c00396{height:87.478945px;}
.h11_c00396{height:87.741211px;}
.h1_c00396{height:1263.000000px;}
.h0_c00396{height:1263.240000px;}
.w1_c00396{width:892.500000px;}
.w0_c00396{width:892.800000px;}
.x0_c00396{left:0.000000px;}
.x1_c00396{left:109.005000px;}
.x4_c00396{left:138.735000px;}
.x2_c00396{left:142.575000px;}
.x3_c00396{left:188.475000px;}
.xf_c00396{left:209.085000px;}
.x11_c00396{left:215.070000px;}
.xb_c00396{left:246.750000px;}
.xc_c00396{left:261.255000px;}
.x13_c00396{left:422.115000px;}
.x5_c00396{left:437.040000px;}
.xd_c00396{left:448.215000px;}
.x6_c00396{left:469.440000px;}
.xe_c00396{left:515.025000px;}
.x7_c00396{left:537.120000px;}
.x12_c00396{left:581.625000px;}
.x8_c00396{left:604.095000px;}
.x9_c00396{left:636.495000px;}
.xa_c00396{left:670.335000px;}
.x10_c00396{left:681.630000px;}
@media print{
.vb_c00396{vertical-align:-26.826667pt;}
.v8_c00396{vertical-align:-24.320000pt;}
.vf_c00396{vertical-align:-16.640000pt;}
.vc_c00396{vertical-align:-15.360000pt;}
.v4_c00396{vertical-align:-14.133333pt;}
.v7_c00396{vertical-align:-12.746667pt;}
.v6_c00396{vertical-align:-11.466667pt;}
.vd_c00396{vertical-align:-10.240000pt;}
.ve_c00396{vertical-align:-6.346667pt;}
.v1_c00396{vertical-align:-5.173333pt;}
.v3_c00396{vertical-align:-3.893333pt;}
.va_c00396{vertical-align:-2.560000pt;}
.v5_c00396{vertical-align:-1.288533pt;}
.v0_c00396{vertical-align:0.000000pt;}
.v2_c00396{vertical-align:1.303467pt;}
.v10_c00396{vertical-align:2.613333pt;}
.v9_c00396{vertical-align:11.520000pt;}
.ls21_c00396{letter-spacing:-2.781333pt;}
.ls1c_c00396{letter-spacing:-2.277333pt;}
.ls1d_c00396{letter-spacing:-2.090667pt;}
.ls1a_c00396{letter-spacing:-2.072000pt;}
.ls1e_c00396{letter-spacing:-1.904000pt;}
.ls23_c00396{letter-spacing:-1.810667pt;}
.ls1f_c00396{letter-spacing:-1.528640pt;}
.ls1b_c00396{letter-spacing:0.000000pt;}
.ls18_c00396{letter-spacing:0.696320pt;}
.lse_c00396{letter-spacing:0.793600pt;}
.ls16_c00396{letter-spacing:0.824320pt;}
.ls15_c00396{letter-spacing:0.834560pt;}
.ls8_c00396{letter-spacing:0.865280pt;}
.ls19_c00396{letter-spacing:0.906240pt;}
.ls4_c00396{letter-spacing:0.942080pt;}
.ls1_c00396{letter-spacing:0.952320pt;}
.ls12_c00396{letter-spacing:0.977920pt;}
.ls22_c00396{letter-spacing:1.003520pt;}
.ls13_c00396{letter-spacing:1.013760pt;}
.ls5_c00396{letter-spacing:1.018880pt;}
.lsa_c00396{letter-spacing:1.024000pt;}
.lsf_c00396{letter-spacing:1.034240pt;}
.ls3_c00396{letter-spacing:1.054720pt;}
.ls2_c00396{letter-spacing:1.070080pt;}
.lsc_c00396{letter-spacing:1.100800pt;}
.ls0_c00396{letter-spacing:1.111040pt;}
.lsd_c00396{letter-spacing:1.162240pt;}
.ls9_c00396{letter-spacing:1.192960pt;}
.ls7_c00396{letter-spacing:1.198080pt;}
.ls11_c00396{letter-spacing:1.228800pt;}
.ls17_c00396{letter-spacing:1.239040pt;}
.ls14_c00396{letter-spacing:1.300480pt;}
.ls10_c00396{letter-spacing:1.367040pt;}
.lsb_c00396{letter-spacing:1.382400pt;}
.ls6_c00396{letter-spacing:1.623040pt;}
.ls20_c00396{letter-spacing:2.560000pt;}
.ws0_c00396{word-spacing:0.000000pt;}
._15_c00396{margin-left:-7.176533pt;}
._a_c00396{margin-left:-4.321280pt;}
._c_c00396{margin-left:-1.761280pt;}
._4_c00396{width:1.013760pt;}
._24_c00396{width:2.222080pt;}
._2_c00396{width:69.033600pt;}
._6_c00396{width:70.773333pt;}
._8_c00396{width:71.996800pt;}
._7_c00396{width:73.546667pt;}
._e_c00396{width:75.573333pt;}
._13_c00396{width:188.050133pt;}
._11_c00396{width:189.353600pt;}
._f_c00396{width:190.608533pt;}
._9_c00396{width:192.269867pt;}
._23_c00396{width:305.326933pt;}
._17_c00396{width:306.750400pt;}
._1a_c00396{width:426.213867pt;}
._1d_c00396{width:427.466667pt;}
._d_c00396{width:585.797120pt;}
._5_c00396{width:587.556267pt;}
._20_c00396{width:691.086507pt;}
._10_c00396{width:731.194027pt;}
._22_c00396{width:808.425387pt;}
._12_c00396{width:811.213227pt;}
._1_c00396{width:829.600427pt;}
._25_c00396{width:843.191040pt;}
._b_c00396{width:869.940907pt;}
._1e_c00396{width:912.872960pt;}
._19_c00396{width:937.748907pt;}
._14_c00396{width:978.501227pt;}
._1b_c00396{width:994.080427pt;}
._0_c00396{width:1015.825067pt;}
._3_c00396{width:1021.743787pt;}
._1c_c00396{width:1030.323627pt;}
._16_c00396{width:1101.382400pt;}
._18_c00396{width:1129.463467pt;}
._1f_c00396{width:1148.201387pt;}
._21_c00396{width:1162.514773pt;}
.fs1_c00396{font-size:42.240000pt;}
.fs4_c00396{font-size:47.360000pt;}
.fs6_c00396{font-size:50.133333pt;}
.fs5_c00396{font-size:51.200000pt;}
.fsd_c00396{font-size:51.733333pt;}
.fsb_c00396{font-size:54.400000pt;}
.fs0_c00396{font-size:59.200000pt;}
.fs3_c00396{font-size:59.733333pt;}
.fs2_c00396{font-size:65.066667pt;}
.fsa_c00396{font-size:68.800000pt;}
.fs9_c00396{font-size:75.200000pt;}
.fs8_c00396{font-size:75.733333pt;}
.fsc_c00396{font-size:79.466667pt;}
.fs7_c00396{font-size:80.533333pt;}
.y0_c00396{bottom:0.000000pt;}
.y1f_c00396{bottom:98.240000pt;}
.y1e_c00396{bottom:582.093333pt;}
.y1d_c00396{bottom:598.093333pt;}
.y1c_c00396{bottom:613.760000pt;}
.y1b_c00396{bottom:628.173333pt;}
.y1a_c00396{bottom:629.760000pt;}
.y19_c00396{bottom:645.453333pt;}
.y18_c00396{bottom:661.453333pt;}
.y16_c00396{bottom:677.453333pt;}
.y17_c00396{bottom:680.973333pt;}
.y15_c00396{bottom:693.120000pt;}
.y14_c00396{bottom:709.120000pt;}
.y13_c00396{bottom:724.800000pt;}
.y12_c00396{bottom:740.493333pt;}
.y11_c00396{bottom:756.800000pt;}
.y10_c00396{bottom:772.493333pt;}
.yf_c00396{bottom:787.200000pt;}
.ye_c00396{bottom:788.173333pt;}
.yd_c00396{bottom:800.333333pt;}
.yc_c00396{bottom:803.853333pt;}
.yb_c00396{bottom:819.533333pt;}
.ya_c00396{bottom:835.533333pt;}
.y9_c00396{bottom:851.200000pt;}
.y8_c00396{bottom:866.880000pt;}
.y7_c00396{bottom:882.573333pt;}
.y6_c00396{bottom:898.253333pt;}
.y5_c00396{bottom:914.253333pt;}
.y4_c00396{bottom:929.933333pt;}
.y3_c00396{bottom:946.253333pt;}
.y2_c00396{bottom:960.333333pt;}
.y1_c00396{bottom:1027.853333pt;}
.h3_c00396{height:28.131840pt;}
.h6_c00396{height:31.541760pt;}
.hd_c00396{height:49.203125pt;}
.h7_c00396{height:50.225000pt;}
.h13_c00396{height:50.773437pt;}
.hb_c00396{height:53.390625pt;}
.h5_c00396{height:58.625000pt;}
.h10_c00396{height:58.914792pt;}
.h2_c00396{height:59.662500pt;}
.h12_c00396{height:60.248125pt;}
.ha_c00396{height:61.528125pt;}
.h9_c00396{height:61.581458pt;}
.hf_c00396{height:62.399062pt;}
.he_c00396{height:63.679062pt;}
.h4_c00396{height:63.859375pt;}
.h8_c00396{height:64.905729pt;}
.hc_c00396{height:77.759063pt;}
.h11_c00396{height:77.992188pt;}
.h1_c00396{height:1122.666667pt;}
.h0_c00396{height:1122.880000pt;}
.w1_c00396{width:793.333333pt;}
.w0_c00396{width:793.600000pt;}
.x0_c00396{left:0.000000pt;}
.x1_c00396{left:96.893333pt;}
.x4_c00396{left:123.320000pt;}
.x2_c00396{left:126.733333pt;}
.x3_c00396{left:167.533333pt;}
.xf_c00396{left:185.853333pt;}
.x11_c00396{left:191.173333pt;}
.xb_c00396{left:219.333333pt;}
.xc_c00396{left:232.226667pt;}
.x13_c00396{left:375.213333pt;}
.x5_c00396{left:388.480000pt;}
.xd_c00396{left:398.413333pt;}
.x6_c00396{left:417.280000pt;}
.xe_c00396{left:457.800000pt;}
.x7_c00396{left:477.440000pt;}
.x12_c00396{left:517.000000pt;}
.x8_c00396{left:536.973333pt;}
.x9_c00396{left:565.773333pt;}
.xa_c00396{left:595.853333pt;}
.x10_c00396{left:605.893333pt;}
}





/* 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_c00397 {
    display:none;
  }
  .loading-indicator_c00397.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00397 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_c00397 { 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_c00397" -> "#page-container .classname_c00397")
 */
.pf_c00397 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00397 { /* 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_c00397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00397 { /* 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_c00397 { /* 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_c00397 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00397 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00397 {overflow:visible;}
  }
}
.c_c00397 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00397 { /* 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_c00397:after { /* webkit #35443 */
  content: '';
}
.t_c00397:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00397 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 */
}
.__c00397 { /* 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_c00397 { /* info for Javascript */
  display:none;
}
.l_c00397 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00397 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00397 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00397: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_c00397 {
    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_c00397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00397.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_c00397 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00397{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00397;src:url('chunks/assets/font_f20c99fb4f4e580dc8ca3206.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.284668;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_c00397;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;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_c00397;src:url('chunks/assets/font_027b896dd7b3afdaaa3eb2e7.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.284180;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;}
.m9_c00397{transform:matrix(0.177560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177560,0.000000,0.000000,0.250000,0,0);}
.mb_c00397{transform:matrix(0.218632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218632,0.000000,0.000000,0.250000,0,0);}
.me_c00397{transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);}
.ma_c00397{transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);}
.mc_c00397{transform:matrix(0.241095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241095,0.000000,0.000000,0.250000,0,0);}
.md_c00397{transform:matrix(0.242558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242558,0.000000,0.000000,0.250000,0,0);}
.m6_c00397{transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);}
.m5_c00397{transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);}
.m4_c00397{transform:matrix(0.245979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245979,0.000000,0.000000,0.250000,0,0);}
.m0_c00397{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m10_c00397{transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);}
.m3_c00397{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m7_c00397{transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);}
.mf_c00397{transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);}
.m1_c00397{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);}
.m2_c00397{transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);}
.m8_c00397{transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls28_c00397{letter-spacing:-2.541000px;}
.ls37_c00397{letter-spacing:-2.511960px;}
.ls5d_c00397{letter-spacing:-2.410320px;}
.ls1f_c00397{letter-spacing:-2.352000px;}
.ls3b_c00397{letter-spacing:-2.265120px;}
.ls48_c00397{letter-spacing:-2.228820px;}
.ls50_c00397{letter-spacing:-2.170740px;}
.ls24_c00397{letter-spacing:-2.011020px;}
.ls2d_c00397{letter-spacing:-1.996500px;}
.ls8a_c00397{letter-spacing:-1.880340px;}
.ls69_c00397{letter-spacing:-1.873080px;}
.ls6f_c00397{letter-spacing:-1.851300px;}
.ls46_c00397{letter-spacing:-1.800480px;}
.ls2a_c00397{letter-spacing:-1.611720px;}
.ls87_c00397{letter-spacing:-1.568160px;}
.ls73_c00397{letter-spacing:-1.510080px;}
.ls5f_c00397{letter-spacing:-1.481040px;}
.ls5a_c00397{letter-spacing:-1.452000px;}
.ls75_c00397{letter-spacing:-1.444740px;}
.ls6b_c00397{letter-spacing:-1.335840px;}
.ls3a_c00397{letter-spacing:-1.299540px;}
.ls32_c00397{letter-spacing:-1.255980px;}
.ls66_c00397{letter-spacing:-1.154340px;}
.ls39_c00397{letter-spacing:-1.045440px;}
.ls4b_c00397{letter-spacing:-0.972840px;}
.ls4d_c00397{letter-spacing:-0.922020px;}
.ls4a_c00397{letter-spacing:-0.892980px;}
.ls8b_c00397{letter-spacing:-0.885720px;}
.ls68_c00397{letter-spacing:-0.871200px;}
.ls8c_c00397{letter-spacing:-0.834900px;}
.ls63_c00397{letter-spacing:-0.827640px;}
.ls76_c00397{letter-spacing:-0.820380px;}
.ls51_c00397{letter-spacing:-0.813120px;}
.ls7d_c00397{letter-spacing:-0.805860px;}
.ls43_c00397{letter-spacing:-0.791340px;}
.ls8d_c00397{letter-spacing:-0.784080px;}
.ls41_c00397{letter-spacing:-0.762300px;}
.ls2e_c00397{letter-spacing:-0.755040px;}
.ls58_c00397{letter-spacing:-0.747780px;}
.ls6e_c00397{letter-spacing:-0.733260px;}
.ls38_c00397{letter-spacing:-0.689700px;}
.ls7f_c00397{letter-spacing:-0.682440px;}
.ls52_c00397{letter-spacing:-0.646140px;}
.ls89_c00397{letter-spacing:-0.624360px;}
.ls74_c00397{letter-spacing:-0.609840px;}
.ls5b_c00397{letter-spacing:-0.602580px;}
.ls60_c00397{letter-spacing:-0.573540px;}
.ls27_c00397{letter-spacing:-0.566280px;}
.ls20_c00397{letter-spacing:-0.559020px;}
.ls3f_c00397{letter-spacing:-0.551760px;}
.ls7c_c00397{letter-spacing:-0.544500px;}
.ls78_c00397{letter-spacing:-0.529980px;}
.ls8f_c00397{letter-spacing:-0.522720px;}
.ls42_c00397{letter-spacing:-0.515460px;}
.ls84_c00397{letter-spacing:-0.508200px;}
.ls62_c00397{letter-spacing:-0.500940px;}
.ls56_c00397{letter-spacing:-0.479160px;}
.ls6d_c00397{letter-spacing:-0.457380px;}
.ls79_c00397{letter-spacing:-0.442860px;}
.ls4f_c00397{letter-spacing:-0.435600px;}
.ls3c_c00397{letter-spacing:-0.421080px;}
.ls5e_c00397{letter-spacing:-0.399300px;}
.ls31_c00397{letter-spacing:-0.392040px;}
.ls83_c00397{letter-spacing:-0.384780px;}
.ls6a_c00397{letter-spacing:-0.377520px;}
.ls80_c00397{letter-spacing:-0.370260px;}
.ls81_c00397{letter-spacing:-0.363000px;}
.ls3d_c00397{letter-spacing:-0.355740px;}
.ls47_c00397{letter-spacing:-0.348480px;}
.ls44_c00397{letter-spacing:-0.333960px;}
.ls3e_c00397{letter-spacing:-0.304920px;}
.ls88_c00397{letter-spacing:-0.290400px;}
.ls65_c00397{letter-spacing:-0.268620px;}
.ls54_c00397{letter-spacing:-0.254100px;}
.ls4e_c00397{letter-spacing:-0.239580px;}
.ls29_c00397{letter-spacing:-0.232320px;}
.ls33_c00397{letter-spacing:-0.217800px;}
.ls6c_c00397{letter-spacing:-0.210540px;}
.ls55_c00397{letter-spacing:-0.203280px;}
.ls8e_c00397{letter-spacing:-0.196020px;}
.ls77_c00397{letter-spacing:-0.174240px;}
.ls2b_c00397{letter-spacing:-0.166980px;}
.ls30_c00397{letter-spacing:-0.159720px;}
.ls35_c00397{letter-spacing:-0.152460px;}
.ls61_c00397{letter-spacing:-0.145200px;}
.ls2c_c00397{letter-spacing:-0.137940px;}
.ls53_c00397{letter-spacing:-0.130680px;}
.ls40_c00397{letter-spacing:-0.123420px;}
.ls72_c00397{letter-spacing:-0.116160px;}
.ls7b_c00397{letter-spacing:-0.108900px;}
.ls71_c00397{letter-spacing:-0.101640px;}
.ls86_c00397{letter-spacing:-0.087120px;}
.ls36_c00397{letter-spacing:-0.079860px;}
.ls34_c00397{letter-spacing:-0.072600px;}
.ls7a_c00397{letter-spacing:-0.065340px;}
.ls26_c00397{letter-spacing:-0.058080px;}
.ls45_c00397{letter-spacing:-0.050820px;}
.ls64_c00397{letter-spacing:-0.036300px;}
.ls4c_c00397{letter-spacing:-0.029040px;}
.ls2f_c00397{letter-spacing:-0.021780px;}
.ls5c_c00397{letter-spacing:-0.014520px;}
.ls67_c00397{letter-spacing:-0.007260px;}
.ls22_c00397{letter-spacing:0.000000px;}
.ls6_c00397{letter-spacing:0.014520px;}
.ls18_c00397{letter-spacing:0.050820px;}
.lse_c00397{letter-spacing:0.058080px;}
.ls82_c00397{letter-spacing:0.087120px;}
.lsd_c00397{letter-spacing:0.116160px;}
.ls85_c00397{letter-spacing:0.159720px;}
.lsa_c00397{letter-spacing:0.174240px;}
.ls11_c00397{letter-spacing:0.181500px;}
.ls1a_c00397{letter-spacing:0.188760px;}
.lsc_c00397{letter-spacing:0.210540px;}
.ls15_c00397{letter-spacing:0.246840px;}
.ls12_c00397{letter-spacing:0.254100px;}
.lsb_c00397{letter-spacing:0.261360px;}
.ls3_c00397{letter-spacing:0.268620px;}
.ls9_c00397{letter-spacing:0.275880px;}
.ls5_c00397{letter-spacing:0.283140px;}
.ls14_c00397{letter-spacing:0.290400px;}
.lsf_c00397{letter-spacing:0.319440px;}
.ls8_c00397{letter-spacing:0.348480px;}
.ls2_c00397{letter-spacing:0.377520px;}
.ls1_c00397{letter-spacing:0.384780px;}
.ls7_c00397{letter-spacing:0.392040px;}
.ls25_c00397{letter-spacing:0.428340px;}
.ls4_c00397{letter-spacing:0.435600px;}
.ls1c_c00397{letter-spacing:0.464640px;}
.ls59_c00397{letter-spacing:0.529980px;}
.ls90_c00397{letter-spacing:0.622740px;}
.ls7e_c00397{letter-spacing:0.626400px;}
.ls10_c00397{letter-spacing:0.653400px;}
.ls13_c00397{letter-spacing:0.762300px;}
.ls57_c00397{letter-spacing:0.784080px;}
.ls1e_c00397{letter-spacing:0.856680px;}
.ls1d_c00397{letter-spacing:0.900240px;}
.ls1b_c00397{letter-spacing:1.190160px;}
.ls16_c00397{letter-spacing:1.419840px;}
.ls49_c00397{letter-spacing:1.618980px;}
.ls17_c00397{letter-spacing:1.621680px;}
.ls19_c00397{letter-spacing:2.374020px;}
.ls0_c00397{letter-spacing:2.584560px;}
.ls70_c00397{letter-spacing:3.360000px;}
.ls23_c00397{letter-spacing:3.368640px;}
.ls21_c00397{letter-spacing:3.630000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{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__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00397{word-spacing:0.000000px;}
._1d_c00397{margin-left:-15.343740px;}
._0_c00397{margin-left:-3.998760px;}
._1c_c00397{width:1.209060px;}
._5_c00397{width:2.417580px;}
._2_c00397{width:4.254360px;}
._3_c00397{width:5.735400px;}
._4_c00397{width:7.245480px;}
._15_c00397{width:9.089520px;}
._b_c00397{width:10.919040px;}
._16_c00397{width:11.985120px;}
._1_c00397{width:13.236120px;}
._c_c00397{width:14.447400px;}
._17_c00397{width:15.623520px;}
._1b_c00397{width:18.200820px;}
._d_c00397{width:19.994040px;}
._13_c00397{width:21.286320px;}
._e_c00397{width:22.506000px;}
._14_c00397{width:23.725680px;}
._11_c00397{width:24.763860px;}
._f_c00397{width:26.353800px;}
._12_c00397{width:27.762240px;}
._10_c00397{width:30.709800px;}
._1a_c00397{width:32.089200px;}
._18_c00397{width:33.759000px;}
._19_c00397{width:35.312640px;}
._6_c00397{width:37.389000px;}
._7_c00397{width:39.559740px;}
._a_c00397{width:41.941020px;}
._8_c00397{width:44.053680px;}
._9_c00397{width:45.977580px;}
.fc0_c00397{color:transparent;}
.fs5_c00397{font-size:58.200000px;}
.fs0_c00397{font-size:67.200000px;}
.fs3_c00397{font-size:69.600000px;}
.fs4_c00397{font-size:70.800000px;}
.fs1_c00397{font-size:72.600000px;}
.fs2_c00397{font-size:75.600000px;}
.y0_c00397{bottom:0.000000px;}
.y28_c00397{bottom:99.735000px;}
.y27_c00397{bottom:147.960000px;}
.y26_c00397{bottom:147.967200px;}
.y25_c00397{bottom:178.568100px;}
.y24_c00397{bottom:209.895000px;}
.y23_c00397{bottom:271.095000px;}
.y22_c00397{bottom:271.103250px;}
.y21_c00397{bottom:302.775000px;}
.y20_c00397{bottom:332.640000px;}
.y1f_c00397{bottom:364.334250px;}
.y1d_c00397{bottom:395.272950px;}
.y1e_c00397{bottom:395.280000px;}
.y1b_c00397{bottom:426.254250px;}
.y1c_c00397{bottom:426.255000px;}
.y1a_c00397{bottom:457.200000px;}
.y19_c00397{bottom:518.775000px;}
.y17_c00397{bottom:549.352200px;}
.y18_c00397{bottom:549.360000px;}
.y16_c00397{bottom:611.275950px;}
.y14_c00397{bottom:641.891100px;}
.y15_c00397{bottom:641.895000px;}
.y12_c00397{bottom:672.851100px;}
.y13_c00397{bottom:672.855000px;}
.y10_c00397{bottom:703.814100px;}
.y11_c00397{bottom:703.815000px;}
.ye_c00397{bottom:734.407200px;}
.yf_c00397{bottom:734.415000px;}
.yd_c00397{bottom:765.734100px;}
.yb_c00397{bottom:796.331100px;}
.yc_c00397{bottom:796.335000px;}
.y9_c00397{bottom:827.290350px;}
.ya_c00397{bottom:827.295000px;}
.y8_c00397{bottom:858.236100px;}
.y6_c00397{bottom:889.198950px;}
.y7_c00397{bottom:889.200000px;}
.y5_c00397{bottom:919.455000px;}
.y4_c00397{bottom:950.040000px;}
.y3_c00397{bottom:1011.975000px;}
.y2_c00397{bottom:1073.880000px;}
.y1_c00397{bottom:1150.935000px;}
.h8_c00397{height:57.120117px;}
.h2_c00397{height:65.953125px;}
.h3_c00397{height:71.252930px;}
.h7_c00397{height:71.255930px;}
.h4_c00397{height:71.257130px;}
.h5_c00397{height:71.269130px;}
.h6_c00397{height:74.228466px;}
.h1_c00397{height:1263.000000px;}
.h0_c00397{height:1263.240000px;}
.w1_c00397{width:892.500000px;}
.w0_c00397{width:892.800000px;}
.x0_c00397{left:0.000000px;}
.x2b_c00397{left:106.083150px;}
.x10_c00397{left:107.120100px;}
.x8_c00397{left:108.195000px;}
.x2_c00397{left:109.215000px;}
.x1_c00397{left:110.445000px;}
.x9_c00397{left:130.635000px;}
.x3_c00397{left:136.695000px;}
.x34_c00397{left:137.775000px;}
.x26_c00397{left:147.480000px;}
.x2a_c00397{left:160.110000px;}
.x5_c00397{left:161.895000px;}
.x39_c00397{left:173.715000px;}
.x1a_c00397{left:178.755000px;}
.x3a_c00397{left:196.020000px;}
.x27_c00397{left:203.220000px;}
.x1b_c00397{left:208.290000px;}
.x13_c00397{left:219.090000px;}
.x4_c00397{left:230.010000px;}
.x14_c00397{left:239.580000px;}
.x35_c00397{left:255.405000px;}
.x36_c00397{left:278.085000px;}
.x28_c00397{left:280.560000px;}
.x29_c00397{left:286.605000px;}
.x3b_c00397{left:304.650000px;}
.x3c_c00397{left:335.115000px;}
.x3d_c00397{left:354.075000px;}
.x1c_c00397{left:362.715000px;}
.x6_c00397{left:369.555000px;}
.x3e_c00397{left:375.150000px;}
.x1d_c00397{left:387.825000px;}
.x30_c00397{left:389.595000px;}
.x7_c00397{left:391.140000px;}
.x20_c00397{left:408.810000px;}
.x31_c00397{left:412.710000px;}
.x3f_c00397{left:422.835000px;}
.x21_c00397{left:431.460000px;}
.x11_c00397{left:437.595000px;}
.x17_c00397{left:456.690000px;}
.x37_c00397{left:458.445000px;}
.x1e_c00397{left:463.875000px;}
.x12_c00397{left:464.940000px;}
.x18_c00397{left:476.235000px;}
.xa_c00397{left:479.325000px;}
.x1f_c00397{left:488.850000px;}
.x24_c00397{left:494.610000px;}
.x2c_c00397{left:495.915000px;}
.xb_c00397{left:497.490000px;}
.x2d_c00397{left:518.970000px;}
.x25_c00397{left:522.540000px;}
.x2e_c00397{left:545.880000px;}
.xc_c00397{left:558.915000px;}
.x2f_c00397{left:577.605000px;}
.xd_c00397{left:580.995000px;}
.x22_c00397{left:592.755000px;}
.x23_c00397{left:618.450000px;}
.xe_c00397{left:626.955000px;}
.x32_c00397{left:650.370000px;}
.xf_c00397{left:657.900000px;}
.x15_c00397{left:667.275000px;}
.x33_c00397{left:669.420000px;}
.x38_c00397{left:672.735000px;}
.x19_c00397{left:690.285000px;}
.x16_c00397{left:691.410000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls28_c00397{letter-spacing:-2.258667pt;}
.ls37_c00397{letter-spacing:-2.232853pt;}
.ls5d_c00397{letter-spacing:-2.142507pt;}
.ls1f_c00397{letter-spacing:-2.090667pt;}
.ls3b_c00397{letter-spacing:-2.013440pt;}
.ls48_c00397{letter-spacing:-1.981173pt;}
.ls50_c00397{letter-spacing:-1.929547pt;}
.ls24_c00397{letter-spacing:-1.787573pt;}
.ls2d_c00397{letter-spacing:-1.774667pt;}
.ls8a_c00397{letter-spacing:-1.671413pt;}
.ls69_c00397{letter-spacing:-1.664960pt;}
.ls6f_c00397{letter-spacing:-1.645600pt;}
.ls46_c00397{letter-spacing:-1.600427pt;}
.ls2a_c00397{letter-spacing:-1.432640pt;}
.ls87_c00397{letter-spacing:-1.393920pt;}
.ls73_c00397{letter-spacing:-1.342293pt;}
.ls5f_c00397{letter-spacing:-1.316480pt;}
.ls5a_c00397{letter-spacing:-1.290667pt;}
.ls75_c00397{letter-spacing:-1.284213pt;}
.ls6b_c00397{letter-spacing:-1.187413pt;}
.ls3a_c00397{letter-spacing:-1.155147pt;}
.ls32_c00397{letter-spacing:-1.116427pt;}
.ls66_c00397{letter-spacing:-1.026080pt;}
.ls39_c00397{letter-spacing:-0.929280pt;}
.ls4b_c00397{letter-spacing:-0.864747pt;}
.ls4d_c00397{letter-spacing:-0.819573pt;}
.ls4a_c00397{letter-spacing:-0.793760pt;}
.ls8b_c00397{letter-spacing:-0.787307pt;}
.ls68_c00397{letter-spacing:-0.774400pt;}
.ls8c_c00397{letter-spacing:-0.742133pt;}
.ls63_c00397{letter-spacing:-0.735680pt;}
.ls76_c00397{letter-spacing:-0.729227pt;}
.ls51_c00397{letter-spacing:-0.722773pt;}
.ls7d_c00397{letter-spacing:-0.716320pt;}
.ls43_c00397{letter-spacing:-0.703413pt;}
.ls8d_c00397{letter-spacing:-0.696960pt;}
.ls41_c00397{letter-spacing:-0.677600pt;}
.ls2e_c00397{letter-spacing:-0.671147pt;}
.ls58_c00397{letter-spacing:-0.664693pt;}
.ls6e_c00397{letter-spacing:-0.651787pt;}
.ls38_c00397{letter-spacing:-0.613067pt;}
.ls7f_c00397{letter-spacing:-0.606613pt;}
.ls52_c00397{letter-spacing:-0.574347pt;}
.ls89_c00397{letter-spacing:-0.554987pt;}
.ls74_c00397{letter-spacing:-0.542080pt;}
.ls5b_c00397{letter-spacing:-0.535627pt;}
.ls60_c00397{letter-spacing:-0.509813pt;}
.ls27_c00397{letter-spacing:-0.503360pt;}
.ls20_c00397{letter-spacing:-0.496907pt;}
.ls3f_c00397{letter-spacing:-0.490453pt;}
.ls7c_c00397{letter-spacing:-0.484000pt;}
.ls78_c00397{letter-spacing:-0.471093pt;}
.ls8f_c00397{letter-spacing:-0.464640pt;}
.ls42_c00397{letter-spacing:-0.458187pt;}
.ls84_c00397{letter-spacing:-0.451733pt;}
.ls62_c00397{letter-spacing:-0.445280pt;}
.ls56_c00397{letter-spacing:-0.425920pt;}
.ls6d_c00397{letter-spacing:-0.406560pt;}
.ls79_c00397{letter-spacing:-0.393653pt;}
.ls4f_c00397{letter-spacing:-0.387200pt;}
.ls3c_c00397{letter-spacing:-0.374293pt;}
.ls5e_c00397{letter-spacing:-0.354933pt;}
.ls31_c00397{letter-spacing:-0.348480pt;}
.ls83_c00397{letter-spacing:-0.342027pt;}
.ls6a_c00397{letter-spacing:-0.335573pt;}
.ls80_c00397{letter-spacing:-0.329120pt;}
.ls81_c00397{letter-spacing:-0.322667pt;}
.ls3d_c00397{letter-spacing:-0.316213pt;}
.ls47_c00397{letter-spacing:-0.309760pt;}
.ls44_c00397{letter-spacing:-0.296853pt;}
.ls3e_c00397{letter-spacing:-0.271040pt;}
.ls88_c00397{letter-spacing:-0.258133pt;}
.ls65_c00397{letter-spacing:-0.238773pt;}
.ls54_c00397{letter-spacing:-0.225867pt;}
.ls4e_c00397{letter-spacing:-0.212960pt;}
.ls29_c00397{letter-spacing:-0.206507pt;}
.ls33_c00397{letter-spacing:-0.193600pt;}
.ls6c_c00397{letter-spacing:-0.187147pt;}
.ls55_c00397{letter-spacing:-0.180693pt;}
.ls8e_c00397{letter-spacing:-0.174240pt;}
.ls77_c00397{letter-spacing:-0.154880pt;}
.ls2b_c00397{letter-spacing:-0.148427pt;}
.ls30_c00397{letter-spacing:-0.141973pt;}
.ls35_c00397{letter-spacing:-0.135520pt;}
.ls61_c00397{letter-spacing:-0.129067pt;}
.ls2c_c00397{letter-spacing:-0.122613pt;}
.ls53_c00397{letter-spacing:-0.116160pt;}
.ls40_c00397{letter-spacing:-0.109707pt;}
.ls72_c00397{letter-spacing:-0.103253pt;}
.ls7b_c00397{letter-spacing:-0.096800pt;}
.ls71_c00397{letter-spacing:-0.090347pt;}
.ls86_c00397{letter-spacing:-0.077440pt;}
.ls36_c00397{letter-spacing:-0.070987pt;}
.ls34_c00397{letter-spacing:-0.064533pt;}
.ls7a_c00397{letter-spacing:-0.058080pt;}
.ls26_c00397{letter-spacing:-0.051627pt;}
.ls45_c00397{letter-spacing:-0.045173pt;}
.ls64_c00397{letter-spacing:-0.032267pt;}
.ls4c_c00397{letter-spacing:-0.025813pt;}
.ls2f_c00397{letter-spacing:-0.019360pt;}
.ls5c_c00397{letter-spacing:-0.012907pt;}
.ls67_c00397{letter-spacing:-0.006453pt;}
.ls22_c00397{letter-spacing:0.000000pt;}
.ls6_c00397{letter-spacing:0.012907pt;}
.ls18_c00397{letter-spacing:0.045173pt;}
.lse_c00397{letter-spacing:0.051627pt;}
.ls82_c00397{letter-spacing:0.077440pt;}
.lsd_c00397{letter-spacing:0.103253pt;}
.ls85_c00397{letter-spacing:0.141973pt;}
.lsa_c00397{letter-spacing:0.154880pt;}
.ls11_c00397{letter-spacing:0.161333pt;}
.ls1a_c00397{letter-spacing:0.167787pt;}
.lsc_c00397{letter-spacing:0.187147pt;}
.ls15_c00397{letter-spacing:0.219413pt;}
.ls12_c00397{letter-spacing:0.225867pt;}
.lsb_c00397{letter-spacing:0.232320pt;}
.ls3_c00397{letter-spacing:0.238773pt;}
.ls9_c00397{letter-spacing:0.245227pt;}
.ls5_c00397{letter-spacing:0.251680pt;}
.ls14_c00397{letter-spacing:0.258133pt;}
.lsf_c00397{letter-spacing:0.283947pt;}
.ls8_c00397{letter-spacing:0.309760pt;}
.ls2_c00397{letter-spacing:0.335573pt;}
.ls1_c00397{letter-spacing:0.342027pt;}
.ls7_c00397{letter-spacing:0.348480pt;}
.ls25_c00397{letter-spacing:0.380747pt;}
.ls4_c00397{letter-spacing:0.387200pt;}
.ls1c_c00397{letter-spacing:0.413013pt;}
.ls59_c00397{letter-spacing:0.471093pt;}
.ls90_c00397{letter-spacing:0.553547pt;}
.ls7e_c00397{letter-spacing:0.556800pt;}
.ls10_c00397{letter-spacing:0.580800pt;}
.ls13_c00397{letter-spacing:0.677600pt;}
.ls57_c00397{letter-spacing:0.696960pt;}
.ls1e_c00397{letter-spacing:0.761493pt;}
.ls1d_c00397{letter-spacing:0.800213pt;}
.ls1b_c00397{letter-spacing:1.057920pt;}
.ls16_c00397{letter-spacing:1.262080pt;}
.ls49_c00397{letter-spacing:1.439093pt;}
.ls17_c00397{letter-spacing:1.441493pt;}
.ls19_c00397{letter-spacing:2.110240pt;}
.ls0_c00397{letter-spacing:2.297387pt;}
.ls70_c00397{letter-spacing:2.986667pt;}
.ls23_c00397{letter-spacing:2.994347pt;}
.ls21_c00397{letter-spacing:3.226667pt;}
.ws0_c00397{word-spacing:0.000000pt;}
._1d_c00397{margin-left:-13.638880pt;}
._0_c00397{margin-left:-3.554453pt;}
._1c_c00397{width:1.074720pt;}
._5_c00397{width:2.148960pt;}
._2_c00397{width:3.781653pt;}
._3_c00397{width:5.098133pt;}
._4_c00397{width:6.440427pt;}
._15_c00397{width:8.079573pt;}
._b_c00397{width:9.705813pt;}
._16_c00397{width:10.653440pt;}
._1_c00397{width:11.765440pt;}
._c_c00397{width:12.842133pt;}
._17_c00397{width:13.887573pt;}
._1b_c00397{width:16.178507pt;}
._d_c00397{width:17.772480pt;}
._13_c00397{width:18.921173pt;}
._e_c00397{width:20.005333pt;}
._14_c00397{width:21.089493pt;}
._11_c00397{width:22.012320pt;}
._f_c00397{width:23.425600pt;}
._12_c00397{width:24.677547pt;}
._10_c00397{width:27.297600pt;}
._1a_c00397{width:28.523733pt;}
._18_c00397{width:30.008000pt;}
._19_c00397{width:31.389013pt;}
._6_c00397{width:33.234667pt;}
._7_c00397{width:35.164213pt;}
._a_c00397{width:37.280907pt;}
._8_c00397{width:39.158827pt;}
._9_c00397{width:40.868960pt;}
.fs5_c00397{font-size:51.733333pt;}
.fs0_c00397{font-size:59.733333pt;}
.fs3_c00397{font-size:61.866667pt;}
.fs4_c00397{font-size:62.933333pt;}
.fs1_c00397{font-size:64.533333pt;}
.fs2_c00397{font-size:67.200000pt;}
.y0_c00397{bottom:0.000000pt;}
.y28_c00397{bottom:88.653333pt;}
.y27_c00397{bottom:131.520000pt;}
.y26_c00397{bottom:131.526400pt;}
.y25_c00397{bottom:158.727200pt;}
.y24_c00397{bottom:186.573333pt;}
.y23_c00397{bottom:240.973333pt;}
.y22_c00397{bottom:240.980667pt;}
.y21_c00397{bottom:269.133333pt;}
.y20_c00397{bottom:295.680000pt;}
.y1f_c00397{bottom:323.852667pt;}
.y1d_c00397{bottom:351.353733pt;}
.y1e_c00397{bottom:351.360000pt;}
.y1b_c00397{bottom:378.892667pt;}
.y1c_c00397{bottom:378.893333pt;}
.y1a_c00397{bottom:406.400000pt;}
.y19_c00397{bottom:461.133333pt;}
.y17_c00397{bottom:488.313067pt;}
.y18_c00397{bottom:488.320000pt;}
.y16_c00397{bottom:543.356400pt;}
.y14_c00397{bottom:570.569867pt;}
.y15_c00397{bottom:570.573333pt;}
.y12_c00397{bottom:598.089867pt;}
.y13_c00397{bottom:598.093333pt;}
.y10_c00397{bottom:625.612533pt;}
.y11_c00397{bottom:625.613333pt;}
.ye_c00397{bottom:652.806400pt;}
.yf_c00397{bottom:652.813333pt;}
.yd_c00397{bottom:680.652533pt;}
.yb_c00397{bottom:707.849867pt;}
.yc_c00397{bottom:707.853333pt;}
.y9_c00397{bottom:735.369200pt;}
.ya_c00397{bottom:735.373333pt;}
.y8_c00397{bottom:762.876533pt;}
.y6_c00397{bottom:790.399067pt;}
.y7_c00397{bottom:790.400000pt;}
.y5_c00397{bottom:817.293333pt;}
.y4_c00397{bottom:844.480000pt;}
.y3_c00397{bottom:899.533333pt;}
.y2_c00397{bottom:954.560000pt;}
.y1_c00397{bottom:1023.053333pt;}
.h8_c00397{height:50.773437pt;}
.h2_c00397{height:58.625000pt;}
.h3_c00397{height:63.335938pt;}
.h7_c00397{height:63.338604pt;}
.h4_c00397{height:63.339671pt;}
.h5_c00397{height:63.350338pt;}
.h6_c00397{height:65.980858pt;}
.h1_c00397{height:1122.666667pt;}
.h0_c00397{height:1122.880000pt;}
.w1_c00397{width:793.333333pt;}
.w0_c00397{width:793.600000pt;}
.x0_c00397{left:0.000000pt;}
.x2b_c00397{left:94.296133pt;}
.x10_c00397{left:95.217867pt;}
.x8_c00397{left:96.173333pt;}
.x2_c00397{left:97.080000pt;}
.x1_c00397{left:98.173333pt;}
.x9_c00397{left:116.120000pt;}
.x3_c00397{left:121.506667pt;}
.x34_c00397{left:122.466667pt;}
.x26_c00397{left:131.093333pt;}
.x2a_c00397{left:142.320000pt;}
.x5_c00397{left:143.906667pt;}
.x39_c00397{left:154.413333pt;}
.x1a_c00397{left:158.893333pt;}
.x3a_c00397{left:174.240000pt;}
.x27_c00397{left:180.640000pt;}
.x1b_c00397{left:185.146667pt;}
.x13_c00397{left:194.746667pt;}
.x4_c00397{left:204.453333pt;}
.x14_c00397{left:212.960000pt;}
.x35_c00397{left:227.026667pt;}
.x36_c00397{left:247.186667pt;}
.x28_c00397{left:249.386667pt;}
.x29_c00397{left:254.760000pt;}
.x3b_c00397{left:270.800000pt;}
.x3c_c00397{left:297.880000pt;}
.x3d_c00397{left:314.733333pt;}
.x1c_c00397{left:322.413333pt;}
.x6_c00397{left:328.493333pt;}
.x3e_c00397{left:333.466667pt;}
.x1d_c00397{left:344.733333pt;}
.x30_c00397{left:346.306667pt;}
.x7_c00397{left:347.680000pt;}
.x20_c00397{left:363.386667pt;}
.x31_c00397{left:366.853333pt;}
.x3f_c00397{left:375.853333pt;}
.x21_c00397{left:383.520000pt;}
.x11_c00397{left:388.973333pt;}
.x17_c00397{left:405.946667pt;}
.x37_c00397{left:407.506667pt;}
.x1e_c00397{left:412.333333pt;}
.x12_c00397{left:413.280000pt;}
.x18_c00397{left:423.320000pt;}
.xa_c00397{left:426.066667pt;}
.x1f_c00397{left:434.533333pt;}
.x24_c00397{left:439.653333pt;}
.x2c_c00397{left:440.813333pt;}
.xb_c00397{left:442.213333pt;}
.x2d_c00397{left:461.306667pt;}
.x25_c00397{left:464.480000pt;}
.x2e_c00397{left:485.226667pt;}
.xc_c00397{left:496.813333pt;}
.x2f_c00397{left:513.426667pt;}
.xd_c00397{left:516.440000pt;}
.x22_c00397{left:526.893333pt;}
.x23_c00397{left:549.733333pt;}
.xe_c00397{left:557.293333pt;}
.x32_c00397{left:578.106667pt;}
.xf_c00397{left:584.800000pt;}
.x15_c00397{left:593.133333pt;}
.x33_c00397{left:595.040000pt;}
.x38_c00397{left:597.986667pt;}
.x19_c00397{left:613.586667pt;}
.x16_c00397{left:614.586667pt;}
}





/* 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_c00398 {
    display:none;
  }
  .loading-indicator_c00398.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00398 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_c00398 { 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_c00398" -> "#page-container .classname_c00398")
 */
.pf_c00398 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00398 { /* 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_c00398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00398 { /* 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_c00398 { /* 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_c00398 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00398 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00398 {overflow:visible;}
  }
}
.c_c00398 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00398 { /* 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_c00398:after { /* webkit #35443 */
  content: '';
}
.t_c00398:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00398 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 */
}
.__c00398 { /* 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_c00398 { /* info for Javascript */
  display:none;
}
.l_c00398 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00398 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00398 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00398: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_c00398 {
    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_c00398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00398.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_c00398 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00398{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00398;src:url('chunks/assets/font_ce1d062e7d0f67b5b1c8829a.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.311035;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_c00398;src:url('chunks/assets/font_47ee19bae69498d76ebb5609.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.284668;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_c00398;src:url('chunks/assets/font_025adb56b4c210966bac6908.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.284180;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_c00398;src:url('chunks/assets/font_f24cd3dae933f365647fdafe.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;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;}
.m7_c00398{transform:matrix(0.235985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235985,0.000000,0.000000,0.250000,0,0);}
.m0_c00398{transform:matrix(0.238211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238211,0.000000,0.000000,0.250000,0,0);}
.m5_c00398{transform:matrix(0.242624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242624,0.000000,0.000000,0.250000,0,0);}
.m8_c00398{transform:matrix(0.242821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242821,0.000000,0.000000,0.250000,0,0);}
.m2_c00398{transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);}
.m6_c00398{transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);}
.m3_c00398{transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);}
.m4_c00398{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.m1_c00398{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);}
.v0_c00398{vertical-align:0.000000px;}
.ls49_c00398{letter-spacing:-2.499000px;}
.ls54_c00398{letter-spacing:-2.477580px;}
.ls42_c00398{letter-spacing:-2.310000px;}
.ls79_c00398{letter-spacing:-2.199120px;}
.ls76_c00398{letter-spacing:-2.142000px;}
.ls46_c00398{letter-spacing:-1.884960px;}
.ls68_c00398{letter-spacing:-1.606500px;}
.ls66_c00398{letter-spacing:-1.570800px;}
.ls87_c00398{letter-spacing:-1.527960px;}
.ls4c_c00398{letter-spacing:-1.485120px;}
.ls82_c00398{letter-spacing:-1.470840px;}
.ls61_c00398{letter-spacing:-1.442280px;}
.ls56_c00398{letter-spacing:-1.356600px;}
.ls84_c00398{letter-spacing:-1.320900px;}
.ls88_c00398{letter-spacing:-1.256640px;}
.ls92_c00398{letter-spacing:-1.252440px;}
.ls51_c00398{letter-spacing:-1.128120px;}
.ls53_c00398{letter-spacing:-1.120980px;}
.ls8e_c00398{letter-spacing:-1.042440px;}
.ls43_c00398{letter-spacing:-1.035300px;}
.ls8b_c00398{letter-spacing:-1.021020px;}
.ls4a_c00398{letter-spacing:-0.892500px;}
.ls63_c00398{letter-spacing:-0.799680px;}
.ls67_c00398{letter-spacing:-0.771120px;}
.ls45_c00398{letter-spacing:-0.749700px;}
.ls6a_c00398{letter-spacing:-0.664020px;}
.ls8c_c00398{letter-spacing:-0.642600px;}
.ls7a_c00398{letter-spacing:-0.621180px;}
.ls50_c00398{letter-spacing:-0.614040px;}
.ls7f_c00398{letter-spacing:-0.606900px;}
.ls69_c00398{letter-spacing:-0.599760px;}
.ls59_c00398{letter-spacing:-0.585480px;}
.ls78_c00398{letter-spacing:-0.578340px;}
.ls6f_c00398{letter-spacing:-0.571200px;}
.ls55_c00398{letter-spacing:-0.521220px;}
.ls72_c00398{letter-spacing:-0.492660px;}
.ls7c_c00398{letter-spacing:-0.478380px;}
.ls8f_c00398{letter-spacing:-0.471240px;}
.ls7e_c00398{letter-spacing:-0.464100px;}
.ls64_c00398{letter-spacing:-0.449820px;}
.ls5b_c00398{letter-spacing:-0.442680px;}
.ls4f_c00398{letter-spacing:-0.421260px;}
.ls65_c00398{letter-spacing:-0.414120px;}
.ls7d_c00398{letter-spacing:-0.399840px;}
.ls90_c00398{letter-spacing:-0.371280px;}
.ls58_c00398{letter-spacing:-0.364140px;}
.ls85_c00398{letter-spacing:-0.349860px;}
.ls57_c00398{letter-spacing:-0.321300px;}
.ls73_c00398{letter-spacing:-0.314160px;}
.ls89_c00398{letter-spacing:-0.307020px;}
.ls7b_c00398{letter-spacing:-0.285600px;}
.ls6d_c00398{letter-spacing:-0.271320px;}
.ls4b_c00398{letter-spacing:-0.257040px;}
.ls60_c00398{letter-spacing:-0.249900px;}
.ls4e_c00398{letter-spacing:-0.242760px;}
.ls5d_c00398{letter-spacing:-0.221340px;}
.ls48_c00398{letter-spacing:-0.214200px;}
.ls47_c00398{letter-spacing:-0.199920px;}
.ls52_c00398{letter-spacing:-0.171360px;}
.ls6e_c00398{letter-spacing:-0.149940px;}
.ls8a_c00398{letter-spacing:-0.121380px;}
.ls83_c00398{letter-spacing:-0.114240px;}
.ls8d_c00398{letter-spacing:-0.099960px;}
.ls5a_c00398{letter-spacing:-0.092820px;}
.ls6b_c00398{letter-spacing:-0.085680px;}
.ls6c_c00398{letter-spacing:-0.078540px;}
.ls5c_c00398{letter-spacing:-0.071400px;}
.ls5e_c00398{letter-spacing:-0.064260px;}
.ls81_c00398{letter-spacing:-0.057120px;}
.ls62_c00398{letter-spacing:-0.049980px;}
.ls80_c00398{letter-spacing:-0.042840px;}
.ls4d_c00398{letter-spacing:-0.035700px;}
.ls70_c00398{letter-spacing:-0.028560px;}
.ls71_c00398{letter-spacing:-0.021420px;}
.ls5f_c00398{letter-spacing:-0.014280px;}
.ls44_c00398{letter-spacing:0.000000px;}
.ls13_c00398{letter-spacing:0.007140px;}
.ls10_c00398{letter-spacing:0.014280px;}
.ls7_c00398{letter-spacing:0.021420px;}
.ls41_c00398{letter-spacing:0.028560px;}
.ls34_c00398{letter-spacing:0.035700px;}
.ls1c_c00398{letter-spacing:0.042840px;}
.ls33_c00398{letter-spacing:0.049980px;}
.ls3_c00398{letter-spacing:0.057120px;}
.ls28_c00398{letter-spacing:0.064260px;}
.ls20_c00398{letter-spacing:0.071400px;}
.ls32_c00398{letter-spacing:0.078540px;}
.ls1b_c00398{letter-spacing:0.085680px;}
.ls25_c00398{letter-spacing:0.092820px;}
.ls2_c00398{letter-spacing:0.099960px;}
.ls11_c00398{letter-spacing:0.107100px;}
.ls3f_c00398{letter-spacing:0.121380px;}
.ls3d_c00398{letter-spacing:0.135660px;}
.ls3a_c00398{letter-spacing:0.142800px;}
.ls27_c00398{letter-spacing:0.149940px;}
.lsa_c00398{letter-spacing:0.157080px;}
.ls24_c00398{letter-spacing:0.171360px;}
.ls19_c00398{letter-spacing:0.185640px;}
.lse_c00398{letter-spacing:0.199920px;}
.lsd_c00398{letter-spacing:0.228480px;}
.lsf_c00398{letter-spacing:0.235620px;}
.ls36_c00398{letter-spacing:0.242760px;}
.ls40_c00398{letter-spacing:0.249900px;}
.ls8_c00398{letter-spacing:0.264180px;}
.lsc_c00398{letter-spacing:0.271320px;}
.ls1a_c00398{letter-spacing:0.278460px;}
.ls3b_c00398{letter-spacing:0.307020px;}
.ls4_c00398{letter-spacing:0.321300px;}
.ls30_c00398{letter-spacing:0.328440px;}
.ls16_c00398{letter-spacing:0.342720px;}
.ls17_c00398{letter-spacing:0.371280px;}
.ls0_c00398{letter-spacing:0.378420px;}
.ls29_c00398{letter-spacing:0.396720px;}
.ls1e_c00398{letter-spacing:0.414120px;}
.ls35_c00398{letter-spacing:0.456960px;}
.ls77_c00398{letter-spacing:0.471240px;}
.ls26_c00398{letter-spacing:0.478380px;}
.ls86_c00398{letter-spacing:0.499800px;}
.ls38_c00398{letter-spacing:0.506940px;}
.ls1_c00398{letter-spacing:0.528360px;}
.ls6_c00398{letter-spacing:0.535500px;}
.ls18_c00398{letter-spacing:0.585480px;}
.ls91_c00398{letter-spacing:0.592620px;}
.ls15_c00398{letter-spacing:0.614040px;}
.ls31_c00398{letter-spacing:0.628320px;}
.ls5_c00398{letter-spacing:0.642600px;}
.ls39_c00398{letter-spacing:0.678300px;}
.ls1f_c00398{letter-spacing:0.756840px;}
.ls74_c00398{letter-spacing:0.765600px;}
.ls12_c00398{letter-spacing:0.828240px;}
.ls9_c00398{letter-spacing:0.971040px;}
.ls21_c00398{letter-spacing:1.006740px;}
.ls2b_c00398{letter-spacing:1.030080px;}
.ls14_c00398{letter-spacing:1.056720px;}
.ls3c_c00398{letter-spacing:1.213800px;}
.ls75_c00398{letter-spacing:1.266720px;}
.ls2e_c00398{letter-spacing:1.503360px;}
.ls2a_c00398{letter-spacing:1.531200px;}
.ls2d_c00398{letter-spacing:1.579920px;}
.ls2f_c00398{letter-spacing:1.621680px;}
.ls23_c00398{letter-spacing:1.649340px;}
.ls2c_c00398{letter-spacing:1.656480px;}
.ls3e_c00398{letter-spacing:1.692180px;}
.ls1d_c00398{letter-spacing:2.070600px;}
.ls22_c00398{letter-spacing:2.318400px;}
.ls37_c00398{letter-spacing:2.413320px;}
.lsb_c00398{letter-spacing:2.834580px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{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__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00398{word-spacing:0.000000px;}
._2_c00398{margin-left:-8.076000px;}
._9_c00398{margin-left:-4.157760px;}
._20_c00398{margin-left:-1.508820px;}
._11_c00398{width:1.432860px;}
._7_c00398{width:2.765460px;}
._8_c00398{width:4.813500px;}
._3_c00398{width:6.089280px;}
._1_c00398{width:7.746900px;}
._a_c00398{width:9.317700px;}
._4_c00398{width:10.330440px;}
._0_c00398{width:11.525100px;}
._e_c00398{width:12.704460px;}
._5_c00398{width:13.865880px;}
._6_c00398{width:15.222480px;}
._10_c00398{width:16.326840px;}
._f_c00398{width:17.871420px;}
._b_c00398{width:19.347000px;}
._c_c00398{width:20.787840px;}
._17_c00398{width:22.836360px;}
._d_c00398{width:24.321240px;}
._16_c00398{width:25.347000px;}
._15_c00398{width:28.788480px;}
._1f_c00398{width:29.857080px;}
._14_c00398{width:32.322780px;}
._12_c00398{width:34.250580px;}
._13_c00398{width:38.570280px;}
._1b_c00398{width:46.960800px;}
._1c_c00398{width:50.479800px;}
._1a_c00398{width:51.759300px;}
._19_c00398{width:54.978000px;}
._1d_c00398{width:57.162840px;}
._18_c00398{width:61.496820px;}
._1e_c00398{width:63.130440px;}
.fc0_c00398{color:transparent;}
.fs4_c00398{font-size:58.800000px;}
.fs0_c00398{font-size:66.000000px;}
.fs2_c00398{font-size:67.200000px;}
.fs3_c00398{font-size:69.600000px;}
.fs1_c00398{font-size:71.400000px;}
.y0_c00398{bottom:0.000000px;}
.y26_c00398{bottom:106.200000px;}
.y25_c00398{bottom:180.000000px;}
.y24_c00398{bottom:210.615000px;}
.y23_c00398{bottom:210.619350px;}
.y22_c00398{bottom:273.255000px;}
.y21_c00398{bottom:273.262950px;}
.y20_c00398{bottom:303.840000px;}
.y1f_c00398{bottom:303.848100px;}
.y1d_c00398{bottom:334.799250px;}
.y1e_c00398{bottom:334.800000px;}
.y1c_c00398{bottom:365.055000px;}
.y1b_c00398{bottom:365.068200px;}
.y1a_c00398{bottom:395.645250px;}
.y18_c00398{bottom:426.608100px;}
.y19_c00398{bottom:426.615000px;}
.y17_c00398{bottom:457.560000px;}
.y16_c00398{bottom:519.135000px;}
.y15_c00398{bottom:580.693800px;}
.y14_c00398{bottom:610.935000px;}
.y13_c00398{bottom:678.240000px;}
.y12_c00398{bottom:678.242250px;}
.y10_c00398{bottom:708.848100px;}
.y11_c00398{bottom:708.855000px;}
.yf_c00398{bottom:739.800000px;}
.ye_c00398{bottom:770.768100px;}
.yd_c00398{bottom:801.722250px;}
.yc_c00398{bottom:832.335000px;}
.yb_c00398{bottom:832.335450px;}
.ya_c00398{bottom:863.662200px;}
.y9_c00398{bottom:924.495000px;}
.y8_c00398{bottom:924.502950px;}
.y7_c00398{bottom:955.080000px;}
.y6_c00398{bottom:955.082250px;}
.y5_c00398{bottom:985.705200px;}
.y4_c00398{bottom:1016.282250px;}
.y3_c00398{bottom:1046.895000px;}
.y2_c00398{bottom:1077.495000px;}
.y1_c00398{bottom:1153.080000px;}
.h8_c00398{height:57.708984px;}
.h2_c00398{height:66.515625px;}
.h5_c00398{height:70.040332px;}
.h4_c00398{height:70.055100px;}
.h3_c00398{height:70.075195px;}
.h6_c00398{height:70.143750px;}
.h7_c00398{height:70.148550px;}
.h1_c00398{height:1263.000000px;}
.h0_c00398{height:1263.240000px;}
.w1_c00398{width:892.500000px;}
.w0_c00398{width:892.800000px;}
.x0_c00398{left:0.000000px;}
.x1_c00398{left:108.645000px;}
.xb_c00398{left:109.854600px;}
.x10_c00398{left:135.892200px;}
.x25_c00398{left:161.175150px;}
.x8_c00398{left:162.635400px;}
.x1d_c00398{left:174.435000px;}
.x6_c00398{left:185.235000px;}
.x1e_c00398{left:197.115000px;}
.x7_c00398{left:206.475000px;}
.x11_c00398{left:274.080000px;}
.x12_c00398{left:296.460000px;}
.x13_c00398{left:388.995000px;}
.x19_c00398{left:395.385000px;}
.x14_c00398{left:411.285000px;}
.x1a_c00398{left:415.050000px;}
.x27_c00398{left:421.035000px;}
.xe_c00398{left:430.365000px;}
.x9_c00398{left:433.995000px;}
.xf_c00398{left:451.605000px;}
.xa_c00398{left:457.530000px;}
.x23_c00398{left:459.915000px;}
.x24_c00398{left:473.925000px;}
.x15_c00398{left:476.835000px;}
.x16_c00398{left:499.155000px;}
.xc_c00398{left:531.570000px;}
.xd_c00398{left:554.010000px;}
.x1b_c00398{left:575.805000px;}
.x1c_c00398{left:602.250000px;}
.x1f_c00398{left:651.075000px;}
.x20_c00398{left:673.890000px;}
.x2_c00398{left:678.075000px;}
.x17_c00398{left:685.635000px;}
.x3_c00398{left:702.465000px;}
.x18_c00398{left:707.730000px;}
.x21_c00398{left:712.290000px;}
.x4_c00398{left:721.995000px;}
.x22_c00398{left:732.075000px;}
.x26_c00398{left:740.355000px;}
.x5_c00398{left:747.210000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls49_c00398{letter-spacing:-2.221333pt;}
.ls54_c00398{letter-spacing:-2.202293pt;}
.ls42_c00398{letter-spacing:-2.053333pt;}
.ls79_c00398{letter-spacing:-1.954773pt;}
.ls76_c00398{letter-spacing:-1.904000pt;}
.ls46_c00398{letter-spacing:-1.675520pt;}
.ls68_c00398{letter-spacing:-1.428000pt;}
.ls66_c00398{letter-spacing:-1.396267pt;}
.ls87_c00398{letter-spacing:-1.358187pt;}
.ls4c_c00398{letter-spacing:-1.320107pt;}
.ls82_c00398{letter-spacing:-1.307413pt;}
.ls61_c00398{letter-spacing:-1.282027pt;}
.ls56_c00398{letter-spacing:-1.205867pt;}
.ls84_c00398{letter-spacing:-1.174133pt;}
.ls88_c00398{letter-spacing:-1.117013pt;}
.ls92_c00398{letter-spacing:-1.113280pt;}
.ls51_c00398{letter-spacing:-1.002773pt;}
.ls53_c00398{letter-spacing:-0.996427pt;}
.ls8e_c00398{letter-spacing:-0.926613pt;}
.ls43_c00398{letter-spacing:-0.920267pt;}
.ls8b_c00398{letter-spacing:-0.907573pt;}
.ls4a_c00398{letter-spacing:-0.793333pt;}
.ls63_c00398{letter-spacing:-0.710827pt;}
.ls67_c00398{letter-spacing:-0.685440pt;}
.ls45_c00398{letter-spacing:-0.666400pt;}
.ls6a_c00398{letter-spacing:-0.590240pt;}
.ls8c_c00398{letter-spacing:-0.571200pt;}
.ls7a_c00398{letter-spacing:-0.552160pt;}
.ls50_c00398{letter-spacing:-0.545813pt;}
.ls7f_c00398{letter-spacing:-0.539467pt;}
.ls69_c00398{letter-spacing:-0.533120pt;}
.ls59_c00398{letter-spacing:-0.520427pt;}
.ls78_c00398{letter-spacing:-0.514080pt;}
.ls6f_c00398{letter-spacing:-0.507733pt;}
.ls55_c00398{letter-spacing:-0.463307pt;}
.ls72_c00398{letter-spacing:-0.437920pt;}
.ls7c_c00398{letter-spacing:-0.425227pt;}
.ls8f_c00398{letter-spacing:-0.418880pt;}
.ls7e_c00398{letter-spacing:-0.412533pt;}
.ls64_c00398{letter-spacing:-0.399840pt;}
.ls5b_c00398{letter-spacing:-0.393493pt;}
.ls4f_c00398{letter-spacing:-0.374453pt;}
.ls65_c00398{letter-spacing:-0.368107pt;}
.ls7d_c00398{letter-spacing:-0.355413pt;}
.ls90_c00398{letter-spacing:-0.330027pt;}
.ls58_c00398{letter-spacing:-0.323680pt;}
.ls85_c00398{letter-spacing:-0.310987pt;}
.ls57_c00398{letter-spacing:-0.285600pt;}
.ls73_c00398{letter-spacing:-0.279253pt;}
.ls89_c00398{letter-spacing:-0.272907pt;}
.ls7b_c00398{letter-spacing:-0.253867pt;}
.ls6d_c00398{letter-spacing:-0.241173pt;}
.ls4b_c00398{letter-spacing:-0.228480pt;}
.ls60_c00398{letter-spacing:-0.222133pt;}
.ls4e_c00398{letter-spacing:-0.215787pt;}
.ls5d_c00398{letter-spacing:-0.196747pt;}
.ls48_c00398{letter-spacing:-0.190400pt;}
.ls47_c00398{letter-spacing:-0.177707pt;}
.ls52_c00398{letter-spacing:-0.152320pt;}
.ls6e_c00398{letter-spacing:-0.133280pt;}
.ls8a_c00398{letter-spacing:-0.107893pt;}
.ls83_c00398{letter-spacing:-0.101547pt;}
.ls8d_c00398{letter-spacing:-0.088853pt;}
.ls5a_c00398{letter-spacing:-0.082507pt;}
.ls6b_c00398{letter-spacing:-0.076160pt;}
.ls6c_c00398{letter-spacing:-0.069813pt;}
.ls5c_c00398{letter-spacing:-0.063467pt;}
.ls5e_c00398{letter-spacing:-0.057120pt;}
.ls81_c00398{letter-spacing:-0.050773pt;}
.ls62_c00398{letter-spacing:-0.044427pt;}
.ls80_c00398{letter-spacing:-0.038080pt;}
.ls4d_c00398{letter-spacing:-0.031733pt;}
.ls70_c00398{letter-spacing:-0.025387pt;}
.ls71_c00398{letter-spacing:-0.019040pt;}
.ls5f_c00398{letter-spacing:-0.012693pt;}
.ls44_c00398{letter-spacing:0.000000pt;}
.ls13_c00398{letter-spacing:0.006347pt;}
.ls10_c00398{letter-spacing:0.012693pt;}
.ls7_c00398{letter-spacing:0.019040pt;}
.ls41_c00398{letter-spacing:0.025387pt;}
.ls34_c00398{letter-spacing:0.031733pt;}
.ls1c_c00398{letter-spacing:0.038080pt;}
.ls33_c00398{letter-spacing:0.044427pt;}
.ls3_c00398{letter-spacing:0.050773pt;}
.ls28_c00398{letter-spacing:0.057120pt;}
.ls20_c00398{letter-spacing:0.063467pt;}
.ls32_c00398{letter-spacing:0.069813pt;}
.ls1b_c00398{letter-spacing:0.076160pt;}
.ls25_c00398{letter-spacing:0.082507pt;}
.ls2_c00398{letter-spacing:0.088853pt;}
.ls11_c00398{letter-spacing:0.095200pt;}
.ls3f_c00398{letter-spacing:0.107893pt;}
.ls3d_c00398{letter-spacing:0.120587pt;}
.ls3a_c00398{letter-spacing:0.126933pt;}
.ls27_c00398{letter-spacing:0.133280pt;}
.lsa_c00398{letter-spacing:0.139627pt;}
.ls24_c00398{letter-spacing:0.152320pt;}
.ls19_c00398{letter-spacing:0.165013pt;}
.lse_c00398{letter-spacing:0.177707pt;}
.lsd_c00398{letter-spacing:0.203093pt;}
.lsf_c00398{letter-spacing:0.209440pt;}
.ls36_c00398{letter-spacing:0.215787pt;}
.ls40_c00398{letter-spacing:0.222133pt;}
.ls8_c00398{letter-spacing:0.234827pt;}
.lsc_c00398{letter-spacing:0.241173pt;}
.ls1a_c00398{letter-spacing:0.247520pt;}
.ls3b_c00398{letter-spacing:0.272907pt;}
.ls4_c00398{letter-spacing:0.285600pt;}
.ls30_c00398{letter-spacing:0.291947pt;}
.ls16_c00398{letter-spacing:0.304640pt;}
.ls17_c00398{letter-spacing:0.330027pt;}
.ls0_c00398{letter-spacing:0.336373pt;}
.ls29_c00398{letter-spacing:0.352640pt;}
.ls1e_c00398{letter-spacing:0.368107pt;}
.ls35_c00398{letter-spacing:0.406187pt;}
.ls77_c00398{letter-spacing:0.418880pt;}
.ls26_c00398{letter-spacing:0.425227pt;}
.ls86_c00398{letter-spacing:0.444267pt;}
.ls38_c00398{letter-spacing:0.450613pt;}
.ls1_c00398{letter-spacing:0.469653pt;}
.ls6_c00398{letter-spacing:0.476000pt;}
.ls18_c00398{letter-spacing:0.520427pt;}
.ls91_c00398{letter-spacing:0.526773pt;}
.ls15_c00398{letter-spacing:0.545813pt;}
.ls31_c00398{letter-spacing:0.558507pt;}
.ls5_c00398{letter-spacing:0.571200pt;}
.ls39_c00398{letter-spacing:0.602933pt;}
.ls1f_c00398{letter-spacing:0.672747pt;}
.ls74_c00398{letter-spacing:0.680533pt;}
.ls12_c00398{letter-spacing:0.736213pt;}
.ls9_c00398{letter-spacing:0.863147pt;}
.ls21_c00398{letter-spacing:0.894880pt;}
.ls2b_c00398{letter-spacing:0.915627pt;}
.ls14_c00398{letter-spacing:0.939307pt;}
.ls3c_c00398{letter-spacing:1.078933pt;}
.ls75_c00398{letter-spacing:1.125973pt;}
.ls2e_c00398{letter-spacing:1.336320pt;}
.ls2a_c00398{letter-spacing:1.361067pt;}
.ls2d_c00398{letter-spacing:1.404373pt;}
.ls2f_c00398{letter-spacing:1.441493pt;}
.ls23_c00398{letter-spacing:1.466080pt;}
.ls2c_c00398{letter-spacing:1.472427pt;}
.ls3e_c00398{letter-spacing:1.504160pt;}
.ls1d_c00398{letter-spacing:1.840533pt;}
.ls22_c00398{letter-spacing:2.060800pt;}
.ls37_c00398{letter-spacing:2.145173pt;}
.lsb_c00398{letter-spacing:2.519627pt;}
.ws0_c00398{word-spacing:0.000000pt;}
._2_c00398{margin-left:-7.178667pt;}
._9_c00398{margin-left:-3.695787pt;}
._20_c00398{margin-left:-1.341173pt;}
._11_c00398{width:1.273653pt;}
._7_c00398{width:2.458187pt;}
._8_c00398{width:4.278667pt;}
._3_c00398{width:5.412693pt;}
._1_c00398{width:6.886133pt;}
._a_c00398{width:8.282400pt;}
._4_c00398{width:9.182613pt;}
._0_c00398{width:10.244533pt;}
._e_c00398{width:11.292853pt;}
._5_c00398{width:12.325227pt;}
._6_c00398{width:13.531093pt;}
._10_c00398{width:14.512747pt;}
._f_c00398{width:15.885707pt;}
._b_c00398{width:17.197333pt;}
._c_c00398{width:18.478080pt;}
._17_c00398{width:20.298987pt;}
._d_c00398{width:21.618880pt;}
._16_c00398{width:22.530667pt;}
._15_c00398{width:25.589760pt;}
._1f_c00398{width:26.539627pt;}
._14_c00398{width:28.731360pt;}
._12_c00398{width:30.444960pt;}
._13_c00398{width:34.284693pt;}
._1b_c00398{width:41.742933pt;}
._1c_c00398{width:44.870933pt;}
._1a_c00398{width:46.008267pt;}
._19_c00398{width:48.869333pt;}
._1d_c00398{width:50.811413pt;}
._18_c00398{width:54.663840pt;}
._1e_c00398{width:56.115947pt;}
.fs4_c00398{font-size:52.266667pt;}
.fs0_c00398{font-size:58.666667pt;}
.fs2_c00398{font-size:59.733333pt;}
.fs3_c00398{font-size:61.866667pt;}
.fs1_c00398{font-size:63.466667pt;}
.y0_c00398{bottom:0.000000pt;}
.y26_c00398{bottom:94.400000pt;}
.y25_c00398{bottom:160.000000pt;}
.y24_c00398{bottom:187.213333pt;}
.y23_c00398{bottom:187.217200pt;}
.y22_c00398{bottom:242.893333pt;}
.y21_c00398{bottom:242.900400pt;}
.y20_c00398{bottom:270.080000pt;}
.y1f_c00398{bottom:270.087200pt;}
.y1d_c00398{bottom:297.599333pt;}
.y1e_c00398{bottom:297.600000pt;}
.y1c_c00398{bottom:324.493333pt;}
.y1b_c00398{bottom:324.505067pt;}
.y1a_c00398{bottom:351.684667pt;}
.y18_c00398{bottom:379.207200pt;}
.y19_c00398{bottom:379.213333pt;}
.y17_c00398{bottom:406.720000pt;}
.y16_c00398{bottom:461.453333pt;}
.y15_c00398{bottom:516.172267pt;}
.y14_c00398{bottom:543.053333pt;}
.y13_c00398{bottom:602.880000pt;}
.y12_c00398{bottom:602.882000pt;}
.y10_c00398{bottom:630.087200pt;}
.y11_c00398{bottom:630.093333pt;}
.yf_c00398{bottom:657.600000pt;}
.ye_c00398{bottom:685.127200pt;}
.yd_c00398{bottom:712.642000pt;}
.yc_c00398{bottom:739.853333pt;}
.yb_c00398{bottom:739.853733pt;}
.ya_c00398{bottom:767.699733pt;}
.y9_c00398{bottom:821.773333pt;}
.y8_c00398{bottom:821.780400pt;}
.y7_c00398{bottom:848.960000pt;}
.y6_c00398{bottom:848.962000pt;}
.y5_c00398{bottom:876.182400pt;}
.y4_c00398{bottom:903.362000pt;}
.y3_c00398{bottom:930.573333pt;}
.y2_c00398{bottom:957.773333pt;}
.y1_c00398{bottom:1024.960000pt;}
.h8_c00398{height:51.296875pt;}
.h2_c00398{height:59.125000pt;}
.h5_c00398{height:62.258073pt;}
.h4_c00398{height:62.271200pt;}
.h3_c00398{height:62.289062pt;}
.h6_c00398{height:62.350000pt;}
.h7_c00398{height:62.354267pt;}
.h1_c00398{height:1122.666667pt;}
.h0_c00398{height:1122.880000pt;}
.w1_c00398{width:793.333333pt;}
.w0_c00398{width:793.600000pt;}
.x0_c00398{left:0.000000pt;}
.x1_c00398{left:96.573333pt;}
.xb_c00398{left:97.648533pt;}
.x10_c00398{left:120.793067pt;}
.x25_c00398{left:143.266800pt;}
.x8_c00398{left:144.564800pt;}
.x1d_c00398{left:155.053333pt;}
.x6_c00398{left:164.653333pt;}
.x1e_c00398{left:175.213333pt;}
.x7_c00398{left:183.533333pt;}
.x11_c00398{left:243.626667pt;}
.x12_c00398{left:263.520000pt;}
.x13_c00398{left:345.773333pt;}
.x19_c00398{left:351.453333pt;}
.x14_c00398{left:365.586667pt;}
.x1a_c00398{left:368.933333pt;}
.x27_c00398{left:374.253333pt;}
.xe_c00398{left:382.546667pt;}
.x9_c00398{left:385.773333pt;}
.xf_c00398{left:401.426667pt;}
.xa_c00398{left:406.693333pt;}
.x23_c00398{left:408.813333pt;}
.x24_c00398{left:421.266667pt;}
.x15_c00398{left:423.853333pt;}
.x16_c00398{left:443.693333pt;}
.xc_c00398{left:472.506667pt;}
.xd_c00398{left:492.453333pt;}
.x1b_c00398{left:511.826667pt;}
.x1c_c00398{left:535.333333pt;}
.x1f_c00398{left:578.733333pt;}
.x20_c00398{left:599.013333pt;}
.x2_c00398{left:602.733333pt;}
.x17_c00398{left:609.453333pt;}
.x3_c00398{left:624.413333pt;}
.x18_c00398{left:629.093333pt;}
.x21_c00398{left:633.146667pt;}
.x4_c00398{left:641.773333pt;}
.x22_c00398{left:650.733333pt;}
.x26_c00398{left:658.093333pt;}
.x5_c00398{left:664.186667pt;}
}





/* 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_c00399 {
    display:none;
  }
  .loading-indicator_c00399.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00399 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_c00399 { 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_c00399" -> "#page-container .classname_c00399")
 */
.pf_c00399 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00399 { /* 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_c00399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00399 { /* 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_c00399 { /* 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_c00399 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00399 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00399 {overflow:visible;}
  }
}
.c_c00399 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00399 { /* 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_c00399:after { /* webkit #35443 */
  content: '';
}
.t_c00399:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00399 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 */
}
.__c00399 { /* 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_c00399 { /* info for Javascript */
  display:none;
}
.l_c00399 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00399 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00399 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00399: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_c00399 {
    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_c00399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00399.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_c00399 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00399{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00399;src:url('chunks/assets/font_f99b925e4a365de3b71077de.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.284668;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_c00399;src:url('chunks/assets/font_78893ca137612ae76d8e0ccb.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.284180;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_c00399;src:url('chunks/assets/font_383c02e67f9507f5137e5993.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:0.666000;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_c00399;src:url('chunks/assets/font_bad04918bd37e80f33c53708.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;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:ff5_c00399;src:url('chunks/assets/font_17f33d8cf77fa5a5ec30e730.woff2')format("woff");}.ff5_c00399{font-family:ff5_c00399;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:ff6_c00399;src:url('chunks/assets/font_2ac9b1a5ffff2104bb77651c.woff2')format("woff");}.ff6_c00399{font-family:ff6_c00399;line-height:1.311035;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_c00399{transform:matrix(0.119045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119045,0.000000,0.000000,0.250000,0,0);}
.mc_c00399{transform:matrix(0.171212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171212,0.000000,0.000000,0.250000,0,0);}
.me_c00399{transform:matrix(0.204394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204394,0.000000,0.000000,0.250000,0,0);}
.m0_c00399{transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);}
.m7_c00399{transform:matrix(0.231002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231002,0.000000,0.000000,0.250000,0,0);}
.mb_c00399{transform:matrix(0.239581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239581,0.000000,0.000000,0.250000,0,0);}
.m8_c00399{transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);}
.m9_c00399{transform:matrix(0.243438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243438,0.000000,0.000000,0.250000,0,0);}
.m3_c00399{transform:matrix(0.244324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244324,0.000000,0.000000,0.250000,0,0);}
.md_c00399{transform:matrix(0.244569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244569,0.000000,0.000000,0.250000,0,0);}
.mf_c00399{transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);}
.ma_c00399{transform:matrix(0.247246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247246,0.000000,0.000000,0.250000,0,0);}
.m2_c00399{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{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);}
.m5_c00399{transform:matrix(0.738081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738081,0.000000,0.000000,0.250000,0,0);}
.m6_c00399{transform:matrix(0.965497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.965497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.965497,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.ls33_c00399{letter-spacing:-2.562000px;}
.ls40_c00399{letter-spacing:-2.541000px;}
.ls92_c00399{letter-spacing:-2.520000px;}
.ls4b_c00399{letter-spacing:-2.410320px;}
.ls5a_c00399{letter-spacing:-2.228820px;}
.ls58_c00399{letter-spacing:-2.207040px;}
.ls77_c00399{letter-spacing:-2.170740px;}
.ls93_c00399{letter-spacing:-2.073600px;}
.ls80_c00399{letter-spacing:-1.880340px;}
.ls7d_c00399{letter-spacing:-1.800480px;}
.ls5d_c00399{letter-spacing:-1.698840px;}
.ls99_c00399{letter-spacing:-1.618980px;}
.ls6d_c00399{letter-spacing:-1.611720px;}
.ls57_c00399{letter-spacing:-1.568160px;}
.ls63_c00399{letter-spacing:-1.546380px;}
.ls97_c00399{letter-spacing:-1.510080px;}
.ls44_c00399{letter-spacing:-1.502820px;}
.ls49_c00399{letter-spacing:-1.459260px;}
.ls5b_c00399{letter-spacing:-1.452000px;}
.ls61_c00399{letter-spacing:-1.372140px;}
.ls87_c00399{letter-spacing:-1.364880px;}
.ls91_c00399{letter-spacing:-1.346400px;}
.ls55_c00399{letter-spacing:-1.335840px;}
.ls94_c00399{letter-spacing:-1.116000px;}
.ls8c_c00399{letter-spacing:-1.096260px;}
.ls38_c00399{letter-spacing:-1.089000px;}
.ls7a_c00399{letter-spacing:-1.081740px;}
.ls78_c00399{letter-spacing:-1.067220px;}
.ls43_c00399{letter-spacing:-1.045440px;}
.ls95_c00399{letter-spacing:-0.964800px;}
.ls4c_c00399{letter-spacing:-0.922020px;}
.ls4a_c00399{letter-spacing:-0.892980px;}
.ls4f_c00399{letter-spacing:-0.863940px;}
.ls5f_c00399{letter-spacing:-0.856680px;}
.ls51_c00399{letter-spacing:-0.791340px;}
.ls88_c00399{letter-spacing:-0.769560px;}
.ls3f_c00399{letter-spacing:-0.762300px;}
.ls79_c00399{letter-spacing:-0.718740px;}
.ls6a_c00399{letter-spacing:-0.711480px;}
.ls7b_c00399{letter-spacing:-0.689700px;}
.ls46_c00399{letter-spacing:-0.682440px;}
.ls98_c00399{letter-spacing:-0.660660px;}
.ls96_c00399{letter-spacing:-0.646140px;}
.ls72_c00399{letter-spacing:-0.580800px;}
.ls7f_c00399{letter-spacing:-0.566280px;}
.ls5e_c00399{letter-spacing:-0.544500px;}
.ls6e_c00399{letter-spacing:-0.529980px;}
.ls41_c00399{letter-spacing:-0.522720px;}
.ls84_c00399{letter-spacing:-0.500940px;}
.ls73_c00399{letter-spacing:-0.493680px;}
.ls8b_c00399{letter-spacing:-0.486420px;}
.ls56_c00399{letter-spacing:-0.479160px;}
.ls8a_c00399{letter-spacing:-0.450120px;}
.ls48_c00399{letter-spacing:-0.435600px;}
.ls70_c00399{letter-spacing:-0.421080px;}
.ls60_c00399{letter-spacing:-0.406560px;}
.ls85_c00399{letter-spacing:-0.392040px;}
.ls67_c00399{letter-spacing:-0.384780px;}
.ls65_c00399{letter-spacing:-0.370260px;}
.ls7c_c00399{letter-spacing:-0.363000px;}
.ls8e_c00399{letter-spacing:-0.355740px;}
.ls68_c00399{letter-spacing:-0.348480px;}
.ls71_c00399{letter-spacing:-0.333960px;}
.ls54_c00399{letter-spacing:-0.319440px;}
.ls3e_c00399{letter-spacing:-0.312180px;}
.ls89_c00399{letter-spacing:-0.297660px;}
.ls36_c00399{letter-spacing:-0.283140px;}
.ls3c_c00399{letter-spacing:-0.275880px;}
.ls86_c00399{letter-spacing:-0.268620px;}
.ls42_c00399{letter-spacing:-0.261360px;}
.ls39_c00399{letter-spacing:-0.239580px;}
.ls74_c00399{letter-spacing:-0.232320px;}
.ls53_c00399{letter-spacing:-0.225060px;}
.ls52_c00399{letter-spacing:-0.217800px;}
.ls3b_c00399{letter-spacing:-0.210540px;}
.ls6f_c00399{letter-spacing:-0.203280px;}
.ls8f_c00399{letter-spacing:-0.196020px;}
.ls69_c00399{letter-spacing:-0.188760px;}
.ls66_c00399{letter-spacing:-0.181500px;}
.ls6b_c00399{letter-spacing:-0.169920px;}
.ls62_c00399{letter-spacing:-0.166980px;}
.ls81_c00399{letter-spacing:-0.159720px;}
.ls34_c00399{letter-spacing:-0.152460px;}
.ls82_c00399{letter-spacing:-0.130680px;}
.ls83_c00399{letter-spacing:-0.123420px;}
.ls3d_c00399{letter-spacing:-0.116160px;}
.ls35_c00399{letter-spacing:-0.108900px;}
.ls45_c00399{letter-spacing:-0.101640px;}
.ls47_c00399{letter-spacing:-0.094380px;}
.ls4e_c00399{letter-spacing:-0.079860px;}
.ls5c_c00399{letter-spacing:-0.072600px;}
.ls76_c00399{letter-spacing:-0.065340px;}
.ls59_c00399{letter-spacing:-0.050820px;}
.ls37_c00399{letter-spacing:-0.043560px;}
.ls64_c00399{letter-spacing:-0.029040px;}
.ls8d_c00399{letter-spacing:-0.021780px;}
.ls50_c00399{letter-spacing:-0.014520px;}
.ls75_c00399{letter-spacing:-0.007260px;}
.ls3a_c00399{letter-spacing:0.000000px;}
.ls2e_c00399{letter-spacing:0.007260px;}
.ls21_c00399{letter-spacing:0.021780px;}
.ls5_c00399{letter-spacing:0.036300px;}
.ls2b_c00399{letter-spacing:0.050820px;}
.ls7_c00399{letter-spacing:0.058080px;}
.ls24_c00399{letter-spacing:0.065340px;}
.ls16_c00399{letter-spacing:0.072600px;}
.ls7e_c00399{letter-spacing:0.079860px;}
.ls14_c00399{letter-spacing:0.087120px;}
.ls15_c00399{letter-spacing:0.094380px;}
.ls12_c00399{letter-spacing:0.101640px;}
.ls18_c00399{letter-spacing:0.108900px;}
.lsd_c00399{letter-spacing:0.116160px;}
.ls2_c00399{letter-spacing:0.123420px;}
.ls1e_c00399{letter-spacing:0.130680px;}
.ls27_c00399{letter-spacing:0.137940px;}
.ls6_c00399{letter-spacing:0.159720px;}
.ls30_c00399{letter-spacing:0.174240px;}
.ls10_c00399{letter-spacing:0.181500px;}
.lsa_c00399{letter-spacing:0.188760px;}
.lse_c00399{letter-spacing:0.196020px;}
.ls2f_c00399{letter-spacing:0.203280px;}
.lsc_c00399{letter-spacing:0.217800px;}
.ls9_c00399{letter-spacing:0.225060px;}
.ls3_c00399{letter-spacing:0.232320px;}
.ls23_c00399{letter-spacing:0.246840px;}
.ls2a_c00399{letter-spacing:0.268620px;}
.ls4_c00399{letter-spacing:0.275880px;}
.ls8_c00399{letter-spacing:0.283140px;}
.ls2c_c00399{letter-spacing:0.290400px;}
.ls2d_c00399{letter-spacing:0.312180px;}
.ls4d_c00399{letter-spacing:0.341220px;}
.ls29_c00399{letter-spacing:0.348480px;}
.ls22_c00399{letter-spacing:0.377520px;}
.ls6c_c00399{letter-spacing:0.382320px;}
.ls0_c00399{letter-spacing:0.384780px;}
.ls32_c00399{letter-spacing:0.399300px;}
.ls28_c00399{letter-spacing:0.413820px;}
.ls13_c00399{letter-spacing:0.421080px;}
.ls1_c00399{letter-spacing:0.442860px;}
.ls1b_c00399{letter-spacing:0.450120px;}
.ls1f_c00399{letter-spacing:0.500940px;}
.ls17_c00399{letter-spacing:0.508200px;}
.ls31_c00399{letter-spacing:0.529980px;}
.ls20_c00399{letter-spacing:0.653400px;}
.ls1c_c00399{letter-spacing:0.675180px;}
.ls11_c00399{letter-spacing:0.682440px;}
.lsb_c00399{letter-spacing:0.762300px;}
.ls1a_c00399{letter-spacing:0.900240px;}
.ls9a_c00399{letter-spacing:0.905520px;}
.ls19_c00399{letter-spacing:0.943800px;}
.lsf_c00399{letter-spacing:0.951060px;}
.ls25_c00399{letter-spacing:1.255980px;}
.ls26_c00399{letter-spacing:1.314060px;}
.ls90_c00399{letter-spacing:2.430000px;}
.ls1d_c00399{letter-spacing:3.256800px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{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__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00399{word-spacing:0.000000px;}
._1b_c00399{margin-left:-3.415320px;}
._11_c00399{width:1.205160px;}
._5_c00399{width:2.562780px;}
._4_c00399{width:4.261620px;}
._6_c00399{width:5.561160px;}
._2_c00399{width:6.809880px;}
._10_c00399{width:7.811760px;}
._1_c00399{width:8.820900px;}
._0_c00399{width:10.374540px;}
._f_c00399{width:11.768460px;}
._3_c00399{width:13.467300px;}
._a_c00399{width:14.984640px;}
._9_c00399{width:16.574580px;}
._8_c00399{width:18.280680px;}
._18_c00399{width:19.558440px;}
._7_c00399{width:20.836200px;}
._b_c00399{width:22.106700px;}
._16_c00399{width:23.522400px;}
._14_c00399{width:24.689100px;}
._c_c00399{width:26.165040px;}
._13_c00399{width:27.195960px;}
._d_c00399{width:28.618920px;}
._e_c00399{width:30.165300px;}
._12_c00399{width:31.835100px;}
._17_c00399{width:33.318300px;}
._15_c00399{width:34.784820px;}
._19_c00399{width:36.798780px;}
._1a_c00399{width:40.527180px;}
._1c_c00399{width:435.027600px;}
.fc0_c00399{color:transparent;}
.fs3_c00399{font-size:30.240600px;}
.fs6_c00399{font-size:47.520000px;}
.fs4_c00399{font-size:48.600000px;}
.fs7_c00399{font-size:58.800000px;}
.fs2_c00399{font-size:70.800000px;}
.fs5_c00399{font-size:72.000000px;}
.fs1_c00399{font-size:72.600000px;}
.fs0_c00399{font-size:73.200000px;}
.y0_c00399{bottom:0.000000px;}
.y26_c00399{bottom:108.000000px;}
.y25_c00399{bottom:249.495000px;}
.y24_c00399{bottom:280.815000px;}
.y23_c00399{bottom:287.295000px;}
.y21_c00399{bottom:312.134100px;}
.y22_c00399{bottom:312.135000px;}
.y1f_c00399{bottom:342.726450px;}
.y20_c00399{bottom:342.735000px;}
.y1e_c00399{bottom:373.690350px;}
.y1d_c00399{bottom:404.654250px;}
.y1c_c00399{bottom:435.600000px;}
.y1b_c00399{bottom:496.095450px;}
.y1a_c00399{bottom:527.422350px;}
.y19_c00399{bottom:558.368100px;}
.y18_c00399{bottom:589.697250px;}
.y16_c00399{bottom:620.272200px;}
.y17_c00399{bottom:620.280000px;}
.y15_c00399{bottom:651.254250px;}
.y14_c00399{bottom:682.200000px;}
.y13_c00399{bottom:713.174250px;}
.y12_c00399{bottom:744.112200px;}
.y11_c00399{bottom:775.076100px;}
.yf_c00399{bottom:806.035950px;}
.y10_c00399{bottom:806.040000px;}
.ye_c00399{bottom:836.646300px;}
.yd_c00399{bottom:867.610200px;}
.yb_c00399{bottom:929.174100px;}
.yc_c00399{bottom:929.175000px;}
.ya_c00399{bottom:959.775000px;}
.y9_c00399{bottom:959.777250px;}
.y7_c00399{bottom:990.352950px;}
.y8_c00399{bottom:990.360000px;}
.y5_c00399{bottom:1021.331100px;}
.y6_c00399{bottom:1021.335000px;}
.y4_c00399{bottom:1052.295000px;}
.y3_c00399{bottom:1052.297250px;}
.y2_c00399{bottom:1082.880000px;}
.y1_c00399{bottom:1159.935000px;}
.h7_c00399{height:20.140240px;}
.ha_c00399{height:31.648320px;}
.h8_c00399{height:50.688281px;}
.hb_c00399{height:57.708984px;}
.h3_c00399{height:71.252930px;}
.h6_c00399{height:71.255930px;}
.h5_c00399{height:71.284130px;}
.h4_c00399{height:71.287730px;}
.h2_c00399{height:71.841797px;}
.h9_c00399{height:72.562500px;}
.h1_c00399{height:1263.000000px;}
.h0_c00399{height:1263.240000px;}
.w1_c00399{width:892.500000px;}
.w0_c00399{width:892.800000px;}
.x0_c00399{left:0.000000px;}
.x19_c00399{left:106.530000px;}
.x10_c00399{left:108.042300px;}
.xc_c00399{left:109.248300px;}
.x2_c00399{left:110.685000px;}
.x1_c00399{left:111.885000px;}
.x1f_c00399{left:136.080000px;}
.x16_c00399{left:160.830000px;}
.xf_c00399{left:162.619350px;}
.x22_c00399{left:214.395000px;}
.x20_c00399{left:245.520000px;}
.xd_c00399{left:299.715000px;}
.x1c_c00399{left:300.795000px;}
.xe_c00399{left:321.450000px;}
.x1d_c00399{left:323.100000px;}
.x1a_c00399{left:328.875000px;}
.x23_c00399{left:330.285000px;}
.x1b_c00399{left:351.330000px;}
.x24_c00399{left:405.525000px;}
.x2b_c00399{left:423.555000px;}
.x14_c00399{left:424.635000px;}
.x12_c00399{left:449.835000px;}
.x15_c00399{left:451.650000px;}
.x13_c00399{left:477.315000px;}
.x25_c00399{left:489.795000px;}
.x26_c00399{left:515.685000px;}
.x27_c00399{left:538.935000px;}
.x3_c00399{left:572.955000px;}
.x5_c00399{left:583.050000px;}
.x4_c00399{left:595.080000px;}
.x21_c00399{left:597.615000px;}
.x11_c00399{left:600.225000px;}
.x6_c00399{left:603.525000px;}
.xa_c00399{left:613.635000px;}
.x9_c00399{left:622.260000px;}
.x28_c00399{left:627.390000px;}
.xb_c00399{left:637.740000px;}
.x29_c00399{left:659.850000px;}
.x2a_c00399{left:711.855000px;}
.x7_c00399{left:716.595000px;}
.x17_c00399{left:722.715000px;}
.x8_c00399{left:741.600000px;}
.x18_c00399{left:745.410000px;}
.x1e_c00399{left:747.915000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls33_c00399{letter-spacing:-2.277333pt;}
.ls40_c00399{letter-spacing:-2.258667pt;}
.ls92_c00399{letter-spacing:-2.240000pt;}
.ls4b_c00399{letter-spacing:-2.142507pt;}
.ls5a_c00399{letter-spacing:-1.981173pt;}
.ls58_c00399{letter-spacing:-1.961813pt;}
.ls77_c00399{letter-spacing:-1.929547pt;}
.ls93_c00399{letter-spacing:-1.843200pt;}
.ls80_c00399{letter-spacing:-1.671413pt;}
.ls7d_c00399{letter-spacing:-1.600427pt;}
.ls5d_c00399{letter-spacing:-1.510080pt;}
.ls99_c00399{letter-spacing:-1.439093pt;}
.ls6d_c00399{letter-spacing:-1.432640pt;}
.ls57_c00399{letter-spacing:-1.393920pt;}
.ls63_c00399{letter-spacing:-1.374560pt;}
.ls97_c00399{letter-spacing:-1.342293pt;}
.ls44_c00399{letter-spacing:-1.335840pt;}
.ls49_c00399{letter-spacing:-1.297120pt;}
.ls5b_c00399{letter-spacing:-1.290667pt;}
.ls61_c00399{letter-spacing:-1.219680pt;}
.ls87_c00399{letter-spacing:-1.213227pt;}
.ls91_c00399{letter-spacing:-1.196800pt;}
.ls55_c00399{letter-spacing:-1.187413pt;}
.ls94_c00399{letter-spacing:-0.992000pt;}
.ls8c_c00399{letter-spacing:-0.974453pt;}
.ls38_c00399{letter-spacing:-0.968000pt;}
.ls7a_c00399{letter-spacing:-0.961547pt;}
.ls78_c00399{letter-spacing:-0.948640pt;}
.ls43_c00399{letter-spacing:-0.929280pt;}
.ls95_c00399{letter-spacing:-0.857600pt;}
.ls4c_c00399{letter-spacing:-0.819573pt;}
.ls4a_c00399{letter-spacing:-0.793760pt;}
.ls4f_c00399{letter-spacing:-0.767947pt;}
.ls5f_c00399{letter-spacing:-0.761493pt;}
.ls51_c00399{letter-spacing:-0.703413pt;}
.ls88_c00399{letter-spacing:-0.684053pt;}
.ls3f_c00399{letter-spacing:-0.677600pt;}
.ls79_c00399{letter-spacing:-0.638880pt;}
.ls6a_c00399{letter-spacing:-0.632427pt;}
.ls7b_c00399{letter-spacing:-0.613067pt;}
.ls46_c00399{letter-spacing:-0.606613pt;}
.ls98_c00399{letter-spacing:-0.587253pt;}
.ls96_c00399{letter-spacing:-0.574347pt;}
.ls72_c00399{letter-spacing:-0.516267pt;}
.ls7f_c00399{letter-spacing:-0.503360pt;}
.ls5e_c00399{letter-spacing:-0.484000pt;}
.ls6e_c00399{letter-spacing:-0.471093pt;}
.ls41_c00399{letter-spacing:-0.464640pt;}
.ls84_c00399{letter-spacing:-0.445280pt;}
.ls73_c00399{letter-spacing:-0.438827pt;}
.ls8b_c00399{letter-spacing:-0.432373pt;}
.ls56_c00399{letter-spacing:-0.425920pt;}
.ls8a_c00399{letter-spacing:-0.400107pt;}
.ls48_c00399{letter-spacing:-0.387200pt;}
.ls70_c00399{letter-spacing:-0.374293pt;}
.ls60_c00399{letter-spacing:-0.361387pt;}
.ls85_c00399{letter-spacing:-0.348480pt;}
.ls67_c00399{letter-spacing:-0.342027pt;}
.ls65_c00399{letter-spacing:-0.329120pt;}
.ls7c_c00399{letter-spacing:-0.322667pt;}
.ls8e_c00399{letter-spacing:-0.316213pt;}
.ls68_c00399{letter-spacing:-0.309760pt;}
.ls71_c00399{letter-spacing:-0.296853pt;}
.ls54_c00399{letter-spacing:-0.283947pt;}
.ls3e_c00399{letter-spacing:-0.277493pt;}
.ls89_c00399{letter-spacing:-0.264587pt;}
.ls36_c00399{letter-spacing:-0.251680pt;}
.ls3c_c00399{letter-spacing:-0.245227pt;}
.ls86_c00399{letter-spacing:-0.238773pt;}
.ls42_c00399{letter-spacing:-0.232320pt;}
.ls39_c00399{letter-spacing:-0.212960pt;}
.ls74_c00399{letter-spacing:-0.206507pt;}
.ls53_c00399{letter-spacing:-0.200053pt;}
.ls52_c00399{letter-spacing:-0.193600pt;}
.ls3b_c00399{letter-spacing:-0.187147pt;}
.ls6f_c00399{letter-spacing:-0.180693pt;}
.ls8f_c00399{letter-spacing:-0.174240pt;}
.ls69_c00399{letter-spacing:-0.167787pt;}
.ls66_c00399{letter-spacing:-0.161333pt;}
.ls6b_c00399{letter-spacing:-0.151040pt;}
.ls62_c00399{letter-spacing:-0.148427pt;}
.ls81_c00399{letter-spacing:-0.141973pt;}
.ls34_c00399{letter-spacing:-0.135520pt;}
.ls82_c00399{letter-spacing:-0.116160pt;}
.ls83_c00399{letter-spacing:-0.109707pt;}
.ls3d_c00399{letter-spacing:-0.103253pt;}
.ls35_c00399{letter-spacing:-0.096800pt;}
.ls45_c00399{letter-spacing:-0.090347pt;}
.ls47_c00399{letter-spacing:-0.083893pt;}
.ls4e_c00399{letter-spacing:-0.070987pt;}
.ls5c_c00399{letter-spacing:-0.064533pt;}
.ls76_c00399{letter-spacing:-0.058080pt;}
.ls59_c00399{letter-spacing:-0.045173pt;}
.ls37_c00399{letter-spacing:-0.038720pt;}
.ls64_c00399{letter-spacing:-0.025813pt;}
.ls8d_c00399{letter-spacing:-0.019360pt;}
.ls50_c00399{letter-spacing:-0.012907pt;}
.ls75_c00399{letter-spacing:-0.006453pt;}
.ls3a_c00399{letter-spacing:0.000000pt;}
.ls2e_c00399{letter-spacing:0.006453pt;}
.ls21_c00399{letter-spacing:0.019360pt;}
.ls5_c00399{letter-spacing:0.032267pt;}
.ls2b_c00399{letter-spacing:0.045173pt;}
.ls7_c00399{letter-spacing:0.051627pt;}
.ls24_c00399{letter-spacing:0.058080pt;}
.ls16_c00399{letter-spacing:0.064533pt;}
.ls7e_c00399{letter-spacing:0.070987pt;}
.ls14_c00399{letter-spacing:0.077440pt;}
.ls15_c00399{letter-spacing:0.083893pt;}
.ls12_c00399{letter-spacing:0.090347pt;}
.ls18_c00399{letter-spacing:0.096800pt;}
.lsd_c00399{letter-spacing:0.103253pt;}
.ls2_c00399{letter-spacing:0.109707pt;}
.ls1e_c00399{letter-spacing:0.116160pt;}
.ls27_c00399{letter-spacing:0.122613pt;}
.ls6_c00399{letter-spacing:0.141973pt;}
.ls30_c00399{letter-spacing:0.154880pt;}
.ls10_c00399{letter-spacing:0.161333pt;}
.lsa_c00399{letter-spacing:0.167787pt;}
.lse_c00399{letter-spacing:0.174240pt;}
.ls2f_c00399{letter-spacing:0.180693pt;}
.lsc_c00399{letter-spacing:0.193600pt;}
.ls9_c00399{letter-spacing:0.200053pt;}
.ls3_c00399{letter-spacing:0.206507pt;}
.ls23_c00399{letter-spacing:0.219413pt;}
.ls2a_c00399{letter-spacing:0.238773pt;}
.ls4_c00399{letter-spacing:0.245227pt;}
.ls8_c00399{letter-spacing:0.251680pt;}
.ls2c_c00399{letter-spacing:0.258133pt;}
.ls2d_c00399{letter-spacing:0.277493pt;}
.ls4d_c00399{letter-spacing:0.303307pt;}
.ls29_c00399{letter-spacing:0.309760pt;}
.ls22_c00399{letter-spacing:0.335573pt;}
.ls6c_c00399{letter-spacing:0.339840pt;}
.ls0_c00399{letter-spacing:0.342027pt;}
.ls32_c00399{letter-spacing:0.354933pt;}
.ls28_c00399{letter-spacing:0.367840pt;}
.ls13_c00399{letter-spacing:0.374293pt;}
.ls1_c00399{letter-spacing:0.393653pt;}
.ls1b_c00399{letter-spacing:0.400107pt;}
.ls1f_c00399{letter-spacing:0.445280pt;}
.ls17_c00399{letter-spacing:0.451733pt;}
.ls31_c00399{letter-spacing:0.471093pt;}
.ls20_c00399{letter-spacing:0.580800pt;}
.ls1c_c00399{letter-spacing:0.600160pt;}
.ls11_c00399{letter-spacing:0.606613pt;}
.lsb_c00399{letter-spacing:0.677600pt;}
.ls1a_c00399{letter-spacing:0.800213pt;}
.ls9a_c00399{letter-spacing:0.804907pt;}
.ls19_c00399{letter-spacing:0.838933pt;}
.lsf_c00399{letter-spacing:0.845387pt;}
.ls25_c00399{letter-spacing:1.116427pt;}
.ls26_c00399{letter-spacing:1.168053pt;}
.ls90_c00399{letter-spacing:2.160000pt;}
.ls1d_c00399{letter-spacing:2.894933pt;}
.ws0_c00399{word-spacing:0.000000pt;}
._1b_c00399{margin-left:-3.035840pt;}
._11_c00399{width:1.071253pt;}
._5_c00399{width:2.278027pt;}
._4_c00399{width:3.788107pt;}
._6_c00399{width:4.943253pt;}
._2_c00399{width:6.053227pt;}
._10_c00399{width:6.943787pt;}
._1_c00399{width:7.840800pt;}
._0_c00399{width:9.221813pt;}
._f_c00399{width:10.460853pt;}
._3_c00399{width:11.970933pt;}
._a_c00399{width:13.319680pt;}
._9_c00399{width:14.732960pt;}
._8_c00399{width:16.249493pt;}
._18_c00399{width:17.385280pt;}
._7_c00399{width:18.521067pt;}
._b_c00399{width:19.650400pt;}
._16_c00399{width:20.908800pt;}
._14_c00399{width:21.945867pt;}
._c_c00399{width:23.257813pt;}
._13_c00399{width:24.174187pt;}
._d_c00399{width:25.439040pt;}
._e_c00399{width:26.813600pt;}
._12_c00399{width:28.297867pt;}
._17_c00399{width:29.616267pt;}
._15_c00399{width:30.919840pt;}
._19_c00399{width:32.710027pt;}
._1a_c00399{width:36.024160pt;}
._1c_c00399{width:386.691200pt;}
.fs3_c00399{font-size:26.880533pt;}
.fs6_c00399{font-size:42.240000pt;}
.fs4_c00399{font-size:43.200000pt;}
.fs7_c00399{font-size:52.266667pt;}
.fs2_c00399{font-size:62.933333pt;}
.fs5_c00399{font-size:64.000000pt;}
.fs1_c00399{font-size:64.533333pt;}
.fs0_c00399{font-size:65.066667pt;}
.y0_c00399{bottom:0.000000pt;}
.y26_c00399{bottom:96.000000pt;}
.y25_c00399{bottom:221.773333pt;}
.y24_c00399{bottom:249.613333pt;}
.y23_c00399{bottom:255.373333pt;}
.y21_c00399{bottom:277.452533pt;}
.y22_c00399{bottom:277.453333pt;}
.y1f_c00399{bottom:304.645733pt;}
.y20_c00399{bottom:304.653333pt;}
.y1e_c00399{bottom:332.169200pt;}
.y1d_c00399{bottom:359.692667pt;}
.y1c_c00399{bottom:387.200000pt;}
.y1b_c00399{bottom:440.973733pt;}
.y1a_c00399{bottom:468.819867pt;}
.y19_c00399{bottom:496.327200pt;}
.y18_c00399{bottom:524.175333pt;}
.y16_c00399{bottom:551.353067pt;}
.y17_c00399{bottom:551.360000pt;}
.y15_c00399{bottom:578.892667pt;}
.y14_c00399{bottom:606.400000pt;}
.y13_c00399{bottom:633.932667pt;}
.y12_c00399{bottom:661.433067pt;}
.y11_c00399{bottom:688.956533pt;}
.yf_c00399{bottom:716.476400pt;}
.y10_c00399{bottom:716.480000pt;}
.ye_c00399{bottom:743.685600pt;}
.yd_c00399{bottom:771.209067pt;}
.yb_c00399{bottom:825.932533pt;}
.yc_c00399{bottom:825.933333pt;}
.ya_c00399{bottom:853.133333pt;}
.y9_c00399{bottom:853.135333pt;}
.y7_c00399{bottom:880.313733pt;}
.y8_c00399{bottom:880.320000pt;}
.y5_c00399{bottom:907.849867pt;}
.y6_c00399{bottom:907.853333pt;}
.y4_c00399{bottom:935.373333pt;}
.y3_c00399{bottom:935.375333pt;}
.y2_c00399{bottom:962.560000pt;}
.y1_c00399{bottom:1031.053333pt;}
.h7_c00399{height:17.902435pt;}
.ha_c00399{height:28.131840pt;}
.h8_c00399{height:45.056250pt;}
.hb_c00399{height:51.296875pt;}
.h3_c00399{height:63.335938pt;}
.h6_c00399{height:63.338604pt;}
.h5_c00399{height:63.363671pt;}
.h4_c00399{height:63.366871pt;}
.h2_c00399{height:63.859375pt;}
.h9_c00399{height:64.500000pt;}
.h1_c00399{height:1122.666667pt;}
.h0_c00399{height:1122.880000pt;}
.w1_c00399{width:793.333333pt;}
.w0_c00399{width:793.600000pt;}
.x0_c00399{left:0.000000pt;}
.x19_c00399{left:94.693333pt;}
.x10_c00399{left:96.037600pt;}
.xc_c00399{left:97.109600pt;}
.x2_c00399{left:98.386667pt;}
.x1_c00399{left:99.453333pt;}
.x1f_c00399{left:120.960000pt;}
.x16_c00399{left:142.960000pt;}
.xf_c00399{left:144.550533pt;}
.x22_c00399{left:190.573333pt;}
.x20_c00399{left:218.240000pt;}
.xd_c00399{left:266.413333pt;}
.x1c_c00399{left:267.373333pt;}
.xe_c00399{left:285.733333pt;}
.x1d_c00399{left:287.200000pt;}
.x1a_c00399{left:292.333333pt;}
.x23_c00399{left:293.586667pt;}
.x1b_c00399{left:312.293333pt;}
.x24_c00399{left:360.466667pt;}
.x2b_c00399{left:376.493333pt;}
.x14_c00399{left:377.453333pt;}
.x12_c00399{left:399.853333pt;}
.x15_c00399{left:401.466667pt;}
.x13_c00399{left:424.280000pt;}
.x25_c00399{left:435.373333pt;}
.x26_c00399{left:458.386667pt;}
.x27_c00399{left:479.053333pt;}
.x3_c00399{left:509.293333pt;}
.x5_c00399{left:518.266667pt;}
.x4_c00399{left:528.960000pt;}
.x21_c00399{left:531.213333pt;}
.x11_c00399{left:533.533333pt;}
.x6_c00399{left:536.466667pt;}
.xa_c00399{left:545.453333pt;}
.x9_c00399{left:553.120000pt;}
.x28_c00399{left:557.680000pt;}
.xb_c00399{left:566.880000pt;}
.x29_c00399{left:586.533333pt;}
.x2a_c00399{left:632.760000pt;}
.x7_c00399{left:636.973333pt;}
.x17_c00399{left:642.413333pt;}
.x8_c00399{left:659.200000pt;}
.x18_c00399{left:662.586667pt;}
.x1e_c00399{left:664.813333pt;}
}





/* 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_c00400 {
    display:none;
  }
  .loading-indicator_c00400.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00400 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_c00400 { 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_c00400" -> "#page-container .classname_c00400")
 */
.pf_c00400 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00400 { /* 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_c00400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00400 { /* 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_c00400 { /* 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_c00400 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00400 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00400 {overflow:visible;}
  }
}
.c_c00400 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00400 { /* 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_c00400:after { /* webkit #35443 */
  content: '';
}
.t_c00400:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00400 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 */
}
.__c00400 { /* 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_c00400 { /* info for Javascript */
  display:none;
}
.l_c00400 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00400 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00400 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00400: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_c00400 {
    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_c00400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00400.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_c00400 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00400{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00400;src:url('chunks/assets/font_1ad30b90ef4716e25d8873c0.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.284668;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_c00400;src:url('chunks/assets/font_39ff241498d7a6afa5f3400f.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:0.666000;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_c00400;src:url('chunks/assets/font_a404d1c678e1adb488526496.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.284180;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;}
.m7_c00400{transform:matrix(0.140391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140391,0.000000,0.000000,0.250000,0,0);}
.m6_c00400{transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);}
.m8_c00400{transform:matrix(0.245896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245896,0.000000,0.000000,0.250000,0,0);}
.m2_c00400{transform:matrix(0.246008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246008,0.000000,0.000000,0.250000,0,0);}
.m5_c00400{transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);}
.m9_c00400{transform:matrix(0.246238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246238,0.000000,0.000000,0.250000,0,0);}
.ma_c00400{transform:matrix(0.246360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246360,0.000000,0.000000,0.250000,0,0);}
.m0_c00400{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m3_c00400{transform:matrix(0.248029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248029,0.000000,0.000000,0.250000,0,0);}
.m4_c00400{transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);}
.mb_c00400{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{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);}
.v0_c00400{vertical-align:0.000000px;}
.ls2f_c00400{letter-spacing:-2.520000px;}
.ls3b_c00400{letter-spacing:-2.448000px;}
.ls2c_c00400{letter-spacing:-2.352000px;}
.ls69_c00400{letter-spacing:-2.124000px;}
.ls7c_c00400{letter-spacing:-1.936800px;}
.ls74_c00400{letter-spacing:-1.922400px;}
.ls49_c00400{letter-spacing:-1.836000px;}
.ls6f_c00400{letter-spacing:-1.828800px;}
.ls47_c00400{letter-spacing:-1.785600px;}
.ls55_c00400{letter-spacing:-1.670400px;}
.ls76_c00400{letter-spacing:-1.663200px;}
.ls6a_c00400{letter-spacing:-1.648800px;}
.ls67_c00400{letter-spacing:-1.605600px;}
.lsa8_c00400{letter-spacing:-1.584000px;}
.ls65_c00400{letter-spacing:-1.540800px;}
.ls4f_c00400{letter-spacing:-1.490400px;}
.ls4d_c00400{letter-spacing:-1.454400px;}
.ls45_c00400{letter-spacing:-1.396800px;}
.lsa3_c00400{letter-spacing:-1.296000px;}
.ls40_c00400{letter-spacing:-1.252800px;}
.ls5a_c00400{letter-spacing:-1.216800px;}
.ls4b_c00400{letter-spacing:-1.180800px;}
.ls54_c00400{letter-spacing:-1.173600px;}
.ls85_c00400{letter-spacing:-1.135260px;}
.lsa2_c00400{letter-spacing:-1.116000px;}
.ls5f_c00400{letter-spacing:-1.108800px;}
.ls8f_c00400{letter-spacing:-1.106700px;}
.ls34_c00400{letter-spacing:-1.101600px;}
.ls52_c00400{letter-spacing:-1.072800px;}
.lsa5_c00400{letter-spacing:-1.051200px;}
.ls9e_c00400{letter-spacing:-1.029600px;}
.ls7b_c00400{letter-spacing:-1.008000px;}
.ls5d_c00400{letter-spacing:-0.957600px;}
.ls60_c00400{letter-spacing:-0.914400px;}
.ls31_c00400{letter-spacing:-0.900000px;}
.ls72_c00400{letter-spacing:-0.899640px;}
.ls7e_c00400{letter-spacing:-0.885600px;}
.ls93_c00400{letter-spacing:-0.885360px;}
.ls66_c00400{letter-spacing:-0.878400px;}
.lsa0_c00400{letter-spacing:-0.864000px;}
.ls79_c00400{letter-spacing:-0.856800px;}
.ls94_c00400{letter-spacing:-0.849660px;}
.ls3a_c00400{letter-spacing:-0.835200px;}
.ls8d_c00400{letter-spacing:-0.813960px;}
.ls8a_c00400{letter-spacing:-0.813600px;}
.ls43_c00400{letter-spacing:-0.806400px;}
.ls84_c00400{letter-spacing:-0.799680px;}
.ls39_c00400{letter-spacing:-0.770400px;}
.ls83_c00400{letter-spacing:-0.756840px;}
.ls82_c00400{letter-spacing:-0.734400px;}
.ls88_c00400{letter-spacing:-0.706860px;}
.ls73_c00400{letter-spacing:-0.691200px;}
.ls32_c00400{letter-spacing:-0.655200px;}
.ls2d_c00400{letter-spacing:-0.633600px;}
.ls9c_c00400{letter-spacing:-0.619200px;}
.ls90_c00400{letter-spacing:-0.614040px;}
.ls97_c00400{letter-spacing:-0.604800px;}
.ls89_c00400{letter-spacing:-0.556920px;}
.ls7a_c00400{letter-spacing:-0.540000px;}
.ls44_c00400{letter-spacing:-0.518400px;}
.ls8e_c00400{letter-spacing:-0.506940px;}
.ls7f_c00400{letter-spacing:-0.501120px;}
.ls30_c00400{letter-spacing:-0.496800px;}
.ls75_c00400{letter-spacing:-0.482400px;}
.ls42_c00400{letter-spacing:-0.475200px;}
.ls64_c00400{letter-spacing:-0.468000px;}
.ls78_c00400{letter-spacing:-0.453600px;}
.ls70_c00400{letter-spacing:-0.432000px;}
.ls2e_c00400{letter-spacing:-0.403200px;}
.ls92_c00400{letter-spacing:-0.399840px;}
.ls9a_c00400{letter-spacing:-0.396000px;}
.lsa7_c00400{letter-spacing:-0.388800px;}
.lsa1_c00400{letter-spacing:-0.374400px;}
.ls4a_c00400{letter-spacing:-0.360000px;}
.ls58_c00400{letter-spacing:-0.345600px;}
.ls53_c00400{letter-spacing:-0.338400px;}
.ls59_c00400{letter-spacing:-0.331200px;}
.ls38_c00400{letter-spacing:-0.324000px;}
.ls50_c00400{letter-spacing:-0.316800px;}
.ls4e_c00400{letter-spacing:-0.309600px;}
.ls91_c00400{letter-spacing:-0.307020px;}
.ls63_c00400{letter-spacing:-0.295200px;}
.ls46_c00400{letter-spacing:-0.288000px;}
.ls81_c00400{letter-spacing:-0.280800px;}
.ls6b_c00400{letter-spacing:-0.273600px;}
.ls57_c00400{letter-spacing:-0.266400px;}
.ls3c_c00400{letter-spacing:-0.259200px;}
.ls56_c00400{letter-spacing:-0.252000px;}
.lsa6_c00400{letter-spacing:-0.244800px;}
.ls9f_c00400{letter-spacing:-0.237600px;}
.ls35_c00400{letter-spacing:-0.230400px;}
.ls7d_c00400{letter-spacing:-0.223200px;}
.ls5b_c00400{letter-spacing:-0.216000px;}
.ls68_c00400{letter-spacing:-0.208800px;}
.ls61_c00400{letter-spacing:-0.201600px;}
.ls5c_c00400{letter-spacing:-0.194400px;}
.ls6d_c00400{letter-spacing:-0.165600px;}
.ls9b_c00400{letter-spacing:-0.158400px;}
.lsa4_c00400{letter-spacing:-0.151200px;}
.ls95_c00400{letter-spacing:-0.149940px;}
.ls71_c00400{letter-spacing:-0.144000px;}
.ls80_c00400{letter-spacing:-0.136800px;}
.ls77_c00400{letter-spacing:-0.129600px;}
.ls98_c00400{letter-spacing:-0.122400px;}
.ls9d_c00400{letter-spacing:-0.115200px;}
.ls87_c00400{letter-spacing:-0.114240px;}
.ls6c_c00400{letter-spacing:-0.108000px;}
.ls48_c00400{letter-spacing:-0.100800px;}
.ls8b_c00400{letter-spacing:-0.093600px;}
.ls51_c00400{letter-spacing:-0.086400px;}
.ls5e_c00400{letter-spacing:-0.079200px;}
.ls99_c00400{letter-spacing:-0.072000px;}
.ls62_c00400{letter-spacing:-0.064800px;}
.ls41_c00400{letter-spacing:-0.057600px;}
.ls8c_c00400{letter-spacing:-0.043200px;}
.ls86_c00400{letter-spacing:-0.035700px;}
.ls36_c00400{letter-spacing:-0.028800px;}
.ls3f_c00400{letter-spacing:-0.021600px;}
.ls3e_c00400{letter-spacing:-0.014400px;}
.ls37_c00400{letter-spacing:-0.007200px;}
.ls33_c00400{letter-spacing:0.000000px;}
.lse_c00400{letter-spacing:0.007200px;}
.ls21_c00400{letter-spacing:0.021420px;}
.ls1c_c00400{letter-spacing:0.035700px;}
.lsc_c00400{letter-spacing:0.036000px;}
.ls20_c00400{letter-spacing:0.042840px;}
.lsd_c00400{letter-spacing:0.043200px;}
.ls2a_c00400{letter-spacing:0.049980px;}
.ls16_c00400{letter-spacing:0.057120px;}
.ls2_c00400{letter-spacing:0.057600px;}
.lsa9_c00400{letter-spacing:0.062700px;}
.ls17_c00400{letter-spacing:0.064800px;}
.ls11_c00400{letter-spacing:0.072000px;}
.ls7_c00400{letter-spacing:0.086400px;}
.ls23_c00400{letter-spacing:0.099960px;}
.ls25_c00400{letter-spacing:0.114240px;}
.lsb_c00400{letter-spacing:0.122400px;}
.ls1e_c00400{letter-spacing:0.135660px;}
.ls0_c00400{letter-spacing:0.144000px;}
.ls27_c00400{letter-spacing:0.151200px;}
.ls12_c00400{letter-spacing:0.158400px;}
.ls24_c00400{letter-spacing:0.171360px;}
.ls3d_c00400{letter-spacing:0.172800px;}
.lsf_c00400{letter-spacing:0.180000px;}
.ls1b_c00400{letter-spacing:0.187200px;}
.ls2b_c00400{letter-spacing:0.216000px;}
.ls14_c00400{letter-spacing:0.223200px;}
.ls28_c00400{letter-spacing:0.228480px;}
.ls26_c00400{letter-spacing:0.259200px;}
.ls6e_c00400{letter-spacing:0.295200px;}
.ls3_c00400{letter-spacing:0.302400px;}
.ls8_c00400{letter-spacing:0.309600px;}
.ls18_c00400{letter-spacing:0.331200px;}
.ls1_c00400{letter-spacing:0.352800px;}
.ls22_c00400{letter-spacing:0.357000px;}
.ls96_c00400{letter-spacing:0.378420px;}
.lsa_c00400{letter-spacing:0.417600px;}
.ls19_c00400{letter-spacing:0.424800px;}
.ls29_c00400{letter-spacing:0.428400px;}
.ls1d_c00400{letter-spacing:0.456960px;}
.ls1f_c00400{letter-spacing:0.464100px;}
.ls5_c00400{letter-spacing:0.475200px;}
.ls10_c00400{letter-spacing:0.525600px;}
.ls6_c00400{letter-spacing:0.576000px;}
.ls4c_c00400{letter-spacing:0.727200px;}
.ls1a_c00400{letter-spacing:1.209600px;}
.ls9_c00400{letter-spacing:1.296000px;}
.ls13_c00400{letter-spacing:1.392300px;}
.ls4_c00400{letter-spacing:1.504800px;}
.ls15_c00400{letter-spacing:2.834580px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{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__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00400{word-spacing:0.000000px;}
._15_c00400{margin-left:-6.748740px;}
._16_c00400{margin-left:-2.785440px;}
._14_c00400{width:1.900800px;}
._3_c00400{width:3.124800px;}
._0_c00400{width:5.061600px;}
._1_c00400{width:6.204000px;}
._2_c00400{width:7.281600px;}
._4_c00400{width:8.616000px;}
._11_c00400{width:9.724800px;}
._a_c00400{width:11.032800px;}
._12_c00400{width:12.276000px;}
._5_c00400{width:13.454400px;}
._6_c00400{width:14.760000px;}
._9_c00400{width:16.682400px;}
._13_c00400{width:17.928000px;}
._8_c00400{width:18.928800px;}
._7_c00400{width:20.318400px;}
._b_c00400{width:22.003200px;}
._d_c00400{width:23.904000px;}
._1b_c00400{width:25.430400px;}
._c_c00400{width:26.856000px;}
._1a_c00400{width:28.059600px;}
._e_c00400{width:29.491200px;}
._f_c00400{width:30.700800px;}
._10_c00400{width:33.552000px;}
._19_c00400{width:35.017020px;}
._17_c00400{width:36.346500px;}
._18_c00400{width:38.359200px;}
.fc0_c00400{color:transparent;}
.fs2_c00400{font-size:53.280000px;}
.fs5_c00400{font-size:57.000000px;}
.fs0_c00400{font-size:67.200000px;}
.fs4_c00400{font-size:69.600000px;}
.fs3_c00400{font-size:71.400000px;}
.fs1_c00400{font-size:72.000000px;}
.y0_c00400{bottom:0.000000px;}
.y21_c00400{bottom:112.320006px;}
.y20_c00400{bottom:160.560006px;}
.y1f_c00400{bottom:191.157006px;}
.y1e_c00400{bottom:221.775006px;}
.y1d_c00400{bottom:253.095006px;}
.y1c_c00400{bottom:283.695006px;}
.y1b_c00400{bottom:314.655006px;}
.y1a_c00400{bottom:375.501456px;}
.y19_c00400{bottom:406.453356px;}
.y18_c00400{bottom:437.405256px;}
.y17_c00400{bottom:468.380106px;}
.y16_c00400{bottom:498.975006px;}
.y15_c00400{bottom:560.528256px;}
.y14_c00400{bottom:591.855006px;}
.y13_c00400{bottom:622.455006px;}
.y12_c00400{bottom:622.458006px;}
.y10_c00400{bottom:653.397006px;}
.y11_c00400{bottom:653.400006px;}
.yf_c00400{bottom:684.375006px;}
.yd_c00400{bottom:715.317006px;}
.ye_c00400{bottom:715.320006px;}
.yc_c00400{bottom:745.935006px;}
.yb_c00400{bottom:807.477006px;}
.ya_c00400{bottom:838.455006px;}
.y9_c00400{bottom:869.055006px;}
.y8_c00400{bottom:898.935006px;}
.y7_c00400{bottom:929.895006px;}
.y6_c00400{bottom:960.477006px;}
.y5_c00400{bottom:991.095006px;}
.y4_c00400{bottom:991.098006px;}
.y3_c00400{bottom:1052.640006px;}
.y2_c00400{bottom:1083.615006px;}
.y1_c00400{bottom:1158.840006px;}
.h4_c00400{height:35.484480px;}
.ha_c00400{height:55.942383px;}
.h2_c00400{height:65.953125px;}
.h7_c00400{height:70.040332px;}
.h8_c00400{height:70.075195px;}
.h6_c00400{height:70.643662px;}
.h3_c00400{height:70.664062px;}
.h9_c00400{height:70.676062px;}
.h5_c00400{height:70.691063px;}
.h1_c00400{height:1263.000000px;}
.h0_c00400{height:1263.240006px;}
.w1_c00400{width:892.500000px;}
.w0_c00400{width:892.799998px;}
.x0_c00400{left:0.000000px;}
.x1d_c00400{left:109.589999px;}
.x1_c00400{left:110.804999px;}
.x13_c00400{left:112.409999px;}
.x4_c00400{left:151.844999px;}
.x17_c00400{left:158.924998px;}
.x5_c00400{left:164.486998px;}
.x18_c00400{left:178.379998px;}
.x6_c00400{left:251.084998px;}
.x7_c00400{left:269.459999px;}
.x11_c00400{left:332.969998px;}
.x12_c00400{left:352.814999px;}
.xb_c00400{left:381.344999px;}
.xc_c00400{left:407.129999px;}
.x20_c00400{left:424.634999px;}
.x8_c00400{left:427.289999px;}
.x2_c00400{left:431.909999px;}
.x14_c00400{left:438.674999px;}
.x19_c00400{left:441.914999px;}
.x9_c00400{left:451.184999px;}
.x3_c00400{left:459.644999px;}
.x15_c00400{left:461.129999px;}
.x1a_c00400{left:464.714998px;}
.x1e_c00400{left:470.009999px;}
.xa_c00400{left:471.209999px;}
.x1f_c00400{left:494.819999px;}
.xd_c00400{left:542.714998px;}
.xe_c00400{left:565.394999px;}
.xf_c00400{left:584.279999px;}
.x1b_c00400{left:604.289999px;}
.x1c_c00400{left:624.569999px;}
.x16_c00400{left:639.104998px;}
.x10_c00400{left:658.619999px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls2f_c00400{letter-spacing:-2.240000pt;}
.ls3b_c00400{letter-spacing:-2.176000pt;}
.ls2c_c00400{letter-spacing:-2.090667pt;}
.ls69_c00400{letter-spacing:-1.888000pt;}
.ls7c_c00400{letter-spacing:-1.721600pt;}
.ls74_c00400{letter-spacing:-1.708800pt;}
.ls49_c00400{letter-spacing:-1.632000pt;}
.ls6f_c00400{letter-spacing:-1.625600pt;}
.ls47_c00400{letter-spacing:-1.587200pt;}
.ls55_c00400{letter-spacing:-1.484800pt;}
.ls76_c00400{letter-spacing:-1.478400pt;}
.ls6a_c00400{letter-spacing:-1.465600pt;}
.ls67_c00400{letter-spacing:-1.427200pt;}
.lsa8_c00400{letter-spacing:-1.408000pt;}
.ls65_c00400{letter-spacing:-1.369600pt;}
.ls4f_c00400{letter-spacing:-1.324800pt;}
.ls4d_c00400{letter-spacing:-1.292800pt;}
.ls45_c00400{letter-spacing:-1.241600pt;}
.lsa3_c00400{letter-spacing:-1.152000pt;}
.ls40_c00400{letter-spacing:-1.113600pt;}
.ls5a_c00400{letter-spacing:-1.081600pt;}
.ls4b_c00400{letter-spacing:-1.049600pt;}
.ls54_c00400{letter-spacing:-1.043200pt;}
.ls85_c00400{letter-spacing:-1.009120pt;}
.lsa2_c00400{letter-spacing:-0.992000pt;}
.ls5f_c00400{letter-spacing:-0.985600pt;}
.ls8f_c00400{letter-spacing:-0.983733pt;}
.ls34_c00400{letter-spacing:-0.979200pt;}
.ls52_c00400{letter-spacing:-0.953600pt;}
.lsa5_c00400{letter-spacing:-0.934400pt;}
.ls9e_c00400{letter-spacing:-0.915200pt;}
.ls7b_c00400{letter-spacing:-0.896000pt;}
.ls5d_c00400{letter-spacing:-0.851200pt;}
.ls60_c00400{letter-spacing:-0.812800pt;}
.ls31_c00400{letter-spacing:-0.800000pt;}
.ls72_c00400{letter-spacing:-0.799680pt;}
.ls7e_c00400{letter-spacing:-0.787200pt;}
.ls93_c00400{letter-spacing:-0.786987pt;}
.ls66_c00400{letter-spacing:-0.780800pt;}
.lsa0_c00400{letter-spacing:-0.768000pt;}
.ls79_c00400{letter-spacing:-0.761600pt;}
.ls94_c00400{letter-spacing:-0.755253pt;}
.ls3a_c00400{letter-spacing:-0.742400pt;}
.ls8d_c00400{letter-spacing:-0.723520pt;}
.ls8a_c00400{letter-spacing:-0.723200pt;}
.ls43_c00400{letter-spacing:-0.716800pt;}
.ls84_c00400{letter-spacing:-0.710827pt;}
.ls39_c00400{letter-spacing:-0.684800pt;}
.ls83_c00400{letter-spacing:-0.672747pt;}
.ls82_c00400{letter-spacing:-0.652800pt;}
.ls88_c00400{letter-spacing:-0.628320pt;}
.ls73_c00400{letter-spacing:-0.614400pt;}
.ls32_c00400{letter-spacing:-0.582400pt;}
.ls2d_c00400{letter-spacing:-0.563200pt;}
.ls9c_c00400{letter-spacing:-0.550400pt;}
.ls90_c00400{letter-spacing:-0.545813pt;}
.ls97_c00400{letter-spacing:-0.537600pt;}
.ls89_c00400{letter-spacing:-0.495040pt;}
.ls7a_c00400{letter-spacing:-0.480000pt;}
.ls44_c00400{letter-spacing:-0.460800pt;}
.ls8e_c00400{letter-spacing:-0.450613pt;}
.ls7f_c00400{letter-spacing:-0.445440pt;}
.ls30_c00400{letter-spacing:-0.441600pt;}
.ls75_c00400{letter-spacing:-0.428800pt;}
.ls42_c00400{letter-spacing:-0.422400pt;}
.ls64_c00400{letter-spacing:-0.416000pt;}
.ls78_c00400{letter-spacing:-0.403200pt;}
.ls70_c00400{letter-spacing:-0.384000pt;}
.ls2e_c00400{letter-spacing:-0.358400pt;}
.ls92_c00400{letter-spacing:-0.355413pt;}
.ls9a_c00400{letter-spacing:-0.352000pt;}
.lsa7_c00400{letter-spacing:-0.345600pt;}
.lsa1_c00400{letter-spacing:-0.332800pt;}
.ls4a_c00400{letter-spacing:-0.320000pt;}
.ls58_c00400{letter-spacing:-0.307200pt;}
.ls53_c00400{letter-spacing:-0.300800pt;}
.ls59_c00400{letter-spacing:-0.294400pt;}
.ls38_c00400{letter-spacing:-0.288000pt;}
.ls50_c00400{letter-spacing:-0.281600pt;}
.ls4e_c00400{letter-spacing:-0.275200pt;}
.ls91_c00400{letter-spacing:-0.272907pt;}
.ls63_c00400{letter-spacing:-0.262400pt;}
.ls46_c00400{letter-spacing:-0.256000pt;}
.ls81_c00400{letter-spacing:-0.249600pt;}
.ls6b_c00400{letter-spacing:-0.243200pt;}
.ls57_c00400{letter-spacing:-0.236800pt;}
.ls3c_c00400{letter-spacing:-0.230400pt;}
.ls56_c00400{letter-spacing:-0.224000pt;}
.lsa6_c00400{letter-spacing:-0.217600pt;}
.ls9f_c00400{letter-spacing:-0.211200pt;}
.ls35_c00400{letter-spacing:-0.204800pt;}
.ls7d_c00400{letter-spacing:-0.198400pt;}
.ls5b_c00400{letter-spacing:-0.192000pt;}
.ls68_c00400{letter-spacing:-0.185600pt;}
.ls61_c00400{letter-spacing:-0.179200pt;}
.ls5c_c00400{letter-spacing:-0.172800pt;}
.ls6d_c00400{letter-spacing:-0.147200pt;}
.ls9b_c00400{letter-spacing:-0.140800pt;}
.lsa4_c00400{letter-spacing:-0.134400pt;}
.ls95_c00400{letter-spacing:-0.133280pt;}
.ls71_c00400{letter-spacing:-0.128000pt;}
.ls80_c00400{letter-spacing:-0.121600pt;}
.ls77_c00400{letter-spacing:-0.115200pt;}
.ls98_c00400{letter-spacing:-0.108800pt;}
.ls9d_c00400{letter-spacing:-0.102400pt;}
.ls87_c00400{letter-spacing:-0.101547pt;}
.ls6c_c00400{letter-spacing:-0.096000pt;}
.ls48_c00400{letter-spacing:-0.089600pt;}
.ls8b_c00400{letter-spacing:-0.083200pt;}
.ls51_c00400{letter-spacing:-0.076800pt;}
.ls5e_c00400{letter-spacing:-0.070400pt;}
.ls99_c00400{letter-spacing:-0.064000pt;}
.ls62_c00400{letter-spacing:-0.057600pt;}
.ls41_c00400{letter-spacing:-0.051200pt;}
.ls8c_c00400{letter-spacing:-0.038400pt;}
.ls86_c00400{letter-spacing:-0.031733pt;}
.ls36_c00400{letter-spacing:-0.025600pt;}
.ls3f_c00400{letter-spacing:-0.019200pt;}
.ls3e_c00400{letter-spacing:-0.012800pt;}
.ls37_c00400{letter-spacing:-0.006400pt;}
.ls33_c00400{letter-spacing:0.000000pt;}
.lse_c00400{letter-spacing:0.006400pt;}
.ls21_c00400{letter-spacing:0.019040pt;}
.ls1c_c00400{letter-spacing:0.031733pt;}
.lsc_c00400{letter-spacing:0.032000pt;}
.ls20_c00400{letter-spacing:0.038080pt;}
.lsd_c00400{letter-spacing:0.038400pt;}
.ls2a_c00400{letter-spacing:0.044427pt;}
.ls16_c00400{letter-spacing:0.050773pt;}
.ls2_c00400{letter-spacing:0.051200pt;}
.lsa9_c00400{letter-spacing:0.055733pt;}
.ls17_c00400{letter-spacing:0.057600pt;}
.ls11_c00400{letter-spacing:0.064000pt;}
.ls7_c00400{letter-spacing:0.076800pt;}
.ls23_c00400{letter-spacing:0.088853pt;}
.ls25_c00400{letter-spacing:0.101547pt;}
.lsb_c00400{letter-spacing:0.108800pt;}
.ls1e_c00400{letter-spacing:0.120587pt;}
.ls0_c00400{letter-spacing:0.128000pt;}
.ls27_c00400{letter-spacing:0.134400pt;}
.ls12_c00400{letter-spacing:0.140800pt;}
.ls24_c00400{letter-spacing:0.152320pt;}
.ls3d_c00400{letter-spacing:0.153600pt;}
.lsf_c00400{letter-spacing:0.160000pt;}
.ls1b_c00400{letter-spacing:0.166400pt;}
.ls2b_c00400{letter-spacing:0.192000pt;}
.ls14_c00400{letter-spacing:0.198400pt;}
.ls28_c00400{letter-spacing:0.203093pt;}
.ls26_c00400{letter-spacing:0.230400pt;}
.ls6e_c00400{letter-spacing:0.262400pt;}
.ls3_c00400{letter-spacing:0.268800pt;}
.ls8_c00400{letter-spacing:0.275200pt;}
.ls18_c00400{letter-spacing:0.294400pt;}
.ls1_c00400{letter-spacing:0.313600pt;}
.ls22_c00400{letter-spacing:0.317333pt;}
.ls96_c00400{letter-spacing:0.336373pt;}
.lsa_c00400{letter-spacing:0.371200pt;}
.ls19_c00400{letter-spacing:0.377600pt;}
.ls29_c00400{letter-spacing:0.380800pt;}
.ls1d_c00400{letter-spacing:0.406187pt;}
.ls1f_c00400{letter-spacing:0.412533pt;}
.ls5_c00400{letter-spacing:0.422400pt;}
.ls10_c00400{letter-spacing:0.467200pt;}
.ls6_c00400{letter-spacing:0.512000pt;}
.ls4c_c00400{letter-spacing:0.646400pt;}
.ls1a_c00400{letter-spacing:1.075200pt;}
.ls9_c00400{letter-spacing:1.152000pt;}
.ls13_c00400{letter-spacing:1.237600pt;}
.ls4_c00400{letter-spacing:1.337600pt;}
.ls15_c00400{letter-spacing:2.519627pt;}
.ws0_c00400{word-spacing:0.000000pt;}
._15_c00400{margin-left:-5.998880pt;}
._16_c00400{margin-left:-2.475947pt;}
._14_c00400{width:1.689600pt;}
._3_c00400{width:2.777600pt;}
._0_c00400{width:4.499200pt;}
._1_c00400{width:5.514667pt;}
._2_c00400{width:6.472533pt;}
._4_c00400{width:7.658667pt;}
._11_c00400{width:8.644267pt;}
._a_c00400{width:9.806933pt;}
._12_c00400{width:10.912000pt;}
._5_c00400{width:11.959467pt;}
._6_c00400{width:13.120000pt;}
._9_c00400{width:14.828800pt;}
._13_c00400{width:15.936000pt;}
._8_c00400{width:16.825600pt;}
._7_c00400{width:18.060800pt;}
._b_c00400{width:19.558400pt;}
._d_c00400{width:21.248000pt;}
._1b_c00400{width:22.604800pt;}
._c_c00400{width:23.872000pt;}
._1a_c00400{width:24.941867pt;}
._e_c00400{width:26.214400pt;}
._f_c00400{width:27.289600pt;}
._10_c00400{width:29.824000pt;}
._19_c00400{width:31.126240pt;}
._17_c00400{width:32.308000pt;}
._18_c00400{width:34.097067pt;}
.fs2_c00400{font-size:47.360000pt;}
.fs5_c00400{font-size:50.666667pt;}
.fs0_c00400{font-size:59.733333pt;}
.fs4_c00400{font-size:61.866667pt;}
.fs3_c00400{font-size:63.466667pt;}
.fs1_c00400{font-size:64.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y21_c00400{bottom:99.840005pt;}
.y20_c00400{bottom:142.720005pt;}
.y1f_c00400{bottom:169.917339pt;}
.y1e_c00400{bottom:197.133339pt;}
.y1d_c00400{bottom:224.973339pt;}
.y1c_c00400{bottom:252.173339pt;}
.y1b_c00400{bottom:279.693339pt;}
.y1a_c00400{bottom:333.779072pt;}
.y19_c00400{bottom:361.291872pt;}
.y18_c00400{bottom:388.804672pt;}
.y17_c00400{bottom:416.337872pt;}
.y16_c00400{bottom:443.533339pt;}
.y15_c00400{bottom:498.247339pt;}
.y14_c00400{bottom:526.093339pt;}
.y13_c00400{bottom:553.293339pt;}
.y12_c00400{bottom:553.296005pt;}
.y10_c00400{bottom:580.797339pt;}
.y11_c00400{bottom:580.800005pt;}
.yf_c00400{bottom:608.333339pt;}
.yd_c00400{bottom:635.837339pt;}
.ye_c00400{bottom:635.840005pt;}
.yc_c00400{bottom:663.053339pt;}
.yb_c00400{bottom:717.757339pt;}
.ya_c00400{bottom:745.293339pt;}
.y9_c00400{bottom:772.493339pt;}
.y8_c00400{bottom:799.053339pt;}
.y7_c00400{bottom:826.573339pt;}
.y6_c00400{bottom:853.757339pt;}
.y5_c00400{bottom:880.973339pt;}
.y4_c00400{bottom:880.976005pt;}
.y3_c00400{bottom:935.680005pt;}
.y2_c00400{bottom:963.213339pt;}
.y1_c00400{bottom:1030.080005pt;}
.h4_c00400{height:31.541760pt;}
.ha_c00400{height:49.726562pt;}
.h2_c00400{height:58.625000pt;}
.h7_c00400{height:62.258073pt;}
.h8_c00400{height:62.289062pt;}
.h6_c00400{height:62.794367pt;}
.h3_c00400{height:62.812500pt;}
.h9_c00400{height:62.823167pt;}
.h5_c00400{height:62.836500pt;}
.h1_c00400{height:1122.666667pt;}
.h0_c00400{height:1122.880005pt;}
.w1_c00400{width:793.333333pt;}
.w0_c00400{width:793.599999pt;}
.x0_c00400{left:0.000000pt;}
.x1d_c00400{left:97.413332pt;}
.x1_c00400{left:98.493332pt;}
.x13_c00400{left:99.919999pt;}
.x4_c00400{left:134.973332pt;}
.x17_c00400{left:141.266665pt;}
.x5_c00400{left:146.210665pt;}
.x18_c00400{left:158.559999pt;}
.x6_c00400{left:223.186665pt;}
.x7_c00400{left:239.519999pt;}
.x11_c00400{left:295.973332pt;}
.x12_c00400{left:313.613332pt;}
.xb_c00400{left:338.973332pt;}
.xc_c00400{left:361.893332pt;}
.x20_c00400{left:377.453332pt;}
.x8_c00400{left:379.813332pt;}
.x2_c00400{left:383.919999pt;}
.x14_c00400{left:389.933332pt;}
.x19_c00400{left:392.813332pt;}
.x9_c00400{left:401.053332pt;}
.x3_c00400{left:408.573332pt;}
.x15_c00400{left:409.893332pt;}
.x1a_c00400{left:413.079999pt;}
.x1e_c00400{left:417.786665pt;}
.xa_c00400{left:418.853332pt;}
.x1f_c00400{left:439.839999pt;}
.xd_c00400{left:482.413332pt;}
.xe_c00400{left:502.573332pt;}
.xf_c00400{left:519.359999pt;}
.x1b_c00400{left:537.146665pt;}
.x1c_c00400{left:555.173332pt;}
.x16_c00400{left:568.093332pt;}
.x10_c00400{left:585.439999pt;}
}





/* 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_c00401 {
    display:none;
  }
  .loading-indicator_c00401.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00401 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_c00401 { 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_c00401" -> "#page-container .classname_c00401")
 */
.pf_c00401 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00401 { /* 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_c00401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00401 { /* 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_c00401 { /* 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_c00401 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00401 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00401 {overflow:visible;}
  }
}
.c_c00401 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00401 { /* 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_c00401:after { /* webkit #35443 */
  content: '';
}
.t_c00401:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00401 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 */
}
.__c00401 { /* 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_c00401 { /* info for Javascript */
  display:none;
}
.l_c00401 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00401 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00401 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00401: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_c00401 {
    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_c00401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00401.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_c00401 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00401{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00401;src:url('chunks/assets/font_fa041fd4d01a06fbe039b255.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.284668;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_c00401;src:url('chunks/assets/font_89511881916450cf57cdef22.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.284180;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;}
.m3_c00401{transform:matrix(0.237019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237019,0.000000,0.000000,0.250000,0,0);}
.m4_c00401{transform:matrix(0.240130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240130,0.000000,0.000000,0.250000,0,0);}
.m0_c00401{transform:matrix(0.245779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245779,0.000000,0.000000,0.250000,0,0);}
.m5_c00401{transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);}
.m2_c00401{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{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);}
.v0_c00401{vertical-align:0.000000px;}
.ls3d_c00401{letter-spacing:-2.541000px;}
.ls5f_c00401{letter-spacing:-2.511960px;}
.ls3b_c00401{letter-spacing:-2.374020px;}
.ls21_c00401{letter-spacing:-2.373000px;}
.ls35_c00401{letter-spacing:-2.366760px;}
.ls45_c00401{letter-spacing:-2.330460px;}
.ls46_c00401{letter-spacing:-2.243340px;}
.ls61_c00401{letter-spacing:-2.228820px;}
.ls2d_c00401{letter-spacing:-2.170740px;}
.ls57_c00401{letter-spacing:-1.974720px;}
.ls26_c00401{letter-spacing:-1.880340px;}
.ls3f_c00401{letter-spacing:-1.655280px;}
.ls27_c00401{letter-spacing:-1.582680px;}
.ls2f_c00401{letter-spacing:-1.568160px;}
.ls2b_c00401{letter-spacing:-1.546380px;}
.ls41_c00401{letter-spacing:-1.452000px;}
.ls43_c00401{letter-spacing:-1.255980px;}
.ls52_c00401{letter-spacing:-1.190640px;}
.ls55_c00401{letter-spacing:-1.078140px;}
.ls42_c00401{letter-spacing:-1.023660px;}
.ls4f_c00401{letter-spacing:-1.009140px;}
.ls34_c00401{letter-spacing:-0.892980px;}
.ls3e_c00401{letter-spacing:-0.820380px;}
.ls53_c00401{letter-spacing:-0.813120px;}
.ls28_c00401{letter-spacing:-0.791340px;}
.ls5a_c00401{letter-spacing:-0.769560px;}
.ls5b_c00401{letter-spacing:-0.762300px;}
.ls30_c00401{letter-spacing:-0.667920px;}
.ls2e_c00401{letter-spacing:-0.660660px;}
.ls48_c00401{letter-spacing:-0.653400px;}
.ls56_c00401{letter-spacing:-0.617100px;}
.ls4a_c00401{letter-spacing:-0.602580px;}
.ls38_c00401{letter-spacing:-0.573540px;}
.ls33_c00401{letter-spacing:-0.529980px;}
.ls23_c00401{letter-spacing:-0.488520px;}
.ls60_c00401{letter-spacing:-0.471900px;}
.ls51_c00401{letter-spacing:-0.421080px;}
.ls22_c00401{letter-spacing:-0.417720px;}
.ls29_c00401{letter-spacing:-0.413820px;}
.ls5c_c00401{letter-spacing:-0.399300px;}
.ls50_c00401{letter-spacing:-0.341220px;}
.ls2a_c00401{letter-spacing:-0.319440px;}
.ls54_c00401{letter-spacing:-0.312180px;}
.ls5d_c00401{letter-spacing:-0.304920px;}
.ls47_c00401{letter-spacing:-0.275880px;}
.ls59_c00401{letter-spacing:-0.232320px;}
.ls25_c00401{letter-spacing:-0.225060px;}
.ls2c_c00401{letter-spacing:-0.203280px;}
.ls44_c00401{letter-spacing:-0.174240px;}
.ls58_c00401{letter-spacing:-0.166980px;}
.ls5e_c00401{letter-spacing:-0.159720px;}
.ls36_c00401{letter-spacing:-0.152460px;}
.ls39_c00401{letter-spacing:-0.135660px;}
.ls3c_c00401{letter-spacing:-0.130680px;}
.ls40_c00401{letter-spacing:-0.123420px;}
.ls49_c00401{letter-spacing:-0.116160px;}
.ls4d_c00401{letter-spacing:-0.108900px;}
.ls31_c00401{letter-spacing:-0.101640px;}
.ls3a_c00401{letter-spacing:-0.092820px;}
.ls4e_c00401{letter-spacing:-0.072600px;}
.ls4b_c00401{letter-spacing:-0.043560px;}
.ls4c_c00401{letter-spacing:-0.036300px;}
.ls32_c00401{letter-spacing:0.000000px;}
.lsc_c00401{letter-spacing:0.007260px;}
.ls1e_c00401{letter-spacing:0.036300px;}
.ls19_c00401{letter-spacing:0.050820px;}
.ls1c_c00401{letter-spacing:0.065340px;}
.ls4_c00401{letter-spacing:0.071400px;}
.ls8_c00401{letter-spacing:0.094380px;}
.lsa_c00401{letter-spacing:0.101640px;}
.ls9_c00401{letter-spacing:0.152460px;}
.ls1a_c00401{letter-spacing:0.159720px;}
.ls1f_c00401{letter-spacing:0.174240px;}
.ls20_c00401{letter-spacing:0.188760px;}
.lse_c00401{letter-spacing:0.225060px;}
.ls15_c00401{letter-spacing:0.271320px;}
.lsd_c00401{letter-spacing:0.283140px;}
.ls24_c00401{letter-spacing:0.382320px;}
.ls11_c00401{letter-spacing:0.435540px;}
.ls1b_c00401{letter-spacing:0.435600px;}
.ls1d_c00401{letter-spacing:0.442860px;}
.ls13_c00401{letter-spacing:0.464100px;}
.ls12_c00401{letter-spacing:0.471240px;}
.ls2_c00401{letter-spacing:0.481440px;}
.ls18_c00401{letter-spacing:0.485520px;}
.ls6_c00401{letter-spacing:0.502680px;}
.ls1_c00401{letter-spacing:0.545160px;}
.ls17_c00401{letter-spacing:0.614040px;}
.ls16_c00401{letter-spacing:0.642600px;}
.ls3_c00401{letter-spacing:0.750480px;}
.ls7_c00401{letter-spacing:0.842520px;}
.ls37_c00401{letter-spacing:0.900240px;}
.ls62_c00401{letter-spacing:0.905520px;}
.lsb_c00401{letter-spacing:1.197900px;}
.ls10_c00401{letter-spacing:1.270500px;}
.ls0_c00401{letter-spacing:1.522200px;}
.ls14_c00401{letter-spacing:1.635060px;}
.ls5_c00401{letter-spacing:2.027760px;}
.lsf_c00401{letter-spacing:2.076360px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{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__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00401{word-spacing:0.000000px;}
._6_c00401{width:1.495560px;}
._9_c00401{width:2.497440px;}
._7_c00401{width:4.464900px;}
._8_c00401{width:6.436740px;}
._4_c00401{width:7.858200px;}
._c_c00401{width:9.915840px;}
._5_c00401{width:11.856720px;}
._2_c00401{width:12.998880px;}
._0_c00401{width:14.124600px;}
._b_c00401{width:15.425100px;}
._1_c00401{width:17.076960px;}
._a_c00401{width:18.788880px;}
._3_c00401{width:20.743800px;}
._12_c00401{width:21.925200px;}
._d_c00401{width:23.115840px;}
._f_c00401{width:24.233880px;}
._e_c00401{width:27.007200px;}
._10_c00401{width:29.807280px;}
._11_c00401{width:33.109500px;}
.fc0_c00401{color:transparent;}
.fs5_c00401{font-size:58.800000px;}
.fs0_c00401{font-size:67.800000px;}
.fs1_c00401{font-size:70.800000px;}
.fs2_c00401{font-size:71.400000px;}
.fs3_c00401{font-size:72.600000px;}
.fs4_c00401{font-size:79.800000px;}
.y0_c00401{bottom:0.000000px;}
.y12_c00401{bottom:101.160000px;}
.y11_c00401{bottom:674.999100px;}
.yf_c00401{bottom:705.595050px;}
.y10_c00401{bottom:705.600000px;}
.ye_c00401{bottom:736.577100px;}
.yd_c00401{bottom:766.815000px;}
.yc_c00401{bottom:766.816350px;}
.yb_c00401{bottom:829.815000px;}
.ya_c00401{bottom:860.400000px;}
.y9_c00401{bottom:891.355950px;}
.y8_c00401{bottom:921.977250px;}
.y7_c00401{bottom:952.560000px;}
.y5_c00401{bottom:983.512950px;}
.y6_c00401{bottom:983.520000px;}
.y4_c00401{bottom:1014.497250px;}
.y3_c00401{bottom:1045.080000px;}
.y2_c00401{bottom:1076.040000px;}
.y1_c00401{bottom:1153.455000px;}
.h8_c00401{height:57.708984px;}
.h2_c00401{height:66.541992px;}
.h3_c00401{height:70.040332px;}
.h4_c00401{height:71.252930px;}
.h6_c00401{height:71.269130px;}
.h5_c00401{height:71.281130px;}
.h7_c00401{height:78.319336px;}
.h1_c00401{height:1263.000000px;}
.h0_c00401{height:1263.240000px;}
.w1_c00401{width:892.500000px;}
.w0_c00401{width:892.800000px;}
.x0_c00401{left:0.000000px;}
.x7_c00401{left:109.140000px;}
.x8_c00401{left:110.340000px;}
.x3_c00401{left:111.780000px;}
.x1_c00401{left:113.685000px;}
.x9_c00401{left:161.460000px;}
.x2_c00401{left:166.575000px;}
.xa_c00401{left:183.855000px;}
.xb_c00401{left:256.875000px;}
.xc_c00401{left:283.140000px;}
.x15_c00401{left:424.995000px;}
.x4_c00401{left:450.195000px;}
.x5_c00401{left:472.890000px;}
.x13_c00401{left:475.755000px;}
.xd_c00401{left:478.275000px;}
.x14_c00401{left:501.300000px;}
.xe_c00401{left:504.675000px;}
.xf_c00401{left:565.170000px;}
.x10_c00401{left:609.810000px;}
.x11_c00401{left:628.365000px;}
.x12_c00401{left:697.635000px;}
.x6_c00401{left:752.235000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls3d_c00401{letter-spacing:-2.258667pt;}
.ls5f_c00401{letter-spacing:-2.232853pt;}
.ls3b_c00401{letter-spacing:-2.110240pt;}
.ls21_c00401{letter-spacing:-2.109333pt;}
.ls35_c00401{letter-spacing:-2.103787pt;}
.ls45_c00401{letter-spacing:-2.071520pt;}
.ls46_c00401{letter-spacing:-1.994080pt;}
.ls61_c00401{letter-spacing:-1.981173pt;}
.ls2d_c00401{letter-spacing:-1.929547pt;}
.ls57_c00401{letter-spacing:-1.755307pt;}
.ls26_c00401{letter-spacing:-1.671413pt;}
.ls3f_c00401{letter-spacing:-1.471360pt;}
.ls27_c00401{letter-spacing:-1.406827pt;}
.ls2f_c00401{letter-spacing:-1.393920pt;}
.ls2b_c00401{letter-spacing:-1.374560pt;}
.ls41_c00401{letter-spacing:-1.290667pt;}
.ls43_c00401{letter-spacing:-1.116427pt;}
.ls52_c00401{letter-spacing:-1.058347pt;}
.ls55_c00401{letter-spacing:-0.958347pt;}
.ls42_c00401{letter-spacing:-0.909920pt;}
.ls4f_c00401{letter-spacing:-0.897013pt;}
.ls34_c00401{letter-spacing:-0.793760pt;}
.ls3e_c00401{letter-spacing:-0.729227pt;}
.ls53_c00401{letter-spacing:-0.722773pt;}
.ls28_c00401{letter-spacing:-0.703413pt;}
.ls5a_c00401{letter-spacing:-0.684053pt;}
.ls5b_c00401{letter-spacing:-0.677600pt;}
.ls30_c00401{letter-spacing:-0.593707pt;}
.ls2e_c00401{letter-spacing:-0.587253pt;}
.ls48_c00401{letter-spacing:-0.580800pt;}
.ls56_c00401{letter-spacing:-0.548533pt;}
.ls4a_c00401{letter-spacing:-0.535627pt;}
.ls38_c00401{letter-spacing:-0.509813pt;}
.ls33_c00401{letter-spacing:-0.471093pt;}
.ls23_c00401{letter-spacing:-0.434240pt;}
.ls60_c00401{letter-spacing:-0.419467pt;}
.ls51_c00401{letter-spacing:-0.374293pt;}
.ls22_c00401{letter-spacing:-0.371307pt;}
.ls29_c00401{letter-spacing:-0.367840pt;}
.ls5c_c00401{letter-spacing:-0.354933pt;}
.ls50_c00401{letter-spacing:-0.303307pt;}
.ls2a_c00401{letter-spacing:-0.283947pt;}
.ls54_c00401{letter-spacing:-0.277493pt;}
.ls5d_c00401{letter-spacing:-0.271040pt;}
.ls47_c00401{letter-spacing:-0.245227pt;}
.ls59_c00401{letter-spacing:-0.206507pt;}
.ls25_c00401{letter-spacing:-0.200053pt;}
.ls2c_c00401{letter-spacing:-0.180693pt;}
.ls44_c00401{letter-spacing:-0.154880pt;}
.ls58_c00401{letter-spacing:-0.148427pt;}
.ls5e_c00401{letter-spacing:-0.141973pt;}
.ls36_c00401{letter-spacing:-0.135520pt;}
.ls39_c00401{letter-spacing:-0.120587pt;}
.ls3c_c00401{letter-spacing:-0.116160pt;}
.ls40_c00401{letter-spacing:-0.109707pt;}
.ls49_c00401{letter-spacing:-0.103253pt;}
.ls4d_c00401{letter-spacing:-0.096800pt;}
.ls31_c00401{letter-spacing:-0.090347pt;}
.ls3a_c00401{letter-spacing:-0.082507pt;}
.ls4e_c00401{letter-spacing:-0.064533pt;}
.ls4b_c00401{letter-spacing:-0.038720pt;}
.ls4c_c00401{letter-spacing:-0.032267pt;}
.ls32_c00401{letter-spacing:0.000000pt;}
.lsc_c00401{letter-spacing:0.006453pt;}
.ls1e_c00401{letter-spacing:0.032267pt;}
.ls19_c00401{letter-spacing:0.045173pt;}
.ls1c_c00401{letter-spacing:0.058080pt;}
.ls4_c00401{letter-spacing:0.063467pt;}
.ls8_c00401{letter-spacing:0.083893pt;}
.lsa_c00401{letter-spacing:0.090347pt;}
.ls9_c00401{letter-spacing:0.135520pt;}
.ls1a_c00401{letter-spacing:0.141973pt;}
.ls1f_c00401{letter-spacing:0.154880pt;}
.ls20_c00401{letter-spacing:0.167787pt;}
.lse_c00401{letter-spacing:0.200053pt;}
.ls15_c00401{letter-spacing:0.241173pt;}
.lsd_c00401{letter-spacing:0.251680pt;}
.ls24_c00401{letter-spacing:0.339840pt;}
.ls11_c00401{letter-spacing:0.387147pt;}
.ls1b_c00401{letter-spacing:0.387200pt;}
.ls1d_c00401{letter-spacing:0.393653pt;}
.ls13_c00401{letter-spacing:0.412533pt;}
.ls12_c00401{letter-spacing:0.418880pt;}
.ls2_c00401{letter-spacing:0.427947pt;}
.ls18_c00401{letter-spacing:0.431573pt;}
.ls6_c00401{letter-spacing:0.446827pt;}
.ls1_c00401{letter-spacing:0.484587pt;}
.ls17_c00401{letter-spacing:0.545813pt;}
.ls16_c00401{letter-spacing:0.571200pt;}
.ls3_c00401{letter-spacing:0.667093pt;}
.ls7_c00401{letter-spacing:0.748907pt;}
.ls37_c00401{letter-spacing:0.800213pt;}
.ls62_c00401{letter-spacing:0.804907pt;}
.lsb_c00401{letter-spacing:1.064800pt;}
.ls10_c00401{letter-spacing:1.129333pt;}
.ls0_c00401{letter-spacing:1.353067pt;}
.ls14_c00401{letter-spacing:1.453387pt;}
.ls5_c00401{letter-spacing:1.802453pt;}
.lsf_c00401{letter-spacing:1.845653pt;}
.ws0_c00401{word-spacing:0.000000pt;}
._6_c00401{width:1.329387pt;}
._9_c00401{width:2.219947pt;}
._7_c00401{width:3.968800pt;}
._8_c00401{width:5.721547pt;}
._4_c00401{width:6.985067pt;}
._c_c00401{width:8.814080pt;}
._5_c00401{width:10.539307pt;}
._2_c00401{width:11.554560pt;}
._0_c00401{width:12.555200pt;}
._b_c00401{width:13.711200pt;}
._1_c00401{width:15.179520pt;}
._a_c00401{width:16.701227pt;}
._3_c00401{width:18.438933pt;}
._12_c00401{width:19.489067pt;}
._d_c00401{width:20.547413pt;}
._f_c00401{width:21.541227pt;}
._e_c00401{width:24.006400pt;}
._10_c00401{width:26.495360pt;}
._11_c00401{width:29.430667pt;}
.fs5_c00401{font-size:52.266667pt;}
.fs0_c00401{font-size:60.266667pt;}
.fs1_c00401{font-size:62.933333pt;}
.fs2_c00401{font-size:63.466667pt;}
.fs3_c00401{font-size:64.533333pt;}
.fs4_c00401{font-size:70.933333pt;}
.y0_c00401{bottom:0.000000pt;}
.y12_c00401{bottom:89.920000pt;}
.y11_c00401{bottom:599.999200pt;}
.yf_c00401{bottom:627.195600pt;}
.y10_c00401{bottom:627.200000pt;}
.ye_c00401{bottom:654.735200pt;}
.yd_c00401{bottom:681.613333pt;}
.yc_c00401{bottom:681.614533pt;}
.yb_c00401{bottom:737.613333pt;}
.ya_c00401{bottom:764.800000pt;}
.y9_c00401{bottom:792.316400pt;}
.y8_c00401{bottom:819.535333pt;}
.y7_c00401{bottom:846.720000pt;}
.y5_c00401{bottom:874.233733pt;}
.y6_c00401{bottom:874.240000pt;}
.y4_c00401{bottom:901.775333pt;}
.y3_c00401{bottom:928.960000pt;}
.y2_c00401{bottom:956.480000pt;}
.y1_c00401{bottom:1025.293333pt;}
.h8_c00401{height:51.296875pt;}
.h2_c00401{height:59.148438pt;}
.h3_c00401{height:62.258073pt;}
.h4_c00401{height:63.335938pt;}
.h6_c00401{height:63.350338pt;}
.h5_c00401{height:63.361004pt;}
.h7_c00401{height:69.617188pt;}
.h1_c00401{height:1122.666667pt;}
.h0_c00401{height:1122.880000pt;}
.w1_c00401{width:793.333333pt;}
.w0_c00401{width:793.600000pt;}
.x0_c00401{left:0.000000pt;}
.x7_c00401{left:97.013333pt;}
.x8_c00401{left:98.080000pt;}
.x3_c00401{left:99.360000pt;}
.x1_c00401{left:101.053333pt;}
.x9_c00401{left:143.520000pt;}
.x2_c00401{left:148.066667pt;}
.xa_c00401{left:163.426667pt;}
.xb_c00401{left:228.333333pt;}
.xc_c00401{left:251.680000pt;}
.x15_c00401{left:377.773333pt;}
.x4_c00401{left:400.173333pt;}
.x5_c00401{left:420.346667pt;}
.x13_c00401{left:422.893333pt;}
.xd_c00401{left:425.133333pt;}
.x14_c00401{left:445.600000pt;}
.xe_c00401{left:448.600000pt;}
.xf_c00401{left:502.373333pt;}
.x10_c00401{left:542.053333pt;}
.x11_c00401{left:558.546667pt;}
.x12_c00401{left:620.120000pt;}
.x6_c00401{left:668.653333pt;}
}





/* 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_c00402 {
    display:none;
  }
  .loading-indicator_c00402.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00402 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_c00402 { 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_c00402" -> "#page-container .classname_c00402")
 */
.pf_c00402 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00402 { /* 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_c00402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00402 { /* 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_c00402 { /* 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_c00402 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00402 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00402 {overflow:visible;}
  }
}
.c_c00402 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00402 { /* 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_c00402:after { /* webkit #35443 */
  content: '';
}
.t_c00402:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00402 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 */
}
.__c00402 { /* 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_c00402 { /* info for Javascript */
  display:none;
}
.l_c00402 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00402 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00402 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00402: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_c00402 {
    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_c00402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00402.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_c00402 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00402{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00402;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.311035;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_c00402;src:url('chunks/assets/font_4adc253f221f8b6529fcb749.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;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_c00402;src:url('chunks/assets/font_93830748beed528da4e45cd8.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00402{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m1_c00402{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);}
.v0_c00402{vertical-align:0.000000px;}
.ls5_c00402{letter-spacing:-2.310000px;}
.ls7_c00402{letter-spacing:-0.591480px;}
.ls9_c00402{letter-spacing:-0.098940px;}
.ls6_c00402{letter-spacing:0.000000px;}
.ls8_c00402{letter-spacing:0.292560px;}
.ls3_c00402{letter-spacing:0.769560px;}
.ls4_c00402{letter-spacing:0.833160px;}
.ls1_c00402{letter-spacing:1.132080px;}
.ls0_c00402{letter-spacing:1.666320px;}
.ls2_c00402{letter-spacing:1.761720px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{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__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00402{word-spacing:0.000000px;}
._0_c00402{margin-left:-11.952000px;}
._1_c00402{margin-left:-2.353200px;}
._2_c00402{margin-left:-1.208400px;}
._4_c00402{width:3.116400px;}
._3_c00402{width:4.394760px;}
.fc0_c00402{color:transparent;}
.fs3_c00402{font-size:58.200000px;}
.fs2_c00402{font-size:63.600000px;}
.fs0_c00402{font-size:66.000000px;}
.fs1_c00402{font-size:96.000000px;}
.y0_c00402{bottom:0.000000px;}
.y3_c00402{bottom:102.240000px;}
.y2_c00402{bottom:729.720000px;}
.y1_c00402{bottom:1149.855000px;}
.h4_c00402{height:57.120117px;}
.h2_c00402{height:66.515625px;}
.h3_c00402{height:100.125000px;}
.h1_c00402{height:1263.000000px;}
.h0_c00402{height:1263.240000px;}
.w1_c00402{width:892.500000px;}
.w0_c00402{width:892.800000px;}
.x0_c00402{left:0.000000px;}
.x1_c00402{left:109.365000px;}
.x2_c00402{left:422.475000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls5_c00402{letter-spacing:-2.053333pt;}
.ls7_c00402{letter-spacing:-0.525760pt;}
.ls9_c00402{letter-spacing:-0.087947pt;}
.ls6_c00402{letter-spacing:0.000000pt;}
.ls8_c00402{letter-spacing:0.260053pt;}
.ls3_c00402{letter-spacing:0.684053pt;}
.ls4_c00402{letter-spacing:0.740587pt;}
.ls1_c00402{letter-spacing:1.006293pt;}
.ls0_c00402{letter-spacing:1.481173pt;}
.ls2_c00402{letter-spacing:1.565973pt;}
.ws0_c00402{word-spacing:0.000000pt;}
._0_c00402{margin-left:-10.624000pt;}
._1_c00402{margin-left:-2.091733pt;}
._2_c00402{margin-left:-1.074133pt;}
._4_c00402{width:2.770133pt;}
._3_c00402{width:3.906453pt;}
.fs3_c00402{font-size:51.733333pt;}
.fs2_c00402{font-size:56.533333pt;}
.fs0_c00402{font-size:58.666667pt;}
.fs1_c00402{font-size:85.333333pt;}
.y0_c00402{bottom:0.000000pt;}
.y3_c00402{bottom:90.880000pt;}
.y2_c00402{bottom:648.640000pt;}
.y1_c00402{bottom:1022.093333pt;}
.h4_c00402{height:50.773437pt;}
.h2_c00402{height:59.125000pt;}
.h3_c00402{height:89.000000pt;}
.h1_c00402{height:1122.666667pt;}
.h0_c00402{height:1122.880000pt;}
.w1_c00402{width:793.333333pt;}
.w0_c00402{width:793.600000pt;}
.x0_c00402{left:0.000000pt;}
.x1_c00402{left:97.213333pt;}
.x2_c00402{left:375.533333pt;}
}





/* 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_c00403 {
    display:none;
  }
  .loading-indicator_c00403.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00403 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_c00403 { 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_c00403" -> "#page-container .classname_c00403")
 */
.pf_c00403 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00403 { /* 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_c00403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00403 { /* 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_c00403 { /* 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_c00403 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00403 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00403 {overflow:visible;}
  }
}
.c_c00403 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00403 { /* 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_c00403:after { /* webkit #35443 */
  content: '';
}
.t_c00403:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00403 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 */
}
.__c00403 { /* 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_c00403 { /* info for Javascript */
  display:none;
}
.l_c00403 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00403 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00403 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00403: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_c00403 {
    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_c00403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00403.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_c00403 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00403{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00403;src:url('chunks/assets/font_bcd7d59acaea8a6bacbc44b1.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.284668;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_c00403;src:url('chunks/assets/font_5ceb5377b885630f15d1b6d1.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.284180;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_c00403;src:url('chunks/assets/font_fe9beb50efcea81e9c54eab7.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:0.666000;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_c00403;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;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:ff5_c00403;src:url('chunks/assets/font_c19d2fc78d4a82d90d7782e3.woff2')format("woff");}.ff5_c00403{font-family:ff5_c00403;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;}
.m5_c00403{transform:matrix(0.135319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135319,0.000000,0.000000,0.250000,0,0);}
.m3_c00403{transform:matrix(0.234862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234862,0.000000,0.000000,0.250000,0,0);}
.m9_c00403{transform:matrix(0.242821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242821,0.000000,0.000000,0.250000,0,0);}
.m2_c00403{transform:matrix(0.244908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244908,0.000000,0.000000,0.250000,0,0);}
.m7_c00403{transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);}
.m4_c00403{transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);}
.m0_c00403{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_c00403{transform:matrix(0.250363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250363,0.000000,0.000000,0.250000,0,0);}
.m8_c00403{transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);}
.m6_c00403{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls80_c00403{letter-spacing:-3.402021px;}
.ls7b_c00403{letter-spacing:-2.583000px;}
.ls69_c00403{letter-spacing:-2.499000px;}
.ls64_c00403{letter-spacing:-1.884960px;}
.ls94_c00403{letter-spacing:-1.834980px;}
.ls7f_c00403{letter-spacing:-1.756440px;}
.ls6a_c00403{letter-spacing:-1.599360px;}
.ls75_c00403{letter-spacing:-1.485120px;}
.ls89_c00403{letter-spacing:-1.470840px;}
.ls67_c00403{letter-spacing:-1.449420px;}
.ls73_c00403{letter-spacing:-1.442280px;}
.ls6e_c00403{letter-spacing:-1.356600px;}
.ls68_c00403{letter-spacing:-1.320900px;}
.ls6d_c00403{letter-spacing:-1.120980px;}
.ls70_c00403{letter-spacing:-1.085280px;}
.ls76_c00403{letter-spacing:-0.885360px;}
.ls8d_c00403{letter-spacing:-0.849660px;}
.ls7e_c00403{letter-spacing:-0.799680px;}
.ls6f_c00403{letter-spacing:-0.778260px;}
.ls78_c00403{letter-spacing:-0.763980px;}
.ls72_c00403{letter-spacing:-0.749700px;}
.ls85_c00403{letter-spacing:-0.606900px;}
.ls71_c00403{letter-spacing:-0.578340px;}
.ls88_c00403{letter-spacing:-0.506940px;}
.ls7c_c00403{letter-spacing:-0.492660px;}
.ls6b_c00403{letter-spacing:-0.449820px;}
.ls91_c00403{letter-spacing:-0.442680px;}
.ls6c_c00403{letter-spacing:-0.428400px;}
.ls83_c00403{letter-spacing:-0.399840px;}
.ls82_c00403{letter-spacing:-0.328440px;}
.ls81_c00403{letter-spacing:-0.285600px;}
.ls84_c00403{letter-spacing:-0.271320px;}
.ls74_c00403{letter-spacing:-0.249900px;}
.ls93_c00403{letter-spacing:-0.228480px;}
.ls7d_c00403{letter-spacing:-0.221340px;}
.ls65_c00403{letter-spacing:-0.199920px;}
.ls90_c00403{letter-spacing:-0.169920px;}
.ls95_c00403{letter-spacing:-0.098940px;}
.ls77_c00403{letter-spacing:-0.057120px;}
.ls79_c00403{letter-spacing:-0.042840px;}
.ls8c_c00403{letter-spacing:-0.035700px;}
.ls87_c00403{letter-spacing:-0.028560px;}
.ls8b_c00403{letter-spacing:-0.014280px;}
.ls66_c00403{letter-spacing:0.000000px;}
.ls44_c00403{letter-spacing:0.014280px;}
.ls4f_c00403{letter-spacing:0.035700px;}
.ls7a_c00403{letter-spacing:0.057120px;}
.ls12_c00403{letter-spacing:0.064260px;}
.ls15_c00403{letter-spacing:0.078540px;}
.ls47_c00403{letter-spacing:0.092820px;}
.ls2e_c00403{letter-spacing:0.121380px;}
.ls33_c00403{letter-spacing:0.128520px;}
.ls59_c00403{letter-spacing:0.135660px;}
.ls45_c00403{letter-spacing:0.142800px;}
.ls58_c00403{letter-spacing:0.149940px;}
.ls37_c00403{letter-spacing:0.164220px;}
.ls36_c00403{letter-spacing:0.171360px;}
.ls27_c00403{letter-spacing:0.178500px;}
.ls48_c00403{letter-spacing:0.192780px;}
.ls53_c00403{letter-spacing:0.199920px;}
.ls29_c00403{letter-spacing:0.207060px;}
.ls1d_c00403{letter-spacing:0.214200px;}
.ls5_c00403{letter-spacing:0.228480px;}
.ls31_c00403{letter-spacing:0.235620px;}
.ls86_c00403{letter-spacing:0.257040px;}
.ls60_c00403{letter-spacing:0.264180px;}
.ls23_c00403{letter-spacing:0.271320px;}
.ls92_c00403{letter-spacing:0.278460px;}
.ls5f_c00403{letter-spacing:0.307020px;}
.ls8_c00403{letter-spacing:0.321300px;}
.lsd_c00403{letter-spacing:0.328440px;}
.ls1f_c00403{letter-spacing:0.335580px;}
.ls55_c00403{letter-spacing:0.342720px;}
.ls7_c00403{letter-spacing:0.349860px;}
.lsf_c00403{letter-spacing:0.357000px;}
.ls2d_c00403{letter-spacing:0.371280px;}
.ls5c_c00403{letter-spacing:0.385560px;}
.ls5a_c00403{letter-spacing:0.399840px;}
.ls4e_c00403{letter-spacing:0.406980px;}
.ls2f_c00403{letter-spacing:0.414120px;}
.ls1c_c00403{letter-spacing:0.421260px;}
.ls19_c00403{letter-spacing:0.428400px;}
.lsa_c00403{letter-spacing:0.435540px;}
.ls3a_c00403{letter-spacing:0.442680px;}
.ls30_c00403{letter-spacing:0.449820px;}
.ls21_c00403{letter-spacing:0.464100px;}
.ls49_c00403{letter-spacing:0.471240px;}
.ls3d_c00403{letter-spacing:0.478380px;}
.ls2_c00403{letter-spacing:0.485520px;}
.ls2c_c00403{letter-spacing:0.492660px;}
.ls4a_c00403{letter-spacing:0.499800px;}
.ls51_c00403{letter-spacing:0.514080px;}
.lsb_c00403{letter-spacing:0.528360px;}
.ls38_c00403{letter-spacing:0.542640px;}
.ls3f_c00403{letter-spacing:0.556920px;}
.ls6_c00403{letter-spacing:0.571200px;}
.ls9_c00403{letter-spacing:0.585480px;}
.ls13_c00403{letter-spacing:0.592620px;}
.ls39_c00403{letter-spacing:0.599760px;}
.ls1a_c00403{letter-spacing:0.614040px;}
.ls18_c00403{letter-spacing:0.628320px;}
.ls22_c00403{letter-spacing:0.642600px;}
.ls43_c00403{letter-spacing:0.649740px;}
.ls5b_c00403{letter-spacing:0.664020px;}
.ls2b_c00403{letter-spacing:0.678300px;}
.ls20_c00403{letter-spacing:0.685440px;}
.ls28_c00403{letter-spacing:0.692580px;}
.ls8e_c00403{letter-spacing:0.706860px;}
.ls1_c00403{letter-spacing:0.721140px;}
.ls2a_c00403{letter-spacing:0.749700px;}
.ls1e_c00403{letter-spacing:0.756840px;}
.ls40_c00403{letter-spacing:0.763980px;}
.ls4d_c00403{letter-spacing:0.778260px;}
.ls5d_c00403{letter-spacing:0.785400px;}
.ls57_c00403{letter-spacing:0.792540px;}
.lse_c00403{letter-spacing:0.806820px;}
.ls3_c00403{letter-spacing:0.821100px;}
.ls35_c00403{letter-spacing:0.828240px;}
.ls1b_c00403{letter-spacing:0.835380px;}
.ls3b_c00403{letter-spacing:0.856800px;}
.lsc_c00403{letter-spacing:0.863940px;}
.ls56_c00403{letter-spacing:0.871080px;}
.ls4_c00403{letter-spacing:0.921060px;}
.ls32_c00403{letter-spacing:0.942480px;}
.ls10_c00403{letter-spacing:0.956760px;}
.ls11_c00403{letter-spacing:0.971040px;}
.ls26_c00403{letter-spacing:0.978180px;}
.ls16_c00403{letter-spacing:1.006740px;}
.ls17_c00403{letter-spacing:1.042440px;}
.ls42_c00403{letter-spacing:1.063860px;}
.ls52_c00403{letter-spacing:1.071000px;}
.ls34_c00403{letter-spacing:1.092420px;}
.ls8a_c00403{letter-spacing:1.099560px;}
.ls25_c00403{letter-spacing:1.106700px;}
.ls5e_c00403{letter-spacing:1.170960px;}
.ls4b_c00403{letter-spacing:1.192380px;}
.ls54_c00403{letter-spacing:1.199520px;}
.ls3e_c00403{letter-spacing:1.249500px;}
.ls61_c00403{letter-spacing:1.444320px;}
.ls46_c00403{letter-spacing:1.449420px;}
.ls4c_c00403{letter-spacing:1.692180px;}
.ls41_c00403{letter-spacing:1.884960px;}
.ls0_c00403{letter-spacing:2.013480px;}
.ls3c_c00403{letter-spacing:2.084880px;}
.ls14_c00403{letter-spacing:2.249100px;}
.ls24_c00403{letter-spacing:2.306220px;}
.ls50_c00403{letter-spacing:2.413320px;}
.ls8f_c00403{letter-spacing:2.850000px;}
.ls63_c00403{letter-spacing:3.298680px;}
.ls62_c00403{letter-spacing:3.570000px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{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__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00403{word-spacing:0.000000px;}
._15_c00403{margin-left:-2.991660px;}
._18_c00403{margin-left:-1.906380px;}
._7_c00403{width:1.999200px;}
._9_c00403{width:3.170160px;}
._8_c00403{width:4.569600px;}
._d_c00403{width:5.787420px;}
._a_c00403{width:7.047180px;}
._b_c00403{width:8.453760px;}
._c_c00403{width:9.910320px;}
._14_c00403{width:12.125160px;}
._13_c00403{width:13.258980px;}
._e_c00403{width:14.765520px;}
._10_c00403{width:16.636200px;}
._17_c00403{width:17.813100px;}
._11_c00403{width:19.392240px;}
._16_c00403{width:20.797380px;}
._f_c00403{width:21.848400px;}
._12_c00403{width:23.038020px;}
._0_c00403{width:24.947160px;}
._6_c00403{width:26.827740px;}
._1_c00403{width:28.274400px;}
._5_c00403{width:29.428320px;}
._1a_c00403{width:30.769020px;}
._4_c00403{width:32.101440px;}
._3_c00403{width:35.285880px;}
._2_c00403{width:37.013760px;}
._19_c00403{width:1390.350866px;}
.fc0_c00403{color:transparent;}
.fs5_c00403{font-size:14.400000px;}
.fs6_c00403{font-size:34.800600px;}
.fs8_c00403{font-size:57.000000px;}
.fsa_c00403{font-size:58.200000px;}
.fs4_c00403{font-size:58.800000px;}
.fs0_c00403{font-size:61.200000px;}
.fs9_c00403{font-size:70.800000px;}
.fs1_c00403{font-size:71.400000px;}
.fs2_c00403{font-size:73.800000px;}
.fs7_c00403{font-size:74.400000px;}
.fs3_c00403{font-size:97.200600px;}
.y0_c00403{bottom:0.000000px;}
.y23_c00403{bottom:107.640000px;}
.y22_c00403{bottom:185.411100px;}
.y21_c00403{bottom:216.720000px;}
.y1f_c00403{bottom:247.690350px;}
.y20_c00403{bottom:247.695000px;}
.y1e_c00403{bottom:309.255000px;}
.y1d_c00403{bottom:309.262950px;}
.y1c_c00403{bottom:339.840000px;}
.y1b_c00403{bottom:371.175000px;}
.y1a_c00403{bottom:371.191200px;}
.y19_c00403{bottom:402.143100px;}
.y18_c00403{bottom:433.111050px;}
.y17_c00403{bottom:464.062950px;}
.y16_c00403{bottom:494.640000px;}
.y15_c00403{bottom:521.295000px;}
.y14_c00403{bottom:525.618450px;}
.y13_c00403{bottom:556.195500px;}
.y12_c00403{bottom:618.135000px;}
.y11_c00403{bottom:618.142950px;}
.y10_c00403{bottom:648.725250px;}
.ye_c00403{bottom:679.678950px;}
.yf_c00403{bottom:679.695000px;}
.yd_c00403{bottom:710.273850px;}
.yc_c00403{bottom:741.225750px;}
.yb_c00403{bottom:802.808250px;}
.ya_c00403{bottom:834.141450px;}
.y9_c00403{bottom:865.093350px;}
.y8_c00403{bottom:896.063100px;}
.y7_c00403{bottom:927.019350px;}
.y6_c00403{bottom:957.971250px;}
.y4_c00403{bottom:989.654250px;}
.y5_c00403{bottom:989.655000px;}
.y3_c00403{bottom:1021.695000px;}
.y2_c00403{bottom:1083.240000px;}
.y1_c00403{bottom:1159.920000px;}
.h8_c00403{height:9.590400px;}
.hc_c00403{height:57.120117px;}
.hb_c00403{height:59.449219px;}
.h2_c00403{height:60.064453px;}
.h3_c00403{height:70.075195px;}
.h4_c00403{height:70.078195px;}
.h5_c00403{height:72.368829px;}
.h6_c00403{height:72.394629px;}
.ha_c00403{height:72.983203px;}
.h9_c00403{height:73.019531px;}
.h7_c00403{height:95.397073px;}
.h1_c00403{height:1263.000000px;}
.h0_c00403{height:1263.240000px;}
.w1_c00403{width:892.500000px;}
.w0_c00403{width:892.800000px;}
.x0_c00403{left:0.000000px;}
.x13_c00403{left:101.340000px;}
.xc_c00403{left:102.443700px;}
.x8_c00403{left:103.640400px;}
.x5_c00403{left:104.748000px;}
.x1_c00403{left:106.485000px;}
.x11_c00403{left:117.360000px;}
.x2_c00403{left:132.795000px;}
.x10_c00403{left:155.501400px;}
.x4_c00403{left:158.655000px;}
.x9_c00403{left:161.209200px;}
.x12_c00403{left:174.030000px;}
.x3_c00403{left:245.415000px;}
.x15_c00403{left:266.145000px;}
.x16_c00403{left:283.920000px;}
.xa_c00403{left:328.560000px;}
.xb_c00403{left:349.095000px;}
.x6_c00403{left:399.930000px;}
.x17_c00403{left:418.155000px;}
.x7_c00403{left:429.675000px;}
.xd_c00403{left:465.945000px;}
.xe_c00403{left:488.505000px;}
.xf_c00403{left:507.075000px;}
.x14_c00403{left:743.505000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls80_c00403{letter-spacing:-3.024019pt;}
.ls7b_c00403{letter-spacing:-2.296000pt;}
.ls69_c00403{letter-spacing:-2.221333pt;}
.ls64_c00403{letter-spacing:-1.675520pt;}
.ls94_c00403{letter-spacing:-1.631093pt;}
.ls7f_c00403{letter-spacing:-1.561280pt;}
.ls6a_c00403{letter-spacing:-1.421653pt;}
.ls75_c00403{letter-spacing:-1.320107pt;}
.ls89_c00403{letter-spacing:-1.307413pt;}
.ls67_c00403{letter-spacing:-1.288373pt;}
.ls73_c00403{letter-spacing:-1.282027pt;}
.ls6e_c00403{letter-spacing:-1.205867pt;}
.ls68_c00403{letter-spacing:-1.174133pt;}
.ls6d_c00403{letter-spacing:-0.996427pt;}
.ls70_c00403{letter-spacing:-0.964693pt;}
.ls76_c00403{letter-spacing:-0.786987pt;}
.ls8d_c00403{letter-spacing:-0.755253pt;}
.ls7e_c00403{letter-spacing:-0.710827pt;}
.ls6f_c00403{letter-spacing:-0.691787pt;}
.ls78_c00403{letter-spacing:-0.679093pt;}
.ls72_c00403{letter-spacing:-0.666400pt;}
.ls85_c00403{letter-spacing:-0.539467pt;}
.ls71_c00403{letter-spacing:-0.514080pt;}
.ls88_c00403{letter-spacing:-0.450613pt;}
.ls7c_c00403{letter-spacing:-0.437920pt;}
.ls6b_c00403{letter-spacing:-0.399840pt;}
.ls91_c00403{letter-spacing:-0.393493pt;}
.ls6c_c00403{letter-spacing:-0.380800pt;}
.ls83_c00403{letter-spacing:-0.355413pt;}
.ls82_c00403{letter-spacing:-0.291947pt;}
.ls81_c00403{letter-spacing:-0.253867pt;}
.ls84_c00403{letter-spacing:-0.241173pt;}
.ls74_c00403{letter-spacing:-0.222133pt;}
.ls93_c00403{letter-spacing:-0.203093pt;}
.ls7d_c00403{letter-spacing:-0.196747pt;}
.ls65_c00403{letter-spacing:-0.177707pt;}
.ls90_c00403{letter-spacing:-0.151040pt;}
.ls95_c00403{letter-spacing:-0.087947pt;}
.ls77_c00403{letter-spacing:-0.050773pt;}
.ls79_c00403{letter-spacing:-0.038080pt;}
.ls8c_c00403{letter-spacing:-0.031733pt;}
.ls87_c00403{letter-spacing:-0.025387pt;}
.ls8b_c00403{letter-spacing:-0.012693pt;}
.ls66_c00403{letter-spacing:0.000000pt;}
.ls44_c00403{letter-spacing:0.012693pt;}
.ls4f_c00403{letter-spacing:0.031733pt;}
.ls7a_c00403{letter-spacing:0.050773pt;}
.ls12_c00403{letter-spacing:0.057120pt;}
.ls15_c00403{letter-spacing:0.069813pt;}
.ls47_c00403{letter-spacing:0.082507pt;}
.ls2e_c00403{letter-spacing:0.107893pt;}
.ls33_c00403{letter-spacing:0.114240pt;}
.ls59_c00403{letter-spacing:0.120587pt;}
.ls45_c00403{letter-spacing:0.126933pt;}
.ls58_c00403{letter-spacing:0.133280pt;}
.ls37_c00403{letter-spacing:0.145973pt;}
.ls36_c00403{letter-spacing:0.152320pt;}
.ls27_c00403{letter-spacing:0.158667pt;}
.ls48_c00403{letter-spacing:0.171360pt;}
.ls53_c00403{letter-spacing:0.177707pt;}
.ls29_c00403{letter-spacing:0.184053pt;}
.ls1d_c00403{letter-spacing:0.190400pt;}
.ls5_c00403{letter-spacing:0.203093pt;}
.ls31_c00403{letter-spacing:0.209440pt;}
.ls86_c00403{letter-spacing:0.228480pt;}
.ls60_c00403{letter-spacing:0.234827pt;}
.ls23_c00403{letter-spacing:0.241173pt;}
.ls92_c00403{letter-spacing:0.247520pt;}
.ls5f_c00403{letter-spacing:0.272907pt;}
.ls8_c00403{letter-spacing:0.285600pt;}
.lsd_c00403{letter-spacing:0.291947pt;}
.ls1f_c00403{letter-spacing:0.298293pt;}
.ls55_c00403{letter-spacing:0.304640pt;}
.ls7_c00403{letter-spacing:0.310987pt;}
.lsf_c00403{letter-spacing:0.317333pt;}
.ls2d_c00403{letter-spacing:0.330027pt;}
.ls5c_c00403{letter-spacing:0.342720pt;}
.ls5a_c00403{letter-spacing:0.355413pt;}
.ls4e_c00403{letter-spacing:0.361760pt;}
.ls2f_c00403{letter-spacing:0.368107pt;}
.ls1c_c00403{letter-spacing:0.374453pt;}
.ls19_c00403{letter-spacing:0.380800pt;}
.lsa_c00403{letter-spacing:0.387147pt;}
.ls3a_c00403{letter-spacing:0.393493pt;}
.ls30_c00403{letter-spacing:0.399840pt;}
.ls21_c00403{letter-spacing:0.412533pt;}
.ls49_c00403{letter-spacing:0.418880pt;}
.ls3d_c00403{letter-spacing:0.425227pt;}
.ls2_c00403{letter-spacing:0.431573pt;}
.ls2c_c00403{letter-spacing:0.437920pt;}
.ls4a_c00403{letter-spacing:0.444267pt;}
.ls51_c00403{letter-spacing:0.456960pt;}
.lsb_c00403{letter-spacing:0.469653pt;}
.ls38_c00403{letter-spacing:0.482347pt;}
.ls3f_c00403{letter-spacing:0.495040pt;}
.ls6_c00403{letter-spacing:0.507733pt;}
.ls9_c00403{letter-spacing:0.520427pt;}
.ls13_c00403{letter-spacing:0.526773pt;}
.ls39_c00403{letter-spacing:0.533120pt;}
.ls1a_c00403{letter-spacing:0.545813pt;}
.ls18_c00403{letter-spacing:0.558507pt;}
.ls22_c00403{letter-spacing:0.571200pt;}
.ls43_c00403{letter-spacing:0.577547pt;}
.ls5b_c00403{letter-spacing:0.590240pt;}
.ls2b_c00403{letter-spacing:0.602933pt;}
.ls20_c00403{letter-spacing:0.609280pt;}
.ls28_c00403{letter-spacing:0.615627pt;}
.ls8e_c00403{letter-spacing:0.628320pt;}
.ls1_c00403{letter-spacing:0.641013pt;}
.ls2a_c00403{letter-spacing:0.666400pt;}
.ls1e_c00403{letter-spacing:0.672747pt;}
.ls40_c00403{letter-spacing:0.679093pt;}
.ls4d_c00403{letter-spacing:0.691787pt;}
.ls5d_c00403{letter-spacing:0.698133pt;}
.ls57_c00403{letter-spacing:0.704480pt;}
.lse_c00403{letter-spacing:0.717173pt;}
.ls3_c00403{letter-spacing:0.729867pt;}
.ls35_c00403{letter-spacing:0.736213pt;}
.ls1b_c00403{letter-spacing:0.742560pt;}
.ls3b_c00403{letter-spacing:0.761600pt;}
.lsc_c00403{letter-spacing:0.767947pt;}
.ls56_c00403{letter-spacing:0.774293pt;}
.ls4_c00403{letter-spacing:0.818720pt;}
.ls32_c00403{letter-spacing:0.837760pt;}
.ls10_c00403{letter-spacing:0.850453pt;}
.ls11_c00403{letter-spacing:0.863147pt;}
.ls26_c00403{letter-spacing:0.869493pt;}
.ls16_c00403{letter-spacing:0.894880pt;}
.ls17_c00403{letter-spacing:0.926613pt;}
.ls42_c00403{letter-spacing:0.945653pt;}
.ls52_c00403{letter-spacing:0.952000pt;}
.ls34_c00403{letter-spacing:0.971040pt;}
.ls8a_c00403{letter-spacing:0.977387pt;}
.ls25_c00403{letter-spacing:0.983733pt;}
.ls5e_c00403{letter-spacing:1.040853pt;}
.ls4b_c00403{letter-spacing:1.059893pt;}
.ls54_c00403{letter-spacing:1.066240pt;}
.ls3e_c00403{letter-spacing:1.110667pt;}
.ls61_c00403{letter-spacing:1.283840pt;}
.ls46_c00403{letter-spacing:1.288373pt;}
.ls4c_c00403{letter-spacing:1.504160pt;}
.ls41_c00403{letter-spacing:1.675520pt;}
.ls0_c00403{letter-spacing:1.789760pt;}
.ls3c_c00403{letter-spacing:1.853227pt;}
.ls14_c00403{letter-spacing:1.999200pt;}
.ls24_c00403{letter-spacing:2.049973pt;}
.ls50_c00403{letter-spacing:2.145173pt;}
.ls8f_c00403{letter-spacing:2.533333pt;}
.ls63_c00403{letter-spacing:2.932160pt;}
.ls62_c00403{letter-spacing:3.173333pt;}
.ws0_c00403{word-spacing:0.000000pt;}
._15_c00403{margin-left:-2.659253pt;}
._18_c00403{margin-left:-1.694560pt;}
._7_c00403{width:1.777067pt;}
._9_c00403{width:2.817920pt;}
._8_c00403{width:4.061867pt;}
._d_c00403{width:5.144373pt;}
._a_c00403{width:6.264160pt;}
._b_c00403{width:7.514453pt;}
._c_c00403{width:8.809173pt;}
._14_c00403{width:10.777920pt;}
._13_c00403{width:11.785760pt;}
._e_c00403{width:13.124907pt;}
._10_c00403{width:14.787733pt;}
._17_c00403{width:15.833867pt;}
._11_c00403{width:17.237547pt;}
._16_c00403{width:18.486560pt;}
._f_c00403{width:19.420800pt;}
._12_c00403{width:20.478240pt;}
._0_c00403{width:22.175253pt;}
._6_c00403{width:23.846880pt;}
._1_c00403{width:25.132800pt;}
._5_c00403{width:26.158507pt;}
._1a_c00403{width:27.350240pt;}
._4_c00403{width:28.534613pt;}
._3_c00403{width:31.365227pt;}
._2_c00403{width:32.901120pt;}
._19_c00403{width:1235.867437pt;}
.fs5_c00403{font-size:12.800000pt;}
.fs6_c00403{font-size:30.933867pt;}
.fs8_c00403{font-size:50.666667pt;}
.fsa_c00403{font-size:51.733333pt;}
.fs4_c00403{font-size:52.266667pt;}
.fs0_c00403{font-size:54.400000pt;}
.fs9_c00403{font-size:62.933333pt;}
.fs1_c00403{font-size:63.466667pt;}
.fs2_c00403{font-size:65.600000pt;}
.fs7_c00403{font-size:66.133333pt;}
.fs3_c00403{font-size:86.400533pt;}
.y0_c00403{bottom:0.000000pt;}
.y23_c00403{bottom:95.680000pt;}
.y22_c00403{bottom:164.809867pt;}
.y21_c00403{bottom:192.640000pt;}
.y1f_c00403{bottom:220.169200pt;}
.y20_c00403{bottom:220.173333pt;}
.y1e_c00403{bottom:274.893333pt;}
.y1d_c00403{bottom:274.900400pt;}
.y1c_c00403{bottom:302.080000pt;}
.y1b_c00403{bottom:329.933333pt;}
.y1a_c00403{bottom:329.947733pt;}
.y19_c00403{bottom:357.460533pt;}
.y18_c00403{bottom:384.987600pt;}
.y17_c00403{bottom:412.500400pt;}
.y16_c00403{bottom:439.680000pt;}
.y15_c00403{bottom:463.373333pt;}
.y14_c00403{bottom:467.216400pt;}
.y13_c00403{bottom:494.396000pt;}
.y12_c00403{bottom:549.453333pt;}
.y11_c00403{bottom:549.460400pt;}
.y10_c00403{bottom:576.644667pt;}
.ye_c00403{bottom:604.159067pt;}
.yf_c00403{bottom:604.173333pt;}
.yd_c00403{bottom:631.354533pt;}
.yc_c00403{bottom:658.867333pt;}
.yb_c00403{bottom:713.607333pt;}
.ya_c00403{bottom:741.459067pt;}
.y9_c00403{bottom:768.971867pt;}
.y8_c00403{bottom:796.500533pt;}
.y7_c00403{bottom:824.017200pt;}
.y6_c00403{bottom:851.530000pt;}
.y4_c00403{bottom:879.692667pt;}
.y5_c00403{bottom:879.693333pt;}
.y3_c00403{bottom:908.173333pt;}
.y2_c00403{bottom:962.880000pt;}
.y1_c00403{bottom:1031.040000pt;}
.h8_c00403{height:8.524800pt;}
.hc_c00403{height:50.773437pt;}
.hb_c00403{height:52.843750pt;}
.h2_c00403{height:53.390625pt;}
.h3_c00403{height:62.289062pt;}
.h4_c00403{height:62.291729pt;}
.h5_c00403{height:64.327848pt;}
.h6_c00403{height:64.350781pt;}
.ha_c00403{height:64.873958pt;}
.h9_c00403{height:64.906250pt;}
.h7_c00403{height:84.797398pt;}
.h1_c00403{height:1122.666667pt;}
.h0_c00403{height:1122.880000pt;}
.w1_c00403{width:793.333333pt;}
.w0_c00403{width:793.600000pt;}
.x0_c00403{left:0.000000pt;}
.x13_c00403{left:90.080000pt;}
.xc_c00403{left:91.061067pt;}
.x8_c00403{left:92.124800pt;}
.x5_c00403{left:93.109333pt;}
.x1_c00403{left:94.653333pt;}
.x11_c00403{left:104.320000pt;}
.x2_c00403{left:118.040000pt;}
.x10_c00403{left:138.223467pt;}
.x4_c00403{left:141.026667pt;}
.x9_c00403{left:143.297067pt;}
.x12_c00403{left:154.693333pt;}
.x3_c00403{left:218.146667pt;}
.x15_c00403{left:236.573333pt;}
.x16_c00403{left:252.373333pt;}
.xa_c00403{left:292.053333pt;}
.xb_c00403{left:310.306667pt;}
.x6_c00403{left:355.493333pt;}
.x17_c00403{left:371.693333pt;}
.x7_c00403{left:381.933333pt;}
.xd_c00403{left:414.173333pt;}
.xe_c00403{left:434.226667pt;}
.xf_c00403{left:450.733333pt;}
.x14_c00403{left:660.893333pt;}
}





/* 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_c00404 {
    display:none;
  }
  .loading-indicator_c00404.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00404 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_c00404 { 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_c00404" -> "#page-container .classname_c00404")
 */
.pf_c00404 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00404 { /* 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_c00404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00404 { /* 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_c00404 { /* 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_c00404 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00404 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00404 {overflow:visible;}
  }
}
.c_c00404 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00404 { /* 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_c00404:after { /* webkit #35443 */
  content: '';
}
.t_c00404:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00404 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 */
}
.__c00404 { /* 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_c00404 { /* info for Javascript */
  display:none;
}
.l_c00404 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00404 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00404 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00404: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_c00404 {
    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_c00404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00404.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_c00404 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00404{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00404;src:url('chunks/assets/font_a8a0849fbb32e5e37de06273.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.284668;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_c00404;src:url('chunks/assets/font_4868dae162f10ce73868adf6.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:0.666000;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_c00404;src:url('chunks/assets/font_167edd521ab87e2f43dd1d3c.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.284180;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;}
.ma_c00404{transform:matrix(0.141447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141447,0.000000,0.000000,0.250000,0,0);}
.mc_c00404{transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);}
.m2_c00404{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.m1_c00404{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);}
.mb_c00404{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m9_c00404{transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);}
.m6_c00404{transform:matrix(0.474425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474425,0.000000,0.000000,0.250000,0,0);}
.m7_c00404{transform:matrix(0.530231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530231,0.000000,0.000000,0.250000,0,0);}
.m4_c00404{transform:matrix(0.629694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629694,0.000000,0.000000,0.250000,0,0);}
.m5_c00404{transform:matrix(0.648831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648831,0.000000,0.000000,0.250000,0,0);}
.m3_c00404{transform:matrix(0.654390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654390,0.000000,0.000000,0.250000,0,0);}
.m8_c00404{transform:matrix(0.667857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667857,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.ls73_c00404{letter-spacing:-2.541000px;}
.ls6b_c00404{letter-spacing:-2.331000px;}
.ls70_c00404{letter-spacing:-2.265120px;}
.ls90_c00404{letter-spacing:-2.046240px;}
.ls8f_c00404{letter-spacing:-1.886160px;}
.ls89_c00404{letter-spacing:-1.649520px;}
.ls75_c00404{letter-spacing:-1.568160px;}
.ls86_c00404{letter-spacing:-1.531200px;}
.ls7c_c00404{letter-spacing:-1.426800px;}
.ls87_c00404{letter-spacing:-1.343280px;}
.ls8c_c00404{letter-spacing:-1.218000px;}
.ls8b_c00404{letter-spacing:-1.176240px;}
.ls7b_c00404{letter-spacing:-0.904800px;}
.ls85_c00404{letter-spacing:-0.897840px;}
.ls76_c00404{letter-spacing:-0.892980px;}
.ls6f_c00404{letter-spacing:-0.842160px;}
.ls93_c00404{letter-spacing:-0.814320px;}
.ls6d_c00404{letter-spacing:-0.791340px;}
.ls7f_c00404{letter-spacing:-0.668160px;}
.ls88_c00404{letter-spacing:-0.619440px;}
.ls6e_c00404{letter-spacing:-0.602580px;}
.ls77_c00404{letter-spacing:-0.445440px;}
.ls81_c00404{letter-spacing:-0.438480px;}
.ls8a_c00404{letter-spacing:-0.382800px;}
.ls74_c00404{letter-spacing:-0.341220px;}
.ls71_c00404{letter-spacing:-0.290400px;}
.ls84_c00404{letter-spacing:-0.215760px;}
.ls78_c00404{letter-spacing:-0.208800px;}
.ls7e_c00404{letter-spacing:-0.180960px;}
.ls6c_c00404{letter-spacing:-0.159720px;}
.ls7d_c00404{letter-spacing:-0.090480px;}
.ls8d_c00404{letter-spacing:-0.062640px;}
.ls92_c00404{letter-spacing:-0.027840px;}
.ls79_c00404{letter-spacing:0.000000px;}
.lsc_c00404{letter-spacing:0.006960px;}
.ls4c_c00404{letter-spacing:0.048720px;}
.ls41_c00404{letter-spacing:0.090480px;}
.ls2e_c00404{letter-spacing:0.097440px;}
.ls32_c00404{letter-spacing:0.187920px;}
.ls40_c00404{letter-spacing:0.222720px;}
.ls80_c00404{letter-spacing:0.229680px;}
.ls34_c00404{letter-spacing:0.271440px;}
.ls1e_c00404{letter-spacing:0.299280px;}
.ls1f_c00404{letter-spacing:0.334080px;}
.ls94_c00404{letter-spacing:0.345600px;}
.ls5f_c00404{letter-spacing:0.361920px;}
.ls49_c00404{letter-spacing:0.368880px;}
.ls2a_c00404{letter-spacing:0.389760px;}
.ls4f_c00404{letter-spacing:0.410640px;}
.ls58_c00404{letter-spacing:0.452400px;}
.ls68_c00404{letter-spacing:0.459360px;}
.lsb_c00404{letter-spacing:0.535920px;}
.ls3c_c00404{letter-spacing:0.542880px;}
.ls5a_c00404{letter-spacing:0.577680px;}
.ls29_c00404{letter-spacing:0.584640px;}
.ls25_c00404{letter-spacing:0.605520px;}
.ls1a_c00404{letter-spacing:0.626400px;}
.ls44_c00404{letter-spacing:0.633360px;}
.ls28_c00404{letter-spacing:0.640320px;}
.ls59_c00404{letter-spacing:0.661200px;}
.ls33_c00404{letter-spacing:0.675120px;}
.ls3e_c00404{letter-spacing:0.696000px;}
.ls82_c00404{letter-spacing:0.702960px;}
.ls6_c00404{letter-spacing:0.709920px;}
.ls9_c00404{letter-spacing:0.716880px;}
.ls3d_c00404{letter-spacing:0.737760px;}
.ls36_c00404{letter-spacing:0.744720px;}
.ls5e_c00404{letter-spacing:0.751680px;}
.ls2d_c00404{letter-spacing:0.765600px;}
.ls1c_c00404{letter-spacing:0.772560px;}
.ls46_c00404{letter-spacing:0.786480px;}
.ls48_c00404{letter-spacing:0.793440px;}
.ls30_c00404{letter-spacing:0.800400px;}
.ls2c_c00404{letter-spacing:0.807360px;}
.ls50_c00404{letter-spacing:0.821280px;}
.ls35_c00404{letter-spacing:0.828240px;}
.ls8e_c00404{letter-spacing:0.835200px;}
.ls4b_c00404{letter-spacing:0.842160px;}
.ls8_c00404{letter-spacing:0.856080px;}
.ls53_c00404{letter-spacing:0.863040px;}
.ls3f_c00404{letter-spacing:0.870000px;}
.ls4e_c00404{letter-spacing:0.876960px;}
.ls63_c00404{letter-spacing:0.883920px;}
.ls12_c00404{letter-spacing:0.890880px;}
.ls66_c00404{letter-spacing:0.897840px;}
.lsa_c00404{letter-spacing:0.904800px;}
.ls64_c00404{letter-spacing:0.925680px;}
.ls18_c00404{letter-spacing:0.939600px;}
.ls72_c00404{letter-spacing:0.943800px;}
.ls38_c00404{letter-spacing:0.953520px;}
.ls23_c00404{letter-spacing:0.960480px;}
.ls60_c00404{letter-spacing:0.967440px;}
.lsf_c00404{letter-spacing:0.988320px;}
.ls5d_c00404{letter-spacing:0.995280px;}
.ls1_c00404{letter-spacing:1.002240px;}
.ls69_c00404{letter-spacing:1.016160px;}
.ls45_c00404{letter-spacing:1.023120px;}
.ls4d_c00404{letter-spacing:1.030080px;}
.ls55_c00404{letter-spacing:1.037040px;}
.ls7a_c00404{letter-spacing:1.050960px;}
.ls0_c00404{letter-spacing:1.057920px;}
.ls15_c00404{letter-spacing:1.064880px;}
.ls65_c00404{letter-spacing:1.071840px;}
.ls24_c00404{letter-spacing:1.078800px;}
.ls61_c00404{letter-spacing:1.085760px;}
.ls5b_c00404{letter-spacing:1.106640px;}
.ls4a_c00404{letter-spacing:1.134480px;}
.ls3b_c00404{letter-spacing:1.141440px;}
.ls62_c00404{letter-spacing:1.148400px;}
.ls2_c00404{letter-spacing:1.162320px;}
.ls31_c00404{letter-spacing:1.169280px;}
.ls83_c00404{letter-spacing:1.200000px;}
.ls19_c00404{letter-spacing:1.204080px;}
.ls43_c00404{letter-spacing:1.211040px;}
.lse_c00404{letter-spacing:1.231920px;}
.ls52_c00404{letter-spacing:1.238880px;}
.ls10_c00404{letter-spacing:1.252800px;}
.ls11_c00404{letter-spacing:1.273680px;}
.ls13_c00404{letter-spacing:1.280640px;}
.ls5_c00404{letter-spacing:1.336320px;}
.ls16_c00404{letter-spacing:1.343280px;}
.ls39_c00404{letter-spacing:1.350240px;}
.ls21_c00404{letter-spacing:1.385040px;}
.ls1d_c00404{letter-spacing:1.398960px;}
.ls51_c00404{letter-spacing:1.412880px;}
.ls17_c00404{letter-spacing:1.440720px;}
.ls37_c00404{letter-spacing:1.572960px;}
.ls27_c00404{letter-spacing:1.593840px;}
.ls22_c00404{letter-spacing:1.600800px;}
.ls5c_c00404{letter-spacing:1.607760px;}
.lsd_c00404{letter-spacing:1.614720px;}
.ls26_c00404{letter-spacing:1.635600px;}
.ls3_c00404{letter-spacing:1.642560px;}
.ls20_c00404{letter-spacing:1.649520px;}
.ls2b_c00404{letter-spacing:1.663440px;}
.ls4_c00404{letter-spacing:1.691280px;}
.ls2f_c00404{letter-spacing:1.719120px;}
.ls6a_c00404{letter-spacing:1.740000px;}
.ls1b_c00404{letter-spacing:1.753920px;}
.ls3a_c00404{letter-spacing:1.788720px;}
.ls57_c00404{letter-spacing:1.934880px;}
.ls47_c00404{letter-spacing:1.983600px;}
.ls7_c00404{letter-spacing:2.094960px;}
.ls67_c00404{letter-spacing:2.164560px;}
.ls42_c00404{letter-spacing:2.317680px;}
.ls54_c00404{letter-spacing:2.366400px;}
.ls56_c00404{letter-spacing:2.839680px;}
.ls14_c00404{letter-spacing:2.978880px;}
.ls91_c00404{letter-spacing:3.480000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{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__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:0.000000px;}
._9_c00404{margin-left:-4.412640px;}
._17_c00404{margin-left:-3.299040px;}
._e_c00404{margin-left:-2.289840px;}
._19_c00404{margin-left:-1.252800px;}
._a_c00404{width:1.663440px;}
._b_c00404{width:3.744480px;}
._8_c00404{width:5.387040px;}
._d_c00404{width:6.751200px;}
._c_c00404{width:8.498160px;}
._7_c00404{width:9.730080px;}
._5_c00404{width:11.038560px;}
._6_c00404{width:13.056960px;}
._14_c00404{width:14.142720px;}
._1b_c00404{width:15.172800px;}
._16_c00404{width:16.362960px;}
._18_c00404{width:17.476560px;}
._15_c00404{width:18.486480px;}
._13_c00404{width:20.065680px;}
._1a_c00404{width:21.241920px;}
._f_c00404{width:22.320720px;}
._11_c00404{width:24.360000px;}
._10_c00404{width:28.480320px;}
._12_c00404{width:32.628480px;}
._0_c00404{width:33.729960px;}
._1_c00404{width:35.189220px;}
._3_c00404{width:36.307260px;}
._4_c00404{width:37.519680px;}
._2_c00404{width:40.597920px;}
.fc0_c00404{color:transparent;}
.fs3_c00404{font-size:10.080000px;}
.fs4_c00404{font-size:24.000000px;}
.fs6_c00404{font-size:54.720000px;}
.fs7_c00404{font-size:57.600000px;}
.fs0_c00404{font-size:66.600000px;}
.fs2_c00404{font-size:69.600000px;}
.fs5_c00404{font-size:70.800000px;}
.fs1_c00404{font-size:72.600000px;}
.y0_c00404{bottom:0.000000px;}
.y1d_c00404{bottom:103.320006px;}
.y1c_c00404{bottom:213.135006px;}
.y1b_c00404{bottom:244.455006px;}
.y1a_c00404{bottom:306.018006px;}
.y19_c00404{bottom:336.624606px;}
.y18_c00404{bottom:366.848406px;}
.y17_c00404{bottom:397.455006px;}
.y16_c00404{bottom:397.459206px;}
.y15_c00404{bottom:428.779206px;}
.y14_c00404{bottom:490.323006px;}
.y13_c00404{bottom:521.277606px;}
.y12_c00404{bottom:551.884206px;}
.y11_c00404{bottom:613.462806px;}
.y10_c00404{bottom:644.403006px;}
.yf_c00404{bottom:675.391206px;}
.ye_c00404{bottom:706.328406px;}
.yd_c00404{bottom:736.935006px;}
.yc_c00404{bottom:766.455006px;}
.yb_c00404{bottom:768.975006px;}
.ya_c00404{bottom:798.841806px;}
.y9_c00404{bottom:829.448406px;}
.y8_c00404{bottom:860.059206px;}
.y7_c00404{bottom:890.996406px;}
.y6_c00404{bottom:951.844206px;}
.y5_c00404{bottom:982.798806px;}
.y4_c00404{bottom:1013.770806px;}
.y3_c00404{bottom:1044.360006px;}
.y2_c00404{bottom:1075.320006px;}
.y1_c00404{bottom:1150.935006px;}
.h5_c00404{height:6.713280px;}
.h6_c00404{height:23.542969px;}
.h7_c00404{height:23.554688px;}
.h9_c00404{height:36.443520px;}
.ha_c00404{height:56.531250px;}
.h2_c00404{height:65.364258px;}
.h4_c00404{height:68.308594px;}
.h8_c00404{height:69.439758px;}
.h3_c00404{height:71.252930px;}
.h1_c00404{height:1263.000000px;}
.h0_c00404{height:1263.240006px;}
.w1_c00404{width:892.500000px;}
.w0_c00404{width:892.799998px;}
.x0_c00404{left:0.000000px;}
.xe_c00404{left:109.792198px;}
.x1_c00404{left:110.804999px;}
.xf_c00404{left:162.974998px;}
.x4_c00404{left:164.408398px;}
.xb_c00404{left:168.360598px;}
.x10_c00404{left:187.529999px;}
.x5_c00404{left:327.494999px;}
.x11_c00404{left:336.344999px;}
.x12_c00404{left:354.989999px;}
.x13_c00404{left:422.834999px;}
.x6_c00404{left:436.139998px;}
.x2_c00404{left:510.674999px;}
.x7_c00404{left:551.024999px;}
.x8_c00404{left:574.769998px;}
.x3_c00404{left:576.179999px;}
.xc_c00404{left:595.439999px;}
.xd_c00404{left:647.834998px;}
.x9_c00404{left:663.119999px;}
.xa_c00404{left:745.814999px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls73_c00404{letter-spacing:-2.258667pt;}
.ls6b_c00404{letter-spacing:-2.072000pt;}
.ls70_c00404{letter-spacing:-2.013440pt;}
.ls90_c00404{letter-spacing:-1.818880pt;}
.ls8f_c00404{letter-spacing:-1.676587pt;}
.ls89_c00404{letter-spacing:-1.466240pt;}
.ls75_c00404{letter-spacing:-1.393920pt;}
.ls86_c00404{letter-spacing:-1.361067pt;}
.ls7c_c00404{letter-spacing:-1.268267pt;}
.ls87_c00404{letter-spacing:-1.194027pt;}
.ls8c_c00404{letter-spacing:-1.082667pt;}
.ls8b_c00404{letter-spacing:-1.045547pt;}
.ls7b_c00404{letter-spacing:-0.804267pt;}
.ls85_c00404{letter-spacing:-0.798080pt;}
.ls76_c00404{letter-spacing:-0.793760pt;}
.ls6f_c00404{letter-spacing:-0.748587pt;}
.ls93_c00404{letter-spacing:-0.723840pt;}
.ls6d_c00404{letter-spacing:-0.703413pt;}
.ls7f_c00404{letter-spacing:-0.593920pt;}
.ls88_c00404{letter-spacing:-0.550613pt;}
.ls6e_c00404{letter-spacing:-0.535627pt;}
.ls77_c00404{letter-spacing:-0.395947pt;}
.ls81_c00404{letter-spacing:-0.389760pt;}
.ls8a_c00404{letter-spacing:-0.340267pt;}
.ls74_c00404{letter-spacing:-0.303307pt;}
.ls71_c00404{letter-spacing:-0.258133pt;}
.ls84_c00404{letter-spacing:-0.191787pt;}
.ls78_c00404{letter-spacing:-0.185600pt;}
.ls7e_c00404{letter-spacing:-0.160853pt;}
.ls6c_c00404{letter-spacing:-0.141973pt;}
.ls7d_c00404{letter-spacing:-0.080427pt;}
.ls8d_c00404{letter-spacing:-0.055680pt;}
.ls92_c00404{letter-spacing:-0.024747pt;}
.ls79_c00404{letter-spacing:0.000000pt;}
.lsc_c00404{letter-spacing:0.006187pt;}
.ls4c_c00404{letter-spacing:0.043307pt;}
.ls41_c00404{letter-spacing:0.080427pt;}
.ls2e_c00404{letter-spacing:0.086613pt;}
.ls32_c00404{letter-spacing:0.167040pt;}
.ls40_c00404{letter-spacing:0.197973pt;}
.ls80_c00404{letter-spacing:0.204160pt;}
.ls34_c00404{letter-spacing:0.241280pt;}
.ls1e_c00404{letter-spacing:0.266027pt;}
.ls1f_c00404{letter-spacing:0.296960pt;}
.ls94_c00404{letter-spacing:0.307200pt;}
.ls5f_c00404{letter-spacing:0.321707pt;}
.ls49_c00404{letter-spacing:0.327893pt;}
.ls2a_c00404{letter-spacing:0.346453pt;}
.ls4f_c00404{letter-spacing:0.365013pt;}
.ls58_c00404{letter-spacing:0.402133pt;}
.ls68_c00404{letter-spacing:0.408320pt;}
.lsb_c00404{letter-spacing:0.476373pt;}
.ls3c_c00404{letter-spacing:0.482560pt;}
.ls5a_c00404{letter-spacing:0.513493pt;}
.ls29_c00404{letter-spacing:0.519680pt;}
.ls25_c00404{letter-spacing:0.538240pt;}
.ls1a_c00404{letter-spacing:0.556800pt;}
.ls44_c00404{letter-spacing:0.562987pt;}
.ls28_c00404{letter-spacing:0.569173pt;}
.ls59_c00404{letter-spacing:0.587733pt;}
.ls33_c00404{letter-spacing:0.600107pt;}
.ls3e_c00404{letter-spacing:0.618667pt;}
.ls82_c00404{letter-spacing:0.624853pt;}
.ls6_c00404{letter-spacing:0.631040pt;}
.ls9_c00404{letter-spacing:0.637227pt;}
.ls3d_c00404{letter-spacing:0.655787pt;}
.ls36_c00404{letter-spacing:0.661973pt;}
.ls5e_c00404{letter-spacing:0.668160pt;}
.ls2d_c00404{letter-spacing:0.680533pt;}
.ls1c_c00404{letter-spacing:0.686720pt;}
.ls46_c00404{letter-spacing:0.699093pt;}
.ls48_c00404{letter-spacing:0.705280pt;}
.ls30_c00404{letter-spacing:0.711467pt;}
.ls2c_c00404{letter-spacing:0.717653pt;}
.ls50_c00404{letter-spacing:0.730027pt;}
.ls35_c00404{letter-spacing:0.736213pt;}
.ls8e_c00404{letter-spacing:0.742400pt;}
.ls4b_c00404{letter-spacing:0.748587pt;}
.ls8_c00404{letter-spacing:0.760960pt;}
.ls53_c00404{letter-spacing:0.767147pt;}
.ls3f_c00404{letter-spacing:0.773333pt;}
.ls4e_c00404{letter-spacing:0.779520pt;}
.ls63_c00404{letter-spacing:0.785707pt;}
.ls12_c00404{letter-spacing:0.791893pt;}
.ls66_c00404{letter-spacing:0.798080pt;}
.lsa_c00404{letter-spacing:0.804267pt;}
.ls64_c00404{letter-spacing:0.822827pt;}
.ls18_c00404{letter-spacing:0.835200pt;}
.ls72_c00404{letter-spacing:0.838933pt;}
.ls38_c00404{letter-spacing:0.847573pt;}
.ls23_c00404{letter-spacing:0.853760pt;}
.ls60_c00404{letter-spacing:0.859947pt;}
.lsf_c00404{letter-spacing:0.878507pt;}
.ls5d_c00404{letter-spacing:0.884693pt;}
.ls1_c00404{letter-spacing:0.890880pt;}
.ls69_c00404{letter-spacing:0.903253pt;}
.ls45_c00404{letter-spacing:0.909440pt;}
.ls4d_c00404{letter-spacing:0.915627pt;}
.ls55_c00404{letter-spacing:0.921813pt;}
.ls7a_c00404{letter-spacing:0.934187pt;}
.ls0_c00404{letter-spacing:0.940373pt;}
.ls15_c00404{letter-spacing:0.946560pt;}
.ls65_c00404{letter-spacing:0.952747pt;}
.ls24_c00404{letter-spacing:0.958933pt;}
.ls61_c00404{letter-spacing:0.965120pt;}
.ls5b_c00404{letter-spacing:0.983680pt;}
.ls4a_c00404{letter-spacing:1.008427pt;}
.ls3b_c00404{letter-spacing:1.014613pt;}
.ls62_c00404{letter-spacing:1.020800pt;}
.ls2_c00404{letter-spacing:1.033173pt;}
.ls31_c00404{letter-spacing:1.039360pt;}
.ls83_c00404{letter-spacing:1.066667pt;}
.ls19_c00404{letter-spacing:1.070293pt;}
.ls43_c00404{letter-spacing:1.076480pt;}
.lse_c00404{letter-spacing:1.095040pt;}
.ls52_c00404{letter-spacing:1.101227pt;}
.ls10_c00404{letter-spacing:1.113600pt;}
.ls11_c00404{letter-spacing:1.132160pt;}
.ls13_c00404{letter-spacing:1.138347pt;}
.ls5_c00404{letter-spacing:1.187840pt;}
.ls16_c00404{letter-spacing:1.194027pt;}
.ls39_c00404{letter-spacing:1.200213pt;}
.ls21_c00404{letter-spacing:1.231147pt;}
.ls1d_c00404{letter-spacing:1.243520pt;}
.ls51_c00404{letter-spacing:1.255893pt;}
.ls17_c00404{letter-spacing:1.280640pt;}
.ls37_c00404{letter-spacing:1.398187pt;}
.ls27_c00404{letter-spacing:1.416747pt;}
.ls22_c00404{letter-spacing:1.422933pt;}
.ls5c_c00404{letter-spacing:1.429120pt;}
.lsd_c00404{letter-spacing:1.435307pt;}
.ls26_c00404{letter-spacing:1.453867pt;}
.ls3_c00404{letter-spacing:1.460053pt;}
.ls20_c00404{letter-spacing:1.466240pt;}
.ls2b_c00404{letter-spacing:1.478613pt;}
.ls4_c00404{letter-spacing:1.503360pt;}
.ls2f_c00404{letter-spacing:1.528107pt;}
.ls6a_c00404{letter-spacing:1.546667pt;}
.ls1b_c00404{letter-spacing:1.559040pt;}
.ls3a_c00404{letter-spacing:1.589973pt;}
.ls57_c00404{letter-spacing:1.719893pt;}
.ls47_c00404{letter-spacing:1.763200pt;}
.ls7_c00404{letter-spacing:1.862187pt;}
.ls67_c00404{letter-spacing:1.924053pt;}
.ls42_c00404{letter-spacing:2.060160pt;}
.ls54_c00404{letter-spacing:2.103467pt;}
.ls56_c00404{letter-spacing:2.524160pt;}
.ls14_c00404{letter-spacing:2.647893pt;}
.ls91_c00404{letter-spacing:3.093333pt;}
.ws0_c00404{word-spacing:0.000000pt;}
._9_c00404{margin-left:-3.922347pt;}
._17_c00404{margin-left:-2.932480pt;}
._e_c00404{margin-left:-2.035413pt;}
._19_c00404{margin-left:-1.113600pt;}
._a_c00404{width:1.478613pt;}
._b_c00404{width:3.328427pt;}
._8_c00404{width:4.788480pt;}
._d_c00404{width:6.001067pt;}
._c_c00404{width:7.553920pt;}
._7_c00404{width:8.648960pt;}
._5_c00404{width:9.812053pt;}
._6_c00404{width:11.606187pt;}
._14_c00404{width:12.571307pt;}
._1b_c00404{width:13.486933pt;}
._16_c00404{width:14.544853pt;}
._18_c00404{width:15.534720pt;}
._15_c00404{width:16.432427pt;}
._13_c00404{width:17.836160pt;}
._1a_c00404{width:18.881707pt;}
._f_c00404{width:19.840640pt;}
._11_c00404{width:21.653333pt;}
._10_c00404{width:25.315840pt;}
._12_c00404{width:29.003093pt;}
._0_c00404{width:29.982187pt;}
._1_c00404{width:31.279307pt;}
._3_c00404{width:32.273120pt;}
._4_c00404{width:33.350827pt;}
._2_c00404{width:36.087040pt;}
.fs3_c00404{font-size:8.960000pt;}
.fs4_c00404{font-size:21.333333pt;}
.fs6_c00404{font-size:48.640000pt;}
.fs7_c00404{font-size:51.200000pt;}
.fs0_c00404{font-size:59.200000pt;}
.fs2_c00404{font-size:61.866667pt;}
.fs5_c00404{font-size:62.933333pt;}
.fs1_c00404{font-size:64.533333pt;}
.y0_c00404{bottom:0.000000pt;}
.y1d_c00404{bottom:91.840005pt;}
.y1c_c00404{bottom:189.453339pt;}
.y1b_c00404{bottom:217.293339pt;}
.y1a_c00404{bottom:272.016005pt;}
.y19_c00404{bottom:299.221872pt;}
.y18_c00404{bottom:326.087472pt;}
.y17_c00404{bottom:353.293339pt;}
.y16_c00404{bottom:353.297072pt;}
.y15_c00404{bottom:381.137072pt;}
.y14_c00404{bottom:435.842672pt;}
.y13_c00404{bottom:463.357872pt;}
.y12_c00404{bottom:490.563739pt;}
.y11_c00404{bottom:545.300272pt;}
.y10_c00404{bottom:572.802672pt;}
.yf_c00404{bottom:600.347739pt;}
.ye_c00404{bottom:627.847472pt;}
.yd_c00404{bottom:655.053339pt;}
.yc_c00404{bottom:681.293339pt;}
.yb_c00404{bottom:683.533339pt;}
.ya_c00404{bottom:710.081605pt;}
.y9_c00404{bottom:737.287472pt;}
.y8_c00404{bottom:764.497072pt;}
.y7_c00404{bottom:791.996805pt;}
.y6_c00404{bottom:846.083739pt;}
.y5_c00404{bottom:873.598939pt;}
.y4_c00404{bottom:901.129605pt;}
.y3_c00404{bottom:928.320005pt;}
.y2_c00404{bottom:955.840005pt;}
.y1_c00404{bottom:1023.053339pt;}
.h5_c00404{height:5.967360pt;}
.h6_c00404{height:20.927083pt;}
.h7_c00404{height:20.937500pt;}
.h9_c00404{height:32.394240pt;}
.ha_c00404{height:50.250000pt;}
.h2_c00404{height:58.101562pt;}
.h4_c00404{height:60.718750pt;}
.h8_c00404{height:61.724229pt;}
.h3_c00404{height:63.335938pt;}
.h1_c00404{height:1122.666667pt;}
.h0_c00404{height:1122.880005pt;}
.w1_c00404{width:793.333333pt;}
.w0_c00404{width:793.599999pt;}
.x0_c00404{left:0.000000pt;}
.xe_c00404{left:97.593065pt;}
.x1_c00404{left:98.493332pt;}
.xf_c00404{left:144.866665pt;}
.x4_c00404{left:146.140799pt;}
.xb_c00404{left:149.653865pt;}
.x10_c00404{left:166.693332pt;}
.x5_c00404{left:291.106665pt;}
.x11_c00404{left:298.973332pt;}
.x12_c00404{left:315.546665pt;}
.x13_c00404{left:375.853332pt;}
.x6_c00404{left:387.679999pt;}
.x2_c00404{left:453.933332pt;}
.x7_c00404{left:489.799999pt;}
.x8_c00404{left:510.906665pt;}
.x3_c00404{left:512.159999pt;}
.xc_c00404{left:529.279999pt;}
.xd_c00404{left:575.853332pt;}
.x9_c00404{left:589.439999pt;}
.xa_c00404{left:662.946665pt;}
}





/* 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_c00405 {
    display:none;
  }
  .loading-indicator_c00405.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00405 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_c00405 { 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_c00405" -> "#page-container .classname_c00405")
 */
.pf_c00405 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00405 { /* 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_c00405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00405 { /* 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_c00405 { /* 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_c00405 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00405 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00405 {overflow:visible;}
  }
}
.c_c00405 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00405 { /* 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_c00405:after { /* webkit #35443 */
  content: '';
}
.t_c00405:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00405 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 */
}
.__c00405 { /* 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_c00405 { /* info for Javascript */
  display:none;
}
.l_c00405 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00405 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00405 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00405: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_c00405 {
    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_c00405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00405.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_c00405 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00405{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00405;src:url('chunks/assets/font_a0f22e51fc0161ecd5b008df.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.284668;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_c00405;src:url('chunks/assets/font_d0b3e855b8f8900840f0307f.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.284180;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_c00405;src:url('chunks/assets/font_01e7df2df57cc9f3a7a0ae92.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;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;}
.me_c00405{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.m0_c00405{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m6_c00405{transform:matrix(0.229742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229742,0.000000,0.000000,0.250000,0,0);}
.md_c00405{transform:matrix(0.230798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230798,0.000000,0.000000,0.250000,0,0);}
.mb_c00405{transform:matrix(0.231324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231324,0.000000,0.000000,0.250000,0,0);}
.ma_c00405{transform:matrix(0.237411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237411,0.000000,0.000000,0.250000,0,0);}
.m8_c00405{transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{transform:matrix(0.238860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238860,0.000000,0.000000,0.250000,0,0);}
.m5_c00405{transform:matrix(0.240428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240428,0.000000,0.000000,0.250000,0,0);}
.m9_c00405{transform:matrix(0.244324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244324,0.000000,0.000000,0.250000,0,0);}
.m3_c00405{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m4_c00405{transform:matrix(0.248221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248221,0.000000,0.000000,0.250000,0,0);}
.mc_c00405{transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);}
.m2_c00405{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);}
.m7_c00405{transform:matrix(0.254601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254601,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls37_c00405{letter-spacing:-2.562000px;}
.ls38_c00405{letter-spacing:-2.541000px;}
.ls5d_c00405{letter-spacing:-2.511960px;}
.ls94_c00405{letter-spacing:-2.478000px;}
.lsa0_c00405{letter-spacing:-2.436000px;}
.ls3c_c00405{letter-spacing:-2.410320px;}
.ls49_c00405{letter-spacing:-2.337720px;}
.ls75_c00405{letter-spacing:-2.207040px;}
.ls8c_c00405{letter-spacing:-2.170740px;}
.ls5f_c00405{letter-spacing:-2.119920px;}
.ls4f_c00405{letter-spacing:-2.025540px;}
.ls9c_c00405{letter-spacing:-1.996500px;}
.ls3f_c00405{letter-spacing:-1.880340px;}
.ls8a_c00405{letter-spacing:-1.633500px;}
.ls4e_c00405{letter-spacing:-1.611720px;}
.ls45_c00405{letter-spacing:-1.568160px;}
.ls68_c00405{letter-spacing:-1.546380px;}
.ls4b_c00405{letter-spacing:-1.481040px;}
.ls7d_c00405{letter-spacing:-1.459260px;}
.ls57_c00405{letter-spacing:-1.452000px;}
.ls86_c00405{letter-spacing:-1.364880px;}
.ls9d_c00405{letter-spacing:-1.335840px;}
.ls89_c00405{letter-spacing:-1.270500px;}
.ls6d_c00405{letter-spacing:-1.234200px;}
.ls58_c00405{letter-spacing:-1.132560px;}
.ls44_c00405{letter-spacing:-1.052700px;}
.ls63_c00405{letter-spacing:-0.980100px;}
.ls41_c00405{letter-spacing:-0.892980px;}
.ls6c_c00405{letter-spacing:-0.856680px;}
.ls88_c00405{letter-spacing:-0.827640px;}
.ls3d_c00405{letter-spacing:-0.798600px;}
.ls52_c00405{letter-spacing:-0.791340px;}
.ls46_c00405{letter-spacing:-0.762300px;}
.ls5e_c00405{letter-spacing:-0.675180px;}
.ls67_c00405{letter-spacing:-0.653400px;}
.ls69_c00405{letter-spacing:-0.646140px;}
.ls9f_c00405{letter-spacing:-0.637200px;}
.ls54_c00405{letter-spacing:-0.624360px;}
.ls9e_c00405{letter-spacing:-0.602580px;}
.ls6f_c00405{letter-spacing:-0.595320px;}
.ls97_c00405{letter-spacing:-0.588060px;}
.ls81_c00405{letter-spacing:-0.580800px;}
.ls8f_c00405{letter-spacing:-0.559020px;}
.ls61_c00405{letter-spacing:-0.529980px;}
.ls99_c00405{letter-spacing:-0.515460px;}
.ls6a_c00405{letter-spacing:-0.500940px;}
.ls48_c00405{letter-spacing:-0.471900px;}
.ls8e_c00405{letter-spacing:-0.464640px;}
.ls59_c00405{letter-spacing:-0.457380px;}
.ls92_c00405{letter-spacing:-0.450120px;}
.ls73_c00405{letter-spacing:-0.442860px;}
.ls43_c00405{letter-spacing:-0.435600px;}
.ls3a_c00405{letter-spacing:-0.428340px;}
.ls66_c00405{letter-spacing:-0.421080px;}
.ls7e_c00405{letter-spacing:-0.399300px;}
.ls4d_c00405{letter-spacing:-0.384780px;}
.ls65_c00405{letter-spacing:-0.377520px;}
.ls4c_c00405{letter-spacing:-0.370260px;}
.ls7c_c00405{letter-spacing:-0.363000px;}
.ls62_c00405{letter-spacing:-0.348480px;}
.ls56_c00405{letter-spacing:-0.341220px;}
.ls70_c00405{letter-spacing:-0.333960px;}
.ls8d_c00405{letter-spacing:-0.319440px;}
.ls9a_c00405{letter-spacing:-0.304920px;}
.ls7f_c00405{letter-spacing:-0.297660px;}
.ls3b_c00405{letter-spacing:-0.275880px;}
.ls87_c00405{letter-spacing:-0.261360px;}
.ls53_c00405{letter-spacing:-0.254100px;}
.ls7b_c00405{letter-spacing:-0.239580px;}
.ls7a_c00405{letter-spacing:-0.232320px;}
.ls3e_c00405{letter-spacing:-0.225060px;}
.ls93_c00405{letter-spacing:-0.217800px;}
.ls90_c00405{letter-spacing:-0.210540px;}
.ls71_c00405{letter-spacing:-0.181500px;}
.ls82_c00405{letter-spacing:-0.174240px;}
.ls91_c00405{letter-spacing:-0.159720px;}
.ls72_c00405{letter-spacing:-0.152460px;}
.ls42_c00405{letter-spacing:-0.145200px;}
.ls4a_c00405{letter-spacing:-0.130680px;}
.ls55_c00405{letter-spacing:-0.123420px;}
.ls47_c00405{letter-spacing:-0.116160px;}
.ls5b_c00405{letter-spacing:-0.108900px;}
.ls40_c00405{letter-spacing:-0.101640px;}
.ls78_c00405{letter-spacing:-0.094380px;}
.ls60_c00405{letter-spacing:-0.072600px;}
.ls80_c00405{letter-spacing:-0.065340px;}
.ls98_c00405{letter-spacing:-0.058080px;}
.ls6e_c00405{letter-spacing:-0.043560px;}
.ls5c_c00405{letter-spacing:-0.029040px;}
.ls6b_c00405{letter-spacing:-0.021780px;}
.ls9b_c00405{letter-spacing:-0.021240px;}
.ls51_c00405{letter-spacing:-0.014520px;}
.ls39_c00405{letter-spacing:0.000000px;}
.lsa_c00405{letter-spacing:0.014520px;}
.ls33_c00405{letter-spacing:0.029040px;}
.ls3_c00405{letter-spacing:0.036300px;}
.ls83_c00405{letter-spacing:0.043560px;}
.ls19_c00405{letter-spacing:0.050820px;}
.ls26_c00405{letter-spacing:0.058080px;}
.ls64_c00405{letter-spacing:0.063720px;}
.ls0_c00405{letter-spacing:0.065340px;}
.lsc_c00405{letter-spacing:0.072600px;}
.ls1f_c00405{letter-spacing:0.079860px;}
.lsf_c00405{letter-spacing:0.087120px;}
.ls12_c00405{letter-spacing:0.094380px;}
.ls50_c00405{letter-spacing:0.101640px;}
.ls95_c00405{letter-spacing:0.113280px;}
.ls1_c00405{letter-spacing:0.116160px;}
.ls21_c00405{letter-spacing:0.123420px;}
.lsd_c00405{letter-spacing:0.130680px;}
.lsb_c00405{letter-spacing:0.137940px;}
.ls8b_c00405{letter-spacing:0.159720px;}
.ls2a_c00405{letter-spacing:0.166980px;}
.ls27_c00405{letter-spacing:0.174240px;}
.ls20_c00405{letter-spacing:0.181500px;}
.ls32_c00405{letter-spacing:0.188760px;}
.ls1c_c00405{letter-spacing:0.196020px;}
.ls29_c00405{letter-spacing:0.203280px;}
.ls31_c00405{letter-spacing:0.210540px;}
.ls79_c00405{letter-spacing:0.217800px;}
.ls7_c00405{letter-spacing:0.232320px;}
.ls1e_c00405{letter-spacing:0.254100px;}
.ls4_c00405{letter-spacing:0.275880px;}
.ls77_c00405{letter-spacing:0.290280px;}
.ls96_c00405{letter-spacing:0.304440px;}
.ls18_c00405{letter-spacing:0.311520px;}
.ls5a_c00405{letter-spacing:0.312180px;}
.ls2b_c00405{letter-spacing:0.319440px;}
.ls28_c00405{letter-spacing:0.341220px;}
.ls13_c00405{letter-spacing:0.389400px;}
.ls30_c00405{letter-spacing:0.410640px;}
.ls1d_c00405{letter-spacing:0.435600px;}
.ls35_c00405{letter-spacing:0.453120px;}
.ls36_c00405{letter-spacing:0.464640px;}
.ls76_c00405{letter-spacing:0.529980px;}
.ls5_c00405{letter-spacing:0.544500px;}
.ls1b_c00405{letter-spacing:0.551760px;}
.ls17_c00405{letter-spacing:0.594720px;}
.ls8_c00405{letter-spacing:0.602580px;}
.ls2e_c00405{letter-spacing:0.615960px;}
.ls25_c00405{letter-spacing:0.658440px;}
.lsa1_c00405{letter-spacing:0.675180px;}
.ls10_c00405{letter-spacing:0.722160px;}
.ls23_c00405{letter-spacing:0.771720px;}
.ls1a_c00405{letter-spacing:0.792960px;}
.ls9_c00405{letter-spacing:0.800040px;}
.ls74_c00405{letter-spacing:0.807120px;}
.ls16_c00405{letter-spacing:0.814200px;}
.ls15_c00405{letter-spacing:0.821280px;}
.ls2d_c00405{letter-spacing:0.900240px;}
.lsa2_c00405{letter-spacing:0.905520px;}
.ls85_c00405{letter-spacing:0.907500px;}
.ls2c_c00405{letter-spacing:0.927480px;}
.ls11_c00405{letter-spacing:0.934560px;}
.lse_c00405{letter-spacing:0.972840px;}
.ls6_c00405{letter-spacing:1.026600px;}
.ls22_c00405{letter-spacing:1.062000px;}
.ls24_c00405{letter-spacing:1.076160px;}
.ls2_c00405{letter-spacing:1.217760px;}
.ls2f_c00405{letter-spacing:1.359360px;}
.ls14_c00405{letter-spacing:1.618980px;}
.ls34_c00405{letter-spacing:1.989480px;}
.ls84_c00405{letter-spacing:3.630000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{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__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00405{word-spacing:0.000000px;}
._11_c00405{margin-left:-16.932360px;}
._19_c00405{margin-left:-13.016040px;}
._18_c00405{margin-left:-10.907220px;}
._d_c00405{width:1.633560px;}
._6_c00405{width:3.385680px;}
._5_c00405{width:4.387440px;}
._3_c00405{width:5.691840px;}
._0_c00405{width:7.405200px;}
._1_c00405{width:8.428860px;}
._4_c00405{width:9.632400px;}
._7_c00405{width:11.648700px;}
._13_c00405{width:12.771960px;}
._e_c00405{width:14.574420px;}
._17_c00405{width:16.541220px;}
._2_c00405{width:17.649060px;}
._16_c00405{width:19.235280px;}
._12_c00405{width:20.310000px;}
._10_c00405{width:21.881640px;}
._9_c00405{width:23.878980px;}
._8_c00405{width:24.945360px;}
._a_c00405{width:26.629680px;}
._f_c00405{width:28.495620px;}
._14_c00405{width:29.581320px;}
._15_c00405{width:31.072800px;}
._c_c00405{width:32.706420px;}
._b_c00405{width:62.857080px;}
.fc0_c00405{color:transparent;}
.fs7_c00405{font-size:58.800000px;}
.fs3_c00405{font-size:66.600000px;}
.fs4_c00405{font-size:67.200000px;}
.fs5_c00405{font-size:68.400000px;}
.fs6_c00405{font-size:69.600000px;}
.fs2_c00405{font-size:70.800000px;}
.fs1_c00405{font-size:72.600000px;}
.fs0_c00405{font-size:73.200000px;}
.y0_c00405{bottom:0.000000px;}
.y2c_c00405{bottom:103.320006px;}
.y2a_c00405{bottom:152.636106px;}
.y2b_c00405{bottom:152.640006px;}
.y28_c00405{bottom:183.589056px;}
.y29_c00405{bottom:183.600006px;}
.y27_c00405{bottom:214.571106px;}
.y26_c00405{bottom:245.535006px;}
.y24_c00405{bottom:276.131106px;}
.y25_c00405{bottom:276.135006px;}
.y23_c00405{bottom:307.095006px;}
.y21_c00405{bottom:338.048106px;}
.y22_c00405{bottom:338.055006px;}
.y20_c00405{bottom:369.375006px;}
.y1f_c00405{bottom:400.320006px;}
.y1e_c00405{bottom:461.175006px;}
.y1c_c00405{bottom:492.472956px;}
.y1d_c00405{bottom:492.480006px;}
.y1a_c00405{bottom:523.450206px;}
.y1b_c00405{bottom:523.455006px;}
.y19_c00405{bottom:554.051106px;}
.y17_c00405{bottom:585.011106px;}
.y18_c00405{bottom:585.015006px;}
.y16_c00405{bottom:615.975006px;}
.y15_c00405{bottom:646.935006px;}
.y14_c00405{bottom:646.940406px;}
.y12_c00405{bottom:677.872956px;}
.y13_c00405{bottom:677.880006px;}
.y11_c00405{bottom:708.855006px;}
.y10_c00405{bottom:770.415006px;}
.ye_c00405{bottom:801.355956px;}
.yf_c00405{bottom:801.360006px;}
.yd_c00405{bottom:831.975006px;}
.yc_c00405{bottom:863.280006px;}
.ya_c00405{bottom:893.894256px;}
.yb_c00405{bottom:893.895006px;}
.y8_c00405{bottom:924.832056px;}
.y9_c00405{bottom:924.840006px;}
.y7_c00405{bottom:955.451106px;}
.y6_c00405{bottom:986.415006px;}
.y5_c00405{bottom:986.417256px;}
.y4_c00405{bottom:1017.000006px;}
.y3_c00405{bottom:1047.971106px;}
.y2_c00405{bottom:1078.935006px;}
.y1_c00405{bottom:1155.255006px;}
.hd_c00405{height:57.708984px;}
.h8_c00405{height:69.451758px;}
.h7_c00405{height:71.231330px;}
.h3_c00405{height:71.252930px;}
.h4_c00405{height:71.268530px;}
.h5_c00405{height:71.269130px;}
.h9_c00405{height:71.272130px;}
.h6_c00405{height:71.281130px;}
.hb_c00405{height:71.296730px;}
.ha_c00405{height:71.354663px;}
.h2_c00405{height:71.841797px;}
.hc_c00405{height:72.590625px;}
.h1_c00405{height:1263.000000px;}
.h0_c00405{height:1263.240006px;}
.w1_c00405{width:892.500000px;}
.w0_c00405{width:892.799998px;}
.x0_c00405{left:0.000000px;}
.x13_c00405{left:108.135298px;}
.x9_c00405{left:109.615948px;}
.x6_c00405{left:110.688599px;}
.x1_c00405{left:111.884999px;}
.x2b_c00405{left:142.379998px;}
.xf_c00405{left:162.974998px;}
.x2c_c00405{left:168.269999px;}
.x2_c00405{left:170.399998px;}
.x10_c00405{left:184.289998px;}
.x3_c00405{left:190.409999px;}
.x21_c00405{left:193.889999px;}
.x25_c00405{left:198.839999px;}
.x22_c00405{left:215.384998px;}
.x26_c00405{left:220.199999px;}
.xc_c00405{left:222.314999px;}
.x2d_c00405{left:224.429998px;}
.xd_c00405{left:249.254999px;}
.x1f_c00405{left:282.794999px;}
.x4_c00405{left:288.914999px;}
.x20_c00405{left:305.954998px;}
.x5_c00405{left:312.689999px;}
.x29_c00405{left:324.164999px;}
.x27_c00405{left:325.199999px;}
.x2e_c00405{left:333.179999px;}
.x16_c00405{left:337.139999px;}
.x28_c00405{left:347.819998px;}
.x2a_c00405{left:352.409999px;}
.x2f_c00405{left:356.249999px;}
.xa_c00405{left:419.594998px;}
.x30_c00405{left:423.149999px;}
.x32_c00405{left:425.354998px;}
.xb_c00405{left:443.729999px;}
.x31_c00405{left:448.829998px;}
.x11_c00405{left:536.954998px;}
.x1b_c00405{left:562.124998px;}
.x12_c00405{left:565.049998px;}
.x1c_c00405{left:598.874998px;}
.x23_c00405{left:631.934999px;}
.x7_c00405{left:633.794999px;}
.x17_c00405{left:648.869999px;}
.x1d_c00405{left:653.879999px;}
.x24_c00405{left:657.629999px;}
.x8_c00405{left:661.139998px;}
.x14_c00405{left:665.114998px;}
.x1e_c00405{left:672.074998px;}
.x18_c00405{left:674.084998px;}
.x15_c00405{left:694.454998px;}
.x19_c00405{left:720.164999px;}
.x1a_c00405{left:738.074998px;}
.xe_c00405{left:751.154998px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls37_c00405{letter-spacing:-2.277333pt;}
.ls38_c00405{letter-spacing:-2.258667pt;}
.ls5d_c00405{letter-spacing:-2.232853pt;}
.ls94_c00405{letter-spacing:-2.202667pt;}
.lsa0_c00405{letter-spacing:-2.165333pt;}
.ls3c_c00405{letter-spacing:-2.142507pt;}
.ls49_c00405{letter-spacing:-2.077973pt;}
.ls75_c00405{letter-spacing:-1.961813pt;}
.ls8c_c00405{letter-spacing:-1.929547pt;}
.ls5f_c00405{letter-spacing:-1.884373pt;}
.ls4f_c00405{letter-spacing:-1.800480pt;}
.ls9c_c00405{letter-spacing:-1.774667pt;}
.ls3f_c00405{letter-spacing:-1.671413pt;}
.ls8a_c00405{letter-spacing:-1.452000pt;}
.ls4e_c00405{letter-spacing:-1.432640pt;}
.ls45_c00405{letter-spacing:-1.393920pt;}
.ls68_c00405{letter-spacing:-1.374560pt;}
.ls4b_c00405{letter-spacing:-1.316480pt;}
.ls7d_c00405{letter-spacing:-1.297120pt;}
.ls57_c00405{letter-spacing:-1.290667pt;}
.ls86_c00405{letter-spacing:-1.213227pt;}
.ls9d_c00405{letter-spacing:-1.187413pt;}
.ls89_c00405{letter-spacing:-1.129333pt;}
.ls6d_c00405{letter-spacing:-1.097067pt;}
.ls58_c00405{letter-spacing:-1.006720pt;}
.ls44_c00405{letter-spacing:-0.935733pt;}
.ls63_c00405{letter-spacing:-0.871200pt;}
.ls41_c00405{letter-spacing:-0.793760pt;}
.ls6c_c00405{letter-spacing:-0.761493pt;}
.ls88_c00405{letter-spacing:-0.735680pt;}
.ls3d_c00405{letter-spacing:-0.709867pt;}
.ls52_c00405{letter-spacing:-0.703413pt;}
.ls46_c00405{letter-spacing:-0.677600pt;}
.ls5e_c00405{letter-spacing:-0.600160pt;}
.ls67_c00405{letter-spacing:-0.580800pt;}
.ls69_c00405{letter-spacing:-0.574347pt;}
.ls9f_c00405{letter-spacing:-0.566400pt;}
.ls54_c00405{letter-spacing:-0.554987pt;}
.ls9e_c00405{letter-spacing:-0.535627pt;}
.ls6f_c00405{letter-spacing:-0.529173pt;}
.ls97_c00405{letter-spacing:-0.522720pt;}
.ls81_c00405{letter-spacing:-0.516267pt;}
.ls8f_c00405{letter-spacing:-0.496907pt;}
.ls61_c00405{letter-spacing:-0.471093pt;}
.ls99_c00405{letter-spacing:-0.458187pt;}
.ls6a_c00405{letter-spacing:-0.445280pt;}
.ls48_c00405{letter-spacing:-0.419467pt;}
.ls8e_c00405{letter-spacing:-0.413013pt;}
.ls59_c00405{letter-spacing:-0.406560pt;}
.ls92_c00405{letter-spacing:-0.400107pt;}
.ls73_c00405{letter-spacing:-0.393653pt;}
.ls43_c00405{letter-spacing:-0.387200pt;}
.ls3a_c00405{letter-spacing:-0.380747pt;}
.ls66_c00405{letter-spacing:-0.374293pt;}
.ls7e_c00405{letter-spacing:-0.354933pt;}
.ls4d_c00405{letter-spacing:-0.342027pt;}
.ls65_c00405{letter-spacing:-0.335573pt;}
.ls4c_c00405{letter-spacing:-0.329120pt;}
.ls7c_c00405{letter-spacing:-0.322667pt;}
.ls62_c00405{letter-spacing:-0.309760pt;}
.ls56_c00405{letter-spacing:-0.303307pt;}
.ls70_c00405{letter-spacing:-0.296853pt;}
.ls8d_c00405{letter-spacing:-0.283947pt;}
.ls9a_c00405{letter-spacing:-0.271040pt;}
.ls7f_c00405{letter-spacing:-0.264587pt;}
.ls3b_c00405{letter-spacing:-0.245227pt;}
.ls87_c00405{letter-spacing:-0.232320pt;}
.ls53_c00405{letter-spacing:-0.225867pt;}
.ls7b_c00405{letter-spacing:-0.212960pt;}
.ls7a_c00405{letter-spacing:-0.206507pt;}
.ls3e_c00405{letter-spacing:-0.200053pt;}
.ls93_c00405{letter-spacing:-0.193600pt;}
.ls90_c00405{letter-spacing:-0.187147pt;}
.ls71_c00405{letter-spacing:-0.161333pt;}
.ls82_c00405{letter-spacing:-0.154880pt;}
.ls91_c00405{letter-spacing:-0.141973pt;}
.ls72_c00405{letter-spacing:-0.135520pt;}
.ls42_c00405{letter-spacing:-0.129067pt;}
.ls4a_c00405{letter-spacing:-0.116160pt;}
.ls55_c00405{letter-spacing:-0.109707pt;}
.ls47_c00405{letter-spacing:-0.103253pt;}
.ls5b_c00405{letter-spacing:-0.096800pt;}
.ls40_c00405{letter-spacing:-0.090347pt;}
.ls78_c00405{letter-spacing:-0.083893pt;}
.ls60_c00405{letter-spacing:-0.064533pt;}
.ls80_c00405{letter-spacing:-0.058080pt;}
.ls98_c00405{letter-spacing:-0.051627pt;}
.ls6e_c00405{letter-spacing:-0.038720pt;}
.ls5c_c00405{letter-spacing:-0.025813pt;}
.ls6b_c00405{letter-spacing:-0.019360pt;}
.ls9b_c00405{letter-spacing:-0.018880pt;}
.ls51_c00405{letter-spacing:-0.012907pt;}
.ls39_c00405{letter-spacing:0.000000pt;}
.lsa_c00405{letter-spacing:0.012907pt;}
.ls33_c00405{letter-spacing:0.025813pt;}
.ls3_c00405{letter-spacing:0.032267pt;}
.ls83_c00405{letter-spacing:0.038720pt;}
.ls19_c00405{letter-spacing:0.045173pt;}
.ls26_c00405{letter-spacing:0.051627pt;}
.ls64_c00405{letter-spacing:0.056640pt;}
.ls0_c00405{letter-spacing:0.058080pt;}
.lsc_c00405{letter-spacing:0.064533pt;}
.ls1f_c00405{letter-spacing:0.070987pt;}
.lsf_c00405{letter-spacing:0.077440pt;}
.ls12_c00405{letter-spacing:0.083893pt;}
.ls50_c00405{letter-spacing:0.090347pt;}
.ls95_c00405{letter-spacing:0.100693pt;}
.ls1_c00405{letter-spacing:0.103253pt;}
.ls21_c00405{letter-spacing:0.109707pt;}
.lsd_c00405{letter-spacing:0.116160pt;}
.lsb_c00405{letter-spacing:0.122613pt;}
.ls8b_c00405{letter-spacing:0.141973pt;}
.ls2a_c00405{letter-spacing:0.148427pt;}
.ls27_c00405{letter-spacing:0.154880pt;}
.ls20_c00405{letter-spacing:0.161333pt;}
.ls32_c00405{letter-spacing:0.167787pt;}
.ls1c_c00405{letter-spacing:0.174240pt;}
.ls29_c00405{letter-spacing:0.180693pt;}
.ls31_c00405{letter-spacing:0.187147pt;}
.ls79_c00405{letter-spacing:0.193600pt;}
.ls7_c00405{letter-spacing:0.206507pt;}
.ls1e_c00405{letter-spacing:0.225867pt;}
.ls4_c00405{letter-spacing:0.245227pt;}
.ls77_c00405{letter-spacing:0.258027pt;}
.ls96_c00405{letter-spacing:0.270613pt;}
.ls18_c00405{letter-spacing:0.276907pt;}
.ls5a_c00405{letter-spacing:0.277493pt;}
.ls2b_c00405{letter-spacing:0.283947pt;}
.ls28_c00405{letter-spacing:0.303307pt;}
.ls13_c00405{letter-spacing:0.346133pt;}
.ls30_c00405{letter-spacing:0.365013pt;}
.ls1d_c00405{letter-spacing:0.387200pt;}
.ls35_c00405{letter-spacing:0.402773pt;}
.ls36_c00405{letter-spacing:0.413013pt;}
.ls76_c00405{letter-spacing:0.471093pt;}
.ls5_c00405{letter-spacing:0.484000pt;}
.ls1b_c00405{letter-spacing:0.490453pt;}
.ls17_c00405{letter-spacing:0.528640pt;}
.ls8_c00405{letter-spacing:0.535627pt;}
.ls2e_c00405{letter-spacing:0.547520pt;}
.ls25_c00405{letter-spacing:0.585280pt;}
.lsa1_c00405{letter-spacing:0.600160pt;}
.ls10_c00405{letter-spacing:0.641920pt;}
.ls23_c00405{letter-spacing:0.685973pt;}
.ls1a_c00405{letter-spacing:0.704853pt;}
.ls9_c00405{letter-spacing:0.711147pt;}
.ls74_c00405{letter-spacing:0.717440pt;}
.ls16_c00405{letter-spacing:0.723733pt;}
.ls15_c00405{letter-spacing:0.730027pt;}
.ls2d_c00405{letter-spacing:0.800213pt;}
.lsa2_c00405{letter-spacing:0.804907pt;}
.ls85_c00405{letter-spacing:0.806667pt;}
.ls2c_c00405{letter-spacing:0.824427pt;}
.ls11_c00405{letter-spacing:0.830720pt;}
.lse_c00405{letter-spacing:0.864747pt;}
.ls6_c00405{letter-spacing:0.912533pt;}
.ls22_c00405{letter-spacing:0.944000pt;}
.ls24_c00405{letter-spacing:0.956587pt;}
.ls2_c00405{letter-spacing:1.082453pt;}
.ls2f_c00405{letter-spacing:1.208320pt;}
.ls14_c00405{letter-spacing:1.439093pt;}
.ls34_c00405{letter-spacing:1.768427pt;}
.ls84_c00405{letter-spacing:3.226667pt;}
.ws0_c00405{word-spacing:0.000000pt;}
._11_c00405{margin-left:-15.050987pt;}
._19_c00405{margin-left:-11.569813pt;}
._18_c00405{margin-left:-9.695307pt;}
._d_c00405{width:1.452053pt;}
._6_c00405{width:3.009493pt;}
._5_c00405{width:3.899947pt;}
._3_c00405{width:5.059413pt;}
._0_c00405{width:6.582400pt;}
._1_c00405{width:7.492320pt;}
._4_c00405{width:8.562133pt;}
._7_c00405{width:10.354400pt;}
._13_c00405{width:11.352853pt;}
._e_c00405{width:12.955040pt;}
._17_c00405{width:14.703307pt;}
._2_c00405{width:15.688053pt;}
._16_c00405{width:17.098027pt;}
._12_c00405{width:18.053333pt;}
._10_c00405{width:19.450347pt;}
._9_c00405{width:21.225760pt;}
._8_c00405{width:22.173653pt;}
._a_c00405{width:23.670827pt;}
._f_c00405{width:25.329440pt;}
._14_c00405{width:26.294507pt;}
._15_c00405{width:27.620267pt;}
._c_c00405{width:29.072373pt;}
._b_c00405{width:55.872960pt;}
.fs7_c00405{font-size:52.266667pt;}
.fs3_c00405{font-size:59.200000pt;}
.fs4_c00405{font-size:59.733333pt;}
.fs5_c00405{font-size:60.800000pt;}
.fs6_c00405{font-size:61.866667pt;}
.fs2_c00405{font-size:62.933333pt;}
.fs1_c00405{font-size:64.533333pt;}
.fs0_c00405{font-size:65.066667pt;}
.y0_c00405{bottom:0.000000pt;}
.y2c_c00405{bottom:91.840005pt;}
.y2a_c00405{bottom:135.676539pt;}
.y2b_c00405{bottom:135.680005pt;}
.y28_c00405{bottom:163.190272pt;}
.y29_c00405{bottom:163.200005pt;}
.y27_c00405{bottom:190.729872pt;}
.y26_c00405{bottom:218.253339pt;}
.y24_c00405{bottom:245.449872pt;}
.y25_c00405{bottom:245.453339pt;}
.y23_c00405{bottom:272.973339pt;}
.y21_c00405{bottom:300.487205pt;}
.y22_c00405{bottom:300.493339pt;}
.y20_c00405{bottom:328.333339pt;}
.y1f_c00405{bottom:355.840005pt;}
.y1e_c00405{bottom:409.933339pt;}
.y1c_c00405{bottom:437.753739pt;}
.y1d_c00405{bottom:437.760005pt;}
.y1a_c00405{bottom:465.289072pt;}
.y1b_c00405{bottom:465.293339pt;}
.y19_c00405{bottom:492.489872pt;}
.y17_c00405{bottom:520.009872pt;}
.y18_c00405{bottom:520.013339pt;}
.y16_c00405{bottom:547.533339pt;}
.y15_c00405{bottom:575.053339pt;}
.y14_c00405{bottom:575.058139pt;}
.y12_c00405{bottom:602.553739pt;}
.y13_c00405{bottom:602.560005pt;}
.y11_c00405{bottom:630.093339pt;}
.y10_c00405{bottom:684.813339pt;}
.ye_c00405{bottom:712.316405pt;}
.yf_c00405{bottom:712.320005pt;}
.yd_c00405{bottom:739.533339pt;}
.yc_c00405{bottom:767.360005pt;}
.ya_c00405{bottom:794.572672pt;}
.yb_c00405{bottom:794.573339pt;}
.y8_c00405{bottom:822.072939pt;}
.y9_c00405{bottom:822.080005pt;}
.y7_c00405{bottom:849.289872pt;}
.y6_c00405{bottom:876.813339pt;}
.y5_c00405{bottom:876.815339pt;}
.y4_c00405{bottom:904.000005pt;}
.y3_c00405{bottom:931.529872pt;}
.y2_c00405{bottom:959.053339pt;}
.y1_c00405{bottom:1026.893339pt;}
.hd_c00405{height:51.296875pt;}
.h8_c00405{height:61.734896pt;}
.h7_c00405{height:63.316738pt;}
.h3_c00405{height:63.335938pt;}
.h4_c00405{height:63.349804pt;}
.h5_c00405{height:63.350338pt;}
.h9_c00405{height:63.353004pt;}
.h6_c00405{height:63.361004pt;}
.hb_c00405{height:63.374871pt;}
.ha_c00405{height:63.426367pt;}
.h2_c00405{height:63.859375pt;}
.hc_c00405{height:64.525000pt;}
.h1_c00405{height:1122.666667pt;}
.h0_c00405{height:1122.880005pt;}
.w1_c00405{width:793.333333pt;}
.w0_c00405{width:793.599999pt;}
.x0_c00405{left:0.000000pt;}
.x13_c00405{left:96.120265pt;}
.x9_c00405{left:97.436399pt;}
.x6_c00405{left:98.389865pt;}
.x1_c00405{left:99.453332pt;}
.x2b_c00405{left:126.559999pt;}
.xf_c00405{left:144.866665pt;}
.x2c_c00405{left:149.573332pt;}
.x2_c00405{left:151.466665pt;}
.x10_c00405{left:163.813332pt;}
.x3_c00405{left:169.253332pt;}
.x21_c00405{left:172.346665pt;}
.x25_c00405{left:176.746665pt;}
.x22_c00405{left:191.453332pt;}
.x26_c00405{left:195.733332pt;}
.xc_c00405{left:197.613332pt;}
.x2d_c00405{left:199.493332pt;}
.xd_c00405{left:221.559999pt;}
.x1f_c00405{left:251.373332pt;}
.x4_c00405{left:256.813332pt;}
.x20_c00405{left:271.959999pt;}
.x5_c00405{left:277.946665pt;}
.x29_c00405{left:288.146665pt;}
.x27_c00405{left:289.066665pt;}
.x2e_c00405{left:296.159999pt;}
.x16_c00405{left:299.679999pt;}
.x28_c00405{left:309.173332pt;}
.x2a_c00405{left:313.253332pt;}
.x2f_c00405{left:316.666665pt;}
.xa_c00405{left:372.973332pt;}
.x30_c00405{left:376.133332pt;}
.x32_c00405{left:378.093332pt;}
.xb_c00405{left:394.426665pt;}
.x31_c00405{left:398.959999pt;}
.x11_c00405{left:477.293332pt;}
.x1b_c00405{left:499.666665pt;}
.x12_c00405{left:502.266665pt;}
.x1c_c00405{left:532.333332pt;}
.x23_c00405{left:561.719999pt;}
.x7_c00405{left:563.373332pt;}
.x17_c00405{left:576.773332pt;}
.x1d_c00405{left:581.226665pt;}
.x24_c00405{left:584.559999pt;}
.x8_c00405{left:587.679999pt;}
.x14_c00405{left:591.213332pt;}
.x1e_c00405{left:597.399999pt;}
.x18_c00405{left:599.186665pt;}
.x15_c00405{left:617.293332pt;}
.x19_c00405{left:640.146665pt;}
.x1a_c00405{left:656.066665pt;}
.xe_c00405{left:667.693332pt;}
}





/* 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_c00406 {
    display:none;
  }
  .loading-indicator_c00406.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00406 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_c00406 { 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_c00406" -> "#page-container .classname_c00406")
 */
.pf_c00406 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00406 { /* 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_c00406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00406 { /* 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_c00406 { /* 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_c00406 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00406 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00406 {overflow:visible;}
  }
}
.c_c00406 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00406 { /* 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_c00406:after { /* webkit #35443 */
  content: '';
}
.t_c00406:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00406 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 */
}
.__c00406 { /* 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_c00406 { /* info for Javascript */
  display:none;
}
.l_c00406 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00406 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00406 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00406: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_c00406 {
    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_c00406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00406.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_c00406 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00406{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00406;src:url('chunks/assets/font_c519f9ea611b7249602c905c.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;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:ff2_c00406;src:url('chunks/assets/font_7ab2c7a44feaf628023db0c2.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;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_c00406;src:url('chunks/assets/font_7dd38272d445ac47f9c88532.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.284668;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_c00406;src:url('chunks/assets/font_6c5568537b874abe1191269d.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.284180;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_c00406;src:url('chunks/assets/font_9df19252c53971593733749e.woff2')format("woff");}.ff5_c00406{font-family:ff5_c00406;line-height:0.666000;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;}
.m15_c00406{transform:matrix(0.094826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094826,0.000000,0.000000,0.250000,0,0);}
.m1b_c00406{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.m4_c00406{transform:matrix(0.120053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120053,0.000000,0.000000,0.250000,0,0);}
.m12_c00406{transform:matrix(0.122959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122959,0.000000,0.000000,0.250000,0,0);}
.m10_c00406{transform:matrix(0.124306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124306,0.000000,0.000000,0.250000,0,0);}
.m14_c00406{transform:matrix(0.128871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128871,0.000000,0.000000,0.250000,0,0);}
.m1a_c00406{transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);}
.m5_c00406{transform:matrix(0.146120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146120,0.000000,0.000000,0.250000,0,0);}
.m18_c00406{transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);}
.m13_c00406{transform:matrix(0.176359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176359,0.000000,0.000000,0.250000,0,0);}
.md_c00406{transform:matrix(0.183970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183970,0.000000,0.000000,0.250000,0,0);}
.ma_c00406{transform:matrix(0.191047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191047,0.000000,0.000000,0.250000,0,0);}
.m7_c00406{transform:matrix(0.194478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194478,0.000000,0.000000,0.250000,0,0);}
.m1c_c00406{transform:matrix(0.198858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198858,0.000000,0.000000,0.250000,0,0);}
.m3_c00406{transform:matrix(0.210147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210147,0.000000,0.000000,0.250000,0,0);}
.m11_c00406{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.m2_c00406{transform:matrix(0.241907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241907,0.000000,0.000000,0.250000,0,0);}
.m19_c00406{transform:matrix(0.243371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243371,0.000000,0.000000,0.250000,0,0);}
.m16_c00406{transform:matrix(0.243776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243776,0.000000,0.000000,0.250000,0,0);}
.mf_c00406{transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);}
.me_c00406{transform:matrix(0.246121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246121,0.000000,0.000000,0.250000,0,0);}
.m6_c00406{transform:matrix(0.247503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247503,0.000000,0.000000,0.250000,0,0);}
.m9_c00406{transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);}
.m0_c00406{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);}
.m17_c00406{transform:matrix(0.264773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264773,0.000000,0.000000,0.250000,0,0);}
.m8_c00406{transform:matrix(0.271931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271931,0.000000,0.000000,0.250000,0,0);}
.mc_c00406{transform:matrix(0.347390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347390,0.000000,0.000000,0.250000,0,0);}
.mb_c00406{transform:matrix(0.373601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373601,0.000000,0.000000,0.250000,0,0);}
.m1_c00406{transform:matrix(0.415652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415652,0.000000,0.000000,0.250000,0,0);}
.v4_c00406{vertical-align:-5.760000px;}
.v3_c00406{vertical-align:-2.839200px;}
.v2_c00406{vertical-align:-1.448400px;}
.v0_c00406{vertical-align:0.000000px;}
.v1_c00406{vertical-align:1.380000px;}
.v7_c00406{vertical-align:2.880000px;}
.v6_c00406{vertical-align:5.760000px;}
.v5_c00406{vertical-align:74.820000px;}
.ls27_c00406{letter-spacing:-8.904021px;}
.ls28_c00406{letter-spacing:-3.927021px;}
.ls23_c00406{letter-spacing:-2.940000px;}
.ls1f_c00406{letter-spacing:-2.583000px;}
.ls1b_c00406{letter-spacing:-2.373000px;}
.ls36_c00406{letter-spacing:-2.331000px;}
.ls1d_c00406{letter-spacing:-2.163000px;}
.ls19_c00406{letter-spacing:-2.037000px;}
.ls26_c00406{letter-spacing:-1.972980px;}
.ls1a_c00406{letter-spacing:-1.932000px;}
.ls20_c00406{letter-spacing:-1.680000px;}
.ls24_c00406{letter-spacing:-1.437540px;}
.ls35_c00406{letter-spacing:-1.249560px;}
.ls2b_c00406{letter-spacing:-1.152360px;}
.ls32_c00406{letter-spacing:-0.947700px;}
.ls2d_c00406{letter-spacing:-0.903120px;}
.ls2c_c00406{letter-spacing:-0.819021px;}
.ls33_c00406{letter-spacing:-0.765180px;}
.ls31_c00406{letter-spacing:-0.730080px;}
.ls2e_c00406{letter-spacing:-0.671340px;}
.ls2f_c00406{letter-spacing:-0.577800px;}
.ls37_c00406{letter-spacing:-0.491400px;}
.ls18_c00406{letter-spacing:-0.354785px;}
.ls1c_c00406{letter-spacing:-0.183180px;}
.ls17_c00406{letter-spacing:0.000000px;}
.ls29_c00406{letter-spacing:0.099361px;}
.ls13_c00406{letter-spacing:0.273780px;}
.ls2a_c00406{letter-spacing:0.400150px;}
.ls34_c00406{letter-spacing:0.442260px;}
.ls3_c00406{letter-spacing:0.453600px;}
.lsf_c00406{letter-spacing:0.456300px;}
.ls2_c00406{letter-spacing:0.475200px;}
.lsd_c00406{letter-spacing:0.533520px;}
.ls5_c00406{letter-spacing:0.564480px;}
.lse_c00406{letter-spacing:0.673920px;}
.ls15_c00406{letter-spacing:0.694980px;}
.ls1_c00406{letter-spacing:0.718200px;}
.ls6_c00406{letter-spacing:0.725760px;}
.ls0_c00406{letter-spacing:0.772200px;}
.ls14_c00406{letter-spacing:0.786240px;}
.ls8_c00406{letter-spacing:0.812160px;}
.ls10_c00406{letter-spacing:0.849420px;}
.ls12_c00406{letter-spacing:0.947700px;}
.ls11_c00406{letter-spacing:0.954720px;}
.lsc_c00406{letter-spacing:0.961740px;}
.ls7_c00406{letter-spacing:1.278720px;}
.lsb_c00406{letter-spacing:1.340820px;}
.ls21_c00406{letter-spacing:1.590030px;}
.lsa_c00406{letter-spacing:1.612800px;}
.ls22_c00406{letter-spacing:1.710000px;}
.ls25_c00406{letter-spacing:1.912320px;}
.ls4_c00406{letter-spacing:1.960560px;}
.ls30_c00406{letter-spacing:2.016000px;}
.ls16_c00406{letter-spacing:2.520000px;}
.ls38_c00406{letter-spacing:2.611440px;}
.ls9_c00406{letter-spacing:2.822400px;}
.ls1e_c00406{letter-spacing:3.240000px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{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__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00406{word-spacing:0.000000px;}
._2_c00406{margin-left:-9.595200px;}
._23_c00406{margin-left:-2.527200px;}
._0_c00406{margin-left:-1.080000px;}
._1f_c00406{width:1.332060px;}
._22_c00406{width:2.393820px;}
._1_c00406{width:3.689760px;}
._11_c00406{width:4.792320px;}
._13_c00406{width:5.875200px;}
._21_c00406{width:7.958700px;}
._20_c00406{width:10.180320px;}
._6_c00406{width:44.294400px;}
._14_c00406{width:52.015650px;}
._a_c00406{width:70.289550px;}
._c_c00406{width:73.033605px;}
._9_c00406{width:79.298400px;}
._b_c00406{width:84.059550px;}
._7_c00406{width:99.450000px;}
._3_c00406{width:100.890000px;}
._4_c00406{width:109.769550px;}
._8_c00406{width:111.201150px;}
._5_c00406{width:113.145600px;}
._15_c00406{width:115.495350px;}
._17_c00406{width:131.997600px;}
._16_c00406{width:133.423200px;}
._18_c00406{width:136.317600px;}
._1d_c00406{width:245.333760px;}
._1e_c00406{width:424.527840px;}
._19_c00406{width:478.238083px;}
._12_c00406{width:912.453120px;}
._1a_c00406{width:1003.161000px;}
._d_c00406{width:1594.265400px;}
._f_c00406{width:1626.457200px;}
._1c_c00406{width:1634.488800px;}
._1b_c00406{width:1653.694800px;}
._e_c00406{width:1665.567600px;}
._10_c00406{width:2114.256000px;}
.fc0_c00406{color:transparent;}
.fs15_c00406{font-size:21.600000px;}
.fs1b_c00406{font-size:23.400600px;}
.fsf_c00406{font-size:31.800600px;}
.fs10_c00406{font-size:34.200000px;}
.fs1e_c00406{font-size:38.880600px;}
.fs1f_c00406{font-size:40.200000px;}
.fs21_c00406{font-size:40.320000px;}
.fs19_c00406{font-size:41.400600px;}
.fs1a_c00406{font-size:41.760600px;}
.fs4_c00406{font-size:42.600000px;}
.fs3_c00406{font-size:43.800600px;}
.fs5_c00406{font-size:44.400600px;}
.fs22_c00406{font-size:46.080000px;}
.fse_c00406{font-size:48.000000px;}
.fs1_c00406{font-size:50.400000px;}
.fs0_c00406{font-size:54.000000px;}
.fs6_c00406{font-size:54.600000px;}
.fs8_c00406{font-size:55.200000px;}
.fs13_c00406{font-size:57.600000px;}
.fs7_c00406{font-size:58.200000px;}
.fs2_c00406{font-size:61.800000px;}
.fsc_c00406{font-size:62.400000px;}
.fs23_c00406{font-size:64.200000px;}
.fsb_c00406{font-size:64.800000px;}
.fs24_c00406{font-size:66.600000px;}
.fs9_c00406{font-size:67.800000px;}
.fsa_c00406{font-size:70.200000px;}
.fsd_c00406{font-size:73.800000px;}
.fs12_c00406{font-size:84.000000px;}
.fs17_c00406{font-size:104.400000px;}
.fs18_c00406{font-size:112.200600px;}
.fs11_c00406{font-size:115.200600px;}
.fs1d_c00406{font-size:116.400000px;}
.fs1c_c00406{font-size:172.200600px;}
.fs16_c00406{font-size:172.800000px;}
.fs20_c00406{font-size:247.200600px;}
.fs14_c00406{font-size:254.400600px;}
.y0_c00406{bottom:0.000000px;}
.y40_c00406{bottom:166.693500px;}
.y41_c00406{bottom:166.695000px;}
.y3f_c00406{bottom:188.280000px;}
.y3e_c00406{bottom:345.975000px;}
.y3d_c00406{bottom:346.335000px;}
.y3c_c00406{bottom:356.415000px;}
.y3b_c00406{bottom:397.095000px;}
.y39_c00406{bottom:410.040000px;}
.y3a_c00406{bottom:411.855000px;}
.y38_c00406{bottom:414.735000px;}
.y37_c00406{bottom:427.335000px;}
.y36_c00406{bottom:428.415000px;}
.y34_c00406{bottom:447.855000px;}
.y35_c00406{bottom:448.200000px;}
.y33_c00406{bottom:457.935000px;}
.y32_c00406{bottom:467.280000px;}
.y30_c00406{bottom:469.095000px;}
.y31_c00406{bottom:475.935000px;}
.y2d_c00406{bottom:477.735000px;}
.y2e_c00406{bottom:483.120000px;}
.y2f_c00406{bottom:486.735000px;}
.y2b_c00406{bottom:491.415000px;}
.y2c_c00406{bottom:492.495000px;}
.y2a_c00406{bottom:498.600000px;}
.y29_c00406{bottom:499.335000px;}
.y28_c00406{bottom:501.120000px;}
.y27_c00406{bottom:516.975000px;}
.y26_c00406{bottom:522.735000px;}
.y21_c00406{bottom:533.175000px;}
.y25_c00406{bottom:535.335000px;}
.y24_c00406{bottom:537.495000px;}
.y1d_c00406{bottom:543.255000px;}
.y22_c00406{bottom:545.040000px;}
.y23_c00406{bottom:547.575000px;}
.y1f_c00406{bottom:567.735000px;}
.y20_c00406{bottom:606.600000px;}
.y1e_c00406{bottom:606.975000px;}
.y1c_c00406{bottom:612.735000px;}
.y1b_c00406{bottom:663.120000px;}
.y1a_c00406{bottom:663.495000px;}
.y19_c00406{bottom:673.935000px;}
.y18_c00406{bottom:713.175000px;}
.y17_c00406{bottom:713.520000px;}
.y16_c00406{bottom:732.255000px;}
.y15_c00406{bottom:744.120000px;}
.y11_c00406{bottom:758.895000px;}
.y14_c00406{bottom:763.935000px;}
.y13_c00406{bottom:764.280000px;}
.y12_c00406{bottom:766.815000px;}
.y10_c00406{bottom:775.080000px;}
.yf_c00406{bottom:784.455000px;}
.ye_c00406{bottom:795.240000px;}
.yd_c00406{bottom:808.560000px;}
.yc_c00406{bottom:815.400000px;}
.yb_c00406{bottom:818.655000px;}
.ya_c00406{bottom:834.495000px;}
.y9_c00406{bottom:840.240000px;}
.y7_c00406{bottom:855.000000px;}
.y8_c00406{bottom:856.080000px;}
.y6_c00406{bottom:866.175000px;}
.y5_c00406{bottom:916.560000px;}
.y4_c00406{bottom:929.175000px;}
.y3_c00406{bottom:963.360000px;}
.y2_c00406{bottom:985.695000px;}
.y1_c00406{bottom:1008.360000px;}
.h18_c00406{height:22.528125px;}
.h1e_c00406{height:24.406095px;}
.h21_c00406{height:25.894480px;}
.h24_c00406{height:26.853120px;}
.h1d_c00406{height:27.812560px;}
.h25_c00406{height:30.689280px;}
.h11_c00406{height:33.167032px;}
.h12_c00406{height:35.669531px;}
.h22_c00406{height:41.927344px;}
.hb_c00406{height:44.430469px;}
.h10_c00406{height:47.085938px;}
.h3_c00406{height:52.565625px;}
.h5_c00406{height:53.586914px;}
.ha_c00406{height:54.175781px;}
.h2_c00406{height:56.320312px;}
.h6_c00406{height:57.120117px;}
.h7_c00406{height:57.571875px;}
.h15_c00406{height:60.075000px;}
.h4_c00406{height:60.653320px;}
.he_c00406{height:61.242188px;}
.h16_c00406{height:62.093320px;}
.hd_c00406{height:63.597656px;}
.hc_c00406{height:64.455469px;}
.h28_c00406{height:65.364258px;}
.h26_c00406{height:68.768789px;}
.h27_c00406{height:68.897461px;}
.h8_c00406{height:70.713281px;}
.h9_c00406{height:73.216406px;}
.hf_c00406{height:76.971094px;}
.h14_c00406{height:82.441406px;}
.h1a_c00406{height:102.462891px;}
.h1b_c00406{height:110.118753px;}
.h13_c00406{height:113.063089px;}
.h20_c00406{height:114.183398px;}
.h19_c00406{height:115.084800px;}
.h1c_c00406{height:117.999532px;}
.h1f_c00406{height:179.599845px;}
.h23_c00406{height:257.822501px;}
.h17_c00406{height:265.331876px;}
.h1_c00406{height:1263.000000px;}
.h0_c00406{height:1263.240000px;}
.w1_c00406{width:892.500000px;}
.w0_c00406{width:892.800000px;}
.x0_c00406{left:0.000000px;}
.x21_c00406{left:93.800250px;}
.x20_c00406{left:96.045000px;}
.x15_c00406{left:177.525000px;}
.x6_c00406{left:179.325000px;}
.x17_c00406{left:181.035000px;}
.x8_c00406{left:182.835000px;}
.x22_c00406{left:197.565000px;}
.xb_c00406{left:201.825000px;}
.x5_c00406{left:208.350000px;}
.x4_c00406{left:215.505000px;}
.xc_c00406{left:226.650000px;}
.x1_c00406{left:229.380000px;}
.x14_c00406{left:241.920000px;}
.x19_c00406{left:244.095000px;}
.xd_c00406{left:265.170000px;}
.xa_c00406{left:281.400000px;}
.x1f_c00406{left:289.260000px;}
.x2_c00406{left:322.185000px;}
.x3_c00406{left:347.745000px;}
.xe_c00406{left:354.255000px;}
.x1d_c00406{left:368.295000px;}
.x7_c00406{left:417.390000px;}
.x1c_c00406{left:424.095000px;}
.x1a_c00406{left:430.770000px;}
.x18_c00406{left:433.290000px;}
.x16_c00406{left:452.895000px;}
.xf_c00406{left:465.330000px;}
.x10_c00406{left:484.485000px;}
.x1e_c00406{left:498.600000px;}
.x1b_c00406{left:508.695000px;}
.x11_c00406{left:522.570000px;}
.x12_c00406{left:615.300000px;}
.x13_c00406{left:625.890000px;}
.x9_c00406{left:627.255000px;}
@media print{
.v4_c00406{vertical-align:-5.120000pt;}
.v3_c00406{vertical-align:-2.523733pt;}
.v2_c00406{vertical-align:-1.287467pt;}
.v0_c00406{vertical-align:0.000000pt;}
.v1_c00406{vertical-align:1.226667pt;}
.v7_c00406{vertical-align:2.560000pt;}
.v6_c00406{vertical-align:5.120000pt;}
.v5_c00406{vertical-align:66.506667pt;}
.ls27_c00406{letter-spacing:-7.914685pt;}
.ls28_c00406{letter-spacing:-3.490685pt;}
.ls23_c00406{letter-spacing:-2.613333pt;}
.ls1f_c00406{letter-spacing:-2.296000pt;}
.ls1b_c00406{letter-spacing:-2.109333pt;}
.ls36_c00406{letter-spacing:-2.072000pt;}
.ls1d_c00406{letter-spacing:-1.922667pt;}
.ls19_c00406{letter-spacing:-1.810667pt;}
.ls26_c00406{letter-spacing:-1.753760pt;}
.ls1a_c00406{letter-spacing:-1.717333pt;}
.ls20_c00406{letter-spacing:-1.493333pt;}
.ls24_c00406{letter-spacing:-1.277813pt;}
.ls35_c00406{letter-spacing:-1.110720pt;}
.ls2b_c00406{letter-spacing:-1.024320pt;}
.ls32_c00406{letter-spacing:-0.842400pt;}
.ls2d_c00406{letter-spacing:-0.802773pt;}
.ls2c_c00406{letter-spacing:-0.728019pt;}
.ls33_c00406{letter-spacing:-0.680160pt;}
.ls31_c00406{letter-spacing:-0.648960pt;}
.ls2e_c00406{letter-spacing:-0.596747pt;}
.ls2f_c00406{letter-spacing:-0.513600pt;}
.ls37_c00406{letter-spacing:-0.436800pt;}
.ls18_c00406{letter-spacing:-0.315364pt;}
.ls1c_c00406{letter-spacing:-0.162827pt;}
.ls17_c00406{letter-spacing:0.000000pt;}
.ls29_c00406{letter-spacing:0.088321pt;}
.ls13_c00406{letter-spacing:0.243360pt;}
.ls2a_c00406{letter-spacing:0.355689pt;}
.ls34_c00406{letter-spacing:0.393120pt;}
.ls3_c00406{letter-spacing:0.403200pt;}
.lsf_c00406{letter-spacing:0.405600pt;}
.ls2_c00406{letter-spacing:0.422400pt;}
.lsd_c00406{letter-spacing:0.474240pt;}
.ls5_c00406{letter-spacing:0.501760pt;}
.lse_c00406{letter-spacing:0.599040pt;}
.ls15_c00406{letter-spacing:0.617760pt;}
.ls1_c00406{letter-spacing:0.638400pt;}
.ls6_c00406{letter-spacing:0.645120pt;}
.ls0_c00406{letter-spacing:0.686400pt;}
.ls14_c00406{letter-spacing:0.698880pt;}
.ls8_c00406{letter-spacing:0.721920pt;}
.ls10_c00406{letter-spacing:0.755040pt;}
.ls12_c00406{letter-spacing:0.842400pt;}
.ls11_c00406{letter-spacing:0.848640pt;}
.lsc_c00406{letter-spacing:0.854880pt;}
.ls7_c00406{letter-spacing:1.136640pt;}
.lsb_c00406{letter-spacing:1.191840pt;}
.ls21_c00406{letter-spacing:1.413360pt;}
.lsa_c00406{letter-spacing:1.433600pt;}
.ls22_c00406{letter-spacing:1.520000pt;}
.ls25_c00406{letter-spacing:1.699840pt;}
.ls4_c00406{letter-spacing:1.742720pt;}
.ls30_c00406{letter-spacing:1.792000pt;}
.ls16_c00406{letter-spacing:2.240000pt;}
.ls38_c00406{letter-spacing:2.321280pt;}
.ls9_c00406{letter-spacing:2.508800pt;}
.ls1e_c00406{letter-spacing:2.880000pt;}
.ws0_c00406{word-spacing:0.000000pt;}
._2_c00406{margin-left:-8.529067pt;}
._23_c00406{margin-left:-2.246400pt;}
._0_c00406{margin-left:-0.960000pt;}
._1f_c00406{width:1.184053pt;}
._22_c00406{width:2.127840pt;}
._1_c00406{width:3.279787pt;}
._11_c00406{width:4.259840pt;}
._13_c00406{width:5.222400pt;}
._21_c00406{width:7.074400pt;}
._20_c00406{width:9.049173pt;}
._6_c00406{width:39.372800pt;}
._14_c00406{width:46.236133pt;}
._a_c00406{width:62.479600pt;}
._c_c00406{width:64.918760pt;}
._9_c00406{width:70.487467pt;}
._b_c00406{width:74.719600pt;}
._7_c00406{width:88.400000pt;}
._3_c00406{width:89.680000pt;}
._4_c00406{width:97.572933pt;}
._8_c00406{width:98.845467pt;}
._5_c00406{width:100.573867pt;}
._15_c00406{width:102.662533pt;}
._17_c00406{width:117.331200pt;}
._16_c00406{width:118.598400pt;}
._18_c00406{width:121.171200pt;}
._1d_c00406{width:218.074453pt;}
._1e_c00406{width:377.358080pt;}
._19_c00406{width:425.100518pt;}
._12_c00406{width:811.069440pt;}
._1a_c00406{width:891.698667pt;}
._d_c00406{width:1417.124800pt;}
._f_c00406{width:1445.739733pt;}
._1c_c00406{width:1452.878933pt;}
._1b_c00406{width:1469.950933pt;}
._e_c00406{width:1480.504533pt;}
._10_c00406{width:1879.338667pt;}
.fs15_c00406{font-size:19.200000pt;}
.fs1b_c00406{font-size:20.800533pt;}
.fsf_c00406{font-size:28.267200pt;}
.fs10_c00406{font-size:30.400000pt;}
.fs1e_c00406{font-size:34.560533pt;}
.fs1f_c00406{font-size:35.733333pt;}
.fs21_c00406{font-size:35.840000pt;}
.fs19_c00406{font-size:36.800533pt;}
.fs1a_c00406{font-size:37.120533pt;}
.fs4_c00406{font-size:37.866667pt;}
.fs3_c00406{font-size:38.933867pt;}
.fs5_c00406{font-size:39.467200pt;}
.fs22_c00406{font-size:40.960000pt;}
.fse_c00406{font-size:42.666667pt;}
.fs1_c00406{font-size:44.800000pt;}
.fs0_c00406{font-size:48.000000pt;}
.fs6_c00406{font-size:48.533333pt;}
.fs8_c00406{font-size:49.066667pt;}
.fs13_c00406{font-size:51.200000pt;}
.fs7_c00406{font-size:51.733333pt;}
.fs2_c00406{font-size:54.933333pt;}
.fsc_c00406{font-size:55.466667pt;}
.fs23_c00406{font-size:57.066667pt;}
.fsb_c00406{font-size:57.600000pt;}
.fs24_c00406{font-size:59.200000pt;}
.fs9_c00406{font-size:60.266667pt;}
.fsa_c00406{font-size:62.400000pt;}
.fsd_c00406{font-size:65.600000pt;}
.fs12_c00406{font-size:74.666667pt;}
.fs17_c00406{font-size:92.800000pt;}
.fs18_c00406{font-size:99.733867pt;}
.fs11_c00406{font-size:102.400533pt;}
.fs1d_c00406{font-size:103.466667pt;}
.fs1c_c00406{font-size:153.067200pt;}
.fs16_c00406{font-size:153.600000pt;}
.fs20_c00406{font-size:219.733867pt;}
.fs14_c00406{font-size:226.133867pt;}
.y0_c00406{bottom:0.000000pt;}
.y40_c00406{bottom:148.172000pt;}
.y41_c00406{bottom:148.173333pt;}
.y3f_c00406{bottom:167.360000pt;}
.y3e_c00406{bottom:307.533333pt;}
.y3d_c00406{bottom:307.853333pt;}
.y3c_c00406{bottom:316.813333pt;}
.y3b_c00406{bottom:352.973333pt;}
.y39_c00406{bottom:364.480000pt;}
.y3a_c00406{bottom:366.093333pt;}
.y38_c00406{bottom:368.653333pt;}
.y37_c00406{bottom:379.853333pt;}
.y36_c00406{bottom:380.813333pt;}
.y34_c00406{bottom:398.093333pt;}
.y35_c00406{bottom:398.400000pt;}
.y33_c00406{bottom:407.053333pt;}
.y32_c00406{bottom:415.360000pt;}
.y30_c00406{bottom:416.973333pt;}
.y31_c00406{bottom:423.053333pt;}
.y2d_c00406{bottom:424.653333pt;}
.y2e_c00406{bottom:429.440000pt;}
.y2f_c00406{bottom:432.653333pt;}
.y2b_c00406{bottom:436.813333pt;}
.y2c_c00406{bottom:437.773333pt;}
.y2a_c00406{bottom:443.200000pt;}
.y29_c00406{bottom:443.853333pt;}
.y28_c00406{bottom:445.440000pt;}
.y27_c00406{bottom:459.533333pt;}
.y26_c00406{bottom:464.653333pt;}
.y21_c00406{bottom:473.933333pt;}
.y25_c00406{bottom:475.853333pt;}
.y24_c00406{bottom:477.773333pt;}
.y1d_c00406{bottom:482.893333pt;}
.y22_c00406{bottom:484.480000pt;}
.y23_c00406{bottom:486.733333pt;}
.y1f_c00406{bottom:504.653333pt;}
.y20_c00406{bottom:539.200000pt;}
.y1e_c00406{bottom:539.533333pt;}
.y1c_c00406{bottom:544.653333pt;}
.y1b_c00406{bottom:589.440000pt;}
.y1a_c00406{bottom:589.773333pt;}
.y19_c00406{bottom:599.053333pt;}
.y18_c00406{bottom:633.933333pt;}
.y17_c00406{bottom:634.240000pt;}
.y16_c00406{bottom:650.893333pt;}
.y15_c00406{bottom:661.440000pt;}
.y11_c00406{bottom:674.573333pt;}
.y14_c00406{bottom:679.053333pt;}
.y13_c00406{bottom:679.360000pt;}
.y12_c00406{bottom:681.613333pt;}
.y10_c00406{bottom:688.960000pt;}
.yf_c00406{bottom:697.293333pt;}
.ye_c00406{bottom:706.880000pt;}
.yd_c00406{bottom:718.720000pt;}
.yc_c00406{bottom:724.800000pt;}
.yb_c00406{bottom:727.693333pt;}
.ya_c00406{bottom:741.773333pt;}
.y9_c00406{bottom:746.880000pt;}
.y7_c00406{bottom:760.000000pt;}
.y8_c00406{bottom:760.960000pt;}
.y6_c00406{bottom:769.933333pt;}
.y5_c00406{bottom:814.720000pt;}
.y4_c00406{bottom:825.933333pt;}
.y3_c00406{bottom:856.320000pt;}
.y2_c00406{bottom:876.173333pt;}
.y1_c00406{bottom:896.320000pt;}
.h18_c00406{height:20.025000pt;}
.h1e_c00406{height:21.694306pt;}
.h21_c00406{height:23.017315pt;}
.h24_c00406{height:23.869440pt;}
.h1d_c00406{height:24.722275pt;}
.h25_c00406{height:27.279360pt;}
.h11_c00406{height:29.481806pt;}
.h12_c00406{height:31.706250pt;}
.h22_c00406{height:37.268750pt;}
.hb_c00406{height:39.493750pt;}
.h10_c00406{height:41.854167pt;}
.h3_c00406{height:46.725000pt;}
.h5_c00406{height:47.632812pt;}
.ha_c00406{height:48.156250pt;}
.h2_c00406{height:50.062500pt;}
.h6_c00406{height:50.773437pt;}
.h7_c00406{height:51.175000pt;}
.h15_c00406{height:53.400000pt;}
.h4_c00406{height:53.914062pt;}
.he_c00406{height:54.437500pt;}
.h16_c00406{height:55.194063pt;}
.hd_c00406{height:56.531250pt;}
.hc_c00406{height:57.293750pt;}
.h28_c00406{height:58.101562pt;}
.h26_c00406{height:61.127813pt;}
.h27_c00406{height:61.242187pt;}
.h8_c00406{height:62.856250pt;}
.h9_c00406{height:65.081250pt;}
.hf_c00406{height:68.418750pt;}
.h14_c00406{height:73.281250pt;}
.h1a_c00406{height:91.078125pt;}
.h1b_c00406{height:97.883336pt;}
.h13_c00406{height:100.500523pt;}
.h20_c00406{height:101.496354pt;}
.h19_c00406{height:102.297600pt;}
.h1c_c00406{height:104.888473pt;}
.h1f_c00406{height:159.644306pt;}
.h23_c00406{height:229.175556pt;}
.h17_c00406{height:235.850556pt;}
.h1_c00406{height:1122.666667pt;}
.h0_c00406{height:1122.880000pt;}
.w1_c00406{width:793.333333pt;}
.w0_c00406{width:793.600000pt;}
.x0_c00406{left:0.000000pt;}
.x21_c00406{left:83.378000pt;}
.x20_c00406{left:85.373333pt;}
.x15_c00406{left:157.800000pt;}
.x6_c00406{left:159.400000pt;}
.x17_c00406{left:160.920000pt;}
.x8_c00406{left:162.520000pt;}
.x22_c00406{left:175.613333pt;}
.xb_c00406{left:179.400000pt;}
.x5_c00406{left:185.200000pt;}
.x4_c00406{left:191.560000pt;}
.xc_c00406{left:201.466667pt;}
.x1_c00406{left:203.893333pt;}
.x14_c00406{left:215.040000pt;}
.x19_c00406{left:216.973333pt;}
.xd_c00406{left:235.706667pt;}
.xa_c00406{left:250.133333pt;}
.x1f_c00406{left:257.120000pt;}
.x2_c00406{left:286.386667pt;}
.x3_c00406{left:309.106667pt;}
.xe_c00406{left:314.893333pt;}
.x1d_c00406{left:327.373333pt;}
.x7_c00406{left:371.013333pt;}
.x1c_c00406{left:376.973333pt;}
.x1a_c00406{left:382.906667pt;}
.x18_c00406{left:385.146667pt;}
.x16_c00406{left:402.573333pt;}
.xf_c00406{left:413.626667pt;}
.x10_c00406{left:430.653333pt;}
.x1e_c00406{left:443.200000pt;}
.x1b_c00406{left:452.173333pt;}
.x11_c00406{left:464.506667pt;}
.x12_c00406{left:546.933333pt;}
.x13_c00406{left:556.346667pt;}
.x9_c00406{left:557.560000pt;}
}





/* 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_c00407 {
    display:none;
  }
  .loading-indicator_c00407.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00407 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_c00407 { 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_c00407" -> "#page-container .classname_c00407")
 */
.pf_c00407 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00407 { /* 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_c00407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00407 { /* 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_c00407 { /* 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_c00407 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00407 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00407 {overflow:visible;}
  }
}
.c_c00407 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00407 { /* 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_c00407:after { /* webkit #35443 */
  content: '';
}
.t_c00407:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00407 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 */
}
.__c00407 { /* 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_c00407 { /* info for Javascript */
  display:none;
}
.l_c00407 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00407 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00407 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00407: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_c00407 {
    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_c00407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00407.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_c00407 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00407{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00407;src:url('chunks/assets/font_8dcfeb8332b8a4a6aa6477bf.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.284668;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_c00407;src:url('chunks/assets/font_e262527d48fadd02e4ab9d8b.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;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_c00407;src:url('chunks/assets/font_8adb1502c81b67fc9b565e83.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:0.666000;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_c00407;src:url('chunks/assets/font_823143e7689797c4e7bb98f8.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;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:ff5_c00407;src:url('chunks/assets/font_dbf9a7c66d6d196430790f7e.woff2')format("woff");}.ff5_c00407{font-family:ff5_c00407;line-height:1.284180;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;}
.m9_c00407{transform:matrix(0.105263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105263,0.000000,0.000000,0.250000,0,0);}
.m17_c00407{transform:matrix(0.107938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107938,0.000000,0.000000,0.250000,0,0);}
.m1f_c00407{transform:matrix(0.108236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108236,0.000000,0.000000,0.250000,0,0);}
.m29_c00407{transform:matrix(0.113905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113905,0.000000,0.000000,0.250000,0,0);}
.m7_c00407{transform:matrix(0.114445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114445,0.000000,0.000000,0.250000,0,0);}
.m28_c00407{transform:matrix(0.116902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116902,0.000000,0.000000,0.250000,0,0);}
.m27_c00407{transform:matrix(0.121741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121741,0.000000,0.000000,0.250000,0,0);}
.m3_c00407{transform:matrix(0.122317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122317,0.000000,0.000000,0.250000,0,0);}
.m18_c00407{transform:matrix(0.125705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125705,0.000000,0.000000,0.250000,0,0);}
.m30_c00407{transform:matrix(0.127355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127355,0.000000,0.000000,0.250000,0,0);}
.m1c_c00407{transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);}
.m2b_c00407{transform:matrix(0.135604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135604,0.000000,0.000000,0.250000,0,0);}
.m20_c00407{transform:matrix(0.138087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138087,0.000000,0.000000,0.250000,0,0);}
.mb_c00407{transform:matrix(0.141079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141079,0.000000,0.000000,0.250000,0,0);}
.m2d_c00407{transform:matrix(0.144548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144548,0.000000,0.000000,0.250000,0,0);}
.m16_c00407{transform:matrix(0.144643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144643,0.000000,0.000000,0.250000,0,0);}
.m10_c00407{transform:matrix(0.148868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148868,0.000000,0.000000,0.250000,0,0);}
.m1b_c00407{transform:matrix(0.161324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161324,0.000000,0.000000,0.250000,0,0);}
.m21_c00407{transform:matrix(0.165553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165553,0.000000,0.000000,0.250000,0,0);}
.m19_c00407{transform:matrix(0.174293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174293,0.000000,0.000000,0.250000,0,0);}
.mf_c00407{transform:matrix(0.194478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194478,0.000000,0.000000,0.250000,0,0);}
.me_c00407{transform:matrix(0.197449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197449,0.000000,0.000000,0.250000,0,0);}
.m13_c00407{transform:matrix(0.203997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203997,0.000000,0.000000,0.250000,0,0);}
.m31_c00407{transform:matrix(0.204693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204693,0.000000,0.000000,0.250000,0,0);}
.m8_c00407{transform:matrix(0.205769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205769,0.000000,0.000000,0.250000,0,0);}
.m1a_c00407{transform:matrix(0.207472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207472,0.000000,0.000000,0.250000,0,0);}
.m1e_c00407{transform:matrix(0.211551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211551,0.000000,0.000000,0.250000,0,0);}
.m2a_c00407{transform:matrix(0.213339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213339,0.000000,0.000000,0.250000,0,0);}
.m24_c00407{transform:matrix(0.232239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232239,0.000000,0.000000,0.250000,0,0);}
.m25_c00407{transform:matrix(0.241169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241169,0.000000,0.000000,0.250000,0,0);}
.m2e_c00407{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m33_c00407{transform:matrix(0.243818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243818,0.000000,0.000000,0.250000,0,0);}
.m6_c00407{transform:matrix(0.244427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244427,0.000000,0.000000,0.250000,0,0);}
.m15_c00407{transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);}
.m22_c00407{transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);}
.m1d_c00407{transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{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);}
.m2f_c00407{transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);}
.m23_c00407{transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);}
.m32_c00407{transform:matrix(0.250626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250626,0.000000,0.000000,0.250000,0,0);}
.m26_c00407{transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);}
.m2_c00407{transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);}
.ma_c00407{transform:matrix(0.261519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261519,0.000000,0.000000,0.250000,0,0);}
.m12_c00407{transform:matrix(0.267396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267396,0.000000,0.000000,0.250000,0,0);}
.m14_c00407{transform:matrix(0.269026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269026,0.000000,0.000000,0.250000,0,0);}
.md_c00407{transform:matrix(0.274622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274622,0.000000,0.000000,0.250000,0,0);}
.m2c_c00407{transform:matrix(0.289120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289120,0.000000,0.000000,0.250000,0,0);}
.m4_c00407{transform:matrix(0.290303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290303,0.000000,0.000000,0.250000,0,0);}
.m11_c00407{transform:matrix(0.306447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306447,0.000000,0.000000,0.250000,0,0);}
.m5_c00407{transform:matrix(0.308445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308445,0.000000,0.000000,0.250000,0,0);}
.m1_c00407{transform:matrix(0.314718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314718,0.000000,0.000000,0.250000,0,0);}
.mc_c00407{transform:matrix(0.325864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325864,0.000000,0.000000,0.250000,0,0);}
.m34_c00407{transform:matrix(0.387942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387942,0.000000,0.000000,0.250000,0,0);}
.v7_c00407{vertical-align:-49.020000px;}
.vb_c00407{vertical-align:-27.300000px;}
.v6_c00407{vertical-align:-20.220000px;}
.v4_c00407{vertical-align:-8.580000px;}
.v5_c00407{vertical-align:-4.260000px;}
.v3_c00407{vertical-align:-1.448400px;}
.v0_c00407{vertical-align:0.000000px;}
.v1_c00407{vertical-align:1.440000px;}
.v2_c00407{vertical-align:2.880000px;}
.v9_c00407{vertical-align:13.020000px;}
.v8_c00407{vertical-align:18.720000px;}
.va_c00407{vertical-align:151.140000px;}
.ls2f_c00407{letter-spacing:-6.195000px;}
.ls2e_c00407{letter-spacing:-5.439000px;}
.ls28_c00407{letter-spacing:-5.250000px;}
.ls30_c00407{letter-spacing:-4.452021px;}
.ls13_c00407{letter-spacing:-4.431000px;}
.ls20_c00407{letter-spacing:-4.011000px;}
.ls22_c00407{letter-spacing:-3.843000px;}
.ls35_c00407{letter-spacing:-3.801000px;}
.ls26_c00407{letter-spacing:-3.591000px;}
.ls10_c00407{letter-spacing:-3.465000px;}
.ls34_c00407{letter-spacing:-3.255000px;}
.ls1b_c00407{letter-spacing:-2.163000px;}
.ls12_c00407{letter-spacing:-2.016000px;}
.ls19_c00407{letter-spacing:-1.998720px;}
.ls32_c00407{letter-spacing:-1.953000px;}
.ls15_c00407{letter-spacing:-1.932000px;}
.ls24_c00407{letter-spacing:-1.848000px;}
.ls2b_c00407{letter-spacing:-1.805760px;}
.ls14_c00407{letter-spacing:-1.791360px;}
.ls16_c00407{letter-spacing:-1.785000px;}
.ls27_c00407{letter-spacing:-1.764000px;}
.ls23_c00407{letter-spacing:-1.638021px;}
.ls2c_c00407{letter-spacing:-1.627560px;}
.ls3f_c00407{letter-spacing:-1.568160px;}
.ls45_c00407{letter-spacing:-1.553640px;}
.ls1a_c00407{letter-spacing:-1.533021px;}
.ls2d_c00407{letter-spacing:-1.491000px;}
.ls3c_c00407{letter-spacing:-1.488300px;}
.ls1f_c00407{letter-spacing:-1.470000px;}
.ls1c_c00407{letter-spacing:-1.441440px;}
.ls29_c00407{letter-spacing:-1.428021px;}
.ls25_c00407{letter-spacing:-1.365021px;}
.lse_c00407{letter-spacing:-1.069200px;}
.ls40_c00407{letter-spacing:-0.762300px;}
.ls3d_c00407{letter-spacing:-0.580800px;}
.ls38_c00407{letter-spacing:-0.368280px;}
.ls3e_c00407{letter-spacing:-0.363000px;}
.ls41_c00407{letter-spacing:-0.275880px;}
.ls42_c00407{letter-spacing:-0.254100px;}
.ls44_c00407{letter-spacing:-0.225060px;}
.ls43_c00407{letter-spacing:-0.145200px;}
.ls1e_c00407{letter-spacing:-0.025920px;}
.lsd_c00407{letter-spacing:0.000000px;}
.ls3a_c00407{letter-spacing:0.032400px;}
.lsb_c00407{letter-spacing:0.094380px;}
.lsc_c00407{letter-spacing:0.114242px;}
.ls36_c00407{letter-spacing:0.162960px;}
.ls0_c00407{letter-spacing:0.459000px;}
.lsa_c00407{letter-spacing:0.561600px;}
.ls2a_c00407{letter-spacing:0.576008px;}
.ls6_c00407{letter-spacing:0.762540px;}
.ls21_c00407{letter-spacing:0.807840px;}
.ls46_c00407{letter-spacing:1.038180px;}
.ls3_c00407{letter-spacing:1.197060px;}
.ls39_c00407{letter-spacing:1.318680px;}
.ls8_c00407{letter-spacing:1.375980px;}
.ls5_c00407{letter-spacing:1.478280px;}
.ls4_c00407{letter-spacing:1.513200px;}
.ls31_c00407{letter-spacing:1.560000px;}
.ls17_c00407{letter-spacing:1.710000px;}
.ls1_c00407{letter-spacing:1.857360px;}
.ls2_c00407{letter-spacing:1.917000px;}
.ls11_c00407{letter-spacing:1.950030px;}
.ls7_c00407{letter-spacing:2.130000px;}
.ls18_c00407{letter-spacing:2.160000px;}
.ls1d_c00407{letter-spacing:2.310000px;}
.lsf_c00407{letter-spacing:2.610000px;}
.ls3b_c00407{letter-spacing:2.700000px;}
.ls37_c00407{letter-spacing:2.910000px;}
.ls33_c00407{letter-spacing:3.210000px;}
.ls9_c00407{letter-spacing:14.869980px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{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__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00407{word-spacing:0.000000px;}
._14_c00407{margin-left:-59.271120px;}
._f_c00407{margin-left:-4.581977px;}
._0_c00407{width:1.500000px;}
._1b_c00407{width:4.060800px;}
._1e_c00407{width:5.984340px;}
._1_c00407{width:7.636800px;}
._1d_c00407{width:9.510600px;}
._1c_c00407{width:12.460140px;}
._13_c00407{width:14.671200px;}
._1f_c00407{width:15.864060px;}
._2_c00407{width:19.278000px;}
._5_c00407{width:21.871200px;}
._8_c00407{width:24.716760px;}
._d_c00407{width:30.806023px;}
._7_c00407{width:134.488200px;}
._4_c00407{width:135.894000px;}
._6_c00407{width:142.470000px;}
._3_c00407{width:143.910000px;}
._9_c00407{width:145.350000px;}
._19_c00407{width:156.001200px;}
._12_c00407{width:158.855400px;}
._11_c00407{width:160.474200px;}
._18_c00407{width:161.880000px;}
._1a_c00407{width:163.341180px;}
._e_c00407{width:272.230080px;}
._c_c00407{width:449.765520px;}
._b_c00407{width:473.396160px;}
._15_c00407{width:630.989550px;}
._a_c00407{width:1591.219200px;}
._17_c00407{width:1619.078400px;}
._10_c00407{width:1623.052800px;}
._16_c00407{width:1638.086400px;}
.fc0_c00407{color:transparent;}
.fs2d_c00407{font-size:21.000600px;}
.fs31_c00407{font-size:31.200000px;}
.fs18_c00407{font-size:32.400600px;}
.fsf_c00407{font-size:34.200000px;}
.fs7_c00407{font-size:39.000600px;}
.fs0_c00407{font-size:40.800600px;}
.fs19_c00407{font-size:42.000000px;}
.fs4_c00407{font-size:42.600000px;}
.fs10_c00407{font-size:43.200000px;}
.fs12_c00407{font-size:43.800600px;}
.fs14_c00407{font-size:44.640600px;}
.fs24_c00407{font-size:45.000600px;}
.fs17_c00407{font-size:46.200000px;}
.fs1f_c00407{font-size:46.800600px;}
.fs21_c00407{font-size:50.400000px;}
.fsd_c00407{font-size:51.000000px;}
.fs2_c00407{font-size:52.200000px;}
.fs1c_c00407{font-size:52.800000px;}
.fs1_c00407{font-size:54.000000px;}
.fs15_c00407{font-size:54.600000px;}
.fsb_c00407{font-size:54.720000px;}
.fsa_c00407{font-size:55.200000px;}
.fs32_c00407{font-size:55.800000px;}
.fs8_c00407{font-size:57.600000px;}
.fs26_c00407{font-size:58.200000px;}
.fs28_c00407{font-size:59.400000px;}
.fs3_c00407{font-size:61.800000px;}
.fs33_c00407{font-size:64.200000px;}
.fs39_c00407{font-size:67.200000px;}
.fsc_c00407{font-size:70.200000px;}
.fs37_c00407{font-size:72.600000px;}
.fs38_c00407{font-size:73.800000px;}
.fs5_c00407{font-size:76.800000px;}
.fs35_c00407{font-size:93.000000px;}
.fs22_c00407{font-size:95.400000px;}
.fs6_c00407{font-size:99.000000px;}
.fs13_c00407{font-size:102.000000px;}
.fs20_c00407{font-size:102.600000px;}
.fse_c00407{font-size:106.800000px;}
.fs34_c00407{font-size:108.000000px;}
.fs36_c00407{font-size:108.600000px;}
.fs1e_c00407{font-size:109.800000px;}
.fs1d_c00407{font-size:114.000000px;}
.fs1b_c00407{font-size:114.600000px;}
.fs9_c00407{font-size:126.600000px;}
.fs2f_c00407{font-size:127.200600px;}
.fs11_c00407{font-size:141.600000px;}
.fs23_c00407{font-size:150.000000px;}
.fs25_c00407{font-size:151.200600px;}
.fs29_c00407{font-size:155.400000px;}
.fs27_c00407{font-size:157.200600px;}
.fs30_c00407{font-size:162.600000px;}
.fs2a_c00407{font-size:163.800000px;}
.fs16_c00407{font-size:172.200600px;}
.fs2c_c00407{font-size:177.000000px;}
.fs1a_c00407{font-size:184.800000px;}
.fs2e_c00407{font-size:361.800000px;}
.fs2b_c00407{font-size:420.000000px;}
.y0_c00407{bottom:0.000000px;}
.y60_c00407{bottom:173.161350px;}
.y5f_c00407{bottom:194.415000px;}
.y5e_c00407{bottom:314.295000px;}
.y5b_c00407{bottom:342.375000px;}
.y5d_c00407{bottom:342.720000px;}
.y5c_c00407{bottom:343.095000px;}
.y59_c00407{bottom:352.455000px;}
.y5a_c00407{bottom:352.800000px;}
.y57_c00407{bottom:363.255000px;}
.y58_c00407{bottom:364.695000px;}
.y56_c00407{bottom:402.855000px;}
.y55_c00407{bottom:420.855000px;}
.y54_c00407{bottom:432.720000px;}
.y53_c00407{bottom:447.480000px;}
.y52_c00407{bottom:453.615000px;}
.y51_c00407{bottom:462.615000px;}
.y4f_c00407{bottom:466.200000px;}
.y50_c00407{bottom:472.320000px;}
.y4e_c00407{bottom:475.935000px;}
.y4d_c00407{bottom:482.775000px;}
.y4c_c00407{bottom:496.095000px;}
.y4a_c00407{bottom:504.015000px;}
.y4b_c00407{bottom:504.375000px;}
.y49_c00407{bottom:506.175000px;}
.y48_c00407{bottom:521.640000px;}
.y47_c00407{bottom:527.400000px;}
.y3f_c00407{bottom:534.615000px;}
.y45_c00407{bottom:534.975000px;}
.y3c_c00407{bottom:536.055000px;}
.y44_c00407{bottom:542.535000px;}
.y46_c00407{bottom:544.695000px;}
.y3b_c00407{bottom:549.015000px;}
.y43_c00407{bottom:555.135000px;}
.y40_c00407{bottom:574.935000px;}
.y41_c00407{bottom:583.200000px;}
.y42_c00407{bottom:584.295000px;}
.y3d_c00407{bottom:598.320000px;}
.y3e_c00407{bottom:613.095000px;}
.y39_c00407{bottom:618.480000px;}
.y3a_c00407{bottom:618.855000px;}
.y37_c00407{bottom:658.800000px;}
.y38_c00407{bottom:659.175000px;}
.y36_c00407{bottom:669.240000px;}
.y35_c00407{bottom:675.375000px;}
.y34_c00407{bottom:696.240000px;}
.y33_c00407{bottom:698.055000px;}
.y32_c00407{bottom:708.135000px;}
.y31_c00407{bottom:710.295000px;}
.y2f_c00407{bottom:717.480000px;}
.y2d_c00407{bottom:720.015000px;}
.y30_c00407{bottom:720.375000px;}
.y2c_c00407{bottom:721.455000px;}
.y2e_c00407{bottom:723.615000px;}
.y2b_c00407{bottom:735.855000px;}
.y2a_c00407{bottom:738.375000px;}
.y28_c00407{bottom:740.535000px;}
.y29_c00407{bottom:746.640000px;}
.y27_c00407{bottom:750.615000px;}
.y24_c00407{bottom:754.935000px;}
.y26_c00407{bottom:758.535000px;}
.y25_c00407{bottom:761.400000px;}
.y1f_c00407{bottom:770.055000px;}
.y20_c00407{bottom:770.400000px;}
.y23_c00407{bottom:771.135000px;}
.y22_c00407{bottom:772.560000px;}
.y21_c00407{bottom:775.080000px;}
.y1e_c00407{bottom:781.200000px;}
.y1c_c00407{bottom:785.535000px;}
.y1d_c00407{bottom:786.975000px;}
.y1b_c00407{bottom:790.560000px;}
.y1a_c00407{bottom:796.335000px;}
.y19_c00407{bottom:801.015000px;}
.y18_c00407{bottom:805.695000px;}
.y17_c00407{bottom:809.655000px;}
.y16_c00407{bottom:813.975000px;}
.y14_c00407{bottom:820.815000px;}
.y15_c00407{bottom:821.535000px;}
.y13_c00407{bottom:823.695000px;}
.y11_c00407{bottom:830.535000px;}
.y12_c00407{bottom:836.280000px;}
.y10_c00407{bottom:839.535000px;}
.ye_c00407{bottom:845.280000px;}
.yf_c00407{bottom:849.240000px;}
.yd_c00407{bottom:858.240000px;}
.yc_c00407{bottom:860.055000px;}
.y9_c00407{bottom:871.200000px;}
.yb_c00407{bottom:871.920000px;}
.ya_c00407{bottom:874.815000px;}
.y8_c00407{bottom:887.055000px;}
.y7_c00407{bottom:899.655000px;}
.y6_c00407{bottom:912.600000px;}
.y5_c00407{bottom:921.975000px;}
.y4_c00407{bottom:933.495000px;}
.y3_c00407{bottom:934.560000px;}
.y2_c00407{bottom:958.335000px;}
.y1_c00407{bottom:966.600000px;}
.h31_c00407{height:20.610940px;}
.h18_c00407{height:29.730640px;}
.h35_c00407{height:32.540625px;}
.h1c_c00407{height:33.792813px;}
.h11_c00407{height:35.669531px;}
.hd_c00407{height:36.443520px;}
.h2_c00407{height:40.043558px;}
.h9_c00407{height:40.676407px;}
.h6_c00407{height:41.809570px;}
.h28_c00407{height:42.553751px;}
.h3e_c00407{height:43.172770px;}
.h2c_c00407{height:43.300570px;}
.h1d_c00407{height:43.804688px;}
.h12_c00407{height:45.056250px;}
.h14_c00407{height:45.682657px;}
.h29_c00407{height:46.934220px;}
.h1b_c00407{height:48.185156px;}
.h23_c00407{height:48.811563px;}
.h16_c00407{height:50.053711px;}
.h25_c00407{height:52.565625px;}
.hf_c00407{height:53.191406px;}
.h4_c00407{height:54.442969px;}
.h36_c00407{height:54.764648px;}
.h20_c00407{height:55.068750px;}
.h3_c00407{height:56.320312px;}
.ha_c00407{height:56.531250px;}
.hc_c00407{height:57.571875px;}
.h3b_c00407{height:57.913650px;}
.h2b_c00407{height:58.028850px;}
.h1a_c00407{height:60.653320px;}
.h3c_c00407{height:60.700781px;}
.h3d_c00407{height:61.952344px;}
.h5_c00407{height:63.533320px;}
.h15_c00407{height:64.455469px;}
.h37_c00407{height:66.958594px;}
.h40_c00407{height:71.252930px;}
.h3f_c00407{height:72.394629px;}
.he_c00407{height:73.216406px;}
.h7_c00407{height:78.216600px;}
.h39_c00407{height:96.996094px;}
.h8_c00407{height:97.163086px;}
.h26_c00407{height:99.499219px;}
.h17_c00407{height:100.107422px;}
.h38_c00407{height:105.996094px;}
.h3a_c00407{height:106.584961px;}
.h24_c00407{height:107.008594px;}
.h10_c00407{height:111.389063px;}
.h21_c00407{height:111.884766px;}
.h22_c00407{height:114.517969px;}
.h13_c00407{height:118.752656px;}
.h1f_c00407{height:119.524219px;}
.hb_c00407{height:124.250977px;}
.h33_c00407{height:124.840433px;}
.h19_c00407{height:130.579845px;}
.h2d_c00407{height:152.516602px;}
.h27_c00407{height:156.445312px;}
.h2a_c00407{height:165.335313px;}
.h34_c00407{height:169.586719px;}
.h2e_c00407{height:170.838281px;}
.h30_c00407{height:184.605469px;}
.h1e_c00407{height:192.740625px;}
.h32_c00407{height:354.910254px;}
.h2f_c00407{height:438.046875px;}
.h1_c00407{height:1263.000000px;}
.h0_c00407{height:1263.240000px;}
.w1_c00407{width:892.500000px;}
.w0_c00407{width:892.800000px;}
.x0_c00407{left:0.000000px;}
.x3b_c00407{left:95.685000px;}
.x3c_c00407{left:96.937350px;}
.x32_c00407{left:175.020000px;}
.xa_c00407{left:176.100000px;}
.x34_c00407{left:178.335000px;}
.xb_c00407{left:179.595000px;}
.x23_c00407{left:198.585000px;}
.x8_c00407{left:204.750000px;}
.x6_c00407{left:212.220000px;}
.x2b_c00407{left:221.865000px;}
.x24_c00407{left:223.185000px;}
.x4_c00407{left:225.210000px;}
.x22_c00407{left:246.720000px;}
.x20_c00407{left:252.240000px;}
.x1e_c00407{left:257.685000px;}
.x1c_c00407{left:265.410000px;}
.x1a_c00407{left:274.125000px;}
.x25_c00407{left:277.920000px;}
.x2c_c00407{left:281.970000px;}
.x18_c00407{left:284.025000px;}
.x30_c00407{left:285.180000px;}
.x37_c00407{left:287.100000px;}
.x16_c00407{left:295.950000px;}
.x14_c00407{left:307.020000px;}
.x38_c00407{left:308.205000px;}
.x12_c00407{left:317.460000px;}
.x11_c00407{left:323.295000px;}
.x2_c00407{left:331.725000px;}
.x2d_c00407{left:336.420000px;}
.x3a_c00407{left:337.590000px;}
.xd_c00407{left:346.620000px;}
.x26_c00407{left:352.080000px;}
.x2e_c00407{left:353.415000px;}
.x2f_c00407{left:364.320000px;}
.x35_c00407{left:402.045000px;}
.x21_c00407{left:405.060000px;}
.x1f_c00407{left:410.970000px;}
.x1d_c00407{left:415.785000px;}
.x1b_c00407{left:420.855000px;}
.x19_c00407{left:424.215000px;}
.x17_c00407{left:429.510000px;}
.x1_c00407{left:436.920000px;}
.x15_c00407{left:437.955000px;}
.x13_c00407{left:443.295000px;}
.x3_c00407{left:454.035000px;}
.x10_c00407{left:456.795000px;}
.x27_c00407{left:460.020000px;}
.xf_c00407{left:461.655000px;}
.xe_c00407{left:467.340000px;}
.xc_c00407{left:470.595000px;}
.x7_c00407{left:473.145000px;}
.x28_c00407{left:479.505000px;}
.x2a_c00407{left:529.455000px;}
.x39_c00407{left:553.560000px;}
.x36_c00407{left:566.490000px;}
.x33_c00407{left:578.010000px;}
.x31_c00407{left:585.870000px;}
.x5_c00407{left:587.415000px;}
.x29_c00407{left:589.260000px;}
.x9_c00407{left:624.150000px;}
@media print{
.v7_c00407{vertical-align:-43.573333pt;}
.vb_c00407{vertical-align:-24.266667pt;}
.v6_c00407{vertical-align:-17.973333pt;}
.v4_c00407{vertical-align:-7.626667pt;}
.v5_c00407{vertical-align:-3.786667pt;}
.v3_c00407{vertical-align:-1.287467pt;}
.v0_c00407{vertical-align:0.000000pt;}
.v1_c00407{vertical-align:1.280000pt;}
.v2_c00407{vertical-align:2.560000pt;}
.v9_c00407{vertical-align:11.573333pt;}
.v8_c00407{vertical-align:16.640000pt;}
.va_c00407{vertical-align:134.346667pt;}
.ls2f_c00407{letter-spacing:-5.506667pt;}
.ls2e_c00407{letter-spacing:-4.834667pt;}
.ls28_c00407{letter-spacing:-4.666667pt;}
.ls30_c00407{letter-spacing:-3.957352pt;}
.ls13_c00407{letter-spacing:-3.938667pt;}
.ls20_c00407{letter-spacing:-3.565333pt;}
.ls22_c00407{letter-spacing:-3.416000pt;}
.ls35_c00407{letter-spacing:-3.378667pt;}
.ls26_c00407{letter-spacing:-3.192000pt;}
.ls10_c00407{letter-spacing:-3.080000pt;}
.ls34_c00407{letter-spacing:-2.893333pt;}
.ls1b_c00407{letter-spacing:-1.922667pt;}
.ls12_c00407{letter-spacing:-1.792000pt;}
.ls19_c00407{letter-spacing:-1.776640pt;}
.ls32_c00407{letter-spacing:-1.736000pt;}
.ls15_c00407{letter-spacing:-1.717333pt;}
.ls24_c00407{letter-spacing:-1.642667pt;}
.ls2b_c00407{letter-spacing:-1.605120pt;}
.ls14_c00407{letter-spacing:-1.592320pt;}
.ls16_c00407{letter-spacing:-1.586667pt;}
.ls27_c00407{letter-spacing:-1.568000pt;}
.ls23_c00407{letter-spacing:-1.456019pt;}
.ls2c_c00407{letter-spacing:-1.446720pt;}
.ls3f_c00407{letter-spacing:-1.393920pt;}
.ls45_c00407{letter-spacing:-1.381013pt;}
.ls1a_c00407{letter-spacing:-1.362685pt;}
.ls2d_c00407{letter-spacing:-1.325333pt;}
.ls3c_c00407{letter-spacing:-1.322933pt;}
.ls1f_c00407{letter-spacing:-1.306667pt;}
.ls1c_c00407{letter-spacing:-1.281280pt;}
.ls29_c00407{letter-spacing:-1.269352pt;}
.ls25_c00407{letter-spacing:-1.213352pt;}
.lse_c00407{letter-spacing:-0.950400pt;}
.ls40_c00407{letter-spacing:-0.677600pt;}
.ls3d_c00407{letter-spacing:-0.516267pt;}
.ls38_c00407{letter-spacing:-0.327360pt;}
.ls3e_c00407{letter-spacing:-0.322667pt;}
.ls41_c00407{letter-spacing:-0.245227pt;}
.ls42_c00407{letter-spacing:-0.225867pt;}
.ls44_c00407{letter-spacing:-0.200053pt;}
.ls43_c00407{letter-spacing:-0.129067pt;}
.ls1e_c00407{letter-spacing:-0.023040pt;}
.lsd_c00407{letter-spacing:0.000000pt;}
.ls3a_c00407{letter-spacing:0.028800pt;}
.lsb_c00407{letter-spacing:0.083893pt;}
.lsc_c00407{letter-spacing:0.101548pt;}
.ls36_c00407{letter-spacing:0.144853pt;}
.ls0_c00407{letter-spacing:0.408000pt;}
.lsa_c00407{letter-spacing:0.499200pt;}
.ls2a_c00407{letter-spacing:0.512007pt;}
.ls6_c00407{letter-spacing:0.677813pt;}
.ls21_c00407{letter-spacing:0.718080pt;}
.ls46_c00407{letter-spacing:0.922827pt;}
.ls3_c00407{letter-spacing:1.064053pt;}
.ls39_c00407{letter-spacing:1.172160pt;}
.ls8_c00407{letter-spacing:1.223093pt;}
.ls5_c00407{letter-spacing:1.314027pt;}
.ls4_c00407{letter-spacing:1.345067pt;}
.ls31_c00407{letter-spacing:1.386667pt;}
.ls17_c00407{letter-spacing:1.520000pt;}
.ls1_c00407{letter-spacing:1.650987pt;}
.ls2_c00407{letter-spacing:1.704000pt;}
.ls11_c00407{letter-spacing:1.733360pt;}
.ls7_c00407{letter-spacing:1.893333pt;}
.ls18_c00407{letter-spacing:1.920000pt;}
.ls1d_c00407{letter-spacing:2.053333pt;}
.lsf_c00407{letter-spacing:2.320000pt;}
.ls3b_c00407{letter-spacing:2.400000pt;}
.ls37_c00407{letter-spacing:2.586667pt;}
.ls33_c00407{letter-spacing:2.853333pt;}
.ls9_c00407{letter-spacing:13.217760pt;}
.ws0_c00407{word-spacing:0.000000pt;}
._14_c00407{margin-left:-52.685440pt;}
._f_c00407{margin-left:-4.072868pt;}
._0_c00407{width:1.333333pt;}
._1b_c00407{width:3.609600pt;}
._1e_c00407{width:5.319413pt;}
._1_c00407{width:6.788267pt;}
._1d_c00407{width:8.453867pt;}
._1c_c00407{width:11.075680pt;}
._13_c00407{width:13.041067pt;}
._1f_c00407{width:14.101387pt;}
._2_c00407{width:17.136000pt;}
._5_c00407{width:19.441067pt;}
._8_c00407{width:21.970453pt;}
._d_c00407{width:27.383132pt;}
._7_c00407{width:119.545067pt;}
._4_c00407{width:120.794667pt;}
._6_c00407{width:126.640000pt;}
._3_c00407{width:127.920000pt;}
._9_c00407{width:129.200000pt;}
._19_c00407{width:138.667733pt;}
._12_c00407{width:141.204800pt;}
._11_c00407{width:142.643733pt;}
._18_c00407{width:143.893333pt;}
._1a_c00407{width:145.192160pt;}
._e_c00407{width:241.982293pt;}
._c_c00407{width:399.791573pt;}
._b_c00407{width:420.796587pt;}
._15_c00407{width:560.879600pt;}
._a_c00407{width:1414.417067pt;}
._17_c00407{width:1439.180800pt;}
._10_c00407{width:1442.713600pt;}
._16_c00407{width:1456.076800pt;}
.fs2d_c00407{font-size:18.667200pt;}
.fs31_c00407{font-size:27.733333pt;}
.fs18_c00407{font-size:28.800533pt;}
.fsf_c00407{font-size:30.400000pt;}
.fs7_c00407{font-size:34.667200pt;}
.fs0_c00407{font-size:36.267200pt;}
.fs19_c00407{font-size:37.333333pt;}
.fs4_c00407{font-size:37.866667pt;}
.fs10_c00407{font-size:38.400000pt;}
.fs12_c00407{font-size:38.933867pt;}
.fs14_c00407{font-size:39.680533pt;}
.fs24_c00407{font-size:40.000533pt;}
.fs17_c00407{font-size:41.066667pt;}
.fs1f_c00407{font-size:41.600533pt;}
.fs21_c00407{font-size:44.800000pt;}
.fsd_c00407{font-size:45.333333pt;}
.fs2_c00407{font-size:46.400000pt;}
.fs1c_c00407{font-size:46.933333pt;}
.fs1_c00407{font-size:48.000000pt;}
.fs15_c00407{font-size:48.533333pt;}
.fsb_c00407{font-size:48.640000pt;}
.fsa_c00407{font-size:49.066667pt;}
.fs32_c00407{font-size:49.600000pt;}
.fs8_c00407{font-size:51.200000pt;}
.fs26_c00407{font-size:51.733333pt;}
.fs28_c00407{font-size:52.800000pt;}
.fs3_c00407{font-size:54.933333pt;}
.fs33_c00407{font-size:57.066667pt;}
.fs39_c00407{font-size:59.733333pt;}
.fsc_c00407{font-size:62.400000pt;}
.fs37_c00407{font-size:64.533333pt;}
.fs38_c00407{font-size:65.600000pt;}
.fs5_c00407{font-size:68.266667pt;}
.fs35_c00407{font-size:82.666667pt;}
.fs22_c00407{font-size:84.800000pt;}
.fs6_c00407{font-size:88.000000pt;}
.fs13_c00407{font-size:90.666667pt;}
.fs20_c00407{font-size:91.200000pt;}
.fse_c00407{font-size:94.933333pt;}
.fs34_c00407{font-size:96.000000pt;}
.fs36_c00407{font-size:96.533333pt;}
.fs1e_c00407{font-size:97.600000pt;}
.fs1d_c00407{font-size:101.333333pt;}
.fs1b_c00407{font-size:101.866667pt;}
.fs9_c00407{font-size:112.533333pt;}
.fs2f_c00407{font-size:113.067200pt;}
.fs11_c00407{font-size:125.866667pt;}
.fs23_c00407{font-size:133.333333pt;}
.fs25_c00407{font-size:134.400533pt;}
.fs29_c00407{font-size:138.133333pt;}
.fs27_c00407{font-size:139.733867pt;}
.fs30_c00407{font-size:144.533333pt;}
.fs2a_c00407{font-size:145.600000pt;}
.fs16_c00407{font-size:153.067200pt;}
.fs2c_c00407{font-size:157.333333pt;}
.fs1a_c00407{font-size:164.266667pt;}
.fs2e_c00407{font-size:321.600000pt;}
.fs2b_c00407{font-size:373.333333pt;}
.y0_c00407{bottom:0.000000pt;}
.y60_c00407{bottom:153.921200pt;}
.y5f_c00407{bottom:172.813333pt;}
.y5e_c00407{bottom:279.373333pt;}
.y5b_c00407{bottom:304.333333pt;}
.y5d_c00407{bottom:304.640000pt;}
.y5c_c00407{bottom:304.973333pt;}
.y59_c00407{bottom:313.293333pt;}
.y5a_c00407{bottom:313.600000pt;}
.y57_c00407{bottom:322.893333pt;}
.y58_c00407{bottom:324.173333pt;}
.y56_c00407{bottom:358.093333pt;}
.y55_c00407{bottom:374.093333pt;}
.y54_c00407{bottom:384.640000pt;}
.y53_c00407{bottom:397.760000pt;}
.y52_c00407{bottom:403.213333pt;}
.y51_c00407{bottom:411.213333pt;}
.y4f_c00407{bottom:414.400000pt;}
.y50_c00407{bottom:419.840000pt;}
.y4e_c00407{bottom:423.053333pt;}
.y4d_c00407{bottom:429.133333pt;}
.y4c_c00407{bottom:440.973333pt;}
.y4a_c00407{bottom:448.013333pt;}
.y4b_c00407{bottom:448.333333pt;}
.y49_c00407{bottom:449.933333pt;}
.y48_c00407{bottom:463.680000pt;}
.y47_c00407{bottom:468.800000pt;}
.y3f_c00407{bottom:475.213333pt;}
.y45_c00407{bottom:475.533333pt;}
.y3c_c00407{bottom:476.493333pt;}
.y44_c00407{bottom:482.253333pt;}
.y46_c00407{bottom:484.173333pt;}
.y3b_c00407{bottom:488.013333pt;}
.y43_c00407{bottom:493.453333pt;}
.y40_c00407{bottom:511.053333pt;}
.y41_c00407{bottom:518.400000pt;}
.y42_c00407{bottom:519.373333pt;}
.y3d_c00407{bottom:531.840000pt;}
.y3e_c00407{bottom:544.973333pt;}
.y39_c00407{bottom:549.760000pt;}
.y3a_c00407{bottom:550.093333pt;}
.y37_c00407{bottom:585.600000pt;}
.y38_c00407{bottom:585.933333pt;}
.y36_c00407{bottom:594.880000pt;}
.y35_c00407{bottom:600.333333pt;}
.y34_c00407{bottom:618.880000pt;}
.y33_c00407{bottom:620.493333pt;}
.y32_c00407{bottom:629.453333pt;}
.y31_c00407{bottom:631.373333pt;}
.y2f_c00407{bottom:637.760000pt;}
.y2d_c00407{bottom:640.013333pt;}
.y30_c00407{bottom:640.333333pt;}
.y2c_c00407{bottom:641.293333pt;}
.y2e_c00407{bottom:643.213333pt;}
.y2b_c00407{bottom:654.093333pt;}
.y2a_c00407{bottom:656.333333pt;}
.y28_c00407{bottom:658.253333pt;}
.y29_c00407{bottom:663.680000pt;}
.y27_c00407{bottom:667.213333pt;}
.y24_c00407{bottom:671.053333pt;}
.y26_c00407{bottom:674.253333pt;}
.y25_c00407{bottom:676.800000pt;}
.y1f_c00407{bottom:684.493333pt;}
.y20_c00407{bottom:684.800000pt;}
.y23_c00407{bottom:685.453333pt;}
.y22_c00407{bottom:686.720000pt;}
.y21_c00407{bottom:688.960000pt;}
.y1e_c00407{bottom:694.400000pt;}
.y1c_c00407{bottom:698.253333pt;}
.y1d_c00407{bottom:699.533333pt;}
.y1b_c00407{bottom:702.720000pt;}
.y1a_c00407{bottom:707.853333pt;}
.y19_c00407{bottom:712.013333pt;}
.y18_c00407{bottom:716.173333pt;}
.y17_c00407{bottom:719.693333pt;}
.y16_c00407{bottom:723.533333pt;}
.y14_c00407{bottom:729.613333pt;}
.y15_c00407{bottom:730.253333pt;}
.y13_c00407{bottom:732.173333pt;}
.y11_c00407{bottom:738.253333pt;}
.y12_c00407{bottom:743.360000pt;}
.y10_c00407{bottom:746.253333pt;}
.ye_c00407{bottom:751.360000pt;}
.yf_c00407{bottom:754.880000pt;}
.yd_c00407{bottom:762.880000pt;}
.yc_c00407{bottom:764.493333pt;}
.y9_c00407{bottom:774.400000pt;}
.yb_c00407{bottom:775.040000pt;}
.ya_c00407{bottom:777.613333pt;}
.y8_c00407{bottom:788.493333pt;}
.y7_c00407{bottom:799.693333pt;}
.y6_c00407{bottom:811.200000pt;}
.y5_c00407{bottom:819.533333pt;}
.y4_c00407{bottom:829.773333pt;}
.y3_c00407{bottom:830.720000pt;}
.y2_c00407{bottom:851.853333pt;}
.y1_c00407{bottom:859.200000pt;}
.h31_c00407{height:18.320836pt;}
.h18_c00407{height:26.427235pt;}
.h35_c00407{height:28.925000pt;}
.h1c_c00407{height:30.038056pt;}
.h11_c00407{height:31.706250pt;}
.hd_c00407{height:32.394240pt;}
.h2_c00407{height:35.594273pt;}
.h9_c00407{height:36.156806pt;}
.h6_c00407{height:37.164062pt;}
.h28_c00407{height:37.825556pt;}
.h3e_c00407{height:38.375796pt;}
.h2c_c00407{height:38.489396pt;}
.h1d_c00407{height:38.937500pt;}
.h12_c00407{height:40.050000pt;}
.h14_c00407{height:40.606806pt;}
.h29_c00407{height:41.719306pt;}
.h1b_c00407{height:42.831250pt;}
.h23_c00407{height:43.388056pt;}
.h16_c00407{height:44.492188pt;}
.h25_c00407{height:46.725000pt;}
.hf_c00407{height:47.281250pt;}
.h4_c00407{height:48.393750pt;}
.h36_c00407{height:48.679688pt;}
.h20_c00407{height:48.950000pt;}
.h3_c00407{height:50.062500pt;}
.ha_c00407{height:50.250000pt;}
.hc_c00407{height:51.175000pt;}
.h3b_c00407{height:51.478800pt;}
.h2b_c00407{height:51.581200pt;}
.h1a_c00407{height:53.914062pt;}
.h3c_c00407{height:53.956250pt;}
.h3d_c00407{height:55.068750pt;}
.h5_c00407{height:56.474063pt;}
.h15_c00407{height:57.293750pt;}
.h37_c00407{height:59.518750pt;}
.h40_c00407{height:63.335938pt;}
.h3f_c00407{height:64.350781pt;}
.he_c00407{height:65.081250pt;}
.h7_c00407{height:69.525867pt;}
.h39_c00407{height:86.218750pt;}
.h8_c00407{height:86.367188pt;}
.h26_c00407{height:88.443750pt;}
.h17_c00407{height:88.984375pt;}
.h38_c00407{height:94.218750pt;}
.h3a_c00407{height:94.742188pt;}
.h24_c00407{height:95.118750pt;}
.h10_c00407{height:99.012500pt;}
.h21_c00407{height:99.453125pt;}
.h22_c00407{height:101.793750pt;}
.h13_c00407{height:105.557917pt;}
.h1f_c00407{height:106.243750pt;}
.hb_c00407{height:110.445312pt;}
.h33_c00407{height:110.969273pt;}
.h19_c00407{height:116.070973pt;}
.h2d_c00407{height:135.570312pt;}
.h27_c00407{height:139.062500pt;}
.h2a_c00407{height:146.964723pt;}
.h34_c00407{height:150.743750pt;}
.h2e_c00407{height:151.856250pt;}
.h30_c00407{height:164.093750pt;}
.h1e_c00407{height:171.325000pt;}
.h32_c00407{height:315.475781pt;}
.h2f_c00407{height:389.375000pt;}
.h1_c00407{height:1122.666667pt;}
.h0_c00407{height:1122.880000pt;}
.w1_c00407{width:793.333333pt;}
.w0_c00407{width:793.600000pt;}
.x0_c00407{left:0.000000pt;}
.x3b_c00407{left:85.053333pt;}
.x3c_c00407{left:86.166533pt;}
.x32_c00407{left:155.573333pt;}
.xa_c00407{left:156.533333pt;}
.x34_c00407{left:158.520000pt;}
.xb_c00407{left:159.640000pt;}
.x23_c00407{left:176.520000pt;}
.x8_c00407{left:182.000000pt;}
.x6_c00407{left:188.640000pt;}
.x2b_c00407{left:197.213333pt;}
.x24_c00407{left:198.386667pt;}
.x4_c00407{left:200.186667pt;}
.x22_c00407{left:219.306667pt;}
.x20_c00407{left:224.213333pt;}
.x1e_c00407{left:229.053333pt;}
.x1c_c00407{left:235.920000pt;}
.x1a_c00407{left:243.666667pt;}
.x25_c00407{left:247.040000pt;}
.x2c_c00407{left:250.640000pt;}
.x18_c00407{left:252.466667pt;}
.x30_c00407{left:253.493333pt;}
.x37_c00407{left:255.200000pt;}
.x16_c00407{left:263.066667pt;}
.x14_c00407{left:272.906667pt;}
.x38_c00407{left:273.960000pt;}
.x12_c00407{left:282.186667pt;}
.x11_c00407{left:287.373333pt;}
.x2_c00407{left:294.866667pt;}
.x2d_c00407{left:299.040000pt;}
.x3a_c00407{left:300.080000pt;}
.xd_c00407{left:308.106667pt;}
.x26_c00407{left:312.960000pt;}
.x2e_c00407{left:314.146667pt;}
.x2f_c00407{left:323.840000pt;}
.x35_c00407{left:357.373333pt;}
.x21_c00407{left:360.053333pt;}
.x1f_c00407{left:365.306667pt;}
.x1d_c00407{left:369.586667pt;}
.x1b_c00407{left:374.093333pt;}
.x19_c00407{left:377.080000pt;}
.x17_c00407{left:381.786667pt;}
.x1_c00407{left:388.373333pt;}
.x15_c00407{left:389.293333pt;}
.x13_c00407{left:394.040000pt;}
.x3_c00407{left:403.586667pt;}
.x10_c00407{left:406.040000pt;}
.x27_c00407{left:408.906667pt;}
.xf_c00407{left:410.360000pt;}
.xe_c00407{left:415.413333pt;}
.xc_c00407{left:418.306667pt;}
.x7_c00407{left:420.573333pt;}
.x28_c00407{left:426.226667pt;}
.x2a_c00407{left:470.626667pt;}
.x39_c00407{left:492.053333pt;}
.x36_c00407{left:503.546667pt;}
.x33_c00407{left:513.786667pt;}
.x31_c00407{left:520.773333pt;}
.x5_c00407{left:522.146667pt;}
.x29_c00407{left:523.786667pt;}
.x9_c00407{left:554.800000pt;}
}





/* 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_c00408 {
    display:none;
  }
  .loading-indicator_c00408.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00408 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_c00408 { 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_c00408" -> "#page-container .classname_c00408")
 */
.pf_c00408 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00408 { /* 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_c00408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00408 { /* 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_c00408 { /* 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_c00408 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00408 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00408 {overflow:visible;}
  }
}
.c_c00408 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00408 { /* 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_c00408:after { /* webkit #35443 */
  content: '';
}
.t_c00408:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00408 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 */
}
.__c00408 { /* 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_c00408 { /* info for Javascript */
  display:none;
}
.l_c00408 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00408 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00408 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00408: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_c00408 {
    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_c00408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00408.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_c00408 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00408{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00408;src:url('chunks/assets/font_4baba59c4d95b9c4ed09fa41.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.284668;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_c00408;src:url('chunks/assets/font_cd6f242b1d7aa3567f672309.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.284180;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_c00408;src:url('chunks/assets/font_118d5f988e2a32154ff82c7d.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;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:ff4_c00408;src:url('chunks/assets/font_7ddee3f9ac1ee82ae0f5b2c1.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:0.666000;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_c00408;src:url('chunks/assets/font_c423e76c52c7f26ade6fb169.woff2')format("woff");}.ff5_c00408{font-family:ff5_c00408;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;}
.m46_c00408{transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);}
.m6_c00408{transform:matrix(0.132989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132989,0.000000,0.000000,0.250000,0,0);}
.m55_c00408{transform:matrix(0.146880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146880,0.000000,0.000000,0.250000,0,0);}
.m7_c00408{transform:matrix(0.152194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152194,0.000000,0.000000,0.250000,0,0);}
.m19_c00408{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m20_c00408{transform:matrix(0.164865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164865,0.000000,0.000000,0.250000,0,0);}
.m17_c00408{transform:matrix(0.164920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164920,0.000000,0.000000,0.250000,0,0);}
.m14_c00408{transform:matrix(0.170841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170841,0.000000,0.000000,0.250000,0,0);}
.m1b_c00408{transform:matrix(0.172881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172881,0.000000,0.000000,0.250000,0,0);}
.m5_c00408{transform:matrix(0.182113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182113,0.000000,0.000000,0.250000,0,0);}
.m43_c00408{transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);}
.m45_c00408{transform:matrix(0.193479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193479,0.000000,0.000000,0.250000,0,0);}
.m3a_c00408{transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);}
.m21_c00408{transform:matrix(0.198579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198579,0.000000,0.000000,0.250000,0,0);}
.m44_c00408{transform:matrix(0.198748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198748,0.000000,0.000000,0.250000,0,0);}
.m38_c00408{transform:matrix(0.203854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203854,0.000000,0.000000,0.250000,0,0);}
.m5a_c00408{transform:matrix(0.207187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207187,0.000000,0.000000,0.250000,0,0);}
.m37_c00408{transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);}
.m39_c00408{transform:matrix(0.216197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216197,0.000000,0.000000,0.250000,0,0);}
.md_c00408{transform:matrix(0.217252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217252,0.000000,0.000000,0.250000,0,0);}
.m57_c00408{transform:matrix(0.219168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219168,0.000000,0.000000,0.250000,0,0);}
.m3d_c00408{transform:matrix(0.221064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221064,0.000000,0.000000,0.250000,0,0);}
.m1a_c00408{transform:matrix(0.221310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221310,0.000000,0.000000,0.250000,0,0);}
.m28_c00408{transform:matrix(0.221482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221482,0.000000,0.000000,0.250000,0,0);}
.m3_c00408{transform:matrix(0.223541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223541,0.000000,0.000000,0.250000,0,0);}
.m3c_c00408{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m32_c00408{transform:matrix(0.224969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224969,0.000000,0.000000,0.250000,0,0);}
.m25_c00408{transform:matrix(0.226471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226471,0.000000,0.000000,0.250000,0,0);}
.m11_c00408{transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);}
.m48_c00408{transform:matrix(0.229226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229226,0.000000,0.000000,0.250000,0,0);}
.m5b_c00408{transform:matrix(0.229983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229983,0.000000,0.000000,0.250000,0,0);}
.m23_c00408{transform:matrix(0.230473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230473,0.000000,0.000000,0.250000,0,0);}
.m47_c00408{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.mb_c00408{transform:matrix(0.231146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231146,0.000000,0.000000,0.250000,0,0);}
.m50_c00408{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m8_c00408{transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);}
.me_c00408{transform:matrix(0.237852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237852,0.000000,0.000000,0.250000,0,0);}
.m18_c00408{transform:matrix(0.238310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238310,0.000000,0.000000,0.250000,0,0);}
.m10_c00408{transform:matrix(0.240129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240129,0.000000,0.000000,0.250000,0,0);}
.mc_c00408{transform:matrix(0.240659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240659,0.000000,0.000000,0.250000,0,0);}
.m31_c00408{transform:matrix(0.241199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241199,0.000000,0.000000,0.250000,0,0);}
.m1f_c00408{transform:matrix(0.242799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242799,0.000000,0.000000,0.250000,0,0);}
.m9_c00408{transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);}
.mf_c00408{transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);}
.m58_c00408{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m41_c00408{transform:matrix(0.247641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247641,0.000000,0.000000,0.250000,0,0);}
.m2_c00408{transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);}
.m0_c00408{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);}
.m35_c00408{transform:matrix(0.251449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251449,0.000000,0.000000,0.250000,0,0);}
.m26_c00408{transform:matrix(0.252539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252539,0.000000,0.000000,0.250000,0,0);}
.m22_c00408{transform:matrix(0.254051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254051,0.000000,0.000000,0.250000,0,0);}
.m29_c00408{transform:matrix(0.255539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255539,0.000000,0.000000,0.250000,0,0);}
.m2f_c00408{transform:matrix(0.258497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258497,0.000000,0.000000,0.250000,0,0);}
.m52_c00408{transform:matrix(0.261683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261683,0.000000,0.000000,0.250000,0,0);}
.m24_c00408{transform:matrix(0.269288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269288,0.000000,0.000000,0.250000,0,0);}
.m36_c00408{transform:matrix(0.294395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294395,0.000000,0.000000,0.250000,0,0);}
.m33_c00408{transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);}
.m2d_c00408{transform:matrix(0.298313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298313,0.000000,0.000000,0.250000,0,0);}
.m3b_c00408{transform:matrix(0.298375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298375,0.000000,0.000000,0.250000,0,0);}
.m30_c00408{transform:matrix(0.299540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299540,0.000000,0.000000,0.250000,0,0);}
.m2e_c00408{transform:matrix(0.301776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301776,0.000000,0.000000,0.250000,0,0);}
.m56_c00408{transform:matrix(0.304336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304336,0.000000,0.000000,0.250000,0,0);}
.m3f_c00408{transform:matrix(0.305310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305310,0.000000,0.000000,0.250000,0,0);}
.m34_c00408{transform:matrix(0.306762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306762,0.000000,0.000000,0.250000,0,0);}
.m4f_c00408{transform:matrix(0.308093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308093,0.000000,0.000000,0.250000,0,0);}
.m40_c00408{transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);}
.m1_c00408{transform:matrix(0.310728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310728,0.000000,0.000000,0.250000,0,0);}
.m2a_c00408{transform:matrix(0.314775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314775,0.000000,0.000000,0.250000,0,0);}
.m51_c00408{transform:matrix(0.315489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315489,0.000000,0.000000,0.250000,0,0);}
.m59_c00408{transform:matrix(0.317614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317614,0.000000,0.000000,0.250000,0,0);}
.m42_c00408{transform:matrix(0.324548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324548,0.000000,0.000000,0.250000,0,0);}
.ma_c00408{transform:matrix(0.332434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332434,0.000000,0.000000,0.250000,0,0);}
.m12_c00408{transform:matrix(0.334222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334222,0.000000,0.000000,0.250000,0,0);}
.m49_c00408{transform:matrix(0.341614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341614,0.000000,0.000000,0.250000,0,0);}
.m4b_c00408{transform:matrix(0.343384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343384,0.000000,0.000000,0.250000,0,0);}
.m2b_c00408{transform:matrix(0.343644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343644,0.000000,0.000000,0.250000,0,0);}
.m13_c00408{transform:matrix(0.354101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354101,0.000000,0.000000,0.250000,0,0);}
.m27_c00408{transform:matrix(0.356957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356957,0.000000,0.000000,0.250000,0,0);}
.m1d_c00408{transform:matrix(0.369925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369925,0.000000,0.000000,0.250000,0,0);}
.m3e_c00408{transform:matrix(0.386027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386027,0.000000,0.000000,0.250000,0,0);}
.m4c_c00408{transform:matrix(0.406034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406034,0.000000,0.000000,0.250000,0,0);}
.m4a_c00408{transform:matrix(0.409675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409675,0.000000,0.000000,0.250000,0,0);}
.m2c_c00408{transform:matrix(0.410183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410183,0.000000,0.000000,0.250000,0,0);}
.m53_c00408{transform:matrix(0.416878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416878,0.000000,0.000000,0.250000,0,0);}
.m54_c00408{transform:matrix(0.417002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417002,0.000000,0.000000,0.250000,0,0);}
.m4d_c00408{transform:matrix(0.417358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417358,0.000000,0.000000,0.250000,0,0);}
.m16_c00408{transform:matrix(0.433288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433288,0.000000,0.000000,0.250000,0,0);}
.m1e_c00408{transform:matrix(0.443115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443115,0.000000,0.000000,0.250000,0,0);}
.m1c_c00408{transform:matrix(0.460287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460287,0.000000,0.000000,0.250000,0,0);}
.m4e_c00408{transform:matrix(0.463730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463730,0.000000,0.000000,0.250000,0,0);}
.m15_c00408{transform:matrix(0.468068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468068,0.000000,0.000000,0.250000,0,0);}
.m4_c00408{transform:matrix(1.006819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.006819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.006819,0.000000,0.000000,0.250000,0,0);}
.v2_c00408{vertical-align:-24.480000px;}
.v4_c00408{vertical-align:-23.100000px;}
.v5_c00408{vertical-align:-17.280000px;}
.vc_c00408{vertical-align:-14.389800px;}
.v8_c00408{vertical-align:-11.520000px;}
.v9_c00408{vertical-align:-8.640000px;}
.v6_c00408{vertical-align:-2.940000px;}
.v1_c00408{vertical-align:-1.421400px;}
.v0_c00408{vertical-align:0.000000px;}
.v3_c00408{vertical-align:1.380000px;}
.v7_c00408{vertical-align:2.880000px;}
.vb_c00408{vertical-align:12.949800px;}
.va_c00408{vertical-align:18.720000px;}
.ls68_c00408{letter-spacing:-4.116000px;}
.ls4b_c00408{letter-spacing:-3.024000px;}
.ls3f_c00408{letter-spacing:-2.814000px;}
.ls67_c00408{letter-spacing:-2.793000px;}
.ls36_c00408{letter-spacing:-2.604000px;}
.ls2f_c00408{letter-spacing:-2.457000px;}
.ls24_c00408{letter-spacing:-2.428920px;}
.ls39_c00408{letter-spacing:-2.373000px;}
.ls59_c00408{letter-spacing:-2.345880px;}
.ls43_c00408{letter-spacing:-2.331000px;}
.ls30_c00408{letter-spacing:-2.204280px;}
.ls3a_c00408{letter-spacing:-2.163000px;}
.ls65_c00408{letter-spacing:-1.974000px;}
.ls75_c00408{letter-spacing:-1.959420px;}
.ls6f_c00408{letter-spacing:-1.911960px;}
.ls35_c00408{letter-spacing:-1.825200px;}
.ls6b_c00408{letter-spacing:-1.819800px;}
.ls74_c00408{letter-spacing:-1.803480px;}
.ls44_c00408{letter-spacing:-1.739100px;}
.ls76_c00408{letter-spacing:-1.659021px;}
.ls69_c00408{letter-spacing:-1.657800px;}
.ls64_c00408{letter-spacing:-1.620420px;}
.ls52_c00408{letter-spacing:-1.594440px;}
.ls32_c00408{letter-spacing:-1.530360px;}
.ls42_c00408{letter-spacing:-1.491600px;}
.ls4c_c00408{letter-spacing:-1.344021px;}
.ls54_c00408{letter-spacing:-1.229820px;}
.ls5c_c00408{letter-spacing:-1.155021px;}
.ls46_c00408{letter-spacing:-1.118700px;}
.ls5f_c00408{letter-spacing:-1.050000px;}
.ls5e_c00408{letter-spacing:-1.044120px;}
.ls41_c00408{letter-spacing:-0.987000px;}
.ls31_c00408{letter-spacing:-0.947700px;}
.ls34_c00408{letter-spacing:-0.793260px;}
.ls2a_c00408{letter-spacing:-0.765180px;}
.ls71_c00408{letter-spacing:-0.637320px;}
.ls5d_c00408{letter-spacing:-0.576300px;}
.ls33_c00408{letter-spacing:-0.512460px;}
.ls3b_c00408{letter-spacing:-0.482040px;}
.ls29_c00408{letter-spacing:-0.470340px;}
.ls3e_c00408{letter-spacing:-0.356400px;}
.ls4a_c00408{letter-spacing:-0.305100px;}
.ls49_c00408{letter-spacing:-0.237300px;}
.ls4f_c00408{letter-spacing:-0.216960px;}
.ls2b_c00408{letter-spacing:-0.119340px;}
.ls6c_c00408{letter-spacing:-0.010800px;}
.ls25_c00408{letter-spacing:0.000000px;}
.ls12_c00408{letter-spacing:0.161460px;}
.ls1d_c00408{letter-spacing:0.168300px;}
.ls18_c00408{letter-spacing:0.189540px;}
.lsb_c00408{letter-spacing:0.224640px;}
.ls5_c00408{letter-spacing:0.238680px;}
.ls4_c00408{letter-spacing:0.273780px;}
.ls17_c00408{letter-spacing:0.400140px;}
.ls48_c00408{letter-spacing:0.518400px;}
.lsa_c00408{letter-spacing:0.547560px;}
.ls9_c00408{letter-spacing:0.568620px;}
.ls2_c00408{letter-spacing:0.624780px;}
.ls13_c00408{letter-spacing:0.631800px;}
.ls6e_c00408{letter-spacing:0.645660px;}
.ls15_c00408{letter-spacing:0.673920px;}
.ls11_c00408{letter-spacing:0.694980px;}
.ls51_c00408{letter-spacing:0.699492px;}
.ls1e_c00408{letter-spacing:0.718680px;}
.ls14_c00408{letter-spacing:0.765180px;}
.ls10_c00408{letter-spacing:0.779220px;}
.ls19_c00408{letter-spacing:0.800280px;}
.ls28_c00408{letter-spacing:0.870480px;}
.ls21_c00408{letter-spacing:0.904814px;}
.ls16_c00408{letter-spacing:0.919620px;}
.ls6_c00408{letter-spacing:0.940680px;}
.ls3c_c00408{letter-spacing:0.957900px;}
.lsd_c00408{letter-spacing:1.091580px;}
.ls7_c00408{letter-spacing:1.102140px;}
.ls8_c00408{letter-spacing:1.200420px;}
.ls70_c00408{letter-spacing:1.230000px;}
.ls61_c00408{letter-spacing:1.251860px;}
.ls20_c00408{letter-spacing:1.315320px;}
.ls1a_c00408{letter-spacing:1.341060px;}
.ls0_c00408{letter-spacing:1.368900px;}
.ls1_c00408{letter-spacing:1.411020px;}
.ls2e_c00408{letter-spacing:1.439100px;}
.ls40_c00408{letter-spacing:1.440030px;}
.ls72_c00408{letter-spacing:1.470030px;}
.ls2d_c00408{letter-spacing:1.478040px;}
.ls1c_c00408{letter-spacing:1.489823px;}
.ls56_c00408{letter-spacing:1.530000px;}
.ls2c_c00408{letter-spacing:1.566180px;}
.ls45_c00408{letter-spacing:1.650030px;}
.ls6d_c00408{letter-spacing:1.680000px;}
.ls3_c00408{letter-spacing:1.688220px;}
.ls66_c00408{letter-spacing:1.710000px;}
.ls5a_c00408{letter-spacing:1.740030px;}
.ls4e_c00408{letter-spacing:1.770030px;}
.ls22_c00408{letter-spacing:1.779840px;}
.ls60_c00408{letter-spacing:1.800000px;}
.lsf_c00408{letter-spacing:1.857720px;}
.ls38_c00408{letter-spacing:1.874340px;}
.ls73_c00408{letter-spacing:1.890030px;}
.ls4d_c00408{letter-spacing:1.920030px;}
.lsc_c00408{letter-spacing:1.932300px;}
.ls62_c00408{letter-spacing:1.980000px;}
.ls47_c00408{letter-spacing:2.010000px;}
.ls1f_c00408{letter-spacing:2.095107px;}
.ls57_c00408{letter-spacing:2.100000px;}
.ls3d_c00408{letter-spacing:2.160000px;}
.ls5b_c00408{letter-spacing:2.190030px;}
.ls63_c00408{letter-spacing:2.220030px;}
.ls26_c00408{letter-spacing:2.257740px;}
.ls55_c00408{letter-spacing:2.481840px;}
.ls58_c00408{letter-spacing:2.640000px;}
.ls6a_c00408{letter-spacing:2.700000px;}
.lse_c00408{letter-spacing:2.718780px;}
.ls53_c00408{letter-spacing:2.725380px;}
.ls23_c00408{letter-spacing:2.744280px;}
.ls50_c00408{letter-spacing:3.240000px;}
.ls27_c00408{letter-spacing:3.420000px;}
.ls37_c00408{letter-spacing:3.510000px;}
.ls1b_c00408{letter-spacing:9.702176px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{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__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00408{word-spacing:-15.146520px;}
.ws2_c00408{word-spacing:0.000000px;}
.ws0_c00408{word-spacing:773.737320px;}
._0_c00408{margin-left:-1.895400px;}
._1_c00408{width:1.937520px;}
._2_c00408{width:3.927540px;}
._4_c00408{width:6.598800px;}
._3_c00408{width:12.457440px;}
._6_c00408{width:14.313780px;}
._8_c00408{width:15.933000px;}
._5_c00408{width:19.312020px;}
._7_c00408{width:20.892540px;}
._b_c00408{width:23.009520px;}
._9_c00408{width:24.462240px;}
._a_c00408{width:26.074680px;}
._1d_c00408{width:36.634800px;}
._23_c00408{width:50.696592px;}
._22_c00408{width:54.658680px;}
._2d_c00408{width:76.293683px;}
._d_c00408{width:116.812800px;}
._e_c00408{width:169.041600px;}
._17_c00408{width:179.533320px;}
._f_c00408{width:181.963920px;}
._2f_c00408{width:188.186640px;}
._18_c00408{width:191.870460px;}
._16_c00408{width:201.715200px;}
._1f_c00408{width:205.260000px;}
._12_c00408{width:206.323200px;}
._10_c00408{width:208.513200px;}
._19_c00408{width:210.939000px;}
._c_c00408{width:225.552600px;}
._24_c00408{width:399.372120px;}
._26_c00408{width:457.890000px;}
._1e_c00408{width:459.676800px;}
._1b_c00408{width:460.904400px;}
._11_c00408{width:462.886800px;}
._29_c00408{width:464.983200px;}
._2c_c00408{width:473.977560px;}
._2b_c00408{width:500.775000px;}
._2a_c00408{width:546.970440px;}
._20_c00408{width:577.369800px;}
._2e_c00408{width:609.189958px;}
._15_c00408{width:677.042700px;}
._14_c00408{width:704.739000px;}
._21_c00408{width:712.863000px;}
._25_c00408{width:719.820000px;}
._28_c00408{width:1058.885400px;}
._1a_c00408{width:1152.646620px;}
._13_c00408{width:1178.588400px;}
._27_c00408{width:1298.757978px;}
._1c_c00408{width:1590.189958px;}
.fc0_c00408{color:transparent;}
.fs29_c00408{font-size:18.720000px;}
.fs2c_c00408{font-size:20.160000px;}
.fs2d_c00408{font-size:24.600000px;}
.fsd_c00408{font-size:28.200000px;}
.fs30_c00408{font-size:28.800000px;}
.fsc_c00408{font-size:28.800600px;}
.fs2f_c00408{font-size:29.400600px;}
.fs1e_c00408{font-size:30.000000px;}
.fs18_c00408{font-size:30.600000px;}
.fs11_c00408{font-size:33.000600px;}
.fs2b_c00408{font-size:33.600000px;}
.fs24_c00408{font-size:34.200000px;}
.fs17_c00408{font-size:34.800600px;}
.fs16_c00408{font-size:35.400600px;}
.fs1f_c00408{font-size:36.000000px;}
.fs31_c00408{font-size:37.800600px;}
.fs15_c00408{font-size:38.400600px;}
.fs1a_c00408{font-size:39.000600px;}
.fsa_c00408{font-size:39.600000px;}
.fs12_c00408{font-size:40.200000px;}
.fs19_c00408{font-size:42.000000px;}
.fs9_c00408{font-size:43.200000px;}
.fs1d_c00408{font-size:43.800600px;}
.fs22_c00408{font-size:44.400600px;}
.fs20_c00408{font-size:47.400600px;}
.fs10_c00408{font-size:51.000000px;}
.fs1c_c00408{font-size:52.800000px;}
.fs2a_c00408{font-size:54.000000px;}
.fs8_c00408{font-size:55.800000px;}
.fs23_c00408{font-size:56.400000px;}
.fs0_c00408{font-size:59.400000px;}
.fs2e_c00408{font-size:60.000000px;}
.fs26_c00408{font-size:60.600000px;}
.fs7_c00408{font-size:61.800000px;}
.fs28_c00408{font-size:63.000000px;}
.fs1b_c00408{font-size:63.600000px;}
.fse_c00408{font-size:64.800000px;}
.fs13_c00408{font-size:66.000000px;}
.fsf_c00408{font-size:66.600000px;}
.fs2_c00408{font-size:67.800000px;}
.fs3_c00408{font-size:68.400000px;}
.fs21_c00408{font-size:69.000000px;}
.fs1_c00408{font-size:70.200000px;}
.fs4_c00408{font-size:71.400000px;}
.fs6_c00408{font-size:74.400000px;}
.fs25_c00408{font-size:79.800000px;}
.fsb_c00408{font-size:80.400000px;}
.fs14_c00408{font-size:86.400000px;}
.fs27_c00408{font-size:117.600000px;}
.fs5_c00408{font-size:158.400000px;}
.y0_c00408{bottom:0.000000px;}
.y58_c00408{bottom:101.160000px;}
.y57_c00408{bottom:181.440000px;}
.y55_c00408{bottom:181.800000px;}
.y56_c00408{bottom:186.120000px;}
.y54_c00408{bottom:199.815000px;}
.y53_c00408{bottom:206.295000px;}
.y52_c00408{bottom:218.175000px;}
.y50_c00408{bottom:220.695000px;}
.y51_c00408{bottom:222.135000px;}
.y4f_c00408{bottom:235.455000px;}
.y4e_c00408{bottom:237.975000px;}
.y4d_c00408{bottom:240.855000px;}
.y4c_c00408{bottom:252.375000px;}
.y4b_c00408{bottom:256.335000px;}
.y4a_c00408{bottom:259.560000px;}
.y49_c00408{bottom:270.375000px;}
.y48_c00408{bottom:275.775000px;}
.y47_c00408{bottom:276.855000px;}
.y45_c00408{bottom:288.375000px;}
.y46_c00408{bottom:293.055000px;}
.y44_c00408{bottom:306.000000px;}
.y43_c00408{bottom:306.375000px;}
.y42_c00408{bottom:311.415000px;}
.y40_c00408{bottom:325.095000px;}
.y3f_c00408{bottom:328.695000px;}
.y41_c00408{bottom:329.775000px;}
.y3e_c00408{bottom:341.295000px;}
.y3d_c00408{bottom:347.415000px;}
.y3c_c00408{bottom:357.495000px;}
.y3b_c00408{bottom:376.935000px;}
.y3a_c00408{bottom:377.295000px;}
.y39_c00408{bottom:378.735000px;}
.y38_c00408{bottom:382.695000px;}
.y37_c00408{bottom:394.575000px;}
.y36_c00408{bottom:397.815000px;}
.y34_c00408{bottom:412.200000px;}
.y35_c00408{bottom:412.935000px;}
.y33_c00408{bottom:430.935000px;}
.y31_c00408{bottom:432.000000px;}
.y32_c00408{bottom:437.040000px;}
.y30_c00408{bottom:448.935000px;}
.y2f_c00408{bottom:450.735000px;}
.y2e_c00408{bottom:466.575000px;}
.y2d_c00408{bottom:466.935000px;}
.y2b_c00408{bottom:469.440000px;}
.y2c_c00408{bottom:472.695000px;}
.y28_c00408{bottom:483.495000px;}
.y29_c00408{bottom:487.815000px;}
.y2a_c00408{bottom:489.975000px;}
.y25_c00408{bottom:501.855000px;}
.y27_c00408{bottom:502.200000px;}
.y26_c00408{bottom:509.040000px;}
.y22_c00408{bottom:519.120000px;}
.y24_c00408{bottom:520.200000px;}
.y23_c00408{bottom:523.440000px;}
.y21_c00408{bottom:537.855000px;}
.y20_c00408{bottom:555.495000px;}
.y1c_c00408{bottom:557.655000px;}
.y1f_c00408{bottom:558.360000px;}
.y1e_c00408{bottom:559.095000px;}
.y1d_c00408{bottom:563.040000px;}
.y1b_c00408{bottom:573.855000px;}
.y1a_c00408{bottom:574.935000px;}
.y19_c00408{bottom:591.855000px;}
.y18_c00408{bottom:608.775000px;}
.y16_c00408{bottom:626.040000px;}
.y17_c00408{bottom:632.895000px;}
.y15_c00408{bottom:644.415000px;}
.y14_c00408{bottom:645.495000px;}
.y13_c00408{bottom:662.775000px;}
.y12_c00408{bottom:663.495000px;}
.y11_c00408{bottom:680.775000px;}
.yd_c00408{bottom:682.935000px;}
.y10_c00408{bottom:684.360000px;}
.yf_c00408{bottom:687.255000px;}
.ye_c00408{bottom:688.335000px;}
.yc_c00408{bottom:698.415000px;}
.ya_c00408{bottom:698.775000px;}
.yb_c00408{bottom:700.200000px;}
.y9_c00408{bottom:728.280000px;}
.y8_c00408{bottom:772.560000px;}
.y7_c00408{bottom:773.655000px;}
.y6_c00408{bottom:824.040000px;}
.y5_c00408{bottom:856.080000px;}
.y4_c00408{bottom:1010.883300px;}
.y3_c00408{bottom:1041.496800px;}
.y2_c00408{bottom:1072.455000px;}
.y1_c00408{bottom:1147.695000px;}
.h30_c00408{height:12.467520px;}
.h34_c00408{height:13.426560px;}
.h37_c00408{height:19.180800px;}
.h35_c00408{height:24.143555px;}
.he_c00408{height:28.266214px;}
.h10_c00408{height:28.771200px;}
.h36_c00408{height:28.855081px;}
.hf_c00408{height:29.411719px;}
.h26_c00408{height:29.443359px;}
.h1e_c00408{height:30.032227px;}
.h3a_c00408{height:30.038126px;}
.h2b_c00408{height:33.565430px;}
.h14_c00408{height:34.418595px;}
.h1a_c00408{height:34.743753px;}
.h32_c00408{height:35.043750px;}
.h27_c00408{height:35.332031px;}
.h1c_c00408{height:36.295938px;}
.h38_c00408{height:37.099222px;}
.h19_c00408{height:37.669339px;}
.h2a_c00408{height:38.276956px;}
.hc_c00408{height:38.865234px;}
.h21_c00408{height:39.319922px;}
.h15_c00408{height:39.434473px;}
.hb_c00408{height:42.377344px;}
.h16_c00408{height:42.398438px;}
.h28_c00408{height:43.576761px;}
.h1f_c00408{height:43.804688px;}
.h25_c00408{height:45.682657px;}
.h3c_c00408{height:46.521097px;}
.h13_c00408{height:50.053711px;}
.h31_c00408{height:52.998047px;}
.ha_c00408{height:54.737402px;}
.h22_c00408{height:55.068750px;}
.h39_c00408{height:57.773320px;}
.h2_c00408{height:58.297852px;}
.h29_c00408{height:58.823438px;}
.h9_c00408{height:60.653320px;}
.h2f_c00408{height:61.831055px;}
.h20_c00408{height:62.153320px;}
.h11_c00408{height:62.157656px;}
.h24_c00408{height:62.419922px;}
.h2d_c00408{height:63.203906px;}
.h1d_c00408{height:63.395391px;}
.h33_c00408{height:63.533320px;}
.h1b_c00408{height:63.597656px;}
.h23_c00408{height:64.775391px;}
.h12_c00408{height:65.364258px;}
.h8_c00408{height:66.508887px;}
.h17_c00408{height:68.835938px;}
.h3_c00408{height:68.897461px;}
.h5_c00408{height:70.061995px;}
.h4_c00408{height:71.339063px;}
.h7_c00408{height:73.019531px;}
.h2c_c00408{height:78.280371px;}
.h3b_c00408{height:79.458687px;}
.hd_c00408{height:83.854688px;}
.h18_c00408{height:90.112500px;}
.h6_c00408{height:105.494400px;}
.h2e_c00408{height:122.653125px;}
.h1_c00408{height:1263.000000px;}
.h0_c00408{height:1263.240000px;}
.w1_c00408{width:892.500000px;}
.w0_c00408{width:892.800000px;}
.x0_c00408{left:0.000000px;}
.x1_c00408{left:113.685000px;}
.x8_c00408{left:120.255000px;}
.x9_c00408{left:123.570000px;}
.x11_c00408{left:125.355000px;}
.x4_c00408{left:126.570000px;}
.x34_c00408{left:127.590000px;}
.x46_c00408{left:131.625000px;}
.x1a_c00408{left:136.485000px;}
.xa_c00408{left:139.485000px;}
.x39_c00408{left:146.070000px;}
.x12_c00408{left:148.590000px;}
.x25_c00408{left:150.795000px;}
.x32_c00408{left:160.620000px;}
.x24_c00408{left:161.805000px;}
.x47_c00408{left:163.245000px;}
.x13_c00408{left:165.435000px;}
.x1b_c00408{left:171.960000px;}
.x26_c00408{left:174.660000px;}
.x5_c00408{left:176.805000px;}
.x49_c00408{left:180.600000px;}
.x2e_c00408{left:182.160000px;}
.x41_c00408{left:183.690000px;}
.x48_c00408{left:184.890000px;}
.x3b_c00408{left:186.060000px;}
.x35_c00408{left:189.195000px;}
.x14_c00408{left:192.150000px;}
.x42_c00408{left:193.530000px;}
.x2f_c00408{left:194.865000px;}
.x2b_c00408{left:196.125000px;}
.x38_c00408{left:197.580000px;}
.x6_c00408{left:199.395000px;}
.x3f_c00408{left:200.850000px;}
.x43_c00408{left:203.820000px;}
.x27_c00408{left:205.110000px;}
.x30_c00408{left:210.315000px;}
.x44_c00408{left:212.670000px;}
.x36_c00408{left:213.900000px;}
.x15_c00408{left:219.855000px;}
.x45_c00408{left:222.390000px;}
.x2c_c00408{left:225.075000px;}
.x2a_c00408{left:227.085000px;}
.x28_c00408{left:231.030000px;}
.x1c_c00408{left:232.200000px;}
.x21_c00408{left:239.055000px;}
.x40_c00408{left:240.615000px;}
.x31_c00408{left:246.765000px;}
.x3a_c00408{left:256.845000px;}
.x37_c00408{left:262.305000px;}
.x1d_c00408{left:263.955000px;}
.x3c_c00408{left:272.685000px;}
.x1e_c00408{left:273.885000px;}
.x3d_c00408{left:279.705000px;}
.xb_c00408{left:283.560000px;}
.x1f_c00408{left:287.955000px;}
.xc_c00408{left:300.600000px;}
.x16_c00408{left:399.870000px;}
.x22_c00408{left:403.500000px;}
.x4a_c00408{left:427.155000px;}
.x17_c00408{left:462.870000px;}
.x33_c00408{left:466.740000px;}
.x23_c00408{left:467.820000px;}
.xd_c00408{left:525.855000px;}
.x3e_c00408{left:530.100000px;}
.x29_c00408{left:531.180000px;}
.x2_c00408{left:537.825000px;}
.x3_c00408{left:558.165000px;}
.xe_c00408{left:590.160000px;}
.x2d_c00408{left:591.300000px;}
.x20_c00408{left:594.630000px;}
.xf_c00408{left:653.940000px;}
.x18_c00408{left:655.425000px;}
.x10_c00408{left:713.790000px;}
.x7_c00408{left:719.775000px;}
.x19_c00408{left:723.060000px;}
@media print{
.v2_c00408{vertical-align:-21.760000pt;}
.v4_c00408{vertical-align:-20.533333pt;}
.v5_c00408{vertical-align:-15.360000pt;}
.vc_c00408{vertical-align:-12.790933pt;}
.v8_c00408{vertical-align:-10.240000pt;}
.v9_c00408{vertical-align:-7.680000pt;}
.v6_c00408{vertical-align:-2.613333pt;}
.v1_c00408{vertical-align:-1.263467pt;}
.v0_c00408{vertical-align:0.000000pt;}
.v3_c00408{vertical-align:1.226667pt;}
.v7_c00408{vertical-align:2.560000pt;}
.vb_c00408{vertical-align:11.510933pt;}
.va_c00408{vertical-align:16.640000pt;}
.ls68_c00408{letter-spacing:-3.658667pt;}
.ls4b_c00408{letter-spacing:-2.688000pt;}
.ls3f_c00408{letter-spacing:-2.501333pt;}
.ls67_c00408{letter-spacing:-2.482667pt;}
.ls36_c00408{letter-spacing:-2.314667pt;}
.ls2f_c00408{letter-spacing:-2.184000pt;}
.ls24_c00408{letter-spacing:-2.159040pt;}
.ls39_c00408{letter-spacing:-2.109333pt;}
.ls59_c00408{letter-spacing:-2.085227pt;}
.ls43_c00408{letter-spacing:-2.072000pt;}
.ls30_c00408{letter-spacing:-1.959360pt;}
.ls3a_c00408{letter-spacing:-1.922667pt;}
.ls65_c00408{letter-spacing:-1.754667pt;}
.ls75_c00408{letter-spacing:-1.741707pt;}
.ls6f_c00408{letter-spacing:-1.699520pt;}
.ls35_c00408{letter-spacing:-1.622400pt;}
.ls6b_c00408{letter-spacing:-1.617600pt;}
.ls74_c00408{letter-spacing:-1.603093pt;}
.ls44_c00408{letter-spacing:-1.545867pt;}
.ls76_c00408{letter-spacing:-1.474685pt;}
.ls69_c00408{letter-spacing:-1.473600pt;}
.ls64_c00408{letter-spacing:-1.440373pt;}
.ls52_c00408{letter-spacing:-1.417280pt;}
.ls32_c00408{letter-spacing:-1.360320pt;}
.ls42_c00408{letter-spacing:-1.325867pt;}
.ls4c_c00408{letter-spacing:-1.194685pt;}
.ls54_c00408{letter-spacing:-1.093173pt;}
.ls5c_c00408{letter-spacing:-1.026685pt;}
.ls46_c00408{letter-spacing:-0.994400pt;}
.ls5f_c00408{letter-spacing:-0.933333pt;}
.ls5e_c00408{letter-spacing:-0.928107pt;}
.ls41_c00408{letter-spacing:-0.877333pt;}
.ls31_c00408{letter-spacing:-0.842400pt;}
.ls34_c00408{letter-spacing:-0.705120pt;}
.ls2a_c00408{letter-spacing:-0.680160pt;}
.ls71_c00408{letter-spacing:-0.566507pt;}
.ls5d_c00408{letter-spacing:-0.512267pt;}
.ls33_c00408{letter-spacing:-0.455520pt;}
.ls3b_c00408{letter-spacing:-0.428480pt;}
.ls29_c00408{letter-spacing:-0.418080pt;}
.ls3e_c00408{letter-spacing:-0.316800pt;}
.ls4a_c00408{letter-spacing:-0.271200pt;}
.ls49_c00408{letter-spacing:-0.210933pt;}
.ls4f_c00408{letter-spacing:-0.192853pt;}
.ls2b_c00408{letter-spacing:-0.106080pt;}
.ls6c_c00408{letter-spacing:-0.009600pt;}
.ls25_c00408{letter-spacing:0.000000pt;}
.ls12_c00408{letter-spacing:0.143520pt;}
.ls1d_c00408{letter-spacing:0.149600pt;}
.ls18_c00408{letter-spacing:0.168480pt;}
.lsb_c00408{letter-spacing:0.199680pt;}
.ls5_c00408{letter-spacing:0.212160pt;}
.ls4_c00408{letter-spacing:0.243360pt;}
.ls17_c00408{letter-spacing:0.355680pt;}
.ls48_c00408{letter-spacing:0.460800pt;}
.lsa_c00408{letter-spacing:0.486720pt;}
.ls9_c00408{letter-spacing:0.505440pt;}
.ls2_c00408{letter-spacing:0.555360pt;}
.ls13_c00408{letter-spacing:0.561600pt;}
.ls6e_c00408{letter-spacing:0.573920pt;}
.ls15_c00408{letter-spacing:0.599040pt;}
.ls11_c00408{letter-spacing:0.617760pt;}
.ls51_c00408{letter-spacing:0.621771pt;}
.ls1e_c00408{letter-spacing:0.638827pt;}
.ls14_c00408{letter-spacing:0.680160pt;}
.ls10_c00408{letter-spacing:0.692640pt;}
.ls19_c00408{letter-spacing:0.711360pt;}
.ls28_c00408{letter-spacing:0.773760pt;}
.ls21_c00408{letter-spacing:0.804279pt;}
.ls16_c00408{letter-spacing:0.817440pt;}
.ls6_c00408{letter-spacing:0.836160pt;}
.ls3c_c00408{letter-spacing:0.851467pt;}
.lsd_c00408{letter-spacing:0.970293pt;}
.ls7_c00408{letter-spacing:0.979680pt;}
.ls8_c00408{letter-spacing:1.067040pt;}
.ls70_c00408{letter-spacing:1.093333pt;}
.ls61_c00408{letter-spacing:1.112764pt;}
.ls20_c00408{letter-spacing:1.169173pt;}
.ls1a_c00408{letter-spacing:1.192053pt;}
.ls0_c00408{letter-spacing:1.216800pt;}
.ls1_c00408{letter-spacing:1.254240pt;}
.ls2e_c00408{letter-spacing:1.279200pt;}
.ls40_c00408{letter-spacing:1.280027pt;}
.ls72_c00408{letter-spacing:1.306693pt;}
.ls2d_c00408{letter-spacing:1.313813pt;}
.ls1c_c00408{letter-spacing:1.324287pt;}
.ls56_c00408{letter-spacing:1.360000pt;}
.ls2c_c00408{letter-spacing:1.392160pt;}
.ls45_c00408{letter-spacing:1.466693pt;}
.ls6d_c00408{letter-spacing:1.493333pt;}
.ls3_c00408{letter-spacing:1.500640pt;}
.ls66_c00408{letter-spacing:1.520000pt;}
.ls5a_c00408{letter-spacing:1.546693pt;}
.ls4e_c00408{letter-spacing:1.573360pt;}
.ls22_c00408{letter-spacing:1.582080pt;}
.ls60_c00408{letter-spacing:1.600000pt;}
.lsf_c00408{letter-spacing:1.651307pt;}
.ls38_c00408{letter-spacing:1.666080pt;}
.ls73_c00408{letter-spacing:1.680027pt;}
.ls4d_c00408{letter-spacing:1.706693pt;}
.lsc_c00408{letter-spacing:1.717600pt;}
.ls62_c00408{letter-spacing:1.760000pt;}
.ls47_c00408{letter-spacing:1.786667pt;}
.ls1f_c00408{letter-spacing:1.862317pt;}
.ls57_c00408{letter-spacing:1.866667pt;}
.ls3d_c00408{letter-spacing:1.920000pt;}
.ls5b_c00408{letter-spacing:1.946693pt;}
.ls63_c00408{letter-spacing:1.973360pt;}
.ls26_c00408{letter-spacing:2.006880pt;}
.ls55_c00408{letter-spacing:2.206080pt;}
.ls58_c00408{letter-spacing:2.346667pt;}
.ls6a_c00408{letter-spacing:2.400000pt;}
.lse_c00408{letter-spacing:2.416693pt;}
.ls53_c00408{letter-spacing:2.422560pt;}
.ls23_c00408{letter-spacing:2.439360pt;}
.ls50_c00408{letter-spacing:2.880000pt;}
.ls27_c00408{letter-spacing:3.040000pt;}
.ls37_c00408{letter-spacing:3.120000pt;}
.ls1b_c00408{letter-spacing:8.624157pt;}
.ws1_c00408{word-spacing:-13.463573pt;}
.ws2_c00408{word-spacing:0.000000pt;}
.ws0_c00408{word-spacing:687.766507pt;}
._0_c00408{margin-left:-1.684800pt;}
._1_c00408{width:1.722240pt;}
._2_c00408{width:3.491147pt;}
._4_c00408{width:5.865600pt;}
._3_c00408{width:11.073280pt;}
._6_c00408{width:12.723360pt;}
._8_c00408{width:14.162667pt;}
._5_c00408{width:17.166240pt;}
._7_c00408{width:18.571147pt;}
._b_c00408{width:20.452907pt;}
._9_c00408{width:21.744213pt;}
._a_c00408{width:23.177493pt;}
._1d_c00408{width:32.564267pt;}
._23_c00408{width:45.063637pt;}
._22_c00408{width:48.585493pt;}
._2d_c00408{width:67.816607pt;}
._d_c00408{width:103.833600pt;}
._e_c00408{width:150.259200pt;}
._17_c00408{width:159.585173pt;}
._f_c00408{width:161.745707pt;}
._2f_c00408{width:167.277013pt;}
._18_c00408{width:170.551520pt;}
._16_c00408{width:179.302400pt;}
._1f_c00408{width:182.453333pt;}
._12_c00408{width:183.398400pt;}
._10_c00408{width:185.345067pt;}
._19_c00408{width:187.501333pt;}
._c_c00408{width:200.491200pt;}
._24_c00408{width:354.997440pt;}
._26_c00408{width:407.013333pt;}
._1e_c00408{width:408.601600pt;}
._1b_c00408{width:409.692800pt;}
._11_c00408{width:411.454933pt;}
._29_c00408{width:413.318400pt;}
._2c_c00408{width:421.313387pt;}
._2b_c00408{width:445.133333pt;}
._2a_c00408{width:486.195947pt;}
._20_c00408{width:513.217600pt;}
._2e_c00408{width:541.502185pt;}
._15_c00408{width:601.815733pt;}
._14_c00408{width:626.434667pt;}
._21_c00408{width:633.656000pt;}
._25_c00408{width:639.840000pt;}
._28_c00408{width:941.231467pt;}
._1a_c00408{width:1024.574773pt;}
._13_c00408{width:1047.634133pt;}
._27_c00408{width:1154.451536pt;}
._1c_c00408{width:1413.502185pt;}
.fs29_c00408{font-size:16.640000pt;}
.fs2c_c00408{font-size:17.920000pt;}
.fs2d_c00408{font-size:21.866667pt;}
.fsd_c00408{font-size:25.066667pt;}
.fs30_c00408{font-size:25.600000pt;}
.fsc_c00408{font-size:25.600533pt;}
.fs2f_c00408{font-size:26.133867pt;}
.fs1e_c00408{font-size:26.666667pt;}
.fs18_c00408{font-size:27.200000pt;}
.fs11_c00408{font-size:29.333867pt;}
.fs2b_c00408{font-size:29.866667pt;}
.fs24_c00408{font-size:30.400000pt;}
.fs17_c00408{font-size:30.933867pt;}
.fs16_c00408{font-size:31.467200pt;}
.fs1f_c00408{font-size:32.000000pt;}
.fs31_c00408{font-size:33.600533pt;}
.fs15_c00408{font-size:34.133867pt;}
.fs1a_c00408{font-size:34.667200pt;}
.fsa_c00408{font-size:35.200000pt;}
.fs12_c00408{font-size:35.733333pt;}
.fs19_c00408{font-size:37.333333pt;}
.fs9_c00408{font-size:38.400000pt;}
.fs1d_c00408{font-size:38.933867pt;}
.fs22_c00408{font-size:39.467200pt;}
.fs20_c00408{font-size:42.133867pt;}
.fs10_c00408{font-size:45.333333pt;}
.fs1c_c00408{font-size:46.933333pt;}
.fs2a_c00408{font-size:48.000000pt;}
.fs8_c00408{font-size:49.600000pt;}
.fs23_c00408{font-size:50.133333pt;}
.fs0_c00408{font-size:52.800000pt;}
.fs2e_c00408{font-size:53.333333pt;}
.fs26_c00408{font-size:53.866667pt;}
.fs7_c00408{font-size:54.933333pt;}
.fs28_c00408{font-size:56.000000pt;}
.fs1b_c00408{font-size:56.533333pt;}
.fse_c00408{font-size:57.600000pt;}
.fs13_c00408{font-size:58.666667pt;}
.fsf_c00408{font-size:59.200000pt;}
.fs2_c00408{font-size:60.266667pt;}
.fs3_c00408{font-size:60.800000pt;}
.fs21_c00408{font-size:61.333333pt;}
.fs1_c00408{font-size:62.400000pt;}
.fs4_c00408{font-size:63.466667pt;}
.fs6_c00408{font-size:66.133333pt;}
.fs25_c00408{font-size:70.933333pt;}
.fsb_c00408{font-size:71.466667pt;}
.fs14_c00408{font-size:76.800000pt;}
.fs27_c00408{font-size:104.533333pt;}
.fs5_c00408{font-size:140.800000pt;}
.y0_c00408{bottom:0.000000pt;}
.y58_c00408{bottom:89.920000pt;}
.y57_c00408{bottom:161.280000pt;}
.y55_c00408{bottom:161.600000pt;}
.y56_c00408{bottom:165.440000pt;}
.y54_c00408{bottom:177.613333pt;}
.y53_c00408{bottom:183.373333pt;}
.y52_c00408{bottom:193.933333pt;}
.y50_c00408{bottom:196.173333pt;}
.y51_c00408{bottom:197.453333pt;}
.y4f_c00408{bottom:209.293333pt;}
.y4e_c00408{bottom:211.533333pt;}
.y4d_c00408{bottom:214.093333pt;}
.y4c_c00408{bottom:224.333333pt;}
.y4b_c00408{bottom:227.853333pt;}
.y4a_c00408{bottom:230.720000pt;}
.y49_c00408{bottom:240.333333pt;}
.y48_c00408{bottom:245.133333pt;}
.y47_c00408{bottom:246.093333pt;}
.y45_c00408{bottom:256.333333pt;}
.y46_c00408{bottom:260.493333pt;}
.y44_c00408{bottom:272.000000pt;}
.y43_c00408{bottom:272.333333pt;}
.y42_c00408{bottom:276.813333pt;}
.y40_c00408{bottom:288.973333pt;}
.y3f_c00408{bottom:292.173333pt;}
.y41_c00408{bottom:293.133333pt;}
.y3e_c00408{bottom:303.373333pt;}
.y3d_c00408{bottom:308.813333pt;}
.y3c_c00408{bottom:317.773333pt;}
.y3b_c00408{bottom:335.053333pt;}
.y3a_c00408{bottom:335.373333pt;}
.y39_c00408{bottom:336.653333pt;}
.y38_c00408{bottom:340.173333pt;}
.y37_c00408{bottom:350.733333pt;}
.y36_c00408{bottom:353.613333pt;}
.y34_c00408{bottom:366.400000pt;}
.y35_c00408{bottom:367.053333pt;}
.y33_c00408{bottom:383.053333pt;}
.y31_c00408{bottom:384.000000pt;}
.y32_c00408{bottom:388.480000pt;}
.y30_c00408{bottom:399.053333pt;}
.y2f_c00408{bottom:400.653333pt;}
.y2e_c00408{bottom:414.733333pt;}
.y2d_c00408{bottom:415.053333pt;}
.y2b_c00408{bottom:417.280000pt;}
.y2c_c00408{bottom:420.173333pt;}
.y28_c00408{bottom:429.773333pt;}
.y29_c00408{bottom:433.613333pt;}
.y2a_c00408{bottom:435.533333pt;}
.y25_c00408{bottom:446.093333pt;}
.y27_c00408{bottom:446.400000pt;}
.y26_c00408{bottom:452.480000pt;}
.y22_c00408{bottom:461.440000pt;}
.y24_c00408{bottom:462.400000pt;}
.y23_c00408{bottom:465.280000pt;}
.y21_c00408{bottom:478.093333pt;}
.y20_c00408{bottom:493.773333pt;}
.y1c_c00408{bottom:495.693333pt;}
.y1f_c00408{bottom:496.320000pt;}
.y1e_c00408{bottom:496.973333pt;}
.y1d_c00408{bottom:500.480000pt;}
.y1b_c00408{bottom:510.093333pt;}
.y1a_c00408{bottom:511.053333pt;}
.y19_c00408{bottom:526.093333pt;}
.y18_c00408{bottom:541.133333pt;}
.y16_c00408{bottom:556.480000pt;}
.y17_c00408{bottom:562.573333pt;}
.y15_c00408{bottom:572.813333pt;}
.y14_c00408{bottom:573.773333pt;}
.y13_c00408{bottom:589.133333pt;}
.y12_c00408{bottom:589.773333pt;}
.y11_c00408{bottom:605.133333pt;}
.yd_c00408{bottom:607.053333pt;}
.y10_c00408{bottom:608.320000pt;}
.yf_c00408{bottom:610.893333pt;}
.ye_c00408{bottom:611.853333pt;}
.yc_c00408{bottom:620.813333pt;}
.ya_c00408{bottom:621.133333pt;}
.yb_c00408{bottom:622.400000pt;}
.y9_c00408{bottom:647.360000pt;}
.y8_c00408{bottom:686.720000pt;}
.y7_c00408{bottom:687.693333pt;}
.y6_c00408{bottom:732.480000pt;}
.y5_c00408{bottom:760.960000pt;}
.y4_c00408{bottom:898.562933pt;}
.y3_c00408{bottom:925.774933pt;}
.y2_c00408{bottom:953.293333pt;}
.y1_c00408{bottom:1020.173333pt;}
.h30_c00408{height:11.082240pt;}
.h34_c00408{height:11.934720pt;}
.h37_c00408{height:17.049600pt;}
.h35_c00408{height:21.460937pt;}
.he_c00408{height:25.125523pt;}
.h10_c00408{height:25.574400pt;}
.h36_c00408{height:25.648961pt;}
.hf_c00408{height:26.143750pt;}
.h26_c00408{height:26.171875pt;}
.h1e_c00408{height:26.695312pt;}
.h3a_c00408{height:26.700556pt;}
.h2b_c00408{height:29.835938pt;}
.h14_c00408{height:30.594306pt;}
.h1a_c00408{height:30.883336pt;}
.h32_c00408{height:31.150000pt;}
.h27_c00408{height:31.406250pt;}
.h1c_c00408{height:32.263056pt;}
.h38_c00408{height:32.977086pt;}
.h19_c00408{height:33.483857pt;}
.h2a_c00408{height:34.023961pt;}
.hc_c00408{height:34.546875pt;}
.h21_c00408{height:34.951042pt;}
.h15_c00408{height:35.052865pt;}
.hb_c00408{height:37.668750pt;}
.h16_c00408{height:37.687500pt;}
.h28_c00408{height:38.734898pt;}
.h1f_c00408{height:38.937500pt;}
.h25_c00408{height:40.606806pt;}
.h3c_c00408{height:41.352086pt;}
.h13_c00408{height:44.492188pt;}
.h31_c00408{height:47.109375pt;}
.ha_c00408{height:48.655469pt;}
.h22_c00408{height:48.950000pt;}
.h39_c00408{height:51.354062pt;}
.h2_c00408{height:51.820312pt;}
.h29_c00408{height:52.287500pt;}
.h9_c00408{height:53.914062pt;}
.h2f_c00408{height:54.960938pt;}
.h20_c00408{height:55.247396pt;}
.h11_c00408{height:55.251250pt;}
.h24_c00408{height:55.484375pt;}
.h2d_c00408{height:56.181250pt;}
.h1d_c00408{height:56.351458pt;}
.h33_c00408{height:56.474062pt;}
.h1b_c00408{height:56.531250pt;}
.h23_c00408{height:57.578125pt;}
.h12_c00408{height:58.101562pt;}
.h8_c00408{height:59.119010pt;}
.h17_c00408{height:61.187500pt;}
.h3_c00408{height:61.242187pt;}
.h5_c00408{height:62.277329pt;}
.h4_c00408{height:63.412500pt;}
.h7_c00408{height:64.906250pt;}
.h2c_c00408{height:69.582552pt;}
.h3b_c00408{height:70.629944pt;}
.hd_c00408{height:74.537500pt;}
.h18_c00408{height:80.100000pt;}
.h6_c00408{height:93.772800pt;}
.h2e_c00408{height:109.025000pt;}
.h1_c00408{height:1122.666667pt;}
.h0_c00408{height:1122.880000pt;}
.w1_c00408{width:793.333333pt;}
.w0_c00408{width:793.600000pt;}
.x0_c00408{left:0.000000pt;}
.x1_c00408{left:101.053333pt;}
.x8_c00408{left:106.893333pt;}
.x9_c00408{left:109.840000pt;}
.x11_c00408{left:111.426667pt;}
.x4_c00408{left:112.506667pt;}
.x34_c00408{left:113.413333pt;}
.x46_c00408{left:117.000000pt;}
.x1a_c00408{left:121.320000pt;}
.xa_c00408{left:123.986667pt;}
.x39_c00408{left:129.840000pt;}
.x12_c00408{left:132.080000pt;}
.x25_c00408{left:134.040000pt;}
.x32_c00408{left:142.773333pt;}
.x24_c00408{left:143.826667pt;}
.x47_c00408{left:145.106667pt;}
.x13_c00408{left:147.053333pt;}
.x1b_c00408{left:152.853333pt;}
.x26_c00408{left:155.253333pt;}
.x5_c00408{left:157.160000pt;}
.x49_c00408{left:160.533333pt;}
.x2e_c00408{left:161.920000pt;}
.x41_c00408{left:163.280000pt;}
.x48_c00408{left:164.346667pt;}
.x3b_c00408{left:165.386667pt;}
.x35_c00408{left:168.173333pt;}
.x14_c00408{left:170.800000pt;}
.x42_c00408{left:172.026667pt;}
.x2f_c00408{left:173.213333pt;}
.x2b_c00408{left:174.333333pt;}
.x38_c00408{left:175.626667pt;}
.x6_c00408{left:177.240000pt;}
.x3f_c00408{left:178.533333pt;}
.x43_c00408{left:181.173333pt;}
.x27_c00408{left:182.320000pt;}
.x30_c00408{left:186.946667pt;}
.x44_c00408{left:189.040000pt;}
.x36_c00408{left:190.133333pt;}
.x15_c00408{left:195.426667pt;}
.x45_c00408{left:197.680000pt;}
.x2c_c00408{left:200.066667pt;}
.x2a_c00408{left:201.853333pt;}
.x28_c00408{left:205.360000pt;}
.x1c_c00408{left:206.400000pt;}
.x21_c00408{left:212.493333pt;}
.x40_c00408{left:213.880000pt;}
.x31_c00408{left:219.346667pt;}
.x3a_c00408{left:228.306667pt;}
.x37_c00408{left:233.160000pt;}
.x1d_c00408{left:234.626667pt;}
.x3c_c00408{left:242.386667pt;}
.x1e_c00408{left:243.453333pt;}
.x3d_c00408{left:248.626667pt;}
.xb_c00408{left:252.053333pt;}
.x1f_c00408{left:255.960000pt;}
.xc_c00408{left:267.200000pt;}
.x16_c00408{left:355.440000pt;}
.x22_c00408{left:358.666667pt;}
.x4a_c00408{left:379.693333pt;}
.x17_c00408{left:411.440000pt;}
.x33_c00408{left:414.880000pt;}
.x23_c00408{left:415.840000pt;}
.xd_c00408{left:467.426667pt;}
.x3e_c00408{left:471.200000pt;}
.x29_c00408{left:472.160000pt;}
.x2_c00408{left:478.066667pt;}
.x3_c00408{left:496.146667pt;}
.xe_c00408{left:524.586667pt;}
.x2d_c00408{left:525.600000pt;}
.x20_c00408{left:528.560000pt;}
.xf_c00408{left:581.280000pt;}
.x18_c00408{left:582.600000pt;}
.x10_c00408{left:634.480000pt;}
.x7_c00408{left:639.800000pt;}
.x19_c00408{left:642.720000pt;}
}





/* 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_c00409 {
    display:none;
  }
  .loading-indicator_c00409.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00409 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_c00409 { 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_c00409" -> "#page-container .classname_c00409")
 */
.pf_c00409 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00409 { /* 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_c00409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00409 { /* 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_c00409 { /* 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_c00409 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00409 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00409 {overflow:visible;}
  }
}
.c_c00409 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00409 { /* 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_c00409:after { /* webkit #35443 */
  content: '';
}
.t_c00409:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00409 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 */
}
.__c00409 { /* 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_c00409 { /* info for Javascript */
  display:none;
}
.l_c00409 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00409 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00409 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00409: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_c00409 {
    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_c00409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00409.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_c00409 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00409{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00409;src:url('chunks/assets/font_632c6f0126f3656a63bca53a.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.284668;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_c00409;src:url('chunks/assets/font_ffbea2fd9b5f9a2af3420339.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:0.666000;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_c00409;src:url('chunks/assets/font_124bcbab1ff5d1e2d08ccdb1.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;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:ff4_c00409;src:url('chunks/assets/font_2d6a1fc6d31c023492307aef.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.284180;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_c00409;src:url('chunks/assets/font_f0f5c9798903ea8f3deb71c3.woff2')format("woff");}.ff5_c00409{font-family:ff5_c00409;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;}
.m3_c00409{transform:matrix(0.118594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118594,0.000000,0.000000,0.250000,0,0);}
.m7_c00409{transform:matrix(0.129527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129527,0.000000,0.000000,0.250000,0,0);}
.ma_c00409{transform:matrix(0.130919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130919,0.000000,0.000000,0.250000,0,0);}
.m26_c00409{transform:matrix(0.145294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145294,0.000000,0.000000,0.250000,0,0);}
.m63_c00409{transform:matrix(0.145606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145606,0.000000,0.000000,0.250000,0,0);}
.m4e_c00409{transform:matrix(0.146004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146004,0.000000,0.000000,0.250000,0,0);}
.m12_c00409{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.m20_c00409{transform:matrix(0.158166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158166,0.000000,0.000000,0.250000,0,0);}
.m61_c00409{transform:matrix(0.159005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159005,0.000000,0.000000,0.250000,0,0);}
.m64_c00409{transform:matrix(0.159720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159720,0.000000,0.000000,0.250000,0,0);}
.m55_c00409{transform:matrix(0.163059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163059,0.000000,0.000000,0.250000,0,0);}
.m4f_c00409{transform:matrix(0.167401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167401,0.000000,0.000000,0.250000,0,0);}
.m3c_c00409{transform:matrix(0.168569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168569,0.000000,0.000000,0.250000,0,0);}
.m13_c00409{transform:matrix(0.179054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179054,0.000000,0.000000,0.250000,0,0);}
.m10_c00409{transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);}
.m29_c00409{transform:matrix(0.187737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187737,0.000000,0.000000,0.250000,0,0);}
.m48_c00409{transform:matrix(0.189182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189182,0.000000,0.000000,0.250000,0,0);}
.m15_c00409{transform:matrix(0.191304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191304,0.000000,0.000000,0.250000,0,0);}
.m56_c00409{transform:matrix(0.197549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197549,0.000000,0.000000,0.250000,0,0);}
.m2b_c00409{transform:matrix(0.198712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198712,0.000000,0.000000,0.250000,0,0);}
.m38_c00409{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00409{transform:matrix(0.204228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204228,0.000000,0.000000,0.250000,0,0);}
.m3e_c00409{transform:matrix(0.207938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207938,0.000000,0.000000,0.250000,0,0);}
.m2e_c00409{transform:matrix(0.211604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211604,0.000000,0.000000,0.250000,0,0);}
.m5d_c00409{transform:matrix(0.213621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213621,0.000000,0.000000,0.250000,0,0);}
.m33_c00409{transform:matrix(0.216993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216993,0.000000,0.000000,0.250000,0,0);}
.m18_c00409{transform:matrix(0.218066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218066,0.000000,0.000000,0.250000,0,0);}
.m1c_c00409{transform:matrix(0.219393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219393,0.000000,0.000000,0.250000,0,0);}
.m58_c00409{transform:matrix(0.219714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219714,0.000000,0.000000,0.250000,0,0);}
.m22_c00409{transform:matrix(0.220926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220926,0.000000,0.000000,0.250000,0,0);}
.m53_c00409{transform:matrix(0.221593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221593,0.000000,0.000000,0.250000,0,0);}
.m19_c00409{transform:matrix(0.222118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222118,0.000000,0.000000,0.250000,0,0);}
.m32_c00409{transform:matrix(0.228639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228639,0.000000,0.000000,0.250000,0,0);}
.m51_c00409{transform:matrix(0.229657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229657,0.000000,0.000000,0.250000,0,0);}
.m5a_c00409{transform:matrix(0.230865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230865,0.000000,0.000000,0.250000,0,0);}
.m2a_c00409{transform:matrix(0.231513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231513,0.000000,0.000000,0.250000,0,0);}
.m14_c00409{transform:matrix(0.232408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232408,0.000000,0.000000,0.250000,0,0);}
.m49_c00409{transform:matrix(0.232559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232559,0.000000,0.000000,0.250000,0,0);}
.m27_c00409{transform:matrix(0.232685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232685,0.000000,0.000000,0.250000,0,0);}
.m5e_c00409{transform:matrix(0.232931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232931,0.000000,0.000000,0.250000,0,0);}
.m62_c00409{transform:matrix(0.237391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237391,0.000000,0.000000,0.250000,0,0);}
.m1e_c00409{transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);}
.m1f_c00409{transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);}
.me_c00409{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m1_c00409{transform:matrix(0.240678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240678,0.000000,0.000000,0.250000,0,0);}
.m2_c00409{transform:matrix(0.241696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241696,0.000000,0.000000,0.250000,0,0);}
.m36_c00409{transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);}
.mb_c00409{transform:matrix(0.243318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243318,0.000000,0.000000,0.250000,0,0);}
.m1b_c00409{transform:matrix(0.243647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243647,0.000000,0.000000,0.250000,0,0);}
.m5f_c00409{transform:matrix(0.244078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244078,0.000000,0.000000,0.250000,0,0);}
.mf_c00409{transform:matrix(0.244246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244246,0.000000,0.000000,0.250000,0,0);}
.mc_c00409{transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);}
.m54_c00409{transform:matrix(0.245337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245337,0.000000,0.000000,0.250000,0,0);}
.m24_c00409{transform:matrix(0.245658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245658,0.000000,0.000000,0.250000,0,0);}
.m34_c00409{transform:matrix(0.246654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246654,0.000000,0.000000,0.250000,0,0);}
.m5c_c00409{transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);}
.md_c00409{transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);}
.m3b_c00409{transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);}
.m17_c00409{transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);}
.m31_c00409{transform:matrix(0.248127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248127,0.000000,0.000000,0.250000,0,0);}
.m8_c00409{transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);}
.m0_c00409{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);}
.m57_c00409{transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);}
.m42_c00409{transform:matrix(0.252489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252489,0.000000,0.000000,0.250000,0,0);}
.m50_c00409{transform:matrix(0.255840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255840,0.000000,0.000000,0.250000,0,0);}
.m5b_c00409{transform:matrix(0.256459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256459,0.000000,0.000000,0.250000,0,0);}
.m1d_c00409{transform:matrix(0.258007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258007,0.000000,0.000000,0.250000,0,0);}
.m3f_c00409{transform:matrix(0.260521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260521,0.000000,0.000000,0.250000,0,0);}
.m21_c00409{transform:matrix(0.261402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261402,0.000000,0.000000,0.250000,0,0);}
.m43_c00409{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m16_c00409{transform:matrix(0.263558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263558,0.000000,0.000000,0.250000,0,0);}
.m3d_c00409{transform:matrix(0.269327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269327,0.000000,0.000000,0.250000,0,0);}
.m25_c00409{transform:matrix(0.269655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269655,0.000000,0.000000,0.250000,0,0);}
.m60_c00409{transform:matrix(0.276307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276307,0.000000,0.000000,0.250000,0,0);}
.m59_c00409{transform:matrix(0.294533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294533,0.000000,0.000000,0.250000,0,0);}
.m35_c00409{transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);}
.m52_c00409{transform:matrix(0.312112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312112,0.000000,0.000000,0.250000,0,0);}
.m6_c00409{transform:matrix(0.314313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314313,0.000000,0.000000,0.250000,0,0);}
.m3a_c00409{transform:matrix(0.321641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321641,0.000000,0.000000,0.250000,0,0);}
.m1a_c00409{transform:matrix(0.322753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322753,0.000000,0.000000,0.250000,0,0);}
.m44_c00409{transform:matrix(0.332766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332766,0.000000,0.000000,0.250000,0,0);}
.m30_c00409{transform:matrix(0.333914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333914,0.000000,0.000000,0.250000,0,0);}
.m4a_c00409{transform:matrix(0.341362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341362,0.000000,0.000000,0.250000,0,0);}
.m47_c00409{transform:matrix(0.347256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347256,0.000000,0.000000,0.250000,0,0);}
.m23_c00409{transform:matrix(0.348052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348052,0.000000,0.000000,0.250000,0,0);}
.m2d_c00409{transform:matrix(0.351917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351917,0.000000,0.000000,0.250000,0,0);}
.m45_c00409{transform:matrix(0.355367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355367,0.000000,0.000000,0.250000,0,0);}
.m39_c00409{transform:matrix(0.362351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362351,0.000000,0.000000,0.250000,0,0);}
.m46_c00409{transform:matrix(0.373138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373138,0.000000,0.000000,0.250000,0,0);}
.m2f_c00409{transform:matrix(0.397697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397697,0.000000,0.000000,0.250000,0,0);}
.m41_c00409{transform:matrix(0.422257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422257,0.000000,0.000000,0.250000,0,0);}
.m40_c00409{transform:matrix(0.443433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443433,0.000000,0.000000,0.250000,0,0);}
.m4c_c00409{transform:matrix(0.445751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445751,0.000000,0.000000,0.250000,0,0);}
.m4_c00409{transform:matrix(0.445856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445856,0.000000,0.000000,0.250000,0,0);}
.m4b_c00409{transform:matrix(0.459166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459166,0.000000,0.000000,0.250000,0,0);}
.m28_c00409{transform:matrix(0.495693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495693,0.000000,0.000000,0.250000,0,0);}
.m11_c00409{transform:matrix(0.521108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521108,0.000000,0.000000,0.250000,0,0);}
.m37_c00409{transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);}
.m9_c00409{transform:matrix(0.617293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617293,0.000000,0.000000,0.250000,0,0);}
.m4d_c00409{transform:matrix(0.627514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627514,0.000000,0.000000,0.250000,0,0);}
.m5_c00409{transform:matrix(2.396228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.396228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.396228,0.000000,0.000000,0.250000,0,0);}
.vb_c00409{vertical-align:-47.460000px;}
.vf_c00409{vertical-align:-27.360000px;}
.ve_c00409{vertical-align:-25.980000px;}
.v6_c00409{vertical-align:-24.480000px;}
.v10_c00409{vertical-align:-21.540000px;}
.vd_c00409{vertical-align:-17.280000px;}
.v11_c00409{vertical-align:-13.020000px;}
.v2_c00409{vertical-align:-10.080000px;}
.vc_c00409{vertical-align:-8.640000px;}
.v9_c00409{vertical-align:-7.200000px;}
.v13_c00409{vertical-align:-5.820000px;}
.v4_c00409{vertical-align:-4.260000px;}
.v3_c00409{vertical-align:-2.856000px;}
.v1_c00409{vertical-align:-1.440000px;}
.v0_c00409{vertical-align:0.000000px;}
.v8_c00409{vertical-align:2.820000px;}
.v12_c00409{vertical-align:4.320000px;}
.v5_c00409{vertical-align:21.660000px;}
.v7_c00409{vertical-align:24.480000px;}
.va_c00409{vertical-align:36.000000px;}
.ls1d_c00409{letter-spacing:-3.906000px;}
.ls22_c00409{letter-spacing:-2.856000px;}
.ls5b_c00409{letter-spacing:-2.688000px;}
.ls1a_c00409{letter-spacing:-2.562000px;}
.ls16_c00409{letter-spacing:-2.541000px;}
.ls1e_c00409{letter-spacing:-2.478000px;}
.ls2e_c00409{letter-spacing:-2.394000px;}
.ls21_c00409{letter-spacing:-2.352000px;}
.ls55_c00409{letter-spacing:-2.310000px;}
.ls5a_c00409{letter-spacing:-2.184000px;}
.ls57_c00409{letter-spacing:-2.016000px;}
.ls2a_c00409{letter-spacing:-1.821120px;}
.ls59_c00409{letter-spacing:-1.806000px;}
.ls35_c00409{letter-spacing:-1.784640px;}
.ls30_c00409{letter-spacing:-1.651320px;}
.ls27_c00409{letter-spacing:-1.619520px;}
.ls1f_c00409{letter-spacing:-1.614240px;}
.ls43_c00409{letter-spacing:-1.554021px;}
.ls49_c00409{letter-spacing:-1.512000px;}
.ls54_c00409{letter-spacing:-1.449021px;}
.ls26_c00409{letter-spacing:-1.365021px;}
.ls53_c00409{letter-spacing:-1.344000px;}
.ls28_c00409{letter-spacing:-1.283520px;}
.ls2d_c00409{letter-spacing:-1.239021px;}
.ls1b_c00409{letter-spacing:-1.218021px;}
.ls44_c00409{letter-spacing:-1.014720px;}
.ls50_c00409{letter-spacing:-1.008000px;}
.ls37_c00409{letter-spacing:-0.962760px;}
.ls36_c00409{letter-spacing:-0.742560px;}
.ls5c_c00409{letter-spacing:-0.739200px;}
.ls45_c00409{letter-spacing:-0.651840px;}
.ls29_c00409{letter-spacing:-0.551040px;}
.ls61_c00409{letter-spacing:-0.483840px;}
.ls2f_c00409{letter-spacing:-0.463680px;}
.ls3e_c00409{letter-spacing:-0.343200px;}
.ls38_c00409{letter-spacing:-0.235200px;}
.ls34_c00409{letter-spacing:-0.194880px;}
.ls25_c00409{letter-spacing:-0.154560px;}
.ls32_c00409{letter-spacing:-0.127680px;}
.ls5e_c00409{letter-spacing:-0.107520px;}
.ls4b_c00409{letter-spacing:-0.087360px;}
.ls17_c00409{letter-spacing:0.000000px;}
.lse_c00409{letter-spacing:0.006720px;}
.lsa_c00409{letter-spacing:0.060480px;}
.ls15_c00409{letter-spacing:0.087120px;}
.ls12_c00409{letter-spacing:0.087360px;}
.lsb_c00409{letter-spacing:0.107520px;}
.ls5_c00409{letter-spacing:0.134400px;}
.ls46_c00409{letter-spacing:0.147840px;}
.ls8_c00409{letter-spacing:0.215040px;}
.lsc_c00409{letter-spacing:0.329280px;}
.lsf_c00409{letter-spacing:0.380640px;}
.ls3_c00409{letter-spacing:0.430080px;}
.ls10_c00409{letter-spacing:0.558908px;}
.ls4_c00409{letter-spacing:0.579849px;}
.ls7_c00409{letter-spacing:0.609840px;}
.ls62_c00409{letter-spacing:0.622740px;}
.ls3d_c00409{letter-spacing:0.631680px;}
.ls3f_c00409{letter-spacing:0.651840px;}
.ls24_c00409{letter-spacing:0.690030px;}
.ls60_c00409{letter-spacing:0.782114px;}
.ls13_c00409{letter-spacing:0.799680px;}
.lsd_c00409{letter-spacing:0.830291px;}
.ls39_c00409{letter-spacing:1.029616px;}
.ls3b_c00409{letter-spacing:1.084980px;}
.ls51_c00409{letter-spacing:1.126096px;}
.ls11_c00409{letter-spacing:1.188197px;}
.ls40_c00409{letter-spacing:1.260000px;}
.ls5f_c00409{letter-spacing:1.266720px;}
.ls56_c00409{letter-spacing:1.320030px;}
.ls20_c00409{letter-spacing:1.328040px;}
.ls1c_c00409{letter-spacing:1.380000px;}
.ls4f_c00409{letter-spacing:1.410000px;}
.ls3c_c00409{letter-spacing:1.440030px;}
.ls41_c00409{letter-spacing:1.560000px;}
.ls48_c00409{letter-spacing:1.611360px;}
.ls1_c00409{letter-spacing:1.639680px;}
.ls31_c00409{letter-spacing:1.650030px;}
.ls58_c00409{letter-spacing:1.663620px;}
.ls4a_c00409{letter-spacing:1.710000px;}
.ls2b_c00409{letter-spacing:1.739547px;}
.ls23_c00409{letter-spacing:1.822080px;}
.ls4c_c00409{letter-spacing:1.860000px;}
.ls2c_c00409{letter-spacing:1.920030px;}
.ls3a_c00409{letter-spacing:1.950030px;}
.ls4d_c00409{letter-spacing:2.040030px;}
.ls52_c00409{letter-spacing:2.070030px;}
.ls0_c00409{letter-spacing:2.140320px;}
.ls47_c00409{letter-spacing:2.160000px;}
.ls6_c00409{letter-spacing:2.217600px;}
.ls42_c00409{letter-spacing:2.220030px;}
.ls19_c00409{letter-spacing:2.280000px;}
.ls5d_c00409{letter-spacing:2.580000px;}
.ls14_c00409{letter-spacing:2.744280px;}
.ls18_c00409{letter-spacing:2.760000px;}
.ls2_c00409{letter-spacing:2.982720px;}
.ls33_c00409{letter-spacing:3.360000px;}
.ls4e_c00409{letter-spacing:3.390000px;}
.ls9_c00409{letter-spacing:5.198400px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{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__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00409{word-spacing:0.000000px;}
.ws0_c00409{word-spacing:8.565840px;}
._32_c00409{margin-left:-9.811942px;}
._13_c00409{width:2.983200px;}
._4_c00409{width:4.297920px;}
._33_c00409{width:5.728264px;}
._6_c00409{width:8.386560px;}
._3_c00409{width:11.766240px;}
._1f_c00409{width:33.122400px;}
._2f_c00409{width:41.550000px;}
._8_c00409{width:63.557760px;}
._d_c00409{width:74.182080px;}
._c_c00409{width:77.224800px;}
._1c_c00409{width:147.009600px;}
._24_c00409{width:169.057200px;}
._1_c00409{width:171.539040px;}
._17_c00409{width:181.184640px;}
._16_c00409{width:185.078400px;}
._18_c00409{width:193.096800px;}
._2d_c00409{width:194.398080px;}
._21_c00409{width:196.680000px;}
._37_c00409{width:197.733120px;}
._26_c00409{width:204.110400px;}
._22_c00409{width:206.515680px;}
._f_c00409{width:209.539200px;}
._12_c00409{width:210.974400px;}
._10_c00409{width:212.409600px;}
._0_c00409{width:213.870000px;}
._b_c00409{width:215.280000px;}
._31_c00409{width:233.220000px;}
._2a_c00409{width:363.000000px;}
._2e_c00409{width:430.617120px;}
._3a_c00409{width:444.397200px;}
._28_c00409{width:452.137200px;}
._1b_c00409{width:462.945600px;}
._36_c00409{width:466.939200px;}
._29_c00409{width:468.360000px;}
._35_c00409{width:469.920000px;}
._27_c00409{width:472.809600px;}
._25_c00409{width:485.583840px;}
._2b_c00409{width:523.093920px;}
._19_c00409{width:660.304080px;}
._e_c00409{width:687.177120px;}
._3b_c00409{width:711.568320px;}
._1a_c00409{width:719.659200px;}
._34_c00409{width:736.377120px;}
._30_c00409{width:765.544800px;}
._15_c00409{width:921.045600px;}
._a_c00409{width:967.085280px;}
._7_c00409{width:969.174720px;}
._2c_c00409{width:975.240000px;}
._20_c00409{width:1081.084002px;}
._23_c00409{width:1096.495680px;}
._9_c00409{width:1133.379705px;}
._2_c00409{width:1176.595200px;}
._38_c00409{width:1220.412000px;}
._5_c00409{width:1221.421920px;}
._39_c00409{width:1295.483040px;}
._3c_c00409{width:1306.209120px;}
._11_c00409{width:1310.392800px;}
._1d_c00409{width:1551.593500px;}
._14_c00409{width:1595.596800px;}
._1e_c00409{width:1611.271200px;}
.fc0_c00409{color:transparent;}
.fs24_c00409{font-size:12.960000px;}
.fs10_c00409{font-size:13.800600px;}
.fs20_c00409{font-size:25.200000px;}
.fs2f_c00409{font-size:26.400600px;}
.fs2b_c00409{font-size:27.360600px;}
.fs9_c00409{font-size:27.600000px;}
.fs2d_c00409{font-size:28.200000px;}
.fs1f_c00409{font-size:28.800600px;}
.fs21_c00409{font-size:31.200000px;}
.fs18_c00409{font-size:33.000600px;}
.fs22_c00409{font-size:34.200000px;}
.fs29_c00409{font-size:34.560000px;}
.fs8_c00409{font-size:34.800600px;}
.fs15_c00409{font-size:35.400600px;}
.fs27_c00409{font-size:36.000000px;}
.fs28_c00409{font-size:37.200000px;}
.fs2_c00409{font-size:37.440000px;}
.fs14_c00409{font-size:38.400600px;}
.fs36_c00409{font-size:38.880600px;}
.fs13_c00409{font-size:39.000600px;}
.fs1b_c00409{font-size:40.320000px;}
.fs2a_c00409{font-size:40.800600px;}
.fs2e_c00409{font-size:41.400600px;}
.fs23_c00409{font-size:43.200000px;}
.fs1e_c00409{font-size:44.400600px;}
.fs6_c00409{font-size:45.600000px;}
.fs25_c00409{font-size:47.520000px;}
.fs19_c00409{font-size:50.400000px;}
.fs31_c00409{font-size:51.600000px;}
.fs12_c00409{font-size:53.280000px;}
.fs11_c00409{font-size:54.720000px;}
.fs4_c00409{font-size:55.200000px;}
.fs30_c00409{font-size:57.600000px;}
.fs35_c00409{font-size:58.200000px;}
.fs0_c00409{font-size:59.400000px;}
.fs34_c00409{font-size:60.000000px;}
.fsf_c00409{font-size:62.400000px;}
.fs26_c00409{font-size:63.000000px;}
.fs1a_c00409{font-size:63.600000px;}
.fse_c00409{font-size:64.200000px;}
.fs1d_c00409{font-size:66.000000px;}
.fs16_c00409{font-size:66.600000px;}
.fsc_c00409{font-size:67.200000px;}
.fs1c_c00409{font-size:67.800000px;}
.fs17_c00409{font-size:68.400000px;}
.fs3_c00409{font-size:70.800000px;}
.fsb_c00409{font-size:71.400000px;}
.fs33_c00409{font-size:72.000000px;}
.fs1_c00409{font-size:72.600000px;}
.fs7_c00409{font-size:73.200000px;}
.fs2c_c00409{font-size:76.200000px;}
.fs5_c00409{font-size:76.320000px;}
.fs32_c00409{font-size:76.800000px;}
.fsd_c00409{font-size:81.600000px;}
.fsa_c00409{font-size:111.600000px;}
.y0_c00409{bottom:0.000000px;}
.y6f_c00409{bottom:100.455000px;}
.y6e_c00409{bottom:149.415000px;}
.y6d_c00409{bottom:165.960000px;}
.y6c_c00409{bottom:166.680000px;}
.y6b_c00409{bottom:183.600000px;}
.y69_c00409{bottom:183.960000px;}
.y6a_c00409{bottom:189.000000px;}
.y67_c00409{bottom:200.175000px;}
.y68_c00409{bottom:201.615000px;}
.y65_c00409{bottom:218.895000px;}
.y66_c00409{bottom:219.255000px;}
.y64_c00409{bottom:236.535000px;}
.y62_c00409{bottom:253.800000px;}
.y63_c00409{bottom:254.535000px;}
.y61_c00409{bottom:271.800000px;}
.y5e_c00409{bottom:289.455000px;}
.y60_c00409{bottom:290.895000px;}
.y5f_c00409{bottom:295.935000px;}
.y5d_c00409{bottom:306.720000px;}
.y5b_c00409{bottom:308.895000px;}
.y5c_c00409{bottom:309.615000px;}
.y58_c00409{bottom:310.335000px;}
.y5a_c00409{bottom:311.055000px;}
.y59_c00409{bottom:315.015000px;}
.y57_c00409{bottom:338.055000px;}
.y56_c00409{bottom:358.575000px;}
.y54_c00409{bottom:361.095000px;}
.y55_c00409{bottom:363.615000px;}
.y53_c00409{bottom:379.455000px;}
.y52_c00409{bottom:382.320000px;}
.y4f_c00409{bottom:397.800000px;}
.y50_c00409{bottom:398.895000px;}
.y51_c00409{bottom:400.320000px;}
.y4e_c00409{bottom:401.055000px;}
.y4d_c00409{bottom:417.240000px;}
.y4c_c00409{bottom:418.320000px;}
.y4b_c00409{bottom:427.695000px;}
.y49_c00409{bottom:429.855000px;}
.y4a_c00409{bottom:430.200000px;}
.y47_c00409{bottom:434.175000px;}
.y48_c00409{bottom:437.775000px;}
.y46_c00409{bottom:447.855000px;}
.y45_c00409{bottom:450.720000px;}
.y44_c00409{bottom:454.320000px;}
.y41_c00409{bottom:464.775000px;}
.y43_c00409{bottom:465.135000px;}
.y42_c00409{bottom:465.480000px;}
.y40_c00409{bottom:471.615000px;}
.y3f_c00409{bottom:490.320000px;}
.y3e_c00409{bottom:501.135000px;}
.y3d_c00409{bottom:507.615000px;}
.y3c_c00409{bottom:518.775000px;}
.y3b_c00409{bottom:526.320000px;}
.y3a_c00409{bottom:536.400000px;}
.y39_c00409{bottom:537.480000px;}
.y38_c00409{bottom:560.895000px;}
.y36_c00409{bottom:574.560000px;}
.y37_c00409{bottom:576.720000px;}
.y35_c00409{bottom:578.175000px;}
.y34_c00409{bottom:590.055000px;}
.y31_c00409{bottom:593.640000px;}
.y33_c00409{bottom:596.535000px;}
.y32_c00409{bottom:597.975000px;}
.y2f_c00409{bottom:608.400000px;}
.y30_c00409{bottom:608.775000px;}
.y2e_c00409{bottom:612.015000px;}
.y2d_c00409{bottom:628.200000px;}
.y2c_c00409{bottom:645.855000px;}
.y2b_c00409{bottom:661.695000px;}
.y2a_c00409{bottom:662.055000px;}
.y29_c00409{bottom:680.055000px;}
.y28_c00409{bottom:682.560000px;}
.y26_c00409{bottom:698.400000px;}
.y27_c00409{bottom:707.400000px;}
.y25_c00409{bottom:717.135000px;}
.y24_c00409{bottom:734.055000px;}
.y23_c00409{bottom:736.560000px;}
.y22_c00409{bottom:752.055000px;}
.y21_c00409{bottom:753.855000px;}
.y20_c00409{bottom:770.400000px;}
.y1f_c00409{bottom:788.400000px;}
.y1e_c00409{bottom:807.495000px;}
.y1d_c00409{bottom:810.720000px;}
.y1c_c00409{bottom:824.055000px;}
.y19_c00409{bottom:842.055000px;}
.y1b_c00409{bottom:842.400000px;}
.y1a_c00409{bottom:848.535000px;}
.y17_c00409{bottom:860.400000px;}
.y18_c00409{bottom:865.815000px;}
.y16_c00409{bottom:878.400000px;}
.y15_c00409{bottom:896.049000px;}
.y14_c00409{bottom:912.975000px;}
.y13_c00409{bottom:915.855000px;}
.y11_c00409{bottom:932.400000px;}
.y12_c00409{bottom:932.760000px;}
.y10_c00409{bottom:946.080000px;}
.yf_c00409{bottom:948.600000px;}
.ye_c00409{bottom:948.975000px;}
.yd_c00409{bottom:951.135000px;}
.yc_c00409{bottom:979.200000px;}
.ya_c00409{bottom:1010.175000px;}
.yb_c00409{bottom:1010.535000px;}
.y9_c00409{bottom:1010.541000px;}
.y8_c00409{bottom:1022.400000px;}
.y7_c00409{bottom:1030.335000px;}
.y6_c00409{bottom:1031.055000px;}
.y4_c00409{bottom:1040.055000px;}
.y5_c00409{bottom:1041.855000px;}
.y3_c00409{bottom:1047.600000px;}
.y2_c00409{bottom:1074.240000px;}
.y1_c00409{bottom:1152.375000px;}
.h29_c00409{height:8.631360px;}
.h11_c00409{height:14.393595px;}
.h31_c00409{height:18.222160px;}
.h2f_c00409{height:23.016960px;}
.h37_c00409{height:23.976000px;}
.h4_c00409{height:24.935040px;}
.h3d_c00409{height:25.894480px;}
.h24_c00409{height:26.282813px;}
.h1e_c00409{height:26.853120px;}
.h36_c00409{height:27.535001px;}
.h33_c00409{height:27.662988px;}
.h23_c00409{height:28.266214px;}
.hb_c00409{height:28.785937px;}
.h25_c00409{height:30.621094px;}
.h2a_c00409{height:31.648320px;}
.h1c_c00409{height:32.388284px;}
.ha_c00409{height:34.154886px;}
.h18_c00409{height:34.726467px;}
.h34_c00409{height:35.332031px;}
.h13_c00409{height:35.484480px;}
.h2c_c00409{height:35.669531px;}
.h12_c00409{height:36.443520px;}
.h17_c00409{height:37.669339px;}
.h2d_c00409{height:38.560312px;}
.h2e_c00409{height:38.798438px;}
.h35_c00409{height:40.632425px;}
.h14_c00409{height:40.676407px;}
.h27_c00409{height:41.440313px;}
.h28_c00409{height:42.377344px;}
.h30_c00409{height:42.553751px;}
.h8_c00409{height:44.753906px;}
.h26_c00409{height:46.308438px;}
.h39_c00409{height:50.617383px;}
.h7_c00409{height:50.829120px;}
.h3c_c00409{height:53.817187px;}
.h38_c00409{height:56.531250px;}
.h3e_c00409{height:57.120117px;}
.h6_c00409{height:57.571875px;}
.h2_c00409{height:58.297852px;}
.h15_c00409{height:61.242188px;}
.h2b_c00409{height:61.831055px;}
.h1d_c00409{height:62.419922px;}
.h10_c00409{height:63.008789px;}
.h21_c00409{height:64.775391px;}
.h19_c00409{height:65.364258px;}
.he_c00409{height:65.920312px;}
.h16_c00409{height:65.944313px;}
.h1f_c00409{height:66.541992px;}
.h32_c00409{height:66.606328px;}
.h22_c00409{height:66.958594px;}
.h1a_c00409{height:67.130859px;}
.h5_c00409{height:69.486328px;}
.hd_c00409{height:70.075195px;}
.h3b_c00409{height:70.773750px;}
.h3_c00409{height:71.252930px;}
.h9_c00409{height:71.841797px;}
.h3a_c00409{height:75.375000px;}
.h20_c00409{height:76.676407px;}
.h1b_c00409{height:82.777852px;}
.hf_c00409{height:85.106250px;}
.hc_c00409{height:116.395313px;}
.h1_c00409{height:1263.000000px;}
.h0_c00409{height:1263.240000px;}
.w1_c00409{width:892.500000px;}
.w0_c00409{width:892.800000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:107.205000px;}
.x6_c00409{left:111.600000px;}
.x2b_c00409{left:113.775000px;}
.x15_c00409{left:115.080000px;}
.x14_c00409{left:116.190000px;}
.x2_c00409{left:117.570000px;}
.x40_c00409{left:129.180000px;}
.x33_c00409{left:132.960000px;}
.x4d_c00409{left:135.105000px;}
.x4c_c00409{left:136.425000px;}
.x24_c00409{left:138.015000px;}
.x2a_c00409{left:146.670000px;}
.x27_c00409{left:149.340000px;}
.x22_c00409{left:150.960000px;}
.x28_c00409{left:152.130000px;}
.x34_c00409{left:159.180000px;}
.x3_c00409{left:163.845000px;}
.x25_c00409{left:166.695000px;}
.x42_c00409{left:171.450000px;}
.x36_c00409{left:173.025000px;}
.x7_c00409{left:174.585000px;}
.x38_c00409{left:178.680000px;}
.x44_c00409{left:180.390000px;}
.x4_c00409{left:181.980000px;}
.x23_c00409{left:183.405000px;}
.x3c_c00409{left:188.505000px;}
.x45_c00409{left:191.640000px;}
.x2e_c00409{left:199.605000px;}
.x4f_c00409{left:200.835000px;}
.x46_c00409{left:204.585000px;}
.x1f_c00409{left:205.830000px;}
.x49_c00409{left:207.360000px;}
.x16_c00409{left:210.870000px;}
.x1d_c00409{left:212.145000px;}
.x20_c00409{left:213.750000px;}
.x37_c00409{left:215.250000px;}
.x26_c00409{left:217.725000px;}
.x2f_c00409{left:219.780000px;}
.x39_c00409{left:221.940000px;}
.x41_c00409{left:224.460000px;}
.x21_c00409{left:225.990000px;}
.x30_c00409{left:228.255000px;}
.x50_c00409{left:235.335000px;}
.x48_c00409{left:238.470000px;}
.x3d_c00409{left:241.815000px;}
.x2c_c00409{left:243.495000px;}
.x35_c00409{left:246.510000px;}
.x1b_c00409{left:247.530000px;}
.x2d_c00409{left:252.555000px;}
.x3e_c00409{left:254.055000px;}
.x3a_c00409{left:255.075000px;}
.x1c_c00409{left:266.100000px;}
.x47_c00409{left:276.030000px;}
.x5_c00409{left:280.785000px;}
.x3b_c00409{left:296.835000px;}
.x43_c00409{left:390.420000px;}
.x17_c00409{left:392.670000px;}
.x3f_c00409{left:394.845000px;}
.x29_c00409{left:395.910000px;}
.x11_c00409{left:397.974000px;}
.x51_c00409{left:417.795000px;}
.x18_c00409{left:456.765000px;}
.x12_c00409{left:458.760000px;}
.xb_c00409{left:505.875000px;}
.xa_c00409{left:513.345000px;}
.x13_c00409{left:521.895000px;}
.x31_c00409{left:524.430000px;}
.x1e_c00409{left:527.580000px;}
.x8_c00409{left:545.820000px;}
.xc_c00409{left:554.910000px;}
.x9_c00409{left:568.095000px;}
.x4a_c00409{left:583.395000px;}
.xd_c00409{left:585.180000px;}
.x4e_c00409{left:586.260000px;}
.x32_c00409{left:588.165000px;}
.xe_c00409{left:610.530000px;}
.x4b_c00409{left:646.950000px;}
.xf_c00409{left:649.620000px;}
.x19_c00409{left:654.120000px;}
.x10_c00409{left:710.025000px;}
.x1a_c00409{left:728.190000px;}
@media print{
.vb_c00409{vertical-align:-42.186667pt;}
.vf_c00409{vertical-align:-24.320000pt;}
.ve_c00409{vertical-align:-23.093333pt;}
.v6_c00409{vertical-align:-21.760000pt;}
.v10_c00409{vertical-align:-19.146667pt;}
.vd_c00409{vertical-align:-15.360000pt;}
.v11_c00409{vertical-align:-11.573333pt;}
.v2_c00409{vertical-align:-8.960000pt;}
.vc_c00409{vertical-align:-7.680000pt;}
.v9_c00409{vertical-align:-6.400000pt;}
.v13_c00409{vertical-align:-5.173333pt;}
.v4_c00409{vertical-align:-3.786667pt;}
.v3_c00409{vertical-align:-2.538667pt;}
.v1_c00409{vertical-align:-1.280000pt;}
.v0_c00409{vertical-align:0.000000pt;}
.v8_c00409{vertical-align:2.506667pt;}
.v12_c00409{vertical-align:3.840000pt;}
.v5_c00409{vertical-align:19.253333pt;}
.v7_c00409{vertical-align:21.760000pt;}
.va_c00409{vertical-align:32.000000pt;}
.ls1d_c00409{letter-spacing:-3.472000pt;}
.ls22_c00409{letter-spacing:-2.538667pt;}
.ls5b_c00409{letter-spacing:-2.389333pt;}
.ls1a_c00409{letter-spacing:-2.277333pt;}
.ls16_c00409{letter-spacing:-2.258667pt;}
.ls1e_c00409{letter-spacing:-2.202667pt;}
.ls2e_c00409{letter-spacing:-2.128000pt;}
.ls21_c00409{letter-spacing:-2.090667pt;}
.ls55_c00409{letter-spacing:-2.053333pt;}
.ls5a_c00409{letter-spacing:-1.941333pt;}
.ls57_c00409{letter-spacing:-1.792000pt;}
.ls2a_c00409{letter-spacing:-1.618773pt;}
.ls59_c00409{letter-spacing:-1.605333pt;}
.ls35_c00409{letter-spacing:-1.586347pt;}
.ls30_c00409{letter-spacing:-1.467840pt;}
.ls27_c00409{letter-spacing:-1.439573pt;}
.ls1f_c00409{letter-spacing:-1.434880pt;}
.ls43_c00409{letter-spacing:-1.381352pt;}
.ls49_c00409{letter-spacing:-1.344000pt;}
.ls54_c00409{letter-spacing:-1.288019pt;}
.ls26_c00409{letter-spacing:-1.213352pt;}
.ls53_c00409{letter-spacing:-1.194667pt;}
.ls28_c00409{letter-spacing:-1.140907pt;}
.ls2d_c00409{letter-spacing:-1.101352pt;}
.ls1b_c00409{letter-spacing:-1.082685pt;}
.ls44_c00409{letter-spacing:-0.901973pt;}
.ls50_c00409{letter-spacing:-0.896000pt;}
.ls37_c00409{letter-spacing:-0.855787pt;}
.ls36_c00409{letter-spacing:-0.660053pt;}
.ls5c_c00409{letter-spacing:-0.657067pt;}
.ls45_c00409{letter-spacing:-0.579413pt;}
.ls29_c00409{letter-spacing:-0.489813pt;}
.ls61_c00409{letter-spacing:-0.430080pt;}
.ls2f_c00409{letter-spacing:-0.412160pt;}
.ls3e_c00409{letter-spacing:-0.305067pt;}
.ls38_c00409{letter-spacing:-0.209067pt;}
.ls34_c00409{letter-spacing:-0.173227pt;}
.ls25_c00409{letter-spacing:-0.137387pt;}
.ls32_c00409{letter-spacing:-0.113493pt;}
.ls5e_c00409{letter-spacing:-0.095573pt;}
.ls4b_c00409{letter-spacing:-0.077653pt;}
.ls17_c00409{letter-spacing:0.000000pt;}
.lse_c00409{letter-spacing:0.005973pt;}
.lsa_c00409{letter-spacing:0.053760pt;}
.ls15_c00409{letter-spacing:0.077440pt;}
.ls12_c00409{letter-spacing:0.077653pt;}
.lsb_c00409{letter-spacing:0.095573pt;}
.ls5_c00409{letter-spacing:0.119467pt;}
.ls46_c00409{letter-spacing:0.131413pt;}
.ls8_c00409{letter-spacing:0.191147pt;}
.lsc_c00409{letter-spacing:0.292693pt;}
.lsf_c00409{letter-spacing:0.338347pt;}
.ls3_c00409{letter-spacing:0.382293pt;}
.ls10_c00409{letter-spacing:0.496807pt;}
.ls4_c00409{letter-spacing:0.515421pt;}
.ls7_c00409{letter-spacing:0.542080pt;}
.ls62_c00409{letter-spacing:0.553547pt;}
.ls3d_c00409{letter-spacing:0.561493pt;}
.ls3f_c00409{letter-spacing:0.579413pt;}
.ls24_c00409{letter-spacing:0.613360pt;}
.ls60_c00409{letter-spacing:0.695213pt;}
.ls13_c00409{letter-spacing:0.710827pt;}
.lsd_c00409{letter-spacing:0.738037pt;}
.ls39_c00409{letter-spacing:0.915214pt;}
.ls3b_c00409{letter-spacing:0.964427pt;}
.ls51_c00409{letter-spacing:1.000975pt;}
.ls11_c00409{letter-spacing:1.056175pt;}
.ls40_c00409{letter-spacing:1.120000pt;}
.ls5f_c00409{letter-spacing:1.125973pt;}
.ls56_c00409{letter-spacing:1.173360pt;}
.ls20_c00409{letter-spacing:1.180480pt;}
.ls1c_c00409{letter-spacing:1.226667pt;}
.ls4f_c00409{letter-spacing:1.253333pt;}
.ls3c_c00409{letter-spacing:1.280027pt;}
.ls41_c00409{letter-spacing:1.386667pt;}
.ls48_c00409{letter-spacing:1.432320pt;}
.ls1_c00409{letter-spacing:1.457493pt;}
.ls31_c00409{letter-spacing:1.466693pt;}
.ls58_c00409{letter-spacing:1.478773pt;}
.ls4a_c00409{letter-spacing:1.520000pt;}
.ls2b_c00409{letter-spacing:1.546264pt;}
.ls23_c00409{letter-spacing:1.619627pt;}
.ls4c_c00409{letter-spacing:1.653333pt;}
.ls2c_c00409{letter-spacing:1.706693pt;}
.ls3a_c00409{letter-spacing:1.733360pt;}
.ls4d_c00409{letter-spacing:1.813360pt;}
.ls52_c00409{letter-spacing:1.840027pt;}
.ls0_c00409{letter-spacing:1.902507pt;}
.ls47_c00409{letter-spacing:1.920000pt;}
.ls6_c00409{letter-spacing:1.971200pt;}
.ls42_c00409{letter-spacing:1.973360pt;}
.ls19_c00409{letter-spacing:2.026667pt;}
.ls5d_c00409{letter-spacing:2.293333pt;}
.ls14_c00409{letter-spacing:2.439360pt;}
.ls18_c00409{letter-spacing:2.453333pt;}
.ls2_c00409{letter-spacing:2.651307pt;}
.ls33_c00409{letter-spacing:2.986667pt;}
.ls4e_c00409{letter-spacing:3.013333pt;}
.ls9_c00409{letter-spacing:4.620800pt;}
.ws1_c00409{word-spacing:0.000000pt;}
.ws0_c00409{word-spacing:7.614080pt;}
._32_c00409{margin-left:-8.721726pt;}
._13_c00409{width:2.651733pt;}
._4_c00409{width:3.820373pt;}
._33_c00409{width:5.091790pt;}
._6_c00409{width:7.454720pt;}
._3_c00409{width:10.458880pt;}
._1f_c00409{width:29.442133pt;}
._2f_c00409{width:36.933333pt;}
._8_c00409{width:56.495787pt;}
._d_c00409{width:65.939627pt;}
._c_c00409{width:68.644267pt;}
._1c_c00409{width:130.675200pt;}
._24_c00409{width:150.273067pt;}
._1_c00409{width:152.479147pt;}
._17_c00409{width:161.053013pt;}
._16_c00409{width:164.514133pt;}
._18_c00409{width:171.641600pt;}
._2d_c00409{width:172.798293pt;}
._21_c00409{width:174.826667pt;}
._37_c00409{width:175.762773pt;}
._26_c00409{width:181.431467pt;}
._22_c00409{width:183.569493pt;}
._f_c00409{width:186.257067pt;}
._12_c00409{width:187.532800pt;}
._10_c00409{width:188.808533pt;}
._0_c00409{width:190.106667pt;}
._b_c00409{width:191.360000pt;}
._31_c00409{width:207.306667pt;}
._2a_c00409{width:322.666667pt;}
._2e_c00409{width:382.770773pt;}
._3a_c00409{width:395.019733pt;}
._28_c00409{width:401.899733pt;}
._1b_c00409{width:411.507200pt;}
._36_c00409{width:415.057067pt;}
._29_c00409{width:416.320000pt;}
._35_c00409{width:417.706667pt;}
._27_c00409{width:420.275200pt;}
._25_c00409{width:431.630080pt;}
._2b_c00409{width:464.972373pt;}
._19_c00409{width:586.936960pt;}
._e_c00409{width:610.824107pt;}
._3b_c00409{width:632.505173pt;}
._1a_c00409{width:639.697067pt;}
._34_c00409{width:654.557440pt;}
._30_c00409{width:680.484267pt;}
._15_c00409{width:818.707200pt;}
._a_c00409{width:859.631360pt;}
._7_c00409{width:861.488640pt;}
._2c_c00409{width:866.880000pt;}
._20_c00409{width:960.963558pt;}
._23_c00409{width:974.662827pt;}
._9_c00409{width:1007.448626pt;}
._2_c00409{width:1045.862400pt;}
._38_c00409{width:1084.810667pt;}
._5_c00409{width:1085.708373pt;}
._39_c00409{width:1151.540480pt;}
._3c_c00409{width:1161.074773pt;}
._11_c00409{width:1164.793600pt;}
._1d_c00409{width:1379.194222pt;}
._14_c00409{width:1418.308267pt;}
._1e_c00409{width:1432.241067pt;}
.fs24_c00409{font-size:11.520000pt;}
.fs10_c00409{font-size:12.267200pt;}
.fs20_c00409{font-size:22.400000pt;}
.fs2f_c00409{font-size:23.467200pt;}
.fs2b_c00409{font-size:24.320533pt;}
.fs9_c00409{font-size:24.533333pt;}
.fs2d_c00409{font-size:25.066667pt;}
.fs1f_c00409{font-size:25.600533pt;}
.fs21_c00409{font-size:27.733333pt;}
.fs18_c00409{font-size:29.333867pt;}
.fs22_c00409{font-size:30.400000pt;}
.fs29_c00409{font-size:30.720000pt;}
.fs8_c00409{font-size:30.933867pt;}
.fs15_c00409{font-size:31.467200pt;}
.fs27_c00409{font-size:32.000000pt;}
.fs28_c00409{font-size:33.066667pt;}
.fs2_c00409{font-size:33.280000pt;}
.fs14_c00409{font-size:34.133867pt;}
.fs36_c00409{font-size:34.560533pt;}
.fs13_c00409{font-size:34.667200pt;}
.fs1b_c00409{font-size:35.840000pt;}
.fs2a_c00409{font-size:36.267200pt;}
.fs2e_c00409{font-size:36.800533pt;}
.fs23_c00409{font-size:38.400000pt;}
.fs1e_c00409{font-size:39.467200pt;}
.fs6_c00409{font-size:40.533333pt;}
.fs25_c00409{font-size:42.240000pt;}
.fs19_c00409{font-size:44.800000pt;}
.fs31_c00409{font-size:45.866667pt;}
.fs12_c00409{font-size:47.360000pt;}
.fs11_c00409{font-size:48.640000pt;}
.fs4_c00409{font-size:49.066667pt;}
.fs30_c00409{font-size:51.200000pt;}
.fs35_c00409{font-size:51.733333pt;}
.fs0_c00409{font-size:52.800000pt;}
.fs34_c00409{font-size:53.333333pt;}
.fsf_c00409{font-size:55.466667pt;}
.fs26_c00409{font-size:56.000000pt;}
.fs1a_c00409{font-size:56.533333pt;}
.fse_c00409{font-size:57.066667pt;}
.fs1d_c00409{font-size:58.666667pt;}
.fs16_c00409{font-size:59.200000pt;}
.fsc_c00409{font-size:59.733333pt;}
.fs1c_c00409{font-size:60.266667pt;}
.fs17_c00409{font-size:60.800000pt;}
.fs3_c00409{font-size:62.933333pt;}
.fsb_c00409{font-size:63.466667pt;}
.fs33_c00409{font-size:64.000000pt;}
.fs1_c00409{font-size:64.533333pt;}
.fs7_c00409{font-size:65.066667pt;}
.fs2c_c00409{font-size:67.733333pt;}
.fs5_c00409{font-size:67.840000pt;}
.fs32_c00409{font-size:68.266667pt;}
.fsd_c00409{font-size:72.533333pt;}
.fsa_c00409{font-size:99.200000pt;}
.y0_c00409{bottom:0.000000pt;}
.y6f_c00409{bottom:89.293333pt;}
.y6e_c00409{bottom:132.813333pt;}
.y6d_c00409{bottom:147.520000pt;}
.y6c_c00409{bottom:148.160000pt;}
.y6b_c00409{bottom:163.200000pt;}
.y69_c00409{bottom:163.520000pt;}
.y6a_c00409{bottom:168.000000pt;}
.y67_c00409{bottom:177.933333pt;}
.y68_c00409{bottom:179.213333pt;}
.y65_c00409{bottom:194.573333pt;}
.y66_c00409{bottom:194.893333pt;}
.y64_c00409{bottom:210.253333pt;}
.y62_c00409{bottom:225.600000pt;}
.y63_c00409{bottom:226.253333pt;}
.y61_c00409{bottom:241.600000pt;}
.y5e_c00409{bottom:257.293333pt;}
.y60_c00409{bottom:258.573333pt;}
.y5f_c00409{bottom:263.053333pt;}
.y5d_c00409{bottom:272.640000pt;}
.y5b_c00409{bottom:274.573333pt;}
.y5c_c00409{bottom:275.213333pt;}
.y58_c00409{bottom:275.853333pt;}
.y5a_c00409{bottom:276.493333pt;}
.y59_c00409{bottom:280.013333pt;}
.y57_c00409{bottom:300.493333pt;}
.y56_c00409{bottom:318.733333pt;}
.y54_c00409{bottom:320.973333pt;}
.y55_c00409{bottom:323.213333pt;}
.y53_c00409{bottom:337.293333pt;}
.y52_c00409{bottom:339.840000pt;}
.y4f_c00409{bottom:353.600000pt;}
.y50_c00409{bottom:354.573333pt;}
.y51_c00409{bottom:355.840000pt;}
.y4e_c00409{bottom:356.493333pt;}
.y4d_c00409{bottom:370.880000pt;}
.y4c_c00409{bottom:371.840000pt;}
.y4b_c00409{bottom:380.173333pt;}
.y49_c00409{bottom:382.093333pt;}
.y4a_c00409{bottom:382.400000pt;}
.y47_c00409{bottom:385.933333pt;}
.y48_c00409{bottom:389.133333pt;}
.y46_c00409{bottom:398.093333pt;}
.y45_c00409{bottom:400.640000pt;}
.y44_c00409{bottom:403.840000pt;}
.y41_c00409{bottom:413.133333pt;}
.y43_c00409{bottom:413.453333pt;}
.y42_c00409{bottom:413.760000pt;}
.y40_c00409{bottom:419.213333pt;}
.y3f_c00409{bottom:435.840000pt;}
.y3e_c00409{bottom:445.453333pt;}
.y3d_c00409{bottom:451.213333pt;}
.y3c_c00409{bottom:461.133333pt;}
.y3b_c00409{bottom:467.840000pt;}
.y3a_c00409{bottom:476.800000pt;}
.y39_c00409{bottom:477.760000pt;}
.y38_c00409{bottom:498.573333pt;}
.y36_c00409{bottom:510.720000pt;}
.y37_c00409{bottom:512.640000pt;}
.y35_c00409{bottom:513.933333pt;}
.y34_c00409{bottom:524.493333pt;}
.y31_c00409{bottom:527.680000pt;}
.y33_c00409{bottom:530.253333pt;}
.y32_c00409{bottom:531.533333pt;}
.y2f_c00409{bottom:540.800000pt;}
.y30_c00409{bottom:541.133333pt;}
.y2e_c00409{bottom:544.013333pt;}
.y2d_c00409{bottom:558.400000pt;}
.y2c_c00409{bottom:574.093333pt;}
.y2b_c00409{bottom:588.173333pt;}
.y2a_c00409{bottom:588.493333pt;}
.y29_c00409{bottom:604.493333pt;}
.y28_c00409{bottom:606.720000pt;}
.y26_c00409{bottom:620.800000pt;}
.y27_c00409{bottom:628.800000pt;}
.y25_c00409{bottom:637.453333pt;}
.y24_c00409{bottom:652.493333pt;}
.y23_c00409{bottom:654.720000pt;}
.y22_c00409{bottom:668.493333pt;}
.y21_c00409{bottom:670.093333pt;}
.y20_c00409{bottom:684.800000pt;}
.y1f_c00409{bottom:700.800000pt;}
.y1e_c00409{bottom:717.773333pt;}
.y1d_c00409{bottom:720.640000pt;}
.y1c_c00409{bottom:732.493333pt;}
.y19_c00409{bottom:748.493333pt;}
.y1b_c00409{bottom:748.800000pt;}
.y1a_c00409{bottom:754.253333pt;}
.y17_c00409{bottom:764.800000pt;}
.y18_c00409{bottom:769.613333pt;}
.y16_c00409{bottom:780.800000pt;}
.y15_c00409{bottom:796.488000pt;}
.y14_c00409{bottom:811.533333pt;}
.y13_c00409{bottom:814.093333pt;}
.y11_c00409{bottom:828.800000pt;}
.y12_c00409{bottom:829.120000pt;}
.y10_c00409{bottom:840.960000pt;}
.yf_c00409{bottom:843.200000pt;}
.ye_c00409{bottom:843.533333pt;}
.yd_c00409{bottom:845.453333pt;}
.yc_c00409{bottom:870.400000pt;}
.ya_c00409{bottom:897.933333pt;}
.yb_c00409{bottom:898.253333pt;}
.y9_c00409{bottom:898.258667pt;}
.y8_c00409{bottom:908.800000pt;}
.y7_c00409{bottom:915.853333pt;}
.y6_c00409{bottom:916.493333pt;}
.y4_c00409{bottom:924.493333pt;}
.y5_c00409{bottom:926.093333pt;}
.y3_c00409{bottom:931.200000pt;}
.y2_c00409{bottom:954.880000pt;}
.y1_c00409{bottom:1024.333333pt;}
.h29_c00409{height:7.672320pt;}
.h11_c00409{height:12.794306pt;}
.h31_c00409{height:16.197475pt;}
.h2f_c00409{height:20.459520pt;}
.h37_c00409{height:21.312000pt;}
.h4_c00409{height:22.164480pt;}
.h3d_c00409{height:23.017315pt;}
.h24_c00409{height:23.362500pt;}
.h1e_c00409{height:23.869440pt;}
.h36_c00409{height:24.475556pt;}
.h33_c00409{height:24.589323pt;}
.h23_c00409{height:25.125523pt;}
.hb_c00409{height:25.587500pt;}
.h25_c00409{height:27.218750pt;}
.h2a_c00409{height:28.131840pt;}
.h1c_c00409{height:28.789586pt;}
.ha_c00409{height:30.359898pt;}
.h18_c00409{height:30.867971pt;}
.h34_c00409{height:31.406250pt;}
.h13_c00409{height:31.541760pt;}
.h2c_c00409{height:31.706250pt;}
.h12_c00409{height:32.394240pt;}
.h17_c00409{height:33.483857pt;}
.h2d_c00409{height:34.275833pt;}
.h2e_c00409{height:34.487500pt;}
.h35_c00409{height:36.117711pt;}
.h14_c00409{height:36.156806pt;}
.h27_c00409{height:36.835833pt;}
.h28_c00409{height:37.668750pt;}
.h30_c00409{height:37.825556pt;}
.h8_c00409{height:39.781250pt;}
.h26_c00409{height:41.163056pt;}
.h39_c00409{height:44.993229pt;}
.h7_c00409{height:45.181440pt;}
.h3c_c00409{height:47.837500pt;}
.h38_c00409{height:50.250000pt;}
.h3e_c00409{height:50.773437pt;}
.h6_c00409{height:51.175000pt;}
.h2_c00409{height:51.820312pt;}
.h15_c00409{height:54.437500pt;}
.h2b_c00409{height:54.960938pt;}
.h1d_c00409{height:55.484375pt;}
.h10_c00409{height:56.007812pt;}
.h21_c00409{height:57.578125pt;}
.h19_c00409{height:58.101562pt;}
.he_c00409{height:58.595833pt;}
.h16_c00409{height:58.617167pt;}
.h1f_c00409{height:59.148438pt;}
.h32_c00409{height:59.205625pt;}
.h22_c00409{height:59.518750pt;}
.h1a_c00409{height:59.671875pt;}
.h5_c00409{height:61.765625pt;}
.hd_c00409{height:62.289062pt;}
.h3b_c00409{height:62.910000pt;}
.h3_c00409{height:63.335938pt;}
.h9_c00409{height:63.859375pt;}
.h3a_c00409{height:67.000000pt;}
.h20_c00409{height:68.156806pt;}
.h1b_c00409{height:73.580312pt;}
.hf_c00409{height:75.650000pt;}
.hc_c00409{height:103.462500pt;}
.h1_c00409{height:1122.666667pt;}
.h0_c00409{height:1122.880000pt;}
.w1_c00409{width:793.333333pt;}
.w0_c00409{width:793.600000pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:95.293333pt;}
.x6_c00409{left:99.200000pt;}
.x2b_c00409{left:101.133333pt;}
.x15_c00409{left:102.293333pt;}
.x14_c00409{left:103.280000pt;}
.x2_c00409{left:104.506667pt;}
.x40_c00409{left:114.826667pt;}
.x33_c00409{left:118.186667pt;}
.x4d_c00409{left:120.093333pt;}
.x4c_c00409{left:121.266667pt;}
.x24_c00409{left:122.680000pt;}
.x2a_c00409{left:130.373333pt;}
.x27_c00409{left:132.746667pt;}
.x22_c00409{left:134.186667pt;}
.x28_c00409{left:135.226667pt;}
.x34_c00409{left:141.493333pt;}
.x3_c00409{left:145.640000pt;}
.x25_c00409{left:148.173333pt;}
.x42_c00409{left:152.400000pt;}
.x36_c00409{left:153.800000pt;}
.x7_c00409{left:155.186667pt;}
.x38_c00409{left:158.826667pt;}
.x44_c00409{left:160.346667pt;}
.x4_c00409{left:161.760000pt;}
.x23_c00409{left:163.026667pt;}
.x3c_c00409{left:167.560000pt;}
.x45_c00409{left:170.346667pt;}
.x2e_c00409{left:177.426667pt;}
.x4f_c00409{left:178.520000pt;}
.x46_c00409{left:181.853333pt;}
.x1f_c00409{left:182.960000pt;}
.x49_c00409{left:184.320000pt;}
.x16_c00409{left:187.440000pt;}
.x1d_c00409{left:188.573333pt;}
.x20_c00409{left:190.000000pt;}
.x37_c00409{left:191.333333pt;}
.x26_c00409{left:193.533333pt;}
.x2f_c00409{left:195.360000pt;}
.x39_c00409{left:197.280000pt;}
.x41_c00409{left:199.520000pt;}
.x21_c00409{left:200.880000pt;}
.x30_c00409{left:202.893333pt;}
.x50_c00409{left:209.186667pt;}
.x48_c00409{left:211.973333pt;}
.x3d_c00409{left:214.946667pt;}
.x2c_c00409{left:216.440000pt;}
.x35_c00409{left:219.120000pt;}
.x1b_c00409{left:220.026667pt;}
.x2d_c00409{left:224.493333pt;}
.x3e_c00409{left:225.826667pt;}
.x3a_c00409{left:226.733333pt;}
.x1c_c00409{left:236.533333pt;}
.x47_c00409{left:245.360000pt;}
.x5_c00409{left:249.586667pt;}
.x3b_c00409{left:263.853333pt;}
.x43_c00409{left:347.040000pt;}
.x17_c00409{left:349.040000pt;}
.x3f_c00409{left:350.973333pt;}
.x29_c00409{left:351.920000pt;}
.x11_c00409{left:353.754667pt;}
.x51_c00409{left:371.373333pt;}
.x18_c00409{left:406.013333pt;}
.x12_c00409{left:407.786667pt;}
.xb_c00409{left:449.666667pt;}
.xa_c00409{left:456.306667pt;}
.x13_c00409{left:463.906667pt;}
.x31_c00409{left:466.160000pt;}
.x1e_c00409{left:468.960000pt;}
.x8_c00409{left:485.173333pt;}
.xc_c00409{left:493.253333pt;}
.x9_c00409{left:504.973333pt;}
.x4a_c00409{left:518.573333pt;}
.xd_c00409{left:520.160000pt;}
.x4e_c00409{left:521.120000pt;}
.x32_c00409{left:522.813333pt;}
.xe_c00409{left:542.693333pt;}
.x4b_c00409{left:575.066667pt;}
.xf_c00409{left:577.440000pt;}
.x19_c00409{left:581.440000pt;}
.x10_c00409{left:631.133333pt;}
.x1a_c00409{left:647.280000pt;}
}





/* 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_c00410 {
    display:none;
  }
  .loading-indicator_c00410.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00410 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_c00410 { 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_c00410" -> "#page-container .classname_c00410")
 */
.pf_c00410 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00410 { /* 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_c00410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00410 { /* 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_c00410 { /* 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_c00410 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00410 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00410 {overflow:visible;}
  }
}
.c_c00410 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00410 { /* 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_c00410:after { /* webkit #35443 */
  content: '';
}
.t_c00410:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00410 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 */
}
.__c00410 { /* 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_c00410 { /* info for Javascript */
  display:none;
}
.l_c00410 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00410 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00410 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00410: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_c00410 {
    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_c00410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00410.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_c00410 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00410{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00410;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.311035;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_c00410;src:url('chunks/assets/font_763faf0f8322cdebf121c6d1.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.284668;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_c00410;src:url('chunks/assets/font_56a2bc0ccbb59f0e4c0ccd6a.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:0.666000;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_c00410;src:url('chunks/assets/font_f8f4ce4f54125e3372ccfb37.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;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:ff5_c00410;src:url('chunks/assets/font_7d92cc4db1f438e4010d2bef.woff2')format("woff");}.ff5_c00410{font-family:ff5_c00410;line-height:1.284180;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_c00410;src:url('chunks/assets/font_f58b0738f9a5ef01c5bd0f25.woff2')format("woff");}.ff6_c00410{font-family:ff6_c00410;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;}
.m3_c00410{transform:matrix(0.094757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094757,0.000000,0.000000,0.250000,0,0);}
.m2_c00410{transform:matrix(0.112921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112921,0.000000,0.000000,0.250000,0,0);}
.ma_c00410{transform:matrix(0.134615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134615,0.000000,0.000000,0.250000,0,0);}
.m43_c00410{transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);}
.m36_c00410{transform:matrix(0.184882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184882,0.000000,0.000000,0.250000,0,0);}
.m28_c00410{transform:matrix(0.188550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188550,0.000000,0.000000,0.250000,0,0);}
.m1c_c00410{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m8_c00410{transform:matrix(0.194723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194723,0.000000,0.000000,0.250000,0,0);}
.m1b_c00410{transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);}
.m2e_c00410{transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);}
.m22_c00410{transform:matrix(0.207027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207027,0.000000,0.000000,0.250000,0,0);}
.m33_c00410{transform:matrix(0.209572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209572,0.000000,0.000000,0.250000,0,0);}
.m3c_c00410{transform:matrix(0.210076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210076,0.000000,0.000000,0.250000,0,0);}
.m2c_c00410{transform:matrix(0.211656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211656,0.000000,0.000000,0.250000,0,0);}
.m35_c00410{transform:matrix(0.213699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213699,0.000000,0.000000,0.250000,0,0);}
.m23_c00410{transform:matrix(0.216987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216987,0.000000,0.000000,0.250000,0,0);}
.m32_c00410{transform:matrix(0.218218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218218,0.000000,0.000000,0.250000,0,0);}
.m17_c00410{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m25_c00410{transform:matrix(0.225984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225984,0.000000,0.000000,0.250000,0,0);}
.m2b_c00410{transform:matrix(0.231922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231922,0.000000,0.000000,0.250000,0,0);}
.m5_c00410{transform:matrix(0.232882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232882,0.000000,0.000000,0.250000,0,0);}
.mc_c00410{transform:matrix(0.232970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232970,0.000000,0.000000,0.250000,0,0);}
.m14_c00410{transform:matrix(0.234641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234641,0.000000,0.000000,0.250000,0,0);}
.md_c00410{transform:matrix(0.238903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238903,0.000000,0.000000,0.250000,0,0);}
.m46_c00410{transform:matrix(0.241199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241199,0.000000,0.000000,0.250000,0,0);}
.m9_c00410{transform:matrix(0.245360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245360,0.000000,0.000000,0.250000,0,0);}
.m2f_c00410{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.m45_c00410{transform:matrix(0.247718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247718,0.000000,0.000000,0.250000,0,0);}
.m0_c00410{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);}
.m27_c00410{transform:matrix(0.252368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252368,0.000000,0.000000,0.250000,0,0);}
.m44_c00410{transform:matrix(0.252998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252998,0.000000,0.000000,0.250000,0,0);}
.m30_c00410{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.m10_c00410{transform:matrix(0.253406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253406,0.000000,0.000000,0.250000,0,0);}
.m18_c00410{transform:matrix(0.253454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253454,0.000000,0.000000,0.250000,0,0);}
.m2d_c00410{transform:matrix(0.254223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254223,0.000000,0.000000,0.250000,0,0);}
.m24_c00410{transform:matrix(0.259922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259922,0.000000,0.000000,0.250000,0,0);}
.m4_c00410{transform:matrix(0.261164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261164,0.000000,0.000000,0.250000,0,0);}
.m11_c00410{transform:matrix(0.261809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261809,0.000000,0.000000,0.250000,0,0);}
.m7_c00410{transform:matrix(0.261989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261989,0.000000,0.000000,0.250000,0,0);}
.m41_c00410{transform:matrix(0.262792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262792,0.000000,0.000000,0.250000,0,0);}
.m31_c00410{transform:matrix(0.264392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264392,0.000000,0.000000,0.250000,0,0);}
.m6_c00410{transform:matrix(0.269288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269288,0.000000,0.000000,0.250000,0,0);}
.m26_c00410{transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);}
.me_c00410{transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);}
.m34_c00410{transform:matrix(0.277323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277323,0.000000,0.000000,0.250000,0,0);}
.m3a_c00410{transform:matrix(0.277461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277461,0.000000,0.000000,0.250000,0,0);}
.m3f_c00410{transform:matrix(0.283244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283244,0.000000,0.000000,0.250000,0,0);}
.mf_c00410{transform:matrix(0.286393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286393,0.000000,0.000000,0.250000,0,0);}
.m37_c00410{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m40_c00410{transform:matrix(0.297209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297209,0.000000,0.000000,0.250000,0,0);}
.m38_c00410{transform:matrix(0.298375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298375,0.000000,0.000000,0.250000,0,0);}
.m1e_c00410{transform:matrix(0.305310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305310,0.000000,0.000000,0.250000,0,0);}
.mb_c00410{transform:matrix(0.305439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305439,0.000000,0.000000,0.250000,0,0);}
.m1a_c00410{transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);}
.m16_c00410{transform:matrix(0.318215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318215,0.000000,0.000000,0.250000,0,0);}
.m3e_c00410{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00410{transform:matrix(0.319688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319688,0.000000,0.000000,0.250000,0,0);}
.m12_c00410{transform:matrix(0.330957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330957,0.000000,0.000000,0.250000,0,0);}
.m42_c00410{transform:matrix(0.331616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331616,0.000000,0.000000,0.250000,0,0);}
.m29_c00410{transform:matrix(0.335079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335079,0.000000,0.000000,0.250000,0,0);}
.m2a_c00410{transform:matrix(0.344604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344604,0.000000,0.000000,0.250000,0,0);}
.m3d_c00410{transform:matrix(0.346722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346722,0.000000,0.000000,0.250000,0,0);}
.m3b_c00410{transform:matrix(0.351125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351125,0.000000,0.000000,0.250000,0,0);}
.m19_c00410{transform:matrix(0.353014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353014,0.000000,0.000000,0.250000,0,0);}
.m15_c00410{transform:matrix(0.409073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409073,0.000000,0.000000,0.250000,0,0);}
.m21_c00410{transform:matrix(0.410889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410889,0.000000,0.000000,0.250000,0,0);}
.m39_c00410{transform:matrix(0.413932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413932,0.000000,0.000000,0.250000,0,0);}
.m1_c00410{transform:matrix(0.451478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451478,0.000000,0.000000,0.250000,0,0);}
.m13_c00410{transform:matrix(0.468501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468501,0.000000,0.000000,0.250000,0,0);}
.m20_c00410{transform:matrix(0.523020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523020,0.000000,0.000000,0.250000,0,0);}
.m1f_c00410{transform:matrix(0.672652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672652,0.000000,0.000000,0.250000,0,0);}
.v2_c00410{vertical-align:-79.200000px;}
.v5_c00410{vertical-align:-73.380000px;}
.v4_c00410{vertical-align:-71.940000px;}
.v7_c00410{vertical-align:-4.380000px;}
.v6_c00410{vertical-align:-2.880000px;}
.v3_c00410{vertical-align:-1.440000px;}
.v0_c00410{vertical-align:0.000000px;}
.v1_c00410{vertical-align:1.440000px;}
.ls6_c00410{letter-spacing:-6.363000px;}
.ls1e_c00410{letter-spacing:-2.982000px;}
.ls32_c00410{letter-spacing:-2.604000px;}
.ls1d_c00410{letter-spacing:-2.562000px;}
.ls2e_c00410{letter-spacing:-2.331000px;}
.ls17_c00410{letter-spacing:-2.163000px;}
.ls34_c00410{letter-spacing:-2.121000px;}
.lsd_c00410{letter-spacing:-2.100000px;}
.ls8_c00410{letter-spacing:-1.995000px;}
.lsc_c00410{letter-spacing:-1.953000px;}
.ls23_c00410{letter-spacing:-1.816920px;}
.ls26_c00410{letter-spacing:-1.638021px;}
.ls42_c00410{letter-spacing:-1.613040px;}
.lsb_c00410{letter-spacing:-1.601460px;}
.ls11_c00410{letter-spacing:-1.524240px;}
.ls3f_c00410{letter-spacing:-1.512000px;}
.ls1b_c00410{letter-spacing:-1.329120px;}
.ls44_c00410{letter-spacing:-1.252440px;}
.ls48_c00410{letter-spacing:-1.229820px;}
.ls3d_c00410{letter-spacing:-1.222037px;}
.ls47_c00410{letter-spacing:-0.996000px;}
.ls22_c00410{letter-spacing:-0.980880px;}
.lse_c00410{letter-spacing:-0.622200px;}
.ls25_c00410{letter-spacing:-0.591360px;}
.ls3b_c00410{letter-spacing:-0.513360px;}
.ls30_c00410{letter-spacing:-0.470340px;}
.ls28_c00410{letter-spacing:-0.412086px;}
.ls37_c00410{letter-spacing:-0.262260px;}
.ls33_c00410{letter-spacing:-0.258000px;}
.ls12_c00410{letter-spacing:-0.179340px;}
.ls5_c00410{letter-spacing:0.000000px;}
.ls9_c00410{letter-spacing:0.096361px;}
.ls2d_c00410{letter-spacing:0.156240px;}
.ls45_c00410{letter-spacing:0.690030px;}
.ls36_c00410{letter-spacing:0.816180px;}
.ls3a_c00410{letter-spacing:1.170030px;}
.ls14_c00410{letter-spacing:1.203840px;}
.ls1_c00410{letter-spacing:1.277820px;}
.ls31_c00410{letter-spacing:1.417320px;}
.ls16_c00410{letter-spacing:1.440030px;}
.ls2a_c00410{letter-spacing:1.445220px;}
.ls18_c00410{letter-spacing:1.470030px;}
.ls3_c00410{letter-spacing:1.484100px;}
.ls21_c00410{letter-spacing:1.530000px;}
.ls24_c00410{letter-spacing:1.560000px;}
.ls1f_c00410{letter-spacing:1.680000px;}
.ls0_c00410{letter-spacing:1.770030px;}
.ls39_c00410{letter-spacing:1.800000px;}
.ls13_c00410{letter-spacing:1.830000px;}
.ls1c_c00410{letter-spacing:1.920030px;}
.ls40_c00410{letter-spacing:1.980000px;}
.ls29_c00410{letter-spacing:2.040030px;}
.ls10_c00410{letter-spacing:2.100000px;}
.ls1a_c00410{letter-spacing:2.130000px;}
.lsf_c00410{letter-spacing:2.137140px;}
.ls3e_c00410{letter-spacing:2.160000px;}
.ls2c_c00410{letter-spacing:2.185440px;}
.ls20_c00410{letter-spacing:2.220030px;}
.ls35_c00410{letter-spacing:2.250030px;}
.ls3c_c00410{letter-spacing:2.280000px;}
.ls27_c00410{letter-spacing:2.340030px;}
.ls41_c00410{letter-spacing:2.400000px;}
.ls2f_c00410{letter-spacing:2.532600px;}
.ls19_c00410{letter-spacing:2.544480px;}
.ls15_c00410{letter-spacing:2.605860px;}
.ls2_c00410{letter-spacing:2.725380px;}
.ls2b_c00410{letter-spacing:2.767680px;}
.ls38_c00410{letter-spacing:2.778840px;}
.lsa_c00410{letter-spacing:2.790000px;}
.ls46_c00410{letter-spacing:3.090000px;}
.ls43_c00410{letter-spacing:3.210000px;}
.ls7_c00410{letter-spacing:3.420000px;}
.ls4_c00410{letter-spacing:15.180000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{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__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00410{word-spacing:0.000000px;}
._1_c00410{margin-left:-10.564800px;}
._2_c00410{margin-left:-3.175020px;}
._5_c00410{width:4.054680px;}
._0_c00410{width:55.617900px;}
._3_c00410{width:120.114000px;}
._4_c00410{width:132.818400px;}
._7_c00410{width:176.673060px;}
._17_c00410{width:190.442400px;}
._a_c00410{width:192.870000px;}
._14_c00410{width:194.113800px;}
._13_c00410{width:195.702060px;}
._10_c00410{width:200.088000px;}
._e_c00410{width:206.010000px;}
._b_c00410{width:207.030000px;}
._c_c00410{width:208.136400px;}
._16_c00410{width:209.996400px;}
._d_c00410{width:211.410000px;}
._9_c00410{width:216.720000px;}
._8_c00410{width:448.863120px;}
._15_c00410{width:459.112200px;}
._6_c00410{width:462.918000px;}
._12_c00410{width:466.890000px;}
._18_c00410{width:716.850000px;}
._11_c00410{width:720.870000px;}
._f_c00410{width:725.490000px;}
.fc0_c00410{color:transparent;}
.fs34_c00410{font-size:13.800600px;}
.fs26_c00410{font-size:23.400600px;}
.fs1b_c00410{font-size:27.000600px;}
.fs11_c00410{font-size:28.800600px;}
.fs12_c00410{font-size:29.400600px;}
.fs19_c00410{font-size:30.600000px;}
.fs1a_c00410{font-size:31.200000px;}
.fs17_c00410{font-size:33.600000px;}
.fs6_c00410{font-size:35.400600px;}
.fs25_c00410{font-size:36.000000px;}
.fsc_c00410{font-size:36.600000px;}
.fsd_c00410{font-size:37.440000px;}
.fs14_c00410{font-size:38.400600px;}
.fs10_c00410{font-size:39.600000px;}
.fs22_c00410{font-size:40.200000px;}
.fs1e_c00410{font-size:40.800600px;}
.fse_c00410{font-size:42.000000px;}
.fs13_c00410{font-size:42.600000px;}
.fs28_c00410{font-size:43.200000px;}
.fs7_c00410{font-size:43.800600px;}
.fs18_c00410{font-size:44.400600px;}
.fs24_c00410{font-size:45.000600px;}
.fs27_c00410{font-size:45.600000px;}
.fs1c_c00410{font-size:46.200000px;}
.fs1d_c00410{font-size:46.800600px;}
.fs29_c00410{font-size:48.000000px;}
.fsf_c00410{font-size:52.200000px;}
.fs35_c00410{font-size:53.280000px;}
.fs21_c00410{font-size:54.000000px;}
.fs8_c00410{font-size:55.800000px;}
.fs2e_c00410{font-size:56.400000px;}
.fs5_c00410{font-size:57.000000px;}
.fs2d_c00410{font-size:57.600000px;}
.fs0_c00410{font-size:58.200000px;}
.fs30_c00410{font-size:58.800000px;}
.fs2f_c00410{font-size:59.400000px;}
.fsb_c00410{font-size:60.000000px;}
.fsa_c00410{font-size:60.600000px;}
.fs9_c00410{font-size:61.800000px;}
.fs33_c00410{font-size:62.400000px;}
.fs31_c00410{font-size:63.000000px;}
.fs2a_c00410{font-size:64.200000px;}
.fs2c_c00410{font-size:66.000000px;}
.fs20_c00410{font-size:66.600000px;}
.fs4_c00410{font-size:68.400000px;}
.fs1f_c00410{font-size:69.600000px;}
.fs32_c00410{font-size:70.800000px;}
.fs2b_c00410{font-size:72.000000px;}
.fs15_c00410{font-size:73.200000px;}
.fs23_c00410{font-size:74.400000px;}
.fs16_c00410{font-size:85.200000px;}
.fs2_c00410{font-size:146.880000px;}
.fs3_c00410{font-size:181.800000px;}
.fs1_c00410{font-size:303.600000px;}
.y0_c00410{bottom:0.000000px;}
.y3f_c00410{bottom:109.080015px;}
.y5c_c00410{bottom:169.215015px;}
.y32_c00410{bottom:169.920015px;}
.y26_c00410{bottom:174.600015px;}
.y25_c00410{bottom:186.480015px;}
.y5b_c00410{bottom:187.215015px;}
.y24_c00410{bottom:192.975015px;}
.y5a_c00410{bottom:204.855015px;}
.y23_c00410{bottom:209.175015px;}
.y59_c00410{bottom:222.855015px;}
.y3e_c00410{bottom:223.205265px;}
.y31_c00410{bottom:223.215015px;}
.y22_c00410{bottom:225.375015px;}
.y58_c00410{bottom:240.855015px;}
.y57_c00410{bottom:257.775015px;}
.y21_c00410{bottom:260.295015px;}
.y56_c00410{bottom:276.120015px;}
.y55_c00410{bottom:276.480015px;}
.y3d_c00410{bottom:276.847665px;}
.y30_c00410{bottom:276.855015px;}
.y54_c00410{bottom:293.791965px;}
.y53_c00410{bottom:311.791215px;}
.y3c_c00410{bottom:312.120015px;}
.y2f_c00410{bottom:312.476865px;}
.y20_c00410{bottom:314.655015px;}
.y52_c00410{bottom:329.775015px;}
.y3b_c00410{bottom:330.120015px;}
.y1f_c00410{bottom:338.415015px;}
.y51_c00410{bottom:347.767215px;}
.y2e_c00410{bottom:348.120015px;}
.y50_c00410{bottom:365.411115px;}
.y1e_c00410{bottom:367.215015px;}
.y4f_c00410{bottom:383.055015px;}
.y1d_c00410{bottom:387.375015px;}
.y4e_c00410{bottom:401.055015px;}
.y2d_c00410{bottom:401.415015px;}
.y3a_c00410{bottom:419.760015px;}
.y1c_c00410{bottom:420.840015px;}
.y2c_c00410{bottom:437.422965px;}
.y1b_c00410{bottom:455.415015px;}
.y1a_c00410{bottom:473.055015px;}
.y2b_c00410{bottom:473.408415px;}
.y19_c00410{bottom:490.680015px;}
.y4d_c00410{bottom:491.055015px;}
.y4c_c00410{bottom:508.680015px;}
.y2a_c00410{bottom:526.680015px;}
.y18_c00410{bottom:556.575015px;}
.y29_c00410{bottom:574.575015px;}
.y17_c00410{bottom:575.999715px;}
.y4b_c00410{bottom:576.000015px;}
.y4a_c00410{bottom:594.000015px;}
.y39_c00410{bottom:612.000015px;}
.y16_c00410{bottom:615.255015px;}
.y38_c00410{bottom:629.655015px;}
.y49_c00410{bottom:645.135015px;}
.y37_c00410{bottom:665.295015px;}
.y15_c00410{bottom:668.520015px;}
.y14_c00410{bottom:672.480015px;}
.y48_c00410{bottom:681.135015px;}
.y13_c00410{bottom:682.575015px;}
.y12_c00410{bottom:689.760015px;}
.y47_c00410{bottom:700.920015px;}
.y10_c00410{bottom:701.295015px;}
.y11_c00410{bottom:704.520015px;}
.yf_c00410{bottom:707.055015px;}
.ye_c00410{bottom:724.335015px;}
.yd_c00410{bottom:733.680015px;}
.y46_c00410{bottom:736.920015px;}
.yc_c00410{bottom:743.055015px;}
.y36_c00410{bottom:754.920015px;}
.y45_c00410{bottom:772.560015px;}
.y44_c00410{bottom:790.560015px;}
.yb_c00410{bottom:794.175015px;}
.y43_c00410{bottom:825.840015px;}
.ya_c00410{bottom:827.655015px;}
.y28_c00410{bottom:844.560015px;}
.y9_c00410{bottom:844.935015px;}
.y35_c00410{bottom:862.193715px;}
.y27_c00410{bottom:862.200015px;}
.y8_c00410{bottom:879.840015px;}
.y7_c00410{bottom:902.175015px;}
.y6_c00410{bottom:914.415015px;}
.y42_c00410{bottom:915.480015px;}
.y41_c00410{bottom:933.136515px;}
.y34_c00410{bottom:933.480015px;}
.y5_c00410{bottom:935.655015px;}
.y4_c00410{bottom:950.415015px;}
.y33_c00410{bottom:969.135015px;}
.y40_c00410{bottom:986.415015px;}
.y3_c00410{bottom:990.000015px;}
.y2_c00410{bottom:1029.615015px;}
.y1_c00410{bottom:1156.335015px;}
.h3c_c00410{height:14.393595px;}
.h2c_c00410{height:24.406095px;}
.hf_c00410{height:24.935040px;}
.h1e_c00410{height:28.160782px;}
.h13_c00410{height:28.266214px;}
.h1f_c00410{height:30.038126px;}
.h14_c00410{height:30.663907px;}
.h1c_c00410{height:31.914844px;}
.h1d_c00410{height:32.540625px;}
.h1a_c00410{height:32.976562px;}
.h8_c00410{height:34.743753px;}
.h2b_c00410{height:35.332031px;}
.h3d_c00410{height:35.484480px;}
.he_c00410{height:35.920898px;}
.h17_c00410{height:37.688089px;}
.h12_c00410{height:38.865234px;}
.h27_c00410{height:39.454102px;}
.h22_c00410{height:40.023635px;}
.h23_c00410{height:40.043558px;}
.h16_c00410{height:41.788770px;}
.h15_c00410{height:41.809570px;}
.h2e_c00410{height:42.377344px;}
.h9_c00410{height:42.987894px;}
.h1b_c00410{height:43.576761px;}
.h10_c00410{height:43.804688px;}
.h2a_c00410{height:44.165628px;}
.h2d_c00410{height:44.753906px;}
.h20_c00410{height:45.342773px;}
.h21_c00410{height:45.932229px;}
.h2f_c00410{height:47.085938px;}
.h11_c00410{height:51.231445px;}
.h7_c00410{height:55.942383px;}
.h26_c00410{height:56.320312px;}
.h37_c00410{height:57.708984px;}
.ha_c00410{height:58.197656px;}
.h2_c00410{height:58.654687px;}
.h34_c00410{height:58.823438px;}
.h35_c00410{height:58.886719px;}
.h3f_c00410{height:59.273320px;}
.hc_c00410{height:59.445996px;}
.h33_c00410{height:60.075000px;}
.hb_c00410{height:60.653320px;}
.h3e_c00410{height:60.700781px;}
.h3a_c00410{height:61.568789px;}
.h36_c00410{height:61.952344px;}
.hd_c00410{height:62.578125px;}
.h42_c00410{height:62.767031px;}
.h39_c00410{height:63.002789px;}
.h30_c00410{height:63.008789px;}
.h29_c00410{height:63.203906px;}
.h40_c00410{height:63.275391px;}
.h32_c00410{height:64.775391px;}
.h3b_c00410{height:65.081250px;}
.h25_c00410{height:65.364258px;}
.h41_c00410{height:65.750859px;}
.h38_c00410{height:66.215391px;}
.h6_c00410{height:67.130859px;}
.h24_c00410{height:68.308594px;}
.h18_c00410{height:71.841797px;}
.h31_c00410{height:75.093750px;}
.h28_c00410{height:77.596875px;}
.h19_c00410{height:88.860937px;}
.h4_c00410{height:97.822080px;}
.h5_c00410{height:178.426758px;}
.h3_c00410{height:297.966797px;}
.h1_c00410{height:1263.000000px;}
.h0_c00410{height:1263.240015px;}
.w1_c00410{width:892.500000px;}
.w0_c00410{width:892.800015px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:109.365015px;}
.x2_c00410{left:116.985015px;}
.xb_c00410{left:118.755015px;}
.x15_c00410{left:120.435015px;}
.x6_c00410{left:121.980015px;}
.x1a_c00410{left:123.105015px;}
.x1f_c00410{left:126.450015px;}
.x22_c00410{left:130.950015px;}
.x7_c00410{left:143.805015px;}
.x25_c00410{left:145.185015px;}
.x18_c00410{left:154.005015px;}
.x11_c00410{left:156.780015px;}
.x23_c00410{left:159.840015px;}
.x29_c00410{left:161.175015px;}
.x12_c00410{left:168.690015px;}
.xd_c00410{left:171.180015px;}
.x1b_c00410{left:172.545015px;}
.x27_c00410{left:175.545015px;}
.x13_c00410{left:177.210015px;}
.x24_c00410{left:178.290015px;}
.x2d_c00410{left:179.910015px;}
.x1c_c00410{left:184.470015px;}
.x28_c00410{left:185.685015px;}
.x20_c00410{left:187.380015px;}
.xe_c00410{left:191.535015px;}
.xc_c00410{left:197.505015px;}
.x8_c00410{left:204.315015px;}
.x2a_c00410{left:207.180015px;}
.x16_c00410{left:217.305015px;}
.xf_c00410{left:219.780015px;}
.x19_c00410{left:220.905015px;}
.x9_c00410{left:221.985015px;}
.x21_c00410{left:235.575015px;}
.x14_c00410{left:241.710015px;}
.x1d_c00410{left:243.105015px;}
.x1e_c00410{left:245.610015px;}
.x2f_c00410{left:247.755015px;}
.x2e_c00410{left:250.290015px;}
.x26_c00410{left:251.820015px;}
.x2b_c00410{left:254.745015px;}
.x17_c00410{left:259.050015px;}
.x30_c00410{left:266.445015px;}
.x31_c00410{left:276.705015px;}
.x2c_c00410{left:297.075015px;}
.x10_c00410{left:395.805015px;}
.x33_c00410{left:397.215015px;}
.x32_c00410{left:399.060015px;}
.xa_c00410{left:400.140015px;}
.x37_c00410{left:421.755015px;}
.x35_c00410{left:459.270015px;}
.x36_c00410{left:462.150015px;}
.x34_c00410{left:463.485015px;}
.x3_c00410{left:520.920015px;}
.x3a_c00410{left:522.985215px;}
.x43_c00410{left:525.195015px;}
.x3b_c00410{left:526.950015px;}
.x39_c00410{left:528.300015px;}
.x41_c00410{left:586.620015px;}
.x3f_c00410{left:587.715015px;}
.x40_c00410{left:590.310015px;}
.x38_c00410{left:591.645015px;}
.x4_c00410{left:651.060015px;}
.x3d_c00410{left:654.615015px;}
.x3e_c00410{left:656.175015px;}
.x5_c00410{left:712.290015px;}
.x42_c00410{left:718.377615px;}
.x3c_c00410{left:720.225015px;}
@media print{
.v2_c00410{vertical-align:-70.400000pt;}
.v5_c00410{vertical-align:-65.226667pt;}
.v4_c00410{vertical-align:-63.946667pt;}
.v7_c00410{vertical-align:-3.893333pt;}
.v6_c00410{vertical-align:-2.560000pt;}
.v3_c00410{vertical-align:-1.280000pt;}
.v0_c00410{vertical-align:0.000000pt;}
.v1_c00410{vertical-align:1.280000pt;}
.ls6_c00410{letter-spacing:-5.656000pt;}
.ls1e_c00410{letter-spacing:-2.650667pt;}
.ls32_c00410{letter-spacing:-2.314667pt;}
.ls1d_c00410{letter-spacing:-2.277333pt;}
.ls2e_c00410{letter-spacing:-2.072000pt;}
.ls17_c00410{letter-spacing:-1.922667pt;}
.ls34_c00410{letter-spacing:-1.885333pt;}
.lsd_c00410{letter-spacing:-1.866667pt;}
.ls8_c00410{letter-spacing:-1.773333pt;}
.lsc_c00410{letter-spacing:-1.736000pt;}
.ls23_c00410{letter-spacing:-1.615040pt;}
.ls26_c00410{letter-spacing:-1.456019pt;}
.ls42_c00410{letter-spacing:-1.433813pt;}
.lsb_c00410{letter-spacing:-1.423520pt;}
.ls11_c00410{letter-spacing:-1.354880pt;}
.ls3f_c00410{letter-spacing:-1.344000pt;}
.ls1b_c00410{letter-spacing:-1.181440pt;}
.ls44_c00410{letter-spacing:-1.113280pt;}
.ls48_c00410{letter-spacing:-1.093173pt;}
.ls3d_c00410{letter-spacing:-1.086255pt;}
.ls47_c00410{letter-spacing:-0.885333pt;}
.ls22_c00410{letter-spacing:-0.871893pt;}
.lse_c00410{letter-spacing:-0.553067pt;}
.ls25_c00410{letter-spacing:-0.525653pt;}
.ls3b_c00410{letter-spacing:-0.456320pt;}
.ls30_c00410{letter-spacing:-0.418080pt;}
.ls28_c00410{letter-spacing:-0.366299pt;}
.ls37_c00410{letter-spacing:-0.233120pt;}
.ls33_c00410{letter-spacing:-0.229333pt;}
.ls12_c00410{letter-spacing:-0.159413pt;}
.ls5_c00410{letter-spacing:0.000000pt;}
.ls9_c00410{letter-spacing:0.085655pt;}
.ls2d_c00410{letter-spacing:0.138880pt;}
.ls45_c00410{letter-spacing:0.613360pt;}
.ls36_c00410{letter-spacing:0.725493pt;}
.ls3a_c00410{letter-spacing:1.040027pt;}
.ls14_c00410{letter-spacing:1.070080pt;}
.ls1_c00410{letter-spacing:1.135840pt;}
.ls31_c00410{letter-spacing:1.259840pt;}
.ls16_c00410{letter-spacing:1.280027pt;}
.ls2a_c00410{letter-spacing:1.284640pt;}
.ls18_c00410{letter-spacing:1.306693pt;}
.ls3_c00410{letter-spacing:1.319200pt;}
.ls21_c00410{letter-spacing:1.360000pt;}
.ls24_c00410{letter-spacing:1.386667pt;}
.ls1f_c00410{letter-spacing:1.493333pt;}
.ls0_c00410{letter-spacing:1.573360pt;}
.ls39_c00410{letter-spacing:1.600000pt;}
.ls13_c00410{letter-spacing:1.626667pt;}
.ls1c_c00410{letter-spacing:1.706693pt;}
.ls40_c00410{letter-spacing:1.760000pt;}
.ls29_c00410{letter-spacing:1.813360pt;}
.ls10_c00410{letter-spacing:1.866667pt;}
.ls1a_c00410{letter-spacing:1.893333pt;}
.lsf_c00410{letter-spacing:1.899680pt;}
.ls3e_c00410{letter-spacing:1.920000pt;}
.ls2c_c00410{letter-spacing:1.942613pt;}
.ls20_c00410{letter-spacing:1.973360pt;}
.ls35_c00410{letter-spacing:2.000027pt;}
.ls3c_c00410{letter-spacing:2.026667pt;}
.ls27_c00410{letter-spacing:2.080027pt;}
.ls41_c00410{letter-spacing:2.133333pt;}
.ls2f_c00410{letter-spacing:2.251200pt;}
.ls19_c00410{letter-spacing:2.261760pt;}
.ls15_c00410{letter-spacing:2.316320pt;}
.ls2_c00410{letter-spacing:2.422560pt;}
.ls2b_c00410{letter-spacing:2.460160pt;}
.ls38_c00410{letter-spacing:2.470080pt;}
.lsa_c00410{letter-spacing:2.480000pt;}
.ls46_c00410{letter-spacing:2.746667pt;}
.ls43_c00410{letter-spacing:2.853333pt;}
.ls7_c00410{letter-spacing:3.040000pt;}
.ls4_c00410{letter-spacing:13.493333pt;}
.ws0_c00410{word-spacing:0.000000pt;}
._1_c00410{margin-left:-9.390933pt;}
._2_c00410{margin-left:-2.822240pt;}
._5_c00410{width:3.604160pt;}
._0_c00410{width:49.438134pt;}
._3_c00410{width:106.768000pt;}
._4_c00410{width:118.060800pt;}
._7_c00410{width:157.042720pt;}
._17_c00410{width:169.282133pt;}
._a_c00410{width:171.440000pt;}
._14_c00410{width:172.545600pt;}
._13_c00410{width:173.957387pt;}
._10_c00410{width:177.856000pt;}
._e_c00410{width:183.120000pt;}
._b_c00410{width:184.026667pt;}
._c_c00410{width:185.010133pt;}
._16_c00410{width:186.663467pt;}
._d_c00410{width:187.920000pt;}
._9_c00410{width:192.640000pt;}
._8_c00410{width:398.989440pt;}
._15_c00410{width:408.099733pt;}
._6_c00410{width:411.482667pt;}
._12_c00410{width:415.013333pt;}
._18_c00410{width:637.200000pt;}
._11_c00410{width:640.773333pt;}
._f_c00410{width:644.880000pt;}
.fs34_c00410{font-size:12.267200pt;}
.fs26_c00410{font-size:20.800533pt;}
.fs1b_c00410{font-size:24.000533pt;}
.fs11_c00410{font-size:25.600533pt;}
.fs12_c00410{font-size:26.133867pt;}
.fs19_c00410{font-size:27.200000pt;}
.fs1a_c00410{font-size:27.733333pt;}
.fs17_c00410{font-size:29.866667pt;}
.fs6_c00410{font-size:31.467200pt;}
.fs25_c00410{font-size:32.000000pt;}
.fsc_c00410{font-size:32.533333pt;}
.fsd_c00410{font-size:33.280000pt;}
.fs14_c00410{font-size:34.133867pt;}
.fs10_c00410{font-size:35.200000pt;}
.fs22_c00410{font-size:35.733333pt;}
.fs1e_c00410{font-size:36.267200pt;}
.fse_c00410{font-size:37.333333pt;}
.fs13_c00410{font-size:37.866667pt;}
.fs28_c00410{font-size:38.400000pt;}
.fs7_c00410{font-size:38.933867pt;}
.fs18_c00410{font-size:39.467200pt;}
.fs24_c00410{font-size:40.000533pt;}
.fs27_c00410{font-size:40.533333pt;}
.fs1c_c00410{font-size:41.066667pt;}
.fs1d_c00410{font-size:41.600533pt;}
.fs29_c00410{font-size:42.666667pt;}
.fsf_c00410{font-size:46.400000pt;}
.fs35_c00410{font-size:47.360000pt;}
.fs21_c00410{font-size:48.000000pt;}
.fs8_c00410{font-size:49.600000pt;}
.fs2e_c00410{font-size:50.133333pt;}
.fs5_c00410{font-size:50.666667pt;}
.fs2d_c00410{font-size:51.200000pt;}
.fs0_c00410{font-size:51.733333pt;}
.fs30_c00410{font-size:52.266667pt;}
.fs2f_c00410{font-size:52.800000pt;}
.fsb_c00410{font-size:53.333333pt;}
.fsa_c00410{font-size:53.866667pt;}
.fs9_c00410{font-size:54.933333pt;}
.fs33_c00410{font-size:55.466667pt;}
.fs31_c00410{font-size:56.000000pt;}
.fs2a_c00410{font-size:57.066667pt;}
.fs2c_c00410{font-size:58.666667pt;}
.fs20_c00410{font-size:59.200000pt;}
.fs4_c00410{font-size:60.800000pt;}
.fs1f_c00410{font-size:61.866667pt;}
.fs32_c00410{font-size:62.933333pt;}
.fs2b_c00410{font-size:64.000000pt;}
.fs15_c00410{font-size:65.066667pt;}
.fs23_c00410{font-size:66.133333pt;}
.fs16_c00410{font-size:75.733333pt;}
.fs2_c00410{font-size:130.560000pt;}
.fs3_c00410{font-size:161.600000pt;}
.fs1_c00410{font-size:269.866667pt;}
.y0_c00410{bottom:0.000000pt;}
.y3f_c00410{bottom:96.960013pt;}
.y5c_c00410{bottom:150.413347pt;}
.y32_c00410{bottom:151.040013pt;}
.y26_c00410{bottom:155.200013pt;}
.y25_c00410{bottom:165.760013pt;}
.y5b_c00410{bottom:166.413347pt;}
.y24_c00410{bottom:171.533347pt;}
.y5a_c00410{bottom:182.093347pt;}
.y23_c00410{bottom:185.933347pt;}
.y59_c00410{bottom:198.093347pt;}
.y3e_c00410{bottom:198.404680pt;}
.y31_c00410{bottom:198.413347pt;}
.y22_c00410{bottom:200.333347pt;}
.y58_c00410{bottom:214.093347pt;}
.y57_c00410{bottom:229.133347pt;}
.y21_c00410{bottom:231.373347pt;}
.y56_c00410{bottom:245.440013pt;}
.y55_c00410{bottom:245.760013pt;}
.y3d_c00410{bottom:246.086813pt;}
.y30_c00410{bottom:246.093347pt;}
.y54_c00410{bottom:261.148413pt;}
.y53_c00410{bottom:277.147747pt;}
.y3c_c00410{bottom:277.440013pt;}
.y2f_c00410{bottom:277.757213pt;}
.y20_c00410{bottom:279.693347pt;}
.y52_c00410{bottom:293.133347pt;}
.y3b_c00410{bottom:293.440013pt;}
.y1f_c00410{bottom:300.813347pt;}
.y51_c00410{bottom:309.126413pt;}
.y2e_c00410{bottom:309.440013pt;}
.y50_c00410{bottom:324.809880pt;}
.y1e_c00410{bottom:326.413347pt;}
.y4f_c00410{bottom:340.493347pt;}
.y1d_c00410{bottom:344.333347pt;}
.y4e_c00410{bottom:356.493347pt;}
.y2d_c00410{bottom:356.813347pt;}
.y3a_c00410{bottom:373.120013pt;}
.y1c_c00410{bottom:374.080013pt;}
.y2c_c00410{bottom:388.820413pt;}
.y1b_c00410{bottom:404.813347pt;}
.y1a_c00410{bottom:420.493347pt;}
.y2b_c00410{bottom:420.807480pt;}
.y19_c00410{bottom:436.160013pt;}
.y4d_c00410{bottom:436.493347pt;}
.y4c_c00410{bottom:452.160013pt;}
.y2a_c00410{bottom:468.160013pt;}
.y18_c00410{bottom:494.733347pt;}
.y29_c00410{bottom:510.733347pt;}
.y17_c00410{bottom:511.999747pt;}
.y4b_c00410{bottom:512.000013pt;}
.y4a_c00410{bottom:528.000013pt;}
.y39_c00410{bottom:544.000013pt;}
.y16_c00410{bottom:546.893347pt;}
.y38_c00410{bottom:559.693347pt;}
.y49_c00410{bottom:573.453347pt;}
.y37_c00410{bottom:591.373347pt;}
.y15_c00410{bottom:594.240013pt;}
.y14_c00410{bottom:597.760013pt;}
.y48_c00410{bottom:605.453347pt;}
.y13_c00410{bottom:606.733347pt;}
.y12_c00410{bottom:613.120013pt;}
.y47_c00410{bottom:623.040013pt;}
.y10_c00410{bottom:623.373347pt;}
.y11_c00410{bottom:626.240013pt;}
.yf_c00410{bottom:628.493347pt;}
.ye_c00410{bottom:643.853347pt;}
.yd_c00410{bottom:652.160013pt;}
.y46_c00410{bottom:655.040013pt;}
.yc_c00410{bottom:660.493347pt;}
.y36_c00410{bottom:671.040013pt;}
.y45_c00410{bottom:686.720013pt;}
.y44_c00410{bottom:702.720013pt;}
.yb_c00410{bottom:705.933347pt;}
.y43_c00410{bottom:734.080013pt;}
.ya_c00410{bottom:735.693347pt;}
.y28_c00410{bottom:750.720013pt;}
.y9_c00410{bottom:751.053347pt;}
.y35_c00410{bottom:766.394413pt;}
.y27_c00410{bottom:766.400013pt;}
.y8_c00410{bottom:782.080013pt;}
.y7_c00410{bottom:801.933347pt;}
.y6_c00410{bottom:812.813347pt;}
.y42_c00410{bottom:813.760013pt;}
.y41_c00410{bottom:829.454680pt;}
.y34_c00410{bottom:829.760013pt;}
.y5_c00410{bottom:831.693347pt;}
.y4_c00410{bottom:844.813347pt;}
.y33_c00410{bottom:861.453347pt;}
.y40_c00410{bottom:876.813347pt;}
.y3_c00410{bottom:880.000013pt;}
.y2_c00410{bottom:915.213347pt;}
.y1_c00410{bottom:1027.853347pt;}
.h3c_c00410{height:12.794306pt;}
.h2c_c00410{height:21.694306pt;}
.hf_c00410{height:22.164480pt;}
.h1e_c00410{height:25.031806pt;}
.h13_c00410{height:25.125523pt;}
.h1f_c00410{height:26.700556pt;}
.h14_c00410{height:27.256806pt;}
.h1c_c00410{height:28.368750pt;}
.h1d_c00410{height:28.925000pt;}
.h1a_c00410{height:29.312500pt;}
.h8_c00410{height:30.883336pt;}
.h2b_c00410{height:31.406250pt;}
.h3d_c00410{height:31.541760pt;}
.he_c00410{height:31.929687pt;}
.h17_c00410{height:33.500523pt;}
.h12_c00410{height:34.546875pt;}
.h27_c00410{height:35.070312pt;}
.h22_c00410{height:35.576565pt;}
.h23_c00410{height:35.594273pt;}
.h16_c00410{height:37.145573pt;}
.h15_c00410{height:37.164062pt;}
.h2e_c00410{height:37.668750pt;}
.h9_c00410{height:38.211461pt;}
.h1b_c00410{height:38.734898pt;}
.h10_c00410{height:38.937500pt;}
.h2a_c00410{height:39.258336pt;}
.h2d_c00410{height:39.781250pt;}
.h20_c00410{height:40.304688pt;}
.h21_c00410{height:40.828648pt;}
.h2f_c00410{height:41.854167pt;}
.h11_c00410{height:45.539062pt;}
.h7_c00410{height:49.726562pt;}
.h26_c00410{height:50.062500pt;}
.h37_c00410{height:51.296875pt;}
.ha_c00410{height:51.731250pt;}
.h2_c00410{height:52.137500pt;}
.h34_c00410{height:52.287500pt;}
.h35_c00410{height:52.343750pt;}
.h3f_c00410{height:52.687396pt;}
.hc_c00410{height:52.840885pt;}
.h33_c00410{height:53.400000pt;}
.hb_c00410{height:53.914062pt;}
.h3e_c00410{height:53.956250pt;}
.h3a_c00410{height:54.727812pt;}
.h36_c00410{height:55.068750pt;}
.hd_c00410{height:55.625000pt;}
.h42_c00410{height:55.792917pt;}
.h39_c00410{height:56.002479pt;}
.h30_c00410{height:56.007812pt;}
.h29_c00410{height:56.181250pt;}
.h40_c00410{height:56.244792pt;}
.h32_c00410{height:57.578125pt;}
.h3b_c00410{height:57.850000pt;}
.h25_c00410{height:58.101562pt;}
.h41_c00410{height:58.445208pt;}
.h38_c00410{height:58.858125pt;}
.h6_c00410{height:59.671875pt;}
.h24_c00410{height:60.718750pt;}
.h18_c00410{height:63.859375pt;}
.h31_c00410{height:66.750000pt;}
.h28_c00410{height:68.975000pt;}
.h19_c00410{height:78.987500pt;}
.h4_c00410{height:86.952960pt;}
.h5_c00410{height:158.601562pt;}
.h3_c00410{height:264.859375pt;}
.h1_c00410{height:1122.666667pt;}
.h0_c00410{height:1122.880013pt;}
.w1_c00410{width:793.333333pt;}
.w0_c00410{width:793.600013pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:97.213347pt;}
.x2_c00410{left:103.986680pt;}
.xb_c00410{left:105.560013pt;}
.x15_c00410{left:107.053347pt;}
.x6_c00410{left:108.426680pt;}
.x1a_c00410{left:109.426680pt;}
.x1f_c00410{left:112.400013pt;}
.x22_c00410{left:116.400013pt;}
.x7_c00410{left:127.826680pt;}
.x25_c00410{left:129.053347pt;}
.x18_c00410{left:136.893347pt;}
.x11_c00410{left:139.360013pt;}
.x23_c00410{left:142.080013pt;}
.x29_c00410{left:143.266680pt;}
.x12_c00410{left:149.946680pt;}
.xd_c00410{left:152.160013pt;}
.x1b_c00410{left:153.373347pt;}
.x27_c00410{left:156.040013pt;}
.x13_c00410{left:157.520013pt;}
.x24_c00410{left:158.480013pt;}
.x2d_c00410{left:159.920013pt;}
.x1c_c00410{left:163.973347pt;}
.x28_c00410{left:165.053347pt;}
.x20_c00410{left:166.560013pt;}
.xe_c00410{left:170.253347pt;}
.xc_c00410{left:175.560013pt;}
.x8_c00410{left:181.613347pt;}
.x2a_c00410{left:184.160013pt;}
.x16_c00410{left:193.160013pt;}
.xf_c00410{left:195.360013pt;}
.x19_c00410{left:196.360013pt;}
.x9_c00410{left:197.320013pt;}
.x21_c00410{left:209.400013pt;}
.x14_c00410{left:214.853347pt;}
.x1d_c00410{left:216.093347pt;}
.x1e_c00410{left:218.320013pt;}
.x2f_c00410{left:220.226680pt;}
.x2e_c00410{left:222.480013pt;}
.x26_c00410{left:223.840013pt;}
.x2b_c00410{left:226.440013pt;}
.x17_c00410{left:230.266680pt;}
.x30_c00410{left:236.840013pt;}
.x31_c00410{left:245.960013pt;}
.x2c_c00410{left:264.066680pt;}
.x10_c00410{left:351.826680pt;}
.x33_c00410{left:353.080013pt;}
.x32_c00410{left:354.720013pt;}
.xa_c00410{left:355.680013pt;}
.x37_c00410{left:374.893347pt;}
.x35_c00410{left:408.240013pt;}
.x36_c00410{left:410.800013pt;}
.x34_c00410{left:411.986680pt;}
.x3_c00410{left:463.040013pt;}
.x3a_c00410{left:464.875747pt;}
.x43_c00410{left:466.840013pt;}
.x3b_c00410{left:468.400013pt;}
.x39_c00410{left:469.600013pt;}
.x41_c00410{left:521.440013pt;}
.x3f_c00410{left:522.413347pt;}
.x40_c00410{left:524.720013pt;}
.x38_c00410{left:525.906680pt;}
.x4_c00410{left:578.720013pt;}
.x3d_c00410{left:581.880013pt;}
.x3e_c00410{left:583.266680pt;}
.x5_c00410{left:633.146680pt;}
.x42_c00410{left:638.557880pt;}
.x3c_c00410{left:640.200013pt;}
}





/* 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_c00411 {
    display:none;
  }
  .loading-indicator_c00411.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00411 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_c00411 { 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_c00411" -> "#page-container .classname_c00411")
 */
.pf_c00411 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00411 { /* 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_c00411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00411 { /* 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_c00411 { /* 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_c00411 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00411 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00411 {overflow:visible;}
  }
}
.c_c00411 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00411 { /* 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_c00411:after { /* webkit #35443 */
  content: '';
}
.t_c00411:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00411 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 */
}
.__c00411 { /* 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_c00411 { /* info for Javascript */
  display:none;
}
.l_c00411 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00411 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00411 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00411: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_c00411 {
    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_c00411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00411.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_c00411 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00411{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00411;src:url('chunks/assets/font_69aec8b39d62e3df657fec42.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.284668;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_c00411;src:url('chunks/assets/font_49cf25640012bf070923d2db.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:0.666000;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_c00411;src:url('chunks/assets/font_689b474e397bd31325cf74a9.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;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:ff4_c00411;src:url('chunks/assets/font_2847f44d88203b6487c1cc20.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;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:ff5_c00411;src:url('chunks/assets/font_16671406babfe1417b19be85.woff2')format("woff");}.ff5_c00411{font-family:ff5_c00411;line-height:1.284180;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;}
.m80_c00411{transform:matrix(0.106481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106481,0.000000,0.000000,0.250000,0,0);}
.m3_c00411{transform:matrix(0.119245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119245,0.000000,0.000000,0.250000,0,0);}
.m7d_c00411{transform:matrix(0.121080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121080,0.000000,0.000000,0.250000,0,0);}
.m32_c00411{transform:matrix(0.124408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124408,0.000000,0.000000,0.250000,0,0);}
.m79_c00411{transform:matrix(0.133017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133017,0.000000,0.000000,0.250000,0,0);}
.m76_c00411{transform:matrix(0.144843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144843,0.000000,0.000000,0.250000,0,0);}
.m71_c00411{transform:matrix(0.149660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149660,0.000000,0.000000,0.250000,0,0);}
.m67_c00411{transform:matrix(0.158332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158332,0.000000,0.000000,0.250000,0,0);}
.m23_c00411{transform:matrix(0.161292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161292,0.000000,0.000000,0.250000,0,0);}
.m1d_c00411{transform:matrix(0.165320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165320,0.000000,0.000000,0.250000,0,0);}
.m36_c00411{transform:matrix(0.174242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174242,0.000000,0.000000,0.250000,0,0);}
.m60_c00411{transform:matrix(0.174342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174342,0.000000,0.000000,0.250000,0,0);}
.m31_c00411{transform:matrix(0.175157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175157,0.000000,0.000000,0.250000,0,0);}
.m84_c00411{transform:matrix(0.176084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176084,0.000000,0.000000,0.250000,0,0);}
.m77_c00411{transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);}
.m39_c00411{transform:matrix(0.178016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178016,0.000000,0.000000,0.250000,0,0);}
.m1a_c00411{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m73_c00411{transform:matrix(0.180432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180432,0.000000,0.000000,0.250000,0,0);}
.m83_c00411{transform:matrix(0.182707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182707,0.000000,0.000000,0.250000,0,0);}
.m1e_c00411{transform:matrix(0.183137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183137,0.000000,0.000000,0.250000,0,0);}
.me_c00411{transform:matrix(0.184661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184661,0.000000,0.000000,0.250000,0,0);}
.m59_c00411{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.m5c_c00411{transform:matrix(0.188712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188712,0.000000,0.000000,0.250000,0,0);}
.m64_c00411{transform:matrix(0.195297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195297,0.000000,0.000000,0.250000,0,0);}
.m42_c00411{transform:matrix(0.195371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195371,0.000000,0.000000,0.250000,0,0);}
.m6a_c00411{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.m1_c00411{transform:matrix(0.201042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201042,0.000000,0.000000,0.250000,0,0);}
.m74_c00411{transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);}
.m41_c00411{transform:matrix(0.210519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210519,0.000000,0.000000,0.250000,0,0);}
.m57_c00411{transform:matrix(0.211494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211494,0.000000,0.000000,0.250000,0,0);}
.m26_c00411{transform:matrix(0.216341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216341,0.000000,0.000000,0.250000,0,0);}
.m27_c00411{transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);}
.m49_c00411{transform:matrix(0.219867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219867,0.000000,0.000000,0.250000,0,0);}
.m51_c00411{transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);}
.m82_c00411{transform:matrix(0.223436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223436,0.000000,0.000000,0.250000,0,0);}
.m19_c00411{transform:matrix(0.226552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226552,0.000000,0.000000,0.250000,0,0);}
.m2d_c00411{transform:matrix(0.227766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227766,0.000000,0.000000,0.250000,0,0);}
.m5a_c00411{transform:matrix(0.230561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230561,0.000000,0.000000,0.250000,0,0);}
.m35_c00411{transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);}
.m7_c00411{transform:matrix(0.230841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230841,0.000000,0.000000,0.250000,0,0);}
.m4a_c00411{transform:matrix(0.235555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235555,0.000000,0.000000,0.250000,0,0);}
.m75_c00411{transform:matrix(0.236566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236566,0.000000,0.000000,0.250000,0,0);}
.m24_c00411{transform:matrix(0.236605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236605,0.000000,0.000000,0.250000,0,0);}
.m3f_c00411{transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);}
.m14_c00411{transform:matrix(0.238819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238819,0.000000,0.000000,0.250000,0,0);}
.m7e_c00411{transform:matrix(0.238852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238852,0.000000,0.000000,0.250000,0,0);}
.m66_c00411{transform:matrix(0.242912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242912,0.000000,0.000000,0.250000,0,0);}
.m7c_c00411{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m53_c00411{transform:matrix(0.243841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243841,0.000000,0.000000,0.250000,0,0);}
.m1f_c00411{transform:matrix(0.245071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245071,0.000000,0.000000,0.250000,0,0);}
.m3e_c00411{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m37_c00411{transform:matrix(0.245360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245360,0.000000,0.000000,0.250000,0,0);}
.m21_c00411{transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);}
.m58_c00411{transform:matrix(0.247409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247409,0.000000,0.000000,0.250000,0,0);}
.m4_c00411{transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);}
.m70_c00411{transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);}
.mc_c00411{transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);}
.m20_c00411{transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);}
.m0_c00411{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);}
.m30_c00411{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m6e_c00411{transform:matrix(0.250201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250201,0.000000,0.000000,0.250000,0,0);}
.m12_c00411{transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);}
.m1c_c00411{transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);}
.m7b_c00411{transform:matrix(0.252582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252582,0.000000,0.000000,0.250000,0,0);}
.m40_c00411{transform:matrix(0.252706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252706,0.000000,0.000000,0.250000,0,0);}
.m72_c00411{transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);}
.m25_c00411{transform:matrix(0.256168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256168,0.000000,0.000000,0.250000,0,0);}
.m4c_c00411{transform:matrix(0.256262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256262,0.000000,0.000000,0.250000,0,0);}
.m44_c00411{transform:matrix(0.256467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256467,0.000000,0.000000,0.250000,0,0);}
.mf_c00411{transform:matrix(0.256519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256519,0.000000,0.000000,0.250000,0,0);}
.m65_c00411{transform:matrix(0.257093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257093,0.000000,0.000000,0.250000,0,0);}
.m6d_c00411{transform:matrix(0.257124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257124,0.000000,0.000000,0.250000,0,0);}
.m29_c00411{transform:matrix(0.257396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257396,0.000000,0.000000,0.250000,0,0);}
.m61_c00411{transform:matrix(0.258565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258565,0.000000,0.000000,0.250000,0,0);}
.m78_c00411{transform:matrix(0.260470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260470,0.000000,0.000000,0.250000,0,0);}
.m45_c00411{transform:matrix(0.260690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260690,0.000000,0.000000,0.250000,0,0);}
.m33_c00411{transform:matrix(0.262505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262505,0.000000,0.000000,0.250000,0,0);}
.m5f_c00411{transform:matrix(0.262514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262514,0.000000,0.000000,0.250000,0,0);}
.m17_c00411{transform:matrix(0.264412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264412,0.000000,0.000000,0.250000,0,0);}
.m43_c00411{transform:matrix(0.264896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264896,0.000000,0.000000,0.250000,0,0);}
.m46_c00411{transform:matrix(0.265560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265560,0.000000,0.000000,0.250000,0,0);}
.md_c00411{transform:matrix(0.265861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265861,0.000000,0.000000,0.250000,0,0);}
.mb_c00411{transform:matrix(0.265981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265981,0.000000,0.000000,0.250000,0,0);}
.ma_c00411{transform:matrix(0.267121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267121,0.000000,0.000000,0.250000,0,0);}
.m18_c00411{transform:matrix(0.267518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267518,0.000000,0.000000,0.250000,0,0);}
.m54_c00411{transform:matrix(0.268332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268332,0.000000,0.000000,0.250000,0,0);}
.m56_c00411{transform:matrix(0.268942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268942,0.000000,0.000000,0.250000,0,0);}
.m1b_c00411{transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);}
.m3d_c00411{transform:matrix(0.270979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270979,0.000000,0.000000,0.250000,0,0);}
.m6_c00411{transform:matrix(0.273043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273043,0.000000,0.000000,0.250000,0,0);}
.m34_c00411{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m5_c00411{transform:matrix(0.278235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278235,0.000000,0.000000,0.250000,0,0);}
.m6b_c00411{transform:matrix(0.280659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280659,0.000000,0.000000,0.250000,0,0);}
.m13_c00411{transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);}
.m3b_c00411{transform:matrix(0.287965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287965,0.000000,0.000000,0.250000,0,0);}
.m6f_c00411{transform:matrix(0.290355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290355,0.000000,0.000000,0.250000,0,0);}
.m4b_c00411{transform:matrix(0.292045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292045,0.000000,0.000000,0.250000,0,0);}
.m22_c00411{transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);}
.m4d_c00411{transform:matrix(0.297280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297280,0.000000,0.000000,0.250000,0,0);}
.m11_c00411{transform:matrix(0.301202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301202,0.000000,0.000000,0.250000,0,0);}
.m2c_c00411{transform:matrix(0.303672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303672,0.000000,0.000000,0.250000,0,0);}
.m38_c00411{transform:matrix(0.305206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305206,0.000000,0.000000,0.250000,0,0);}
.m5b_c00411{transform:matrix(0.307191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307191,0.000000,0.000000,0.250000,0,0);}
.m28_c00411{transform:matrix(0.318277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318277,0.000000,0.000000,0.250000,0,0);}
.m10_c00411{transform:matrix(0.323594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323594,0.000000,0.000000,0.250000,0,0);}
.m7a_c00411{transform:matrix(0.326741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326741,0.000000,0.000000,0.250000,0,0);}
.m16_c00411{transform:matrix(0.333129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333129,0.000000,0.000000,0.250000,0,0);}
.m81_c00411{transform:matrix(0.335123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335123,0.000000,0.000000,0.250000,0,0);}
.m4e_c00411{transform:matrix(0.335557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335557,0.000000,0.000000,0.250000,0,0);}
.m5e_c00411{transform:matrix(0.337360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337360,0.000000,0.000000,0.250000,0,0);}
.m8_c00411{transform:matrix(0.340623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340623,0.000000,0.000000,0.250000,0,0);}
.m50_c00411{transform:matrix(0.344617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344617,0.000000,0.000000,0.250000,0,0);}
.m15_c00411{transform:matrix(0.346766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346766,0.000000,0.000000,0.250000,0,0);}
.m5d_c00411{transform:matrix(0.347585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347585,0.000000,0.000000,0.250000,0,0);}
.m47_c00411{transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);}
.m63_c00411{transform:matrix(0.350862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350862,0.000000,0.000000,0.250000,0,0);}
.m52_c00411{transform:matrix(0.354173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354173,0.000000,0.000000,0.250000,0,0);}
.m68_c00411{transform:matrix(0.354775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354775,0.000000,0.000000,0.250000,0,0);}
.m55_c00411{transform:matrix(0.356105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356105,0.000000,0.000000,0.250000,0,0);}
.m2f_c00411{transform:matrix(0.356225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356225,0.000000,0.000000,0.250000,0,0);}
.m7f_c00411{transform:matrix(0.361601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361601,0.000000,0.000000,0.250000,0,0);}
.m69_c00411{transform:matrix(0.365416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365416,0.000000,0.000000,0.250000,0,0);}
.m62_c00411{transform:matrix(0.365596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365596,0.000000,0.000000,0.250000,0,0);}
.m2e_c00411{transform:matrix(0.369529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369529,0.000000,0.000000,0.250000,0,0);}
.m2a_c00411{transform:matrix(0.375375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375375,0.000000,0.000000,0.250000,0,0);}
.m3c_c00411{transform:matrix(0.393075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393075,0.000000,0.000000,0.250000,0,0);}
.m4f_c00411{transform:matrix(0.397090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397090,0.000000,0.000000,0.250000,0,0);}
.m6c_c00411{transform:matrix(0.417527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417527,0.000000,0.000000,0.250000,0,0);}
.m3a_c00411{transform:matrix(0.418213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418213,0.000000,0.000000,0.250000,0,0);}
.m9_c00411{transform:matrix(0.428143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428143,0.000000,0.000000,0.250000,0,0);}
.m2b_c00411{transform:matrix(0.433175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433175,0.000000,0.000000,0.250000,0,0);}
.m48_c00411{transform:matrix(0.455975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455975,0.000000,0.000000,0.250000,0,0);}
.m2_c00411{transform:matrix(1.227661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.227661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.227661,0.000000,0.000000,0.250000,0,0);}
.v7_c00411{vertical-align:-23.040000px;}
.vd_c00411{vertical-align:-18.720000px;}
.vb_c00411{vertical-align:-10.020000px;}
.vf_c00411{vertical-align:-7.140000px;}
.va_c00411{vertical-align:-5.700000px;}
.v2_c00411{vertical-align:-2.835000px;}
.v1_c00411{vertical-align:-1.386000px;}
.v0_c00411{vertical-align:0.000000px;}
.v5_c00411{vertical-align:1.440000px;}
.v4_c00411{vertical-align:2.940000px;}
.ve_c00411{vertical-align:7.200000px;}
.v9_c00411{vertical-align:10.080000px;}
.v8_c00411{vertical-align:12.960000px;}
.vc_c00411{vertical-align:21.600000px;}
.v3_c00411{vertical-align:24.420000px;}
.v6_c00411{vertical-align:27.360000px;}
.ls35_c00411{letter-spacing:-2.877000px;}
.ls41_c00411{letter-spacing:-2.856000px;}
.ls1f_c00411{letter-spacing:-2.436000px;}
.ls67_c00411{letter-spacing:-2.331000px;}
.ls3c_c00411{letter-spacing:-2.310000px;}
.ls17_c00411{letter-spacing:-2.234160px;}
.ls31_c00411{letter-spacing:-2.205000px;}
.ls45_c00411{letter-spacing:-2.100000px;}
.ls2e_c00411{letter-spacing:-1.911000px;}
.ls4d_c00411{letter-spacing:-1.779960px;}
.ls54_c00411{letter-spacing:-1.680000px;}
.ls4f_c00411{letter-spacing:-1.638000px;}
.ls27_c00411{letter-spacing:-1.512000px;}
.ls5f_c00411{letter-spacing:-1.344021px;}
.ls3d_c00411{letter-spacing:-1.309460px;}
.ls48_c00411{letter-spacing:-1.281000px;}
.ls1c_c00411{letter-spacing:-1.273680px;}
.ls37_c00411{letter-spacing:-1.237680px;}
.ls23_c00411{letter-spacing:-1.218021px;}
.ls5c_c00411{letter-spacing:-1.217580px;}
.ls66_c00411{letter-spacing:-1.071000px;}
.ls62_c00411{letter-spacing:-1.070160px;}
.ls2f_c00411{letter-spacing:-1.058417px;}
.ls55_c00411{letter-spacing:-0.987000px;}
.ls1e_c00411{letter-spacing:-0.981360px;}
.ls4a_c00411{letter-spacing:-0.877200px;}
.ls20_c00411{letter-spacing:-0.758640px;}
.ls4e_c00411{letter-spacing:-0.693000px;}
.ls1d_c00411{letter-spacing:-0.605520px;}
.ls1a_c00411{letter-spacing:-0.525021px;}
.ls59_c00411{letter-spacing:-0.513240px;}
.ls46_c00411{letter-spacing:-0.443520px;}
.ls42_c00411{letter-spacing:-0.387660px;}
.ls44_c00411{letter-spacing:-0.359100px;}
.ls38_c00411{letter-spacing:-0.333000px;}
.ls2b_c00411{letter-spacing:-0.327000px;}
.ls32_c00411{letter-spacing:-0.308700px;}
.ls4c_c00411{letter-spacing:-0.054600px;}
.ls43_c00411{letter-spacing:-0.039000px;}
.ls19_c00411{letter-spacing:0.000000px;}
.ls13_c00411{letter-spacing:0.066001px;}
.lsc_c00411{letter-spacing:0.113400px;}
.ls68_c00411{letter-spacing:0.182280px;}
.lsb_c00411{letter-spacing:0.259440px;}
.lse_c00411{letter-spacing:0.294840px;}
.ls60_c00411{letter-spacing:0.343625px;}
.ls6_c00411{letter-spacing:0.420420px;}
.ls1_c00411{letter-spacing:0.677040px;}
.ls1b_c00411{letter-spacing:0.750030px;}
.ls3a_c00411{letter-spacing:0.752414px;}
.ls63_c00411{letter-spacing:0.792540px;}
.ls53_c00411{letter-spacing:0.846300px;}
.ls30_c00411{letter-spacing:0.985320px;}
.ls51_c00411{letter-spacing:0.988260px;}
.ls12_c00411{letter-spacing:1.037400px;}
.ls9_c00411{letter-spacing:1.077300px;}
.ls5a_c00411{letter-spacing:1.111465px;}
.ls18_c00411{letter-spacing:1.176240px;}
.ls2_c00411{letter-spacing:1.228500px;}
.ls64_c00411{letter-spacing:1.260000px;}
.lsf_c00411{letter-spacing:1.266720px;}
.ls16_c00411{letter-spacing:1.393800px;}
.ls7_c00411{letter-spacing:1.463280px;}
.ls56_c00411{letter-spacing:1.470030px;}
.ls39_c00411{letter-spacing:1.500000px;}
.ls65_c00411{letter-spacing:1.530000px;}
.ls10_c00411{letter-spacing:1.549800px;}
.lsa_c00411{letter-spacing:1.557600px;}
.ls8_c00411{letter-spacing:1.559064px;}
.ls52_c00411{letter-spacing:1.560000px;}
.ls2d_c00411{letter-spacing:1.620030px;}
.ls14_c00411{letter-spacing:1.638180px;}
.ls3b_c00411{letter-spacing:1.650030px;}
.ls36_c00411{letter-spacing:1.680000px;}
.ls34_c00411{letter-spacing:1.710000px;}
.ls24_c00411{letter-spacing:1.740030px;}
.ls33_c00411{letter-spacing:1.745100px;}
.ls49_c00411{letter-spacing:1.770030px;}
.ls0_c00411{letter-spacing:1.774800px;}
.ls5e_c00411{letter-spacing:1.777948px;}
.lsd_c00411{letter-spacing:1.830000px;}
.ls15_c00411{letter-spacing:1.856400px;}
.ls2a_c00411{letter-spacing:1.860000px;}
.ls3e_c00411{letter-spacing:1.920030px;}
.ls5b_c00411{letter-spacing:1.980000px;}
.ls5_c00411{letter-spacing:1.992900px;}
.ls21_c00411{letter-spacing:2.040030px;}
.ls28_c00411{letter-spacing:2.160000px;}
.ls11_c00411{letter-spacing:2.222220px;}
.ls29_c00411{letter-spacing:2.280000px;}
.ls50_c00411{letter-spacing:2.310000px;}
.ls47_c00411{letter-spacing:2.400000px;}
.ls22_c00411{letter-spacing:2.430000px;}
.ls3_c00411{letter-spacing:2.467920px;}
.ls5d_c00411{letter-spacing:2.490000px;}
.ls4_c00411{letter-spacing:2.506140px;}
.ls40_c00411{letter-spacing:2.566200px;}
.ls2c_c00411{letter-spacing:2.577120px;}
.ls61_c00411{letter-spacing:2.580000px;}
.ls57_c00411{letter-spacing:2.604420px;}
.ls58_c00411{letter-spacing:2.626260px;}
.ls3f_c00411{letter-spacing:2.697240px;}
.ls26_c00411{letter-spacing:2.730000px;}
.ls25_c00411{letter-spacing:3.150000px;}
.ls4b_c00411{letter-spacing:3.240000px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{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__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00411{word-spacing:0.000000px;}
._20_c00411{margin-left:-12.411879px;}
._f_c00411{margin-left:-10.737000px;}
._14_c00411{margin-left:-5.544101px;}
._2a_c00411{margin-left:-4.368000px;}
._0_c00411{margin-left:-1.461600px;}
._b_c00411{width:1.678500px;}
._25_c00411{width:3.600000px;}
._2b_c00411{width:6.230400px;}
._1_c00411{width:8.233680px;}
._2_c00411{width:14.729605px;}
._16_c00411{width:31.972340px;}
._1c_c00411{width:64.732800px;}
._d_c00411{width:66.940980px;}
._13_c00411{width:161.988000px;}
._4_c00411{width:170.808240px;}
._5_c00411{width:173.476560px;}
._3_c00411{width:175.461600px;}
._1e_c00411{width:182.826000px;}
._19_c00411{width:184.059000px;}
._27_c00411{width:192.288600px;}
._e_c00411{width:193.706100px;}
._1f_c00411{width:198.487800px;}
._31_c00411{width:203.670000px;}
._1b_c00411{width:206.577000px;}
._2d_c00411{width:208.029000px;}
._6_c00411{width:209.601000px;}
._7_c00411{width:212.058000px;}
._8_c00411{width:215.901000px;}
._a_c00411{width:358.907160px;}
._26_c00411{width:430.366560px;}
._1a_c00411{width:446.767500px;}
._23_c00411{width:458.340000px;}
._24_c00411{width:464.877000px;}
._2f_c00411{width:467.838000px;}
._1d_c00411{width:477.788640px;}
._c_c00411{width:485.194560px;}
._21_c00411{width:505.870560px;}
._18_c00411{width:545.987160px;}
._29_c00411{width:575.511000px;}
._11_c00411{width:708.137280px;}
._9_c00411{width:720.153000px;}
._17_c00411{width:726.012000px;}
._22_c00411{width:727.020000px;}
._30_c00411{width:839.068200px;}
._12_c00411{width:945.116760px;}
._2e_c00411{width:1058.075460px;}
._2c_c00411{width:1313.122919px;}
._15_c00411{width:1354.313351px;}
._10_c00411{width:1373.661240px;}
._28_c00411{width:1457.083020px;}
.fc0_c00411{color:transparent;}
.fs2_c00411{font-size:15.000600px;}
.fs34_c00411{font-size:18.720000px;}
.fs3_c00411{font-size:23.040000px;}
.fs38_c00411{font-size:25.200000px;}
.fs2a_c00411{font-size:25.920000px;}
.fs2d_c00411{font-size:26.400600px;}
.fs29_c00411{font-size:28.200000px;}
.fs1c_c00411{font-size:28.800000px;}
.fs33_c00411{font-size:28.800600px;}
.fs2b_c00411{font-size:29.400600px;}
.fse_c00411{font-size:30.000000px;}
.fs32_c00411{font-size:30.240600px;}
.fs39_c00411{font-size:30.600000px;}
.fs28_c00411{font-size:31.200000px;}
.fs1d_c00411{font-size:31.680000px;}
.fsf_c00411{font-size:32.400600px;}
.fs19_c00411{font-size:33.000600px;}
.fs3b_c00411{font-size:33.120600px;}
.fs17_c00411{font-size:33.600000px;}
.fs15_c00411{font-size:34.200000px;}
.fsa_c00411{font-size:34.560000px;}
.fs6_c00411{font-size:34.800600px;}
.fs21_c00411{font-size:35.400600px;}
.fs20_c00411{font-size:36.600000px;}
.fsd_c00411{font-size:37.200000px;}
.fs11_c00411{font-size:37.800600px;}
.fs1a_c00411{font-size:38.400600px;}
.fs2e_c00411{font-size:39.600000px;}
.fs10_c00411{font-size:40.320000px;}
.fs4_c00411{font-size:40.800600px;}
.fs31_c00411{font-size:41.400600px;}
.fs9_c00411{font-size:43.200000px;}
.fs14_c00411{font-size:44.640600px;}
.fsc_c00411{font-size:45.600000px;}
.fs25_c00411{font-size:46.200000px;}
.fs1f_c00411{font-size:48.000000px;}
.fs5_c00411{font-size:48.600000px;}
.fs30_c00411{font-size:49.800000px;}
.fs22_c00411{font-size:51.600000px;}
.fs23_c00411{font-size:52.800000px;}
.fs35_c00411{font-size:53.280000px;}
.fs8_c00411{font-size:54.600000px;}
.fs2c_c00411{font-size:54.720000px;}
.fs24_c00411{font-size:55.200000px;}
.fs26_c00411{font-size:58.200000px;}
.fs3c_c00411{font-size:58.800000px;}
.fs1e_c00411{font-size:60.000000px;}
.fs0_c00411{font-size:60.600000px;}
.fs7_c00411{font-size:63.000000px;}
.fs18_c00411{font-size:64.800000px;}
.fs12_c00411{font-size:66.000000px;}
.fs3a_c00411{font-size:66.600000px;}
.fs1_c00411{font-size:69.600000px;}
.fs27_c00411{font-size:70.800000px;}
.fs13_c00411{font-size:71.400000px;}
.fsb_c00411{font-size:72.000000px;}
.fs37_c00411{font-size:75.000000px;}
.fs36_c00411{font-size:76.200000px;}
.fs2f_c00411{font-size:80.400000px;}
.fs1b_c00411{font-size:81.600000px;}
.fs16_c00411{font-size:82.200000px;}
.y0_c00411{bottom:0.000000px;}
.y81_c00411{bottom:106.920006px;}
.y7e_c00411{bottom:152.280006px;}
.y80_c00411{bottom:155.535006px;}
.y7f_c00411{bottom:158.040006px;}
.y7d_c00411{bottom:159.120006px;}
.y7c_c00411{bottom:172.800006px;}
.y7a_c00411{bottom:190.440006px;}
.y7b_c00411{bottom:191.160006px;}
.y79_c00411{bottom:191.535006px;}
.y78_c00411{bottom:218.880006px;}
.y77_c00411{bottom:241.215006px;}
.y72_c00411{bottom:254.880006px;}
.y74_c00411{bottom:255.975006px;}
.y73_c00411{bottom:257.055006px;}
.y75_c00411{bottom:257.775006px;}
.y76_c00411{bottom:258.135006px;}
.y70_c00411{bottom:275.055006px;}
.y71_c00411{bottom:280.455006px;}
.y6f_c00411{bottom:281.880006px;}
.y6e_c00411{bottom:294.135006px;}
.y6d_c00411{bottom:297.375006px;}
.y6c_c00411{bottom:297.735006px;}
.y6a_c00411{bottom:310.335006px;}
.y6b_c00411{bottom:312.135006px;}
.y69_c00411{bottom:327.975006px;}
.y67_c00411{bottom:330.135006px;}
.y68_c00411{bottom:330.495006px;}
.y66_c00411{bottom:347.415006px;}
.y65_c00411{bottom:348.840006px;}
.y64_c00411{bottom:368.280006px;}
.y62_c00411{bottom:369.735006px;}
.y63_c00411{bottom:371.175006px;}
.y61_c00411{bottom:380.880006px;}
.y60_c00411{bottom:384.480006px;}
.y5f_c00411{bottom:388.455006px;}
.y5d_c00411{bottom:399.975006px;}
.y5b_c00411{bottom:400.695006px;}
.y5c_c00411{bottom:401.400006px;}
.y5e_c00411{bottom:401.775006px;}
.y5a_c00411{bottom:407.880006px;}
.y59_c00411{bottom:417.975006px;}
.y58_c00411{bottom:419.055006px;}
.y57_c00411{bottom:424.455006px;}
.y56_c00411{bottom:434.535006px;}
.y55_c00411{bottom:437.400006px;}
.y54_c00411{bottom:438.855006px;}
.y53_c00411{bottom:441.720006px;}
.y51_c00411{bottom:453.615006px;}
.y52_c00411{bottom:455.400006px;}
.y50_c00411{bottom:460.455006px;}
.y4f_c00411{bottom:473.055006px;}
.y4e_c00411{bottom:473.775006px;}
.y4d_c00411{bottom:477.720006px;}
.y4c_c00411{bottom:492.480006px;}
.y4b_c00411{bottom:496.455006px;}
.y49_c00411{bottom:509.055006px;}
.y48_c00411{bottom:513.720006px;}
.y4a_c00411{bottom:515.175006px;}
.y47_c00411{bottom:526.695006px;}
.y45_c00411{bottom:527.775006px;}
.y46_c00411{bottom:531.015006px;}
.y43_c00411{bottom:541.800006px;}
.y44_c00411{bottom:544.320006px;}
.y41_c00411{bottom:546.480006px;}
.y42_c00411{bottom:549.720006px;}
.y3f_c00411{bottom:561.255006px;}
.y40_c00411{bottom:562.695006px;}
.y3d_c00411{bottom:580.695006px;}
.y3e_c00411{bottom:582.855006px;}
.y3c_c00411{bottom:598.695006px;}
.y3b_c00411{bottom:599.400006px;}
.y36_c00411{bottom:614.880006px;}
.y38_c00411{bottom:615.255006px;}
.y3a_c00411{bottom:615.975006px;}
.y39_c00411{bottom:616.320006px;}
.y37_c00411{bottom:621.720006px;}
.y31_c00411{bottom:632.535006px;}
.y35_c00411{bottom:633.975006px;}
.y33_c00411{bottom:634.695006px;}
.y32_c00411{bottom:639.375006px;}
.y34_c00411{bottom:640.455006px;}
.y2d_c00411{bottom:651.255006px;}
.y30_c00411{bottom:651.975006px;}
.y2f_c00411{bottom:655.935006px;}
.y2e_c00411{bottom:657.720006px;}
.y2c_c00411{bottom:670.695006px;}
.y29_c00411{bottom:687.255006px;}
.y2b_c00411{bottom:687.975006px;}
.y2a_c00411{bottom:692.280006px;}
.y27_c00411{bottom:702.015006px;}
.y25_c00411{bottom:705.255006px;}
.y28_c00411{bottom:706.695006px;}
.y26_c00411{bottom:709.935006px;}
.y22_c00411{bottom:722.880006px;}
.y24_c00411{bottom:729.375006px;}
.y23_c00411{bottom:729.720006px;}
.y21_c00411{bottom:741.255006px;}
.y20_c00411{bottom:759.615006px;}
.y1f_c00411{bottom:776.520006px;}
.y1e_c00411{bottom:794.895006px;}
.y1d_c00411{bottom:795.255006px;}
.y1c_c00411{bottom:796.320006px;}
.y1b_c00411{bottom:812.895006px;}
.y1a_c00411{bottom:813.255006px;}
.y19_c00411{bottom:813.975006px;}
.y18_c00411{bottom:843.480006px;}
.y16_c00411{bottom:862.575006px;}
.y17_c00411{bottom:862.935006px;}
.y15_c00411{bottom:880.575006px;}
.y14_c00411{bottom:882.360006px;}
.y13_c00411{bottom:899.640006px;}
.y12_c00411{bottom:915.840006px;}
.y11_c00411{bottom:916.575006px;}
.y10_c00411{bottom:922.680006px;}
.yf_c00411{bottom:934.575006px;}
.ye_c00411{bottom:939.975006px;}
.yd_c00411{bottom:950.055006px;}
.yc_c00411{bottom:955.455006px;}
.yb_c00411{bottom:955.800006px;}
.y8_c00411{bottom:969.840006px;}
.ya_c00411{bottom:973.095006px;}
.y9_c00411{bottom:974.895006px;}
.y7_c00411{bottom:987.480006px;}
.y6_c00411{bottom:990.735006px;}
.y5_c00411{bottom:991.455006px;}
.y4_c00411{bottom:1018.095006px;}
.y3_c00411{bottom:1038.615006px;}
.y2_c00411{bottom:1081.455006px;}
.y1_c00411{bottom:1159.215006px;}
.h46_c00411{height:12.467520px;}
.h4_c00411{height:14.722269px;}
.h5_c00411{height:15.344640px;}
.h39_c00411{height:17.262720px;}
.h23_c00411{height:19.180800px;}
.h41_c00411{height:20.140240px;}
.h25_c00411{height:21.098880px;}
.h51_c00411{height:22.058320px;}
.hc_c00411{height:23.016960px;}
.h4e_c00411{height:26.282813px;}
.h14_c00411{height:26.853120px;}
.h38_c00411{height:27.662988px;}
.h4c_c00411{height:28.771200px;}
.h11_c00411{height:29.443359px;}
.h18_c00411{height:29.730640px;}
.h4f_c00411{height:30.032227px;}
.h42_c00411{height:30.038126px;}
.h3a_c00411{height:30.663907px;}
.h1f_c00411{height:32.388284px;}
.h37_c00411{height:32.540625px;}
.h1c_c00411{height:32.960156px;}
.h4a_c00411{height:33.565430px;}
.h13_c00411{height:33.792813px;}
.h44_c00411{height:34.137893px;}
.h8_c00411{height:34.154886px;}
.h3c_c00411{height:34.418595px;}
.h2b_c00411{height:34.743753px;}
.h28_c00411{height:35.043750px;}
.h47_c00411{height:35.484480px;}
.h19_c00411{height:35.669531px;}
.h2a_c00411{height:35.920898px;}
.h3b_c00411{height:36.443520px;}
.h33_c00411{height:36.509766px;}
.h21_c00411{height:37.688089px;}
.h35_c00411{height:38.172656px;}
.h20_c00411{height:38.791055px;}
.h10_c00411{height:38.798438px;}
.h6_c00411{height:40.043558px;}
.h40_c00411{height:40.632425px;}
.h3d_c00411{height:41.301562px;}
.h49_c00411{height:42.377344px;}
.h45_c00411{height:43.111055px;}
.he_c00411{height:44.753906px;}
.hb_c00411{height:45.056250px;}
.h7_c00411{height:47.698242px;}
.h32_c00411{height:48.185156px;}
.h3f_c00411{height:48.875977px;}
.h29_c00411{height:50.062500px;}
.h2c_c00411{height:50.642578px;}
.h30_c00411{height:55.068750px;}
.h43_c00411{height:55.737893px;}
.ha_c00411{height:56.946094px;}
.h52_c00411{height:57.708984px;}
.h24_c00411{height:58.951055px;}
.h12_c00411{height:59.011055px;}
.h2_c00411{height:59.475586px;}
.hf_c00411{height:60.391055px;}
.h34_c00411{height:60.700781px;}
.h36_c00411{height:60.942187px;}
.h15_c00411{height:61.519222px;}
.h9_c00411{height:61.831055px;}
.h27_c00411{height:62.578125px;}
.h26_c00411{height:63.211055px;}
.h2e_c00411{height:63.217055px;}
.h1e_c00411{height:63.271055px;}
.h2f_c00411{height:63.275391px;}
.h4b_c00411{height:63.280055px;}
.h1d_c00411{height:63.566016px;}
.h2d_c00411{height:63.597656px;}
.h1a_c00411{height:64.771055px;}
.h16_c00411{height:64.775391px;}
.h4d_c00411{height:66.468398px;}
.h3_c00411{height:68.308594px;}
.h50_c00411{height:69.461719px;}
.h17_c00411{height:70.075195px;}
.h31_c00411{height:71.911055px;}
.h48_c00411{height:74.786133px;}
.hd_c00411{height:75.093750px;}
.h3e_c00411{height:78.908203px;}
.h22_c00411{height:85.106250px;}
.h1b_c00411{height:85.732031px;}
.h1_c00411{height:1263.000000px;}
.h0_c00411{height:1263.240006px;}
.w1_c00411{width:892.500000px;}
.w0_c00411{width:892.799998px;}
.x0_c00411{left:0.000000px;}
.x1_c00411{left:109.724998px;}
.x30_c00411{left:115.379999px;}
.x13_c00411{left:117.179999px;}
.x18_c00411{left:118.304999px;}
.x2_c00411{left:119.729999px;}
.x48_c00411{left:121.649998px;}
.x3_c00411{left:127.019999px;}
.xb_c00411{left:128.999998px;}
.x53_c00411{left:132.614998px;}
.xc_c00411{left:135.104998px;}
.x39_c00411{left:136.229998px;}
.x4_c00411{left:138.569998px;}
.x27_c00411{left:141.869998px;}
.x5a_c00411{left:143.279999px;}
.x5_c00411{left:145.814999px;}
.x49_c00411{left:147.959998px;}
.x2c_c00411{left:152.129998px;}
.x55_c00411{left:153.524998px;}
.x5b_c00411{left:154.799998px;}
.x3d_c00411{left:159.749998px;}
.x3f_c00411{left:162.194998px;}
.x32_c00411{left:166.529999px;}
.x45_c00411{left:167.894998px;}
.x40_c00411{left:170.654999px;}
.x4f_c00411{left:173.594999px;}
.x58_c00411{left:175.049998px;}
.x51_c00411{left:176.249998px;}
.x6_c00411{left:177.449998px;}
.xd_c00411{left:185.234998px;}
.x19_c00411{left:186.704998px;}
.x3e_c00411{left:188.504998px;}
.x54_c00411{left:189.929998px;}
.x4a_c00411{left:191.039998px;}
.x35_c00411{left:192.404999px;}
.x28_c00411{left:194.069998px;}
.xe_c00411{left:197.039998px;}
.x4e_c00411{left:199.724998px;}
.x1d_c00411{left:200.744999px;}
.x14_c00411{left:202.379998px;}
.x46_c00411{left:203.549999px;}
.xf_c00411{left:205.709999px;}
.x3a_c00411{left:206.894999px;}
.x31_c00411{left:208.274998px;}
.x10_c00411{left:209.564999px;}
.x1f_c00411{left:211.034999px;}
.x1a_c00411{left:213.869999px;}
.x16_c00411{left:215.174998px;}
.x33_c00411{left:216.734998px;}
.x11_c00411{left:218.414998px;}
.x1b_c00411{left:220.694999px;}
.x2d_c00411{left:221.894999px;}
.x29_c00411{left:224.114998px;}
.x56_c00411{left:228.389999px;}
.x24_c00411{left:230.579998px;}
.x1c_c00411{left:232.064999px;}
.x12_c00411{left:234.119999px;}
.x2a_c00411{left:236.009998px;}
.x41_c00411{left:237.089999px;}
.x2e_c00411{left:238.499998px;}
.x3b_c00411{left:241.454998px;}
.x57_c00411{left:243.014998px;}
.x2b_c00411{left:245.234998px;}
.x47_c00411{left:246.749998px;}
.x59_c00411{left:250.124998px;}
.x36_c00411{left:252.989999px;}
.x5d_c00411{left:254.339999px;}
.x42_c00411{left:260.099999px;}
.x25_c00411{left:261.734998px;}
.x20_c00411{left:271.679999px;}
.x50_c00411{left:277.784999px;}
.x52_c00411{left:281.774999px;}
.x4b_c00411{left:392.669999px;}
.x5c_c00411{left:395.924999px;}
.x34_c00411{left:397.619999px;}
.x8_c00411{left:399.419999px;}
.x5f_c00411{left:421.034998px;}
.x43_c00411{left:457.829998px;}
.x21_c00411{left:459.899999px;}
.x7_c00411{left:506.519998px;}
.x38_c00411{left:519.644999px;}
.x44_c00411{left:522.539999px;}
.x22_c00411{left:523.889998px;}
.x3c_c00411{left:526.259999px;}
.x15_c00411{left:528.254999px;}
.x4c_c00411{left:586.979999px;}
.x23_c00411{left:588.314999px;}
.x37_c00411{left:591.059999px;}
.x26_c00411{left:592.274999px;}
.x9_c00411{left:652.859998px;}
.x4d_c00411{left:654.389998px;}
.x2f_c00411{left:655.859998px;}
.xa_c00411{left:713.279999px;}
.x5e_c00411{left:714.794999px;}
.x1e_c00411{left:720.149999px;}
.x17_c00411{left:722.339998px;}
@media print{
.v7_c00411{vertical-align:-20.480000pt;}
.vd_c00411{vertical-align:-16.640000pt;}
.vb_c00411{vertical-align:-8.906667pt;}
.vf_c00411{vertical-align:-6.346667pt;}
.va_c00411{vertical-align:-5.066667pt;}
.v2_c00411{vertical-align:-2.520000pt;}
.v1_c00411{vertical-align:-1.232000pt;}
.v0_c00411{vertical-align:0.000000pt;}
.v5_c00411{vertical-align:1.280000pt;}
.v4_c00411{vertical-align:2.613333pt;}
.ve_c00411{vertical-align:6.400000pt;}
.v9_c00411{vertical-align:8.960000pt;}
.v8_c00411{vertical-align:11.520000pt;}
.vc_c00411{vertical-align:19.200000pt;}
.v3_c00411{vertical-align:21.706667pt;}
.v6_c00411{vertical-align:24.320000pt;}
.ls35_c00411{letter-spacing:-2.557333pt;}
.ls41_c00411{letter-spacing:-2.538667pt;}
.ls1f_c00411{letter-spacing:-2.165333pt;}
.ls67_c00411{letter-spacing:-2.072000pt;}
.ls3c_c00411{letter-spacing:-2.053333pt;}
.ls17_c00411{letter-spacing:-1.985920pt;}
.ls31_c00411{letter-spacing:-1.960000pt;}
.ls45_c00411{letter-spacing:-1.866667pt;}
.ls2e_c00411{letter-spacing:-1.698667pt;}
.ls4d_c00411{letter-spacing:-1.582187pt;}
.ls54_c00411{letter-spacing:-1.493333pt;}
.ls4f_c00411{letter-spacing:-1.456000pt;}
.ls27_c00411{letter-spacing:-1.344000pt;}
.ls5f_c00411{letter-spacing:-1.194685pt;}
.ls3d_c00411{letter-spacing:-1.163965pt;}
.ls48_c00411{letter-spacing:-1.138667pt;}
.ls1c_c00411{letter-spacing:-1.132160pt;}
.ls37_c00411{letter-spacing:-1.100160pt;}
.ls23_c00411{letter-spacing:-1.082685pt;}
.ls5c_c00411{letter-spacing:-1.082293pt;}
.ls66_c00411{letter-spacing:-0.952000pt;}
.ls62_c00411{letter-spacing:-0.951253pt;}
.ls2f_c00411{letter-spacing:-0.940815pt;}
.ls55_c00411{letter-spacing:-0.877333pt;}
.ls1e_c00411{letter-spacing:-0.872320pt;}
.ls4a_c00411{letter-spacing:-0.779733pt;}
.ls20_c00411{letter-spacing:-0.674347pt;}
.ls4e_c00411{letter-spacing:-0.616000pt;}
.ls1d_c00411{letter-spacing:-0.538240pt;}
.ls1a_c00411{letter-spacing:-0.466685pt;}
.ls59_c00411{letter-spacing:-0.456213pt;}
.ls46_c00411{letter-spacing:-0.394240pt;}
.ls42_c00411{letter-spacing:-0.344587pt;}
.ls44_c00411{letter-spacing:-0.319200pt;}
.ls38_c00411{letter-spacing:-0.296000pt;}
.ls2b_c00411{letter-spacing:-0.290667pt;}
.ls32_c00411{letter-spacing:-0.274400pt;}
.ls4c_c00411{letter-spacing:-0.048533pt;}
.ls43_c00411{letter-spacing:-0.034667pt;}
.ls19_c00411{letter-spacing:0.000000pt;}
.ls13_c00411{letter-spacing:0.058668pt;}
.lsc_c00411{letter-spacing:0.100800pt;}
.ls68_c00411{letter-spacing:0.162027pt;}
.lsb_c00411{letter-spacing:0.230613pt;}
.lse_c00411{letter-spacing:0.262080pt;}
.ls60_c00411{letter-spacing:0.305444pt;}
.ls6_c00411{letter-spacing:0.373707pt;}
.ls1_c00411{letter-spacing:0.601813pt;}
.ls1b_c00411{letter-spacing:0.666693pt;}
.ls3a_c00411{letter-spacing:0.668812pt;}
.ls63_c00411{letter-spacing:0.704480pt;}
.ls53_c00411{letter-spacing:0.752267pt;}
.ls30_c00411{letter-spacing:0.875840pt;}
.ls51_c00411{letter-spacing:0.878453pt;}
.ls12_c00411{letter-spacing:0.922133pt;}
.ls9_c00411{letter-spacing:0.957600pt;}
.ls5a_c00411{letter-spacing:0.987969pt;}
.ls18_c00411{letter-spacing:1.045547pt;}
.ls2_c00411{letter-spacing:1.092000pt;}
.ls64_c00411{letter-spacing:1.120000pt;}
.lsf_c00411{letter-spacing:1.125973pt;}
.ls16_c00411{letter-spacing:1.238933pt;}
.ls7_c00411{letter-spacing:1.300693pt;}
.ls56_c00411{letter-spacing:1.306693pt;}
.ls39_c00411{letter-spacing:1.333333pt;}
.ls65_c00411{letter-spacing:1.360000pt;}
.ls10_c00411{letter-spacing:1.377600pt;}
.lsa_c00411{letter-spacing:1.384533pt;}
.ls8_c00411{letter-spacing:1.385835pt;}
.ls52_c00411{letter-spacing:1.386667pt;}
.ls2d_c00411{letter-spacing:1.440027pt;}
.ls14_c00411{letter-spacing:1.456160pt;}
.ls3b_c00411{letter-spacing:1.466693pt;}
.ls36_c00411{letter-spacing:1.493333pt;}
.ls34_c00411{letter-spacing:1.520000pt;}
.ls24_c00411{letter-spacing:1.546693pt;}
.ls33_c00411{letter-spacing:1.551200pt;}
.ls49_c00411{letter-spacing:1.573360pt;}
.ls0_c00411{letter-spacing:1.577600pt;}
.ls5e_c00411{letter-spacing:1.580398pt;}
.lsd_c00411{letter-spacing:1.626667pt;}
.ls15_c00411{letter-spacing:1.650133pt;}
.ls2a_c00411{letter-spacing:1.653333pt;}
.ls3e_c00411{letter-spacing:1.706693pt;}
.ls5b_c00411{letter-spacing:1.760000pt;}
.ls5_c00411{letter-spacing:1.771467pt;}
.ls21_c00411{letter-spacing:1.813360pt;}
.ls28_c00411{letter-spacing:1.920000pt;}
.ls11_c00411{letter-spacing:1.975307pt;}
.ls29_c00411{letter-spacing:2.026667pt;}
.ls50_c00411{letter-spacing:2.053333pt;}
.ls47_c00411{letter-spacing:2.133333pt;}
.ls22_c00411{letter-spacing:2.160000pt;}
.ls3_c00411{letter-spacing:2.193707pt;}
.ls5d_c00411{letter-spacing:2.213333pt;}
.ls4_c00411{letter-spacing:2.227680pt;}
.ls40_c00411{letter-spacing:2.281067pt;}
.ls2c_c00411{letter-spacing:2.290773pt;}
.ls61_c00411{letter-spacing:2.293333pt;}
.ls57_c00411{letter-spacing:2.315040pt;}
.ls58_c00411{letter-spacing:2.334453pt;}
.ls3f_c00411{letter-spacing:2.397547pt;}
.ls26_c00411{letter-spacing:2.426667pt;}
.ls25_c00411{letter-spacing:2.800000pt;}
.ls4b_c00411{letter-spacing:2.880000pt;}
.ws0_c00411{word-spacing:0.000000pt;}
._20_c00411{margin-left:-11.032781pt;}
._f_c00411{margin-left:-9.544000pt;}
._14_c00411{margin-left:-4.928090pt;}
._2a_c00411{margin-left:-3.882667pt;}
._0_c00411{margin-left:-1.299200pt;}
._b_c00411{width:1.492000pt;}
._25_c00411{width:3.200000pt;}
._2b_c00411{width:5.538133pt;}
._1_c00411{width:7.318827pt;}
._2_c00411{width:13.092982pt;}
._16_c00411{width:28.419857pt;}
._1c_c00411{width:57.540267pt;}
._d_c00411{width:59.503093pt;}
._13_c00411{width:143.989333pt;}
._4_c00411{width:151.829547pt;}
._5_c00411{width:154.201387pt;}
._3_c00411{width:155.965867pt;}
._1e_c00411{width:162.512000pt;}
._19_c00411{width:163.608000pt;}
._27_c00411{width:170.923200pt;}
._e_c00411{width:172.183200pt;}
._1f_c00411{width:176.433600pt;}
._31_c00411{width:181.040000pt;}
._1b_c00411{width:183.624000pt;}
._2d_c00411{width:184.914667pt;}
._6_c00411{width:186.312000pt;}
._7_c00411{width:188.496000pt;}
._8_c00411{width:191.912000pt;}
._a_c00411{width:319.028587pt;}
._26_c00411{width:382.548053pt;}
._1a_c00411{width:397.126667pt;}
._23_c00411{width:407.413333pt;}
._24_c00411{width:413.224000pt;}
._2f_c00411{width:415.856000pt;}
._1d_c00411{width:424.701013pt;}
._c_c00411{width:431.284053pt;}
._21_c00411{width:449.662720pt;}
._18_c00411{width:485.321920pt;}
._29_c00411{width:511.565333pt;}
._11_c00411{width:629.455360pt;}
._9_c00411{width:640.136000pt;}
._17_c00411{width:645.344000pt;}
._22_c00411{width:646.240000pt;}
._30_c00411{width:745.838400pt;}
._12_c00411{width:840.103787pt;}
._2e_c00411{width:940.511520pt;}
._2c_c00411{width:1167.220373pt;}
._15_c00411{width:1203.834090pt;}
._10_c00411{width:1221.032213pt;}
._28_c00411{width:1295.184907pt;}
.fs2_c00411{font-size:13.333867pt;}
.fs34_c00411{font-size:16.640000pt;}
.fs3_c00411{font-size:20.480000pt;}
.fs38_c00411{font-size:22.400000pt;}
.fs2a_c00411{font-size:23.040000pt;}
.fs2d_c00411{font-size:23.467200pt;}
.fs29_c00411{font-size:25.066667pt;}
.fs1c_c00411{font-size:25.600000pt;}
.fs33_c00411{font-size:25.600533pt;}
.fs2b_c00411{font-size:26.133867pt;}
.fse_c00411{font-size:26.666667pt;}
.fs32_c00411{font-size:26.880533pt;}
.fs39_c00411{font-size:27.200000pt;}
.fs28_c00411{font-size:27.733333pt;}
.fs1d_c00411{font-size:28.160000pt;}
.fsf_c00411{font-size:28.800533pt;}
.fs19_c00411{font-size:29.333867pt;}
.fs3b_c00411{font-size:29.440533pt;}
.fs17_c00411{font-size:29.866667pt;}
.fs15_c00411{font-size:30.400000pt;}
.fsa_c00411{font-size:30.720000pt;}
.fs6_c00411{font-size:30.933867pt;}
.fs21_c00411{font-size:31.467200pt;}
.fs20_c00411{font-size:32.533333pt;}
.fsd_c00411{font-size:33.066667pt;}
.fs11_c00411{font-size:33.600533pt;}
.fs1a_c00411{font-size:34.133867pt;}
.fs2e_c00411{font-size:35.200000pt;}
.fs10_c00411{font-size:35.840000pt;}
.fs4_c00411{font-size:36.267200pt;}
.fs31_c00411{font-size:36.800533pt;}
.fs9_c00411{font-size:38.400000pt;}
.fs14_c00411{font-size:39.680533pt;}
.fsc_c00411{font-size:40.533333pt;}
.fs25_c00411{font-size:41.066667pt;}
.fs1f_c00411{font-size:42.666667pt;}
.fs5_c00411{font-size:43.200000pt;}
.fs30_c00411{font-size:44.266667pt;}
.fs22_c00411{font-size:45.866667pt;}
.fs23_c00411{font-size:46.933333pt;}
.fs35_c00411{font-size:47.360000pt;}
.fs8_c00411{font-size:48.533333pt;}
.fs2c_c00411{font-size:48.640000pt;}
.fs24_c00411{font-size:49.066667pt;}
.fs26_c00411{font-size:51.733333pt;}
.fs3c_c00411{font-size:52.266667pt;}
.fs1e_c00411{font-size:53.333333pt;}
.fs0_c00411{font-size:53.866667pt;}
.fs7_c00411{font-size:56.000000pt;}
.fs18_c00411{font-size:57.600000pt;}
.fs12_c00411{font-size:58.666667pt;}
.fs3a_c00411{font-size:59.200000pt;}
.fs1_c00411{font-size:61.866667pt;}
.fs27_c00411{font-size:62.933333pt;}
.fs13_c00411{font-size:63.466667pt;}
.fsb_c00411{font-size:64.000000pt;}
.fs37_c00411{font-size:66.666667pt;}
.fs36_c00411{font-size:67.733333pt;}
.fs2f_c00411{font-size:71.466667pt;}
.fs1b_c00411{font-size:72.533333pt;}
.fs16_c00411{font-size:73.066667pt;}
.y0_c00411{bottom:0.000000pt;}
.y81_c00411{bottom:95.040005pt;}
.y7e_c00411{bottom:135.360005pt;}
.y80_c00411{bottom:138.253339pt;}
.y7f_c00411{bottom:140.480005pt;}
.y7d_c00411{bottom:141.440005pt;}
.y7c_c00411{bottom:153.600005pt;}
.y7a_c00411{bottom:169.280005pt;}
.y7b_c00411{bottom:169.920005pt;}
.y79_c00411{bottom:170.253339pt;}
.y78_c00411{bottom:194.560005pt;}
.y77_c00411{bottom:214.413339pt;}
.y72_c00411{bottom:226.560005pt;}
.y74_c00411{bottom:227.533339pt;}
.y73_c00411{bottom:228.493339pt;}
.y75_c00411{bottom:229.133339pt;}
.y76_c00411{bottom:229.453339pt;}
.y70_c00411{bottom:244.493339pt;}
.y71_c00411{bottom:249.293339pt;}
.y6f_c00411{bottom:250.560005pt;}
.y6e_c00411{bottom:261.453339pt;}
.y6d_c00411{bottom:264.333339pt;}
.y6c_c00411{bottom:264.653339pt;}
.y6a_c00411{bottom:275.853339pt;}
.y6b_c00411{bottom:277.453339pt;}
.y69_c00411{bottom:291.533339pt;}
.y67_c00411{bottom:293.453339pt;}
.y68_c00411{bottom:293.773339pt;}
.y66_c00411{bottom:308.813339pt;}
.y65_c00411{bottom:310.080005pt;}
.y64_c00411{bottom:327.360005pt;}
.y62_c00411{bottom:328.653339pt;}
.y63_c00411{bottom:329.933339pt;}
.y61_c00411{bottom:338.560005pt;}
.y60_c00411{bottom:341.760005pt;}
.y5f_c00411{bottom:345.293339pt;}
.y5d_c00411{bottom:355.533339pt;}
.y5b_c00411{bottom:356.173339pt;}
.y5c_c00411{bottom:356.800005pt;}
.y5e_c00411{bottom:357.133339pt;}
.y5a_c00411{bottom:362.560005pt;}
.y59_c00411{bottom:371.533339pt;}
.y58_c00411{bottom:372.493339pt;}
.y57_c00411{bottom:377.293339pt;}
.y56_c00411{bottom:386.253339pt;}
.y55_c00411{bottom:388.800005pt;}
.y54_c00411{bottom:390.093339pt;}
.y53_c00411{bottom:392.640005pt;}
.y51_c00411{bottom:403.213339pt;}
.y52_c00411{bottom:404.800005pt;}
.y50_c00411{bottom:409.293339pt;}
.y4f_c00411{bottom:420.493339pt;}
.y4e_c00411{bottom:421.133339pt;}
.y4d_c00411{bottom:424.640005pt;}
.y4c_c00411{bottom:437.760005pt;}
.y4b_c00411{bottom:441.293339pt;}
.y49_c00411{bottom:452.493339pt;}
.y48_c00411{bottom:456.640005pt;}
.y4a_c00411{bottom:457.933339pt;}
.y47_c00411{bottom:468.173339pt;}
.y45_c00411{bottom:469.133339pt;}
.y46_c00411{bottom:472.013339pt;}
.y43_c00411{bottom:481.600005pt;}
.y44_c00411{bottom:483.840005pt;}
.y41_c00411{bottom:485.760005pt;}
.y42_c00411{bottom:488.640005pt;}
.y3f_c00411{bottom:498.893339pt;}
.y40_c00411{bottom:500.173339pt;}
.y3d_c00411{bottom:516.173339pt;}
.y3e_c00411{bottom:518.093339pt;}
.y3c_c00411{bottom:532.173339pt;}
.y3b_c00411{bottom:532.800005pt;}
.y36_c00411{bottom:546.560005pt;}
.y38_c00411{bottom:546.893339pt;}
.y3a_c00411{bottom:547.533339pt;}
.y39_c00411{bottom:547.840005pt;}
.y37_c00411{bottom:552.640005pt;}
.y31_c00411{bottom:562.253339pt;}
.y35_c00411{bottom:563.533339pt;}
.y33_c00411{bottom:564.173339pt;}
.y32_c00411{bottom:568.333339pt;}
.y34_c00411{bottom:569.293339pt;}
.y2d_c00411{bottom:578.893339pt;}
.y30_c00411{bottom:579.533339pt;}
.y2f_c00411{bottom:583.053339pt;}
.y2e_c00411{bottom:584.640005pt;}
.y2c_c00411{bottom:596.173339pt;}
.y29_c00411{bottom:610.893339pt;}
.y2b_c00411{bottom:611.533339pt;}
.y2a_c00411{bottom:615.360005pt;}
.y27_c00411{bottom:624.013339pt;}
.y25_c00411{bottom:626.893339pt;}
.y28_c00411{bottom:628.173339pt;}
.y26_c00411{bottom:631.053339pt;}
.y22_c00411{bottom:642.560005pt;}
.y24_c00411{bottom:648.333339pt;}
.y23_c00411{bottom:648.640005pt;}
.y21_c00411{bottom:658.893339pt;}
.y20_c00411{bottom:675.213339pt;}
.y1f_c00411{bottom:690.240005pt;}
.y1e_c00411{bottom:706.573339pt;}
.y1d_c00411{bottom:706.893339pt;}
.y1c_c00411{bottom:707.840005pt;}
.y1b_c00411{bottom:722.573339pt;}
.y1a_c00411{bottom:722.893339pt;}
.y19_c00411{bottom:723.533339pt;}
.y18_c00411{bottom:749.760005pt;}
.y16_c00411{bottom:766.733339pt;}
.y17_c00411{bottom:767.053339pt;}
.y15_c00411{bottom:782.733339pt;}
.y14_c00411{bottom:784.320005pt;}
.y13_c00411{bottom:799.680005pt;}
.y12_c00411{bottom:814.080005pt;}
.y11_c00411{bottom:814.733339pt;}
.y10_c00411{bottom:820.160005pt;}
.yf_c00411{bottom:830.733339pt;}
.ye_c00411{bottom:835.533339pt;}
.yd_c00411{bottom:844.493339pt;}
.yc_c00411{bottom:849.293339pt;}
.yb_c00411{bottom:849.600005pt;}
.y8_c00411{bottom:862.080005pt;}
.ya_c00411{bottom:864.973339pt;}
.y9_c00411{bottom:866.573339pt;}
.y7_c00411{bottom:877.760005pt;}
.y6_c00411{bottom:880.653339pt;}
.y5_c00411{bottom:881.293339pt;}
.y4_c00411{bottom:904.973339pt;}
.y3_c00411{bottom:923.213339pt;}
.y2_c00411{bottom:961.293339pt;}
.y1_c00411{bottom:1030.413339pt;}
.h46_c00411{height:11.082240pt;}
.h4_c00411{height:13.086461pt;}
.h5_c00411{height:13.639680pt;}
.h39_c00411{height:15.344640pt;}
.h23_c00411{height:17.049600pt;}
.h41_c00411{height:17.902435pt;}
.h25_c00411{height:18.754560pt;}
.h51_c00411{height:19.607395pt;}
.hc_c00411{height:20.459520pt;}
.h4e_c00411{height:23.362500pt;}
.h14_c00411{height:23.869440pt;}
.h38_c00411{height:24.589323pt;}
.h4c_c00411{height:25.574400pt;}
.h11_c00411{height:26.171875pt;}
.h18_c00411{height:26.427235pt;}
.h4f_c00411{height:26.695312pt;}
.h42_c00411{height:26.700556pt;}
.h3a_c00411{height:27.256806pt;}
.h1f_c00411{height:28.789586pt;}
.h37_c00411{height:28.925000pt;}
.h1c_c00411{height:29.297917pt;}
.h4a_c00411{height:29.835938pt;}
.h13_c00411{height:30.038056pt;}
.h44_c00411{height:30.344794pt;}
.h8_c00411{height:30.359898pt;}
.h3c_c00411{height:30.594306pt;}
.h2b_c00411{height:30.883336pt;}
.h28_c00411{height:31.150000pt;}
.h47_c00411{height:31.541760pt;}
.h19_c00411{height:31.706250pt;}
.h2a_c00411{height:31.929687pt;}
.h3b_c00411{height:32.394240pt;}
.h33_c00411{height:32.453125pt;}
.h21_c00411{height:33.500523pt;}
.h35_c00411{height:33.931250pt;}
.h20_c00411{height:34.480938pt;}
.h10_c00411{height:34.487500pt;}
.h6_c00411{height:35.594273pt;}
.h40_c00411{height:36.117711pt;}
.h3d_c00411{height:36.712500pt;}
.h49_c00411{height:37.668750pt;}
.h45_c00411{height:38.320937pt;}
.he_c00411{height:39.781250pt;}
.hb_c00411{height:40.050000pt;}
.h7_c00411{height:42.398437pt;}
.h32_c00411{height:42.831250pt;}
.h3f_c00411{height:43.445313pt;}
.h29_c00411{height:44.500000pt;}
.h2c_c00411{height:45.015625pt;}
.h30_c00411{height:48.950000pt;}
.h43_c00411{height:49.544794pt;}
.ha_c00411{height:50.618750pt;}
.h52_c00411{height:51.296875pt;}
.h24_c00411{height:52.400937pt;}
.h12_c00411{height:52.454271pt;}
.h2_c00411{height:52.867187pt;}
.hf_c00411{height:53.680938pt;}
.h34_c00411{height:53.956250pt;}
.h36_c00411{height:54.170833pt;}
.h15_c00411{height:54.683753pt;}
.h9_c00411{height:54.960938pt;}
.h27_c00411{height:55.625000pt;}
.h26_c00411{height:56.187604pt;}
.h2e_c00411{height:56.192937pt;}
.h1e_c00411{height:56.240938pt;}
.h2f_c00411{height:56.244792pt;}
.h4b_c00411{height:56.248937pt;}
.h1d_c00411{height:56.503125pt;}
.h2d_c00411{height:56.531250pt;}
.h1a_c00411{height:57.574271pt;}
.h16_c00411{height:57.578125pt;}
.h4d_c00411{height:59.083021pt;}
.h3_c00411{height:60.718750pt;}
.h50_c00411{height:61.743750pt;}
.h17_c00411{height:62.289062pt;}
.h31_c00411{height:63.920937pt;}
.h48_c00411{height:66.476562pt;}
.hd_c00411{height:66.750000pt;}
.h3e_c00411{height:70.140625pt;}
.h22_c00411{height:75.650000pt;}
.h1b_c00411{height:76.206250pt;}
.h1_c00411{height:1122.666667pt;}
.h0_c00411{height:1122.880005pt;}
.w1_c00411{width:793.333333pt;}
.w0_c00411{width:793.599999pt;}
.x0_c00411{left:0.000000pt;}
.x1_c00411{left:97.533332pt;}
.x30_c00411{left:102.559999pt;}
.x13_c00411{left:104.159999pt;}
.x18_c00411{left:105.159999pt;}
.x2_c00411{left:106.426665pt;}
.x48_c00411{left:108.133332pt;}
.x3_c00411{left:112.906665pt;}
.xb_c00411{left:114.666665pt;}
.x53_c00411{left:117.879999pt;}
.xc_c00411{left:120.093332pt;}
.x39_c00411{left:121.093332pt;}
.x4_c00411{left:123.173332pt;}
.x27_c00411{left:126.106665pt;}
.x5a_c00411{left:127.359999pt;}
.x5_c00411{left:129.613332pt;}
.x49_c00411{left:131.519999pt;}
.x2c_c00411{left:135.226665pt;}
.x55_c00411{left:136.466665pt;}
.x5b_c00411{left:137.599999pt;}
.x3d_c00411{left:141.999999pt;}
.x3f_c00411{left:144.173332pt;}
.x32_c00411{left:148.026665pt;}
.x45_c00411{left:149.239999pt;}
.x40_c00411{left:151.693332pt;}
.x4f_c00411{left:154.306665pt;}
.x58_c00411{left:155.599999pt;}
.x51_c00411{left:156.666665pt;}
.x6_c00411{left:157.733332pt;}
.xd_c00411{left:164.653332pt;}
.x19_c00411{left:165.959999pt;}
.x3e_c00411{left:167.559999pt;}
.x54_c00411{left:168.826665pt;}
.x4a_c00411{left:169.813332pt;}
.x35_c00411{left:171.026665pt;}
.x28_c00411{left:172.506665pt;}
.xe_c00411{left:175.146665pt;}
.x4e_c00411{left:177.533332pt;}
.x1d_c00411{left:178.439999pt;}
.x14_c00411{left:179.893332pt;}
.x46_c00411{left:180.933332pt;}
.xf_c00411{left:182.853332pt;}
.x3a_c00411{left:183.906665pt;}
.x31_c00411{left:185.133332pt;}
.x10_c00411{left:186.279999pt;}
.x1f_c00411{left:187.586665pt;}
.x1a_c00411{left:190.106665pt;}
.x16_c00411{left:191.266665pt;}
.x33_c00411{left:192.653332pt;}
.x11_c00411{left:194.146665pt;}
.x1b_c00411{left:196.173332pt;}
.x2d_c00411{left:197.239999pt;}
.x29_c00411{left:199.213332pt;}
.x56_c00411{left:203.013332pt;}
.x24_c00411{left:204.959999pt;}
.x1c_c00411{left:206.279999pt;}
.x12_c00411{left:208.106665pt;}
.x2a_c00411{left:209.786665pt;}
.x41_c00411{left:210.746665pt;}
.x2e_c00411{left:211.999999pt;}
.x3b_c00411{left:214.626665pt;}
.x57_c00411{left:216.013332pt;}
.x2b_c00411{left:217.986665pt;}
.x47_c00411{left:219.333332pt;}
.x59_c00411{left:222.333332pt;}
.x36_c00411{left:224.879999pt;}
.x5d_c00411{left:226.079999pt;}
.x42_c00411{left:231.199999pt;}
.x25_c00411{left:232.653332pt;}
.x20_c00411{left:241.493332pt;}
.x50_c00411{left:246.919999pt;}
.x52_c00411{left:250.466665pt;}
.x4b_c00411{left:349.039999pt;}
.x5c_c00411{left:351.933332pt;}
.x34_c00411{left:353.439999pt;}
.x8_c00411{left:355.039999pt;}
.x5f_c00411{left:374.253332pt;}
.x43_c00411{left:406.959999pt;}
.x21_c00411{left:408.799999pt;}
.x7_c00411{left:450.239999pt;}
.x38_c00411{left:461.906665pt;}
.x44_c00411{left:464.479999pt;}
.x22_c00411{left:465.679999pt;}
.x3c_c00411{left:467.786665pt;}
.x15_c00411{left:469.559999pt;}
.x4c_c00411{left:521.759999pt;}
.x23_c00411{left:522.946665pt;}
.x37_c00411{left:525.386665pt;}
.x26_c00411{left:526.466665pt;}
.x9_c00411{left:580.319999pt;}
.x4d_c00411{left:581.679999pt;}
.x2f_c00411{left:582.986665pt;}
.xa_c00411{left:634.026665pt;}
.x5e_c00411{left:635.373332pt;}
.x1e_c00411{left:640.133332pt;}
.x17_c00411{left:642.079999pt;}
}





/* 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_c00412 {
    display:none;
  }
  .loading-indicator_c00412.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00412 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_c00412 { 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_c00412" -> "#page-container .classname_c00412")
 */
.pf_c00412 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00412 { /* 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_c00412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00412 { /* 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_c00412 { /* 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_c00412 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00412 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00412 {overflow:visible;}
  }
}
.c_c00412 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00412 { /* 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_c00412:after { /* webkit #35443 */
  content: '';
}
.t_c00412:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00412 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 */
}
.__c00412 { /* 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_c00412 { /* info for Javascript */
  display:none;
}
.l_c00412 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00412 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00412 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00412: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_c00412 {
    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_c00412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00412.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_c00412 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00412{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00412;src:url('chunks/assets/font_16e25369de8e5032b18810d5.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.284668;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_c00412;src:url('chunks/assets/font_b7256a9f6c286c12555ad4e5.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.311035;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_c00412;src:url('chunks/assets/font_5fba077ab520d54d72543f25.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:0.666000;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_c00412;src:url('chunks/assets/font_f771cf0dfd65d9b714ca6994.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;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:ff5_c00412;src:url('chunks/assets/font_9f8074b083fbf7f58ea1e69b.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;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:ff6_c00412;src:url('chunks/assets/font_61d136d9e70ced1214fc708b.woff2')format("woff");}.ff6_c00412{font-family:ff6_c00412;line-height:1.284180;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;}
.mb_c00412{transform:matrix(0.088758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088758,0.000000,0.000000,0.250000,0,0);}
.m9_c00412{transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);}
.m55_c00412{transform:matrix(0.106061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106061,0.000000,0.000000,0.250000,0,0);}
.m20_c00412{transform:matrix(0.111538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111538,0.000000,0.000000,0.250000,0,0);}
.m57_c00412{transform:matrix(0.115792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115792,0.000000,0.000000,0.250000,0,0);}
.m1d_c00412{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m11_c00412{transform:matrix(0.150645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150645,0.000000,0.000000,0.250000,0,0);}
.m36_c00412{transform:matrix(0.157891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157891,0.000000,0.000000,0.250000,0,0);}
.ma_c00412{transform:matrix(0.162774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162774,0.000000,0.000000,0.250000,0,0);}
.m42_c00412{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.m21_c00412{transform:matrix(0.173562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173562,0.000000,0.000000,0.250000,0,0);}
.m1b_c00412{transform:matrix(0.174592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174592,0.000000,0.000000,0.250000,0,0);}
.m3_c00412{transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);}
.m35_c00412{transform:matrix(0.179647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179647,0.000000,0.000000,0.250000,0,0);}
.m2c_c00412{transform:matrix(0.182698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182698,0.000000,0.000000,0.250000,0,0);}
.m3d_c00412{transform:matrix(0.184204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184204,0.000000,0.000000,0.250000,0,0);}
.m18_c00412{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00412{transform:matrix(0.189821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189821,0.000000,0.000000,0.250000,0,0);}
.m38_c00412{transform:matrix(0.193467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193467,0.000000,0.000000,0.250000,0,0);}
.m37_c00412{transform:matrix(0.195171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195171,0.000000,0.000000,0.250000,0,0);}
.m41_c00412{transform:matrix(0.196856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196856,0.000000,0.000000,0.250000,0,0);}
.m34_c00412{transform:matrix(0.201848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201848,0.000000,0.000000,0.250000,0,0);}
.m54_c00412{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m48_c00412{transform:matrix(0.206774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206774,0.000000,0.000000,0.250000,0,0);}
.m3f_c00412{transform:matrix(0.207152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207152,0.000000,0.000000,0.250000,0,0);}
.m1f_c00412{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m1_c00412{transform:matrix(0.220651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220651,0.000000,0.000000,0.250000,0,0);}
.m13_c00412{transform:matrix(0.221103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221103,0.000000,0.000000,0.250000,0,0);}
.m25_c00412{transform:matrix(0.223240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223240,0.000000,0.000000,0.250000,0,0);}
.m2d_c00412{transform:matrix(0.226514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226514,0.000000,0.000000,0.250000,0,0);}
.m56_c00412{transform:matrix(0.229149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229149,0.000000,0.000000,0.250000,0,0);}
.m1c_c00412{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.m1a_c00412{transform:matrix(0.233497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233497,0.000000,0.000000,0.250000,0,0);}
.m4c_c00412{transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);}
.md_c00412{transform:matrix(0.235912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235912,0.000000,0.000000,0.250000,0,0);}
.m33_c00412{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.me_c00412{transform:matrix(0.236981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236981,0.000000,0.000000,0.250000,0,0);}
.m15_c00412{transform:matrix(0.240957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240957,0.000000,0.000000,0.250000,0,0);}
.m0_c00412{transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245371,0.000000,0.000000,0.250000,0,0);}
.m39_c00412{transform:matrix(0.248587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248587,0.000000,0.000000,0.250000,0,0);}
.m29_c00412{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m2_c00412{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);}
.m46_c00412{transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);}
.m51_c00412{transform:matrix(0.250503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250503,0.000000,0.000000,0.250000,0,0);}
.m4f_c00412{transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);}
.m32_c00412{transform:matrix(0.251193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251193,0.000000,0.000000,0.250000,0,0);}
.m2e_c00412{transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);}
.m10_c00412{transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);}
.m3a_c00412{transform:matrix(0.254258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254258,0.000000,0.000000,0.250000,0,0);}
.m1e_c00412{transform:matrix(0.255222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255222,0.000000,0.000000,0.250000,0,0);}
.m40_c00412{transform:matrix(0.255489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255489,0.000000,0.000000,0.250000,0,0);}
.m4e_c00412{transform:matrix(0.256476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256476,0.000000,0.000000,0.250000,0,0);}
.m4a_c00412{transform:matrix(0.256527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256527,0.000000,0.000000,0.250000,0,0);}
.m16_c00412{transform:matrix(0.256986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256986,0.000000,0.000000,0.250000,0,0);}
.m2b_c00412{transform:matrix(0.257649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257649,0.000000,0.000000,0.250000,0,0);}
.m45_c00412{transform:matrix(0.258101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258101,0.000000,0.000000,0.250000,0,0);}
.m49_c00412{transform:matrix(0.259242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259242,0.000000,0.000000,0.250000,0,0);}
.m2f_c00412{transform:matrix(0.259929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259929,0.000000,0.000000,0.250000,0,0);}
.mf_c00412{transform:matrix(0.260552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260552,0.000000,0.000000,0.250000,0,0);}
.m12_c00412{transform:matrix(0.260562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260562,0.000000,0.000000,0.250000,0,0);}
.m59_c00412{transform:matrix(0.261677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261677,0.000000,0.000000,0.250000,0,0);}
.m27_c00412{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m4_c00412{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m50_c00412{transform:matrix(0.268451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268451,0.000000,0.000000,0.250000,0,0);}
.m19_c00412{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m52_c00412{transform:matrix(0.270715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270715,0.000000,0.000000,0.250000,0,0);}
.m58_c00412{transform:matrix(0.274571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274571,0.000000,0.000000,0.250000,0,0);}
.m44_c00412{transform:matrix(0.275812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275812,0.000000,0.000000,0.250000,0,0);}
.m3e_c00412{transform:matrix(0.276589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276589,0.000000,0.000000,0.250000,0,0);}
.mc_c00412{transform:matrix(0.277639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277639,0.000000,0.000000,0.250000,0,0);}
.m3b_c00412{transform:matrix(0.284149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284149,0.000000,0.000000,0.250000,0,0);}
.m17_c00412{transform:matrix(0.285256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285256,0.000000,0.000000,0.250000,0,0);}
.m24_c00412{transform:matrix(0.288872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288872,0.000000,0.000000,0.250000,0,0);}
.m26_c00412{transform:matrix(0.297312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297312,0.000000,0.000000,0.250000,0,0);}
.m53_c00412{transform:matrix(0.300405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300405,0.000000,0.000000,0.250000,0,0);}
.m3c_c00412{transform:matrix(0.324868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324868,0.000000,0.000000,0.250000,0,0);}
.m7_c00412{transform:matrix(0.329294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329294,0.000000,0.000000,0.250000,0,0);}
.m14_c00412{transform:matrix(0.343236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343236,0.000000,0.000000,0.250000,0,0);}
.m28_c00412{transform:matrix(0.348483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348483,0.000000,0.000000,0.250000,0,0);}
.m2a_c00412{transform:matrix(0.351757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351757,0.000000,0.000000,0.250000,0,0);}
.m47_c00412{transform:matrix(0.375856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375856,0.000000,0.000000,0.250000,0,0);}
.m23_c00412{transform:matrix(0.392175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392175,0.000000,0.000000,0.250000,0,0);}
.m4b_c00412{transform:matrix(0.399169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399169,0.000000,0.000000,0.250000,0,0);}
.m8_c00412{transform:matrix(0.410045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410045,0.000000,0.000000,0.250000,0,0);}
.m22_c00412{transform:matrix(0.410298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410298,0.000000,0.000000,0.250000,0,0);}
.m31_c00412{transform:matrix(0.467435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467435,0.000000,0.000000,0.250000,0,0);}
.m43_c00412{transform:matrix(0.472332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472332,0.000000,0.000000,0.250000,0,0);}
.m5_c00412{transform:matrix(0.476985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476985,0.000000,0.000000,0.250000,0,0);}
.m6_c00412{transform:matrix(0.482735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482735,0.000000,0.000000,0.250000,0,0);}
.m30_c00412{transform:matrix(0.500832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500832,0.000000,0.000000,0.250000,0,0);}
.vb_c00412{vertical-align:-37.440000px;}
.va_c00412{vertical-align:-27.360000px;}
.v9_c00412{vertical-align:-23.100000px;}
.v2_c00412{vertical-align:-21.600000px;}
.v3_c00412{vertical-align:-17.280000px;}
.v8_c00412{vertical-align:-11.520000px;}
.v7_c00412{vertical-align:-10.080000px;}
.v4_c00412{vertical-align:-1.440000px;}
.v0_c00412{vertical-align:0.000000px;}
.v1_c00412{vertical-align:1.440000px;}
.v5_c00412{vertical-align:4.320000px;}
.v6_c00412{vertical-align:5.760000px;}
.ls23_c00412{letter-spacing:-2.646000px;}
.lsd_c00412{letter-spacing:-2.499000px;}
.ls7_c00412{letter-spacing:-2.352000px;}
.lsf_c00412{letter-spacing:-2.042040px;}
.ls3f_c00412{letter-spacing:-2.037000px;}
.ls13_c00412{letter-spacing:-1.932000px;}
.ls40_c00412{letter-spacing:-1.777440px;}
.lsc_c00412{letter-spacing:-1.764000px;}
.ls14_c00412{letter-spacing:-1.689120px;}
.ls19_c00412{letter-spacing:-1.622880px;}
.ls22_c00412{letter-spacing:-1.551360px;}
.ls32_c00412{letter-spacing:-1.479360px;}
.ls8_c00412{letter-spacing:-1.428021px;}
.ls35_c00412{letter-spacing:-1.368960px;}
.ls2a_c00412{letter-spacing:-1.302720px;}
.ls29_c00412{letter-spacing:-1.250640px;}
.ls26_c00412{letter-spacing:-0.971520px;}
.ls3d_c00412{letter-spacing:-0.937217px;}
.ls2f_c00412{letter-spacing:-0.767280px;}
.lsb_c00412{letter-spacing:-0.521648px;}
.ls1b_c00412{letter-spacing:-0.386400px;}
.ls15_c00412{letter-spacing:-0.369840px;}
.ls3b_c00412{letter-spacing:-0.204240px;}
.ls2b_c00412{letter-spacing:-0.132480px;}
.ls36_c00412{letter-spacing:-0.115140px;}
.ls42_c00412{letter-spacing:-0.098940px;}
.ls9_c00412{letter-spacing:0.000000px;}
.ls3_c00412{letter-spacing:0.055200px;}
.ls31_c00412{letter-spacing:0.259440px;}
.ls2_c00412{letter-spacing:0.270480px;}
.ls1d_c00412{letter-spacing:0.513360px;}
.ls0_c00412{letter-spacing:0.877680px;}
.ls27_c00412{letter-spacing:1.128621px;}
.ls2d_c00412{letter-spacing:1.140030px;}
.ls34_c00412{letter-spacing:1.170030px;}
.ls1f_c00412{letter-spacing:1.260000px;}
.ls12_c00412{letter-spacing:1.280640px;}
.ls20_c00412{letter-spacing:1.350030px;}
.ls2c_c00412{letter-spacing:1.380000px;}
.ls1_c00412{letter-spacing:1.402080px;}
.ls38_c00412{letter-spacing:1.440030px;}
.lsa_c00412{letter-spacing:1.470030px;}
.ls16_c00412{letter-spacing:1.560000px;}
.ls39_c00412{letter-spacing:1.590030px;}
.ls21_c00412{letter-spacing:1.650030px;}
.ls33_c00412{letter-spacing:1.710000px;}
.ls11_c00412{letter-spacing:1.763460px;}
.ls1e_c00412{letter-spacing:1.834560px;}
.ls37_c00412{letter-spacing:1.843680px;}
.ls28_c00412{letter-spacing:2.160000px;}
.ls3a_c00412{letter-spacing:2.163840px;}
.ls3c_c00412{letter-spacing:2.310000px;}
.ls4_c00412{letter-spacing:2.395680px;}
.ls3e_c00412{letter-spacing:2.400000px;}
.ls6_c00412{letter-spacing:2.412240px;}
.ls1a_c00412{letter-spacing:2.450880px;}
.ls30_c00412{letter-spacing:2.500560px;}
.ls17_c00412{letter-spacing:2.517120px;}
.ls18_c00412{letter-spacing:2.580000px;}
.ls5_c00412{letter-spacing:2.605440px;}
.ls2e_c00412{letter-spacing:2.638560px;}
.ls41_c00412{letter-spacing:2.666160px;}
.ls10_c00412{letter-spacing:2.760000px;}
.ls24_c00412{letter-spacing:2.910000px;}
.ls1c_c00412{letter-spacing:3.240000px;}
.lse_c00412{letter-spacing:3.570000px;}
.ls25_c00412{letter-spacing:3.630000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{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__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00412{word-spacing:0.000000px;}
._1b_c00412{margin-left:-17.884800px;}
._f_c00412{margin-left:-11.097000px;}
._4_c00412{margin-left:-4.725120px;}
._13_c00412{width:3.718080px;}
._2_c00412{width:7.076640px;}
._0_c00412{width:19.458282px;}
._15_c00412{width:160.260000px;}
._a_c00412{width:191.560800px;}
._18_c00412{width:196.162200px;}
._e_c00412{width:199.604280px;}
._7_c00412{width:205.434000px;}
._c_c00412{width:208.840800px;}
._11_c00412{width:209.965800px;}
._6_c00412{width:212.342400px;}
._17_c00412{width:213.433200px;}
._1d_c00412{width:219.220300px;}
._19_c00412{width:221.460000px;}
._d_c00412{width:449.894400px;}
._14_c00412{width:461.955000px;}
._10_c00412{width:464.714880px;}
._20_c00412{width:472.980000px;}
._8_c00412{width:507.375600px;}
._1c_c00412{width:618.000480px;}
._12_c00412{width:657.813600px;}
._1a_c00412{width:696.390000px;}
._9_c00412{width:703.680000px;}
._3_c00412{width:722.109600px;}
._1e_c00412{width:732.466080px;}
._b_c00412{width:904.944720px;}
._16_c00412{width:1198.920000px;}
._1f_c00412{width:1234.367040px;}
._5_c00412{width:1306.056000px;}
._1_c00412{width:1464.640320px;}
.fc0_c00412{color:transparent;}
.fs4_c00412{font-size:20.160000px;}
.fs23_c00412{font-size:22.800600px;}
.fs12_c00412{font-size:23.040000px;}
.fs28_c00412{font-size:23.400600px;}
.fs1a_c00412{font-size:25.200000px;}
.fs2b_c00412{font-size:25.920000px;}
.fs1b_c00412{font-size:27.000600px;}
.fs25_c00412{font-size:27.360600px;}
.fs22_c00412{font-size:27.600000px;}
.fs29_c00412{font-size:28.800600px;}
.fs5_c00412{font-size:29.400600px;}
.fs10_c00412{font-size:31.200000px;}
.fs3_c00412{font-size:31.680000px;}
.fs2a_c00412{font-size:31.800600px;}
.fs1c_c00412{font-size:33.000600px;}
.fs8_c00412{font-size:33.120600px;}
.fs27_c00412{font-size:34.200000px;}
.fse_c00412{font-size:37.440000px;}
.fs1_c00412{font-size:40.800600px;}
.fs6_c00412{font-size:41.400600px;}
.fs16_c00412{font-size:43.200000px;}
.fs7_c00412{font-size:44.640600px;}
.fs2c_c00412{font-size:46.200000px;}
.fs2e_c00412{font-size:47.520000px;}
.fs2d_c00412{font-size:48.000000px;}
.fs9_c00412{font-size:50.400000px;}
.fs11_c00412{font-size:51.600000px;}
.fs13_c00412{font-size:53.280000px;}
.fs21_c00412{font-size:54.600000px;}
.fs1f_c00412{font-size:54.720000px;}
.fsc_c00412{font-size:55.200000px;}
.fs2_c00412{font-size:57.600000px;}
.fs1e_c00412{font-size:58.200000px;}
.fs19_c00412{font-size:58.800000px;}
.fs14_c00412{font-size:60.000000px;}
.fsd_c00412{font-size:60.600000px;}
.fs26_c00412{font-size:61.800000px;}
.fs17_c00412{font-size:64.800000px;}
.fs24_c00412{font-size:66.000000px;}
.fs0_c00412{font-size:67.200000px;}
.fs15_c00412{font-size:69.000000px;}
.fsb_c00412{font-size:70.800000px;}
.fsa_c00412{font-size:71.400000px;}
.fs20_c00412{font-size:72.600000px;}
.fs1d_c00412{font-size:75.600000px;}
.fsf_c00412{font-size:76.800000px;}
.fs18_c00412{font-size:78.000000px;}
.y0_c00412{bottom:0.000000px;}
.y5a_c00412{bottom:105.120006px;}
.y58_c00412{bottom:482.775006px;}
.y59_c00412{bottom:484.215006px;}
.y55_c00412{bottom:500.055006px;}
.y56_c00412{bottom:500.400006px;}
.y57_c00412{bottom:505.800006px;}
.y52_c00412{bottom:515.880006px;}
.y53_c00412{bottom:517.320006px;}
.y51_c00412{bottom:518.400006px;}
.y54_c00412{bottom:519.135006px;}
.y50_c00412{bottom:523.800006px;}
.y4f_c00412{bottom:524.175006px;}
.y4e_c00412{bottom:536.400006px;}
.y4d_c00412{bottom:543.615006px;}
.y4c_c00412{bottom:561.615006px;}
.y4a_c00412{bottom:573.480006px;}
.y4b_c00412{bottom:577.095006px;}
.y49_c00412{bottom:579.615006px;}
.y48_c00412{bottom:590.400006px;}
.y47_c00412{bottom:590.775006px;}
.y46_c00412{bottom:608.055006px;}
.y45_c00412{bottom:608.400006px;}
.y44_c00412{bottom:623.880006px;}
.y43_c00412{bottom:626.400006px;}
.y42_c00412{bottom:632.175006px;}
.y40_c00412{bottom:643.695006px;}
.y41_c00412{bottom:644.055006px;}
.y3f_c00412{bottom:650.880006px;}
.y3e_c00412{bottom:662.400006px;}
.y3d_c00412{bottom:664.935006px;}
.y3c_c00412{bottom:668.175006px;}
.y3b_c00412{bottom:679.695006px;}
.y39_c00412{bottom:685.455006px;}
.y3a_c00412{bottom:687.255006px;}
.y38_c00412{bottom:697.695006px;}
.y37_c00412{bottom:698.055006px;}
.y36_c00412{bottom:713.175006px;}
.y35_c00412{bottom:713.535006px;}
.y33_c00412{bottom:714.975006px;}
.y34_c00412{bottom:720.015006px;}
.y32_c00412{bottom:733.320006px;}
.y31_c00412{bottom:735.480006px;}
.y30_c00412{bottom:749.880006px;}
.y2f_c00412{bottom:751.320006px;}
.y2e_c00412{bottom:766.800006px;}
.y2d_c00412{bottom:769.320006px;}
.y2c_c00412{bottom:770.415006px;}
.y2b_c00412{bottom:775.095006px;}
.y2a_c00412{bottom:785.895006px;}
.y29_c00412{bottom:788.415006px;}
.y28_c00412{bottom:802.800006px;}
.y27_c00412{bottom:805.320006px;}
.y24_c00412{bottom:821.520006px;}
.y26_c00412{bottom:822.615006px;}
.y25_c00412{bottom:828.735006px;}
.y22_c00412{bottom:838.455006px;}
.y20_c00412{bottom:838.800006px;}
.y1b_c00412{bottom:839.895006px;}
.y1f_c00412{bottom:840.615006px;}
.y23_c00412{bottom:840.975006px;}
.y21_c00412{bottom:841.320006px;}
.y1c_c00412{bottom:843.840006px;}
.y1e_c00412{bottom:846.360006px;}
.y1d_c00412{bottom:847.095006px;}
.y1a_c00412{bottom:860.415006px;}
.y19_c00412{bottom:875.895006px;}
.y18_c00412{bottom:876.615006px;}
.y16_c00412{bottom:892.800006px;}
.y17_c00412{bottom:897.135006px;}
.y15_c00412{bottom:909.360006px;}
.y13_c00412{bottom:910.800006px;}
.y12_c00412{bottom:912.255006px;}
.y14_c00412{bottom:915.840006px;}
.y10_c00412{bottom:928.800006px;}
.y11_c00412{bottom:929.160006px;}
.yf_c00412{bottom:945.000006px;}
.ye_c00412{bottom:946.800006px;}
.yd_c00412{bottom:949.320006px;}
.yc_c00412{bottom:962.640006px;}
.yb_c00412{bottom:966.615006px;}
.ya_c00412{bottom:982.095006px;}
.y9_c00412{bottom:1012.680006px;}
.y8_c00412{bottom:1019.520006px;}
.y6_c00412{bottom:1040.775006px;}
.y7_c00412{bottom:1041.480006px;}
.y5_c00412{bottom:1050.480006px;}
.y4_c00412{bottom:1053.000006px;}
.y3_c00412{bottom:1075.320006px;}
.y2_c00412{bottom:1080.360006px;}
.y1_c00412{bottom:1152.000006px;}
.h6_c00412{height:13.426560px;}
.h16_c00412{height:15.344640px;}
.h38_c00412{height:17.262720px;}
.h2c_c00412{height:18.222160px;}
.h5_c00412{height:21.098880px;}
.ha_c00412{height:22.058320px;}
.h36_c00412{height:22.966409px;}
.h2a_c00412{height:23.780313px;}
.h30_c00412{height:24.406095px;}
.h1e_c00412{height:24.732422px;}
.h11_c00412{height:24.935040px;}
.h29_c00412{height:27.074414px;}
.h1f_c00412{height:28.160782px;}
.h19_c00412{height:28.771200px;}
.h34_c00412{height:28.785937px;}
.h7_c00412{height:29.630292px;}
.h9_c00412{height:29.730640px;}
.h32_c00412{height:30.038126px;}
.h35_c00412{height:31.210550px;}
.h3d_c00412{height:31.648320px;}
.h20_c00412{height:32.388284px;}
.h13_c00412{height:32.540625px;}
.h25_c00412{height:34.418595px;}
.h17_c00412{height:35.484480px;}
.h2f_c00412{height:35.669531px;}
.h23_c00412{height:36.443520px;}
.h39_c00412{height:39.112734px;}
.h8_c00412{height:40.632425px;}
.h3_c00412{height:41.119355px;}
.h26_c00412{height:42.377344px;}
.h33_c00412{height:42.398438px;}
.h3a_c00412{height:45.320215px;}
.h2e_c00412{height:47.491875px;}
.h31_c00412{height:47.955586px;}
.h3b_c00412{height:50.062500px;}
.hb_c00412{height:52.565625px;}
.h15_c00412{height:53.817187px;}
.h22_c00412{height:57.091699px;}
.h3e_c00412{height:57.120117px;}
.he_c00412{height:57.571875px;}
.h4_c00412{height:58.050000px;}
.h1c_c00412{height:58.057500px;}
.h10_c00412{height:59.475586px;}
.h2d_c00412{height:60.700781px;}
.hf_c00412{height:60.915586px;}
.h1b_c00412{height:60.929986px;}
.h1d_c00412{height:61.326563px;}
.h18_c00412{height:62.578125px;}
.h1a_c00412{height:63.597656px;}
.h28_c00412{height:63.795586px;}
.h3c_c00412{height:64.455469px;}
.h2_c00412{height:65.953125px;}
.h37_c00412{height:66.472734px;}
.hd_c00412{height:69.486328px;}
.hc_c00412{height:70.075195px;}
.h2b_c00412{height:70.535391px;}
.h27_c00412{height:71.964844px;}
.h14_c00412{height:73.842188px;}
.h21_c00412{height:74.197266px;}
.h12_c00412{height:75.337500px;}
.h24_c00412{height:75.719531px;}
.h1_c00412{height:1263.000000px;}
.h0_c00412{height:1263.240006px;}
.w1_c00412{width:892.500000px;}
.w0_c00412{width:892.799998px;}
.x0_c00412{left:0.000000px;}
.x1_c00412{left:107.924998px;}
.x9_c00412{left:114.479999px;}
.x49_c00412{left:118.604999px;}
.x2_c00412{left:119.654999px;}
.x5_c00412{left:122.039999px;}
.x47_c00412{left:124.289999px;}
.x2f_c00412{left:129.089999px;}
.x6_c00412{left:130.499998px;}
.x37_c00412{left:134.969999px;}
.x15_c00412{left:138.749998px;}
.x12_c00412{left:144.464999px;}
.x19_c00412{left:148.814999px;}
.x38_c00412{left:150.809999px;}
.x48_c00412{left:153.644998px;}
.x22_c00412{left:158.399998px;}
.x3f_c00412{left:161.279999px;}
.x3_c00412{left:166.169998px;}
.x2a_c00412{left:167.234998px;}
.x29_c00412{left:169.124998px;}
.x7_c00412{left:170.474998px;}
.x3a_c00412{left:174.434999px;}
.x2b_c00412{left:175.934999px;}
.x30_c00412{left:178.724998px;}
.x41_c00412{left:179.879998px;}
.x4_c00412{left:183.614998px;}
.x11_c00412{left:185.939998px;}
.x3b_c00412{left:187.394998px;}
.x1c_c00412{left:189.014998px;}
.x3d_c00412{left:192.824998px;}
.x34_c00412{left:196.214999px;}
.x23_c00412{left:198.374998px;}
.x2d_c00412{left:202.184998px;}
.x2c_c00412{left:203.939999px;}
.x1d_c00412{left:206.909999px;}
.x35_c00412{left:210.614998px;}
.x1a_c00412{left:217.934998px;}
.x32_c00412{left:219.779998px;}
.x13_c00412{left:221.054998px;}
.x1e_c00412{left:223.349998px;}
.x20_c00412{left:224.399999px;}
.x24_c00412{left:226.994999px;}
.x16_c00412{left:229.484998px;}
.x40_c00412{left:234.134998px;}
.x25_c00412{left:235.169998px;}
.x1f_c00412{left:236.759998px;}
.x14_c00412{left:238.649999px;}
.x36_c00412{left:242.819998px;}
.x39_c00412{left:244.829998px;}
.x26_c00412{left:246.404999px;}
.x17_c00412{left:251.099998px;}
.x2e_c00412{left:255.149999px;}
.x3c_c00412{left:260.474999px;}
.x43_c00412{left:270.734998px;}
.x3e_c00412{left:279.014998px;}
.x44_c00412{left:291.269999px;}
.x1b_c00412{left:393.854998px;}
.xf_c00412{left:397.979999px;}
.x42_c00412{left:399.074998px;}
.x4b_c00412{left:421.034998px;}
.x10_c00412{left:458.054999px;}
.x21_c00412{left:461.699998px;}
.xb_c00412{left:510.044999px;}
.x8_c00412{left:513.014998px;}
.x27_c00412{left:515.849999px;}
.xc_c00412{left:520.439999px;}
.x45_c00412{left:526.154998px;}
.x28_c00412{left:580.514998px;}
.x31_c00412{left:585.014998px;}
.xa_c00412{left:588.059999px;}
.x33_c00412{left:589.874998px;}
.x46_c00412{left:647.504999px;}
.xd_c00412{left:648.539999px;}
.x18_c00412{left:650.384999px;}
.x4a_c00412{left:653.234998px;}
.xe_c00412{left:708.944999px;}
@media print{
.vb_c00412{vertical-align:-33.280000pt;}
.va_c00412{vertical-align:-24.320000pt;}
.v9_c00412{vertical-align:-20.533333pt;}
.v2_c00412{vertical-align:-19.200000pt;}
.v3_c00412{vertical-align:-15.360000pt;}
.v8_c00412{vertical-align:-10.240000pt;}
.v7_c00412{vertical-align:-8.960000pt;}
.v4_c00412{vertical-align:-1.280000pt;}
.v0_c00412{vertical-align:0.000000pt;}
.v1_c00412{vertical-align:1.280000pt;}
.v5_c00412{vertical-align:3.840000pt;}
.v6_c00412{vertical-align:5.120000pt;}
.ls23_c00412{letter-spacing:-2.352000pt;}
.lsd_c00412{letter-spacing:-2.221333pt;}
.ls7_c00412{letter-spacing:-2.090667pt;}
.lsf_c00412{letter-spacing:-1.815147pt;}
.ls3f_c00412{letter-spacing:-1.810667pt;}
.ls13_c00412{letter-spacing:-1.717333pt;}
.ls40_c00412{letter-spacing:-1.579947pt;}
.lsc_c00412{letter-spacing:-1.568000pt;}
.ls14_c00412{letter-spacing:-1.501440pt;}
.ls19_c00412{letter-spacing:-1.442560pt;}
.ls22_c00412{letter-spacing:-1.378987pt;}
.ls32_c00412{letter-spacing:-1.314987pt;}
.ls8_c00412{letter-spacing:-1.269352pt;}
.ls35_c00412{letter-spacing:-1.216853pt;}
.ls2a_c00412{letter-spacing:-1.157973pt;}
.ls29_c00412{letter-spacing:-1.111680pt;}
.ls26_c00412{letter-spacing:-0.863573pt;}
.ls3d_c00412{letter-spacing:-0.833082pt;}
.ls2f_c00412{letter-spacing:-0.682027pt;}
.lsb_c00412{letter-spacing:-0.463687pt;}
.ls1b_c00412{letter-spacing:-0.343467pt;}
.ls15_c00412{letter-spacing:-0.328747pt;}
.ls3b_c00412{letter-spacing:-0.181547pt;}
.ls2b_c00412{letter-spacing:-0.117760pt;}
.ls36_c00412{letter-spacing:-0.102347pt;}
.ls42_c00412{letter-spacing:-0.087947pt;}
.ls9_c00412{letter-spacing:0.000000pt;}
.ls3_c00412{letter-spacing:0.049067pt;}
.ls31_c00412{letter-spacing:0.230613pt;}
.ls2_c00412{letter-spacing:0.240427pt;}
.ls1d_c00412{letter-spacing:0.456320pt;}
.ls0_c00412{letter-spacing:0.780160pt;}
.ls27_c00412{letter-spacing:1.003218pt;}
.ls2d_c00412{letter-spacing:1.013360pt;}
.ls34_c00412{letter-spacing:1.040027pt;}
.ls1f_c00412{letter-spacing:1.120000pt;}
.ls12_c00412{letter-spacing:1.138347pt;}
.ls20_c00412{letter-spacing:1.200027pt;}
.ls2c_c00412{letter-spacing:1.226667pt;}
.ls1_c00412{letter-spacing:1.246293pt;}
.ls38_c00412{letter-spacing:1.280027pt;}
.lsa_c00412{letter-spacing:1.306693pt;}
.ls16_c00412{letter-spacing:1.386667pt;}
.ls39_c00412{letter-spacing:1.413360pt;}
.ls21_c00412{letter-spacing:1.466693pt;}
.ls33_c00412{letter-spacing:1.520000pt;}
.ls11_c00412{letter-spacing:1.567520pt;}
.ls1e_c00412{letter-spacing:1.630720pt;}
.ls37_c00412{letter-spacing:1.638827pt;}
.ls28_c00412{letter-spacing:1.920000pt;}
.ls3a_c00412{letter-spacing:1.923413pt;}
.ls3c_c00412{letter-spacing:2.053333pt;}
.ls4_c00412{letter-spacing:2.129493pt;}
.ls3e_c00412{letter-spacing:2.133333pt;}
.ls6_c00412{letter-spacing:2.144213pt;}
.ls1a_c00412{letter-spacing:2.178560pt;}
.ls30_c00412{letter-spacing:2.222720pt;}
.ls17_c00412{letter-spacing:2.237440pt;}
.ls18_c00412{letter-spacing:2.293333pt;}
.ls5_c00412{letter-spacing:2.315947pt;}
.ls2e_c00412{letter-spacing:2.345387pt;}
.ls41_c00412{letter-spacing:2.369920pt;}
.ls10_c00412{letter-spacing:2.453333pt;}
.ls24_c00412{letter-spacing:2.586667pt;}
.ls1c_c00412{letter-spacing:2.880000pt;}
.lse_c00412{letter-spacing:3.173333pt;}
.ls25_c00412{letter-spacing:3.226667pt;}
.ws0_c00412{word-spacing:0.000000pt;}
._1b_c00412{margin-left:-15.897600pt;}
._f_c00412{margin-left:-9.864000pt;}
._4_c00412{margin-left:-4.200107pt;}
._13_c00412{width:3.304960pt;}
._2_c00412{width:6.290347pt;}
._0_c00412{width:17.296251pt;}
._15_c00412{width:142.453333pt;}
._a_c00412{width:170.276267pt;}
._18_c00412{width:174.366400pt;}
._e_c00412{width:177.426027pt;}
._7_c00412{width:182.608000pt;}
._c_c00412{width:185.636267pt;}
._11_c00412{width:186.636267pt;}
._6_c00412{width:188.748800pt;}
._17_c00412{width:189.718400pt;}
._1d_c00412{width:194.862489pt;}
._19_c00412{width:196.853333pt;}
._d_c00412{width:399.906133pt;}
._14_c00412{width:410.626667pt;}
._10_c00412{width:413.079893pt;}
._20_c00412{width:420.426667pt;}
._8_c00412{width:451.000533pt;}
._1c_c00412{width:549.333760pt;}
._12_c00412{width:584.723200pt;}
._1a_c00412{width:619.013333pt;}
._9_c00412{width:625.493333pt;}
._3_c00412{width:641.875200pt;}
._1e_c00412{width:651.080960pt;}
._b_c00412{width:804.395307pt;}
._16_c00412{width:1065.706667pt;}
._1f_c00412{width:1097.215147pt;}
._5_c00412{width:1160.938667pt;}
._1_c00412{width:1301.902507pt;}
.fs4_c00412{font-size:17.920000pt;}
.fs23_c00412{font-size:20.267200pt;}
.fs12_c00412{font-size:20.480000pt;}
.fs28_c00412{font-size:20.800533pt;}
.fs1a_c00412{font-size:22.400000pt;}
.fs2b_c00412{font-size:23.040000pt;}
.fs1b_c00412{font-size:24.000533pt;}
.fs25_c00412{font-size:24.320533pt;}
.fs22_c00412{font-size:24.533333pt;}
.fs29_c00412{font-size:25.600533pt;}
.fs5_c00412{font-size:26.133867pt;}
.fs10_c00412{font-size:27.733333pt;}
.fs3_c00412{font-size:28.160000pt;}
.fs2a_c00412{font-size:28.267200pt;}
.fs1c_c00412{font-size:29.333867pt;}
.fs8_c00412{font-size:29.440533pt;}
.fs27_c00412{font-size:30.400000pt;}
.fse_c00412{font-size:33.280000pt;}
.fs1_c00412{font-size:36.267200pt;}
.fs6_c00412{font-size:36.800533pt;}
.fs16_c00412{font-size:38.400000pt;}
.fs7_c00412{font-size:39.680533pt;}
.fs2c_c00412{font-size:41.066667pt;}
.fs2e_c00412{font-size:42.240000pt;}
.fs2d_c00412{font-size:42.666667pt;}
.fs9_c00412{font-size:44.800000pt;}
.fs11_c00412{font-size:45.866667pt;}
.fs13_c00412{font-size:47.360000pt;}
.fs21_c00412{font-size:48.533333pt;}
.fs1f_c00412{font-size:48.640000pt;}
.fsc_c00412{font-size:49.066667pt;}
.fs2_c00412{font-size:51.200000pt;}
.fs1e_c00412{font-size:51.733333pt;}
.fs19_c00412{font-size:52.266667pt;}
.fs14_c00412{font-size:53.333333pt;}
.fsd_c00412{font-size:53.866667pt;}
.fs26_c00412{font-size:54.933333pt;}
.fs17_c00412{font-size:57.600000pt;}
.fs24_c00412{font-size:58.666667pt;}
.fs0_c00412{font-size:59.733333pt;}
.fs15_c00412{font-size:61.333333pt;}
.fsb_c00412{font-size:62.933333pt;}
.fsa_c00412{font-size:63.466667pt;}
.fs20_c00412{font-size:64.533333pt;}
.fs1d_c00412{font-size:67.200000pt;}
.fsf_c00412{font-size:68.266667pt;}
.fs18_c00412{font-size:69.333333pt;}
.y0_c00412{bottom:0.000000pt;}
.y5a_c00412{bottom:93.440005pt;}
.y58_c00412{bottom:429.133339pt;}
.y59_c00412{bottom:430.413339pt;}
.y55_c00412{bottom:444.493339pt;}
.y56_c00412{bottom:444.800005pt;}
.y57_c00412{bottom:449.600005pt;}
.y52_c00412{bottom:458.560005pt;}
.y53_c00412{bottom:459.840005pt;}
.y51_c00412{bottom:460.800005pt;}
.y54_c00412{bottom:461.453339pt;}
.y50_c00412{bottom:465.600005pt;}
.y4f_c00412{bottom:465.933339pt;}
.y4e_c00412{bottom:476.800005pt;}
.y4d_c00412{bottom:483.213339pt;}
.y4c_c00412{bottom:499.213339pt;}
.y4a_c00412{bottom:509.760005pt;}
.y4b_c00412{bottom:512.973339pt;}
.y49_c00412{bottom:515.213339pt;}
.y48_c00412{bottom:524.800005pt;}
.y47_c00412{bottom:525.133339pt;}
.y46_c00412{bottom:540.493339pt;}
.y45_c00412{bottom:540.800005pt;}
.y44_c00412{bottom:554.560005pt;}
.y43_c00412{bottom:556.800005pt;}
.y42_c00412{bottom:561.933339pt;}
.y40_c00412{bottom:572.173339pt;}
.y41_c00412{bottom:572.493339pt;}
.y3f_c00412{bottom:578.560005pt;}
.y3e_c00412{bottom:588.800005pt;}
.y3d_c00412{bottom:591.053339pt;}
.y3c_c00412{bottom:593.933339pt;}
.y3b_c00412{bottom:604.173339pt;}
.y39_c00412{bottom:609.293339pt;}
.y3a_c00412{bottom:610.893339pt;}
.y38_c00412{bottom:620.173339pt;}
.y37_c00412{bottom:620.493339pt;}
.y36_c00412{bottom:633.933339pt;}
.y35_c00412{bottom:634.253339pt;}
.y33_c00412{bottom:635.533339pt;}
.y34_c00412{bottom:640.013339pt;}
.y32_c00412{bottom:651.840005pt;}
.y31_c00412{bottom:653.760005pt;}
.y30_c00412{bottom:666.560005pt;}
.y2f_c00412{bottom:667.840005pt;}
.y2e_c00412{bottom:681.600005pt;}
.y2d_c00412{bottom:683.840005pt;}
.y2c_c00412{bottom:684.813339pt;}
.y2b_c00412{bottom:688.973339pt;}
.y2a_c00412{bottom:698.573339pt;}
.y29_c00412{bottom:700.813339pt;}
.y28_c00412{bottom:713.600005pt;}
.y27_c00412{bottom:715.840005pt;}
.y24_c00412{bottom:730.240005pt;}
.y26_c00412{bottom:731.213339pt;}
.y25_c00412{bottom:736.653339pt;}
.y22_c00412{bottom:745.293339pt;}
.y20_c00412{bottom:745.600005pt;}
.y1b_c00412{bottom:746.573339pt;}
.y1f_c00412{bottom:747.213339pt;}
.y23_c00412{bottom:747.533339pt;}
.y21_c00412{bottom:747.840005pt;}
.y1c_c00412{bottom:750.080005pt;}
.y1e_c00412{bottom:752.320005pt;}
.y1d_c00412{bottom:752.973339pt;}
.y1a_c00412{bottom:764.813339pt;}
.y19_c00412{bottom:778.573339pt;}
.y18_c00412{bottom:779.213339pt;}
.y16_c00412{bottom:793.600005pt;}
.y17_c00412{bottom:797.453339pt;}
.y15_c00412{bottom:808.320005pt;}
.y13_c00412{bottom:809.600005pt;}
.y12_c00412{bottom:810.893339pt;}
.y14_c00412{bottom:814.080005pt;}
.y10_c00412{bottom:825.600005pt;}
.y11_c00412{bottom:825.920005pt;}
.yf_c00412{bottom:840.000005pt;}
.ye_c00412{bottom:841.600005pt;}
.yd_c00412{bottom:843.840005pt;}
.yc_c00412{bottom:855.680005pt;}
.yb_c00412{bottom:859.213339pt;}
.ya_c00412{bottom:872.973339pt;}
.y9_c00412{bottom:900.160005pt;}
.y8_c00412{bottom:906.240005pt;}
.y6_c00412{bottom:925.133339pt;}
.y7_c00412{bottom:925.760005pt;}
.y5_c00412{bottom:933.760005pt;}
.y4_c00412{bottom:936.000005pt;}
.y3_c00412{bottom:955.840005pt;}
.y2_c00412{bottom:960.320005pt;}
.y1_c00412{bottom:1024.000005pt;}
.h6_c00412{height:11.934720pt;}
.h16_c00412{height:13.639680pt;}
.h38_c00412{height:15.344640pt;}
.h2c_c00412{height:16.197475pt;}
.h5_c00412{height:18.754560pt;}
.ha_c00412{height:19.607395pt;}
.h36_c00412{height:20.414586pt;}
.h2a_c00412{height:21.138056pt;}
.h30_c00412{height:21.694306pt;}
.h1e_c00412{height:21.984375pt;}
.h11_c00412{height:22.164480pt;}
.h29_c00412{height:24.066146pt;}
.h1f_c00412{height:25.031806pt;}
.h19_c00412{height:25.574400pt;}
.h34_c00412{height:25.587500pt;}
.h7_c00412{height:26.338037pt;}
.h9_c00412{height:26.427235pt;}
.h32_c00412{height:26.700556pt;}
.h35_c00412{height:27.742711pt;}
.h3d_c00412{height:28.131840pt;}
.h20_c00412{height:28.789586pt;}
.h13_c00412{height:28.925000pt;}
.h25_c00412{height:30.594306pt;}
.h17_c00412{height:31.541760pt;}
.h2f_c00412{height:31.706250pt;}
.h23_c00412{height:32.394240pt;}
.h39_c00412{height:34.766875pt;}
.h8_c00412{height:36.117711pt;}
.h3_c00412{height:36.550537pt;}
.h26_c00412{height:37.668750pt;}
.h33_c00412{height:37.687500pt;}
.h3a_c00412{height:40.284635pt;}
.h2e_c00412{height:42.215000pt;}
.h31_c00412{height:42.627188pt;}
.h3b_c00412{height:44.500000pt;}
.hb_c00412{height:46.725000pt;}
.h15_c00412{height:47.837500pt;}
.h22_c00412{height:50.748177pt;}
.h3e_c00412{height:50.773437pt;}
.he_c00412{height:51.175000pt;}
.h4_c00412{height:51.600000pt;}
.h1c_c00412{height:51.606667pt;}
.h10_c00412{height:52.867187pt;}
.h2d_c00412{height:53.956250pt;}
.hf_c00412{height:54.147187pt;}
.h1b_c00412{height:54.159988pt;}
.h1d_c00412{height:54.512500pt;}
.h18_c00412{height:55.625000pt;}
.h1a_c00412{height:56.531250pt;}
.h28_c00412{height:56.707187pt;}
.h3c_c00412{height:57.293750pt;}
.h2_c00412{height:58.625000pt;}
.h37_c00412{height:59.086875pt;}
.hd_c00412{height:61.765625pt;}
.hc_c00412{height:62.289062pt;}
.h2b_c00412{height:62.698125pt;}
.h27_c00412{height:63.968750pt;}
.h14_c00412{height:65.637500pt;}
.h21_c00412{height:65.953125pt;}
.h12_c00412{height:66.966667pt;}
.h24_c00412{height:67.306250pt;}
.h1_c00412{height:1122.666667pt;}
.h0_c00412{height:1122.880005pt;}
.w1_c00412{width:793.333333pt;}
.w0_c00412{width:793.599999pt;}
.x0_c00412{left:0.000000pt;}
.x1_c00412{left:95.933332pt;}
.x9_c00412{left:101.759999pt;}
.x49_c00412{left:105.426665pt;}
.x2_c00412{left:106.359999pt;}
.x5_c00412{left:108.479999pt;}
.x47_c00412{left:110.479999pt;}
.x2f_c00412{left:114.746665pt;}
.x6_c00412{left:115.999999pt;}
.x37_c00412{left:119.973332pt;}
.x15_c00412{left:123.333332pt;}
.x12_c00412{left:128.413332pt;}
.x19_c00412{left:132.279999pt;}
.x38_c00412{left:134.053332pt;}
.x48_c00412{left:136.573332pt;}
.x22_c00412{left:140.799999pt;}
.x3f_c00412{left:143.359999pt;}
.x3_c00412{left:147.706665pt;}
.x2a_c00412{left:148.653332pt;}
.x29_c00412{left:150.333332pt;}
.x7_c00412{left:151.533332pt;}
.x3a_c00412{left:155.053332pt;}
.x2b_c00412{left:156.386665pt;}
.x30_c00412{left:158.866665pt;}
.x41_c00412{left:159.893332pt;}
.x4_c00412{left:163.213332pt;}
.x11_c00412{left:165.279999pt;}
.x3b_c00412{left:166.573332pt;}
.x1c_c00412{left:168.013332pt;}
.x3d_c00412{left:171.399999pt;}
.x34_c00412{left:174.413332pt;}
.x23_c00412{left:176.333332pt;}
.x2d_c00412{left:179.719999pt;}
.x2c_c00412{left:181.279999pt;}
.x1d_c00412{left:183.919999pt;}
.x35_c00412{left:187.213332pt;}
.x1a_c00412{left:193.719999pt;}
.x32_c00412{left:195.359999pt;}
.x13_c00412{left:196.493332pt;}
.x1e_c00412{left:198.533332pt;}
.x20_c00412{left:199.466665pt;}
.x24_c00412{left:201.773332pt;}
.x16_c00412{left:203.986665pt;}
.x40_c00412{left:208.119999pt;}
.x25_c00412{left:209.039999pt;}
.x1f_c00412{left:210.453332pt;}
.x14_c00412{left:212.133332pt;}
.x36_c00412{left:215.839999pt;}
.x39_c00412{left:217.626665pt;}
.x26_c00412{left:219.026665pt;}
.x17_c00412{left:223.199999pt;}
.x2e_c00412{left:226.799999pt;}
.x3c_c00412{left:231.533332pt;}
.x43_c00412{left:240.653332pt;}
.x3e_c00412{left:248.013332pt;}
.x44_c00412{left:258.906665pt;}
.x1b_c00412{left:350.093332pt;}
.xf_c00412{left:353.759999pt;}
.x42_c00412{left:354.733332pt;}
.x4b_c00412{left:374.253332pt;}
.x10_c00412{left:407.159999pt;}
.x21_c00412{left:410.399999pt;}
.xb_c00412{left:453.373332pt;}
.x8_c00412{left:456.013332pt;}
.x27_c00412{left:458.533332pt;}
.xc_c00412{left:462.613332pt;}
.x45_c00412{left:467.693332pt;}
.x28_c00412{left:516.013332pt;}
.x31_c00412{left:520.013332pt;}
.xa_c00412{left:522.719999pt;}
.x33_c00412{left:524.333332pt;}
.x46_c00412{left:575.559999pt;}
.xd_c00412{left:576.479999pt;}
.x18_c00412{left:578.119999pt;}
.x4a_c00412{left:580.653332pt;}
.xe_c00412{left:630.173332pt;}
}





/* 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_c00413 {
    display:none;
  }
  .loading-indicator_c00413.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00413 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_c00413 { 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_c00413" -> "#page-container .classname_c00413")
 */
.pf_c00413 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00413 { /* 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_c00413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00413 { /* 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_c00413 { /* 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_c00413 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00413 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00413 {overflow:visible;}
  }
}
.c_c00413 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00413 { /* 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_c00413:after { /* webkit #35443 */
  content: '';
}
.t_c00413:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00413 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 */
}
.__c00413 { /* 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_c00413 { /* info for Javascript */
  display:none;
}
.l_c00413 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00413 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00413 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00413: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_c00413 {
    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_c00413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00413.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_c00413 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00413{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00413;src:url('chunks/assets/font_3fffb3dee46d5ee1e45a646d.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.284668;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_c00413;src:url('chunks/assets/font_8eaeac22be2524bde9441a37.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.284180;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_c00413;src:url('chunks/assets/font_4132cc289bcd11b790537ab2.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;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:ff4_c00413;src:url('chunks/assets/font_1c319f4ac1b2bfe90caaf59c.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;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;}
.m4_c00413{transform:matrix(0.235853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235853,0.000000,0.000000,0.250000,0,0);}
.m5_c00413{transform:matrix(0.238963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238963,0.000000,0.000000,0.250000,0,0);}
.m6_c00413{transform:matrix(0.239927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239927,0.000000,0.000000,0.250000,0,0);}
.m7_c00413{transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);}
.m9_c00413{transform:matrix(0.241095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241095,0.000000,0.000000,0.250000,0,0);}
.ma_c00413{transform:matrix(0.241770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241770,0.000000,0.000000,0.250000,0,0);}
.m2_c00413{transform:matrix(0.242248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242248,0.000000,0.000000,0.250000,0,0);}
.m3_c00413{transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);}
.m8_c00413{transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m0_c00413{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);}
.v0_c00413{vertical-align:0.000000px;}
.ls45_c00413{letter-spacing:-2.688000px;}
.ls80_c00413{letter-spacing:-2.583000px;}
.ls29_c00413{letter-spacing:-2.541000px;}
.ls55_c00413{letter-spacing:-2.511960px;}
.ls70_c00413{letter-spacing:-2.439360px;}
.ls44_c00413{letter-spacing:-2.410320px;}
.ls2c_c00413{letter-spacing:-2.374020px;}
.ls32_c00413{letter-spacing:-2.337720px;}
.ls4e_c00413{letter-spacing:-2.310000px;}
.ls59_c00413{letter-spacing:-2.265120px;}
.ls4f_c00413{letter-spacing:-2.228820px;}
.ls2e_c00413{letter-spacing:-2.207040px;}
.ls50_c00413{letter-spacing:-2.178000px;}
.ls5d_c00413{letter-spacing:-2.170740px;}
.ls43_c00413{letter-spacing:-2.105400px;}
.ls46_c00413{letter-spacing:-1.880340px;}
.ls5f_c00413{letter-spacing:-1.800480px;}
.ls7c_c00413{letter-spacing:-1.691580px;}
.ls79_c00413{letter-spacing:-1.611720px;}
.ls6d_c00413{letter-spacing:-1.582680px;}
.ls3e_c00413{letter-spacing:-1.568160px;}
.ls31_c00413{letter-spacing:-1.553640px;}
.ls2a_c00413{letter-spacing:-1.546380px;}
.ls42_c00413{letter-spacing:-1.488300px;}
.ls37_c00413{letter-spacing:-1.481040px;}
.ls3d_c00413{letter-spacing:-1.459260px;}
.ls3c_c00413{letter-spacing:-1.452000px;}
.ls68_c00413{letter-spacing:-1.372140px;}
.ls73_c00413{letter-spacing:-1.364880px;}
.ls8e_c00413{letter-spacing:-1.067220px;}
.ls7b_c00413{letter-spacing:-1.059960px;}
.ls7f_c00413{letter-spacing:-1.045440px;}
.ls82_c00413{letter-spacing:-1.009140px;}
.ls2f_c00413{letter-spacing:-0.980100px;}
.ls89_c00413{letter-spacing:-0.972840px;}
.ls86_c00413{letter-spacing:-0.965580px;}
.ls67_c00413{letter-spacing:-0.914760px;}
.ls64_c00413{letter-spacing:-0.892980px;}
.ls8d_c00413{letter-spacing:-0.842160px;}
.ls8f_c00413{letter-spacing:-0.834900px;}
.ls88_c00413{letter-spacing:-0.827640px;}
.ls30_c00413{letter-spacing:-0.813120px;}
.ls3b_c00413{letter-spacing:-0.805860px;}
.ls2d_c00413{letter-spacing:-0.791340px;}
.ls53_c00413{letter-spacing:-0.762300px;}
.ls78_c00413{letter-spacing:-0.740520px;}
.ls72_c00413{letter-spacing:-0.733260px;}
.ls84_c00413{letter-spacing:-0.718740px;}
.ls65_c00413{letter-spacing:-0.711480px;}
.ls5a_c00413{letter-spacing:-0.696960px;}
.ls8a_c00413{letter-spacing:-0.689700px;}
.ls77_c00413{letter-spacing:-0.667920px;}
.ls51_c00413{letter-spacing:-0.646140px;}
.ls6e_c00413{letter-spacing:-0.637200px;}
.ls5b_c00413{letter-spacing:-0.624360px;}
.ls36_c00413{letter-spacing:-0.602580px;}
.ls6f_c00413{letter-spacing:-0.588060px;}
.ls74_c00413{letter-spacing:-0.551760px;}
.ls66_c00413{letter-spacing:-0.544500px;}
.ls60_c00413{letter-spacing:-0.529980px;}
.ls58_c00413{letter-spacing:-0.522720px;}
.ls87_c00413{letter-spacing:-0.500940px;}
.ls90_c00413{letter-spacing:-0.479160px;}
.ls48_c00413{letter-spacing:-0.471900px;}
.ls40_c00413{letter-spacing:-0.450120px;}
.ls4c_c00413{letter-spacing:-0.435600px;}
.ls5c_c00413{letter-spacing:-0.421080px;}
.ls38_c00413{letter-spacing:-0.399300px;}
.ls6c_c00413{letter-spacing:-0.384780px;}
.ls49_c00413{letter-spacing:-0.370260px;}
.ls75_c00413{letter-spacing:-0.355740px;}
.ls5e_c00413{letter-spacing:-0.348480px;}
.ls61_c00413{letter-spacing:-0.341220px;}
.ls4a_c00413{letter-spacing:-0.333960px;}
.ls41_c00413{letter-spacing:-0.304920px;}
.ls7e_c00413{letter-spacing:-0.261360px;}
.ls81_c00413{letter-spacing:-0.254100px;}
.ls2b_c00413{letter-spacing:-0.246840px;}
.ls63_c00413{letter-spacing:-0.239580px;}
.ls47_c00413{letter-spacing:-0.217800px;}
.ls8c_c00413{letter-spacing:-0.203280px;}
.ls52_c00413{letter-spacing:-0.196020px;}
.ls6b_c00413{letter-spacing:-0.188760px;}
.ls4d_c00413{letter-spacing:-0.181500px;}
.ls69_c00413{letter-spacing:-0.174240px;}
.ls34_c00413{letter-spacing:-0.166980px;}
.ls76_c00413{letter-spacing:-0.159720px;}
.ls28_c00413{letter-spacing:-0.152460px;}
.ls33_c00413{letter-spacing:-0.130680px;}
.ls8b_c00413{letter-spacing:-0.123420px;}
.ls4b_c00413{letter-spacing:-0.116160px;}
.ls3a_c00413{letter-spacing:-0.108900px;}
.ls83_c00413{letter-spacing:-0.101640px;}
.ls57_c00413{letter-spacing:-0.094380px;}
.ls3f_c00413{letter-spacing:-0.065340px;}
.ls6a_c00413{letter-spacing:-0.050820px;}
.ls54_c00413{letter-spacing:-0.021780px;}
.ls85_c00413{letter-spacing:-0.007260px;}
.ls39_c00413{letter-spacing:0.000000px;}
.lsb_c00413{letter-spacing:0.007260px;}
.lsa_c00413{letter-spacing:0.014520px;}
.ls23_c00413{letter-spacing:0.021780px;}
.ls9_c00413{letter-spacing:0.036300px;}
.ls13_c00413{letter-spacing:0.043560px;}
.ls35_c00413{letter-spacing:0.065340px;}
.ls6_c00413{letter-spacing:0.072600px;}
.ls11_c00413{letter-spacing:0.079860px;}
.lse_c00413{letter-spacing:0.101640px;}
.ls3_c00413{letter-spacing:0.123420px;}
.ls1e_c00413{letter-spacing:0.130680px;}
.ls25_c00413{letter-spacing:0.137940px;}
.ls71_c00413{letter-spacing:0.145200px;}
.ls0_c00413{letter-spacing:0.159720px;}
.lsd_c00413{letter-spacing:0.166980px;}
.ls62_c00413{letter-spacing:0.181500px;}
.ls1a_c00413{letter-spacing:0.188760px;}
.ls19_c00413{letter-spacing:0.196020px;}
.ls12_c00413{letter-spacing:0.203280px;}
.ls1f_c00413{letter-spacing:0.217800px;}
.lsf_c00413{letter-spacing:0.225060px;}
.ls18_c00413{letter-spacing:0.261360px;}
.ls8_c00413{letter-spacing:0.283140px;}
.ls24_c00413{letter-spacing:0.290400px;}
.ls17_c00413{letter-spacing:0.304920px;}
.ls4_c00413{letter-spacing:0.326700px;}
.ls22_c00413{letter-spacing:0.348480px;}
.ls15_c00413{letter-spacing:0.377520px;}
.ls7d_c00413{letter-spacing:0.399300px;}
.ls1b_c00413{letter-spacing:0.406560px;}
.lsc_c00413{letter-spacing:0.435600px;}
.ls56_c00413{letter-spacing:0.479160px;}
.ls5_c00413{letter-spacing:0.500940px;}
.ls7a_c00413{letter-spacing:0.595320px;}
.ls1d_c00413{letter-spacing:0.624360px;}
.ls7_c00413{letter-spacing:0.653400px;}
.ls2_c00413{letter-spacing:0.762300px;}
.ls1c_c00413{letter-spacing:0.863940px;}
.ls20_c00413{letter-spacing:0.900240px;}
.ls91_c00413{letter-spacing:0.905520px;}
.ls21_c00413{letter-spacing:0.943800px;}
.ls10_c00413{letter-spacing:0.987360px;}
.ls16_c00413{letter-spacing:1.261080px;}
.ls26_c00413{letter-spacing:1.444320px;}
.ls14_c00413{letter-spacing:1.618980px;}
.ls1_c00413{letter-spacing:2.925780px;}
.ls27_c00413{letter-spacing:3.150840px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{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__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00413{word-spacing:0.000000px;}
._0_c00413{margin-left:-6.157020px;}
._1b_c00413{margin-left:-3.310560px;}
._6_c00413{width:2.011020px;}
._9_c00413{width:3.172620px;}
._7_c00413{width:4.501200px;}
._5_c00413{width:5.533080px;}
._8_c00413{width:7.521360px;}
._16_c00413{width:8.794020px;}
._a_c00413{width:9.931680px;}
._1_c00413{width:12.087900px;}
._f_c00413{width:13.256760px;}
._2_c00413{width:14.759580px;}
._b_c00413{width:15.826800px;}
._13_c00413{width:17.010180px;}
._12_c00413{width:18.222600px;}
._4_c00413{width:20.052120px;}
._10_c00413{width:21.337140px;}
._11_c00413{width:23.442540px;}
._3_c00413{width:24.858240px;}
._c_c00413{width:26.615160px;}
._e_c00413{width:28.321260px;}
._15_c00413{width:30.346800px;}
._14_c00413{width:31.631820px;}
._d_c00413{width:33.471060px;}
._17_c00413{width:34.826220px;}
._1a_c00413{width:38.753880px;}
._18_c00413{width:40.666620px;}
._19_c00413{width:42.137040px;}
.fc0_c00413{color:transparent;}
.fs8_c00413{font-size:58.800000px;}
.fs0_c00413{font-size:61.200000px;}
.fs3_c00413{font-size:66.000000px;}
.fs7_c00413{font-size:66.600000px;}
.fs4_c00413{font-size:67.800000px;}
.fs5_c00413{font-size:70.800000px;}
.fs1_c00413{font-size:72.600000px;}
.fs6_c00413{font-size:73.800000px;}
.fs2_c00413{font-size:76.800000px;}
.y0_c00413{bottom:0.000000px;}
.y29_c00413{bottom:103.680000px;}
.y28_c00413{bottom:178.922400px;}
.y27_c00413{bottom:210.249300px;}
.y26_c00413{bottom:271.088100px;}
.y24_c00413{bottom:302.407200px;}
.y25_c00413{bottom:302.415000px;}
.y23_c00413{bottom:333.371100px;}
.y21_c00413{bottom:364.331100px;}
.y22_c00413{bottom:364.335000px;}
.y1f_c00413{bottom:395.294100px;}
.y20_c00413{bottom:395.295000px;}
.y1d_c00413{bottom:425.890350px;}
.y1e_c00413{bottom:425.895000px;}
.y1c_c00413{bottom:456.854250px;}
.y1a_c00413{bottom:487.792050px;}
.y1b_c00413{bottom:487.800000px;}
.y19_c00413{bottom:549.375000px;}
.y18_c00413{bottom:549.383400px;}
.y17_c00413{bottom:581.402100px;}
.y15_c00413{bottom:613.454250px;}
.y16_c00413{bottom:613.455000px;}
.y13_c00413{bottom:644.392950px;}
.y14_c00413{bottom:644.400000px;}
.y11_c00413{bottom:675.370200px;}
.y12_c00413{bottom:675.375000px;}
.yf_c00413{bottom:736.927350px;}
.y10_c00413{bottom:736.935000px;}
.ye_c00413{bottom:767.891250px;}
.yd_c00413{bottom:799.200000px;}
.yc_c00413{bottom:799.205250px;}
.yb_c00413{bottom:831.240000px;}
.ya_c00413{bottom:862.200000px;}
.y9_c00413{bottom:862.207200px;}
.y8_c00413{bottom:924.135000px;}
.y7_c00413{bottom:954.715950px;}
.y6_c00413{bottom:985.335000px;}
.y5_c00413{bottom:985.337250px;}
.y3_c00413{bottom:1015.912050px;}
.y4_c00413{bottom:1015.920000px;}
.y2_c00413{bottom:1077.495000px;}
.y1_c00413{bottom:1154.175000px;}
.h9_c00413{height:57.708984px;}
.h2_c00413{height:60.064453px;}
.h5_c00413{height:68.835938px;}
.h3_c00413{height:71.252930px;}
.h7_c00413{height:71.256530px;}
.h6_c00413{height:71.284730px;}
.h8_c00413{height:72.394629px;}
.h4_c00413{height:75.337500px;}
.h1_c00413{height:1263.000000px;}
.h0_c00413{height:1263.240000px;}
.w1_c00413{width:892.500000px;}
.w0_c00413{width:892.800000px;}
.x0_c00413{left:0.000000px;}
.x1f_c00413{left:107.929200px;}
.x11_c00413{left:108.960000px;}
.x5_c00413{left:109.986000px;}
.x1_c00413{left:111.885000px;}
.x12_c00413{left:130.845000px;}
.x31_c00413{left:161.157750px;}
.x1a_c00413{left:162.242250px;}
.xc_c00413{left:163.342050px;}
.x2_c00413{left:164.410350px;}
.x13_c00413{left:181.635000px;}
.x14_c00413{left:209.925000px;}
.x29_c00413{left:215.475000px;}
.x2a_c00413{left:237.780000px;}
.x2f_c00413{left:241.035000px;}
.x15_c00413{left:253.620000px;}
.x1d_c00413{left:264.810000px;}
.x30_c00413{left:268.515000px;}
.x1e_c00413{left:286.380000px;}
.x18_c00413{left:296.115000px;}
.x2b_c00413{left:304.800000px;}
.x19_c00413{left:318.060000px;}
.x2c_c00413{left:329.355000px;}
.x24_c00413{left:342.255000px;}
.x3_c00413{left:349.035000px;}
.x27_c00413{left:360.195000px;}
.x1b_c00413{left:361.275000px;}
.x25_c00413{left:365.370000px;}
.xd_c00413{left:368.535000px;}
.x6_c00413{left:372.075000px;}
.x4_c00413{left:374.250000px;}
.x1c_c00413{left:386.460000px;}
.x28_c00413{left:390.510000px;}
.xe_c00413{left:392.145000px;}
.x7_c00413{left:394.650000px;}
.x16_c00413{left:422.475000px;}
.x32_c00413{left:423.915000px;}
.x26_c00413{left:447.330000px;}
.x17_c00413{left:449.955000px;}
.x8_c00413{left:487.905000px;}
.x9_c00413{left:511.950000px;}
.x22_c00413{left:538.395000px;}
.x20_c00413{left:553.875000px;}
.x23_c00413{left:561.420000px;}
.x21_c00413{left:581.940000px;}
.xa_c00413{left:615.045000px;}
.xb_c00413{left:638.235000px;}
.x2d_c00413{left:648.195000px;}
.xf_c00413{left:664.395000px;}
.x2e_c00413{left:671.850000px;}
.x10_c00413{left:687.810000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls45_c00413{letter-spacing:-2.389333pt;}
.ls80_c00413{letter-spacing:-2.296000pt;}
.ls29_c00413{letter-spacing:-2.258667pt;}
.ls55_c00413{letter-spacing:-2.232853pt;}
.ls70_c00413{letter-spacing:-2.168320pt;}
.ls44_c00413{letter-spacing:-2.142507pt;}
.ls2c_c00413{letter-spacing:-2.110240pt;}
.ls32_c00413{letter-spacing:-2.077973pt;}
.ls4e_c00413{letter-spacing:-2.053333pt;}
.ls59_c00413{letter-spacing:-2.013440pt;}
.ls4f_c00413{letter-spacing:-1.981173pt;}
.ls2e_c00413{letter-spacing:-1.961813pt;}
.ls50_c00413{letter-spacing:-1.936000pt;}
.ls5d_c00413{letter-spacing:-1.929547pt;}
.ls43_c00413{letter-spacing:-1.871467pt;}
.ls46_c00413{letter-spacing:-1.671413pt;}
.ls5f_c00413{letter-spacing:-1.600427pt;}
.ls7c_c00413{letter-spacing:-1.503627pt;}
.ls79_c00413{letter-spacing:-1.432640pt;}
.ls6d_c00413{letter-spacing:-1.406827pt;}
.ls3e_c00413{letter-spacing:-1.393920pt;}
.ls31_c00413{letter-spacing:-1.381013pt;}
.ls2a_c00413{letter-spacing:-1.374560pt;}
.ls42_c00413{letter-spacing:-1.322933pt;}
.ls37_c00413{letter-spacing:-1.316480pt;}
.ls3d_c00413{letter-spacing:-1.297120pt;}
.ls3c_c00413{letter-spacing:-1.290667pt;}
.ls68_c00413{letter-spacing:-1.219680pt;}
.ls73_c00413{letter-spacing:-1.213227pt;}
.ls8e_c00413{letter-spacing:-0.948640pt;}
.ls7b_c00413{letter-spacing:-0.942187pt;}
.ls7f_c00413{letter-spacing:-0.929280pt;}
.ls82_c00413{letter-spacing:-0.897013pt;}
.ls2f_c00413{letter-spacing:-0.871200pt;}
.ls89_c00413{letter-spacing:-0.864747pt;}
.ls86_c00413{letter-spacing:-0.858293pt;}
.ls67_c00413{letter-spacing:-0.813120pt;}
.ls64_c00413{letter-spacing:-0.793760pt;}
.ls8d_c00413{letter-spacing:-0.748587pt;}
.ls8f_c00413{letter-spacing:-0.742133pt;}
.ls88_c00413{letter-spacing:-0.735680pt;}
.ls30_c00413{letter-spacing:-0.722773pt;}
.ls3b_c00413{letter-spacing:-0.716320pt;}
.ls2d_c00413{letter-spacing:-0.703413pt;}
.ls53_c00413{letter-spacing:-0.677600pt;}
.ls78_c00413{letter-spacing:-0.658240pt;}
.ls72_c00413{letter-spacing:-0.651787pt;}
.ls84_c00413{letter-spacing:-0.638880pt;}
.ls65_c00413{letter-spacing:-0.632427pt;}
.ls5a_c00413{letter-spacing:-0.619520pt;}
.ls8a_c00413{letter-spacing:-0.613067pt;}
.ls77_c00413{letter-spacing:-0.593707pt;}
.ls51_c00413{letter-spacing:-0.574347pt;}
.ls6e_c00413{letter-spacing:-0.566400pt;}
.ls5b_c00413{letter-spacing:-0.554987pt;}
.ls36_c00413{letter-spacing:-0.535627pt;}
.ls6f_c00413{letter-spacing:-0.522720pt;}
.ls74_c00413{letter-spacing:-0.490453pt;}
.ls66_c00413{letter-spacing:-0.484000pt;}
.ls60_c00413{letter-spacing:-0.471093pt;}
.ls58_c00413{letter-spacing:-0.464640pt;}
.ls87_c00413{letter-spacing:-0.445280pt;}
.ls90_c00413{letter-spacing:-0.425920pt;}
.ls48_c00413{letter-spacing:-0.419467pt;}
.ls40_c00413{letter-spacing:-0.400107pt;}
.ls4c_c00413{letter-spacing:-0.387200pt;}
.ls5c_c00413{letter-spacing:-0.374293pt;}
.ls38_c00413{letter-spacing:-0.354933pt;}
.ls6c_c00413{letter-spacing:-0.342027pt;}
.ls49_c00413{letter-spacing:-0.329120pt;}
.ls75_c00413{letter-spacing:-0.316213pt;}
.ls5e_c00413{letter-spacing:-0.309760pt;}
.ls61_c00413{letter-spacing:-0.303307pt;}
.ls4a_c00413{letter-spacing:-0.296853pt;}
.ls41_c00413{letter-spacing:-0.271040pt;}
.ls7e_c00413{letter-spacing:-0.232320pt;}
.ls81_c00413{letter-spacing:-0.225867pt;}
.ls2b_c00413{letter-spacing:-0.219413pt;}
.ls63_c00413{letter-spacing:-0.212960pt;}
.ls47_c00413{letter-spacing:-0.193600pt;}
.ls8c_c00413{letter-spacing:-0.180693pt;}
.ls52_c00413{letter-spacing:-0.174240pt;}
.ls6b_c00413{letter-spacing:-0.167787pt;}
.ls4d_c00413{letter-spacing:-0.161333pt;}
.ls69_c00413{letter-spacing:-0.154880pt;}
.ls34_c00413{letter-spacing:-0.148427pt;}
.ls76_c00413{letter-spacing:-0.141973pt;}
.ls28_c00413{letter-spacing:-0.135520pt;}
.ls33_c00413{letter-spacing:-0.116160pt;}
.ls8b_c00413{letter-spacing:-0.109707pt;}
.ls4b_c00413{letter-spacing:-0.103253pt;}
.ls3a_c00413{letter-spacing:-0.096800pt;}
.ls83_c00413{letter-spacing:-0.090347pt;}
.ls57_c00413{letter-spacing:-0.083893pt;}
.ls3f_c00413{letter-spacing:-0.058080pt;}
.ls6a_c00413{letter-spacing:-0.045173pt;}
.ls54_c00413{letter-spacing:-0.019360pt;}
.ls85_c00413{letter-spacing:-0.006453pt;}
.ls39_c00413{letter-spacing:0.000000pt;}
.lsb_c00413{letter-spacing:0.006453pt;}
.lsa_c00413{letter-spacing:0.012907pt;}
.ls23_c00413{letter-spacing:0.019360pt;}
.ls9_c00413{letter-spacing:0.032267pt;}
.ls13_c00413{letter-spacing:0.038720pt;}
.ls35_c00413{letter-spacing:0.058080pt;}
.ls6_c00413{letter-spacing:0.064533pt;}
.ls11_c00413{letter-spacing:0.070987pt;}
.lse_c00413{letter-spacing:0.090347pt;}
.ls3_c00413{letter-spacing:0.109707pt;}
.ls1e_c00413{letter-spacing:0.116160pt;}
.ls25_c00413{letter-spacing:0.122613pt;}
.ls71_c00413{letter-spacing:0.129067pt;}
.ls0_c00413{letter-spacing:0.141973pt;}
.lsd_c00413{letter-spacing:0.148427pt;}
.ls62_c00413{letter-spacing:0.161333pt;}
.ls1a_c00413{letter-spacing:0.167787pt;}
.ls19_c00413{letter-spacing:0.174240pt;}
.ls12_c00413{letter-spacing:0.180693pt;}
.ls1f_c00413{letter-spacing:0.193600pt;}
.lsf_c00413{letter-spacing:0.200053pt;}
.ls18_c00413{letter-spacing:0.232320pt;}
.ls8_c00413{letter-spacing:0.251680pt;}
.ls24_c00413{letter-spacing:0.258133pt;}
.ls17_c00413{letter-spacing:0.271040pt;}
.ls4_c00413{letter-spacing:0.290400pt;}
.ls22_c00413{letter-spacing:0.309760pt;}
.ls15_c00413{letter-spacing:0.335573pt;}
.ls7d_c00413{letter-spacing:0.354933pt;}
.ls1b_c00413{letter-spacing:0.361387pt;}
.lsc_c00413{letter-spacing:0.387200pt;}
.ls56_c00413{letter-spacing:0.425920pt;}
.ls5_c00413{letter-spacing:0.445280pt;}
.ls7a_c00413{letter-spacing:0.529173pt;}
.ls1d_c00413{letter-spacing:0.554987pt;}
.ls7_c00413{letter-spacing:0.580800pt;}
.ls2_c00413{letter-spacing:0.677600pt;}
.ls1c_c00413{letter-spacing:0.767947pt;}
.ls20_c00413{letter-spacing:0.800213pt;}
.ls91_c00413{letter-spacing:0.804907pt;}
.ls21_c00413{letter-spacing:0.838933pt;}
.ls10_c00413{letter-spacing:0.877653pt;}
.ls16_c00413{letter-spacing:1.120960pt;}
.ls26_c00413{letter-spacing:1.283840pt;}
.ls14_c00413{letter-spacing:1.439093pt;}
.ls1_c00413{letter-spacing:2.600693pt;}
.ls27_c00413{letter-spacing:2.800747pt;}
.ws0_c00413{word-spacing:0.000000pt;}
._0_c00413{margin-left:-5.472907pt;}
._1b_c00413{margin-left:-2.942720pt;}
._6_c00413{width:1.787573pt;}
._9_c00413{width:2.820107pt;}
._7_c00413{width:4.001067pt;}
._5_c00413{width:4.918293pt;}
._8_c00413{width:6.685653pt;}
._16_c00413{width:7.816907pt;}
._a_c00413{width:8.828160pt;}
._1_c00413{width:10.744800pt;}
._f_c00413{width:11.783787pt;}
._2_c00413{width:13.119627pt;}
._b_c00413{width:14.068267pt;}
._13_c00413{width:15.120160pt;}
._12_c00413{width:16.197867pt;}
._4_c00413{width:17.824107pt;}
._10_c00413{width:18.966347pt;}
._11_c00413{width:20.837813pt;}
._3_c00413{width:22.096213pt;}
._c_c00413{width:23.657920pt;}
._e_c00413{width:25.174453pt;}
._15_c00413{width:26.974933pt;}
._14_c00413{width:28.117173pt;}
._d_c00413{width:29.752053pt;}
._17_c00413{width:30.956640pt;}
._1a_c00413{width:34.447893pt;}
._18_c00413{width:36.148107pt;}
._19_c00413{width:37.455147pt;}
.fs8_c00413{font-size:52.266667pt;}
.fs0_c00413{font-size:54.400000pt;}
.fs3_c00413{font-size:58.666667pt;}
.fs7_c00413{font-size:59.200000pt;}
.fs4_c00413{font-size:60.266667pt;}
.fs5_c00413{font-size:62.933333pt;}
.fs1_c00413{font-size:64.533333pt;}
.fs6_c00413{font-size:65.600000pt;}
.fs2_c00413{font-size:68.266667pt;}
.y0_c00413{bottom:0.000000pt;}
.y29_c00413{bottom:92.160000pt;}
.y28_c00413{bottom:159.042133pt;}
.y27_c00413{bottom:186.888267pt;}
.y26_c00413{bottom:240.967200pt;}
.y24_c00413{bottom:268.806400pt;}
.y25_c00413{bottom:268.813333pt;}
.y23_c00413{bottom:296.329867pt;}
.y21_c00413{bottom:323.849867pt;}
.y22_c00413{bottom:323.853333pt;}
.y1f_c00413{bottom:351.372533pt;}
.y20_c00413{bottom:351.373333pt;}
.y1d_c00413{bottom:378.569200pt;}
.y1e_c00413{bottom:378.573333pt;}
.y1c_c00413{bottom:406.092667pt;}
.y1a_c00413{bottom:433.592933pt;}
.y1b_c00413{bottom:433.600000pt;}
.y19_c00413{bottom:488.333333pt;}
.y18_c00413{bottom:488.340800pt;}
.y17_c00413{bottom:516.801867pt;}
.y15_c00413{bottom:545.292667pt;}
.y16_c00413{bottom:545.293333pt;}
.y13_c00413{bottom:572.793733pt;}
.y14_c00413{bottom:572.800000pt;}
.y11_c00413{bottom:600.329067pt;}
.y12_c00413{bottom:600.333333pt;}
.yf_c00413{bottom:655.046533pt;}
.y10_c00413{bottom:655.053333pt;}
.ye_c00413{bottom:682.570000pt;}
.yd_c00413{bottom:710.400000pt;}
.yc_c00413{bottom:710.404667pt;}
.yb_c00413{bottom:738.880000pt;}
.ya_c00413{bottom:766.400000pt;}
.y9_c00413{bottom:766.406400pt;}
.y8_c00413{bottom:821.453333pt;}
.y7_c00413{bottom:848.636400pt;}
.y6_c00413{bottom:875.853333pt;}
.y5_c00413{bottom:875.855333pt;}
.y3_c00413{bottom:903.032933pt;}
.y4_c00413{bottom:903.040000pt;}
.y2_c00413{bottom:957.773333pt;}
.y1_c00413{bottom:1025.933333pt;}
.h9_c00413{height:51.296875pt;}
.h2_c00413{height:53.390625pt;}
.h5_c00413{height:61.187500pt;}
.h3_c00413{height:63.335938pt;}
.h7_c00413{height:63.339137pt;}
.h6_c00413{height:63.364204pt;}
.h8_c00413{height:64.350781pt;}
.h4_c00413{height:66.966667pt;}
.h1_c00413{height:1122.666667pt;}
.h0_c00413{height:1122.880000pt;}
.w1_c00413{width:793.333333pt;}
.w0_c00413{width:793.600000pt;}
.x0_c00413{left:0.000000pt;}
.x1f_c00413{left:95.937067pt;}
.x11_c00413{left:96.853333pt;}
.x5_c00413{left:97.765333pt;}
.x1_c00413{left:99.453333pt;}
.x12_c00413{left:116.306667pt;}
.x31_c00413{left:143.251333pt;}
.x1a_c00413{left:144.215333pt;}
.xc_c00413{left:145.192933pt;}
.x2_c00413{left:146.142533pt;}
.x13_c00413{left:161.453333pt;}
.x14_c00413{left:186.600000pt;}
.x29_c00413{left:191.533333pt;}
.x2a_c00413{left:211.360000pt;}
.x2f_c00413{left:214.253333pt;}
.x15_c00413{left:225.440000pt;}
.x1d_c00413{left:235.386667pt;}
.x30_c00413{left:238.680000pt;}
.x1e_c00413{left:254.560000pt;}
.x18_c00413{left:263.213333pt;}
.x2b_c00413{left:270.933333pt;}
.x19_c00413{left:282.720000pt;}
.x2c_c00413{left:292.760000pt;}
.x24_c00413{left:304.226667pt;}
.x3_c00413{left:310.253333pt;}
.x27_c00413{left:320.173333pt;}
.x1b_c00413{left:321.133333pt;}
.x25_c00413{left:324.773333pt;}
.xd_c00413{left:327.586667pt;}
.x6_c00413{left:330.733333pt;}
.x4_c00413{left:332.666667pt;}
.x1c_c00413{left:343.520000pt;}
.x28_c00413{left:347.120000pt;}
.xe_c00413{left:348.573333pt;}
.x7_c00413{left:350.800000pt;}
.x16_c00413{left:375.533333pt;}
.x32_c00413{left:376.813333pt;}
.x26_c00413{left:397.626667pt;}
.x17_c00413{left:399.960000pt;}
.x8_c00413{left:433.693333pt;}
.x9_c00413{left:455.066667pt;}
.x22_c00413{left:478.573333pt;}
.x20_c00413{left:492.333333pt;}
.x23_c00413{left:499.040000pt;}
.x21_c00413{left:517.280000pt;}
.xa_c00413{left:546.706667pt;}
.xb_c00413{left:567.320000pt;}
.x2d_c00413{left:576.173333pt;}
.xf_c00413{left:590.573333pt;}
.x2e_c00413{left:597.200000pt;}
.x10_c00413{left:611.386667pt;}
}





/* 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_c00414 {
    display:none;
  }
  .loading-indicator_c00414.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00414 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_c00414 { 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_c00414" -> "#page-container .classname_c00414")
 */
.pf_c00414 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00414 { /* 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_c00414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00414 { /* 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_c00414 { /* 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_c00414 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00414 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00414 {overflow:visible;}
  }
}
.c_c00414 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00414 { /* 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_c00414:after { /* webkit #35443 */
  content: '';
}
.t_c00414:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00414 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 */
}
.__c00414 { /* 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_c00414 { /* info for Javascript */
  display:none;
}
.l_c00414 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00414 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00414 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00414: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_c00414 {
    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_c00414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00414.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_c00414 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00414{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00414;src:url('chunks/assets/font_d8cdc9d5e12cba4c1e27ed30.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.284668;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_c00414;src:url('chunks/assets/font_7021b66e61be536e5d581c22.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.284180;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_c00414;src:url('chunks/assets/font_984f61599a6f676a747d13e2.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;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:ff4_c00414;src:url('chunks/assets/font_9f3c3640ad05a6d0fd54c526.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:0.666000;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_c00414;src:url('chunks/assets/font_d4ace0547c082423f5764252.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:1.311035;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_c00414;src:url('chunks/assets/font_8b870a328fd60754816d5711.woff2')format("woff");}.ff6_c00414{font-family:ff6_c00414;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:ff7_c00414;src:url('chunks/assets/font_66a07d7f5dd8069d1bc050b4.woff2')format("woff");}.ff7_c00414{font-family:ff7_c00414;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;}
.m20_c00414{transform:matrix(0.025443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025443,0.000000,0.000000,0.250000,0,0);}
.m5_c00414{transform:matrix(0.025478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025478,0.000000,0.000000,0.250000,0,0);}
.ma_c00414{transform:matrix(0.091667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091667,0.000000,0.000000,0.250000,0,0);}
.m8_c00414{transform:matrix(0.095835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095835,0.000000,0.000000,0.250000,0,0);}
.m14_c00414{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m17_c00414{transform:matrix(0.126445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126445,0.000000,0.000000,0.250000,0,0);}
.m21_c00414{transform:matrix(0.138445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138445,0.000000,0.000000,0.250000,0,0);}
.m1d_c00414{transform:matrix(0.165852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165852,0.000000,0.000000,0.250000,0,0);}
.m32_c00414{transform:matrix(0.166251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166251,0.000000,0.000000,0.250000,0,0);}
.m47_c00414{transform:matrix(0.169733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169733,0.000000,0.000000,0.250000,0,0);}
.m23_c00414{transform:matrix(0.171632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171632,0.000000,0.000000,0.250000,0,0);}
.m1f_c00414{transform:matrix(0.176906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176906,0.000000,0.000000,0.250000,0,0);}
.m2e_c00414{transform:matrix(0.177337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177337,0.000000,0.000000,0.250000,0,0);}
.m51_c00414{transform:matrix(0.191267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191267,0.000000,0.000000,0.250000,0,0);}
.m3e_c00414{transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);}
.m1c_c00414{transform:matrix(0.206632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206632,0.000000,0.000000,0.250000,0,0);}
.m4d_c00414{transform:matrix(0.211358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211358,0.000000,0.000000,0.250000,0,0);}
.m37_c00414{transform:matrix(0.218682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218682,0.000000,0.000000,0.250000,0,0);}
.m15_c00414{transform:matrix(0.219523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219523,0.000000,0.000000,0.250000,0,0);}
.m11_c00414{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m13_c00414{transform:matrix(0.221071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221071,0.000000,0.000000,0.250000,0,0);}
.m50_c00414{transform:matrix(0.223477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223477,0.000000,0.000000,0.250000,0,0);}
.m3c_c00414{transform:matrix(0.226490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226490,0.000000,0.000000,0.250000,0,0);}
.m53_c00414{transform:matrix(0.228361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228361,0.000000,0.000000,0.250000,0,0);}
.md_c00414{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m4c_c00414{transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);}
.m42_c00414{transform:matrix(0.231813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231813,0.000000,0.000000,0.250000,0,0);}
.m54_c00414{transform:matrix(0.232564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232564,0.000000,0.000000,0.250000,0,0);}
.m41_c00414{transform:matrix(0.232719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232719,0.000000,0.000000,0.250000,0,0);}
.m30_c00414{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m12_c00414{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m3d_c00414{transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);}
.m43_c00414{transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);}
.m49_c00414{transform:matrix(0.237983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237983,0.000000,0.000000,0.250000,0,0);}
.m4f_c00414{transform:matrix(0.238783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238783,0.000000,0.000000,0.250000,0,0);}
.m1a_c00414{transform:matrix(0.239126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239126,0.000000,0.000000,0.250000,0,0);}
.me_c00414{transform:matrix(0.239588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239588,0.000000,0.000000,0.250000,0,0);}
.m57_c00414{transform:matrix(0.239797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239797,0.000000,0.000000,0.250000,0,0);}
.m4b_c00414{transform:matrix(0.240254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240254,0.000000,0.000000,0.250000,0,0);}
.m4e_c00414{transform:matrix(0.240435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240435,0.000000,0.000000,0.250000,0,0);}
.m28_c00414{transform:matrix(0.241493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241493,0.000000,0.000000,0.250000,0,0);}
.m56_c00414{transform:matrix(0.241634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241634,0.000000,0.000000,0.250000,0,0);}
.m2a_c00414{transform:matrix(0.241963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241963,0.000000,0.000000,0.250000,0,0);}
.m58_c00414{transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);}
.m4a_c00414{transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);}
.mf_c00414{transform:matrix(0.243462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243462,0.000000,0.000000,0.250000,0,0);}
.m45_c00414{transform:matrix(0.243760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243760,0.000000,0.000000,0.250000,0,0);}
.m35_c00414{transform:matrix(0.244092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244092,0.000000,0.000000,0.250000,0,0);}
.m55_c00414{transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);}
.m40_c00414{transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);}
.m52_c00414{transform:matrix(0.246401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246401,0.000000,0.000000,0.250000,0,0);}
.m48_c00414{transform:matrix(0.246673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246673,0.000000,0.000000,0.250000,0,0);}
.m46_c00414{transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);}
.m44_c00414{transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);}
.m3f_c00414{transform:matrix(0.248608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248608,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{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);}
.m29_c00414{transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);}
.m36_c00414{transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);}
.m24_c00414{transform:matrix(0.252928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252928,0.000000,0.000000,0.250000,0,0);}
.m4_c00414{transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);}
.m27_c00414{transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);}
.m2b_c00414{transform:matrix(0.257459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257459,0.000000,0.000000,0.250000,0,0);}
.m3_c00414{transform:matrix(0.258613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258613,0.000000,0.000000,0.250000,0,0);}
.m3b_c00414{transform:matrix(0.260151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260151,0.000000,0.000000,0.250000,0,0);}
.m38_c00414{transform:matrix(0.262561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262561,0.000000,0.000000,0.250000,0,0);}
.m33_c00414{transform:matrix(0.265215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265215,0.000000,0.000000,0.250000,0,0);}
.m1b_c00414{transform:matrix(0.266224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266224,0.000000,0.000000,0.250000,0,0);}
.m7_c00414{transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);}
.m25_c00414{transform:matrix(0.268580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268580,0.000000,0.000000,0.250000,0,0);}
.m9_c00414{transform:matrix(0.270064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270064,0.000000,0.000000,0.250000,0,0);}
.m3a_c00414{transform:matrix(0.271529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271529,0.000000,0.000000,0.250000,0,0);}
.mb_c00414{transform:matrix(0.277564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277564,0.000000,0.000000,0.250000,0,0);}
.m0_c00414{transform:matrix(0.279936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279936,0.000000,0.000000,0.250000,0,0);}
.m1e_c00414{transform:matrix(0.283974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283974,0.000000,0.000000,0.250000,0,0);}
.m39_c00414{transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);}
.m22_c00414{transform:matrix(0.286121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286121,0.000000,0.000000,0.250000,0,0);}
.m2_c00414{transform:matrix(0.306970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306970,0.000000,0.000000,0.250000,0,0);}
.m18_c00414{transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);}
.mc_c00414{transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);}
.m19_c00414{transform:matrix(0.328132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328132,0.000000,0.000000,0.250000,0,0);}
.m2d_c00414{transform:matrix(0.338241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338241,0.000000,0.000000,0.250000,0,0);}
.m10_c00414{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m34_c00414{transform:matrix(0.348281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348281,0.000000,0.000000,0.250000,0,0);}
.m2f_c00414{transform:matrix(0.359382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359382,0.000000,0.000000,0.250000,0,0);}
.m26_c00414{transform:matrix(0.489515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489515,0.000000,0.000000,0.250000,0,0);}
.m6_c00414{transform:matrix(0.573641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573641,0.000000,0.000000,0.250000,0,0);}
.m16_c00414{transform:matrix(0.583345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583345,0.000000,0.000000,0.250000,0,0);}
.m31_c00414{transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);}
.m2c_c00414{transform:matrix(0.638900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638900,0.000000,0.000000,0.250000,0,0);}
.v1_c00414{vertical-align:-2.880000px;}
.v2_c00414{vertical-align:-1.428480px;}
.v0_c00414{vertical-align:0.000000px;}
.v3_c00414{vertical-align:1.401619px;}
.lsa_c00414{letter-spacing:-3.171000px;}
.ls1d_c00414{letter-spacing:-2.520000px;}
.lsd_c00414{letter-spacing:-2.373000px;}
.ls12_c00414{letter-spacing:-2.268000px;}
.ls8_c00414{letter-spacing:-1.638021px;}
.ls1e_c00414{letter-spacing:-1.548000px;}
.ls1a_c00414{letter-spacing:-1.533021px;}
.ls17_c00414{letter-spacing:-1.218021px;}
.ls18_c00414{letter-spacing:-1.197000px;}
.lsc_c00414{letter-spacing:-1.155021px;}
.ls16_c00414{letter-spacing:-1.121295px;}
.ls6_c00414{letter-spacing:-1.024934px;}
.ls21_c00414{letter-spacing:-0.903021px;}
.ls22_c00414{letter-spacing:-0.846260px;}
.ls20_c00414{letter-spacing:-0.693021px;}
.ls23_c00414{letter-spacing:-0.691456px;}
.ls1b_c00414{letter-spacing:-0.308884px;}
.ls19_c00414{letter-spacing:-0.227763px;}
.ls5_c00414{letter-spacing:0.000000px;}
.ls14_c00414{letter-spacing:0.052561px;}
.ls1f_c00414{letter-spacing:0.166860px;}
.ls9_c00414{letter-spacing:0.411845px;}
.ls2_c00414{letter-spacing:1.095134px;}
.ls15_c00414{letter-spacing:1.118534px;}
.ls3_c00414{letter-spacing:1.213277px;}
.ls13_c00414{letter-spacing:1.361897px;}
.ls1c_c00414{letter-spacing:1.558460px;}
.lsb_c00414{letter-spacing:1.710000px;}
.ls11_c00414{letter-spacing:1.787783px;}
.lsf_c00414{letter-spacing:2.040030px;}
.lse_c00414{letter-spacing:2.111189px;}
.ls10_c00414{letter-spacing:2.162188px;}
.ls1_c00414{letter-spacing:2.190030px;}
.ls0_c00414{letter-spacing:2.321310px;}
.ls4_c00414{letter-spacing:2.340030px;}
.ls7_c00414{letter-spacing:7.770000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{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__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00414{word-spacing:0.000000px;}
._11_c00414{width:5.040000px;}
._10_c00414{width:79.498089px;}
._d_c00414{width:80.939129px;}
._e_c00414{width:82.345128px;}
._c_c00414{width:89.080262px;}
._f_c00414{width:129.866400px;}
._6_c00414{width:199.949739px;}
._8_c00414{width:272.095200px;}
._7_c00414{width:274.965600px;}
._b_c00414{width:348.410400px;}
._3_c00414{width:804.349440px;}
._2_c00414{width:854.621280px;}
._0_c00414{width:1103.801511px;}
._a_c00414{width:1124.697600px;}
._4_c00414{width:1130.960400px;}
._5_c00414{width:1136.620800px;}
._1_c00414{width:1142.328600px;}
._9_c00414{width:1145.701200px;}
.fc0_c00414{color:transparent;}
.fs12_c00414{font-size:12.960000px;}
.fs23_c00414{font-size:19.800600px;}
.fsc_c00414{font-size:23.040000px;}
.fs9_c00414{font-size:24.480000px;}
.fs20_c00414{font-size:25.800600px;}
.fs18_c00414{font-size:27.000600px;}
.fs14_c00414{font-size:28.200000px;}
.fs8_c00414{font-size:30.600000px;}
.fsf_c00414{font-size:31.200000px;}
.fs17_c00414{font-size:33.000600px;}
.fs15_c00414{font-size:33.120600px;}
.fsd_c00414{font-size:33.600000px;}
.fs16_c00414{font-size:34.200000px;}
.fsa_c00414{font-size:34.560000px;}
.fs1f_c00414{font-size:34.800600px;}
.fs10_c00414{font-size:36.000000px;}
.fs1c_c00414{font-size:40.800600px;}
.fs2_c00414{font-size:43.800600px;}
.fse_c00414{font-size:46.200000px;}
.fs0_c00414{font-size:46.800600px;}
.fs1_c00414{font-size:49.200000px;}
.fsb_c00414{font-size:60.000000px;}
.fs22_c00414{font-size:61.800000px;}
.fs1e_c00414{font-size:63.000000px;}
.fs1d_c00414{font-size:64.800000px;}
.fs11_c00414{font-size:65.400000px;}
.fs1b_c00414{font-size:67.800000px;}
.fs21_c00414{font-size:72.000000px;}
.fs5_c00414{font-size:75.000000px;}
.fs6_c00414{font-size:86.400000px;}
.fs13_c00414{font-size:90.600000px;}
.fs1a_c00414{font-size:142.800000px;}
.fs4_c00414{font-size:155.400000px;}
.fs19_c00414{font-size:162.720000px;}
.fs7_c00414{font-size:214.200600px;}
.fs3_c00414{font-size:226.080000px;}
.y0_c00414{bottom:0.000000px;}
.y5e_c00414{bottom:33.120000px;}
.y5d_c00414{bottom:109.440000px;}
.y5c_c00414{bottom:129.960000px;}
.y5b_c00414{bottom:189.735000px;}
.y2c_c00414{bottom:190.440000px;}
.y2a_c00414{bottom:191.880000px;}
.y2b_c00414{bottom:192.975000px;}
.y4f_c00414{bottom:234.375000px;}
.y29_c00414{bottom:234.735000px;}
.y4e_c00414{bottom:240.495000px;}
.y28_c00414{bottom:241.215000px;}
.y4d_c00414{bottom:248.055000px;}
.y27_c00414{bottom:248.775000px;}
.y4c_c00414{bottom:255.600000px;}
.y26_c00414{bottom:256.335000px;}
.y4b_c00414{bottom:262.815000px;}
.y25_c00414{bottom:263.175000px;}
.y22_c00414{bottom:263.520000px;}
.y5a_c00414{bottom:264.600000px;}
.y24_c00414{bottom:264.975000px;}
.y21_c00414{bottom:265.335000px;}
.y4a_c00414{bottom:272.175000px;}
.y23_c00414{bottom:272.520000px;}
.y20_c00414{bottom:272.895000px;}
.y49_c00414{bottom:277.935000px;}
.y1f_c00414{bottom:278.295000px;}
.y48_c00414{bottom:287.640000px;}
.y1e_c00414{bottom:288.000000px;}
.y1d_c00414{bottom:288.375000px;}
.y47_c00414{bottom:295.215000px;}
.y1c_c00414{bottom:295.935000px;}
.y59_c00414{bottom:301.335000px;}
.y1b_c00414{bottom:301.695000px;}
.y19_c00414{bottom:302.055000px;}
.y46_c00414{bottom:302.415000px;}
.y1a_c00414{bottom:302.775000px;}
.y18_c00414{bottom:303.135000px;}
.y45_c00414{bottom:317.520000px;}
.y17_c00414{bottom:317.895000px;}
.y44_c00414{bottom:322.560000px;}
.y16_c00414{bottom:322.935000px;}
.y58_c00414{bottom:338.775000px;}
.y15_c00414{bottom:339.135000px;}
.y14_c00414{bottom:339.495000px;}
.y39_c00414{bottom:358.935000px;}
.y13_c00414{bottom:375.855000px;}
.y38_c00414{bottom:383.415000px;}
.y37_c00414{bottom:407.520000px;}
.y30_c00414{bottom:419.415000px;}
.y12_c00414{bottom:419.775000px;}
.y2f_c00414{bottom:427.695000px;}
.y11_c00414{bottom:428.040000px;}
.y2e_c00414{bottom:444.255000px;}
.y10_c00414{bottom:444.600000px;}
.y57_c00414{bottom:444.975000px;}
.y56_c00414{bottom:523.440000px;}
.yf_c00414{bottom:523.815000px;}
.y33_c00414{bottom:526.335000px;}
.y32_c00414{bottom:543.975000px;}
.y31_c00414{bottom:562.335000px;}
.y43_c00414{bottom:566.655000px;}
.ye_c00414{bottom:567.360000px;}
.y42_c00414{bottom:573.495000px;}
.yd_c00414{bottom:573.855000px;}
.y41_c00414{bottom:581.040000px;}
.yc_c00414{bottom:581.415000px;}
.y40_c00414{bottom:588.600000px;}
.yb_c00414{bottom:588.975000px;}
.y3f_c00414{bottom:595.815000px;}
.y55_c00414{bottom:597.600000px;}
.ya_c00414{bottom:597.975000px;}
.y3e_c00414{bottom:605.175000px;}
.y9_c00414{bottom:610.935000px;}
.y3d_c00414{bottom:620.655000px;}
.y8_c00414{bottom:621.000000px;}
.y7_c00414{bottom:628.200000px;}
.y6_c00414{bottom:632.520000px;}
.y54_c00414{bottom:634.695000px;}
.y3c_c00414{bottom:635.415000px;}
.y3b_c00414{bottom:650.175000px;}
.y3a_c00414{bottom:655.200000px;}
.y5_c00414{bottom:655.575000px;}
.y4_c00414{bottom:671.775000px;}
.y3_c00414{bottom:702.000000px;}
.y53_c00414{bottom:708.855000px;}
.y36_c00414{bottom:729.360000px;}
.y2d_c00414{bottom:752.415000px;}
.y52_c00414{bottom:753.495000px;}
.y35_c00414{bottom:754.200000px;}
.y2_c00414{bottom:761.040000px;}
.y51_c00414{bottom:761.775000px;}
.y1_c00414{bottom:777.615000px;}
.y34_c00414{bottom:778.335000px;}
.y50_c00414{bottom:779.400000px;}
.h15_c00414{height:8.631360px;}
.he_c00414{height:15.344640px;}
.hb_c00414{height:16.303680px;}
.h26_c00414{height:19.433206px;}
.h18_c00414{height:22.058320px;}
.hc_c00414{height:23.016960px;}
.h13_c00414{height:23.976000px;}
.h23_c00414{height:25.321878px;}
.h1b_c00414{height:26.499612px;}
.h27_c00414{height:26.909220px;}
.h17_c00414{height:29.411719px;}
.ha_c00414{height:31.914844px;}
.h12_c00414{height:32.540625px;}
.h10_c00414{height:32.976562px;}
.h19_c00414{height:33.565430px;}
.h22_c00414{height:34.154886px;}
.h1a_c00414{height:34.418595px;}
.h1f_c00414{height:42.553751px;}
.h11_c00414{height:45.320215px;}
.h4_c00414{height:45.682657px;}
.h2_c00414{height:45.932229px;}
.h24_c00414{height:47.084276px;}
.h3_c00414{height:48.263086px;}
.hf_c00414{height:48.287109px;}
.h8_c00414{height:57.542400px;}
.hd_c00414{height:58.886719px;}
.h21_c00414{height:61.831055px;}
.h14_c00414{height:64.186523px;}
.h20_c00414{height:67.584375px;}
.h1e_c00414{height:70.713281px;}
.h25_c00414{height:72.562500px;}
.h7_c00414{height:73.608398px;}
.h16_c00414{height:88.918945px;}
.h1c_c00414{height:108.371520px;}
.h1d_c00414{height:140.150391px;}
.h5_c00414{height:150.569280px;}
.h6_c00414{height:162.077344px;}
.h9_c00414{height:210.226175px;}
.h1_c00414{height:892.500000px;}
.h0_c00414{height:892.800000px;}
.w1_c00414{width:1263.000000px;}
.w0_c00414{width:1263.240000px;}
.x0_c00414{left:0.000000px;}
.xa_c00414{left:116.535000px;}
.xd_c00414{left:119.085000px;}
.x41_c00414{left:133.815000px;}
.x11_c00414{left:136.080000px;}
.xe_c00414{left:137.130000px;}
.x7_c00414{left:139.320000px;}
.x19_c00414{left:140.505000px;}
.x53_c00414{left:146.775000px;}
.x1b_c00414{left:155.310000px;}
.x42_c00414{left:184.950000px;}
.xb_c00414{left:188.715000px;}
.x1c_c00414{left:202.425000px;}
.x43_c00414{left:211.980000px;}
.x8_c00414{left:213.795000px;}
.x1_c00414{left:217.665000px;}
.x13_c00414{left:218.745000px;}
.x4_c00414{left:227.025000px;}
.x16_c00414{left:228.105000px;}
.x18_c00414{left:235.230000px;}
.x54_c00414{left:250.380000px;}
.x2_c00414{left:277.485000px;}
.x14_c00414{left:278.565000px;}
.x3_c00414{left:293.235000px;}
.x15_c00414{left:294.315000px;}
.x5_c00414{left:300.105000px;}
.x17_c00414{left:301.185000px;}
.x44_c00414{left:305.595000px;}
.x55_c00414{left:308.790000px;}
.x56_c00414{left:324.525000px;}
.x45_c00414{left:363.780000px;}
.x6_c00414{left:371.385000px;}
.x46_c00414{left:385.815000px;}
.x57_c00414{left:392.670000px;}
.x47_c00414{left:403.005000px;}
.xc_c00414{left:408.975000px;}
.xf_c00414{left:411.150000px;}
.x12_c00414{left:427.995000px;}
.x10_c00414{left:429.090000px;}
.x9_c00414{left:431.205000px;}
.x1a_c00414{left:432.915000px;}
.x58_c00414{left:443.715000px;}
.x23_c00414{left:453.825000px;}
.x48_c00414{left:487.710000px;}
.x1d_c00414{left:510.705000px;}
.x59_c00414{left:529.155000px;}
.x5a_c00414{left:535.905000px;}
.x1f_c00414{left:538.785000px;}
.x21_c00414{left:545.550000px;}
.x5b_c00414{left:572.340000px;}
.x49_c00414{left:578.490000px;}
.x5c_c00414{left:581.265000px;}
.x1e_c00414{left:587.130000px;}
.x22_c00414{left:588.210000px;}
.x4a_c00414{left:592.740000px;}
.x5d_c00414{left:616.980000px;}
.x5e_c00414{left:625.965000px;}
.x24_c00414{left:629.175000px;}
.x25_c00414{left:630.300000px;}
.x20_c00414{left:631.455000px;}
.x5f_c00414{left:642.150000px;}
.x60_c00414{left:668.385000px;}
.x4b_c00414{left:679.875000px;}
.x2c_c00414{left:689.040000px;}
.x2b_c00414{left:697.260000px;}
.x61_c00414{left:698.265000px;}
.x2a_c00414{left:711.345000px;}
.x62_c00414{left:719.955000px;}
.x28_c00414{left:729.735000px;}
.x27_c00414{left:737.940000px;}
.x26_c00414{left:751.710000px;}
.x2d_c00414{left:756.990000px;}
.x29_c00414{left:798.390000px;}
.x4c_c00414{left:799.725000px;}
.x4d_c00414{left:865.980000px;}
.x2e_c00414{left:886.230000px;}
.x4e_c00414{left:887.940000px;}
.x2f_c00414{left:889.140000px;}
.x4f_c00414{left:902.130000px;}
.x39_c00414{left:906.450000px;}
.x37_c00414{left:908.565000px;}
.x38_c00414{left:909.915000px;}
.x50_c00414{left:934.740000px;}
.x33_c00414{left:960.495000px;}
.x3d_c00414{left:961.935000px;}
.x30_c00414{left:987.015000px;}
.x3a_c00414{left:988.095000px;}
.x51_c00414{left:1019.325000px;}
.x31_c00414{left:1037.835000px;}
.x3b_c00414{left:1039.290000px;}
.x52_c00414{left:1041.030000px;}
.x32_c00414{left:1074.510000px;}
.x3c_c00414{left:1075.530000px;}
.x34_c00414{left:1106.550000px;}
.x3e_c00414{left:1107.630000px;}
.x36_c00414{left:1113.270000px;}
.x40_c00414{left:1114.710000px;}
.x35_c00414{left:1143.285000px;}
.x3f_c00414{left:1144.725000px;}
@media print{
.v1_c00414{vertical-align:-2.560000pt;}
.v2_c00414{vertical-align:-1.269760pt;}
.v0_c00414{vertical-align:0.000000pt;}
.v3_c00414{vertical-align:1.245884pt;}
.lsa_c00414{letter-spacing:-2.818667pt;}
.ls1d_c00414{letter-spacing:-2.240000pt;}
.lsd_c00414{letter-spacing:-2.109333pt;}
.ls12_c00414{letter-spacing:-2.016000pt;}
.ls8_c00414{letter-spacing:-1.456019pt;}
.ls1e_c00414{letter-spacing:-1.376000pt;}
.ls1a_c00414{letter-spacing:-1.362685pt;}
.ls17_c00414{letter-spacing:-1.082685pt;}
.ls18_c00414{letter-spacing:-1.064000pt;}
.lsc_c00414{letter-spacing:-1.026685pt;}
.ls16_c00414{letter-spacing:-0.996707pt;}
.ls6_c00414{letter-spacing:-0.911052pt;}
.ls21_c00414{letter-spacing:-0.802685pt;}
.ls22_c00414{letter-spacing:-0.752231pt;}
.ls20_c00414{letter-spacing:-0.616019pt;}
.ls23_c00414{letter-spacing:-0.614628pt;}
.ls1b_c00414{letter-spacing:-0.274564pt;}
.ls19_c00414{letter-spacing:-0.202456pt;}
.ls5_c00414{letter-spacing:0.000000pt;}
.ls14_c00414{letter-spacing:0.046721pt;}
.ls1f_c00414{letter-spacing:0.148320pt;}
.ls9_c00414{letter-spacing:0.366085pt;}
.ls2_c00414{letter-spacing:0.973452pt;}
.ls15_c00414{letter-spacing:0.994253pt;}
.ls3_c00414{letter-spacing:1.078468pt;}
.ls13_c00414{letter-spacing:1.210576pt;}
.ls1c_c00414{letter-spacing:1.385298pt;}
.lsb_c00414{letter-spacing:1.520000pt;}
.ls11_c00414{letter-spacing:1.589140pt;}
.lsf_c00414{letter-spacing:1.813360pt;}
.lse_c00414{letter-spacing:1.876612pt;}
.ls10_c00414{letter-spacing:1.921945pt;}
.ls1_c00414{letter-spacing:1.946693pt;}
.ls0_c00414{letter-spacing:2.063386pt;}
.ls4_c00414{letter-spacing:2.080027pt;}
.ls7_c00414{letter-spacing:6.906667pt;}
.ws0_c00414{word-spacing:0.000000pt;}
._11_c00414{width:4.480000pt;}
._10_c00414{width:70.664968pt;}
._d_c00414{width:71.945892pt;}
._e_c00414{width:73.195669pt;}
._c_c00414{width:79.182455pt;}
._f_c00414{width:115.436800pt;}
._6_c00414{width:177.733101pt;}
._8_c00414{width:241.862400pt;}
._7_c00414{width:244.413867pt;}
._b_c00414{width:309.698133pt;}
._3_c00414{width:714.977280pt;}
._2_c00414{width:759.663360pt;}
._0_c00414{width:981.156899pt;}
._a_c00414{width:999.731200pt;}
._4_c00414{width:1005.298133pt;}
._5_c00414{width:1010.329600pt;}
._1_c00414{width:1015.403200pt;}
._9_c00414{width:1018.401067pt;}
.fs12_c00414{font-size:11.520000pt;}
.fs23_c00414{font-size:17.600533pt;}
.fsc_c00414{font-size:20.480000pt;}
.fs9_c00414{font-size:21.760000pt;}
.fs20_c00414{font-size:22.933867pt;}
.fs18_c00414{font-size:24.000533pt;}
.fs14_c00414{font-size:25.066667pt;}
.fs8_c00414{font-size:27.200000pt;}
.fsf_c00414{font-size:27.733333pt;}
.fs17_c00414{font-size:29.333867pt;}
.fs15_c00414{font-size:29.440533pt;}
.fsd_c00414{font-size:29.866667pt;}
.fs16_c00414{font-size:30.400000pt;}
.fsa_c00414{font-size:30.720000pt;}
.fs1f_c00414{font-size:30.933867pt;}
.fs10_c00414{font-size:32.000000pt;}
.fs1c_c00414{font-size:36.267200pt;}
.fs2_c00414{font-size:38.933867pt;}
.fse_c00414{font-size:41.066667pt;}
.fs0_c00414{font-size:41.600533pt;}
.fs1_c00414{font-size:43.733333pt;}
.fsb_c00414{font-size:53.333333pt;}
.fs22_c00414{font-size:54.933333pt;}
.fs1e_c00414{font-size:56.000000pt;}
.fs1d_c00414{font-size:57.600000pt;}
.fs11_c00414{font-size:58.133333pt;}
.fs1b_c00414{font-size:60.266667pt;}
.fs21_c00414{font-size:64.000000pt;}
.fs5_c00414{font-size:66.666667pt;}
.fs6_c00414{font-size:76.800000pt;}
.fs13_c00414{font-size:80.533333pt;}
.fs1a_c00414{font-size:126.933333pt;}
.fs4_c00414{font-size:138.133333pt;}
.fs19_c00414{font-size:144.640000pt;}
.fs7_c00414{font-size:190.400533pt;}
.fs3_c00414{font-size:200.960000pt;}
.y0_c00414{bottom:0.000000pt;}
.y5e_c00414{bottom:29.440000pt;}
.y5d_c00414{bottom:97.280000pt;}
.y5c_c00414{bottom:115.520000pt;}
.y5b_c00414{bottom:168.653333pt;}
.y2c_c00414{bottom:169.280000pt;}
.y2a_c00414{bottom:170.560000pt;}
.y2b_c00414{bottom:171.533333pt;}
.y4f_c00414{bottom:208.333333pt;}
.y29_c00414{bottom:208.653333pt;}
.y4e_c00414{bottom:213.773333pt;}
.y28_c00414{bottom:214.413333pt;}
.y4d_c00414{bottom:220.493333pt;}
.y27_c00414{bottom:221.133333pt;}
.y4c_c00414{bottom:227.200000pt;}
.y26_c00414{bottom:227.853333pt;}
.y4b_c00414{bottom:233.613333pt;}
.y25_c00414{bottom:233.933333pt;}
.y22_c00414{bottom:234.240000pt;}
.y5a_c00414{bottom:235.200000pt;}
.y24_c00414{bottom:235.533333pt;}
.y21_c00414{bottom:235.853333pt;}
.y4a_c00414{bottom:241.933333pt;}
.y23_c00414{bottom:242.240000pt;}
.y20_c00414{bottom:242.573333pt;}
.y49_c00414{bottom:247.053333pt;}
.y1f_c00414{bottom:247.373333pt;}
.y48_c00414{bottom:255.680000pt;}
.y1e_c00414{bottom:256.000000pt;}
.y1d_c00414{bottom:256.333333pt;}
.y47_c00414{bottom:262.413333pt;}
.y1c_c00414{bottom:263.053333pt;}
.y59_c00414{bottom:267.853333pt;}
.y1b_c00414{bottom:268.173333pt;}
.y19_c00414{bottom:268.493333pt;}
.y46_c00414{bottom:268.813333pt;}
.y1a_c00414{bottom:269.133333pt;}
.y18_c00414{bottom:269.453333pt;}
.y45_c00414{bottom:282.240000pt;}
.y17_c00414{bottom:282.573333pt;}
.y44_c00414{bottom:286.720000pt;}
.y16_c00414{bottom:287.053333pt;}
.y58_c00414{bottom:301.133333pt;}
.y15_c00414{bottom:301.453333pt;}
.y14_c00414{bottom:301.773333pt;}
.y39_c00414{bottom:319.053333pt;}
.y13_c00414{bottom:334.093333pt;}
.y38_c00414{bottom:340.813333pt;}
.y37_c00414{bottom:362.240000pt;}
.y30_c00414{bottom:372.813333pt;}
.y12_c00414{bottom:373.133333pt;}
.y2f_c00414{bottom:380.173333pt;}
.y11_c00414{bottom:380.480000pt;}
.y2e_c00414{bottom:394.893333pt;}
.y10_c00414{bottom:395.200000pt;}
.y57_c00414{bottom:395.533333pt;}
.y56_c00414{bottom:465.280000pt;}
.yf_c00414{bottom:465.613333pt;}
.y33_c00414{bottom:467.853333pt;}
.y32_c00414{bottom:483.533333pt;}
.y31_c00414{bottom:499.853333pt;}
.y43_c00414{bottom:503.693333pt;}
.ye_c00414{bottom:504.320000pt;}
.y42_c00414{bottom:509.773333pt;}
.yd_c00414{bottom:510.093333pt;}
.y41_c00414{bottom:516.480000pt;}
.yc_c00414{bottom:516.813333pt;}
.y40_c00414{bottom:523.200000pt;}
.yb_c00414{bottom:523.533333pt;}
.y3f_c00414{bottom:529.613333pt;}
.y55_c00414{bottom:531.200000pt;}
.ya_c00414{bottom:531.533333pt;}
.y3e_c00414{bottom:537.933333pt;}
.y9_c00414{bottom:543.053333pt;}
.y3d_c00414{bottom:551.693333pt;}
.y8_c00414{bottom:552.000000pt;}
.y7_c00414{bottom:558.400000pt;}
.y6_c00414{bottom:562.240000pt;}
.y54_c00414{bottom:564.173333pt;}
.y3c_c00414{bottom:564.813333pt;}
.y3b_c00414{bottom:577.933333pt;}
.y3a_c00414{bottom:582.400000pt;}
.y5_c00414{bottom:582.733333pt;}
.y4_c00414{bottom:597.133333pt;}
.y3_c00414{bottom:624.000000pt;}
.y53_c00414{bottom:630.093333pt;}
.y36_c00414{bottom:648.320000pt;}
.y2d_c00414{bottom:668.813333pt;}
.y52_c00414{bottom:669.773333pt;}
.y35_c00414{bottom:670.400000pt;}
.y2_c00414{bottom:676.480000pt;}
.y51_c00414{bottom:677.133333pt;}
.y1_c00414{bottom:691.213333pt;}
.y34_c00414{bottom:691.853333pt;}
.y50_c00414{bottom:692.800000pt;}
.h15_c00414{height:7.672320pt;}
.he_c00414{height:13.639680pt;}
.hb_c00414{height:14.492160pt;}
.h26_c00414{height:17.273961pt;}
.h18_c00414{height:19.607395pt;}
.hc_c00414{height:20.459520pt;}
.h13_c00414{height:21.312000pt;}
.h23_c00414{height:22.508336pt;}
.h1b_c00414{height:23.555211pt;}
.h27_c00414{height:23.919306pt;}
.h17_c00414{height:26.143750pt;}
.ha_c00414{height:28.368750pt;}
.h12_c00414{height:28.925000pt;}
.h10_c00414{height:29.312500pt;}
.h19_c00414{height:29.835938pt;}
.h22_c00414{height:30.359898pt;}
.h1a_c00414{height:30.594306pt;}
.h1f_c00414{height:37.825556pt;}
.h11_c00414{height:40.284635pt;}
.h4_c00414{height:40.606806pt;}
.h2_c00414{height:40.828648pt;}
.h24_c00414{height:41.852690pt;}
.h3_c00414{height:42.900521pt;}
.hf_c00414{height:42.921875pt;}
.h8_c00414{height:51.148800pt;}
.hd_c00414{height:52.343750pt;}
.h21_c00414{height:54.960938pt;}
.h14_c00414{height:57.054688pt;}
.h20_c00414{height:60.075000pt;}
.h1e_c00414{height:62.856250pt;}
.h25_c00414{height:64.500000pt;}
.h7_c00414{height:65.429688pt;}
.h16_c00414{height:79.039062pt;}
.h1c_c00414{height:96.330240pt;}
.h1d_c00414{height:124.578125pt;}
.h5_c00414{height:133.839360pt;}
.h6_c00414{height:144.068750pt;}
.h9_c00414{height:186.867711pt;}
.h1_c00414{height:793.333333pt;}
.h0_c00414{height:793.600000pt;}
.w1_c00414{width:1122.666667pt;}
.w0_c00414{width:1122.880000pt;}
.x0_c00414{left:0.000000pt;}
.xa_c00414{left:103.586667pt;}
.xd_c00414{left:105.853333pt;}
.x41_c00414{left:118.946667pt;}
.x11_c00414{left:120.960000pt;}
.xe_c00414{left:121.893333pt;}
.x7_c00414{left:123.840000pt;}
.x19_c00414{left:124.893333pt;}
.x53_c00414{left:130.466667pt;}
.x1b_c00414{left:138.053333pt;}
.x42_c00414{left:164.400000pt;}
.xb_c00414{left:167.746667pt;}
.x1c_c00414{left:179.933333pt;}
.x43_c00414{left:188.426667pt;}
.x8_c00414{left:190.040000pt;}
.x1_c00414{left:193.480000pt;}
.x13_c00414{left:194.440000pt;}
.x4_c00414{left:201.800000pt;}
.x16_c00414{left:202.760000pt;}
.x18_c00414{left:209.093333pt;}
.x54_c00414{left:222.560000pt;}
.x2_c00414{left:246.653333pt;}
.x14_c00414{left:247.613333pt;}
.x3_c00414{left:260.653333pt;}
.x15_c00414{left:261.613333pt;}
.x5_c00414{left:266.760000pt;}
.x17_c00414{left:267.720000pt;}
.x44_c00414{left:271.640000pt;}
.x55_c00414{left:274.480000pt;}
.x56_c00414{left:288.466667pt;}
.x45_c00414{left:323.360000pt;}
.x6_c00414{left:330.120000pt;}
.x46_c00414{left:342.946667pt;}
.x57_c00414{left:349.040000pt;}
.x47_c00414{left:358.226667pt;}
.xc_c00414{left:363.533333pt;}
.xf_c00414{left:365.466667pt;}
.x12_c00414{left:380.440000pt;}
.x10_c00414{left:381.413333pt;}
.x9_c00414{left:383.293333pt;}
.x1a_c00414{left:384.813333pt;}
.x58_c00414{left:394.413333pt;}
.x23_c00414{left:403.400000pt;}
.x48_c00414{left:433.520000pt;}
.x1d_c00414{left:453.960000pt;}
.x59_c00414{left:470.360000pt;}
.x5a_c00414{left:476.360000pt;}
.x1f_c00414{left:478.920000pt;}
.x21_c00414{left:484.933333pt;}
.x5b_c00414{left:508.746667pt;}
.x49_c00414{left:514.213333pt;}
.x5c_c00414{left:516.680000pt;}
.x1e_c00414{left:521.893333pt;}
.x22_c00414{left:522.853333pt;}
.x4a_c00414{left:526.880000pt;}
.x5d_c00414{left:548.426667pt;}
.x5e_c00414{left:556.413333pt;}
.x24_c00414{left:559.266667pt;}
.x25_c00414{left:560.266667pt;}
.x20_c00414{left:561.293333pt;}
.x5f_c00414{left:570.800000pt;}
.x60_c00414{left:594.120000pt;}
.x4b_c00414{left:604.333333pt;}
.x2c_c00414{left:612.480000pt;}
.x2b_c00414{left:619.786667pt;}
.x61_c00414{left:620.680000pt;}
.x2a_c00414{left:632.306667pt;}
.x62_c00414{left:639.960000pt;}
.x28_c00414{left:648.653333pt;}
.x27_c00414{left:655.946667pt;}
.x26_c00414{left:668.186667pt;}
.x2d_c00414{left:672.880000pt;}
.x29_c00414{left:709.680000pt;}
.x4c_c00414{left:710.866667pt;}
.x4d_c00414{left:769.760000pt;}
.x2e_c00414{left:787.760000pt;}
.x4e_c00414{left:789.280000pt;}
.x2f_c00414{left:790.346667pt;}
.x4f_c00414{left:801.893333pt;}
.x39_c00414{left:805.733333pt;}
.x37_c00414{left:807.613333pt;}
.x38_c00414{left:808.813333pt;}
.x50_c00414{left:830.880000pt;}
.x33_c00414{left:853.773333pt;}
.x3d_c00414{left:855.053333pt;}
.x30_c00414{left:877.346667pt;}
.x3a_c00414{left:878.306667pt;}
.x51_c00414{left:906.066667pt;}
.x31_c00414{left:922.520000pt;}
.x3b_c00414{left:923.813333pt;}
.x52_c00414{left:925.360000pt;}
.x32_c00414{left:955.120000pt;}
.x3c_c00414{left:956.026667pt;}
.x34_c00414{left:983.600000pt;}
.x3e_c00414{left:984.560000pt;}
.x36_c00414{left:989.573333pt;}
.x40_c00414{left:990.853333pt;}
.x35_c00414{left:1016.253333pt;}
.x3f_c00414{left:1017.533333pt;}
}





/* 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_c00415 {
    display:none;
  }
  .loading-indicator_c00415.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00415 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_c00415 { 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_c00415" -> "#page-container .classname_c00415")
 */
.pf_c00415 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00415 { /* 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_c00415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00415 { /* 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_c00415 { /* 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_c00415 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00415 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00415 {overflow:visible;}
  }
}
.c_c00415 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00415 { /* 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_c00415:after { /* webkit #35443 */
  content: '';
}
.t_c00415:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00415 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 */
}
.__c00415 { /* 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_c00415 { /* info for Javascript */
  display:none;
}
.l_c00415 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00415 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00415 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00415: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_c00415 {
    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_c00415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00415.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_c00415 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00415{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00415;src:url('chunks/assets/font_7bd3f6cf1b6e95963711766a.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.284668;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_c00415;src:url('chunks/assets/font_30127086d5248acba0ccd13f.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:0.666000;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_c00415;src:url('chunks/assets/font_2a51b5a8c2705a742f84b46f.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;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:ff4_c00415;src:url('chunks/assets/font_7021b66e61be536e5d581c22.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:1.284180;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_c00415;src:url('chunks/assets/font_6e646849028a3cd6006bacd1.woff2')format("woff");}.ff5_c00415{font-family:ff5_c00415;line-height:1.311035;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_c00415;src:url('chunks/assets/font_8c6f0f30766555928943e66e.woff2')format("woff");}.ff6_c00415{font-family:ff6_c00415;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:ff7_c00415;src:url('chunks/assets/font_8b870a328fd60754816d5711.woff2')format("woff");}.ff7_c00415{font-family:ff7_c00415;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;}
.mc_c00415{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m17_c00415{transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);}
.m25_c00415{transform:matrix(0.143281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143281,0.000000,0.000000,0.250000,0,0);}
.m24_c00415{transform:matrix(0.156942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156942,0.000000,0.000000,0.250000,0,0);}
.m1c_c00415{transform:matrix(0.169697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169697,0.000000,0.000000,0.250000,0,0);}
.m3d_c00415{transform:matrix(0.194112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194112,0.000000,0.000000,0.250000,0,0);}
.m8_c00415{transform:matrix(0.207056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207056,0.000000,0.000000,0.250000,0,0);}
.m1a_c00415{transform:matrix(0.219996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219996,0.000000,0.000000,0.250000,0,0);}
.m50_c00415{transform:matrix(0.224996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224996,0.000000,0.000000,0.250000,0,0);}
.m3c_c00415{transform:matrix(0.226649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226649,0.000000,0.000000,0.250000,0,0);}
.m4c_c00415{transform:matrix(0.227298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227298,0.000000,0.000000,0.250000,0,0);}
.m39_c00415{transform:matrix(0.227654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227654,0.000000,0.000000,0.250000,0,0);}
.m55_c00415{transform:matrix(0.228361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228361,0.000000,0.000000,0.250000,0,0);}
.m12_c00415{transform:matrix(0.228559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228559,0.000000,0.000000,0.250000,0,0);}
.m4f_c00415{transform:matrix(0.231133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231133,0.000000,0.000000,0.250000,0,0);}
.m4d_c00415{transform:matrix(0.231635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231635,0.000000,0.000000,0.250000,0,0);}
.m56_c00415{transform:matrix(0.232564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232564,0.000000,0.000000,0.250000,0,0);}
.m44_c00415{transform:matrix(0.232719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232719,0.000000,0.000000,0.250000,0,0);}
.m15_c00415{transform:matrix(0.232936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232936,0.000000,0.000000,0.250000,0,0);}
.m4e_c00415{transform:matrix(0.233646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233646,0.000000,0.000000,0.250000,0,0);}
.m26_c00415{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m40_c00415{transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);}
.m46_c00415{transform:matrix(0.235842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235842,0.000000,0.000000,0.250000,0,0);}
.m4b_c00415{transform:matrix(0.237983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237983,0.000000,0.000000,0.250000,0,0);}
.m49_c00415{transform:matrix(0.238129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238129,0.000000,0.000000,0.250000,0,0);}
.m45_c00415{transform:matrix(0.238631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238631,0.000000,0.000000,0.250000,0,0);}
.m51_c00415{transform:matrix(0.239069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239069,0.000000,0.000000,0.250000,0,0);}
.m1d_c00415{transform:matrix(0.239194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239194,0.000000,0.000000,0.250000,0,0);}
.m2b_c00415{transform:matrix(0.239442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239442,0.000000,0.000000,0.250000,0,0);}
.m59_c00415{transform:matrix(0.239797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239797,0.000000,0.000000,0.250000,0,0);}
.m30_c00415{transform:matrix(0.239798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239798,0.000000,0.000000,0.250000,0,0);}
.m28_c00415{transform:matrix(0.240445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240445,0.000000,0.000000,0.250000,0,0);}
.m52_c00415{transform:matrix(0.240708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240708,0.000000,0.000000,0.250000,0,0);}
.m58_c00415{transform:matrix(0.241634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241634,0.000000,0.000000,0.250000,0,0);}
.m6_c00415{transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);}
.m5a_c00415{transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);}
.m31_c00415{transform:matrix(0.244495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244495,0.000000,0.000000,0.250000,0,0);}
.m41_c00415{transform:matrix(0.245993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245993,0.000000,0.000000,0.250000,0,0);}
.m57_c00415{transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);}
.m54_c00415{transform:matrix(0.246401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246401,0.000000,0.000000,0.250000,0,0);}
.m48_c00415{transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);}
.m53_c00415{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m47_c00415{transform:matrix(0.248348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248348,0.000000,0.000000,0.250000,0,0);}
.m4a_c00415{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m43_c00415{transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);}
.m42_c00415{transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);}
.md_c00415{transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);}
.m0_c00415{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);}
.m34_c00415{transform:matrix(0.250151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250151,0.000000,0.000000,0.250000,0,0);}
.m4_c00415{transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);}
.m2c_c00415{transform:matrix(0.251483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251483,0.000000,0.000000,0.250000,0,0);}
.m37_c00415{transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);}
.m7_c00415{transform:matrix(0.251551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251551,0.000000,0.000000,0.250000,0,0);}
.m20_c00415{transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);}
.mf_c00415{transform:matrix(0.253664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253664,0.000000,0.000000,0.250000,0,0);}
.m1b_c00415{transform:matrix(0.255644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255644,0.000000,0.000000,0.250000,0,0);}
.m2e_c00415{transform:matrix(0.256644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256644,0.000000,0.000000,0.250000,0,0);}
.m1e_c00415{transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);}
.m3a_c00415{transform:matrix(0.260151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260151,0.000000,0.000000,0.250000,0,0);}
.mb_c00415{transform:matrix(0.260577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260577,0.000000,0.000000,0.250000,0,0);}
.m23_c00415{transform:matrix(0.260911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260911,0.000000,0.000000,0.250000,0,0);}
.m38_c00415{transform:matrix(0.261109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261109,0.000000,0.000000,0.250000,0,0);}
.m19_c00415{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m1f_c00415{transform:matrix(0.261676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261676,0.000000,0.000000,0.250000,0,0);}
.m14_c00415{transform:matrix(0.262986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262986,0.000000,0.000000,0.250000,0,0);}
.m2d_c00415{transform:matrix(0.265041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265041,0.000000,0.000000,0.250000,0,0);}
.m2a_c00415{transform:matrix(0.267376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267376,0.000000,0.000000,0.250000,0,0);}
.m2f_c00415{transform:matrix(0.267388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267388,0.000000,0.000000,0.250000,0,0);}
.m21_c00415{transform:matrix(0.268743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268743,0.000000,0.000000,0.250000,0,0);}
.m33_c00415{transform:matrix(0.272448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272448,0.000000,0.000000,0.250000,0,0);}
.m9_c00415{transform:matrix(0.272969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272969,0.000000,0.000000,0.250000,0,0);}
.m32_c00415{transform:matrix(0.275378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275378,0.000000,0.000000,0.250000,0,0);}
.m3b_c00415{transform:matrix(0.281009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281009,0.000000,0.000000,0.250000,0,0);}
.m29_c00415{transform:matrix(0.281527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281527,0.000000,0.000000,0.250000,0,0);}
.m35_c00415{transform:matrix(0.285027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285027,0.000000,0.000000,0.250000,0,0);}
.m22_c00415{transform:matrix(0.286045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286045,0.000000,0.000000,0.250000,0,0);}
.m5_c00415{transform:matrix(0.299744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299744,0.000000,0.000000,0.250000,0,0);}
.m3_c00415{transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);}
.m16_c00415{transform:matrix(0.317348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317348,0.000000,0.000000,0.250000,0,0);}
.m13_c00415{transform:matrix(0.318476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318476,0.000000,0.000000,0.250000,0,0);}
.ma_c00415{transform:matrix(0.319615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319615,0.000000,0.000000,0.250000,0,0);}
.m18_c00415{transform:matrix(0.338241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338241,0.000000,0.000000,0.250000,0,0);}
.m36_c00415{transform:matrix(0.341221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341221,0.000000,0.000000,0.250000,0,0);}
.m2_c00415{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00415{transform:matrix(0.347205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347205,0.000000,0.000000,0.250000,0,0);}
.m10_c00415{transform:matrix(0.359382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359382,0.000000,0.000000,0.250000,0,0);}
.m11_c00415{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00415{transform:matrix(0.399226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399226,0.000000,0.000000,0.250000,0,0);}
.m27_c00415{transform:matrix(0.436047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436047,0.000000,0.000000,0.250000,0,0);}
.m1_c00415{transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);}
.me_c00415{transform:matrix(0.638900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638900,0.000000,0.000000,0.250000,0,0);}
.v1_c00415{vertical-align:-84.960000px;}
.v4_c00415{vertical-align:-41.778000px;}
.v3_c00415{vertical-align:-2.890840px;}
.v0_c00415{vertical-align:0.000000px;}
.v2_c00415{vertical-align:7.200000px;}
.v5_c00415{vertical-align:92.160000px;}
.ls18_c00415{letter-spacing:-5.040000px;}
.ls19_c00415{letter-spacing:-3.759000px;}
.ls27_c00415{letter-spacing:-2.520000px;}
.ls28_c00415{letter-spacing:-2.331000px;}
.ls16_c00415{letter-spacing:-2.268000px;}
.ls2b_c00415{letter-spacing:-2.044800px;}
.ls20_c00415{letter-spacing:-1.848000px;}
.ls29_c00415{letter-spacing:-1.728000px;}
.ls22_c00415{letter-spacing:-1.638021px;}
.lsf_c00415{letter-spacing:-1.533021px;}
.ls11_c00415{letter-spacing:-1.489220px;}
.ls9_c00415{letter-spacing:-1.134021px;}
.ls7_c00415{letter-spacing:-1.092000px;}
.ls2c_c00415{letter-spacing:-0.903021px;}
.ls2d_c00415{letter-spacing:-0.846260px;}
.ls1a_c00415{letter-spacing:-0.770891px;}
.ls10_c00415{letter-spacing:-0.764400px;}
.ls2e_c00415{letter-spacing:-0.691456px;}
.lsa_c00415{letter-spacing:-0.558480px;}
.ls12_c00415{letter-spacing:-0.105121px;}
.ls15_c00415{letter-spacing:-0.021900px;}
.ls5_c00415{letter-spacing:0.000000px;}
.ls13_c00415{letter-spacing:0.039421px;}
.ls1e_c00415{letter-spacing:0.459906px;}
.lse_c00415{letter-spacing:0.776890px;}
.lsc_c00415{letter-spacing:0.882960px;}
.lsb_c00415{letter-spacing:0.996853px;}
.ls1b_c00415{letter-spacing:1.134436px;}
.ls24_c00415{letter-spacing:1.179375px;}
.ls26_c00415{letter-spacing:1.230000px;}
.ls25_c00415{letter-spacing:1.335918px;}
.ls1d_c00415{letter-spacing:1.554921px;}
.ls14_c00415{letter-spacing:1.560000px;}
.ls4_c00415{letter-spacing:1.585582px;}
.ls6_c00415{letter-spacing:1.620030px;}
.ls1_c00415{letter-spacing:1.651283px;}
.ls2_c00415{letter-spacing:1.716984px;}
.ls23_c00415{letter-spacing:1.763640px;}
.ls1c_c00415{letter-spacing:1.773924px;}
.ls21_c00415{letter-spacing:1.830000px;}
.ls3_c00415{letter-spacing:1.980000px;}
.ls17_c00415{letter-spacing:2.098049px;}
.ls2a_c00415{letter-spacing:2.114640px;}
.lsd_c00415{letter-spacing:2.190030px;}
.ls8_c00415{letter-spacing:2.220030px;}
.ls0_c00415{letter-spacing:2.340030px;}
.ls1f_c00415{letter-spacing:6.450000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{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__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00415{word-spacing:0.000000px;}
._a_c00415{margin-left:-7.484400px;}
._11_c00415{width:11.160000px;}
._6_c00415{width:17.222396px;}
._c_c00415{width:79.046213px;}
._d_c00415{width:80.450231px;}
._9_c00415{width:86.602546px;}
._f_c00415{width:124.583333px;}
._e_c00415{width:128.107200px;}
._3_c00415{width:193.988487px;}
._0_c00415{width:195.345704px;}
._4_c00415{width:273.530400px;}
._2_c00415{width:274.965600px;}
._1_c00415{width:276.400800px;}
._7_c00415{width:348.410400px;}
._b_c00415{width:349.845600px;}
._8_c00415{width:385.735200px;}
._10_c00415{width:682.860000px;}
._5_c00415{width:1013.672530px;}
.fc0_c00415{color:transparent;}
.fs1_c00415{font-size:12.960000px;}
.fs22_c00415{font-size:21.000600px;}
.fs2_c00415{font-size:23.040000px;}
.fs4_c00415{font-size:24.480000px;}
.fs1e_c00415{font-size:24.600000px;}
.fs23_c00415{font-size:25.800600px;}
.fs1d_c00415{font-size:28.800600px;}
.fs3_c00415{font-size:30.600000px;}
.fs7_c00415{font-size:31.200000px;}
.fsd_c00415{font-size:31.680000px;}
.fs6_c00415{font-size:32.400600px;}
.fsc_c00415{font-size:34.560000px;}
.fs1b_c00415{font-size:34.800600px;}
.fs19_c00415{font-size:36.600000px;}
.fs11_c00415{font-size:39.600000px;}
.fs1a_c00415{font-size:42.600000px;}
.fs9_c00415{font-size:43.800600px;}
.fs8_c00415{font-size:44.400600px;}
.fs5_c00415{font-size:46.800600px;}
.fsf_c00415{font-size:47.520000px;}
.fsb_c00415{font-size:49.200000px;}
.fs18_c00415{font-size:52.800000px;}
.fsa_c00415{font-size:56.400000px;}
.fs21_c00415{font-size:59.400000px;}
.fs0_c00415{font-size:63.000000px;}
.fs10_c00415{font-size:64.800000px;}
.fs20_c00415{font-size:66.600000px;}
.fs1f_c00415{font-size:72.000000px;}
.fse_c00415{font-size:84.000000px;}
.fs14_c00415{font-size:107.400000px;}
.fs15_c00415{font-size:123.840000px;}
.fs17_c00415{font-size:129.000000px;}
.fs12_c00415{font-size:144.000000px;}
.fs1c_c00415{font-size:242.400600px;}
.fs16_c00415{font-size:381.000000px;}
.fs13_c00415{font-size:432.000000px;}
.y0_c00415{bottom:0.000000px;}
.y72_c00415{bottom:33.120000px;}
.y71_c00415{bottom:118.080000px;}
.y70_c00415{bottom:138.255000px;}
.y4f_c00415{bottom:192.975000px;}
.y36_c00415{bottom:200.520000px;}
.y4e_c00415{bottom:216.735000px;}
.y4d_c00415{bottom:241.215000px;}
.y18_c00415{bottom:243.375000px;}
.y17_c00415{bottom:250.560000px;}
.y6f_c00415{bottom:250.935000px;}
.y16_c00415{bottom:258.135000px;}
.y6e_c00415{bottom:258.495000px;}
.y15_c00415{bottom:263.520000px;}
.y14_c00415{bottom:274.335000px;}
.y34_c00415{bottom:274.695000px;}
.y35_c00415{bottom:280.455000px;}
.y13_c00415{bottom:282.255000px;}
.y33_c00415{bottom:287.640000px;}
.y12_c00415{bottom:288.000000px;}
.y11_c00415{bottom:297.735000px;}
.y6d_c00415{bottom:298.815000px;}
.y10_c00415{bottom:304.935000px;}
.y6c_c00415{bottom:305.295000px;}
.y31_c00415{bottom:311.415000px;}
.y6b_c00415{bottom:311.775000px;}
.y32_c00415{bottom:312.135000px;}
.yf_c00415{bottom:312.495000px;}
.ye_c00415{bottom:327.255000px;}
.y6a_c00415{bottom:327.600000px;}
.y4c_c00415{bottom:329.415000px;}
.yd_c00415{bottom:332.295000px;}
.y4b_c00415{bottom:335.520000px;}
.y44_c00415{bottom:348.135000px;}
.y30_c00415{bottom:348.495000px;}
.y4a_c00415{bottom:350.640000px;}
.y43_c00415{bottom:385.575000px;}
.y69_c00415{bottom:385.935000px;}
.y2f_c00415{bottom:386.280000px;}
.y2e_c00415{bottom:429.495000px;}
.y50_c00415{bottom:429.855000px;}
.y68_c00415{bottom:430.200000px;}
.y2d_c00415{bottom:437.775000px;}
.y49_c00415{bottom:438.120000px;}
.y67_c00415{bottom:438.855000px;}
.y2c_c00415{bottom:453.600000px;}
.y48_c00415{bottom:453.975000px;}
.y66_c00415{bottom:455.040000px;}
.y2b_c00415{bottom:533.520000px;}
.y65_c00415{bottom:534.255000px;}
.y42_c00415{bottom:534.600000px;}
.y47_c00415{bottom:536.775000px;}
.y46_c00415{bottom:554.415000px;}
.y45_c00415{bottom:572.770349px;}
.y41_c00415{bottom:576.000000px;}
.y2a_c00415{bottom:576.360000px;}
.yc_c00415{bottom:576.735000px;}
.y64_c00415{bottom:577.095000px;}
.y29_c00415{bottom:583.575000px;}
.yb_c00415{bottom:583.935000px;}
.y63_c00415{bottom:584.280000px;}
.y28_c00415{bottom:591.120000px;}
.ya_c00415{bottom:591.495000px;}
.y62_c00415{bottom:591.855000px;}
.y27_c00415{bottom:596.520000px;}
.y9_c00415{bottom:596.895000px;}
.y61_c00415{bottom:597.600000px;}
.y26_c00415{bottom:607.335000px;}
.y8_c00415{bottom:607.695000px;}
.y60_c00415{bottom:608.040000px;}
.y5f_c00415{bottom:608.415000px;}
.y40_c00415{bottom:609.120000px;}
.y25_c00415{bottom:615.255000px;}
.y7_c00415{bottom:615.600000px;}
.y5e_c00415{bottom:615.975000px;}
.y6_c00415{bottom:621.000000px;}
.y5d_c00415{bottom:621.360000px;}
.y24_c00415{bottom:630.735000px;}
.y5_c00415{bottom:631.095000px;}
.y5c_c00415{bottom:631.440000px;}
.y23_c00415{bottom:637.935000px;}
.y4_c00415{bottom:638.280000px;}
.y5b_c00415{bottom:638.655000px;}
.y21_c00415{bottom:644.775000px;}
.y5a_c00415{bottom:645.120000px;}
.y22_c00415{bottom:645.495000px;}
.y3_c00415{bottom:645.855000px;}
.y3d_c00415{bottom:646.200000px;}
.y3f_c00415{bottom:655.575000px;}
.y20_c00415{bottom:660.255000px;}
.y2_c00415{bottom:660.600000px;}
.y59_c00415{bottom:660.975000px;}
.y1f_c00415{bottom:665.280000px;}
.y1_c00415{bottom:665.655000px;}
.y58_c00415{bottom:666.000000px;}
.y3c_c00415{bottom:670.335000px;}
.y1e_c00415{bottom:672.855000px;}
.y57_c00415{bottom:673.575000px;}
.y1d_c00415{bottom:682.200000px;}
.y56_c00415{bottom:682.575000px;}
.y3e_c00415{bottom:697.335000px;}
.y1c_c00415{bottom:719.280000px;}
.y55_c00415{bottom:719.655000px;}
.y3b_c00415{bottom:739.815000px;}
.y1b_c00415{bottom:762.495000px;}
.y3a_c00415{bottom:762.855000px;}
.y54_c00415{bottom:764.280000px;}
.y1a_c00415{bottom:770.775000px;}
.y39_c00415{bottom:771.135000px;}
.y52_c00415{bottom:772.200000px;}
.y53_c00415{bottom:772.935000px;}
.y19_c00415{bottom:787.335000px;}
.y37_c00415{bottom:788.039348px;}
.y38_c00415{bottom:788.775000px;}
.y51_c00415{bottom:789.135000px;}
.h3_c00415{height:8.631360px;}
.h4_c00415{height:15.344640px;}
.h6_c00415{height:16.303680px;}
.h24_c00415{height:20.610940px;}
.h10_c00415{height:21.098880px;}
.hf_c00415{height:23.016960px;}
.h21_c00415{height:24.143555px;}
.h25_c00415{height:26.909220px;}
.h20_c00415{height:30.038126px;}
.hc_c00415{height:30.621094px;}
.h11_c00415{height:31.648320px;}
.h8_c00415{height:31.799417px;}
.h5_c00415{height:31.914844px;}
.h9_c00415{height:32.540625px;}
.h1e_c00415{height:34.154886px;}
.h1c_c00415{height:35.920898px;}
.h14_c00415{height:41.301562px;}
.h1d_c00415{height:41.809570px;}
.hb_c00415{height:45.682657px;}
.h7_c00415{height:45.932229px;}
.ha_c00415{height:46.308438px;}
.he_c00415{height:48.263086px;}
.h1b_c00415{height:51.820313px;}
.h13_c00415{height:52.882657px;}
.hd_c00415{height:58.823438px;}
.h2_c00415{height:61.831055px;}
.h12_c00415{height:67.584375px;}
.h23_c00415{height:69.461719px;}
.h22_c00415{height:72.562500px;}
.h18_c00415{height:82.477440px;}
.h17_c00415{height:105.407227px;}
.h1a_c00415{height:126.606445px;}
.h15_c00415{height:141.328125px;}
.h1f_c00415{height:344.976251px;}
.h19_c00415{height:373.930664px;}
.h16_c00415{height:450.562500px;}
.h1_c00415{height:892.500000px;}
.h0_c00415{height:892.800000px;}
.w1_c00415{width:1263.000000px;}
.w0_c00415{width:1263.240000px;}
.x0_c00415{left:0.000000px;}
.x1_c00415{left:118.710000px;}
.x2_c00415{left:120.885000px;}
.x4f_c00415{left:135.975000px;}
.xe_c00415{left:137.895000px;}
.xd_c00415{left:139.005000px;}
.x9_c00415{left:141.120000px;}
.xa_c00415{left:142.425000px;}
.x50_c00415{left:188.520000px;}
.x5f_c00415{left:194.730000px;}
.x60_c00415{left:208.260000px;}
.x3_c00415{left:218.715000px;}
.xf_c00415{left:220.515000px;}
.x6_c00415{left:227.760000px;}
.x12_c00415{left:229.560000px;}
.x8_c00415{left:235.230000px;}
.x14_c00415{left:236.670000px;}
.x61_c00415{left:273.420000px;}
.x4_c00415{left:278.565000px;}
.x10_c00415{left:280.365000px;}
.x5_c00415{left:294.240000px;}
.x11_c00415{left:296.040000px;}
.x7_c00415{left:301.920000px;}
.x13_c00415{left:303.360000px;}
.x51_c00415{left:313.875000px;}
.x62_c00415{left:331.830000px;}
.x63_c00415{left:348.645000px;}
.x52_c00415{left:374.580000px;}
.x53_c00415{left:398.775000px;}
.xb_c00415{left:411.120000px;}
.xc_c00415{left:413.100000px;}
.x64_c00415{left:416.430000px;}
.x54_c00415{left:418.845000px;}
.x24_c00415{left:430.575000px;}
.x21_c00415{left:431.670000px;}
.x1e_c00415{left:434.010000px;}
.x25_c00415{left:435.825000px;}
.x23_c00415{left:450.990000px;}
.x65_c00415{left:467.445000px;}
.x1d_c00415{left:475.935000px;}
.x1f_c00415{left:494.010000px;}
.x20_c00415{left:496.590000px;}
.x55_c00415{left:506.430000px;}
.x15_c00415{left:512.490036px;}
.x66_c00415{left:529.095000px;}
.x22_c00415{left:533.520000px;}
.x67_c00415{left:535.905000px;}
.x18_c00415{left:540.555000px;}
.x29_c00415{left:541.635000px;}
.x1a_c00415{left:547.350000px;}
.x2c_c00415{left:548.430000px;}
.x2f_c00415{left:573.225000px;}
.x68_c00415{left:581.265000px;}
.x69_c00415{left:593.505000px;}
.x56_c00415{left:598.650000px;}
.x27_c00415{left:603.570000px;}
.x57_c00415{left:614.700000px;}
.x6a_c00415{left:616.980000px;}
.x6b_c00415{left:625.965000px;}
.x2e_c00415{left:627.435000px;}
.x26_c00415{left:631.006546px;}
.x19_c00415{left:632.820000px;}
.x2a_c00415{left:633.900000px;}
.x6c_c00415{left:642.150000px;}
.x6d_c00415{left:668.385000px;}
.x28_c00415{left:679.020000px;}
.x32_c00415{left:686.790000px;}
.x31_c00415{left:695.280000px;}
.x6e_c00415{left:698.265000px;}
.x58_c00415{left:703.995000px;}
.x2d_c00415{left:705.945000px;}
.x30_c00415{left:708.015000px;}
.x6f_c00415{left:719.955000px;}
.x2b_c00415{left:725.700000px;}
.x1b_c00415{left:731.475000px;}
.x16_c00415{left:753.495000px;}
.x33_c00415{left:755.565000px;}
.x1c_c00415{left:799.845000px;}
.x17_c00415{left:807.255000px;}
.x34_c00415{left:817.125000px;}
.x35_c00415{left:823.830000px;}
.x59_c00415{left:826.365000px;}
.x40_c00415{left:888.135000px;}
.x4d_c00415{left:889.560000px;}
.x41_c00415{left:890.820000px;}
.x4e_c00415{left:892.020000px;}
.x5a_c00415{left:894.420000px;}
.x42_c00415{left:908.670000px;}
.x3e_c00415{left:910.710000px;}
.x3f_c00415{left:912.105000px;}
.x4c_c00415{left:913.185000px;}
.x5b_c00415{left:918.540000px;}
.x5c_c00415{left:934.920000px;}
.x3a_c00415{left:962.955000px;}
.x47_c00415{left:964.755000px;}
.x5d_c00415{left:969.300000px;}
.x36_c00415{left:989.205000px;}
.x43_c00415{left:991.005000px;}
.x37_c00415{left:996.720000px;}
.x44_c00415{left:998.160000px;}
.x38_c00415{left:1040.700000px;}
.x45_c00415{left:1042.500000px;}
.x5e_c00415{left:1056.765000px;}
.x48_c00415{left:1074.555000px;}
.x39_c00415{left:1076.970000px;}
.x46_c00415{left:1078.770000px;}
.x4b_c00415{left:1080.855000px;}
.x3b_c00415{left:1108.725000px;}
.x49_c00415{left:1110.885000px;}
.x3d_c00415{left:1115.430000px;}
.x3c_c00415{left:1145.460000px;}
.x4a_c00415{left:1147.620000px;}
@media print{
.v1_c00415{vertical-align:-75.520000pt;}
.v4_c00415{vertical-align:-37.136000pt;}
.v3_c00415{vertical-align:-2.569635pt;}
.v0_c00415{vertical-align:0.000000pt;}
.v2_c00415{vertical-align:6.400000pt;}
.v5_c00415{vertical-align:81.920000pt;}
.ls18_c00415{letter-spacing:-4.480000pt;}
.ls19_c00415{letter-spacing:-3.341333pt;}
.ls27_c00415{letter-spacing:-2.240000pt;}
.ls28_c00415{letter-spacing:-2.072000pt;}
.ls16_c00415{letter-spacing:-2.016000pt;}
.ls2b_c00415{letter-spacing:-1.817600pt;}
.ls20_c00415{letter-spacing:-1.642667pt;}
.ls29_c00415{letter-spacing:-1.536000pt;}
.ls22_c00415{letter-spacing:-1.456019pt;}
.lsf_c00415{letter-spacing:-1.362685pt;}
.ls11_c00415{letter-spacing:-1.323751pt;}
.ls9_c00415{letter-spacing:-1.008019pt;}
.ls7_c00415{letter-spacing:-0.970667pt;}
.ls2c_c00415{letter-spacing:-0.802685pt;}
.ls2d_c00415{letter-spacing:-0.752231pt;}
.ls1a_c00415{letter-spacing:-0.685236pt;}
.ls10_c00415{letter-spacing:-0.679467pt;}
.ls2e_c00415{letter-spacing:-0.614628pt;}
.lsa_c00415{letter-spacing:-0.496427pt;}
.ls12_c00415{letter-spacing:-0.093441pt;}
.ls15_c00415{letter-spacing:-0.019467pt;}
.ls5_c00415{letter-spacing:0.000000pt;}
.ls13_c00415{letter-spacing:0.035040pt;}
.ls1e_c00415{letter-spacing:0.408806pt;}
.lse_c00415{letter-spacing:0.690569pt;}
.lsc_c00415{letter-spacing:0.784853pt;}
.lsb_c00415{letter-spacing:0.886091pt;}
.ls1b_c00415{letter-spacing:1.008387pt;}
.ls24_c00415{letter-spacing:1.048333pt;}
.ls26_c00415{letter-spacing:1.093333pt;}
.ls25_c00415{letter-spacing:1.187483pt;}
.ls1d_c00415{letter-spacing:1.382152pt;}
.ls14_c00415{letter-spacing:1.386667pt;}
.ls4_c00415{letter-spacing:1.409406pt;}
.ls6_c00415{letter-spacing:1.440027pt;}
.ls1_c00415{letter-spacing:1.467807pt;}
.ls2_c00415{letter-spacing:1.526208pt;}
.ls23_c00415{letter-spacing:1.567680pt;}
.ls1c_c00415{letter-spacing:1.576822pt;}
.ls21_c00415{letter-spacing:1.626667pt;}
.ls3_c00415{letter-spacing:1.760000pt;}
.ls17_c00415{letter-spacing:1.864932pt;}
.ls2a_c00415{letter-spacing:1.879680pt;}
.lsd_c00415{letter-spacing:1.946693pt;}
.ls8_c00415{letter-spacing:1.973360pt;}
.ls0_c00415{letter-spacing:2.080027pt;}
.ls1f_c00415{letter-spacing:5.733333pt;}
.ws0_c00415{word-spacing:0.000000pt;}
._a_c00415{margin-left:-6.652800pt;}
._11_c00415{width:9.920000pt;}
._6_c00415{width:15.308796pt;}
._c_c00415{width:70.263301pt;}
._d_c00415{width:71.511317pt;}
._9_c00415{width:76.980041pt;}
._f_c00415{width:110.740740pt;}
._e_c00415{width:113.873067pt;}
._3_c00415{width:172.434211pt;}
._0_c00415{width:173.640626pt;}
._4_c00415{width:243.138133pt;}
._2_c00415{width:244.413867pt;}
._1_c00415{width:245.689600pt;}
._7_c00415{width:309.698133pt;}
._b_c00415{width:310.973867pt;}
._8_c00415{width:342.875733pt;}
._10_c00415{width:606.986667pt;}
._5_c00415{width:901.042249pt;}
.fs1_c00415{font-size:11.520000pt;}
.fs22_c00415{font-size:18.667200pt;}
.fs2_c00415{font-size:20.480000pt;}
.fs4_c00415{font-size:21.760000pt;}
.fs1e_c00415{font-size:21.866667pt;}
.fs23_c00415{font-size:22.933867pt;}
.fs1d_c00415{font-size:25.600533pt;}
.fs3_c00415{font-size:27.200000pt;}
.fs7_c00415{font-size:27.733333pt;}
.fsd_c00415{font-size:28.160000pt;}
.fs6_c00415{font-size:28.800533pt;}
.fsc_c00415{font-size:30.720000pt;}
.fs1b_c00415{font-size:30.933867pt;}
.fs19_c00415{font-size:32.533333pt;}
.fs11_c00415{font-size:35.200000pt;}
.fs1a_c00415{font-size:37.866667pt;}
.fs9_c00415{font-size:38.933867pt;}
.fs8_c00415{font-size:39.467200pt;}
.fs5_c00415{font-size:41.600533pt;}
.fsf_c00415{font-size:42.240000pt;}
.fsb_c00415{font-size:43.733333pt;}
.fs18_c00415{font-size:46.933333pt;}
.fsa_c00415{font-size:50.133333pt;}
.fs21_c00415{font-size:52.800000pt;}
.fs0_c00415{font-size:56.000000pt;}
.fs10_c00415{font-size:57.600000pt;}
.fs20_c00415{font-size:59.200000pt;}
.fs1f_c00415{font-size:64.000000pt;}
.fse_c00415{font-size:74.666667pt;}
.fs14_c00415{font-size:95.466667pt;}
.fs15_c00415{font-size:110.080000pt;}
.fs17_c00415{font-size:114.666667pt;}
.fs12_c00415{font-size:128.000000pt;}
.fs1c_c00415{font-size:215.467200pt;}
.fs16_c00415{font-size:338.666667pt;}
.fs13_c00415{font-size:384.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y72_c00415{bottom:29.440000pt;}
.y71_c00415{bottom:104.960000pt;}
.y70_c00415{bottom:122.893333pt;}
.y4f_c00415{bottom:171.533333pt;}
.y36_c00415{bottom:178.240000pt;}
.y4e_c00415{bottom:192.653333pt;}
.y4d_c00415{bottom:214.413333pt;}
.y18_c00415{bottom:216.333333pt;}
.y17_c00415{bottom:222.720000pt;}
.y6f_c00415{bottom:223.053333pt;}
.y16_c00415{bottom:229.453333pt;}
.y6e_c00415{bottom:229.773333pt;}
.y15_c00415{bottom:234.240000pt;}
.y14_c00415{bottom:243.853333pt;}
.y34_c00415{bottom:244.173333pt;}
.y35_c00415{bottom:249.293333pt;}
.y13_c00415{bottom:250.893333pt;}
.y33_c00415{bottom:255.680000pt;}
.y12_c00415{bottom:256.000000pt;}
.y11_c00415{bottom:264.653333pt;}
.y6d_c00415{bottom:265.613333pt;}
.y10_c00415{bottom:271.053333pt;}
.y6c_c00415{bottom:271.373333pt;}
.y31_c00415{bottom:276.813333pt;}
.y6b_c00415{bottom:277.133333pt;}
.y32_c00415{bottom:277.453333pt;}
.yf_c00415{bottom:277.773333pt;}
.ye_c00415{bottom:290.893333pt;}
.y6a_c00415{bottom:291.200000pt;}
.y4c_c00415{bottom:292.813333pt;}
.yd_c00415{bottom:295.373333pt;}
.y4b_c00415{bottom:298.240000pt;}
.y44_c00415{bottom:309.453333pt;}
.y30_c00415{bottom:309.773333pt;}
.y4a_c00415{bottom:311.680000pt;}
.y43_c00415{bottom:342.733333pt;}
.y69_c00415{bottom:343.053333pt;}
.y2f_c00415{bottom:343.360000pt;}
.y2e_c00415{bottom:381.773333pt;}
.y50_c00415{bottom:382.093333pt;}
.y68_c00415{bottom:382.400000pt;}
.y2d_c00415{bottom:389.133333pt;}
.y49_c00415{bottom:389.440000pt;}
.y67_c00415{bottom:390.093333pt;}
.y2c_c00415{bottom:403.200000pt;}
.y48_c00415{bottom:403.533333pt;}
.y66_c00415{bottom:404.480000pt;}
.y2b_c00415{bottom:474.240000pt;}
.y65_c00415{bottom:474.893333pt;}
.y42_c00415{bottom:475.200000pt;}
.y47_c00415{bottom:477.133333pt;}
.y46_c00415{bottom:492.813333pt;}
.y45_c00415{bottom:509.129199pt;}
.y41_c00415{bottom:512.000000pt;}
.y2a_c00415{bottom:512.320000pt;}
.yc_c00415{bottom:512.653333pt;}
.y64_c00415{bottom:512.973333pt;}
.y29_c00415{bottom:518.733333pt;}
.yb_c00415{bottom:519.053333pt;}
.y63_c00415{bottom:519.360000pt;}
.y28_c00415{bottom:525.440000pt;}
.ya_c00415{bottom:525.773333pt;}
.y62_c00415{bottom:526.093333pt;}
.y27_c00415{bottom:530.240000pt;}
.y9_c00415{bottom:530.573333pt;}
.y61_c00415{bottom:531.200000pt;}
.y26_c00415{bottom:539.853333pt;}
.y8_c00415{bottom:540.173333pt;}
.y60_c00415{bottom:540.480000pt;}
.y5f_c00415{bottom:540.813333pt;}
.y40_c00415{bottom:541.440000pt;}
.y25_c00415{bottom:546.893333pt;}
.y7_c00415{bottom:547.200000pt;}
.y5e_c00415{bottom:547.533333pt;}
.y6_c00415{bottom:552.000000pt;}
.y5d_c00415{bottom:552.320000pt;}
.y24_c00415{bottom:560.653333pt;}
.y5_c00415{bottom:560.973333pt;}
.y5c_c00415{bottom:561.280000pt;}
.y23_c00415{bottom:567.053333pt;}
.y4_c00415{bottom:567.360000pt;}
.y5b_c00415{bottom:567.693333pt;}
.y21_c00415{bottom:573.133333pt;}
.y5a_c00415{bottom:573.440000pt;}
.y22_c00415{bottom:573.773333pt;}
.y3_c00415{bottom:574.093333pt;}
.y3d_c00415{bottom:574.400000pt;}
.y3f_c00415{bottom:582.733333pt;}
.y20_c00415{bottom:586.893333pt;}
.y2_c00415{bottom:587.200000pt;}
.y59_c00415{bottom:587.533333pt;}
.y1f_c00415{bottom:591.360000pt;}
.y1_c00415{bottom:591.693333pt;}
.y58_c00415{bottom:592.000000pt;}
.y3c_c00415{bottom:595.853333pt;}
.y1e_c00415{bottom:598.093333pt;}
.y57_c00415{bottom:598.733333pt;}
.y1d_c00415{bottom:606.400000pt;}
.y56_c00415{bottom:606.733333pt;}
.y3e_c00415{bottom:619.853333pt;}
.y1c_c00415{bottom:639.360000pt;}
.y55_c00415{bottom:639.693333pt;}
.y3b_c00415{bottom:657.613333pt;}
.y1b_c00415{bottom:677.773333pt;}
.y3a_c00415{bottom:678.093333pt;}
.y54_c00415{bottom:679.360000pt;}
.y1a_c00415{bottom:685.133333pt;}
.y39_c00415{bottom:685.453333pt;}
.y52_c00415{bottom:686.400000pt;}
.y53_c00415{bottom:687.053333pt;}
.y19_c00415{bottom:699.853333pt;}
.y37_c00415{bottom:700.479421pt;}
.y38_c00415{bottom:701.133333pt;}
.y51_c00415{bottom:701.453333pt;}
.h3_c00415{height:7.672320pt;}
.h4_c00415{height:13.639680pt;}
.h6_c00415{height:14.492160pt;}
.h24_c00415{height:18.320836pt;}
.h10_c00415{height:18.754560pt;}
.hf_c00415{height:20.459520pt;}
.h21_c00415{height:21.460937pt;}
.h25_c00415{height:23.919306pt;}
.h20_c00415{height:26.700556pt;}
.hc_c00415{height:27.218750pt;}
.h11_c00415{height:28.131840pt;}
.h8_c00415{height:28.266148pt;}
.h5_c00415{height:28.368750pt;}
.h9_c00415{height:28.925000pt;}
.h1e_c00415{height:30.359898pt;}
.h1c_c00415{height:31.929687pt;}
.h14_c00415{height:36.712500pt;}
.h1d_c00415{height:37.164062pt;}
.hb_c00415{height:40.606806pt;}
.h7_c00415{height:40.828648pt;}
.ha_c00415{height:41.163056pt;}
.he_c00415{height:42.900521pt;}
.h1b_c00415{height:46.062500pt;}
.h13_c00415{height:47.006806pt;}
.hd_c00415{height:52.287500pt;}
.h2_c00415{height:54.960938pt;}
.h12_c00415{height:60.075000pt;}
.h23_c00415{height:61.743750pt;}
.h22_c00415{height:64.500000pt;}
.h18_c00415{height:73.313280pt;}
.h17_c00415{height:93.695312pt;}
.h1a_c00415{height:112.539062pt;}
.h15_c00415{height:125.625000pt;}
.h1f_c00415{height:306.645556pt;}
.h19_c00415{height:332.382812pt;}
.h16_c00415{height:400.500000pt;}
.h1_c00415{height:793.333333pt;}
.h0_c00415{height:793.600000pt;}
.w1_c00415{width:1122.666667pt;}
.w0_c00415{width:1122.880000pt;}
.x0_c00415{left:0.000000pt;}
.x1_c00415{left:105.520000pt;}
.x2_c00415{left:107.453333pt;}
.x4f_c00415{left:120.866667pt;}
.xe_c00415{left:122.573333pt;}
.xd_c00415{left:123.560000pt;}
.x9_c00415{left:125.440000pt;}
.xa_c00415{left:126.600000pt;}
.x50_c00415{left:167.573333pt;}
.x5f_c00415{left:173.093333pt;}
.x60_c00415{left:185.120000pt;}
.x3_c00415{left:194.413333pt;}
.xf_c00415{left:196.013333pt;}
.x6_c00415{left:202.453333pt;}
.x12_c00415{left:204.053333pt;}
.x8_c00415{left:209.093333pt;}
.x14_c00415{left:210.373333pt;}
.x61_c00415{left:243.040000pt;}
.x4_c00415{left:247.613333pt;}
.x10_c00415{left:249.213333pt;}
.x5_c00415{left:261.546667pt;}
.x11_c00415{left:263.146667pt;}
.x7_c00415{left:268.373333pt;}
.x13_c00415{left:269.653333pt;}
.x51_c00415{left:279.000000pt;}
.x62_c00415{left:294.960000pt;}
.x63_c00415{left:309.906667pt;}
.x52_c00415{left:332.960000pt;}
.x53_c00415{left:354.466667pt;}
.xb_c00415{left:365.440000pt;}
.xc_c00415{left:367.200000pt;}
.x64_c00415{left:370.160000pt;}
.x54_c00415{left:372.306667pt;}
.x24_c00415{left:382.733333pt;}
.x21_c00415{left:383.706667pt;}
.x1e_c00415{left:385.786667pt;}
.x25_c00415{left:387.400000pt;}
.x23_c00415{left:400.880000pt;}
.x65_c00415{left:415.506667pt;}
.x1d_c00415{left:423.053333pt;}
.x1f_c00415{left:439.120000pt;}
.x20_c00415{left:441.413333pt;}
.x55_c00415{left:450.160000pt;}
.x15_c00415{left:455.546699pt;}
.x66_c00415{left:470.306667pt;}
.x22_c00415{left:474.240000pt;}
.x67_c00415{left:476.360000pt;}
.x18_c00415{left:480.493333pt;}
.x29_c00415{left:481.453333pt;}
.x1a_c00415{left:486.533333pt;}
.x2c_c00415{left:487.493333pt;}
.x2f_c00415{left:509.533333pt;}
.x68_c00415{left:516.680000pt;}
.x69_c00415{left:527.560000pt;}
.x56_c00415{left:532.133333pt;}
.x27_c00415{left:536.506667pt;}
.x57_c00415{left:546.400000pt;}
.x6a_c00415{left:548.426667pt;}
.x6b_c00415{left:556.413333pt;}
.x2e_c00415{left:557.720000pt;}
.x26_c00415{left:560.894707pt;}
.x19_c00415{left:562.506667pt;}
.x2a_c00415{left:563.466667pt;}
.x6c_c00415{left:570.800000pt;}
.x6d_c00415{left:594.120000pt;}
.x28_c00415{left:603.573333pt;}
.x32_c00415{left:610.480000pt;}
.x31_c00415{left:618.026667pt;}
.x6e_c00415{left:620.680000pt;}
.x58_c00415{left:625.773333pt;}
.x2d_c00415{left:627.506667pt;}
.x30_c00415{left:629.346667pt;}
.x6f_c00415{left:639.960000pt;}
.x2b_c00415{left:645.066667pt;}
.x1b_c00415{left:650.200000pt;}
.x16_c00415{left:669.773333pt;}
.x33_c00415{left:671.613333pt;}
.x1c_c00415{left:710.973333pt;}
.x17_c00415{left:717.560000pt;}
.x34_c00415{left:726.333333pt;}
.x35_c00415{left:732.293333pt;}
.x59_c00415{left:734.546667pt;}
.x40_c00415{left:789.453333pt;}
.x4d_c00415{left:790.720000pt;}
.x41_c00415{left:791.840000pt;}
.x4e_c00415{left:792.906667pt;}
.x5a_c00415{left:795.040000pt;}
.x42_c00415{left:807.706667pt;}
.x3e_c00415{left:809.520000pt;}
.x3f_c00415{left:810.760000pt;}
.x4c_c00415{left:811.720000pt;}
.x5b_c00415{left:816.480000pt;}
.x5c_c00415{left:831.040000pt;}
.x3a_c00415{left:855.960000pt;}
.x47_c00415{left:857.560000pt;}
.x5d_c00415{left:861.600000pt;}
.x36_c00415{left:879.293333pt;}
.x43_c00415{left:880.893333pt;}
.x37_c00415{left:885.973333pt;}
.x44_c00415{left:887.253333pt;}
.x38_c00415{left:925.066667pt;}
.x45_c00415{left:926.666667pt;}
.x5e_c00415{left:939.346667pt;}
.x48_c00415{left:955.160000pt;}
.x39_c00415{left:957.306667pt;}
.x46_c00415{left:958.906667pt;}
.x4b_c00415{left:960.760000pt;}
.x3b_c00415{left:985.533333pt;}
.x49_c00415{left:987.453333pt;}
.x3d_c00415{left:991.493333pt;}
.x3c_c00415{left:1018.186667pt;}
.x4a_c00415{left:1020.106667pt;}
}





/* 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_c00416 {
    display:none;
  }
  .loading-indicator_c00416.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00416 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_c00416 { 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_c00416" -> "#page-container .classname_c00416")
 */
.pf_c00416 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00416 { /* 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_c00416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00416 { /* 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_c00416 { /* 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_c00416 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00416 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00416 {overflow:visible;}
  }
}
.c_c00416 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00416 { /* 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_c00416:after { /* webkit #35443 */
  content: '';
}
.t_c00416:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00416 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 */
}
.__c00416 { /* 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_c00416 { /* info for Javascript */
  display:none;
}
.l_c00416 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00416 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00416 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00416: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_c00416 {
    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_c00416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00416.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_c00416 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00416{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00416;src:url('chunks/assets/font_a3d5699696cacb64373c2940.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:0.666000;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_c00416;src:url('chunks/assets/font_c0fcd0ac9c8606d5c9c62456.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;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_c00416;src:url('chunks/assets/font_26d42f887a8e976685363a72.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.284668;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_c00416;src:url('chunks/assets/font_7021b66e61be536e5d581c22.woff2')format("woff");}.ff4_c00416{font-family:ff4_c00416;line-height:1.284180;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_c00416;src:url('chunks/assets/font_d15abbd02c92a06e84a96743.woff2')format("woff");}.ff5_c00416{font-family:ff5_c00416;line-height:1.311035;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_c00416;src:url('chunks/assets/font_92d495df5e6219e7a7161b7b.woff2')format("woff");}.ff6_c00416{font-family:ff6_c00416;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:ff7_c00416;src:url('chunks/assets/font_5a5c78892f0026a428f7a95b.woff2')format("woff");}.ff7_c00416{font-family:ff7_c00416;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_c00416;src:url('chunks/assets/font_8b870a328fd60754816d5711.woff2')format("woff");}.ff8_c00416{font-family:ff8_c00416;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;}
.m8_c00416{transform:matrix(0.112028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112028,0.000000,0.000000,0.250000,0,0);}
.m31_c00416{transform:matrix(0.128462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128462,0.000000,0.000000,0.250000,0,0);}
.m35_c00416{transform:matrix(0.137007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137007,0.000000,0.000000,0.250000,0,0);}
.m1b_c00416{transform:matrix(0.144748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144748,0.000000,0.000000,0.250000,0,0);}
.m5_c00416{transform:matrix(0.150479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150479,0.000000,0.000000,0.250000,0,0);}
.m27_c00416{transform:matrix(0.155643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155643,0.000000,0.000000,0.250000,0,0);}
.m32_c00416{transform:matrix(0.157322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157322,0.000000,0.000000,0.250000,0,0);}
.m12_c00416{transform:matrix(0.164161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164161,0.000000,0.000000,0.250000,0,0);}
.m4_c00416{transform:matrix(0.194112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194112,0.000000,0.000000,0.250000,0,0);}
.m21_c00416{transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);}
.m37_c00416{transform:matrix(0.207056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207056,0.000000,0.000000,0.250000,0,0);}
.m1d_c00416{transform:matrix(0.207899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207899,0.000000,0.000000,0.250000,0,0);}
.m3_c00416{transform:matrix(0.210947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210947,0.000000,0.000000,0.250000,0,0);}
.m26_c00416{transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);}
.m2d_c00416{transform:matrix(0.215727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215727,0.000000,0.000000,0.250000,0,0);}
.m24_c00416{transform:matrix(0.216217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216217,0.000000,0.000000,0.250000,0,0);}
.m11_c00416{transform:matrix(0.219996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219996,0.000000,0.000000,0.250000,0,0);}
.m36_c00416{transform:matrix(0.220532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220532,0.000000,0.000000,0.250000,0,0);}
.m3d_c00416{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m3c_c00416{transform:matrix(0.224996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224996,0.000000,0.000000,0.250000,0,0);}
.md_c00416{transform:matrix(0.225470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225470,0.000000,0.000000,0.250000,0,0);}
.m4b_c00416{transform:matrix(0.228361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228361,0.000000,0.000000,0.250000,0,0);}
.m10_c00416{transform:matrix(0.230122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230122,0.000000,0.000000,0.250000,0,0);}
.me_c00416{transform:matrix(0.230838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230838,0.000000,0.000000,0.250000,0,0);}
.m44_c00416{transform:matrix(0.231813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231813,0.000000,0.000000,0.250000,0,0);}
.m4c_c00416{transform:matrix(0.232564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232564,0.000000,0.000000,0.250000,0,0);}
.m40_c00416{transform:matrix(0.232719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232719,0.000000,0.000000,0.250000,0,0);}
.m49_c00416{transform:matrix(0.233006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233006,0.000000,0.000000,0.250000,0,0);}
.m47_c00416{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.m46_c00416{transform:matrix(0.235504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235504,0.000000,0.000000,0.250000,0,0);}
.m39_c00416{transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);}
.m1e_c00416{transform:matrix(0.235897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235897,0.000000,0.000000,0.250000,0,0);}
.m48_c00416{transform:matrix(0.237702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237702,0.000000,0.000000,0.250000,0,0);}
.m43_c00416{transform:matrix(0.237983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237983,0.000000,0.000000,0.250000,0,0);}
.m3b_c00416{transform:matrix(0.238006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238006,0.000000,0.000000,0.250000,0,0);}
.m4f_c00416{transform:matrix(0.239797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239797,0.000000,0.000000,0.250000,0,0);}
.m45_c00416{transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);}
.m41_c00416{transform:matrix(0.240731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240731,0.000000,0.000000,0.250000,0,0);}
.m4e_c00416{transform:matrix(0.241634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241634,0.000000,0.000000,0.250000,0,0);}
.m50_c00416{transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);}
.m3f_c00416{transform:matrix(0.245629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245629,0.000000,0.000000,0.250000,0,0);}
.m4d_c00416{transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);}
.m3a_c00416{transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);}
.m4a_c00416{transform:matrix(0.246401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246401,0.000000,0.000000,0.250000,0,0);}
.m18_c00416{transform:matrix(0.246551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246551,0.000000,0.000000,0.250000,0,0);}
.m1c_c00416{transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);}
.m2_c00416{transform:matrix(0.247170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247170,0.000000,0.000000,0.250000,0,0);}
.m42_c00416{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m3e_c00416{transform:matrix(0.249446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249446,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{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);}
.ma_c00416{transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);}
.m30_c00416{transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);}
.m1f_c00416{transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);}
.m13_c00416{transform:matrix(0.253446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253446,0.000000,0.000000,0.250000,0,0);}
.m29_c00416{transform:matrix(0.253980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253980,0.000000,0.000000,0.250000,0,0);}
.m25_c00416{transform:matrix(0.255794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255794,0.000000,0.000000,0.250000,0,0);}
.m17_c00416{transform:matrix(0.256635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256635,0.000000,0.000000,0.250000,0,0);}
.m1a_c00416{transform:matrix(0.257385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257385,0.000000,0.000000,0.250000,0,0);}
.m2a_c00416{transform:matrix(0.262912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262912,0.000000,0.000000,0.250000,0,0);}
.m38_c00416{transform:matrix(0.263108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263108,0.000000,0.000000,0.250000,0,0);}
.m2f_c00416{transform:matrix(0.263763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263763,0.000000,0.000000,0.250000,0,0);}
.mb_c00416{transform:matrix(0.264537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264537,0.000000,0.000000,0.250000,0,0);}
.m28_c00416{transform:matrix(0.268956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268956,0.000000,0.000000,0.250000,0,0);}
.mc_c00416{transform:matrix(0.272525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272525,0.000000,0.000000,0.250000,0,0);}
.m6_c00416{transform:matrix(0.272996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272996,0.000000,0.000000,0.250000,0,0);}
.m22_c00416{transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);}
.m23_c00416{transform:matrix(0.279848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279848,0.000000,0.000000,0.250000,0,0);}
.mf_c00416{transform:matrix(0.279862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279862,0.000000,0.000000,0.250000,0,0);}
.m2b_c00416{transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);}
.m33_c00416{transform:matrix(0.284875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284875,0.000000,0.000000,0.250000,0,0);}
.m2c_c00416{transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);}
.m15_c00416{transform:matrix(0.293091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293091,0.000000,0.000000,0.250000,0,0);}
.m34_c00416{transform:matrix(0.295275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295275,0.000000,0.000000,0.250000,0,0);}
.m16_c00416{transform:matrix(0.310824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310824,0.000000,0.000000,0.250000,0,0);}
.m7_c00416{transform:matrix(0.313060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313060,0.000000,0.000000,0.250000,0,0);}
.m20_c00416{transform:matrix(0.338490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338490,0.000000,0.000000,0.250000,0,0);}
.m2e_c00416{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.m14_c00416{transform:matrix(0.378258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378258,0.000000,0.000000,0.250000,0,0);}
.m0_c00416{transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);}
.m19_c00416{transform:matrix(0.638900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638900,0.000000,0.000000,0.250000,0,0);}
.m9_c00416{transform:matrix(0.666667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666667,0.000000,0.000000,0.250000,0,0);}
.v1_c00416{vertical-align:-1.420819px;}
.v0_c00416{vertical-align:0.000000px;}
.v2_c00416{vertical-align:1.420819px;}
.v4_c00416{vertical-align:2.820000px;}
.v3_c00416{vertical-align:20.160000px;}
.ls22_c00416{letter-spacing:-8.946000px;}
.ls1b_c00416{letter-spacing:-8.442021px;}
.ls28_c00416{letter-spacing:-4.263000px;}
.ls2c_c00416{letter-spacing:-2.520000px;}
.ls2d_c00416{letter-spacing:-2.455200px;}
.ls2e_c00416{letter-spacing:-2.304000px;}
.ls19_c00416{letter-spacing:-2.247000px;}
.ls31_c00416{letter-spacing:-2.232000px;}
.lsc_c00416{letter-spacing:-1.638021px;}
.ls33_c00416{letter-spacing:-1.605600px;}
.ls12_c00416{letter-spacing:-1.554021px;}
.ls2f_c00416{letter-spacing:-1.548000px;}
.ls32_c00416{letter-spacing:-1.540800px;}
.ls10_c00416{letter-spacing:-1.358658px;}
.ls17_c00416{letter-spacing:-1.243217px;}
.ls16_c00416{letter-spacing:-1.239021px;}
.ls2b_c00416{letter-spacing:-1.155021px;}
.lsb_c00416{letter-spacing:-1.134021px;}
.ls6_c00416{letter-spacing:-1.050000px;}
.lsa_c00416{letter-spacing:-0.987000px;}
.ls35_c00416{letter-spacing:-0.903021px;}
.ls36_c00416{letter-spacing:-0.846260px;}
.lsf_c00416{letter-spacing:-0.759250px;}
.lsd_c00416{letter-spacing:-0.714850px;}
.ls37_c00416{letter-spacing:-0.691456px;}
.ls34_c00416{letter-spacing:-0.376750px;}
.ls5_c00416{letter-spacing:0.000000px;}
.ls7_c00416{letter-spacing:0.027000px;}
.ls15_c00416{letter-spacing:0.079921px;}
.ls29_c00416{letter-spacing:0.184443px;}
.ls4_c00416{letter-spacing:0.599408px;}
.ls1f_c00416{letter-spacing:0.630489px;}
.ls27_c00416{letter-spacing:0.679329px;}
.ls1e_c00416{letter-spacing:0.981253px;}
.ls8_c00416{letter-spacing:0.996853px;}
.ls20_c00416{letter-spacing:1.083375px;}
.ls25_c00416{letter-spacing:1.136655px;}
.ls3_c00416{letter-spacing:1.185496px;}
.ls1d_c00416{letter-spacing:1.252097px;}
.ls2a_c00416{letter-spacing:1.345338px;}
.ls1c_c00416{letter-spacing:1.420819px;}
.ls1_c00416{letter-spacing:1.443020px;}
.ls24_c00416{letter-spacing:1.562901px;}
.ls9_c00416{letter-spacing:1.625188px;}
.ls21_c00416{letter-spacing:1.704983px;}
.ls13_c00416{letter-spacing:1.740030px;}
.ls26_c00416{letter-spacing:1.770030px;}
.ls30_c00416{letter-spacing:2.114640px;}
.lse_c00416{letter-spacing:2.122349px;}
.ls18_c00416{letter-spacing:2.162309px;}
.ls0_c00416{letter-spacing:2.166749px;}
.ls2_c00416{letter-spacing:2.220030px;}
.ls11_c00416{letter-spacing:2.340030px;}
.ls14_c00416{letter-spacing:2.370030px;}
.ls23_c00416{letter-spacing:5.280000px;}
.ls1a_c00416{letter-spacing:21.210030px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{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__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00416{word-spacing:0.000000px;}
._12_c00416{width:2.160000px;}
._11_c00416{width:8.596800px;}
._a_c00416{width:25.380000px;}
._e_c00416{width:81.941307px;}
._d_c00416{width:83.362127px;}
._c_c00416{width:86.035043px;}
._10_c00416{width:129.466207px;}
._f_c00416{width:130.538664px;}
._1_c00416{width:200.948235px;}
._6_c00416{width:202.422335px;}
._5_c00416{width:225.439606px;}
._0_c00416{width:226.860426px;}
._7_c00416{width:270.577256px;}
._3_c00416{width:273.530400px;}
._2_c00416{width:276.400800px;}
._9_c00416{width:349.845600px;}
._8_c00416{width:351.530400px;}
._b_c00416{width:352.747200px;}
._4_c00416{width:1111.271537px;}
.fc0_c00416{color:transparent;}
.fs0_c00416{font-size:12.960000px;}
.fs22_c00416{font-size:23.400600px;}
.fs23_c00416{font-size:25.800600px;}
.fs1a_c00416{font-size:25.920000px;}
.fs6_c00416{font-size:28.200000px;}
.fs3_c00416{font-size:28.800600px;}
.fs19_c00416{font-size:29.400600px;}
.fs2_c00416{font-size:30.000000px;}
.fsa_c00416{font-size:30.600000px;}
.fs1_c00416{font-size:31.200000px;}
.fs8_c00416{font-size:32.400600px;}
.fs1d_c00416{font-size:33.000600px;}
.fs5_c00416{font-size:34.800600px;}
.fs11_c00416{font-size:35.400600px;}
.fs7_c00416{font-size:44.400600px;}
.fs4_c00416{font-size:46.800600px;}
.fsf_c00416{font-size:47.400600px;}
.fsb_c00416{font-size:49.200000px;}
.fs10_c00416{font-size:49.800000px;}
.fs9_c00416{font-size:56.400000px;}
.fsd_c00416{font-size:58.200000px;}
.fs20_c00416{font-size:59.400000px;}
.fs21_c00416{font-size:61.800000px;}
.fs12_c00416{font-size:64.200000px;}
.fs1f_c00416{font-size:72.000000px;}
.fsc_c00416{font-size:76.320000px;}
.fs18_c00416{font-size:105.600000px;}
.fse_c00416{font-size:112.200600px;}
.fs1b_c00416{font-size:121.800000px;}
.fs13_c00416{font-size:124.800000px;}
.fs16_c00416{font-size:138.240000px;}
.fs1e_c00416{font-size:195.000000px;}
.fs15_c00416{font-size:241.200600px;}
.fs17_c00416{font-size:255.600000px;}
.fs1c_c00416{font-size:354.000000px;}
.fs14_c00416{font-size:424.200600px;}
.y0_c00416{bottom:0.000000px;}
.y67_c00416{bottom:33.120000px;}
.y66_c00416{bottom:115.920000px;}
.y65_c00416{bottom:136.440000px;}
.y54_c00416{bottom:192.975000px;}
.y42_c00416{bottom:200.895000px;}
.y41_c00416{bottom:201.255000px;}
.y63_c00416{bottom:201.600000px;}
.y64_c00416{bottom:202.335000px;}
.y53_c00416{bottom:217.095000px;}
.y40_c00416{bottom:243.735000px;}
.y19_c00416{bottom:244.095000px;}
.y62_c00416{bottom:250.935000px;}
.y18_c00416{bottom:251.295000px;}
.y61_c00416{bottom:258.495000px;}
.y17_c00416{bottom:258.855000px;}
.y3f_c00416{bottom:267.135000px;}
.y16_c00416{bottom:267.495000px;}
.y15_c00416{bottom:273.600000px;}
.y60_c00416{bottom:274.695000px;}
.y3e_c00416{bottom:275.055000px;}
.y3c_c00416{bottom:275.415000px;}
.y3d_c00416{bottom:280.815000px;}
.y5f_c00416{bottom:280.816703px;}
.y14_c00416{bottom:281.179408px;}
.y13_c00416{bottom:288.375000px;}
.y3b_c00416{bottom:298.095000px;}
.y12_c00416{bottom:298.455000px;}
.y11_c00416{bottom:305.640000px;}
.y3a_c00416{bottom:311.775000px;}
.y38_c00416{bottom:312.135000px;}
.y39_c00416{bottom:312.855000px;}
.y10_c00416{bottom:313.215000px;}
.y37_c00416{bottom:327.600000px;}
.yf_c00416{bottom:327.975000px;}
.y36_c00416{bottom:332.640000px;}
.ye_c00416{bottom:333.000000px;}
.y52_c00416{bottom:334.455000px;}
.y51_c00416{bottom:335.895000px;}
.y35_c00416{bottom:340.215000px;}
.y34_c00416{bottom:348.855000px;}
.y50_c00416{bottom:361.095000px;}
.y33_c00416{bottom:385.935000px;}
.y32_c00416{bottom:386.280000px;}
.y31_c00416{bottom:429.855000px;}
.y5e_c00416{bottom:430.200000px;}
.y30_c00416{bottom:438.120000px;}
.y5d_c00416{bottom:438.855000px;}
.y2f_c00416{bottom:453.975000px;}
.y4b_c00416{bottom:454.335000px;}
.y5c_c00416{bottom:455.415000px;}
.y2d_c00416{bottom:529.575000px;}
.y2e_c00416{bottom:533.520000px;}
.y5b_c00416{bottom:533.895000px;}
.y2c_c00416{bottom:534.600000px;}
.y4a_c00416{bottom:536.776862px;}
.y49_c00416{bottom:554.415000px;}
.y48_c00416{bottom:573.495000px;}
.y2b_c00416{bottom:576.360000px;}
.yd_c00416{bottom:576.735000px;}
.yc_c00416{bottom:583.935000px;}
.y2a_c00416{bottom:591.120000px;}
.yb_c00416{bottom:591.495000px;}
.y29_c00416{bottom:599.775000px;}
.ya_c00416{bottom:600.120000px;}
.y28_c00416{bottom:605.895000px;}
.y9_c00416{bottom:606.255000px;}
.y26_c00416{bottom:607.695000px;}
.y27_c00416{bottom:613.440000px;}
.y5a_c00416{bottom:613.815000px;}
.y8_c00416{bottom:613.816108px;}
.y7_c00416{bottom:621.000000px;}
.y59_c00416{bottom:621.360000px;}
.y25_c00416{bottom:630.735000px;}
.y6_c00416{bottom:631.095000px;}
.y47_c00416{bottom:631.440000px;}
.y5_c00416{bottom:638.280000px;}
.y58_c00416{bottom:638.655000px;}
.y24_c00416{bottom:644.415000px;}
.y22_c00416{bottom:644.775000px;}
.y23_c00416{bottom:645.495000px;}
.y4_c00416{bottom:645.855000px;}
.y21_c00416{bottom:660.255000px;}
.y3_c00416{bottom:660.600000px;}
.y20_c00416{bottom:665.280000px;}
.y2_c00416{bottom:665.655000px;}
.y1_c00416{bottom:673.200000px;}
.y1f_c00416{bottom:681.855000px;}
.y46_c00416{bottom:713.895000px;}
.y1e_c00416{bottom:718.935000px;}
.y1d_c00416{bottom:719.280000px;}
.y4f_c00416{bottom:739.440000px;}
.y4d_c00416{bottom:740.520000px;}
.y1c_c00416{bottom:762.495000px;}
.y4e_c00416{bottom:763.575000px;}
.y4c_c00416{bottom:764.280000px;}
.y1b_c00416{bottom:770.775000px;}
.y45_c00416{bottom:771.135000px;}
.y56_c00416{bottom:771.495000px;}
.y57_c00416{bottom:772.560000px;}
.y1a_c00416{bottom:787.335000px;}
.y43_c00416{bottom:787.695000px;}
.y44_c00416{bottom:788.400000px;}
.y55_c00416{bottom:789.135000px;}
.h2_c00416{height:8.631360px;}
.h1f_c00416{height:17.262720px;}
.h25_c00416{height:24.406095px;}
.h26_c00416{height:26.909220px;}
.h8_c00416{height:29.411719px;}
.h5_c00416{height:30.038126px;}
.h4_c00416{height:31.289062px;}
.ha_c00416{height:31.799417px;}
.hc_c00416{height:31.914844px;}
.h22_c00416{height:32.388284px;}
.h3_c00416{height:32.540625px;}
.h7_c00416{height:34.154886px;}
.h14_c00416{height:34.743753px;}
.h17_c00416{height:35.348625px;}
.h10_c00416{height:43.576761px;}
.h6_c00416{height:45.932229px;}
.h9_c00416{height:46.308438px;}
.h16_c00416{height:47.729257px;}
.h12_c00416{height:47.770917px;}
.hd_c00416{height:48.263086px;}
.h13_c00416{height:48.875977px;}
.h1e_c00416{height:49.128438px;}
.he_c00416{height:50.829120px;}
.hf_c00416{height:57.120117px;}
.hb_c00416{height:58.823438px;}
.h15_c00416{height:66.958594px;}
.h24_c00416{height:72.562500px;}
.h1b_c00416{height:92.067840px;}
.h1d_c00416{height:106.425000px;}
.h11_c00416{height:117.021720px;}
.h20_c00416{height:119.540039px;}
.h18_c00416{height:122.484375px;}
.h23_c00416{height:203.378906px;}
.h1a_c00416{height:251.564688px;}
.h1c_c00416{height:257.596875px;}
.h21_c00416{height:369.210938px;}
.h19_c00416{height:416.329690px;}
.h1_c00416{height:892.500000px;}
.h0_c00416{height:892.800000px;}
.w1_c00416{width:1263.000000px;}
.w0_c00416{width:1263.240000px;}
.x0_c00416{left:0.000000px;}
.x1_c00416{left:121.695000px;}
.x2_c00416{left:123.660000px;}
.x49_c00416{left:138.855000px;}
.x17_c00416{left:140.055000px;}
.xd_c00416{left:141.885000px;}
.x8_c00416{left:143.910000px;}
.xa_c00416{left:144.945000px;}
.x57_c00416{left:169.095000px;}
.x4a_c00416{left:189.960000px;}
.x58_c00416{left:220.125000px;}
.x3_c00416{left:221.940000px;}
.x10_c00416{left:223.740000px;}
.x6_c00416{left:231.345000px;}
.x13_c00416{left:233.145000px;}
.x7_c00416{left:238.830000px;}
.x14_c00416{left:240.270000px;}
.xf_c00416{left:257.325000px;}
.x59_c00416{left:279.270000px;}
.x4_c00416{left:282.525000px;}
.x11_c00416{left:284.325000px;}
.x5a_c00416{left:295.725000px;}
.x5_c00416{left:298.200000px;}
.x12_c00416{left:299.640000px;}
.x4b_c00416{left:310.995000px;}
.x5b_c00416{left:363.510000px;}
.x4c_c00416{left:368.805000px;}
.x4d_c00416{left:390.870000px;}
.x4e_c00416{left:407.685000px;}
.xb_c00416{left:413.205000px;}
.x16_c00416{left:414.360000px;}
.xc_c00416{left:416.100000px;}
.x18_c00416{left:433.080000px;}
.xe_c00416{left:434.190000px;}
.x9_c00416{left:436.335000px;}
.x15_c00416{left:438.345000px;}
.x4f_c00416{left:491.325000px;}
.x21_c00416{left:493.935000px;}
.x19_c00416{left:515.355000px;}
.x20_c00416{left:521.220000px;}
.x5c_c00416{left:529.050000px;}
.x5d_c00416{left:535.905000px;}
.x1c_c00416{left:543.105000px;}
.x25_c00416{left:544.545000px;}
.x1e_c00416{left:550.230000px;}
.x5e_c00416{left:572.340000px;}
.x50_c00416{left:582.090000px;}
.x1a_c00416{left:591.645000px;}
.x5f_c00416{left:593.505000px;}
.x51_c00416{left:595.620000px;}
.x23_c00416{left:607.140000px;}
.x60_c00416{left:616.980000px;}
.x61_c00416{left:625.965000px;}
.x22_c00416{left:634.935000px;}
.x1d_c00416{left:636.840000px;}
.x62_c00416{left:642.150000px;}
.x1f_c00416{left:646.410000px;}
.x63_c00416{left:668.385000px;}
.x24_c00416{left:683.070000px;}
.x30_c00416{left:690.840000px;}
.x2f_c00416{left:699.240000px;}
.x2e_c00416{left:714.405000px;}
.x64_c00416{left:719.955000px;}
.x2c_c00416{left:735.855000px;}
.x2d_c00416{left:754.995000px;}
.x31_c00416{left:759.150000px;}
.x27_c00416{left:765.420000px;}
.x26_c00416{left:773.400000px;}
.x1b_c00416{left:786.720000px;}
.x52_c00416{left:802.605000px;}
.x2a_c00416{left:819.990000px;}
.x2b_c00416{left:826.725000px;}
.x29_c00416{left:832.950000px;}
.x28_c00416{left:843.600000px;}
.x53_c00416{left:868.140000px;}
.x3b_c00416{left:891.000000px;}
.x46_c00416{left:892.080000px;}
.x3c_c00416{left:893.340000px;}
.x47_c00416{left:894.420000px;}
.x54_c00416{left:903.525000px;}
.x3d_c00416{left:910.980000px;}
.x39_c00416{left:912.870000px;}
.x3a_c00416{left:914.265000px;}
.x45_c00416{left:915.705000px;}
.x48_c00416{left:931.215000px;}
.x55_c00416{left:936.540000px;}
.x35_c00416{left:965.520000px;}
.x42_c00416{left:966.960000px;}
.x37_c00416{left:971.445000px;}
.x32_c00416{left:992.085000px;}
.x3f_c00416{left:993.525000px;}
.x56_c00416{left:1021.845000px;}
.x33_c00416{left:1043.580000px;}
.x40_c00416{left:1045.020000px;}
.x3e_c00416{left:1061.625000px;}
.x34_c00416{left:1080.240000px;}
.x41_c00416{left:1081.680000px;}
.x44_c00416{left:1083.030000px;}
.x38_c00416{left:1146.240000px;}
.x36_c00416{left:1147.965000px;}
.x43_c00416{left:1150.125000px;}
@media print{
.v1_c00416{vertical-align:-1.262950pt;}
.v0_c00416{vertical-align:0.000000pt;}
.v2_c00416{vertical-align:1.262950pt;}
.v4_c00416{vertical-align:2.506667pt;}
.v3_c00416{vertical-align:17.920000pt;}
.ls22_c00416{letter-spacing:-7.952000pt;}
.ls1b_c00416{letter-spacing:-7.504019pt;}
.ls28_c00416{letter-spacing:-3.789333pt;}
.ls2c_c00416{letter-spacing:-2.240000pt;}
.ls2d_c00416{letter-spacing:-2.182400pt;}
.ls2e_c00416{letter-spacing:-2.048000pt;}
.ls19_c00416{letter-spacing:-1.997333pt;}
.ls31_c00416{letter-spacing:-1.984000pt;}
.lsc_c00416{letter-spacing:-1.456019pt;}
.ls33_c00416{letter-spacing:-1.427200pt;}
.ls12_c00416{letter-spacing:-1.381352pt;}
.ls2f_c00416{letter-spacing:-1.376000pt;}
.ls32_c00416{letter-spacing:-1.369600pt;}
.ls10_c00416{letter-spacing:-1.207696pt;}
.ls17_c00416{letter-spacing:-1.105082pt;}
.ls16_c00416{letter-spacing:-1.101352pt;}
.ls2b_c00416{letter-spacing:-1.026685pt;}
.lsb_c00416{letter-spacing:-1.008019pt;}
.ls6_c00416{letter-spacing:-0.933333pt;}
.lsa_c00416{letter-spacing:-0.877333pt;}
.ls35_c00416{letter-spacing:-0.802685pt;}
.ls36_c00416{letter-spacing:-0.752231pt;}
.lsf_c00416{letter-spacing:-0.674889pt;}
.lsd_c00416{letter-spacing:-0.635422pt;}
.ls37_c00416{letter-spacing:-0.614628pt;}
.ls34_c00416{letter-spacing:-0.334889pt;}
.ls5_c00416{letter-spacing:0.000000pt;}
.ls7_c00416{letter-spacing:0.024000pt;}
.ls15_c00416{letter-spacing:0.071041pt;}
.ls29_c00416{letter-spacing:0.163949pt;}
.ls4_c00416{letter-spacing:0.532807pt;}
.ls1f_c00416{letter-spacing:0.560434pt;}
.ls27_c00416{letter-spacing:0.603848pt;}
.ls1e_c00416{letter-spacing:0.872225pt;}
.ls8_c00416{letter-spacing:0.886091pt;}
.ls20_c00416{letter-spacing:0.963000pt;}
.ls25_c00416{letter-spacing:1.010360pt;}
.ls3_c00416{letter-spacing:1.053774pt;}
.ls1d_c00416{letter-spacing:1.112975pt;}
.ls2a_c00416{letter-spacing:1.195856pt;}
.ls1c_c00416{letter-spacing:1.262950pt;}
.ls1_c00416{letter-spacing:1.282684pt;}
.ls24_c00416{letter-spacing:1.389245pt;}
.ls9_c00416{letter-spacing:1.444612pt;}
.ls21_c00416{letter-spacing:1.515540pt;}
.ls13_c00416{letter-spacing:1.546693pt;}
.ls26_c00416{letter-spacing:1.573360pt;}
.ls30_c00416{letter-spacing:1.879680pt;}
.lse_c00416{letter-spacing:1.886532pt;}
.ls18_c00416{letter-spacing:1.922053pt;}
.ls0_c00416{letter-spacing:1.925999pt;}
.ls2_c00416{letter-spacing:1.973360pt;}
.ls11_c00416{letter-spacing:2.080027pt;}
.ls14_c00416{letter-spacing:2.106693pt;}
.ls23_c00416{letter-spacing:4.693333pt;}
.ls1a_c00416{letter-spacing:18.853360pt;}
.ws0_c00416{word-spacing:0.000000pt;}
._12_c00416{width:1.920000pt;}
._11_c00416{width:7.641600pt;}
._a_c00416{width:22.560000pt;}
._e_c00416{width:72.836718pt;}
._d_c00416{width:74.099668pt;}
._c_c00416{width:76.475593pt;}
._10_c00416{width:115.081073pt;}
._f_c00416{width:116.034368pt;}
._1_c00416{width:178.620654pt;}
._6_c00416{width:179.930965pt;}
._5_c00416{width:200.390761pt;}
._0_c00416{width:201.653712pt;}
._7_c00416{width:240.513117pt;}
._3_c00416{width:243.138133pt;}
._2_c00416{width:245.689600pt;}
._9_c00416{width:310.973867pt;}
._8_c00416{width:312.471467pt;}
._b_c00416{width:313.553067pt;}
._4_c00416{width:987.796922pt;}
.fs0_c00416{font-size:11.520000pt;}
.fs22_c00416{font-size:20.800533pt;}
.fs23_c00416{font-size:22.933867pt;}
.fs1a_c00416{font-size:23.040000pt;}
.fs6_c00416{font-size:25.066667pt;}
.fs3_c00416{font-size:25.600533pt;}
.fs19_c00416{font-size:26.133867pt;}
.fs2_c00416{font-size:26.666667pt;}
.fsa_c00416{font-size:27.200000pt;}
.fs1_c00416{font-size:27.733333pt;}
.fs8_c00416{font-size:28.800533pt;}
.fs1d_c00416{font-size:29.333867pt;}
.fs5_c00416{font-size:30.933867pt;}
.fs11_c00416{font-size:31.467200pt;}
.fs7_c00416{font-size:39.467200pt;}
.fs4_c00416{font-size:41.600533pt;}
.fsf_c00416{font-size:42.133867pt;}
.fsb_c00416{font-size:43.733333pt;}
.fs10_c00416{font-size:44.266667pt;}
.fs9_c00416{font-size:50.133333pt;}
.fsd_c00416{font-size:51.733333pt;}
.fs20_c00416{font-size:52.800000pt;}
.fs21_c00416{font-size:54.933333pt;}
.fs12_c00416{font-size:57.066667pt;}
.fs1f_c00416{font-size:64.000000pt;}
.fsc_c00416{font-size:67.840000pt;}
.fs18_c00416{font-size:93.866667pt;}
.fse_c00416{font-size:99.733867pt;}
.fs1b_c00416{font-size:108.266667pt;}
.fs13_c00416{font-size:110.933333pt;}
.fs16_c00416{font-size:122.880000pt;}
.fs1e_c00416{font-size:173.333333pt;}
.fs15_c00416{font-size:214.400533pt;}
.fs17_c00416{font-size:227.200000pt;}
.fs1c_c00416{font-size:314.666667pt;}
.fs14_c00416{font-size:377.067200pt;}
.y0_c00416{bottom:0.000000pt;}
.y67_c00416{bottom:29.440000pt;}
.y66_c00416{bottom:103.040000pt;}
.y65_c00416{bottom:121.280000pt;}
.y54_c00416{bottom:171.533333pt;}
.y42_c00416{bottom:178.573333pt;}
.y41_c00416{bottom:178.893333pt;}
.y63_c00416{bottom:179.200000pt;}
.y64_c00416{bottom:179.853333pt;}
.y53_c00416{bottom:192.973333pt;}
.y40_c00416{bottom:216.653333pt;}
.y19_c00416{bottom:216.973333pt;}
.y62_c00416{bottom:223.053333pt;}
.y18_c00416{bottom:223.373333pt;}
.y61_c00416{bottom:229.773333pt;}
.y17_c00416{bottom:230.093333pt;}
.y3f_c00416{bottom:237.453333pt;}
.y16_c00416{bottom:237.773333pt;}
.y15_c00416{bottom:243.200000pt;}
.y60_c00416{bottom:244.173333pt;}
.y3e_c00416{bottom:244.493333pt;}
.y3c_c00416{bottom:244.813333pt;}
.y3d_c00416{bottom:249.613333pt;}
.y5f_c00416{bottom:249.614847pt;}
.y14_c00416{bottom:249.937251pt;}
.y13_c00416{bottom:256.333333pt;}
.y3b_c00416{bottom:264.973333pt;}
.y12_c00416{bottom:265.293333pt;}
.y11_c00416{bottom:271.680000pt;}
.y3a_c00416{bottom:277.133333pt;}
.y38_c00416{bottom:277.453333pt;}
.y39_c00416{bottom:278.093333pt;}
.y10_c00416{bottom:278.413333pt;}
.y37_c00416{bottom:291.200000pt;}
.yf_c00416{bottom:291.533333pt;}
.y36_c00416{bottom:295.680000pt;}
.ye_c00416{bottom:296.000000pt;}
.y52_c00416{bottom:297.293333pt;}
.y51_c00416{bottom:298.573333pt;}
.y35_c00416{bottom:302.413333pt;}
.y34_c00416{bottom:310.093333pt;}
.y50_c00416{bottom:320.973333pt;}
.y33_c00416{bottom:343.053333pt;}
.y32_c00416{bottom:343.360000pt;}
.y31_c00416{bottom:382.093333pt;}
.y5e_c00416{bottom:382.400000pt;}
.y30_c00416{bottom:389.440000pt;}
.y5d_c00416{bottom:390.093333pt;}
.y2f_c00416{bottom:403.533333pt;}
.y4b_c00416{bottom:403.853333pt;}
.y5c_c00416{bottom:404.813333pt;}
.y2d_c00416{bottom:470.733333pt;}
.y2e_c00416{bottom:474.240000pt;}
.y5b_c00416{bottom:474.573333pt;}
.y2c_c00416{bottom:475.200000pt;}
.y4a_c00416{bottom:477.134988pt;}
.y49_c00416{bottom:492.813333pt;}
.y48_c00416{bottom:509.773333pt;}
.y2b_c00416{bottom:512.320000pt;}
.yd_c00416{bottom:512.653333pt;}
.yc_c00416{bottom:519.053333pt;}
.y2a_c00416{bottom:525.440000pt;}
.yb_c00416{bottom:525.773333pt;}
.y29_c00416{bottom:533.133333pt;}
.ya_c00416{bottom:533.440000pt;}
.y28_c00416{bottom:538.573333pt;}
.y9_c00416{bottom:538.893333pt;}
.y26_c00416{bottom:540.173333pt;}
.y27_c00416{bottom:545.280000pt;}
.y5a_c00416{bottom:545.613333pt;}
.y8_c00416{bottom:545.614318pt;}
.y7_c00416{bottom:552.000000pt;}
.y59_c00416{bottom:552.320000pt;}
.y25_c00416{bottom:560.653333pt;}
.y6_c00416{bottom:560.973333pt;}
.y47_c00416{bottom:561.280000pt;}
.y5_c00416{bottom:567.360000pt;}
.y58_c00416{bottom:567.693333pt;}
.y24_c00416{bottom:572.813333pt;}
.y22_c00416{bottom:573.133333pt;}
.y23_c00416{bottom:573.773333pt;}
.y4_c00416{bottom:574.093333pt;}
.y21_c00416{bottom:586.893333pt;}
.y3_c00416{bottom:587.200000pt;}
.y20_c00416{bottom:591.360000pt;}
.y2_c00416{bottom:591.693333pt;}
.y1_c00416{bottom:598.400000pt;}
.y1f_c00416{bottom:606.093333pt;}
.y46_c00416{bottom:634.573333pt;}
.y1e_c00416{bottom:639.053333pt;}
.y1d_c00416{bottom:639.360000pt;}
.y4f_c00416{bottom:657.280000pt;}
.y4d_c00416{bottom:658.240000pt;}
.y1c_c00416{bottom:677.773333pt;}
.y4e_c00416{bottom:678.733333pt;}
.y4c_c00416{bottom:679.360000pt;}
.y1b_c00416{bottom:685.133333pt;}
.y45_c00416{bottom:685.453333pt;}
.y56_c00416{bottom:685.773333pt;}
.y57_c00416{bottom:686.720000pt;}
.y1a_c00416{bottom:699.853333pt;}
.y43_c00416{bottom:700.173333pt;}
.y44_c00416{bottom:700.800000pt;}
.y55_c00416{bottom:701.453333pt;}
.h2_c00416{height:7.672320pt;}
.h1f_c00416{height:15.344640pt;}
.h25_c00416{height:21.694306pt;}
.h26_c00416{height:23.919306pt;}
.h8_c00416{height:26.143750pt;}
.h5_c00416{height:26.700556pt;}
.h4_c00416{height:27.812500pt;}
.ha_c00416{height:28.266148pt;}
.hc_c00416{height:28.368750pt;}
.h22_c00416{height:28.789586pt;}
.h3_c00416{height:28.925000pt;}
.h7_c00416{height:30.359898pt;}
.h14_c00416{height:30.883336pt;}
.h17_c00416{height:31.421000pt;}
.h10_c00416{height:38.734898pt;}
.h6_c00416{height:40.828648pt;}
.h9_c00416{height:41.163056pt;}
.h16_c00416{height:42.426007pt;}
.h12_c00416{height:42.463037pt;}
.hd_c00416{height:42.900521pt;}
.h13_c00416{height:43.445313pt;}
.h1e_c00416{height:43.669723pt;}
.he_c00416{height:45.181440pt;}
.hf_c00416{height:50.773437pt;}
.hb_c00416{height:52.287500pt;}
.h15_c00416{height:59.518750pt;}
.h24_c00416{height:64.500000pt;}
.h1b_c00416{height:81.838080pt;}
.h1d_c00416{height:94.600000pt;}
.h11_c00416{height:104.019306pt;}
.h20_c00416{height:106.257812pt;}
.h18_c00416{height:108.875000pt;}
.h23_c00416{height:180.781250pt;}
.h1a_c00416{height:223.613056pt;}
.h1c_c00416{height:228.975000pt;}
.h21_c00416{height:328.187500pt;}
.h19_c00416{height:370.070836pt;}
.h1_c00416{height:793.333333pt;}
.h0_c00416{height:793.600000pt;}
.w1_c00416{width:1122.666667pt;}
.w0_c00416{width:1122.880000pt;}
.x0_c00416{left:0.000000pt;}
.x1_c00416{left:108.173333pt;}
.x2_c00416{left:109.920000pt;}
.x49_c00416{left:123.426667pt;}
.x17_c00416{left:124.493333pt;}
.xd_c00416{left:126.120000pt;}
.x8_c00416{left:127.920000pt;}
.xa_c00416{left:128.840000pt;}
.x57_c00416{left:150.306667pt;}
.x4a_c00416{left:168.853333pt;}
.x58_c00416{left:195.666667pt;}
.x3_c00416{left:197.280000pt;}
.x10_c00416{left:198.880000pt;}
.x6_c00416{left:205.640000pt;}
.x13_c00416{left:207.240000pt;}
.x7_c00416{left:212.293333pt;}
.x14_c00416{left:213.573333pt;}
.xf_c00416{left:228.733333pt;}
.x59_c00416{left:248.240000pt;}
.x4_c00416{left:251.133333pt;}
.x11_c00416{left:252.733333pt;}
.x5a_c00416{left:262.866667pt;}
.x5_c00416{left:265.066667pt;}
.x12_c00416{left:266.346667pt;}
.x4b_c00416{left:276.440000pt;}
.x5b_c00416{left:323.120000pt;}
.x4c_c00416{left:327.826667pt;}
.x4d_c00416{left:347.440000pt;}
.x4e_c00416{left:362.386667pt;}
.xb_c00416{left:367.293333pt;}
.x16_c00416{left:368.320000pt;}
.xc_c00416{left:369.866667pt;}
.x18_c00416{left:384.960000pt;}
.xe_c00416{left:385.946667pt;}
.x9_c00416{left:387.853333pt;}
.x15_c00416{left:389.640000pt;}
.x4f_c00416{left:436.733333pt;}
.x21_c00416{left:439.053333pt;}
.x19_c00416{left:458.093333pt;}
.x20_c00416{left:463.306667pt;}
.x5c_c00416{left:470.266667pt;}
.x5d_c00416{left:476.360000pt;}
.x1c_c00416{left:482.760000pt;}
.x25_c00416{left:484.040000pt;}
.x1e_c00416{left:489.093333pt;}
.x5e_c00416{left:508.746667pt;}
.x50_c00416{left:517.413333pt;}
.x1a_c00416{left:525.906667pt;}
.x5f_c00416{left:527.560000pt;}
.x51_c00416{left:529.440000pt;}
.x23_c00416{left:539.680000pt;}
.x60_c00416{left:548.426667pt;}
.x61_c00416{left:556.413333pt;}
.x22_c00416{left:564.386667pt;}
.x1d_c00416{left:566.080000pt;}
.x62_c00416{left:570.800000pt;}
.x1f_c00416{left:574.586667pt;}
.x63_c00416{left:594.120000pt;}
.x24_c00416{left:607.173333pt;}
.x30_c00416{left:614.080000pt;}
.x2f_c00416{left:621.546667pt;}
.x2e_c00416{left:635.026667pt;}
.x64_c00416{left:639.960000pt;}
.x2c_c00416{left:654.093333pt;}
.x2d_c00416{left:671.106667pt;}
.x31_c00416{left:674.800000pt;}
.x27_c00416{left:680.373333pt;}
.x26_c00416{left:687.466667pt;}
.x1b_c00416{left:699.306667pt;}
.x52_c00416{left:713.426667pt;}
.x2a_c00416{left:728.880000pt;}
.x2b_c00416{left:734.866667pt;}
.x29_c00416{left:740.400000pt;}
.x28_c00416{left:749.866667pt;}
.x53_c00416{left:771.680000pt;}
.x3b_c00416{left:792.000000pt;}
.x46_c00416{left:792.960000pt;}
.x3c_c00416{left:794.080000pt;}
.x47_c00416{left:795.040000pt;}
.x54_c00416{left:803.133333pt;}
.x3d_c00416{left:809.760000pt;}
.x39_c00416{left:811.440000pt;}
.x3a_c00416{left:812.680000pt;}
.x45_c00416{left:813.960000pt;}
.x48_c00416{left:827.746667pt;}
.x55_c00416{left:832.480000pt;}
.x35_c00416{left:858.240000pt;}
.x42_c00416{left:859.520000pt;}
.x37_c00416{left:863.506667pt;}
.x32_c00416{left:881.853333pt;}
.x3f_c00416{left:883.133333pt;}
.x56_c00416{left:908.306667pt;}
.x33_c00416{left:927.626667pt;}
.x40_c00416{left:928.906667pt;}
.x3e_c00416{left:943.666667pt;}
.x34_c00416{left:960.213333pt;}
.x41_c00416{left:961.493333pt;}
.x44_c00416{left:962.693333pt;}
.x38_c00416{left:1018.880000pt;}
.x36_c00416{left:1020.413333pt;}
.x43_c00416{left:1022.333333pt;}
}





/* 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_c00417 {
    display:none;
  }
  .loading-indicator_c00417.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00417 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_c00417 { 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_c00417" -> "#page-container .classname_c00417")
 */
.pf_c00417 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00417 { /* 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_c00417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00417 { /* 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_c00417 { /* 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_c00417 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00417 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00417 {overflow:visible;}
  }
}
.c_c00417 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00417 { /* 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_c00417:after { /* webkit #35443 */
  content: '';
}
.t_c00417:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00417 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 */
}
.__c00417 { /* 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_c00417 { /* info for Javascript */
  display:none;
}
.l_c00417 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00417 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00417 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00417: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_c00417 {
    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_c00417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00417.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_c00417 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00417{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00417;src:url('chunks/assets/font_093569a2a0d742a65291d2a4.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.284668;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_c00417;src:url('chunks/assets/font_ebda4798edcbd9639fdcb8e1.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:0.666000;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_c00417;src:url('chunks/assets/font_7172dd6b7e7a97966eb7132a.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;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:ff4_c00417;src:url('chunks/assets/font_7021b66e61be536e5d581c22.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.284180;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_c00417;src:url('chunks/assets/font_922bd8ff2fbfd46449d54f54.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:1.311035;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_c00417;src:url('chunks/assets/font_8b870a328fd60754816d5711.woff2')format("woff");}.ff6_c00417{font-family:ff6_c00417;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:ff7_c00417;src:url('chunks/assets/font_66a07d7f5dd8069d1bc050b4.woff2')format("woff");}.ff7_c00417{font-family:ff7_c00417;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;}
.m13_c00417{transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);}
.m4_c00417{transform:matrix(0.186049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186049,0.000000,0.000000,0.250000,0,0);}
.m1f_c00417{transform:matrix(0.194504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194504,0.000000,0.000000,0.250000,0,0);}
.m1c_c00417{transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);}
.m28_c00417{transform:matrix(0.208583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208583,0.000000,0.000000,0.250000,0,0);}
.m15_c00417{transform:matrix(0.223474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223474,0.000000,0.000000,0.250000,0,0);}
.m17_c00417{transform:matrix(0.224531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224531,0.000000,0.000000,0.250000,0,0);}
.mf_c00417{transform:matrix(0.225470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225470,0.000000,0.000000,0.250000,0,0);}
.m31_c00417{transform:matrix(0.228361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228361,0.000000,0.000000,0.250000,0,0);}
.m2b_c00417{transform:matrix(0.228802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228802,0.000000,0.000000,0.250000,0,0);}
.m10_c00417{transform:matrix(0.230838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230838,0.000000,0.000000,0.250000,0,0);}
.m24_c00417{transform:matrix(0.231813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231813,0.000000,0.000000,0.250000,0,0);}
.m32_c00417{transform:matrix(0.232564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232564,0.000000,0.000000,0.250000,0,0);}
.m2a_c00417{transform:matrix(0.232696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232696,0.000000,0.000000,0.250000,0,0);}
.m2d_c00417{transform:matrix(0.232717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232717,0.000000,0.000000,0.250000,0,0);}
.m25_c00417{transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);}
.m2f_c00417{transform:matrix(0.236858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236858,0.000000,0.000000,0.250000,0,0);}
.m20_c00417{transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);}
.m2e_c00417{transform:matrix(0.237702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237702,0.000000,0.000000,0.250000,0,0);}
.m23_c00417{transform:matrix(0.238006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238006,0.000000,0.000000,0.250000,0,0);}
.m2_c00417{transform:matrix(0.239126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239126,0.000000,0.000000,0.250000,0,0);}
.m35_c00417{transform:matrix(0.239797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239797,0.000000,0.000000,0.250000,0,0);}
.m16_c00417{transform:matrix(0.240995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240995,0.000000,0.000000,0.250000,0,0);}
.m34_c00417{transform:matrix(0.241634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241634,0.000000,0.000000,0.250000,0,0);}
.m2c_c00417{transform:matrix(0.241854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241854,0.000000,0.000000,0.250000,0,0);}
.m36_c00417{transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);}
.m33_c00417{transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);}
.m22_c00417{transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);}
.m30_c00417{transform:matrix(0.246401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246401,0.000000,0.000000,0.250000,0,0);}
.m14_c00417{transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246943,0.000000,0.000000,0.250000,0,0);}
.m26_c00417{transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);}
.m29_c00417{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m3_c00417{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.m27_c00417{transform:matrix(0.248587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248587,0.000000,0.000000,0.250000,0,0);}
.m21_c00417{transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);}
.m1b_c00417{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m0_c00417{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);}
.m11_c00417{transform:matrix(0.253036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253036,0.000000,0.000000,0.250000,0,0);}
.m7_c00417{transform:matrix(0.254788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254788,0.000000,0.000000,0.250000,0,0);}
.m1d_c00417{transform:matrix(0.256635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256635,0.000000,0.000000,0.250000,0,0);}
.mc_c00417{transform:matrix(0.257385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257385,0.000000,0.000000,0.250000,0,0);}
.m8_c00417{transform:matrix(0.260577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260577,0.000000,0.000000,0.250000,0,0);}
.me_c00417{transform:matrix(0.261368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261368,0.000000,0.000000,0.250000,0,0);}
.ma_c00417{transform:matrix(0.263763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263763,0.000000,0.000000,0.250000,0,0);}
.m5_c00417{transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);}
.m19_c00417{transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);}
.m1a_c00417{transform:matrix(0.297086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297086,0.000000,0.000000,0.250000,0,0);}
.m12_c00417{transform:matrix(0.300692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300692,0.000000,0.000000,0.250000,0,0);}
.m6_c00417{transform:matrix(0.310824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310824,0.000000,0.000000,0.250000,0,0);}
.m18_c00417{transform:matrix(0.332326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332326,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.md_c00417{transform:matrix(0.359382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359382,0.000000,0.000000,0.250000,0,0);}
.m9_c00417{transform:matrix(0.479865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479865,0.000000,0.000000,0.250000,0,0);}
.m1e_c00417{transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);}
.mb_c00417{transform:matrix(0.638900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638900,0.000000,0.000000,0.250000,0,0);}
.v3_c00417{vertical-align:-220.380000px;}
.v1_c00417{vertical-align:-1.509620px;}
.v0_c00417{vertical-align:0.000000px;}
.v2_c00417{vertical-align:1.393200px;}
.ls24_c00417{letter-spacing:-2.520000px;}
.ls25_c00417{letter-spacing:-2.455200px;}
.ls29_c00417{letter-spacing:-2.260800px;}
.ls12_c00417{letter-spacing:-2.247000px;}
.ls28_c00417{letter-spacing:-2.138400px;}
.ls1e_c00417{letter-spacing:-1.806000px;}
.ls6_c00417{letter-spacing:-1.638021px;}
.ls4_c00417{letter-spacing:-1.596000px;}
.lsb_c00417{letter-spacing:-1.554021px;}
.ls26_c00417{letter-spacing:-1.548000px;}
.lsf_c00417{letter-spacing:-1.449021px;}
.ls2a_c00417{letter-spacing:-1.245600px;}
.ls10_c00417{letter-spacing:-1.243217px;}
.ls2b_c00417{letter-spacing:-0.903021px;}
.ls2c_c00417{letter-spacing:-0.846260px;}
.lsa_c00417{letter-spacing:-0.759250px;}
.ls2d_c00417{letter-spacing:-0.691456px;}
.ls1f_c00417{letter-spacing:-0.397320px;}
.ls16_c00417{letter-spacing:-0.139320px;}
.ls2_c00417{letter-spacing:0.000000px;}
.ls27_c00417{letter-spacing:0.166860px;}
.ls21_c00417{letter-spacing:0.176404px;}
.ls14_c00417{letter-spacing:0.335400px;}
.ls11_c00417{letter-spacing:0.562440px;}
.ls8_c00417{letter-spacing:0.776890px;}
.ls23_c00417{letter-spacing:0.783840px;}
.ls3_c00417{letter-spacing:0.896718px;}
.ls1_c00417{letter-spacing:0.903000px;}
.ls5_c00417{letter-spacing:1.030094px;}
.ls18_c00417{letter-spacing:1.047854px;}
.ls1c_c00417{letter-spacing:1.136655px;}
.ls0_c00417{letter-spacing:1.185496px;}
.ls20_c00417{letter-spacing:1.217760px;}
.ls1a_c00417{letter-spacing:1.252097px;}
.ls13_c00417{letter-spacing:1.323138px;}
.ls1b_c00417{letter-spacing:1.388040px;}
.ls19_c00417{letter-spacing:1.420819px;}
.lsc_c00417{letter-spacing:1.470030px;}
.lsd_c00417{letter-spacing:1.560000px;}
.ls22_c00417{letter-spacing:1.763640px;}
.ls15_c00417{letter-spacing:1.900346px;}
.lse_c00417{letter-spacing:2.197920px;}
.ls7_c00417{letter-spacing:2.220030px;}
.ls1d_c00417{letter-spacing:2.250030px;}
.ls9_c00417{letter-spacing:2.340030px;}
.ls17_c00417{letter-spacing:21.600000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{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__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00417{word-spacing:0.000000px;}
._8_c00417{width:5.040000px;}
._3_c00417{width:52.270800px;}
._5_c00417{width:86.430000px;}
._2_c00417{width:87.455862px;}
._6_c00417{width:129.542400px;}
._0_c00417{width:271.634400px;}
._4_c00417{width:275.998080px;}
._7_c00417{width:588.469900px;}
._1_c00417{width:1114.157576px;}
.fc0_c00417{color:transparent;}
.fsb_c00417{font-size:12.960000px;}
.fs1a_c00417{font-size:21.000600px;}
.fs1_c00417{font-size:23.040000px;}
.fs1b_c00417{font-size:25.800600px;}
.fs15_c00417{font-size:28.800600px;}
.fs5_c00417{font-size:29.400600px;}
.fs2_c00417{font-size:30.600000px;}
.fse_c00417{font-size:31.200000px;}
.fsd_c00417{font-size:31.680000px;}
.fs3_c00417{font-size:33.120600px;}
.fs9_c00417{font-size:37.200000px;}
.fsf_c00417{font-size:41.400600px;}
.fs16_c00417{font-size:42.600000px;}
.fs7_c00417{font-size:44.400600px;}
.fs13_c00417{font-size:45.000600px;}
.fs6_c00417{font-size:45.600000px;}
.fs4_c00417{font-size:46.800600px;}
.fs10_c00417{font-size:51.600000px;}
.fs8_c00417{font-size:52.200000px;}
.fs12_c00417{font-size:52.800000px;}
.fs14_c00417{font-size:56.400000px;}
.fsc_c00417{font-size:60.000000px;}
.fs19_c00417{font-size:61.800000px;}
.fs11_c00417{font-size:64.200000px;}
.fs18_c00417{font-size:72.000000px;}
.fs0_c00417{font-size:88.800000px;}
.fs17_c00417{font-size:264.000000px;}
.fsa_c00417{font-size:432.000000px;}
.y0_c00417{bottom:0.000000px;}
.y3d_c00417{bottom:33.120000px;}
.y3c_c00417{bottom:156.255000px;}
.y3b_c00417{bottom:176.040000px;}
.y2d_c00417{bottom:322.207009px;}
.y2c_c00417{bottom:340.211452px;}
.y2b_c00417{bottom:358.560000px;}
.y3a_c00417{bottom:372.975000px;}
.y24_c00417{bottom:373.335000px;}
.y23_c00417{bottom:373.695000px;}
.y2a_c00417{bottom:380.895000px;}
.y39_c00417{bottom:416.520000px;}
.y22_c00417{bottom:416.895000px;}
.yb_c00417{bottom:417.255000px;}
.y21_c00417{bottom:421.935000px;}
.ya_c00417{bottom:422.280000px;}
.y20_c00417{bottom:431.655000px;}
.y9_c00417{bottom:432.000000px;}
.y8_c00417{bottom:437.415000px;}
.y1f_c00417{bottom:439.200000px;}
.y1e_c00417{bottom:446.415000px;}
.y7_c00417{bottom:446.775000px;}
.y1d_c00417{bottom:447.855000px;}
.y1b_c00417{bottom:448.200000px;}
.y38_c00417{bottom:453.255000px;}
.y1c_c00417{bottom:453.600000px;}
.y6_c00417{bottom:453.975000px;}
.y37_c00417{bottom:460.815000px;}
.y1a_c00417{bottom:461.175000px;}
.y5_c00417{bottom:461.520000px;}
.y29_c00417{bottom:466.575000px;}
.y36_c00417{bottom:470.520000px;}
.y19_c00417{bottom:470.895000px;}
.y4_c00417{bottom:471.255000px;}
.y18_c00417{bottom:478.095000px;}
.y3_c00417{bottom:478.440000px;}
.y10_c00417{bottom:479.175000px;}
.y35_c00417{bottom:484.200000px;}
.y17_c00417{bottom:484.575000px;}
.y15_c00417{bottom:484.935000px;}
.y34_c00417{bottom:485.280000px;}
.y16_c00417{bottom:485.655000px;}
.y2_c00417{bottom:486.000000px;}
.y33_c00417{bottom:500.040000px;}
.y14_c00417{bottom:500.415000px;}
.y1_c00417{bottom:500.775000px;}
.y32_c00417{bottom:505.095000px;}
.y13_c00417{bottom:512.655000px;}
.y31_c00417{bottom:521.280000px;}
.y12_c00417{bottom:521.655000px;}
.y11_c00417{bottom:558.360000px;}
.yf_c00417{bottom:558.735000px;}
.ye_c00417{bottom:600.855000px;}
.y30_c00417{bottom:601.935000px;}
.y28_c00417{bottom:609.855000px;}
.yd_c00417{bottom:610.200000px;}
.y2f_c00417{bottom:610.575000px;}
.yc_c00417{bottom:626.775000px;}
.y2e_c00417{bottom:627.495000px;}
.y27_c00417{bottom:695.175000px;}
.y26_c00417{bottom:719.280000px;}
.y25_c00417{bottom:743.415000px;}
.hd_c00417{height:8.631360px;}
.h3_c00417{height:15.344640px;}
.h1c_c00417{height:20.610940px;}
.hf_c00417{height:21.098880px;}
.h5_c00417{height:22.058320px;}
.h1d_c00417{height:26.909220px;}
.h18_c00417{height:30.038126px;}
.h7_c00417{height:30.663907px;}
.h4_c00417{height:31.914844px;}
.h10_c00417{height:32.540625px;}
.hb_c00417{height:38.798438px;}
.h19_c00417{height:41.809570px;}
.h11_c00417{height:43.179532px;}
.h8_c00417{height:44.753906px;}
.h6_c00417{height:45.932229px;}
.h9_c00417{height:46.308438px;}
.h16_c00417{height:46.934220px;}
.h12_c00417{height:50.642578px;}
.ha_c00417{height:51.205957px;}
.h14_c00417{height:52.035778px;}
.h1a_c00417{height:54.963750px;}
.h15_c00417{height:55.068750px;}
.h17_c00417{height:58.823438px;}
.he_c00417{height:58.886719px;}
.h13_c00417{height:66.958594px;}
.h1b_c00417{height:72.562500px;}
.h2_c00417{height:87.152344px;}
.hc_c00417{height:450.562500px;}
.h1_c00417{height:892.500000px;}
.h0_c00417{height:892.800000px;}
.w1_c00417{width:1263.000000px;}
.w0_c00417{width:1263.240000px;}
.x0_c00417{left:0.000000px;}
.x1_c00417{left:119.835000px;}
.x2_c00417{left:122.325000px;}
.x30_c00417{left:136.695000px;}
.x12_c00417{left:138.615000px;}
.x10_c00417{left:140.445000px;}
.xa_c00417{left:142.740000px;}
.xd_c00417{left:143.865000px;}
.x42_c00417{left:159.720000px;}
.x31_c00417{left:188.520000px;}
.xb_c00417{left:203.955000px;}
.x43_c00417{left:208.980000px;}
.x32_c00417{left:216.300000px;}
.x3_c00417{left:221.235000px;}
.x6_c00417{left:230.640000px;}
.x44_c00417{left:267.735000px;}
.x4_c00417{left:281.790000px;}
.x45_c00417{left:284.565000px;}
.x5_c00417{left:297.120000px;}
.x7_c00417{left:304.800000px;}
.x9_c00417{left:311.145000px;}
.x46_c00417{left:351.630000px;}
.x33_c00417{left:369.165000px;}
.x8_c00417{left:375.720000px;}
.x34_c00417{left:391.575000px;}
.x47_c00417{left:402.300000px;}
.x35_c00417{left:409.845000px;}
.xe_c00417{left:413.280000px;}
.xf_c00417{left:415.365000px;}
.x13_c00417{left:432.000000px;}
.x11_c00417{left:433.470000px;}
.xc_c00417{left:435.870000px;}
.x36_c00417{left:494.550000px;}
.x48_c00417{left:529.455000px;}
.x49_c00417{left:536.265000px;}
.x14_c00417{left:543.420000px;}
.x1e_c00417{left:553.965000px;}
.x18_c00417{left:557.550000px;}
.x17_c00417{left:565.680000px;}
.x4a_c00417{left:572.700000px;}
.x15_c00417{left:580.005000px;}
.x4b_c00417{left:581.625000px;}
.x37_c00417{left:586.050000px;}
.x4c_c00417{left:593.865000px;}
.x38_c00417{left:599.940000px;}
.x19_c00417{left:605.355000px;}
.x16_c00417{left:608.775000px;}
.x4d_c00417{left:617.340000px;}
.x4e_c00417{left:626.325000px;}
.x1b_c00417{left:635.670000px;}
.x4f_c00417{left:642.510000px;}
.x1d_c00417{left:649.860000px;}
.x50_c00417{left:668.745000px;}
.x1a_c00417{left:680.550000px;}
.x39_c00417{left:687.435000px;}
.x51_c00417{left:698.625000px;}
.x52_c00417{left:720.315000px;}
.x1c_c00417{left:736.560000px;}
.x3a_c00417{left:807.645000px;}
.x1f_c00417{left:818.565000px;}
.x20_c00417{left:825.225000px;}
.x3b_c00417{left:874.245000px;}
.x2c_c00417{left:891.030000px;}
.x2d_c00417{left:893.820000px;}
.x3c_c00417{left:896.940000px;}
.x2f_c00417{left:910.095000px;}
.x2e_c00417{left:911.565000px;}
.x2a_c00417{left:913.950000px;}
.x2b_c00417{left:914.985000px;}
.x3d_c00417{left:944.100000px;}
.x24_c00417{left:965.790000px;}
.x21_c00417{left:992.085000px;}
.x3e_c00417{left:1029.420000px;}
.x25_c00417{left:1038.510000px;}
.x22_c00417{left:1043.220000px;}
.x3f_c00417{left:1051.455000px;}
.x40_c00417{left:1069.815000px;}
.x26_c00417{left:1075.230000px;}
.x23_c00417{left:1079.400000px;}
.x29_c00417{left:1081.590000px;}
.x41_c00417{left:1099.605000px;}
.x27_c00417{left:1111.605000px;}
.x28_c00417{left:1148.340000px;}
@media print{
.v3_c00417{vertical-align:-195.893333pt;}
.v1_c00417{vertical-align:-1.341885pt;}
.v0_c00417{vertical-align:0.000000pt;}
.v2_c00417{vertical-align:1.238400pt;}
.ls24_c00417{letter-spacing:-2.240000pt;}
.ls25_c00417{letter-spacing:-2.182400pt;}
.ls29_c00417{letter-spacing:-2.009600pt;}
.ls12_c00417{letter-spacing:-1.997333pt;}
.ls28_c00417{letter-spacing:-1.900800pt;}
.ls1e_c00417{letter-spacing:-1.605333pt;}
.ls6_c00417{letter-spacing:-1.456019pt;}
.ls4_c00417{letter-spacing:-1.418667pt;}
.lsb_c00417{letter-spacing:-1.381352pt;}
.ls26_c00417{letter-spacing:-1.376000pt;}
.lsf_c00417{letter-spacing:-1.288019pt;}
.ls2a_c00417{letter-spacing:-1.107200pt;}
.ls10_c00417{letter-spacing:-1.105082pt;}
.ls2b_c00417{letter-spacing:-0.802685pt;}
.ls2c_c00417{letter-spacing:-0.752231pt;}
.lsa_c00417{letter-spacing:-0.674889pt;}
.ls2d_c00417{letter-spacing:-0.614628pt;}
.ls1f_c00417{letter-spacing:-0.353173pt;}
.ls16_c00417{letter-spacing:-0.123840pt;}
.ls2_c00417{letter-spacing:0.000000pt;}
.ls27_c00417{letter-spacing:0.148320pt;}
.ls21_c00417{letter-spacing:0.156803pt;}
.ls14_c00417{letter-spacing:0.298133pt;}
.ls11_c00417{letter-spacing:0.499947pt;}
.ls8_c00417{letter-spacing:0.690569pt;}
.ls23_c00417{letter-spacing:0.696747pt;}
.ls3_c00417{letter-spacing:0.797083pt;}
.ls1_c00417{letter-spacing:0.802667pt;}
.ls5_c00417{letter-spacing:0.915639pt;}
.ls18_c00417{letter-spacing:0.931426pt;}
.ls1c_c00417{letter-spacing:1.010360pt;}
.ls0_c00417{letter-spacing:1.053774pt;}
.ls20_c00417{letter-spacing:1.082453pt;}
.ls1a_c00417{letter-spacing:1.112975pt;}
.ls13_c00417{letter-spacing:1.176123pt;}
.ls1b_c00417{letter-spacing:1.233813pt;}
.ls19_c00417{letter-spacing:1.262950pt;}
.lsc_c00417{letter-spacing:1.306693pt;}
.lsd_c00417{letter-spacing:1.386667pt;}
.ls22_c00417{letter-spacing:1.567680pt;}
.ls15_c00417{letter-spacing:1.689196pt;}
.lse_c00417{letter-spacing:1.953707pt;}
.ls7_c00417{letter-spacing:1.973360pt;}
.ls1d_c00417{letter-spacing:2.000027pt;}
.ls9_c00417{letter-spacing:2.080027pt;}
.ls17_c00417{letter-spacing:19.200000pt;}
.ws0_c00417{word-spacing:0.000000pt;}
._8_c00417{width:4.480000pt;}
._3_c00417{width:46.462933pt;}
._5_c00417{width:76.826667pt;}
._2_c00417{width:77.738544pt;}
._6_c00417{width:115.148800pt;}
._0_c00417{width:241.452800pt;}
._4_c00417{width:245.331627pt;}
._7_c00417{width:523.084355pt;}
._1_c00417{width:990.362290pt;}
.fsb_c00417{font-size:11.520000pt;}
.fs1a_c00417{font-size:18.667200pt;}
.fs1_c00417{font-size:20.480000pt;}
.fs1b_c00417{font-size:22.933867pt;}
.fs15_c00417{font-size:25.600533pt;}
.fs5_c00417{font-size:26.133867pt;}
.fs2_c00417{font-size:27.200000pt;}
.fse_c00417{font-size:27.733333pt;}
.fsd_c00417{font-size:28.160000pt;}
.fs3_c00417{font-size:29.440533pt;}
.fs9_c00417{font-size:33.066667pt;}
.fsf_c00417{font-size:36.800533pt;}
.fs16_c00417{font-size:37.866667pt;}
.fs7_c00417{font-size:39.467200pt;}
.fs13_c00417{font-size:40.000533pt;}
.fs6_c00417{font-size:40.533333pt;}
.fs4_c00417{font-size:41.600533pt;}
.fs10_c00417{font-size:45.866667pt;}
.fs8_c00417{font-size:46.400000pt;}
.fs12_c00417{font-size:46.933333pt;}
.fs14_c00417{font-size:50.133333pt;}
.fsc_c00417{font-size:53.333333pt;}
.fs19_c00417{font-size:54.933333pt;}
.fs11_c00417{font-size:57.066667pt;}
.fs18_c00417{font-size:64.000000pt;}
.fs0_c00417{font-size:78.933333pt;}
.fs17_c00417{font-size:234.666667pt;}
.fsa_c00417{font-size:384.000000pt;}
.y0_c00417{bottom:0.000000pt;}
.y3d_c00417{bottom:29.440000pt;}
.y3c_c00417{bottom:138.893333pt;}
.y3b_c00417{bottom:156.480000pt;}
.y2d_c00417{bottom:286.406230pt;}
.y2c_c00417{bottom:302.410180pt;}
.y2b_c00417{bottom:318.720000pt;}
.y3a_c00417{bottom:331.533333pt;}
.y24_c00417{bottom:331.853333pt;}
.y23_c00417{bottom:332.173333pt;}
.y2a_c00417{bottom:338.573333pt;}
.y39_c00417{bottom:370.240000pt;}
.y22_c00417{bottom:370.573333pt;}
.yb_c00417{bottom:370.893333pt;}
.y21_c00417{bottom:375.053333pt;}
.ya_c00417{bottom:375.360000pt;}
.y20_c00417{bottom:383.693333pt;}
.y9_c00417{bottom:384.000000pt;}
.y8_c00417{bottom:388.813333pt;}
.y1f_c00417{bottom:390.400000pt;}
.y1e_c00417{bottom:396.813333pt;}
.y7_c00417{bottom:397.133333pt;}
.y1d_c00417{bottom:398.093333pt;}
.y1b_c00417{bottom:398.400000pt;}
.y38_c00417{bottom:402.893333pt;}
.y1c_c00417{bottom:403.200000pt;}
.y6_c00417{bottom:403.533333pt;}
.y37_c00417{bottom:409.613333pt;}
.y1a_c00417{bottom:409.933333pt;}
.y5_c00417{bottom:410.240000pt;}
.y29_c00417{bottom:414.733333pt;}
.y36_c00417{bottom:418.240000pt;}
.y19_c00417{bottom:418.573333pt;}
.y4_c00417{bottom:418.893333pt;}
.y18_c00417{bottom:424.973333pt;}
.y3_c00417{bottom:425.280000pt;}
.y10_c00417{bottom:425.933333pt;}
.y35_c00417{bottom:430.400000pt;}
.y17_c00417{bottom:430.733333pt;}
.y15_c00417{bottom:431.053333pt;}
.y34_c00417{bottom:431.360000pt;}
.y16_c00417{bottom:431.693333pt;}
.y2_c00417{bottom:432.000000pt;}
.y33_c00417{bottom:444.480000pt;}
.y14_c00417{bottom:444.813333pt;}
.y1_c00417{bottom:445.133333pt;}
.y32_c00417{bottom:448.973333pt;}
.y13_c00417{bottom:455.693333pt;}
.y31_c00417{bottom:463.360000pt;}
.y12_c00417{bottom:463.693333pt;}
.y11_c00417{bottom:496.320000pt;}
.yf_c00417{bottom:496.653333pt;}
.ye_c00417{bottom:534.093333pt;}
.y30_c00417{bottom:535.053333pt;}
.y28_c00417{bottom:542.093333pt;}
.yd_c00417{bottom:542.400000pt;}
.y2f_c00417{bottom:542.733333pt;}
.yc_c00417{bottom:557.133333pt;}
.y2e_c00417{bottom:557.773333pt;}
.y27_c00417{bottom:617.933333pt;}
.y26_c00417{bottom:639.360000pt;}
.y25_c00417{bottom:660.813333pt;}
.hd_c00417{height:7.672320pt;}
.h3_c00417{height:13.639680pt;}
.h1c_c00417{height:18.320836pt;}
.hf_c00417{height:18.754560pt;}
.h5_c00417{height:19.607395pt;}
.h1d_c00417{height:23.919306pt;}
.h18_c00417{height:26.700556pt;}
.h7_c00417{height:27.256806pt;}
.h4_c00417{height:28.368750pt;}
.h10_c00417{height:28.925000pt;}
.hb_c00417{height:34.487500pt;}
.h19_c00417{height:37.164062pt;}
.h11_c00417{height:38.381806pt;}
.h8_c00417{height:39.781250pt;}
.h6_c00417{height:40.828648pt;}
.h9_c00417{height:41.163056pt;}
.h16_c00417{height:41.719306pt;}
.h12_c00417{height:45.015625pt;}
.ha_c00417{height:45.516406pt;}
.h14_c00417{height:46.254025pt;}
.h1a_c00417{height:48.856667pt;}
.h15_c00417{height:48.950000pt;}
.h17_c00417{height:52.287500pt;}
.he_c00417{height:52.343750pt;}
.h13_c00417{height:59.518750pt;}
.h1b_c00417{height:64.500000pt;}
.h2_c00417{height:77.468750pt;}
.hc_c00417{height:400.500000pt;}
.h1_c00417{height:793.333333pt;}
.h0_c00417{height:793.600000pt;}
.w1_c00417{width:1122.666667pt;}
.w0_c00417{width:1122.880000pt;}
.x0_c00417{left:0.000000pt;}
.x1_c00417{left:106.520000pt;}
.x2_c00417{left:108.733333pt;}
.x30_c00417{left:121.506667pt;}
.x12_c00417{left:123.213333pt;}
.x10_c00417{left:124.840000pt;}
.xa_c00417{left:126.880000pt;}
.xd_c00417{left:127.880000pt;}
.x42_c00417{left:141.973333pt;}
.x31_c00417{left:167.573333pt;}
.xb_c00417{left:181.293333pt;}
.x43_c00417{left:185.760000pt;}
.x32_c00417{left:192.266667pt;}
.x3_c00417{left:196.653333pt;}
.x6_c00417{left:205.013333pt;}
.x44_c00417{left:237.986667pt;}
.x4_c00417{left:250.480000pt;}
.x45_c00417{left:252.946667pt;}
.x5_c00417{left:264.106667pt;}
.x7_c00417{left:270.933333pt;}
.x9_c00417{left:276.573333pt;}
.x46_c00417{left:312.560000pt;}
.x33_c00417{left:328.146667pt;}
.x8_c00417{left:333.973333pt;}
.x34_c00417{left:348.066667pt;}
.x47_c00417{left:357.600000pt;}
.x35_c00417{left:364.306667pt;}
.xe_c00417{left:367.360000pt;}
.xf_c00417{left:369.213333pt;}
.x13_c00417{left:384.000000pt;}
.x11_c00417{left:385.306667pt;}
.xc_c00417{left:387.440000pt;}
.x36_c00417{left:439.600000pt;}
.x48_c00417{left:470.626667pt;}
.x49_c00417{left:476.680000pt;}
.x14_c00417{left:483.040000pt;}
.x1e_c00417{left:492.413333pt;}
.x18_c00417{left:495.600000pt;}
.x17_c00417{left:502.826667pt;}
.x4a_c00417{left:509.066667pt;}
.x15_c00417{left:515.560000pt;}
.x4b_c00417{left:517.000000pt;}
.x37_c00417{left:520.933333pt;}
.x4c_c00417{left:527.880000pt;}
.x38_c00417{left:533.280000pt;}
.x19_c00417{left:538.093333pt;}
.x16_c00417{left:541.133333pt;}
.x4d_c00417{left:548.746667pt;}
.x4e_c00417{left:556.733333pt;}
.x1b_c00417{left:565.040000pt;}
.x4f_c00417{left:571.120000pt;}
.x1d_c00417{left:577.653333pt;}
.x50_c00417{left:594.440000pt;}
.x1a_c00417{left:604.933333pt;}
.x39_c00417{left:611.053333pt;}
.x51_c00417{left:621.000000pt;}
.x52_c00417{left:640.280000pt;}
.x1c_c00417{left:654.720000pt;}
.x3a_c00417{left:717.906667pt;}
.x1f_c00417{left:727.613333pt;}
.x20_c00417{left:733.533333pt;}
.x3b_c00417{left:777.106667pt;}
.x2c_c00417{left:792.026667pt;}
.x2d_c00417{left:794.506667pt;}
.x3c_c00417{left:797.280000pt;}
.x2f_c00417{left:808.973333pt;}
.x2e_c00417{left:810.280000pt;}
.x2a_c00417{left:812.400000pt;}
.x2b_c00417{left:813.320000pt;}
.x3d_c00417{left:839.200000pt;}
.x24_c00417{left:858.480000pt;}
.x21_c00417{left:881.853333pt;}
.x3e_c00417{left:915.040000pt;}
.x25_c00417{left:923.120000pt;}
.x22_c00417{left:927.306667pt;}
.x3f_c00417{left:934.626667pt;}
.x40_c00417{left:950.946667pt;}
.x26_c00417{left:955.760000pt;}
.x23_c00417{left:959.466667pt;}
.x29_c00417{left:961.413333pt;}
.x41_c00417{left:977.426667pt;}
.x27_c00417{left:988.093333pt;}
.x28_c00417{left:1020.746667pt;}
}





/* 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_c00418 {
    display:none;
  }
  .loading-indicator_c00418.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00418 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_c00418 { 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_c00418" -> "#page-container .classname_c00418")
 */
.pf_c00418 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00418 { /* 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_c00418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00418 { /* 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_c00418 { /* 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_c00418 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00418 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00418 {overflow:visible;}
  }
}
.c_c00418 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00418 { /* 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_c00418:after { /* webkit #35443 */
  content: '';
}
.t_c00418:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00418 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 */
}
.__c00418 { /* 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_c00418 { /* info for Javascript */
  display:none;
}
.l_c00418 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00418 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00418 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00418: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_c00418 {
    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_c00418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00418.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_c00418 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00418{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00418;src:url('chunks/assets/font_aa98bd6733deca72e6249430.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.284668;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_c00418;src:url('chunks/assets/font_7021b66e61be536e5d581c22.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.284180;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_c00418;src:url('chunks/assets/font_dd4b71ffa3d54068890cd73b.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:0.666000;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_c00418;src:url('chunks/assets/font_6b55ff05bca9c8266c4f5917.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;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:ff5_c00418;src:url('chunks/assets/font_6a634759aaadefec27f071d4.woff2')format("woff");}.ff5_c00418{font-family:ff5_c00418;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;}
.m7_c00418{transform:matrix(0.148029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148029,0.000000,0.000000,0.250000,0,0);}
.m8_c00418{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.m10_c00418{transform:matrix(0.232573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232573,0.000000,0.000000,0.250000,0,0);}
.m0_c00418{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.mb_c00418{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m4_c00418{transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);}
.m9_c00418{transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);}
.m1_c00418{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);}
.m2_c00418{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m6_c00418{transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);}
.m5_c00418{transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);}
.m3_c00418{transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);}
.mc_c00418{transform:matrix(0.256418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256418,0.000000,0.000000,0.250000,0,0);}
.ma_c00418{transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);}
.md_c00418{transform:matrix(0.349243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349243,0.000000,0.000000,0.250000,0,0);}
.mf_c00418{transform:matrix(0.375541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375541,0.000000,0.000000,0.250000,0,0);}
.me_c00418{transform:matrix(0.388273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388273,0.000000,0.000000,0.250000,0,0);}
.v3_c00418{vertical-align:-2.847600px;}
.v0_c00418{vertical-align:0.000000px;}
.v2_c00418{vertical-align:1.468800px;}
.v1_c00418{vertical-align:2.892600px;}
.ls8e_c00418{letter-spacing:-2.457000px;}
.ls80_c00418{letter-spacing:-2.415000px;}
.ls78_c00418{letter-spacing:-2.373000px;}
.ls72_c00418{letter-spacing:-2.352000px;}
.ls7e_c00418{letter-spacing:-1.993320px;}
.ls79_c00418{letter-spacing:-1.247520px;}
.ls8d_c00418{letter-spacing:-0.633600px;}
.ls81_c00418{letter-spacing:-0.589860px;}
.ls86_c00418{letter-spacing:-0.501720px;}
.ls7f_c00418{letter-spacing:-0.359340px;}
.ls7d_c00418{letter-spacing:-0.264420px;}
.ls7c_c00418{letter-spacing:-0.210180px;}
.ls77_c00418{letter-spacing:-0.203400px;}
.ls87_c00418{letter-spacing:-0.115260px;}
.ls84_c00418{letter-spacing:-0.094920px;}
.ls88_c00418{letter-spacing:-0.013560px;}
.ls74_c00418{letter-spacing:0.000000px;}
.ls11_c00418{letter-spacing:0.020340px;}
.ls1b_c00418{letter-spacing:0.033900px;}
.ls8b_c00418{letter-spacing:0.074580px;}
.ls85_c00418{letter-spacing:0.189840px;}
.ls6f_c00418{letter-spacing:0.216960px;}
.ls90_c00418{letter-spacing:0.345600px;}
.ls51_c00418{letter-spacing:0.359340px;}
.ls5d_c00418{letter-spacing:0.393240px;}
.ls6e_c00418{letter-spacing:0.461040px;}
.ls39_c00418{letter-spacing:0.528840px;}
.ls71_c00418{letter-spacing:0.542400px;}
.ls13_c00418{letter-spacing:0.589860px;}
.ls6b_c00418{letter-spacing:0.610200px;}
.ls63_c00418{letter-spacing:0.705120px;}
.ls34_c00418{letter-spacing:0.759360px;}
.ls6d_c00418{letter-spacing:0.820380px;}
.ls37_c00418{letter-spacing:0.894960px;}
.ls3d_c00418{letter-spacing:0.935640px;}
.ls58_c00418{letter-spacing:0.949200px;}
.ls83_c00418{letter-spacing:1.078020px;}
.ls4c_c00418{letter-spacing:1.105140px;}
.lsf_c00418{letter-spacing:1.179720px;}
.ls59_c00418{letter-spacing:1.247520px;}
.ls3f_c00418{letter-spacing:1.288200px;}
.ls32_c00418{letter-spacing:1.308540px;}
.ls89_c00418{letter-spacing:1.328880px;}
.ls26_c00418{letter-spacing:1.349220px;}
.ls4b_c00418{letter-spacing:1.362780px;}
.ls68_c00418{letter-spacing:1.389900px;}
.ls4f_c00418{letter-spacing:1.423800px;}
.ls8a_c00418{letter-spacing:1.440030px;}
.ls22_c00418{letter-spacing:1.444140px;}
.ls24_c00418{letter-spacing:1.457700px;}
.ls53_c00418{letter-spacing:1.464480px;}
.lsd_c00418{letter-spacing:1.478040px;}
.lsa_c00418{letter-spacing:1.484820px;}
.ls4a_c00418{letter-spacing:1.491600px;}
.ls67_c00418{letter-spacing:1.498380px;}
.ls8_c00418{letter-spacing:1.505160px;}
.ls1_c00418{letter-spacing:1.511940px;}
.ls4_c00418{letter-spacing:1.525500px;}
.ls1d_c00418{letter-spacing:1.532280px;}
.ls76_c00418{letter-spacing:1.539060px;}
.ls43_c00418{letter-spacing:1.579740px;}
.ls2d_c00418{letter-spacing:1.600080px;}
.ls8f_c00418{letter-spacing:1.606860px;}
.ls54_c00418{letter-spacing:1.633980px;}
.ls41_c00418{letter-spacing:1.640760px;}
.ls21_c00418{letter-spacing:1.647540px;}
.ls28_c00418{letter-spacing:1.654320px;}
.ls1e_c00418{letter-spacing:1.661100px;}
.ls1c_c00418{letter-spacing:1.667880px;}
.ls1f_c00418{letter-spacing:1.674660px;}
.ls35_c00418{letter-spacing:1.681440px;}
.ls18_c00418{letter-spacing:1.701780px;}
.ls3c_c00418{letter-spacing:1.715340px;}
.ls3e_c00418{letter-spacing:1.735680px;}
.ls12_c00418{letter-spacing:1.762800px;}
.ls2_c00418{letter-spacing:1.769580px;}
.ls14_c00418{letter-spacing:1.783140px;}
.ls65_c00418{letter-spacing:1.796700px;}
.ls62_c00418{letter-spacing:1.810260px;}
.ls19_c00418{letter-spacing:1.823820px;}
.ls29_c00418{letter-spacing:1.830600px;}
.ls17_c00418{letter-spacing:1.844160px;}
.ls7_c00418{letter-spacing:1.850940px;}
.lsb_c00418{letter-spacing:1.857720px;}
.ls69_c00418{letter-spacing:1.871280px;}
.ls49_c00418{letter-spacing:1.891620px;}
.ls3a_c00418{letter-spacing:1.911960px;}
.lse_c00418{letter-spacing:1.918740px;}
.ls46_c00418{letter-spacing:1.932300px;}
.ls50_c00418{letter-spacing:1.939080px;}
.ls2f_c00418{letter-spacing:1.952640px;}
.ls75_c00418{letter-spacing:1.966200px;}
.ls40_c00418{letter-spacing:1.972980px;}
.ls1a_c00418{letter-spacing:1.979760px;}
.ls4d_c00418{letter-spacing:1.993320px;}
.ls7b_c00418{letter-spacing:2.006880px;}
.ls36_c00418{letter-spacing:2.013660px;}
.ls6a_c00418{letter-spacing:2.020440px;}
.ls2b_c00418{letter-spacing:2.040780px;}
.ls64_c00418{letter-spacing:2.067900px;}
.ls45_c00418{letter-spacing:2.074680px;}
.ls27_c00418{letter-spacing:2.081460px;}
.ls3_c00418{letter-spacing:2.088240px;}
.ls5c_c00418{letter-spacing:2.115360px;}
.ls0_c00418{letter-spacing:2.122140px;}
.ls42_c00418{letter-spacing:2.135700px;}
.ls16_c00418{letter-spacing:2.149260px;}
.ls2c_c00418{letter-spacing:2.156040px;}
.ls9_c00418{letter-spacing:2.162820px;}
.ls70_c00418{letter-spacing:2.176380px;}
.ls82_c00418{letter-spacing:2.183160px;}
.ls20_c00418{letter-spacing:2.203500px;}
.ls2a_c00418{letter-spacing:2.217060px;}
.ls57_c00418{letter-spacing:2.237400px;}
.ls6_c00418{letter-spacing:2.244180px;}
.ls7a_c00418{letter-spacing:2.257740px;}
.ls15_c00418{letter-spacing:2.284860px;}
.ls33_c00418{letter-spacing:2.298420px;}
.ls60_c00418{letter-spacing:2.318760px;}
.ls23_c00418{letter-spacing:2.332320px;}
.ls4e_c00418{letter-spacing:2.359440px;}
.lsc_c00418{letter-spacing:2.373000px;}
.ls8c_c00418{letter-spacing:2.400000px;}
.ls5f_c00418{letter-spacing:2.406900px;}
.ls55_c00418{letter-spacing:2.420460px;}
.ls10_c00418{letter-spacing:2.434020px;}
.ls5a_c00418{letter-spacing:2.461140px;}
.ls52_c00418{letter-spacing:2.474700px;}
.ls48_c00418{letter-spacing:2.488260px;}
.ls61_c00418{letter-spacing:2.515380px;}
.ls5b_c00418{letter-spacing:2.562840px;}
.ls30_c00418{letter-spacing:2.603520px;}
.ls44_c00418{letter-spacing:2.650980px;}
.ls56_c00418{letter-spacing:2.732340px;}
.ls6c_c00418{letter-spacing:2.739120px;}
.ls5e_c00418{letter-spacing:2.745900px;}
.ls47_c00418{letter-spacing:2.800140px;}
.ls3b_c00418{letter-spacing:2.881500px;}
.ls66_c00418{letter-spacing:2.989980px;}
.ls38_c00418{letter-spacing:3.098460px;}
.ls25_c00418{letter-spacing:3.112020px;}
.ls5_c00418{letter-spacing:3.186600px;}
.ls31_c00418{letter-spacing:3.206940px;}
.ls2e_c00418{letter-spacing:3.356100px;}
.ls73_c00418{letter-spacing:3.390000px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{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__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00418{word-spacing:0.000000px;}
._14_c00418{margin-left:-8.055600px;}
._15_c00418{margin-left:-6.015240px;}
._8_c00418{margin-left:-4.264620px;}
._7_c00418{margin-left:-2.617080px;}
._5_c00418{margin-left:-1.322100px;}
._f_c00418{width:1.139040px;}
._6_c00418{width:2.142480px;}
._b_c00418{width:3.973080px;}
._e_c00418{width:5.057880px;}
._c_c00418{width:6.108780px;}
._3_c00418{width:7.763100px;}
._d_c00418{width:9.573360px;}
._9_c00418{width:11.173440px;}
._4_c00418{width:12.949800px;}
._a_c00418{width:14.821080px;}
._2_c00418{width:16.143180px;}
._0_c00418{width:17.967000px;}
._1_c00418{width:19.994220px;}
._10_c00418{width:21.845160px;}
._13_c00418{width:23.492700px;}
._11_c00418{width:24.692760px;}
._12_c00418{width:26.394540px;}
._1f_c00418{width:353.487480px;}
._1e_c00418{width:358.222380px;}
._1a_c00418{width:378.694320px;}
._16_c00418{width:401.681100px;}
._17_c00418{width:412.378200px;}
._1b_c00418{width:414.732600px;}
._1d_c00418{width:417.254760px;}
._19_c00418{width:420.129480px;}
._18_c00418{width:433.119960px;}
._1c_c00418{width:435.859080px;}
.fc0_c00418{color:transparent;}
.fs6_c00418{font-size:28.800600px;}
.fs7_c00418{font-size:48.000000px;}
.fs8_c00418{font-size:52.800000px;}
.fs3_c00418{font-size:54.720000px;}
.fsa_c00418{font-size:57.600000px;}
.fs5_c00418{font-size:66.600000px;}
.fs0_c00418{font-size:67.200000px;}
.fs1_c00418{font-size:67.800000px;}
.fs4_c00418{font-size:69.000000px;}
.fs9_c00418{font-size:70.200000px;}
.fs2_c00418{font-size:73.800000px;}
.y0_c00418{bottom:0.000000px;}
.y28_c00418{bottom:105.480000px;}
.y25_c00418{bottom:179.640000px;}
.y27_c00418{bottom:180.000000px;}
.y26_c00418{bottom:180.360000px;}
.y20_c00418{bottom:211.335000px;}
.y24_c00418{bottom:211.695000px;}
.y22_c00418{bottom:212.415000px;}
.y23_c00418{bottom:218.535000px;}
.y21_c00418{bottom:221.055000px;}
.y1f_c00418{bottom:243.375000px;}
.y1e_c00418{bottom:274.691850px;}
.y1d_c00418{bottom:337.695000px;}
.y1c_c00418{bottom:337.702350px;}
.y1b_c00418{bottom:368.297100px;}
.y1a_c00418{bottom:431.300250px;}
.y18_c00418{bottom:461.887350px;}
.y19_c00418{bottom:461.895000px;}
.y16_c00418{bottom:492.854550px;}
.y17_c00418{bottom:492.855000px;}
.y15_c00418{bottom:523.449300px;}
.y14_c00418{bottom:554.400000px;}
.y13_c00418{bottom:585.387450px;}
.y12_c00418{bottom:615.982200px;}
.y11_c00418{bottom:646.560000px;}
.y10_c00418{bottom:646.562550px;}
.yf_c00418{bottom:677.174250px;}
.ye_c00418{bottom:739.092600px;}
.yd_c00418{bottom:770.060250px;}
.yb_c00418{bottom:800.654550px;}
.yc_c00418{bottom:800.655000px;}
.ya_c00418{bottom:831.232350px;}
.y9_c00418{bottom:862.200000px;}
.y8_c00418{bottom:893.175000px;}
.y7_c00418{bottom:893.185500px;}
.y6_c00418{bottom:923.763300px;}
.y5_c00418{bottom:954.375000px;}
.y4_c00418{bottom:1015.560000px;}
.y3_c00418{bottom:1015.563300px;}
.y2_c00418{bottom:1046.175000px;}
.y1_c00418{bottom:1152.720000px;}
.hb_c00418{height:30.038126px;}
.h5_c00418{height:36.443520px;}
.hc_c00418{height:47.109375px;}
.hd_c00418{height:55.068750px;}
.h10_c00418{height:56.531250px;}
.h2_c00418{height:65.953125px;}
.h3_c00418{height:66.541992px;}
.he_c00418{height:67.981992px;}
.h9_c00418{height:69.413592px;}
.ha_c00418{height:69.421992px;}
.h8_c00418{height:69.434592px;}
.h7_c00418{height:69.461719px;}
.h6_c00418{height:71.964844px;}
.h4_c00418{height:72.394629px;}
.hf_c00418{height:73.216406px;}
.h1_c00418{height:1263.000000px;}
.h0_c00418{height:1263.240000px;}
.w1_c00418{width:892.500000px;}
.w0_c00418{width:892.800000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:110.445000px;}
.x16_c00418{left:141.810000px;}
.x24_c00418{left:144.135000px;}
.x1f_c00418{left:147.720000px;}
.x1e_c00418{left:151.815000px;}
.x1d_c00418{left:156.776550px;}
.x6_c00418{left:164.055000px;}
.x13_c00418{left:168.724800px;}
.xf_c00418{left:184.500000px;}
.xb_c00418{left:191.160000px;}
.x7_c00418{left:192.450000px;}
.x10_c00418{left:206.850000px;}
.x14_c00418{left:208.575000px;}
.xc_c00418{left:223.170000px;}
.x15_c00418{left:230.940000px;}
.x17_c00418{left:242.460000px;}
.x4_c00418{left:258.660000px;}
.x18_c00418{left:263.280000px;}
.x5_c00418{left:280.260000px;}
.x1b_c00418{left:287.100000px;}
.x8_c00418{left:305.085000px;}
.x1c_c00418{left:308.715000px;}
.x9_c00418{left:328.650000px;}
.x19_c00418{left:343.620000px;}
.x1a_c00418{left:368.115000px;}
.x25_c00418{left:423.915000px;}
.x22_c00418{left:430.755000px;}
.x20_c00418{left:431.760000px;}
.x21_c00418{left:443.775000px;}
.x2_c00418{left:481.140000px;}
.xd_c00418{left:497.535000px;}
.x3_c00418{left:507.150000px;}
.xe_c00418{left:520.395000px;}
.x23_c00418{left:565.560000px;}
.x11_c00418{left:622.830000px;}
.x12_c00418{left:667.275000px;}
.xa_c00418{left:744.450000px;}
@media print{
.v3_c00418{vertical-align:-2.531200pt;}
.v0_c00418{vertical-align:0.000000pt;}
.v2_c00418{vertical-align:1.305600pt;}
.v1_c00418{vertical-align:2.571200pt;}
.ls8e_c00418{letter-spacing:-2.184000pt;}
.ls80_c00418{letter-spacing:-2.146667pt;}
.ls78_c00418{letter-spacing:-2.109333pt;}
.ls72_c00418{letter-spacing:-2.090667pt;}
.ls7e_c00418{letter-spacing:-1.771840pt;}
.ls79_c00418{letter-spacing:-1.108907pt;}
.ls8d_c00418{letter-spacing:-0.563200pt;}
.ls81_c00418{letter-spacing:-0.524320pt;}
.ls86_c00418{letter-spacing:-0.445973pt;}
.ls7f_c00418{letter-spacing:-0.319413pt;}
.ls7d_c00418{letter-spacing:-0.235040pt;}
.ls7c_c00418{letter-spacing:-0.186827pt;}
.ls77_c00418{letter-spacing:-0.180800pt;}
.ls87_c00418{letter-spacing:-0.102453pt;}
.ls84_c00418{letter-spacing:-0.084373pt;}
.ls88_c00418{letter-spacing:-0.012053pt;}
.ls74_c00418{letter-spacing:0.000000pt;}
.ls11_c00418{letter-spacing:0.018080pt;}
.ls1b_c00418{letter-spacing:0.030133pt;}
.ls8b_c00418{letter-spacing:0.066293pt;}
.ls85_c00418{letter-spacing:0.168747pt;}
.ls6f_c00418{letter-spacing:0.192853pt;}
.ls90_c00418{letter-spacing:0.307200pt;}
.ls51_c00418{letter-spacing:0.319413pt;}
.ls5d_c00418{letter-spacing:0.349547pt;}
.ls6e_c00418{letter-spacing:0.409813pt;}
.ls39_c00418{letter-spacing:0.470080pt;}
.ls71_c00418{letter-spacing:0.482133pt;}
.ls13_c00418{letter-spacing:0.524320pt;}
.ls6b_c00418{letter-spacing:0.542400pt;}
.ls63_c00418{letter-spacing:0.626773pt;}
.ls34_c00418{letter-spacing:0.674987pt;}
.ls6d_c00418{letter-spacing:0.729227pt;}
.ls37_c00418{letter-spacing:0.795520pt;}
.ls3d_c00418{letter-spacing:0.831680pt;}
.ls58_c00418{letter-spacing:0.843733pt;}
.ls83_c00418{letter-spacing:0.958240pt;}
.ls4c_c00418{letter-spacing:0.982347pt;}
.lsf_c00418{letter-spacing:1.048640pt;}
.ls59_c00418{letter-spacing:1.108907pt;}
.ls3f_c00418{letter-spacing:1.145067pt;}
.ls32_c00418{letter-spacing:1.163147pt;}
.ls89_c00418{letter-spacing:1.181227pt;}
.ls26_c00418{letter-spacing:1.199307pt;}
.ls4b_c00418{letter-spacing:1.211360pt;}
.ls68_c00418{letter-spacing:1.235467pt;}
.ls4f_c00418{letter-spacing:1.265600pt;}
.ls8a_c00418{letter-spacing:1.280027pt;}
.ls22_c00418{letter-spacing:1.283680pt;}
.ls24_c00418{letter-spacing:1.295733pt;}
.ls53_c00418{letter-spacing:1.301760pt;}
.lsd_c00418{letter-spacing:1.313813pt;}
.lsa_c00418{letter-spacing:1.319840pt;}
.ls4a_c00418{letter-spacing:1.325867pt;}
.ls67_c00418{letter-spacing:1.331893pt;}
.ls8_c00418{letter-spacing:1.337920pt;}
.ls1_c00418{letter-spacing:1.343947pt;}
.ls4_c00418{letter-spacing:1.356000pt;}
.ls1d_c00418{letter-spacing:1.362027pt;}
.ls76_c00418{letter-spacing:1.368053pt;}
.ls43_c00418{letter-spacing:1.404213pt;}
.ls2d_c00418{letter-spacing:1.422293pt;}
.ls8f_c00418{letter-spacing:1.428320pt;}
.ls54_c00418{letter-spacing:1.452427pt;}
.ls41_c00418{letter-spacing:1.458453pt;}
.ls21_c00418{letter-spacing:1.464480pt;}
.ls28_c00418{letter-spacing:1.470507pt;}
.ls1e_c00418{letter-spacing:1.476533pt;}
.ls1c_c00418{letter-spacing:1.482560pt;}
.ls1f_c00418{letter-spacing:1.488587pt;}
.ls35_c00418{letter-spacing:1.494613pt;}
.ls18_c00418{letter-spacing:1.512693pt;}
.ls3c_c00418{letter-spacing:1.524747pt;}
.ls3e_c00418{letter-spacing:1.542827pt;}
.ls12_c00418{letter-spacing:1.566933pt;}
.ls2_c00418{letter-spacing:1.572960pt;}
.ls14_c00418{letter-spacing:1.585013pt;}
.ls65_c00418{letter-spacing:1.597067pt;}
.ls62_c00418{letter-spacing:1.609120pt;}
.ls19_c00418{letter-spacing:1.621173pt;}
.ls29_c00418{letter-spacing:1.627200pt;}
.ls17_c00418{letter-spacing:1.639253pt;}
.ls7_c00418{letter-spacing:1.645280pt;}
.lsb_c00418{letter-spacing:1.651307pt;}
.ls69_c00418{letter-spacing:1.663360pt;}
.ls49_c00418{letter-spacing:1.681440pt;}
.ls3a_c00418{letter-spacing:1.699520pt;}
.lse_c00418{letter-spacing:1.705547pt;}
.ls46_c00418{letter-spacing:1.717600pt;}
.ls50_c00418{letter-spacing:1.723627pt;}
.ls2f_c00418{letter-spacing:1.735680pt;}
.ls75_c00418{letter-spacing:1.747733pt;}
.ls40_c00418{letter-spacing:1.753760pt;}
.ls1a_c00418{letter-spacing:1.759787pt;}
.ls4d_c00418{letter-spacing:1.771840pt;}
.ls7b_c00418{letter-spacing:1.783893pt;}
.ls36_c00418{letter-spacing:1.789920pt;}
.ls6a_c00418{letter-spacing:1.795947pt;}
.ls2b_c00418{letter-spacing:1.814027pt;}
.ls64_c00418{letter-spacing:1.838133pt;}
.ls45_c00418{letter-spacing:1.844160pt;}
.ls27_c00418{letter-spacing:1.850187pt;}
.ls3_c00418{letter-spacing:1.856213pt;}
.ls5c_c00418{letter-spacing:1.880320pt;}
.ls0_c00418{letter-spacing:1.886347pt;}
.ls42_c00418{letter-spacing:1.898400pt;}
.ls16_c00418{letter-spacing:1.910453pt;}
.ls2c_c00418{letter-spacing:1.916480pt;}
.ls9_c00418{letter-spacing:1.922507pt;}
.ls70_c00418{letter-spacing:1.934560pt;}
.ls82_c00418{letter-spacing:1.940587pt;}
.ls20_c00418{letter-spacing:1.958667pt;}
.ls2a_c00418{letter-spacing:1.970720pt;}
.ls57_c00418{letter-spacing:1.988800pt;}
.ls6_c00418{letter-spacing:1.994827pt;}
.ls7a_c00418{letter-spacing:2.006880pt;}
.ls15_c00418{letter-spacing:2.030987pt;}
.ls33_c00418{letter-spacing:2.043040pt;}
.ls60_c00418{letter-spacing:2.061120pt;}
.ls23_c00418{letter-spacing:2.073173pt;}
.ls4e_c00418{letter-spacing:2.097280pt;}
.lsc_c00418{letter-spacing:2.109333pt;}
.ls8c_c00418{letter-spacing:2.133333pt;}
.ls5f_c00418{letter-spacing:2.139467pt;}
.ls55_c00418{letter-spacing:2.151520pt;}
.ls10_c00418{letter-spacing:2.163573pt;}
.ls5a_c00418{letter-spacing:2.187680pt;}
.ls52_c00418{letter-spacing:2.199733pt;}
.ls48_c00418{letter-spacing:2.211787pt;}
.ls61_c00418{letter-spacing:2.235893pt;}
.ls5b_c00418{letter-spacing:2.278080pt;}
.ls30_c00418{letter-spacing:2.314240pt;}
.ls44_c00418{letter-spacing:2.356427pt;}
.ls56_c00418{letter-spacing:2.428747pt;}
.ls6c_c00418{letter-spacing:2.434773pt;}
.ls5e_c00418{letter-spacing:2.440800pt;}
.ls47_c00418{letter-spacing:2.489013pt;}
.ls3b_c00418{letter-spacing:2.561333pt;}
.ls66_c00418{letter-spacing:2.657760pt;}
.ls38_c00418{letter-spacing:2.754187pt;}
.ls25_c00418{letter-spacing:2.766240pt;}
.ls5_c00418{letter-spacing:2.832533pt;}
.ls31_c00418{letter-spacing:2.850613pt;}
.ls2e_c00418{letter-spacing:2.983200pt;}
.ls73_c00418{letter-spacing:3.013333pt;}
.ws0_c00418{word-spacing:0.000000pt;}
._14_c00418{margin-left:-7.160533pt;}
._15_c00418{margin-left:-5.346880pt;}
._8_c00418{margin-left:-3.790773pt;}
._7_c00418{margin-left:-2.326293pt;}
._5_c00418{margin-left:-1.175200pt;}
._f_c00418{width:1.012480pt;}
._6_c00418{width:1.904427pt;}
._b_c00418{width:3.531627pt;}
._e_c00418{width:4.495893pt;}
._c_c00418{width:5.430027pt;}
._3_c00418{width:6.900533pt;}
._d_c00418{width:8.509653pt;}
._9_c00418{width:9.931947pt;}
._4_c00418{width:11.510933pt;}
._a_c00418{width:13.174293pt;}
._2_c00418{width:14.349493pt;}
._0_c00418{width:15.970667pt;}
._1_c00418{width:17.772640pt;}
._10_c00418{width:19.417920pt;}
._13_c00418{width:20.882400pt;}
._11_c00418{width:21.949120pt;}
._12_c00418{width:23.461813pt;}
._1f_c00418{width:314.211093pt;}
._1e_c00418{width:318.419893pt;}
._1a_c00418{width:336.617173pt;}
._16_c00418{width:357.049867pt;}
._17_c00418{width:366.558400pt;}
._1b_c00418{width:368.651200pt;}
._1d_c00418{width:370.893120pt;}
._19_c00418{width:373.448427pt;}
._18_c00418{width:384.995520pt;}
._1c_c00418{width:387.430293pt;}
.fs6_c00418{font-size:25.600533pt;}
.fs7_c00418{font-size:42.666667pt;}
.fs8_c00418{font-size:46.933333pt;}
.fs3_c00418{font-size:48.640000pt;}
.fsa_c00418{font-size:51.200000pt;}
.fs5_c00418{font-size:59.200000pt;}
.fs0_c00418{font-size:59.733333pt;}
.fs1_c00418{font-size:60.266667pt;}
.fs4_c00418{font-size:61.333333pt;}
.fs9_c00418{font-size:62.400000pt;}
.fs2_c00418{font-size:65.600000pt;}
.y0_c00418{bottom:0.000000pt;}
.y28_c00418{bottom:93.760000pt;}
.y25_c00418{bottom:159.680000pt;}
.y27_c00418{bottom:160.000000pt;}
.y26_c00418{bottom:160.320000pt;}
.y20_c00418{bottom:187.853333pt;}
.y24_c00418{bottom:188.173333pt;}
.y22_c00418{bottom:188.813333pt;}
.y23_c00418{bottom:194.253333pt;}
.y21_c00418{bottom:196.493333pt;}
.y1f_c00418{bottom:216.333333pt;}
.y1e_c00418{bottom:244.170533pt;}
.y1d_c00418{bottom:300.173333pt;}
.y1c_c00418{bottom:300.179867pt;}
.y1b_c00418{bottom:327.375200pt;}
.y1a_c00418{bottom:383.378000pt;}
.y18_c00418{bottom:410.566533pt;}
.y19_c00418{bottom:410.573333pt;}
.y16_c00418{bottom:438.092933pt;}
.y17_c00418{bottom:438.093333pt;}
.y15_c00418{bottom:465.288267pt;}
.y14_c00418{bottom:492.800000pt;}
.y13_c00418{bottom:520.344400pt;}
.y12_c00418{bottom:547.539733pt;}
.y11_c00418{bottom:574.720000pt;}
.y10_c00418{bottom:574.722267pt;}
.yf_c00418{bottom:601.932667pt;}
.ye_c00418{bottom:656.971200pt;}
.yd_c00418{bottom:684.498000pt;}
.yb_c00418{bottom:711.692933pt;}
.yc_c00418{bottom:711.693333pt;}
.ya_c00418{bottom:738.873200pt;}
.y9_c00418{bottom:766.400000pt;}
.y8_c00418{bottom:793.933333pt;}
.y7_c00418{bottom:793.942667pt;}
.y6_c00418{bottom:821.122933pt;}
.y5_c00418{bottom:848.333333pt;}
.y4_c00418{bottom:902.720000pt;}
.y3_c00418{bottom:902.722933pt;}
.y2_c00418{bottom:929.933333pt;}
.y1_c00418{bottom:1024.640000pt;}
.hb_c00418{height:26.700556pt;}
.h5_c00418{height:32.394240pt;}
.hc_c00418{height:41.875000pt;}
.hd_c00418{height:48.950000pt;}
.h10_c00418{height:50.250000pt;}
.h2_c00418{height:58.625000pt;}
.h3_c00418{height:59.148438pt;}
.he_c00418{height:60.428438pt;}
.h9_c00418{height:61.700971pt;}
.ha_c00418{height:61.708438pt;}
.h8_c00418{height:61.719638pt;}
.h7_c00418{height:61.743750pt;}
.h6_c00418{height:63.968750pt;}
.h4_c00418{height:64.350781pt;}
.hf_c00418{height:65.081250pt;}
.h1_c00418{height:1122.666667pt;}
.h0_c00418{height:1122.880000pt;}
.w1_c00418{width:793.333333pt;}
.w0_c00418{width:793.600000pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:98.173333pt;}
.x16_c00418{left:126.053333pt;}
.x24_c00418{left:128.120000pt;}
.x1f_c00418{left:131.306667pt;}
.x1e_c00418{left:134.946667pt;}
.x1d_c00418{left:139.356933pt;}
.x6_c00418{left:145.826667pt;}
.x13_c00418{left:149.977600pt;}
.xf_c00418{left:164.000000pt;}
.xb_c00418{left:169.920000pt;}
.x7_c00418{left:171.066667pt;}
.x10_c00418{left:183.866667pt;}
.x14_c00418{left:185.400000pt;}
.xc_c00418{left:198.373333pt;}
.x15_c00418{left:205.280000pt;}
.x17_c00418{left:215.520000pt;}
.x4_c00418{left:229.920000pt;}
.x18_c00418{left:234.026667pt;}
.x5_c00418{left:249.120000pt;}
.x1b_c00418{left:255.200000pt;}
.x8_c00418{left:271.186667pt;}
.x1c_c00418{left:274.413333pt;}
.x9_c00418{left:292.133333pt;}
.x19_c00418{left:305.440000pt;}
.x1a_c00418{left:327.213333pt;}
.x25_c00418{left:376.813333pt;}
.x22_c00418{left:382.893333pt;}
.x20_c00418{left:383.786667pt;}
.x21_c00418{left:394.466667pt;}
.x2_c00418{left:427.680000pt;}
.xd_c00418{left:442.253333pt;}
.x3_c00418{left:450.800000pt;}
.xe_c00418{left:462.573333pt;}
.x23_c00418{left:502.720000pt;}
.x11_c00418{left:553.626667pt;}
.x12_c00418{left:593.133333pt;}
.xa_c00418{left:661.733333pt;}
}





/* 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_c00419 {
    display:none;
  }
  .loading-indicator_c00419.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00419 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_c00419 { 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_c00419" -> "#page-container .classname_c00419")
 */
.pf_c00419 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00419 { /* 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_c00419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00419 { /* 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_c00419 { /* 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_c00419 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00419 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00419 {overflow:visible;}
  }
}
.c_c00419 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00419 { /* 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_c00419:after { /* webkit #35443 */
  content: '';
}
.t_c00419:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00419 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 */
}
.__c00419 { /* 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_c00419 { /* info for Javascript */
  display:none;
}
.l_c00419 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00419 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00419 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00419: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_c00419 {
    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_c00419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00419.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_c00419 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00419{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00419;src:url('chunks/assets/font_b707a02ae096b9ce02a993a6.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.284668;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_c00419;src:url('chunks/assets/font_5ceb5377b885630f15d1b6d1.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.284180;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_c00419;src:url('chunks/assets/font_c19d2fc78d4a82d90d7782e3.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;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;}
.m7_c00419{transform:matrix(0.207029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207029,0.000000,0.000000,0.250000,0,0);}
.m6_c00419{transform:matrix(0.241032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241032,0.000000,0.000000,0.250000,0,0);}
.m4_c00419{transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);}
.m0_c00419{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);}
.m3_c00419{transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);}
.m5_c00419{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m1_c00419{transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);}
.m2_c00419{transform:matrix(0.255865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255865,0.000000,0.000000,0.250000,0,0);}
.m8_c00419{transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);}
.v6_c00419{vertical-align:-33.099000px;}
.v4_c00419{vertical-align:-31.638600px;}
.v0_c00419{vertical-align:0.000000px;}
.v2_c00419{vertical-align:27.300000px;}
.v1_c00419{vertical-align:28.789800px;}
.v3_c00419{vertical-align:31.612800px;}
.v5_c00419{vertical-align:33.105600px;}
.ls8f_c00419{letter-spacing:-2.520000px;}
.ls88_c00419{letter-spacing:-2.457000px;}
.ls9a_c00419{letter-spacing:-2.204280px;}
.ls9c_c00419{letter-spacing:-1.951560px;}
.ls99_c00419{letter-spacing:-1.635660px;}
.ls7d_c00419{letter-spacing:-1.544400px;}
.ls83_c00419{letter-spacing:-0.828360px;}
.ls93_c00419{letter-spacing:-0.807300px;}
.ls7b_c00419{letter-spacing:-0.765180px;}
.ls96_c00419{letter-spacing:-0.764640px;}
.ls91_c00419{letter-spacing:-0.637200px;}
.ls82_c00419{letter-spacing:-0.512460px;}
.ls86_c00419{letter-spacing:-0.470340px;}
.ls90_c00419{letter-spacing:-0.351000px;}
.ls9b_c00419{letter-spacing:-0.238680px;}
.ls7c_c00419{letter-spacing:-0.231660px;}
.ls94_c00419{letter-spacing:-0.168480px;}
.ls8d_c00419{letter-spacing:-0.098280px;}
.ls85_c00419{letter-spacing:-0.077220px;}
.ls81_c00419{letter-spacing:-0.070200px;}
.ls97_c00419{letter-spacing:-0.042120px;}
.ls7e_c00419{letter-spacing:-0.028080px;}
.ls8a_c00419{letter-spacing:-0.014040px;}
.ls80_c00419{letter-spacing:0.000000px;}
.ls5d_c00419{letter-spacing:0.014040px;}
.ls67_c00419{letter-spacing:0.105300px;}
.ls8b_c00419{letter-spacing:0.161460px;}
.ls9e_c00419{letter-spacing:0.182280px;}
.ls50_c00419{letter-spacing:0.217620px;}
.ls64_c00419{letter-spacing:0.245700px;}
.ls65_c00419{letter-spacing:0.301860px;}
.ls33_c00419{letter-spacing:0.343980px;}
.ls35_c00419{letter-spacing:0.400140px;}
.ls8_c00419{letter-spacing:0.449280px;}
.ls27_c00419{letter-spacing:0.470340px;}
.ls44_c00419{letter-spacing:0.484380px;}
.ls4d_c00419{letter-spacing:0.491400px;}
.lsd_c00419{letter-spacing:0.540540px;}
.ls1a_c00419{letter-spacing:0.561600px;}
.ls61_c00419{letter-spacing:0.575640px;}
.ls63_c00419{letter-spacing:0.582660px;}
.ls72_c00419{letter-spacing:0.596700px;}
.ls52_c00419{letter-spacing:0.631800px;}
.ls9d_c00419{letter-spacing:0.652860px;}
.ls15_c00419{letter-spacing:0.673920px;}
.ls43_c00419{letter-spacing:0.694980px;}
.ls12_c00419{letter-spacing:0.709020px;}
.ls6b_c00419{letter-spacing:0.716040px;}
.ls5f_c00419{letter-spacing:0.723060px;}
.ls11_c00419{letter-spacing:0.744120px;}
.ls76_c00419{letter-spacing:0.751140px;}
.lsa_c00419{letter-spacing:0.765180px;}
.ls47_c00419{letter-spacing:0.772200px;}
.ls75_c00419{letter-spacing:0.807300px;}
.ls70_c00419{letter-spacing:0.814320px;}
.ls5b_c00419{letter-spacing:0.828360px;}
.ls53_c00419{letter-spacing:0.835380px;}
.ls54_c00419{letter-spacing:0.849420px;}
.ls2c_c00419{letter-spacing:0.856440px;}
.ls1b_c00419{letter-spacing:0.863460px;}
.ls3_c00419{letter-spacing:0.870480px;}
.ls4a_c00419{letter-spacing:0.877500px;}
.ls51_c00419{letter-spacing:0.898560px;}
.ls9_c00419{letter-spacing:0.905580px;}
.ls49_c00419{letter-spacing:0.912600px;}
.ls20_c00419{letter-spacing:0.926640px;}
.lsb_c00419{letter-spacing:0.933660px;}
.ls68_c00419{letter-spacing:0.940680px;}
.ls73_c00419{letter-spacing:0.954720px;}
.ls2d_c00419{letter-spacing:0.968760px;}
.ls3d_c00419{letter-spacing:0.982800px;}
.ls32_c00419{letter-spacing:0.989820px;}
.ls79_c00419{letter-spacing:1.007340px;}
.ls22_c00419{letter-spacing:1.010880px;}
.ls2_c00419{letter-spacing:1.017900px;}
.ls6f_c00419{letter-spacing:1.024920px;}
.ls2e_c00419{letter-spacing:1.031940px;}
.ls46_c00419{letter-spacing:1.038960px;}
.ls6a_c00419{letter-spacing:1.053000px;}
.ls16_c00419{letter-spacing:1.060020px;}
.ls5_c00419{letter-spacing:1.067040px;}
.ls66_c00419{letter-spacing:1.074060px;}
.ls87_c00419{letter-spacing:1.081080px;}
.ls37_c00419{letter-spacing:1.095120px;}
.ls5c_c00419{letter-spacing:1.102140px;}
.ls1c_c00419{letter-spacing:1.109160px;}
.ls23_c00419{letter-spacing:1.116180px;}
.ls98_c00419{letter-spacing:1.130220px;}
.ls25_c00419{letter-spacing:1.137240px;}
.ls57_c00419{letter-spacing:1.144260px;}
.ls5e_c00419{letter-spacing:1.151280px;}
.ls36_c00419{letter-spacing:1.158300px;}
.ls62_c00419{letter-spacing:1.165320px;}
.ls13_c00419{letter-spacing:1.172340px;}
.ls28_c00419{letter-spacing:1.186380px;}
.ls69_c00419{letter-spacing:1.193400px;}
.ls29_c00419{letter-spacing:1.200420px;}
.ls60_c00419{letter-spacing:1.221480px;}
.ls7_c00419{letter-spacing:1.235520px;}
.ls19_c00419{letter-spacing:1.242540px;}
.ls3c_c00419{letter-spacing:1.249560px;}
.lsc_c00419{letter-spacing:1.256580px;}
.ls4e_c00419{letter-spacing:1.263600px;}
.ls24_c00419{letter-spacing:1.270620px;}
.ls4b_c00419{letter-spacing:1.277640px;}
.ls77_c00419{letter-spacing:1.298700px;}
.ls4c_c00419{letter-spacing:1.312740px;}
.lse_c00419{letter-spacing:1.319760px;}
.ls56_c00419{letter-spacing:1.340820px;}
.ls40_c00419{letter-spacing:1.347840px;}
.ls92_c00419{letter-spacing:1.354860px;}
.ls14_c00419{letter-spacing:1.368900px;}
.ls1f_c00419{letter-spacing:1.375920px;}
.ls3f_c00419{letter-spacing:1.382940px;}
.ls38_c00419{letter-spacing:1.404000px;}
.ls4_c00419{letter-spacing:1.411020px;}
.lsf_c00419{letter-spacing:1.425060px;}
.ls7f_c00419{letter-spacing:1.439100px;}
.ls6d_c00419{letter-spacing:1.446120px;}
.ls6_c00419{letter-spacing:1.453140px;}
.ls6c_c00419{letter-spacing:1.481220px;}
.ls89_c00419{letter-spacing:1.495260px;}
.ls17_c00419{letter-spacing:1.509300px;}
.ls8c_c00419{letter-spacing:1.530360px;}
.ls30_c00419{letter-spacing:1.551420px;}
.ls3b_c00419{letter-spacing:1.572480px;}
.ls31_c00419{letter-spacing:1.579500px;}
.ls42_c00419{letter-spacing:1.593540px;}
.ls21_c00419{letter-spacing:1.600560px;}
.ls0_c00419{letter-spacing:1.628640px;}
.ls48_c00419{letter-spacing:1.642680px;}
.ls4f_c00419{letter-spacing:1.670760px;}
.ls74_c00419{letter-spacing:1.712880px;}
.ls6e_c00419{letter-spacing:1.719900px;}
.ls3a_c00419{letter-spacing:1.733940px;}
.ls26_c00419{letter-spacing:1.776060px;}
.ls71_c00419{letter-spacing:1.811160px;}
.ls3e_c00419{letter-spacing:1.818180px;}
.ls39_c00419{letter-spacing:1.832220px;}
.ls2b_c00419{letter-spacing:1.839240px;}
.ls45_c00419{letter-spacing:1.895400px;}
.ls1e_c00419{letter-spacing:1.909440px;}
.ls2a_c00419{letter-spacing:1.916460px;}
.ls1d_c00419{letter-spacing:1.930500px;}
.ls84_c00419{letter-spacing:1.944540px;}
.ls41_c00419{letter-spacing:2.225340px;}
.ls18_c00419{letter-spacing:2.246400px;}
.ls55_c00419{letter-spacing:2.365740px;}
.ls58_c00419{letter-spacing:2.492100px;}
.ls59_c00419{letter-spacing:2.546400px;}
.ls95_c00419{letter-spacing:2.850000px;}
.ls78_c00419{letter-spacing:2.864160px;}
.ls10_c00419{letter-spacing:2.871180px;}
.ls8e_c00419{letter-spacing:2.906280px;}
.ls1_c00419{letter-spacing:3.074760px;}
.ls34_c00419{letter-spacing:3.208140px;}
.ls2f_c00419{letter-spacing:3.285360px;}
.ls7a_c00419{letter-spacing:3.510000px;}
.ls5a_c00419{letter-spacing:11.955600px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{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__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00419{word-spacing:-18.785520px;}
.ws0_c00419{word-spacing:-18.322200px;}
.ws1_c00419{word-spacing:-18.111600px;}
.ws3_c00419{word-spacing:-12.750000px;}
.ws4_c00419{word-spacing:0.000000px;}
._1_c00419{margin-left:-6.626040px;}
._19_c00419{margin-left:-5.564340px;}
._0_c00419{margin-left:-3.215160px;}
._11_c00419{margin-left:-2.106000px;}
._16_c00419{width:1.275120px;}
._10_c00419{width:2.379780px;}
._13_c00419{width:3.517020px;}
._14_c00419{width:4.598100px;}
._f_c00419{width:6.325020px;}
._15_c00419{width:7.342920px;}
._b_c00419{width:8.515260px;}
._12_c00419{width:9.947340px;}
._7_c00419{width:11.568960px;}
._9_c00419{width:13.457340px;}
._8_c00419{width:14.713920px;}
._a_c00419{width:15.872220px;}
._17_c00419{width:17.190000px;}
._18_c00419{width:18.824160px;}
._1b_c00419{width:20.021040px;}
._2_c00419{width:21.024900px;}
._3_c00419{width:22.211280px;}
._1d_c00419{width:23.278320px;}
._1c_c00419{width:25.061400px;}
._5_c00419{width:26.093340px;}
._4_c00419{width:27.988740px;}
._1a_c00419{width:30.248520px;}
._6_c00419{width:31.449600px;}
._c_c00419{width:32.825520px;}
._d_c00419{width:34.278660px;}
._e_c00419{width:38.539800px;}
.fc0_c00419{color:transparent;}
.fs2_c00419{font-size:34.200000px;}
.fs5_c00419{font-size:48.600000px;}
.fs6_c00419{font-size:51.000000px;}
.fs7_c00419{font-size:57.000000px;}
.fs8_c00419{font-size:58.800000px;}
.fs0_c00419{font-size:61.800000px;}
.fs1_c00419{font-size:70.200000px;}
.fs4_c00419{font-size:70.800000px;}
.fs3_c00419{font-size:72.000000px;}
.y0_c00419{bottom:0.000000px;}
.y22_c00419{bottom:103.680006px;}
.y21_c00419{bottom:152.644206px;}
.y20_c00419{bottom:183.602406px;}
.y1f_c00419{bottom:214.209606px;}
.y1e_c00419{bottom:244.799256px;}
.y1d_c00419{bottom:275.775006px;}
.y1c_c00419{bottom:307.095006px;}
.y1b_c00419{bottom:307.096806px;}
.y1a_c00419{bottom:338.058606px;}
.y19_c00419{bottom:369.016806px;}
.y18_c00419{bottom:399.976806px;}
.y17_c00419{bottom:430.935006px;}
.y16_c00419{bottom:492.479256px;}
.y14_c00419{bottom:523.447806px;}
.y15_c00419{bottom:523.455006px;}
.y13_c00419{bottom:554.055006px;}
.y12_c00419{bottom:554.057556px;}
.y11_c00419{bottom:585.015756px;}
.y10_c00419{bottom:646.932156px;}
.yf_c00419{bottom:677.539356px;}
.ye_c00419{bottom:708.480006px;}
.yd_c00419{bottom:708.487806px;}
.yc_c00419{bottom:739.096806px;}
.yb_c00419{bottom:770.055006px;}
.ya_c00419{bottom:770.059356px;}
.y9_c00419{bottom:801.000006px;}
.y8_c00419{bottom:863.280006px;}
.y7_c00419{bottom:924.480006px;}
.y6_c00419{bottom:924.487806px;}
.y5_c00419{bottom:955.100706px;}
.y4_c00419{bottom:985.321806px;}
.y3_c00419{bottom:1016.280006px;}
.y2_c00419{bottom:1077.840006px;}
.y1_c00419{bottom:1154.895006px;}
.ha_c00419{height:57.708984px;}
.h9_c00419{height:59.449219px;}
.h2_c00419{height:60.653320px;}
.h3_c00419{height:68.897461px;}
.h4_c00419{height:68.926261px;}
.h6_c00419{height:69.451758px;}
.h5_c00419{height:70.664062px;}
.h7_c00419{height:79.311042px;}
.h8_c00419{height:83.159311px;}
.h1_c00419{height:1263.000000px;}
.h0_c00419{height:1263.240006px;}
.w1_c00419{width:892.500000px;}
.w0_c00419{width:892.799998px;}
.x0_c00419{left:0.000000px;}
.x13_c00419{left:108.747299px;}
.xe_c00419{left:109.974149px;}
.x8_c00419{left:111.042749px;}
.x4_c00419{left:112.145549px;}
.x1_c00419{left:113.684999px;}
.xd_c00419{left:163.694699px;}
.x6_c00419{left:164.774998px;}
.x2_c00419{left:165.854998px;}
.x7_c00419{left:191.684998px;}
.x3_c00419{left:195.314999px;}
.x11_c00419{left:232.769999px;}
.x12_c00419{left:251.849998px;}
.x9_c00419{left:332.069998px;}
.x5_c00419{left:348.299999px;}
.xa_c00419{left:354.929999px;}
.x16_c00419{left:425.354998px;}
.xb_c00419{left:455.069999px;}
.xc_c00419{left:486.719998px;}
.xf_c00419{left:528.974999px;}
.x10_c00419{left:551.129999px;}
.x14_c00419{left:728.384999px;}
.x15_c00419{left:748.679999px;}
@media print{
.v6_c00419{vertical-align:-29.421333pt;}
.v4_c00419{vertical-align:-28.123200pt;}
.v0_c00419{vertical-align:0.000000pt;}
.v2_c00419{vertical-align:24.266667pt;}
.v1_c00419{vertical-align:25.590933pt;}
.v3_c00419{vertical-align:28.100267pt;}
.v5_c00419{vertical-align:29.427200pt;}
.ls8f_c00419{letter-spacing:-2.240000pt;}
.ls88_c00419{letter-spacing:-2.184000pt;}
.ls9a_c00419{letter-spacing:-1.959360pt;}
.ls9c_c00419{letter-spacing:-1.734720pt;}
.ls99_c00419{letter-spacing:-1.453920pt;}
.ls7d_c00419{letter-spacing:-1.372800pt;}
.ls83_c00419{letter-spacing:-0.736320pt;}
.ls93_c00419{letter-spacing:-0.717600pt;}
.ls7b_c00419{letter-spacing:-0.680160pt;}
.ls96_c00419{letter-spacing:-0.679680pt;}
.ls91_c00419{letter-spacing:-0.566400pt;}
.ls82_c00419{letter-spacing:-0.455520pt;}
.ls86_c00419{letter-spacing:-0.418080pt;}
.ls90_c00419{letter-spacing:-0.312000pt;}
.ls9b_c00419{letter-spacing:-0.212160pt;}
.ls7c_c00419{letter-spacing:-0.205920pt;}
.ls94_c00419{letter-spacing:-0.149760pt;}
.ls8d_c00419{letter-spacing:-0.087360pt;}
.ls85_c00419{letter-spacing:-0.068640pt;}
.ls81_c00419{letter-spacing:-0.062400pt;}
.ls97_c00419{letter-spacing:-0.037440pt;}
.ls7e_c00419{letter-spacing:-0.024960pt;}
.ls8a_c00419{letter-spacing:-0.012480pt;}
.ls80_c00419{letter-spacing:0.000000pt;}
.ls5d_c00419{letter-spacing:0.012480pt;}
.ls67_c00419{letter-spacing:0.093600pt;}
.ls8b_c00419{letter-spacing:0.143520pt;}
.ls9e_c00419{letter-spacing:0.162027pt;}
.ls50_c00419{letter-spacing:0.193440pt;}
.ls64_c00419{letter-spacing:0.218400pt;}
.ls65_c00419{letter-spacing:0.268320pt;}
.ls33_c00419{letter-spacing:0.305760pt;}
.ls35_c00419{letter-spacing:0.355680pt;}
.ls8_c00419{letter-spacing:0.399360pt;}
.ls27_c00419{letter-spacing:0.418080pt;}
.ls44_c00419{letter-spacing:0.430560pt;}
.ls4d_c00419{letter-spacing:0.436800pt;}
.lsd_c00419{letter-spacing:0.480480pt;}
.ls1a_c00419{letter-spacing:0.499200pt;}
.ls61_c00419{letter-spacing:0.511680pt;}
.ls63_c00419{letter-spacing:0.517920pt;}
.ls72_c00419{letter-spacing:0.530400pt;}
.ls52_c00419{letter-spacing:0.561600pt;}
.ls9d_c00419{letter-spacing:0.580320pt;}
.ls15_c00419{letter-spacing:0.599040pt;}
.ls43_c00419{letter-spacing:0.617760pt;}
.ls12_c00419{letter-spacing:0.630240pt;}
.ls6b_c00419{letter-spacing:0.636480pt;}
.ls5f_c00419{letter-spacing:0.642720pt;}
.ls11_c00419{letter-spacing:0.661440pt;}
.ls76_c00419{letter-spacing:0.667680pt;}
.lsa_c00419{letter-spacing:0.680160pt;}
.ls47_c00419{letter-spacing:0.686400pt;}
.ls75_c00419{letter-spacing:0.717600pt;}
.ls70_c00419{letter-spacing:0.723840pt;}
.ls5b_c00419{letter-spacing:0.736320pt;}
.ls53_c00419{letter-spacing:0.742560pt;}
.ls54_c00419{letter-spacing:0.755040pt;}
.ls2c_c00419{letter-spacing:0.761280pt;}
.ls1b_c00419{letter-spacing:0.767520pt;}
.ls3_c00419{letter-spacing:0.773760pt;}
.ls4a_c00419{letter-spacing:0.780000pt;}
.ls51_c00419{letter-spacing:0.798720pt;}
.ls9_c00419{letter-spacing:0.804960pt;}
.ls49_c00419{letter-spacing:0.811200pt;}
.ls20_c00419{letter-spacing:0.823680pt;}
.lsb_c00419{letter-spacing:0.829920pt;}
.ls68_c00419{letter-spacing:0.836160pt;}
.ls73_c00419{letter-spacing:0.848640pt;}
.ls2d_c00419{letter-spacing:0.861120pt;}
.ls3d_c00419{letter-spacing:0.873600pt;}
.ls32_c00419{letter-spacing:0.879840pt;}
.ls79_c00419{letter-spacing:0.895413pt;}
.ls22_c00419{letter-spacing:0.898560pt;}
.ls2_c00419{letter-spacing:0.904800pt;}
.ls6f_c00419{letter-spacing:0.911040pt;}
.ls2e_c00419{letter-spacing:0.917280pt;}
.ls46_c00419{letter-spacing:0.923520pt;}
.ls6a_c00419{letter-spacing:0.936000pt;}
.ls16_c00419{letter-spacing:0.942240pt;}
.ls5_c00419{letter-spacing:0.948480pt;}
.ls66_c00419{letter-spacing:0.954720pt;}
.ls87_c00419{letter-spacing:0.960960pt;}
.ls37_c00419{letter-spacing:0.973440pt;}
.ls5c_c00419{letter-spacing:0.979680pt;}
.ls1c_c00419{letter-spacing:0.985920pt;}
.ls23_c00419{letter-spacing:0.992160pt;}
.ls98_c00419{letter-spacing:1.004640pt;}
.ls25_c00419{letter-spacing:1.010880pt;}
.ls57_c00419{letter-spacing:1.017120pt;}
.ls5e_c00419{letter-spacing:1.023360pt;}
.ls36_c00419{letter-spacing:1.029600pt;}
.ls62_c00419{letter-spacing:1.035840pt;}
.ls13_c00419{letter-spacing:1.042080pt;}
.ls28_c00419{letter-spacing:1.054560pt;}
.ls69_c00419{letter-spacing:1.060800pt;}
.ls29_c00419{letter-spacing:1.067040pt;}
.ls60_c00419{letter-spacing:1.085760pt;}
.ls7_c00419{letter-spacing:1.098240pt;}
.ls19_c00419{letter-spacing:1.104480pt;}
.ls3c_c00419{letter-spacing:1.110720pt;}
.lsc_c00419{letter-spacing:1.116960pt;}
.ls4e_c00419{letter-spacing:1.123200pt;}
.ls24_c00419{letter-spacing:1.129440pt;}
.ls4b_c00419{letter-spacing:1.135680pt;}
.ls77_c00419{letter-spacing:1.154400pt;}
.ls4c_c00419{letter-spacing:1.166880pt;}
.lse_c00419{letter-spacing:1.173120pt;}
.ls56_c00419{letter-spacing:1.191840pt;}
.ls40_c00419{letter-spacing:1.198080pt;}
.ls92_c00419{letter-spacing:1.204320pt;}
.ls14_c00419{letter-spacing:1.216800pt;}
.ls1f_c00419{letter-spacing:1.223040pt;}
.ls3f_c00419{letter-spacing:1.229280pt;}
.ls38_c00419{letter-spacing:1.248000pt;}
.ls4_c00419{letter-spacing:1.254240pt;}
.lsf_c00419{letter-spacing:1.266720pt;}
.ls7f_c00419{letter-spacing:1.279200pt;}
.ls6d_c00419{letter-spacing:1.285440pt;}
.ls6_c00419{letter-spacing:1.291680pt;}
.ls6c_c00419{letter-spacing:1.316640pt;}
.ls89_c00419{letter-spacing:1.329120pt;}
.ls17_c00419{letter-spacing:1.341600pt;}
.ls8c_c00419{letter-spacing:1.360320pt;}
.ls30_c00419{letter-spacing:1.379040pt;}
.ls3b_c00419{letter-spacing:1.397760pt;}
.ls31_c00419{letter-spacing:1.404000pt;}
.ls42_c00419{letter-spacing:1.416480pt;}
.ls21_c00419{letter-spacing:1.422720pt;}
.ls0_c00419{letter-spacing:1.447680pt;}
.ls48_c00419{letter-spacing:1.460160pt;}
.ls4f_c00419{letter-spacing:1.485120pt;}
.ls74_c00419{letter-spacing:1.522560pt;}
.ls6e_c00419{letter-spacing:1.528800pt;}
.ls3a_c00419{letter-spacing:1.541280pt;}
.ls26_c00419{letter-spacing:1.578720pt;}
.ls71_c00419{letter-spacing:1.609920pt;}
.ls3e_c00419{letter-spacing:1.616160pt;}
.ls39_c00419{letter-spacing:1.628640pt;}
.ls2b_c00419{letter-spacing:1.634880pt;}
.ls45_c00419{letter-spacing:1.684800pt;}
.ls1e_c00419{letter-spacing:1.697280pt;}
.ls2a_c00419{letter-spacing:1.703520pt;}
.ls1d_c00419{letter-spacing:1.716000pt;}
.ls84_c00419{letter-spacing:1.728480pt;}
.ls41_c00419{letter-spacing:1.978080pt;}
.ls18_c00419{letter-spacing:1.996800pt;}
.ls55_c00419{letter-spacing:2.102880pt;}
.ls58_c00419{letter-spacing:2.215200pt;}
.ls59_c00419{letter-spacing:2.263467pt;}
.ls95_c00419{letter-spacing:2.533333pt;}
.ls78_c00419{letter-spacing:2.545920pt;}
.ls10_c00419{letter-spacing:2.552160pt;}
.ls8e_c00419{letter-spacing:2.583360pt;}
.ls1_c00419{letter-spacing:2.733120pt;}
.ls34_c00419{letter-spacing:2.851680pt;}
.ls2f_c00419{letter-spacing:2.920320pt;}
.ls7a_c00419{letter-spacing:3.120000pt;}
.ls5a_c00419{letter-spacing:10.627200pt;}
.ws2_c00419{word-spacing:-16.698240pt;}
.ws0_c00419{word-spacing:-16.286400pt;}
.ws1_c00419{word-spacing:-16.099200pt;}
.ws3_c00419{word-spacing:-11.333333pt;}
.ws4_c00419{word-spacing:0.000000pt;}
._1_c00419{margin-left:-5.889813pt;}
._19_c00419{margin-left:-4.946080pt;}
._0_c00419{margin-left:-2.857920pt;}
._11_c00419{margin-left:-1.872000pt;}
._16_c00419{width:1.133440pt;}
._10_c00419{width:2.115360pt;}
._13_c00419{width:3.126240pt;}
._14_c00419{width:4.087200pt;}
._f_c00419{width:5.622240pt;}
._15_c00419{width:6.527040pt;}
._b_c00419{width:7.569120pt;}
._12_c00419{width:8.842080pt;}
._7_c00419{width:10.283520pt;}
._9_c00419{width:11.962080pt;}
._8_c00419{width:13.079040pt;}
._a_c00419{width:14.108640pt;}
._17_c00419{width:15.280000pt;}
._18_c00419{width:16.732587pt;}
._1b_c00419{width:17.796480pt;}
._2_c00419{width:18.688800pt;}
._3_c00419{width:19.743360pt;}
._1d_c00419{width:20.691840pt;}
._1c_c00419{width:22.276800pt;}
._5_c00419{width:23.194080pt;}
._4_c00419{width:24.878880pt;}
._1a_c00419{width:26.887573pt;}
._6_c00419{width:27.955200pt;}
._c_c00419{width:29.178240pt;}
._d_c00419{width:30.469920pt;}
._e_c00419{width:34.257600pt;}
.fs2_c00419{font-size:30.400000pt;}
.fs5_c00419{font-size:43.200000pt;}
.fs6_c00419{font-size:45.333333pt;}
.fs7_c00419{font-size:50.666667pt;}
.fs8_c00419{font-size:52.266667pt;}
.fs0_c00419{font-size:54.933333pt;}
.fs1_c00419{font-size:62.400000pt;}
.fs4_c00419{font-size:62.933333pt;}
.fs3_c00419{font-size:64.000000pt;}
.y0_c00419{bottom:0.000000pt;}
.y22_c00419{bottom:92.160005pt;}
.y21_c00419{bottom:135.683739pt;}
.y20_c00419{bottom:163.202139pt;}
.y1f_c00419{bottom:190.408539pt;}
.y1e_c00419{bottom:217.599339pt;}
.y1d_c00419{bottom:245.133339pt;}
.y1c_c00419{bottom:272.973339pt;}
.y1b_c00419{bottom:272.974939pt;}
.y1a_c00419{bottom:300.496539pt;}
.y19_c00419{bottom:328.014939pt;}
.y18_c00419{bottom:355.534939pt;}
.y17_c00419{bottom:383.053339pt;}
.y16_c00419{bottom:437.759339pt;}
.y14_c00419{bottom:465.286939pt;}
.y15_c00419{bottom:465.293339pt;}
.y13_c00419{bottom:492.493339pt;}
.y12_c00419{bottom:492.495605pt;}
.y11_c00419{bottom:520.014005pt;}
.y10_c00419{bottom:575.050805pt;}
.yf_c00419{bottom:602.257205pt;}
.ye_c00419{bottom:629.760005pt;}
.yd_c00419{bottom:629.766939pt;}
.yc_c00419{bottom:656.974939pt;}
.yb_c00419{bottom:684.493339pt;}
.ya_c00419{bottom:684.497205pt;}
.y9_c00419{bottom:712.000005pt;}
.y8_c00419{bottom:767.360005pt;}
.y7_c00419{bottom:821.760005pt;}
.y6_c00419{bottom:821.766939pt;}
.y5_c00419{bottom:848.978405pt;}
.y4_c00419{bottom:875.841605pt;}
.y3_c00419{bottom:903.360005pt;}
.y2_c00419{bottom:958.080005pt;}
.y1_c00419{bottom:1026.573339pt;}
.ha_c00419{height:51.296875pt;}
.h9_c00419{height:52.843750pt;}
.h2_c00419{height:53.914062pt;}
.h3_c00419{height:61.242187pt;}
.h4_c00419{height:61.267787pt;}
.h6_c00419{height:61.734896pt;}
.h5_c00419{height:62.812500pt;}
.h7_c00419{height:70.498704pt;}
.h8_c00419{height:73.919388pt;}
.h1_c00419{height:1122.666667pt;}
.h0_c00419{height:1122.880005pt;}
.w1_c00419{width:793.333333pt;}
.w0_c00419{width:793.599999pt;}
.x0_c00419{left:0.000000pt;}
.x13_c00419{left:96.664265pt;}
.xe_c00419{left:97.754799pt;}
.x8_c00419{left:98.704665pt;}
.x4_c00419{left:99.684932pt;}
.x1_c00419{left:101.053332pt;}
.xd_c00419{left:145.506399pt;}
.x6_c00419{left:146.466665pt;}
.x2_c00419{left:147.426665pt;}
.x7_c00419{left:170.386665pt;}
.x3_c00419{left:173.613332pt;}
.x11_c00419{left:206.906665pt;}
.x12_c00419{left:223.866665pt;}
.x9_c00419{left:295.173332pt;}
.x5_c00419{left:309.599999pt;}
.xa_c00419{left:315.493332pt;}
.x16_c00419{left:378.093332pt;}
.xb_c00419{left:404.506665pt;}
.xc_c00419{left:432.639999pt;}
.xf_c00419{left:470.199999pt;}
.x10_c00419{left:489.893332pt;}
.x14_c00419{left:647.453332pt;}
.x15_c00419{left:665.493332pt;}
}





/* 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_c00420 {
    display:none;
  }
  .loading-indicator_c00420.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00420 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_c00420 { 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_c00420" -> "#page-container .classname_c00420")
 */
.pf_c00420 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00420 { /* 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_c00420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00420 { /* 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_c00420 { /* 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_c00420 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00420 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00420 {overflow:visible;}
  }
}
.c_c00420 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00420 { /* 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_c00420:after { /* webkit #35443 */
  content: '';
}
.t_c00420:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00420 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 */
}
.__c00420 { /* 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_c00420 { /* info for Javascript */
  display:none;
}
.l_c00420 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00420 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00420 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00420: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_c00420 {
    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_c00420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00420.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_c00420 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00420{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00420;src:url('chunks/assets/font_ae59b8d6b27fb4c99ceebe45.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.284668;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_c00420;src:url('chunks/assets/font_86df88440beff45ebb3210f0.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.311035;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_c00420;src:url('chunks/assets/font_cee0e5286ee98c6d988fbdef.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;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:ff4_c00420;src:url('chunks/assets/font_2499dd31181569d84e36e0f6.woff2')format("woff");}.ff4_c00420{font-family:ff4_c00420;line-height:1.284180;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;}
.md_c00420{transform:matrix(0.216229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216229,0.000000,0.000000,0.250000,0,0);}
.m4_c00420{transform:matrix(0.220739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220739,0.000000,0.000000,0.250000,0,0);}
.m6_c00420{transform:matrix(0.234862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234862,0.000000,0.000000,0.250000,0,0);}
.m8_c00420{transform:matrix(0.238989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238989,0.000000,0.000000,0.250000,0,0);}
.me_c00420{transform:matrix(0.241061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241061,0.000000,0.000000,0.250000,0,0);}
.m2_c00420{transform:matrix(0.241441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241441,0.000000,0.000000,0.250000,0,0);}
.m5_c00420{transform:matrix(0.242233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242233,0.000000,0.000000,0.250000,0,0);}
.m9_c00420{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.ma_c00420{transform:matrix(0.244814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244814,0.000000,0.000000,0.250000,0,0);}
.m0_c00420{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.mf_c00420{transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);}
.mc_c00420{transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);}
.m3_c00420{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.mb_c00420{transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);}
.m7_c00420{transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);}
.m1_c00420{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);}
.v2_c00420{vertical-align:-30.294000px;}
.v0_c00420{vertical-align:0.000000px;}
.v1_c00420{vertical-align:30.300000px;}
.ls8c_c00420{letter-spacing:-2.583000px;}
.ls77_c00420{letter-spacing:-2.478000px;}
.ls91_c00420{letter-spacing:-2.385960px;}
.ls7b_c00420{letter-spacing:-2.378880px;}
.ls62_c00420{letter-spacing:-2.352000px;}
.ls69_c00420{letter-spacing:-2.331000px;}
.ls63_c00420{letter-spacing:-2.237760px;}
.ls65_c00420{letter-spacing:-2.211120px;}
.ls87_c00420{letter-spacing:-2.124000px;}
.lsac_c00420{letter-spacing:-2.074440px;}
.lsa4_c00420{letter-spacing:-1.890360px;}
.lsa6_c00420{letter-spacing:-1.883280px;}
.ls84_c00420{letter-spacing:-1.784160px;}
.ls81_c00420{letter-spacing:-1.614240px;}
.ls90_c00420{letter-spacing:-1.458480px;}
.lsa8_c00420{letter-spacing:-1.359360px;}
.ls6c_c00420{letter-spacing:-1.323960px;}
.ls7a_c00420{letter-spacing:-1.281480px;}
.lsab_c00420{letter-spacing:-1.246080px;}
.ls88_c00420{letter-spacing:-1.231920px;}
.ls74_c00420{letter-spacing:-1.139880px;}
.ls9d_c00420{letter-spacing:-1.111560px;}
.ls9c_c00420{letter-spacing:-1.040760px;}
.ls93_c00420{letter-spacing:-1.026600px;}
.ls73_c00420{letter-spacing:-0.955800px;}
.ls99_c00420{letter-spacing:-0.934560px;}
.lsa0_c00420{letter-spacing:-0.920400px;}
.ls7d_c00420{letter-spacing:-0.814200px;}
.ls98_c00420{letter-spacing:-0.715080px;}
.ls75_c00420{letter-spacing:-0.644280px;}
.ls96_c00420{letter-spacing:-0.615960px;}
.ls7f_c00420{letter-spacing:-0.608880px;}
.ls8a_c00420{letter-spacing:-0.594720px;}
.ls80_c00420{letter-spacing:-0.566400px;}
.ls6b_c00420{letter-spacing:-0.559320px;}
.ls67_c00420{letter-spacing:-0.492840px;}
.ls92_c00420{letter-spacing:-0.438960px;}
.ls6e_c00420{letter-spacing:-0.417720px;}
.ls85_c00420{letter-spacing:-0.403560px;}
.ls7c_c00420{letter-spacing:-0.389400px;}
.ls83_c00420{letter-spacing:-0.382320px;}
.lsaa_c00420{letter-spacing:-0.354000px;}
.ls95_c00420{letter-spacing:-0.339840px;}
.ls89_c00420{letter-spacing:-0.283200px;}
.ls66_c00420{letter-spacing:-0.253080px;}
.lsa5_c00420{letter-spacing:-0.249900px;}
.ls70_c00420{letter-spacing:-0.247800px;}
.ls97_c00420{letter-spacing:-0.240720px;}
.lsa1_c00420{letter-spacing:-0.228480px;}
.ls8d_c00420{letter-spacing:-0.191160px;}
.ls6d_c00420{letter-spacing:-0.184080px;}
.lsa7_c00420{letter-spacing:-0.148680px;}
.ls82_c00420{letter-spacing:-0.113280px;}
.ls64_c00420{letter-spacing:-0.106560px;}
.ls71_c00420{letter-spacing:-0.070800px;}
.ls6f_c00420{letter-spacing:-0.063720px;}
.ls8e_c00420{letter-spacing:-0.049560px;}
.ls79_c00420{letter-spacing:-0.042480px;}
.ls9e_c00420{letter-spacing:-0.035400px;}
.lsa2_c00420{letter-spacing:-0.028560px;}
.ls7e_c00420{letter-spacing:-0.014160px;}
.ls78_c00420{letter-spacing:-0.007080px;}
.ls72_c00420{letter-spacing:0.000000px;}
.ls3e_c00420{letter-spacing:0.007080px;}
.ls35_c00420{letter-spacing:0.028320px;}
.ls3f_c00420{letter-spacing:0.042480px;}
.ls1c_c00420{letter-spacing:0.049560px;}
.ls58_c00420{letter-spacing:0.063720px;}
.ls3a_c00420{letter-spacing:0.077880px;}
.ls18_c00420{letter-spacing:0.084960px;}
.ls53_c00420{letter-spacing:0.092040px;}
.lsd_c00420{letter-spacing:0.099120px;}
.ls33_c00420{letter-spacing:0.141600px;}
.ls37_c00420{letter-spacing:0.148680px;}
.lsa3_c00420{letter-spacing:0.149940px;}
.ls59_c00420{letter-spacing:0.162840px;}
.ls29_c00420{letter-spacing:0.169920px;}
.ls10_c00420{letter-spacing:0.184080px;}
.ls19_c00420{letter-spacing:0.191160px;}
.ls5f_c00420{letter-spacing:0.205320px;}
.ls9b_c00420{letter-spacing:0.212400px;}
.ls4e_c00420{letter-spacing:0.226560px;}
.ls2e_c00420{letter-spacing:0.233640px;}
.ls7_c00420{letter-spacing:0.240720px;}
.ls20_c00420{letter-spacing:0.247800px;}
.ls16_c00420{letter-spacing:0.254880px;}
.ls21_c00420{letter-spacing:0.261960px;}
.ls44_c00420{letter-spacing:0.269040px;}
.ls34_c00420{letter-spacing:0.276120px;}
.ls76_c00420{letter-spacing:0.283200px;}
.ls2d_c00420{letter-spacing:0.290280px;}
.ls17_c00420{letter-spacing:0.297360px;}
.lse_c00420{letter-spacing:0.304440px;}
.ls5d_c00420{letter-spacing:0.311520px;}
.ls28_c00420{letter-spacing:0.318600px;}
.ls2a_c00420{letter-spacing:0.325680px;}
.ls5a_c00420{letter-spacing:0.328440px;}
.ls8_c00420{letter-spacing:0.332760px;}
.ls9_c00420{letter-spacing:0.339840px;}
.ls1d_c00420{letter-spacing:0.346920px;}
.ls51_c00420{letter-spacing:0.354000px;}
.ls1_c00420{letter-spacing:0.359640px;}
.ls45_c00420{letter-spacing:0.361080px;}
.ls3d_c00420{letter-spacing:0.375240px;}
.ls9a_c00420{letter-spacing:0.389400px;}
.ls5b_c00420{letter-spacing:0.392700px;}
.ls40_c00420{letter-spacing:0.396480px;}
.lsc_c00420{letter-spacing:0.417720px;}
.ls47_c00420{letter-spacing:0.424800px;}
.ls30_c00420{letter-spacing:0.431880px;}
.ls4a_c00420{letter-spacing:0.453120px;}
.ls5e_c00420{letter-spacing:0.456960px;}
.ls23_c00420{letter-spacing:0.460200px;}
.ls3b_c00420{letter-spacing:0.467280px;}
.ls9f_c00420{letter-spacing:0.481440px;}
.ls6_c00420{letter-spacing:0.488520px;}
.ls48_c00420{letter-spacing:0.495600px;}
.ls15_c00420{letter-spacing:0.502680px;}
.ls36_c00420{letter-spacing:0.509760px;}
.ls24_c00420{letter-spacing:0.523920px;}
.lsf_c00420{letter-spacing:0.531000px;}
.ls6a_c00420{letter-spacing:0.532800px;}
.ls5c_c00420{letter-spacing:0.538080px;}
.ls42_c00420{letter-spacing:0.545160px;}
.ls8b_c00420{letter-spacing:0.559320px;}
.ls56_c00420{letter-spacing:0.566400px;}
.ls52_c00420{letter-spacing:0.573480px;}
.ls39_c00420{letter-spacing:0.580560px;}
.ls32_c00420{letter-spacing:0.587640px;}
.ls27_c00420{letter-spacing:0.594720px;}
.ls3c_c00420{letter-spacing:0.601800px;}
.ls5_c00420{letter-spacing:0.608880px;}
.ls4f_c00420{letter-spacing:0.615960px;}
.ls26_c00420{letter-spacing:0.623040px;}
.ls49_c00420{letter-spacing:0.637200px;}
.ls2f_c00420{letter-spacing:0.644280px;}
.ls1a_c00420{letter-spacing:0.658440px;}
.ls55_c00420{letter-spacing:0.672600px;}
.ls1b_c00420{letter-spacing:0.686760px;}
.ls4d_c00420{letter-spacing:0.693840px;}
.ls3_c00420{letter-spacing:0.712620px;}
.ls41_c00420{letter-spacing:0.722160px;}
.ls2b_c00420{letter-spacing:0.743400px;}
.ls14_c00420{letter-spacing:0.750480px;}
.ls94_c00420{letter-spacing:0.757560px;}
.ls54_c00420{letter-spacing:0.778800px;}
.lsae_c00420{letter-spacing:0.780900px;}
.ls2c_c00420{letter-spacing:0.792960px;}
.lsa_c00420{letter-spacing:0.800040px;}
.ls31_c00420{letter-spacing:0.814200px;}
.ls13_c00420{letter-spacing:0.821280px;}
.ls68_c00420{letter-spacing:0.832500px;}
.lsb_c00420{letter-spacing:0.835440px;}
.ls46_c00420{letter-spacing:0.863760px;}
.ls4_c00420{letter-spacing:0.870840px;}
.ls4b_c00420{letter-spacing:0.899160px;}
.ls4c_c00420{letter-spacing:0.913320px;}
.ls22_c00420{letter-spacing:0.927480px;}
.ls2_c00420{letter-spacing:0.939060px;}
.ls61_c00420{letter-spacing:0.969960px;}
.lsa9_c00420{letter-spacing:1.019520px;}
.ls1f_c00420{letter-spacing:1.076160px;}
.ls12_c00420{letter-spacing:1.122000px;}
.ls25_c00420{letter-spacing:1.196520px;}
.ls57_c00420{letter-spacing:1.260240px;}
.ls11_c00420{letter-spacing:1.290240px;}
.ls1e_c00420{letter-spacing:1.373520px;}
.ls38_c00420{letter-spacing:1.465560px;}
.ls0_c00420{letter-spacing:1.505160px;}
.ls50_c00420{letter-spacing:1.522200px;}
.ls60_c00420{letter-spacing:1.649640px;}
.ls43_c00420{letter-spacing:2.315160px;}
.ls8f_c00420{letter-spacing:2.527560px;}
.lsad_c00420{letter-spacing:2.633760px;}
.ls86_c00420{letter-spacing:2.732880px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{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__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00420{word-spacing:-19.971840px;}
.ws1_c00420{word-spacing:0.000000px;}
._14_c00420{margin-left:-6.526140px;}
._16_c00420{margin-left:-3.463740px;}
._15_c00420{margin-left:-1.331040px;}
._e_c00420{width:1.062000px;}
._13_c00420{width:2.480040px;}
._0_c00420{width:3.849480px;}
._d_c00420{width:5.479920px;}
._3_c00420{width:6.678060px;}
._2_c00420{width:8.385360px;}
._1_c00420{width:9.843480px;}
._4_c00420{width:11.228760px;}
._b_c00420{width:12.279540px;}
._c_c00420{width:13.621920px;}
._17_c00420{width:14.895720px;}
._18_c00420{width:16.864980px;}
._a_c00420{width:17.916780px;}
._19_c00420{width:19.739040px;}
._5_c00420{width:21.034680px;}
._8_c00420{width:22.443600px;}
._6_c00420{width:23.831280px;}
._9_c00420{width:25.516320px;}
._7_c00420{width:26.705760px;}
._f_c00420{width:28.143000px;}
._11_c00420{width:29.509440px;}
._10_c00420{width:30.599760px;}
._1a_c00420{width:32.221080px;}
._12_c00420{width:33.247680px;}
._1b_c00420{width:35.881440px;}
._1c_c00420{width:39.393120px;}
.fc0_c00420{color:transparent;}
.fs3_c00420{font-size:51.000000px;}
.fs6_c00420{font-size:57.000000px;}
.fs1_c00420{font-size:66.600000px;}
.fs0_c00420{font-size:67.200000px;}
.fs2_c00420{font-size:70.800000px;}
.fs5_c00420{font-size:71.400000px;}
.fs4_c00420{font-size:73.800000px;}
.y0_c00420{bottom:0.000000px;}
.y28_c00420{bottom:105.120000px;}
.y27_c00420{bottom:181.455000px;}
.y26_c00420{bottom:212.055000px;}
.y25_c00420{bottom:212.063700px;}
.y24_c00420{bottom:243.375000px;}
.y23_c00420{bottom:274.695000px;}
.y22_c00420{bottom:305.295000px;}
.y21_c00420{bottom:335.903400px;}
.y20_c00420{bottom:366.131400px;}
.y1f_c00420{bottom:397.088700px;}
.y1e_c00420{bottom:428.400000px;}
.y1c_c00420{bottom:459.371100px;}
.y1d_c00420{bottom:459.375000px;}
.y1b_c00420{bottom:520.931700px;}
.y1a_c00420{bottom:551.535000px;}
.y18_c00420{bottom:582.474000px;}
.y19_c00420{bottom:582.480000px;}
.y17_c00420{bottom:613.095000px;}
.y16_c00420{bottom:613.100400px;}
.y15_c00420{bottom:643.703700px;}
.y13_c00420{bottom:675.011700px;}
.y14_c00420{bottom:675.015000px;}
.y12_c00420{bottom:705.615000px;}
.y11_c00420{bottom:705.620400px;}
.y10_c00420{bottom:736.554000px;}
.ye_c00420{bottom:767.172000px;}
.yf_c00420{bottom:767.175000px;}
.yc_c00420{bottom:798.839100px;}
.yd_c00420{bottom:798.855000px;}
.yb_c00420{bottom:830.876100px;}
.ya_c00420{bottom:862.187400px;}
.y9_c00420{bottom:923.394000px;}
.y8_c00420{bottom:954.015000px;}
.y7_c00420{bottom:954.017700px;}
.y6_c00420{bottom:984.975000px;}
.y5_c00420{bottom:984.980400px;}
.y4_c00420{bottom:1015.914000px;}
.y3_c00420{bottom:1046.535000px;}
.y2_c00420{bottom:1077.495000px;}
.y1_c00420{bottom:1152.720000px;}
.hd_c00420{height:55.942383px;}
.h2_c00420{height:65.953125px;}
.h3_c00420{height:67.120312px;}
.h9_c00420{height:69.451758px;}
.h4_c00420{height:69.486328px;}
.h6_c00420{height:69.498328px;}
.ha_c00420{height:69.500728px;}
.h7_c00420{height:69.510328px;}
.hb_c00420{height:70.006732px;}
.hc_c00420{height:70.040332px;}
.h8_c00420{height:72.394629px;}
.h5_c00420{height:80.352809px;}
.h1_c00420{height:1263.000000px;}
.h0_c00420{height:1263.240000px;}
.w1_c00420{width:892.500000px;}
.w0_c00420{width:892.800000px;}
.x0_c00420{left:0.000000px;}
.x1_c00420{left:110.805000px;}
.x4_c00420{left:112.141500px;}
.x20_c00420{left:135.330000px;}
.x9_c00420{left:165.123900px;}
.xa_c00420{left:172.275000px;}
.x16_c00420{left:177.450000px;}
.xb_c00420{left:193.500000px;}
.x17_c00420{left:206.745000px;}
.x1e_c00420{left:208.980000px;}
.x1f_c00420{left:227.985000px;}
.x21_c00420{left:241.530000px;}
.x12_c00420{left:271.635000px;}
.x7_c00420{left:284.955000px;}
.x13_c00420{left:293.220000px;}
.x8_c00420{left:307.260000px;}
.xc_c00420{left:351.720000px;}
.x14_c00420{left:359.160000px;}
.x26_c00420{left:365.595000px;}
.x15_c00420{left:378.540000px;}
.xd_c00420{left:379.980000px;}
.x27_c00420{left:382.140000px;}
.x2d_c00420{left:425.355000px;}
.x5_c00420{left:431.475000px;}
.x22_c00420{left:433.635000px;}
.x28_c00420{left:453.795000px;}
.x6_c00420{left:454.890000px;}
.x23_c00420{left:455.970000px;}
.x1a_c00420{left:475.395000px;}
.x29_c00420{left:482.235000px;}
.x1b_c00420{left:496.620000px;}
.xe_c00420{left:500.730000px;}
.xf_c00420{left:524.355000px;}
.x2_c00420{left:552.555000px;}
.x1c_c00420{left:562.560000px;}
.x3_c00420{left:566.910000px;}
.x1d_c00420{left:582.150000px;}
.x24_c00420{left:629.475000px;}
.x25_c00420{left:657.930000px;}
.x2a_c00420{left:699.645000px;}
.x10_c00420{left:722.850000px;}
.x2b_c00420{left:725.730000px;}
.x18_c00420{left:731.655000px;}
.x2c_c00420{left:743.550000px;}
.x11_c00420{left:748.185000px;}
.x19_c00420{left:753.810000px;}
@media print{
.v2_c00420{vertical-align:-26.928000pt;}
.v0_c00420{vertical-align:0.000000pt;}
.v1_c00420{vertical-align:26.933333pt;}
.ls8c_c00420{letter-spacing:-2.296000pt;}
.ls77_c00420{letter-spacing:-2.202667pt;}
.ls91_c00420{letter-spacing:-2.120853pt;}
.ls7b_c00420{letter-spacing:-2.114560pt;}
.ls62_c00420{letter-spacing:-2.090667pt;}
.ls69_c00420{letter-spacing:-2.072000pt;}
.ls63_c00420{letter-spacing:-1.989120pt;}
.ls65_c00420{letter-spacing:-1.965440pt;}
.ls87_c00420{letter-spacing:-1.888000pt;}
.lsac_c00420{letter-spacing:-1.843947pt;}
.lsa4_c00420{letter-spacing:-1.680320pt;}
.lsa6_c00420{letter-spacing:-1.674027pt;}
.ls84_c00420{letter-spacing:-1.585920pt;}
.ls81_c00420{letter-spacing:-1.434880pt;}
.ls90_c00420{letter-spacing:-1.296427pt;}
.lsa8_c00420{letter-spacing:-1.208320pt;}
.ls6c_c00420{letter-spacing:-1.176853pt;}
.ls7a_c00420{letter-spacing:-1.139093pt;}
.lsab_c00420{letter-spacing:-1.107627pt;}
.ls88_c00420{letter-spacing:-1.095040pt;}
.ls74_c00420{letter-spacing:-1.013227pt;}
.ls9d_c00420{letter-spacing:-0.988053pt;}
.ls9c_c00420{letter-spacing:-0.925120pt;}
.ls93_c00420{letter-spacing:-0.912533pt;}
.ls73_c00420{letter-spacing:-0.849600pt;}
.ls99_c00420{letter-spacing:-0.830720pt;}
.lsa0_c00420{letter-spacing:-0.818133pt;}
.ls7d_c00420{letter-spacing:-0.723733pt;}
.ls98_c00420{letter-spacing:-0.635627pt;}
.ls75_c00420{letter-spacing:-0.572693pt;}
.ls96_c00420{letter-spacing:-0.547520pt;}
.ls7f_c00420{letter-spacing:-0.541227pt;}
.ls8a_c00420{letter-spacing:-0.528640pt;}
.ls80_c00420{letter-spacing:-0.503467pt;}
.ls6b_c00420{letter-spacing:-0.497173pt;}
.ls67_c00420{letter-spacing:-0.438080pt;}
.ls92_c00420{letter-spacing:-0.390187pt;}
.ls6e_c00420{letter-spacing:-0.371307pt;}
.ls85_c00420{letter-spacing:-0.358720pt;}
.ls7c_c00420{letter-spacing:-0.346133pt;}
.ls83_c00420{letter-spacing:-0.339840pt;}
.lsaa_c00420{letter-spacing:-0.314667pt;}
.ls95_c00420{letter-spacing:-0.302080pt;}
.ls89_c00420{letter-spacing:-0.251733pt;}
.ls66_c00420{letter-spacing:-0.224960pt;}
.lsa5_c00420{letter-spacing:-0.222133pt;}
.ls70_c00420{letter-spacing:-0.220267pt;}
.ls97_c00420{letter-spacing:-0.213973pt;}
.lsa1_c00420{letter-spacing:-0.203093pt;}
.ls8d_c00420{letter-spacing:-0.169920pt;}
.ls6d_c00420{letter-spacing:-0.163627pt;}
.lsa7_c00420{letter-spacing:-0.132160pt;}
.ls82_c00420{letter-spacing:-0.100693pt;}
.ls64_c00420{letter-spacing:-0.094720pt;}
.ls71_c00420{letter-spacing:-0.062933pt;}
.ls6f_c00420{letter-spacing:-0.056640pt;}
.ls8e_c00420{letter-spacing:-0.044053pt;}
.ls79_c00420{letter-spacing:-0.037760pt;}
.ls9e_c00420{letter-spacing:-0.031467pt;}
.lsa2_c00420{letter-spacing:-0.025387pt;}
.ls7e_c00420{letter-spacing:-0.012587pt;}
.ls78_c00420{letter-spacing:-0.006293pt;}
.ls72_c00420{letter-spacing:0.000000pt;}
.ls3e_c00420{letter-spacing:0.006293pt;}
.ls35_c00420{letter-spacing:0.025173pt;}
.ls3f_c00420{letter-spacing:0.037760pt;}
.ls1c_c00420{letter-spacing:0.044053pt;}
.ls58_c00420{letter-spacing:0.056640pt;}
.ls3a_c00420{letter-spacing:0.069227pt;}
.ls18_c00420{letter-spacing:0.075520pt;}
.ls53_c00420{letter-spacing:0.081813pt;}
.lsd_c00420{letter-spacing:0.088107pt;}
.ls33_c00420{letter-spacing:0.125867pt;}
.ls37_c00420{letter-spacing:0.132160pt;}
.lsa3_c00420{letter-spacing:0.133280pt;}
.ls59_c00420{letter-spacing:0.144747pt;}
.ls29_c00420{letter-spacing:0.151040pt;}
.ls10_c00420{letter-spacing:0.163627pt;}
.ls19_c00420{letter-spacing:0.169920pt;}
.ls5f_c00420{letter-spacing:0.182507pt;}
.ls9b_c00420{letter-spacing:0.188800pt;}
.ls4e_c00420{letter-spacing:0.201387pt;}
.ls2e_c00420{letter-spacing:0.207680pt;}
.ls7_c00420{letter-spacing:0.213973pt;}
.ls20_c00420{letter-spacing:0.220267pt;}
.ls16_c00420{letter-spacing:0.226560pt;}
.ls21_c00420{letter-spacing:0.232853pt;}
.ls44_c00420{letter-spacing:0.239147pt;}
.ls34_c00420{letter-spacing:0.245440pt;}
.ls76_c00420{letter-spacing:0.251733pt;}
.ls2d_c00420{letter-spacing:0.258027pt;}
.ls17_c00420{letter-spacing:0.264320pt;}
.lse_c00420{letter-spacing:0.270613pt;}
.ls5d_c00420{letter-spacing:0.276907pt;}
.ls28_c00420{letter-spacing:0.283200pt;}
.ls2a_c00420{letter-spacing:0.289493pt;}
.ls5a_c00420{letter-spacing:0.291947pt;}
.ls8_c00420{letter-spacing:0.295787pt;}
.ls9_c00420{letter-spacing:0.302080pt;}
.ls1d_c00420{letter-spacing:0.308373pt;}
.ls51_c00420{letter-spacing:0.314667pt;}
.ls1_c00420{letter-spacing:0.319680pt;}
.ls45_c00420{letter-spacing:0.320960pt;}
.ls3d_c00420{letter-spacing:0.333547pt;}
.ls9a_c00420{letter-spacing:0.346133pt;}
.ls5b_c00420{letter-spacing:0.349067pt;}
.ls40_c00420{letter-spacing:0.352427pt;}
.lsc_c00420{letter-spacing:0.371307pt;}
.ls47_c00420{letter-spacing:0.377600pt;}
.ls30_c00420{letter-spacing:0.383893pt;}
.ls4a_c00420{letter-spacing:0.402773pt;}
.ls5e_c00420{letter-spacing:0.406187pt;}
.ls23_c00420{letter-spacing:0.409067pt;}
.ls3b_c00420{letter-spacing:0.415360pt;}
.ls9f_c00420{letter-spacing:0.427947pt;}
.ls6_c00420{letter-spacing:0.434240pt;}
.ls48_c00420{letter-spacing:0.440533pt;}
.ls15_c00420{letter-spacing:0.446827pt;}
.ls36_c00420{letter-spacing:0.453120pt;}
.ls24_c00420{letter-spacing:0.465707pt;}
.lsf_c00420{letter-spacing:0.472000pt;}
.ls6a_c00420{letter-spacing:0.473600pt;}
.ls5c_c00420{letter-spacing:0.478293pt;}
.ls42_c00420{letter-spacing:0.484587pt;}
.ls8b_c00420{letter-spacing:0.497173pt;}
.ls56_c00420{letter-spacing:0.503467pt;}
.ls52_c00420{letter-spacing:0.509760pt;}
.ls39_c00420{letter-spacing:0.516053pt;}
.ls32_c00420{letter-spacing:0.522347pt;}
.ls27_c00420{letter-spacing:0.528640pt;}
.ls3c_c00420{letter-spacing:0.534933pt;}
.ls5_c00420{letter-spacing:0.541227pt;}
.ls4f_c00420{letter-spacing:0.547520pt;}
.ls26_c00420{letter-spacing:0.553813pt;}
.ls49_c00420{letter-spacing:0.566400pt;}
.ls2f_c00420{letter-spacing:0.572693pt;}
.ls1a_c00420{letter-spacing:0.585280pt;}
.ls55_c00420{letter-spacing:0.597867pt;}
.ls1b_c00420{letter-spacing:0.610453pt;}
.ls4d_c00420{letter-spacing:0.616747pt;}
.ls3_c00420{letter-spacing:0.633440pt;}
.ls41_c00420{letter-spacing:0.641920pt;}
.ls2b_c00420{letter-spacing:0.660800pt;}
.ls14_c00420{letter-spacing:0.667093pt;}
.ls94_c00420{letter-spacing:0.673387pt;}
.ls54_c00420{letter-spacing:0.692267pt;}
.lsae_c00420{letter-spacing:0.694133pt;}
.ls2c_c00420{letter-spacing:0.704853pt;}
.lsa_c00420{letter-spacing:0.711147pt;}
.ls31_c00420{letter-spacing:0.723733pt;}
.ls13_c00420{letter-spacing:0.730027pt;}
.ls68_c00420{letter-spacing:0.740000pt;}
.lsb_c00420{letter-spacing:0.742613pt;}
.ls46_c00420{letter-spacing:0.767787pt;}
.ls4_c00420{letter-spacing:0.774080pt;}
.ls4b_c00420{letter-spacing:0.799253pt;}
.ls4c_c00420{letter-spacing:0.811840pt;}
.ls22_c00420{letter-spacing:0.824427pt;}
.ls2_c00420{letter-spacing:0.834720pt;}
.ls61_c00420{letter-spacing:0.862187pt;}
.lsa9_c00420{letter-spacing:0.906240pt;}
.ls1f_c00420{letter-spacing:0.956587pt;}
.ls12_c00420{letter-spacing:0.997333pt;}
.ls25_c00420{letter-spacing:1.063573pt;}
.ls57_c00420{letter-spacing:1.120213pt;}
.ls11_c00420{letter-spacing:1.146880pt;}
.ls1e_c00420{letter-spacing:1.220907pt;}
.ls38_c00420{letter-spacing:1.302720pt;}
.ls0_c00420{letter-spacing:1.337920pt;}
.ls50_c00420{letter-spacing:1.353067pt;}
.ls60_c00420{letter-spacing:1.466347pt;}
.ls43_c00420{letter-spacing:2.057920pt;}
.ls8f_c00420{letter-spacing:2.246720pt;}
.lsad_c00420{letter-spacing:2.341120pt;}
.ls86_c00420{letter-spacing:2.429227pt;}
.ws0_c00420{word-spacing:-17.752747pt;}
.ws1_c00420{word-spacing:0.000000pt;}
._14_c00420{margin-left:-5.801013pt;}
._16_c00420{margin-left:-3.078880pt;}
._15_c00420{margin-left:-1.183147pt;}
._e_c00420{width:0.944000pt;}
._13_c00420{width:2.204480pt;}
._0_c00420{width:3.421760pt;}
._d_c00420{width:4.871040pt;}
._3_c00420{width:5.936053pt;}
._2_c00420{width:7.453653pt;}
._1_c00420{width:8.749760pt;}
._4_c00420{width:9.981120pt;}
._b_c00420{width:10.915147pt;}
._c_c00420{width:12.108373pt;}
._17_c00420{width:13.240640pt;}
._18_c00420{width:14.991093pt;}
._a_c00420{width:15.926027pt;}
._19_c00420{width:17.545813pt;}
._5_c00420{width:18.697493pt;}
._8_c00420{width:19.949867pt;}
._6_c00420{width:21.183360pt;}
._9_c00420{width:22.681173pt;}
._7_c00420{width:23.738453pt;}
._f_c00420{width:25.016000pt;}
._11_c00420{width:26.230613pt;}
._10_c00420{width:27.199787pt;}
._1a_c00420{width:28.640960pt;}
._12_c00420{width:29.553493pt;}
._1b_c00420{width:31.894613pt;}
._1c_c00420{width:35.016107pt;}
.fs3_c00420{font-size:45.333333pt;}
.fs6_c00420{font-size:50.666667pt;}
.fs1_c00420{font-size:59.200000pt;}
.fs0_c00420{font-size:59.733333pt;}
.fs2_c00420{font-size:62.933333pt;}
.fs5_c00420{font-size:63.466667pt;}
.fs4_c00420{font-size:65.600000pt;}
.y0_c00420{bottom:0.000000pt;}
.y28_c00420{bottom:93.440000pt;}
.y27_c00420{bottom:161.293333pt;}
.y26_c00420{bottom:188.493333pt;}
.y25_c00420{bottom:188.501067pt;}
.y24_c00420{bottom:216.333333pt;}
.y23_c00420{bottom:244.173333pt;}
.y22_c00420{bottom:271.373333pt;}
.y21_c00420{bottom:298.580800pt;}
.y20_c00420{bottom:325.450133pt;}
.y1f_c00420{bottom:352.967733pt;}
.y1e_c00420{bottom:380.800000pt;}
.y1c_c00420{bottom:408.329867pt;}
.y1d_c00420{bottom:408.333333pt;}
.y1b_c00420{bottom:463.050400pt;}
.y1a_c00420{bottom:490.253333pt;}
.y18_c00420{bottom:517.754667pt;}
.y19_c00420{bottom:517.760000pt;}
.y17_c00420{bottom:544.973333pt;}
.y16_c00420{bottom:544.978133pt;}
.y15_c00420{bottom:572.181067pt;}
.y13_c00420{bottom:600.010400pt;}
.y14_c00420{bottom:600.013333pt;}
.y12_c00420{bottom:627.213333pt;}
.y11_c00420{bottom:627.218133pt;}
.y10_c00420{bottom:654.714667pt;}
.ye_c00420{bottom:681.930667pt;}
.yf_c00420{bottom:681.933333pt;}
.yc_c00420{bottom:710.079200pt;}
.yd_c00420{bottom:710.093333pt;}
.yb_c00420{bottom:738.556533pt;}
.ya_c00420{bottom:766.388800pt;}
.y9_c00420{bottom:820.794667pt;}
.y8_c00420{bottom:848.013333pt;}
.y7_c00420{bottom:848.015733pt;}
.y6_c00420{bottom:875.533333pt;}
.y5_c00420{bottom:875.538133pt;}
.y4_c00420{bottom:903.034667pt;}
.y3_c00420{bottom:930.253333pt;}
.y2_c00420{bottom:957.773333pt;}
.y1_c00420{bottom:1024.640000pt;}
.hd_c00420{height:49.726562pt;}
.h2_c00420{height:58.625000pt;}
.h3_c00420{height:59.662500pt;}
.h9_c00420{height:61.734896pt;}
.h4_c00420{height:61.765625pt;}
.h6_c00420{height:61.776292pt;}
.ha_c00420{height:61.778425pt;}
.h7_c00420{height:61.786958pt;}
.hb_c00420{height:62.228206pt;}
.hc_c00420{height:62.258073pt;}
.h8_c00420{height:64.350781pt;}
.h5_c00420{height:71.424719pt;}
.h1_c00420{height:1122.666667pt;}
.h0_c00420{height:1122.880000pt;}
.w1_c00420{width:793.333333pt;}
.w0_c00420{width:793.600000pt;}
.x0_c00420{left:0.000000pt;}
.x1_c00420{left:98.493333pt;}
.x4_c00420{left:99.681333pt;}
.x20_c00420{left:120.293333pt;}
.x9_c00420{left:146.776800pt;}
.xa_c00420{left:153.133333pt;}
.x16_c00420{left:157.733333pt;}
.xb_c00420{left:172.000000pt;}
.x17_c00420{left:183.773333pt;}
.x1e_c00420{left:185.760000pt;}
.x1f_c00420{left:202.653333pt;}
.x21_c00420{left:214.693333pt;}
.x12_c00420{left:241.453333pt;}
.x7_c00420{left:253.293333pt;}
.x13_c00420{left:260.640000pt;}
.x8_c00420{left:273.120000pt;}
.xc_c00420{left:312.640000pt;}
.x14_c00420{left:319.253333pt;}
.x26_c00420{left:324.973333pt;}
.x15_c00420{left:336.480000pt;}
.xd_c00420{left:337.760000pt;}
.x27_c00420{left:339.680000pt;}
.x2d_c00420{left:378.093333pt;}
.x5_c00420{left:383.533333pt;}
.x22_c00420{left:385.453333pt;}
.x28_c00420{left:403.373333pt;}
.x6_c00420{left:404.346667pt;}
.x23_c00420{left:405.306667pt;}
.x1a_c00420{left:422.573333pt;}
.x29_c00420{left:428.653333pt;}
.x1b_c00420{left:441.440000pt;}
.xe_c00420{left:445.093333pt;}
.xf_c00420{left:466.093333pt;}
.x2_c00420{left:491.160000pt;}
.x1c_c00420{left:500.053333pt;}
.x3_c00420{left:503.920000pt;}
.x1d_c00420{left:517.466667pt;}
.x24_c00420{left:559.533333pt;}
.x25_c00420{left:584.826667pt;}
.x2a_c00420{left:621.906667pt;}
.x10_c00420{left:642.533333pt;}
.x2b_c00420{left:645.093333pt;}
.x18_c00420{left:650.360000pt;}
.x2c_c00420{left:660.933333pt;}
.x11_c00420{left:665.053333pt;}
.x19_c00420{left:670.053333pt;}
}





/* 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_c00421 {
    display:none;
  }
  .loading-indicator_c00421.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00421 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_c00421 { 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_c00421" -> "#page-container .classname_c00421")
 */
.pf_c00421 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00421 { /* 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_c00421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00421 { /* 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_c00421 { /* 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_c00421 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00421 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00421 {overflow:visible;}
  }
}
.c_c00421 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00421 { /* 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_c00421:after { /* webkit #35443 */
  content: '';
}
.t_c00421:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00421 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 */
}
.__c00421 { /* 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_c00421 { /* info for Javascript */
  display:none;
}
.l_c00421 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00421 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00421 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00421: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_c00421 {
    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_c00421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00421.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_c00421 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00421{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00421;src:url('chunks/assets/font_18a586acb4218d6203602bb2.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.284668;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_c00421;src:url('chunks/assets/font_c20a9e220f0fd5a9704822c8.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;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_c00421;src:url('chunks/assets/font_d5dec0468c6f427ea54c850a.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:0.666000;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_c00421;src:url('chunks/assets/font_0ba6f80919aa92e7a80e3c6f.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;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:ff5_c00421;src:url('chunks/assets/font_867ec64fabeba541301da35e.woff2')format("woff");}.ff5_c00421{font-family:ff5_c00421;line-height:1.284180;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;}
.mc_c00421{transform:matrix(0.121097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121097,0.000000,0.000000,0.250000,0,0);}
.md_c00421{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m8_c00421{transform:matrix(0.216417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216417,0.000000,0.000000,0.250000,0,0);}
.m24_c00421{transform:matrix(0.233064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233064,0.000000,0.000000,0.250000,0,0);}
.me_c00421{transform:matrix(0.237803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237803,0.000000,0.000000,0.250000,0,0);}
.m23_c00421{transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);}
.m7_c00421{transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);}
.m22_c00421{transform:matrix(0.245771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245771,0.000000,0.000000,0.250000,0,0);}
.ma_c00421{transform:matrix(0.246337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246337,0.000000,0.000000,0.250000,0,0);}
.m2_c00421{transform:matrix(0.246752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246752,0.000000,0.000000,0.250000,0,0);}
.m0_c00421{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m9_c00421{transform:matrix(0.247304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247304,0.000000,0.000000,0.250000,0,0);}
.m6_c00421{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{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);}
.m17_c00421{transform:matrix(0.253803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253803,0.000000,0.000000,0.250000,0,0);}
.m20_c00421{transform:matrix(0.255304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255304,0.000000,0.000000,0.250000,0,0);}
.m11_c00421{transform:matrix(0.256142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256142,0.000000,0.000000,0.250000,0,0);}
.m12_c00421{transform:matrix(0.259245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259245,0.000000,0.000000,0.250000,0,0);}
.m15_c00421{transform:matrix(0.260976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260976,0.000000,0.000000,0.250000,0,0);}
.m16_c00421{transform:matrix(0.261863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261863,0.000000,0.000000,0.250000,0,0);}
.m13_c00421{transform:matrix(0.263839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263839,0.000000,0.000000,0.250000,0,0);}
.mb_c00421{transform:matrix(0.266548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266548,0.000000,0.000000,0.250000,0,0);}
.m10_c00421{transform:matrix(0.267026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267026,0.000000,0.000000,0.250000,0,0);}
.m14_c00421{transform:matrix(0.268341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268341,0.000000,0.000000,0.250000,0,0);}
.mf_c00421{transform:matrix(0.269356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269356,0.000000,0.000000,0.250000,0,0);}
.m4_c00421{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m1f_c00421{transform:matrix(0.312710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312710,0.000000,0.000000,0.250000,0,0);}
.m3_c00421{transform:matrix(0.344769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344769,0.000000,0.000000,0.250000,0,0);}
.m1d_c00421{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00421{transform:matrix(0.416949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416949,0.000000,0.000000,0.250000,0,0);}
.m1b_c00421{transform:matrix(0.572005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572005,0.000000,0.000000,0.250000,0,0);}
.m1e_c00421{transform:matrix(0.672949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672949,0.000000,0.000000,0.250000,0,0);}
.m19_c00421{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m18_c00421{transform:matrix(0.942653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942653,0.000000,0.000000,0.250000,0,0);}
.m1a_c00421{transform:matrix(1.016303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.016303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.016303,0.000000,0.000000,0.250000,0,0);}
.m21_c00421{transform:matrix(1.150021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.150021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.150021,0.000000,0.000000,0.250000,0,0);}
.m5_c00421{transform:matrix(2.824919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.824919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.824919,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls42_c00421{letter-spacing:-2.541000px;}
.ls61_c00421{letter-spacing:-2.511960px;}
.ls63_c00421{letter-spacing:-2.461140px;}
.ls5c_c00421{letter-spacing:-2.410320px;}
.ls7a_c00421{letter-spacing:-2.403060px;}
.ls88_c00421{letter-spacing:-2.374020px;}
.ls3d_c00421{letter-spacing:-2.352000px;}
.lsa3_c00421{letter-spacing:-2.265120px;}
.ls40_c00421{letter-spacing:-2.207040px;}
.ls83_c00421{letter-spacing:-2.184000px;}
.lsa8_c00421{letter-spacing:-2.170740px;}
.ls65_c00421{letter-spacing:-2.025540px;}
.lsa9_c00421{letter-spacing:-1.894860px;}
.ls77_c00421{letter-spacing:-1.880340px;}
.ls6b_c00421{letter-spacing:-1.873080px;}
.ls8d_c00421{letter-spacing:-1.800480px;}
.ls43_c00421{letter-spacing:-1.618980px;}
.ls3f_c00421{letter-spacing:-1.568160px;}
.ls98_c00421{letter-spacing:-1.553640px;}
.ls67_c00421{letter-spacing:-1.546380px;}
.ls85_c00421{letter-spacing:-1.531860px;}
.ls6f_c00421{letter-spacing:-1.495560px;}
.ls5b_c00421{letter-spacing:-1.488300px;}
.ls5d_c00421{letter-spacing:-1.452000px;}
.ls97_c00421{letter-spacing:-1.408440px;}
.ls80_c00421{letter-spacing:-1.364880px;}
.lsa6_c00421{letter-spacing:-1.306800px;}
.lsa5_c00421{letter-spacing:-1.299540px;}
.ls9a_c00421{letter-spacing:-1.255980px;}
.ls78_c00421{letter-spacing:-1.205160px;}
.ls7b_c00421{letter-spacing:-1.183380px;}
.ls9c_c00421{letter-spacing:-1.118040px;}
.ls9f_c00421{letter-spacing:-1.052700px;}
.ls58_c00421{letter-spacing:-1.045440px;}
.ls7f_c00421{letter-spacing:-0.958320px;}
.ls4c_c00421{letter-spacing:-0.900240px;}
.ls4d_c00421{letter-spacing:-0.892980px;}
.ls81_c00421{letter-spacing:-0.878460px;}
.ls55_c00421{letter-spacing:-0.820380px;}
.ls95_c00421{letter-spacing:-0.813120px;}
.ls70_c00421{letter-spacing:-0.791340px;}
.ls75_c00421{letter-spacing:-0.776820px;}
.ls5a_c00421{letter-spacing:-0.762300px;}
.ls74_c00421{letter-spacing:-0.733260px;}
.ls60_c00421{letter-spacing:-0.718740px;}
.ls8b_c00421{letter-spacing:-0.711480px;}
.ls7c_c00421{letter-spacing:-0.689700px;}
.ls7d_c00421{letter-spacing:-0.675180px;}
.ls96_c00421{letter-spacing:-0.653400px;}
.lsa2_c00421{letter-spacing:-0.646140px;}
.ls6e_c00421{letter-spacing:-0.624360px;}
.ls5f_c00421{letter-spacing:-0.595320px;}
.ls44_c00421{letter-spacing:-0.559020px;}
.ls6a_c00421{letter-spacing:-0.551760px;}
.ls45_c00421{letter-spacing:-0.529980px;}
.ls86_c00421{letter-spacing:-0.522720px;}
.ls7e_c00421{letter-spacing:-0.515460px;}
.ls90_c00421{letter-spacing:-0.508200px;}
.ls56_c00421{letter-spacing:-0.486420px;}
.ls6c_c00421{letter-spacing:-0.471900px;}
.ls59_c00421{letter-spacing:-0.450120px;}
.ls51_c00421{letter-spacing:-0.435600px;}
.ls91_c00421{letter-spacing:-0.421080px;}
.ls73_c00421{letter-spacing:-0.406560px;}
.lsa7_c00421{letter-spacing:-0.399300px;}
.ls62_c00421{letter-spacing:-0.392040px;}
.lsa1_c00421{letter-spacing:-0.384780px;}
.ls68_c00421{letter-spacing:-0.377520px;}
.ls76_c00421{letter-spacing:-0.355740px;}
.ls6d_c00421{letter-spacing:-0.348480px;}
.ls8f_c00421{letter-spacing:-0.333960px;}
.ls4f_c00421{letter-spacing:-0.326700px;}
.ls4e_c00421{letter-spacing:-0.304920px;}
.ls94_c00421{letter-spacing:-0.290400px;}
.ls89_c00421{letter-spacing:-0.268620px;}
.ls57_c00421{letter-spacing:-0.261360px;}
.ls8a_c00421{letter-spacing:-0.254100px;}
.ls5e_c00421{letter-spacing:-0.232320px;}
.ls92_c00421{letter-spacing:-0.217800px;}
.ls8c_c00421{letter-spacing:-0.214200px;}
.ls64_c00421{letter-spacing:-0.196020px;}
.ls50_c00421{letter-spacing:-0.181500px;}
.ls87_c00421{letter-spacing:-0.166980px;}
.lsa0_c00421{letter-spacing:-0.159720px;}
.ls9e_c00421{letter-spacing:-0.152460px;}
.lsa4_c00421{letter-spacing:-0.145200px;}
.ls8e_c00421{letter-spacing:-0.137940px;}
.ls99_c00421{letter-spacing:-0.135660px;}
.ls72_c00421{letter-spacing:-0.130680px;}
.ls4a_c00421{letter-spacing:-0.123420px;}
.ls53_c00421{letter-spacing:-0.116160px;}
.ls9d_c00421{letter-spacing:-0.108900px;}
.ls41_c00421{letter-spacing:-0.101640px;}
.ls4b_c00421{letter-spacing:-0.087120px;}
.ls66_c00421{letter-spacing:-0.072600px;}
.ls9b_c00421{letter-spacing:-0.065340px;}
.ls69_c00421{letter-spacing:-0.043560px;}
.ls54_c00421{letter-spacing:-0.036300px;}
.ls3e_c00421{letter-spacing:-0.021780px;}
.ls52_c00421{letter-spacing:-0.007260px;}
.ls46_c00421{letter-spacing:0.000000px;}
.ls3a_c00421{letter-spacing:0.007260px;}
.lsa_c00421{letter-spacing:0.014520px;}
.ls37_c00421{letter-spacing:0.028560px;}
.ls1c_c00421{letter-spacing:0.036300px;}
.ls25_c00421{letter-spacing:0.043560px;}
.lsc_c00421{letter-spacing:0.050820px;}
.ls26_c00421{letter-spacing:0.058080px;}
.ls12_c00421{letter-spacing:0.065340px;}
.ls21_c00421{letter-spacing:0.072600px;}
.ls71_c00421{letter-spacing:0.079860px;}
.ls1f_c00421{letter-spacing:0.087120px;}
.ls9_c00421{letter-spacing:0.094380px;}
.lse_c00421{letter-spacing:0.101640px;}
.ls11_c00421{letter-spacing:0.116160px;}
.ls6_c00421{letter-spacing:0.123420px;}
.ls24_c00421{letter-spacing:0.130680px;}
.ls28_c00421{letter-spacing:0.137940px;}
.ls27_c00421{letter-spacing:0.145200px;}
.ls2_c00421{letter-spacing:0.166980px;}
.ls2e_c00421{letter-spacing:0.171360px;}
.ls32_c00421{letter-spacing:0.181500px;}
.ls4_c00421{letter-spacing:0.188760px;}
.ls0_c00421{letter-spacing:0.196020px;}
.ls15_c00421{letter-spacing:0.203280px;}
.ls3c_c00421{letter-spacing:0.210540px;}
.ls1e_c00421{letter-spacing:0.232320px;}
.lsb_c00421{letter-spacing:0.239580px;}
.ls10_c00421{letter-spacing:0.246840px;}
.ls13_c00421{letter-spacing:0.254100px;}
.ls30_c00421{letter-spacing:0.268620px;}
.ls19_c00421{letter-spacing:0.275880px;}
.ls49_c00421{letter-spacing:0.312180px;}
.ls22_c00421{letter-spacing:0.319440px;}
.ls16_c00421{letter-spacing:0.326700px;}
.ls17_c00421{letter-spacing:0.333960px;}
.lsd_c00421{letter-spacing:0.348480px;}
.ls1a_c00421{letter-spacing:0.363000px;}
.ls3b_c00421{letter-spacing:0.364140px;}
.ls18_c00421{letter-spacing:0.377520px;}
.lsf_c00421{letter-spacing:0.384780px;}
.ls2c_c00421{letter-spacing:0.392040px;}
.ls14_c00421{letter-spacing:0.399300px;}
.ls7_c00421{letter-spacing:0.442860px;}
.ls1b_c00421{letter-spacing:0.464640px;}
.ls29_c00421{letter-spacing:0.479160px;}
.ls33_c00421{letter-spacing:0.486420px;}
.ls2d_c00421{letter-spacing:0.499800px;}
.ls1_c00421{letter-spacing:0.544500px;}
.ls31_c00421{letter-spacing:0.609840px;}
.ls5_c00421{letter-spacing:0.638880px;}
.ls35_c00421{letter-spacing:0.642600px;}
.ls38_c00421{letter-spacing:0.653400px;}
.ls36_c00421{letter-spacing:0.749700px;}
.ls20_c00421{letter-spacing:0.762300px;}
.ls1d_c00421{letter-spacing:0.776820px;}
.ls23_c00421{letter-spacing:0.856680px;}
.ls39_c00421{letter-spacing:0.892500px;}
.ls34_c00421{letter-spacing:0.899640px;}
.lsaa_c00421{letter-spacing:0.905520px;}
.ls48_c00421{letter-spacing:0.930000px;}
.ls2f_c00421{letter-spacing:0.949620px;}
.ls2a_c00421{letter-spacing:0.990030px;}
.ls47_c00421{letter-spacing:1.020030px;}
.ls84_c00421{letter-spacing:1.110030px;}
.ls8_c00421{letter-spacing:1.618980px;}
.ls79_c00421{letter-spacing:1.727880px;}
.ls2b_c00421{letter-spacing:2.090880px;}
.ls93_c00421{letter-spacing:2.337720px;}
.ls82_c00421{letter-spacing:3.120000px;}
.ls3_c00421{letter-spacing:204.655200px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{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__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00421{word-spacing:-1.801855px;}
.ws5_c00421{word-spacing:0.000000px;}
.ws1_c00421{word-spacing:0.855910px;}
.ws2_c00421{word-spacing:3.742313px;}
.ws4_c00421{word-spacing:24.487262px;}
.ws3_c00421{word-spacing:40.338490px;}
._24_c00421{margin-left:-4.636800px;}
._1e_c00421{margin-left:-2.490180px;}
._25_c00421{margin-left:-1.118040px;}
._c_c00421{width:1.089000px;}
._a_c00421{width:2.366760px;}
._1c_c00421{width:3.542880px;}
._7_c00421{width:5.415960px;}
._6_c00421{width:6.824400px;}
._8_c00421{width:7.884360px;}
._b_c00421{width:9.336360px;}
._9_c00421{width:10.585080px;}
._12_c00421{width:11.906400px;}
._26_c00421{width:13.049400px;}
._13_c00421{width:14.207820px;}
._1d_c00421{width:15.296820px;}
._14_c00421{width:17.090040px;}
._1f_c00421{width:18.989491px;}
._11_c00421{width:20.240880px;}
._e_c00421{width:21.308100px;}
._10_c00421{width:22.709280px;}
._d_c00421{width:24.727560px;}
._f_c00421{width:26.455440px;}
._15_c00421{width:27.885660px;}
._17_c00421{width:29.228760px;}
._28_c00421{width:30.433920px;}
._16_c00421{width:31.493880px;}
._4_c00421{width:33.751740px;}
._20_c00421{width:37.006781px;}
._3_c00421{width:38.173080px;}
._0_c00421{width:39.922740px;}
._21_c00421{width:40.927840px;}
._2_c00421{width:42.485520px;}
._29_c00421{width:43.501740px;}
._1_c00421{width:44.852280px;}
._27_c00421{width:46.140180px;}
._5_c00421{width:47.214220px;}
._22_c00421{width:48.260951px;}
._18_c00421{width:51.705720px;}
._1a_c00421{width:53.361000px;}
._19_c00421{width:55.045320px;}
._1b_c00421{width:56.105280px;}
._23_c00421{width:91.241012px;}
.fc0_c00421{color:transparent;}
.fsb_c00421{font-size:7.200000px;}
.fs4_c00421{font-size:15.000600px;}
.fs6_c00421{font-size:17.280000px;}
.fs7_c00421{font-size:18.600000px;}
.fsa_c00421{font-size:19.800600px;}
.fs5_c00421{font-size:20.400600px;}
.fsc_c00421{font-size:22.200600px;}
.fs2_c00421{font-size:43.800600px;}
.fs9_c00421{font-size:46.080000px;}
.fse_c00421{font-size:58.800000px;}
.fs8_c00421{font-size:62.400000px;}
.fs0_c00421{font-size:67.200000px;}
.fsd_c00421{font-size:71.400000px;}
.fs1_c00421{font-size:72.600000px;}
.fs3_c00421{font-size:165.600000px;}
.y0_c00421{bottom:0.000000px;}
.y2b_c00421{bottom:103.320000px;}
.y2a_c00421{bottom:180.360000px;}
.y28_c00421{bottom:212.054250px;}
.y29_c00421{bottom:212.055000px;}
.y26_c00421{bottom:242.989050px;}
.y27_c00421{bottom:243.000000px;}
.y25_c00421{bottom:273.971100px;}
.y24_c00421{bottom:304.935000px;}
.y23_c00421{bottom:335.895000px;}
.y21_c00421{bottom:366.851100px;}
.y22_c00421{bottom:366.855000px;}
.y1f_c00421{bottom:397.814100px;}
.y20_c00421{bottom:397.815000px;}
.y1e_c00421{bottom:428.415000px;}
.y1d_c00421{bottom:459.360000px;}
.y1c_c00421{bottom:490.695000px;}
.y1b_c00421{bottom:521.655000px;}
.y1a_c00421{bottom:524.175000px;}
.y18_c00421{bottom:584.648100px;}
.y19_c00421{bottom:584.655000px;}
.y17_c00421{bottom:615.975000px;}
.y15_c00421{bottom:646.567200px;}
.y16_c00421{bottom:646.575000px;}
.y14_c00421{bottom:677.512950px;}
.y12_c00421{bottom:708.494250px;}
.y13_c00421{bottom:708.495000px;}
.y10_c00421{bottom:739.439100px;}
.y11_c00421{bottom:739.440000px;}
.ye_c00421{bottom:770.025150px;}
.yf_c00421{bottom:770.040000px;}
.yd_c00421{bottom:800.989050px;}
.yc_c00421{bottom:831.971100px;}
.yb_c00421{bottom:862.935000px;}
.ya_c00421{bottom:893.515950px;}
.y8_c00421{bottom:924.126450px;}
.y9_c00421{bottom:924.135000px;}
.y7_c00421{bottom:986.036100px;}
.y5_c00421{bottom:1016.992950px;}
.y6_c00421{bottom:1017.000000px;}
.y4_c00421{bottom:1047.975000px;}
.y3_c00421{bottom:1074.240000px;}
.y2_c00421{bottom:1079.295000px;}
.y1_c00421{bottom:1155.975000px;}
.hc_c00421{height:4.795200px;}
.h6_c00421{height:11.508480px;}
.h7_c00421{height:18.254883px;}
.h5_c00421{height:20.022073px;}
.hb_c00421{height:20.651407px;}
.hd_c00421{height:21.788675px;}
.ha_c00421{height:30.689280px;}
.h11_c00421{height:57.708984px;}
.h9_c00421{height:61.242188px;}
.h2_c00421{height:65.953125px;}
.h3_c00421{height:71.252930px;}
.h10_c00421{height:71.255930px;}
.h8_c00421{height:71.256530px;}
.he_c00421{height:71.268530px;}
.hf_c00421{height:71.296730px;}
.h4_c00421{height:162.527344px;}
.h1_c00421{height:1263.000000px;}
.h0_c00421{height:1263.240000px;}
.w1_c00421{width:892.500000px;}
.w0_c00421{width:892.800000px;}
.x0_c00421{left:0.000000px;}
.x20_c00421{left:107.595000px;}
.x12_c00421{left:108.866400px;}
.x8_c00421{left:109.980000px;}
.x1_c00421{left:111.525000px;}
.xd_c00421{left:140.250000px;}
.x13_c00421{left:143.820000px;}
.xe_c00421{left:159.660000px;}
.x25_c00421{left:161.550000px;}
.xf_c00421{left:162.963300px;}
.x14_c00421{left:171.690000px;}
.x40_c00421{left:175.155000px;}
.x26_c00421{left:188.640000px;}
.x41_c00421{left:197.745000px;}
.x27_c00421{left:207.000000px;}
.x34_c00421{left:209.835000px;}
.x9_c00421{left:218.715000px;}
.x35_c00421{left:235.695000px;}
.xa_c00421{left:241.380000px;}
.x15_c00421{left:246.795000px;}
.x28_c00421{left:255.090000px;}
.x16_c00421{left:269.850000px;}
.x21_c00421{left:277.755000px;}
.x29_c00421{left:282.720000px;}
.x17_c00421{left:288.900000px;}
.x22_c00421{left:299.730000px;}
.x2a_c00421{left:303.675000px;}
.x36_c00421{left:305.205000px;}
.x18_c00421{left:311.970000px;}
.x19_c00421{left:330.300000px;}
.x2b_c00421{left:335.745000px;}
.x37_c00421{left:341.640000px;}
.x48_c00421{left:343.545000px;}
.x2_c00421{left:345.750000px;}
.x4_c00421{left:347.250000px;}
.x38_c00421{left:349.515000px;}
.x2c_c00421{left:361.275000px;}
.x39_c00421{left:369.960000px;}
.x49_c00421{left:375.630000px;}
.x1e_c00421{left:387.615000px;}
.x2d_c00421{left:407.730000px;}
.x1f_c00421{left:410.925000px;}
.x3_c00421{left:412.815000px;}
.x3a_c00421{left:419.355000px;}
.x4c_c00421{left:424.275000px;}
.x2e_c00421{left:430.755000px;}
.x42_c00421{left:484.710000px;}
.x43_c00421{left:508.125000px;}
.x2f_c00421{left:520.410000px;}
.x3b_c00421{left:522.675000px;}
.x3c_c00421{left:532.395000px;}
.x30_c00421{left:543.825000px;}
.x31_c00421{left:570.060000px;}
.x23_c00421{left:575.835000px;}
.x5_c00421{left:578.025000px;}
.x3d_c00421{left:580.260000px;}
.x45_c00421{left:582.330000px;}
.x24_c00421{left:597.810000px;}
.xb_c00421{left:598.875000px;}
.x46_c00421{left:602.100000px;}
.x10_c00421{left:603.555000px;}
.x6_c00421{left:615.975000px;}
.xc_c00421{left:621.870000px;}
.x11_c00421{left:630.570000px;}
.x32_c00421{left:636.690000px;}
.x33_c00421{left:659.730000px;}
.x1a_c00421{left:683.475000px;}
.x1b_c00421{left:704.850000px;}
.x1c_c00421{left:710.115000px;}
.x3e_c00421{left:711.360000px;}
.x3f_c00421{left:723.180000px;}
.x7_c00421{left:726.570000px;}
.x1d_c00421{left:733.500000px;}
.x4a_c00421{left:744.690000px;}
.x47_c00421{left:748.935000px;}
.x44_c00421{left:751.425000px;}
.x4b_c00421{left:755.610000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls42_c00421{letter-spacing:-2.258667pt;}
.ls61_c00421{letter-spacing:-2.232853pt;}
.ls63_c00421{letter-spacing:-2.187680pt;}
.ls5c_c00421{letter-spacing:-2.142507pt;}
.ls7a_c00421{letter-spacing:-2.136053pt;}
.ls88_c00421{letter-spacing:-2.110240pt;}
.ls3d_c00421{letter-spacing:-2.090667pt;}
.lsa3_c00421{letter-spacing:-2.013440pt;}
.ls40_c00421{letter-spacing:-1.961813pt;}
.ls83_c00421{letter-spacing:-1.941333pt;}
.lsa8_c00421{letter-spacing:-1.929547pt;}
.ls65_c00421{letter-spacing:-1.800480pt;}
.lsa9_c00421{letter-spacing:-1.684320pt;}
.ls77_c00421{letter-spacing:-1.671413pt;}
.ls6b_c00421{letter-spacing:-1.664960pt;}
.ls8d_c00421{letter-spacing:-1.600427pt;}
.ls43_c00421{letter-spacing:-1.439093pt;}
.ls3f_c00421{letter-spacing:-1.393920pt;}
.ls98_c00421{letter-spacing:-1.381013pt;}
.ls67_c00421{letter-spacing:-1.374560pt;}
.ls85_c00421{letter-spacing:-1.361653pt;}
.ls6f_c00421{letter-spacing:-1.329387pt;}
.ls5b_c00421{letter-spacing:-1.322933pt;}
.ls5d_c00421{letter-spacing:-1.290667pt;}
.ls97_c00421{letter-spacing:-1.251947pt;}
.ls80_c00421{letter-spacing:-1.213227pt;}
.lsa6_c00421{letter-spacing:-1.161600pt;}
.lsa5_c00421{letter-spacing:-1.155147pt;}
.ls9a_c00421{letter-spacing:-1.116427pt;}
.ls78_c00421{letter-spacing:-1.071253pt;}
.ls7b_c00421{letter-spacing:-1.051893pt;}
.ls9c_c00421{letter-spacing:-0.993813pt;}
.ls9f_c00421{letter-spacing:-0.935733pt;}
.ls58_c00421{letter-spacing:-0.929280pt;}
.ls7f_c00421{letter-spacing:-0.851840pt;}
.ls4c_c00421{letter-spacing:-0.800213pt;}
.ls4d_c00421{letter-spacing:-0.793760pt;}
.ls81_c00421{letter-spacing:-0.780853pt;}
.ls55_c00421{letter-spacing:-0.729227pt;}
.ls95_c00421{letter-spacing:-0.722773pt;}
.ls70_c00421{letter-spacing:-0.703413pt;}
.ls75_c00421{letter-spacing:-0.690507pt;}
.ls5a_c00421{letter-spacing:-0.677600pt;}
.ls74_c00421{letter-spacing:-0.651787pt;}
.ls60_c00421{letter-spacing:-0.638880pt;}
.ls8b_c00421{letter-spacing:-0.632427pt;}
.ls7c_c00421{letter-spacing:-0.613067pt;}
.ls7d_c00421{letter-spacing:-0.600160pt;}
.ls96_c00421{letter-spacing:-0.580800pt;}
.lsa2_c00421{letter-spacing:-0.574347pt;}
.ls6e_c00421{letter-spacing:-0.554987pt;}
.ls5f_c00421{letter-spacing:-0.529173pt;}
.ls44_c00421{letter-spacing:-0.496907pt;}
.ls6a_c00421{letter-spacing:-0.490453pt;}
.ls45_c00421{letter-spacing:-0.471093pt;}
.ls86_c00421{letter-spacing:-0.464640pt;}
.ls7e_c00421{letter-spacing:-0.458187pt;}
.ls90_c00421{letter-spacing:-0.451733pt;}
.ls56_c00421{letter-spacing:-0.432373pt;}
.ls6c_c00421{letter-spacing:-0.419467pt;}
.ls59_c00421{letter-spacing:-0.400107pt;}
.ls51_c00421{letter-spacing:-0.387200pt;}
.ls91_c00421{letter-spacing:-0.374293pt;}
.ls73_c00421{letter-spacing:-0.361387pt;}
.lsa7_c00421{letter-spacing:-0.354933pt;}
.ls62_c00421{letter-spacing:-0.348480pt;}
.lsa1_c00421{letter-spacing:-0.342027pt;}
.ls68_c00421{letter-spacing:-0.335573pt;}
.ls76_c00421{letter-spacing:-0.316213pt;}
.ls6d_c00421{letter-spacing:-0.309760pt;}
.ls8f_c00421{letter-spacing:-0.296853pt;}
.ls4f_c00421{letter-spacing:-0.290400pt;}
.ls4e_c00421{letter-spacing:-0.271040pt;}
.ls94_c00421{letter-spacing:-0.258133pt;}
.ls89_c00421{letter-spacing:-0.238773pt;}
.ls57_c00421{letter-spacing:-0.232320pt;}
.ls8a_c00421{letter-spacing:-0.225867pt;}
.ls5e_c00421{letter-spacing:-0.206507pt;}
.ls92_c00421{letter-spacing:-0.193600pt;}
.ls8c_c00421{letter-spacing:-0.190400pt;}
.ls64_c00421{letter-spacing:-0.174240pt;}
.ls50_c00421{letter-spacing:-0.161333pt;}
.ls87_c00421{letter-spacing:-0.148427pt;}
.lsa0_c00421{letter-spacing:-0.141973pt;}
.ls9e_c00421{letter-spacing:-0.135520pt;}
.lsa4_c00421{letter-spacing:-0.129067pt;}
.ls8e_c00421{letter-spacing:-0.122613pt;}
.ls99_c00421{letter-spacing:-0.120587pt;}
.ls72_c00421{letter-spacing:-0.116160pt;}
.ls4a_c00421{letter-spacing:-0.109707pt;}
.ls53_c00421{letter-spacing:-0.103253pt;}
.ls9d_c00421{letter-spacing:-0.096800pt;}
.ls41_c00421{letter-spacing:-0.090347pt;}
.ls4b_c00421{letter-spacing:-0.077440pt;}
.ls66_c00421{letter-spacing:-0.064533pt;}
.ls9b_c00421{letter-spacing:-0.058080pt;}
.ls69_c00421{letter-spacing:-0.038720pt;}
.ls54_c00421{letter-spacing:-0.032267pt;}
.ls3e_c00421{letter-spacing:-0.019360pt;}
.ls52_c00421{letter-spacing:-0.006453pt;}
.ls46_c00421{letter-spacing:0.000000pt;}
.ls3a_c00421{letter-spacing:0.006453pt;}
.lsa_c00421{letter-spacing:0.012907pt;}
.ls37_c00421{letter-spacing:0.025387pt;}
.ls1c_c00421{letter-spacing:0.032267pt;}
.ls25_c00421{letter-spacing:0.038720pt;}
.lsc_c00421{letter-spacing:0.045173pt;}
.ls26_c00421{letter-spacing:0.051627pt;}
.ls12_c00421{letter-spacing:0.058080pt;}
.ls21_c00421{letter-spacing:0.064533pt;}
.ls71_c00421{letter-spacing:0.070987pt;}
.ls1f_c00421{letter-spacing:0.077440pt;}
.ls9_c00421{letter-spacing:0.083893pt;}
.lse_c00421{letter-spacing:0.090347pt;}
.ls11_c00421{letter-spacing:0.103253pt;}
.ls6_c00421{letter-spacing:0.109707pt;}
.ls24_c00421{letter-spacing:0.116160pt;}
.ls28_c00421{letter-spacing:0.122613pt;}
.ls27_c00421{letter-spacing:0.129067pt;}
.ls2_c00421{letter-spacing:0.148427pt;}
.ls2e_c00421{letter-spacing:0.152320pt;}
.ls32_c00421{letter-spacing:0.161333pt;}
.ls4_c00421{letter-spacing:0.167787pt;}
.ls0_c00421{letter-spacing:0.174240pt;}
.ls15_c00421{letter-spacing:0.180693pt;}
.ls3c_c00421{letter-spacing:0.187147pt;}
.ls1e_c00421{letter-spacing:0.206507pt;}
.lsb_c00421{letter-spacing:0.212960pt;}
.ls10_c00421{letter-spacing:0.219413pt;}
.ls13_c00421{letter-spacing:0.225867pt;}
.ls30_c00421{letter-spacing:0.238773pt;}
.ls19_c00421{letter-spacing:0.245227pt;}
.ls49_c00421{letter-spacing:0.277493pt;}
.ls22_c00421{letter-spacing:0.283947pt;}
.ls16_c00421{letter-spacing:0.290400pt;}
.ls17_c00421{letter-spacing:0.296853pt;}
.lsd_c00421{letter-spacing:0.309760pt;}
.ls1a_c00421{letter-spacing:0.322667pt;}
.ls3b_c00421{letter-spacing:0.323680pt;}
.ls18_c00421{letter-spacing:0.335573pt;}
.lsf_c00421{letter-spacing:0.342027pt;}
.ls2c_c00421{letter-spacing:0.348480pt;}
.ls14_c00421{letter-spacing:0.354933pt;}
.ls7_c00421{letter-spacing:0.393653pt;}
.ls1b_c00421{letter-spacing:0.413013pt;}
.ls29_c00421{letter-spacing:0.425920pt;}
.ls33_c00421{letter-spacing:0.432373pt;}
.ls2d_c00421{letter-spacing:0.444267pt;}
.ls1_c00421{letter-spacing:0.484000pt;}
.ls31_c00421{letter-spacing:0.542080pt;}
.ls5_c00421{letter-spacing:0.567893pt;}
.ls35_c00421{letter-spacing:0.571200pt;}
.ls38_c00421{letter-spacing:0.580800pt;}
.ls36_c00421{letter-spacing:0.666400pt;}
.ls20_c00421{letter-spacing:0.677600pt;}
.ls1d_c00421{letter-spacing:0.690507pt;}
.ls23_c00421{letter-spacing:0.761493pt;}
.ls39_c00421{letter-spacing:0.793333pt;}
.ls34_c00421{letter-spacing:0.799680pt;}
.lsaa_c00421{letter-spacing:0.804907pt;}
.ls48_c00421{letter-spacing:0.826667pt;}
.ls2f_c00421{letter-spacing:0.844107pt;}
.ls2a_c00421{letter-spacing:0.880027pt;}
.ls47_c00421{letter-spacing:0.906693pt;}
.ls84_c00421{letter-spacing:0.986693pt;}
.ls8_c00421{letter-spacing:1.439093pt;}
.ls79_c00421{letter-spacing:1.535893pt;}
.ls2b_c00421{letter-spacing:1.858560pt;}
.ls93_c00421{letter-spacing:2.077973pt;}
.ls82_c00421{letter-spacing:2.773333pt;}
.ls3_c00421{letter-spacing:181.915733pt;}
.ws0_c00421{word-spacing:-1.601649pt;}
.ws5_c00421{word-spacing:0.000000pt;}
.ws1_c00421{word-spacing:0.760809pt;}
.ws2_c00421{word-spacing:3.326501pt;}
.ws4_c00421{word-spacing:21.766455pt;}
.ws3_c00421{word-spacing:35.856436pt;}
._24_c00421{margin-left:-4.121600pt;}
._1e_c00421{margin-left:-2.213493pt;}
._25_c00421{margin-left:-0.993813pt;}
._c_c00421{width:0.968000pt;}
._a_c00421{width:2.103787pt;}
._1c_c00421{width:3.149227pt;}
._7_c00421{width:4.814187pt;}
._6_c00421{width:6.066133pt;}
._8_c00421{width:7.008320pt;}
._b_c00421{width:8.298987pt;}
._9_c00421{width:9.408960pt;}
._12_c00421{width:10.583467pt;}
._26_c00421{width:11.599467pt;}
._13_c00421{width:12.629173pt;}
._1d_c00421{width:13.597173pt;}
._14_c00421{width:15.191147pt;}
._1f_c00421{width:16.879548pt;}
._11_c00421{width:17.991893pt;}
._e_c00421{width:18.940533pt;}
._10_c00421{width:20.186027pt;}
._d_c00421{width:21.980053pt;}
._f_c00421{width:23.515947pt;}
._15_c00421{width:24.787253pt;}
._17_c00421{width:25.981120pt;}
._28_c00421{width:27.052373pt;}
._16_c00421{width:27.994560pt;}
._4_c00421{width:30.001547pt;}
._20_c00421{width:32.894916pt;}
._3_c00421{width:33.931627pt;}
._0_c00421{width:35.486880pt;}
._21_c00421{width:36.380302pt;}
._2_c00421{width:37.764907pt;}
._29_c00421{width:38.668213pt;}
._1_c00421{width:39.868693pt;}
._27_c00421{width:41.013493pt;}
._5_c00421{width:41.968196pt;}
._22_c00421{width:42.898623pt;}
._18_c00421{width:45.960640pt;}
._1a_c00421{width:47.432000pt;}
._19_c00421{width:48.929173pt;}
._1b_c00421{width:49.871360pt;}
._23_c00421{width:81.103122pt;}
.fsb_c00421{font-size:6.400000pt;}
.fs4_c00421{font-size:13.333867pt;}
.fs6_c00421{font-size:15.360000pt;}
.fs7_c00421{font-size:16.533333pt;}
.fsa_c00421{font-size:17.600533pt;}
.fs5_c00421{font-size:18.133867pt;}
.fsc_c00421{font-size:19.733867pt;}
.fs2_c00421{font-size:38.933867pt;}
.fs9_c00421{font-size:40.960000pt;}
.fse_c00421{font-size:52.266667pt;}
.fs8_c00421{font-size:55.466667pt;}
.fs0_c00421{font-size:59.733333pt;}
.fsd_c00421{font-size:63.466667pt;}
.fs1_c00421{font-size:64.533333pt;}
.fs3_c00421{font-size:147.200000pt;}
.y0_c00421{bottom:0.000000pt;}
.y2b_c00421{bottom:91.840000pt;}
.y2a_c00421{bottom:160.320000pt;}
.y28_c00421{bottom:188.492667pt;}
.y29_c00421{bottom:188.493333pt;}
.y26_c00421{bottom:215.990267pt;}
.y27_c00421{bottom:216.000000pt;}
.y25_c00421{bottom:243.529867pt;}
.y24_c00421{bottom:271.053333pt;}
.y23_c00421{bottom:298.573333pt;}
.y21_c00421{bottom:326.089867pt;}
.y22_c00421{bottom:326.093333pt;}
.y1f_c00421{bottom:353.612533pt;}
.y20_c00421{bottom:353.613333pt;}
.y1e_c00421{bottom:380.813333pt;}
.y1d_c00421{bottom:408.320000pt;}
.y1c_c00421{bottom:436.173333pt;}
.y1b_c00421{bottom:463.693333pt;}
.y1a_c00421{bottom:465.933333pt;}
.y18_c00421{bottom:519.687200pt;}
.y19_c00421{bottom:519.693333pt;}
.y17_c00421{bottom:547.533333pt;}
.y15_c00421{bottom:574.726400pt;}
.y16_c00421{bottom:574.733333pt;}
.y14_c00421{bottom:602.233733pt;}
.y12_c00421{bottom:629.772667pt;}
.y13_c00421{bottom:629.773333pt;}
.y10_c00421{bottom:657.279200pt;}
.y11_c00421{bottom:657.280000pt;}
.ye_c00421{bottom:684.466800pt;}
.yf_c00421{bottom:684.480000pt;}
.yd_c00421{bottom:711.990267pt;}
.yc_c00421{bottom:739.529867pt;}
.yb_c00421{bottom:767.053333pt;}
.ya_c00421{bottom:794.236400pt;}
.y8_c00421{bottom:821.445733pt;}
.y9_c00421{bottom:821.453333pt;}
.y7_c00421{bottom:876.476533pt;}
.y5_c00421{bottom:903.993733pt;}
.y6_c00421{bottom:904.000000pt;}
.y4_c00421{bottom:931.533333pt;}
.y3_c00421{bottom:954.880000pt;}
.y2_c00421{bottom:959.373333pt;}
.y1_c00421{bottom:1027.533333pt;}
.hc_c00421{height:4.262400pt;}
.h6_c00421{height:10.229760pt;}
.h7_c00421{height:16.226562pt;}
.h5_c00421{height:17.797398pt;}
.hb_c00421{height:18.356806pt;}
.hd_c00421{height:19.367711pt;}
.ha_c00421{height:27.279360pt;}
.h11_c00421{height:51.296875pt;}
.h9_c00421{height:54.437500pt;}
.h2_c00421{height:58.625000pt;}
.h3_c00421{height:63.335938pt;}
.h10_c00421{height:63.338604pt;}
.h8_c00421{height:63.339138pt;}
.he_c00421{height:63.349804pt;}
.hf_c00421{height:63.374871pt;}
.h4_c00421{height:144.468750pt;}
.h1_c00421{height:1122.666667pt;}
.h0_c00421{height:1122.880000pt;}
.w1_c00421{width:793.333333pt;}
.w0_c00421{width:793.600000pt;}
.x0_c00421{left:0.000000pt;}
.x20_c00421{left:95.640000pt;}
.x12_c00421{left:96.770133pt;}
.x8_c00421{left:97.760000pt;}
.x1_c00421{left:99.133333pt;}
.xd_c00421{left:124.666667pt;}
.x13_c00421{left:127.840000pt;}
.xe_c00421{left:141.920000pt;}
.x25_c00421{left:143.600000pt;}
.xf_c00421{left:144.856267pt;}
.x14_c00421{left:152.613333pt;}
.x40_c00421{left:155.693333pt;}
.x26_c00421{left:167.680000pt;}
.x41_c00421{left:175.773333pt;}
.x27_c00421{left:184.000000pt;}
.x34_c00421{left:186.520000pt;}
.x9_c00421{left:194.413333pt;}
.x35_c00421{left:209.506667pt;}
.xa_c00421{left:214.560000pt;}
.x15_c00421{left:219.373333pt;}
.x28_c00421{left:226.746667pt;}
.x16_c00421{left:239.866667pt;}
.x21_c00421{left:246.893333pt;}
.x29_c00421{left:251.306667pt;}
.x17_c00421{left:256.800000pt;}
.x22_c00421{left:266.426667pt;}
.x2a_c00421{left:269.933333pt;}
.x36_c00421{left:271.293333pt;}
.x18_c00421{left:277.306667pt;}
.x19_c00421{left:293.600000pt;}
.x2b_c00421{left:298.440000pt;}
.x37_c00421{left:303.680000pt;}
.x48_c00421{left:305.373333pt;}
.x2_c00421{left:307.333333pt;}
.x4_c00421{left:308.666667pt;}
.x38_c00421{left:310.680000pt;}
.x2c_c00421{left:321.133333pt;}
.x39_c00421{left:328.853333pt;}
.x49_c00421{left:333.893333pt;}
.x1e_c00421{left:344.546667pt;}
.x2d_c00421{left:362.426667pt;}
.x1f_c00421{left:365.266667pt;}
.x3_c00421{left:366.946667pt;}
.x3a_c00421{left:372.760000pt;}
.x4c_c00421{left:377.133333pt;}
.x2e_c00421{left:382.893333pt;}
.x42_c00421{left:430.853333pt;}
.x43_c00421{left:451.666667pt;}
.x2f_c00421{left:462.586667pt;}
.x3b_c00421{left:464.600000pt;}
.x3c_c00421{left:473.240000pt;}
.x30_c00421{left:483.400000pt;}
.x31_c00421{left:506.720000pt;}
.x23_c00421{left:511.853333pt;}
.x5_c00421{left:513.800000pt;}
.x3d_c00421{left:515.786667pt;}
.x45_c00421{left:517.626667pt;}
.x24_c00421{left:531.386667pt;}
.xb_c00421{left:532.333333pt;}
.x46_c00421{left:535.200000pt;}
.x10_c00421{left:536.493333pt;}
.x6_c00421{left:547.533333pt;}
.xc_c00421{left:552.773333pt;}
.x11_c00421{left:560.506667pt;}
.x32_c00421{left:565.946667pt;}
.x33_c00421{left:586.426667pt;}
.x1a_c00421{left:607.533333pt;}
.x1b_c00421{left:626.533333pt;}
.x1c_c00421{left:631.213333pt;}
.x3e_c00421{left:632.320000pt;}
.x3f_c00421{left:642.826667pt;}
.x7_c00421{left:645.840000pt;}
.x1d_c00421{left:652.000000pt;}
.x4a_c00421{left:661.946667pt;}
.x47_c00421{left:665.720000pt;}
.x44_c00421{left:667.933333pt;}
.x4b_c00421{left:671.653333pt;}
}





/* 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_c00422 {
    display:none;
  }
  .loading-indicator_c00422.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00422 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_c00422 { 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_c00422" -> "#page-container .classname_c00422")
 */
.pf_c00422 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00422 { /* 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_c00422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00422 { /* 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_c00422 { /* 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_c00422 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00422 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00422 {overflow:visible;}
  }
}
.c_c00422 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00422 { /* 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_c00422:after { /* webkit #35443 */
  content: '';
}
.t_c00422:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00422 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 */
}
.__c00422 { /* 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_c00422 { /* info for Javascript */
  display:none;
}
.l_c00422 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00422 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00422 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00422: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_c00422 {
    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_c00422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00422.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_c00422 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00422{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00422;src:url('chunks/assets/font_f6270bb73f6026406d215de8.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.284668;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_c00422{transform:matrix(0.216229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216229,0.000000,0.000000,0.250000,0,0);}
.m10_c00422{transform:matrix(0.221919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221919,0.000000,0.000000,0.250000,0,0);}
.m7_c00422{transform:matrix(0.233299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233299,0.000000,0.000000,0.250000,0,0);}
.m9_c00422{transform:matrix(0.236477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236477,0.000000,0.000000,0.250000,0,0);}
.mc_c00422{transform:matrix(0.238989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238989,0.000000,0.000000,0.250000,0,0);}
.mb_c00422{transform:matrix(0.240362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240362,0.000000,0.000000,0.250000,0,0);}
.ma_c00422{transform:matrix(0.241061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241061,0.000000,0.000000,0.250000,0,0);}
.mf_c00422{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m6_c00422{transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);}
.m1_c00422{transform:matrix(0.247941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247941,0.000000,0.000000,0.250000,0,0);}
.m8_c00422{transform:matrix(0.248722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248722,0.000000,0.000000,0.250000,0,0);}
.m5_c00422{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.m2_c00422{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.md_c00422{transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);}
.m3_c00422{transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);}
.me_c00422{transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);}
.m0_c00422{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);}
.v0_c00422{vertical-align:0.000000px;}
.ls43_c00422{letter-spacing:-2.478000px;}
.ls63_c00422{letter-spacing:-2.400120px;}
.ls4c_c00422{letter-spacing:-2.385960px;}
.ls61_c00422{letter-spacing:-2.378880px;}
.ls55_c00422{letter-spacing:-2.138160px;}
.ls4b_c00422{letter-spacing:-1.996560px;}
.ls68_c00422{letter-spacing:-1.947000px;}
.ls5e_c00422{letter-spacing:-1.854960px;}
.ls6f_c00422{letter-spacing:-1.814400px;}
.ls6c_c00422{letter-spacing:-1.784160px;}
.ls69_c00422{letter-spacing:-1.401840px;}
.ls4f_c00422{letter-spacing:-1.380600px;}
.ls5f_c00422{letter-spacing:-1.359360px;}
.ls45_c00422{letter-spacing:-1.323960px;}
.ls66_c00422{letter-spacing:-1.281480px;}
.ls49_c00422{letter-spacing:-1.231920px;}
.ls6b_c00422{letter-spacing:-1.182360px;}
.ls5b_c00422{letter-spacing:-1.097400px;}
.ls41_c00422{letter-spacing:-0.955800px;}
.ls4a_c00422{letter-spacing:-0.948720px;}
.ls42_c00422{letter-spacing:-0.934560px;}
.ls40_c00422{letter-spacing:-0.870840px;}
.ls53_c00422{letter-spacing:-0.700920px;}
.ls64_c00422{letter-spacing:-0.615960px;}
.ls46_c00422{letter-spacing:-0.566400px;}
.ls47_c00422{letter-spacing:-0.559320px;}
.ls50_c00422{letter-spacing:-0.481440px;}
.ls62_c00422{letter-spacing:-0.460200px;}
.ls60_c00422{letter-spacing:-0.438960px;}
.ls5c_c00422{letter-spacing:-0.417720px;}
.ls6e_c00422{letter-spacing:-0.382320px;}
.ls5a_c00422{letter-spacing:-0.339840px;}
.ls56_c00422{letter-spacing:-0.325680px;}
.ls51_c00422{letter-spacing:-0.318600px;}
.ls67_c00422{letter-spacing:-0.247800px;}
.ls58_c00422{letter-spacing:-0.240720px;}
.ls59_c00422{letter-spacing:-0.233640px;}
.ls52_c00422{letter-spacing:-0.198240px;}
.ls54_c00422{letter-spacing:-0.169920px;}
.ls6a_c00422{letter-spacing:-0.113280px;}
.ls4e_c00422{letter-spacing:-0.056640px;}
.ls44_c00422{letter-spacing:-0.035400px;}
.ls4d_c00422{letter-spacing:0.000000px;}
.ls11_c00422{letter-spacing:0.014160px;}
.ls16_c00422{letter-spacing:0.028320px;}
.ls30_c00422{letter-spacing:0.035400px;}
.ls1e_c00422{letter-spacing:0.056640px;}
.ls3d_c00422{letter-spacing:0.063720px;}
.lsd_c00422{letter-spacing:0.077880px;}
.ls33_c00422{letter-spacing:0.084960px;}
.ls12_c00422{letter-spacing:0.134520px;}
.lsa_c00422{letter-spacing:0.155760px;}
.ls21_c00422{letter-spacing:0.169920px;}
.ls36_c00422{letter-spacing:0.191160px;}
.ls27_c00422{letter-spacing:0.198240px;}
.ls2e_c00422{letter-spacing:0.205320px;}
.lsf_c00422{letter-spacing:0.212400px;}
.ls6_c00422{letter-spacing:0.226560px;}
.ls24_c00422{letter-spacing:0.247800px;}
.ls2_c00422{letter-spacing:0.254880px;}
.ls3e_c00422{letter-spacing:0.261960px;}
.ls32_c00422{letter-spacing:0.276120px;}
.ls23_c00422{letter-spacing:0.283200px;}
.ls17_c00422{letter-spacing:0.304440px;}
.ls10_c00422{letter-spacing:0.325680px;}
.ls3c_c00422{letter-spacing:0.332760px;}
.ls2a_c00422{letter-spacing:0.354000px;}
.ls4_c00422{letter-spacing:0.361080px;}
.ls2d_c00422{letter-spacing:0.375240px;}
.ls1a_c00422{letter-spacing:0.396480px;}
.ls37_c00422{letter-spacing:0.417720px;}
.ls1d_c00422{letter-spacing:0.424800px;}
.ls13_c00422{letter-spacing:0.431880px;}
.ls26_c00422{letter-spacing:0.438960px;}
.ls29_c00422{letter-spacing:0.453120px;}
.ls15_c00422{letter-spacing:0.460200px;}
.ls5d_c00422{letter-spacing:0.481440px;}
.ls18_c00422{letter-spacing:0.495600px;}
.ls2b_c00422{letter-spacing:0.502680px;}
.ls39_c00422{letter-spacing:0.509760px;}
.ls35_c00422{letter-spacing:0.516840px;}
.ls2f_c00422{letter-spacing:0.559320px;}
.ls3b_c00422{letter-spacing:0.566400px;}
.ls14_c00422{letter-spacing:0.580560px;}
.ls31_c00422{letter-spacing:0.587640px;}
.ls20_c00422{letter-spacing:0.594720px;}
.ls7_c00422{letter-spacing:0.608880px;}
.ls1c_c00422{letter-spacing:0.623040px;}
.ls48_c00422{letter-spacing:0.658440px;}
.ls9_c00422{letter-spacing:0.672600px;}
.ls3_c00422{letter-spacing:0.679680px;}
.ls38_c00422{letter-spacing:0.686760px;}
.ls25_c00422{letter-spacing:0.693840px;}
.ls1_c00422{letter-spacing:0.736320px;}
.ls22_c00422{letter-spacing:0.750480px;}
.ls57_c00422{letter-spacing:0.757560px;}
.ls1b_c00422{letter-spacing:0.771720px;}
.ls65_c00422{letter-spacing:0.778800px;}
.ls1f_c00422{letter-spacing:0.792960px;}
.ls5_c00422{letter-spacing:0.800040px;}
.lse_c00422{letter-spacing:0.828360px;}
.ls28_c00422{letter-spacing:0.842520px;}
.ls6d_c00422{letter-spacing:0.863760px;}
.lsc_c00422{letter-spacing:0.870840px;}
.ls2c_c00422{letter-spacing:0.969960px;}
.ls8_c00422{letter-spacing:0.991200px;}
.ls34_c00422{letter-spacing:1.026600px;}
.lsb_c00422{letter-spacing:1.196520px;}
.ls3a_c00422{letter-spacing:1.239000px;}
.ls19_c00422{letter-spacing:1.302720px;}
.ls0_c00422{letter-spacing:1.522200px;}
.ls3f_c00422{letter-spacing:2.851800px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{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__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00422{word-spacing:0.000000px;}
._0_c00422{width:1.168200px;}
._1_c00422{width:3.249720px;}
._b_c00422{width:4.382520px;}
._2_c00422{width:5.535120px;}
._11_c00422{width:6.662280px;}
._6_c00422{width:7.902720px;}
._15_c00422{width:8.915160px;}
._12_c00422{width:10.118760px;}
._14_c00422{width:11.996280px;}
._13_c00422{width:13.190040px;}
._f_c00422{width:14.626200px;}
._c_c00422{width:16.284000px;}
._d_c00422{width:19.278840px;}
._10_c00422{width:20.397480px;}
._5_c00422{width:21.537360px;}
._4_c00422{width:23.250720px;}
._1c_c00422{width:24.787080px;}
._3_c00422{width:25.849080px;}
._19_c00422{width:27.590760px;}
._1b_c00422{width:29.686440px;}
._1a_c00422{width:30.967920px;}
._17_c00422{width:32.419320px;}
._18_c00422{width:33.566280px;}
._16_c00422{width:35.711520px;}
._e_c00422{width:37.368240px;}
._9_c00422{width:39.371880px;}
._a_c00422{width:41.495880px;}
._7_c00422{width:42.734880px;}
._8_c00422{width:45.871320px;}
.fc0_c00422{color:transparent;}
.fs3_c00422{font-size:57.600000px;}
.fs0_c00422{font-size:58.800000px;}
.fs1_c00422{font-size:70.800000px;}
.fs2_c00422{font-size:73.800000px;}
.y0_c00422{bottom:0.000000px;}
.y1f_c00422{bottom:102.240000px;}
.y1e_c00422{bottom:458.291700px;}
.y1d_c00422{bottom:488.895000px;}
.y1c_c00422{bottom:519.855000px;}
.y1b_c00422{bottom:519.860400px;}
.y1a_c00422{bottom:550.800000px;}
.y19_c00422{bottom:581.775000px;}
.y18_c00422{bottom:612.375000px;}
.y17_c00422{bottom:612.380400px;}
.y16_c00422{bottom:643.320000px;}
.y15_c00422{bottom:643.325400px;}
.y13_c00422{bottom:705.234000px;}
.y14_c00422{bottom:705.240000px;}
.y12_c00422{bottom:735.855000px;}
.y10_c00422{bottom:766.814400px;}
.y11_c00422{bottom:766.815000px;}
.yf_c00422{bottom:797.400000px;}
.ye_c00422{bottom:828.375000px;}
.yd_c00422{bottom:828.377700px;}
.yc_c00422{bottom:859.340400px;}
.yb_c00422{bottom:890.280000px;}
.ya_c00422{bottom:890.281800px;}
.y9_c00422{bottom:920.902800px;}
.y8_c00422{bottom:951.134400px;}
.y7_c00422{bottom:981.720000px;}
.y6_c00422{bottom:1012.695000px;}
.y5_c00422{bottom:1012.697700px;}
.y4_c00422{bottom:1043.655000px;}
.y3_c00422{bottom:1043.660400px;}
.y2_c00422{bottom:1074.600000px;}
.y1_c00422{bottom:1149.855000px;}
.h5_c00422{height:56.531250px;}
.h2_c00422{height:57.708984px;}
.h3_c00422{height:69.486328px;}
.h4_c00422{height:72.430664px;}
.h1_c00422{height:1263.000000px;}
.h0_c00422{height:1263.240000px;}
.w1_c00422{width:892.500000px;}
.w0_c00422{width:892.800000px;}
.x0_c00422{left:0.000000px;}
.x1_c00422{left:110.805000px;}
.x1d_c00422{left:112.176600px;}
.x1b_c00422{left:145.920000px;}
.x23_c00422{left:160.395000px;}
.x2_c00422{left:164.415000px;}
.x1c_c00422{left:171.330000px;}
.x9_c00422{left:178.725000px;}
.x24_c00422{left:181.995000px;}
.x22_c00422{left:201.450000px;}
.xa_c00422{left:206.115000px;}
.xd_c00422{left:208.605000px;}
.xe_c00422{left:240.450000px;}
.x27_c00422{left:329.955000px;}
.x28_c00422{left:358.410000px;}
.x15_c00422{left:379.560000px;}
.xf_c00422{left:396.120000px;}
.x16_c00422{left:401.910000px;}
.x10_c00422{left:426.210000px;}
.x1e_c00422{left:433.575000px;}
.x7_c00422{left:445.515000px;}
.x11_c00422{left:449.790000px;}
.x1f_c00422{left:456.090000px;}
.x8_c00422{left:472.170000px;}
.x12_c00422{left:480.420000px;}
.x20_c00422{left:495.315000px;}
.x2c_c00422{left:527.220000px;}
.x2d_c00422{left:548.610000px;}
.x25_c00422{left:555.285000px;}
.x13_c00422{left:575.055000px;}
.xb_c00422{left:581.955000px;}
.x3_c00422{left:584.970000px;}
.xc_c00422{left:603.825000px;}
.x14_c00422{left:606.405000px;}
.x26_c00422{left:628.035000px;}
.x4_c00422{left:645.075000px;}
.x2e_c00422{left:647.835000px;}
.x17_c00422{left:669.135000px;}
.x2f_c00422{left:675.165000px;}
.x5_c00422{left:682.035000px;}
.x18_c00422{left:691.890000px;}
.x2a_c00422{left:697.470000px;}
.x6_c00422{left:703.605000px;}
.x19_c00422{left:706.485000px;}
.x2b_c00422{left:719.115000px;}
.x1a_c00422{left:729.510000px;}
.x29_c00422{left:740.325000px;}
.x30_c00422{left:746.115000px;}
.x21_c00422{left:750.420000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls43_c00422{letter-spacing:-2.202667pt;}
.ls63_c00422{letter-spacing:-2.133440pt;}
.ls4c_c00422{letter-spacing:-2.120853pt;}
.ls61_c00422{letter-spacing:-2.114560pt;}
.ls55_c00422{letter-spacing:-1.900587pt;}
.ls4b_c00422{letter-spacing:-1.774720pt;}
.ls68_c00422{letter-spacing:-1.730667pt;}
.ls5e_c00422{letter-spacing:-1.648853pt;}
.ls6f_c00422{letter-spacing:-1.612800pt;}
.ls6c_c00422{letter-spacing:-1.585920pt;}
.ls69_c00422{letter-spacing:-1.246080pt;}
.ls4f_c00422{letter-spacing:-1.227200pt;}
.ls5f_c00422{letter-spacing:-1.208320pt;}
.ls45_c00422{letter-spacing:-1.176853pt;}
.ls66_c00422{letter-spacing:-1.139093pt;}
.ls49_c00422{letter-spacing:-1.095040pt;}
.ls6b_c00422{letter-spacing:-1.050987pt;}
.ls5b_c00422{letter-spacing:-0.975467pt;}
.ls41_c00422{letter-spacing:-0.849600pt;}
.ls4a_c00422{letter-spacing:-0.843307pt;}
.ls42_c00422{letter-spacing:-0.830720pt;}
.ls40_c00422{letter-spacing:-0.774080pt;}
.ls53_c00422{letter-spacing:-0.623040pt;}
.ls64_c00422{letter-spacing:-0.547520pt;}
.ls46_c00422{letter-spacing:-0.503467pt;}
.ls47_c00422{letter-spacing:-0.497173pt;}
.ls50_c00422{letter-spacing:-0.427947pt;}
.ls62_c00422{letter-spacing:-0.409067pt;}
.ls60_c00422{letter-spacing:-0.390187pt;}
.ls5c_c00422{letter-spacing:-0.371307pt;}
.ls6e_c00422{letter-spacing:-0.339840pt;}
.ls5a_c00422{letter-spacing:-0.302080pt;}
.ls56_c00422{letter-spacing:-0.289493pt;}
.ls51_c00422{letter-spacing:-0.283200pt;}
.ls67_c00422{letter-spacing:-0.220267pt;}
.ls58_c00422{letter-spacing:-0.213973pt;}
.ls59_c00422{letter-spacing:-0.207680pt;}
.ls52_c00422{letter-spacing:-0.176213pt;}
.ls54_c00422{letter-spacing:-0.151040pt;}
.ls6a_c00422{letter-spacing:-0.100693pt;}
.ls4e_c00422{letter-spacing:-0.050347pt;}
.ls44_c00422{letter-spacing:-0.031467pt;}
.ls4d_c00422{letter-spacing:0.000000pt;}
.ls11_c00422{letter-spacing:0.012587pt;}
.ls16_c00422{letter-spacing:0.025173pt;}
.ls30_c00422{letter-spacing:0.031467pt;}
.ls1e_c00422{letter-spacing:0.050347pt;}
.ls3d_c00422{letter-spacing:0.056640pt;}
.lsd_c00422{letter-spacing:0.069227pt;}
.ls33_c00422{letter-spacing:0.075520pt;}
.ls12_c00422{letter-spacing:0.119573pt;}
.lsa_c00422{letter-spacing:0.138453pt;}
.ls21_c00422{letter-spacing:0.151040pt;}
.ls36_c00422{letter-spacing:0.169920pt;}
.ls27_c00422{letter-spacing:0.176213pt;}
.ls2e_c00422{letter-spacing:0.182507pt;}
.lsf_c00422{letter-spacing:0.188800pt;}
.ls6_c00422{letter-spacing:0.201387pt;}
.ls24_c00422{letter-spacing:0.220267pt;}
.ls2_c00422{letter-spacing:0.226560pt;}
.ls3e_c00422{letter-spacing:0.232853pt;}
.ls32_c00422{letter-spacing:0.245440pt;}
.ls23_c00422{letter-spacing:0.251733pt;}
.ls17_c00422{letter-spacing:0.270613pt;}
.ls10_c00422{letter-spacing:0.289493pt;}
.ls3c_c00422{letter-spacing:0.295787pt;}
.ls2a_c00422{letter-spacing:0.314667pt;}
.ls4_c00422{letter-spacing:0.320960pt;}
.ls2d_c00422{letter-spacing:0.333547pt;}
.ls1a_c00422{letter-spacing:0.352427pt;}
.ls37_c00422{letter-spacing:0.371307pt;}
.ls1d_c00422{letter-spacing:0.377600pt;}
.ls13_c00422{letter-spacing:0.383893pt;}
.ls26_c00422{letter-spacing:0.390187pt;}
.ls29_c00422{letter-spacing:0.402773pt;}
.ls15_c00422{letter-spacing:0.409067pt;}
.ls5d_c00422{letter-spacing:0.427947pt;}
.ls18_c00422{letter-spacing:0.440533pt;}
.ls2b_c00422{letter-spacing:0.446827pt;}
.ls39_c00422{letter-spacing:0.453120pt;}
.ls35_c00422{letter-spacing:0.459413pt;}
.ls2f_c00422{letter-spacing:0.497173pt;}
.ls3b_c00422{letter-spacing:0.503467pt;}
.ls14_c00422{letter-spacing:0.516053pt;}
.ls31_c00422{letter-spacing:0.522347pt;}
.ls20_c00422{letter-spacing:0.528640pt;}
.ls7_c00422{letter-spacing:0.541227pt;}
.ls1c_c00422{letter-spacing:0.553813pt;}
.ls48_c00422{letter-spacing:0.585280pt;}
.ls9_c00422{letter-spacing:0.597867pt;}
.ls3_c00422{letter-spacing:0.604160pt;}
.ls38_c00422{letter-spacing:0.610453pt;}
.ls25_c00422{letter-spacing:0.616747pt;}
.ls1_c00422{letter-spacing:0.654507pt;}
.ls22_c00422{letter-spacing:0.667093pt;}
.ls57_c00422{letter-spacing:0.673387pt;}
.ls1b_c00422{letter-spacing:0.685973pt;}
.ls65_c00422{letter-spacing:0.692267pt;}
.ls1f_c00422{letter-spacing:0.704853pt;}
.ls5_c00422{letter-spacing:0.711147pt;}
.lse_c00422{letter-spacing:0.736320pt;}
.ls28_c00422{letter-spacing:0.748907pt;}
.ls6d_c00422{letter-spacing:0.767787pt;}
.lsc_c00422{letter-spacing:0.774080pt;}
.ls2c_c00422{letter-spacing:0.862187pt;}
.ls8_c00422{letter-spacing:0.881067pt;}
.ls34_c00422{letter-spacing:0.912533pt;}
.lsb_c00422{letter-spacing:1.063573pt;}
.ls3a_c00422{letter-spacing:1.101333pt;}
.ls19_c00422{letter-spacing:1.157973pt;}
.ls0_c00422{letter-spacing:1.353067pt;}
.ls3f_c00422{letter-spacing:2.534933pt;}
.ws0_c00422{word-spacing:0.000000pt;}
._0_c00422{width:1.038400pt;}
._1_c00422{width:2.888640pt;}
._b_c00422{width:3.895573pt;}
._2_c00422{width:4.920107pt;}
._11_c00422{width:5.922027pt;}
._6_c00422{width:7.024640pt;}
._15_c00422{width:7.924587pt;}
._12_c00422{width:8.994453pt;}
._14_c00422{width:10.663360pt;}
._13_c00422{width:11.724480pt;}
._f_c00422{width:13.001067pt;}
._c_c00422{width:14.474667pt;}
._d_c00422{width:17.136747pt;}
._10_c00422{width:18.131093pt;}
._5_c00422{width:19.144320pt;}
._4_c00422{width:20.667307pt;}
._1c_c00422{width:22.032960pt;}
._3_c00422{width:22.976960pt;}
._19_c00422{width:24.525120pt;}
._1b_c00422{width:26.387947pt;}
._1a_c00422{width:27.527040pt;}
._17_c00422{width:28.817173pt;}
._18_c00422{width:29.836693pt;}
._16_c00422{width:31.743573pt;}
._e_c00422{width:33.216213pt;}
._9_c00422{width:34.997227pt;}
._a_c00422{width:36.885227pt;}
._7_c00422{width:37.986560pt;}
._8_c00422{width:40.774507pt;}
.fs3_c00422{font-size:51.200000pt;}
.fs0_c00422{font-size:52.266667pt;}
.fs1_c00422{font-size:62.933333pt;}
.fs2_c00422{font-size:65.600000pt;}
.y0_c00422{bottom:0.000000pt;}
.y1f_c00422{bottom:90.880000pt;}
.y1e_c00422{bottom:407.370400pt;}
.y1d_c00422{bottom:434.573333pt;}
.y1c_c00422{bottom:462.093333pt;}
.y1b_c00422{bottom:462.098133pt;}
.y1a_c00422{bottom:489.600000pt;}
.y19_c00422{bottom:517.133333pt;}
.y18_c00422{bottom:544.333333pt;}
.y17_c00422{bottom:544.338133pt;}
.y16_c00422{bottom:571.840000pt;}
.y15_c00422{bottom:571.844800pt;}
.y13_c00422{bottom:626.874667pt;}
.y14_c00422{bottom:626.880000pt;}
.y12_c00422{bottom:654.093333pt;}
.y10_c00422{bottom:681.612800pt;}
.y11_c00422{bottom:681.613333pt;}
.yf_c00422{bottom:708.800000pt;}
.ye_c00422{bottom:736.333333pt;}
.yd_c00422{bottom:736.335733pt;}
.yc_c00422{bottom:763.858133pt;}
.yb_c00422{bottom:791.360000pt;}
.ya_c00422{bottom:791.361600pt;}
.y9_c00422{bottom:818.580267pt;}
.y8_c00422{bottom:845.452800pt;}
.y7_c00422{bottom:872.640000pt;}
.y6_c00422{bottom:900.173333pt;}
.y5_c00422{bottom:900.175733pt;}
.y4_c00422{bottom:927.693333pt;}
.y3_c00422{bottom:927.698133pt;}
.y2_c00422{bottom:955.200000pt;}
.y1_c00422{bottom:1022.093333pt;}
.h5_c00422{height:50.250000pt;}
.h2_c00422{height:51.296875pt;}
.h3_c00422{height:61.765625pt;}
.h4_c00422{height:64.382813pt;}
.h1_c00422{height:1122.666667pt;}
.h0_c00422{height:1122.880000pt;}
.w1_c00422{width:793.333333pt;}
.w0_c00422{width:793.600000pt;}
.x0_c00422{left:0.000000pt;}
.x1_c00422{left:98.493333pt;}
.x1d_c00422{left:99.712533pt;}
.x1b_c00422{left:129.706667pt;}
.x23_c00422{left:142.573333pt;}
.x2_c00422{left:146.146667pt;}
.x1c_c00422{left:152.293333pt;}
.x9_c00422{left:158.866667pt;}
.x24_c00422{left:161.773333pt;}
.x22_c00422{left:179.066667pt;}
.xa_c00422{left:183.213333pt;}
.xd_c00422{left:185.426667pt;}
.xe_c00422{left:213.733333pt;}
.x27_c00422{left:293.293333pt;}
.x28_c00422{left:318.586667pt;}
.x15_c00422{left:337.386667pt;}
.xf_c00422{left:352.106667pt;}
.x16_c00422{left:357.253333pt;}
.x10_c00422{left:378.853333pt;}
.x1e_c00422{left:385.400000pt;}
.x7_c00422{left:396.013333pt;}
.x11_c00422{left:399.813333pt;}
.x1f_c00422{left:405.413333pt;}
.x8_c00422{left:419.706667pt;}
.x12_c00422{left:427.040000pt;}
.x20_c00422{left:440.280000pt;}
.x2c_c00422{left:468.640000pt;}
.x2d_c00422{left:487.653333pt;}
.x25_c00422{left:493.586667pt;}
.x13_c00422{left:511.160000pt;}
.xb_c00422{left:517.293333pt;}
.x3_c00422{left:519.973333pt;}
.xc_c00422{left:536.733333pt;}
.x14_c00422{left:539.026667pt;}
.x26_c00422{left:558.253333pt;}
.x4_c00422{left:573.400000pt;}
.x2e_c00422{left:575.853333pt;}
.x17_c00422{left:594.786667pt;}
.x2f_c00422{left:600.146667pt;}
.x5_c00422{left:606.253333pt;}
.x18_c00422{left:615.013333pt;}
.x2a_c00422{left:619.973333pt;}
.x6_c00422{left:625.426667pt;}
.x19_c00422{left:627.986667pt;}
.x2b_c00422{left:639.213333pt;}
.x1a_c00422{left:648.453333pt;}
.x29_c00422{left:658.066667pt;}
.x30_c00422{left:663.213333pt;}
.x21_c00422{left:667.040000pt;}
}





/* 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_c00423 {
    display:none;
  }
  .loading-indicator_c00423.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00423 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_c00423 { 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_c00423" -> "#page-container .classname_c00423")
 */
.pf_c00423 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00423 { /* 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_c00423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00423 { /* 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_c00423 { /* 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_c00423 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00423 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00423 {overflow:visible;}
  }
}
.c_c00423 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00423 { /* 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_c00423:after { /* webkit #35443 */
  content: '';
}
.t_c00423:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00423 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 */
}
.__c00423 { /* 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_c00423 { /* info for Javascript */
  display:none;
}
.l_c00423 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00423 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00423 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00423: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_c00423 {
    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_c00423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00423.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_c00423 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00423{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00423;src:url('chunks/assets/font_9f58b998888fda1fda94c9d5.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.284668;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_c00423;src:url('chunks/assets/font_c80bce2ca14c5807649694d6.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:0.666000;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_c00423;src:url('chunks/assets/font_dd07999923512990f84cd456.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;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:ff4_c00423;src:url('chunks/assets/font_89d0471fcb35e8aeeabb8c2c.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:1.284180;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_c00423;src:url('chunks/assets/font_c00428990314486a21706301.woff2')format("woff");}.ff5_c00423{font-family:ff5_c00423;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;}
.m10_c00423{transform:matrix(0.039932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039932,0.000000,0.000000,0.250000,0,0);}
.mf_c00423{transform:matrix(0.049354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049354,0.000000,0.000000,0.250000,0,0);}
.m6_c00423{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00423{transform:matrix(0.050446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050446,0.000000,0.000000,0.250000,0,0);}
.m11_c00423{transform:matrix(0.051422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051422,0.000000,0.000000,0.250000,0,0);}
.mc_c00423{transform:matrix(0.052656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052656,0.000000,0.000000,0.250000,0,0);}
.m1a_c00423{transform:matrix(0.054838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054838,0.000000,0.000000,0.250000,0,0);}
.m5_c00423{transform:matrix(0.056253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056253,0.000000,0.000000,0.250000,0,0);}
.m15_c00423{transform:matrix(0.057143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057143,0.000000,0.000000,0.250000,0,0);}
.m1f_c00423{transform:matrix(0.060933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060933,0.000000,0.000000,0.250000,0,0);}
.m22_c00423{transform:matrix(0.061121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061121,0.000000,0.000000,0.250000,0,0);}
.m19_c00423{transform:matrix(0.061827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061827,0.000000,0.000000,0.250000,0,0);}
.mb_c00423{transform:matrix(0.061854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061854,0.000000,0.000000,0.250000,0,0);}
.m14_c00423{transform:matrix(0.064551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064551,0.000000,0.000000,0.250000,0,0);}
.md_c00423{transform:matrix(0.067503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067503,0.000000,0.000000,0.250000,0,0);}
.m4_c00423{transform:matrix(0.075781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075781,0.000000,0.000000,0.250000,0,0);}
.m16_c00423{transform:matrix(0.077163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077163,0.000000,0.000000,0.250000,0,0);}
.m12_c00423{transform:matrix(0.079170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079170,0.000000,0.000000,0.250000,0,0);}
.m13_c00423{transform:matrix(0.086408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086408,0.000000,0.000000,0.250000,0,0);}
.m2_c00423{transform:matrix(0.092859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092859,0.000000,0.000000,0.250000,0,0);}
.m3_c00423{transform:matrix(0.112143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112143,0.000000,0.000000,0.250000,0,0);}
.m3a_c00423{transform:matrix(0.127289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127289,0.000000,0.000000,0.250000,0,0);}
.m7_c00423{transform:matrix(0.129056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129056,0.000000,0.000000,0.250000,0,0);}
.m1b_c00423{transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);}
.m18_c00423{transform:matrix(0.175531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175531,0.000000,0.000000,0.250000,0,0);}
.m1e_c00423{transform:matrix(0.189571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189571,0.000000,0.000000,0.250000,0,0);}
.m23_c00423{transform:matrix(0.196051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196051,0.000000,0.000000,0.250000,0,0);}
.m24_c00423{transform:matrix(0.201559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201559,0.000000,0.000000,0.250000,0,0);}
.m37_c00423{transform:matrix(0.202085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202085,0.000000,0.000000,0.250000,0,0);}
.m26_c00423{transform:matrix(0.208604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208604,0.000000,0.000000,0.250000,0,0);}
.m36_c00423{transform:matrix(0.215124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215124,0.000000,0.000000,0.250000,0,0);}
.m2b_c00423{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma_c00423{transform:matrix(0.218702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218702,0.000000,0.000000,0.250000,0,0);}
.m2f_c00423{transform:matrix(0.219680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219680,0.000000,0.000000,0.250000,0,0);}
.m27_c00423{transform:matrix(0.221643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221643,0.000000,0.000000,0.250000,0,0);}
.m1c_c00423{transform:matrix(0.227270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227270,0.000000,0.000000,0.250000,0,0);}
.m28_c00423{transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);}
.m3c_c00423{transform:matrix(0.230359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230359,0.000000,0.000000,0.250000,0,0);}
.m17_c00423{transform:matrix(0.233747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233747,0.000000,0.000000,0.250000,0,0);}
.m2d_c00423{transform:matrix(0.233971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233971,0.000000,0.000000,0.250000,0,0);}
.m29_c00423{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.m30_c00423{transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);}
.m2a_c00423{transform:matrix(0.240129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240129,0.000000,0.000000,0.250000,0,0);}
.m25_c00423{transform:matrix(0.241199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241199,0.000000,0.000000,0.250000,0,0);}
.m1_c00423{transform:matrix(0.242943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242943,0.000000,0.000000,0.250000,0,0);}
.m21_c00423{transform:matrix(0.243564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243564,0.000000,0.000000,0.250000,0,0);}
.m2e_c00423{transform:matrix(0.244786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244786,0.000000,0.000000,0.250000,0,0);}
.m2c_c00423{transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);}
.m3d_c00423{transform:matrix(0.246709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246709,0.000000,0.000000,0.250000,0,0);}
.m0_c00423{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);}
.m20_c00423{transform:matrix(0.259010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259010,0.000000,0.000000,0.250000,0,0);}
.m8_c00423{transform:matrix(0.275950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275950,0.000000,0.000000,0.250000,0,0);}
.m9_c00423{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m38_c00423{transform:matrix(0.308274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308274,0.000000,0.000000,0.250000,0,0);}
.m35_c00423{transform:matrix(0.317080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317080,0.000000,0.000000,0.250000,0,0);}
.m39_c00423{transform:matrix(0.331544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331544,0.000000,0.000000,0.250000,0,0);}
.m32_c00423{transform:matrix(0.342976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342976,0.000000,0.000000,0.250000,0,0);}
.m33_c00423{transform:matrix(0.346789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346789,0.000000,0.000000,0.250000,0,0);}
.m31_c00423{transform:matrix(0.365748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365748,0.000000,0.000000,0.250000,0,0);}
.m34_c00423{transform:matrix(0.376519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376519,0.000000,0.000000,0.250000,0,0);}
.me_c00423{transform:matrix(0.419768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419768,0.000000,0.000000,0.250000,0,0);}
.m3b_c00423{transform:matrix(0.432301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432301,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls39_c00423{letter-spacing:-2.394000px;}
.ls5f_c00423{letter-spacing:-2.310000px;}
.ls3c_c00423{letter-spacing:-2.188800px;}
.ls52_c00423{letter-spacing:-2.163000px;}
.ls3d_c00423{letter-spacing:-1.963080px;}
.ls54_c00423{letter-spacing:-1.921980px;}
.ls44_c00423{letter-spacing:-1.848000px;}
.ls58_c00423{letter-spacing:-1.827120px;}
.ls57_c00423{letter-spacing:-1.816920px;}
.ls4f_c00423{letter-spacing:-1.743000px;}
.ls50_c00423{letter-spacing:-1.701000px;}
.ls41_c00423{letter-spacing:-1.680000px;}
.ls3b_c00423{letter-spacing:-1.675800px;}
.ls48_c00423{letter-spacing:-1.659021px;}
.ls4a_c00423{letter-spacing:-1.638021px;}
.ls53_c00423{letter-spacing:-1.594440px;}
.ls47_c00423{letter-spacing:-1.521559px;}
.ls4c_c00423{letter-spacing:-1.470000px;}
.ls37_c00423{letter-spacing:-1.231200px;}
.ls49_c00423{letter-spacing:-1.197000px;}
.ls35_c00423{letter-spacing:-1.128600px;}
.ls3e_c00423{letter-spacing:-1.073880px;}
.ls4e_c00423{letter-spacing:-1.071000px;}
.ls40_c00423{letter-spacing:-0.793260px;}
.ls34_c00423{letter-spacing:-0.711360px;}
.ls60_c00423{letter-spacing:-0.651900px;}
.ls5c_c00423{letter-spacing:-0.547200px;}
.ls36_c00423{letter-spacing:-0.526680px;}
.ls3a_c00423{letter-spacing:-0.458280px;}
.ls51_c00423{letter-spacing:-0.428400px;}
.ls5d_c00423{letter-spacing:-0.210900px;}
.ls3f_c00423{letter-spacing:-0.102600px;}
.ls33_c00423{letter-spacing:-0.068400px;}
.ls5b_c00423{letter-spacing:-0.005700px;}
.ls38_c00423{letter-spacing:0.000000px;}
.ls2d_c00423{letter-spacing:0.014760px;}
.ls2_c00423{letter-spacing:0.034200px;}
.ls1d_c00423{letter-spacing:0.199500px;}
.ls61_c00423{letter-spacing:0.204180px;}
.ls2f_c00423{letter-spacing:0.305040px;}
.ls32_c00423{letter-spacing:0.307500px;}
.lsc_c00423{letter-spacing:0.348840px;}
.ls30_c00423{letter-spacing:0.396060px;}
.ls31_c00423{letter-spacing:0.420660px;}
.ls5e_c00423{letter-spacing:0.427500px;}
.ls29_c00423{letter-spacing:0.461700px;}
.ls1c_c00423{letter-spacing:0.478800px;}
.ls2e_c00423{letter-spacing:0.482160px;}
.ls10_c00423{letter-spacing:0.601988px;}
.ls2c_c00423{letter-spacing:0.666660px;}
.lsd_c00423{letter-spacing:0.752400px;}
.ls28_c00423{letter-spacing:0.769500px;}
.ls4b_c00423{letter-spacing:0.809297px;}
.ls2b_c00423{letter-spacing:0.849300px;}
.ls16_c00423{letter-spacing:0.866400px;}
.ls1_c00423{letter-spacing:0.916560px;}
.ls26_c00423{letter-spacing:0.946200px;}
.ls2a_c00423{letter-spacing:0.974700px;}
.ls15_c00423{letter-spacing:0.986100px;}
.ls19_c00423{letter-spacing:0.997500px;}
.ls1a_c00423{letter-spacing:1.003200px;}
.ls11_c00423{letter-spacing:1.014600px;}
.ls59_c00423{letter-spacing:1.105800px;}
.ls1b_c00423{letter-spacing:1.111500px;}
.ls46_c00423{letter-spacing:1.114920px;}
.ls27_c00423{letter-spacing:1.134300px;}
.ls4_c00423{letter-spacing:1.162800px;}
.ls22_c00423{letter-spacing:1.185600px;}
.ls20_c00423{letter-spacing:1.225500px;}
.ls13_c00423{letter-spacing:1.236900px;}
.ls21_c00423{letter-spacing:1.265400px;}
.ls17_c00423{letter-spacing:1.276800px;}
.lse_c00423{letter-spacing:1.279080px;}
.ls25_c00423{letter-spacing:1.288200px;}
.ls3_c00423{letter-spacing:1.333800px;}
.ls12_c00423{letter-spacing:1.356600px;}
.ls1e_c00423{letter-spacing:1.362300px;}
.ls23_c00423{letter-spacing:1.430700px;}
.ls18_c00423{letter-spacing:1.504800px;}
.ls1f_c00423{letter-spacing:1.527600px;}
.ls4d_c00423{letter-spacing:1.530000px;}
.lsf_c00423{letter-spacing:1.545840px;}
.ls14_c00423{letter-spacing:1.596000px;}
.ls8_c00423{letter-spacing:1.614240px;}
.lsa_c00423{letter-spacing:1.655280px;}
.ls24_c00423{letter-spacing:1.664400px;}
.ls0_c00423{letter-spacing:1.716840px;}
.ls7_c00423{letter-spacing:1.764720px;}
.ls45_c00423{letter-spacing:1.770030px;}
.ls9_c00423{letter-spacing:1.778400px;}
.ls43_c00423{letter-spacing:1.800000px;}
.ls55_c00423{letter-spacing:1.801200px;}
.ls5a_c00423{letter-spacing:1.812600px;}
.ls6_c00423{letter-spacing:2.052000px;}
.ls42_c00423{letter-spacing:2.550000px;}
.ls5_c00423{letter-spacing:2.790720px;}
.ls56_c00423{letter-spacing:3.090000px;}
.lsb_c00423{letter-spacing:3.091680px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{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__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00423{word-spacing:0.000000px;}
._8_c00423{margin-left:-11.967537px;}
._2b_c00423{margin-left:-5.249700px;}
._27_c00423{margin-left:-4.206600px;}
._6_c00423{margin-left:-2.982240px;}
._2_c00423{margin-left:-1.751040px;}
._5_c00423{width:1.689480px;}
._3_c00423{width:3.502080px;}
._1_c00423{width:4.555440px;}
._0_c00423{width:5.745600px;}
._7_c00423{width:6.805800px;}
._4_c00423{width:7.934400px;}
._e_c00423{width:33.873360px;}
._d_c00423{width:43.280760px;}
._25_c00423{width:44.619600px;}
._c_c00423{width:47.586000px;}
._10_c00423{width:57.659400px;}
._9_c00423{width:59.142600px;}
._b_c00423{width:60.873000px;}
._a_c00423{width:62.727000px;}
._17_c00423{width:64.766400px;}
._1b_c00423{width:66.744000px;}
._22_c00423{width:68.536200px;}
._1f_c00423{width:146.871240px;}
._21_c00423{width:165.685800px;}
._18_c00423{width:168.899400px;}
._1a_c00423{width:170.320800px;}
._f_c00423{width:171.680400px;}
._20_c00423{width:174.708600px;}
._36_c00423{width:176.424000px;}
._15_c00423{width:211.145040px;}
._43_c00423{width:246.937500px;}
._19_c00423{width:276.555000px;}
._23_c00423{width:278.347200px;}
._14_c00423{width:280.633800px;}
._41_c00423{width:283.847400px;}
._13_c00423{width:326.694000px;}
._38_c00423{width:386.002800px;}
._2e_c00423{width:387.588000px;}
._46_c00423{width:389.587200px;}
._2f_c00423{width:392.986200px;}
._3d_c00423{width:394.929420px;}
._40_c00423{width:490.568400px;}
._37_c00423{width:493.658400px;}
._16_c00423{width:495.450600px;}
._42_c00423{width:499.838400px;}
._26_c00423{width:550.368000px;}
._2c_c00423{width:602.495400px;}
._3f_c00423{width:708.289800px;}
._45_c00423{width:747.220800px;}
._24_c00423{width:815.265600px;}
._39_c00423{width:816.874800px;}
._33_c00423{width:820.440000px;}
._1e_c00423{width:866.958600px;}
._1c_c00423{width:977.502900px;}
._11_c00423{width:1073.048640px;}
._3c_c00423{width:1248.664020px;}
._3e_c00423{width:1344.871920px;}
._3b_c00423{width:1412.870220px;}
._31_c00423{width:1472.188620px;}
._3a_c00423{width:1512.939420px;}
._35_c00423{width:1522.028520px;}
._2d_c00423{width:1575.451800px;}
._30_c00423{width:1577.321400px;}
._32_c00423{width:1741.597020px;}
._44_c00423{width:1793.003400px;}
._28_c00423{width:1815.039000px;}
._12_c00423{width:1914.420000px;}
._2a_c00423{width:2228.233020px;}
._1d_c00423{width:2452.480800px;}
._29_c00423{width:2861.094120px;}
._34_c00423{width:3333.392820px;}
._47_c00423{width:3370.638420px;}
.fc0_c00423{color:transparent;}
.fs1d_c00423{font-size:24.600000px;}
.fsd_c00423{font-size:28.800600px;}
.fs12_c00423{font-size:29.400600px;}
.fsf_c00423{font-size:30.600000px;}
.fs8_c00423{font-size:34.200000px;}
.fs7_c00423{font-size:35.400600px;}
.fs5_c00423{font-size:36.000000px;}
.fse_c00423{font-size:42.000000px;}
.fsa_c00423{font-size:44.640600px;}
.fsc_c00423{font-size:46.800600px;}
.fsb_c00423{font-size:47.400600px;}
.fs3_c00423{font-size:48.000000px;}
.fs11_c00423{font-size:48.600000px;}
.fs10_c00423{font-size:49.800000px;}
.fs9_c00423{font-size:50.400000px;}
.fs4_c00423{font-size:51.000000px;}
.fs17_c00423{font-size:52.200000px;}
.fs6_c00423{font-size:52.800000px;}
.fs19_c00423{font-size:54.000000px;}
.fs15_c00423{font-size:55.200000px;}
.fs1a_c00423{font-size:56.400000px;}
.fs14_c00423{font-size:57.000000px;}
.fs2_c00423{font-size:57.600000px;}
.fs1c_c00423{font-size:58.200000px;}
.fs18_c00423{font-size:59.400000px;}
.fs16_c00423{font-size:60.000000px;}
.fs13_c00423{font-size:61.800000px;}
.fs1b_c00423{font-size:66.000000px;}
.fs0_c00423{font-size:68.400000px;}
.fs1_c00423{font-size:70.200000px;}
.y0_c00423{bottom:0.000000px;}
.y26_c00423{bottom:38.175015px;}
.y25_c00423{bottom:68.400015px;}
.y24_c00423{bottom:148.695015px;}
.y23_c00423{bottom:166.695015px;}
.y22_c00423{bottom:185.040015px;}
.y21_c00423{bottom:202.695015px;}
.y20_c00423{bottom:220.695015px;}
.y1f_c00423{bottom:239.040015px;}
.y1e_c00423{bottom:257.040015px;}
.y1d_c00423{bottom:275.040015px;}
.y1c_c00423{bottom:293.040015px;}
.y1b_c00423{bottom:311.040015px;}
.y1a_c00423{bottom:329.040015px;}
.y19_c00423{bottom:347.415015px;}
.y18_c00423{bottom:365.415015px;}
.y17_c00423{bottom:383.415015px;}
.y16_c00423{bottom:401.760015px;}
.y15_c00423{bottom:420.135015px;}
.y14_c00423{bottom:438.135015px;}
.y13_c00423{bottom:456.480015px;}
.y12_c00423{bottom:474.480015px;}
.y11_c00423{bottom:492.480015px;}
.y10_c00423{bottom:510.840015px;}
.yf_c00423{bottom:510.846765px;}
.ye_c00423{bottom:529.215015px;}
.yd_c00423{bottom:547.575015px;}
.yc_c00423{bottom:565.575015px;}
.yb_c00423{bottom:583.575015px;}
.ya_c00423{bottom:601.920015px;}
.y9_c00423{bottom:620.295015px;}
.y8_c00423{bottom:638.295015px;}
.y7_c00423{bottom:665.655015px;}
.y6_c00423{bottom:682.920015px;}
.y5_c00423{bottom:689.415015px;}
.y3_c00423{bottom:699.135015px;}
.y4_c00423{bottom:704.895015px;}
.y2_c00423{bottom:727.920015px;}
.y1_c00423{bottom:759.975015px;}
.h1f_c00423{height:25.657031px;}
.hc_c00423{height:29.730640px;}
.h11_c00423{height:30.032227px;}
.h14_c00423{height:30.663907px;}
.he_c00423{height:33.565430px;}
.hb_c00423{height:33.566400px;}
.h7_c00423{height:35.314453px;}
.ha_c00423{height:35.669531px;}
.h9_c00423{height:36.921720px;}
.h4_c00423{height:38.361600px;}
.h10_c00423{height:41.220703px;}
.hd_c00423{height:46.521097px;}
.h5_c00423{height:47.109375px;}
.h13_c00423{height:47.674512px;}
.hf_c00423{height:48.811563px;}
.h12_c00423{height:48.875977px;}
.h8_c00423{height:51.820313px;}
.h1a_c00423{height:51.939844px;}
.h6_c00423{height:53.191406px;}
.h16_c00423{height:55.914551px;}
.h18_c00423{height:57.571875px;}
.h1b_c00423{height:58.297852px;}
.h1c_c00423{height:58.823438px;}
.h17_c00423{height:58.886719px;}
.h19_c00423{height:60.626320px;}
.h15_c00423{height:60.653320px;}
.h1e_c00423{height:60.700781px;}
.h1d_c00423{height:64.775391px;}
.h2_c00423{height:67.130859px;}
.h3_c00423{height:68.897461px;}
.h1_c00423{height:892.500000px;}
.h0_c00423{height:892.800015px;}
.w1_c00423{width:1263.000000px;}
.w0_c00423{width:1263.239989px;}
.x0_c00423{left:0.000000px;}
.x4_c00423{left:67.334989px;}
.x1_c00423{left:70.769990px;}
.x4c_c00423{left:71.849989px;}
.x5e_c00423{left:73.154989px;}
.x5f_c00423{left:74.594990px;}
.x15_c00423{left:117.719990px;}
.x5_c00423{left:138.449990px;}
.x6_c00423{left:141.839990px;}
.x60_c00423{left:160.709989px;}
.x17_c00423{left:219.359989px;}
.x18_c00423{left:231.254989px;}
.x19_c00423{left:235.799990px;}
.x1a_c00423{left:243.734990px;}
.x29_c00423{left:260.819989px;}
.x61_c00423{left:263.699989px;}
.x1b_c00423{left:282.974989px;}
.x40_c00423{left:287.549989px;}
.x51_c00423{left:290.054989px;}
.x41_c00423{left:314.504989px;}
.x52_c00423{left:316.259990px;}
.x4d_c00423{left:317.399990px;}
.x7_c00423{left:342.014989px;}
.x4e_c00423{left:343.259990px;}
.x53_c00423{left:398.444989px;}
.x1c_c00423{left:403.694989px;}
.x8_c00423{left:418.334990px;}
.x4b_c00423{left:424.664989px;}
.x42_c00423{left:450.929989px;}
.x1d_c00423{left:471.509990px;}
.x43_c00423{left:477.269990px;}
.x1e_c00423{left:498.974989px;}
.x9_c00423{left:503.219989px;}
.x2a_c00423{left:504.929989px;}
.x59_c00423{left:506.519990px;}
.x44_c00423{left:530.579990px;}
.x2b_c00423{left:531.629989px;}
.x4a_c00423{left:532.664990px;}
.xa_c00423{left:550.559990px;}
.x2c_c00423{left:559.289990px;}
.x5a_c00423{left:560.699990px;}
.xb_c00423{left:564.299990px;}
.x2d_c00423{left:586.679990px;}
.x1f_c00423{left:612.584990px;}
.xc_c00423{left:614.144990px;}
.x54_c00423{left:615.494989px;}
.xd_c00423{left:625.679990px;}
.x45_c00423{left:640.019990px;}
.x2e_c00423{left:641.039990px;}
.x2f_c00423{left:668.384990px;}
.x30_c00423{left:695.384990px;}
.xe_c00423{left:730.454990px;}
.x46_c00423{left:749.144990px;}
.x31_c00423{left:775.709990px;}
.x4f_c00423{left:777.854989px;}
.x32_c00423{left:802.724989px;}
.x50_c00423{left:804.779990px;}
.x33_c00423{left:829.709990px;}
.x55_c00423{left:831.809990px;}
.xf_c00423{left:851.759989px;}
.x34_c00423{left:857.069989px;}
.x56_c00423{left:859.139990px;}
.x20_c00423{left:878.954990px;}
.x35_c00423{left:884.069989px;}
.x47_c00423{left:885.419990px;}
.x10_c00423{left:889.994990px;}
.x11_c00423{left:900.734989px;}
.x36_c00423{left:911.069989px;}
.x21_c00423{left:912.254989px;}
.x2_c00423{left:931.949990px;}
.x37_c00423{left:938.429990px;}
.x57_c00423{left:940.379989px;}
.x3_c00423{left:960.269990px;}
.x22_c00423{left:961.409989px;}
.x38_c00423{left:965.069989px;}
.x48_c00423{left:966.224989px;}
.x16_c00423{left:971.279990px;}
.x23_c00423{left:986.984989px;}
.x24_c00423{left:992.729990px;}
.x5b_c00423{left:994.544990px;}
.x25_c00423{left:1005.284989px;}
.x26_c00423{left:1014.494990px;}
.x39_c00423{left:1019.429990px;}
.x49_c00423{left:1020.509989px;}
.x3a_c00423{left:1047.059990px;}
.x12_c00423{left:1068.119989px;}
.x3b_c00423{left:1073.714990px;}
.x3c_c00423{left:1100.699989px;}
.x5c_c00423{left:1101.749989px;}
.x27_c00423{left:1107.959990px;}
.x13_c00423{left:1112.054989px;}
.x28_c00423{left:1126.619989px;}
.x3d_c00423{left:1128.074989px;}
.x58_c00423{left:1130.294990px;}
.x3e_c00423{left:1155.419990px;}
.x3f_c00423{left:1182.434990px;}
.x5d_c00423{left:1183.829990px;}
.x14_c00423{left:1185.644990px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls39_c00423{letter-spacing:-2.128000pt;}
.ls5f_c00423{letter-spacing:-2.053333pt;}
.ls3c_c00423{letter-spacing:-1.945600pt;}
.ls52_c00423{letter-spacing:-1.922667pt;}
.ls3d_c00423{letter-spacing:-1.744960pt;}
.ls54_c00423{letter-spacing:-1.708427pt;}
.ls44_c00423{letter-spacing:-1.642667pt;}
.ls58_c00423{letter-spacing:-1.624107pt;}
.ls57_c00423{letter-spacing:-1.615040pt;}
.ls4f_c00423{letter-spacing:-1.549333pt;}
.ls50_c00423{letter-spacing:-1.512000pt;}
.ls41_c00423{letter-spacing:-1.493333pt;}
.ls3b_c00423{letter-spacing:-1.489600pt;}
.ls48_c00423{letter-spacing:-1.474685pt;}
.ls4a_c00423{letter-spacing:-1.456019pt;}
.ls53_c00423{letter-spacing:-1.417280pt;}
.ls47_c00423{letter-spacing:-1.352497pt;}
.ls4c_c00423{letter-spacing:-1.306667pt;}
.ls37_c00423{letter-spacing:-1.094400pt;}
.ls49_c00423{letter-spacing:-1.064000pt;}
.ls35_c00423{letter-spacing:-1.003200pt;}
.ls3e_c00423{letter-spacing:-0.954560pt;}
.ls4e_c00423{letter-spacing:-0.952000pt;}
.ls40_c00423{letter-spacing:-0.705120pt;}
.ls34_c00423{letter-spacing:-0.632320pt;}
.ls60_c00423{letter-spacing:-0.579467pt;}
.ls5c_c00423{letter-spacing:-0.486400pt;}
.ls36_c00423{letter-spacing:-0.468160pt;}
.ls3a_c00423{letter-spacing:-0.407360pt;}
.ls51_c00423{letter-spacing:-0.380800pt;}
.ls5d_c00423{letter-spacing:-0.187467pt;}
.ls3f_c00423{letter-spacing:-0.091200pt;}
.ls33_c00423{letter-spacing:-0.060800pt;}
.ls5b_c00423{letter-spacing:-0.005067pt;}
.ls38_c00423{letter-spacing:0.000000pt;}
.ls2d_c00423{letter-spacing:0.013120pt;}
.ls2_c00423{letter-spacing:0.030400pt;}
.ls1d_c00423{letter-spacing:0.177333pt;}
.ls61_c00423{letter-spacing:0.181493pt;}
.ls2f_c00423{letter-spacing:0.271147pt;}
.ls32_c00423{letter-spacing:0.273333pt;}
.lsc_c00423{letter-spacing:0.310080pt;}
.ls30_c00423{letter-spacing:0.352053pt;}
.ls31_c00423{letter-spacing:0.373920pt;}
.ls5e_c00423{letter-spacing:0.380000pt;}
.ls29_c00423{letter-spacing:0.410400pt;}
.ls1c_c00423{letter-spacing:0.425600pt;}
.ls2e_c00423{letter-spacing:0.428587pt;}
.ls10_c00423{letter-spacing:0.535100pt;}
.ls2c_c00423{letter-spacing:0.592587pt;}
.lsd_c00423{letter-spacing:0.668800pt;}
.ls28_c00423{letter-spacing:0.684000pt;}
.ls4b_c00423{letter-spacing:0.719375pt;}
.ls2b_c00423{letter-spacing:0.754933pt;}
.ls16_c00423{letter-spacing:0.770133pt;}
.ls1_c00423{letter-spacing:0.814720pt;}
.ls26_c00423{letter-spacing:0.841067pt;}
.ls2a_c00423{letter-spacing:0.866400pt;}
.ls15_c00423{letter-spacing:0.876533pt;}
.ls19_c00423{letter-spacing:0.886667pt;}
.ls1a_c00423{letter-spacing:0.891733pt;}
.ls11_c00423{letter-spacing:0.901867pt;}
.ls59_c00423{letter-spacing:0.982933pt;}
.ls1b_c00423{letter-spacing:0.988000pt;}
.ls46_c00423{letter-spacing:0.991040pt;}
.ls27_c00423{letter-spacing:1.008267pt;}
.ls4_c00423{letter-spacing:1.033600pt;}
.ls22_c00423{letter-spacing:1.053867pt;}
.ls20_c00423{letter-spacing:1.089333pt;}
.ls13_c00423{letter-spacing:1.099467pt;}
.ls21_c00423{letter-spacing:1.124800pt;}
.ls17_c00423{letter-spacing:1.134933pt;}
.lse_c00423{letter-spacing:1.136960pt;}
.ls25_c00423{letter-spacing:1.145067pt;}
.ls3_c00423{letter-spacing:1.185600pt;}
.ls12_c00423{letter-spacing:1.205867pt;}
.ls1e_c00423{letter-spacing:1.210933pt;}
.ls23_c00423{letter-spacing:1.271733pt;}
.ls18_c00423{letter-spacing:1.337600pt;}
.ls1f_c00423{letter-spacing:1.357867pt;}
.ls4d_c00423{letter-spacing:1.360000pt;}
.lsf_c00423{letter-spacing:1.374080pt;}
.ls14_c00423{letter-spacing:1.418667pt;}
.ls8_c00423{letter-spacing:1.434880pt;}
.lsa_c00423{letter-spacing:1.471360pt;}
.ls24_c00423{letter-spacing:1.479467pt;}
.ls0_c00423{letter-spacing:1.526080pt;}
.ls7_c00423{letter-spacing:1.568640pt;}
.ls45_c00423{letter-spacing:1.573360pt;}
.ls9_c00423{letter-spacing:1.580800pt;}
.ls43_c00423{letter-spacing:1.600000pt;}
.ls55_c00423{letter-spacing:1.601067pt;}
.ls5a_c00423{letter-spacing:1.611200pt;}
.ls6_c00423{letter-spacing:1.824000pt;}
.ls42_c00423{letter-spacing:2.266667pt;}
.ls5_c00423{letter-spacing:2.480640pt;}
.ls56_c00423{letter-spacing:2.746667pt;}
.lsb_c00423{letter-spacing:2.748160pt;}
.ws0_c00423{word-spacing:0.000000pt;}
._8_c00423{margin-left:-10.637811pt;}
._2b_c00423{margin-left:-4.666400pt;}
._27_c00423{margin-left:-3.739200pt;}
._6_c00423{margin-left:-2.650880pt;}
._2_c00423{margin-left:-1.556480pt;}
._5_c00423{width:1.501760pt;}
._3_c00423{width:3.112960pt;}
._1_c00423{width:4.049280pt;}
._0_c00423{width:5.107200pt;}
._7_c00423{width:6.049600pt;}
._4_c00423{width:7.052800pt;}
._e_c00423{width:30.109653pt;}
._d_c00423{width:38.471787pt;}
._25_c00423{width:39.661867pt;}
._c_c00423{width:42.298667pt;}
._10_c00423{width:51.252800pt;}
._9_c00423{width:52.571200pt;}
._b_c00423{width:54.109333pt;}
._a_c00423{width:55.757333pt;}
._17_c00423{width:57.570133pt;}
._1b_c00423{width:59.328000pt;}
._22_c00423{width:60.921067pt;}
._1f_c00423{width:130.552213pt;}
._21_c00423{width:147.276267pt;}
._18_c00423{width:150.132800pt;}
._1a_c00423{width:151.396267pt;}
._f_c00423{width:152.604800pt;}
._20_c00423{width:155.296533pt;}
._36_c00423{width:156.821333pt;}
._15_c00423{width:187.684480pt;}
._43_c00423{width:219.500000pt;}
._19_c00423{width:245.826667pt;}
._23_c00423{width:247.419733pt;}
._14_c00423{width:249.452267pt;}
._41_c00423{width:252.308800pt;}
._13_c00423{width:290.394667pt;}
._38_c00423{width:343.113600pt;}
._2e_c00423{width:344.522667pt;}
._46_c00423{width:346.299733pt;}
._2f_c00423{width:349.321067pt;}
._3d_c00423{width:351.048373pt;}
._40_c00423{width:436.060800pt;}
._37_c00423{width:438.807467pt;}
._16_c00423{width:440.400533pt;}
._42_c00423{width:444.300800pt;}
._26_c00423{width:489.216000pt;}
._2c_c00423{width:535.551467pt;}
._3f_c00423{width:629.590933pt;}
._45_c00423{width:664.196267pt;}
._24_c00423{width:724.680533pt;}
._39_c00423{width:726.110933pt;}
._33_c00423{width:729.280000pt;}
._1e_c00423{width:770.629867pt;}
._1c_c00423{width:868.891467pt;}
._11_c00423{width:953.821013pt;}
._3c_c00423{width:1109.923573pt;}
._3e_c00423{width:1195.441707pt;}
._3b_c00423{width:1255.884640pt;}
._31_c00423{width:1308.612107pt;}
._3a_c00423{width:1344.835040pt;}
._35_c00423{width:1352.914240pt;}
._2d_c00423{width:1400.401600pt;}
._30_c00423{width:1402.063467pt;}
._32_c00423{width:1548.086240pt;}
._44_c00423{width:1593.780800pt;}
._28_c00423{width:1613.368000pt;}
._12_c00423{width:1701.706667pt;}
._2a_c00423{width:1980.651573pt;}
._1d_c00423{width:2179.982933pt;}
._29_c00423{width:2543.194773pt;}
._34_c00423{width:2963.015840pt;}
._47_c00423{width:2996.123040pt;}
.fs1d_c00423{font-size:21.866667pt;}
.fsd_c00423{font-size:25.600533pt;}
.fs12_c00423{font-size:26.133867pt;}
.fsf_c00423{font-size:27.200000pt;}
.fs8_c00423{font-size:30.400000pt;}
.fs7_c00423{font-size:31.467200pt;}
.fs5_c00423{font-size:32.000000pt;}
.fse_c00423{font-size:37.333333pt;}
.fsa_c00423{font-size:39.680533pt;}
.fsc_c00423{font-size:41.600533pt;}
.fsb_c00423{font-size:42.133867pt;}
.fs3_c00423{font-size:42.666667pt;}
.fs11_c00423{font-size:43.200000pt;}
.fs10_c00423{font-size:44.266667pt;}
.fs9_c00423{font-size:44.800000pt;}
.fs4_c00423{font-size:45.333333pt;}
.fs17_c00423{font-size:46.400000pt;}
.fs6_c00423{font-size:46.933333pt;}
.fs19_c00423{font-size:48.000000pt;}
.fs15_c00423{font-size:49.066667pt;}
.fs1a_c00423{font-size:50.133333pt;}
.fs14_c00423{font-size:50.666667pt;}
.fs2_c00423{font-size:51.200000pt;}
.fs1c_c00423{font-size:51.733333pt;}
.fs18_c00423{font-size:52.800000pt;}
.fs16_c00423{font-size:53.333333pt;}
.fs13_c00423{font-size:54.933333pt;}
.fs1b_c00423{font-size:58.666667pt;}
.fs0_c00423{font-size:60.800000pt;}
.fs1_c00423{font-size:62.400000pt;}
.y0_c00423{bottom:0.000000pt;}
.y26_c00423{bottom:33.933347pt;}
.y25_c00423{bottom:60.800013pt;}
.y24_c00423{bottom:132.173347pt;}
.y23_c00423{bottom:148.173347pt;}
.y22_c00423{bottom:164.480013pt;}
.y21_c00423{bottom:180.173347pt;}
.y20_c00423{bottom:196.173347pt;}
.y1f_c00423{bottom:212.480013pt;}
.y1e_c00423{bottom:228.480013pt;}
.y1d_c00423{bottom:244.480013pt;}
.y1c_c00423{bottom:260.480013pt;}
.y1b_c00423{bottom:276.480013pt;}
.y1a_c00423{bottom:292.480013pt;}
.y19_c00423{bottom:308.813347pt;}
.y18_c00423{bottom:324.813347pt;}
.y17_c00423{bottom:340.813347pt;}
.y16_c00423{bottom:357.120013pt;}
.y15_c00423{bottom:373.453347pt;}
.y14_c00423{bottom:389.453347pt;}
.y13_c00423{bottom:405.760013pt;}
.y12_c00423{bottom:421.760013pt;}
.y11_c00423{bottom:437.760013pt;}
.y10_c00423{bottom:454.080013pt;}
.yf_c00423{bottom:454.086013pt;}
.ye_c00423{bottom:470.413347pt;}
.yd_c00423{bottom:486.733347pt;}
.yc_c00423{bottom:502.733347pt;}
.yb_c00423{bottom:518.733347pt;}
.ya_c00423{bottom:535.040013pt;}
.y9_c00423{bottom:551.373347pt;}
.y8_c00423{bottom:567.373347pt;}
.y7_c00423{bottom:591.693347pt;}
.y6_c00423{bottom:607.040013pt;}
.y5_c00423{bottom:612.813347pt;}
.y3_c00423{bottom:621.453347pt;}
.y4_c00423{bottom:626.573347pt;}
.y2_c00423{bottom:647.040013pt;}
.y1_c00423{bottom:675.533347pt;}
.h1f_c00423{height:22.806250pt;}
.hc_c00423{height:26.427235pt;}
.h11_c00423{height:26.695312pt;}
.h14_c00423{height:27.256806pt;}
.he_c00423{height:29.835938pt;}
.hb_c00423{height:29.836800pt;}
.h7_c00423{height:31.390625pt;}
.ha_c00423{height:31.706250pt;}
.h9_c00423{height:32.819306pt;}
.h4_c00423{height:34.099200pt;}
.h10_c00423{height:36.640625pt;}
.hd_c00423{height:41.352086pt;}
.h5_c00423{height:41.875000pt;}
.h13_c00423{height:42.377344pt;}
.hf_c00423{height:43.388056pt;}
.h12_c00423{height:43.445313pt;}
.h8_c00423{height:46.062500pt;}
.h1a_c00423{height:46.168750pt;}
.h6_c00423{height:47.281250pt;}
.h16_c00423{height:49.701823pt;}
.h18_c00423{height:51.175000pt;}
.h1b_c00423{height:51.820312pt;}
.h1c_c00423{height:52.287500pt;}
.h17_c00423{height:52.343750pt;}
.h19_c00423{height:53.890063pt;}
.h15_c00423{height:53.914062pt;}
.h1e_c00423{height:53.956250pt;}
.h1d_c00423{height:57.578125pt;}
.h2_c00423{height:59.671875pt;}
.h3_c00423{height:61.242187pt;}
.h1_c00423{height:793.333333pt;}
.h0_c00423{height:793.600013pt;}
.w1_c00423{width:1122.666667pt;}
.w0_c00423{width:1122.879991pt;}
.x0_c00423{left:0.000000pt;}
.x4_c00423{left:59.853324pt;}
.x1_c00423{left:62.906657pt;}
.x4c_c00423{left:63.866657pt;}
.x5e_c00423{left:65.026657pt;}
.x5f_c00423{left:66.306657pt;}
.x15_c00423{left:104.639991pt;}
.x5_c00423{left:123.066657pt;}
.x6_c00423{left:126.079991pt;}
.x60_c00423{left:142.853324pt;}
.x17_c00423{left:194.986657pt;}
.x18_c00423{left:205.559991pt;}
.x19_c00423{left:209.599991pt;}
.x1a_c00423{left:216.653324pt;}
.x29_c00423{left:231.839991pt;}
.x61_c00423{left:234.399991pt;}
.x1b_c00423{left:251.533324pt;}
.x40_c00423{left:255.599991pt;}
.x51_c00423{left:257.826657pt;}
.x41_c00423{left:279.559991pt;}
.x52_c00423{left:281.119991pt;}
.x4d_c00423{left:282.133324pt;}
.x7_c00423{left:304.013324pt;}
.x4e_c00423{left:305.119991pt;}
.x53_c00423{left:354.173324pt;}
.x1c_c00423{left:358.839991pt;}
.x8_c00423{left:371.853324pt;}
.x4b_c00423{left:377.479991pt;}
.x42_c00423{left:400.826657pt;}
.x1d_c00423{left:419.119991pt;}
.x43_c00423{left:424.239991pt;}
.x1e_c00423{left:443.533324pt;}
.x9_c00423{left:447.306657pt;}
.x2a_c00423{left:448.826657pt;}
.x59_c00423{left:450.239991pt;}
.x44_c00423{left:471.626657pt;}
.x2b_c00423{left:472.559991pt;}
.x4a_c00423{left:473.479991pt;}
.xa_c00423{left:489.386657pt;}
.x2c_c00423{left:497.146657pt;}
.x5a_c00423{left:498.399991pt;}
.xb_c00423{left:501.599991pt;}
.x2d_c00423{left:521.493324pt;}
.x1f_c00423{left:544.519991pt;}
.xc_c00423{left:545.906657pt;}
.x54_c00423{left:547.106657pt;}
.xd_c00423{left:556.159991pt;}
.x45_c00423{left:568.906657pt;}
.x2e_c00423{left:569.813324pt;}
.x2f_c00423{left:594.119991pt;}
.x30_c00423{left:618.119991pt;}
.xe_c00423{left:649.293324pt;}
.x46_c00423{left:665.906657pt;}
.x31_c00423{left:689.519991pt;}
.x4f_c00423{left:691.426657pt;}
.x32_c00423{left:713.533324pt;}
.x50_c00423{left:715.359991pt;}
.x33_c00423{left:737.519991pt;}
.x55_c00423{left:739.386657pt;}
.xf_c00423{left:757.119991pt;}
.x34_c00423{left:761.839991pt;}
.x56_c00423{left:763.679991pt;}
.x20_c00423{left:781.293324pt;}
.x35_c00423{left:785.839991pt;}
.x47_c00423{left:787.039991pt;}
.x10_c00423{left:791.106657pt;}
.x11_c00423{left:800.653324pt;}
.x36_c00423{left:809.839991pt;}
.x21_c00423{left:810.893324pt;}
.x2_c00423{left:828.399991pt;}
.x37_c00423{left:834.159991pt;}
.x57_c00423{left:835.893324pt;}
.x3_c00423{left:853.573324pt;}
.x22_c00423{left:854.586657pt;}
.x38_c00423{left:857.839991pt;}
.x48_c00423{left:858.866657pt;}
.x16_c00423{left:863.359991pt;}
.x23_c00423{left:877.319991pt;}
.x24_c00423{left:882.426657pt;}
.x5b_c00423{left:884.039991pt;}
.x25_c00423{left:893.586657pt;}
.x26_c00423{left:901.773324pt;}
.x39_c00423{left:906.159991pt;}
.x49_c00423{left:907.119991pt;}
.x3a_c00423{left:930.719991pt;}
.x12_c00423{left:949.439991pt;}
.x3b_c00423{left:954.413324pt;}
.x3c_c00423{left:978.399991pt;}
.x5c_c00423{left:979.333324pt;}
.x27_c00423{left:984.853324pt;}
.x13_c00423{left:988.493324pt;}
.x28_c00423{left:1001.439991pt;}
.x3d_c00423{left:1002.733324pt;}
.x58_c00423{left:1004.706657pt;}
.x3e_c00423{left:1027.039991pt;}
.x3f_c00423{left:1051.053324pt;}
.x5d_c00423{left:1052.293324pt;}
.x14_c00423{left:1053.906657pt;}
}





/* 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_c00424 {
    display:none;
  }
  .loading-indicator_c00424.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00424 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_c00424 { 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_c00424" -> "#page-container .classname_c00424")
 */
.pf_c00424 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00424 { /* 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_c00424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00424 { /* 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_c00424 { /* 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_c00424 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00424 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00424 {overflow:visible;}
  }
}
.c_c00424 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00424 { /* 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_c00424:after { /* webkit #35443 */
  content: '';
}
.t_c00424:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00424 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 */
}
.__c00424 { /* 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_c00424 { /* info for Javascript */
  display:none;
}
.l_c00424 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00424 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00424 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00424: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_c00424 {
    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_c00424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00424.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_c00424 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00424{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00424;src:url('chunks/assets/font_8e4eddeb39eed6e1b59f3389.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.284668;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_c00424;src:url('chunks/assets/font_13f9206cfeae5262f088e2d7.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:0.666000;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_c00424;src:url('chunks/assets/font_9935e92adebc52961f738f43.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.284180;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_c00424;src:url('chunks/assets/font_066041ff312fd42e85d34181.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;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:ff5_c00424;src:url('chunks/assets/font_0f901cdec2a2ecd0e0dc923e.woff2')format("woff");}.ff5_c00424{font-family:ff5_c00424;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;}
.m3_c00424{transform:matrix(0.029111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029111,0.000000,0.000000,0.250000,0,0);}
.m10_c00424{transform:matrix(0.033333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033333,0.000000,0.000000,0.250000,0,0);}
.m9_c00424{transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);}
.mf_c00424{transform:matrix(0.043573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043573,0.000000,0.000000,0.250000,0,0);}
.m7_c00424{transform:matrix(0.056319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056319,0.000000,0.000000,0.250000,0,0);}
.m15_c00424{transform:matrix(0.057241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057241,0.000000,0.000000,0.250000,0,0);}
.m1a_c00424{transform:matrix(0.057615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057615,0.000000,0.000000,0.250000,0,0);}
.m8_c00424{transform:matrix(0.062128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062128,0.000000,0.000000,0.250000,0,0);}
.m16_c00424{transform:matrix(0.063788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063788,0.000000,0.000000,0.250000,0,0);}
.m1c_c00424{transform:matrix(0.068377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068377,0.000000,0.000000,0.250000,0,0);}
.m19_c00424{transform:matrix(0.086422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086422,0.000000,0.000000,0.250000,0,0);}
.mc_c00424{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m2_c00424{transform:matrix(0.088889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088889,0.000000,0.000000,0.250000,0,0);}
.m1_c00424{transform:matrix(0.090161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090161,0.000000,0.000000,0.250000,0,0);}
.m12_c00424{transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);}
.m35_c00424{transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);}
.m37_c00424{transform:matrix(0.116934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116934,0.000000,0.000000,0.250000,0,0);}
.m3e_c00424{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m31_c00424{transform:matrix(0.127778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127778,0.000000,0.000000,0.250000,0,0);}
.m4_c00424{transform:matrix(0.134169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134169,0.000000,0.000000,0.250000,0,0);}
.mb_c00424{transform:matrix(0.137261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137261,0.000000,0.000000,0.250000,0,0);}
.m14_c00424{transform:matrix(0.137878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137878,0.000000,0.000000,0.250000,0,0);}
.m13_c00424{transform:matrix(0.138352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138352,0.000000,0.000000,0.250000,0,0);}
.ma_c00424{transform:matrix(0.149997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149997,0.000000,0.000000,0.250000,0,0);}
.m5_c00424{transform:matrix(0.157212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157212,0.000000,0.000000,0.250000,0,0);}
.m32_c00424{transform:matrix(0.162867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162867,0.000000,0.000000,0.250000,0,0);}
.md_c00424{transform:matrix(0.165797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165797,0.000000,0.000000,0.250000,0,0);}
.m1b_c00424{transform:matrix(0.172680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172680,0.000000,0.000000,0.250000,0,0);}
.m29_c00424{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m1d_c00424{transform:matrix(0.200003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200003,0.000000,0.000000,0.250000,0,0);}
.m17_c00424{transform:matrix(0.203803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203803,0.000000,0.000000,0.250000,0,0);}
.m34_c00424{transform:matrix(0.205005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205005,0.000000,0.000000,0.250000,0,0);}
.m3b_c00424{transform:matrix(0.205958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205958,0.000000,0.000000,0.250000,0,0);}
.m2a_c00424{transform:matrix(0.209574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209574,0.000000,0.000000,0.250000,0,0);}
.m2e_c00424{transform:matrix(0.215631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215631,0.000000,0.000000,0.250000,0,0);}
.m30_c00424{transform:matrix(0.217535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217535,0.000000,0.000000,0.250000,0,0);}
.m18_c00424{transform:matrix(0.217676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217676,0.000000,0.000000,0.250000,0,0);}
.m2d_c00424{transform:matrix(0.221434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221434,0.000000,0.000000,0.250000,0,0);}
.m38_c00424{transform:matrix(0.224890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224890,0.000000,0.000000,0.250000,0,0);}
.m3d_c00424{transform:matrix(0.226583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226583,0.000000,0.000000,0.250000,0,0);}
.m27_c00424{transform:matrix(0.227169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227169,0.000000,0.000000,0.250000,0,0);}
.m28_c00424{transform:matrix(0.227453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227453,0.000000,0.000000,0.250000,0,0);}
.m1e_c00424{transform:matrix(0.228577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228577,0.000000,0.000000,0.250000,0,0);}
.m2c_c00424{transform:matrix(0.230424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230424,0.000000,0.000000,0.250000,0,0);}
.m24_c00424{transform:matrix(0.231184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231184,0.000000,0.000000,0.250000,0,0);}
.m3c_c00424{transform:matrix(0.232123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232123,0.000000,0.000000,0.250000,0,0);}
.me_c00424{transform:matrix(0.233583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233583,0.000000,0.000000,0.250000,0,0);}
.m22_c00424{transform:matrix(0.233835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233835,0.000000,0.000000,0.250000,0,0);}
.m33_c00424{transform:matrix(0.235721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235721,0.000000,0.000000,0.250000,0,0);}
.m11_c00424{transform:matrix(0.235923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235923,0.000000,0.000000,0.250000,0,0);}
.m36_c00424{transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);}
.m20_c00424{transform:matrix(0.236133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236133,0.000000,0.000000,0.250000,0,0);}
.m3a_c00424{transform:matrix(0.237490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237490,0.000000,0.000000,0.250000,0,0);}
.m2b_c00424{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m2f_c00424{transform:matrix(0.240013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240013,0.000000,0.000000,0.250000,0,0);}
.m1f_c00424{transform:matrix(0.242864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242864,0.000000,0.000000,0.250000,0,0);}
.m26_c00424{transform:matrix(0.243853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243853,0.000000,0.000000,0.250000,0,0);}
.m39_c00424{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m25_c00424{transform:matrix(0.245545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245545,0.000000,0.000000,0.250000,0,0);}
.m21_c00424{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.m0_c00424{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);}
.m23_c00424{transform:matrix(0.252019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252019,0.000000,0.000000,0.250000,0,0);}
.m6_c00424{transform:matrix(0.269077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269077,0.000000,0.000000,0.250000,0,0);}
.v6_c00424{vertical-align:-2.940000px;}
.v1_c00424{vertical-align:-1.522800px;}
.v0_c00424{vertical-align:0.000000px;}
.v2_c00424{vertical-align:1.440000px;}
.v3_c00424{vertical-align:2.989200px;}
.v4_c00424{vertical-align:4.286400px;}
.v5_c00424{vertical-align:5.760000px;}
.lse_c00424{letter-spacing:-2.751000px;}
.ls11_c00424{letter-spacing:-2.331000px;}
.ls23_c00424{letter-spacing:-2.142000px;}
.ls16_c00424{letter-spacing:-1.974000px;}
.ls34_c00424{letter-spacing:-1.964520px;}
.ls30_c00424{letter-spacing:-1.952280px;}
.ls2a_c00424{letter-spacing:-1.940040px;}
.ls2f_c00424{letter-spacing:-1.932000px;}
.ls3c_c00424{letter-spacing:-1.915560px;}
.ls2e_c00424{letter-spacing:-1.890000px;}
.ls18_c00424{letter-spacing:-1.848000px;}
.ls14_c00424{letter-spacing:-1.701000px;}
.ls17_c00424{letter-spacing:-1.596000px;}
.ls29_c00424{letter-spacing:-1.560600px;}
.ls19_c00424{letter-spacing:-1.554021px;}
.ls39_c00424{letter-spacing:-1.530000px;}
.ls13_c00424{letter-spacing:-1.512000px;}
.lsb_c00424{letter-spacing:-1.429560px;}
.ls20_c00424{letter-spacing:-1.413720px;}
.ls26_c00424{letter-spacing:-1.401480px;}
.ls10_c00424{letter-spacing:-1.391040px;}
.ls15_c00424{letter-spacing:-1.386000px;}
.ls25_c00424{letter-spacing:-1.352520px;}
.ls33_c00424{letter-spacing:-1.346400px;}
.ls32_c00424{letter-spacing:-1.328040px;}
.ls1f_c00424{letter-spacing:-1.291320px;}
.ls22_c00424{letter-spacing:-1.266840px;}
.ls3a_c00424{letter-spacing:-1.260720px;}
.ls37_c00424{letter-spacing:-1.230120px;}
.ls35_c00424{letter-spacing:-1.217880px;}
.ls3b_c00424{letter-spacing:-1.211760px;}
.ls2c_c00424{letter-spacing:-1.190040px;}
.ls31_c00424{letter-spacing:-1.187280px;}
.ls27_c00424{letter-spacing:-1.175040px;}
.ls38_c00424{letter-spacing:-1.150560px;}
.ls1e_c00424{letter-spacing:-1.037760px;}
.ls21_c00424{letter-spacing:-1.003680px;}
.ls24_c00424{letter-spacing:-0.979200px;}
.ls36_c00424{letter-spacing:-0.954720px;}
.ls3d_c00424{letter-spacing:-0.930240px;}
.ls28_c00424{letter-spacing:-0.918000px;}
.ls3f_c00424{letter-spacing:-0.651900px;}
.ls2d_c00424{letter-spacing:-0.614760px;}
.ls1b_c00424{letter-spacing:-0.530160px;}
.ls3e_c00424{letter-spacing:-0.219960px;}
.ls2b_c00424{letter-spacing:-0.050760px;}
.lsd_c00424{letter-spacing:0.000000px;}
.ls5_c00424{letter-spacing:0.014760px;}
.ls40_c00424{letter-spacing:0.204180px;}
.ls7_c00424{letter-spacing:0.305040px;}
.lsa_c00424{letter-spacing:0.307500px;}
.ls8_c00424{letter-spacing:0.396060px;}
.ls9_c00424{letter-spacing:0.420660px;}
.ls6_c00424{letter-spacing:0.482160px;}
.ls4_c00424{letter-spacing:0.666660px;}
.ls12_c00424{letter-spacing:0.821294px;}
.ls1_c00424{letter-spacing:0.823440px;}
.ls3_c00424{letter-spacing:0.885480px;}
.lsc_c00424{letter-spacing:0.896040px;}
.ls1a_c00424{letter-spacing:0.908040px;}
.ls0_c00424{letter-spacing:1.374840px;}
.ls1c_c00424{letter-spacing:1.838640px;}
.ls2_c00424{letter-spacing:2.267280px;}
.lsf_c00424{letter-spacing:2.640000px;}
.ls1d_c00424{letter-spacing:2.820000px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{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__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00424{word-spacing:0.000000px;}
._12_c00424{width:1.493280px;}
._4b_c00424{width:2.991300px;}
._21_c00424{width:4.296240px;}
._40_c00424{width:5.318280px;}
._0_c00424{width:7.002000px;}
._b_c00424{width:31.845360px;}
._a_c00424{width:33.580560px;}
._8_c00424{width:35.035680px;}
._7_c00424{width:37.842000px;}
._6_c00424{width:39.096480px;}
._30_c00424{width:41.284800px;}
._32_c00424{width:43.315200px;}
._9_c00424{width:56.625600px;}
._2b_c00424{width:59.376000px;}
._43_c00424{width:60.426000px;}
._1_c00424{width:61.532400px;}
._2a_c00424{width:63.111600px;}
._4_c00424{width:64.296000px;}
._2_c00424{width:65.424000px;}
._3_c00424{width:67.285200px;}
._5_c00424{width:68.472000px;}
._2c_c00424{width:69.654000px;}
._1a_c00424{width:71.289600px;}
._2f_c00424{width:84.970800px;}
._44_c00424{width:88.435200px;}
._2e_c00424{width:146.318880px;}
._31_c00424{width:147.993600px;}
._16_c00424{width:166.082400px;}
._14_c00424{width:168.128400px;}
._3d_c00424{width:169.479600px;}
._24_c00424{width:170.722800px;}
._2d_c00424{width:172.471200px;}
._1d_c00424{width:173.712000px;}
._19_c00424{width:175.009200px;}
._28_c00424{width:176.250000px;}
._27_c00424{width:177.885600px;}
._3b_c00424{width:179.295600px;}
._29_c00424{width:214.054080px;}
._37_c00424{width:219.579960px;}
._39_c00424{width:226.400760px;}
._33_c00424{width:280.165200px;}
._d_c00424{width:281.718000px;}
._3e_c00424{width:284.425200px;}
._42_c00424{width:286.325640px;}
._35_c00424{width:313.685040px;}
._49_c00424{width:384.390000px;}
._1c_c00424{width:388.257600px;}
._45_c00424{width:389.667600px;}
._3a_c00424{width:391.077600px;}
._25_c00424{width:392.656800px;}
._22_c00424{width:475.832400px;}
._18_c00424{width:493.669200px;}
._1b_c00424{width:494.797200px;}
._c_c00424{width:503.482800px;}
._26_c00424{width:520.684800px;}
._1e_c00424{width:604.438800px;}
._3f_c00424{width:608.781600px;}
._17_c00424{width:680.082240px;}
._46_c00424{width:719.438400px;}
._38_c00424{width:822.308880px;}
._e_c00424{width:824.568000px;}
._34_c00424{width:843.349200px;}
._10_c00424{width:847.466400px;}
._11_c00424{width:1033.360800px;}
._4a_c00424{width:1080.114120px;}
._48_c00424{width:1142.900880px;}
._3c_c00424{width:1248.132000px;}
._1f_c00424{width:1256.422800px;}
._20_c00424{width:1275.316800px;}
._f_c00424{width:1353.261600px;}
._47_c00424{width:1380.532800px;}
._23_c00424{width:1582.132800px;}
._41_c00424{width:1670.746320px;}
._36_c00424{width:1688.559600px;}
._15_c00424{width:2567.160000px;}
._13_c00424{width:3213.275520px;}
.fc0_c00424{color:transparent;}
.fs1b_c00424{font-size:18.720000px;}
.fsa_c00424{font-size:24.480000px;}
.fs1c_c00424{font-size:24.600000px;}
.fs9_c00424{font-size:27.360600px;}
.fsc_c00424{font-size:34.800600px;}
.fs15_c00424{font-size:37.440000px;}
.fs12_c00424{font-size:38.880600px;}
.fs10_c00424{font-size:39.600000px;}
.fs7_c00424{font-size:43.200000px;}
.fs14_c00424{font-size:44.400600px;}
.fs1a_c00424{font-size:44.640600px;}
.fs13_c00424{font-size:45.600000px;}
.fse_c00424{font-size:48.600000px;}
.fsf_c00424{font-size:48.960000px;}
.fs6_c00424{font-size:52.800000px;}
.fs17_c00424{font-size:54.000000px;}
.fs18_c00424{font-size:55.200000px;}
.fs11_c00424{font-size:56.400000px;}
.fs8_c00424{font-size:60.480000px;}
.fs16_c00424{font-size:61.200000px;}
.fs19_c00424{font-size:61.800000px;}
.fs4_c00424{font-size:61.920000px;}
.fs2_c00424{font-size:64.800000px;}
.fsb_c00424{font-size:66.600000px;}
.fs0_c00424{font-size:68.400000px;}
.fsd_c00424{font-size:72.000000px;}
.fs5_c00424{font-size:78.600000px;}
.fs3_c00424{font-size:105.120600px;}
.fs1_c00424{font-size:120.960000px;}
.y0_c00424{bottom:0.000000px;}
.y46_c00424{bottom:32.759998px;}
.y45_c00424{bottom:70.214999px;}
.y44_c00424{bottom:146.879998px;}
.y43_c00424{bottom:164.519999px;}
.y42_c00424{bottom:164.879998px;}
.y41_c00424{bottom:182.519999px;}
.y40_c00424{bottom:182.879998px;}
.y3f_c00424{bottom:200.894999px;}
.y3e_c00424{bottom:201.254999px;}
.y3d_c00424{bottom:219.254999px;}
.y3c_c00424{bottom:237.614998px;}
.y3b_c00424{bottom:255.254999px;}
.y3a_c00424{bottom:272.894999px;}
.y39_c00424{bottom:291.254999px;}
.y38_c00424{bottom:308.894999px;}
.y37_c00424{bottom:326.519999px;}
.y36_c00424{bottom:344.519999px;}
.y35_c00424{bottom:344.894999px;}
.y34_c00424{bottom:361.814999px;}
.y33_c00424{bottom:380.894999px;}
.y30_c00424{bottom:398.519998px;}
.y31_c00424{bottom:398.894999px;}
.y32_c00424{bottom:399.254998px;}
.y2e_c00424{bottom:416.174999px;}
.y2d_c00424{bottom:416.519998px;}
.y2f_c00424{bottom:417.254998px;}
.y29_c00424{bottom:433.814998px;}
.y2a_c00424{bottom:434.174999px;}
.y2b_c00424{bottom:435.254998px;}
.y2c_c00424{bottom:435.614999px;}
.y28_c00424{bottom:451.439999px;}
.y27_c00424{bottom:469.439999px;}
.y26_c00424{bottom:469.814998px;}
.y25_c00424{bottom:488.174999px;}
.y23_c00424{bottom:505.439999px;}
.y24_c00424{bottom:505.814998px;}
.y21_c00424{bottom:523.439999px;}
.y22_c00424{bottom:524.174999px;}
.y20_c00424{bottom:541.439999px;}
.y1e_c00424{bottom:559.439999px;}
.y1f_c00424{bottom:559.814999px;}
.y1c_c00424{bottom:577.439999px;}
.y1d_c00424{bottom:578.519998px;}
.y1b_c00424{bottom:596.174999px;}
.y1a_c00424{bottom:613.814999px;}
.y19_c00424{bottom:614.519998px;}
.y18_c00424{bottom:632.174999px;}
.y17_c00424{bottom:649.814999px;}
.y16_c00424{bottom:650.174999px;}
.y15_c00424{bottom:668.519998px;}
.yf_c00424{bottom:694.814999px;}
.y10_c00424{bottom:695.174999px;}
.y11_c00424{bottom:695.519998px;}
.y12_c00424{bottom:695.894999px;}
.y13_c00424{bottom:696.254999px;}
.y14_c00424{bottom:696.614998px;}
.yc_c00424{bottom:709.574998px;}
.y2_c00424{bottom:712.439999px;}
.ye_c00424{bottom:712.814999px;}
.yd_c00424{bottom:713.174999px;}
.y4_c00424{bottom:713.519998px;}
.yb_c00424{bottom:714.959998px;}
.y3_c00424{bottom:723.614998px;}
.y5_c00424{bottom:726.119999px;}
.y7_c00424{bottom:726.494999px;}
.y6_c00424{bottom:730.814999px;}
.ya_c00424{bottom:731.519998px;}
.y9_c00424{bottom:733.694999px;}
.y8_c00424{bottom:735.854998px;}
.y1_c00424{bottom:757.439999px;}
.h2c_c00424{height:12.467520px;}
.hc_c00424{height:16.303680px;}
.hb_c00424{height:18.222160px;}
.h19_c00424{height:24.935040px;}
.h2d_c00424{height:25.657031px;}
.h15_c00424{height:25.894480px;}
.h25_c00424{height:28.771200px;}
.h2a_c00424{height:29.730640px;}
.h12_c00424{height:32.607360px;}
.he_c00424{height:36.295938px;}
.h13_c00424{height:38.865234px;}
.ha_c00424{height:40.279680px;}
.h6_c00424{height:41.238720px;}
.h9_c00424{height:42.398438px;}
.h4_c00424{height:43.156800px;}
.h18_c00424{height:43.576761px;}
.hf_c00424{height:45.056250px;}
.h16_c00424{height:47.559375px;}
.h10_c00424{height:47.952000px;}
.h11_c00424{height:50.688281px;}
.h8_c00424{height:51.794531px;}
.h17_c00424{height:55.068750px;}
.h14_c00424{height:55.325977px;}
.h1c_c00424{height:55.353516px;}
.h23_c00424{height:56.320312px;}
.h2b_c00424{height:56.763516px;}
.h1a_c00424{height:56.793516px;}
.h27_c00424{height:56.876316px;}
.h24_c00424{height:57.571875px;}
.h20_c00424{height:58.173516px;}
.h1d_c00424{height:58.342716px;}
.h1b_c00424{height:58.823438px;}
.h22_c00424{height:59.696316px;}
.h1e_c00424{height:60.034570px;}
.h26_c00424{height:60.653320px;}
.h1f_c00424{height:61.162716px;}
.h28_c00424{height:61.219116px;}
.h21_c00424{height:63.143438px;}
.h29_c00424{height:63.514720px;}
.h2_c00424{height:67.130859px;}
.hd_c00424{height:69.461719px;}
.h5_c00424{height:70.010320px;}
.h7_c00424{height:77.141602px;}
.h3_c00424{height:80.559360px;}
.h1_c00424{height:892.500000px;}
.h0_c00424{height:892.799998px;}
.w1_c00424{width:1263.000000px;}
.w0_c00424{width:1263.240006px;}
.x0_c00424{left:0.000000px;}
.x2_c00424{left:70.200006px;}
.x1_c00424{left:74.010006px;}
.x53_c00424{left:137.370006px;}
.x39_c00424{left:142.320006px;}
.x35_c00424{left:144.270006px;}
.x37_c00424{left:146.625006px;}
.x49_c00424{left:149.670006px;}
.x3d_c00424{left:161.685006px;}
.x50_c00424{left:163.020006px;}
.x4f_c00424{left:164.415006px;}
.x33_c00424{left:166.860006px;}
.x3f_c00424{left:178.350006px;}
.x34_c00424{left:180.945006px;}
.x4d_c00424{left:194.805006px;}
.x4a_c00424{left:215.580006px;}
.x4b_c00424{left:218.430006px;}
.x1f_c00424{left:263.385006px;}
.x4e_c00424{left:264.465006px;}
.x3b_c00424{left:291.105006px;}
.x3e_c00424{left:318.240006px;}
.x16_c00424{left:352.140006px;}
.x40_c00424{left:372.600006px;}
.x3_c00424{left:397.095006px;}
.x41_c00424{left:398.430006px;}
.x36_c00424{left:426.465006px;}
.x4_c00424{left:446.055006px;}
.x10_c00424{left:473.115006px;}
.x11_c00424{left:528.780006px;}
.x20_c00424{left:534.240006px;}
.x12_c00424{left:555.480006px;}
.x21_c00424{left:560.745006px;}
.x5_c00424{left:579.975006px;}
.x22_c00424{left:588.510006px;}
.x23_c00424{left:615.105006px;}
.x13_c00424{left:623.175006px;}
.x54_c00424{left:628.035006px;}
.x24_c00424{left:641.760006px;}
.x14_c00424{left:661.740006px;}
.x25_c00424{left:668.745006px;}
.x6_c00424{left:687.930006px;}
.x17_c00424{left:716.775006px;}
.x7_c00424{left:718.410006px;}
.x26_c00424{left:722.760006px;}
.x52_c00424{left:724.185006px;}
.x8_c00424{left:733.320006px;}
.x18_c00424{left:742.695006px;}
.x27_c00424{left:749.745006px;}
.x4c_c00424{left:750.825006px;}
.x9_c00424{left:762.855006px;}
.x19_c00424{left:765.735006px;}
.x28_c00424{left:802.365006px;}
.x3a_c00424{left:804.465006px;}
.x1a_c00424{left:823.170006px;}
.x29_c00424{left:828.990006px;}
.x2a_c00424{left:856.350006px;}
.x3c_c00424{left:858.825006px;}
.x2b_c00424{left:883.350006px;}
.xa_c00424{left:897.135006px;}
.x2c_c00424{left:910.350006px;}
.x1b_c00424{left:911.895006px;}
.x1c_c00424{left:934.215006px;}
.x2d_c00424{left:936.990006px;}
.xb_c00424{left:958.680006px;}
.x47_c00424{left:966.855006px;}
.x48_c00424{left:998.130006px;}
.x1d_c00424{left:1023.390006px;}
.x1e_c00424{left:1045.095006px;}
.x42_c00424{left:1052.565006px;}
.xc_c00424{left:1073.160006px;}
.x2e_c00424{left:1077.330006px;}
.x43_c00424{left:1079.505006px;}
.x15_c00424{left:1102.635006px;}
.x2f_c00424{left:1103.955006px;}
.x38_c00424{left:1106.505006px;}
.x51_c00424{left:1107.585006px;}
.x30_c00424{left:1131.315006px;}
.x44_c00424{left:1134.225006px;}
.xd_c00424{left:1140.135006px;}
.xe_c00424{left:1153.095006px;}
.x31_c00424{left:1158.315006px;}
.x45_c00424{left:1160.460006px;}
.xf_c00424{left:1180.320006px;}
.x32_c00424{left:1185.315006px;}
.x46_c00424{left:1188.330006px;}
@media print{
.v6_c00424{vertical-align:-2.613333pt;}
.v1_c00424{vertical-align:-1.353600pt;}
.v0_c00424{vertical-align:0.000000pt;}
.v2_c00424{vertical-align:1.280000pt;}
.v3_c00424{vertical-align:2.657067pt;}
.v4_c00424{vertical-align:3.810133pt;}
.v5_c00424{vertical-align:5.120000pt;}
.lse_c00424{letter-spacing:-2.445333pt;}
.ls11_c00424{letter-spacing:-2.072000pt;}
.ls23_c00424{letter-spacing:-1.904000pt;}
.ls16_c00424{letter-spacing:-1.754667pt;}
.ls34_c00424{letter-spacing:-1.746240pt;}
.ls30_c00424{letter-spacing:-1.735360pt;}
.ls2a_c00424{letter-spacing:-1.724480pt;}
.ls2f_c00424{letter-spacing:-1.717333pt;}
.ls3c_c00424{letter-spacing:-1.702720pt;}
.ls2e_c00424{letter-spacing:-1.680000pt;}
.ls18_c00424{letter-spacing:-1.642667pt;}
.ls14_c00424{letter-spacing:-1.512000pt;}
.ls17_c00424{letter-spacing:-1.418667pt;}
.ls29_c00424{letter-spacing:-1.387200pt;}
.ls19_c00424{letter-spacing:-1.381352pt;}
.ls39_c00424{letter-spacing:-1.360000pt;}
.ls13_c00424{letter-spacing:-1.344000pt;}
.lsb_c00424{letter-spacing:-1.270720pt;}
.ls20_c00424{letter-spacing:-1.256640pt;}
.ls26_c00424{letter-spacing:-1.245760pt;}
.ls10_c00424{letter-spacing:-1.236480pt;}
.ls15_c00424{letter-spacing:-1.232000pt;}
.ls25_c00424{letter-spacing:-1.202240pt;}
.ls33_c00424{letter-spacing:-1.196800pt;}
.ls32_c00424{letter-spacing:-1.180480pt;}
.ls1f_c00424{letter-spacing:-1.147840pt;}
.ls22_c00424{letter-spacing:-1.126080pt;}
.ls3a_c00424{letter-spacing:-1.120640pt;}
.ls37_c00424{letter-spacing:-1.093440pt;}
.ls35_c00424{letter-spacing:-1.082560pt;}
.ls3b_c00424{letter-spacing:-1.077120pt;}
.ls2c_c00424{letter-spacing:-1.057813pt;}
.ls31_c00424{letter-spacing:-1.055360pt;}
.ls27_c00424{letter-spacing:-1.044480pt;}
.ls38_c00424{letter-spacing:-1.022720pt;}
.ls1e_c00424{letter-spacing:-0.922453pt;}
.ls21_c00424{letter-spacing:-0.892160pt;}
.ls24_c00424{letter-spacing:-0.870400pt;}
.ls36_c00424{letter-spacing:-0.848640pt;}
.ls3d_c00424{letter-spacing:-0.826880pt;}
.ls28_c00424{letter-spacing:-0.816000pt;}
.ls3f_c00424{letter-spacing:-0.579467pt;}
.ls2d_c00424{letter-spacing:-0.546453pt;}
.ls1b_c00424{letter-spacing:-0.471253pt;}
.ls3e_c00424{letter-spacing:-0.195520pt;}
.ls2b_c00424{letter-spacing:-0.045120pt;}
.lsd_c00424{letter-spacing:0.000000pt;}
.ls5_c00424{letter-spacing:0.013120pt;}
.ls40_c00424{letter-spacing:0.181493pt;}
.ls7_c00424{letter-spacing:0.271147pt;}
.lsa_c00424{letter-spacing:0.273333pt;}
.ls8_c00424{letter-spacing:0.352053pt;}
.ls9_c00424{letter-spacing:0.373920pt;}
.ls6_c00424{letter-spacing:0.428587pt;}
.ls4_c00424{letter-spacing:0.592587pt;}
.ls12_c00424{letter-spacing:0.730039pt;}
.ls1_c00424{letter-spacing:0.731947pt;}
.ls3_c00424{letter-spacing:0.787093pt;}
.lsc_c00424{letter-spacing:0.796480pt;}
.ls1a_c00424{letter-spacing:0.807147pt;}
.ls0_c00424{letter-spacing:1.222080pt;}
.ls1c_c00424{letter-spacing:1.634347pt;}
.ls2_c00424{letter-spacing:2.015360pt;}
.lsf_c00424{letter-spacing:2.346667pt;}
.ls1d_c00424{letter-spacing:2.506667pt;}
.ws0_c00424{word-spacing:0.000000pt;}
._12_c00424{width:1.327360pt;}
._4b_c00424{width:2.658933pt;}
._21_c00424{width:3.818880pt;}
._40_c00424{width:4.727360pt;}
._0_c00424{width:6.224000pt;}
._b_c00424{width:28.306987pt;}
._a_c00424{width:29.849387pt;}
._8_c00424{width:31.142827pt;}
._7_c00424{width:33.637333pt;}
._6_c00424{width:34.752427pt;}
._30_c00424{width:36.697600pt;}
._32_c00424{width:38.502400pt;}
._9_c00424{width:50.333867pt;}
._2b_c00424{width:52.778667pt;}
._43_c00424{width:53.712000pt;}
._1_c00424{width:54.695467pt;}
._2a_c00424{width:56.099200pt;}
._4_c00424{width:57.152000pt;}
._2_c00424{width:58.154667pt;}
._3_c00424{width:59.809067pt;}
._5_c00424{width:60.864000pt;}
._2c_c00424{width:61.914667pt;}
._1a_c00424{width:63.368533pt;}
._2f_c00424{width:75.529600pt;}
._44_c00424{width:78.609067pt;}
._2e_c00424{width:130.061227pt;}
._31_c00424{width:131.549867pt;}
._16_c00424{width:147.628800pt;}
._14_c00424{width:149.447467pt;}
._3d_c00424{width:150.648533pt;}
._24_c00424{width:151.753600pt;}
._2d_c00424{width:153.307733pt;}
._1d_c00424{width:154.410667pt;}
._19_c00424{width:155.563733pt;}
._28_c00424{width:156.666667pt;}
._27_c00424{width:158.120533pt;}
._3b_c00424{width:159.373867pt;}
._29_c00424{width:190.270293pt;}
._37_c00424{width:195.182187pt;}
._39_c00424{width:201.245120pt;}
._33_c00424{width:249.035733pt;}
._d_c00424{width:250.416000pt;}
._3e_c00424{width:252.822400pt;}
._42_c00424{width:254.511680pt;}
._35_c00424{width:278.831147pt;}
._49_c00424{width:341.680000pt;}
._1c_c00424{width:345.117867pt;}
._45_c00424{width:346.371200pt;}
._3a_c00424{width:347.624533pt;}
._25_c00424{width:349.028267pt;}
._22_c00424{width:422.962133pt;}
._18_c00424{width:438.817067pt;}
._1b_c00424{width:439.819733pt;}
._c_c00424{width:447.540267pt;}
._26_c00424{width:462.830933pt;}
._1e_c00424{width:537.278933pt;}
._3f_c00424{width:541.139200pt;}
._17_c00424{width:604.517547pt;}
._46_c00424{width:639.500800pt;}
._38_c00424{width:730.941227pt;}
._e_c00424{width:732.949333pt;}
._34_c00424{width:749.643733pt;}
._10_c00424{width:753.303467pt;}
._11_c00424{width:918.542933pt;}
._4a_c00424{width:960.101440pt;}
._48_c00424{width:1015.911893pt;}
._3c_c00424{width:1109.450667pt;}
._1f_c00424{width:1116.820267pt;}
._20_c00424{width:1133.614933pt;}
._f_c00424{width:1202.899200pt;}
._47_c00424{width:1227.140267pt;}
._23_c00424{width:1406.340267pt;}
._41_c00424{width:1485.107840pt;}
._36_c00424{width:1500.941867pt;}
._15_c00424{width:2281.920000pt;}
._13_c00424{width:2856.244907pt;}
.fs1b_c00424{font-size:16.640000pt;}
.fsa_c00424{font-size:21.760000pt;}
.fs1c_c00424{font-size:21.866667pt;}
.fs9_c00424{font-size:24.320533pt;}
.fsc_c00424{font-size:30.933867pt;}
.fs15_c00424{font-size:33.280000pt;}
.fs12_c00424{font-size:34.560533pt;}
.fs10_c00424{font-size:35.200000pt;}
.fs7_c00424{font-size:38.400000pt;}
.fs14_c00424{font-size:39.467200pt;}
.fs1a_c00424{font-size:39.680533pt;}
.fs13_c00424{font-size:40.533333pt;}
.fse_c00424{font-size:43.200000pt;}
.fsf_c00424{font-size:43.520000pt;}
.fs6_c00424{font-size:46.933333pt;}
.fs17_c00424{font-size:48.000000pt;}
.fs18_c00424{font-size:49.066667pt;}
.fs11_c00424{font-size:50.133333pt;}
.fs8_c00424{font-size:53.760000pt;}
.fs16_c00424{font-size:54.400000pt;}
.fs19_c00424{font-size:54.933333pt;}
.fs4_c00424{font-size:55.040000pt;}
.fs2_c00424{font-size:57.600000pt;}
.fsb_c00424{font-size:59.200000pt;}
.fs0_c00424{font-size:60.800000pt;}
.fsd_c00424{font-size:64.000000pt;}
.fs5_c00424{font-size:69.866667pt;}
.fs3_c00424{font-size:93.440533pt;}
.fs1_c00424{font-size:107.520000pt;}
.y0_c00424{bottom:0.000000pt;}
.y46_c00424{bottom:29.119999pt;}
.y45_c00424{bottom:62.413332pt;}
.y44_c00424{bottom:130.559999pt;}
.y43_c00424{bottom:146.239999pt;}
.y42_c00424{bottom:146.559999pt;}
.y41_c00424{bottom:162.239999pt;}
.y40_c00424{bottom:162.559999pt;}
.y3f_c00424{bottom:178.573332pt;}
.y3e_c00424{bottom:178.893332pt;}
.y3d_c00424{bottom:194.893332pt;}
.y3c_c00424{bottom:211.213332pt;}
.y3b_c00424{bottom:226.893332pt;}
.y3a_c00424{bottom:242.573332pt;}
.y39_c00424{bottom:258.893332pt;}
.y38_c00424{bottom:274.573332pt;}
.y37_c00424{bottom:290.239999pt;}
.y36_c00424{bottom:306.239999pt;}
.y35_c00424{bottom:306.573332pt;}
.y34_c00424{bottom:321.613332pt;}
.y33_c00424{bottom:338.573332pt;}
.y30_c00424{bottom:354.239999pt;}
.y31_c00424{bottom:354.573332pt;}
.y32_c00424{bottom:354.893332pt;}
.y2e_c00424{bottom:369.933332pt;}
.y2d_c00424{bottom:370.239999pt;}
.y2f_c00424{bottom:370.893332pt;}
.y29_c00424{bottom:385.613332pt;}
.y2a_c00424{bottom:385.933332pt;}
.y2b_c00424{bottom:386.893332pt;}
.y2c_c00424{bottom:387.213332pt;}
.y28_c00424{bottom:401.279999pt;}
.y27_c00424{bottom:417.279999pt;}
.y26_c00424{bottom:417.613332pt;}
.y25_c00424{bottom:433.933332pt;}
.y23_c00424{bottom:449.279999pt;}
.y24_c00424{bottom:449.613332pt;}
.y21_c00424{bottom:465.279999pt;}
.y22_c00424{bottom:465.933332pt;}
.y20_c00424{bottom:481.279999pt;}
.y1e_c00424{bottom:497.279999pt;}
.y1f_c00424{bottom:497.613332pt;}
.y1c_c00424{bottom:513.279999pt;}
.y1d_c00424{bottom:514.239999pt;}
.y1b_c00424{bottom:529.933332pt;}
.y1a_c00424{bottom:545.613332pt;}
.y19_c00424{bottom:546.239999pt;}
.y18_c00424{bottom:561.933332pt;}
.y17_c00424{bottom:577.613332pt;}
.y16_c00424{bottom:577.933332pt;}
.y15_c00424{bottom:594.239999pt;}
.yf_c00424{bottom:617.613332pt;}
.y10_c00424{bottom:617.933332pt;}
.y11_c00424{bottom:618.239999pt;}
.y12_c00424{bottom:618.573332pt;}
.y13_c00424{bottom:618.893332pt;}
.y14_c00424{bottom:619.213332pt;}
.yc_c00424{bottom:630.733332pt;}
.y2_c00424{bottom:633.279999pt;}
.ye_c00424{bottom:633.613332pt;}
.yd_c00424{bottom:633.933332pt;}
.y4_c00424{bottom:634.239999pt;}
.yb_c00424{bottom:635.519999pt;}
.y3_c00424{bottom:643.213332pt;}
.y5_c00424{bottom:645.439999pt;}
.y7_c00424{bottom:645.773332pt;}
.y6_c00424{bottom:649.613332pt;}
.ya_c00424{bottom:650.239999pt;}
.y9_c00424{bottom:652.173332pt;}
.y8_c00424{bottom:654.093332pt;}
.y1_c00424{bottom:673.279999pt;}
.h2c_c00424{height:11.082240pt;}
.hc_c00424{height:14.492160pt;}
.hb_c00424{height:16.197475pt;}
.h19_c00424{height:22.164480pt;}
.h2d_c00424{height:22.806250pt;}
.h15_c00424{height:23.017315pt;}
.h25_c00424{height:25.574400pt;}
.h2a_c00424{height:26.427235pt;}
.h12_c00424{height:28.984320pt;}
.he_c00424{height:32.263056pt;}
.h13_c00424{height:34.546875pt;}
.ha_c00424{height:35.804160pt;}
.h6_c00424{height:36.656640pt;}
.h9_c00424{height:37.687500pt;}
.h4_c00424{height:38.361600pt;}
.h18_c00424{height:38.734898pt;}
.hf_c00424{height:40.050000pt;}
.h16_c00424{height:42.275000pt;}
.h10_c00424{height:42.624000pt;}
.h11_c00424{height:45.056250pt;}
.h8_c00424{height:46.039583pt;}
.h17_c00424{height:48.950000pt;}
.h14_c00424{height:49.178646pt;}
.h1c_c00424{height:49.203125pt;}
.h23_c00424{height:50.062500pt;}
.h2b_c00424{height:50.456458pt;}
.h1a_c00424{height:50.483125pt;}
.h27_c00424{height:50.556725pt;}
.h24_c00424{height:51.175000pt;}
.h20_c00424{height:51.709792pt;}
.h1d_c00424{height:51.860192pt;}
.h1b_c00424{height:52.287500pt;}
.h22_c00424{height:53.063392pt;}
.h1e_c00424{height:53.364062pt;}
.h26_c00424{height:53.914062pt;}
.h1f_c00424{height:54.366858pt;}
.h28_c00424{height:54.416992pt;}
.h21_c00424{height:56.127500pt;}
.h29_c00424{height:56.457529pt;}
.h2_c00424{height:59.671875pt;}
.hd_c00424{height:61.743750pt;}
.h5_c00424{height:62.231395pt;}
.h7_c00424{height:68.570312pt;}
.h3_c00424{height:71.608320pt;}
.h1_c00424{height:793.333333pt;}
.h0_c00424{height:793.599999pt;}
.w1_c00424{width:1122.666667pt;}
.w0_c00424{width:1122.880005pt;}
.x0_c00424{left:0.000000pt;}
.x2_c00424{left:62.400005pt;}
.x1_c00424{left:65.786672pt;}
.x53_c00424{left:122.106672pt;}
.x39_c00424{left:126.506672pt;}
.x35_c00424{left:128.240005pt;}
.x37_c00424{left:130.333339pt;}
.x49_c00424{left:133.040005pt;}
.x3d_c00424{left:143.720005pt;}
.x50_c00424{left:144.906672pt;}
.x4f_c00424{left:146.146672pt;}
.x33_c00424{left:148.320005pt;}
.x3f_c00424{left:158.533339pt;}
.x34_c00424{left:160.840005pt;}
.x4d_c00424{left:173.160005pt;}
.x4a_c00424{left:191.626672pt;}
.x4b_c00424{left:194.160005pt;}
.x1f_c00424{left:234.120005pt;}
.x4e_c00424{left:235.080005pt;}
.x3b_c00424{left:258.760005pt;}
.x3e_c00424{left:282.880005pt;}
.x16_c00424{left:313.013339pt;}
.x40_c00424{left:331.200005pt;}
.x3_c00424{left:352.973339pt;}
.x41_c00424{left:354.160005pt;}
.x36_c00424{left:379.080005pt;}
.x4_c00424{left:396.493339pt;}
.x10_c00424{left:420.546672pt;}
.x11_c00424{left:470.026672pt;}
.x20_c00424{left:474.880005pt;}
.x12_c00424{left:493.760005pt;}
.x21_c00424{left:498.440005pt;}
.x5_c00424{left:515.533339pt;}
.x22_c00424{left:523.120005pt;}
.x23_c00424{left:546.760005pt;}
.x13_c00424{left:553.933339pt;}
.x54_c00424{left:558.253339pt;}
.x24_c00424{left:570.453339pt;}
.x14_c00424{left:588.213339pt;}
.x25_c00424{left:594.440005pt;}
.x6_c00424{left:611.493339pt;}
.x17_c00424{left:637.133339pt;}
.x7_c00424{left:638.586672pt;}
.x26_c00424{left:642.453339pt;}
.x52_c00424{left:643.720005pt;}
.x8_c00424{left:651.840005pt;}
.x18_c00424{left:660.173339pt;}
.x27_c00424{left:666.440005pt;}
.x4c_c00424{left:667.400005pt;}
.x9_c00424{left:678.093339pt;}
.x19_c00424{left:680.653339pt;}
.x28_c00424{left:713.213339pt;}
.x3a_c00424{left:715.080005pt;}
.x1a_c00424{left:731.706672pt;}
.x29_c00424{left:736.880005pt;}
.x2a_c00424{left:761.200005pt;}
.x3c_c00424{left:763.400005pt;}
.x2b_c00424{left:785.200005pt;}
.xa_c00424{left:797.453339pt;}
.x2c_c00424{left:809.200005pt;}
.x1b_c00424{left:810.573339pt;}
.x1c_c00424{left:830.413339pt;}
.x2d_c00424{left:832.880005pt;}
.xb_c00424{left:852.160005pt;}
.x47_c00424{left:859.426672pt;}
.x48_c00424{left:887.226672pt;}
.x1d_c00424{left:909.680005pt;}
.x1e_c00424{left:928.973339pt;}
.x42_c00424{left:935.613339pt;}
.xc_c00424{left:953.920005pt;}
.x2e_c00424{left:957.626672pt;}
.x43_c00424{left:959.560005pt;}
.x15_c00424{left:980.120005pt;}
.x2f_c00424{left:981.293339pt;}
.x38_c00424{left:983.560005pt;}
.x51_c00424{left:984.520005pt;}
.x30_c00424{left:1005.613339pt;}
.x44_c00424{left:1008.200005pt;}
.xd_c00424{left:1013.453339pt;}
.xe_c00424{left:1024.973339pt;}
.x31_c00424{left:1029.613339pt;}
.x45_c00424{left:1031.520005pt;}
.xf_c00424{left:1049.173339pt;}
.x32_c00424{left:1053.613339pt;}
.x46_c00424{left:1056.293339pt;}
}





/* 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_c00425 {
    display:none;
  }
  .loading-indicator_c00425.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00425 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_c00425 { 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_c00425" -> "#page-container .classname_c00425")
 */
.pf_c00425 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00425 { /* 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_c00425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00425 { /* 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_c00425 { /* 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_c00425 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00425 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00425 {overflow:visible;}
  }
}
.c_c00425 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00425 { /* 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_c00425:after { /* webkit #35443 */
  content: '';
}
.t_c00425:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00425 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 */
}
.__c00425 { /* 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_c00425 { /* info for Javascript */
  display:none;
}
.l_c00425 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00425 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00425 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00425: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_c00425 {
    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_c00425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00425.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_c00425 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00425{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00425;src:url('chunks/assets/font_0d6d12448df2722b919400a8.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.284668;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_c00425;src:url('chunks/assets/font_c80febaca0498d159bc1d91a.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:0.666000;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_c00425;src:url('chunks/assets/font_f59253d8770591010ab6e20d.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.284180;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_c00425;src:url('chunks/assets/font_89224b3afdc0d813002e19ac.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;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;}
.me_c00425{transform:matrix(0.046392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046392,0.000000,0.000000,0.250000,0,0);}
.m17_c00425{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m2_c00425{transform:matrix(0.092181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092181,0.000000,0.000000,0.250000,0,0);}
.m5_c00425{transform:matrix(0.095340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095340,0.000000,0.000000,0.250000,0,0);}
.m4_c00425{transform:matrix(0.098260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098260,0.000000,0.000000,0.250000,0,0);}
.m13_c00425{transform:matrix(0.099174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099174,0.000000,0.000000,0.250000,0,0);}
.m14_c00425{transform:matrix(0.118454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118454,0.000000,0.000000,0.250000,0,0);}
.m12_c00425{transform:matrix(0.120523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120523,0.000000,0.000000,0.250000,0,0);}
.ma_c00425{transform:matrix(0.161152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161152,0.000000,0.000000,0.250000,0,0);}
.mc_c00425{transform:matrix(0.175843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175843,0.000000,0.000000,0.250000,0,0);}
.m11_c00425{transform:matrix(0.193807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193807,0.000000,0.000000,0.250000,0,0);}
.m22_c00425{transform:matrix(0.193817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193817,0.000000,0.000000,0.250000,0,0);}
.m10_c00425{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m3_c00425{transform:matrix(0.205077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205077,0.000000,0.000000,0.250000,0,0);}
.mf_c00425{transform:matrix(0.208147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208147,0.000000,0.000000,0.250000,0,0);}
.m20_c00425{transform:matrix(0.222637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222637,0.000000,0.000000,0.250000,0,0);}
.m21_c00425{transform:matrix(0.227094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227094,0.000000,0.000000,0.250000,0,0);}
.m27_c00425{transform:matrix(0.230810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230810,0.000000,0.000000,0.250000,0,0);}
.m1_c00425{transform:matrix(0.231331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231331,0.000000,0.000000,0.250000,0,0);}
.m1e_c00425{transform:matrix(0.235977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235977,0.000000,0.000000,0.250000,0,0);}
.m24_c00425{transform:matrix(0.237072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237072,0.000000,0.000000,0.250000,0,0);}
.md_c00425{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m23_c00425{transform:matrix(0.237904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237904,0.000000,0.000000,0.250000,0,0);}
.m1d_c00425{transform:matrix(0.241601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241601,0.000000,0.000000,0.250000,0,0);}
.m25_c00425{transform:matrix(0.243185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243185,0.000000,0.000000,0.250000,0,0);}
.m18_c00425{transform:matrix(0.244797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244797,0.000000,0.000000,0.250000,0,0);}
.m1b_c00425{transform:matrix(0.244880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244880,0.000000,0.000000,0.250000,0,0);}
.m6_c00425{transform:matrix(0.245334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245334,0.000000,0.000000,0.250000,0,0);}
.m8_c00425{transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);}
.mb_c00425{transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);}
.m7_c00425{transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);}
.m0_c00425{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);}
.m1a_c00425{transform:matrix(0.251923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251923,0.000000,0.000000,0.250000,0,0);}
.m9_c00425{transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);}
.m28_c00425{transform:matrix(0.268680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268680,0.000000,0.000000,0.250000,0,0);}
.m16_c00425{transform:matrix(0.297779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297779,0.000000,0.000000,0.250000,0,0);}
.m19_c00425{transform:matrix(0.306049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306049,0.000000,0.000000,0.250000,0,0);}
.m26_c00425{transform:matrix(0.512053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512053,0.000000,0.000000,0.250000,0,0);}
.m15_c00425{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m1c_c00425{transform:matrix(0.668049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668049,0.000000,0.000000,0.250000,0,0);}
.m1f_c00425{transform:matrix(1.018519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.018519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.018519,0.000000,0.000000,0.250000,0,0);}
.v8_c00425{vertical-align:-73.497600px;}
.v6_c00425{vertical-align:-4.260000px;}
.v5_c00425{vertical-align:-2.880000px;}
.v4_c00425{vertical-align:-1.382400px;}
.v0_c00425{vertical-align:0.000000px;}
.v3_c00425{vertical-align:1.497600px;}
.v1_c00425{vertical-align:2.880000px;}
.v2_c00425{vertical-align:4.320000px;}
.v7_c00425{vertical-align:73.497600px;}
.ls19_c00425{letter-spacing:-5.712021px;}
.lsf_c00425{letter-spacing:-5.166000px;}
.ls27_c00425{letter-spacing:-5.124000px;}
.ls2c_c00425{letter-spacing:-4.095000px;}
.lsc_c00425{letter-spacing:-2.604000px;}
.ls10_c00425{letter-spacing:-2.184000px;}
.ls2f_c00425{letter-spacing:-2.152800px;}
.ls1f_c00425{letter-spacing:-2.084160px;}
.ls1b_c00425{letter-spacing:-2.065440px;}
.ls32_c00425{letter-spacing:-2.037000px;}
.ls2e_c00425{letter-spacing:-2.034240px;}
.ls1d_c00425{letter-spacing:-2.028000px;}
.ls1a_c00425{letter-spacing:-2.016000px;}
.ls14_c00425{letter-spacing:-2.015520px;}
.lsb_c00425{letter-spacing:-2.008800px;}
.lsd_c00425{letter-spacing:-1.912080px;}
.ls2d_c00425{letter-spacing:-1.859520px;}
.ls18_c00425{letter-spacing:-1.765920px;}
.ls1e_c00425{letter-spacing:-1.734720px;}
.ls20_c00425{letter-spacing:-1.703520px;}
.ls15_c00425{letter-spacing:-1.691040px;}
.ls31_c00425{letter-spacing:-1.653600px;}
.ls13_c00425{letter-spacing:-1.647360px;}
.ls2b_c00425{letter-spacing:-1.603680px;}
.ls12_c00425{letter-spacing:-1.597440px;}
.ls21_c00425{letter-spacing:-1.584960px;}
.ls28_c00425{letter-spacing:-1.528800px;}
.ls23_c00425{letter-spacing:-1.503840px;}
.ls22_c00425{letter-spacing:-1.485120px;}
.ls25_c00425{letter-spacing:-1.397760px;}
.ls30_c00425{letter-spacing:-1.211280px;}
.ls26_c00425{letter-spacing:-1.098240px;}
.ls24_c00425{letter-spacing:-1.085760px;}
.ls29_c00425{letter-spacing:-0.848640px;}
.ls17_c00425{letter-spacing:-0.761280px;}
.ls33_c00425{letter-spacing:-0.679440px;}
.ls37_c00425{letter-spacing:-0.651900px;}
.ls16_c00425{letter-spacing:-0.580320px;}
.ls1c_c00425{letter-spacing:-0.351360px;}
.ls2a_c00425{letter-spacing:-0.327540px;}
.ls34_c00425{letter-spacing:-0.207360px;}
.ls35_c00425{letter-spacing:-0.103680px;}
.lse_c00425{letter-spacing:0.000000px;}
.ls5_c00425{letter-spacing:0.014760px;}
.ls38_c00425{letter-spacing:0.204180px;}
.ls7_c00425{letter-spacing:0.305040px;}
.lsa_c00425{letter-spacing:0.307500px;}
.ls8_c00425{letter-spacing:0.396060px;}
.ls9_c00425{letter-spacing:0.420660px;}
.ls6_c00425{letter-spacing:0.482160px;}
.ls4_c00425{letter-spacing:0.666660px;}
.ls1_c00425{letter-spacing:1.007340px;}
.ls36_c00425{letter-spacing:1.065600px;}
.ls2_c00425{letter-spacing:1.815840px;}
.ls3_c00425{letter-spacing:2.125440px;}
.ls0_c00425{letter-spacing:2.880000px;}
.ls11_c00425{letter-spacing:3.120000px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{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__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00425{word-spacing:-14.400000px;}
.ws1_c00425{word-spacing:0.000000px;}
._39_c00425{margin-left:-11.520000px;}
._1_c00425{margin-left:-5.166000px;}
._2_c00425{margin-left:-3.837600px;}
._7_c00425{width:1.628640px;}
._3_c00425{width:3.003600px;}
._1d_c00425{width:5.385120px;}
._15_c00425{width:6.633120px;}
._36_c00425{width:32.023680px;}
._32_c00425{width:33.120000px;}
._3a_c00425{width:34.800000px;}
._1a_c00425{width:37.054080px;}
._6_c00425{width:38.700000px;}
._1b_c00425{width:39.780480px;}
._3b_c00425{width:49.529760px;}
._3f_c00425{width:53.694000px;}
._40_c00425{width:59.750400px;}
._10_c00425{width:61.689600px;}
._17_c00425{width:63.129600px;}
._4_c00425{width:64.200000px;}
._18_c00425{width:65.203200px;}
._d_c00425{width:66.470400px;}
._11_c00425{width:67.910400px;}
._0_c00425{width:69.619200px;}
._a_c00425{width:70.987200px;}
._2f_c00425{width:77.867400px;}
._2e_c00425{width:80.721600px;}
._22_c00425{width:87.840000px;}
._14_c00425{width:91.872000px;}
._23_c00425{width:141.484800px;}
._38_c00425{width:146.716800px;}
._2d_c00425{width:155.229120px;}
._e_c00425{width:167.913600px;}
._c_c00425{width:170.457600px;}
._2b_c00425{width:172.800000px;}
._26_c00425{width:174.124800px;}
._19_c00425{width:175.209600px;}
._f_c00425{width:176.947200px;}
._29_c00425{width:178.990800px;}
._3d_c00425{width:180.494400px;}
._3e_c00425{width:192.604800px;}
._16_c00425{width:193.692480px;}
._9_c00425{width:210.088320px;}
._31_c00425{width:246.528000px;}
._2a_c00425{width:276.652800px;}
._2c_c00425{width:277.690320px;}
._35_c00425{width:279.393600px;}
._12_c00425{width:283.680000px;}
._1c_c00425{width:284.832000px;}
._13_c00425{width:383.328000px;}
._21_c00425{width:384.950400px;}
._b_c00425{width:387.532800px;}
._3c_c00425{width:390.060000px;}
._1f_c00425{width:407.692800px;}
._34_c00425{width:411.950400px;}
._27_c00425{width:447.092640px;}
._37_c00425{width:516.960000px;}
._24_c00425{width:622.234080px;}
._28_c00425{width:715.507200px;}
._30_c00425{width:717.235200px;}
._8_c00425{width:1206.420000px;}
._33_c00425{width:1361.984640px;}
._5_c00425{width:1461.148320px;}
._25_c00425{width:1490.923200px;}
._20_c00425{width:1862.687280px;}
._1e_c00425{width:3001.526400px;}
.fc0_c00425{color:transparent;}
.fs15_c00425{font-size:24.600000px;}
.fsa_c00425{font-size:40.200000px;}
.fs13_c00425{font-size:45.600000px;}
.fs8_c00425{font-size:56.400000px;}
.fs2_c00425{font-size:57.600000px;}
.fs12_c00425{font-size:58.200000px;}
.fs14_c00425{font-size:60.000000px;}
.fs7_c00425{font-size:61.800000px;}
.fs5_c00425{font-size:62.400000px;}
.fsc_c00425{font-size:72.000000px;}
.fs0_c00425{font-size:74.400000px;}
.fs11_c00425{font-size:77.760000px;}
.fs10_c00425{font-size:93.600000px;}
.fs4_c00425{font-size:96.480000px;}
.fse_c00425{font-size:117.000000px;}
.fs1_c00425{font-size:118.080000px;}
.fsf_c00425{font-size:129.600000px;}
.fs9_c00425{font-size:139.680000px;}
.fsb_c00425{font-size:146.400000px;}
.fs3_c00425{font-size:147.600000px;}
.fs6_c00425{font-size:163.200600px;}
.fsd_c00425{font-size:174.240000px;}
.y0_c00425{bottom:0.000000px;}
.y35_c00425{bottom:38.520015px;}
.y34_c00425{bottom:61.935015px;}
.y33_c00425{bottom:151.560015px;}
.y32_c00425{bottom:151.920015px;}
.y31_c00425{bottom:152.280015px;}
.y30_c00425{bottom:170.280015px;}
.y2f_c00425{bottom:188.280015px;}
.y2e_c00425{bottom:206.655015px;}
.y2c_c00425{bottom:216.735015px;}
.y2d_c00425{bottom:224.655015px;}
.y2b_c00425{bottom:243.000015px;}
.y2a_c00425{bottom:260.295015px;}
.y21_c00425{bottom:267.135015px;}
.y24_c00425{bottom:277.920015px;}
.y27_c00425{bottom:278.295015px;}
.y26_c00425{bottom:279.375015px;}
.y23_c00425{bottom:282.960015px;}
.y28_c00425{bottom:287.295015px;}
.y22_c00425{bottom:294.495015px;}
.y20_c00425{bottom:295.920015px;}
.y29_c00425{bottom:296.295015px;}
.y25_c00425{bottom:296.654415px;}
.y1e_c00425{bottom:311.775015px;}
.y1f_c00425{bottom:314.295015px;}
.y1d_c00425{bottom:332.295015px;}
.y1c_c00425{bottom:350.295015px;}
.y1b_c00425{bottom:368.295015px;}
.y1a_c00425{bottom:386.655015px;}
.y18_c00425{bottom:404.655015px;}
.y17_c00425{bottom:405.000015px;}
.y16_c00425{bottom:423.000015px;}
.y19_c00425{bottom:423.375015px;}
.y15_c00425{bottom:441.375015px;}
.y14_c00425{bottom:459.375015px;}
.y13_c00425{bottom:477.375015px;}
.y12_c00425{bottom:495.000015px;}
.y11_c00425{bottom:495.375015px;}
.y10_c00425{bottom:495.735015px;}
.yf_c00425{bottom:513.735015px;}
.yd_c00425{bottom:531.735015px;}
.ye_c00425{bottom:532.095015px;}
.yc_c00425{bottom:536.055015px;}
.yb_c00425{bottom:549.735015px;}
.ya_c00425{bottom:568.095015px;}
.y9_c00425{bottom:585.735015px;}
.y8_c00425{bottom:604.815015px;}
.y7_c00425{bottom:623.175015px;}
.y5_c00425{bottom:641.175015px;}
.y6_c00425{bottom:641.895015px;}
.y4_c00425{bottom:659.175015px;}
.y3_c00425{bottom:685.095015px;}
.y2_c00425{bottom:708.135015px;}
.y1_c00425{bottom:754.215015px;}
.h1b_c00425{height:25.657031px;}
.hd_c00425{height:39.454102px;}
.h10_c00425{height:47.952000px;}
.h18_c00425{height:51.788160px;}
.h7_c00425{height:56.531250px;}
.h11_c00425{height:57.971250px;}
.h1a_c00425{height:58.823438px;}
.h12_c00425{height:59.468850px;}
.hf_c00425{height:60.623145px;}
.h19_c00425{height:60.700781px;}
.h6_c00425{height:61.211719px;}
.ha_c00425{height:62.033320px;}
.h8_c00425{height:62.288850px;}
.h17_c00425{height:62.337600px;}
.hb_c00425{height:63.533320px;}
.h5_c00425{height:64.255680px;}
.h2_c00425{height:73.019531px;}
.h3_c00425{height:78.641280px;}
.h16_c00425{height:86.313600px;}
.hc_c00425{height:93.026880px;}
.h13_c00425{height:116.043840px;}
.h14_c00425{height:122.027344px;}
.h15_c00425{height:130.028850px;}
.he_c00425{height:143.683594px;}
.h4_c00425{height:144.861328px;}
.h9_c00425{height:170.213126px;}
.h1_c00425{height:892.500000px;}
.h0_c00425{height:892.800015px;}
.w1_c00425{width:1263.000000px;}
.w0_c00425{width:1263.240015px;}
.x0_c00425{left:0.000000px;}
.x4_c00425{left:62.295015px;}
.x1_c00425{left:65.715015px;}
.x9_c00425{left:67.050015px;}
.xc_c00425{left:68.160015px;}
.x11_c00425{left:69.240015px;}
.x2c_c00425{left:70.320015px;}
.x32_c00425{left:71.340015px;}
.x2_c00425{left:111.360015px;}
.xa_c00425{left:129.465015px;}
.x3_c00425{left:136.965015px;}
.x30_c00425{left:143.910015px;}
.x1c_c00425{left:171.000015px;}
.x1e_c00425{left:185.985015px;}
.x2e_c00425{left:207.000015px;}
.x5_c00425{left:256.575015px;}
.x33_c00425{left:259.005015px;}
.x1b_c00425{left:278.295015px;}
.x12_c00425{left:306.735015px;}
.x1d_c00425{left:313.755015px;}
.x13_c00425{left:333.015015px;}
.x14_c00425{left:367.785015px;}
.x15_c00425{left:387.375015px;}
.x16_c00425{left:394.785015px;}
.x17_c00425{left:414.735015px;}
.x18_c00425{left:448.140015px;}
.x19_c00425{left:469.095015px;}
.x6_c00425{left:499.260015px;}
.x1a_c00425{left:502.500015px;}
.x2d_c00425{left:504.225015px;}
.x1f_c00425{left:523.815015px;}
.x31_c00425{left:530.445015px;}
.x34_c00425{left:531.585015px;}
.xb_c00425{left:555.030015px;}
.x2f_c00425{left:557.865015px;}
.x35_c00425{left:612.585015px;}
.x3b_c00425{left:624.795015px;}
.x20_c00425{left:658.455015px;}
.x36_c00425{left:665.550015px;}
.x7_c00425{left:717.705015px;}
.x8_c00425{left:745.575015px;}
.x21_c00425{left:793.065015px;}
.x37_c00425{left:801.255015px;}
.x22_c00425{left:806.745015px;}
.x38_c00425{left:827.445015px;}
.x23_c00425{left:874.305015px;}
.x24_c00425{left:908.865015px;}
.x25_c00425{left:927.840015px;}
.x26_c00425{left:955.455015px;}
.x39_c00425{left:963.240015px;}
.x27_c00425{left:987.705015px;}
.x3a_c00425{left:995.205015px;}
.x28_c00425{left:1014.225015px;}
.x29_c00425{left:1041.705015px;}
.x2a_c00425{left:1069.560015px;}
.x2b_c00425{left:1075.800015px;}
.xd_c00425{left:1095.465015px;}
.xe_c00425{left:1123.065015px;}
.xf_c00425{left:1150.425015px;}
.x10_c00425{left:1176.765015px;}
@media print{
.v8_c00425{vertical-align:-65.331200pt;}
.v6_c00425{vertical-align:-3.786667pt;}
.v5_c00425{vertical-align:-2.560000pt;}
.v4_c00425{vertical-align:-1.228800pt;}
.v0_c00425{vertical-align:0.000000pt;}
.v3_c00425{vertical-align:1.331200pt;}
.v1_c00425{vertical-align:2.560000pt;}
.v2_c00425{vertical-align:3.840000pt;}
.v7_c00425{vertical-align:65.331200pt;}
.ls19_c00425{letter-spacing:-5.077352pt;}
.lsf_c00425{letter-spacing:-4.592000pt;}
.ls27_c00425{letter-spacing:-4.554667pt;}
.ls2c_c00425{letter-spacing:-3.640000pt;}
.lsc_c00425{letter-spacing:-2.314667pt;}
.ls10_c00425{letter-spacing:-1.941333pt;}
.ls2f_c00425{letter-spacing:-1.913600pt;}
.ls1f_c00425{letter-spacing:-1.852587pt;}
.ls1b_c00425{letter-spacing:-1.835947pt;}
.ls32_c00425{letter-spacing:-1.810667pt;}
.ls2e_c00425{letter-spacing:-1.808213pt;}
.ls1d_c00425{letter-spacing:-1.802667pt;}
.ls1a_c00425{letter-spacing:-1.792000pt;}
.ls14_c00425{letter-spacing:-1.791573pt;}
.lsb_c00425{letter-spacing:-1.785600pt;}
.lsd_c00425{letter-spacing:-1.699627pt;}
.ls2d_c00425{letter-spacing:-1.652907pt;}
.ls18_c00425{letter-spacing:-1.569707pt;}
.ls1e_c00425{letter-spacing:-1.541973pt;}
.ls20_c00425{letter-spacing:-1.514240pt;}
.ls15_c00425{letter-spacing:-1.503147pt;}
.ls31_c00425{letter-spacing:-1.469867pt;}
.ls13_c00425{letter-spacing:-1.464320pt;}
.ls2b_c00425{letter-spacing:-1.425493pt;}
.ls12_c00425{letter-spacing:-1.419947pt;}
.ls21_c00425{letter-spacing:-1.408853pt;}
.ls28_c00425{letter-spacing:-1.358933pt;}
.ls23_c00425{letter-spacing:-1.336747pt;}
.ls22_c00425{letter-spacing:-1.320107pt;}
.ls25_c00425{letter-spacing:-1.242453pt;}
.ls30_c00425{letter-spacing:-1.076693pt;}
.ls26_c00425{letter-spacing:-0.976213pt;}
.ls24_c00425{letter-spacing:-0.965120pt;}
.ls29_c00425{letter-spacing:-0.754347pt;}
.ls17_c00425{letter-spacing:-0.676693pt;}
.ls33_c00425{letter-spacing:-0.603947pt;}
.ls37_c00425{letter-spacing:-0.579467pt;}
.ls16_c00425{letter-spacing:-0.515840pt;}
.ls1c_c00425{letter-spacing:-0.312320pt;}
.ls2a_c00425{letter-spacing:-0.291147pt;}
.ls34_c00425{letter-spacing:-0.184320pt;}
.ls35_c00425{letter-spacing:-0.092160pt;}
.lse_c00425{letter-spacing:0.000000pt;}
.ls5_c00425{letter-spacing:0.013120pt;}
.ls38_c00425{letter-spacing:0.181493pt;}
.ls7_c00425{letter-spacing:0.271147pt;}
.lsa_c00425{letter-spacing:0.273333pt;}
.ls8_c00425{letter-spacing:0.352053pt;}
.ls9_c00425{letter-spacing:0.373920pt;}
.ls6_c00425{letter-spacing:0.428587pt;}
.ls4_c00425{letter-spacing:0.592587pt;}
.ls1_c00425{letter-spacing:0.895413pt;}
.ls36_c00425{letter-spacing:0.947200pt;}
.ls2_c00425{letter-spacing:1.614080pt;}
.ls3_c00425{letter-spacing:1.889280pt;}
.ls0_c00425{letter-spacing:2.560000pt;}
.ls11_c00425{letter-spacing:2.773333pt;}
.ws0_c00425{word-spacing:-12.800000pt;}
.ws1_c00425{word-spacing:0.000000pt;}
._39_c00425{margin-left:-10.240000pt;}
._1_c00425{margin-left:-4.592000pt;}
._2_c00425{margin-left:-3.411200pt;}
._7_c00425{width:1.447680pt;}
._3_c00425{width:2.669867pt;}
._1d_c00425{width:4.786773pt;}
._15_c00425{width:5.896107pt;}
._36_c00425{width:28.465493pt;}
._32_c00425{width:29.440000pt;}
._3a_c00425{width:30.933333pt;}
._1a_c00425{width:32.936960pt;}
._6_c00425{width:34.400000pt;}
._1b_c00425{width:35.360427pt;}
._3b_c00425{width:44.026453pt;}
._3f_c00425{width:47.728000pt;}
._40_c00425{width:53.111467pt;}
._10_c00425{width:54.835200pt;}
._17_c00425{width:56.115200pt;}
._4_c00425{width:57.066667pt;}
._18_c00425{width:57.958400pt;}
._d_c00425{width:59.084800pt;}
._11_c00425{width:60.364800pt;}
._0_c00425{width:61.883733pt;}
._a_c00425{width:63.099733pt;}
._2f_c00425{width:69.215467pt;}
._2e_c00425{width:71.752533pt;}
._22_c00425{width:78.080000pt;}
._14_c00425{width:81.664000pt;}
._23_c00425{width:125.764267pt;}
._38_c00425{width:130.414933pt;}
._2d_c00425{width:137.981440pt;}
._e_c00425{width:149.256533pt;}
._c_c00425{width:151.517867pt;}
._2b_c00425{width:153.600000pt;}
._26_c00425{width:154.777600pt;}
._19_c00425{width:155.741867pt;}
._f_c00425{width:157.286400pt;}
._29_c00425{width:159.102933pt;}
._3d_c00425{width:160.439467pt;}
._3e_c00425{width:171.204267pt;}
._16_c00425{width:172.171093pt;}
._9_c00425{width:186.745173pt;}
._31_c00425{width:219.136000pt;}
._2a_c00425{width:245.913600pt;}
._2c_c00425{width:246.835840pt;}
._35_c00425{width:248.349867pt;}
._12_c00425{width:252.160000pt;}
._1c_c00425{width:253.184000pt;}
._13_c00425{width:340.736000pt;}
._21_c00425{width:342.178133pt;}
._b_c00425{width:344.473600pt;}
._3c_c00425{width:346.720000pt;}
._1f_c00425{width:362.393600pt;}
._34_c00425{width:366.178133pt;}
._27_c00425{width:397.415680pt;}
._37_c00425{width:459.520000pt;}
._24_c00425{width:553.096960pt;}
._28_c00425{width:636.006400pt;}
._30_c00425{width:637.542400pt;}
._8_c00425{width:1072.373333pt;}
._33_c00425{width:1210.653013pt;}
._5_c00425{width:1298.798507pt;}
._25_c00425{width:1325.265067pt;}
._20_c00425{width:1655.722027pt;}
._1e_c00425{width:2668.023467pt;}
.fs15_c00425{font-size:21.866667pt;}
.fsa_c00425{font-size:35.733333pt;}
.fs13_c00425{font-size:40.533333pt;}
.fs8_c00425{font-size:50.133333pt;}
.fs2_c00425{font-size:51.200000pt;}
.fs12_c00425{font-size:51.733333pt;}
.fs14_c00425{font-size:53.333333pt;}
.fs7_c00425{font-size:54.933333pt;}
.fs5_c00425{font-size:55.466667pt;}
.fsc_c00425{font-size:64.000000pt;}
.fs0_c00425{font-size:66.133333pt;}
.fs11_c00425{font-size:69.120000pt;}
.fs10_c00425{font-size:83.200000pt;}
.fs4_c00425{font-size:85.760000pt;}
.fse_c00425{font-size:104.000000pt;}
.fs1_c00425{font-size:104.960000pt;}
.fsf_c00425{font-size:115.200000pt;}
.fs9_c00425{font-size:124.160000pt;}
.fsb_c00425{font-size:130.133333pt;}
.fs3_c00425{font-size:131.200000pt;}
.fs6_c00425{font-size:145.067200pt;}
.fsd_c00425{font-size:154.880000pt;}
.y0_c00425{bottom:0.000000pt;}
.y35_c00425{bottom:34.240013pt;}
.y34_c00425{bottom:55.053347pt;}
.y33_c00425{bottom:134.720013pt;}
.y32_c00425{bottom:135.040013pt;}
.y31_c00425{bottom:135.360013pt;}
.y30_c00425{bottom:151.360013pt;}
.y2f_c00425{bottom:167.360013pt;}
.y2e_c00425{bottom:183.693347pt;}
.y2c_c00425{bottom:192.653347pt;}
.y2d_c00425{bottom:199.693347pt;}
.y2b_c00425{bottom:216.000013pt;}
.y2a_c00425{bottom:231.373347pt;}
.y21_c00425{bottom:237.453347pt;}
.y24_c00425{bottom:247.040013pt;}
.y27_c00425{bottom:247.373347pt;}
.y26_c00425{bottom:248.333347pt;}
.y23_c00425{bottom:251.520013pt;}
.y28_c00425{bottom:255.373347pt;}
.y22_c00425{bottom:261.773347pt;}
.y20_c00425{bottom:263.040013pt;}
.y29_c00425{bottom:263.373347pt;}
.y25_c00425{bottom:263.692813pt;}
.y1e_c00425{bottom:277.133347pt;}
.y1f_c00425{bottom:279.373347pt;}
.y1d_c00425{bottom:295.373347pt;}
.y1c_c00425{bottom:311.373347pt;}
.y1b_c00425{bottom:327.373347pt;}
.y1a_c00425{bottom:343.693347pt;}
.y18_c00425{bottom:359.693347pt;}
.y17_c00425{bottom:360.000013pt;}
.y16_c00425{bottom:376.000013pt;}
.y19_c00425{bottom:376.333347pt;}
.y15_c00425{bottom:392.333347pt;}
.y14_c00425{bottom:408.333347pt;}
.y13_c00425{bottom:424.333347pt;}
.y12_c00425{bottom:440.000013pt;}
.y11_c00425{bottom:440.333347pt;}
.y10_c00425{bottom:440.653347pt;}
.yf_c00425{bottom:456.653347pt;}
.yd_c00425{bottom:472.653347pt;}
.ye_c00425{bottom:472.973347pt;}
.yc_c00425{bottom:476.493347pt;}
.yb_c00425{bottom:488.653347pt;}
.ya_c00425{bottom:504.973347pt;}
.y9_c00425{bottom:520.653347pt;}
.y8_c00425{bottom:537.613347pt;}
.y7_c00425{bottom:553.933347pt;}
.y5_c00425{bottom:569.933347pt;}
.y6_c00425{bottom:570.573347pt;}
.y4_c00425{bottom:585.933347pt;}
.y3_c00425{bottom:608.973347pt;}
.y2_c00425{bottom:629.453347pt;}
.y1_c00425{bottom:670.413347pt;}
.h1b_c00425{height:22.806250pt;}
.hd_c00425{height:35.070312pt;}
.h10_c00425{height:42.624000pt;}
.h18_c00425{height:46.033920pt;}
.h7_c00425{height:50.250000pt;}
.h11_c00425{height:51.530000pt;}
.h1a_c00425{height:52.287500pt;}
.h12_c00425{height:52.861200pt;}
.hf_c00425{height:53.887240pt;}
.h19_c00425{height:53.956250pt;}
.h6_c00425{height:54.410417pt;}
.ha_c00425{height:55.140729pt;}
.h8_c00425{height:55.367867pt;}
.h17_c00425{height:55.411200pt;}
.hb_c00425{height:56.474062pt;}
.h5_c00425{height:57.116160pt;}
.h2_c00425{height:64.906250pt;}
.h3_c00425{height:69.903360pt;}
.h16_c00425{height:76.723200pt;}
.hc_c00425{height:82.690560pt;}
.h13_c00425{height:103.150080pt;}
.h14_c00425{height:108.468750pt;}
.h15_c00425{height:115.581200pt;}
.he_c00425{height:127.718750pt;}
.h4_c00425{height:128.765625pt;}
.h9_c00425{height:151.300556pt;}
.h1_c00425{height:793.333333pt;}
.h0_c00425{height:793.600013pt;}
.w1_c00425{width:1122.666667pt;}
.w0_c00425{width:1122.880013pt;}
.x0_c00425{left:0.000000pt;}
.x4_c00425{left:55.373347pt;}
.x1_c00425{left:58.413347pt;}
.x9_c00425{left:59.600013pt;}
.xc_c00425{left:60.586680pt;}
.x11_c00425{left:61.546680pt;}
.x2c_c00425{left:62.506680pt;}
.x32_c00425{left:63.413347pt;}
.x2_c00425{left:98.986680pt;}
.xa_c00425{left:115.080013pt;}
.x3_c00425{left:121.746680pt;}
.x30_c00425{left:127.920013pt;}
.x1c_c00425{left:152.000013pt;}
.x1e_c00425{left:165.320013pt;}
.x2e_c00425{left:184.000013pt;}
.x5_c00425{left:228.066680pt;}
.x33_c00425{left:230.226680pt;}
.x1b_c00425{left:247.373347pt;}
.x12_c00425{left:272.653347pt;}
.x1d_c00425{left:278.893347pt;}
.x13_c00425{left:296.013347pt;}
.x14_c00425{left:326.920013pt;}
.x15_c00425{left:344.333347pt;}
.x16_c00425{left:350.920013pt;}
.x17_c00425{left:368.653347pt;}
.x18_c00425{left:398.346680pt;}
.x19_c00425{left:416.973347pt;}
.x6_c00425{left:443.786680pt;}
.x1a_c00425{left:446.666680pt;}
.x2d_c00425{left:448.200013pt;}
.x1f_c00425{left:465.613347pt;}
.x31_c00425{left:471.506680pt;}
.x34_c00425{left:472.520013pt;}
.xb_c00425{left:493.360013pt;}
.x2f_c00425{left:495.880013pt;}
.x35_c00425{left:544.520013pt;}
.x3b_c00425{left:555.373347pt;}
.x20_c00425{left:585.293347pt;}
.x36_c00425{left:591.600013pt;}
.x7_c00425{left:637.960013pt;}
.x8_c00425{left:662.733347pt;}
.x21_c00425{left:704.946680pt;}
.x37_c00425{left:712.226680pt;}
.x22_c00425{left:717.106680pt;}
.x38_c00425{left:735.506680pt;}
.x23_c00425{left:777.160013pt;}
.x24_c00425{left:807.880013pt;}
.x25_c00425{left:824.746680pt;}
.x26_c00425{left:849.293347pt;}
.x39_c00425{left:856.213347pt;}
.x27_c00425{left:877.960013pt;}
.x3a_c00425{left:884.626680pt;}
.x28_c00425{left:901.533347pt;}
.x29_c00425{left:925.960013pt;}
.x2a_c00425{left:950.720013pt;}
.x2b_c00425{left:956.266680pt;}
.xd_c00425{left:973.746680pt;}
.xe_c00425{left:998.280013pt;}
.xf_c00425{left:1022.600013pt;}
.x10_c00425{left:1046.013347pt;}
}





/* 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_c00426 {
    display:none;
  }
  .loading-indicator_c00426.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00426 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_c00426 { 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_c00426" -> "#page-container .classname_c00426")
 */
.pf_c00426 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00426 { /* 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_c00426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00426 { /* 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_c00426 { /* 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_c00426 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00426 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00426 {overflow:visible;}
  }
}
.c_c00426 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00426 { /* 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_c00426:after { /* webkit #35443 */
  content: '';
}
.t_c00426:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00426 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 */
}
.__c00426 { /* 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_c00426 { /* info for Javascript */
  display:none;
}
.l_c00426 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00426 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00426 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00426: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_c00426 {
    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_c00426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00426.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_c00426 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00426{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00426;src:url('chunks/assets/font_5ec337c6e520031bfc7116fd.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;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:ff2_c00426;src:url('chunks/assets/font_f435f9a32c0f8b24133a7b54.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.284668;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_c00426;src:url('chunks/assets/font_a15a9cf02dc79ef612437385.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;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:ff4_c00426;src:url('chunks/assets/font_2008936452a739b4320e4bab.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;line-height:0.666000;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_c00426;src:url('chunks/assets/font_50765a2768be21c8ff98934b.woff2')format("woff");}.ff5_c00426{font-family:ff5_c00426;line-height:1.284180;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_c00426;src:url('chunks/assets/font_dd97239c4b276b0dd993f2cd.woff2')format("woff");}.ff6_c00426{font-family:ff6_c00426;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:ff7_c00426;src:url('chunks/assets/font_2976224c5c0443cfecf6f140.woff2')format("woff");}.ff7_c00426{font-family:ff7_c00426;line-height:1.311035;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;}
.m31_c00426{transform:matrix(0.055555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055555,0.000000,0.000000,0.250000,0,0);}
.m1b_c00426{transform:matrix(0.064752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064752,0.000000,0.000000,0.250000,0,0);}
.m1f_c00426{transform:matrix(0.066665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066665,0.000000,0.000000,0.250000,0,0);}
.m32_c00426{transform:matrix(0.084987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084987,0.000000,0.000000,0.250000,0,0);}
.m28_c00426{transform:matrix(0.086194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086194,0.000000,0.000000,0.250000,0,0);}
.m21_c00426{transform:matrix(0.107146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107146,0.000000,0.000000,0.250000,0,0);}
.m26_c00426{transform:matrix(0.107678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107678,0.000000,0.000000,0.250000,0,0);}
.m23_c00426{transform:matrix(0.120732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120732,0.000000,0.000000,0.250000,0,0);}
.m29_c00426{transform:matrix(0.121161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121161,0.000000,0.000000,0.250000,0,0);}
.m8_c00426{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m30_c00426{transform:matrix(0.126342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126342,0.000000,0.000000,0.250000,0,0);}
.m36_c00426{transform:matrix(0.139158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139158,0.000000,0.000000,0.250000,0,0);}
.m2b_c00426{transform:matrix(0.143868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143868,0.000000,0.000000,0.250000,0,0);}
.m27_c00426{transform:matrix(0.148678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148678,0.000000,0.000000,0.250000,0,0);}
.m3c_c00426{transform:matrix(0.148998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148998,0.000000,0.000000,0.250000,0,0);}
.m2d_c00426{transform:matrix(0.150219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150219,0.000000,0.000000,0.250000,0,0);}
.m33_c00426{transform:matrix(0.153679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153679,0.000000,0.000000,0.250000,0,0);}
.m34_c00426{transform:matrix(0.161109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161109,0.000000,0.000000,0.250000,0,0);}
.m15_c00426{transform:matrix(0.164820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164820,0.000000,0.000000,0.250000,0,0);}
.m2a_c00426{transform:matrix(0.168071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168071,0.000000,0.000000,0.250000,0,0);}
.m11_c00426{transform:matrix(0.181190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181190,0.000000,0.000000,0.250000,0,0);}
.m12_c00426{transform:matrix(0.183649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183649,0.000000,0.000000,0.250000,0,0);}
.ma_c00426{transform:matrix(0.189121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189121,0.000000,0.000000,0.250000,0,0);}
.m1c_c00426{transform:matrix(0.195651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195651,0.000000,0.000000,0.250000,0,0);}
.m14_c00426{transform:matrix(0.201714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201714,0.000000,0.000000,0.250000,0,0);}
.m5_c00426{transform:matrix(0.201959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201959,0.000000,0.000000,0.250000,0,0);}
.m20_c00426{transform:matrix(0.204622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204622,0.000000,0.000000,0.250000,0,0);}
.m25_c00426{transform:matrix(0.215919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215919,0.000000,0.000000,0.250000,0,0);}
.m42_c00426{transform:matrix(0.223839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223839,0.000000,0.000000,0.250000,0,0);}
.m2c_c00426{transform:matrix(0.230826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230826,0.000000,0.000000,0.250000,0,0);}
.m13_c00426{transform:matrix(0.233507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233507,0.000000,0.000000,0.250000,0,0);}
.m41_c00426{transform:matrix(0.239595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239595,0.000000,0.000000,0.250000,0,0);}
.m24_c00426{transform:matrix(0.244141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244141,0.000000,0.000000,0.250000,0,0);}
.mb_c00426{transform:matrix(0.244690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244690,0.000000,0.000000,0.250000,0,0);}
.m19_c00426{transform:matrix(0.245492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245492,0.000000,0.000000,0.250000,0,0);}
.m10_c00426{transform:matrix(0.247442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247442,0.000000,0.000000,0.250000,0,0);}
.m40_c00426{transform:matrix(0.248504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248504,0.000000,0.000000,0.250000,0,0);}
.m1a_c00426{transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);}
.m3d_c00426{transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);}
.m0_c00426{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);}
.m3e_c00426{transform:matrix(0.264689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264689,0.000000,0.000000,0.250000,0,0);}
.m17_c00426{transform:matrix(0.265448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265448,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{transform:matrix(0.265958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265958,0.000000,0.000000,0.250000,0,0);}
.m2_c00426{transform:matrix(0.269253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269253,0.000000,0.000000,0.250000,0,0);}
.mc_c00426{transform:matrix(0.270542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270542,0.000000,0.000000,0.250000,0,0);}
.m7_c00426{transform:matrix(0.273696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273696,0.000000,0.000000,0.250000,0,0);}
.m3b_c00426{transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);}
.m4_c00426{transform:matrix(0.275124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275124,0.000000,0.000000,0.250000,0,0);}
.m3f_c00426{transform:matrix(0.275429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275429,0.000000,0.000000,0.250000,0,0);}
.m3_c00426{transform:matrix(0.280018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280018,0.000000,0.000000,0.250000,0,0);}
.md_c00426{transform:matrix(0.283354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283354,0.000000,0.000000,0.250000,0,0);}
.m9_c00426{transform:matrix(0.286215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286215,0.000000,0.000000,0.250000,0,0);}
.m22_c00426{transform:matrix(0.293555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293555,0.000000,0.000000,0.250000,0,0);}
.m16_c00426{transform:matrix(0.303174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303174,0.000000,0.000000,0.250000,0,0);}
.mf_c00426{transform:matrix(0.303547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303547,0.000000,0.000000,0.250000,0,0);}
.m2f_c00426{transform:matrix(0.315650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315650,0.000000,0.000000,0.250000,0,0);}
.m6_c00426{transform:matrix(0.326757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326757,0.000000,0.000000,0.250000,0,0);}
.m2e_c00426{transform:matrix(0.365375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365375,0.000000,0.000000,0.250000,0,0);}
.m3a_c00426{transform:matrix(0.474750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474750,0.000000,0.000000,0.250000,0,0);}
.m39_c00426{transform:matrix(0.500434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500434,0.000000,0.000000,0.250000,0,0);}
.m37_c00426{transform:matrix(0.544882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544882,0.000000,0.000000,0.250000,0,0);}
.m18_c00426{transform:matrix(0.564573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564573,0.000000,0.000000,0.250000,0,0);}
.m1e_c00426{transform:matrix(0.646984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646984,0.000000,0.000000,0.250000,0,0);}
.m1d_c00426{transform:matrix(0.659391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659391,0.000000,0.000000,0.250000,0,0);}
.m38_c00426{transform:matrix(0.693526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693526,0.000000,0.000000,0.250000,0,0);}
.m35_c00426{transform:matrix(0.878108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.878108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.878108,0.000000,0.000000,0.250000,0,0);}
.me_c00426{transform:matrix(1.022123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.022123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.022123,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls29_c00426{letter-spacing:-15.120000px;}
.ls30_c00426{letter-spacing:-4.746000px;}
.ls2a_c00426{letter-spacing:-3.717021px;}
.lsd_c00426{letter-spacing:-3.696000px;}
.ls1e_c00426{letter-spacing:-3.150000px;}
.ls20_c00426{letter-spacing:-2.604000px;}
.ls14_c00426{letter-spacing:-2.541000px;}
.ls2c_c00426{letter-spacing:-2.457000px;}
.ls37_c00426{letter-spacing:-2.436000px;}
.ls35_c00426{letter-spacing:-2.352000px;}
.ls27_c00426{letter-spacing:-2.247000px;}
.ls12_c00426{letter-spacing:-2.037000px;}
.ls1c_c00426{letter-spacing:-1.953000px;}
.ls19_c00426{letter-spacing:-1.932000px;}
.ls1d_c00426{letter-spacing:-1.848000px;}
.ls22_c00426{letter-spacing:-1.806000px;}
.ls1a_c00426{letter-spacing:-1.764000px;}
.ls26_c00426{letter-spacing:-1.638021px;}
.ls18_c00426{letter-spacing:-1.449021px;}
.ls36_c00426{letter-spacing:-1.417920px;}
.ls23_c00426{letter-spacing:-1.344021px;}
.ls28_c00426{letter-spacing:-0.966000px;}
.ls33_c00426{letter-spacing:-0.779520px;}
.ls25_c00426{letter-spacing:-0.622090px;}
.ls1f_c00426{letter-spacing:-0.576000px;}
.ls31_c00426{letter-spacing:-0.557760px;}
.ls2d_c00426{letter-spacing:-0.399000px;}
.ls32_c00426{letter-spacing:-0.006720px;}
.ls10_c00426{letter-spacing:0.000000px;}
.ls9_c00426{letter-spacing:0.100800px;}
.ls3_c00426{letter-spacing:0.231240px;}
.lsa_c00426{letter-spacing:0.355680px;}
.ls6_c00426{letter-spacing:0.362880px;}
.ls0_c00426{letter-spacing:0.384006px;}
.ls21_c00426{letter-spacing:0.480000px;}
.ls1_c00426{letter-spacing:0.526088px;}
.ls2_c00426{letter-spacing:0.568329px;}
.ls2e_c00426{letter-spacing:0.570000px;}
.ls24_c00426{letter-spacing:0.706571px;}
.ls7_c00426{letter-spacing:0.712320px;}
.ls5_c00426{letter-spacing:0.866880px;}
.ls1b_c00426{letter-spacing:1.170030px;}
.lsf_c00426{letter-spacing:1.380000px;}
.ls2b_c00426{letter-spacing:1.590030px;}
.ls34_c00426{letter-spacing:1.794240px;}
.ls4_c00426{letter-spacing:1.935360px;}
.ls16_c00426{letter-spacing:1.950030px;}
.ls13_c00426{letter-spacing:2.101020px;}
.ls17_c00426{letter-spacing:2.730000px;}
.ls11_c00426{letter-spacing:2.790000px;}
.ls2f_c00426{letter-spacing:2.820000px;}
.lsc_c00426{letter-spacing:2.822700px;}
.lsb_c00426{letter-spacing:2.850000px;}
.ls8_c00426{letter-spacing:3.232320px;}
.ls15_c00426{letter-spacing:3.540000px;}
.lse_c00426{letter-spacing:4.260000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{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__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00426{word-spacing:0.000000px;}
._3_c00426{margin-left:-11.374516px;}
._0_c00426{margin-left:-7.745780px;}
._4_c00426{margin-left:-6.412900px;}
._2_c00426{margin-left:-4.980300px;}
._a_c00426{width:3.984960px;}
._1_c00426{width:5.760000px;}
._9_c00426{width:7.068480px;}
._b_c00426{width:8.789760px;}
._c_c00426{width:10.448640px;}
._5_c00426{width:185.528400px;}
._7_c00426{width:222.244200px;}
._8_c00426{width:491.157266px;}
._6_c00426{width:761.248800px;}
.fc0_c00426{color:transparent;}
.fs19_c00426{font-size:9.600000px;}
.fs29_c00426{font-size:11.400000px;}
.fs1e_c00426{font-size:15.840000px;}
.fs6_c00426{font-size:17.280000px;}
.fs14_c00426{font-size:22.800600px;}
.fs15_c00426{font-size:23.400600px;}
.fs5_c00426{font-size:27.600000px;}
.fs12_c00426{font-size:29.400600px;}
.fs1a_c00426{font-size:30.240600px;}
.fs26_c00426{font-size:31.800600px;}
.fs2c_c00426{font-size:35.400600px;}
.fs10_c00426{font-size:38.400600px;}
.fs28_c00426{font-size:38.880600px;}
.fsa_c00426{font-size:39.000600px;}
.fsc_c00426{font-size:41.400600px;}
.fsf_c00426{font-size:43.800600px;}
.fsd_c00426{font-size:46.200000px;}
.fs1f_c00426{font-size:46.800600px;}
.fs13_c00426{font-size:50.400000px;}
.fs1b_c00426{font-size:51.600000px;}
.fs16_c00426{font-size:52.800000px;}
.fsb_c00426{font-size:54.600000px;}
.fse_c00426{font-size:55.200000px;}
.fs7_c00426{font-size:55.800000px;}
.fs2a_c00426{font-size:56.400000px;}
.fs1_c00426{font-size:57.000000px;}
.fs24_c00426{font-size:57.600000px;}
.fs2_c00426{font-size:58.200000px;}
.fs1c_c00426{font-size:59.040000px;}
.fs20_c00426{font-size:64.200000px;}
.fs2d_c00426{font-size:67.200000px;}
.fs0_c00426{font-size:68.400000px;}
.fs23_c00426{font-size:69.120000px;}
.fs2e_c00426{font-size:69.600000px;}
.fs27_c00426{font-size:70.200000px;}
.fs9_c00426{font-size:70.800000px;}
.fs8_c00426{font-size:72.600000px;}
.fs18_c00426{font-size:74.400000px;}
.fs21_c00426{font-size:76.320000px;}
.fs11_c00426{font-size:78.600000px;}
.fs4_c00426{font-size:85.200000px;}
.fs17_c00426{font-size:90.000000px;}
.fs3_c00426{font-size:105.600000px;}
.fs25_c00426{font-size:106.200600px;}
.fs2b_c00426{font-size:135.600000px;}
.fs1d_c00426{font-size:193.200600px;}
.fs22_c00426{font-size:432.000000px;}
.y0_c00426{bottom:0.000000px;}
.y2b_c00426{bottom:232.215006px;}
.y2a_c00426{bottom:253.800006px;}
.y25_c00426{bottom:428.055006px;}
.y28_c00426{bottom:429.855006px;}
.y26_c00426{bottom:430.560006px;}
.y29_c00426{bottom:431.280006px;}
.y27_c00426{bottom:432.015006px;}
.y24_c00426{bottom:448.560006px;}
.y23_c00426{bottom:496.800006px;}
.y22_c00426{bottom:535.320006px;}
.y2d_c00426{bottom:537.480006px;}
.y21_c00426{bottom:565.935006px;}
.y20_c00426{bottom:581.775006px;}
.y1f_c00426{bottom:596.535006px;}
.y1e_c00426{bottom:609.135006px;}
.y15_c00426{bottom:611.280006px;}
.y1d_c00426{bottom:625.320006px;}
.y14_c00426{bottom:629.640006px;}
.y1c_c00426{bottom:663.480006px;}
.y9_c00426{bottom:679.320006px;}
.y13_c00426{bottom:680.055006px;}
.y12_c00426{bottom:694.800006px;}
.y11_c00426{bottom:711.375006px;}
.y10_c00426{bottom:724.320006px;}
.y1b_c00426{bottom:751.695006px;}
.yf_c00426{bottom:766.455006px;}
.y1a_c00426{bottom:777.615006px;}
.ye_c00426{bottom:784.800006px;}
.y19_c00426{bottom:803.160006px;}
.y8_c00426{bottom:821.520006px;}
.yd_c00426{bottom:825.480006px;}
.y2c_c00426{bottom:826.215006px;}
.y18_c00426{bottom:826.575006px;}
.yc_c00426{bottom:830.520006px;}
.y17_c00426{bottom:832.680006px;}
.yb_c00426{bottom:845.280006px;}
.y16_c00426{bottom:858.975006px;}
.ya_c00426{bottom:870.480006px;}
.y7_c00426{bottom:969.480006px;}
.y5_c00426{bottom:997.215006px;}
.y4_c00426{bottom:1001.520006px;}
.y6_c00426{bottom:1008.735006px;}
.y3_c00426{bottom:1015.575006px;}
.y1_c00426{bottom:1080.360006px;}
.y2_c00426{bottom:1081.455006px;}
.h1a_c00426{height:9.421875px;}
.h21_c00426{height:10.549440px;}
.h8_c00426{height:11.508480px;}
.h2d_c00426{height:11.889844px;}
.h1b_c00426{height:20.140240px;}
.h15_c00426{height:23.780313px;}
.h16_c00426{height:24.406095px;}
.h2c_c00426{height:25.894480px;}
.h7_c00426{height:28.785937px;}
.h13_c00426{height:30.663907px;}
.h29_c00426{height:31.210550px;}
.h2a_c00426{height:33.167032px;}
.h20_c00426{height:37.688089px;}
.hc_c00426{height:38.257913px;}
.hd_c00426{height:38.276956px;}
.h1e_c00426{height:39.320640px;}
.hf_c00426{height:43.179532px;}
.h26_c00426{height:46.033920px;}
.h10_c00426{height:48.185156px;}
.h22_c00426{height:48.811563px;}
.h14_c00426{height:49.464844px;}
.h1c_c00426{height:50.642578px;}
.h24_c00426{height:50.829120px;}
.he_c00426{height:53.586914px;}
.h9_c00426{height:54.764648px;}
.h17_c00426{height:55.068750px;}
.h2e_c00426{height:55.353516px;}
.h27_c00426{height:56.531250px;}
.h1d_c00426{height:56.946094px;}
.h11_c00426{height:57.571875px;}
.h3_c00426{height:59.449219px;}
.h4_c00426{height:60.700781px;}
.h23_c00426{height:66.958594px;}
.h31_c00426{height:67.725000px;}
.h2b_c00426{height:68.897461px;}
.hb_c00426{height:69.486328px;}
.h2_c00426{height:71.339063px;}
.h32_c00426{height:72.590625px;}
.h30_c00426{height:73.216406px;}
.ha_c00426{height:75.719531px;}
.h19_c00426{height:77.596875px;}
.h12_c00426{height:81.977344px;}
.h18_c00426{height:88.330078px;}
.h6_c00426{height:88.860937px;}
.h5_c00426{height:103.640625px;}
.h28_c00426{height:110.763907px;}
.h2f_c00426{height:133.083984px;}
.h1f_c00426{height:189.615823px;}
.h25_c00426{height:423.984375px;}
.h1_c00426{height:1263.000000px;}
.h0_c00426{height:1263.240006px;}
.w1_c00426{width:892.500000px;}
.w0_c00426{width:892.799998px;}
.x0_c00426{left:0.000000px;}
.xe_c00426{left:77.969999px;}
.xf_c00426{left:95.579999px;}
.x1_c00426{left:108.164999px;}
.x49_c00426{left:112.574999px;}
.x4c_c00426{left:114.089999px;}
.x13_c00426{left:130.049998px;}
.x25_c00426{left:135.269999px;}
.x14_c00426{left:163.514998px;}
.x15_c00426{left:166.409999px;}
.x26_c00426{left:169.184999px;}
.x27_c00426{left:171.269999px;}
.x23_c00426{left:175.184999px;}
.x10_c00426{left:177.494998px;}
.x22_c00426{left:180.179998px;}
.x28_c00426{left:186.839999px;}
.x16_c00426{left:189.569998px;}
.x12_c00426{left:194.399999px;}
.x11_c00426{left:199.319998px;}
.x1d_c00426{left:201.779998px;}
.x20_c00426{left:205.034999px;}
.x1e_c00426{left:208.304998px;}
.x1f_c00426{left:210.374998px;}
.x24_c00426{left:213.614998px;}
.x29_c00426{left:217.829998px;}
.x17_c00426{left:220.409999px;}
.x21_c00426{left:227.444999px;}
.x2a_c00426{left:230.414998px;}
.x18_c00426{left:241.019999px;}
.x19_c00426{left:243.464999px;}
.x2_c00426{left:246.059998px;}
.x1a_c00426{left:256.409999px;}
.x1b_c00426{left:258.629998px;}
.x1c_c00426{left:266.264998px;}
.x2b_c00426{left:308.519999px;}
.x47_c00426{left:318.779998px;}
.x3d_c00426{left:326.189999px;}
.x48_c00426{left:337.919999px;}
.x8_c00426{left:366.839999px;}
.x9_c00426{left:369.884999px;}
.x3_c00426{left:375.074998px;}
.x7_c00426{left:378.539999px;}
.xa_c00426{left:384.119999px;}
.x46_c00426{left:469.004998px;}
.x43_c00426{left:479.354998px;}
.x44_c00426{left:487.949998px;}
.x4_c00426{left:501.644999px;}
.xb_c00426{left:512.669999px;}
.x4a_c00426{left:540.524999px;}
.x4b_c00426{left:583.004999px;}
.x3e_c00426{left:590.219998px;}
.x3a_c00426{left:593.459998px;}
.x3f_c00426{left:598.694999px;}
.x3b_c00426{left:600.419999px;}
.x40_c00426{left:601.439999px;}
.x45_c00426{left:603.209998px;}
.x41_c00426{left:604.994999px;}
.x42_c00426{left:617.414999px;}
.x2e_c00426{left:618.644999px;}
.x2f_c00426{left:622.649999px;}
.x37_c00426{left:627.359998px;}
.x38_c00426{left:630.734998px;}
.x5_c00426{left:632.384999px;}
.x30_c00426{left:636.854998px;}
.x34_c00426{left:641.849999px;}
.x31_c00426{left:644.564999px;}
.x35_c00426{left:648.659999px;}
.x36_c00426{left:651.524999px;}
.x32_c00426{left:654.044999px;}
.x33_c00426{left:656.759999px;}
.x2d_c00426{left:659.099999px;}
.x2c_c00426{left:664.319999px;}
.xc_c00426{left:665.714998px;}
.x3c_c00426{left:670.919999px;}
.x39_c00426{left:687.809999px;}
.x6_c00426{left:761.294999px;}
.xd_c00426{left:781.454999px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls29_c00426{letter-spacing:-13.440000pt;}
.ls30_c00426{letter-spacing:-4.218667pt;}
.ls2a_c00426{letter-spacing:-3.304019pt;}
.lsd_c00426{letter-spacing:-3.285333pt;}
.ls1e_c00426{letter-spacing:-2.800000pt;}
.ls20_c00426{letter-spacing:-2.314667pt;}
.ls14_c00426{letter-spacing:-2.258667pt;}
.ls2c_c00426{letter-spacing:-2.184000pt;}
.ls37_c00426{letter-spacing:-2.165333pt;}
.ls35_c00426{letter-spacing:-2.090667pt;}
.ls27_c00426{letter-spacing:-1.997333pt;}
.ls12_c00426{letter-spacing:-1.810667pt;}
.ls1c_c00426{letter-spacing:-1.736000pt;}
.ls19_c00426{letter-spacing:-1.717333pt;}
.ls1d_c00426{letter-spacing:-1.642667pt;}
.ls22_c00426{letter-spacing:-1.605333pt;}
.ls1a_c00426{letter-spacing:-1.568000pt;}
.ls26_c00426{letter-spacing:-1.456019pt;}
.ls18_c00426{letter-spacing:-1.288019pt;}
.ls36_c00426{letter-spacing:-1.260373pt;}
.ls23_c00426{letter-spacing:-1.194685pt;}
.ls28_c00426{letter-spacing:-0.858667pt;}
.ls33_c00426{letter-spacing:-0.692907pt;}
.ls25_c00426{letter-spacing:-0.552969pt;}
.ls1f_c00426{letter-spacing:-0.512000pt;}
.ls31_c00426{letter-spacing:-0.495787pt;}
.ls2d_c00426{letter-spacing:-0.354667pt;}
.ls32_c00426{letter-spacing:-0.005973pt;}
.ls10_c00426{letter-spacing:0.000000pt;}
.ls9_c00426{letter-spacing:0.089600pt;}
.ls3_c00426{letter-spacing:0.205547pt;}
.lsa_c00426{letter-spacing:0.316160pt;}
.ls6_c00426{letter-spacing:0.322560pt;}
.ls0_c00426{letter-spacing:0.341339pt;}
.ls21_c00426{letter-spacing:0.426667pt;}
.ls1_c00426{letter-spacing:0.467634pt;}
.ls2_c00426{letter-spacing:0.505181pt;}
.ls2e_c00426{letter-spacing:0.506667pt;}
.ls24_c00426{letter-spacing:0.628063pt;}
.ls7_c00426{letter-spacing:0.633173pt;}
.ls5_c00426{letter-spacing:0.770560pt;}
.ls1b_c00426{letter-spacing:1.040027pt;}
.lsf_c00426{letter-spacing:1.226667pt;}
.ls2b_c00426{letter-spacing:1.413360pt;}
.ls34_c00426{letter-spacing:1.594880pt;}
.ls4_c00426{letter-spacing:1.720320pt;}
.ls16_c00426{letter-spacing:1.733360pt;}
.ls13_c00426{letter-spacing:1.867573pt;}
.ls17_c00426{letter-spacing:2.426667pt;}
.ls11_c00426{letter-spacing:2.480000pt;}
.ls2f_c00426{letter-spacing:2.506667pt;}
.lsc_c00426{letter-spacing:2.509067pt;}
.lsb_c00426{letter-spacing:2.533333pt;}
.ls8_c00426{letter-spacing:2.873173pt;}
.ls15_c00426{letter-spacing:3.146667pt;}
.lse_c00426{letter-spacing:3.786667pt;}
.ws0_c00426{word-spacing:0.000000pt;}
._3_c00426{margin-left:-10.110680pt;}
._0_c00426{margin-left:-6.885138pt;}
._4_c00426{margin-left:-5.700356pt;}
._2_c00426{margin-left:-4.426933pt;}
._a_c00426{width:3.542187pt;}
._1_c00426{width:5.120000pt;}
._9_c00426{width:6.283093pt;}
._b_c00426{width:7.813120pt;}
._c_c00426{width:9.287680pt;}
._5_c00426{width:164.914133pt;}
._7_c00426{width:197.550400pt;}
._8_c00426{width:436.584237pt;}
._6_c00426{width:676.665600pt;}
.fs19_c00426{font-size:8.533333pt;}
.fs29_c00426{font-size:10.133333pt;}
.fs1e_c00426{font-size:14.080000pt;}
.fs6_c00426{font-size:15.360000pt;}
.fs14_c00426{font-size:20.267200pt;}
.fs15_c00426{font-size:20.800533pt;}
.fs5_c00426{font-size:24.533333pt;}
.fs12_c00426{font-size:26.133867pt;}
.fs1a_c00426{font-size:26.880533pt;}
.fs26_c00426{font-size:28.267200pt;}
.fs2c_c00426{font-size:31.467200pt;}
.fs10_c00426{font-size:34.133867pt;}
.fs28_c00426{font-size:34.560533pt;}
.fsa_c00426{font-size:34.667200pt;}
.fsc_c00426{font-size:36.800533pt;}
.fsf_c00426{font-size:38.933867pt;}
.fsd_c00426{font-size:41.066667pt;}
.fs1f_c00426{font-size:41.600533pt;}
.fs13_c00426{font-size:44.800000pt;}
.fs1b_c00426{font-size:45.866667pt;}
.fs16_c00426{font-size:46.933333pt;}
.fsb_c00426{font-size:48.533333pt;}
.fse_c00426{font-size:49.066667pt;}
.fs7_c00426{font-size:49.600000pt;}
.fs2a_c00426{font-size:50.133333pt;}
.fs1_c00426{font-size:50.666667pt;}
.fs24_c00426{font-size:51.200000pt;}
.fs2_c00426{font-size:51.733333pt;}
.fs1c_c00426{font-size:52.480000pt;}
.fs20_c00426{font-size:57.066667pt;}
.fs2d_c00426{font-size:59.733333pt;}
.fs0_c00426{font-size:60.800000pt;}
.fs23_c00426{font-size:61.440000pt;}
.fs2e_c00426{font-size:61.866667pt;}
.fs27_c00426{font-size:62.400000pt;}
.fs9_c00426{font-size:62.933333pt;}
.fs8_c00426{font-size:64.533333pt;}
.fs18_c00426{font-size:66.133333pt;}
.fs21_c00426{font-size:67.840000pt;}
.fs11_c00426{font-size:69.866667pt;}
.fs4_c00426{font-size:75.733333pt;}
.fs17_c00426{font-size:80.000000pt;}
.fs3_c00426{font-size:93.866667pt;}
.fs25_c00426{font-size:94.400533pt;}
.fs2b_c00426{font-size:120.533333pt;}
.fs1d_c00426{font-size:171.733867pt;}
.fs22_c00426{font-size:384.000000pt;}
.y0_c00426{bottom:0.000000pt;}
.y2b_c00426{bottom:206.413339pt;}
.y2a_c00426{bottom:225.600005pt;}
.y25_c00426{bottom:380.493339pt;}
.y28_c00426{bottom:382.093339pt;}
.y26_c00426{bottom:382.720005pt;}
.y29_c00426{bottom:383.360005pt;}
.y27_c00426{bottom:384.013339pt;}
.y24_c00426{bottom:398.720005pt;}
.y23_c00426{bottom:441.600005pt;}
.y22_c00426{bottom:475.840005pt;}
.y2d_c00426{bottom:477.760005pt;}
.y21_c00426{bottom:503.053339pt;}
.y20_c00426{bottom:517.133339pt;}
.y1f_c00426{bottom:530.253339pt;}
.y1e_c00426{bottom:541.453339pt;}
.y15_c00426{bottom:543.360005pt;}
.y1d_c00426{bottom:555.840005pt;}
.y14_c00426{bottom:559.680005pt;}
.y1c_c00426{bottom:589.760005pt;}
.y9_c00426{bottom:603.840005pt;}
.y13_c00426{bottom:604.493339pt;}
.y12_c00426{bottom:617.600005pt;}
.y11_c00426{bottom:632.333339pt;}
.y10_c00426{bottom:643.840005pt;}
.y1b_c00426{bottom:668.173339pt;}
.yf_c00426{bottom:681.293339pt;}
.y1a_c00426{bottom:691.213339pt;}
.ye_c00426{bottom:697.600005pt;}
.y19_c00426{bottom:713.920005pt;}
.y8_c00426{bottom:730.240005pt;}
.yd_c00426{bottom:733.760005pt;}
.y2c_c00426{bottom:734.413339pt;}
.y18_c00426{bottom:734.733339pt;}
.yc_c00426{bottom:738.240005pt;}
.y17_c00426{bottom:740.160005pt;}
.yb_c00426{bottom:751.360005pt;}
.y16_c00426{bottom:763.533339pt;}
.ya_c00426{bottom:773.760005pt;}
.y7_c00426{bottom:861.760005pt;}
.y5_c00426{bottom:886.413339pt;}
.y4_c00426{bottom:890.240005pt;}
.y6_c00426{bottom:896.653339pt;}
.y3_c00426{bottom:902.733339pt;}
.y1_c00426{bottom:960.320005pt;}
.y2_c00426{bottom:961.293339pt;}
.h1a_c00426{height:8.375000pt;}
.h21_c00426{height:9.377280pt;}
.h8_c00426{height:10.229760pt;}
.h2d_c00426{height:10.568750pt;}
.h1b_c00426{height:17.902435pt;}
.h15_c00426{height:21.138056pt;}
.h16_c00426{height:21.694306pt;}
.h2c_c00426{height:23.017315pt;}
.h7_c00426{height:25.587500pt;}
.h13_c00426{height:27.256806pt;}
.h29_c00426{height:27.742711pt;}
.h2a_c00426{height:29.481806pt;}
.h20_c00426{height:33.500523pt;}
.hc_c00426{height:34.007034pt;}
.hd_c00426{height:34.023961pt;}
.h1e_c00426{height:34.951680pt;}
.hf_c00426{height:38.381806pt;}
.h26_c00426{height:40.919040pt;}
.h10_c00426{height:42.831250pt;}
.h22_c00426{height:43.388056pt;}
.h14_c00426{height:43.968750pt;}
.h1c_c00426{height:45.015625pt;}
.h24_c00426{height:45.181440pt;}
.he_c00426{height:47.632812pt;}
.h9_c00426{height:48.679688pt;}
.h17_c00426{height:48.950000pt;}
.h2e_c00426{height:49.203125pt;}
.h27_c00426{height:50.250000pt;}
.h1d_c00426{height:50.618750pt;}
.h11_c00426{height:51.175000pt;}
.h3_c00426{height:52.843750pt;}
.h4_c00426{height:53.956250pt;}
.h23_c00426{height:59.518750pt;}
.h31_c00426{height:60.200000pt;}
.h2b_c00426{height:61.242187pt;}
.hb_c00426{height:61.765625pt;}
.h2_c00426{height:63.412500pt;}
.h32_c00426{height:64.525000pt;}
.h30_c00426{height:65.081250pt;}
.ha_c00426{height:67.306250pt;}
.h19_c00426{height:68.975000pt;}
.h12_c00426{height:72.868750pt;}
.h18_c00426{height:78.515625pt;}
.h6_c00426{height:78.987500pt;}
.h5_c00426{height:92.125000pt;}
.h28_c00426{height:98.456806pt;}
.h2f_c00426{height:118.296875pt;}
.h1f_c00426{height:168.547398pt;}
.h25_c00426{height:376.875000pt;}
.h1_c00426{height:1122.666667pt;}
.h0_c00426{height:1122.880005pt;}
.w1_c00426{width:793.333333pt;}
.w0_c00426{width:793.599999pt;}
.x0_c00426{left:0.000000pt;}
.xe_c00426{left:69.306665pt;}
.xf_c00426{left:84.959999pt;}
.x1_c00426{left:96.146665pt;}
.x49_c00426{left:100.066665pt;}
.x4c_c00426{left:101.413332pt;}
.x13_c00426{left:115.599999pt;}
.x25_c00426{left:120.239999pt;}
.x14_c00426{left:145.346665pt;}
.x15_c00426{left:147.919999pt;}
.x26_c00426{left:150.386665pt;}
.x27_c00426{left:152.239999pt;}
.x23_c00426{left:155.719999pt;}
.x10_c00426{left:157.773332pt;}
.x22_c00426{left:160.159999pt;}
.x28_c00426{left:166.079999pt;}
.x16_c00426{left:168.506665pt;}
.x12_c00426{left:172.799999pt;}
.x11_c00426{left:177.173332pt;}
.x1d_c00426{left:179.359999pt;}
.x20_c00426{left:182.253332pt;}
.x1e_c00426{left:185.159999pt;}
.x1f_c00426{left:186.999999pt;}
.x24_c00426{left:189.879999pt;}
.x29_c00426{left:193.626665pt;}
.x17_c00426{left:195.919999pt;}
.x21_c00426{left:202.173332pt;}
.x2a_c00426{left:204.813332pt;}
.x18_c00426{left:214.239999pt;}
.x19_c00426{left:216.413332pt;}
.x2_c00426{left:218.719999pt;}
.x1a_c00426{left:227.919999pt;}
.x1b_c00426{left:229.893332pt;}
.x1c_c00426{left:236.679999pt;}
.x2b_c00426{left:274.239999pt;}
.x47_c00426{left:283.359999pt;}
.x3d_c00426{left:289.946665pt;}
.x48_c00426{left:300.373332pt;}
.x8_c00426{left:326.079999pt;}
.x9_c00426{left:328.786665pt;}
.x3_c00426{left:333.399999pt;}
.x7_c00426{left:336.479999pt;}
.xa_c00426{left:341.439999pt;}
.x46_c00426{left:416.893332pt;}
.x43_c00426{left:426.093332pt;}
.x44_c00426{left:433.733332pt;}
.x4_c00426{left:445.906665pt;}
.xb_c00426{left:455.706665pt;}
.x4a_c00426{left:480.466665pt;}
.x4b_c00426{left:518.226665pt;}
.x3e_c00426{left:524.639999pt;}
.x3a_c00426{left:527.519999pt;}
.x3f_c00426{left:532.173332pt;}
.x3b_c00426{left:533.706665pt;}
.x40_c00426{left:534.613332pt;}
.x45_c00426{left:536.186665pt;}
.x41_c00426{left:537.773332pt;}
.x42_c00426{left:548.813332pt;}
.x2e_c00426{left:549.906665pt;}
.x2f_c00426{left:553.466665pt;}
.x37_c00426{left:557.653332pt;}
.x38_c00426{left:560.653332pt;}
.x5_c00426{left:562.119999pt;}
.x30_c00426{left:566.093332pt;}
.x34_c00426{left:570.533332pt;}
.x31_c00426{left:572.946665pt;}
.x35_c00426{left:576.586665pt;}
.x36_c00426{left:579.133332pt;}
.x32_c00426{left:581.373332pt;}
.x33_c00426{left:583.786665pt;}
.x2d_c00426{left:585.866665pt;}
.x2c_c00426{left:590.506665pt;}
.xc_c00426{left:591.746665pt;}
.x3c_c00426{left:596.373332pt;}
.x39_c00426{left:611.386665pt;}
.x6_c00426{left:676.706665pt;}
.xd_c00426{left:694.626665pt;}
}





/* 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_c00427 {
    display:none;
  }
  .loading-indicator_c00427.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00427 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_c00427 { 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_c00427" -> "#page-container .classname_c00427")
 */
.pf_c00427 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00427 { /* 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_c00427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00427 { /* 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_c00427 { /* 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_c00427 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00427 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00427 {overflow:visible;}
  }
}
.c_c00427 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00427 { /* 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_c00427:after { /* webkit #35443 */
  content: '';
}
.t_c00427:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00427 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 */
}
.__c00427 { /* 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_c00427 { /* info for Javascript */
  display:none;
}
.l_c00427 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00427 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00427 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00427: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_c00427 {
    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_c00427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00427.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_c00427 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00427{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00427;src:url('chunks/assets/font_6e3a0f1aa6846163c33bef6f.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;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:ff2_c00427;src:url('chunks/assets/font_67f03e4afb30d48af1d87a6b.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.284668;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_c00427;src:url('chunks/assets/font_426ae63c8b176e5d6e56d6e6.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:0.666000;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_c00427;src:url('chunks/assets/font_68ba08715638b4f5cc1c43a8.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.284180;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_c00427;src:url('chunks/assets/font_706e93e6c0be1f72afa82499.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;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:ff6_c00427;src:url('chunks/assets/font_9e9aec32733d5eb925b24487.woff2')format("woff");}.ff6_c00427{font-family:ff6_c00427;line-height:1.311035;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_c00427;src:url('chunks/assets/font_d78256f7d701223fd19bf03c.woff2')format("woff");}.ff7_c00427{font-family:ff7_c00427;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_c00427;src:url('chunks/assets/font_c596323958678a04933785a1.woff2')format("woff");}.ff8_c00427{font-family:ff8_c00427;line-height:1.284180;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;}
.mf_c00427{transform:matrix(0.027777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027777,0.000000,0.000000,0.250000,0,0);}
.mc_c00427{transform:matrix(0.041666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041666,0.000000,0.000000,0.250000,0,0);}
.m18_c00427{transform:matrix(0.051715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051715,0.000000,0.000000,0.250000,0,0);}
.m17_c00427{transform:matrix(0.054937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054937,0.000000,0.000000,0.250000,0,0);}
.m15_c00427{transform:matrix(0.067502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067502,0.000000,0.000000,0.250000,0,0);}
.m11_c00427{transform:matrix(0.080198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080198,0.000000,0.000000,0.250000,0,0);}
.m7_c00427{transform:matrix(0.107378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107378,0.000000,0.000000,0.250000,0,0);}
.m26_c00427{transform:matrix(0.128544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128544,0.000000,0.000000,0.250000,0,0);}
.m23_c00427{transform:matrix(0.134614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134614,0.000000,0.000000,0.250000,0,0);}
.ma_c00427{transform:matrix(0.139505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139505,0.000000,0.000000,0.250000,0,0);}
.m6_c00427{transform:matrix(0.143336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143336,0.000000,0.000000,0.250000,0,0);}
.m19_c00427{transform:matrix(0.147726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147726,0.000000,0.000000,0.250000,0,0);}
.m12_c00427{transform:matrix(0.155218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155218,0.000000,0.000000,0.250000,0,0);}
.m10_c00427{transform:matrix(0.161067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161067,0.000000,0.000000,0.250000,0,0);}
.m22_c00427{transform:matrix(0.171422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171422,0.000000,0.000000,0.250000,0,0);}
.m16_c00427{transform:matrix(0.176780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176780,0.000000,0.000000,0.250000,0,0);}
.me_c00427{transform:matrix(0.180341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180341,0.000000,0.000000,0.250000,0,0);}
.m24_c00427{transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);}
.m29_c00427{transform:matrix(0.200478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200478,0.000000,0.000000,0.250000,0,0);}
.m25_c00427{transform:matrix(0.202408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202408,0.000000,0.000000,0.250000,0,0);}
.mb_c00427{transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);}
.md_c00427{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m9_c00427{transform:matrix(0.221433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221433,0.000000,0.000000,0.250000,0,0);}
.m21_c00427{transform:matrix(0.229396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229396,0.000000,0.000000,0.250000,0,0);}
.m28_c00427{transform:matrix(0.242440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242440,0.000000,0.000000,0.250000,0,0);}
.m8_c00427{transform:matrix(0.243080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243080,0.000000,0.000000,0.250000,0,0);}
.m27_c00427{transform:matrix(0.247804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247804,0.000000,0.000000,0.250000,0,0);}
.m0_c00427{transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);}
.m1c_c00427{transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);}
.m2_c00427{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);}
.m1a_c00427{transform:matrix(0.260079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260079,0.000000,0.000000,0.250000,0,0);}
.m2b_c00427{transform:matrix(0.265958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265958,0.000000,0.000000,0.250000,0,0);}
.m1e_c00427{transform:matrix(0.269253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269253,0.000000,0.000000,0.250000,0,0);}
.m20_c00427{transform:matrix(0.270539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270539,0.000000,0.000000,0.250000,0,0);}
.m1d_c00427{transform:matrix(0.270542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270542,0.000000,0.000000,0.250000,0,0);}
.m14_c00427{transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);}
.m1f_c00427{transform:matrix(0.275429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275429,0.000000,0.000000,0.250000,0,0);}
.m1b_c00427{transform:matrix(0.277505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277505,0.000000,0.000000,0.250000,0,0);}
.m3_c00427{transform:matrix(0.323468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323468,0.000000,0.000000,0.250000,0,0);}
.m2a_c00427{transform:matrix(0.331721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331721,0.000000,0.000000,0.250000,0,0);}
.m13_c00427{transform:matrix(0.351884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351884,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{transform:matrix(0.353687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353687,0.000000,0.000000,0.250000,0,0);}
.m5_c00427{transform:matrix(0.492985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492985,0.000000,0.000000,0.250000,0,0);}
.m4_c00427{transform:matrix(0.493096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493096,0.000000,0.000000,0.250000,0,0);}
.v4_c00427{vertical-align:-64.740000px;}
.v5_c00427{vertical-align:-1.450819px;}
.v0_c00427{vertical-align:0.000000px;}
.v1_c00427{vertical-align:1.440000px;}
.v3_c00427{vertical-align:2.940000px;}
.v2_c00427{vertical-align:17.220000px;}
.ls19_c00427{letter-spacing:-5.418000px;}
.ls1a_c00427{letter-spacing:-3.465000px;}
.lsf_c00427{letter-spacing:-3.297000px;}
.ls10_c00427{letter-spacing:-3.024000px;}
.ls20_c00427{letter-spacing:-2.562000px;}
.ls25_c00427{letter-spacing:-2.499000px;}
.ls9_c00427{letter-spacing:-2.457000px;}
.ls15_c00427{letter-spacing:-2.436000px;}
.ls23_c00427{letter-spacing:-2.394000px;}
.ls1c_c00427{letter-spacing:-1.764000px;}
.ls35_c00427{letter-spacing:-1.695000px;}
.ls30_c00427{letter-spacing:-1.667880px;}
.ls14_c00427{letter-spacing:-1.638021px;}
.ls21_c00427{letter-spacing:-1.617000px;}
.ls11_c00427{letter-spacing:-1.512000px;}
.ls22_c00427{letter-spacing:-1.449021px;}
.ls32_c00427{letter-spacing:-1.261080px;}
.ls2c_c00427{letter-spacing:-1.132260px;}
.ls34_c00427{letter-spacing:-1.030560px;}
.ls2a_c00427{letter-spacing:-0.901740px;}
.ls2d_c00427{letter-spacing:-0.752580px;}
.ls26_c00427{letter-spacing:-0.730800px;}
.ls24_c00427{letter-spacing:-0.710640px;}
.ls33_c00427{letter-spacing:-0.542400px;}
.ls36_c00427{letter-spacing:-0.420360px;}
.ls13_c00427{letter-spacing:-0.354960px;}
.ls27_c00427{letter-spacing:-0.337680px;}
.ls2f_c00427{letter-spacing:-0.237300px;}
.ls2e_c00427{letter-spacing:-0.230520px;}
.ls2b_c00427{letter-spacing:-0.013560px;}
.lsb_c00427{letter-spacing:0.000000px;}
.ls16_c00427{letter-spacing:0.125280px;}
.ls4_c00427{letter-spacing:0.305100px;}
.ls7_c00427{letter-spacing:0.549180px;}
.ls5_c00427{letter-spacing:0.576300px;}
.ls1e_c00427{letter-spacing:0.730800px;}
.ls29_c00427{letter-spacing:0.767040px;}
.ls37_c00427{letter-spacing:0.847500px;}
.ls6_c00427{letter-spacing:0.962760px;}
.ls2_c00427{letter-spacing:1.103760px;}
.ls28_c00427{letter-spacing:1.118880px;}
.ls1d_c00427{letter-spacing:1.209600px;}
.lse_c00427{letter-spacing:1.440030px;}
.lsd_c00427{letter-spacing:1.560000px;}
.ls3_c00427{letter-spacing:1.566180px;}
.ls1f_c00427{letter-spacing:1.688400px;}
.ls38_c00427{letter-spacing:1.890030px;}
.lsc_c00427{letter-spacing:1.950030px;}
.lsa_c00427{letter-spacing:2.400000px;}
.ls1_c00427{letter-spacing:2.638560px;}
.ls8_c00427{letter-spacing:2.739120px;}
.ls17_c00427{letter-spacing:2.790000px;}
.ls12_c00427{letter-spacing:2.832900px;}
.ls31_c00427{letter-spacing:2.840820px;}
.ls18_c00427{letter-spacing:2.850000px;}
.ls1b_c00427{letter-spacing:8.010030px;}
.ls0_c00427{letter-spacing:72.316800px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{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__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00427{word-spacing:0.000000px;}
._f_c00427{margin-left:-5.166360px;}
._4_c00427{margin-left:-2.520000px;}
._10_c00427{width:2.725560px;}
._11_c00427{width:3.756120px;}
._e_c00427{width:4.773120px;}
._2_c00427{width:11.058720px;}
._b_c00427{width:12.441300px;}
._a_c00427{width:13.770180px;}
._c_c00427{width:14.793960px;}
._d_c00427{width:20.441700px;}
._0_c00427{width:28.540800px;}
._3_c00427{width:30.411600px;}
._9_c00427{width:31.953600px;}
._8_c00427{width:34.221600px;}
._1_c00427{width:42.217200px;}
._7_c00427{width:44.183543px;}
._6_c00427{width:51.153056px;}
._5_c00427{width:56.669550px;}
.fc0_c00427{color:transparent;}
.fs5_c00427{font-size:28.800600px;}
.fs4_c00427{font-size:31.200000px;}
.fs1f_c00427{font-size:37.800600px;}
.fsc_c00427{font-size:38.880600px;}
.fs3_c00427{font-size:39.000600px;}
.fs18_c00427{font-size:41.400600px;}
.fs8_c00427{font-size:43.200000px;}
.fs17_c00427{font-size:46.200000px;}
.fsb_c00427{font-size:46.800600px;}
.fs1c_c00427{font-size:47.400600px;}
.fs1_c00427{font-size:48.000000px;}
.fs13_c00427{font-size:50.400000px;}
.fs15_c00427{font-size:55.200000px;}
.fse_c00427{font-size:55.800000px;}
.fs1d_c00427{font-size:56.400000px;}
.fs9_c00427{font-size:57.000000px;}
.fs1a_c00427{font-size:64.800000px;}
.fs1e_c00427{font-size:67.800000px;}
.fs14_c00427{font-size:68.400000px;}
.fsa_c00427{font-size:69.600000px;}
.fs0_c00427{font-size:70.200000px;}
.fs1b_c00427{font-size:71.400000px;}
.fs16_c00427{font-size:73.200000px;}
.fs7_c00427{font-size:86.400000px;}
.fs6_c00427{font-size:94.200000px;}
.fs11_c00427{font-size:99.000000px;}
.fs19_c00427{font-size:108.600000px;}
.fs2_c00427{font-size:123.600000px;}
.fsf_c00427{font-size:141.000000px;}
.fs10_c00427{font-size:154.800000px;}
.fs12_c00427{font-size:160.200600px;}
.fsd_c00427{font-size:202.800000px;}
.y0_c00427{bottom:0.000000px;}
.y28_c00427{bottom:124.920006px;}
.y27_c00427{bottom:124.926456px;}
.y26_c00427{bottom:145.080006px;}
.y25_c00427{bottom:220.335006px;}
.y24_c00427{bottom:243.375006px;}
.y23_c00427{bottom:243.735006px;}
.y21_c00427{bottom:258.135006px;}
.y22_c00427{bottom:259.920006px;}
.y20_c00427{bottom:272.880006px;}
.y1f_c00427{bottom:282.615006px;}
.y1d_c00427{bottom:299.535006px;}
.y1e_c00427{bottom:300.615006px;}
.y1b_c00427{bottom:309.255006px;}
.y1c_c00427{bottom:313.920006px;}
.y19_c00427{bottom:322.920006px;}
.y1a_c00427{bottom:328.335006px;}
.y18_c00427{bottom:341.655006px;}
.y17_c00427{bottom:355.695006px;}
.y16_c00427{bottom:368.655006px;}
.y15_c00427{bottom:382.335006px;}
.y11_c00427{bottom:421.935006px;}
.y14_c00427{bottom:424.095006px;}
.y12_c00427{bottom:424.455006px;}
.y29_c00427{bottom:425.175006px;}
.y13_c00427{bottom:425.880006px;}
.y10_c00427{bottom:600.480006px;}
.yf_c00427{bottom:654.855006px;}
.yc_c00427{bottom:673.215006px;}
.y2a_c00427{bottom:673.560006px;}
.ye_c00427{bottom:676.095006px;}
.yd_c00427{bottom:705.975006px;}
.yb_c00427{bottom:734.055006px;}
.ya_c00427{bottom:757.095006px;}
.y7_c00427{bottom:815.415006px;}
.y8_c00427{bottom:819.360006px;}
.y9_c00427{bottom:819.735006px;}
.y6_c00427{bottom:961.575006px;}
.y3_c00427{bottom:1074.255006px;}
.y5_c00427{bottom:1074.615006px;}
.y1_c00427{bottom:1075.320006px;}
.y4_c00427{bottom:1078.935006px;}
.y2_c00427{bottom:1081.095006px;}
.he_c00427{height:25.894480px;}
.h7_c00427{height:30.038126px;}
.h6_c00427{height:30.621094px;}
.h23_c00427{height:37.080764px;}
.h5_c00427{height:38.276956px;}
.h1b_c00427{height:40.632425px;}
.ha_c00427{height:45.056250px;}
.h1a_c00427{height:45.342773px;}
.h3_c00427{height:47.109375px;}
.hd_c00427{height:48.811563px;}
.h16_c00427{height:50.793750px;}
.h10_c00427{height:54.737402px;}
.h18_c00427{height:57.571875px;}
.h21_c00427{height:58.823438px;}
.h11_c00427{height:59.449219px;}
.hb_c00427{height:60.889219px;}
.h1e_c00427{height:63.597656px;}
.h1c_c00427{height:67.130859px;}
.h22_c00427{height:68.329688px;}
.h17_c00427{height:68.934375px;}
.h20_c00427{height:71.841797px;}
.hc_c00427{height:72.590625px;}
.h2_c00427{height:73.216406px;}
.h19_c00427{height:73.771875px;}
.h1f_c00427{height:74.467969px;}
.h9_c00427{height:90.112500px;}
.h8_c00427{height:98.247656px;}
.h14_c00427{height:103.253906px;}
.h1d_c00427{height:106.584961px;}
.h4_c00427{height:128.910938px;}
.h12_c00427{height:138.383789px;}
.h13_c00427{height:161.451563px;}
.h15_c00427{height:167.084220px;}
.hf_c00427{height:199.037109px;}
.h1_c00427{height:1263.000000px;}
.h0_c00427{height:1263.240006px;}
.w1_c00427{width:892.500000px;}
.w0_c00427{width:892.799998px;}
.x0_c00427{left:0.000000px;}
.x8_c00427{left:77.609999px;}
.x16_c00427{left:94.484999px;}
.x2f_c00427{left:106.029298px;}
.x1_c00427{left:107.069998px;}
.x9_c00427{left:128.969999px;}
.xa_c00427{left:165.074998px;}
.xb_c00427{left:175.784999px;}
.x18_c00427{left:185.789998px;}
.xc_c00427{left:188.654999px;}
.xd_c00427{left:196.289998px;}
.x15_c00427{left:198.884998px;}
.x17_c00427{left:203.774998px;}
.x19_c00427{left:213.974998px;}
.xe_c00427{left:216.869999px;}
.x1a_c00427{left:218.054998px;}
.xf_c00427{left:240.854998px;}
.x1e_c00427{left:245.339999px;}
.x22_c00427{left:283.889999px;}
.x23_c00427{left:288.989999px;}
.x24_c00427{left:291.869999px;}
.x26_c00427{left:310.904999px;}
.x25_c00427{left:318.104999px;}
.x27_c00427{left:327.779998px;}
.x1f_c00427{left:374.354999px;}
.x28_c00427{left:431.039999px;}
.x2c_c00427{left:438.539999px;}
.x29_c00427{left:452.999998px;}
.x1c_c00427{left:467.834999px;}
.x20_c00427{left:500.564998px;}
.x30_c00427{left:543.404998px;}
.x2a_c00427{left:568.754999px;}
.x2b_c00427{left:592.499998px;}
.x6_c00427{left:620.639998px;}
.x1b_c00427{left:624.929999px;}
.x21_c00427{left:629.864998px;}
.x2_c00427{left:631.604998px;}
.x1d_c00427{left:639.599999px;}
.x3_c00427{left:650.399999px;}
.x10_c00427{left:653.099999px;}
.x7_c00427{left:655.994999px;}
.x14_c00427{left:674.489998px;}
.x2d_c00427{left:680.774999px;}
.x11_c00427{left:697.544999px;}
.x12_c00427{left:702.434999px;}
.x2e_c00427{left:716.669999px;}
.x31_c00427{left:758.774999px;}
.x4_c00427{left:760.049998px;}
.x5_c00427{left:767.279999px;}
.x13_c00427{left:778.889999px;}
@media print{
.v4_c00427{vertical-align:-57.546667pt;}
.v5_c00427{vertical-align:-1.289617pt;}
.v0_c00427{vertical-align:0.000000pt;}
.v1_c00427{vertical-align:1.280000pt;}
.v3_c00427{vertical-align:2.613333pt;}
.v2_c00427{vertical-align:15.306667pt;}
.ls19_c00427{letter-spacing:-4.816000pt;}
.ls1a_c00427{letter-spacing:-3.080000pt;}
.lsf_c00427{letter-spacing:-2.930667pt;}
.ls10_c00427{letter-spacing:-2.688000pt;}
.ls20_c00427{letter-spacing:-2.277333pt;}
.ls25_c00427{letter-spacing:-2.221333pt;}
.ls9_c00427{letter-spacing:-2.184000pt;}
.ls15_c00427{letter-spacing:-2.165333pt;}
.ls23_c00427{letter-spacing:-2.128000pt;}
.ls1c_c00427{letter-spacing:-1.568000pt;}
.ls35_c00427{letter-spacing:-1.506667pt;}
.ls30_c00427{letter-spacing:-1.482560pt;}
.ls14_c00427{letter-spacing:-1.456019pt;}
.ls21_c00427{letter-spacing:-1.437333pt;}
.ls11_c00427{letter-spacing:-1.344000pt;}
.ls22_c00427{letter-spacing:-1.288019pt;}
.ls32_c00427{letter-spacing:-1.120960pt;}
.ls2c_c00427{letter-spacing:-1.006453pt;}
.ls34_c00427{letter-spacing:-0.916053pt;}
.ls2a_c00427{letter-spacing:-0.801547pt;}
.ls2d_c00427{letter-spacing:-0.668960pt;}
.ls26_c00427{letter-spacing:-0.649600pt;}
.ls24_c00427{letter-spacing:-0.631680pt;}
.ls33_c00427{letter-spacing:-0.482133pt;}
.ls36_c00427{letter-spacing:-0.373653pt;}
.ls13_c00427{letter-spacing:-0.315520pt;}
.ls27_c00427{letter-spacing:-0.300160pt;}
.ls2f_c00427{letter-spacing:-0.210933pt;}
.ls2e_c00427{letter-spacing:-0.204907pt;}
.ls2b_c00427{letter-spacing:-0.012053pt;}
.lsb_c00427{letter-spacing:0.000000pt;}
.ls16_c00427{letter-spacing:0.111360pt;}
.ls4_c00427{letter-spacing:0.271200pt;}
.ls7_c00427{letter-spacing:0.488160pt;}
.ls5_c00427{letter-spacing:0.512267pt;}
.ls1e_c00427{letter-spacing:0.649600pt;}
.ls29_c00427{letter-spacing:0.681813pt;}
.ls37_c00427{letter-spacing:0.753333pt;}
.ls6_c00427{letter-spacing:0.855787pt;}
.ls2_c00427{letter-spacing:0.981120pt;}
.ls28_c00427{letter-spacing:0.994560pt;}
.ls1d_c00427{letter-spacing:1.075200pt;}
.lse_c00427{letter-spacing:1.280027pt;}
.lsd_c00427{letter-spacing:1.386667pt;}
.ls3_c00427{letter-spacing:1.392160pt;}
.ls1f_c00427{letter-spacing:1.500800pt;}
.ls38_c00427{letter-spacing:1.680027pt;}
.lsc_c00427{letter-spacing:1.733360pt;}
.lsa_c00427{letter-spacing:2.133333pt;}
.ls1_c00427{letter-spacing:2.345387pt;}
.ls8_c00427{letter-spacing:2.434773pt;}
.ls17_c00427{letter-spacing:2.480000pt;}
.ls12_c00427{letter-spacing:2.518133pt;}
.ls31_c00427{letter-spacing:2.525173pt;}
.ls18_c00427{letter-spacing:2.533333pt;}
.ls1b_c00427{letter-spacing:7.120027pt;}
.ls0_c00427{letter-spacing:64.281600pt;}
.ws0_c00427{word-spacing:0.000000pt;}
._f_c00427{margin-left:-4.592320pt;}
._4_c00427{margin-left:-2.240000pt;}
._10_c00427{width:2.422720pt;}
._11_c00427{width:3.338773pt;}
._e_c00427{width:4.242773pt;}
._2_c00427{width:9.829973pt;}
._b_c00427{width:11.058933pt;}
._a_c00427{width:12.240160pt;}
._c_c00427{width:13.150187pt;}
._d_c00427{width:18.170400pt;}
._0_c00427{width:25.369600pt;}
._3_c00427{width:27.032533pt;}
._9_c00427{width:28.403200pt;}
._8_c00427{width:30.419200pt;}
._1_c00427{width:37.526400pt;}
._7_c00427{width:39.274261pt;}
._6_c00427{width:45.469383pt;}
._5_c00427{width:50.372933pt;}
.fs5_c00427{font-size:25.600533pt;}
.fs4_c00427{font-size:27.733333pt;}
.fs1f_c00427{font-size:33.600533pt;}
.fsc_c00427{font-size:34.560533pt;}
.fs3_c00427{font-size:34.667200pt;}
.fs18_c00427{font-size:36.800533pt;}
.fs8_c00427{font-size:38.400000pt;}
.fs17_c00427{font-size:41.066667pt;}
.fsb_c00427{font-size:41.600533pt;}
.fs1c_c00427{font-size:42.133867pt;}
.fs1_c00427{font-size:42.666667pt;}
.fs13_c00427{font-size:44.800000pt;}
.fs15_c00427{font-size:49.066667pt;}
.fse_c00427{font-size:49.600000pt;}
.fs1d_c00427{font-size:50.133333pt;}
.fs9_c00427{font-size:50.666667pt;}
.fs1a_c00427{font-size:57.600000pt;}
.fs1e_c00427{font-size:60.266667pt;}
.fs14_c00427{font-size:60.800000pt;}
.fsa_c00427{font-size:61.866667pt;}
.fs0_c00427{font-size:62.400000pt;}
.fs1b_c00427{font-size:63.466667pt;}
.fs16_c00427{font-size:65.066667pt;}
.fs7_c00427{font-size:76.800000pt;}
.fs6_c00427{font-size:83.733333pt;}
.fs11_c00427{font-size:88.000000pt;}
.fs19_c00427{font-size:96.533333pt;}
.fs2_c00427{font-size:109.866667pt;}
.fsf_c00427{font-size:125.333333pt;}
.fs10_c00427{font-size:137.600000pt;}
.fs12_c00427{font-size:142.400533pt;}
.fsd_c00427{font-size:180.266667pt;}
.y0_c00427{bottom:0.000000pt;}
.y28_c00427{bottom:111.040005pt;}
.y27_c00427{bottom:111.045739pt;}
.y26_c00427{bottom:128.960005pt;}
.y25_c00427{bottom:195.853339pt;}
.y24_c00427{bottom:216.333339pt;}
.y23_c00427{bottom:216.653339pt;}
.y21_c00427{bottom:229.453339pt;}
.y22_c00427{bottom:231.040005pt;}
.y20_c00427{bottom:242.560005pt;}
.y1f_c00427{bottom:251.213339pt;}
.y1d_c00427{bottom:266.253339pt;}
.y1e_c00427{bottom:267.213339pt;}
.y1b_c00427{bottom:274.893339pt;}
.y1c_c00427{bottom:279.040005pt;}
.y19_c00427{bottom:287.040005pt;}
.y1a_c00427{bottom:291.853339pt;}
.y18_c00427{bottom:303.693339pt;}
.y17_c00427{bottom:316.173339pt;}
.y16_c00427{bottom:327.693339pt;}
.y15_c00427{bottom:339.853339pt;}
.y11_c00427{bottom:375.053339pt;}
.y14_c00427{bottom:376.973339pt;}
.y12_c00427{bottom:377.293339pt;}
.y29_c00427{bottom:377.933339pt;}
.y13_c00427{bottom:378.560005pt;}
.y10_c00427{bottom:533.760005pt;}
.yf_c00427{bottom:582.093339pt;}
.yc_c00427{bottom:598.413339pt;}
.y2a_c00427{bottom:598.720005pt;}
.ye_c00427{bottom:600.973339pt;}
.yd_c00427{bottom:627.533339pt;}
.yb_c00427{bottom:652.493339pt;}
.ya_c00427{bottom:672.973339pt;}
.y7_c00427{bottom:724.813339pt;}
.y8_c00427{bottom:728.320005pt;}
.y9_c00427{bottom:728.653339pt;}
.y6_c00427{bottom:854.733339pt;}
.y3_c00427{bottom:954.893339pt;}
.y5_c00427{bottom:955.213339pt;}
.y1_c00427{bottom:955.840005pt;}
.y4_c00427{bottom:959.053339pt;}
.y2_c00427{bottom:960.973339pt;}
.he_c00427{height:23.017315pt;}
.h7_c00427{height:26.700556pt;}
.h6_c00427{height:27.218750pt;}
.h23_c00427{height:32.960679pt;}
.h5_c00427{height:34.023961pt;}
.h1b_c00427{height:36.117711pt;}
.ha_c00427{height:40.050000pt;}
.h1a_c00427{height:40.304688pt;}
.h3_c00427{height:41.875000pt;}
.hd_c00427{height:43.388056pt;}
.h16_c00427{height:45.150000pt;}
.h10_c00427{height:48.655469pt;}
.h18_c00427{height:51.175000pt;}
.h21_c00427{height:52.287500pt;}
.h11_c00427{height:52.843750pt;}
.hb_c00427{height:54.123750pt;}
.h1e_c00427{height:56.531250pt;}
.h1c_c00427{height:59.671875pt;}
.h22_c00427{height:60.737500pt;}
.h17_c00427{height:61.275000pt;}
.h20_c00427{height:63.859375pt;}
.hc_c00427{height:64.525000pt;}
.h2_c00427{height:65.081250pt;}
.h19_c00427{height:65.575000pt;}
.h1f_c00427{height:66.193750pt;}
.h9_c00427{height:80.100000pt;}
.h8_c00427{height:87.331250pt;}
.h14_c00427{height:91.781250pt;}
.h1d_c00427{height:94.742188pt;}
.h4_c00427{height:114.587500pt;}
.h12_c00427{height:123.007812pt;}
.h13_c00427{height:143.512500pt;}
.h15_c00427{height:148.519306pt;}
.hf_c00427{height:176.921875pt;}
.h1_c00427{height:1122.666667pt;}
.h0_c00427{height:1122.880005pt;}
.w1_c00427{width:793.333333pt;}
.w0_c00427{width:793.599999pt;}
.x0_c00427{left:0.000000pt;}
.x8_c00427{left:68.986665pt;}
.x16_c00427{left:83.986665pt;}
.x2f_c00427{left:94.248265pt;}
.x1_c00427{left:95.173332pt;}
.x9_c00427{left:114.639999pt;}
.xa_c00427{left:146.733332pt;}
.xb_c00427{left:156.253332pt;}
.x18_c00427{left:165.146665pt;}
.xc_c00427{left:167.693332pt;}
.xd_c00427{left:174.479999pt;}
.x15_c00427{left:176.786665pt;}
.x17_c00427{left:181.133332pt;}
.x19_c00427{left:190.199999pt;}
.xe_c00427{left:192.773332pt;}
.x1a_c00427{left:193.826665pt;}
.xf_c00427{left:214.093332pt;}
.x1e_c00427{left:218.079999pt;}
.x22_c00427{left:252.346665pt;}
.x23_c00427{left:256.879999pt;}
.x24_c00427{left:259.439999pt;}
.x26_c00427{left:276.359999pt;}
.x25_c00427{left:282.759999pt;}
.x27_c00427{left:291.359999pt;}
.x1f_c00427{left:332.759999pt;}
.x28_c00427{left:383.146665pt;}
.x2c_c00427{left:389.813332pt;}
.x29_c00427{left:402.666665pt;}
.x1c_c00427{left:415.853332pt;}
.x20_c00427{left:444.946665pt;}
.x30_c00427{left:483.026665pt;}
.x2a_c00427{left:505.559999pt;}
.x2b_c00427{left:526.666665pt;}
.x6_c00427{left:551.679999pt;}
.x1b_c00427{left:555.493332pt;}
.x21_c00427{left:559.879999pt;}
.x2_c00427{left:561.426665pt;}
.x1d_c00427{left:568.533332pt;}
.x3_c00427{left:578.133332pt;}
.x10_c00427{left:580.533332pt;}
.x7_c00427{left:583.106665pt;}
.x14_c00427{left:599.546665pt;}
.x2d_c00427{left:605.133332pt;}
.x11_c00427{left:620.039999pt;}
.x12_c00427{left:624.386665pt;}
.x2e_c00427{left:637.039999pt;}
.x31_c00427{left:674.466665pt;}
.x4_c00427{left:675.599999pt;}
.x5_c00427{left:682.026665pt;}
.x13_c00427{left:692.346665pt;}
}





/* 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_c00428 {
    display:none;
  }
  .loading-indicator_c00428.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00428 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_c00428 { 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_c00428" -> "#page-container .classname_c00428")
 */
.pf_c00428 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00428 { /* 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_c00428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00428 { /* 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_c00428 { /* 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_c00428 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00428 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00428 {overflow:visible;}
  }
}
.c_c00428 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00428 { /* 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_c00428:after { /* webkit #35443 */
  content: '';
}
.t_c00428:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00428 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 */
}
.__c00428 { /* 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_c00428 { /* info for Javascript */
  display:none;
}
.l_c00428 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00428 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00428 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00428: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_c00428 {
    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_c00428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00428.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_c00428 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00428{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00428;src:url('chunks/assets/font_b9fa4efecd788d98ebbcd6f5.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;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:ff2_c00428;src:url('chunks/assets/font_d0c08debb6355d5d9b2c31b0.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;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_c00428;src:url('chunks/assets/font_0de8a8ad85e43cb2710fb488.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:0.666000;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_c00428;src:url('chunks/assets/font_95af3acea13aea20670f044a.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:1.284668;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_c00428;src:url('chunks/assets/font_848061f69207bb73b82ca263.woff2')format("woff");}.ff5_c00428{font-family:ff5_c00428;line-height:1.284180;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_c00428;src:url('chunks/assets/font_985bd0a4df41c36e839cb1bf.woff2')format("woff");}.ff6_c00428{font-family:ff6_c00428;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:ff7_c00428;src:url('chunks/assets/font_818df3c67b0c4d83127095e7.woff2')format("woff");}.ff7_c00428{font-family:ff7_c00428;line-height:1.311035;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;}
.m10_c00428{transform:matrix(0.022766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022766,0.000000,0.000000,0.250000,0,0);}
.m16_c00428{transform:matrix(0.037736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037736,0.000000,0.000000,0.250000,0,0);}
.m12_c00428{transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);}
.m2d_c00428{transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);}
.mf_c00428{transform:matrix(0.050084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050084,0.000000,0.000000,0.250000,0,0);}
.md_c00428{transform:matrix(0.053376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053376,0.000000,0.000000,0.250000,0,0);}
.m11_c00428{transform:matrix(0.055980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055980,0.000000,0.000000,0.250000,0,0);}
.ma_c00428{transform:matrix(0.057705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057705,0.000000,0.000000,0.250000,0,0);}
.m14_c00428{transform:matrix(0.075797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075797,0.000000,0.000000,0.250000,0,0);}
.m4_c00428{transform:matrix(0.078399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078399,0.000000,0.000000,0.250000,0,0);}
.mc_c00428{transform:matrix(0.105151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105151,0.000000,0.000000,0.250000,0,0);}
.me_c00428{transform:matrix(0.112515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112515,0.000000,0.000000,0.250000,0,0);}
.mb_c00428{transform:matrix(0.118301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118301,0.000000,0.000000,0.250000,0,0);}
.m23_c00428{transform:matrix(0.120117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120117,0.000000,0.000000,0.250000,0,0);}
.m9_c00428{transform:matrix(0.124970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124970,0.000000,0.000000,0.250000,0,0);}
.m17_c00428{transform:matrix(0.135634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135634,0.000000,0.000000,0.250000,0,0);}
.m13_c00428{transform:matrix(0.136047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136047,0.000000,0.000000,0.250000,0,0);}
.m30_c00428{transform:matrix(0.137147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137147,0.000000,0.000000,0.250000,0,0);}
.m26_c00428{transform:matrix(0.142451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142451,0.000000,0.000000,0.250000,0,0);}
.m28_c00428{transform:matrix(0.154159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154159,0.000000,0.000000,0.250000,0,0);}
.m24_c00428{transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);}
.m3c_c00428{transform:matrix(0.173473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173473,0.000000,0.000000,0.250000,0,0);}
.m2e_c00428{transform:matrix(0.175455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175455,0.000000,0.000000,0.250000,0,0);}
.m5_c00428{transform:matrix(0.184074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184074,0.000000,0.000000,0.250000,0,0);}
.m31_c00428{transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);}
.m18_c00428{transform:matrix(0.193858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193858,0.000000,0.000000,0.250000,0,0);}
.m15_c00428{transform:matrix(0.205097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205097,0.000000,0.000000,0.250000,0,0);}
.m6_c00428{transform:matrix(0.213931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213931,0.000000,0.000000,0.250000,0,0);}
.m2f_c00428{transform:matrix(0.217228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217228,0.000000,0.000000,0.250000,0,0);}
.m19_c00428{transform:matrix(0.218803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218803,0.000000,0.000000,0.250000,0,0);}
.m38_c00428{transform:matrix(0.228486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228486,0.000000,0.000000,0.250000,0,0);}
.m34_c00428{transform:matrix(0.233310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233310,0.000000,0.000000,0.250000,0,0);}
.m3a_c00428{transform:matrix(0.238076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238076,0.000000,0.000000,0.250000,0,0);}
.m29_c00428{transform:matrix(0.238792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238792,0.000000,0.000000,0.250000,0,0);}
.m3b_c00428{transform:matrix(0.240064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240064,0.000000,0.000000,0.250000,0,0);}
.m25_c00428{transform:matrix(0.240431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240431,0.000000,0.000000,0.250000,0,0);}
.m2a_c00428{transform:matrix(0.242447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242447,0.000000,0.000000,0.250000,0,0);}
.m39_c00428{transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);}
.m36_c00428{transform:matrix(0.243534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243534,0.000000,0.000000,0.250000,0,0);}
.m37_c00428{transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);}
.m35_c00428{transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);}
.m0_c00428{transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);}
.m2_c00428{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);}
.m3_c00428{transform:matrix(0.252914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252914,0.000000,0.000000,0.250000,0,0);}
.m22_c00428{transform:matrix(0.254679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254679,0.000000,0.000000,0.250000,0,0);}
.m8_c00428{transform:matrix(0.264145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264145,0.000000,0.000000,0.250000,0,0);}
.m33_c00428{transform:matrix(0.264689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264689,0.000000,0.000000,0.250000,0,0);}
.m1e_c00428{transform:matrix(0.265958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265958,0.000000,0.000000,0.250000,0,0);}
.m1a_c00428{transform:matrix(0.269253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269253,0.000000,0.000000,0.250000,0,0);}
.m21_c00428{transform:matrix(0.270539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270539,0.000000,0.000000,0.250000,0,0);}
.m1_c00428{transform:matrix(0.270542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270542,0.000000,0.000000,0.250000,0,0);}
.m20_c00428{transform:matrix(0.272560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272560,0.000000,0.000000,0.250000,0,0);}
.m1f_c00428{transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);}
.m1b_c00428{transform:matrix(0.276073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276073,0.000000,0.000000,0.250000,0,0);}
.m1d_c00428{transform:matrix(0.296644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296644,0.000000,0.000000,0.250000,0,0);}
.m7_c00428{transform:matrix(0.298060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298060,0.000000,0.000000,0.250000,0,0);}
.m2b_c00428{transform:matrix(0.298274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298274,0.000000,0.000000,0.250000,0,0);}
.m1c_c00428{transform:matrix(0.299478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299478,0.000000,0.000000,0.250000,0,0);}
.m27_c00428{transform:matrix(0.333389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333389,0.000000,0.000000,0.250000,0,0);}
.m2c_c00428{transform:matrix(0.339667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339667,0.000000,0.000000,0.250000,0,0);}
.m32_c00428{transform:matrix(1.269601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.269601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.269601,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls10_c00428{letter-spacing:-5.943000px;}
.ls1b_c00428{letter-spacing:-5.124000px;}
.lse_c00428{letter-spacing:-4.305000px;}
.lsf_c00428{letter-spacing:-3.066000px;}
.ls20_c00428{letter-spacing:-2.625000px;}
.ls17_c00428{letter-spacing:-2.583000px;}
.ls16_c00428{letter-spacing:-2.520000px;}
.ls2_c00428{letter-spacing:-2.457000px;}
.ls11_c00428{letter-spacing:-2.142000px;}
.ls12_c00428{letter-spacing:-1.995000px;}
.ls19_c00428{letter-spacing:-1.848000px;}
.ls13_c00428{letter-spacing:-1.835400px;}
.ls6_c00428{letter-spacing:-1.764000px;}
.lsc_c00428{letter-spacing:-1.641600px;}
.ls1e_c00428{letter-spacing:-1.413720px;}
.ls14_c00428{letter-spacing:-1.197000px;}
.ls1d_c00428{letter-spacing:-1.176000px;}
.lsb_c00428{letter-spacing:-0.798021px;}
.ls8_c00428{letter-spacing:-0.756000px;}
.lsd_c00428{letter-spacing:-0.516600px;}
.ls4_c00428{letter-spacing:0.000000px;}
.ls0_c00428{letter-spacing:0.395526px;}
.lsa_c00428{letter-spacing:0.570000px;}
.ls1_c00428{letter-spacing:0.710640px;}
.ls7_c00428{letter-spacing:1.175057px;}
.ls1c_c00428{letter-spacing:1.260000px;}
.ls9_c00428{letter-spacing:1.380000px;}
.ls1f_c00428{letter-spacing:1.410000px;}
.ls18_c00428{letter-spacing:1.920030px;}
.ls1a_c00428{letter-spacing:2.065920px;}
.ls15_c00428{letter-spacing:2.760000px;}
.ls3_c00428{letter-spacing:2.850000px;}
.ls5_c00428{letter-spacing:2.880000px;}
.sc__c00428{text-shadow:none;}
.sc0_c00428{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__c00428{-webkit-text-stroke:0px transparent;}
.sc0_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00428{word-spacing:0.000000px;}
._0_c00428{margin-left:-9.032438px;}
._2_c00428{width:2.985600px;}
._3_c00428{width:38.983560px;}
._1_c00428{width:255.286080px;}
._4_c00428{width:480.902400px;}
.fc0_c00428{color:transparent;}
.fsa_c00428{font-size:11.400000px;}
.fs8_c00428{font-size:21.600000px;}
.fsb_c00428{font-size:22.800600px;}
.fs21_c00428{font-size:25.200000px;}
.fsc_c00428{font-size:27.000600px;}
.fs9_c00428{font-size:27.600000px;}
.fs25_c00428{font-size:28.200000px;}
.fs23_c00428{font-size:33.600000px;}
.fs16_c00428{font-size:34.200000px;}
.fs13_c00428{font-size:34.560000px;}
.fs1b_c00428{font-size:38.400600px;}
.fs7_c00428{font-size:40.800600px;}
.fs3_c00428{font-size:41.400600px;}
.fs22_c00428{font-size:48.960000px;}
.fs6_c00428{font-size:50.400000px;}
.fs27_c00428{font-size:51.000000px;}
.fs2_c00428{font-size:51.600000px;}
.fs1d_c00428{font-size:52.800000px;}
.fs26_c00428{font-size:54.600000px;}
.fs17_c00428{font-size:55.200000px;}
.fs1_c00428{font-size:57.000000px;}
.fs4_c00428{font-size:57.600000px;}
.fs14_c00428{font-size:61.200000px;}
.fs0_c00428{font-size:70.200000px;}
.fsd_c00428{font-size:72.000000px;}
.fs1a_c00428{font-size:73.800000px;}
.fs28_c00428{font-size:75.000000px;}
.fs15_c00428{font-size:76.320000px;}
.fs1f_c00428{font-size:76.800000px;}
.fs1c_c00428{font-size:86.400000px;}
.fs10_c00428{font-size:87.600000px;}
.fs24_c00428{font-size:92.400000px;}
.fs18_c00428{font-size:97.800000px;}
.fs1e_c00428{font-size:108.600000px;}
.fse_c00428{font-size:123.000000px;}
.fsf_c00428{font-size:124.800000px;}
.fs11_c00428{font-size:131.040000px;}
.fs19_c00428{font-size:138.600000px;}
.fs20_c00428{font-size:146.400000px;}
.fs5_c00428{font-size:164.160000px;}
.fs12_c00428{font-size:169.800000px;}
.y0_c00428{bottom:0.000000px;}
.y22_c00428{bottom:273.615000px;}
.y10_c00428{bottom:428.055000px;}
.y1f_c00428{bottom:429.855000px;}
.y1d_c00428{bottom:430.560000px;}
.y11_c00428{bottom:430.935000px;}
.y21_c00428{bottom:431.295000px;}
.y1e_c00428{bottom:432.015000px;}
.y1c_c00428{bottom:448.560000px;}
.yc_c00428{bottom:535.695000px;}
.y20_c00428{bottom:537.135000px;}
.y1b_c00428{bottom:566.295000px;}
.y18_c00428{bottom:574.200000px;}
.y1a_c00428{bottom:577.095000px;}
.yf_c00428{bottom:581.775000px;}
.y19_c00428{bottom:588.240000px;}
.ye_c00428{bottom:614.535000px;}
.y17_c00428{bottom:621.015000px;}
.yd_c00428{bottom:636.855000px;}
.y16_c00428{bottom:679.695000px;}
.yb_c00428{bottom:681.135000px;}
.y15_c00428{bottom:682.200000px;}
.ya_c00428{bottom:719.640000px;}
.y7_c00428{bottom:821.895000px;}
.y14_c00428{bottom:826.200000px;}
.y9_c00428{bottom:828.720000px;}
.y8_c00428{bottom:869.760000px;}
.y6_c00428{bottom:891.015000px;}
.y5_c00428{bottom:903.600000px;}
.y4_c00428{bottom:952.920000px;}
.y3_c00428{bottom:996.855000px;}
.y1_c00428{bottom:1080.720000px;}
.y2_c00428{bottom:1081.080000px;}
.y13_c00428{bottom:1081.440000px;}
.y12_c00428{bottom:1081.815000px;}
.hb_c00428{height:11.889844px;}
.hc_c00428{height:22.377542px;}
.h9_c00428{height:22.528125px;}
.h14_c00428{height:23.016960px;}
.h24_c00428{height:24.720117px;}
.hd_c00428{height:28.160782px;}
.ha_c00428{height:28.785937px;}
.h28_c00428{height:29.411719px;}
.h25_c00428{height:32.607360px;}
.h26_c00428{height:32.976562px;}
.h17_c00428{height:33.565430px;}
.h1d_c00428{height:37.688089px;}
.h8_c00428{height:42.553751px;}
.h21_c00428{height:49.464844px;}
.h16_c00428{height:50.829120px;}
.h7_c00428{height:52.565625px;}
.h4_c00428{height:53.817187px;}
.h19_c00428{height:54.175781px;}
.h1f_c00428{height:55.068750px;}
.h18_c00428{height:56.531250px;}
.h29_c00428{height:56.946094px;}
.h3_c00428{height:59.449219px;}
.h5_c00428{height:60.075000px;}
.h15_c00428{height:63.829687px;}
.h2b_c00428{height:72.562500px;}
.h2_c00428{height:73.216406px;}
.he_c00428{height:75.093750px;}
.h22_c00428{height:75.375000px;}
.h2a_c00428{height:75.585938px;}
.h1c_c00428{height:76.971094px;}
.h12_c00428{height:87.272640px;}
.h1e_c00428{height:90.112500px;}
.h11_c00428{height:91.364062px;}
.h27_c00428{height:96.370313px;}
.h1a_c00428{height:102.002344px;}
.h20_c00428{height:106.584961px;}
.h6_c00428{height:109.330560px;}
.hf_c00428{height:120.717773px;}
.h10_c00428{height:130.162500px;}
.h1b_c00428{height:136.028320px;}
.h23_c00428{height:152.690625px;}
.h13_c00428{height:177.096094px;}
.h1_c00428{height:1263.000000px;}
.h0_c00428{height:1263.240000px;}
.w1_c00428{width:892.500000px;}
.w0_c00428{width:892.800000px;}
.x0_c00428{left:0.000000px;}
.xc_c00428{left:77.970000px;}
.x18_c00428{left:95.220000px;}
.x4_c00428{left:96.555000px;}
.x1_c00428{left:108.150000px;}
.x5_c00428{left:129.600000px;}
.x1e_c00428{left:138.030000px;}
.x1c_c00428{left:146.295000px;}
.x3e_c00428{left:159.345000px;}
.x1a_c00428{left:164.085000px;}
.xf_c00428{left:166.005000px;}
.x14_c00428{left:176.760000px;}
.x10_c00428{left:180.720000px;}
.xd_c00428{left:185.040000px;}
.x3f_c00428{left:186.420000px;}
.x19_c00428{left:188.295000px;}
.x15_c00428{left:198.360000px;}
.xa_c00428{left:200.460000px;}
.x16_c00428{left:205.800000px;}
.x17_c00428{left:207.780000px;}
.x1d_c00428{left:210.615000px;}
.xb_c00428{left:212.700000px;}
.x1b_c00428{left:214.425000px;}
.xe_c00428{left:220.170000px;}
.x11_c00428{left:230.145000px;}
.x12_c00428{left:240.330000px;}
.x2_c00428{left:245.700000px;}
.x6_c00428{left:253.560000px;}
.x3_c00428{left:256.005000px;}
.x7_c00428{left:257.850000px;}
.x8_c00428{left:263.415000px;}
.x13_c00428{left:265.950000px;}
.x9_c00428{left:270.870000px;}
.x40_c00428{left:280.950000px;}
.x41_c00428{left:343.605000px;}
.x42_c00428{left:365.295000px;}
.x1f_c00428{left:375.075000px;}
.x3a_c00428{left:383.835000px;}
.x43_c00428{left:389.685000px;}
.x38_c00428{left:427.065000px;}
.x32_c00428{left:445.695000px;}
.x33_c00428{left:454.200000px;}
.x44_c00428{left:466.365000px;}
.x3b_c00428{left:500.925000px;}
.x20_c00428{left:502.005000px;}
.x45_c00428{left:532.245000px;}
.x2f_c00428{left:540.210000px;}
.x46_c00428{left:554.220000px;}
.x30_c00428{left:556.485000px;}
.x31_c00428{left:561.930000px;}
.x47_c00428{left:568.050000px;}
.x26_c00428{left:579.315000px;}
.x39_c00428{left:586.905000px;}
.x34_c00428{left:596.880000px;}
.x27_c00428{left:599.490000px;}
.x2e_c00428{left:602.760000px;}
.x35_c00428{left:610.770000px;}
.x28_c00428{left:615.045000px;}
.x3c_c00428{left:629.865000px;}
.x21_c00428{left:631.665000px;}
.x36_c00428{left:636.435000px;}
.x29_c00428{left:643.110000px;}
.x37_c00428{left:644.670000px;}
.x2a_c00428{left:648.390000px;}
.x2b_c00428{left:651.705000px;}
.x2d_c00428{left:667.440000px;}
.x23_c00428{left:695.295000px;}
.x24_c00428{left:702.765000px;}
.x3d_c00428{left:758.775000px;}
.x22_c00428{left:760.215000px;}
.x2c_c00428{left:766.545000px;}
.x25_c00428{left:779.970000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls10_c00428{letter-spacing:-5.282667pt;}
.ls1b_c00428{letter-spacing:-4.554667pt;}
.lse_c00428{letter-spacing:-3.826667pt;}
.lsf_c00428{letter-spacing:-2.725333pt;}
.ls20_c00428{letter-spacing:-2.333333pt;}
.ls17_c00428{letter-spacing:-2.296000pt;}
.ls16_c00428{letter-spacing:-2.240000pt;}
.ls2_c00428{letter-spacing:-2.184000pt;}
.ls11_c00428{letter-spacing:-1.904000pt;}
.ls12_c00428{letter-spacing:-1.773333pt;}
.ls19_c00428{letter-spacing:-1.642667pt;}
.ls13_c00428{letter-spacing:-1.631467pt;}
.ls6_c00428{letter-spacing:-1.568000pt;}
.lsc_c00428{letter-spacing:-1.459200pt;}
.ls1e_c00428{letter-spacing:-1.256640pt;}
.ls14_c00428{letter-spacing:-1.064000pt;}
.ls1d_c00428{letter-spacing:-1.045333pt;}
.lsb_c00428{letter-spacing:-0.709352pt;}
.ls8_c00428{letter-spacing:-0.672000pt;}
.lsd_c00428{letter-spacing:-0.459200pt;}
.ls4_c00428{letter-spacing:0.000000pt;}
.ls0_c00428{letter-spacing:0.351579pt;}
.lsa_c00428{letter-spacing:0.506667pt;}
.ls1_c00428{letter-spacing:0.631680pt;}
.ls7_c00428{letter-spacing:1.044495pt;}
.ls1c_c00428{letter-spacing:1.120000pt;}
.ls9_c00428{letter-spacing:1.226667pt;}
.ls1f_c00428{letter-spacing:1.253333pt;}
.ls18_c00428{letter-spacing:1.706693pt;}
.ls1a_c00428{letter-spacing:1.836373pt;}
.ls15_c00428{letter-spacing:2.453333pt;}
.ls3_c00428{letter-spacing:2.533333pt;}
.ls5_c00428{letter-spacing:2.560000pt;}
.ws0_c00428{word-spacing:0.000000pt;}
._0_c00428{margin-left:-8.028834pt;}
._2_c00428{width:2.653867pt;}
._3_c00428{width:34.652053pt;}
._1_c00428{width:226.920960pt;}
._4_c00428{width:427.468800pt;}
.fsa_c00428{font-size:10.133333pt;}
.fs8_c00428{font-size:19.200000pt;}
.fsb_c00428{font-size:20.267200pt;}
.fs21_c00428{font-size:22.400000pt;}
.fsc_c00428{font-size:24.000533pt;}
.fs9_c00428{font-size:24.533333pt;}
.fs25_c00428{font-size:25.066667pt;}
.fs23_c00428{font-size:29.866667pt;}
.fs16_c00428{font-size:30.400000pt;}
.fs13_c00428{font-size:30.720000pt;}
.fs1b_c00428{font-size:34.133867pt;}
.fs7_c00428{font-size:36.267200pt;}
.fs3_c00428{font-size:36.800533pt;}
.fs22_c00428{font-size:43.520000pt;}
.fs6_c00428{font-size:44.800000pt;}
.fs27_c00428{font-size:45.333333pt;}
.fs2_c00428{font-size:45.866667pt;}
.fs1d_c00428{font-size:46.933333pt;}
.fs26_c00428{font-size:48.533333pt;}
.fs17_c00428{font-size:49.066667pt;}
.fs1_c00428{font-size:50.666667pt;}
.fs4_c00428{font-size:51.200000pt;}
.fs14_c00428{font-size:54.400000pt;}
.fs0_c00428{font-size:62.400000pt;}
.fsd_c00428{font-size:64.000000pt;}
.fs1a_c00428{font-size:65.600000pt;}
.fs28_c00428{font-size:66.666667pt;}
.fs15_c00428{font-size:67.840000pt;}
.fs1f_c00428{font-size:68.266667pt;}
.fs1c_c00428{font-size:76.800000pt;}
.fs10_c00428{font-size:77.866667pt;}
.fs24_c00428{font-size:82.133333pt;}
.fs18_c00428{font-size:86.933333pt;}
.fs1e_c00428{font-size:96.533333pt;}
.fse_c00428{font-size:109.333333pt;}
.fsf_c00428{font-size:110.933333pt;}
.fs11_c00428{font-size:116.480000pt;}
.fs19_c00428{font-size:123.200000pt;}
.fs20_c00428{font-size:130.133333pt;}
.fs5_c00428{font-size:145.920000pt;}
.fs12_c00428{font-size:150.933333pt;}
.y0_c00428{bottom:0.000000pt;}
.y22_c00428{bottom:243.213333pt;}
.y10_c00428{bottom:380.493333pt;}
.y1f_c00428{bottom:382.093333pt;}
.y1d_c00428{bottom:382.720000pt;}
.y11_c00428{bottom:383.053333pt;}
.y21_c00428{bottom:383.373333pt;}
.y1e_c00428{bottom:384.013333pt;}
.y1c_c00428{bottom:398.720000pt;}
.yc_c00428{bottom:476.173333pt;}
.y20_c00428{bottom:477.453333pt;}
.y1b_c00428{bottom:503.373333pt;}
.y18_c00428{bottom:510.400000pt;}
.y1a_c00428{bottom:512.973333pt;}
.yf_c00428{bottom:517.133333pt;}
.y19_c00428{bottom:522.880000pt;}
.ye_c00428{bottom:546.253333pt;}
.y17_c00428{bottom:552.013333pt;}
.yd_c00428{bottom:566.093333pt;}
.y16_c00428{bottom:604.173333pt;}
.yb_c00428{bottom:605.453333pt;}
.y15_c00428{bottom:606.400000pt;}
.ya_c00428{bottom:639.680000pt;}
.y7_c00428{bottom:730.573333pt;}
.y14_c00428{bottom:734.400000pt;}
.y9_c00428{bottom:736.640000pt;}
.y8_c00428{bottom:773.120000pt;}
.y6_c00428{bottom:792.013333pt;}
.y5_c00428{bottom:803.200000pt;}
.y4_c00428{bottom:847.040000pt;}
.y3_c00428{bottom:886.093333pt;}
.y1_c00428{bottom:960.640000pt;}
.y2_c00428{bottom:960.960000pt;}
.y13_c00428{bottom:961.280000pt;}
.y12_c00428{bottom:961.613333pt;}
.hb_c00428{height:10.568750pt;}
.hc_c00428{height:19.891148pt;}
.h9_c00428{height:20.025000pt;}
.h14_c00428{height:20.459520pt;}
.h24_c00428{height:21.973437pt;}
.hd_c00428{height:25.031806pt;}
.ha_c00428{height:25.587500pt;}
.h28_c00428{height:26.143750pt;}
.h25_c00428{height:28.984320pt;}
.h26_c00428{height:29.312500pt;}
.h17_c00428{height:29.835938pt;}
.h1d_c00428{height:33.500523pt;}
.h8_c00428{height:37.825556pt;}
.h21_c00428{height:43.968750pt;}
.h16_c00428{height:45.181440pt;}
.h7_c00428{height:46.725000pt;}
.h4_c00428{height:47.837500pt;}
.h19_c00428{height:48.156250pt;}
.h1f_c00428{height:48.950000pt;}
.h18_c00428{height:50.250000pt;}
.h29_c00428{height:50.618750pt;}
.h3_c00428{height:52.843750pt;}
.h5_c00428{height:53.400000pt;}
.h15_c00428{height:56.737500pt;}
.h2b_c00428{height:64.500000pt;}
.h2_c00428{height:65.081250pt;}
.he_c00428{height:66.750000pt;}
.h22_c00428{height:67.000000pt;}
.h2a_c00428{height:67.187500pt;}
.h1c_c00428{height:68.418750pt;}
.h12_c00428{height:77.575680pt;}
.h1e_c00428{height:80.100000pt;}
.h11_c00428{height:81.212500pt;}
.h27_c00428{height:85.662500pt;}
.h1a_c00428{height:90.668750pt;}
.h20_c00428{height:94.742188pt;}
.h6_c00428{height:97.182720pt;}
.hf_c00428{height:107.304688pt;}
.h10_c00428{height:115.700000pt;}
.h1b_c00428{height:120.914063pt;}
.h23_c00428{height:135.725000pt;}
.h13_c00428{height:157.418750pt;}
.h1_c00428{height:1122.666667pt;}
.h0_c00428{height:1122.880000pt;}
.w1_c00428{width:793.333333pt;}
.w0_c00428{width:793.600000pt;}
.x0_c00428{left:0.000000pt;}
.xc_c00428{left:69.306667pt;}
.x18_c00428{left:84.640000pt;}
.x4_c00428{left:85.826667pt;}
.x1_c00428{left:96.133333pt;}
.x5_c00428{left:115.200000pt;}
.x1e_c00428{left:122.693333pt;}
.x1c_c00428{left:130.040000pt;}
.x3e_c00428{left:141.640000pt;}
.x1a_c00428{left:145.853333pt;}
.xf_c00428{left:147.560000pt;}
.x14_c00428{left:157.120000pt;}
.x10_c00428{left:160.640000pt;}
.xd_c00428{left:164.480000pt;}
.x3f_c00428{left:165.706667pt;}
.x19_c00428{left:167.373333pt;}
.x15_c00428{left:176.320000pt;}
.xa_c00428{left:178.186667pt;}
.x16_c00428{left:182.933333pt;}
.x17_c00428{left:184.693333pt;}
.x1d_c00428{left:187.213333pt;}
.xb_c00428{left:189.066667pt;}
.x1b_c00428{left:190.600000pt;}
.xe_c00428{left:195.706667pt;}
.x11_c00428{left:204.573333pt;}
.x12_c00428{left:213.626667pt;}
.x2_c00428{left:218.400000pt;}
.x6_c00428{left:225.386667pt;}
.x3_c00428{left:227.560000pt;}
.x7_c00428{left:229.200000pt;}
.x8_c00428{left:234.146667pt;}
.x13_c00428{left:236.400000pt;}
.x9_c00428{left:240.773333pt;}
.x40_c00428{left:249.733333pt;}
.x41_c00428{left:305.426667pt;}
.x42_c00428{left:324.706667pt;}
.x1f_c00428{left:333.400000pt;}
.x3a_c00428{left:341.186667pt;}
.x43_c00428{left:346.386667pt;}
.x38_c00428{left:379.613333pt;}
.x32_c00428{left:396.173333pt;}
.x33_c00428{left:403.733333pt;}
.x44_c00428{left:414.546667pt;}
.x3b_c00428{left:445.266667pt;}
.x20_c00428{left:446.226667pt;}
.x45_c00428{left:473.106667pt;}
.x2f_c00428{left:480.186667pt;}
.x46_c00428{left:492.640000pt;}
.x30_c00428{left:494.653333pt;}
.x31_c00428{left:499.493333pt;}
.x47_c00428{left:504.933333pt;}
.x26_c00428{left:514.946667pt;}
.x39_c00428{left:521.693333pt;}
.x34_c00428{left:530.560000pt;}
.x27_c00428{left:532.880000pt;}
.x2e_c00428{left:535.786667pt;}
.x35_c00428{left:542.906667pt;}
.x28_c00428{left:546.706667pt;}
.x3c_c00428{left:559.880000pt;}
.x21_c00428{left:561.480000pt;}
.x36_c00428{left:565.720000pt;}
.x29_c00428{left:571.653333pt;}
.x37_c00428{left:573.040000pt;}
.x2a_c00428{left:576.346667pt;}
.x2b_c00428{left:579.293333pt;}
.x2d_c00428{left:593.280000pt;}
.x23_c00428{left:618.040000pt;}
.x24_c00428{left:624.680000pt;}
.x3d_c00428{left:674.466667pt;}
.x22_c00428{left:675.746667pt;}
.x2c_c00428{left:681.373333pt;}
.x25_c00428{left:693.306667pt;}
}





/* 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_c00429 {
    display:none;
  }
  .loading-indicator_c00429.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00429 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_c00429 { 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_c00429" -> "#page-container .classname_c00429")
 */
.pf_c00429 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00429 { /* 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_c00429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00429 { /* 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_c00429 { /* 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_c00429 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00429 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00429 {overflow:visible;}
  }
}
.c_c00429 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00429 { /* 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_c00429:after { /* webkit #35443 */
  content: '';
}
.t_c00429:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00429 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 */
}
.__c00429 { /* 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_c00429 { /* info for Javascript */
  display:none;
}
.l_c00429 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00429 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00429 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00429: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_c00429 {
    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_c00429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00429.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_c00429 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00429{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00429;src:url('chunks/assets/font_cb626070834e703aa5f13c4d.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;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:ff2_c00429;src:url('chunks/assets/font_013c91e26e1914de9a3bf492.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.284668;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_c00429;src:url('chunks/assets/font_d52810822a5600c4305c7d88.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;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:ff4_c00429;src:url('chunks/assets/font_ab71571aec3a487123ecb627.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:0.666000;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_c00429;src:url('chunks/assets/font_d2e1eeac2ff7b10eebd4d725.woff2')format("woff");}.ff5_c00429{font-family:ff5_c00429;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:ff6_c00429;src:url('chunks/assets/font_d1beeec6b980d38849aca11a.woff2')format("woff");}.ff6_c00429{font-family:ff6_c00429;line-height:1.311035;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;}
.m5_c00429{transform:matrix(0.058333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058333,0.000000,0.000000,0.250000,0,0);}
.m28_c00429{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00429{transform:matrix(0.065788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065788,0.000000,0.000000,0.250000,0,0);}
.m19_c00429{transform:matrix(0.072367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072367,0.000000,0.000000,0.250000,0,0);}
.m11_c00429{transform:matrix(0.074159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074159,0.000000,0.000000,0.250000,0,0);}
.ma_c00429{transform:matrix(0.078946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078946,0.000000,0.000000,0.250000,0,0);}
.m9_c00429{transform:matrix(0.105261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105261,0.000000,0.000000,0.250000,0,0);}
.m6_c00429{transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);}
.m14_c00429{transform:matrix(0.121903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121903,0.000000,0.000000,0.250000,0,0);}
.m17_c00429{transform:matrix(0.134455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134455,0.000000,0.000000,0.250000,0,0);}
.m7_c00429{transform:matrix(0.139781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139781,0.000000,0.000000,0.250000,0,0);}
.m15_c00429{transform:matrix(0.146608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146608,0.000000,0.000000,0.250000,0,0);}
.m16_c00429{transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);}
.m3a_c00429{transform:matrix(0.167871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167871,0.000000,0.000000,0.250000,0,0);}
.me_c00429{transform:matrix(0.169844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169844,0.000000,0.000000,0.250000,0,0);}
.m8_c00429{transform:matrix(0.170538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170538,0.000000,0.000000,0.250000,0,0);}
.m2c_c00429{transform:matrix(0.170947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170947,0.000000,0.000000,0.250000,0,0);}
.m31_c00429{transform:matrix(0.180646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180646,0.000000,0.000000,0.250000,0,0);}
.m2b_c00429{transform:matrix(0.193298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193298,0.000000,0.000000,0.250000,0,0);}
.mf_c00429{transform:matrix(0.196763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196763,0.000000,0.000000,0.250000,0,0);}
.m10_c00429{transform:matrix(0.197182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197182,0.000000,0.000000,0.250000,0,0);}
.m18_c00429{transform:matrix(0.199141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199141,0.000000,0.000000,0.250000,0,0);}
.m1a_c00429{transform:matrix(0.203487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203487,0.000000,0.000000,0.250000,0,0);}
.m2d_c00429{transform:matrix(0.204234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204234,0.000000,0.000000,0.250000,0,0);}
.m1d_c00429{transform:matrix(0.214227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214227,0.000000,0.000000,0.250000,0,0);}
.m1c_c00429{transform:matrix(0.219847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219847,0.000000,0.000000,0.250000,0,0);}
.md_c00429{transform:matrix(0.229019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229019,0.000000,0.000000,0.250000,0,0);}
.m2a_c00429{transform:matrix(0.241647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241647,0.000000,0.000000,0.250000,0,0);}
.m21_c00429{transform:matrix(0.241811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241811,0.000000,0.000000,0.250000,0,0);}
.m13_c00429{transform:matrix(0.247083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247083,0.000000,0.000000,0.250000,0,0);}
.m0_c00429{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);}
.m39_c00429{transform:matrix(0.251094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251094,0.000000,0.000000,0.250000,0,0);}
.m2e_c00429{transform:matrix(0.252532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252532,0.000000,0.000000,0.250000,0,0);}
.mc_c00429{transform:matrix(0.257388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257388,0.000000,0.000000,0.250000,0,0);}
.m1_c00429{transform:matrix(0.257644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257644,0.000000,0.000000,0.250000,0,0);}
.m33_c00429{transform:matrix(0.260126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260126,0.000000,0.000000,0.250000,0,0);}
.m29_c00429{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m20_c00429{transform:matrix(0.262191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262191,0.000000,0.000000,0.250000,0,0);}
.m38_c00429{transform:matrix(0.262245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262245,0.000000,0.000000,0.250000,0,0);}
.m22_c00429{transform:matrix(0.270539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270539,0.000000,0.000000,0.250000,0,0);}
.m1f_c00429{transform:matrix(0.270542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270542,0.000000,0.000000,0.250000,0,0);}
.m35_c00429{transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);}
.m36_c00429{transform:matrix(0.275429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275429,0.000000,0.000000,0.250000,0,0);}
.m37_c00429{transform:matrix(0.279708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279708,0.000000,0.000000,0.250000,0,0);}
.m34_c00429{transform:matrix(0.279713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279713,0.000000,0.000000,0.250000,0,0);}
.m3_c00429{transform:matrix(0.282348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282348,0.000000,0.000000,0.250000,0,0);}
.mb_c00429{transform:matrix(0.296153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296153,0.000000,0.000000,0.250000,0,0);}
.m1e_c00429{transform:matrix(0.317154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317154,0.000000,0.000000,0.250000,0,0);}
.m23_c00429{transform:matrix(0.348662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348662,0.000000,0.000000,0.250000,0,0);}
.m32_c00429{transform:matrix(0.369317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369317,0.000000,0.000000,0.250000,0,0);}
.m25_c00429{transform:matrix(0.411368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411368,0.000000,0.000000,0.250000,0,0);}
.m26_c00429{transform:matrix(0.419515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419515,0.000000,0.000000,0.250000,0,0);}
.m30_c00429{transform:matrix(0.431317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431317,0.000000,0.000000,0.250000,0,0);}
.m12_c00429{transform:matrix(0.431953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431953,0.000000,0.000000,0.250000,0,0);}
.m27_c00429{transform:matrix(0.442118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442118,0.000000,0.000000,0.250000,0,0);}
.m2_c00429{transform:matrix(0.446103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446103,0.000000,0.000000,0.250000,0,0);}
.m4_c00429{transform:matrix(0.664875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664875,0.000000,0.000000,0.250000,0,0);}
.m24_c00429{transform:matrix(0.765397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765397,0.000000,0.000000,0.250000,0,0);}
.m2f_c00429{transform:matrix(0.798399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798399,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls14_c00429{letter-spacing:-5.208000px;}
.lsf_c00429{letter-spacing:-4.620000px;}
.ls2d_c00429{letter-spacing:-2.436000px;}
.ls26_c00429{letter-spacing:-2.268000px;}
.ls1b_c00429{letter-spacing:-2.121000px;}
.ls1f_c00429{letter-spacing:-2.079000px;}
.ls22_c00429{letter-spacing:-1.974000px;}
.ls13_c00429{letter-spacing:-1.953000px;}
.ls15_c00429{letter-spacing:-1.911000px;}
.ls1c_c00429{letter-spacing:-1.575021px;}
.ls10_c00429{letter-spacing:-1.428021px;}
.ls18_c00429{letter-spacing:-1.407000px;}
.ls17_c00429{letter-spacing:-0.756000px;}
.ls19_c00429{letter-spacing:-0.504021px;}
.ls29_c00429{letter-spacing:-0.382327px;}
.ls21_c00429{letter-spacing:-0.357000px;}
.ls9_c00429{letter-spacing:-0.110400px;}
.lse_c00429{letter-spacing:0.000000px;}
.ls2_c00429{letter-spacing:0.189660px;}
.ls24_c00429{letter-spacing:0.259740px;}
.ls20_c00429{letter-spacing:0.510000px;}
.ls27_c00429{letter-spacing:0.686893px;}
.ls1a_c00429{letter-spacing:0.737100px;}
.ls25_c00429{letter-spacing:0.810030px;}
.ls2a_c00429{letter-spacing:0.926657px;}
.lsb_c00429{letter-spacing:0.966436px;}
.ls1_c00429{letter-spacing:1.001179px;}
.ls0_c00429{letter-spacing:1.244183px;}
.ls4_c00429{letter-spacing:1.275300px;}
.ls8_c00429{letter-spacing:1.321080px;}
.ls2b_c00429{letter-spacing:1.438800px;}
.ls5_c00429{letter-spacing:1.464960px;}
.ls1d_c00429{letter-spacing:1.560000px;}
.ls28_c00429{letter-spacing:1.620030px;}
.ls23_c00429{letter-spacing:1.650030px;}
.lsc_c00429{letter-spacing:1.680000px;}
.lsa_c00429{letter-spacing:1.770030px;}
.ls6_c00429{letter-spacing:2.125500px;}
.ls3_c00429{letter-spacing:2.321700px;}
.lsd_c00429{letter-spacing:2.460000px;}
.ls7_c00429{letter-spacing:2.472120px;}
.ls16_c00429{letter-spacing:2.730000px;}
.ls12_c00429{letter-spacing:2.820000px;}
.ls1e_c00429{letter-spacing:2.850000px;}
.ls2c_c00429{letter-spacing:3.270000px;}
.ls11_c00429{letter-spacing:3.330000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{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__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00429{word-spacing:0.000000px;}
._4_c00429{margin-left:-12.378293px;}
._3_c00429{margin-left:-7.758598px;}
._2_c00429{margin-left:-4.536600px;}
._1_c00429{margin-left:-3.324000px;}
._9_c00429{margin-left:-2.060100px;}
._8_c00429{width:1.549980px;}
._0_c00429{width:27.136483px;}
._6_c00429{width:491.939700px;}
._5_c00429{width:494.697266px;}
._7_c00429{width:496.336800px;}
.fc0_c00429{color:transparent;}
.fs8_c00429{font-size:10.200000px;}
.fs10_c00429{font-size:14.400600px;}
.fs1e_c00429{font-size:16.200600px;}
.fse_c00429{font-size:21.600000px;}
.fs7_c00429{font-size:27.360600px;}
.fs18_c00429{font-size:31.200000px;}
.fs20_c00429{font-size:32.400600px;}
.fs1d_c00429{font-size:33.000600px;}
.fs2_c00429{font-size:33.600000px;}
.fs1b_c00429{font-size:34.560000px;}
.fs1_c00429{font-size:35.400600px;}
.fs21_c00429{font-size:37.200000px;}
.fsf_c00429{font-size:40.200000px;}
.fs6_c00429{font-size:40.800600px;}
.fs1c_c00429{font-size:41.400600px;}
.fs16_c00429{font-size:45.000600px;}
.fs3_c00429{font-size:49.200000px;}
.fs15_c00429{font-size:51.000000px;}
.fs17_c00429{font-size:52.200000px;}
.fsd_c00429{font-size:54.600000px;}
.fsb_c00429{font-size:55.800000px;}
.fsa_c00429{font-size:56.400000px;}
.fs19_c00429{font-size:57.000000px;}
.fs11_c00429{font-size:57.600000px;}
.fs1a_c00429{font-size:59.400000px;}
.fs14_c00429{font-size:60.600000px;}
.fs1f_c00429{font-size:64.800000px;}
.fs22_c00429{font-size:65.400000px;}
.fs9_c00429{font-size:66.600000px;}
.fs0_c00429{font-size:69.000000px;}
.fs23_c00429{font-size:69.600000px;}
.fs13_c00429{font-size:70.200000px;}
.fs4_c00429{font-size:83.520000px;}
.fs12_c00429{font-size:94.200000px;}
.fs5_c00429{font-size:132.000000px;}
.fsc_c00429{font-size:148.800000px;}
.y0_c00429{bottom:0.000000px;}
.y29_c00429{bottom:270.375000px;}
.y23_c00429{bottom:424.455000px;}
.y27_c00429{bottom:425.895000px;}
.y25_c00429{bottom:426.615000px;}
.y24_c00429{bottom:426.975000px;}
.y28_c00429{bottom:427.320000px;}
.y26_c00429{bottom:427.695000px;}
.y22_c00429{bottom:444.975000px;}
.y16_c00429{bottom:532.455000px;}
.y21_c00429{bottom:533.535000px;}
.y15_c00429{bottom:675.720000px;}
.y20_c00429{bottom:676.095000px;}
.y1f_c00429{bottom:678.615000px;}
.y1e_c00429{bottom:747.015000px;}
.y14_c00429{bottom:789.855000px;}
.y13_c00429{bottom:796.695000px;}
.yf_c00429{bottom:817.200000px;}
.y1d_c00429{bottom:819.720000px;}
.y12_c00429{bottom:821.175000px;}
.y11_c00429{bottom:828.375000px;}
.y10_c00429{bottom:840.240000px;}
.ye_c00429{bottom:865.815000px;}
.yd_c00429{bottom:891.720000px;}
.yb_c00429{bottom:900.015000px;}
.yc_c00429{bottom:900.375000px;}
.ya_c00429{bottom:919.440000px;}
.y9_c00429{bottom:933.495000px;}
.y1c_c00429{bottom:945.375000px;}
.y8_c00429{bottom:961.920000px;}
.y1b_c00429{bottom:965.895000px;}
.y7_c00429{bottom:977.055000px;}
.y1a_c00429{bottom:987.135000px;}
.y6_c00429{bottom:994.335000px;}
.y19_c00429{bottom:1003.335000px;}
.y5_c00429{bottom:1008.015000px;}
.y3_c00429{bottom:1076.400000px;}
.y1_c00429{bottom:1077.135000px;}
.y17_c00429{bottom:1078.200000px;}
.y18_c00429{bottom:1078.560000px;}
.y4_c00429{bottom:1081.080000px;}
.y2_c00429{bottom:1083.240000px;}
.h1c_c00429{height:10.010742px;}
.ha_c00429{height:10.638281px;}
.h12_c00429{height:14.133401px;}
.h20_c00429{height:16.896720px;}
.h9_c00429{height:18.222160px;}
.h10_c00429{height:22.528125px;}
.h1d_c00429{height:23.016960px;}
.h19_c00429{height:32.540625px;}
.h4_c00429{height:32.976562px;}
.h22_c00429{height:33.792813px;}
.h1f_c00429{height:34.418595px;}
.h3_c00429{height:34.743753px;}
.h23_c00429{height:38.798438px;}
.h11_c00429{height:39.454102px;}
.h8_c00429{height:42.553751px;}
.h1e_c00429{height:43.179532px;}
.h17_c00429{height:46.934220px;}
.h16_c00429{height:50.053711px;}
.h5_c00429{height:51.314062px;}
.hf_c00429{height:53.586914px;}
.h18_c00429{height:54.442969px;}
.h6_c00429{height:55.624320px;}
.hd_c00429{height:58.197656px;}
.hc_c00429{height:58.823438px;}
.h1a_c00429{height:59.449219px;}
.h15_c00429{height:59.475586px;}
.h1b_c00429{height:61.952344px;}
.h21_c00429{height:63.597656px;}
.h24_c00429{height:65.910938px;}
.hb_c00429{height:69.461719px;}
.h25_c00429{height:70.143750px;}
.h2_c00429{height:71.964844px;}
.h14_c00429{height:73.216406px;}
.h13_c00429{height:92.452148px;}
.h7_c00429{height:137.671875px;}
.he_c00429{height:146.039062px;}
.h1_c00429{height:1263.000000px;}
.h0_c00429{height:1263.240000px;}
.w1_c00429{width:892.500000px;}
.w0_c00429{width:892.800000px;}
.x0_c00429{left:0.000000px;}
.x17_c00429{left:78.690000px;}
.x21_c00429{left:95.940000px;}
.xa_c00429{left:97.815000px;}
.x1_c00429{left:108.525000px;}
.xb_c00429{left:130.335000px;}
.x1a_c00429{left:172.095000px;}
.x1b_c00429{left:177.240000px;}
.x18_c00429{left:179.085000px;}
.x1c_c00429{left:185.055000px;}
.x1d_c00429{left:193.425000px;}
.x19_c00429{left:195.120000px;}
.x16_c00429{left:198.495000px;}
.xf_c00429{left:201.975000px;}
.x10_c00429{left:203.340000px;}
.x13_c00429{left:205.860000px;}
.x11_c00429{left:211.035000px;}
.x14_c00429{left:214.830000px;}
.x1e_c00429{left:218.565000px;}
.x20_c00429{left:219.660000px;}
.x1f_c00429{left:242.700000px;}
.x2_c00429{left:247.230000px;}
.xe_c00429{left:253.905000px;}
.x3_c00429{left:256.575000px;}
.x15_c00429{left:272.505000px;}
.x12_c00429{left:296.865000px;}
.xc_c00429{left:305.745000px;}
.xd_c00429{left:315.810000px;}
.x5_c00429{left:341.655000px;}
.x7_c00429{left:371.085000px;}
.x4_c00429{left:376.290000px;}
.x8_c00429{left:385.200000px;}
.x6_c00429{left:419.385000px;}
.x9_c00429{left:428.415000px;}
.x22_c00429{left:502.620000px;}
.x25_c00429{left:566.610000px;}
.x26_c00429{left:568.755000px;}
.x27_c00429{left:575.085000px;}
.x28_c00429{left:580.965000px;}
.x37_c00429{left:587.715000px;}
.x29_c00429{left:589.650000px;}
.x2a_c00429{left:596.100000px;}
.x2b_c00429{left:600.495000px;}
.x38_c00429{left:601.890000px;}
.x2e_c00429{left:603.420000px;}
.x2c_c00429{left:611.610000px;}
.x34_c00429{left:613.590000px;}
.x2d_c00429{left:617.370000px;}
.x30_c00429{left:622.170000px;}
.x31_c00429{left:629.640000px;}
.x35_c00429{left:630.945000px;}
.x23_c00429{left:633.105000px;}
.x32_c00429{left:659.070000px;}
.x33_c00429{left:669.600000px;}
.x36_c00429{left:760.920000px;}
.x24_c00429{left:762.735000px;}
.x2f_c00429{left:782.535000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls14_c00429{letter-spacing:-4.629333pt;}
.lsf_c00429{letter-spacing:-4.106667pt;}
.ls2d_c00429{letter-spacing:-2.165333pt;}
.ls26_c00429{letter-spacing:-2.016000pt;}
.ls1b_c00429{letter-spacing:-1.885333pt;}
.ls1f_c00429{letter-spacing:-1.848000pt;}
.ls22_c00429{letter-spacing:-1.754667pt;}
.ls13_c00429{letter-spacing:-1.736000pt;}
.ls15_c00429{letter-spacing:-1.698667pt;}
.ls1c_c00429{letter-spacing:-1.400019pt;}
.ls10_c00429{letter-spacing:-1.269352pt;}
.ls18_c00429{letter-spacing:-1.250667pt;}
.ls17_c00429{letter-spacing:-0.672000pt;}
.ls19_c00429{letter-spacing:-0.448019pt;}
.ls29_c00429{letter-spacing:-0.339846pt;}
.ls21_c00429{letter-spacing:-0.317333pt;}
.ls9_c00429{letter-spacing:-0.098133pt;}
.lse_c00429{letter-spacing:0.000000pt;}
.ls2_c00429{letter-spacing:0.168587pt;}
.ls24_c00429{letter-spacing:0.230880pt;}
.ls20_c00429{letter-spacing:0.453333pt;}
.ls27_c00429{letter-spacing:0.610571pt;}
.ls1a_c00429{letter-spacing:0.655200pt;}
.ls25_c00429{letter-spacing:0.720027pt;}
.ls2a_c00429{letter-spacing:0.823695pt;}
.lsb_c00429{letter-spacing:0.859055pt;}
.ls1_c00429{letter-spacing:0.889936pt;}
.ls0_c00429{letter-spacing:1.105940pt;}
.ls4_c00429{letter-spacing:1.133600pt;}
.ls8_c00429{letter-spacing:1.174293pt;}
.ls2b_c00429{letter-spacing:1.278933pt;}
.ls5_c00429{letter-spacing:1.302187pt;}
.ls1d_c00429{letter-spacing:1.386667pt;}
.ls28_c00429{letter-spacing:1.440027pt;}
.ls23_c00429{letter-spacing:1.466693pt;}
.lsc_c00429{letter-spacing:1.493333pt;}
.lsa_c00429{letter-spacing:1.573360pt;}
.ls6_c00429{letter-spacing:1.889333pt;}
.ls3_c00429{letter-spacing:2.063733pt;}
.lsd_c00429{letter-spacing:2.186667pt;}
.ls7_c00429{letter-spacing:2.197440pt;}
.ls16_c00429{letter-spacing:2.426667pt;}
.ls12_c00429{letter-spacing:2.506667pt;}
.ls1e_c00429{letter-spacing:2.533333pt;}
.ls2c_c00429{letter-spacing:2.906667pt;}
.ls11_c00429{letter-spacing:2.960000pt;}
.ws0_c00429{word-spacing:0.000000pt;}
._4_c00429{margin-left:-11.002927pt;}
._3_c00429{margin-left:-6.896532pt;}
._2_c00429{margin-left:-4.032533pt;}
._1_c00429{margin-left:-2.954667pt;}
._9_c00429{margin-left:-1.831200pt;}
._8_c00429{width:1.377760pt;}
._0_c00429{width:24.121318pt;}
._6_c00429{width:437.279733pt;}
._5_c00429{width:439.730903pt;}
._7_c00429{width:441.188267pt;}
.fs8_c00429{font-size:9.066667pt;}
.fs10_c00429{font-size:12.800533pt;}
.fs1e_c00429{font-size:14.400533pt;}
.fse_c00429{font-size:19.200000pt;}
.fs7_c00429{font-size:24.320533pt;}
.fs18_c00429{font-size:27.733333pt;}
.fs20_c00429{font-size:28.800533pt;}
.fs1d_c00429{font-size:29.333867pt;}
.fs2_c00429{font-size:29.866667pt;}
.fs1b_c00429{font-size:30.720000pt;}
.fs1_c00429{font-size:31.467200pt;}
.fs21_c00429{font-size:33.066667pt;}
.fsf_c00429{font-size:35.733333pt;}
.fs6_c00429{font-size:36.267200pt;}
.fs1c_c00429{font-size:36.800533pt;}
.fs16_c00429{font-size:40.000533pt;}
.fs3_c00429{font-size:43.733333pt;}
.fs15_c00429{font-size:45.333333pt;}
.fs17_c00429{font-size:46.400000pt;}
.fsd_c00429{font-size:48.533333pt;}
.fsb_c00429{font-size:49.600000pt;}
.fsa_c00429{font-size:50.133333pt;}
.fs19_c00429{font-size:50.666667pt;}
.fs11_c00429{font-size:51.200000pt;}
.fs1a_c00429{font-size:52.800000pt;}
.fs14_c00429{font-size:53.866667pt;}
.fs1f_c00429{font-size:57.600000pt;}
.fs22_c00429{font-size:58.133333pt;}
.fs9_c00429{font-size:59.200000pt;}
.fs0_c00429{font-size:61.333333pt;}
.fs23_c00429{font-size:61.866667pt;}
.fs13_c00429{font-size:62.400000pt;}
.fs4_c00429{font-size:74.240000pt;}
.fs12_c00429{font-size:83.733333pt;}
.fs5_c00429{font-size:117.333333pt;}
.fsc_c00429{font-size:132.266667pt;}
.y0_c00429{bottom:0.000000pt;}
.y29_c00429{bottom:240.333333pt;}
.y23_c00429{bottom:377.293333pt;}
.y27_c00429{bottom:378.573333pt;}
.y25_c00429{bottom:379.213333pt;}
.y24_c00429{bottom:379.533333pt;}
.y28_c00429{bottom:379.840000pt;}
.y26_c00429{bottom:380.173333pt;}
.y22_c00429{bottom:395.533333pt;}
.y16_c00429{bottom:473.293333pt;}
.y21_c00429{bottom:474.253333pt;}
.y15_c00429{bottom:600.640000pt;}
.y20_c00429{bottom:600.973333pt;}
.y1f_c00429{bottom:603.213333pt;}
.y1e_c00429{bottom:664.013333pt;}
.y14_c00429{bottom:702.093333pt;}
.y13_c00429{bottom:708.173333pt;}
.yf_c00429{bottom:726.400000pt;}
.y1d_c00429{bottom:728.640000pt;}
.y12_c00429{bottom:729.933333pt;}
.y11_c00429{bottom:736.333333pt;}
.y10_c00429{bottom:746.880000pt;}
.ye_c00429{bottom:769.613333pt;}
.yd_c00429{bottom:792.640000pt;}
.yb_c00429{bottom:800.013333pt;}
.yc_c00429{bottom:800.333333pt;}
.ya_c00429{bottom:817.280000pt;}
.y9_c00429{bottom:829.773333pt;}
.y1c_c00429{bottom:840.333333pt;}
.y8_c00429{bottom:855.040000pt;}
.y1b_c00429{bottom:858.573333pt;}
.y7_c00429{bottom:868.493333pt;}
.y1a_c00429{bottom:877.453333pt;}
.y6_c00429{bottom:883.853333pt;}
.y19_c00429{bottom:891.853333pt;}
.y5_c00429{bottom:896.013333pt;}
.y3_c00429{bottom:956.800000pt;}
.y1_c00429{bottom:957.453333pt;}
.y17_c00429{bottom:958.400000pt;}
.y18_c00429{bottom:958.720000pt;}
.y4_c00429{bottom:960.960000pt;}
.y2_c00429{bottom:962.880000pt;}
.h1c_c00429{height:8.898438pt;}
.ha_c00429{height:9.456250pt;}
.h12_c00429{height:12.563023pt;}
.h20_c00429{height:15.019306pt;}
.h9_c00429{height:16.197475pt;}
.h10_c00429{height:20.025000pt;}
.h1d_c00429{height:20.459520pt;}
.h19_c00429{height:28.925000pt;}
.h4_c00429{height:29.312500pt;}
.h22_c00429{height:30.038056pt;}
.h1f_c00429{height:30.594306pt;}
.h3_c00429{height:30.883336pt;}
.h23_c00429{height:34.487500pt;}
.h11_c00429{height:35.070312pt;}
.h8_c00429{height:37.825556pt;}
.h1e_c00429{height:38.381806pt;}
.h17_c00429{height:41.719306pt;}
.h16_c00429{height:44.492188pt;}
.h5_c00429{height:45.612500pt;}
.hf_c00429{height:47.632812pt;}
.h18_c00429{height:48.393750pt;}
.h6_c00429{height:49.443840pt;}
.hd_c00429{height:51.731250pt;}
.hc_c00429{height:52.287500pt;}
.h1a_c00429{height:52.843750pt;}
.h15_c00429{height:52.867187pt;}
.h1b_c00429{height:55.068750pt;}
.h21_c00429{height:56.531250pt;}
.h24_c00429{height:58.587500pt;}
.hb_c00429{height:61.743750pt;}
.h25_c00429{height:62.350000pt;}
.h2_c00429{height:63.968750pt;}
.h14_c00429{height:65.081250pt;}
.h13_c00429{height:82.179687pt;}
.h7_c00429{height:122.375000pt;}
.he_c00429{height:129.812500pt;}
.h1_c00429{height:1122.666667pt;}
.h0_c00429{height:1122.880000pt;}
.w1_c00429{width:793.333333pt;}
.w0_c00429{width:793.600000pt;}
.x0_c00429{left:0.000000pt;}
.x17_c00429{left:69.946667pt;}
.x21_c00429{left:85.280000pt;}
.xa_c00429{left:86.946667pt;}
.x1_c00429{left:96.466667pt;}
.xb_c00429{left:115.853333pt;}
.x1a_c00429{left:152.973333pt;}
.x1b_c00429{left:157.546667pt;}
.x18_c00429{left:159.186667pt;}
.x1c_c00429{left:164.493333pt;}
.x1d_c00429{left:171.933333pt;}
.x19_c00429{left:173.440000pt;}
.x16_c00429{left:176.440000pt;}
.xf_c00429{left:179.533333pt;}
.x10_c00429{left:180.746667pt;}
.x13_c00429{left:182.986667pt;}
.x11_c00429{left:187.586667pt;}
.x14_c00429{left:190.960000pt;}
.x1e_c00429{left:194.280000pt;}
.x20_c00429{left:195.253333pt;}
.x1f_c00429{left:215.733333pt;}
.x2_c00429{left:219.760000pt;}
.xe_c00429{left:225.693333pt;}
.x3_c00429{left:228.066667pt;}
.x15_c00429{left:242.226667pt;}
.x12_c00429{left:263.880000pt;}
.xc_c00429{left:271.773333pt;}
.xd_c00429{left:280.720000pt;}
.x5_c00429{left:303.693333pt;}
.x7_c00429{left:329.853333pt;}
.x4_c00429{left:334.480000pt;}
.x8_c00429{left:342.400000pt;}
.x6_c00429{left:372.786667pt;}
.x9_c00429{left:380.813333pt;}
.x22_c00429{left:446.773333pt;}
.x25_c00429{left:503.653333pt;}
.x26_c00429{left:505.560000pt;}
.x27_c00429{left:511.186667pt;}
.x28_c00429{left:516.413333pt;}
.x37_c00429{left:522.413333pt;}
.x29_c00429{left:524.133333pt;}
.x2a_c00429{left:529.866667pt;}
.x2b_c00429{left:533.773333pt;}
.x38_c00429{left:535.013333pt;}
.x2e_c00429{left:536.373333pt;}
.x2c_c00429{left:543.653333pt;}
.x34_c00429{left:545.413333pt;}
.x2d_c00429{left:548.773333pt;}
.x30_c00429{left:553.040000pt;}
.x31_c00429{left:559.680000pt;}
.x35_c00429{left:560.840000pt;}
.x23_c00429{left:562.760000pt;}
.x32_c00429{left:585.840000pt;}
.x33_c00429{left:595.200000pt;}
.x36_c00429{left:676.373333pt;}
.x24_c00429{left:677.986667pt;}
.x2f_c00429{left:695.586667pt;}
}





/* 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_c00430 {
    display:none;
  }
  .loading-indicator_c00430.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00430 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_c00430 { 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_c00430" -> "#page-container .classname_c00430")
 */
.pf_c00430 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00430 { /* 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_c00430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00430 { /* 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_c00430 { /* 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_c00430 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00430 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00430 {overflow:visible;}
  }
}
.c_c00430 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00430 { /* 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_c00430:after { /* webkit #35443 */
  content: '';
}
.t_c00430:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00430 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 */
}
.__c00430 { /* 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_c00430 { /* info for Javascript */
  display:none;
}
.l_c00430 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00430 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00430 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00430: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_c00430 {
    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_c00430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00430.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_c00430 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00430{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00430;src:url('chunks/assets/font_678e6dc86d3fb73db9b38568.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;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:ff2_c00430;src:url('chunks/assets/font_9f9c0a424ce19a7d2018e5f8.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.284668;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_c00430;src:url('chunks/assets/font_9924ccd7d244483b69fc369f.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.311035;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_c00430;src:url('chunks/assets/font_ba38b342d1456c44dbe285dd.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:0.666000;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_c00430;src:url('chunks/assets/font_38d83cdb2263f79daba91384.woff2')format("woff");}.ff5_c00430{font-family:ff5_c00430;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:ff6_c00430;src:url('chunks/assets/font_b4557145c5dc0465df0a108f.woff2')format("woff");}.ff6_c00430{font-family:ff6_c00430;line-height:1.284180;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_c00430;src:url('chunks/assets/font_cb5e11628a70677997fd481a.woff2')format("woff");}.ff7_c00430{font-family:ff7_c00430;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;}
.m2d_c00430{transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);}
.m2a_c00430{transform:matrix(0.047101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047101,0.000000,0.000000,0.250000,0,0);}
.m3a_c00430{transform:matrix(0.047615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047615,0.000000,0.000000,0.250000,0,0);}
.m29_c00430{transform:matrix(0.052538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052538,0.000000,0.000000,0.250000,0,0);}
.m39_c00430{transform:matrix(0.058998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058998,0.000000,0.000000,0.250000,0,0);}
.m3c_c00430{transform:matrix(0.060842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060842,0.000000,0.000000,0.250000,0,0);}
.m1a_c00430{transform:matrix(0.063575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063575,0.000000,0.000000,0.250000,0,0);}
.mf_c00430{transform:matrix(0.066990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066990,0.000000,0.000000,0.250000,0,0);}
.mb_c00430{transform:matrix(0.087285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087285,0.000000,0.000000,0.250000,0,0);}
.m10_c00430{transform:matrix(0.096161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096161,0.000000,0.000000,0.250000,0,0);}
.m6_c00430{transform:matrix(0.100460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100460,0.000000,0.000000,0.250000,0,0);}
.m2f_c00430{transform:matrix(0.104895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104895,0.000000,0.000000,0.250000,0,0);}
.m28_c00430{transform:matrix(0.113693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113693,0.000000,0.000000,0.250000,0,0);}
.m5_c00430{transform:matrix(0.121955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121955,0.000000,0.000000,0.250000,0,0);}
.me_c00430{transform:matrix(0.123178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123178,0.000000,0.000000,0.250000,0,0);}
.m15_c00430{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m32_c00430{transform:matrix(0.135634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135634,0.000000,0.000000,0.250000,0,0);}
.m2b_c00430{transform:matrix(0.135656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135656,0.000000,0.000000,0.250000,0,0);}
.m1d_c00430{transform:matrix(0.138335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138335,0.000000,0.000000,0.250000,0,0);}
.md_c00430{transform:matrix(0.141565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141565,0.000000,0.000000,0.250000,0,0);}
.m30_c00430{transform:matrix(0.144096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144096,0.000000,0.000000,0.250000,0,0);}
.m36_c00430{transform:matrix(0.150493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150493,0.000000,0.000000,0.250000,0,0);}
.m1e_c00430{transform:matrix(0.150723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150723,0.000000,0.000000,0.250000,0,0);}
.m31_c00430{transform:matrix(0.159169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159169,0.000000,0.000000,0.250000,0,0);}
.mc_c00430{transform:matrix(0.160926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160926,0.000000,0.000000,0.250000,0,0);}
.m37_c00430{transform:matrix(0.164138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164138,0.000000,0.000000,0.250000,0,0);}
.m33_c00430{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.m20_c00430{transform:matrix(0.175307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175307,0.000000,0.000000,0.250000,0,0);}
.m11_c00430{transform:matrix(0.180522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180522,0.000000,0.000000,0.250000,0,0);}
.m9_c00430{transform:matrix(0.186009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186009,0.000000,0.000000,0.250000,0,0);}
.m3b_c00430{transform:matrix(0.186837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186837,0.000000,0.000000,0.250000,0,0);}
.m25_c00430{transform:matrix(0.200096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200096,0.000000,0.000000,0.250000,0,0);}
.m1b_c00430{transform:matrix(0.205863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205863,0.000000,0.000000,0.250000,0,0);}
.m35_c00430{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m1c_c00430{transform:matrix(0.209069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209069,0.000000,0.000000,0.250000,0,0);}
.m2_c00430{transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);}
.m19_c00430{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.m2c_c00430{transform:matrix(0.226635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226635,0.000000,0.000000,0.250000,0,0);}
.m34_c00430{transform:matrix(0.238502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238502,0.000000,0.000000,0.250000,0,0);}
.m22_c00430{transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);}
.m26_c00430{transform:matrix(0.240853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240853,0.000000,0.000000,0.250000,0,0);}
.m24_c00430{transform:matrix(0.241262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241262,0.000000,0.000000,0.250000,0,0);}
.m44_c00430{transform:matrix(0.246504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246504,0.000000,0.000000,0.250000,0,0);}
.m42_c00430{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m45_c00430{transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);}
.m43_c00430{transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);}
.m1_c00430{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);}
.m3d_c00430{transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);}
.m16_c00430{transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);}
.m21_c00430{transform:matrix(0.254849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254849,0.000000,0.000000,0.250000,0,0);}
.m0_c00430{transform:matrix(0.255188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255188,0.000000,0.000000,0.250000,0,0);}
.m14_c00430{transform:matrix(0.263182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263182,0.000000,0.000000,0.250000,0,0);}
.m27_c00430{transform:matrix(0.263188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263188,0.000000,0.000000,0.250000,0,0);}
.m17_c00430{transform:matrix(0.263520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263520,0.000000,0.000000,0.250000,0,0);}
.m18_c00430{transform:matrix(0.266127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266127,0.000000,0.000000,0.250000,0,0);}
.m41_c00430{transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);}
.m1f_c00430{transform:matrix(0.267724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267724,0.000000,0.000000,0.250000,0,0);}
.m12_c00430{transform:matrix(0.269253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269253,0.000000,0.000000,0.250000,0,0);}
.m13_c00430{transform:matrix(0.270839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270839,0.000000,0.000000,0.250000,0,0);}
.m3e_c00430{transform:matrix(0.272263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272263,0.000000,0.000000,0.250000,0,0);}
.m3f_c00430{transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);}
.m40_c00430{transform:matrix(0.280018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280018,0.000000,0.000000,0.250000,0,0);}
.m3_c00430{transform:matrix(0.306212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306212,0.000000,0.000000,0.250000,0,0);}
.ma_c00430{transform:matrix(0.317501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317501,0.000000,0.000000,0.250000,0,0);}
.m23_c00430{transform:matrix(0.330392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330392,0.000000,0.000000,0.250000,0,0);}
.m2e_c00430{transform:matrix(0.339318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339318,0.000000,0.000000,0.250000,0,0);}
.m4_c00430{transform:matrix(0.448291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448291,0.000000,0.000000,0.250000,0,0);}
.m7_c00430{transform:matrix(0.455166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455166,0.000000,0.000000,0.250000,0,0);}
.m38_c00430{transform:matrix(0.477214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477214,0.000000,0.000000,0.250000,0,0);}
.m8_c00430{transform:matrix(1.034743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.034743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.034743,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.v1_c00430{vertical-align:1.440000px;}
.ls21_c00430{letter-spacing:-11.067021px;}
.lsc_c00430{letter-spacing:-10.353000px;}
.ls20_c00430{letter-spacing:-9.576000px;}
.ls25_c00430{letter-spacing:-7.245000px;}
.ls9_c00430{letter-spacing:-5.880000px;}
.ls22_c00430{letter-spacing:-4.683000px;}
.ls8_c00430{letter-spacing:-4.431000px;}
.ls26_c00430{letter-spacing:-2.709000px;}
.lsb_c00430{letter-spacing:-2.541000px;}
.ls27_c00430{letter-spacing:-2.478000px;}
.ls23_c00430{letter-spacing:-2.394000px;}
.lsd_c00430{letter-spacing:-2.121000px;}
.ls4_c00430{letter-spacing:-2.037000px;}
.ls19_c00430{letter-spacing:-2.016000px;}
.ls2c_c00430{letter-spacing:-1.727520px;}
.ls29_c00430{letter-spacing:-1.465560px;}
.ls17_c00430{letter-spacing:-1.449021px;}
.ls1f_c00430{letter-spacing:-1.428021px;}
.ls1c_c00430{letter-spacing:-1.323021px;}
.ls2b_c00430{letter-spacing:-1.309800px;}
.ls2a_c00430{letter-spacing:-1.132800px;}
.lse_c00430{letter-spacing:-1.029021px;}
.ls28_c00430{letter-spacing:-0.984120px;}
.ls12_c00430{letter-spacing:-0.617413px;}
.ls1e_c00430{letter-spacing:-0.521648px;}
.ls16_c00430{letter-spacing:-0.264964px;}
.ls18_c00430{letter-spacing:-0.087120px;}
.ls2d_c00430{letter-spacing:-0.084960px;}
.ls5_c00430{letter-spacing:0.000000px;}
.ls1b_c00430{letter-spacing:0.342000px;}
.ls1_c00430{letter-spacing:0.392040px;}
.ls24_c00430{letter-spacing:0.630000px;}
.ls13_c00430{letter-spacing:1.067242px;}
.ls0_c00430{letter-spacing:1.120163px;}
.ls7_c00430{letter-spacing:1.140030px;}
.ls15_c00430{letter-spacing:1.379340px;}
.ls14_c00430{letter-spacing:1.470030px;}
.ls1d_c00430{letter-spacing:1.890030px;}
.ls3_c00430{letter-spacing:2.101020px;}
.ls6_c00430{letter-spacing:2.190030px;}
.ls11_c00430{letter-spacing:2.822700px;}
.lsf_c00430{letter-spacing:2.850000px;}
.ls10_c00430{letter-spacing:2.880000px;}
.ls2_c00430{letter-spacing:3.270000px;}
.ls1a_c00430{letter-spacing:4.710000px;}
.lsa_c00430{letter-spacing:6.690000px;}
.sc__c00430{text-shadow:none;}
.sc0_c00430{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__c00430{-webkit-text-stroke:0px transparent;}
.sc0_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00430{word-spacing:0.000000px;}
._1_c00430{margin-left:-8.467373px;}
._4_c00430{margin-left:-7.227475px;}
._2_c00430{margin-left:-3.386734px;}
._7_c00430{width:1.918680px;}
._6_c00430{width:4.356480px;}
._3_c00430{width:30.205800px;}
._0_c00430{width:78.042866px;}
._5_c00430{width:494.697266px;}
.fc0_c00430{color:transparent;}
.fs15_c00430{font-size:10.800000px;}
.fs1c_c00430{font-size:12.600000px;}
.fsc_c00430{font-size:22.200600px;}
.fs3_c00430{font-size:22.800600px;}
.fsa_c00430{font-size:29.400600px;}
.fs21_c00430{font-size:33.600000px;}
.fs20_c00430{font-size:35.400600px;}
.fs11_c00430{font-size:36.000000px;}
.fsb_c00430{font-size:37.800600px;}
.fsf_c00430{font-size:40.320000px;}
.fs14_c00430{font-size:40.800600px;}
.fs10_c00430{font-size:41.400600px;}
.fs2_c00430{font-size:43.800600px;}
.fsd_c00430{font-size:57.000000px;}
.fse_c00430{font-size:57.600000px;}
.fs1_c00430{font-size:58.200000px;}
.fs9_c00430{font-size:60.600000px;}
.fs17_c00430{font-size:62.400000px;}
.fs0_c00430{font-size:65.400000px;}
.fs1b_c00430{font-size:68.400000px;}
.fs22_c00430{font-size:70.800000px;}
.fs7_c00430{font-size:72.600000px;}
.fs1f_c00430{font-size:77.400000px;}
.fs13_c00430{font-size:90.000000px;}
.fs12_c00430{font-size:94.200000px;}
.fs16_c00430{font-size:99.360000px;}
.fs4_c00430{font-size:126.600000px;}
.fs6_c00430{font-size:133.800000px;}
.fs1d_c00430{font-size:167.040000px;}
.fs5_c00430{font-size:168.000000px;}
.fs1a_c00430{font-size:205.920000px;}
.fs1e_c00430{font-size:207.000000px;}
.fs18_c00430{font-size:273.600000px;}
.fs8_c00430{font-size:295.800000px;}
.fs19_c00430{font-size:316.200600px;}
.y0_c00430{bottom:0.000000px;}
.y21_c00430{bottom:272.535000px;}
.y1c_c00430{bottom:426.240000px;}
.y20_c00430{bottom:426.975000px;}
.y1e_c00430{bottom:427.695000px;}
.y1d_c00430{bottom:428.055000px;}
.y1f_c00430{bottom:429.135000px;}
.y1a_c00430{bottom:446.055000px;}
.y19_c00430{bottom:518.400000px;}
.y1b_c00430{bottom:533.895000px;}
.y18_c00430{bottom:573.135000px;}
.y17_c00430{bottom:630.375000px;}
.y16_c00430{bottom:655.935000px;}
.y15_c00430{bottom:677.175000px;}
.y11_c00430{bottom:678.615000px;}
.y14_c00430{bottom:679.320000px;}
.y13_c00430{bottom:687.975000px;}
.y12_c00430{bottom:710.640000px;}
.ye_c00430{bottom:819.720000px;}
.yf_c00430{bottom:820.080000px;}
.y10_c00430{bottom:821.895000px;}
.y9_c00430{bottom:831.600000px;}
.yb_c00430{bottom:842.400000px;}
.ya_c00430{bottom:878.760000px;}
.y8_c00430{bottom:897.135000px;}
.y7_c00430{bottom:910.815000px;}
.y6_c00430{bottom:941.055000px;}
.y2_c00430{bottom:966.240000px;}
.y5_c00430{bottom:966.975000px;}
.y4_c00430{bottom:1077.495000px;}
.yd_c00430{bottom:1078.560000px;}
.y1_c00430{bottom:1078.920000px;}
.yc_c00430{bottom:1079.280000px;}
.y3_c00430{bottom:1082.895000px;}
.h17_c00430{height:11.264063px;}
.h1f_c00430{height:12.360059px;}
.h20_c00430{height:12.366211px;}
.h5_c00430{height:22.377542px;}
.h13_c00430{height:23.976000px;}
.h11_c00430{height:26.853120px;}
.hd_c00430{height:30.663907px;}
.h24_c00430{height:36.921720px;}
.he_c00430{height:39.424845px;}
.h12_c00430{height:40.632425px;}
.h16_c00430{height:42.553751px;}
.h4_c00430{height:42.987894px;}
.hf_c00430{height:59.449219px;}
.h10_c00430{height:60.075000px;}
.h3_c00430{height:60.700781px;}
.h19_c00430{height:61.242188px;}
.hc_c00430{height:63.203906px;}
.h18_c00430{height:66.173760px;}
.h2_c00430{height:68.210156px;}
.h1e_c00430{height:71.339063px;}
.h25_c00430{height:71.353125px;}
.ha_c00430{height:75.719531px;}
.h23_c00430{height:80.725781px;}
.h15_c00430{height:93.867188px;}
.h14_c00430{height:98.247656px;}
.h21_c00430{height:111.248640px;}
.h1d_c00430{height:131.317383px;}
.h6_c00430{height:132.039844px;}
.h1c_c00430{height:137.142720px;}
.h9_c00430{height:139.549219px;}
.h8_c00430{height:164.882812px;}
.h7_c00430{height:169.312500px;}
.h22_c00430{height:215.894531px;}
.h1a_c00430{height:268.523438px;}
.hb_c00430{height:308.510156px;}
.h1b_c00430{height:329.787345px;}
.h1_c00430{height:1263.000000px;}
.h0_c00430{height:1263.240000px;}
.w1_c00430{width:892.500000px;}
.w0_c00430{width:892.800000px;}
.x0_c00430{left:0.000000px;}
.x21_c00430{left:77.610000px;}
.x29_c00430{left:94.500000px;}
.x2_c00430{left:96.735000px;}
.x1_c00430{left:107.100000px;}
.x4a_c00430{left:112.215000px;}
.x3a_c00430{left:125.085000px;}
.x3_c00430{left:128.895000px;}
.x3b_c00430{left:162.480000px;}
.x4b_c00430{left:164.085000px;}
.x22_c00430{left:165.405000px;}
.x4_c00430{left:167.730000px;}
.x23_c00430{left:169.575000px;}
.x14_c00430{left:173.745000px;}
.x12_c00430{left:175.845000px;}
.x6_c00430{left:178.140000px;}
.x10_c00430{left:184.485000px;}
.x2a_c00430{left:187.635000px;}
.x3c_c00430{left:193.245000px;}
.x11_c00430{left:194.400000px;}
.x13_c00430{left:197.910000px;}
.xe_c00430{left:212.325000px;}
.x7_c00430{left:216.405000px;}
.x3d_c00430{left:219.225000px;}
.x24_c00430{left:235.260000px;}
.x25_c00430{left:240.480000px;}
.x5_c00430{left:245.385000px;}
.xf_c00430{left:246.675000px;}
.x32_c00430{left:248.775000px;}
.xd_c00430{left:254.415000px;}
.x3e_c00430{left:258.930000px;}
.x8_c00430{left:262.815000px;}
.x3f_c00430{left:278.220000px;}
.x9_c00430{left:281.100000px;}
.x33_c00430{left:283.170000px;}
.xa_c00430{left:285.990000px;}
.x40_c00430{left:308.865000px;}
.x34_c00430{left:311.400000px;}
.xc_c00430{left:313.035000px;}
.x41_c00430{left:318.870000px;}
.x42_c00430{left:324.735000px;}
.x35_c00430{left:327.390000px;}
.xb_c00430{left:342.345000px;}
.x15_c00430{left:374.355000px;}
.x46_c00430{left:382.800000px;}
.x4c_c00430{left:433.350000px;}
.x4d_c00430{left:469.605000px;}
.x43_c00430{left:493.665000px;}
.x47_c00430{left:500.205000px;}
.x16_c00430{left:502.380000px;}
.x44_c00430{left:506.700000px;}
.x45_c00430{left:534.960000px;}
.x36_c00430{left:555.840000px;}
.x37_c00430{left:574.395000px;}
.x19_c00430{left:588.255000px;}
.x1a_c00430{left:593.445000px;}
.x2b_c00430{left:599.610000px;}
.x1b_c00430{left:604.965000px;}
.x2c_c00430{left:607.110000px;}
.x38_c00430{left:609.840000px;}
.x1c_c00430{left:614.325000px;}
.x2d_c00430{left:617.250000px;}
.x1d_c00430{left:625.110000px;}
.x48_c00430{left:629.145000px;}
.x17_c00430{left:632.040000px;}
.x1e_c00430{left:640.620000px;}
.x1f_c00430{left:643.110000px;}
.x2e_c00430{left:648.240000px;}
.x2f_c00430{left:652.890000px;}
.x30_c00430{left:681.000000px;}
.x31_c00430{left:683.610000px;}
.x39_c00430{left:706.110000px;}
.x26_c00430{left:720.450000px;}
.x27_c00430{left:745.440000px;}
.x28_c00430{left:748.155000px;}
.x49_c00430{left:757.695000px;}
.x18_c00430{left:760.215000px;}
.x20_c00430{left:779.655000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.v1_c00430{vertical-align:1.280000pt;}
.ls21_c00430{letter-spacing:-9.837352pt;}
.lsc_c00430{letter-spacing:-9.202667pt;}
.ls20_c00430{letter-spacing:-8.512000pt;}
.ls25_c00430{letter-spacing:-6.440000pt;}
.ls9_c00430{letter-spacing:-5.226667pt;}
.ls22_c00430{letter-spacing:-4.162667pt;}
.ls8_c00430{letter-spacing:-3.938667pt;}
.ls26_c00430{letter-spacing:-2.408000pt;}
.lsb_c00430{letter-spacing:-2.258667pt;}
.ls27_c00430{letter-spacing:-2.202667pt;}
.ls23_c00430{letter-spacing:-2.128000pt;}
.lsd_c00430{letter-spacing:-1.885333pt;}
.ls4_c00430{letter-spacing:-1.810667pt;}
.ls19_c00430{letter-spacing:-1.792000pt;}
.ls2c_c00430{letter-spacing:-1.535573pt;}
.ls29_c00430{letter-spacing:-1.302720pt;}
.ls17_c00430{letter-spacing:-1.288019pt;}
.ls1f_c00430{letter-spacing:-1.269352pt;}
.ls1c_c00430{letter-spacing:-1.176019pt;}
.ls2b_c00430{letter-spacing:-1.164267pt;}
.ls2a_c00430{letter-spacing:-1.006933pt;}
.lse_c00430{letter-spacing:-0.914685pt;}
.ls28_c00430{letter-spacing:-0.874773pt;}
.ls12_c00430{letter-spacing:-0.548811pt;}
.ls1e_c00430{letter-spacing:-0.463687pt;}
.ls16_c00430{letter-spacing:-0.235523pt;}
.ls18_c00430{letter-spacing:-0.077440pt;}
.ls2d_c00430{letter-spacing:-0.075520pt;}
.ls5_c00430{letter-spacing:0.000000pt;}
.ls1b_c00430{letter-spacing:0.304000pt;}
.ls1_c00430{letter-spacing:0.348480pt;}
.ls24_c00430{letter-spacing:0.560000pt;}
.ls13_c00430{letter-spacing:0.948659pt;}
.ls0_c00430{letter-spacing:0.995700pt;}
.ls7_c00430{letter-spacing:1.013360pt;}
.ls15_c00430{letter-spacing:1.226080pt;}
.ls14_c00430{letter-spacing:1.306693pt;}
.ls1d_c00430{letter-spacing:1.680027pt;}
.ls3_c00430{letter-spacing:1.867573pt;}
.ls6_c00430{letter-spacing:1.946693pt;}
.ls11_c00430{letter-spacing:2.509067pt;}
.lsf_c00430{letter-spacing:2.533333pt;}
.ls10_c00430{letter-spacing:2.560000pt;}
.ls2_c00430{letter-spacing:2.906667pt;}
.ls1a_c00430{letter-spacing:4.186667pt;}
.lsa_c00430{letter-spacing:5.946667pt;}
.ws0_c00430{word-spacing:0.000000pt;}
._1_c00430{margin-left:-7.526554pt;}
._4_c00430{margin-left:-6.424422pt;}
._2_c00430{margin-left:-3.010430pt;}
._7_c00430{width:1.705493pt;}
._6_c00430{width:3.872427pt;}
._3_c00430{width:26.849600pt;}
._0_c00430{width:69.371437pt;}
._5_c00430{width:439.730903pt;}
.fs15_c00430{font-size:9.600000pt;}
.fs1c_c00430{font-size:11.200000pt;}
.fsc_c00430{font-size:19.733867pt;}
.fs3_c00430{font-size:20.267200pt;}
.fsa_c00430{font-size:26.133867pt;}
.fs21_c00430{font-size:29.866667pt;}
.fs20_c00430{font-size:31.467200pt;}
.fs11_c00430{font-size:32.000000pt;}
.fsb_c00430{font-size:33.600533pt;}
.fsf_c00430{font-size:35.840000pt;}
.fs14_c00430{font-size:36.267200pt;}
.fs10_c00430{font-size:36.800533pt;}
.fs2_c00430{font-size:38.933867pt;}
.fsd_c00430{font-size:50.666667pt;}
.fse_c00430{font-size:51.200000pt;}
.fs1_c00430{font-size:51.733333pt;}
.fs9_c00430{font-size:53.866667pt;}
.fs17_c00430{font-size:55.466667pt;}
.fs0_c00430{font-size:58.133333pt;}
.fs1b_c00430{font-size:60.800000pt;}
.fs22_c00430{font-size:62.933333pt;}
.fs7_c00430{font-size:64.533333pt;}
.fs1f_c00430{font-size:68.800000pt;}
.fs13_c00430{font-size:80.000000pt;}
.fs12_c00430{font-size:83.733333pt;}
.fs16_c00430{font-size:88.320000pt;}
.fs4_c00430{font-size:112.533333pt;}
.fs6_c00430{font-size:118.933333pt;}
.fs1d_c00430{font-size:148.480000pt;}
.fs5_c00430{font-size:149.333333pt;}
.fs1a_c00430{font-size:183.040000pt;}
.fs1e_c00430{font-size:184.000000pt;}
.fs18_c00430{font-size:243.200000pt;}
.fs8_c00430{font-size:262.933333pt;}
.fs19_c00430{font-size:281.067200pt;}
.y0_c00430{bottom:0.000000pt;}
.y21_c00430{bottom:242.253333pt;}
.y1c_c00430{bottom:378.880000pt;}
.y20_c00430{bottom:379.533333pt;}
.y1e_c00430{bottom:380.173333pt;}
.y1d_c00430{bottom:380.493333pt;}
.y1f_c00430{bottom:381.453333pt;}
.y1a_c00430{bottom:396.493333pt;}
.y19_c00430{bottom:460.800000pt;}
.y1b_c00430{bottom:474.573333pt;}
.y18_c00430{bottom:509.453333pt;}
.y17_c00430{bottom:560.333333pt;}
.y16_c00430{bottom:583.053333pt;}
.y15_c00430{bottom:601.933333pt;}
.y11_c00430{bottom:603.213333pt;}
.y14_c00430{bottom:603.840000pt;}
.y13_c00430{bottom:611.533333pt;}
.y12_c00430{bottom:631.680000pt;}
.ye_c00430{bottom:728.640000pt;}
.yf_c00430{bottom:728.960000pt;}
.y10_c00430{bottom:730.573333pt;}
.y9_c00430{bottom:739.200000pt;}
.yb_c00430{bottom:748.800000pt;}
.ya_c00430{bottom:781.120000pt;}
.y8_c00430{bottom:797.453333pt;}
.y7_c00430{bottom:809.613333pt;}
.y6_c00430{bottom:836.493333pt;}
.y2_c00430{bottom:858.880000pt;}
.y5_c00430{bottom:859.533333pt;}
.y4_c00430{bottom:957.773333pt;}
.yd_c00430{bottom:958.720000pt;}
.y1_c00430{bottom:959.040000pt;}
.yc_c00430{bottom:959.360000pt;}
.y3_c00430{bottom:962.573333pt;}
.h17_c00430{height:10.012500pt;}
.h1f_c00430{height:10.986719pt;}
.h20_c00430{height:10.992188pt;}
.h5_c00430{height:19.891148pt;}
.h13_c00430{height:21.312000pt;}
.h11_c00430{height:23.869440pt;}
.hd_c00430{height:27.256806pt;}
.h24_c00430{height:32.819306pt;}
.he_c00430{height:35.044306pt;}
.h12_c00430{height:36.117711pt;}
.h16_c00430{height:37.825556pt;}
.h4_c00430{height:38.211461pt;}
.hf_c00430{height:52.843750pt;}
.h10_c00430{height:53.400000pt;}
.h3_c00430{height:53.956250pt;}
.h19_c00430{height:54.437500pt;}
.hc_c00430{height:56.181250pt;}
.h18_c00430{height:58.821120pt;}
.h2_c00430{height:60.631250pt;}
.h1e_c00430{height:63.412500pt;}
.h25_c00430{height:63.425000pt;}
.ha_c00430{height:67.306250pt;}
.h23_c00430{height:71.756250pt;}
.h15_c00430{height:83.437500pt;}
.h14_c00430{height:87.331250pt;}
.h21_c00430{height:98.887680pt;}
.h1d_c00430{height:116.726562pt;}
.h6_c00430{height:117.368750pt;}
.h1c_c00430{height:121.904640pt;}
.h9_c00430{height:124.043750pt;}
.h8_c00430{height:146.562500pt;}
.h7_c00430{height:150.500000pt;}
.h22_c00430{height:191.906250pt;}
.h1a_c00430{height:238.687500pt;}
.hb_c00430{height:274.231250pt;}
.h1b_c00430{height:293.144306pt;}
.h1_c00430{height:1122.666667pt;}
.h0_c00430{height:1122.880000pt;}
.w1_c00430{width:793.333333pt;}
.w0_c00430{width:793.600000pt;}
.x0_c00430{left:0.000000pt;}
.x21_c00430{left:68.986667pt;}
.x29_c00430{left:84.000000pt;}
.x2_c00430{left:85.986667pt;}
.x1_c00430{left:95.200000pt;}
.x4a_c00430{left:99.746667pt;}
.x3a_c00430{left:111.186667pt;}
.x3_c00430{left:114.573333pt;}
.x3b_c00430{left:144.426667pt;}
.x4b_c00430{left:145.853333pt;}
.x22_c00430{left:147.026667pt;}
.x4_c00430{left:149.093333pt;}
.x23_c00430{left:150.733333pt;}
.x14_c00430{left:154.440000pt;}
.x12_c00430{left:156.306667pt;}
.x6_c00430{left:158.346667pt;}
.x10_c00430{left:163.986667pt;}
.x2a_c00430{left:166.786667pt;}
.x3c_c00430{left:171.773333pt;}
.x11_c00430{left:172.800000pt;}
.x13_c00430{left:175.920000pt;}
.xe_c00430{left:188.733333pt;}
.x7_c00430{left:192.360000pt;}
.x3d_c00430{left:194.866667pt;}
.x24_c00430{left:209.120000pt;}
.x25_c00430{left:213.760000pt;}
.x5_c00430{left:218.120000pt;}
.xf_c00430{left:219.266667pt;}
.x32_c00430{left:221.133333pt;}
.xd_c00430{left:226.146667pt;}
.x3e_c00430{left:230.160000pt;}
.x8_c00430{left:233.613333pt;}
.x3f_c00430{left:247.306667pt;}
.x9_c00430{left:249.866667pt;}
.x33_c00430{left:251.706667pt;}
.xa_c00430{left:254.213333pt;}
.x40_c00430{left:274.546667pt;}
.x34_c00430{left:276.800000pt;}
.xc_c00430{left:278.253333pt;}
.x41_c00430{left:283.440000pt;}
.x42_c00430{left:288.653333pt;}
.x35_c00430{left:291.013333pt;}
.xb_c00430{left:304.306667pt;}
.x15_c00430{left:332.760000pt;}
.x46_c00430{left:340.266667pt;}
.x4c_c00430{left:385.200000pt;}
.x4d_c00430{left:417.426667pt;}
.x43_c00430{left:438.813333pt;}
.x47_c00430{left:444.626667pt;}
.x16_c00430{left:446.560000pt;}
.x44_c00430{left:450.400000pt;}
.x45_c00430{left:475.520000pt;}
.x36_c00430{left:494.080000pt;}
.x37_c00430{left:510.573333pt;}
.x19_c00430{left:522.893333pt;}
.x1a_c00430{left:527.506667pt;}
.x2b_c00430{left:532.986667pt;}
.x1b_c00430{left:537.746667pt;}
.x2c_c00430{left:539.653333pt;}
.x38_c00430{left:542.080000pt;}
.x1c_c00430{left:546.066667pt;}
.x2d_c00430{left:548.666667pt;}
.x1d_c00430{left:555.653333pt;}
.x48_c00430{left:559.240000pt;}
.x17_c00430{left:561.813333pt;}
.x1e_c00430{left:569.440000pt;}
.x1f_c00430{left:571.653333pt;}
.x2e_c00430{left:576.213333pt;}
.x2f_c00430{left:580.346667pt;}
.x30_c00430{left:605.333333pt;}
.x31_c00430{left:607.653333pt;}
.x39_c00430{left:627.653333pt;}
.x26_c00430{left:640.400000pt;}
.x27_c00430{left:662.613333pt;}
.x28_c00430{left:665.026667pt;}
.x49_c00430{left:673.506667pt;}
.x18_c00430{left:675.746667pt;}
.x20_c00430{left:693.026667pt;}
}





/* 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_c00431 {
    display:none;
  }
  .loading-indicator_c00431.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00431 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_c00431 { 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_c00431" -> "#page-container .classname_c00431")
 */
.pf_c00431 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00431 { /* 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_c00431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00431 { /* 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_c00431 { /* 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_c00431 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00431 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00431 {overflow:visible;}
  }
}
.c_c00431 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00431 { /* 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_c00431:after { /* webkit #35443 */
  content: '';
}
.t_c00431:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00431 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 */
}
.__c00431 { /* 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_c00431 { /* info for Javascript */
  display:none;
}
.l_c00431 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00431 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00431 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00431: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_c00431 {
    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_c00431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00431.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_c00431 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00431{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00431;src:url('chunks/assets/font_5bad8e2424694255d5d8840f.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;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:ff2_c00431;src:url('chunks/assets/font_11b76ec15eb91c2bfad2e8c3.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:0.666000;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_c00431;src:url('chunks/assets/font_675343852cc54ba7d4f2aff9.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.284668;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_c00431;src:url('chunks/assets/font_ac8ba4ddc2353f124810a83d.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;line-height:1.284180;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_c00431;src:url('chunks/assets/font_cb5e11628a70677997fd481a.woff2')format("woff");}.ff5_c00431{font-family:ff5_c00431;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:ff6_c00431;src:url('chunks/assets/font_efe51124aa832f93c02848dd.woff2')format("woff");}.ff6_c00431{font-family:ff6_c00431;line-height:1.311035;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;}
.m25_c00431{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mf_c00431{transform:matrix(0.040475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040475,0.000000,0.000000,0.250000,0,0);}
.ma_c00431{transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);}
.m21_c00431{transform:matrix(0.054268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054268,0.000000,0.000000,0.250000,0,0);}
.m4_c00431{transform:matrix(0.054831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054831,0.000000,0.000000,0.250000,0,0);}
.m39_c00431{transform:matrix(0.056322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056322,0.000000,0.000000,0.250000,0,0);}
.m34_c00431{transform:matrix(0.076446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076446,0.000000,0.000000,0.250000,0,0);}
.m11_c00431{transform:matrix(0.085937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085937,0.000000,0.000000,0.250000,0,0);}
.mb_c00431{transform:matrix(0.088022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088022,0.000000,0.000000,0.250000,0,0);}
.m36_c00431{transform:matrix(0.096222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096222,0.000000,0.000000,0.250000,0,0);}
.m26_c00431{transform:matrix(0.102650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102650,0.000000,0.000000,0.250000,0,0);}
.m28_c00431{transform:matrix(0.104606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104606,0.000000,0.000000,0.250000,0,0);}
.m38_c00431{transform:matrix(0.109267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109267,0.000000,0.000000,0.250000,0,0);}
.m23_c00431{transform:matrix(0.109344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109344,0.000000,0.000000,0.250000,0,0);}
.m22_c00431{transform:matrix(0.110439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110439,0.000000,0.000000,0.250000,0,0);}
.m2b_c00431{transform:matrix(0.110851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110851,0.000000,0.000000,0.250000,0,0);}
.m37_c00431{transform:matrix(0.113776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113776,0.000000,0.000000,0.250000,0,0);}
.m2c_c00431{transform:matrix(0.114482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114482,0.000000,0.000000,0.250000,0,0);}
.m1f_c00431{transform:matrix(0.115385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115385,0.000000,0.000000,0.250000,0,0);}
.m2a_c00431{transform:matrix(0.115611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115611,0.000000,0.000000,0.250000,0,0);}
.m3c_c00431{transform:matrix(0.127774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127774,0.000000,0.000000,0.250000,0,0);}
.m24_c00431{transform:matrix(0.129937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129937,0.000000,0.000000,0.250000,0,0);}
.m9_c00431{transform:matrix(0.130590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130590,0.000000,0.000000,0.250000,0,0);}
.m29_c00431{transform:matrix(0.131422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131422,0.000000,0.000000,0.250000,0,0);}
.m35_c00431{transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);}
.m8_c00431{transform:matrix(0.136578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136578,0.000000,0.000000,0.250000,0,0);}
.m3b_c00431{transform:matrix(0.137665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137665,0.000000,0.000000,0.250000,0,0);}
.m19_c00431{transform:matrix(0.139369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139369,0.000000,0.000000,0.250000,0,0);}
.m10_c00431{transform:matrix(0.143981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143981,0.000000,0.000000,0.250000,0,0);}
.m1e_c00431{transform:matrix(0.146263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146263,0.000000,0.000000,0.250000,0,0);}
.m16_c00431{transform:matrix(0.147076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147076,0.000000,0.000000,0.250000,0,0);}
.m3d_c00431{transform:matrix(0.147564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147564,0.000000,0.000000,0.250000,0,0);}
.m33_c00431{transform:matrix(0.150262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150262,0.000000,0.000000,0.250000,0,0);}
.m2d_c00431{transform:matrix(0.166497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166497,0.000000,0.000000,0.250000,0,0);}
.md_c00431{transform:matrix(0.168071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168071,0.000000,0.000000,0.250000,0,0);}
.mc_c00431{transform:matrix(0.169257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169257,0.000000,0.000000,0.250000,0,0);}
.m15_c00431{transform:matrix(0.173081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173081,0.000000,0.000000,0.250000,0,0);}
.m14_c00431{transform:matrix(0.176193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176193,0.000000,0.000000,0.250000,0,0);}
.m17_c00431{transform:matrix(0.177313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177313,0.000000,0.000000,0.250000,0,0);}
.m13_c00431{transform:matrix(0.197904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197904,0.000000,0.000000,0.250000,0,0);}
.m30_c00431{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.me_c00431{transform:matrix(0.222989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222989,0.000000,0.000000,0.250000,0,0);}
.m45_c00431{transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);}
.m18_c00431{transform:matrix(0.224087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224087,0.000000,0.000000,0.250000,0,0);}
.m32_c00431{transform:matrix(0.229249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229249,0.000000,0.000000,0.250000,0,0);}
.m44_c00431{transform:matrix(0.232598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232598,0.000000,0.000000,0.250000,0,0);}
.m3f_c00431{transform:matrix(0.233310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233310,0.000000,0.000000,0.250000,0,0);}
.m31_c00431{transform:matrix(0.237145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237145,0.000000,0.000000,0.250000,0,0);}
.m48_c00431{transform:matrix(0.237432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237432,0.000000,0.000000,0.250000,0,0);}
.m43_c00431{transform:matrix(0.238514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238514,0.000000,0.000000,0.250000,0,0);}
.m46_c00431{transform:matrix(0.238642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238642,0.000000,0.000000,0.250000,0,0);}
.m3a_c00431{transform:matrix(0.239793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239793,0.000000,0.000000,0.250000,0,0);}
.m40_c00431{transform:matrix(0.240458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240458,0.000000,0.000000,0.250000,0,0);}
.m41_c00431{transform:matrix(0.243534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243534,0.000000,0.000000,0.250000,0,0);}
.m42_c00431{transform:matrix(0.244502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244502,0.000000,0.000000,0.250000,0,0);}
.m47_c00431{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m0_c00431{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);}
.m5_c00431{transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);}
.m1_c00431{transform:matrix(0.257388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257388,0.000000,0.000000,0.250000,0,0);}
.m20_c00431{transform:matrix(0.258781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258781,0.000000,0.000000,0.250000,0,0);}
.m27_c00431{transform:matrix(0.263188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263188,0.000000,0.000000,0.250000,0,0);}
.m1c_c00431{transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);}
.m2_c00431{transform:matrix(0.267724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267724,0.000000,0.000000,0.250000,0,0);}
.m2f_c00431{transform:matrix(0.270783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270783,0.000000,0.000000,0.250000,0,0);}
.m12_c00431{transform:matrix(0.272263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272263,0.000000,0.000000,0.250000,0,0);}
.m1b_c00431{transform:matrix(0.272560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272560,0.000000,0.000000,0.250000,0,0);}
.m3e_c00431{transform:matrix(0.273793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273793,0.000000,0.000000,0.250000,0,0);}
.m1a_c00431{transform:matrix(0.278033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278033,0.000000,0.000000,0.250000,0,0);}
.m1d_c00431{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m3_c00431{transform:matrix(0.328908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328908,0.000000,0.000000,0.250000,0,0);}
.m6_c00431{transform:matrix(0.441675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441675,0.000000,0.000000,0.250000,0,0);}
.m7_c00431{transform:matrix(0.568182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568182,0.000000,0.000000,0.250000,0,0);}
.m2e_c00431{transform:matrix(4.696168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.696168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.696168,0.000000,0.000000,0.250000,0,0);}
.v2_c00431{vertical-align:-10.080000px;}
.v0_c00431{vertical-align:0.000000px;}
.v1_c00431{vertical-align:59.100000px;}
.ls28_c00431{letter-spacing:-10.521000px;}
.ls26_c00431{letter-spacing:-6.867021px;}
.ls27_c00431{letter-spacing:-6.678000px;}
.ls25_c00431{letter-spacing:-6.363000px;}
.ls20_c00431{letter-spacing:-4.977021px;}
.ls19_c00431{letter-spacing:-4.515000px;}
.ls8_c00431{letter-spacing:-3.948000px;}
.ls1c_c00431{letter-spacing:-3.759000px;}
.ls23_c00431{letter-spacing:-3.549000px;}
.ls22_c00431{letter-spacing:-3.360000px;}
.ls1f_c00431{letter-spacing:-3.171000px;}
.ls1e_c00431{letter-spacing:-2.688000px;}
.ls2b_c00431{letter-spacing:-2.625000px;}
.ls2a_c00431{letter-spacing:-2.091960px;}
.ls14_c00431{letter-spacing:-2.016000px;}
.ls12_c00431{letter-spacing:-1.974000px;}
.ls1d_c00431{letter-spacing:-1.911000px;}
.ls2c_c00431{letter-spacing:-1.695000px;}
.ls24_c00431{letter-spacing:-1.528320px;}
.ls15_c00431{letter-spacing:-1.449021px;}
.ls11_c00431{letter-spacing:-1.428021px;}
.lsd_c00431{letter-spacing:-1.407000px;}
.ls13_c00431{letter-spacing:-1.254540px;}
.ls1b_c00431{letter-spacing:-1.120500px;}
.ls4_c00431{letter-spacing:-1.038960px;}
.ls10_c00431{letter-spacing:-0.966000px;}
.lse_c00431{letter-spacing:-0.615060px;}
.ls17_c00431{letter-spacing:-0.342000px;}
.lsf_c00431{letter-spacing:-0.132660px;}
.lsc_c00431{letter-spacing:-0.064320px;}
.ls9_c00431{letter-spacing:0.000000px;}
.ls0_c00431{letter-spacing:0.089700px;}
.ls1_c00431{letter-spacing:0.099183px;}
.ls3_c00431{letter-spacing:0.197766px;}
.ls2_c00431{letter-spacing:0.837900px;}
.ls18_c00431{letter-spacing:1.696320px;}
.ls16_c00431{letter-spacing:2.760000px;}
.ls5_c00431{letter-spacing:2.820000px;}
.ls6_c00431{letter-spacing:2.880000px;}
.lsb_c00431{letter-spacing:3.120000px;}
.ls1a_c00431{letter-spacing:3.900000px;}
.ls21_c00431{letter-spacing:4.500000px;}
.lsa_c00431{letter-spacing:4.860030px;}
.ls7_c00431{letter-spacing:5.640000px;}
.ls29_c00431{letter-spacing:9.300000px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{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__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00431{word-spacing:0.000000px;}
._c_c00431{margin-left:-23.820000px;}
._d_c00431{margin-left:-15.192000px;}
._6_c00431{margin-left:-8.310600px;}
._3_c00431{margin-left:-7.188188px;}
._5_c00431{margin-left:-6.059520px;}
._7_c00431{margin-left:-4.646880px;}
._8_c00431{margin-left:-2.820000px;}
._9_c00431{width:15.603853px;}
._1_c00431{width:27.141600px;}
._a_c00431{width:35.591400px;}
._4_c00431{width:75.240194px;}
._0_c00431{width:88.684800px;}
._b_c00431{width:292.133400px;}
._2_c00431{width:297.283500px;}
._f_c00431{width:416.491200px;}
._e_c00431{width:427.672466px;}
._11_c00431{width:491.749735px;}
._12_c00431{width:492.953355px;}
._10_c00431{width:494.404780px;}
.fc0_c00431{color:transparent;}
.fs16_c00431{font-size:16.200600px;}
.fs18_c00431{font-size:17.280000px;}
.fsb_c00431{font-size:17.400600px;}
.fs1b_c00431{font-size:18.720000px;}
.fs22_c00431{font-size:19.200600px;}
.fs12_c00431{font-size:21.600000px;}
.fs10_c00431{font-size:27.600000px;}
.fs13_c00431{font-size:30.240600px;}
.fsc_c00431{font-size:31.680000px;}
.fs19_c00431{font-size:34.200000px;}
.fse_c00431{font-size:34.560000px;}
.fs33_c00431{font-size:35.400600px;}
.fsf_c00431{font-size:36.000000px;}
.fsd_c00431{font-size:40.200000px;}
.fs11_c00431{font-size:40.800600px;}
.fs8_c00431{font-size:41.400600px;}
.fs6_c00431{font-size:50.400000px;}
.fs23_c00431{font-size:51.000000px;}
.fs20_c00431{font-size:54.600000px;}
.fs17_c00431{font-size:55.200000px;}
.fs1_c00431{font-size:56.400000px;}
.fs2_c00431{font-size:57.600000px;}
.fs9_c00431{font-size:62.400000px;}
.fsa_c00431{font-size:69.000000px;}
.fs0_c00431{font-size:70.200000px;}
.fs34_c00431{font-size:75.000000px;}
.fs21_c00431{font-size:76.800000px;}
.fs1c_c00431{font-size:78.000000px;}
.fs26_c00431{font-size:90.000000px;}
.fs24_c00431{font-size:90.600000px;}
.fs27_c00431{font-size:96.000000px;}
.fs5_c00431{font-size:97.200600px;}
.fs7_c00431{font-size:101.400000px;}
.fs1f_c00431{font-size:107.400000px;}
.fs3_c00431{font-size:112.800000px;}
.fs1e_c00431{font-size:118.080000px;}
.fs15_c00431{font-size:121.800000px;}
.fs1a_c00431{font-size:129.000000px;}
.fs28_c00431{font-size:132.000000px;}
.fs1d_c00431{font-size:135.000000px;}
.fs14_c00431{font-size:138.240000px;}
.fs25_c00431{font-size:142.200600px;}
.fs4_c00431{font-size:148.800000px;}
.fs31_c00431{font-size:151.200600px;}
.fs32_c00431{font-size:169.800000px;}
.fs2a_c00431{font-size:174.240000px;}
.fs2b_c00431{font-size:181.800000px;}
.fs30_c00431{font-size:186.000000px;}
.fs2e_c00431{font-size:190.800000px;}
.fs2c_c00431{font-size:196.200600px;}
.fs29_c00431{font-size:214.200600px;}
.fs2d_c00431{font-size:232.800000px;}
.fs2f_c00431{font-size:300.600000px;}
.y0_c00431{bottom:0.000000px;}
.y2a_c00431{bottom:275.415006px;}
.y25_c00431{bottom:428.400006px;}
.y28_c00431{bottom:430.560006px;}
.y26_c00431{bottom:430.935006px;}
.y29_c00431{bottom:432.015006px;}
.y27_c00431{bottom:432.375006px;}
.y24_c00431{bottom:449.280006px;}
.y23_c00431{bottom:481.320006px;}
.y22_c00431{bottom:541.455006px;}
.y21_c00431{bottom:587.175006px;}
.y20_c00431{bottom:615.255006px;}
.y1f_c00431{bottom:631.800006px;}
.y1d_c00431{bottom:680.055006px;}
.y10_c00431{bottom:681.855006px;}
.y1e_c00431{bottom:682.215006px;}
.yf_c00431{bottom:688.320006px;}
.ye_c00431{bottom:717.855006px;}
.y1c_c00431{bottom:750.255006px;}
.yb_c00431{bottom:755.640006px;}
.yd_c00431{bottom:792.000006px;}
.yc_c00431{bottom:802.095006px;}
.y1b_c00431{bottom:810.735006px;}
.ya_c00431{bottom:819.360006px;}
.y7_c00431{bottom:821.160006px;}
.y9_c00431{bottom:825.480006px;}
.y1a_c00431{bottom:826.575006px;}
.y8_c00431{bottom:835.935006px;}
.y6_c00431{bottom:844.935006px;}
.y5_c00431{bottom:848.895006px;}
.y19_c00431{bottom:853.935006px;}
.y4_c00431{bottom:863.280006px;}
.y18_c00431{bottom:873.735006px;}
.y3_c00431{bottom:900.735006px;}
.y17_c00431{bottom:930.255006px;}
.y2_c00431{bottom:967.320006px;}
.y16_c00431{bottom:968.775006px;}
.y15_c00431{bottom:970.215006px;}
.y12_c00431{bottom:1027.095006px;}
.y11_c00431{bottom:1032.840006px;}
.y1_c00431{bottom:1080.735006px;}
.y13_c00431{bottom:1081.800006px;}
.y14_c00431{bottom:1082.160006px;}
.h19_c00431{height:11.508480px;}
.h1c_c00431{height:12.467520px;}
.h17_c00431{height:16.896720px;}
.h13_c00431{height:20.140240px;}
.hc_c00431{height:21.098880px;}
.h12_c00431{height:22.528125px;}
.he_c00431{height:23.016960px;}
.h23_c00431{height:23.976000px;}
.h10_c00431{height:28.785937px;}
.h1a_c00431{height:33.565430px;}
.h32_c00431{height:36.921720px;}
.hf_c00431{height:37.546875px;}
.hd_c00431{height:39.454102px;}
.h11_c00431{height:42.553751px;}
.h16_c00431{height:43.179532px;}
.h8_c00431{height:52.565625px;}
.h24_c00431{height:53.191406px;}
.h21_c00431{height:53.586914px;}
.h27_c00431{height:55.353516px;}
.h18_c00431{height:57.571875px;}
.h3_c00431{height:58.823438px;}
.h4_c00431{height:60.075000px;}
.ha_c00431{height:65.081250px;}
.h2_c00431{height:73.216406px;}
.h22_c00431{height:75.375000px;}
.h33_c00431{height:75.585938px;}
.hb_c00431{height:77.248282px;}
.h1f_c00431{height:78.641280px;}
.h1d_c00431{height:81.351562px;}
.h14_c00431{height:92.067840px;}
.h28_c00431{height:93.867188px;}
.h29_c00431{height:94.218750px;}
.h25_c00431{height:94.492969px;}
.h7_c00431{height:101.377188px;}
.h20_c00431{height:105.354785px;}
.h9_c00431{height:105.757031px;}
.h2b_c00431{height:116.043840px;}
.h5_c00431{height:117.646875px;}
.h15_c00431{height:127.033594px;}
.h1b_c00431{height:134.542969px;}
.h1e_c00431{height:140.800781px;}
.h26_c00431{height:148.310782px;}
.h6_c00431{height:155.193750px;}
.h2c_c00431{height:178.426758px;}
.h31_c00431{height:182.548828px;}
.h2f_c00431{height:187.259766px;}
.h2d_c00431{height:204.631095px;}
.h2a_c00431{height:223.404532px;}
.h2e_c00431{height:242.803125px;}
.h30_c00431{height:313.516406px;}
.h1_c00431{height:1263.000000px;}
.h0_c00431{height:1263.240006px;}
.w1_c00431{width:892.500000px;}
.w0_c00431{width:892.799998px;}
.x0_c00431{left:0.000000px;}
.xb_c00431{left:77.249999px;}
.x19_c00431{left:94.124999px;}
.x2_c00431{left:96.014999px;}
.x1_c00431{left:106.349998px;}
.x49_c00431{left:108.254999px;}
.x42_c00431{left:124.019999px;}
.xc_c00431{left:129.029999px;}
.x38_c00431{left:140.009998px;}
.x3c_c00431{left:155.174998px;}
.x43_c00431{left:156.434999px;}
.x4a_c00431{left:160.484998px;}
.xd_c00431{left:165.134998px;}
.xe_c00431{left:170.144998px;}
.xf_c00431{left:175.469999px;}
.x14_c00431{left:180.359998px;}
.x15_c00431{left:185.279999px;}
.x16_c00431{left:187.379998px;}
.x10_c00431{left:188.654999px;}
.x18_c00431{left:189.779999px;}
.x6_c00431{left:192.794998px;}
.x11_c00431{left:195.989999px;}
.x9_c00431{left:197.009998px;}
.x7_c00431{left:198.839999px;}
.x44_c00431{left:207.254999px;}
.x17_c00431{left:208.304998px;}
.x1a_c00431{left:211.469998px;}
.x12_c00431{left:216.659999px;}
.x13_c00431{left:219.029998px;}
.xa_c00431{left:239.744999px;}
.x3_c00431{left:244.259998px;}
.x36_c00431{left:250.619999px;}
.x8_c00431{left:254.819998px;}
.x3d_c00431{left:262.949999px;}
.x39_c00431{left:272.024999px;}
.x3e_c00431{left:279.014998px;}
.x4_c00431{left:280.274999px;}
.x4b_c00431{left:281.669999px;}
.x5_c00431{left:283.319998px;}
.x45_c00431{left:297.839999px;}
.x4c_c00431{left:343.964999px;}
.x1d_c00431{left:346.889999px;}
.x46_c00431{left:353.279998px;}
.x1b_c00431{left:359.759999px;}
.x3a_c00431{left:361.469998px;}
.x1c_c00431{left:364.634999px;}
.x4d_c00431{left:369.914999px;}
.x1e_c00431{left:373.634999px;}
.x4e_c00431{left:429.659999px;}
.x4f_c00431{left:450.509999px;}
.x3b_c00431{left:475.199998px;}
.x1f_c00431{left:500.924999px;}
.x47_c00431{left:510.599999px;}
.x50_c00431{left:514.964998px;}
.x3f_c00431{left:519.044999px;}
.x51_c00431{left:536.549998px;}
.x37_c00431{left:543.659999px;}
.x40_c00431{left:586.124998px;}
.x22_c00431{left:587.894999px;}
.x23_c00431{left:593.099999px;}
.x26_c00431{left:611.819999px;}
.x28_c00431{left:619.574998px;}
.x2d_c00431{left:629.924999px;}
.x20_c00431{left:630.944999px;}
.x25_c00431{left:635.279999px;}
.x2e_c00431{left:639.449998px;}
.x52_c00431{left:647.444999px;}
.x2f_c00431{left:649.814999px;}
.x27_c00431{left:651.539999px;}
.x29_c00431{left:652.574998px;}
.x30_c00431{left:654.749998px;}
.x41_c00431{left:658.139998px;}
.x31_c00431{left:659.459998px;}
.x32_c00431{left:687.044999px;}
.x33_c00431{left:691.649999px;}
.x2a_c00431{left:693.944999px;}
.x2b_c00431{left:702.254999px;}
.x34_c00431{left:717.179999px;}
.x35_c00431{left:722.609998px;}
.x48_c00431{left:758.774999px;}
.x21_c00431{left:760.214998px;}
.x2c_c00431{left:766.529999px;}
.x24_c00431{left:780.014999px;}
@media print{
.v2_c00431{vertical-align:-8.960000pt;}
.v0_c00431{vertical-align:0.000000pt;}
.v1_c00431{vertical-align:52.533333pt;}
.ls28_c00431{letter-spacing:-9.352000pt;}
.ls26_c00431{letter-spacing:-6.104019pt;}
.ls27_c00431{letter-spacing:-5.936000pt;}
.ls25_c00431{letter-spacing:-5.656000pt;}
.ls20_c00431{letter-spacing:-4.424019pt;}
.ls19_c00431{letter-spacing:-4.013333pt;}
.ls8_c00431{letter-spacing:-3.509333pt;}
.ls1c_c00431{letter-spacing:-3.341333pt;}
.ls23_c00431{letter-spacing:-3.154667pt;}
.ls22_c00431{letter-spacing:-2.986667pt;}
.ls1f_c00431{letter-spacing:-2.818667pt;}
.ls1e_c00431{letter-spacing:-2.389333pt;}
.ls2b_c00431{letter-spacing:-2.333333pt;}
.ls2a_c00431{letter-spacing:-1.859520pt;}
.ls14_c00431{letter-spacing:-1.792000pt;}
.ls12_c00431{letter-spacing:-1.754667pt;}
.ls1d_c00431{letter-spacing:-1.698667pt;}
.ls2c_c00431{letter-spacing:-1.506667pt;}
.ls24_c00431{letter-spacing:-1.358507pt;}
.ls15_c00431{letter-spacing:-1.288019pt;}
.ls11_c00431{letter-spacing:-1.269352pt;}
.lsd_c00431{letter-spacing:-1.250667pt;}
.ls13_c00431{letter-spacing:-1.115147pt;}
.ls1b_c00431{letter-spacing:-0.996000pt;}
.ls4_c00431{letter-spacing:-0.923520pt;}
.ls10_c00431{letter-spacing:-0.858667pt;}
.lse_c00431{letter-spacing:-0.546720pt;}
.ls17_c00431{letter-spacing:-0.304000pt;}
.lsf_c00431{letter-spacing:-0.117920pt;}
.lsc_c00431{letter-spacing:-0.057173pt;}
.ls9_c00431{letter-spacing:0.000000pt;}
.ls0_c00431{letter-spacing:0.079733pt;}
.ls1_c00431{letter-spacing:0.088163pt;}
.ls3_c00431{letter-spacing:0.175792pt;}
.ls2_c00431{letter-spacing:0.744800pt;}
.ls18_c00431{letter-spacing:1.507840pt;}
.ls16_c00431{letter-spacing:2.453333pt;}
.ls5_c00431{letter-spacing:2.506667pt;}
.ls6_c00431{letter-spacing:2.560000pt;}
.lsb_c00431{letter-spacing:2.773333pt;}
.ls1a_c00431{letter-spacing:3.466667pt;}
.ls21_c00431{letter-spacing:4.000000pt;}
.lsa_c00431{letter-spacing:4.320027pt;}
.ls7_c00431{letter-spacing:5.013333pt;}
.ls29_c00431{letter-spacing:8.266667pt;}
.ws0_c00431{word-spacing:0.000000pt;}
._c_c00431{margin-left:-21.173333pt;}
._d_c00431{margin-left:-13.504000pt;}
._6_c00431{margin-left:-7.387200pt;}
._3_c00431{margin-left:-6.389500pt;}
._5_c00431{margin-left:-5.386240pt;}
._7_c00431{margin-left:-4.130560pt;}
._8_c00431{margin-left:-2.506667pt;}
._9_c00431{width:13.870092pt;}
._1_c00431{width:24.125867pt;}
._a_c00431{width:31.636800pt;}
._4_c00431{width:66.880173pt;}
._0_c00431{width:78.830933pt;}
._b_c00431{width:259.674133pt;}
._2_c00431{width:264.252000pt;}
._f_c00431{width:370.214400pt;}
._e_c00431{width:380.153303pt;}
._11_c00431{width:437.110875pt;}
._12_c00431{width:438.180760pt;}
._10_c00431{width:439.470915pt;}
.fs16_c00431{font-size:14.400533pt;}
.fs18_c00431{font-size:15.360000pt;}
.fsb_c00431{font-size:15.467200pt;}
.fs1b_c00431{font-size:16.640000pt;}
.fs22_c00431{font-size:17.067200pt;}
.fs12_c00431{font-size:19.200000pt;}
.fs10_c00431{font-size:24.533333pt;}
.fs13_c00431{font-size:26.880533pt;}
.fsc_c00431{font-size:28.160000pt;}
.fs19_c00431{font-size:30.400000pt;}
.fse_c00431{font-size:30.720000pt;}
.fs33_c00431{font-size:31.467200pt;}
.fsf_c00431{font-size:32.000000pt;}
.fsd_c00431{font-size:35.733333pt;}
.fs11_c00431{font-size:36.267200pt;}
.fs8_c00431{font-size:36.800533pt;}
.fs6_c00431{font-size:44.800000pt;}
.fs23_c00431{font-size:45.333333pt;}
.fs20_c00431{font-size:48.533333pt;}
.fs17_c00431{font-size:49.066667pt;}
.fs1_c00431{font-size:50.133333pt;}
.fs2_c00431{font-size:51.200000pt;}
.fs9_c00431{font-size:55.466667pt;}
.fsa_c00431{font-size:61.333333pt;}
.fs0_c00431{font-size:62.400000pt;}
.fs34_c00431{font-size:66.666667pt;}
.fs21_c00431{font-size:68.266667pt;}
.fs1c_c00431{font-size:69.333333pt;}
.fs26_c00431{font-size:80.000000pt;}
.fs24_c00431{font-size:80.533333pt;}
.fs27_c00431{font-size:85.333333pt;}
.fs5_c00431{font-size:86.400533pt;}
.fs7_c00431{font-size:90.133333pt;}
.fs1f_c00431{font-size:95.466667pt;}
.fs3_c00431{font-size:100.266667pt;}
.fs1e_c00431{font-size:104.960000pt;}
.fs15_c00431{font-size:108.266667pt;}
.fs1a_c00431{font-size:114.666667pt;}
.fs28_c00431{font-size:117.333333pt;}
.fs1d_c00431{font-size:120.000000pt;}
.fs14_c00431{font-size:122.880000pt;}
.fs25_c00431{font-size:126.400533pt;}
.fs4_c00431{font-size:132.266667pt;}
.fs31_c00431{font-size:134.400533pt;}
.fs32_c00431{font-size:150.933333pt;}
.fs2a_c00431{font-size:154.880000pt;}
.fs2b_c00431{font-size:161.600000pt;}
.fs30_c00431{font-size:165.333333pt;}
.fs2e_c00431{font-size:169.600000pt;}
.fs2c_c00431{font-size:174.400533pt;}
.fs29_c00431{font-size:190.400533pt;}
.fs2d_c00431{font-size:206.933333pt;}
.fs2f_c00431{font-size:267.200000pt;}
.y0_c00431{bottom:0.000000pt;}
.y2a_c00431{bottom:244.813339pt;}
.y25_c00431{bottom:380.800005pt;}
.y28_c00431{bottom:382.720005pt;}
.y26_c00431{bottom:383.053339pt;}
.y29_c00431{bottom:384.013339pt;}
.y27_c00431{bottom:384.333339pt;}
.y24_c00431{bottom:399.360005pt;}
.y23_c00431{bottom:427.840005pt;}
.y22_c00431{bottom:481.293339pt;}
.y21_c00431{bottom:521.933339pt;}
.y20_c00431{bottom:546.893339pt;}
.y1f_c00431{bottom:561.600005pt;}
.y1d_c00431{bottom:604.493339pt;}
.y10_c00431{bottom:606.093339pt;}
.y1e_c00431{bottom:606.413339pt;}
.yf_c00431{bottom:611.840005pt;}
.ye_c00431{bottom:638.093339pt;}
.y1c_c00431{bottom:666.893339pt;}
.yb_c00431{bottom:671.680005pt;}
.yd_c00431{bottom:704.000005pt;}
.yc_c00431{bottom:712.973339pt;}
.y1b_c00431{bottom:720.653339pt;}
.ya_c00431{bottom:728.320005pt;}
.y7_c00431{bottom:729.920005pt;}
.y9_c00431{bottom:733.760005pt;}
.y1a_c00431{bottom:734.733339pt;}
.y8_c00431{bottom:743.053339pt;}
.y6_c00431{bottom:751.053339pt;}
.y5_c00431{bottom:754.573339pt;}
.y19_c00431{bottom:759.053339pt;}
.y4_c00431{bottom:767.360005pt;}
.y18_c00431{bottom:776.653339pt;}
.y3_c00431{bottom:800.653339pt;}
.y17_c00431{bottom:826.893339pt;}
.y2_c00431{bottom:859.840005pt;}
.y16_c00431{bottom:861.133339pt;}
.y15_c00431{bottom:862.413339pt;}
.y12_c00431{bottom:912.973339pt;}
.y11_c00431{bottom:918.080005pt;}
.y1_c00431{bottom:960.653339pt;}
.y13_c00431{bottom:961.600005pt;}
.y14_c00431{bottom:961.920005pt;}
.h19_c00431{height:10.229760pt;}
.h1c_c00431{height:11.082240pt;}
.h17_c00431{height:15.019306pt;}
.h13_c00431{height:17.902435pt;}
.hc_c00431{height:18.754560pt;}
.h12_c00431{height:20.025000pt;}
.he_c00431{height:20.459520pt;}
.h23_c00431{height:21.312000pt;}
.h10_c00431{height:25.587500pt;}
.h1a_c00431{height:29.835938pt;}
.h32_c00431{height:32.819306pt;}
.hf_c00431{height:33.375000pt;}
.hd_c00431{height:35.070312pt;}
.h11_c00431{height:37.825556pt;}
.h16_c00431{height:38.381806pt;}
.h8_c00431{height:46.725000pt;}
.h24_c00431{height:47.281250pt;}
.h21_c00431{height:47.632812pt;}
.h27_c00431{height:49.203125pt;}
.h18_c00431{height:51.175000pt;}
.h3_c00431{height:52.287500pt;}
.h4_c00431{height:53.400000pt;}
.ha_c00431{height:57.850000pt;}
.h2_c00431{height:65.081250pt;}
.h22_c00431{height:67.000000pt;}
.h33_c00431{height:67.187500pt;}
.hb_c00431{height:68.665140pt;}
.h1f_c00431{height:69.903360pt;}
.h1d_c00431{height:72.312500pt;}
.h14_c00431{height:81.838080pt;}
.h28_c00431{height:83.437500pt;}
.h29_c00431{height:83.750000pt;}
.h25_c00431{height:83.993750pt;}
.h7_c00431{height:90.113056pt;}
.h20_c00431{height:93.648698pt;}
.h9_c00431{height:94.006250pt;}
.h2b_c00431{height:103.150080pt;}
.h5_c00431{height:104.575000pt;}
.h15_c00431{height:112.918750pt;}
.h1b_c00431{height:119.593750pt;}
.h1e_c00431{height:125.156250pt;}
.h26_c00431{height:131.831806pt;}
.h6_c00431{height:137.950000pt;}
.h2c_c00431{height:158.601562pt;}
.h31_c00431{height:162.265625pt;}
.h2f_c00431{height:166.453125pt;}
.h2d_c00431{height:181.894306pt;}
.h2a_c00431{height:198.581806pt;}
.h2e_c00431{height:215.825000pt;}
.h30_c00431{height:278.681250pt;}
.h1_c00431{height:1122.666667pt;}
.h0_c00431{height:1122.880005pt;}
.w1_c00431{width:793.333333pt;}
.w0_c00431{width:793.599999pt;}
.x0_c00431{left:0.000000pt;}
.xb_c00431{left:68.666665pt;}
.x19_c00431{left:83.666665pt;}
.x2_c00431{left:85.346665pt;}
.x1_c00431{left:94.533332pt;}
.x49_c00431{left:96.226665pt;}
.x42_c00431{left:110.239999pt;}
.xc_c00431{left:114.693332pt;}
.x38_c00431{left:124.453332pt;}
.x3c_c00431{left:137.933332pt;}
.x43_c00431{left:139.053332pt;}
.x4a_c00431{left:142.653332pt;}
.xd_c00431{left:146.786665pt;}
.xe_c00431{left:151.239999pt;}
.xf_c00431{left:155.973332pt;}
.x14_c00431{left:160.319999pt;}
.x15_c00431{left:164.693332pt;}
.x16_c00431{left:166.559999pt;}
.x10_c00431{left:167.693332pt;}
.x18_c00431{left:168.693332pt;}
.x6_c00431{left:171.373332pt;}
.x11_c00431{left:174.213332pt;}
.x9_c00431{left:175.119999pt;}
.x7_c00431{left:176.746665pt;}
.x44_c00431{left:184.226665pt;}
.x17_c00431{left:185.159999pt;}
.x1a_c00431{left:187.973332pt;}
.x12_c00431{left:192.586665pt;}
.x13_c00431{left:194.693332pt;}
.xa_c00431{left:213.106665pt;}
.x3_c00431{left:217.119999pt;}
.x36_c00431{left:222.773332pt;}
.x8_c00431{left:226.506665pt;}
.x3d_c00431{left:233.733332pt;}
.x39_c00431{left:241.799999pt;}
.x3e_c00431{left:248.013332pt;}
.x4_c00431{left:249.133332pt;}
.x4b_c00431{left:250.373332pt;}
.x5_c00431{left:251.839999pt;}
.x45_c00431{left:264.746665pt;}
.x4c_c00431{left:305.746665pt;}
.x1d_c00431{left:308.346665pt;}
.x46_c00431{left:314.026665pt;}
.x1b_c00431{left:319.786665pt;}
.x3a_c00431{left:321.306665pt;}
.x1c_c00431{left:324.119999pt;}
.x4d_c00431{left:328.813332pt;}
.x1e_c00431{left:332.119999pt;}
.x4e_c00431{left:381.919999pt;}
.x4f_c00431{left:400.453332pt;}
.x3b_c00431{left:422.399999pt;}
.x1f_c00431{left:445.266665pt;}
.x47_c00431{left:453.866665pt;}
.x50_c00431{left:457.746665pt;}
.x3f_c00431{left:461.373332pt;}
.x51_c00431{left:476.933332pt;}
.x37_c00431{left:483.253332pt;}
.x40_c00431{left:520.999999pt;}
.x22_c00431{left:522.573332pt;}
.x23_c00431{left:527.199999pt;}
.x26_c00431{left:543.839999pt;}
.x28_c00431{left:550.733332pt;}
.x2d_c00431{left:559.933332pt;}
.x20_c00431{left:560.839999pt;}
.x25_c00431{left:564.693332pt;}
.x2e_c00431{left:568.399999pt;}
.x52_c00431{left:575.506665pt;}
.x2f_c00431{left:577.613332pt;}
.x27_c00431{left:579.146665pt;}
.x29_c00431{left:580.066665pt;}
.x30_c00431{left:581.999999pt;}
.x41_c00431{left:585.013332pt;}
.x31_c00431{left:586.186665pt;}
.x32_c00431{left:610.706665pt;}
.x33_c00431{left:614.799999pt;}
.x2a_c00431{left:616.839999pt;}
.x2b_c00431{left:624.226665pt;}
.x34_c00431{left:637.493332pt;}
.x35_c00431{left:642.319999pt;}
.x48_c00431{left:674.466665pt;}
.x21_c00431{left:675.746665pt;}
.x2c_c00431{left:681.359999pt;}
.x24_c00431{left:693.346665pt;}
}





/* 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_c00432 {
    display:none;
  }
  .loading-indicator_c00432.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00432 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_c00432 { 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_c00432" -> "#page-container .classname_c00432")
 */
.pf_c00432 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00432 { /* 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_c00432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00432 { /* 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_c00432 { /* 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_c00432 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00432 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00432 {overflow:visible;}
  }
}
.c_c00432 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00432 { /* 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_c00432:after { /* webkit #35443 */
  content: '';
}
.t_c00432:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00432 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 */
}
.__c00432 { /* 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_c00432 { /* info for Javascript */
  display:none;
}
.l_c00432 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00432 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00432 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00432: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_c00432 {
    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_c00432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00432.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_c00432 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00432{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00432;src:url('chunks/assets/font_bff4763553875c84119c5010.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.284668;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_c00432;src:url('chunks/assets/font_4ef8ffdcb9079f4997b1ad7b.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;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_c00432;src:url('chunks/assets/font_7556e685af698590914b18ba.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;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:ff4_c00432;src:url('chunks/assets/font_35d0e1aeca8a91d9679ee0ab.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:0.666000;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_c00432;src:url('chunks/assets/font_7021b66e61be536e5d581c22.woff2')format("woff");}.ff5_c00432{font-family:ff5_c00432;line-height:1.284180;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;}
.mb_c00432{transform:matrix(0.209537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209537,0.000000,0.000000,0.250000,0,0);}
.m1_c00432{transform:matrix(0.211664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211664,0.000000,0.000000,0.250000,0,0);}
.me_c00432{transform:matrix(0.231532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231532,0.000000,0.000000,0.250000,0,0);}
.mc_c00432{transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);}
.m8_c00432{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m9_c00432{transform:matrix(0.246776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246776,0.000000,0.000000,0.250000,0,0);}
.mf_c00432{transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);}
.m0_c00432{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);}
.ma_c00432{transform:matrix(0.250631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250631,0.000000,0.000000,0.250000,0,0);}
.m7_c00432{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m6_c00432{transform:matrix(0.253478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253478,0.000000,0.000000,0.250000,0,0);}
.m3_c00432{transform:matrix(0.260017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260017,0.000000,0.000000,0.250000,0,0);}
.md_c00432{transform:matrix(0.275412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275412,0.000000,0.000000,0.250000,0,0);}
.m4_c00432{transform:matrix(0.317808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317808,0.000000,0.000000,0.250000,0,0);}
.m5_c00432{transform:matrix(0.417463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417463,0.000000,0.000000,0.250000,0,0);}
.m2_c00432{transform:matrix(0.561770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561770,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.v1_c00432{vertical-align:30.240000px;}
.v2_c00432{vertical-align:33.060000px;}
.ls95_c00432{letter-spacing:-2.436000px;}
.lsa2_c00432{letter-spacing:-2.067120px;}
.ls87_c00432{letter-spacing:-1.649520px;}
.ls9a_c00432{letter-spacing:-1.586880px;}
.lsa3_c00432{letter-spacing:-1.566000px;}
.ls8f_c00432{letter-spacing:-1.559040px;}
.ls92_c00432{letter-spacing:-1.426800px;}
.lsaa_c00432{letter-spacing:-1.357200px;}
.ls9b_c00432{letter-spacing:-1.343280px;}
.ls85_c00432{letter-spacing:-1.218000px;}
.ls9f_c00432{letter-spacing:-1.169280px;}
.lsa1_c00432{letter-spacing:-1.155360px;}
.ls83_c00432{letter-spacing:-1.155021px;}
.ls9c_c00432{letter-spacing:-0.793440px;}
.ls9e_c00432{letter-spacing:-0.758640px;}
.lsa9_c00432{letter-spacing:-0.751680px;}
.ls98_c00432{letter-spacing:-0.619440px;}
.ls89_c00432{letter-spacing:-0.605520px;}
.lsa6_c00432{letter-spacing:-0.542880px;}
.ls94_c00432{letter-spacing:-0.508080px;}
.ls8c_c00432{letter-spacing:-0.452400px;}
.ls8e_c00432{letter-spacing:-0.445440px;}
.lsa4_c00432{letter-spacing:-0.424560px;}
.lsa5_c00432{letter-spacing:-0.396720px;}
.ls96_c00432{letter-spacing:-0.382800px;}
.ls90_c00432{letter-spacing:-0.327120px;}
.lsab_c00432{letter-spacing:-0.219960px;}
.lsa8_c00432{letter-spacing:-0.215760px;}
.ls86_c00432{letter-spacing:-0.208800px;}
.ls8d_c00432{letter-spacing:-0.167040px;}
.ls88_c00432{letter-spacing:-0.104400px;}
.ls93_c00432{letter-spacing:-0.097440px;}
.ls8a_c00432{letter-spacing:-0.090480px;}
.lsa7_c00432{letter-spacing:-0.041760px;}
.ls9d_c00432{letter-spacing:-0.027840px;}
.ls82_c00432{letter-spacing:0.000000px;}
.ls3_c00432{letter-spacing:0.006960px;}
.ls74_c00432{letter-spacing:0.083520px;}
.ls64_c00432{letter-spacing:0.097440px;}
.ls37_c00432{letter-spacing:0.125280px;}
.ls60_c00432{letter-spacing:0.139200px;}
.ls5f_c00432{letter-spacing:0.180960px;}
.ls2b_c00432{letter-spacing:0.222720px;}
.ls5e_c00432{letter-spacing:0.229680px;}
.ls19_c00432{letter-spacing:0.271440px;}
.ls5c_c00432{letter-spacing:0.278400px;}
.ls4f_c00432{letter-spacing:0.285360px;}
.ls62_c00432{letter-spacing:0.299280px;}
.ls7a_c00432{letter-spacing:0.306240px;}
.ls99_c00432{letter-spacing:0.320160px;}
.ls10_c00432{letter-spacing:0.334080px;}
.ls6d_c00432{letter-spacing:0.348000px;}
.ls29_c00432{letter-spacing:0.382800px;}
.ls68_c00432{letter-spacing:0.396720px;}
.ls6f_c00432{letter-spacing:0.452400px;}
.ls75_c00432{letter-spacing:0.459360px;}
.ls97_c00432{letter-spacing:0.480240px;}
.ls61_c00432{letter-spacing:0.494160px;}
.ls2f_c00432{letter-spacing:0.508080px;}
.ls21_c00432{letter-spacing:0.522000px;}
.ls12_c00432{letter-spacing:0.528960px;}
.ls55_c00432{letter-spacing:0.535920px;}
.ls1b_c00432{letter-spacing:0.542880px;}
.ls79_c00432{letter-spacing:0.563760px;}
.ls39_c00432{letter-spacing:0.570720px;}
.ls58_c00432{letter-spacing:0.577680px;}
.lsa_c00432{letter-spacing:0.584640px;}
.ls32_c00432{letter-spacing:0.591600px;}
.ls6b_c00432{letter-spacing:0.605520px;}
.ls69_c00432{letter-spacing:0.619440px;}
.ls11_c00432{letter-spacing:0.647280px;}
.ls2d_c00432{letter-spacing:0.675120px;}
.ls8b_c00432{letter-spacing:0.682080px;}
.ls4b_c00432{letter-spacing:0.689040px;}
.ls2c_c00432{letter-spacing:0.696000px;}
.ls5a_c00432{letter-spacing:0.702960px;}
.ls13_c00432{letter-spacing:0.709920px;}
.ls3e_c00432{letter-spacing:0.716880px;}
.ls17_c00432{letter-spacing:0.730800px;}
.ls4a_c00432{letter-spacing:0.737760px;}
.lsa0_c00432{letter-spacing:0.751680px;}
.ls26_c00432{letter-spacing:0.758640px;}
.ls24_c00432{letter-spacing:0.779520px;}
.ls80_c00432{letter-spacing:0.793440px;}
.lsc_c00432{letter-spacing:0.800400px;}
.ls1a_c00432{letter-spacing:0.807360px;}
.ls20_c00432{letter-spacing:0.821280px;}
.ls4d_c00432{letter-spacing:0.835200px;}
.ls6a_c00432{letter-spacing:0.842160px;}
.ls78_c00432{letter-spacing:0.849120px;}
.ls8_c00432{letter-spacing:0.856080px;}
.ls1c_c00432{letter-spacing:0.876960px;}
.ls1d_c00432{letter-spacing:0.883920px;}
.ls4c_c00432{letter-spacing:0.890880px;}
.ls27_c00432{letter-spacing:0.897840px;}
.lsf_c00432{letter-spacing:0.904800px;}
.ls23_c00432{letter-spacing:0.918720px;}
.ls63_c00432{letter-spacing:0.925680px;}
.ls46_c00432{letter-spacing:0.939600px;}
.ls6_c00432{letter-spacing:0.946560px;}
.ls53_c00432{letter-spacing:0.953520px;}
.ls7c_c00432{letter-spacing:0.960480px;}
.ls2_c00432{letter-spacing:0.974400px;}
.ls6e_c00432{letter-spacing:0.988320px;}
.ls3a_c00432{letter-spacing:1.002240px;}
.ls34_c00432{letter-spacing:1.009200px;}
.ls7d_c00432{letter-spacing:1.016160px;}
.ls0_c00432{letter-spacing:1.023120px;}
.ls65_c00432{letter-spacing:1.030080px;}
.ls38_c00432{letter-spacing:1.037040px;}
.ls77_c00432{letter-spacing:1.042320px;}
.ls1_c00432{letter-spacing:1.044000px;}
.ls25_c00432{letter-spacing:1.050960px;}
.lsd_c00432{letter-spacing:1.057920px;}
.ls41_c00432{letter-spacing:1.064880px;}
.ls5d_c00432{letter-spacing:1.071840px;}
.ls59_c00432{letter-spacing:1.078800px;}
.ls15_c00432{letter-spacing:1.085760px;}
.ls3b_c00432{letter-spacing:1.092720px;}
.ls31_c00432{letter-spacing:1.099680px;}
.ls45_c00432{letter-spacing:1.106640px;}
.ls3c_c00432{letter-spacing:1.113600px;}
.ls7_c00432{letter-spacing:1.120560px;}
.ls7f_c00432{letter-spacing:1.148400px;}
.ls5_c00432{letter-spacing:1.155360px;}
.ls1f_c00432{letter-spacing:1.162320px;}
.ls40_c00432{letter-spacing:1.176240px;}
.ls2e_c00432{letter-spacing:1.183200px;}
.ls2a_c00432{letter-spacing:1.190160px;}
.ls30_c00432{letter-spacing:1.197120px;}
.ls43_c00432{letter-spacing:1.211040px;}
.ls49_c00432{letter-spacing:1.224960px;}
.ls18_c00432{letter-spacing:1.231920px;}
.ls54_c00432{letter-spacing:1.238880px;}
.ls47_c00432{letter-spacing:1.252800px;}
.ls52_c00432{letter-spacing:1.273680px;}
.ls5b_c00432{letter-spacing:1.287600px;}
.ls57_c00432{letter-spacing:1.308480px;}
.lsb_c00432{letter-spacing:1.315440px;}
.ls16_c00432{letter-spacing:1.350240px;}
.ls56_c00432{letter-spacing:1.357200px;}
.ls14_c00432{letter-spacing:1.364160px;}
.ls6c_c00432{letter-spacing:1.378080px;}
.ls35_c00432{letter-spacing:1.398960px;}
.ls4_c00432{letter-spacing:1.447680px;}
.ls72_c00432{letter-spacing:1.454640px;}
.ls67_c00432{letter-spacing:1.482480px;}
.ls73_c00432{letter-spacing:1.524240px;}
.ls42_c00432{letter-spacing:1.538160px;}
.ls3f_c00432{letter-spacing:1.552080px;}
.ls1e_c00432{letter-spacing:1.572960px;}
.ls70_c00432{letter-spacing:1.579920px;}
.ls3d_c00432{letter-spacing:1.586880px;}
.ls33_c00432{letter-spacing:1.600800px;}
.ls36_c00432{letter-spacing:1.614720px;}
.ls44_c00432{letter-spacing:1.642560px;}
.ls71_c00432{letter-spacing:1.663440px;}
.ls76_c00432{letter-spacing:1.705200px;}
.ls48_c00432{letter-spacing:1.726080px;}
.ls84_c00432{letter-spacing:1.770030px;}
.lse_c00432{letter-spacing:1.844400px;}
.ls66_c00432{letter-spacing:1.865280px;}
.ls28_c00432{letter-spacing:1.983600px;}
.ls4e_c00432{letter-spacing:1.997520px;}
.ls50_c00432{letter-spacing:2.199360px;}
.ls22_c00432{letter-spacing:2.227200px;}
.ls51_c00432{letter-spacing:2.324640px;}
.ls9_c00432{letter-spacing:2.442960px;}
.ls7e_c00432{letter-spacing:2.568240px;}
.ls81_c00432{letter-spacing:2.851800px;}
.ls7b_c00432{letter-spacing:2.888400px;}
.ls91_c00432{letter-spacing:3.480000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{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__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00432{word-spacing:-19.105200px;}
.ws0_c00432{word-spacing:-18.624960px;}
.ws2_c00432{word-spacing:0.000000px;}
._11_c00432{margin-left:-21.307332px;}
._15_c00432{margin-left:-15.833652px;}
._d_c00432{margin-left:-1.726080px;}
._c_c00432{width:1.197120px;}
._e_c00432{width:2.547360px;}
._10_c00432{width:3.573525px;}
._1_c00432{width:5.133087px;}
._7_c00432{width:6.973920px;}
._5_c00432{width:8.004000px;}
._2_c00432{width:9.006240px;}
._4_c00432{width:10.412160px;}
._f_c00432{width:11.539680px;}
._3_c00432{width:12.910800px;}
._9_c00432{width:14.417553px;}
._b_c00432{width:15.701454px;}
._8_c00432{width:17.831520px;}
._6_c00432{width:19.494960px;}
._a_c00432{width:20.744640px;}
._13_c00432{width:22.181520px;}
._14_c00432{width:24.126480px;}
._12_c00432{width:25.518480px;}
._0_c00432{width:30.199900px;}
.fc0_c00432{color:transparent;}
.fs5_c00432{font-size:25.920000px;}
.fs1_c00432{font-size:29.400600px;}
.fs3_c00432{font-size:33.000600px;}
.fs2_c00432{font-size:35.400600px;}
.fs4_c00432{font-size:42.000000px;}
.fs8_c00432{font-size:47.400600px;}
.fs9_c00432{font-size:51.600000px;}
.fsa_c00432{font-size:56.400000px;}
.fs0_c00432{font-size:58.800000px;}
.fs6_c00432{font-size:69.600000px;}
.fs7_c00432{font-size:73.800000px;}
.y0_c00432{bottom:0.000000px;}
.y26_c00432{bottom:105.480015px;}
.y24_c00432{bottom:152.638815px;}
.y25_c00432{bottom:152.640015px;}
.y23_c00432{bottom:182.880015px;}
.y22_c00432{bottom:182.883015px;}
.y21_c00432{bottom:213.855015px;}
.y20_c00432{bottom:245.175015px;}
.y1f_c00432{bottom:276.120015px;}
.y1e_c00432{bottom:276.128415px;}
.y1d_c00432{bottom:306.733815px;}
.y1c_c00432{bottom:336.973815px;}
.y1a_c00432{bottom:367.208415px;}
.y1b_c00432{bottom:367.215015px;}
.y19_c00432{bottom:397.812015px;}
.y17_c00432{bottom:429.471015px;}
.y18_c00432{bottom:429.480015px;}
.y16_c00432{bottom:461.887215px;}
.y15_c00432{bottom:492.476415px;}
.y14_c00432{bottom:523.448415px;}
.y13_c00432{bottom:585.375015px;}
.y12_c00432{bottom:615.975015px;}
.y11_c00432{bottom:615.982815px;}
.y10_c00432{bottom:646.930815px;}
.yf_c00432{bottom:677.902815px;}
.ye_c00432{bottom:708.840015px;}
.yd_c00432{bottom:708.843015px;}
.yc_c00432{bottom:739.804215px;}
.yb_c00432{bottom:770.410815px;}
.ya_c00432{bottom:801.000015px;}
.y9_c00432{bottom:831.632415px;}
.y8_c00432{bottom:862.569615px;}
.y7_c00432{bottom:923.417415px;}
.y6_c00432{bottom:954.720015px;}
.y5_c00432{bottom:985.340415px;}
.y4_c00432{bottom:1016.295015px;}
.y3_c00432{bottom:1076.415015px;}
.y2_c00432{bottom:1082.880015px;}
.y1_c00432{bottom:1152.360015px;}
.h7_c00432{height:17.262720px;}
.h4_c00432{height:32.388284px;}
.h5_c00432{height:34.743753px;}
.h3_c00432{height:36.921720px;}
.h6_c00432{height:43.804688px;}
.he_c00432{height:55.353516px;}
.h2_c00432{height:57.708984px;}
.h8_c00432{height:68.308594px;}
.hb_c00432{height:68.313394px;}
.ha_c00432{height:68.320594px;}
.h9_c00432{height:68.351794px;}
.hc_c00432{height:76.761097px;}
.hd_c00432{height:83.702578px;}
.h1_c00432{height:1263.000000px;}
.h0_c00432{height:1263.240015px;}
.w1_c00432{width:892.500000px;}
.w0_c00432{width:892.800015px;}
.x0_c00432{left:0.000000px;}
.x1_c00432{left:112.605015px;}
.x2_c00432{left:114.045015px;}
.x3_c00432{left:140.985015px;}
.x4_c00432{left:153.945015px;}
.xd_c00432{left:156.780015px;}
.xa_c00432{left:166.965015px;}
.xe_c00432{left:178.830015px;}
.x8_c00432{left:182.685015px;}
.x9_c00432{left:192.615015px;}
.x5_c00432{left:196.215015px;}
.x6_c00432{left:216.915015px;}
.x11_c00432{left:218.445015px;}
.x7_c00432{left:236.175015px;}
.x12_c00432{left:247.875015px;}
.x1c_c00432{left:332.610015px;}
.x1d_c00432{left:362.055015px;}
.x13_c00432{left:378.330015px;}
.x14_c00432{left:403.035015px;}
.x1e_c00432{left:426.075015px;}
.x1a_c00432{left:453.210015px;}
.x1b_c00432{left:476.970015px;}
.x15_c00432{left:498.930015px;}
.x16_c00432{left:526.530015px;}
.xb_c00432{left:592.455015px;}
.xc_c00432{left:616.800015px;}
.x17_c00432{left:619.005015px;}
.xf_c00432{left:642.720015px;}
.x18_c00432{left:645.630015px;}
.x10_c00432{left:671.580015px;}
.x19_c00432{left:739.410015px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.v1_c00432{vertical-align:26.880000pt;}
.v2_c00432{vertical-align:29.386667pt;}
.ls95_c00432{letter-spacing:-2.165333pt;}
.lsa2_c00432{letter-spacing:-1.837440pt;}
.ls87_c00432{letter-spacing:-1.466240pt;}
.ls9a_c00432{letter-spacing:-1.410560pt;}
.lsa3_c00432{letter-spacing:-1.392000pt;}
.ls8f_c00432{letter-spacing:-1.385813pt;}
.ls92_c00432{letter-spacing:-1.268267pt;}
.lsaa_c00432{letter-spacing:-1.206400pt;}
.ls9b_c00432{letter-spacing:-1.194027pt;}
.ls85_c00432{letter-spacing:-1.082667pt;}
.ls9f_c00432{letter-spacing:-1.039360pt;}
.lsa1_c00432{letter-spacing:-1.026987pt;}
.ls83_c00432{letter-spacing:-1.026685pt;}
.ls9c_c00432{letter-spacing:-0.705280pt;}
.ls9e_c00432{letter-spacing:-0.674347pt;}
.lsa9_c00432{letter-spacing:-0.668160pt;}
.ls98_c00432{letter-spacing:-0.550613pt;}
.ls89_c00432{letter-spacing:-0.538240pt;}
.lsa6_c00432{letter-spacing:-0.482560pt;}
.ls94_c00432{letter-spacing:-0.451627pt;}
.ls8c_c00432{letter-spacing:-0.402133pt;}
.ls8e_c00432{letter-spacing:-0.395947pt;}
.lsa4_c00432{letter-spacing:-0.377387pt;}
.lsa5_c00432{letter-spacing:-0.352640pt;}
.ls96_c00432{letter-spacing:-0.340267pt;}
.ls90_c00432{letter-spacing:-0.290773pt;}
.lsab_c00432{letter-spacing:-0.195520pt;}
.lsa8_c00432{letter-spacing:-0.191787pt;}
.ls86_c00432{letter-spacing:-0.185600pt;}
.ls8d_c00432{letter-spacing:-0.148480pt;}
.ls88_c00432{letter-spacing:-0.092800pt;}
.ls93_c00432{letter-spacing:-0.086613pt;}
.ls8a_c00432{letter-spacing:-0.080427pt;}
.lsa7_c00432{letter-spacing:-0.037120pt;}
.ls9d_c00432{letter-spacing:-0.024747pt;}
.ls82_c00432{letter-spacing:0.000000pt;}
.ls3_c00432{letter-spacing:0.006187pt;}
.ls74_c00432{letter-spacing:0.074240pt;}
.ls64_c00432{letter-spacing:0.086613pt;}
.ls37_c00432{letter-spacing:0.111360pt;}
.ls60_c00432{letter-spacing:0.123733pt;}
.ls5f_c00432{letter-spacing:0.160853pt;}
.ls2b_c00432{letter-spacing:0.197973pt;}
.ls5e_c00432{letter-spacing:0.204160pt;}
.ls19_c00432{letter-spacing:0.241280pt;}
.ls5c_c00432{letter-spacing:0.247467pt;}
.ls4f_c00432{letter-spacing:0.253653pt;}
.ls62_c00432{letter-spacing:0.266027pt;}
.ls7a_c00432{letter-spacing:0.272213pt;}
.ls99_c00432{letter-spacing:0.284587pt;}
.ls10_c00432{letter-spacing:0.296960pt;}
.ls6d_c00432{letter-spacing:0.309333pt;}
.ls29_c00432{letter-spacing:0.340267pt;}
.ls68_c00432{letter-spacing:0.352640pt;}
.ls6f_c00432{letter-spacing:0.402133pt;}
.ls75_c00432{letter-spacing:0.408320pt;}
.ls97_c00432{letter-spacing:0.426880pt;}
.ls61_c00432{letter-spacing:0.439253pt;}
.ls2f_c00432{letter-spacing:0.451627pt;}
.ls21_c00432{letter-spacing:0.464000pt;}
.ls12_c00432{letter-spacing:0.470187pt;}
.ls55_c00432{letter-spacing:0.476373pt;}
.ls1b_c00432{letter-spacing:0.482560pt;}
.ls79_c00432{letter-spacing:0.501120pt;}
.ls39_c00432{letter-spacing:0.507307pt;}
.ls58_c00432{letter-spacing:0.513493pt;}
.lsa_c00432{letter-spacing:0.519680pt;}
.ls32_c00432{letter-spacing:0.525867pt;}
.ls6b_c00432{letter-spacing:0.538240pt;}
.ls69_c00432{letter-spacing:0.550613pt;}
.ls11_c00432{letter-spacing:0.575360pt;}
.ls2d_c00432{letter-spacing:0.600107pt;}
.ls8b_c00432{letter-spacing:0.606293pt;}
.ls4b_c00432{letter-spacing:0.612480pt;}
.ls2c_c00432{letter-spacing:0.618667pt;}
.ls5a_c00432{letter-spacing:0.624853pt;}
.ls13_c00432{letter-spacing:0.631040pt;}
.ls3e_c00432{letter-spacing:0.637227pt;}
.ls17_c00432{letter-spacing:0.649600pt;}
.ls4a_c00432{letter-spacing:0.655787pt;}
.lsa0_c00432{letter-spacing:0.668160pt;}
.ls26_c00432{letter-spacing:0.674347pt;}
.ls24_c00432{letter-spacing:0.692907pt;}
.ls80_c00432{letter-spacing:0.705280pt;}
.lsc_c00432{letter-spacing:0.711467pt;}
.ls1a_c00432{letter-spacing:0.717653pt;}
.ls20_c00432{letter-spacing:0.730027pt;}
.ls4d_c00432{letter-spacing:0.742400pt;}
.ls6a_c00432{letter-spacing:0.748587pt;}
.ls78_c00432{letter-spacing:0.754773pt;}
.ls8_c00432{letter-spacing:0.760960pt;}
.ls1c_c00432{letter-spacing:0.779520pt;}
.ls1d_c00432{letter-spacing:0.785707pt;}
.ls4c_c00432{letter-spacing:0.791893pt;}
.ls27_c00432{letter-spacing:0.798080pt;}
.lsf_c00432{letter-spacing:0.804267pt;}
.ls23_c00432{letter-spacing:0.816640pt;}
.ls63_c00432{letter-spacing:0.822827pt;}
.ls46_c00432{letter-spacing:0.835200pt;}
.ls6_c00432{letter-spacing:0.841387pt;}
.ls53_c00432{letter-spacing:0.847573pt;}
.ls7c_c00432{letter-spacing:0.853760pt;}
.ls2_c00432{letter-spacing:0.866133pt;}
.ls6e_c00432{letter-spacing:0.878507pt;}
.ls3a_c00432{letter-spacing:0.890880pt;}
.ls34_c00432{letter-spacing:0.897067pt;}
.ls7d_c00432{letter-spacing:0.903253pt;}
.ls0_c00432{letter-spacing:0.909440pt;}
.ls65_c00432{letter-spacing:0.915627pt;}
.ls38_c00432{letter-spacing:0.921813pt;}
.ls77_c00432{letter-spacing:0.926507pt;}
.ls1_c00432{letter-spacing:0.928000pt;}
.ls25_c00432{letter-spacing:0.934187pt;}
.lsd_c00432{letter-spacing:0.940373pt;}
.ls41_c00432{letter-spacing:0.946560pt;}
.ls5d_c00432{letter-spacing:0.952747pt;}
.ls59_c00432{letter-spacing:0.958933pt;}
.ls15_c00432{letter-spacing:0.965120pt;}
.ls3b_c00432{letter-spacing:0.971307pt;}
.ls31_c00432{letter-spacing:0.977493pt;}
.ls45_c00432{letter-spacing:0.983680pt;}
.ls3c_c00432{letter-spacing:0.989867pt;}
.ls7_c00432{letter-spacing:0.996053pt;}
.ls7f_c00432{letter-spacing:1.020800pt;}
.ls5_c00432{letter-spacing:1.026987pt;}
.ls1f_c00432{letter-spacing:1.033173pt;}
.ls40_c00432{letter-spacing:1.045547pt;}
.ls2e_c00432{letter-spacing:1.051733pt;}
.ls2a_c00432{letter-spacing:1.057920pt;}
.ls30_c00432{letter-spacing:1.064107pt;}
.ls43_c00432{letter-spacing:1.076480pt;}
.ls49_c00432{letter-spacing:1.088853pt;}
.ls18_c00432{letter-spacing:1.095040pt;}
.ls54_c00432{letter-spacing:1.101227pt;}
.ls47_c00432{letter-spacing:1.113600pt;}
.ls52_c00432{letter-spacing:1.132160pt;}
.ls5b_c00432{letter-spacing:1.144533pt;}
.ls57_c00432{letter-spacing:1.163093pt;}
.lsb_c00432{letter-spacing:1.169280pt;}
.ls16_c00432{letter-spacing:1.200213pt;}
.ls56_c00432{letter-spacing:1.206400pt;}
.ls14_c00432{letter-spacing:1.212587pt;}
.ls6c_c00432{letter-spacing:1.224960pt;}
.ls35_c00432{letter-spacing:1.243520pt;}
.ls4_c00432{letter-spacing:1.286827pt;}
.ls72_c00432{letter-spacing:1.293013pt;}
.ls67_c00432{letter-spacing:1.317760pt;}
.ls73_c00432{letter-spacing:1.354880pt;}
.ls42_c00432{letter-spacing:1.367253pt;}
.ls3f_c00432{letter-spacing:1.379627pt;}
.ls1e_c00432{letter-spacing:1.398187pt;}
.ls70_c00432{letter-spacing:1.404373pt;}
.ls3d_c00432{letter-spacing:1.410560pt;}
.ls33_c00432{letter-spacing:1.422933pt;}
.ls36_c00432{letter-spacing:1.435307pt;}
.ls44_c00432{letter-spacing:1.460053pt;}
.ls71_c00432{letter-spacing:1.478613pt;}
.ls76_c00432{letter-spacing:1.515733pt;}
.ls48_c00432{letter-spacing:1.534293pt;}
.ls84_c00432{letter-spacing:1.573360pt;}
.lse_c00432{letter-spacing:1.639467pt;}
.ls66_c00432{letter-spacing:1.658027pt;}
.ls28_c00432{letter-spacing:1.763200pt;}
.ls4e_c00432{letter-spacing:1.775573pt;}
.ls50_c00432{letter-spacing:1.954987pt;}
.ls22_c00432{letter-spacing:1.979733pt;}
.ls51_c00432{letter-spacing:2.066347pt;}
.ls9_c00432{letter-spacing:2.171520pt;}
.ls7e_c00432{letter-spacing:2.282880pt;}
.ls81_c00432{letter-spacing:2.534933pt;}
.ls7b_c00432{letter-spacing:2.567467pt;}
.ls91_c00432{letter-spacing:3.093333pt;}
.ws1_c00432{word-spacing:-16.982400pt;}
.ws0_c00432{word-spacing:-16.555520pt;}
.ws2_c00432{word-spacing:0.000000pt;}
._11_c00432{margin-left:-18.939851pt;}
._15_c00432{margin-left:-14.074357pt;}
._d_c00432{margin-left:-1.534293pt;}
._c_c00432{width:1.064107pt;}
._e_c00432{width:2.264320pt;}
._10_c00432{width:3.176467pt;}
._1_c00432{width:4.562744pt;}
._7_c00432{width:6.199040pt;}
._5_c00432{width:7.114667pt;}
._2_c00432{width:8.005547pt;}
._4_c00432{width:9.255253pt;}
._f_c00432{width:10.257493pt;}
._3_c00432{width:11.476267pt;}
._9_c00432{width:12.815603pt;}
._b_c00432{width:13.956848pt;}
._8_c00432{width:15.850240pt;}
._6_c00432{width:17.328853pt;}
._a_c00432{width:18.439680pt;}
._13_c00432{width:19.716907pt;}
._14_c00432{width:21.445760pt;}
._12_c00432{width:22.683093pt;}
._0_c00432{width:26.844355pt;}
.fs5_c00432{font-size:23.040000pt;}
.fs1_c00432{font-size:26.133867pt;}
.fs3_c00432{font-size:29.333867pt;}
.fs2_c00432{font-size:31.467200pt;}
.fs4_c00432{font-size:37.333333pt;}
.fs8_c00432{font-size:42.133867pt;}
.fs9_c00432{font-size:45.866667pt;}
.fsa_c00432{font-size:50.133333pt;}
.fs0_c00432{font-size:52.266667pt;}
.fs6_c00432{font-size:61.866667pt;}
.fs7_c00432{font-size:65.600000pt;}
.y0_c00432{bottom:0.000000pt;}
.y26_c00432{bottom:93.760013pt;}
.y24_c00432{bottom:135.678947pt;}
.y25_c00432{bottom:135.680013pt;}
.y23_c00432{bottom:162.560013pt;}
.y22_c00432{bottom:162.562680pt;}
.y21_c00432{bottom:190.093347pt;}
.y20_c00432{bottom:217.933347pt;}
.y1f_c00432{bottom:245.440013pt;}
.y1e_c00432{bottom:245.447480pt;}
.y1d_c00432{bottom:272.652280pt;}
.y1c_c00432{bottom:299.532280pt;}
.y1a_c00432{bottom:326.407480pt;}
.y1b_c00432{bottom:326.413347pt;}
.y19_c00432{bottom:353.610680pt;}
.y17_c00432{bottom:381.752013pt;}
.y18_c00432{bottom:381.760013pt;}
.y16_c00432{bottom:410.566413pt;}
.y15_c00432{bottom:437.756813pt;}
.y14_c00432{bottom:465.287480pt;}
.y13_c00432{bottom:520.333347pt;}
.y12_c00432{bottom:547.533347pt;}
.y11_c00432{bottom:547.540280pt;}
.y10_c00432{bottom:575.049613pt;}
.yf_c00432{bottom:602.580280pt;}
.ye_c00432{bottom:630.080013pt;}
.yd_c00432{bottom:630.082680pt;}
.yc_c00432{bottom:657.603747pt;}
.yb_c00432{bottom:684.809613pt;}
.ya_c00432{bottom:712.000013pt;}
.y9_c00432{bottom:739.228813pt;}
.y8_c00432{bottom:766.728547pt;}
.y7_c00432{bottom:820.815480pt;}
.y6_c00432{bottom:848.640013pt;}
.y5_c00432{bottom:875.858147pt;}
.y4_c00432{bottom:903.373347pt;}
.y3_c00432{bottom:956.813347pt;}
.y2_c00432{bottom:962.560013pt;}
.y1_c00432{bottom:1024.320013pt;}
.h7_c00432{height:15.344640pt;}
.h4_c00432{height:28.789586pt;}
.h5_c00432{height:30.883336pt;}
.h3_c00432{height:32.819306pt;}
.h6_c00432{height:38.937500pt;}
.he_c00432{height:49.203125pt;}
.h2_c00432{height:51.296875pt;}
.h8_c00432{height:60.718750pt;}
.hb_c00432{height:60.723017pt;}
.ha_c00432{height:60.729417pt;}
.h9_c00432{height:60.757150pt;}
.hc_c00432{height:68.232086pt;}
.hd_c00432{height:74.402292pt;}
.h1_c00432{height:1122.666667pt;}
.h0_c00432{height:1122.880013pt;}
.w1_c00432{width:793.333333pt;}
.w0_c00432{width:793.600013pt;}
.x0_c00432{left:0.000000pt;}
.x1_c00432{left:100.093347pt;}
.x2_c00432{left:101.373347pt;}
.x3_c00432{left:125.320013pt;}
.x4_c00432{left:136.840013pt;}
.xd_c00432{left:139.360013pt;}
.xa_c00432{left:148.413347pt;}
.xe_c00432{left:158.960013pt;}
.x8_c00432{left:162.386680pt;}
.x9_c00432{left:171.213347pt;}
.x5_c00432{left:174.413347pt;}
.x6_c00432{left:192.813347pt;}
.x11_c00432{left:194.173347pt;}
.x7_c00432{left:209.933347pt;}
.x12_c00432{left:220.333347pt;}
.x1c_c00432{left:295.653347pt;}
.x1d_c00432{left:321.826680pt;}
.x13_c00432{left:336.293347pt;}
.x14_c00432{left:358.253347pt;}
.x1e_c00432{left:378.733347pt;}
.x1a_c00432{left:402.853347pt;}
.x1b_c00432{left:423.973347pt;}
.x15_c00432{left:443.493347pt;}
.x16_c00432{left:468.026680pt;}
.xb_c00432{left:526.626680pt;}
.xc_c00432{left:548.266680pt;}
.x17_c00432{left:550.226680pt;}
.xf_c00432{left:571.306680pt;}
.x18_c00432{left:573.893347pt;}
.x10_c00432{left:596.960013pt;}
.x19_c00432{left:657.253347pt;}
}





/* 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_c00433 {
    display:none;
  }
  .loading-indicator_c00433.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00433 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_c00433 { 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_c00433" -> "#page-container .classname_c00433")
 */
.pf_c00433 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00433 { /* 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_c00433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00433 { /* 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_c00433 { /* 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_c00433 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00433 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00433 {overflow:visible;}
  }
}
.c_c00433 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00433 { /* 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_c00433:after { /* webkit #35443 */
  content: '';
}
.t_c00433:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00433 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 */
}
.__c00433 { /* 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_c00433 { /* info for Javascript */
  display:none;
}
.l_c00433 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00433 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00433 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00433: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_c00433 {
    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_c00433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00433.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_c00433 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00433{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00433;src:url('chunks/assets/font_e2455db9ba5d8d10308a3359.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.284668;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_c00433;src:url('chunks/assets/font_dc0447524eb05fb31e034e74.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:0.666000;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_c00433;src:url('chunks/assets/font_ac78b212410910d9819d3572.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.284180;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_c00433;src:url('chunks/assets/font_26528a4fc0d38ba814381f58.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;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;}
.ma_c00433{transform:matrix(0.120888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120888,0.000000,0.000000,0.250000,0,0);}
.m11_c00433{transform:matrix(0.136979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136979,0.000000,0.000000,0.250000,0,0);}
.m18_c00433{transform:matrix(0.142736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142736,0.000000,0.000000,0.250000,0,0);}
.md_c00433{transform:matrix(0.226738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226738,0.000000,0.000000,0.250000,0,0);}
.m6_c00433{transform:matrix(0.229942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229942,0.000000,0.000000,0.250000,0,0);}
.m10_c00433{transform:matrix(0.235494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235494,0.000000,0.000000,0.250000,0,0);}
.m4_c00433{transform:matrix(0.236227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236227,0.000000,0.000000,0.250000,0,0);}
.m8_c00433{transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);}
.m14_c00433{transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);}
.m12_c00433{transform:matrix(0.239801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239801,0.000000,0.000000,0.250000,0,0);}
.mb_c00433{transform:matrix(0.240428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240428,0.000000,0.000000,0.250000,0,0);}
.m17_c00433{transform:matrix(0.240798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240798,0.000000,0.000000,0.250000,0,0);}
.m13_c00433{transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);}
.m15_c00433{transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);}
.mc_c00433{transform:matrix(0.243006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243006,0.000000,0.000000,0.250000,0,0);}
.mf_c00433{transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);}
.m5_c00433{transform:matrix(0.245403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245403,0.000000,0.000000,0.250000,0,0);}
.m7_c00433{transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);}
.me_c00433{transform:matrix(0.246337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246337,0.000000,0.000000,0.250000,0,0);}
.m16_c00433{transform:matrix(0.247041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247041,0.000000,0.000000,0.250000,0,0);}
.m0_c00433{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m3_c00433{transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);}
.m2_c00433{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m9_c00433{transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);}
.m1_c00433{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);}
.v0_c00433{vertical-align:0.000000px;}
.ls2a_c00433{letter-spacing:-2.541000px;}
.ls53_c00433{letter-spacing:-2.511960px;}
.ls2b_c00433{letter-spacing:-2.461140px;}
.ls42_c00433{letter-spacing:-2.410320px;}
.ls7e_c00433{letter-spacing:-2.366760px;}
.ls28_c00433{letter-spacing:-2.352000px;}
.ls89_c00433{letter-spacing:-2.289000px;}
.ls8b_c00433{letter-spacing:-2.228820px;}
.ls32_c00433{letter-spacing:-2.207040px;}
.ls4f_c00433{letter-spacing:-2.170740px;}
.ls56_c00433{letter-spacing:-2.105400px;}
.ls86_c00433{letter-spacing:-2.083620px;}
.ls69_c00433{letter-spacing:-2.025540px;}
.ls7d_c00433{letter-spacing:-1.996500px;}
.ls72_c00433{letter-spacing:-1.921920px;}
.ls7f_c00433{letter-spacing:-1.909380px;}
.ls5d_c00433{letter-spacing:-1.894860px;}
.ls3a_c00433{letter-spacing:-1.880340px;}
.ls87_c00433{letter-spacing:-1.815000px;}
.ls73_c00433{letter-spacing:-1.764180px;}
.ls71_c00433{letter-spacing:-1.742400px;}
.ls3f_c00433{letter-spacing:-1.568160px;}
.ls41_c00433{letter-spacing:-1.553640px;}
.ls2d_c00433{letter-spacing:-1.546380px;}
.ls6a_c00433{letter-spacing:-1.488300px;}
.ls4c_c00433{letter-spacing:-1.452000px;}
.ls37_c00433{letter-spacing:-1.408440px;}
.ls30_c00433{letter-spacing:-1.364880px;}
.ls70_c00433{letter-spacing:-1.081740px;}
.ls67_c00433{letter-spacing:-1.030920px;}
.ls6b_c00433{letter-spacing:-1.009140px;}
.ls6e_c00433{letter-spacing:-0.972840px;}
.ls85_c00433{letter-spacing:-0.958320px;}
.ls6d_c00433{letter-spacing:-0.900240px;}
.ls4b_c00433{letter-spacing:-0.892980px;}
.ls7a_c00433{letter-spacing:-0.842160px;}
.ls64_c00433{letter-spacing:-0.834900px;}
.ls80_c00433{letter-spacing:-0.820380px;}
.ls2c_c00433{letter-spacing:-0.791340px;}
.ls8c_c00433{letter-spacing:-0.784080px;}
.ls43_c00433{letter-spacing:-0.762300px;}
.ls76_c00433{letter-spacing:-0.733260px;}
.ls39_c00433{letter-spacing:-0.718740px;}
.ls82_c00433{letter-spacing:-0.689700px;}
.ls35_c00433{letter-spacing:-0.646140px;}
.ls29_c00433{letter-spacing:-0.602580px;}
.ls33_c00433{letter-spacing:-0.588060px;}
.ls6f_c00433{letter-spacing:-0.551760px;}
.ls62_c00433{letter-spacing:-0.529980px;}
.ls83_c00433{letter-spacing:-0.522720px;}
.ls36_c00433{letter-spacing:-0.515460px;}
.ls55_c00433{letter-spacing:-0.508200px;}
.ls7b_c00433{letter-spacing:-0.486420px;}
.ls7c_c00433{letter-spacing:-0.479160px;}
.ls5b_c00433{letter-spacing:-0.471900px;}
.ls59_c00433{letter-spacing:-0.464640px;}
.ls48_c00433{letter-spacing:-0.450120px;}
.ls58_c00433{letter-spacing:-0.435600px;}
.ls78_c00433{letter-spacing:-0.399300px;}
.ls61_c00433{letter-spacing:-0.363000px;}
.ls60_c00433{letter-spacing:-0.355740px;}
.ls66_c00433{letter-spacing:-0.333960px;}
.ls3c_c00433{letter-spacing:-0.319440px;}
.ls5e_c00433{letter-spacing:-0.312180px;}
.ls2e_c00433{letter-spacing:-0.304920px;}
.ls75_c00433{letter-spacing:-0.283140px;}
.ls5c_c00433{letter-spacing:-0.275880px;}
.ls4d_c00433{letter-spacing:-0.261360px;}
.ls8a_c00433{letter-spacing:-0.239580px;}
.ls57_c00433{letter-spacing:-0.232320px;}
.ls47_c00433{letter-spacing:-0.217800px;}
.ls63_c00433{letter-spacing:-0.210540px;}
.ls2f_c00433{letter-spacing:-0.196020px;}
.ls65_c00433{letter-spacing:-0.188760px;}
.ls77_c00433{letter-spacing:-0.181500px;}
.ls50_c00433{letter-spacing:-0.174240px;}
.ls34_c00433{letter-spacing:-0.166980px;}
.ls52_c00433{letter-spacing:-0.159720px;}
.ls4e_c00433{letter-spacing:-0.152460px;}
.ls79_c00433{letter-spacing:-0.145200px;}
.ls51_c00433{letter-spacing:-0.137940px;}
.ls84_c00433{letter-spacing:-0.130680px;}
.ls54_c00433{letter-spacing:-0.123420px;}
.ls45_c00433{letter-spacing:-0.116160px;}
.ls3b_c00433{letter-spacing:-0.108900px;}
.ls38_c00433{letter-spacing:-0.101640px;}
.ls4a_c00433{letter-spacing:-0.072600px;}
.ls68_c00433{letter-spacing:-0.065340px;}
.ls88_c00433{letter-spacing:-0.058080px;}
.ls46_c00433{letter-spacing:-0.043560px;}
.ls5a_c00433{letter-spacing:-0.036300px;}
.ls6c_c00433{letter-spacing:-0.029040px;}
.ls44_c00433{letter-spacing:-0.021780px;}
.ls49_c00433{letter-spacing:-0.007260px;}
.ls31_c00433{letter-spacing:0.000000px;}
.ls1_c00433{letter-spacing:0.007260px;}
.ls1e_c00433{letter-spacing:0.014520px;}
.lsf_c00433{letter-spacing:0.021780px;}
.ls4_c00433{letter-spacing:0.029040px;}
.lse_c00433{letter-spacing:0.036300px;}
.ls3_c00433{letter-spacing:0.050820px;}
.lsb_c00433{letter-spacing:0.058080px;}
.ls1d_c00433{letter-spacing:0.072600px;}
.ls26_c00433{letter-spacing:0.087120px;}
.ls8_c00433{letter-spacing:0.094380px;}
.ls17_c00433{letter-spacing:0.108900px;}
.ls21_c00433{letter-spacing:0.116160px;}
.ls23_c00433{letter-spacing:0.130680px;}
.ls12_c00433{letter-spacing:0.137940px;}
.ls10_c00433{letter-spacing:0.152460px;}
.ls1c_c00433{letter-spacing:0.159720px;}
.ls9_c00433{letter-spacing:0.174240px;}
.ls5f_c00433{letter-spacing:0.181500px;}
.ls5_c00433{letter-spacing:0.188760px;}
.ls1f_c00433{letter-spacing:0.196020px;}
.ls6_c00433{letter-spacing:0.203280px;}
.ls2_c00433{letter-spacing:0.210540px;}
.ls3d_c00433{letter-spacing:0.217800px;}
.ls16_c00433{letter-spacing:0.225060px;}
.ls27_c00433{letter-spacing:0.246840px;}
.ls11_c00433{letter-spacing:0.290400px;}
.ls25_c00433{letter-spacing:0.297660px;}
.ls13_c00433{letter-spacing:0.326700px;}
.ls15_c00433{letter-spacing:0.333960px;}
.lsd_c00433{letter-spacing:0.348480px;}
.lsa_c00433{letter-spacing:0.355740px;}
.lsc_c00433{letter-spacing:0.384780px;}
.ls3e_c00433{letter-spacing:0.435600px;}
.ls20_c00433{letter-spacing:0.479160px;}
.ls18_c00433{letter-spacing:0.544500px;}
.ls8d_c00433{letter-spacing:0.622740px;}
.ls19_c00433{letter-spacing:0.653400px;}
.ls1a_c00433{letter-spacing:0.719040px;}
.ls22_c00433{letter-spacing:0.813120px;}
.ls0_c00433{letter-spacing:0.856680px;}
.ls1b_c00433{letter-spacing:0.900240px;}
.ls7_c00433{letter-spacing:0.987360px;}
.ls81_c00433{letter-spacing:1.393920px;}
.ls14_c00433{letter-spacing:1.532160px;}
.ls24_c00433{letter-spacing:1.677060px;}
.ls74_c00433{letter-spacing:1.764180px;}
.ls40_c00433{letter-spacing:2.141700px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{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__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00433{word-spacing:0.000000px;}
._1c_c00433{margin-left:-11.289300px;}
._1a_c00433{margin-left:-3.750720px;}
._19_c00433{margin-left:-2.660040px;}
._18_c00433{margin-left:-1.248720px;}
._1e_c00433{width:1.074480px;}
._4_c00433{width:2.257860px;}
._17_c00433{width:4.385040px;}
._5_c00433{width:5.474040px;}
._15_c00433{width:6.650160px;}
._14_c00433{width:8.544180px;}
._13_c00433{width:10.541520px;}
._1b_c00433{width:11.877360px;}
._2_c00433{width:13.213200px;}
._12_c00433{width:14.309460px;}
._1_c00433{width:16.349520px;}
._1d_c00433{width:17.598240px;}
._0_c00433{width:18.861480px;}
._f_c00433{width:20.799900px;}
._10_c00433{width:21.903420px;}
._6_c00433{width:23.319120px;}
._8_c00433{width:24.386340px;}
._a_c00433{width:25.656840px;}
._16_c00433{width:26.978160px;}
._7_c00433{width:28.546320px;}
._9_c00433{width:29.591760px;}
._11_c00433{width:31.149360px;}
._e_c00433{width:33.980820px;}
._b_c00433{width:35.356200px;}
._d_c00433{width:36.927600px;}
._c_c00433{width:38.236920px;}
._3_c00433{width:49.571280px;}
.fc0_c00433{color:transparent;}
.fs4_c00433{font-size:53.280000px;}
.fs3_c00433{font-size:54.720000px;}
.fs6_c00433{font-size:58.200000px;}
.fs5_c00433{font-size:65.400000px;}
.fs0_c00433{font-size:67.200000px;}
.fs1_c00433{font-size:72.600000px;}
.fs2_c00433{font-size:73.800000px;}
.y0_c00433{bottom:0.000000px;}
.y2d_c00433{bottom:104.040000px;}
.y2c_c00433{bottom:150.840000px;}
.y2b_c00433{bottom:182.160000px;}
.y2a_c00433{bottom:182.166300px;}
.y29_c00433{bottom:214.564050px;}
.y28_c00433{bottom:274.695000px;}
.y26_c00433{bottom:307.094100px;}
.y27_c00433{bottom:307.095000px;}
.y24_c00433{bottom:337.694250px;}
.y25_c00433{bottom:337.695000px;}
.y23_c00433{bottom:368.640000px;}
.y21_c00433{bottom:399.599100px;}
.y22_c00433{bottom:399.600000px;}
.y1f_c00433{bottom:430.192950px;}
.y20_c00433{bottom:430.200000px;}
.y1d_c00433{bottom:461.166300px;}
.y1e_c00433{bottom:461.175000px;}
.y1c_c00433{bottom:492.112050px;}
.y1a_c00433{bottom:553.688250px;}
.y1b_c00433{bottom:553.695000px;}
.y18_c00433{bottom:585.352950px;}
.y19_c00433{bottom:585.360000px;}
.y17_c00433{bottom:616.334250px;}
.y15_c00433{bottom:647.275950px;}
.y16_c00433{bottom:647.280000px;}
.y13_c00433{bottom:677.894100px;}
.y14_c00433{bottom:677.895000px;}
.y12_c00433{bottom:708.495000px;}
.y10_c00433{bottom:739.436100px;}
.y11_c00433{bottom:739.440000px;}
.ye_c00433{bottom:770.399100px;}
.yf_c00433{bottom:770.400000px;}
.yc_c00433{bottom:800.991300px;}
.yd_c00433{bottom:801.000000px;}
.yb_c00433{bottom:831.610350px;}
.ya_c00433{bottom:862.556100px;}
.y9_c00433{bottom:893.520000px;}
.y8_c00433{bottom:924.135000px;}
.y6_c00433{bottom:986.038950px;}
.y7_c00433{bottom:986.040000px;}
.y4_c00433{bottom:1016.288100px;}
.y5_c00433{bottom:1016.295000px;}
.y3_c00433{bottom:1047.615000px;}
.y2_c00433{bottom:1078.200000px;}
.y1_c00433{bottom:1154.880000px;}
.h6_c00433{height:35.484480px;}
.h5_c00433{height:36.443520px;}
.hc_c00433{height:57.120117px;}
.h2_c00433{height:65.953125px;}
.ha_c00433{height:68.210156px;}
.hb_c00433{height:71.217480px;}
.h3_c00433{height:71.252930px;}
.h7_c00433{height:71.255930px;}
.h9_c00433{height:71.256530px;}
.h8_c00433{height:71.279930px;}
.h4_c00433{height:72.430664px;}
.h1_c00433{height:1263.000000px;}
.h0_c00433{height:1263.240000px;}
.w1_c00433{width:892.500000px;}
.w0_c00433{width:892.800000px;}
.x0_c00433{left:0.000000px;}
.x2b_c00433{left:106.186050px;}
.x1a_c00433{left:107.460000px;}
.xd_c00433{left:108.675000px;}
.x2_c00433{left:109.755000px;}
.x1_c00433{left:110.805000px;}
.x4f_c00433{left:128.880000px;}
.x15_c00433{left:130.470000px;}
.x28_c00433{left:134.085000px;}
.x16_c00433{left:153.180000px;}
.x38_c00433{left:159.735000px;}
.x18_c00433{left:161.535000px;}
.x3_c00433{left:163.275000px;}
.x4a_c00433{left:173.355000px;}
.xb_c00433{left:178.170000px;}
.x30_c00433{left:188.115000px;}
.x4_c00433{left:189.450000px;}
.x4b_c00433{left:197.025000px;}
.xc_c00433{left:204.870000px;}
.x4c_c00433{left:212.610000px;}
.x31_c00433{left:214.740000px;}
.x17_c00433{left:218.490000px;}
.x3b_c00433{left:222.645000px;}
.x5_c00433{left:223.740000px;}
.x1f_c00433{left:246.030000px;}
.x4d_c00433{left:248.580000px;}
.x3c_c00433{left:250.020000px;}
.x20_c00433{left:264.420000px;}
.x21_c00433{left:286.035000px;}
.x6_c00433{left:292.650000px;}
.x22_c00433{left:310.530000px;}
.x7_c00433{left:319.845000px;}
.x3d_c00433{left:324.690000px;}
.x23_c00433{left:333.525000px;}
.xe_c00433{left:335.265000px;}
.x46_c00433{left:350.460000px;}
.x3e_c00433{left:358.020000px;}
.x1b_c00433{left:386.475000px;}
.xf_c00433{left:390.360000px;}
.x47_c00433{left:392.940000px;}
.x24_c00433{left:399.795000px;}
.x4e_c00433{left:403.095000px;}
.x10_c00433{left:411.795000px;}
.x1c_c00433{left:416.730000px;}
.x32_c00433{left:418.125000px;}
.x25_c00433{left:422.460000px;}
.x1d_c00433{left:424.275000px;}
.x11_c00433{left:427.050000px;}
.x29_c00433{left:440.610000px;}
.x33_c00433{left:443.850000px;}
.x48_c00433{left:445.125000px;}
.x1e_c00433{left:448.410000px;}
.x12_c00433{left:454.785000px;}
.x2c_c00433{left:465.120000px;}
.x36_c00433{left:493.530000px;}
.x42_c00433{left:500.955000px;}
.x2a_c00433{left:511.530000px;}
.x37_c00433{left:517.290000px;}
.x43_c00433{left:523.725000px;}
.x26_c00433{left:538.815000px;}
.x2d_c00433{left:553.500000px;}
.x8_c00433{left:559.110000px;}
.x27_c00433{left:562.635000px;}
.x3f_c00433{left:577.530000px;}
.x13_c00433{left:601.935000px;}
.x40_c00433{left:607.860000px;}
.x44_c00433{left:614.850000px;}
.x50_c00433{left:627.120000px;}
.x9_c00433{left:635.940000px;}
.x45_c00433{left:640.245000px;}
.x39_c00433{left:658.920000px;}
.x14_c00433{left:660.780000px;}
.x3a_c00433{left:678.735000px;}
.x51_c00433{left:694.800000px;}
.x34_c00433{left:704.280000px;}
.x49_c00433{left:720.195000px;}
.x35_c00433{left:726.810000px;}
.x2e_c00433{left:728.475000px;}
.xa_c00433{left:742.095000px;}
.x41_c00433{left:747.555000px;}
.x19_c00433{left:750.435000px;}
.x2f_c00433{left:753.330000px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls2a_c00433{letter-spacing:-2.258667pt;}
.ls53_c00433{letter-spacing:-2.232853pt;}
.ls2b_c00433{letter-spacing:-2.187680pt;}
.ls42_c00433{letter-spacing:-2.142507pt;}
.ls7e_c00433{letter-spacing:-2.103787pt;}
.ls28_c00433{letter-spacing:-2.090667pt;}
.ls89_c00433{letter-spacing:-2.034667pt;}
.ls8b_c00433{letter-spacing:-1.981173pt;}
.ls32_c00433{letter-spacing:-1.961813pt;}
.ls4f_c00433{letter-spacing:-1.929547pt;}
.ls56_c00433{letter-spacing:-1.871467pt;}
.ls86_c00433{letter-spacing:-1.852107pt;}
.ls69_c00433{letter-spacing:-1.800480pt;}
.ls7d_c00433{letter-spacing:-1.774667pt;}
.ls72_c00433{letter-spacing:-1.708373pt;}
.ls7f_c00433{letter-spacing:-1.697227pt;}
.ls5d_c00433{letter-spacing:-1.684320pt;}
.ls3a_c00433{letter-spacing:-1.671413pt;}
.ls87_c00433{letter-spacing:-1.613333pt;}
.ls73_c00433{letter-spacing:-1.568160pt;}
.ls71_c00433{letter-spacing:-1.548800pt;}
.ls3f_c00433{letter-spacing:-1.393920pt;}
.ls41_c00433{letter-spacing:-1.381013pt;}
.ls2d_c00433{letter-spacing:-1.374560pt;}
.ls6a_c00433{letter-spacing:-1.322933pt;}
.ls4c_c00433{letter-spacing:-1.290667pt;}
.ls37_c00433{letter-spacing:-1.251947pt;}
.ls30_c00433{letter-spacing:-1.213227pt;}
.ls70_c00433{letter-spacing:-0.961547pt;}
.ls67_c00433{letter-spacing:-0.916373pt;}
.ls6b_c00433{letter-spacing:-0.897013pt;}
.ls6e_c00433{letter-spacing:-0.864747pt;}
.ls85_c00433{letter-spacing:-0.851840pt;}
.ls6d_c00433{letter-spacing:-0.800213pt;}
.ls4b_c00433{letter-spacing:-0.793760pt;}
.ls7a_c00433{letter-spacing:-0.748587pt;}
.ls64_c00433{letter-spacing:-0.742133pt;}
.ls80_c00433{letter-spacing:-0.729227pt;}
.ls2c_c00433{letter-spacing:-0.703413pt;}
.ls8c_c00433{letter-spacing:-0.696960pt;}
.ls43_c00433{letter-spacing:-0.677600pt;}
.ls76_c00433{letter-spacing:-0.651787pt;}
.ls39_c00433{letter-spacing:-0.638880pt;}
.ls82_c00433{letter-spacing:-0.613067pt;}
.ls35_c00433{letter-spacing:-0.574347pt;}
.ls29_c00433{letter-spacing:-0.535627pt;}
.ls33_c00433{letter-spacing:-0.522720pt;}
.ls6f_c00433{letter-spacing:-0.490453pt;}
.ls62_c00433{letter-spacing:-0.471093pt;}
.ls83_c00433{letter-spacing:-0.464640pt;}
.ls36_c00433{letter-spacing:-0.458187pt;}
.ls55_c00433{letter-spacing:-0.451733pt;}
.ls7b_c00433{letter-spacing:-0.432373pt;}
.ls7c_c00433{letter-spacing:-0.425920pt;}
.ls5b_c00433{letter-spacing:-0.419467pt;}
.ls59_c00433{letter-spacing:-0.413013pt;}
.ls48_c00433{letter-spacing:-0.400107pt;}
.ls58_c00433{letter-spacing:-0.387200pt;}
.ls78_c00433{letter-spacing:-0.354933pt;}
.ls61_c00433{letter-spacing:-0.322667pt;}
.ls60_c00433{letter-spacing:-0.316213pt;}
.ls66_c00433{letter-spacing:-0.296853pt;}
.ls3c_c00433{letter-spacing:-0.283947pt;}
.ls5e_c00433{letter-spacing:-0.277493pt;}
.ls2e_c00433{letter-spacing:-0.271040pt;}
.ls75_c00433{letter-spacing:-0.251680pt;}
.ls5c_c00433{letter-spacing:-0.245227pt;}
.ls4d_c00433{letter-spacing:-0.232320pt;}
.ls8a_c00433{letter-spacing:-0.212960pt;}
.ls57_c00433{letter-spacing:-0.206507pt;}
.ls47_c00433{letter-spacing:-0.193600pt;}
.ls63_c00433{letter-spacing:-0.187147pt;}
.ls2f_c00433{letter-spacing:-0.174240pt;}
.ls65_c00433{letter-spacing:-0.167787pt;}
.ls77_c00433{letter-spacing:-0.161333pt;}
.ls50_c00433{letter-spacing:-0.154880pt;}
.ls34_c00433{letter-spacing:-0.148427pt;}
.ls52_c00433{letter-spacing:-0.141973pt;}
.ls4e_c00433{letter-spacing:-0.135520pt;}
.ls79_c00433{letter-spacing:-0.129067pt;}
.ls51_c00433{letter-spacing:-0.122613pt;}
.ls84_c00433{letter-spacing:-0.116160pt;}
.ls54_c00433{letter-spacing:-0.109707pt;}
.ls45_c00433{letter-spacing:-0.103253pt;}
.ls3b_c00433{letter-spacing:-0.096800pt;}
.ls38_c00433{letter-spacing:-0.090347pt;}
.ls4a_c00433{letter-spacing:-0.064533pt;}
.ls68_c00433{letter-spacing:-0.058080pt;}
.ls88_c00433{letter-spacing:-0.051627pt;}
.ls46_c00433{letter-spacing:-0.038720pt;}
.ls5a_c00433{letter-spacing:-0.032267pt;}
.ls6c_c00433{letter-spacing:-0.025813pt;}
.ls44_c00433{letter-spacing:-0.019360pt;}
.ls49_c00433{letter-spacing:-0.006453pt;}
.ls31_c00433{letter-spacing:0.000000pt;}
.ls1_c00433{letter-spacing:0.006453pt;}
.ls1e_c00433{letter-spacing:0.012907pt;}
.lsf_c00433{letter-spacing:0.019360pt;}
.ls4_c00433{letter-spacing:0.025813pt;}
.lse_c00433{letter-spacing:0.032267pt;}
.ls3_c00433{letter-spacing:0.045173pt;}
.lsb_c00433{letter-spacing:0.051627pt;}
.ls1d_c00433{letter-spacing:0.064533pt;}
.ls26_c00433{letter-spacing:0.077440pt;}
.ls8_c00433{letter-spacing:0.083893pt;}
.ls17_c00433{letter-spacing:0.096800pt;}
.ls21_c00433{letter-spacing:0.103253pt;}
.ls23_c00433{letter-spacing:0.116160pt;}
.ls12_c00433{letter-spacing:0.122613pt;}
.ls10_c00433{letter-spacing:0.135520pt;}
.ls1c_c00433{letter-spacing:0.141973pt;}
.ls9_c00433{letter-spacing:0.154880pt;}
.ls5f_c00433{letter-spacing:0.161333pt;}
.ls5_c00433{letter-spacing:0.167787pt;}
.ls1f_c00433{letter-spacing:0.174240pt;}
.ls6_c00433{letter-spacing:0.180693pt;}
.ls2_c00433{letter-spacing:0.187147pt;}
.ls3d_c00433{letter-spacing:0.193600pt;}
.ls16_c00433{letter-spacing:0.200053pt;}
.ls27_c00433{letter-spacing:0.219413pt;}
.ls11_c00433{letter-spacing:0.258133pt;}
.ls25_c00433{letter-spacing:0.264587pt;}
.ls13_c00433{letter-spacing:0.290400pt;}
.ls15_c00433{letter-spacing:0.296853pt;}
.lsd_c00433{letter-spacing:0.309760pt;}
.lsa_c00433{letter-spacing:0.316213pt;}
.lsc_c00433{letter-spacing:0.342027pt;}
.ls3e_c00433{letter-spacing:0.387200pt;}
.ls20_c00433{letter-spacing:0.425920pt;}
.ls18_c00433{letter-spacing:0.484000pt;}
.ls8d_c00433{letter-spacing:0.553547pt;}
.ls19_c00433{letter-spacing:0.580800pt;}
.ls1a_c00433{letter-spacing:0.639147pt;}
.ls22_c00433{letter-spacing:0.722773pt;}
.ls0_c00433{letter-spacing:0.761493pt;}
.ls1b_c00433{letter-spacing:0.800213pt;}
.ls7_c00433{letter-spacing:0.877653pt;}
.ls81_c00433{letter-spacing:1.239040pt;}
.ls14_c00433{letter-spacing:1.361920pt;}
.ls24_c00433{letter-spacing:1.490720pt;}
.ls74_c00433{letter-spacing:1.568160pt;}
.ls40_c00433{letter-spacing:1.903733pt;}
.ws0_c00433{word-spacing:0.000000pt;}
._1c_c00433{margin-left:-10.034933pt;}
._1a_c00433{margin-left:-3.333973pt;}
._19_c00433{margin-left:-2.364480pt;}
._18_c00433{margin-left:-1.109973pt;}
._1e_c00433{width:0.955093pt;}
._4_c00433{width:2.006987pt;}
._17_c00433{width:3.897813pt;}
._5_c00433{width:4.865813pt;}
._15_c00433{width:5.911253pt;}
._14_c00433{width:7.594827pt;}
._13_c00433{width:9.370240pt;}
._1b_c00433{width:10.557653pt;}
._2_c00433{width:11.745067pt;}
._12_c00433{width:12.719520pt;}
._1_c00433{width:14.532907pt;}
._1d_c00433{width:15.642880pt;}
._0_c00433{width:16.765760pt;}
._f_c00433{width:18.488800pt;}
._10_c00433{width:19.469707pt;}
._6_c00433{width:20.728107pt;}
._8_c00433{width:21.676747pt;}
._a_c00433{width:22.806080pt;}
._16_c00433{width:23.980587pt;}
._7_c00433{width:25.374507pt;}
._9_c00433{width:26.303787pt;}
._11_c00433{width:27.688320pt;}
._e_c00433{width:30.205173pt;}
._b_c00433{width:31.427733pt;}
._d_c00433{width:32.824533pt;}
._c_c00433{width:33.988373pt;}
._3_c00433{width:44.063360pt;}
.fs4_c00433{font-size:47.360000pt;}
.fs3_c00433{font-size:48.640000pt;}
.fs6_c00433{font-size:51.733333pt;}
.fs5_c00433{font-size:58.133333pt;}
.fs0_c00433{font-size:59.733333pt;}
.fs1_c00433{font-size:64.533333pt;}
.fs2_c00433{font-size:65.600000pt;}
.y0_c00433{bottom:0.000000pt;}
.y2d_c00433{bottom:92.480000pt;}
.y2c_c00433{bottom:134.080000pt;}
.y2b_c00433{bottom:161.920000pt;}
.y2a_c00433{bottom:161.925600pt;}
.y29_c00433{bottom:190.723600pt;}
.y28_c00433{bottom:244.173333pt;}
.y26_c00433{bottom:272.972533pt;}
.y27_c00433{bottom:272.973333pt;}
.y24_c00433{bottom:300.172667pt;}
.y25_c00433{bottom:300.173333pt;}
.y23_c00433{bottom:327.680000pt;}
.y21_c00433{bottom:355.199200pt;}
.y22_c00433{bottom:355.200000pt;}
.y1f_c00433{bottom:382.393733pt;}
.y20_c00433{bottom:382.400000pt;}
.y1d_c00433{bottom:409.925600pt;}
.y1e_c00433{bottom:409.933333pt;}
.y1c_c00433{bottom:437.432933pt;}
.y1a_c00433{bottom:492.167333pt;}
.y1b_c00433{bottom:492.173333pt;}
.y18_c00433{bottom:520.313733pt;}
.y19_c00433{bottom:520.320000pt;}
.y17_c00433{bottom:547.852667pt;}
.y15_c00433{bottom:575.356400pt;}
.y16_c00433{bottom:575.360000pt;}
.y13_c00433{bottom:602.572533pt;}
.y14_c00433{bottom:602.573333pt;}
.y12_c00433{bottom:629.773333pt;}
.y10_c00433{bottom:657.276533pt;}
.y11_c00433{bottom:657.280000pt;}
.ye_c00433{bottom:684.799200pt;}
.yf_c00433{bottom:684.800000pt;}
.yc_c00433{bottom:711.992267pt;}
.yd_c00433{bottom:712.000000pt;}
.yb_c00433{bottom:739.209200pt;}
.ya_c00433{bottom:766.716533pt;}
.y9_c00433{bottom:794.240000pt;}
.y8_c00433{bottom:821.453333pt;}
.y6_c00433{bottom:876.479067pt;}
.y7_c00433{bottom:876.480000pt;}
.y4_c00433{bottom:903.367200pt;}
.y5_c00433{bottom:903.373333pt;}
.y3_c00433{bottom:931.213333pt;}
.y2_c00433{bottom:958.400000pt;}
.y1_c00433{bottom:1026.560000pt;}
.h6_c00433{height:31.541760pt;}
.h5_c00433{height:32.394240pt;}
.hc_c00433{height:50.773437pt;}
.h2_c00433{height:58.625000pt;}
.ha_c00433{height:60.631250pt;}
.hb_c00433{height:63.304427pt;}
.h3_c00433{height:63.335938pt;}
.h7_c00433{height:63.338604pt;}
.h9_c00433{height:63.339137pt;}
.h8_c00433{height:63.359937pt;}
.h4_c00433{height:64.382813pt;}
.h1_c00433{height:1122.666667pt;}
.h0_c00433{height:1122.880000pt;}
.w1_c00433{width:793.333333pt;}
.w0_c00433{width:793.600000pt;}
.x0_c00433{left:0.000000pt;}
.x2b_c00433{left:94.387600pt;}
.x1a_c00433{left:95.520000pt;}
.xd_c00433{left:96.600000pt;}
.x2_c00433{left:97.560000pt;}
.x1_c00433{left:98.493333pt;}
.x4f_c00433{left:114.560000pt;}
.x15_c00433{left:115.973333pt;}
.x28_c00433{left:119.186667pt;}
.x16_c00433{left:136.160000pt;}
.x38_c00433{left:141.986667pt;}
.x18_c00433{left:143.586667pt;}
.x3_c00433{left:145.133333pt;}
.x4a_c00433{left:154.093333pt;}
.xb_c00433{left:158.373333pt;}
.x30_c00433{left:167.213333pt;}
.x4_c00433{left:168.400000pt;}
.x4b_c00433{left:175.133333pt;}
.xc_c00433{left:182.106667pt;}
.x4c_c00433{left:188.986667pt;}
.x31_c00433{left:190.880000pt;}
.x17_c00433{left:194.213333pt;}
.x3b_c00433{left:197.906667pt;}
.x5_c00433{left:198.880000pt;}
.x1f_c00433{left:218.693333pt;}
.x4d_c00433{left:220.960000pt;}
.x3c_c00433{left:222.240000pt;}
.x20_c00433{left:235.040000pt;}
.x21_c00433{left:254.253333pt;}
.x6_c00433{left:260.133333pt;}
.x22_c00433{left:276.026667pt;}
.x7_c00433{left:284.306667pt;}
.x3d_c00433{left:288.613333pt;}
.x23_c00433{left:296.466667pt;}
.xe_c00433{left:298.013333pt;}
.x46_c00433{left:311.520000pt;}
.x3e_c00433{left:318.240000pt;}
.x1b_c00433{left:343.533333pt;}
.xf_c00433{left:346.986667pt;}
.x47_c00433{left:349.280000pt;}
.x24_c00433{left:355.373333pt;}
.x4e_c00433{left:358.306667pt;}
.x10_c00433{left:366.040000pt;}
.x1c_c00433{left:370.426667pt;}
.x32_c00433{left:371.666667pt;}
.x25_c00433{left:375.520000pt;}
.x1d_c00433{left:377.133333pt;}
.x11_c00433{left:379.600000pt;}
.x29_c00433{left:391.653333pt;}
.x33_c00433{left:394.533333pt;}
.x48_c00433{left:395.666667pt;}
.x1e_c00433{left:398.586667pt;}
.x12_c00433{left:404.253333pt;}
.x2c_c00433{left:413.440000pt;}
.x36_c00433{left:438.693333pt;}
.x42_c00433{left:445.293333pt;}
.x2a_c00433{left:454.693333pt;}
.x37_c00433{left:459.813333pt;}
.x43_c00433{left:465.533333pt;}
.x26_c00433{left:478.946667pt;}
.x2d_c00433{left:492.000000pt;}
.x8_c00433{left:496.986667pt;}
.x27_c00433{left:500.120000pt;}
.x3f_c00433{left:513.360000pt;}
.x13_c00433{left:535.053333pt;}
.x40_c00433{left:540.320000pt;}
.x44_c00433{left:546.533333pt;}
.x50_c00433{left:557.440000pt;}
.x9_c00433{left:565.280000pt;}
.x45_c00433{left:569.106667pt;}
.x39_c00433{left:585.706667pt;}
.x14_c00433{left:587.360000pt;}
.x3a_c00433{left:603.320000pt;}
.x51_c00433{left:617.600000pt;}
.x34_c00433{left:626.026667pt;}
.x49_c00433{left:640.173333pt;}
.x35_c00433{left:646.053333pt;}
.x2e_c00433{left:647.533333pt;}
.xa_c00433{left:659.640000pt;}
.x41_c00433{left:664.493333pt;}
.x19_c00433{left:667.053333pt;}
.x2f_c00433{left:669.626667pt;}
}





/* 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_c00434 {
    display:none;
  }
  .loading-indicator_c00434.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00434 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_c00434 { 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_c00434" -> "#page-container .classname_c00434")
 */
.pf_c00434 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00434 { /* 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_c00434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00434 { /* 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_c00434 { /* 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_c00434 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00434 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00434 {overflow:visible;}
  }
}
.c_c00434 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00434 { /* 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_c00434:after { /* webkit #35443 */
  content: '';
}
.t_c00434:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00434 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 */
}
.__c00434 { /* 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_c00434 { /* info for Javascript */
  display:none;
}
.l_c00434 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00434 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00434 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00434: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_c00434 {
    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_c00434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00434.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_c00434 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00434;src:url('chunks/assets/font_35b1e06a668241fa55f3186c.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.284668;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_c00434;src:url('chunks/assets/font_1b1ad0df76f65498fee496fc.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;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_c00434;src:url('chunks/assets/font_cab256b8af6977a98f4e8eab.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;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;}
.m13_c00434{transform:matrix(0.145659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145659,0.000000,0.000000,0.250000,0,0);}
.me_c00434{transform:matrix(0.216593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216593,0.000000,0.000000,0.250000,0,0);}
.m1_c00434{transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);}
.m0_c00434{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);}
.mb_c00434{transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);}
.mf_c00434{transform:matrix(0.255788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255788,0.000000,0.000000,0.250000,0,0);}
.m3_c00434{transform:matrix(0.261745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261745,0.000000,0.000000,0.250000,0,0);}
.m10_c00434{transform:matrix(0.261922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261922,0.000000,0.000000,0.250000,0,0);}
.m12_c00434{transform:matrix(0.262123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262123,0.000000,0.000000,0.250000,0,0);}
.m14_c00434{transform:matrix(0.262495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262495,0.000000,0.000000,0.250000,0,0);}
.m11_c00434{transform:matrix(0.265450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265450,0.000000,0.000000,0.250000,0,0);}
.m5_c00434{transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);}
.m8_c00434{transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);}
.ma_c00434{transform:matrix(0.270698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270698,0.000000,0.000000,0.250000,0,0);}
.m6_c00434{transform:matrix(0.270974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270974,0.000000,0.000000,0.250000,0,0);}
.m4_c00434{transform:matrix(0.280245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280245,0.000000,0.000000,0.250000,0,0);}
.md_c00434{transform:matrix(0.300118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300118,0.000000,0.000000,0.250000,0,0);}
.m2_c00434{transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);}
.m7_c00434{transform:matrix(0.306351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306351,0.000000,0.000000,0.250000,0,0);}
.m9_c00434{transform:matrix(0.308057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308057,0.000000,0.000000,0.250000,0,0);}
.mc_c00434{transform:matrix(0.317492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317492,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.v1_c00434{vertical-align:33.060000px;}
.ls16_c00434{letter-spacing:-2.415000px;}
.ls13_c00434{letter-spacing:-1.470000px;}
.lsb_c00434{letter-spacing:-1.197000px;}
.ls18_c00434{letter-spacing:-1.083300px;}
.ls19_c00434{letter-spacing:-1.014300px;}
.ls17_c00434{letter-spacing:-0.814200px;}
.ls1b_c00434{letter-spacing:-0.503700px;}
.ls11_c00434{letter-spacing:-0.434340px;}
.ls1a_c00434{letter-spacing:-0.345000px;}
.ls15_c00434{letter-spacing:-0.003900px;}
.lsa_c00434{letter-spacing:0.000000px;}
.ls12_c00434{letter-spacing:0.327605px;}
.ls2_c00434{letter-spacing:0.430566px;}
.ls3_c00434{letter-spacing:0.517500px;}
.ls6_c00434{letter-spacing:0.524400px;}
.ls5_c00434{letter-spacing:0.690000px;}
.ls8_c00434{letter-spacing:0.765900px;}
.ls9_c00434{letter-spacing:0.945300px;}
.ls1_c00434{letter-spacing:1.051575px;}
.ls4_c00434{letter-spacing:1.117800px;}
.ls10_c00434{letter-spacing:1.140030px;}
.ls0_c00434{letter-spacing:1.474223px;}
.ls7_c00434{letter-spacing:1.628400px;}
.lsc_c00434{letter-spacing:1.710000px;}
.lsd_c00434{letter-spacing:1.740030px;}
.ls14_c00434{letter-spacing:1.950030px;}
.lsf_c00434{letter-spacing:2.130000px;}
.lse_c00434{letter-spacing:2.220030px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{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__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00434{word-spacing:0.000000px;}
._2_c00434{margin-left:-13.621667px;}
._3_c00434{margin-left:-6.572837px;}
._6_c00434{width:1.056600px;}
._4_c00434{width:3.001500px;}
._7_c00434{width:4.550100px;}
._5_c00434{width:8.155800px;}
._8_c00434{width:11.218500px;}
._1_c00434{width:36.638137px;}
._0_c00434{width:481.329266px;}
.fc0_c00434{color:transparent;}
.fs5_c00434{font-size:22.800600px;}
.fs7_c00434{font-size:23.400600px;}
.fs6_c00434{font-size:25.200000px;}
.fsc_c00434{font-size:32.400600px;}
.fs1_c00434{font-size:34.200000px;}
.fs2_c00434{font-size:34.800600px;}
.fs8_c00434{font-size:39.000600px;}
.fs9_c00434{font-size:40.800600px;}
.fsb_c00434{font-size:41.400600px;}
.fsa_c00434{font-size:42.000000px;}
.fs4_c00434{font-size:42.600000px;}
.fs3_c00434{font-size:44.400600px;}
.fsd_c00434{font-size:69.000000px;}
.fs0_c00434{font-size:156.000000px;}
.y0_c00434{bottom:0.000000px;}
.y1b_c00434{bottom:154.800000px;}
.ya_c00434{bottom:220.695000px;}
.yd_c00434{bottom:222.855000px;}
.y7_c00434{bottom:284.775000px;}
.y1a_c00434{bottom:286.215000px;}
.y19_c00434{bottom:289.095000px;}
.y18_c00434{bottom:437.415000px;}
.y6_c00434{bottom:439.200000px;}
.y17_c00434{bottom:440.280000px;}
.y5_c00434{bottom:590.775000px;}
.y16_c00434{bottom:592.200000px;}
.y4_c00434{bottom:596.520000px;}
.y15_c00434{bottom:599.775000px;}
.y14_c00434{bottom:743.040000px;}
.y13_c00434{bottom:790.935000px;}
.y3_c00434{bottom:892.455000px;}
.y12_c00434{bottom:894.975000px;}
.y2_c00434{bottom:1044.720000px;}
.y11_c00434{bottom:1047.240000px;}
.y1_c00434{bottom:1080.360000px;}
.y9_c00434{bottom:1121.040000px;}
.y10_c00434{bottom:1121.775000px;}
.yc_c00434{bottom:1123.560000px;}
.yf_c00434{bottom:1124.295000px;}
.y8_c00434{bottom:1131.135000px;}
.yb_c00434{bottom:1131.855000px;}
.ye_c00434{bottom:1132.560000px;}
.h7_c00434{height:23.780313px;}
.h8_c00434{height:26.282813px;}
.h3_c00434{height:33.565430px;}
.h4_c00434{height:34.154886px;}
.hb_c00434{height:38.276956px;}
.h6_c00434{height:41.809570px;}
.ha_c00434{height:42.553751px;}
.hd_c00434{height:43.179532px;}
.h5_c00434{height:43.576761px;}
.hc_c00434{height:43.804688px;}
.hf_c00434{height:67.719727px;}
.h9_c00434{height:71.336956px;}
.he_c00434{height:71.964844px;}
.h2_c00434{height:153.105469px;}
.h1_c00434{height:1263.000000px;}
.h0_c00434{height:1263.240000px;}
.w1_c00434{width:892.500000px;}
.w0_c00434{width:892.800000px;}
.x0_c00434{left:0.000000px;}
.x1b_c00434{left:120.885000px;}
.x6_c00434{left:173.445000px;}
.x2_c00434{left:177.585000px;}
.x1_c00434{left:190.155000px;}
.x3_c00434{left:199.590000px;}
.x5_c00434{left:200.685000px;}
.x4_c00434{left:219.060000px;}
.x7_c00434{left:252.180000px;}
.x8_c00434{left:277.740000px;}
.x9_c00434{left:294.105000px;}
.xb_c00434{left:295.185000px;}
.xa_c00434{left:300.765000px;}
.xc_c00434{left:421.620000px;}
.xe_c00434{left:422.700000px;}
.xd_c00434{left:426.795000px;}
.xf_c00434{left:546.810000px;}
.x10_c00434{left:552.090000px;}
.x19_c00434{left:610.650000px;}
.x1a_c00434{left:676.530000px;}
.x11_c00434{left:678.315000px;}
.x18_c00434{left:687.030000px;}
.x12_c00434{left:702.510000px;}
.x15_c00434{left:711.075000px;}
.x16_c00434{left:724.830000px;}
.x14_c00434{left:728.085000px;}
.x17_c00434{left:748.380000px;}
.x13_c00434{left:751.020000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.v1_c00434{vertical-align:29.386667pt;}
.ls16_c00434{letter-spacing:-2.146667pt;}
.ls13_c00434{letter-spacing:-1.306667pt;}
.lsb_c00434{letter-spacing:-1.064000pt;}
.ls18_c00434{letter-spacing:-0.962933pt;}
.ls19_c00434{letter-spacing:-0.901600pt;}
.ls17_c00434{letter-spacing:-0.723733pt;}
.ls1b_c00434{letter-spacing:-0.447733pt;}
.ls11_c00434{letter-spacing:-0.386080pt;}
.ls1a_c00434{letter-spacing:-0.306667pt;}
.ls15_c00434{letter-spacing:-0.003467pt;}
.lsa_c00434{letter-spacing:0.000000pt;}
.ls12_c00434{letter-spacing:0.291204pt;}
.ls2_c00434{letter-spacing:0.382726pt;}
.ls3_c00434{letter-spacing:0.460000pt;}
.ls6_c00434{letter-spacing:0.466133pt;}
.ls5_c00434{letter-spacing:0.613333pt;}
.ls8_c00434{letter-spacing:0.680800pt;}
.ls9_c00434{letter-spacing:0.840267pt;}
.ls1_c00434{letter-spacing:0.934734pt;}
.ls4_c00434{letter-spacing:0.993600pt;}
.ls10_c00434{letter-spacing:1.013360pt;}
.ls0_c00434{letter-spacing:1.310420pt;}
.ls7_c00434{letter-spacing:1.447467pt;}
.lsc_c00434{letter-spacing:1.520000pt;}
.lsd_c00434{letter-spacing:1.546693pt;}
.ls14_c00434{letter-spacing:1.733360pt;}
.lsf_c00434{letter-spacing:1.893333pt;}
.lse_c00434{letter-spacing:1.973360pt;}
.ws0_c00434{word-spacing:0.000000pt;}
._2_c00434{margin-left:-12.108148pt;}
._3_c00434{margin-left:-5.842522pt;}
._6_c00434{width:0.939200pt;}
._4_c00434{width:2.668000pt;}
._7_c00434{width:4.044533pt;}
._5_c00434{width:7.249600pt;}
._8_c00434{width:9.972000pt;}
._1_c00434{width:32.567233pt;}
._0_c00434{width:427.848237pt;}
.fs5_c00434{font-size:20.267200pt;}
.fs7_c00434{font-size:20.800533pt;}
.fs6_c00434{font-size:22.400000pt;}
.fsc_c00434{font-size:28.800533pt;}
.fs1_c00434{font-size:30.400000pt;}
.fs2_c00434{font-size:30.933867pt;}
.fs8_c00434{font-size:34.667200pt;}
.fs9_c00434{font-size:36.267200pt;}
.fsb_c00434{font-size:36.800533pt;}
.fsa_c00434{font-size:37.333333pt;}
.fs4_c00434{font-size:37.866667pt;}
.fs3_c00434{font-size:39.467200pt;}
.fsd_c00434{font-size:61.333333pt;}
.fs0_c00434{font-size:138.666667pt;}
.y0_c00434{bottom:0.000000pt;}
.y1b_c00434{bottom:137.600000pt;}
.ya_c00434{bottom:196.173333pt;}
.yd_c00434{bottom:198.093333pt;}
.y7_c00434{bottom:253.133333pt;}
.y1a_c00434{bottom:254.413333pt;}
.y19_c00434{bottom:256.973333pt;}
.y18_c00434{bottom:388.813333pt;}
.y6_c00434{bottom:390.400000pt;}
.y17_c00434{bottom:391.360000pt;}
.y5_c00434{bottom:525.133333pt;}
.y16_c00434{bottom:526.400000pt;}
.y4_c00434{bottom:530.240000pt;}
.y15_c00434{bottom:533.133333pt;}
.y14_c00434{bottom:660.480000pt;}
.y13_c00434{bottom:703.053333pt;}
.y3_c00434{bottom:793.293333pt;}
.y12_c00434{bottom:795.533333pt;}
.y2_c00434{bottom:928.640000pt;}
.y11_c00434{bottom:930.880000pt;}
.y1_c00434{bottom:960.320000pt;}
.y9_c00434{bottom:996.480000pt;}
.y10_c00434{bottom:997.133333pt;}
.yc_c00434{bottom:998.720000pt;}
.yf_c00434{bottom:999.373333pt;}
.y8_c00434{bottom:1005.453333pt;}
.yb_c00434{bottom:1006.093333pt;}
.ye_c00434{bottom:1006.720000pt;}
.h7_c00434{height:21.138056pt;}
.h8_c00434{height:23.362500pt;}
.h3_c00434{height:29.835938pt;}
.h4_c00434{height:30.359898pt;}
.hb_c00434{height:34.023961pt;}
.h6_c00434{height:37.164062pt;}
.ha_c00434{height:37.825556pt;}
.hd_c00434{height:38.381806pt;}
.h5_c00434{height:38.734898pt;}
.hc_c00434{height:38.937500pt;}
.hf_c00434{height:60.195312pt;}
.h9_c00434{height:63.410628pt;}
.he_c00434{height:63.968750pt;}
.h2_c00434{height:136.093750pt;}
.h1_c00434{height:1122.666667pt;}
.h0_c00434{height:1122.880000pt;}
.w1_c00434{width:793.333333pt;}
.w0_c00434{width:793.600000pt;}
.x0_c00434{left:0.000000pt;}
.x1b_c00434{left:107.453333pt;}
.x6_c00434{left:154.173333pt;}
.x2_c00434{left:157.853333pt;}
.x1_c00434{left:169.026667pt;}
.x3_c00434{left:177.413333pt;}
.x5_c00434{left:178.386667pt;}
.x4_c00434{left:194.720000pt;}
.x7_c00434{left:224.160000pt;}
.x8_c00434{left:246.880000pt;}
.x9_c00434{left:261.426667pt;}
.xb_c00434{left:262.386667pt;}
.xa_c00434{left:267.346667pt;}
.xc_c00434{left:374.773333pt;}
.xe_c00434{left:375.733333pt;}
.xd_c00434{left:379.373333pt;}
.xf_c00434{left:486.053333pt;}
.x10_c00434{left:490.746667pt;}
.x19_c00434{left:542.800000pt;}
.x1a_c00434{left:601.360000pt;}
.x11_c00434{left:602.946667pt;}
.x18_c00434{left:610.693333pt;}
.x12_c00434{left:624.453333pt;}
.x15_c00434{left:632.066667pt;}
.x16_c00434{left:644.293333pt;}
.x14_c00434{left:647.186667pt;}
.x17_c00434{left:665.226667pt;}
.x13_c00434{left:667.573333pt;}
}





/* 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_c00435 {
    display:none;
  }
  .loading-indicator_c00435.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00435 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_c00435 { 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_c00435" -> "#page-container .classname_c00435")
 */
.pf_c00435 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00435 { /* 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_c00435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00435 { /* 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_c00435 { /* 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_c00435 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00435 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00435 {overflow:visible;}
  }
}
.c_c00435 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00435 { /* 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_c00435:after { /* webkit #35443 */
  content: '';
}
.t_c00435:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00435 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 */
}
.__c00435 { /* 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_c00435 { /* info for Javascript */
  display:none;
}
.l_c00435 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00435 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00435 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00435: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_c00435 {
    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_c00435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00435.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_c00435 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00435;src:url('chunks/assets/font_6993d4ddf7cf0d127f664f43.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.311035;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_c00435;src:url('chunks/assets/font_e8d5e831ffa6b3ba09de2123.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.284668;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_c00435;src:url('chunks/assets/font_983aff656974be0bae25396d.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;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:ff4_c00435;src:url('chunks/assets/font_f819e21c0c315fc7065d498f.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;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:ff5_c00435;src:url('chunks/assets/font_68cbf564f0602b58aac9d723.woff2')format("woff");}.ff5_c00435{font-family:ff5_c00435;line-height:0.666000;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;}
.m12_c00435{transform:matrix(0.113675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113675,0.000000,0.000000,0.250000,0,0);}
.md_c00435{transform:matrix(0.123560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123560,0.000000,0.000000,0.250000,0,0);}
.m16_c00435{transform:matrix(0.138252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138252,0.000000,0.000000,0.250000,0,0);}
.m1d_c00435{transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);}
.m2_c00435{transform:matrix(0.184737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184737,0.000000,0.000000,0.250000,0,0);}
.ma_c00435{transform:matrix(0.191194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191194,0.000000,0.000000,0.250000,0,0);}
.me_c00435{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.m19_c00435{transform:matrix(0.211908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211908,0.000000,0.000000,0.250000,0,0);}
.m8_c00435{transform:matrix(0.218746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218746,0.000000,0.000000,0.250000,0,0);}
.mf_c00435{transform:matrix(0.225716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225716,0.000000,0.000000,0.250000,0,0);}
.m17_c00435{transform:matrix(0.242761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242761,0.000000,0.000000,0.250000,0,0);}
.m1_c00435{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);}
.m7_c00435{transform:matrix(0.250974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250974,0.000000,0.000000,0.250000,0,0);}
.m15_c00435{transform:matrix(0.256867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256867,0.000000,0.000000,0.250000,0,0);}
.m18_c00435{transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);}
.m1b_c00435{transform:matrix(0.262123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262123,0.000000,0.000000,0.250000,0,0);}
.m0_c00435{transform:matrix(0.262361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262361,0.000000,0.000000,0.250000,0,0);}
.m6_c00435{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m3_c00435{transform:matrix(0.266044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266044,0.000000,0.000000,0.250000,0,0);}
.mb_c00435{transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);}
.m4_c00435{transform:matrix(0.274667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274667,0.000000,0.000000,0.250000,0,0);}
.m1c_c00435{transform:matrix(0.277859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277859,0.000000,0.000000,0.250000,0,0);}
.m10_c00435{transform:matrix(0.279971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279971,0.000000,0.000000,0.250000,0,0);}
.m5_c00435{transform:matrix(0.285167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285167,0.000000,0.000000,0.250000,0,0);}
.m1a_c00435{transform:matrix(0.294711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294711,0.000000,0.000000,0.250000,0,0);}
.m13_c00435{transform:matrix(0.295336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295336,0.000000,0.000000,0.250000,0,0);}
.m9_c00435{transform:matrix(0.304110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304110,0.000000,0.000000,0.250000,0,0);}
.mc_c00435{transform:matrix(0.304118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304118,0.000000,0.000000,0.250000,0,0);}
.m14_c00435{transform:matrix(0.316499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316499,0.000000,0.000000,0.250000,0,0);}
.m11_c00435{transform:matrix(0.432681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432681,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.v2_c00435{vertical-align:14.460000px;}
.v1_c00435{vertical-align:171.360000px;}
.ls16_c00435{letter-spacing:-3.423000px;}
.ls15_c00435{letter-spacing:-2.058000px;}
.ls17_c00435{letter-spacing:-1.869000px;}
.lsc_c00435{letter-spacing:-1.554021px;}
.ls21_c00435{letter-spacing:-1.449021px;}
.ls20_c00435{letter-spacing:-1.239021px;}
.ls14_c00435{letter-spacing:-1.197000px;}
.ls28_c00435{letter-spacing:-1.083300px;}
.ls26_c00435{letter-spacing:-0.814200px;}
.ls22_c00435{letter-spacing:-0.457500px;}
.lse_c00435{letter-spacing:-0.245220px;}
.ls27_c00435{letter-spacing:-0.020700px;}
.lsb_c00435{letter-spacing:0.000000px;}
.ls1e_c00435{letter-spacing:0.263520px;}
.ls1_c00435{letter-spacing:0.264120px;}
.ls1c_c00435{letter-spacing:0.327605px;}
.ls9_c00435{letter-spacing:0.351900px;}
.ls6_c00435{letter-spacing:0.400200px;}
.lsf_c00435{letter-spacing:0.430566px;}
.ls8_c00435{letter-spacing:0.483000px;}
.ls5_c00435{letter-spacing:0.538200px;}
.ls1f_c00435{letter-spacing:0.579608px;}
.ls18_c00435{letter-spacing:0.607508px;}
.ls0_c00435{letter-spacing:0.782471px;}
.ls1d_c00435{letter-spacing:0.972914px;}
.ls11_c00435{letter-spacing:0.984540px;}
.ls7_c00435{letter-spacing:0.993600px;}
.ls4_c00435{letter-spacing:1.007400px;}
.ls2_c00435{letter-spacing:1.097100px;}
.ls3_c00435{letter-spacing:1.104000px;}
.lsd_c00435{letter-spacing:1.350030px;}
.ls25_c00435{letter-spacing:1.443360px;}
.ls23_c00435{letter-spacing:1.682640px;}
.ls10_c00435{letter-spacing:1.710000px;}
.ls1b_c00435{letter-spacing:1.800000px;}
.ls12_c00435{letter-spacing:1.830000px;}
.ls24_c00435{letter-spacing:1.860000px;}
.lsa_c00435{letter-spacing:2.220030px;}
.ls13_c00435{letter-spacing:2.280000px;}
.ls19_c00435{letter-spacing:2.340030px;}
.ls1a_c00435{letter-spacing:2.370030px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{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__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00435{word-spacing:0.000000px;}
._5_c00435{margin-left:-12.628607px;}
._4_c00435{margin-left:-10.060346px;}
._6_c00435{margin-left:-5.592360px;}
._9_c00435{width:1.407600px;}
._a_c00435{width:2.635800px;}
._3_c00435{width:4.019550px;}
._8_c00435{width:6.472200px;}
._7_c00435{width:8.549100px;}
._1_c00435{width:30.674880px;}
._2_c00435{width:56.880000px;}
._0_c00435{width:319.289550px;}
.fc0_c00435{color:transparent;}
.fs2_c00435{font-size:27.000600px;}
.fs5_c00435{font-size:34.200000px;}
.fs17_c00435{font-size:34.800600px;}
.fs16_c00435{font-size:35.400600px;}
.fs13_c00435{font-size:36.000000px;}
.fs6_c00435{font-size:36.600000px;}
.fs19_c00435{font-size:37.200000px;}
.fs14_c00435{font-size:39.000600px;}
.fs3_c00435{font-size:40.200000px;}
.fs4_c00435{font-size:41.400600px;}
.fs0_c00435{font-size:44.400600px;}
.fse_c00435{font-size:45.000600px;}
.fs7_c00435{font-size:45.600000px;}
.fs10_c00435{font-size:46.800600px;}
.fs11_c00435{font-size:47.400600px;}
.fs1b_c00435{font-size:53.280000px;}
.fsc_c00435{font-size:53.400000px;}
.fs9_c00435{font-size:57.600000px;}
.fsa_c00435{font-size:58.800000px;}
.fs1a_c00435{font-size:69.000000px;}
.fs8_c00435{font-size:91.200000px;}
.fs18_c00435{font-size:96.000000px;}
.fsb_c00435{font-size:97.800000px;}
.fs15_c00435{font-size:103.200600px;}
.fs1_c00435{font-size:166.200600px;}
.fs12_c00435{font-size:168.480000px;}
.fsd_c00435{font-size:217.200600px;}
.fsf_c00435{font-size:314.400600px;}
.y0_c00435{bottom:0.000000px;}
.y1d_c00435{bottom:155.520000px;}
.yf_c00435{bottom:223.215000px;}
.y1c_c00435{bottom:225.000000px;}
.y12_c00435{bottom:225.375000px;}
.ye_c00435{bottom:255.975000px;}
.y1b_c00435{bottom:291.600000px;}
.yd_c00435{bottom:291.975000px;}
.yc_c00435{bottom:354.600000px;}
.yb_c00435{bottom:402.495000px;}
.ya_c00435{bottom:442.440000px;}
.y1a_c00435{bottom:443.175000px;}
.y15_c00435{bottom:443.520000px;}
.y9_c00435{bottom:474.120000px;}
.y19_c00435{bottom:593.280000px;}
.y8_c00435{bottom:593.655000px;}
.y7_c00435{bottom:599.415000px;}
.y18_c00435{bottom:603.000000px;}
.y6_c00435{bottom:744.495000px;}
.y17_c00435{bottom:746.280000px;}
.y5_c00435{bottom:895.335000px;}
.y4_c00435{bottom:1044.360000px;}
.y16_c00435{bottom:1046.175000px;}
.y11_c00435{bottom:1049.775000px;}
.y2_c00435{bottom:1080.360000px;}
.y3_c00435{bottom:1123.200000px;}
.y14_c00435{bottom:1128.615000px;}
.y1_c00435{bottom:1134.000000px;}
.y10_c00435{bottom:1134.360000px;}
.y13_c00435{bottom:1135.080000px;}
.h4_c00435{height:28.160782px;}
.h6_c00435{height:33.565430px;}
.h16_c00435{height:34.743753px;}
.h12_c00435{height:35.332031px;}
.h1a_c00435{height:35.484480px;}
.h18_c00435{height:36.509766px;}
.h7_c00435{height:38.172656px;}
.h13_c00435{height:38.276956px;}
.h14_c00435{height:43.179532px;}
.h2_c00435{height:44.747480px;}
.hf_c00435{height:45.932229px;}
.h8_c00435{height:45.956250px;}
.h10_c00435{height:49.437345px;}
.hc_c00435{height:55.694531px;}
.h5_c00435{height:57.639532px;}
.ha_c00435{height:57.708984px;}
.h19_c00435{height:67.719727px;}
.h9_c00435{height:89.507812px;}
.h17_c00435{height:94.218750px;}
.hb_c00435{height:102.002344px;}
.h15_c00435{height:107.635001px;}
.h11_c00435{height:112.207680px;}
.hd_c00435{height:213.170511px;}
.h3_c00435{height:216.107480px;}
.he_c00435{height:308.566995px;}
.h1_c00435{height:1263.000000px;}
.h0_c00435{height:1263.240000px;}
.w1_c00435{width:892.500000px;}
.w0_c00435{width:892.800000px;}
.x0_c00435{left:0.000000px;}
.x2a_c00435{left:128.805000px;}
.x9_c00435{left:170.565000px;}
.x6_c00435{left:174.210000px;}
.x5_c00435{left:175.935000px;}
.x13_c00435{left:184.485000px;}
.x2_c00435{left:187.905000px;}
.x7_c00435{left:197.805000px;}
.x15_c00435{left:214.785000px;}
.x14_c00435{left:216.735000px;}
.x12_c00435{left:223.500000px;}
.x11_c00435{left:232.380000px;}
.xd_c00435{left:237.975000px;}
.xb_c00435{left:241.695000px;}
.x8_c00435{left:248.880000px;}
.xa_c00435{left:258.660000px;}
.xe_c00435{left:272.760000px;}
.x16_c00435{left:279.330000px;}
.xc_c00435{left:287.850000px;}
.x1_c00435{left:292.260000px;}
.x17_c00435{left:293.340000px;}
.x3_c00435{left:300.855000px;}
.x4_c00435{left:313.455000px;}
.xf_c00435{left:316.125000px;}
.x10_c00435{left:335.160000px;}
.x18_c00435{left:420.000000px;}
.x1b_c00435{left:421.080000px;}
.x19_c00435{left:544.275000px;}
.x1a_c00435{left:578.250000px;}
.x1f_c00435{left:642.330000px;}
.x1e_c00435{left:651.330000px;}
.x2b_c00435{left:661.335000px;}
.x27_c00435{left:670.845000px;}
.x1c_c00435{left:672.810000px;}
.x1d_c00435{left:675.090000px;}
.x20_c00435{left:677.250000px;}
.x28_c00435{left:680.550000px;}
.x21_c00435{left:683.730000px;}
.x24_c00435{left:686.625000px;}
.x26_c00435{left:709.350000px;}
.x22_c00435{left:737.730000px;}
.x25_c00435{left:744.765000px;}
.x23_c00435{left:747.600000px;}
.x29_c00435{left:748.755000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.v2_c00435{vertical-align:12.853333pt;}
.v1_c00435{vertical-align:152.320000pt;}
.ls16_c00435{letter-spacing:-3.042667pt;}
.ls15_c00435{letter-spacing:-1.829333pt;}
.ls17_c00435{letter-spacing:-1.661333pt;}
.lsc_c00435{letter-spacing:-1.381352pt;}
.ls21_c00435{letter-spacing:-1.288019pt;}
.ls20_c00435{letter-spacing:-1.101352pt;}
.ls14_c00435{letter-spacing:-1.064000pt;}
.ls28_c00435{letter-spacing:-0.962933pt;}
.ls26_c00435{letter-spacing:-0.723733pt;}
.ls22_c00435{letter-spacing:-0.406667pt;}
.lse_c00435{letter-spacing:-0.217973pt;}
.ls27_c00435{letter-spacing:-0.018400pt;}
.lsb_c00435{letter-spacing:0.000000pt;}
.ls1e_c00435{letter-spacing:0.234240pt;}
.ls1_c00435{letter-spacing:0.234773pt;}
.ls1c_c00435{letter-spacing:0.291204pt;}
.ls9_c00435{letter-spacing:0.312800pt;}
.ls6_c00435{letter-spacing:0.355733pt;}
.lsf_c00435{letter-spacing:0.382726pt;}
.ls8_c00435{letter-spacing:0.429333pt;}
.ls5_c00435{letter-spacing:0.478400pt;}
.ls1f_c00435{letter-spacing:0.515207pt;}
.ls18_c00435{letter-spacing:0.540007pt;}
.ls0_c00435{letter-spacing:0.695530pt;}
.ls1d_c00435{letter-spacing:0.864813pt;}
.ls11_c00435{letter-spacing:0.875147pt;}
.ls7_c00435{letter-spacing:0.883200pt;}
.ls4_c00435{letter-spacing:0.895467pt;}
.ls2_c00435{letter-spacing:0.975200pt;}
.ls3_c00435{letter-spacing:0.981333pt;}
.lsd_c00435{letter-spacing:1.200027pt;}
.ls25_c00435{letter-spacing:1.282987pt;}
.ls23_c00435{letter-spacing:1.495680pt;}
.ls10_c00435{letter-spacing:1.520000pt;}
.ls1b_c00435{letter-spacing:1.600000pt;}
.ls12_c00435{letter-spacing:1.626667pt;}
.ls24_c00435{letter-spacing:1.653333pt;}
.lsa_c00435{letter-spacing:1.973360pt;}
.ls13_c00435{letter-spacing:2.026667pt;}
.ls19_c00435{letter-spacing:2.080027pt;}
.ls1a_c00435{letter-spacing:2.106693pt;}
.ws0_c00435{word-spacing:0.000000pt;}
._5_c00435{margin-left:-11.225429pt;}
._4_c00435{margin-left:-8.942530pt;}
._6_c00435{margin-left:-4.970987pt;}
._9_c00435{width:1.251200pt;}
._a_c00435{width:2.342933pt;}
._3_c00435{width:3.572933pt;}
._8_c00435{width:5.753067pt;}
._7_c00435{width:7.599200pt;}
._1_c00435{width:27.266560pt;}
._2_c00435{width:50.560000pt;}
._0_c00435{width:283.812933pt;}
.fs2_c00435{font-size:24.000533pt;}
.fs5_c00435{font-size:30.400000pt;}
.fs17_c00435{font-size:30.933867pt;}
.fs16_c00435{font-size:31.467200pt;}
.fs13_c00435{font-size:32.000000pt;}
.fs6_c00435{font-size:32.533333pt;}
.fs19_c00435{font-size:33.066667pt;}
.fs14_c00435{font-size:34.667200pt;}
.fs3_c00435{font-size:35.733333pt;}
.fs4_c00435{font-size:36.800533pt;}
.fs0_c00435{font-size:39.467200pt;}
.fse_c00435{font-size:40.000533pt;}
.fs7_c00435{font-size:40.533333pt;}
.fs10_c00435{font-size:41.600533pt;}
.fs11_c00435{font-size:42.133867pt;}
.fs1b_c00435{font-size:47.360000pt;}
.fsc_c00435{font-size:47.466667pt;}
.fs9_c00435{font-size:51.200000pt;}
.fsa_c00435{font-size:52.266667pt;}
.fs1a_c00435{font-size:61.333333pt;}
.fs8_c00435{font-size:81.066667pt;}
.fs18_c00435{font-size:85.333333pt;}
.fsb_c00435{font-size:86.933333pt;}
.fs15_c00435{font-size:91.733867pt;}
.fs1_c00435{font-size:147.733867pt;}
.fs12_c00435{font-size:149.760000pt;}
.fsd_c00435{font-size:193.067200pt;}
.fsf_c00435{font-size:279.467200pt;}
.y0_c00435{bottom:0.000000pt;}
.y1d_c00435{bottom:138.240000pt;}
.yf_c00435{bottom:198.413333pt;}
.y1c_c00435{bottom:200.000000pt;}
.y12_c00435{bottom:200.333333pt;}
.ye_c00435{bottom:227.533333pt;}
.y1b_c00435{bottom:259.200000pt;}
.yd_c00435{bottom:259.533333pt;}
.yc_c00435{bottom:315.200000pt;}
.yb_c00435{bottom:357.773333pt;}
.ya_c00435{bottom:393.280000pt;}
.y1a_c00435{bottom:393.933333pt;}
.y15_c00435{bottom:394.240000pt;}
.y9_c00435{bottom:421.440000pt;}
.y19_c00435{bottom:527.360000pt;}
.y8_c00435{bottom:527.693333pt;}
.y7_c00435{bottom:532.813333pt;}
.y18_c00435{bottom:536.000000pt;}
.y6_c00435{bottom:661.773333pt;}
.y17_c00435{bottom:663.360000pt;}
.y5_c00435{bottom:795.853333pt;}
.y4_c00435{bottom:928.320000pt;}
.y16_c00435{bottom:929.933333pt;}
.y11_c00435{bottom:933.133333pt;}
.y2_c00435{bottom:960.320000pt;}
.y3_c00435{bottom:998.400000pt;}
.y14_c00435{bottom:1003.213333pt;}
.y1_c00435{bottom:1008.000000pt;}
.y10_c00435{bottom:1008.320000pt;}
.y13_c00435{bottom:1008.960000pt;}
.h4_c00435{height:25.031806pt;}
.h6_c00435{height:29.835938pt;}
.h16_c00435{height:30.883336pt;}
.h12_c00435{height:31.406250pt;}
.h1a_c00435{height:31.541760pt;}
.h18_c00435{height:32.453125pt;}
.h7_c00435{height:33.931250pt;}
.h13_c00435{height:34.023961pt;}
.h14_c00435{height:38.381806pt;}
.h2_c00435{height:39.775537pt;}
.hf_c00435{height:40.828648pt;}
.h8_c00435{height:40.850000pt;}
.h10_c00435{height:43.944306pt;}
.hc_c00435{height:49.506250pt;}
.h5_c00435{height:51.235140pt;}
.ha_c00435{height:51.296875pt;}
.h19_c00435{height:60.195312pt;}
.h9_c00435{height:79.562500pt;}
.h17_c00435{height:83.750000pt;}
.hb_c00435{height:90.668750pt;}
.h15_c00435{height:95.675556pt;}
.h11_c00435{height:99.740160pt;}
.hd_c00435{height:189.484898pt;}
.h3_c00435{height:192.095537pt;}
.he_c00435{height:274.281773pt;}
.h1_c00435{height:1122.666667pt;}
.h0_c00435{height:1122.880000pt;}
.w1_c00435{width:793.333333pt;}
.w0_c00435{width:793.600000pt;}
.x0_c00435{left:0.000000pt;}
.x2a_c00435{left:114.493333pt;}
.x9_c00435{left:151.613333pt;}
.x6_c00435{left:154.853333pt;}
.x5_c00435{left:156.386667pt;}
.x13_c00435{left:163.986667pt;}
.x2_c00435{left:167.026667pt;}
.x7_c00435{left:175.826667pt;}
.x15_c00435{left:190.920000pt;}
.x14_c00435{left:192.653333pt;}
.x12_c00435{left:198.666667pt;}
.x11_c00435{left:206.560000pt;}
.xd_c00435{left:211.533333pt;}
.xb_c00435{left:214.840000pt;}
.x8_c00435{left:221.226667pt;}
.xa_c00435{left:229.920000pt;}
.xe_c00435{left:242.453333pt;}
.x16_c00435{left:248.293333pt;}
.xc_c00435{left:255.866667pt;}
.x1_c00435{left:259.786667pt;}
.x17_c00435{left:260.746667pt;}
.x3_c00435{left:267.426667pt;}
.x4_c00435{left:278.626667pt;}
.xf_c00435{left:281.000000pt;}
.x10_c00435{left:297.920000pt;}
.x18_c00435{left:373.333333pt;}
.x1b_c00435{left:374.293333pt;}
.x19_c00435{left:483.800000pt;}
.x1a_c00435{left:514.000000pt;}
.x1f_c00435{left:570.960000pt;}
.x1e_c00435{left:578.960000pt;}
.x2b_c00435{left:587.853333pt;}
.x27_c00435{left:596.306667pt;}
.x1c_c00435{left:598.053333pt;}
.x1d_c00435{left:600.080000pt;}
.x20_c00435{left:602.000000pt;}
.x28_c00435{left:604.933333pt;}
.x21_c00435{left:607.760000pt;}
.x24_c00435{left:610.333333pt;}
.x26_c00435{left:630.533333pt;}
.x22_c00435{left:655.760000pt;}
.x25_c00435{left:662.013333pt;}
.x23_c00435{left:664.533333pt;}
.x29_c00435{left:665.560000pt;}
}





/* 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_c00436 {
    display:none;
  }
  .loading-indicator_c00436.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00436 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_c00436 { 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_c00436" -> "#page-container .classname_c00436")
 */
.pf_c00436 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00436 { /* 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_c00436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00436 { /* 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_c00436 { /* 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_c00436 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00436 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00436 {overflow:visible;}
  }
}
.c_c00436 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00436 { /* 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_c00436:after { /* webkit #35443 */
  content: '';
}
.t_c00436:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00436 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 */
}
.__c00436 { /* 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_c00436 { /* info for Javascript */
  display:none;
}
.l_c00436 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00436 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00436 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00436: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_c00436 {
    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_c00436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00436.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_c00436 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00436{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00436;src:url('chunks/assets/font_9532499640898ce299df2347.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.311035;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_c00436;src:url('chunks/assets/font_edc3545db431445d1755e302.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;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_c00436;src:url('chunks/assets/font_e847635450944c4fa84d53cb.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.284668;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_c00436;src:url('chunks/assets/font_315fd53d66712aee6d95a9d8.woff2')format("woff");}.ff4_c00436{font-family:ff4_c00436;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:ff5_c00436;src:url('chunks/assets/font_078ade0a7f4878f3f334b528.woff2')format("woff");}.ff5_c00436{font-family:ff5_c00436;line-height:0.666000;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_c00436;src:url('chunks/assets/font_dcc61eefe042701d575bcf99.woff2')format("woff");}.ff6_c00436{font-family:ff6_c00436;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;}
.m10_c00436{transform:matrix(0.058958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058958,0.000000,0.000000,0.250000,0,0);}
.m14_c00436{transform:matrix(0.113043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113043,0.000000,0.000000,0.250000,0,0);}
.mf_c00436{transform:matrix(0.133379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133379,0.000000,0.000000,0.250000,0,0);}
.m4_c00436{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.m2_c00436{transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);}
.me_c00436{transform:matrix(0.222202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222202,0.000000,0.000000,0.250000,0,0);}
.m11_c00436{transform:matrix(0.230828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230828,0.000000,0.000000,0.250000,0,0);}
.m6_c00436{transform:matrix(0.245435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245435,0.000000,0.000000,0.250000,0,0);}
.m7_c00436{transform:matrix(0.247299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247299,0.000000,0.000000,0.250000,0,0);}
.mb_c00436{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.m3_c00436{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);}
.m0_c00436{transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);}
.mc_c00436{transform:matrix(0.253233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253233,0.000000,0.000000,0.250000,0,0);}
.ma_c00436{transform:matrix(0.255609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255609,0.000000,0.000000,0.250000,0,0);}
.m1c_c00436{transform:matrix(0.258046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258046,0.000000,0.000000,0.250000,0,0);}
.m8_c00436{transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);}
.m12_c00436{transform:matrix(0.258926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258926,0.000000,0.000000,0.250000,0,0);}
.m18_c00436{transform:matrix(0.260966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260966,0.000000,0.000000,0.250000,0,0);}
.m9_c00436{transform:matrix(0.261556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261556,0.000000,0.000000,0.250000,0,0);}
.m13_c00436{transform:matrix(0.266110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266110,0.000000,0.000000,0.250000,0,0);}
.m19_c00436{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.md_c00436{transform:matrix(0.292516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292516,0.000000,0.000000,0.250000,0,0);}
.m5_c00436{transform:matrix(0.297239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297239,0.000000,0.000000,0.250000,0,0);}
.m16_c00436{transform:matrix(0.309914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309914,0.000000,0.000000,0.250000,0,0);}
.m15_c00436{transform:matrix(0.321204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321204,0.000000,0.000000,0.250000,0,0);}
.m17_c00436{transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);}
.m1_c00436{transform:matrix(0.339580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339580,0.000000,0.000000,0.250000,0,0);}
.m1a_c00436{transform:matrix(0.435850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435850,0.000000,0.000000,0.250000,0,0);}
.m1b_c00436{transform:matrix(0.516475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516475,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.v1_c00436{vertical-align:11.580000px;}
.ls19_c00436{letter-spacing:-3.171000px;}
.ls17_c00436{letter-spacing:-1.974000px;}
.ls21_c00436{letter-spacing:-1.963080px;}
.ls1a_c00436{letter-spacing:-1.680000px;}
.lsd_c00436{letter-spacing:-1.575021px;}
.ls13_c00436{letter-spacing:-1.512000px;}
.ls1f_c00436{letter-spacing:-1.169640px;}
.lsa_c00436{letter-spacing:-1.155021px;}
.ls12_c00436{letter-spacing:-0.882000px;}
.ls10_c00436{letter-spacing:-0.633429px;}
.ls20_c00436{letter-spacing:-0.526680px;}
.lsb_c00436{letter-spacing:-0.457500px;}
.lse_c00436{letter-spacing:-0.434340px;}
.lsc_c00436{letter-spacing:0.000000px;}
.ls5_c00436{letter-spacing:0.034200px;}
.ls14_c00436{letter-spacing:0.263520px;}
.ls22_c00436{letter-spacing:0.278100px;}
.ls11_c00436{letter-spacing:0.505087px;}
.ls24_c00436{letter-spacing:0.900000px;}
.ls0_c00436{letter-spacing:0.910813px;}
.ls6_c00436{letter-spacing:0.916560px;}
.ls7_c00436{letter-spacing:1.060200px;}
.ls23_c00436{letter-spacing:1.086798px;}
.ls4_c00436{letter-spacing:1.279080px;}
.ls3_c00436{letter-spacing:1.374840px;}
.lsf_c00436{letter-spacing:1.380000px;}
.ls2_c00436{letter-spacing:1.409040px;}
.ls1d_c00436{letter-spacing:1.644360px;}
.ls9_c00436{letter-spacing:1.650030px;}
.ls1e_c00436{letter-spacing:1.740030px;}
.ls18_c00436{letter-spacing:1.770030px;}
.ls15_c00436{letter-spacing:1.830000px;}
.ls8_c00436{letter-spacing:2.130000px;}
.ls1c_c00436{letter-spacing:2.269620px;}
.ls16_c00436{letter-spacing:2.280000px;}
.ls1b_c00436{letter-spacing:2.430000px;}
.ls1_c00436{letter-spacing:2224.809000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{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__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00436{word-spacing:0.000000px;}
._4_c00436{margin-left:-17.691034px;}
._1_c00436{margin-left:-12.422340px;}
._6_c00436{width:2.220170px;}
._7_c00436{width:4.264820px;}
._2_c00436{width:8.963230px;}
._5_c00436{width:10.442880px;}
._3_c00436{width:56.880000px;}
._0_c00436{width:286.598100px;}
.fc0_c00436{color:transparent;}
.fs1d_c00436{font-size:18.000000px;}
.fsa_c00436{font-size:25.200000px;}
.fs9_c00436{font-size:27.600000px;}
.fs1_c00436{font-size:33.000600px;}
.fs7_c00436{font-size:34.200000px;}
.fs1a_c00436{font-size:34.800600px;}
.fs12_c00436{font-size:35.400600px;}
.fs2_c00436{font-size:36.600000px;}
.fs5_c00436{font-size:40.800600px;}
.fs8_c00436{font-size:41.400600px;}
.fs0_c00436{font-size:42.600000px;}
.fsb_c00436{font-size:43.200000px;}
.fs4_c00436{font-size:45.000600px;}
.fsc_c00436{font-size:45.600000px;}
.fs15_c00436{font-size:48.000000px;}
.fs17_c00436{font-size:48.600000px;}
.fs10_c00436{font-size:55.800000px;}
.fs11_c00436{font-size:56.400000px;}
.fs1c_c00436{font-size:61.800000px;}
.fs1b_c00436{font-size:68.400000px;}
.fs14_c00436{font-size:70.560000px;}
.fs13_c00436{font-size:90.600000px;}
.fsf_c00436{font-size:91.200000px;}
.fs6_c00436{font-size:126.000000px;}
.fs3_c00436{font-size:144.600000px;}
.fs16_c00436{font-size:147.000000px;}
.fs19_c00436{font-size:165.600000px;}
.fs18_c00436{font-size:203.400600px;}
.fsd_c00436{font-size:207.000000px;}
.fse_c00436{font-size:339.600000px;}
.y0_c00436{bottom:0.000000px;}
.y18_c00436{bottom:155.880006px;}
.y16_c00436{bottom:223.920006px;}
.y17_c00436{bottom:225.375006px;}
.y15_c00436{bottom:257.415006px;}
.y13_c00436{bottom:288.375006px;}
.y1a_c00436{bottom:291.255006px;}
.y14_c00436{bottom:294.495006px;}
.y12_c00436{bottom:356.415006px;}
.y11_c00436{bottom:403.935006px;}
.yf_c00436{bottom:441.720006px;}
.y19_c00436{bottom:442.800006px;}
.y10_c00436{bottom:443.175006px;}
.ye_c00436{bottom:475.215006px;}
.yd_c00436{bottom:568.800006px;}
.yc_c00436{bottom:601.215006px;}
.yb_c00436{bottom:746.640006px;}
.y8_c00436{bottom:1046.160006px;}
.y9_c00436{bottom:1049.055006px;}
.ya_c00436{bottom:1050.480006px;}
.y7_c00436{bottom:1079.640006px;}
.y4_c00436{bottom:1080.735006px;}
.y6_c00436{bottom:1124.640006px;}
.y5_c00436{bottom:1125.000006px;}
.y1_c00436{bottom:1134.735006px;}
.y2_c00436{bottom:1135.095006px;}
.y3_c00436{bottom:1135.455006px;}
.h1d_c00436{height:18.773438px;}
.hc_c00436{height:26.282813px;}
.ha_c00436{height:28.785937px;}
.h3_c00436{height:34.418595px;}
.h12_c00436{height:34.743753px;}
.h1b_c00436{height:36.295938px;}
.h4_c00436{height:38.172656px;}
.h7_c00436{height:42.553751px;}
.h2_c00436{height:42.932812px;}
.hb_c00436{height:43.179532px;}
.h1a_c00436{height:44.753906px;}
.hd_c00436{height:45.056250px;}
.he_c00436{height:45.956250px;}
.h6_c00436{height:46.934220px;}
.h14_c00436{height:46.992960px;}
.h15_c00436{height:47.109375px;}
.h17_c00436{height:47.698242px;}
.h9_c00436{height:54.759532px;}
.h11_c00436{height:55.353516px;}
.h1c_c00436{height:67.130859px;}
.h10_c00436{height:89.507812px;}
.h13_c00436{height:94.492969px;}
.h19_c00436{height:110.289600px;}
.h8_c00436{height:131.414062px;}
.h5_c00436{height:141.916992px;}
.h16_c00436{height:144.272461px;}
.h18_c00436{height:212.140470px;}
.hf_c00436{height:333.298828px;}
.h1_c00436{height:1263.000000px;}
.h0_c00436{height:1263.240006px;}
.w1_c00436{width:892.500000px;}
.w0_c00436{width:892.799998px;}
.x0_c00436{left:0.000000px;}
.x1e_c00436{left:123.404999px;}
.xf_c00436{left:169.844999px;}
.xd_c00436{left:174.209998px;}
.x9_c00436{left:175.739998px;}
.x5_c00436{left:188.459998px;}
.x13_c00436{left:197.069998px;}
.x1c_c00436{left:215.489999px;}
.x1b_c00436{left:217.094999px;}
.x1a_c00436{left:224.984998px;}
.x18_c00436{left:233.624998px;}
.x14_c00436{left:238.139999px;}
.x11_c00436{left:242.774998px;}
.x15_c00436{left:257.444999px;}
.x16_c00436{left:273.974999px;}
.x19_c00436{left:275.579998px;}
.x1d_c00436{left:279.689999px;}
.x12_c00436{left:288.989999px;}
.x1_c00436{left:292.109999px;}
.x6_c00436{left:298.979999px;}
.xa_c00436{left:303.269999px;}
.x17_c00436{left:311.894999px;}
.x2_c00436{left:420.239999px;}
.x3_c00436{left:544.664999px;}
.xb_c00436{left:638.369999px;}
.x1f_c00436{left:641.339998px;}
.x20_c00436{left:647.789999px;}
.x22_c00436{left:669.389998px;}
.x4_c00436{left:673.169999px;}
.x7_c00436{left:675.794999px;}
.xe_c00436{left:686.624998px;}
.x21_c00436{left:698.909999px;}
.x8_c00436{left:738.284999px;}
.x10_c00436{left:744.404998px;}
.xc_c00436{left:747.839998px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.v1_c00436{vertical-align:10.293333pt;}
.ls19_c00436{letter-spacing:-2.818667pt;}
.ls17_c00436{letter-spacing:-1.754667pt;}
.ls21_c00436{letter-spacing:-1.744960pt;}
.ls1a_c00436{letter-spacing:-1.493333pt;}
.lsd_c00436{letter-spacing:-1.400019pt;}
.ls13_c00436{letter-spacing:-1.344000pt;}
.ls1f_c00436{letter-spacing:-1.039680pt;}
.lsa_c00436{letter-spacing:-1.026685pt;}
.ls12_c00436{letter-spacing:-0.784000pt;}
.ls10_c00436{letter-spacing:-0.563048pt;}
.ls20_c00436{letter-spacing:-0.468160pt;}
.lsb_c00436{letter-spacing:-0.406667pt;}
.lse_c00436{letter-spacing:-0.386080pt;}
.lsc_c00436{letter-spacing:0.000000pt;}
.ls5_c00436{letter-spacing:0.030400pt;}
.ls14_c00436{letter-spacing:0.234240pt;}
.ls22_c00436{letter-spacing:0.247200pt;}
.ls11_c00436{letter-spacing:0.448967pt;}
.ls24_c00436{letter-spacing:0.800000pt;}
.ls0_c00436{letter-spacing:0.809612pt;}
.ls6_c00436{letter-spacing:0.814720pt;}
.ls7_c00436{letter-spacing:0.942400pt;}
.ls23_c00436{letter-spacing:0.966043pt;}
.ls4_c00436{letter-spacing:1.136960pt;}
.ls3_c00436{letter-spacing:1.222080pt;}
.lsf_c00436{letter-spacing:1.226667pt;}
.ls2_c00436{letter-spacing:1.252480pt;}
.ls1d_c00436{letter-spacing:1.461653pt;}
.ls9_c00436{letter-spacing:1.466693pt;}
.ls1e_c00436{letter-spacing:1.546693pt;}
.ls18_c00436{letter-spacing:1.573360pt;}
.ls15_c00436{letter-spacing:1.626667pt;}
.ls8_c00436{letter-spacing:1.893333pt;}
.ls1c_c00436{letter-spacing:2.017440pt;}
.ls16_c00436{letter-spacing:2.026667pt;}
.ls1b_c00436{letter-spacing:2.160000pt;}
.ls1_c00436{letter-spacing:1977.608000pt;}
.ws0_c00436{word-spacing:0.000000pt;}
._4_c00436{margin-left:-15.725363pt;}
._1_c00436{margin-left:-11.042080pt;}
._6_c00436{width:1.973485pt;}
._7_c00436{width:3.790951pt;}
._2_c00436{width:7.967315pt;}
._5_c00436{width:9.282560pt;}
._3_c00436{width:50.560000pt;}
._0_c00436{width:254.753867pt;}
.fs1d_c00436{font-size:16.000000pt;}
.fsa_c00436{font-size:22.400000pt;}
.fs9_c00436{font-size:24.533333pt;}
.fs1_c00436{font-size:29.333867pt;}
.fs7_c00436{font-size:30.400000pt;}
.fs1a_c00436{font-size:30.933867pt;}
.fs12_c00436{font-size:31.467200pt;}
.fs2_c00436{font-size:32.533333pt;}
.fs5_c00436{font-size:36.267200pt;}
.fs8_c00436{font-size:36.800533pt;}
.fs0_c00436{font-size:37.866667pt;}
.fsb_c00436{font-size:38.400000pt;}
.fs4_c00436{font-size:40.000533pt;}
.fsc_c00436{font-size:40.533333pt;}
.fs15_c00436{font-size:42.666667pt;}
.fs17_c00436{font-size:43.200000pt;}
.fs10_c00436{font-size:49.600000pt;}
.fs11_c00436{font-size:50.133333pt;}
.fs1c_c00436{font-size:54.933333pt;}
.fs1b_c00436{font-size:60.800000pt;}
.fs14_c00436{font-size:62.720000pt;}
.fs13_c00436{font-size:80.533333pt;}
.fsf_c00436{font-size:81.066667pt;}
.fs6_c00436{font-size:112.000000pt;}
.fs3_c00436{font-size:128.533333pt;}
.fs16_c00436{font-size:130.666667pt;}
.fs19_c00436{font-size:147.200000pt;}
.fs18_c00436{font-size:180.800533pt;}
.fsd_c00436{font-size:184.000000pt;}
.fse_c00436{font-size:301.866667pt;}
.y0_c00436{bottom:0.000000pt;}
.y18_c00436{bottom:138.560005pt;}
.y16_c00436{bottom:199.040005pt;}
.y17_c00436{bottom:200.333339pt;}
.y15_c00436{bottom:228.813339pt;}
.y13_c00436{bottom:256.333339pt;}
.y1a_c00436{bottom:258.893339pt;}
.y14_c00436{bottom:261.773339pt;}
.y12_c00436{bottom:316.813339pt;}
.y11_c00436{bottom:359.053339pt;}
.yf_c00436{bottom:392.640005pt;}
.y19_c00436{bottom:393.600005pt;}
.y10_c00436{bottom:393.933339pt;}
.ye_c00436{bottom:422.413339pt;}
.yd_c00436{bottom:505.600005pt;}
.yc_c00436{bottom:534.413339pt;}
.yb_c00436{bottom:663.680005pt;}
.y8_c00436{bottom:929.920005pt;}
.y9_c00436{bottom:932.493339pt;}
.ya_c00436{bottom:933.760005pt;}
.y7_c00436{bottom:959.680005pt;}
.y4_c00436{bottom:960.653339pt;}
.y6_c00436{bottom:999.680005pt;}
.y5_c00436{bottom:1000.000005pt;}
.y1_c00436{bottom:1008.653339pt;}
.y2_c00436{bottom:1008.973339pt;}
.y3_c00436{bottom:1009.293339pt;}
.h1d_c00436{height:16.687500pt;}
.hc_c00436{height:23.362500pt;}
.ha_c00436{height:25.587500pt;}
.h3_c00436{height:30.594306pt;}
.h12_c00436{height:30.883336pt;}
.h1b_c00436{height:32.263056pt;}
.h4_c00436{height:33.931250pt;}
.h7_c00436{height:37.825556pt;}
.h2_c00436{height:38.162500pt;}
.hb_c00436{height:38.381806pt;}
.h1a_c00436{height:39.781250pt;}
.hd_c00436{height:40.050000pt;}
.he_c00436{height:40.850000pt;}
.h6_c00436{height:41.719306pt;}
.h14_c00436{height:41.771520pt;}
.h15_c00436{height:41.875000pt;}
.h17_c00436{height:42.398437pt;}
.h9_c00436{height:48.675140pt;}
.h11_c00436{height:49.203125pt;}
.h1c_c00436{height:59.671875pt;}
.h10_c00436{height:79.562500pt;}
.h13_c00436{height:83.993750pt;}
.h19_c00436{height:98.035200pt;}
.h8_c00436{height:116.812500pt;}
.h5_c00436{height:126.148438pt;}
.h16_c00436{height:128.242188pt;}
.h18_c00436{height:188.569306pt;}
.hf_c00436{height:296.265625pt;}
.h1_c00436{height:1122.666667pt;}
.h0_c00436{height:1122.880005pt;}
.w1_c00436{width:793.333333pt;}
.w0_c00436{width:793.599999pt;}
.x0_c00436{left:0.000000pt;}
.x1e_c00436{left:109.693332pt;}
.xf_c00436{left:150.973332pt;}
.xd_c00436{left:154.853332pt;}
.x9_c00436{left:156.213332pt;}
.x5_c00436{left:167.519999pt;}
.x13_c00436{left:175.173332pt;}
.x1c_c00436{left:191.546665pt;}
.x1b_c00436{left:192.973332pt;}
.x1a_c00436{left:199.986665pt;}
.x18_c00436{left:207.666665pt;}
.x14_c00436{left:211.679999pt;}
.x11_c00436{left:215.799999pt;}
.x15_c00436{left:228.839999pt;}
.x16_c00436{left:243.533332pt;}
.x19_c00436{left:244.959999pt;}
.x1d_c00436{left:248.613332pt;}
.x12_c00436{left:256.879999pt;}
.x1_c00436{left:259.653332pt;}
.x6_c00436{left:265.759999pt;}
.xa_c00436{left:269.573332pt;}
.x17_c00436{left:277.239999pt;}
.x2_c00436{left:373.546665pt;}
.x3_c00436{left:484.146665pt;}
.xb_c00436{left:567.439999pt;}
.x1f_c00436{left:570.079999pt;}
.x20_c00436{left:575.813332pt;}
.x22_c00436{left:595.013332pt;}
.x4_c00436{left:598.373332pt;}
.x7_c00436{left:600.706665pt;}
.xe_c00436{left:610.333332pt;}
.x21_c00436{left:621.253332pt;}
.x8_c00436{left:656.253332pt;}
.x10_c00436{left:661.693332pt;}
.xc_c00436{left:664.746665pt;}
}





/* 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_c00437 {
    display:none;
  }
  .loading-indicator_c00437.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00437 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_c00437 { 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_c00437" -> "#page-container .classname_c00437")
 */
.pf_c00437 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00437 { /* 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_c00437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00437 { /* 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_c00437 { /* 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_c00437 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00437 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00437 {overflow:visible;}
  }
}
.c_c00437 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00437 { /* 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_c00437:after { /* webkit #35443 */
  content: '';
}
.t_c00437:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00437 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 */
}
.__c00437 { /* 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_c00437 { /* info for Javascript */
  display:none;
}
.l_c00437 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00437 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00437 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00437: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_c00437 {
    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_c00437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00437.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_c00437 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00437{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00437;src:url('chunks/assets/font_549faaa4b5856aa2f3ea06a9.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;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:ff2_c00437;src:url('chunks/assets/font_8526102d5486690baba4eda6.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.284668;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_c00437;src:url('chunks/assets/font_55892b909bf9a20d2ba102a2.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.311035;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_c00437;src:url('chunks/assets/font_91e5bef79c04d298f408b68b.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;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:ff5_c00437;src:url('chunks/assets/font_7f3dadcadfe289317d6005db.woff2')format("woff");}.ff5_c00437{font-family:ff5_c00437;line-height:0.666000;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_c00437;src:url('chunks/assets/font_ade2918c3169ca09b533f0eb.woff2')format("woff");}.ff6_c00437{font-family:ff6_c00437;line-height:1.284180;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_c00437;src:url('chunks/assets/font_376bc3ed0ce4d19fc12d3813.woff2')format("woff");}.ff7_c00437{font-family:ff7_c00437;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;}
.mb_c00437{transform:matrix(0.138252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138252,0.000000,0.000000,0.250000,0,0);}
.m3_c00437{transform:matrix(0.188711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188711,0.000000,0.000000,0.250000,0,0);}
.m11_c00437{transform:matrix(0.234443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234443,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{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);}
.m2_c00437{transform:matrix(0.256613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256613,0.000000,0.000000,0.250000,0,0);}
.md_c00437{transform:matrix(0.263950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263950,0.000000,0.000000,0.250000,0,0);}
.m1_c00437{transform:matrix(0.264434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264434,0.000000,0.000000,0.250000,0,0);}
.m13_c00437{transform:matrix(0.272929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272929,0.000000,0.000000,0.250000,0,0);}
.m7_c00437{transform:matrix(0.276029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276029,0.000000,0.000000,0.250000,0,0);}
.me_c00437{transform:matrix(0.284975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284975,0.000000,0.000000,0.250000,0,0);}
.m10_c00437{transform:matrix(0.293951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293951,0.000000,0.000000,0.250000,0,0);}
.m9_c00437{transform:matrix(0.300243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300243,0.000000,0.000000,0.250000,0,0);}
.mf_c00437{transform:matrix(0.301283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301283,0.000000,0.000000,0.250000,0,0);}
.m12_c00437{transform:matrix(0.312964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312964,0.000000,0.000000,0.250000,0,0);}
.m5_c00437{transform:matrix(0.313702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313702,0.000000,0.000000,0.250000,0,0);}
.m6_c00437{transform:matrix(0.317654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317654,0.000000,0.000000,0.250000,0,0);}
.m8_c00437{transform:matrix(0.321262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321262,0.000000,0.000000,0.250000,0,0);}
.ma_c00437{transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);}
.mc_c00437{transform:matrix(0.332080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332080,0.000000,0.000000,0.250000,0,0);}
.m14_c00437{transform:matrix(0.333522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333522,0.000000,0.000000,0.250000,0,0);}
.m4_c00437{transform:matrix(0.968763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.968763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.968763,0.000000,0.000000,0.250000,0,0);}
.v1_c00437{vertical-align:-4.320000px;}
.v0_c00437{vertical-align:0.000000px;}
.ls1b_c00437{letter-spacing:-1.848000px;}
.lsd_c00437{letter-spacing:-1.491000px;}
.ls20_c00437{letter-spacing:-1.449000px;}
.ls14_c00437{letter-spacing:-1.239021px;}
.ls1e_c00437{letter-spacing:-1.083300px;}
.ls1f_c00437{letter-spacing:-0.821100px;}
.ls1d_c00437{letter-spacing:-0.814200px;}
.ls18_c00437{letter-spacing:-0.312840px;}
.ls12_c00437{letter-spacing:-0.072000px;}
.lsc_c00437{letter-spacing:0.000000px;}
.ls9_c00437{letter-spacing:0.310504px;}
.ls6_c00437{letter-spacing:0.351900px;}
.lsa_c00437{letter-spacing:0.407880px;}
.ls13_c00437{letter-spacing:0.505087px;}
.ls16_c00437{letter-spacing:0.648000px;}
.ls1_c00437{letter-spacing:0.807300px;}
.ls4_c00437{letter-spacing:0.841800px;}
.ls11_c00437{letter-spacing:0.914953px;}
.ls1a_c00437{letter-spacing:0.939840px;}
.ls5_c00437{letter-spacing:0.966000px;}
.ls3_c00437{letter-spacing:1.007400px;}
.ls2_c00437{letter-spacing:1.104000px;}
.ls7_c00437{letter-spacing:1.159941px;}
.ls19_c00437{letter-spacing:1.368840px;}
.ls0_c00437{letter-spacing:1.478123px;}
.lse_c00437{letter-spacing:1.590030px;}
.ls1c_c00437{letter-spacing:1.680000px;}
.ls10_c00437{letter-spacing:1.740030px;}
.ls15_c00437{letter-spacing:1.800000px;}
.ls8_c00437{letter-spacing:1.830000px;}
.ls17_c00437{letter-spacing:1.853363px;}
.lsb_c00437{letter-spacing:2.130000px;}
.lsf_c00437{letter-spacing:2.340030px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{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__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00437{word-spacing:0.000000px;}
._1_c00437{margin-left:-8.736134px;}
._5_c00437{width:1.725000px;}
._7_c00437{width:2.772300px;}
._6_c00437{width:4.968000px;}
._4_c00437{width:9.197700px;}
._2_c00437{width:33.506879px;}
._3_c00437{width:47.704800px;}
._0_c00437{width:55.500000px;}
.fc0_c00437{color:transparent;}
.fs6_c00437{font-size:11.520000px;}
.fs7_c00437{font-size:31.800600px;}
.fs0_c00437{font-size:32.400600px;}
.fs18_c00437{font-size:33.600000px;}
.fse_c00437{font-size:34.800600px;}
.fs13_c00437{font-size:35.400600px;}
.fs11_c00437{font-size:36.000000px;}
.fs1_c00437{font-size:36.600000px;}
.fsf_c00437{font-size:39.000600px;}
.fs3_c00437{font-size:39.600000px;}
.fs12_c00437{font-size:40.800600px;}
.fs10_c00437{font-size:41.400600px;}
.fs4_c00437{font-size:42.600000px;}
.fs2_c00437{font-size:45.000600px;}
.fsb_c00437{font-size:46.800600px;}
.fs15_c00437{font-size:47.400600px;}
.fs17_c00437{font-size:49.800000px;}
.fs16_c00437{font-size:52.800000px;}
.fsa_c00437{font-size:54.600000px;}
.fs8_c00437{font-size:61.800000px;}
.fs19_c00437{font-size:69.000000px;}
.fs9_c00437{font-size:91.200000px;}
.fsc_c00437{font-size:94.200000px;}
.fsd_c00437{font-size:145.200600px;}
.fs5_c00437{font-size:165.000000px;}
.fs14_c00437{font-size:277.200600px;}
.y0_c00437{bottom:0.000000px;}
.y1f_c00437{bottom:154.800000px;}
.y1d_c00437{bottom:223.200000px;}
.y1e_c00437{bottom:224.295000px;}
.y1c_c00437{bottom:264.255000px;}
.y1b_c00437{bottom:290.535000px;}
.yd_c00437{bottom:295.935000px;}
.ye_c00437{bottom:298.095000px;}
.yb_c00437{bottom:335.535000px;}
.yc_c00437{bottom:339.135000px;}
.ya_c00437{bottom:367.575000px;}
.y9_c00437{bottom:368.655000px;}
.y1a_c00437{bottom:441.720000px;}
.y8_c00437{bottom:442.095000px;}
.y4_c00437{bottom:590.775000px;}
.y19_c00437{bottom:591.135000px;}
.y3_c00437{bottom:599.400000px;}
.y18_c00437{bottom:601.200000px;}
.y17_c00437{bottom:745.560000px;}
.y2_c00437{bottom:892.440000px;}
.y16_c00437{bottom:897.495000px;}
.y1_c00437{bottom:1044.720000px;}
.y15_c00437{bottom:1045.080000px;}
.y10_c00437{bottom:1048.335000px;}
.y13_c00437{bottom:1049.055000px;}
.y14_c00437{bottom:1079.280000px;}
.y6_c00437{bottom:1081.440000px;}
.y7_c00437{bottom:1121.055000px;}
.y12_c00437{bottom:1123.560000px;}
.y5_c00437{bottom:1133.280000px;}
.yf_c00437{bottom:1133.655000px;}
.y11_c00437{bottom:1134.375000px;}
.h9_c00437{height:7.672320px;}
.ha_c00437{height:31.210550px;}
.h2_c00437{height:33.792813px;}
.h15_c00437{height:34.743753px;}
.h1b_c00437{height:35.043750px;}
.h3_c00437{height:35.920898px;}
.h10_c00437{height:36.295938px;}
.h13_c00437{height:37.546875px;}
.h11_c00437{height:38.257913px;}
.h5_c00437{height:38.865234px;}
.h17_c00437{height:40.676407px;}
.h14_c00437{height:42.553751px;}
.h6_c00437{height:42.932812px;}
.h12_c00437{height:43.179532px;}
.h8_c00437{height:44.430469px;}
.h4_c00437{height:45.352167px;}
.hd_c00437{height:45.932229px;}
.h18_c00437{height:47.770917px;}
.h1a_c00437{height:48.875977px;}
.h19_c00437{height:55.068750px;}
.hb_c00437{height:64.455469px;}
.h1c_c00437{height:67.719727px;}
.hc_c00437{height:89.507812px;}
.he_c00437{height:98.247656px;}
.hf_c00437{height:142.506448px;}
.h7_c00437{height:172.089844px;}
.h16_c00437{height:289.111563px;}
.h1_c00437{height:1263.000000px;}
.h0_c00437{height:1263.240000px;}
.w1_c00437{width:892.500000px;}
.w0_c00437{width:892.800000px;}
.x0_c00437{left:0.000000px;}
.x1e_c00437{left:129.165000px;}
.x3_c00437{left:172.365000px;}
.x2_c00437{left:176.355000px;}
.x1_c00437{left:178.410000px;}
.x5_c00437{left:190.185000px;}
.x7_c00437{left:199.950000px;}
.xe_c00437{left:209.145000px;}
.x1c_c00437{left:213.330000px;}
.xc_c00437{left:214.590000px;}
.xa_c00437{left:218.295000px;}
.xd_c00437{left:249.390000px;}
.xb_c00437{left:264.525000px;}
.x1d_c00437{left:277.530000px;}
.x4_c00437{left:294.420000px;}
.x8_c00437{left:298.875000px;}
.x6_c00437{left:301.110000px;}
.x9_c00437{left:305.070000px;}
.xf_c00437{left:422.400000px;}
.x11_c00437{left:438.570000px;}
.x10_c00437{left:546.855000px;}
.x19_c00437{left:634.830000px;}
.x14_c00437{left:660.330000px;}
.x12_c00437{left:675.690000px;}
.x13_c00437{left:678.315000px;}
.x1a_c00437{left:679.455000px;}
.x17_c00437{left:686.265000px;}
.x1b_c00437{left:730.245000px;}
.x15_c00437{left:738.945000px;}
.x18_c00437{left:746.925000px;}
.x16_c00437{left:749.985000px;}
@media print{
.v1_c00437{vertical-align:-3.840000pt;}
.v0_c00437{vertical-align:0.000000pt;}
.ls1b_c00437{letter-spacing:-1.642667pt;}
.lsd_c00437{letter-spacing:-1.325333pt;}
.ls20_c00437{letter-spacing:-1.288000pt;}
.ls14_c00437{letter-spacing:-1.101352pt;}
.ls1e_c00437{letter-spacing:-0.962933pt;}
.ls1f_c00437{letter-spacing:-0.729867pt;}
.ls1d_c00437{letter-spacing:-0.723733pt;}
.ls18_c00437{letter-spacing:-0.278080pt;}
.ls12_c00437{letter-spacing:-0.064000pt;}
.lsc_c00437{letter-spacing:0.000000pt;}
.ls9_c00437{letter-spacing:0.276004pt;}
.ls6_c00437{letter-spacing:0.312800pt;}
.lsa_c00437{letter-spacing:0.362560pt;}
.ls13_c00437{letter-spacing:0.448967pt;}
.ls16_c00437{letter-spacing:0.576000pt;}
.ls1_c00437{letter-spacing:0.717600pt;}
.ls4_c00437{letter-spacing:0.748267pt;}
.ls11_c00437{letter-spacing:0.813292pt;}
.ls1a_c00437{letter-spacing:0.835413pt;}
.ls5_c00437{letter-spacing:0.858667pt;}
.ls3_c00437{letter-spacing:0.895467pt;}
.ls2_c00437{letter-spacing:0.981333pt;}
.ls7_c00437{letter-spacing:1.031059pt;}
.ls19_c00437{letter-spacing:1.216747pt;}
.ls0_c00437{letter-spacing:1.313887pt;}
.lse_c00437{letter-spacing:1.413360pt;}
.ls1c_c00437{letter-spacing:1.493333pt;}
.ls10_c00437{letter-spacing:1.546693pt;}
.ls15_c00437{letter-spacing:1.600000pt;}
.ls8_c00437{letter-spacing:1.626667pt;}
.ls17_c00437{letter-spacing:1.647434pt;}
.lsb_c00437{letter-spacing:1.893333pt;}
.lsf_c00437{letter-spacing:2.080027pt;}
.ws0_c00437{word-spacing:0.000000pt;}
._1_c00437{margin-left:-7.765453pt;}
._5_c00437{width:1.533333pt;}
._7_c00437{width:2.464267pt;}
._6_c00437{width:4.416000pt;}
._4_c00437{width:8.175733pt;}
._2_c00437{width:29.783892pt;}
._3_c00437{width:42.404267pt;}
._0_c00437{width:49.333333pt;}
.fs6_c00437{font-size:10.240000pt;}
.fs7_c00437{font-size:28.267200pt;}
.fs0_c00437{font-size:28.800533pt;}
.fs18_c00437{font-size:29.866667pt;}
.fse_c00437{font-size:30.933867pt;}
.fs13_c00437{font-size:31.467200pt;}
.fs11_c00437{font-size:32.000000pt;}
.fs1_c00437{font-size:32.533333pt;}
.fsf_c00437{font-size:34.667200pt;}
.fs3_c00437{font-size:35.200000pt;}
.fs12_c00437{font-size:36.267200pt;}
.fs10_c00437{font-size:36.800533pt;}
.fs4_c00437{font-size:37.866667pt;}
.fs2_c00437{font-size:40.000533pt;}
.fsb_c00437{font-size:41.600533pt;}
.fs15_c00437{font-size:42.133867pt;}
.fs17_c00437{font-size:44.266667pt;}
.fs16_c00437{font-size:46.933333pt;}
.fsa_c00437{font-size:48.533333pt;}
.fs8_c00437{font-size:54.933333pt;}
.fs19_c00437{font-size:61.333333pt;}
.fs9_c00437{font-size:81.066667pt;}
.fsc_c00437{font-size:83.733333pt;}
.fsd_c00437{font-size:129.067200pt;}
.fs5_c00437{font-size:146.666667pt;}
.fs14_c00437{font-size:246.400533pt;}
.y0_c00437{bottom:0.000000pt;}
.y1f_c00437{bottom:137.600000pt;}
.y1d_c00437{bottom:198.400000pt;}
.y1e_c00437{bottom:199.373333pt;}
.y1c_c00437{bottom:234.893333pt;}
.y1b_c00437{bottom:258.253333pt;}
.yd_c00437{bottom:263.053333pt;}
.ye_c00437{bottom:264.973333pt;}
.yb_c00437{bottom:298.253333pt;}
.yc_c00437{bottom:301.453333pt;}
.ya_c00437{bottom:326.733333pt;}
.y9_c00437{bottom:327.693333pt;}
.y1a_c00437{bottom:392.640000pt;}
.y8_c00437{bottom:392.973333pt;}
.y4_c00437{bottom:525.133333pt;}
.y19_c00437{bottom:525.453333pt;}
.y3_c00437{bottom:532.800000pt;}
.y18_c00437{bottom:534.400000pt;}
.y17_c00437{bottom:662.720000pt;}
.y2_c00437{bottom:793.280000pt;}
.y16_c00437{bottom:797.773333pt;}
.y1_c00437{bottom:928.640000pt;}
.y15_c00437{bottom:928.960000pt;}
.y10_c00437{bottom:931.853333pt;}
.y13_c00437{bottom:932.493333pt;}
.y14_c00437{bottom:959.360000pt;}
.y6_c00437{bottom:961.280000pt;}
.y7_c00437{bottom:996.493333pt;}
.y12_c00437{bottom:998.720000pt;}
.y5_c00437{bottom:1007.360000pt;}
.yf_c00437{bottom:1007.693333pt;}
.y11_c00437{bottom:1008.333333pt;}
.h9_c00437{height:6.819840pt;}
.ha_c00437{height:27.742711pt;}
.h2_c00437{height:30.038056pt;}
.h15_c00437{height:30.883336pt;}
.h1b_c00437{height:31.150000pt;}
.h3_c00437{height:31.929687pt;}
.h10_c00437{height:32.263056pt;}
.h13_c00437{height:33.375000pt;}
.h11_c00437{height:34.007034pt;}
.h5_c00437{height:34.546875pt;}
.h17_c00437{height:36.156806pt;}
.h14_c00437{height:37.825556pt;}
.h6_c00437{height:38.162500pt;}
.h12_c00437{height:38.381806pt;}
.h8_c00437{height:39.493750pt;}
.h4_c00437{height:40.313038pt;}
.hd_c00437{height:40.828648pt;}
.h18_c00437{height:42.463037pt;}
.h1a_c00437{height:43.445313pt;}
.h19_c00437{height:48.950000pt;}
.hb_c00437{height:57.293750pt;}
.h1c_c00437{height:60.195312pt;}
.hc_c00437{height:79.562500pt;}
.he_c00437{height:87.331250pt;}
.hf_c00437{height:126.672398pt;}
.h7_c00437{height:152.968750pt;}
.h16_c00437{height:256.988056pt;}
.h1_c00437{height:1122.666667pt;}
.h0_c00437{height:1122.880000pt;}
.w1_c00437{width:793.333333pt;}
.w0_c00437{width:793.600000pt;}
.x0_c00437{left:0.000000pt;}
.x1e_c00437{left:114.813333pt;}
.x3_c00437{left:153.213333pt;}
.x2_c00437{left:156.760000pt;}
.x1_c00437{left:158.586667pt;}
.x5_c00437{left:169.053333pt;}
.x7_c00437{left:177.733333pt;}
.xe_c00437{left:185.906667pt;}
.x1c_c00437{left:189.626667pt;}
.xc_c00437{left:190.746667pt;}
.xa_c00437{left:194.040000pt;}
.xd_c00437{left:221.680000pt;}
.xb_c00437{left:235.133333pt;}
.x1d_c00437{left:246.693333pt;}
.x4_c00437{left:261.706667pt;}
.x8_c00437{left:265.666667pt;}
.x6_c00437{left:267.653333pt;}
.x9_c00437{left:271.173333pt;}
.xf_c00437{left:375.466667pt;}
.x11_c00437{left:389.840000pt;}
.x10_c00437{left:486.093333pt;}
.x19_c00437{left:564.293333pt;}
.x14_c00437{left:586.960000pt;}
.x12_c00437{left:600.613333pt;}
.x13_c00437{left:602.946667pt;}
.x1a_c00437{left:603.960000pt;}
.x17_c00437{left:610.013333pt;}
.x1b_c00437{left:649.106667pt;}
.x15_c00437{left:656.840000pt;}
.x18_c00437{left:663.933333pt;}
.x16_c00437{left:666.653333pt;}
}





/* 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_c00438 {
    display:none;
  }
  .loading-indicator_c00438.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00438 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_c00438 { 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_c00438" -> "#page-container .classname_c00438")
 */
.pf_c00438 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00438 { /* 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_c00438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00438 { /* 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_c00438 { /* 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_c00438 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00438 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00438 {overflow:visible;}
  }
}
.c_c00438 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00438 { /* 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_c00438:after { /* webkit #35443 */
  content: '';
}
.t_c00438:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00438 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 */
}
.__c00438 { /* 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_c00438 { /* info for Javascript */
  display:none;
}
.l_c00438 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00438 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00438 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00438: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_c00438 {
    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_c00438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00438.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_c00438 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00438{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00438;src:url('chunks/assets/font_c151486f27cc6f56124d8cf1.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;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:ff2_c00438;src:url('chunks/assets/font_539b0e6d05819d3d13334bc1.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.311035;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_c00438;src:url('chunks/assets/font_65b8b90fdd0e21a5bde084ac.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.284668;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_c00438;src:url('chunks/assets/font_a8a8a22c29f2f7b3d3599428.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;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:ff5_c00438;src:url('chunks/assets/font_565659fa3b69c2cf61de74dd.woff2')format("woff");}.ff5_c00438{font-family:ff5_c00438;line-height:0.666000;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;}
.m9_c00438{transform:matrix(0.012048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012048,0.000000,0.000000,0.250000,0,0);}
.m3_c00438{transform:matrix(0.160286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160286,0.000000,0.000000,0.250000,0,0);}
.m10_c00438{transform:matrix(0.208914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208914,0.000000,0.000000,0.250000,0,0);}
.m16_c00438{transform:matrix(0.218198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218198,0.000000,0.000000,0.250000,0,0);}
.mf_c00438{transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);}
.m2_c00438{transform:matrix(0.224087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224087,0.000000,0.000000,0.250000,0,0);}
.m12_c00438{transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);}
.m13_c00438{transform:matrix(0.237356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237356,0.000000,0.000000,0.250000,0,0);}
.m0_c00438{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);}
.m14_c00438{transform:matrix(0.259193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259193,0.000000,0.000000,0.250000,0,0);}
.ma_c00438{transform:matrix(0.261437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261437,0.000000,0.000000,0.250000,0,0);}
.m15_c00438{transform:matrix(0.262504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262504,0.000000,0.000000,0.250000,0,0);}
.me_c00438{transform:matrix(0.266833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266833,0.000000,0.000000,0.250000,0,0);}
.m1_c00438{transform:matrix(0.270974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270974,0.000000,0.000000,0.250000,0,0);}
.m7_c00438{transform:matrix(0.275452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275452,0.000000,0.000000,0.250000,0,0);}
.m17_c00438{transform:matrix(0.283596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283596,0.000000,0.000000,0.250000,0,0);}
.md_c00438{transform:matrix(0.289240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289240,0.000000,0.000000,0.250000,0,0);}
.m5_c00438{transform:matrix(0.305449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305449,0.000000,0.000000,0.250000,0,0);}
.m6_c00438{transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);}
.m8_c00438{transform:matrix(0.316442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316442,0.000000,0.000000,0.250000,0,0);}
.m11_c00438{transform:matrix(0.400845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400845,0.000000,0.000000,0.250000,0,0);}
.mb_c00438{transform:matrix(0.446538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446538,0.000000,0.000000,0.250000,0,0);}
.m4_c00438{transform:matrix(0.466369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466369,0.000000,0.000000,0.250000,0,0);}
.mc_c00438{transform:matrix(0.467312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467312,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.v1_c00438{vertical-align:1.386000px;}
.lsd_c00438{letter-spacing:-2.016000px;}
.ls23_c00438{letter-spacing:-1.722000px;}
.lsb_c00438{letter-spacing:-1.449021px;}
.ls17_c00438{letter-spacing:-1.407000px;}
.ls1a_c00438{letter-spacing:-1.239021px;}
.ls16_c00438{letter-spacing:-1.218021px;}
.ls21_c00438{letter-spacing:-0.977054px;}
.ls20_c00438{letter-spacing:-0.945021px;}
.ls19_c00438{letter-spacing:-0.916876px;}
.ls1d_c00438{letter-spacing:-0.526680px;}
.ls1b_c00438{letter-spacing:-0.444600px;}
.ls14_c00438{letter-spacing:-0.159122px;}
.ls10_c00438{letter-spacing:-0.123000px;}
.ls1c_c00438{letter-spacing:-0.054720px;}
.ls1f_c00438{letter-spacing:-0.019800px;}
.ls7_c00438{letter-spacing:-0.003360px;}
.lsa_c00438{letter-spacing:0.000000px;}
.ls11_c00438{letter-spacing:0.216480px;}
.ls4_c00438{letter-spacing:0.342000px;}
.ls8_c00438{letter-spacing:0.429246px;}
.ls5_c00438{letter-spacing:0.902880px;}
.lse_c00438{letter-spacing:1.059855px;}
.lsc_c00438{letter-spacing:1.065614px;}
.ls1_c00438{letter-spacing:1.121760px;}
.ls6_c00438{letter-spacing:1.217520px;}
.ls1e_c00438{letter-spacing:1.272240px;}
.ls3_c00438{letter-spacing:1.279080px;}
.ls2_c00438{letter-spacing:1.511640px;}
.ls13_c00438{letter-spacing:1.560000px;}
.ls9_c00438{letter-spacing:1.710000px;}
.ls0_c00438{letter-spacing:1.748790px;}
.ls18_c00438{letter-spacing:1.770030px;}
.ls22_c00438{letter-spacing:1.980000px;}
.ls15_c00438{letter-spacing:2.340030px;}
.ls12_c00438{letter-spacing:2.370030px;}
.lsf_c00438{letter-spacing:2.460000px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{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__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00438{word-spacing:0.000000px;}
._0_c00438{margin-left:-5.508000px;}
._1_c00438{margin-left:-2.280000px;}
._5_c00438{width:2.298240px;}
._4_c00438{width:4.883760px;}
._3_c00438{width:6.648480px;}
._2_c00438{width:487.116000px;}
.fc0_c00438{color:transparent;}
.fs13_c00438{font-size:25.200000px;}
.fs18_c00438{font-size:27.000600px;}
.fsf_c00438{font-size:31.200000px;}
.fs0_c00438{font-size:33.600000px;}
.fs2_c00438{font-size:34.200000px;}
.fs11_c00438{font-size:34.800600px;}
.fs14_c00438{font-size:35.400600px;}
.fs16_c00438{font-size:39.600000px;}
.fs12_c00438{font-size:40.200000px;}
.fs17_c00438{font-size:40.800600px;}
.fs4_c00438{font-size:41.400600px;}
.fs1_c00438{font-size:43.800600px;}
.fs5_c00438{font-size:44.400600px;}
.fs6_c00438{font-size:45.000600px;}
.fs10_c00438{font-size:46.800600px;}
.fsa_c00438{font-size:47.400600px;}
.fs8_c00438{font-size:49.200000px;}
.fs7_c00438{font-size:57.600000px;}
.fs15_c00438{font-size:68.400000px;}
.fs9_c00438{font-size:91.200000px;}
.fsb_c00438{font-size:94.200000px;}
.fse_c00438{font-size:119.520000px;}
.fs19_c00438{font-size:126.000000px;}
.fsc_c00438{font-size:137.400000px;}
.fs3_c00438{font-size:144.600000px;}
.fsd_c00438{font-size:207.000000px;}
.y0_c00438{bottom:0.000000px;}
.y1b_c00438{bottom:156.240000px;}
.y14_c00438{bottom:222.135000px;}
.y1a_c00438{bottom:223.575000px;}
.y19_c00438{bottom:223.935000px;}
.y13_c00438{bottom:257.760000px;}
.yf_c00438{bottom:286.575000px;}
.y12_c00438{bottom:289.455000px;}
.y10_c00438{bottom:289.800000px;}
.y11_c00438{bottom:299.175000px;}
.yd_c00438{bottom:343.455000px;}
.ye_c00438{bottom:345.975000px;}
.yb_c00438{bottom:383.775000px;}
.yc_c00438{bottom:387.375000px;}
.ya_c00438{bottom:416.895000px;}
.y9_c00438{bottom:417.615000px;}
.y23_c00438{bottom:438.135000px;}
.y8_c00438{bottom:438.855000px;}
.y3_c00438{bottom:590.400000px;}
.y22_c00438{bottom:591.855000px;}
.y2_c00438{bottom:597.975000px;}
.y21_c00438{bottom:601.200000px;}
.y20_c00438{bottom:745.200000px;}
.y1_c00438{bottom:1044.015000px;}
.y1f_c00438{bottom:1045.080000px;}
.y5_c00438{bottom:1047.240000px;}
.y18_c00438{bottom:1048.335000px;}
.y1d_c00438{bottom:1048.695000px;}
.y4_c00438{bottom:1078.200000px;}
.y1e_c00438{bottom:1080.375000px;}
.y7_c00438{bottom:1121.055000px;}
.y1c_c00438{bottom:1123.200000px;}
.y17_c00438{bottom:1125.375000px;}
.y6_c00438{bottom:1132.920000px;}
.y16_c00438{bottom:1133.280000px;}
.y15_c00438{bottom:1133.655000px;}
.h1a_c00438{height:26.499612px;}
.h15_c00438{height:27.668813px;}
.h11_c00438{height:30.621094px;}
.h4_c00438{height:33.565430px;}
.h13_c00438{height:34.154886px;}
.h16_c00438{height:34.743753px;}
.h2_c00438{height:35.043750px;}
.h18_c00438{height:38.865234px;}
.h14_c00438{height:39.454102px;}
.h19_c00438{height:42.553751px;}
.h6_c00438{height:43.179532px;}
.h3_c00438{height:44.142792px;}
.h7_c00438{height:44.747480px;}
.h12_c00438{height:45.932229px;}
.hc_c00438{height:46.521097px;}
.h8_c00438{height:46.934220px;}
.ha_c00438{height:48.287109px;}
.h9_c00438{height:60.075000px;}
.h17_c00438{height:67.130859px;}
.h10_c00438{height:79.600320px;}
.hb_c00438{height:89.507812px;}
.hd_c00438{height:98.247656px;}
.h1b_c00438{height:131.414062px;}
.he_c00438{height:143.303906px;}
.h5_c00438{height:150.813281px;}
.hf_c00438{height:215.894531px;}
.h1_c00438{height:1263.000000px;}
.h0_c00438{height:1263.240000px;}
.w1_c00438{width:892.500000px;}
.w0_c00438{width:892.800000px;}
.x0_c00438{left:0.000000px;}
.x21_c00438{left:125.565000px;}
.x2_c00438{left:172.365000px;}
.x3_c00438{left:176.295000px;}
.x1_c00438{left:178.050000px;}
.x4_c00438{left:190.350000px;}
.x11_c00438{left:202.200000px;}
.x10_c00438{left:205.890000px;}
.x5_c00438{left:209.280000px;}
.x15_c00438{left:212.385000px;}
.xe_c00438{left:214.425000px;}
.x9_c00438{left:218.970000px;}
.xd_c00438{left:219.990000px;}
.xb_c00438{left:224.055000px;}
.x16_c00438{left:227.760000px;}
.x12_c00438{left:230.985000px;}
.x17_c00438{left:250.065000px;}
.xc_c00438{left:254.745000px;}
.xf_c00438{left:255.870000px;}
.x13_c00438{left:269.475000px;}
.x14_c00438{left:275.460000px;}
.x6_c00438{left:294.420000px;}
.x7_c00438{left:301.035000px;}
.xa_c00438{left:303.225000px;}
.x8_c00438{left:332.490000px;}
.x18_c00438{left:422.025000px;}
.x1a_c00438{left:426.810000px;}
.x1b_c00438{left:463.050000px;}
.x1c_c00438{left:472.140000px;}
.x1d_c00438{left:516.300000px;}
.x1e_c00438{left:532.260000px;}
.x1f_c00438{left:544.920000px;}
.x19_c00438{left:546.450000px;}
.x20_c00438{left:551.430000px;}
.x22_c00438{left:674.955000px;}
.x23_c00438{left:677.595000px;}
.x24_c00438{left:678.690000px;}
.x27_c00438{left:701.070000px;}
.x29_c00438{left:723.045000px;}
.x25_c00438{left:740.085000px;}
.x28_c00438{left:746.565000px;}
.x26_c00438{left:749.625000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.v1_c00438{vertical-align:1.232000pt;}
.lsd_c00438{letter-spacing:-1.792000pt;}
.ls23_c00438{letter-spacing:-1.530667pt;}
.lsb_c00438{letter-spacing:-1.288019pt;}
.ls17_c00438{letter-spacing:-1.250667pt;}
.ls1a_c00438{letter-spacing:-1.101352pt;}
.ls16_c00438{letter-spacing:-1.082685pt;}
.ls21_c00438{letter-spacing:-0.868493pt;}
.ls20_c00438{letter-spacing:-0.840019pt;}
.ls19_c00438{letter-spacing:-0.815000pt;}
.ls1d_c00438{letter-spacing:-0.468160pt;}
.ls1b_c00438{letter-spacing:-0.395200pt;}
.ls14_c00438{letter-spacing:-0.141442pt;}
.ls10_c00438{letter-spacing:-0.109333pt;}
.ls1c_c00438{letter-spacing:-0.048640pt;}
.ls1f_c00438{letter-spacing:-0.017600pt;}
.ls7_c00438{letter-spacing:-0.002987pt;}
.lsa_c00438{letter-spacing:0.000000pt;}
.ls11_c00438{letter-spacing:0.192427pt;}
.ls4_c00438{letter-spacing:0.304000pt;}
.ls8_c00438{letter-spacing:0.381552pt;}
.ls5_c00438{letter-spacing:0.802560pt;}
.lse_c00438{letter-spacing:0.942094pt;}
.lsc_c00438{letter-spacing:0.947213pt;}
.ls1_c00438{letter-spacing:0.997120pt;}
.ls6_c00438{letter-spacing:1.082240pt;}
.ls1e_c00438{letter-spacing:1.130880pt;}
.ls3_c00438{letter-spacing:1.136960pt;}
.ls2_c00438{letter-spacing:1.343680pt;}
.ls13_c00438{letter-spacing:1.386667pt;}
.ls9_c00438{letter-spacing:1.520000pt;}
.ls0_c00438{letter-spacing:1.554480pt;}
.ls18_c00438{letter-spacing:1.573360pt;}
.ls22_c00438{letter-spacing:1.760000pt;}
.ls15_c00438{letter-spacing:2.080027pt;}
.ls12_c00438{letter-spacing:2.106693pt;}
.lsf_c00438{letter-spacing:2.186667pt;}
.ws0_c00438{word-spacing:0.000000pt;}
._0_c00438{margin-left:-4.896000pt;}
._1_c00438{margin-left:-2.026667pt;}
._5_c00438{width:2.042880pt;}
._4_c00438{width:4.341120pt;}
._3_c00438{width:5.909760pt;}
._2_c00438{width:432.992000pt;}
.fs13_c00438{font-size:22.400000pt;}
.fs18_c00438{font-size:24.000533pt;}
.fsf_c00438{font-size:27.733333pt;}
.fs0_c00438{font-size:29.866667pt;}
.fs2_c00438{font-size:30.400000pt;}
.fs11_c00438{font-size:30.933867pt;}
.fs14_c00438{font-size:31.467200pt;}
.fs16_c00438{font-size:35.200000pt;}
.fs12_c00438{font-size:35.733333pt;}
.fs17_c00438{font-size:36.267200pt;}
.fs4_c00438{font-size:36.800533pt;}
.fs1_c00438{font-size:38.933867pt;}
.fs5_c00438{font-size:39.467200pt;}
.fs6_c00438{font-size:40.000533pt;}
.fs10_c00438{font-size:41.600533pt;}
.fsa_c00438{font-size:42.133867pt;}
.fs8_c00438{font-size:43.733333pt;}
.fs7_c00438{font-size:51.200000pt;}
.fs15_c00438{font-size:60.800000pt;}
.fs9_c00438{font-size:81.066667pt;}
.fsb_c00438{font-size:83.733333pt;}
.fse_c00438{font-size:106.240000pt;}
.fs19_c00438{font-size:112.000000pt;}
.fsc_c00438{font-size:122.133333pt;}
.fs3_c00438{font-size:128.533333pt;}
.fsd_c00438{font-size:184.000000pt;}
.y0_c00438{bottom:0.000000pt;}
.y1b_c00438{bottom:138.880000pt;}
.y14_c00438{bottom:197.453333pt;}
.y1a_c00438{bottom:198.733333pt;}
.y19_c00438{bottom:199.053333pt;}
.y13_c00438{bottom:229.120000pt;}
.yf_c00438{bottom:254.733333pt;}
.y12_c00438{bottom:257.293333pt;}
.y10_c00438{bottom:257.600000pt;}
.y11_c00438{bottom:265.933333pt;}
.yd_c00438{bottom:305.293333pt;}
.ye_c00438{bottom:307.533333pt;}
.yb_c00438{bottom:341.133333pt;}
.yc_c00438{bottom:344.333333pt;}
.ya_c00438{bottom:370.573333pt;}
.y9_c00438{bottom:371.213333pt;}
.y23_c00438{bottom:389.453333pt;}
.y8_c00438{bottom:390.093333pt;}
.y3_c00438{bottom:524.800000pt;}
.y22_c00438{bottom:526.093333pt;}
.y2_c00438{bottom:531.533333pt;}
.y21_c00438{bottom:534.400000pt;}
.y20_c00438{bottom:662.400000pt;}
.y1_c00438{bottom:928.013333pt;}
.y1f_c00438{bottom:928.960000pt;}
.y5_c00438{bottom:930.880000pt;}
.y18_c00438{bottom:931.853333pt;}
.y1d_c00438{bottom:932.173333pt;}
.y4_c00438{bottom:958.400000pt;}
.y1e_c00438{bottom:960.333333pt;}
.y7_c00438{bottom:996.493333pt;}
.y1c_c00438{bottom:998.400000pt;}
.y17_c00438{bottom:1000.333333pt;}
.y6_c00438{bottom:1007.040000pt;}
.y16_c00438{bottom:1007.360000pt;}
.y15_c00438{bottom:1007.693333pt;}
.h1a_c00438{height:23.555211pt;}
.h15_c00438{height:24.594500pt;}
.h11_c00438{height:27.218750pt;}
.h4_c00438{height:29.835938pt;}
.h13_c00438{height:30.359898pt;}
.h16_c00438{height:30.883336pt;}
.h2_c00438{height:31.150000pt;}
.h18_c00438{height:34.546875pt;}
.h14_c00438{height:35.070312pt;}
.h19_c00438{height:37.825556pt;}
.h6_c00438{height:38.381806pt;}
.h3_c00438{height:39.238037pt;}
.h7_c00438{height:39.775537pt;}
.h12_c00438{height:40.828648pt;}
.hc_c00438{height:41.352086pt;}
.h8_c00438{height:41.719306pt;}
.ha_c00438{height:42.921875pt;}
.h9_c00438{height:53.400000pt;}
.h17_c00438{height:59.671875pt;}
.h10_c00438{height:70.755840pt;}
.hb_c00438{height:79.562500pt;}
.hd_c00438{height:87.331250pt;}
.h1b_c00438{height:116.812500pt;}
.he_c00438{height:127.381250pt;}
.h5_c00438{height:134.056250pt;}
.hf_c00438{height:191.906250pt;}
.h1_c00438{height:1122.666667pt;}
.h0_c00438{height:1122.880000pt;}
.w1_c00438{width:793.333333pt;}
.w0_c00438{width:793.600000pt;}
.x0_c00438{left:0.000000pt;}
.x21_c00438{left:111.613333pt;}
.x2_c00438{left:153.213333pt;}
.x3_c00438{left:156.706667pt;}
.x1_c00438{left:158.266667pt;}
.x4_c00438{left:169.200000pt;}
.x11_c00438{left:179.733333pt;}
.x10_c00438{left:183.013333pt;}
.x5_c00438{left:186.026667pt;}
.x15_c00438{left:188.786667pt;}
.xe_c00438{left:190.600000pt;}
.x9_c00438{left:194.640000pt;}
.xd_c00438{left:195.546667pt;}
.xb_c00438{left:199.160000pt;}
.x16_c00438{left:202.453333pt;}
.x12_c00438{left:205.320000pt;}
.x17_c00438{left:222.280000pt;}
.xc_c00438{left:226.440000pt;}
.xf_c00438{left:227.440000pt;}
.x13_c00438{left:239.533333pt;}
.x14_c00438{left:244.853333pt;}
.x6_c00438{left:261.706667pt;}
.x7_c00438{left:267.586667pt;}
.xa_c00438{left:269.533333pt;}
.x8_c00438{left:295.546667pt;}
.x18_c00438{left:375.133333pt;}
.x1a_c00438{left:379.386667pt;}
.x1b_c00438{left:411.600000pt;}
.x1c_c00438{left:419.680000pt;}
.x1d_c00438{left:458.933333pt;}
.x1e_c00438{left:473.120000pt;}
.x1f_c00438{left:484.373333pt;}
.x19_c00438{left:485.733333pt;}
.x20_c00438{left:490.160000pt;}
.x22_c00438{left:599.960000pt;}
.x23_c00438{left:602.306667pt;}
.x24_c00438{left:603.280000pt;}
.x27_c00438{left:623.173333pt;}
.x29_c00438{left:642.706667pt;}
.x25_c00438{left:657.853333pt;}
.x28_c00438{left:663.613333pt;}
.x26_c00438{left:666.333333pt;}
}





/* 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_c00439 {
    display:none;
  }
  .loading-indicator_c00439.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00439 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_c00439 { 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_c00439" -> "#page-container .classname_c00439")
 */
.pf_c00439 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00439 { /* 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_c00439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00439 { /* 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_c00439 { /* 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_c00439 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00439 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00439 {overflow:visible;}
  }
}
.c_c00439 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00439 { /* 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_c00439:after { /* webkit #35443 */
  content: '';
}
.t_c00439:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00439 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 */
}
.__c00439 { /* 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_c00439 { /* info for Javascript */
  display:none;
}
.l_c00439 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00439 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00439 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00439: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_c00439 {
    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_c00439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00439.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_c00439 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00439{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00439;src:url('chunks/assets/font_166ef216f4dd5f97a8e95d77.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;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:ff2_c00439;src:url('chunks/assets/font_bc5cff6f0783a503b41791fc.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.284668;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;}
.m11_c00439{transform:matrix(0.166956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166956,0.000000,0.000000,0.250000,0,0);}
.m0_c00439{transform:matrix(0.233769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233769,0.000000,0.000000,0.250000,0,0);}
.m1_c00439{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);}
.m7_c00439{transform:matrix(0.252041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252041,0.000000,0.000000,0.250000,0,0);}
.mb_c00439{transform:matrix(0.258692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258692,0.000000,0.000000,0.250000,0,0);}
.m2_c00439{transform:matrix(0.262123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262123,0.000000,0.000000,0.250000,0,0);}
.m13_c00439{transform:matrix(0.262504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262504,0.000000,0.000000,0.250000,0,0);}
.mc_c00439{transform:matrix(0.266342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266342,0.000000,0.000000,0.250000,0,0);}
.m15_c00439{transform:matrix(0.267105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267105,0.000000,0.000000,0.250000,0,0);}
.mf_c00439{transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);}
.m3_c00439{transform:matrix(0.270974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270974,0.000000,0.000000,0.250000,0,0);}
.m6_c00439{transform:matrix(0.274319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274319,0.000000,0.000000,0.250000,0,0);}
.md_c00439{transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);}
.m5_c00439{transform:matrix(0.290022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290022,0.000000,0.000000,0.250000,0,0);}
.m10_c00439{transform:matrix(0.291693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291693,0.000000,0.000000,0.250000,0,0);}
.m4_c00439{transform:matrix(0.298895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298895,0.000000,0.000000,0.250000,0,0);}
.m12_c00439{transform:matrix(0.302711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302711,0.000000,0.000000,0.250000,0,0);}
.m8_c00439{transform:matrix(0.309051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309051,0.000000,0.000000,0.250000,0,0);}
.m9_c00439{transform:matrix(0.314629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314629,0.000000,0.000000,0.250000,0,0);}
.me_c00439{transform:matrix(0.316558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316558,0.000000,0.000000,0.250000,0,0);}
.ma_c00439{transform:matrix(0.552998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552998,0.000000,0.000000,0.250000,0,0);}
.m14_c00439{transform:matrix(0.626344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626344,0.000000,0.000000,0.250000,0,0);}
.v3_c00439{vertical-align:-125.280000px;}
.v2_c00439{vertical-align:-8.640000px;}
.v0_c00439{vertical-align:0.000000px;}
.v1_c00439{vertical-align:1.450837px;}
.ls18_c00439{letter-spacing:-1.544420px;}
.lsf_c00439{letter-spacing:-1.512000px;}
.ls19_c00439{letter-spacing:-1.197000px;}
.ls6_c00439{letter-spacing:-1.134021px;}
.ls1d_c00439{letter-spacing:-1.083300px;}
.ls16_c00439{letter-spacing:-0.977054px;}
.ls1c_c00439{letter-spacing:-0.738300px;}
.ls1b_c00439{letter-spacing:-0.089700px;}
.ls9_c00439{letter-spacing:0.000000px;}
.ls13_c00439{letter-spacing:0.327605px;}
.ls1a_c00439{letter-spacing:0.480000px;}
.ls3_c00439{letter-spacing:0.538200px;}
.lsa_c00439{letter-spacing:0.625688px;}
.ls10_c00439{letter-spacing:0.690030px;}
.ls1e_c00439{letter-spacing:0.786600px;}
.ls2_c00439{letter-spacing:0.800400px;}
.ls4_c00439{letter-spacing:0.931500px;}
.ls14_c00439{letter-spacing:0.956354px;}
.ls1_c00439{letter-spacing:0.972900px;}
.ls5_c00439{letter-spacing:1.062600px;}
.ls0_c00439{letter-spacing:1.097100px;}
.ls15_c00439{letter-spacing:1.380000px;}
.lsc_c00439{letter-spacing:1.534706px;}
.ls8_c00439{letter-spacing:1.710000px;}
.lsd_c00439{letter-spacing:1.740030px;}
.ls17_c00439{letter-spacing:1.770030px;}
.ls11_c00439{letter-spacing:1.900800px;}
.ls7_c00439{letter-spacing:2.152828px;}
.lse_c00439{letter-spacing:2.190030px;}
.ls12_c00439{letter-spacing:2.220030px;}
.lsb_c00439{letter-spacing:2.370030px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{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__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00439{word-spacing:0.000000px;}
._4_c00439{margin-left:-10.171200px;}
._5_c00439{margin-left:-1.055700px;}
._9_c00439{width:1.173000px;}
._7_c00439{width:3.429300px;}
._6_c00439{width:5.326800px;}
._8_c00439{width:6.741300px;}
._1_c00439{width:10.108800px;}
._0_c00439{width:56.880000px;}
._3_c00439{width:220.467968px;}
._2_c00439{width:488.113115px;}
.fc0_c00439{color:transparent;}
.fs18_c00439{font-size:9.600000px;}
.fse_c00439{font-size:13.800600px;}
.fs12_c00439{font-size:23.400600px;}
.fs16_c00439{font-size:25.200000px;}
.fs15_c00439{font-size:27.600000px;}
.fsf_c00439{font-size:28.800600px;}
.fs0_c00439{font-size:32.400600px;}
.fs2_c00439{font-size:34.200000px;}
.fsa_c00439{font-size:34.800600px;}
.fs17_c00439{font-size:35.400600px;}
.fs11_c00439{font-size:39.000600px;}
.fs14_c00439{font-size:41.400600px;}
.fsc_c00439{font-size:43.200000px;}
.fsb_c00439{font-size:43.800600px;}
.fs10_c00439{font-size:44.400600px;}
.fsd_c00439{font-size:45.000600px;}
.fs1_c00439{font-size:46.800600px;}
.fs6_c00439{font-size:47.400600px;}
.fs9_c00439{font-size:52.800000px;}
.fs5_c00439{font-size:57.600000px;}
.fs19_c00439{font-size:69.000000px;}
.fs4_c00439{font-size:91.200000px;}
.fs8_c00439{font-size:145.200600px;}
.fs3_c00439{font-size:145.800000px;}
.fs7_c00439{font-size:147.000000px;}
.fs13_c00439{font-size:265.200600px;}
.y0_c00439{bottom:0.000000px;}
.y1f_c00439{bottom:156.255000px;}
.y11_c00439{bottom:222.495000px;}
.y1e_c00439{bottom:224.295000px;}
.yc_c00439{bottom:261.735000px;}
.y1d_c00439{bottom:287.640000px;}
.yb_c00439{bottom:289.815000px;}
.y1c_c00439{bottom:290.175000px;}
.y8_c00439{bottom:297.375000px;}
.ya_c00439{bottom:298.815000px;}
.y7_c00439{bottom:337.335000px;}
.y9_c00439{bottom:340.560000px;}
.y6_c00439{bottom:369.375000px;}
.y5_c00439{bottom:441.360000px;}
.y1b_c00439{bottom:441.735000px;}
.y3_c00439{bottom:590.775000px;}
.y1a_c00439{bottom:591.495000px;}
.y2_c00439{bottom:598.335000px;}
.y19_c00439{bottom:600.120000px;}
.y18_c00439{bottom:1044.000000px;}
.y1_c00439{bottom:1044.360000px;}
.y16_c00439{bottom:1047.975000px;}
.y17_c00439{bottom:1048.335000px;}
.y4_c00439{bottom:1081.080000px;}
.ye_c00439{bottom:1121.400000px;}
.y15_c00439{bottom:1125.720000px;}
.yf_c00439{bottom:1126.080000px;}
.y10_c00439{bottom:1126.455000px;}
.yd_c00439{bottom:1132.935000px;}
.y12_c00439{bottom:1133.295000px;}
.y14_c00439{bottom:1134.000000px;}
.y13_c00439{bottom:1134.360000px;}
.h17_c00439{height:9.421875px;}
.hf_c00439{height:13.544534px;}
.h15_c00439{height:28.785937px;}
.h10_c00439{height:30.038126px;}
.h4_c00439{height:33.565430px;}
.h2_c00439{height:33.792813px;}
.hb_c00439{height:36.295938px;}
.h16_c00439{height:36.921720px;}
.h12_c00439{height:38.276956px;}
.hd_c00439{height:42.398438px;}
.hc_c00439{height:42.987894px;}
.h14_c00439{height:43.179532px;}
.h3_c00439{height:45.932229px;}
.h11_c00439{height:46.308438px;}
.h9_c00439{height:46.521097px;}
.he_c00439{height:46.934220px;}
.ha_c00439{height:55.068750px;}
.h18_c00439{height:67.719727px;}
.h6_c00439{height:89.507812px;}
.h8_c00439{height:142.506448px;}
.h5_c00439{height:143.094727px;}
.h7_c00439{height:144.272461px;}
.h13_c00439{height:151.315938px;}
.h1_c00439{height:1263.000000px;}
.h0_c00439{height:1263.240000px;}
.w1_c00439{width:892.500000px;}
.w0_c00439{width:892.800000px;}
.x0_c00439{left:0.000000px;}
.x23_c00439{left:131.325000px;}
.x2_c00439{left:172.005000px;}
.x3_c00439{left:176.250000px;}
.x1_c00439{left:178.095000px;}
.x4_c00439{left:190.245000px;}
.x5_c00439{left:199.230000px;}
.xc_c00439{left:204.465000px;}
.x9_c00439{left:208.785000px;}
.x8_c00439{left:214.200000px;}
.x7_c00439{left:217.935000px;}
.xd_c00439{left:219.840000px;}
.x6_c00439{left:221.580000px;}
.xe_c00439{left:242.130000px;}
.xa_c00439{left:249.000000px;}
.xb_c00439{left:250.350000px;}
.xf_c00439{left:294.465000px;}
.x10_c00439{left:301.395000px;}
.x11_c00439{left:322.500000px;}
.x12_c00439{left:333.195000px;}
.x13_c00439{left:422.415000px;}
.x16_c00439{left:427.530000px;}
.x14_c00439{left:547.170000px;}
.x17_c00439{left:558.810000px;}
.x1d_c00439{left:659.700000px;}
.x1e_c00439{left:662.910000px;}
.x21_c00439{left:668.865000px;}
.x22_c00439{left:672.030000px;}
.x18_c00439{left:673.350000px;}
.x15_c00439{left:675.675000px;}
.x1f_c00439{left:677.745000px;}
.x19_c00439{left:678.810000px;}
.x20_c00439{left:685.230000px;}
.x1b_c00439{left:746.565000px;}
.x1c_c00439{left:749.715000px;}
.x1a_c00439{left:750.720000px;}
@media print{
.v3_c00439{vertical-align:-111.360000pt;}
.v2_c00439{vertical-align:-7.680000pt;}
.v0_c00439{vertical-align:0.000000pt;}
.v1_c00439{vertical-align:1.289633pt;}
.ls18_c00439{letter-spacing:-1.372818pt;}
.lsf_c00439{letter-spacing:-1.344000pt;}
.ls19_c00439{letter-spacing:-1.064000pt;}
.ls6_c00439{letter-spacing:-1.008019pt;}
.ls1d_c00439{letter-spacing:-0.962933pt;}
.ls16_c00439{letter-spacing:-0.868493pt;}
.ls1c_c00439{letter-spacing:-0.656267pt;}
.ls1b_c00439{letter-spacing:-0.079733pt;}
.ls9_c00439{letter-spacing:0.000000pt;}
.ls13_c00439{letter-spacing:0.291204pt;}
.ls1a_c00439{letter-spacing:0.426667pt;}
.ls3_c00439{letter-spacing:0.478400pt;}
.lsa_c00439{letter-spacing:0.556167pt;}
.ls10_c00439{letter-spacing:0.613360pt;}
.ls1e_c00439{letter-spacing:0.699200pt;}
.ls2_c00439{letter-spacing:0.711467pt;}
.ls4_c00439{letter-spacing:0.828000pt;}
.ls14_c00439{letter-spacing:0.850092pt;}
.ls1_c00439{letter-spacing:0.864800pt;}
.ls5_c00439{letter-spacing:0.944533pt;}
.ls0_c00439{letter-spacing:0.975200pt;}
.ls15_c00439{letter-spacing:1.226667pt;}
.lsc_c00439{letter-spacing:1.364184pt;}
.ls8_c00439{letter-spacing:1.520000pt;}
.lsd_c00439{letter-spacing:1.546693pt;}
.ls17_c00439{letter-spacing:1.573360pt;}
.ls11_c00439{letter-spacing:1.689600pt;}
.ls7_c00439{letter-spacing:1.913625pt;}
.lse_c00439{letter-spacing:1.946693pt;}
.ls12_c00439{letter-spacing:1.973360pt;}
.lsb_c00439{letter-spacing:2.106693pt;}
.ws0_c00439{word-spacing:0.000000pt;}
._4_c00439{margin-left:-9.041067pt;}
._5_c00439{margin-left:-0.938400pt;}
._9_c00439{width:1.042667pt;}
._7_c00439{width:3.048267pt;}
._6_c00439{width:4.734933pt;}
._8_c00439{width:5.992267pt;}
._1_c00439{width:8.985600pt;}
._0_c00439{width:50.560000pt;}
._3_c00439{width:195.971527pt;}
._2_c00439{width:433.878325pt;}
.fs18_c00439{font-size:8.533333pt;}
.fse_c00439{font-size:12.267200pt;}
.fs12_c00439{font-size:20.800533pt;}
.fs16_c00439{font-size:22.400000pt;}
.fs15_c00439{font-size:24.533333pt;}
.fsf_c00439{font-size:25.600533pt;}
.fs0_c00439{font-size:28.800533pt;}
.fs2_c00439{font-size:30.400000pt;}
.fsa_c00439{font-size:30.933867pt;}
.fs17_c00439{font-size:31.467200pt;}
.fs11_c00439{font-size:34.667200pt;}
.fs14_c00439{font-size:36.800533pt;}
.fsc_c00439{font-size:38.400000pt;}
.fsb_c00439{font-size:38.933867pt;}
.fs10_c00439{font-size:39.467200pt;}
.fsd_c00439{font-size:40.000533pt;}
.fs1_c00439{font-size:41.600533pt;}
.fs6_c00439{font-size:42.133867pt;}
.fs9_c00439{font-size:46.933333pt;}
.fs5_c00439{font-size:51.200000pt;}
.fs19_c00439{font-size:61.333333pt;}
.fs4_c00439{font-size:81.066667pt;}
.fs8_c00439{font-size:129.067200pt;}
.fs3_c00439{font-size:129.600000pt;}
.fs7_c00439{font-size:130.666667pt;}
.fs13_c00439{font-size:235.733867pt;}
.y0_c00439{bottom:0.000000pt;}
.y1f_c00439{bottom:138.893333pt;}
.y11_c00439{bottom:197.773333pt;}
.y1e_c00439{bottom:199.373333pt;}
.yc_c00439{bottom:232.653333pt;}
.y1d_c00439{bottom:255.680000pt;}
.yb_c00439{bottom:257.613333pt;}
.y1c_c00439{bottom:257.933333pt;}
.y8_c00439{bottom:264.333333pt;}
.ya_c00439{bottom:265.613333pt;}
.y7_c00439{bottom:299.853333pt;}
.y9_c00439{bottom:302.720000pt;}
.y6_c00439{bottom:328.333333pt;}
.y5_c00439{bottom:392.320000pt;}
.y1b_c00439{bottom:392.653333pt;}
.y3_c00439{bottom:525.133333pt;}
.y1a_c00439{bottom:525.773333pt;}
.y2_c00439{bottom:531.853333pt;}
.y19_c00439{bottom:533.440000pt;}
.y18_c00439{bottom:928.000000pt;}
.y1_c00439{bottom:928.320000pt;}
.y16_c00439{bottom:931.533333pt;}
.y17_c00439{bottom:931.853333pt;}
.y4_c00439{bottom:960.960000pt;}
.ye_c00439{bottom:996.800000pt;}
.y15_c00439{bottom:1000.640000pt;}
.yf_c00439{bottom:1000.960000pt;}
.y10_c00439{bottom:1001.293333pt;}
.yd_c00439{bottom:1007.053333pt;}
.y12_c00439{bottom:1007.373333pt;}
.y14_c00439{bottom:1008.000000pt;}
.y13_c00439{bottom:1008.320000pt;}
.h17_c00439{height:8.375000pt;}
.hf_c00439{height:12.039586pt;}
.h15_c00439{height:25.587500pt;}
.h10_c00439{height:26.700556pt;}
.h4_c00439{height:29.835938pt;}
.h2_c00439{height:30.038056pt;}
.hb_c00439{height:32.263056pt;}
.h16_c00439{height:32.819306pt;}
.h12_c00439{height:34.023961pt;}
.hd_c00439{height:37.687500pt;}
.hc_c00439{height:38.211461pt;}
.h14_c00439{height:38.381806pt;}
.h3_c00439{height:40.828648pt;}
.h11_c00439{height:41.163056pt;}
.h9_c00439{height:41.352086pt;}
.he_c00439{height:41.719306pt;}
.ha_c00439{height:48.950000pt;}
.h18_c00439{height:60.195312pt;}
.h6_c00439{height:79.562500pt;}
.h8_c00439{height:126.672398pt;}
.h5_c00439{height:127.195312pt;}
.h7_c00439{height:128.242188pt;}
.h13_c00439{height:134.503056pt;}
.h1_c00439{height:1122.666667pt;}
.h0_c00439{height:1122.880000pt;}
.w1_c00439{width:793.333333pt;}
.w0_c00439{width:793.600000pt;}
.x0_c00439{left:0.000000pt;}
.x23_c00439{left:116.733333pt;}
.x2_c00439{left:152.893333pt;}
.x3_c00439{left:156.666667pt;}
.x1_c00439{left:158.306667pt;}
.x4_c00439{left:169.106667pt;}
.x5_c00439{left:177.093333pt;}
.xc_c00439{left:181.746667pt;}
.x9_c00439{left:185.586667pt;}
.x8_c00439{left:190.400000pt;}
.x7_c00439{left:193.720000pt;}
.xd_c00439{left:195.413333pt;}
.x6_c00439{left:196.960000pt;}
.xe_c00439{left:215.226667pt;}
.xa_c00439{left:221.333333pt;}
.xb_c00439{left:222.533333pt;}
.xf_c00439{left:261.746667pt;}
.x10_c00439{left:267.906667pt;}
.x11_c00439{left:286.666667pt;}
.x12_c00439{left:296.173333pt;}
.x13_c00439{left:375.480000pt;}
.x16_c00439{left:380.026667pt;}
.x14_c00439{left:486.373333pt;}
.x17_c00439{left:496.720000pt;}
.x1d_c00439{left:586.400000pt;}
.x1e_c00439{left:589.253333pt;}
.x21_c00439{left:594.546667pt;}
.x22_c00439{left:597.360000pt;}
.x18_c00439{left:598.533333pt;}
.x15_c00439{left:600.600000pt;}
.x1f_c00439{left:602.440000pt;}
.x19_c00439{left:603.386667pt;}
.x20_c00439{left:609.093333pt;}
.x1b_c00439{left:663.613333pt;}
.x1c_c00439{left:666.413333pt;}
.x1a_c00439{left:667.306667pt;}
}





/* 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_c00440 {
    display:none;
  }
  .loading-indicator_c00440.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00440 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_c00440 { 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_c00440" -> "#page-container .classname_c00440")
 */
.pf_c00440 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00440 { /* 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_c00440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00440 { /* 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_c00440 { /* 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_c00440 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00440 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00440 {overflow:visible;}
  }
}
.c_c00440 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00440 { /* 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_c00440:after { /* webkit #35443 */
  content: '';
}
.t_c00440:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00440 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 */
}
.__c00440 { /* 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_c00440 { /* info for Javascript */
  display:none;
}
.l_c00440 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00440 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00440 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00440: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_c00440 {
    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_c00440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00440.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_c00440 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00440{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00440;src:url('chunks/assets/font_73df99072562802ddc8edb4e.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.284668;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_c00440;src:url('chunks/assets/font_e68f065c98c66b6f7ab18cb4.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.284180;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_c00440;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;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:ff4_c00440;src:url('chunks/assets/font_1e0171949840fe0b09e768fa.woff2')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:0.666000;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;}
.mb_c00440{transform:matrix(0.139358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139358,0.000000,0.000000,0.250000,0,0);}
.m2_c00440{transform:matrix(0.236586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236586,0.000000,0.000000,0.250000,0,0);}
.ma_c00440{transform:matrix(0.237321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237321,0.000000,0.000000,0.250000,0,0);}
.m4_c00440{transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);}
.m7_c00440{transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);}
.m6_c00440{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m3_c00440{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m8_c00440{transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);}
.m1_c00440{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.m9_c00440{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.m0_c00440{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);}
.m5_c00440{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls75_c00440{letter-spacing:-2.436000px;}
.ls8b_c00440{letter-spacing:-2.415000px;}
.ls89_c00440{letter-spacing:-2.178480px;}
.ls8f_c00440{letter-spacing:-1.872240px;}
.ls87_c00440{letter-spacing:-1.691280px;}
.ls78_c00440{letter-spacing:-1.649520px;}
.ls9a_c00440{letter-spacing:-1.531200px;}
.ls86_c00440{letter-spacing:-1.426800px;}
.ls88_c00440{letter-spacing:-1.412880px;}
.ls7e_c00440{letter-spacing:-1.343280px;}
.ls93_c00440{letter-spacing:-1.273680px;}
.ls7a_c00440{letter-spacing:-1.218000px;}
.ls9d_c00440{letter-spacing:-1.169280px;}
.ls81_c00440{letter-spacing:-1.155360px;}
.ls9c_c00440{letter-spacing:-0.758640px;}
.ls97_c00440{letter-spacing:-0.702960px;}
.ls94_c00440{letter-spacing:-0.696000px;}
.ls7b_c00440{letter-spacing:-0.619440px;}
.ls80_c00440{letter-spacing:-0.452400px;}
.ls79_c00440{letter-spacing:-0.445440px;}
.ls90_c00440{letter-spacing:-0.417600px;}
.ls84_c00440{letter-spacing:-0.382800px;}
.ls83_c00440{letter-spacing:-0.361920px;}
.ls99_c00440{letter-spacing:-0.250560px;}
.ls7c_c00440{letter-spacing:-0.208800px;}
.ls8c_c00440{letter-spacing:-0.104400px;}
.ls76_c00440{letter-spacing:-0.097440px;}
.ls82_c00440{letter-spacing:-0.090480px;}
.ls7d_c00440{letter-spacing:-0.070800px;}
.ls95_c00440{letter-spacing:-0.041760px;}
.ls77_c00440{letter-spacing:-0.028320px;}
.ls8e_c00440{letter-spacing:-0.027840px;}
.ls73_c00440{letter-spacing:0.000000px;}
.ls2e_c00440{letter-spacing:0.006960px;}
.ls29_c00440{letter-spacing:0.014160px;}
.ls65_c00440{letter-spacing:0.020880px;}
.ls28_c00440{letter-spacing:0.097440px;}
.lsc_c00440{letter-spacing:0.180960px;}
.ls13_c00440{letter-spacing:0.191160px;}
.ls8d_c00440{letter-spacing:0.194880px;}
.ls9f_c00440{letter-spacing:0.201840px;}
.ls18_c00440{letter-spacing:0.222720px;}
.ls5_c00440{letter-spacing:0.226560px;}
.ls66_c00440{letter-spacing:0.229680px;}
.ls53_c00440{letter-spacing:0.264480px;}
.ls21_c00440{letter-spacing:0.271440px;}
.ls1a_c00440{letter-spacing:0.334080px;}
.lsa0_c00440{letter-spacing:0.345600px;}
.ls24_c00440{letter-spacing:0.354000px;}
.ls5e_c00440{letter-spacing:0.354960px;}
.ls25_c00440{letter-spacing:0.361920px;}
.ls12_c00440{letter-spacing:0.368160px;}
.ls3b_c00440{letter-spacing:0.382800px;}
.ls3f_c00440{letter-spacing:0.389760px;}
.lsa_c00440{letter-spacing:0.431520px;}
.ls70_c00440{letter-spacing:0.438480px;}
.ls6d_c00440{letter-spacing:0.445440px;}
.ls5b_c00440{letter-spacing:0.452400px;}
.ls30_c00440{letter-spacing:0.459360px;}
.ls1b_c00440{letter-spacing:0.494160px;}
.ls1_c00440{letter-spacing:0.538080px;}
.ls14_c00440{letter-spacing:0.542880px;}
.ls11_c00440{letter-spacing:0.545160px;}
.ls26_c00440{letter-spacing:0.549840px;}
.ls42_c00440{letter-spacing:0.563760px;}
.ls68_c00440{letter-spacing:0.570720px;}
.ls39_c00440{letter-spacing:0.584640px;}
.ls96_c00440{letter-spacing:0.598560px;}
.ls47_c00440{letter-spacing:0.647280px;}
.ls92_c00440{letter-spacing:0.661200px;}
.ls5f_c00440{letter-spacing:0.668160px;}
.ls4a_c00440{letter-spacing:0.675120px;}
.ls43_c00440{letter-spacing:0.682080px;}
.ls5a_c00440{letter-spacing:0.689040px;}
.ls3_c00440{letter-spacing:0.696000px;}
.ls3a_c00440{letter-spacing:0.702960px;}
.ls5d_c00440{letter-spacing:0.737760px;}
.ls4f_c00440{letter-spacing:0.744720px;}
.ls98_c00440{letter-spacing:0.765600px;}
.ls1d_c00440{letter-spacing:0.772560px;}
.ls10_c00440{letter-spacing:0.785880px;}
.ls1c_c00440{letter-spacing:0.793440px;}
.ls6a_c00440{letter-spacing:0.800400px;}
.ls69_c00440{letter-spacing:0.807360px;}
.ls8_c00440{letter-spacing:0.814320px;}
.ls4b_c00440{letter-spacing:0.821280px;}
.ls55_c00440{letter-spacing:0.828240px;}
.ls64_c00440{letter-spacing:0.835200px;}
.lsb_c00440{letter-spacing:0.842160px;}
.ls1e_c00440{letter-spacing:0.849120px;}
.ls31_c00440{letter-spacing:0.856080px;}
.ls6f_c00440{letter-spacing:0.863040px;}
.ls6c_c00440{letter-spacing:0.870000px;}
.ls2_c00440{letter-spacing:0.883920px;}
.ls17_c00440{letter-spacing:0.890880px;}
.ls4c_c00440{letter-spacing:0.897840px;}
.ls2f_c00440{letter-spacing:0.904800px;}
.ls1f_c00440{letter-spacing:0.932640px;}
.ls46_c00440{letter-spacing:0.939600px;}
.ls23_c00440{letter-spacing:0.946560px;}
.ls74_c00440{letter-spacing:0.954840px;}
.ls57_c00440{letter-spacing:0.967440px;}
.ls15_c00440{letter-spacing:0.988320px;}
.ls5c_c00440{letter-spacing:0.995280px;}
.ls22_c00440{letter-spacing:1.002240px;}
.ls4d_c00440{letter-spacing:1.009200px;}
.ls9e_c00440{letter-spacing:1.016160px;}
.ls3c_c00440{letter-spacing:1.030080px;}
.ls49_c00440{letter-spacing:1.037040px;}
.ls9_c00440{letter-spacing:1.044000px;}
.ls7_c00440{letter-spacing:1.057920px;}
.ls20_c00440{letter-spacing:1.064880px;}
.lsd_c00440{letter-spacing:1.071840px;}
.ls62_c00440{letter-spacing:1.078800px;}
.ls3e_c00440{letter-spacing:1.106640px;}
.ls4e_c00440{letter-spacing:1.127520px;}
.ls54_c00440{letter-spacing:1.141440px;}
.ls2a_c00440{letter-spacing:1.148400px;}
.ls63_c00440{letter-spacing:1.155360px;}
.ls36_c00440{letter-spacing:1.176240px;}
.ls51_c00440{letter-spacing:1.183200px;}
.ls37_c00440{letter-spacing:1.197120px;}
.ls48_c00440{letter-spacing:1.211040px;}
.ls16_c00440{letter-spacing:1.218000px;}
.ls59_c00440{letter-spacing:1.224960px;}
.ls32_c00440{letter-spacing:1.231920px;}
.ls35_c00440{letter-spacing:1.245840px;}
.ls67_c00440{letter-spacing:1.259760px;}
.ls41_c00440{letter-spacing:1.266720px;}
.ls40_c00440{letter-spacing:1.322400px;}
.ls2c_c00440{letter-spacing:1.350240px;}
.lse_c00440{letter-spacing:1.357200px;}
.ls2d_c00440{letter-spacing:1.364160px;}
.ls56_c00440{letter-spacing:1.378080px;}
.ls2b_c00440{letter-spacing:1.398960px;}
.ls33_c00440{letter-spacing:1.475520px;}
.ls7f_c00440{letter-spacing:1.503360px;}
.ls27_c00440{letter-spacing:1.510320px;}
.ls61_c00440{letter-spacing:1.538160px;}
.ls91_c00440{letter-spacing:1.552080px;}
.ls45_c00440{letter-spacing:1.559040px;}
.ls0_c00440{letter-spacing:1.600800px;}
.ls71_c00440{letter-spacing:1.614720px;}
.ls4_c00440{letter-spacing:1.621680px;}
.ls50_c00440{letter-spacing:1.642560px;}
.ls44_c00440{letter-spacing:1.663440px;}
.ls3d_c00440{letter-spacing:1.733040px;}
.lsf_c00440{letter-spacing:1.983600px;}
.ls72_c00440{letter-spacing:1.986000px;}
.ls38_c00440{letter-spacing:2.094960px;}
.ls9b_c00440{letter-spacing:2.164560px;}
.ls58_c00440{letter-spacing:2.185440px;}
.ls6_c00440{letter-spacing:2.324640px;}
.ls60_c00440{letter-spacing:2.366400px;}
.ls19_c00440{letter-spacing:2.387280px;}
.ls34_c00440{letter-spacing:2.442960px;}
.ls6e_c00440{letter-spacing:2.505600px;}
.ls52_c00440{letter-spacing:2.839680px;}
.ls6b_c00440{letter-spacing:2.888400px;}
.ls85_c00440{letter-spacing:3.145920px;}
.ls8a_c00440{letter-spacing:3.480000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{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__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00440{word-spacing:0.000000px;}
._1e_c00440{margin-left:-5.916000px;}
._11_c00440{margin-left:-2.669520px;}
._1a_c00440{margin-left:-1.398960px;}
._5_c00440{width:1.886160px;}
._3_c00440{width:3.633120px;}
._10_c00440{width:4.644480px;}
._4_c00440{width:5.762880px;}
._13_c00440{width:6.808560px;}
._2_c00440{width:7.832160px;}
._15_c00440{width:9.236400px;}
._12_c00440{width:10.500480px;}
._16_c00440{width:12.489120px;}
._18_c00440{width:13.500240px;}
._17_c00440{width:14.711280px;}
._14_c00440{width:17.293920px;}
._19_c00440{width:21.234960px;}
._6_c00440{width:22.564320px;}
._7_c00440{width:24.012000px;}
._8_c00440{width:25.230000px;}
._0_c00440{width:26.796000px;}
._1_c00440{width:28.478400px;}
._9_c00440{width:30.062640px;}
._c_c00440{width:33.373200px;}
._b_c00440{width:35.739600px;}
._a_c00440{width:37.432800px;}
._e_c00440{width:39.017760px;}
._1d_c00440{width:40.270560px;}
._1b_c00440{width:42.047280px;}
._1c_c00440{width:43.182960px;}
._d_c00440{width:45.258960px;}
._f_c00440{width:92.714400px;}
.fc0_c00440{color:transparent;}
.fs5_c00440{font-size:53.280000px;}
.fs7_c00440{font-size:57.600000px;}
.fs0_c00440{font-size:60.000000px;}
.fs2_c00440{font-size:65.400000px;}
.fs4_c00440{font-size:69.000000px;}
.fs1_c00440{font-size:69.600000px;}
.fs3_c00440{font-size:70.800000px;}
.fs6_c00440{font-size:73.800000px;}
.y0_c00440{bottom:0.000000px;}
.y24_c00440{bottom:105.480000px;}
.y23_c00440{bottom:214.194000px;}
.y22_c00440{bottom:245.531400px;}
.y21_c00440{bottom:276.138000px;}
.y20_c00440{bottom:306.727200px;}
.y1f_c00440{bottom:337.333800px;}
.y1e_c00440{bottom:398.895000px;}
.y1d_c00440{bottom:398.897400px;}
.y1b_c00440{bottom:430.197600px;}
.y1c_c00440{bottom:430.200000px;}
.y1a_c00440{bottom:461.535000px;}
.y19_c00440{bottom:461.542800px;}
.y17_c00440{bottom:492.475200px;}
.y18_c00440{bottom:492.480000px;}
.y16_c00440{bottom:523.447200px;}
.y15_c00440{bottom:554.053800px;}
.y13_c00440{bottom:615.613800px;}
.y14_c00440{bottom:615.615000px;}
.y12_c00440{bottom:645.855000px;}
.y11_c00440{bottom:645.862800px;}
.y10_c00440{bottom:676.800000px;}
.yf_c00440{bottom:707.400000px;}
.ye_c00440{bottom:738.020400px;}
.yd_c00440{bottom:768.979200px;}
.yc_c00440{bottom:799.568400px;}
.yb_c00440{bottom:861.502800px;}
.ya_c00440{bottom:892.449600px;}
.y9_c00440{bottom:923.056200px;}
.y8_c00440{bottom:953.280000px;}
.y6_c00440{bottom:983.891700px;}
.y7_c00440{bottom:983.895000px;}
.y4_c00440{bottom:1014.490800px;}
.y5_c00440{bottom:1014.495000px;}
.y3_c00440{bottom:1045.080000px;}
.y2_c00440{bottom:1075.695000px;}
.y1_c00440{bottom:1152.015000px;}
.h8_c00440{height:35.484480px;}
.ha_c00440{height:56.531250px;}
.h2_c00440{height:58.886719px;}
.h3_c00440{height:68.308594px;}
.h5_c00440{height:69.413358px;}
.h6_c00440{height:69.420558px;}
.h4_c00440{height:69.451758px;}
.h7_c00440{height:71.964844px;}
.h9_c00440{height:72.454664px;}
.h1_c00440{height:1263.000000px;}
.h0_c00440{height:1263.240000px;}
.w1_c00440{width:892.500000px;}
.w0_c00440{width:892.800000px;}
.x0_c00440{left:0.000000px;}
.x22_c00440{left:109.048200px;}
.x1_c00440{left:110.085000px;}
.x8_c00440{left:163.680000px;}
.x20_c00440{left:195.630000px;}
.x21_c00440{left:217.050000px;}
.x1c_c00440{left:230.160000px;}
.x1d_c00440{left:257.355000px;}
.x11_c00440{left:274.440000px;}
.xd_c00440{left:295.380000px;}
.x12_c00440{left:298.410000px;}
.xe_c00440{left:312.810000px;}
.x4_c00440{left:322.365000px;}
.x5_c00440{left:340.380000px;}
.x23_c00440{left:422.835000px;}
.x2_c00440{left:432.210000px;}
.x6_c00440{left:443.715000px;}
.x3_c00440{left:455.970000px;}
.x7_c00440{left:465.330000px;}
.x13_c00440{left:479.640000px;}
.x1e_c00440{left:485.655000px;}
.x14_c00440{left:500.955000px;}
.x9_c00440{left:519.255000px;}
.xa_c00440{left:538.680000px;}
.x17_c00440{left:546.255000px;}
.x1f_c00440{left:556.725000px;}
.x18_c00440{left:566.070000px;}
.x15_c00440{left:577.215000px;}
.x19_c00440{left:588.570000px;}
.x16_c00440{left:601.020000px;}
.x1a_c00440{left:605.640000px;}
.xb_c00440{left:613.335000px;}
.x1b_c00440{left:629.070000px;}
.xc_c00440{left:642.930000px;}
.xf_c00440{left:655.335000px;}
.x10_c00440{left:676.980000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls75_c00440{letter-spacing:-2.165333pt;}
.ls8b_c00440{letter-spacing:-2.146667pt;}
.ls89_c00440{letter-spacing:-1.936427pt;}
.ls8f_c00440{letter-spacing:-1.664213pt;}
.ls87_c00440{letter-spacing:-1.503360pt;}
.ls78_c00440{letter-spacing:-1.466240pt;}
.ls9a_c00440{letter-spacing:-1.361067pt;}
.ls86_c00440{letter-spacing:-1.268267pt;}
.ls88_c00440{letter-spacing:-1.255893pt;}
.ls7e_c00440{letter-spacing:-1.194027pt;}
.ls93_c00440{letter-spacing:-1.132160pt;}
.ls7a_c00440{letter-spacing:-1.082667pt;}
.ls9d_c00440{letter-spacing:-1.039360pt;}
.ls81_c00440{letter-spacing:-1.026987pt;}
.ls9c_c00440{letter-spacing:-0.674347pt;}
.ls97_c00440{letter-spacing:-0.624853pt;}
.ls94_c00440{letter-spacing:-0.618667pt;}
.ls7b_c00440{letter-spacing:-0.550613pt;}
.ls80_c00440{letter-spacing:-0.402133pt;}
.ls79_c00440{letter-spacing:-0.395947pt;}
.ls90_c00440{letter-spacing:-0.371200pt;}
.ls84_c00440{letter-spacing:-0.340267pt;}
.ls83_c00440{letter-spacing:-0.321707pt;}
.ls99_c00440{letter-spacing:-0.222720pt;}
.ls7c_c00440{letter-spacing:-0.185600pt;}
.ls8c_c00440{letter-spacing:-0.092800pt;}
.ls76_c00440{letter-spacing:-0.086613pt;}
.ls82_c00440{letter-spacing:-0.080427pt;}
.ls7d_c00440{letter-spacing:-0.062933pt;}
.ls95_c00440{letter-spacing:-0.037120pt;}
.ls77_c00440{letter-spacing:-0.025173pt;}
.ls8e_c00440{letter-spacing:-0.024747pt;}
.ls73_c00440{letter-spacing:0.000000pt;}
.ls2e_c00440{letter-spacing:0.006187pt;}
.ls29_c00440{letter-spacing:0.012587pt;}
.ls65_c00440{letter-spacing:0.018560pt;}
.ls28_c00440{letter-spacing:0.086613pt;}
.lsc_c00440{letter-spacing:0.160853pt;}
.ls13_c00440{letter-spacing:0.169920pt;}
.ls8d_c00440{letter-spacing:0.173227pt;}
.ls9f_c00440{letter-spacing:0.179413pt;}
.ls18_c00440{letter-spacing:0.197973pt;}
.ls5_c00440{letter-spacing:0.201387pt;}
.ls66_c00440{letter-spacing:0.204160pt;}
.ls53_c00440{letter-spacing:0.235093pt;}
.ls21_c00440{letter-spacing:0.241280pt;}
.ls1a_c00440{letter-spacing:0.296960pt;}
.lsa0_c00440{letter-spacing:0.307200pt;}
.ls24_c00440{letter-spacing:0.314667pt;}
.ls5e_c00440{letter-spacing:0.315520pt;}
.ls25_c00440{letter-spacing:0.321707pt;}
.ls12_c00440{letter-spacing:0.327253pt;}
.ls3b_c00440{letter-spacing:0.340267pt;}
.ls3f_c00440{letter-spacing:0.346453pt;}
.lsa_c00440{letter-spacing:0.383573pt;}
.ls70_c00440{letter-spacing:0.389760pt;}
.ls6d_c00440{letter-spacing:0.395947pt;}
.ls5b_c00440{letter-spacing:0.402133pt;}
.ls30_c00440{letter-spacing:0.408320pt;}
.ls1b_c00440{letter-spacing:0.439253pt;}
.ls1_c00440{letter-spacing:0.478293pt;}
.ls14_c00440{letter-spacing:0.482560pt;}
.ls11_c00440{letter-spacing:0.484587pt;}
.ls26_c00440{letter-spacing:0.488747pt;}
.ls42_c00440{letter-spacing:0.501120pt;}
.ls68_c00440{letter-spacing:0.507307pt;}
.ls39_c00440{letter-spacing:0.519680pt;}
.ls96_c00440{letter-spacing:0.532053pt;}
.ls47_c00440{letter-spacing:0.575360pt;}
.ls92_c00440{letter-spacing:0.587733pt;}
.ls5f_c00440{letter-spacing:0.593920pt;}
.ls4a_c00440{letter-spacing:0.600107pt;}
.ls43_c00440{letter-spacing:0.606293pt;}
.ls5a_c00440{letter-spacing:0.612480pt;}
.ls3_c00440{letter-spacing:0.618667pt;}
.ls3a_c00440{letter-spacing:0.624853pt;}
.ls5d_c00440{letter-spacing:0.655787pt;}
.ls4f_c00440{letter-spacing:0.661973pt;}
.ls98_c00440{letter-spacing:0.680533pt;}
.ls1d_c00440{letter-spacing:0.686720pt;}
.ls10_c00440{letter-spacing:0.698560pt;}
.ls1c_c00440{letter-spacing:0.705280pt;}
.ls6a_c00440{letter-spacing:0.711467pt;}
.ls69_c00440{letter-spacing:0.717653pt;}
.ls8_c00440{letter-spacing:0.723840pt;}
.ls4b_c00440{letter-spacing:0.730027pt;}
.ls55_c00440{letter-spacing:0.736213pt;}
.ls64_c00440{letter-spacing:0.742400pt;}
.lsb_c00440{letter-spacing:0.748587pt;}
.ls1e_c00440{letter-spacing:0.754773pt;}
.ls31_c00440{letter-spacing:0.760960pt;}
.ls6f_c00440{letter-spacing:0.767147pt;}
.ls6c_c00440{letter-spacing:0.773333pt;}
.ls2_c00440{letter-spacing:0.785707pt;}
.ls17_c00440{letter-spacing:0.791893pt;}
.ls4c_c00440{letter-spacing:0.798080pt;}
.ls2f_c00440{letter-spacing:0.804267pt;}
.ls1f_c00440{letter-spacing:0.829013pt;}
.ls46_c00440{letter-spacing:0.835200pt;}
.ls23_c00440{letter-spacing:0.841387pt;}
.ls74_c00440{letter-spacing:0.848747pt;}
.ls57_c00440{letter-spacing:0.859947pt;}
.ls15_c00440{letter-spacing:0.878507pt;}
.ls5c_c00440{letter-spacing:0.884693pt;}
.ls22_c00440{letter-spacing:0.890880pt;}
.ls4d_c00440{letter-spacing:0.897067pt;}
.ls9e_c00440{letter-spacing:0.903253pt;}
.ls3c_c00440{letter-spacing:0.915627pt;}
.ls49_c00440{letter-spacing:0.921813pt;}
.ls9_c00440{letter-spacing:0.928000pt;}
.ls7_c00440{letter-spacing:0.940373pt;}
.ls20_c00440{letter-spacing:0.946560pt;}
.lsd_c00440{letter-spacing:0.952747pt;}
.ls62_c00440{letter-spacing:0.958933pt;}
.ls3e_c00440{letter-spacing:0.983680pt;}
.ls4e_c00440{letter-spacing:1.002240pt;}
.ls54_c00440{letter-spacing:1.014613pt;}
.ls2a_c00440{letter-spacing:1.020800pt;}
.ls63_c00440{letter-spacing:1.026987pt;}
.ls36_c00440{letter-spacing:1.045547pt;}
.ls51_c00440{letter-spacing:1.051733pt;}
.ls37_c00440{letter-spacing:1.064107pt;}
.ls48_c00440{letter-spacing:1.076480pt;}
.ls16_c00440{letter-spacing:1.082667pt;}
.ls59_c00440{letter-spacing:1.088853pt;}
.ls32_c00440{letter-spacing:1.095040pt;}
.ls35_c00440{letter-spacing:1.107413pt;}
.ls67_c00440{letter-spacing:1.119787pt;}
.ls41_c00440{letter-spacing:1.125973pt;}
.ls40_c00440{letter-spacing:1.175467pt;}
.ls2c_c00440{letter-spacing:1.200213pt;}
.lse_c00440{letter-spacing:1.206400pt;}
.ls2d_c00440{letter-spacing:1.212587pt;}
.ls56_c00440{letter-spacing:1.224960pt;}
.ls2b_c00440{letter-spacing:1.243520pt;}
.ls33_c00440{letter-spacing:1.311573pt;}
.ls7f_c00440{letter-spacing:1.336320pt;}
.ls27_c00440{letter-spacing:1.342507pt;}
.ls61_c00440{letter-spacing:1.367253pt;}
.ls91_c00440{letter-spacing:1.379627pt;}
.ls45_c00440{letter-spacing:1.385813pt;}
.ls0_c00440{letter-spacing:1.422933pt;}
.ls71_c00440{letter-spacing:1.435307pt;}
.ls4_c00440{letter-spacing:1.441493pt;}
.ls50_c00440{letter-spacing:1.460053pt;}
.ls44_c00440{letter-spacing:1.478613pt;}
.ls3d_c00440{letter-spacing:1.540480pt;}
.lsf_c00440{letter-spacing:1.763200pt;}
.ls72_c00440{letter-spacing:1.765333pt;}
.ls38_c00440{letter-spacing:1.862187pt;}
.ls9b_c00440{letter-spacing:1.924053pt;}
.ls58_c00440{letter-spacing:1.942613pt;}
.ls6_c00440{letter-spacing:2.066347pt;}
.ls60_c00440{letter-spacing:2.103467pt;}
.ls19_c00440{letter-spacing:2.122027pt;}
.ls34_c00440{letter-spacing:2.171520pt;}
.ls6e_c00440{letter-spacing:2.227200pt;}
.ls52_c00440{letter-spacing:2.524160pt;}
.ls6b_c00440{letter-spacing:2.567467pt;}
.ls85_c00440{letter-spacing:2.796373pt;}
.ls8a_c00440{letter-spacing:3.093333pt;}
.ws0_c00440{word-spacing:0.000000pt;}
._1e_c00440{margin-left:-5.258667pt;}
._11_c00440{margin-left:-2.372907pt;}
._1a_c00440{margin-left:-1.243520pt;}
._5_c00440{width:1.676587pt;}
._3_c00440{width:3.229440pt;}
._10_c00440{width:4.128427pt;}
._4_c00440{width:5.122560pt;}
._13_c00440{width:6.052053pt;}
._2_c00440{width:6.961920pt;}
._15_c00440{width:8.210133pt;}
._12_c00440{width:9.333760pt;}
._16_c00440{width:11.101440pt;}
._18_c00440{width:12.000213pt;}
._17_c00440{width:13.076693pt;}
._14_c00440{width:15.372373pt;}
._19_c00440{width:18.875520pt;}
._6_c00440{width:20.057173pt;}
._7_c00440{width:21.344000pt;}
._8_c00440{width:22.426667pt;}
._0_c00440{width:23.818667pt;}
._1_c00440{width:25.314133pt;}
._9_c00440{width:26.722347pt;}
._c_c00440{width:29.665067pt;}
._b_c00440{width:31.768533pt;}
._a_c00440{width:33.273600pt;}
._e_c00440{width:34.682453pt;}
._1d_c00440{width:35.796053pt;}
._1b_c00440{width:37.375360pt;}
._1c_c00440{width:38.384853pt;}
._d_c00440{width:40.230187pt;}
._f_c00440{width:82.412800pt;}
.fs5_c00440{font-size:47.360000pt;}
.fs7_c00440{font-size:51.200000pt;}
.fs0_c00440{font-size:53.333333pt;}
.fs2_c00440{font-size:58.133333pt;}
.fs4_c00440{font-size:61.333333pt;}
.fs1_c00440{font-size:61.866667pt;}
.fs3_c00440{font-size:62.933333pt;}
.fs6_c00440{font-size:65.600000pt;}
.y0_c00440{bottom:0.000000pt;}
.y24_c00440{bottom:93.760000pt;}
.y23_c00440{bottom:190.394667pt;}
.y22_c00440{bottom:218.250133pt;}
.y21_c00440{bottom:245.456000pt;}
.y20_c00440{bottom:272.646400pt;}
.y1f_c00440{bottom:299.852267pt;}
.y1e_c00440{bottom:354.573333pt;}
.y1d_c00440{bottom:354.575467pt;}
.y1b_c00440{bottom:382.397867pt;}
.y1c_c00440{bottom:382.400000pt;}
.y1a_c00440{bottom:410.253333pt;}
.y19_c00440{bottom:410.260267pt;}
.y17_c00440{bottom:437.755733pt;}
.y18_c00440{bottom:437.760000pt;}
.y16_c00440{bottom:465.286400pt;}
.y15_c00440{bottom:492.492267pt;}
.y13_c00440{bottom:547.212267pt;}
.y14_c00440{bottom:547.213333pt;}
.y12_c00440{bottom:574.093333pt;}
.y11_c00440{bottom:574.100267pt;}
.y10_c00440{bottom:601.600000pt;}
.yf_c00440{bottom:628.800000pt;}
.ye_c00440{bottom:656.018133pt;}
.yd_c00440{bottom:683.537067pt;}
.yc_c00440{bottom:710.727467pt;}
.yb_c00440{bottom:765.780267pt;}
.ya_c00440{bottom:793.288533pt;}
.y9_c00440{bottom:820.494400pt;}
.y8_c00440{bottom:847.360000pt;}
.y6_c00440{bottom:874.570400pt;}
.y7_c00440{bottom:874.573333pt;}
.y4_c00440{bottom:901.769600pt;}
.y5_c00440{bottom:901.773333pt;}
.y3_c00440{bottom:928.960000pt;}
.y2_c00440{bottom:956.173333pt;}
.y1_c00440{bottom:1024.013333pt;}
.h8_c00440{height:31.541760pt;}
.ha_c00440{height:50.250000pt;}
.h2_c00440{height:52.343750pt;}
.h3_c00440{height:60.718750pt;}
.h5_c00440{height:61.700763pt;}
.h6_c00440{height:61.707162pt;}
.h4_c00440{height:61.734896pt;}
.h7_c00440{height:63.968750pt;}
.h9_c00440{height:64.404146pt;}
.h1_c00440{height:1122.666667pt;}
.h0_c00440{height:1122.880000pt;}
.w1_c00440{width:793.333333pt;}
.w0_c00440{width:793.600000pt;}
.x0_c00440{left:0.000000pt;}
.x22_c00440{left:96.931733pt;}
.x1_c00440{left:97.853333pt;}
.x8_c00440{left:145.493333pt;}
.x20_c00440{left:173.893333pt;}
.x21_c00440{left:192.933333pt;}
.x1c_c00440{left:204.586667pt;}
.x1d_c00440{left:228.760000pt;}
.x11_c00440{left:243.946667pt;}
.xd_c00440{left:262.560000pt;}
.x12_c00440{left:265.253333pt;}
.xe_c00440{left:278.053333pt;}
.x4_c00440{left:286.546667pt;}
.x5_c00440{left:302.560000pt;}
.x23_c00440{left:375.853333pt;}
.x2_c00440{left:384.186667pt;}
.x6_c00440{left:394.413333pt;}
.x3_c00440{left:405.306667pt;}
.x7_c00440{left:413.626667pt;}
.x13_c00440{left:426.346667pt;}
.x1e_c00440{left:431.693333pt;}
.x14_c00440{left:445.293333pt;}
.x9_c00440{left:461.560000pt;}
.xa_c00440{left:478.826667pt;}
.x17_c00440{left:485.560000pt;}
.x1f_c00440{left:494.866667pt;}
.x18_c00440{left:503.173333pt;}
.x15_c00440{left:513.080000pt;}
.x19_c00440{left:523.173333pt;}
.x16_c00440{left:534.240000pt;}
.x1a_c00440{left:538.346667pt;}
.xb_c00440{left:545.186667pt;}
.x1b_c00440{left:559.173333pt;}
.xc_c00440{left:571.493333pt;}
.xf_c00440{left:582.520000pt;}
.x10_c00440{left:601.760000pt;}
}





/* 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_c00441 {
    display:none;
  }
  .loading-indicator_c00441.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00441 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_c00441 { 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_c00441" -> "#page-container .classname_c00441")
 */
.pf_c00441 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00441 { /* 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_c00441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00441 { /* 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_c00441 { /* 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_c00441 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00441 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00441 {overflow:visible;}
  }
}
.c_c00441 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00441 { /* 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_c00441:after { /* webkit #35443 */
  content: '';
}
.t_c00441:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00441 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 */
}
.__c00441 { /* 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_c00441 { /* info for Javascript */
  display:none;
}
.l_c00441 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00441 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00441 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00441: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_c00441 {
    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_c00441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00441.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_c00441 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00441{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00441;src:url('chunks/assets/font_a831131a75dd084d9bcc8ff6.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.284668;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_c00441;src:url('chunks/assets/font_4b43554b96edc8d80db9d9d0.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.311035;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_c00441;src:url('chunks/assets/font_202f7772d7e0f0e8b385f6e5.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:0.666000;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_c00441;src:url('chunks/assets/font_8e0ce1a70169c08025474ced.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;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:ff5_c00441;src:url('chunks/assets/font_03a00428105ee178747fcf09.woff2')format("woff");}.ff5_c00441{font-family:ff5_c00441;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:ff6_c00441;src:url('chunks/assets/font_b25c3c0005ad4799980ca789.woff2')format("woff");}.ff6_c00441{font-family:ff6_c00441;line-height:1.284180;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_c00441{transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);}
.mb_c00441{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m5_c00441{transform:matrix(0.069853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069853,0.000000,0.000000,0.250000,0,0);}
.m53_c00441{transform:matrix(0.088098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088098,0.000000,0.000000,0.250000,0,0);}
.m50_c00441{transform:matrix(0.093652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093652,0.000000,0.000000,0.250000,0,0);}
.m2_c00441{transform:matrix(0.096295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096295,0.000000,0.000000,0.250000,0,0);}
.m51_c00441{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.md_c00441{transform:matrix(0.105639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105639,0.000000,0.000000,0.250000,0,0);}
.m41_c00441{transform:matrix(0.105774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105774,0.000000,0.000000,0.250000,0,0);}
.m14_c00441{transform:matrix(0.111111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111111,0.000000,0.000000,0.250000,0,0);}
.m40_c00441{transform:matrix(0.113937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113937,0.000000,0.000000,0.250000,0,0);}
.m71_c00441{transform:matrix(0.122044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122044,0.000000,0.000000,0.250000,0,0);}
.m4f_c00441{transform:matrix(0.123962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123962,0.000000,0.000000,0.250000,0,0);}
.m7_c00441{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00441{transform:matrix(0.128788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128788,0.000000,0.000000,0.250000,0,0);}
.m6c_c00441{transform:matrix(0.130157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130157,0.000000,0.000000,0.250000,0,0);}
.m78_c00441{transform:matrix(0.135867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135867,0.000000,0.000000,0.250000,0,0);}
.m30_c00441{transform:matrix(0.140396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140396,0.000000,0.000000,0.250000,0,0);}
.m8_c00441{transform:matrix(0.144102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144102,0.000000,0.000000,0.250000,0,0);}
.m29_c00441{transform:matrix(0.145372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145372,0.000000,0.000000,0.250000,0,0);}
.m39_c00441{transform:matrix(0.155040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155040,0.000000,0.000000,0.250000,0,0);}
.m1e_c00441{transform:matrix(0.157313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157313,0.000000,0.000000,0.250000,0,0);}
.m59_c00441{transform:matrix(0.157452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157452,0.000000,0.000000,0.250000,0,0);}
.m48_c00441{transform:matrix(0.166664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166664,0.000000,0.000000,0.250000,0,0);}
.m77_c00441{transform:matrix(0.167037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167037,0.000000,0.000000,0.250000,0,0);}
.m9_c00441{transform:matrix(0.168067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168067,0.000000,0.000000,0.250000,0,0);}
.m7e_c00441{transform:matrix(0.169779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169779,0.000000,0.000000,0.250000,0,0);}
.m19_c00441{transform:matrix(0.176454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176454,0.000000,0.000000,0.250000,0,0);}
.m88_c00441{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m23_c00441{transform:matrix(0.177582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177582,0.000000,0.000000,0.250000,0,0);}
.m38_c00441{transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);}
.m4a_c00441{transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);}
.m57_c00441{transform:matrix(0.187196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187196,0.000000,0.000000,0.250000,0,0);}
.m1_c00441{transform:matrix(0.187319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187319,0.000000,0.000000,0.250000,0,0);}
.mc_c00441{transform:matrix(0.188984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188984,0.000000,0.000000,0.250000,0,0);}
.m5e_c00441{transform:matrix(0.192832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192832,0.000000,0.000000,0.250000,0,0);}
.m2f_c00441{transform:matrix(0.194582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194582,0.000000,0.000000,0.250000,0,0);}
.m1c_c00441{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m4c_c00441{transform:matrix(0.197921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197921,0.000000,0.000000,0.250000,0,0);}
.m1a_c00441{transform:matrix(0.200359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200359,0.000000,0.000000,0.250000,0,0);}
.m49_c00441{transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);}
.m44_c00441{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m55_c00441{transform:matrix(0.206637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206637,0.000000,0.000000,0.250000,0,0);}
.m5f_c00441{transform:matrix(0.206707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206707,0.000000,0.000000,0.250000,0,0);}
.m2d_c00441{transform:matrix(0.207285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207285,0.000000,0.000000,0.250000,0,0);}
.m8c_c00441{transform:matrix(0.211539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211539,0.000000,0.000000,0.250000,0,0);}
.m20_c00441{transform:matrix(0.213195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213195,0.000000,0.000000,0.250000,0,0);}
.m86_c00441{transform:matrix(0.213548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213548,0.000000,0.000000,0.250000,0,0);}
.m11_c00441{transform:matrix(0.214786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214786,0.000000,0.000000,0.250000,0,0);}
.m54_c00441{transform:matrix(0.218151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218151,0.000000,0.000000,0.250000,0,0);}
.m1d_c00441{transform:matrix(0.218780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218780,0.000000,0.000000,0.250000,0,0);}
.m34_c00441{transform:matrix(0.219832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219832,0.000000,0.000000,0.250000,0,0);}
.m16_c00441{transform:matrix(0.220408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220408,0.000000,0.000000,0.250000,0,0);}
.m47_c00441{transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);}
.m61_c00441{transform:matrix(0.220802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220802,0.000000,0.000000,0.250000,0,0);}
.m6_c00441{transform:matrix(0.220876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220876,0.000000,0.000000,0.250000,0,0);}
.me_c00441{transform:matrix(0.223815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223815,0.000000,0.000000,0.250000,0,0);}
.m8a_c00441{transform:matrix(0.225754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225754,0.000000,0.000000,0.250000,0,0);}
.m26_c00441{transform:matrix(0.228091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228091,0.000000,0.000000,0.250000,0,0);}
.m7f_c00441{transform:matrix(0.228344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228344,0.000000,0.000000,0.250000,0,0);}
.m7b_c00441{transform:matrix(0.233265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233265,0.000000,0.000000,0.250000,0,0);}
.m75_c00441{transform:matrix(0.233566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233566,0.000000,0.000000,0.250000,0,0);}
.m35_c00441{transform:matrix(0.234344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234344,0.000000,0.000000,0.250000,0,0);}
.m1b_c00441{transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);}
.m83_c00441{transform:matrix(0.237559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237559,0.000000,0.000000,0.250000,0,0);}
.m12_c00441{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m5d_c00441{transform:matrix(0.237820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237820,0.000000,0.000000,0.250000,0,0);}
.m69_c00441{transform:matrix(0.238689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238689,0.000000,0.000000,0.250000,0,0);}
.m6b_c00441{transform:matrix(0.240223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240223,0.000000,0.000000,0.250000,0,0);}
.m56_c00441{transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);}
.m13_c00441{transform:matrix(0.244797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244797,0.000000,0.000000,0.250000,0,0);}
.m66_c00441{transform:matrix(0.245654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245654,0.000000,0.000000,0.250000,0,0);}
.m82_c00441{transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);}
.m8d_c00441{transform:matrix(0.247243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247243,0.000000,0.000000,0.250000,0,0);}
.m28_c00441{transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);}
.m18_c00441{transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);}
.m0_c00441{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);}
.m32_c00441{transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);}
.m2b_c00441{transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);}
.m80_c00441{transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);}
.m17_c00441{transform:matrix(0.260986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260986,0.000000,0.000000,0.250000,0,0);}
.m3f_c00441{transform:matrix(0.263515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263515,0.000000,0.000000,0.250000,0,0);}
.m27_c00441{transform:matrix(0.264838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264838,0.000000,0.000000,0.250000,0,0);}
.m4d_c00441{transform:matrix(0.265516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265516,0.000000,0.000000,0.250000,0,0);}
.m36_c00441{transform:matrix(0.268396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268396,0.000000,0.000000,0.250000,0,0);}
.m4b_c00441{transform:matrix(0.271933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271933,0.000000,0.000000,0.250000,0,0);}
.m84_c00441{transform:matrix(0.272128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272128,0.000000,0.000000,0.250000,0,0);}
.m15_c00441{transform:matrix(0.273407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273407,0.000000,0.000000,0.250000,0,0);}
.m87_c00441{transform:matrix(0.273748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273748,0.000000,0.000000,0.250000,0,0);}
.m3c_c00441{transform:matrix(0.275284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275284,0.000000,0.000000,0.250000,0,0);}
.m45_c00441{transform:matrix(0.283712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283712,0.000000,0.000000,0.250000,0,0);}
.m7c_c00441{transform:matrix(0.288211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288211,0.000000,0.000000,0.250000,0,0);}
.m37_c00441{transform:matrix(0.290053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290053,0.000000,0.000000,0.250000,0,0);}
.m8b_c00441{transform:matrix(0.290690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290690,0.000000,0.000000,0.250000,0,0);}
.m63_c00441{transform:matrix(0.292286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292286,0.000000,0.000000,0.250000,0,0);}
.m5b_c00441{transform:matrix(0.294221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294221,0.000000,0.000000,0.250000,0,0);}
.m65_c00441{transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);}
.m7d_c00441{transform:matrix(0.295795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295795,0.000000,0.000000,0.250000,0,0);}
.m2a_c00441{transform:matrix(0.296992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296992,0.000000,0.000000,0.250000,0,0);}
.ma_c00441{transform:matrix(0.297167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297167,0.000000,0.000000,0.250000,0,0);}
.m72_c00441{transform:matrix(0.297253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297253,0.000000,0.000000,0.250000,0,0);}
.m3b_c00441{transform:matrix(0.307134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307134,0.000000,0.000000,0.250000,0,0);}
.m46_c00441{transform:matrix(0.307198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307198,0.000000,0.000000,0.250000,0,0);}
.m3_c00441{transform:matrix(0.308708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308708,0.000000,0.000000,0.250000,0,0);}
.m7a_c00441{transform:matrix(0.313570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313570,0.000000,0.000000,0.250000,0,0);}
.m31_c00441{transform:matrix(0.314491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314491,0.000000,0.000000,0.250000,0,0);}
.m62_c00441{transform:matrix(0.315190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315190,0.000000,0.000000,0.250000,0,0);}
.m43_c00441{transform:matrix(0.319007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319007,0.000000,0.000000,0.250000,0,0);}
.m81_c00441{transform:matrix(0.319291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319291,0.000000,0.000000,0.250000,0,0);}
.m21_c00441{transform:matrix(0.321197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321197,0.000000,0.000000,0.250000,0,0);}
.m6d_c00441{transform:matrix(0.322739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322739,0.000000,0.000000,0.250000,0,0);}
.m52_c00441{transform:matrix(0.325191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325191,0.000000,0.000000,0.250000,0,0);}
.m3e_c00441{transform:matrix(0.326679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326679,0.000000,0.000000,0.250000,0,0);}
.m2e_c00441{transform:matrix(0.328448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328448,0.000000,0.000000,0.250000,0,0);}
.m4e_c00441{transform:matrix(0.328752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328752,0.000000,0.000000,0.250000,0,0);}
.m73_c00441{transform:matrix(0.330233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330233,0.000000,0.000000,0.250000,0,0);}
.m58_c00441{transform:matrix(0.330753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330753,0.000000,0.000000,0.250000,0,0);}
.m2c_c00441{transform:matrix(0.331642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331642,0.000000,0.000000,0.250000,0,0);}
.m70_c00441{transform:matrix(0.335910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335910,0.000000,0.000000,0.250000,0,0);}
.m64_c00441{transform:matrix(0.347072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347072,0.000000,0.000000,0.250000,0,0);}
.m6f_c00441{transform:matrix(0.348052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348052,0.000000,0.000000,0.250000,0,0);}
.m76_c00441{transform:matrix(0.349944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349944,0.000000,0.000000,0.250000,0,0);}
.m85_c00441{transform:matrix(0.352081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352081,0.000000,0.000000,0.250000,0,0);}
.m67_c00441{transform:matrix(0.358021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358021,0.000000,0.000000,0.250000,0,0);}
.m3d_c00441{transform:matrix(0.363245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363245,0.000000,0.000000,0.250000,0,0);}
.m3a_c00441{transform:matrix(0.366422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366422,0.000000,0.000000,0.250000,0,0);}
.m5c_c00441{transform:matrix(0.372192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372192,0.000000,0.000000,0.250000,0,0);}
.m1f_c00441{transform:matrix(0.372471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372471,0.000000,0.000000,0.250000,0,0);}
.m6e_c00441{transform:matrix(0.379179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379179,0.000000,0.000000,0.250000,0,0);}
.m5a_c00441{transform:matrix(0.380034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380034,0.000000,0.000000,0.250000,0,0);}
.m89_c00441{transform:matrix(0.383470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383470,0.000000,0.000000,0.250000,0,0);}
.m74_c00441{transform:matrix(0.387160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387160,0.000000,0.000000,0.250000,0,0);}
.m42_c00441{transform:matrix(0.410729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410729,0.000000,0.000000,0.250000,0,0);}
.m22_c00441{transform:matrix(0.412514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412514,0.000000,0.000000,0.250000,0,0);}
.m68_c00441{transform:matrix(0.429443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429443,0.000000,0.000000,0.250000,0,0);}
.m60_c00441{transform:matrix(0.486994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486994,0.000000,0.000000,0.250000,0,0);}
.m24_c00441{transform:matrix(0.489384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489384,0.000000,0.000000,0.250000,0,0);}
.m10_c00441{transform:matrix(0.494360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494360,0.000000,0.000000,0.250000,0,0);}
.m79_c00441{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m25_c00441{transform:matrix(0.498061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498061,0.000000,0.000000,0.250000,0,0);}
.m33_c00441{transform:matrix(0.499030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499030,0.000000,0.000000,0.250000,0,0);}
.mf_c00441{transform:matrix(0.507506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507506,0.000000,0.000000,0.250000,0,0);}
.vb_c00441{vertical-align:-27.360000px;}
.v6_c00441{vertical-align:-20.160000px;}
.vf_c00441{vertical-align:-17.280000px;}
.v3_c00441{vertical-align:-15.900000px;}
.vc_c00441{vertical-align:-14.460000px;}
.v8_c00441{vertical-align:-12.960000px;}
.vd_c00441{vertical-align:-10.137600px;}
.v7_c00441{vertical-align:-8.640000px;}
.v4_c00441{vertical-align:-4.380000px;}
.v2_c00441{vertical-align:-2.820000px;}
.v1_c00441{vertical-align:-1.382400px;}
.v0_c00441{vertical-align:0.000000px;}
.v5_c00441{vertical-align:1.440000px;}
.v9_c00441{vertical-align:2.880000px;}
.va_c00441{vertical-align:4.380000px;}
.v11_c00441{vertical-align:5.760000px;}
.ve_c00441{vertical-align:14.400000px;}
.v10_c00441{vertical-align:17.340000px;}
.ls62_c00441{letter-spacing:-5.628000px;}
.ls7b_c00441{letter-spacing:-4.788000px;}
.ls79_c00441{letter-spacing:-2.835000px;}
.ls7d_c00441{letter-spacing:-2.772000px;}
.ls83_c00441{letter-spacing:-2.751000px;}
.ls49_c00441{letter-spacing:-2.730000px;}
.ls6d_c00441{letter-spacing:-2.604000px;}
.ls60_c00441{letter-spacing:-2.488320px;}
.ls32_c00441{letter-spacing:-2.436000px;}
.ls3a_c00441{letter-spacing:-2.415000px;}
.ls4d_c00441{letter-spacing:-2.310000px;}
.ls6b_c00441{letter-spacing:-2.268000px;}
.ls69_c00441{letter-spacing:-2.184000px;}
.ls45_c00441{letter-spacing:-2.121000px;}
.ls2b_c00441{letter-spacing:-2.117880px;}
.ls82_c00441{letter-spacing:-2.058000px;}
.ls3e_c00441{letter-spacing:-2.016000px;}
.ls44_c00441{letter-spacing:-1.999800px;}
.ls52_c00441{letter-spacing:-1.932000px;}
.ls71_c00441{letter-spacing:-1.908720px;}
.ls70_c00441{letter-spacing:-1.791360px;}
.ls40_c00441{letter-spacing:-1.702860px;}
.ls2d_c00441{letter-spacing:-1.678320px;}
.ls3d_c00441{letter-spacing:-1.647360px;}
.ls65_c00441{letter-spacing:-1.636200px;}
.ls5d_c00441{letter-spacing:-1.589220px;}
.ls3c_c00441{letter-spacing:-1.575021px;}
.ls53_c00441{letter-spacing:-1.551360px;}
.ls47_c00441{letter-spacing:-1.512000px;}
.ls87_c00441{letter-spacing:-1.407000px;}
.ls77_c00441{letter-spacing:-1.365021px;}
.ls29_c00441{letter-spacing:-1.325340px;}
.ls6c_c00441{letter-spacing:-1.321080px;}
.ls38_c00441{letter-spacing:-1.218021px;}
.ls85_c00441{letter-spacing:-1.138521px;}
.ls88_c00441{letter-spacing:-1.133220px;}
.ls73_c00441{letter-spacing:-1.082880px;}
.ls7e_c00441{letter-spacing:-0.696900px;}
.ls35_c00441{letter-spacing:-0.605520px;}
.ls28_c00441{letter-spacing:-0.566100px;}
.ls5a_c00441{letter-spacing:-0.502980px;}
.ls2c_c00441{letter-spacing:-0.499500px;}
.ls33_c00441{letter-spacing:-0.452400px;}
.ls50_c00441{letter-spacing:-0.410400px;}
.ls51_c00441{letter-spacing:-0.380880px;}
.ls2a_c00441{letter-spacing:-0.379620px;}
.ls78_c00441{letter-spacing:-0.364560px;}
.ls42_c00441{letter-spacing:-0.351360px;}
.ls58_c00441{letter-spacing:-0.278760px;}
.ls4b_c00441{letter-spacing:-0.218160px;}
.ls34_c00441{letter-spacing:-0.208800px;}
.ls6f_c00441{letter-spacing:-0.207360px;}
.ls4a_c00441{letter-spacing:-0.193920px;}
.ls6a_c00441{letter-spacing:-0.169680px;}
.ls59_c00441{letter-spacing:-0.151500px;}
.ls41_c00441{letter-spacing:-0.103680px;}
.ls39_c00441{letter-spacing:-0.062701px;}
.ls30_c00441{letter-spacing:-0.046620px;}
.ls7c_c00441{letter-spacing:-0.018900px;}
.ls2e_c00441{letter-spacing:-0.013320px;}
.ls2f_c00441{letter-spacing:0.000000px;}
.ls24_c00441{letter-spacing:0.050701px;}
.lsc_c00441{letter-spacing:0.097440px;}
.ls48_c00441{letter-spacing:0.097921px;}
.ls36_c00441{letter-spacing:0.250560px;}
.ls1f_c00441{letter-spacing:0.254520px;}
.ls16_c00441{letter-spacing:0.317520px;}
.ls1d_c00441{letter-spacing:0.412080px;}
.ls22_c00441{letter-spacing:0.442380px;}
.ls1b_c00441{letter-spacing:0.448440px;}
.ls9_c00441{letter-spacing:0.542880px;}
.ls25_c00441{letter-spacing:0.557520px;}
.ls26_c00441{letter-spacing:0.575700px;}
.ls0_c00441{letter-spacing:0.586080px;}
.ls7a_c00441{letter-spacing:0.620169px;}
.ls31_c00441{letter-spacing:0.639360px;}
.ls3_c00441{letter-spacing:0.699300px;}
.ls7_c00441{letter-spacing:0.849120px;}
.ls20_c00441{letter-spacing:0.891017px;}
.ls37_c00441{letter-spacing:0.900000px;}
.ls4_c00441{letter-spacing:0.945720px;}
.lse_c00441{letter-spacing:0.981360px;}
.ls84_c00441{letter-spacing:0.984960px;}
.ls5e_c00441{letter-spacing:0.991455px;}
.ls66_c00441{letter-spacing:1.020780px;}
.lsd_c00441{letter-spacing:1.057920px;}
.ls17_c00441{letter-spacing:1.088640px;}
.ls72_c00441{letter-spacing:1.140030px;}
.lsf_c00441{letter-spacing:1.190160px;}
.ls3f_c00441{letter-spacing:1.230000px;}
.ls6_c00441{letter-spacing:1.231920px;}
.ls54_c00441{letter-spacing:1.260000px;}
.ls57_c00441{letter-spacing:1.266540px;}
.ls5_c00441{letter-spacing:1.343280px;}
.ls8_c00441{letter-spacing:1.378080px;}
.ls1a_c00441{letter-spacing:1.393800px;}
.ls80_c00441{letter-spacing:1.470030px;}
.ls23_c00441{letter-spacing:1.514880px;}
.ls75_c00441{letter-spacing:1.532160px;}
.ls4e_c00441{letter-spacing:1.560000px;}
.ls56_c00441{letter-spacing:1.581660px;}
.ls64_c00441{letter-spacing:1.620030px;}
.ls3b_c00441{letter-spacing:1.650030px;}
.ls81_c00441{letter-spacing:1.710000px;}
.lsa_c00441{letter-spacing:1.712160px;}
.ls13_c00441{letter-spacing:1.745280px;}
.ls21_c00441{letter-spacing:1.762560px;}
.ls1e_c00441{letter-spacing:1.793760px;}
.ls5b_c00441{letter-spacing:1.830000px;}
.ls12_c00441{letter-spacing:1.840320px;}
.ls67_c00441{letter-spacing:1.860000px;}
.ls7f_c00441{letter-spacing:1.920030px;}
.ls43_c00441{letter-spacing:1.950030px;}
.ls1c_c00441{letter-spacing:1.981620px;}
.ls55_c00441{letter-spacing:1.987680px;}
.ls86_c00441{letter-spacing:2.010000px;}
.ls5f_c00441{letter-spacing:2.040030px;}
.ls14_c00441{letter-spacing:2.090880px;}
.ls74_c00441{letter-spacing:2.130000px;}
.ls2_c00441{letter-spacing:2.137860px;}
.ls46_c00441{letter-spacing:2.160000px;}
.ls15_c00441{letter-spacing:2.180069px;}
.ls68_c00441{letter-spacing:2.250030px;}
.lsb_c00441{letter-spacing:2.366400px;}
.ls4f_c00441{letter-spacing:2.370030px;}
.ls1_c00441{letter-spacing:2.390940px;}
.ls5c_c00441{letter-spacing:2.430000px;}
.ls18_c00441{letter-spacing:2.528640px;}
.ls19_c00441{letter-spacing:2.799720px;}
.ls76_c00441{letter-spacing:2.880000px;}
.ls27_c00441{letter-spacing:2.898720px;}
.ls61_c00441{letter-spacing:3.030000px;}
.ls6e_c00441{letter-spacing:3.780000px;}
.ls4c_c00441{letter-spacing:3.900000px;}
.ls63_c00441{letter-spacing:4.110000px;}
.ls10_c00441{letter-spacing:5.715076px;}
.ls11_c00441{letter-spacing:18.964800px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{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__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00441{word-spacing:0.000000px;}
._1a_c00441{margin-left:-17.376600px;}
._38_c00441{margin-left:-14.247000px;}
._15_c00441{margin-left:-11.741760px;}
._f_c00441{margin-left:-9.332400px;}
._1b_c00441{margin-left:-8.190720px;}
._21_c00441{margin-left:-2.699040px;}
._5_c00441{width:1.545120px;}
._2_c00441{width:3.609720px;}
._3_c00441{width:4.948380px;}
._7_c00441{width:6.340200px;}
._8_c00441{width:7.823400px;}
._4_c00441{width:9.044280px;}
._6_c00441{width:10.149840px;}
._1_c00441{width:12.893760px;}
._0_c00441{width:14.052600px;}
._23_c00441{width:18.043440px;}
._37_c00441{width:23.426880px;}
._25_c00441{width:25.188480px;}
._24_c00441{width:27.031680px;}
._11_c00441{width:29.094720px;}
._10_c00441{width:34.071600px;}
._40_c00441{width:35.760240px;}
._52_c00441{width:39.540000px;}
._2d_c00441{width:51.369600px;}
._9_c00441{width:54.892800px;}
._d_c00441{width:56.648400px;}
._b_c00441{width:58.003200px;}
._c_c00441{width:60.019200px;}
._a_c00441{width:61.632000px;}
._e_c00441{width:63.480000px;}
._28_c00441{width:64.627200px;}
._27_c00441{width:66.870000px;}
._22_c00441{width:83.708685px;}
._12_c00441{width:138.833280px;}
._13_c00441{width:144.320400px;}
._26_c00441{width:148.305600px;}
._43_c00441{width:156.787200px;}
._53_c00441{width:160.070400px;}
._17_c00441{width:161.280000px;}
._16_c00441{width:162.720000px;}
._20_c00441{width:165.427200px;}
._49_c00441{width:171.396549px;}
._47_c00441{width:227.774640px;}
._41_c00441{width:244.255200px;}
._1f_c00441{width:260.812800px;}
._29_c00441{width:262.994400px;}
._2a_c00441{width:265.075200px;}
._1d_c00441{width:267.724800px;}
._2e_c00441{width:269.107200px;}
._3c_c00441{width:270.578400px;}
._51_c00441{width:331.120300px;}
._4b_c00441{width:343.957200px;}
._44_c00441{width:361.634400px;}
._46_c00441{width:364.492800px;}
._2b_c00441{width:367.200000px;}
._19_c00441{width:371.347200px;}
._45_c00441{width:439.514880px;}
._18_c00441{width:465.292800px;}
._3d_c00441{width:469.742400px;}
._1e_c00441{width:473.587200px;}
._39_c00441{width:530.700960px;}
._4d_c00441{width:574.387200px;}
._30_c00441{width:643.360440px;}
._50_c00441{width:673.920000px;}
._2c_c00441{width:692.973600px;}
._4e_c00441{width:774.720000px;}
._34_c00441{width:789.420720px;}
._4c_c00441{width:879.840000px;}
._31_c00441{width:984.960000px;}
._4f_c00441{width:1084.320000px;}
._3e_c00441{width:1170.240000px;}
._2f_c00441{width:1188.000000px;}
._36_c00441{width:1404.953760px;}
._32_c00441{width:1423.602960px;}
._3a_c00441{width:1428.111360px;}
._3f_c00441{width:1495.008000px;}
._1c_c00441{width:1619.612160px;}
._48_c00441{width:1660.079700px;}
._42_c00441{width:1905.120000px;}
._35_c00441{width:1919.935260px;}
._4a_c00441{width:1967.476320px;}
._14_c00441{width:2071.144800px;}
._3b_c00441{width:2200.222320px;}
._33_c00441{width:2461.572600px;}
.fc0_c00441{color:transparent;}
.fs2b_c00441{font-size:10.080000px;}
.fs5_c00441{font-size:18.000000px;}
.fs34_c00441{font-size:22.800600px;}
.fs9_c00441{font-size:23.040000px;}
.fs21_c00441{font-size:23.400600px;}
.fs6_c00441{font-size:24.480000px;}
.fs11_c00441{font-size:24.600000px;}
.fs20_c00441{font-size:25.200000px;}
.fs8_c00441{font-size:27.600000px;}
.fs23_c00441{font-size:28.800000px;}
.fs3f_c00441{font-size:28.800600px;}
.fs3c_c00441{font-size:29.400600px;}
.fs18_c00441{font-size:30.240600px;}
.fs1a_c00441{font-size:31.200000px;}
.fs27_c00441{font-size:32.400600px;}
.fsa_c00441{font-size:33.000600px;}
.fs3b_c00441{font-size:33.120600px;}
.fs3d_c00441{font-size:34.200000px;}
.fs29_c00441{font-size:34.560000px;}
.fs7_c00441{font-size:34.800600px;}
.fs25_c00441{font-size:36.600000px;}
.fs2e_c00441{font-size:37.200000px;}
.fs3a_c00441{font-size:38.400600px;}
.fs4_c00441{font-size:38.880600px;}
.fs14_c00441{font-size:39.000600px;}
.fs40_c00441{font-size:40.200000px;}
.fs15_c00441{font-size:40.800600px;}
.fs35_c00441{font-size:42.600000px;}
.fsd_c00441{font-size:43.200000px;}
.fs1b_c00441{font-size:44.400600px;}
.fse_c00441{font-size:45.000600px;}
.fs24_c00441{font-size:46.200000px;}
.fs1d_c00441{font-size:47.400600px;}
.fs38_c00441{font-size:47.520000px;}
.fs26_c00441{font-size:48.600000px;}
.fs2f_c00441{font-size:50.400000px;}
.fs13_c00441{font-size:51.840000px;}
.fs1e_c00441{font-size:55.200000px;}
.fs22_c00441{font-size:56.400000px;}
.fsf_c00441{font-size:57.600000px;}
.fs1f_c00441{font-size:58.200000px;}
.fs36_c00441{font-size:58.800000px;}
.fs0_c00441{font-size:59.400000px;}
.fs10_c00441{font-size:60.600000px;}
.fs30_c00441{font-size:62.400000px;}
.fs1c_c00441{font-size:63.000000px;}
.fs2d_c00441{font-size:64.200000px;}
.fs31_c00441{font-size:64.800000px;}
.fs19_c00441{font-size:66.000000px;}
.fs1_c00441{font-size:66.600000px;}
.fsc_c00441{font-size:69.000000px;}
.fs3_c00441{font-size:69.600000px;}
.fs2_c00441{font-size:71.400000px;}
.fs32_c00441{font-size:74.400000px;}
.fs12_c00441{font-size:75.600000px;}
.fs28_c00441{font-size:76.800000px;}
.fs16_c00441{font-size:78.000000px;}
.fs3e_c00441{font-size:78.600000px;}
.fs33_c00441{font-size:79.200000px;}
.fs17_c00441{font-size:80.400000px;}
.fs37_c00441{font-size:81.000000px;}
.fsb_c00441{font-size:81.600000px;}
.fs2c_c00441{font-size:82.200000px;}
.fs39_c00441{font-size:136.800000px;}
.fs2a_c00441{font-size:160.800000px;}
.y0_c00441{bottom:0.000000px;}
.y91_c00441{bottom:101.520000px;}
.y8c_c00441{bottom:147.960000px;}
.y8d_c00441{bottom:148.680000px;}
.y8e_c00441{bottom:149.040000px;}
.y8f_c00441{bottom:149.415000px;}
.y90_c00441{bottom:149.760000px;}
.y8b_c00441{bottom:154.455000px;}
.y89_c00441{bottom:163.455000px;}
.y8a_c00441{bottom:166.680000px;}
.y88_c00441{bottom:171.000000px;}
.y86_c00441{bottom:184.320000px;}
.y87_c00441{bottom:189.360000px;}
.y84_c00441{bottom:201.615000px;}
.y85_c00441{bottom:202.335000px;}
.y82_c00441{bottom:218.175000px;}
.y83_c00441{bottom:220.335000px;}
.y81_c00441{bottom:221.055000px;}
.y7f_c00441{bottom:236.175000px;}
.y80_c00441{bottom:238.695000px;}
.y7d_c00441{bottom:243.720000px;}
.y7e_c00441{bottom:244.095000px;}
.y7c_c00441{bottom:256.695000px;}
.y7b_c00441{bottom:258.135000px;}
.y79_c00441{bottom:258.840000px;}
.y7a_c00441{bottom:260.295000px;}
.y78_c00441{bottom:272.895000px;}
.y77_c00441{bottom:290.535000px;}
.y75_c00441{bottom:306.720000px;}
.y76_c00441{bottom:311.055000px;}
.y74_c00441{bottom:314.655000px;}
.y73_c00441{bottom:317.175000px;}
.y6f_c00441{bottom:326.175000px;}
.y71_c00441{bottom:327.615000px;}
.y72_c00441{bottom:327.975000px;}
.y70_c00441{bottom:331.935000px;}
.y6e_c00441{bottom:342.720000px;}
.y6d_c00441{bottom:345.255000px;}
.y6a_c00441{bottom:363.255000px;}
.y6c_c00441{bottom:365.760000px;}
.y6b_c00441{bottom:369.375000px;}
.y66_c00441{bottom:379.800000px;}
.y68_c00441{bottom:382.695000px;}
.y69_c00441{bottom:386.295000px;}
.y67_c00441{bottom:387.375000px;}
.y61_c00441{bottom:399.240000px;}
.y65_c00441{bottom:400.320000px;}
.y63_c00441{bottom:404.295000px;}
.y64_c00441{bottom:405.375000px;}
.y62_c00441{bottom:407.535000px;}
.y5d_c00441{bottom:414.720000px;}
.y5c_c00441{bottom:415.095000px;}
.y5f_c00441{bottom:415.455000px;}
.y59_c00441{bottom:415.800000px;}
.y60_c00441{bottom:418.320000px;}
.y5e_c00441{bottom:418.695000px;}
.y5a_c00441{bottom:423.375000px;}
.y5b_c00441{bottom:423.720000px;}
.y56_c00441{bottom:435.240000px;}
.y58_c00441{bottom:436.320000px;}
.y57_c00441{bottom:436.695000px;}
.y55_c00441{bottom:454.320000px;}
.y54_c00441{bottom:455.775000px;}
.y53_c00441{bottom:471.975000px;}
.y52_c00441{bottom:473.055000px;}
.y51_c00441{bottom:489.615000px;}
.y50_c00441{bottom:494.295000px;}
.y4f_c00441{bottom:504.015000px;}
.y4d_c00441{bottom:508.320000px;}
.y4c_c00441{bottom:510.855000px;}
.y4e_c00441{bottom:511.935000px;}
.y4b_c00441{bottom:525.615000px;}
.y49_c00441{bottom:528.855000px;}
.y48_c00441{bottom:529.200000px;}
.y4a_c00441{bottom:531.375000px;}
.y46_c00441{bottom:541.455000px;}
.y47_c00441{bottom:542.535000px;}
.y45_c00441{bottom:545.775000px;}
.y44_c00441{bottom:557.295000px;}
.y41_c00441{bottom:563.400000px;}
.y43_c00441{bottom:565.935000px;}
.y42_c00441{bottom:567.720000px;}
.y3e_c00441{bottom:577.455000px;}
.y3f_c00441{bottom:577.800000px;}
.y40_c00441{bottom:578.895000px;}
.y3d_c00441{bottom:582.855000px;}
.y3c_c00441{bottom:595.800000px;}
.y3b_c00441{bottom:598.695000px;}
.y3a_c00441{bottom:614.895000px;}
.y38_c00441{bottom:632.175000px;}
.y39_c00441{bottom:636.855000px;}
.y37_c00441{bottom:650.175000px;}
.y36_c00441{bottom:653.775000px;}
.y35_c00441{bottom:667.455000px;}
.y33_c00441{bottom:684.015000px;}
.y34_c00441{bottom:685.455000px;}
.y32_c00441{bottom:704.175000px;}
.y31_c00441{bottom:721.800000px;}
.y2f_c00441{bottom:738.720000px;}
.y30_c00441{bottom:739.800000px;}
.y2e_c00441{bottom:757.095000px;}
.y2d_c00441{bottom:757.800000px;}
.y2c_c00441{bottom:775.815000px;}
.y2b_c00441{bottom:778.695000px;}
.y2a_c00441{bottom:793.440000px;}
.y29_c00441{bottom:795.600000px;}
.y27_c00441{bottom:795.975000px;}
.y28_c00441{bottom:800.280000px;}
.y25_c00441{bottom:811.080000px;}
.y26_c00441{bottom:811.440000px;}
.y24_c00441{bottom:811.815000px;}
.y23_c00441{bottom:813.240000px;}
.y22_c00441{bottom:814.695000px;}
.y20_c00441{bottom:825.135000px;}
.y21_c00441{bottom:828.015000px;}
.y1f_c00441{bottom:829.440000px;}
.y1e_c00441{bottom:833.055000px;}
.y1d_c00441{bottom:847.440000px;}
.y1c_c00441{bottom:849.240000px;}
.y1b_c00441{bottom:861.135000px;}
.y1a_c00441{bottom:865.440000px;}
.y19_c00441{bottom:880.200000px;}
.y18_c00441{bottom:883.440000px;}
.y17_c00441{bottom:886.695000px;}
.y16_c00441{bottom:900.015000px;}
.y15_c00441{bottom:901.815000px;}
.y14_c00441{bottom:916.560000px;}
.y12_c00441{bottom:918.015000px;}
.y13_c00441{bottom:918.375000px;}
.y11_c00441{bottom:918.720000px;}
.y10_c00441{bottom:920.175000px;}
.ye_c00441{bottom:921.240000px;}
.yf_c00441{bottom:926.280000px;}
.yd_c00441{bottom:950.055000px;}
.yc_c00441{bottom:950.400000px;}
.yb_c00441{bottom:968.055000px;}
.ya_c00441{bottom:977.055000px;}
.y9_c00441{bottom:982.440000px;}
.y5_c00441{bottom:984.240000px;}
.y7_c00441{bottom:987.855000px;}
.y6_c00441{bottom:988.560000px;}
.y8_c00441{bottom:991.440000px;}
.y4_c00441{bottom:1010.532000px;}
.y3_c00441{bottom:1042.200000px;}
.y2_c00441{bottom:1074.600000px;}
.y1_c00441{bottom:1152.375000px;}
.h34_c00441{height:6.713280px;}
.ha_c00441{height:15.344640px;}
.h7_c00441{height:16.303680px;}
.h6_c00441{height:17.666016px;}
.h2b_c00441{height:19.180800px;}
.h1e_c00441{height:20.140240px;}
.h50_c00441{height:22.058320px;}
.h43_c00441{height:22.377542px;}
.h32_c00441{height:23.016960px;}
.h45_c00441{height:23.780313px;}
.h13_c00441{height:24.143555px;}
.h5_c00441{height:25.894480px;}
.h28_c00441{height:26.282813px;}
.he_c00441{height:28.771200px;}
.h9_c00441{height:28.785937px;}
.h51_c00441{height:28.855081px;}
.h22_c00441{height:30.621094px;}
.h48_c00441{height:31.648320px;}
.h36_c00441{height:31.799417px;}
.h56_c00441{height:32.372171px;}
.h39_c00441{height:33.566400px;}
.h8_c00441{height:34.154886px;}
.hb_c00441{height:34.418595px;}
.h17_c00441{height:34.525440px;}
.h52_c00441{height:35.669531px;}
.h2d_c00441{height:35.920898px;}
.h4f_c00441{height:37.688089px;}
.h4e_c00441{height:38.257913px;}
.h38_c00441{height:38.798438px;}
.h4a_c00441{height:39.251250px;}
.h57_c00441{height:39.434473px;}
.h1b_c00441{height:40.023635px;}
.h31_c00441{height:40.043558px;}
.h18_c00441{height:40.676407px;}
.h44_c00441{height:41.809570px;}
.h19_c00441{height:42.377344px;}
.h1a_c00441{height:42.398438px;}
.hf_c00441{height:46.934220px;}
.h2e_c00441{height:47.674512px;}
.h2c_c00441{height:48.185156px;}
.h25_c00441{height:49.437345px;}
.h3a_c00441{height:50.688281px;}
.h11_c00441{height:56.531250px;}
.h10_c00441{height:56.917852px;}
.h24_c00441{height:57.571055px;}
.h26_c00441{height:57.571875px;}
.h53_c00441{height:57.680273px;}
.h20_c00441{height:57.971250px;}
.h2_c00441{height:58.297852px;}
.h23_c00441{height:58.688438px;}
.h2a_c00441{height:58.823438px;}
.h55_c00441{height:59.411250px;}
.h12_c00441{height:59.445996px;}
.h14_c00441{height:59.475586px;}
.h15_c00441{height:60.075000px;}
.h27_c00441{height:60.700781px;}
.h46_c00441{height:60.851250px;}
.h2f_c00441{height:60.911250px;}
.h3b_c00441{height:61.242188px;}
.h41_c00441{height:61.830469px;}
.h4d_c00441{height:62.291250px;}
.h16_c00441{height:62.948437px;}
.h37_c00441{height:63.008789px;}
.h3d_c00441{height:63.566016px;}
.h3c_c00441{height:64.448437px;}
.h21_c00441{height:64.743164px;}
.h59_c00441{height:64.830469px;}
.h30_c00441{height:65.707031px;}
.h29_c00441{height:65.888438px;}
.h4_c00441{height:68.308594px;}
.h58_c00441{height:68.835938px;}
.h40_c00441{height:70.931250px;}
.h3_c00441{height:71.957813px;}
.hd_c00441{height:71.964844px;}
.h42_c00441{height:72.590625px;}
.h3e_c00441{height:73.019531px;}
.h1c_c00441{height:76.552734px;}
.h54_c00441{height:77.103223px;}
.h3f_c00441{height:78.848437px;}
.h1d_c00441{height:78.868945px;}
.h4b_c00441{height:79.171055px;}
.h47_c00441{height:79.497070px;}
.h1f_c00441{height:81.351562px;}
.h4c_c00441{height:82.603125px;}
.hc_c00441{height:85.106250px;}
.h35_c00441{height:85.732031px;}
.h49_c00441{height:142.678125px;}
.h33_c00441{height:167.709375px;}
.h1_c00441{height:1263.000000px;}
.h0_c00441{height:1263.240000px;}
.w1_c00441{width:892.500000px;}
.w0_c00441{width:892.800000px;}
.x0_c00441{left:0.000000px;}
.x3d_c00441{left:58.125000px;}
.x5_c00441{left:59.415000px;}
.x70_c00441{left:60.615000px;}
.x65_c00441{left:61.950000px;}
.x3e_c00441{left:63.060000px;}
.x22_c00441{left:64.095000px;}
.x2c_c00441{left:65.340000px;}
.x2_c00441{left:66.420000px;}
.x76_c00441{left:71.400000px;}
.x54_c00441{left:73.575000px;}
.x51_c00441{left:78.330000px;}
.x6b_c00441{left:82.575000px;}
.x37_c00441{left:86.235000px;}
.x19_c00441{left:89.385000px;}
.x47_c00441{left:91.815000px;}
.x66_c00441{left:93.075000px;}
.x4b_c00441{left:94.125000px;}
.x30_c00441{left:96.030000px;}
.x53_c00441{left:97.680000px;}
.x67_c00441{left:100.620000px;}
.x38_c00441{left:103.200000px;}
.x31_c00441{left:106.485000px;}
.x1a_c00441{left:108.300000px;}
.x5f_c00441{left:109.740000px;}
.x1_c00441{left:113.685000px;}
.x6e_c00441{left:115.485000px;}
.x41_c00441{left:120.870000px;}
.x3c_c00441{left:122.835000px;}
.x39_c00441{left:124.815000px;}
.x24_c00441{left:125.880000px;}
.x6c_c00441{left:126.960000px;}
.x4c_c00441{left:128.220000px;}
.x43_c00441{left:130.770000px;}
.x55_c00441{left:132.135000px;}
.x4d_c00441{left:136.905000px;}
.xf_c00441{left:140.085000px;}
.x42_c00441{left:141.270000px;}
.x25_c00441{left:143.175000px;}
.x1b_c00441{left:145.410000px;}
.x56_c00441{left:146.880000px;}
.x23_c00441{left:150.795000px;}
.x60_c00441{left:152.070000px;}
.x44_c00441{left:153.150000px;}
.x29_c00441{left:154.905000px;}
.x3a_c00441{left:156.405000px;}
.x4e_c00441{left:158.910000px;}
.x68_c00441{left:159.930000px;}
.x26_c00441{left:163.335000px;}
.x6_c00441{left:164.820000px;}
.x35_c00441{left:167.175000px;}
.x2a_c00441{left:169.830000px;}
.x7_c00441{left:171.000000px;}
.x3_c00441{left:173.085000px;}
.x48_c00441{left:174.510000px;}
.x13_c00441{left:176.220000px;}
.x8_c00441{left:177.840000px;}
.x14_c00441{left:181.935000px;}
.x75_c00441{left:185.475000px;}
.x71_c00441{left:187.095000px;}
.x6d_c00441{left:188.745000px;}
.x9_c00441{left:190.965000px;}
.x15_c00441{left:193.920000px;}
.xa_c00441{left:201.060000px;}
.x4_c00441{left:203.190000px;}
.x61_c00441{left:208.095000px;}
.x58_c00441{left:211.575000px;}
.x72_c00441{left:213.750000px;}
.x49_c00441{left:217.440000px;}
.x59_c00441{left:219.645000px;}
.x62_c00441{left:221.310000px;}
.x5b_c00441{left:250.875000px;}
.x27_c00441{left:256.605000px;}
.x2d_c00441{left:259.140000px;}
.x16_c00441{left:261.225000px;}
.x5c_c00441{left:277.575000px;}
.x69_c00441{left:278.895000px;}
.x1c_c00441{left:286.785000px;}
.x6a_c00441{left:304.560000px;}
.x74_c00441{left:308.745000px;}
.x52_c00441{left:310.185000px;}
.x5a_c00441{left:334.635000px;}
.x28_c00441{left:337.905000px;}
.x77_c00441{left:358.500000px;}
.x5d_c00441{left:360.465000px;}
.x32_c00441{left:362.370000px;}
.x63_c00441{left:381.045000px;}
.x1d_c00441{left:382.920000px;}
.x64_c00441{left:412.425000px;}
.x1e_c00441{left:414.555000px;}
.x7d_c00441{left:424.980000px;}
.x33_c00441{left:466.110000px;}
.x34_c00441{left:490.950000px;}
.xb_c00441{left:506.175000px;}
.xc_c00441{left:510.435000px;}
.x17_c00441{left:517.950000px;}
.xd_c00441{left:530.655000px;}
.x78_c00441{left:532.350000px;}
.x10_c00441{left:537.630000px;}
.x6f_c00441{left:539.505000px;}
.x36_c00441{left:541.965000px;}
.x18_c00441{left:543.465000px;}
.x11_c00441{left:545.865000px;}
.x12_c00441{left:551.625000px;}
.x79_c00441{left:558.525000px;}
.xe_c00441{left:560.325000px;}
.x1f_c00441{left:568.350000px;}
.x45_c00441{left:585.945000px;}
.x7a_c00441{left:589.530000px;}
.x46_c00441{left:618.345000px;}
.x3f_c00441{left:639.630000px;}
.x7b_c00441{left:660.765000px;}
.x4f_c00441{left:662.265000px;}
.x3b_c00441{left:670.935000px;}
.x5e_c00441{left:689.040000px;}
.x7c_c00441{left:691.725000px;}
.x50_c00441{left:695.025000px;}
.x4a_c00441{left:713.880000px;}
.x2e_c00441{left:716.340000px;}
.x2b_c00441{left:718.200000px;}
.x57_c00441{left:720.225000px;}
.x40_c00441{left:742.905000px;}
.x73_c00441{left:743.985000px;}
.x2f_c00441{left:747.630000px;}
.x20_c00441{left:767.400000px;}
.x21_c00441{left:793.650000px;}
@media print{
.vb_c00441{vertical-align:-24.320000pt;}
.v6_c00441{vertical-align:-17.920000pt;}
.vf_c00441{vertical-align:-15.360000pt;}
.v3_c00441{vertical-align:-14.133333pt;}
.vc_c00441{vertical-align:-12.853333pt;}
.v8_c00441{vertical-align:-11.520000pt;}
.vd_c00441{vertical-align:-9.011200pt;}
.v7_c00441{vertical-align:-7.680000pt;}
.v4_c00441{vertical-align:-3.893333pt;}
.v2_c00441{vertical-align:-2.506667pt;}
.v1_c00441{vertical-align:-1.228800pt;}
.v0_c00441{vertical-align:0.000000pt;}
.v5_c00441{vertical-align:1.280000pt;}
.v9_c00441{vertical-align:2.560000pt;}
.va_c00441{vertical-align:3.893333pt;}
.v11_c00441{vertical-align:5.120000pt;}
.ve_c00441{vertical-align:12.800000pt;}
.v10_c00441{vertical-align:15.413333pt;}
.ls62_c00441{letter-spacing:-5.002667pt;}
.ls7b_c00441{letter-spacing:-4.256000pt;}
.ls79_c00441{letter-spacing:-2.520000pt;}
.ls7d_c00441{letter-spacing:-2.464000pt;}
.ls83_c00441{letter-spacing:-2.445333pt;}
.ls49_c00441{letter-spacing:-2.426667pt;}
.ls6d_c00441{letter-spacing:-2.314667pt;}
.ls60_c00441{letter-spacing:-2.211840pt;}
.ls32_c00441{letter-spacing:-2.165333pt;}
.ls3a_c00441{letter-spacing:-2.146667pt;}
.ls4d_c00441{letter-spacing:-2.053333pt;}
.ls6b_c00441{letter-spacing:-2.016000pt;}
.ls69_c00441{letter-spacing:-1.941333pt;}
.ls45_c00441{letter-spacing:-1.885333pt;}
.ls2b_c00441{letter-spacing:-1.882560pt;}
.ls82_c00441{letter-spacing:-1.829333pt;}
.ls3e_c00441{letter-spacing:-1.792000pt;}
.ls44_c00441{letter-spacing:-1.777600pt;}
.ls52_c00441{letter-spacing:-1.717333pt;}
.ls71_c00441{letter-spacing:-1.696640pt;}
.ls70_c00441{letter-spacing:-1.592320pt;}
.ls40_c00441{letter-spacing:-1.513653pt;}
.ls2d_c00441{letter-spacing:-1.491840pt;}
.ls3d_c00441{letter-spacing:-1.464320pt;}
.ls65_c00441{letter-spacing:-1.454400pt;}
.ls5d_c00441{letter-spacing:-1.412640pt;}
.ls3c_c00441{letter-spacing:-1.400019pt;}
.ls53_c00441{letter-spacing:-1.378987pt;}
.ls47_c00441{letter-spacing:-1.344000pt;}
.ls87_c00441{letter-spacing:-1.250667pt;}
.ls77_c00441{letter-spacing:-1.213352pt;}
.ls29_c00441{letter-spacing:-1.178080pt;}
.ls6c_c00441{letter-spacing:-1.174293pt;}
.ls38_c00441{letter-spacing:-1.082685pt;}
.ls85_c00441{letter-spacing:-1.012018pt;}
.ls88_c00441{letter-spacing:-1.007307pt;}
.ls73_c00441{letter-spacing:-0.962560pt;}
.ls7e_c00441{letter-spacing:-0.619467pt;}
.ls35_c00441{letter-spacing:-0.538240pt;}
.ls28_c00441{letter-spacing:-0.503200pt;}
.ls5a_c00441{letter-spacing:-0.447093pt;}
.ls2c_c00441{letter-spacing:-0.444000pt;}
.ls33_c00441{letter-spacing:-0.402133pt;}
.ls50_c00441{letter-spacing:-0.364800pt;}
.ls51_c00441{letter-spacing:-0.338560pt;}
.ls2a_c00441{letter-spacing:-0.337440pt;}
.ls78_c00441{letter-spacing:-0.324053pt;}
.ls42_c00441{letter-spacing:-0.312320pt;}
.ls58_c00441{letter-spacing:-0.247787pt;}
.ls4b_c00441{letter-spacing:-0.193920pt;}
.ls34_c00441{letter-spacing:-0.185600pt;}
.ls6f_c00441{letter-spacing:-0.184320pt;}
.ls4a_c00441{letter-spacing:-0.172373pt;}
.ls6a_c00441{letter-spacing:-0.150827pt;}
.ls59_c00441{letter-spacing:-0.134667pt;}
.ls41_c00441{letter-spacing:-0.092160pt;}
.ls39_c00441{letter-spacing:-0.055734pt;}
.ls30_c00441{letter-spacing:-0.041440pt;}
.ls7c_c00441{letter-spacing:-0.016800pt;}
.ls2e_c00441{letter-spacing:-0.011840pt;}
.ls2f_c00441{letter-spacing:0.000000pt;}
.ls24_c00441{letter-spacing:0.045067pt;}
.lsc_c00441{letter-spacing:0.086613pt;}
.ls48_c00441{letter-spacing:0.087041pt;}
.ls36_c00441{letter-spacing:0.222720pt;}
.ls1f_c00441{letter-spacing:0.226240pt;}
.ls16_c00441{letter-spacing:0.282240pt;}
.ls1d_c00441{letter-spacing:0.366293pt;}
.ls22_c00441{letter-spacing:0.393227pt;}
.ls1b_c00441{letter-spacing:0.398613pt;}
.ls9_c00441{letter-spacing:0.482560pt;}
.ls25_c00441{letter-spacing:0.495573pt;}
.ls26_c00441{letter-spacing:0.511733pt;}
.ls0_c00441{letter-spacing:0.520960pt;}
.ls7a_c00441{letter-spacing:0.551261pt;}
.ls31_c00441{letter-spacing:0.568320pt;}
.ls3_c00441{letter-spacing:0.621600pt;}
.ls7_c00441{letter-spacing:0.754773pt;}
.ls20_c00441{letter-spacing:0.792015pt;}
.ls37_c00441{letter-spacing:0.800000pt;}
.ls4_c00441{letter-spacing:0.840640pt;}
.lse_c00441{letter-spacing:0.872320pt;}
.ls84_c00441{letter-spacing:0.875520pt;}
.ls5e_c00441{letter-spacing:0.881293pt;}
.ls66_c00441{letter-spacing:0.907360pt;}
.lsd_c00441{letter-spacing:0.940373pt;}
.ls17_c00441{letter-spacing:0.967680pt;}
.ls72_c00441{letter-spacing:1.013360pt;}
.lsf_c00441{letter-spacing:1.057920pt;}
.ls3f_c00441{letter-spacing:1.093333pt;}
.ls6_c00441{letter-spacing:1.095040pt;}
.ls54_c00441{letter-spacing:1.120000pt;}
.ls57_c00441{letter-spacing:1.125813pt;}
.ls5_c00441{letter-spacing:1.194027pt;}
.ls8_c00441{letter-spacing:1.224960pt;}
.ls1a_c00441{letter-spacing:1.238933pt;}
.ls80_c00441{letter-spacing:1.306693pt;}
.ls23_c00441{letter-spacing:1.346560pt;}
.ls75_c00441{letter-spacing:1.361920pt;}
.ls4e_c00441{letter-spacing:1.386667pt;}
.ls56_c00441{letter-spacing:1.405920pt;}
.ls64_c00441{letter-spacing:1.440027pt;}
.ls3b_c00441{letter-spacing:1.466693pt;}
.ls81_c00441{letter-spacing:1.520000pt;}
.lsa_c00441{letter-spacing:1.521920pt;}
.ls13_c00441{letter-spacing:1.551360pt;}
.ls21_c00441{letter-spacing:1.566720pt;}
.ls1e_c00441{letter-spacing:1.594453pt;}
.ls5b_c00441{letter-spacing:1.626667pt;}
.ls12_c00441{letter-spacing:1.635840pt;}
.ls67_c00441{letter-spacing:1.653333pt;}
.ls7f_c00441{letter-spacing:1.706693pt;}
.ls43_c00441{letter-spacing:1.733360pt;}
.ls1c_c00441{letter-spacing:1.761440pt;}
.ls55_c00441{letter-spacing:1.766827pt;}
.ls86_c00441{letter-spacing:1.786667pt;}
.ls5f_c00441{letter-spacing:1.813360pt;}
.ls14_c00441{letter-spacing:1.858560pt;}
.ls74_c00441{letter-spacing:1.893333pt;}
.ls2_c00441{letter-spacing:1.900320pt;}
.ls46_c00441{letter-spacing:1.920000pt;}
.ls15_c00441{letter-spacing:1.937840pt;}
.ls68_c00441{letter-spacing:2.000027pt;}
.lsb_c00441{letter-spacing:2.103467pt;}
.ls4f_c00441{letter-spacing:2.106693pt;}
.ls1_c00441{letter-spacing:2.125280pt;}
.ls5c_c00441{letter-spacing:2.160000pt;}
.ls18_c00441{letter-spacing:2.247680pt;}
.ls19_c00441{letter-spacing:2.488640pt;}
.ls76_c00441{letter-spacing:2.560000pt;}
.ls27_c00441{letter-spacing:2.576640pt;}
.ls61_c00441{letter-spacing:2.693333pt;}
.ls6e_c00441{letter-spacing:3.360000pt;}
.ls4c_c00441{letter-spacing:3.466667pt;}
.ls63_c00441{letter-spacing:3.653333pt;}
.ls10_c00441{letter-spacing:5.080068pt;}
.ls11_c00441{letter-spacing:16.857600pt;}
.ws0_c00441{word-spacing:0.000000pt;}
._1a_c00441{margin-left:-15.445867pt;}
._38_c00441{margin-left:-12.664000pt;}
._15_c00441{margin-left:-10.437120pt;}
._f_c00441{margin-left:-8.295467pt;}
._1b_c00441{margin-left:-7.280640pt;}
._21_c00441{margin-left:-2.399147pt;}
._5_c00441{width:1.373440pt;}
._2_c00441{width:3.208640pt;}
._3_c00441{width:4.398560pt;}
._7_c00441{width:5.635733pt;}
._8_c00441{width:6.954133pt;}
._4_c00441{width:8.039360pt;}
._6_c00441{width:9.022080pt;}
._1_c00441{width:11.461120pt;}
._0_c00441{width:12.491200pt;}
._23_c00441{width:16.038613pt;}
._37_c00441{width:20.823893pt;}
._25_c00441{width:22.389760pt;}
._24_c00441{width:24.028160pt;}
._11_c00441{width:25.861973pt;}
._10_c00441{width:30.285867pt;}
._40_c00441{width:31.786880pt;}
._52_c00441{width:35.146667pt;}
._2d_c00441{width:45.661867pt;}
._9_c00441{width:48.793600pt;}
._d_c00441{width:50.354133pt;}
._b_c00441{width:51.558400pt;}
._c_c00441{width:53.350400pt;}
._a_c00441{width:54.784000pt;}
._e_c00441{width:56.426667pt;}
._28_c00441{width:57.446400pt;}
._27_c00441{width:59.440000pt;}
._22_c00441{width:74.407720pt;}
._12_c00441{width:123.407360pt;}
._13_c00441{width:128.284800pt;}
._26_c00441{width:131.827200pt;}
._43_c00441{width:139.366400pt;}
._53_c00441{width:142.284800pt;}
._17_c00441{width:143.360000pt;}
._16_c00441{width:144.640000pt;}
._20_c00441{width:147.046400pt;}
._49_c00441{width:152.352488pt;}
._47_c00441{width:202.466347pt;}
._41_c00441{width:217.115733pt;}
._1f_c00441{width:231.833600pt;}
._29_c00441{width:233.772800pt;}
._2a_c00441{width:235.622400pt;}
._1d_c00441{width:237.977600pt;}
._2e_c00441{width:239.206400pt;}
._3c_c00441{width:240.514133pt;}
._51_c00441{width:294.329155pt;}
._4b_c00441{width:305.739733pt;}
._44_c00441{width:321.452800pt;}
._46_c00441{width:323.993600pt;}
._2b_c00441{width:326.400000pt;}
._19_c00441{width:330.086400pt;}
._45_c00441{width:390.679893pt;}
._18_c00441{width:413.593600pt;}
._3d_c00441{width:417.548800pt;}
._1e_c00441{width:420.966400pt;}
._39_c00441{width:471.734187pt;}
._4d_c00441{width:510.566400pt;}
._30_c00441{width:571.875947pt;}
._50_c00441{width:599.040000pt;}
._2c_c00441{width:615.976533pt;}
._4e_c00441{width:688.640000pt;}
._34_c00441{width:701.707307pt;}
._4c_c00441{width:782.080000pt;}
._31_c00441{width:875.520000pt;}
._4f_c00441{width:963.840000pt;}
._3e_c00441{width:1040.213333pt;}
._2f_c00441{width:1056.000000pt;}
._36_c00441{width:1248.847787pt;}
._32_c00441{width:1265.424853pt;}
._3a_c00441{width:1269.432320pt;}
._3f_c00441{width:1328.896000pt;}
._1c_c00441{width:1439.655253pt;}
._48_c00441{width:1475.626400pt;}
._42_c00441{width:1693.440000pt;}
._35_c00441{width:1706.609120pt;}
._4a_c00441{width:1748.867840pt;}
._14_c00441{width:1841.017600pt;}
._3b_c00441{width:1955.753173pt;}
._33_c00441{width:2188.064533pt;}
.fs2b_c00441{font-size:8.960000pt;}
.fs5_c00441{font-size:16.000000pt;}
.fs34_c00441{font-size:20.267200pt;}
.fs9_c00441{font-size:20.480000pt;}
.fs21_c00441{font-size:20.800533pt;}
.fs6_c00441{font-size:21.760000pt;}
.fs11_c00441{font-size:21.866667pt;}
.fs20_c00441{font-size:22.400000pt;}
.fs8_c00441{font-size:24.533333pt;}
.fs23_c00441{font-size:25.600000pt;}
.fs3f_c00441{font-size:25.600533pt;}
.fs3c_c00441{font-size:26.133867pt;}
.fs18_c00441{font-size:26.880533pt;}
.fs1a_c00441{font-size:27.733333pt;}
.fs27_c00441{font-size:28.800533pt;}
.fsa_c00441{font-size:29.333867pt;}
.fs3b_c00441{font-size:29.440533pt;}
.fs3d_c00441{font-size:30.400000pt;}
.fs29_c00441{font-size:30.720000pt;}
.fs7_c00441{font-size:30.933867pt;}
.fs25_c00441{font-size:32.533333pt;}
.fs2e_c00441{font-size:33.066667pt;}
.fs3a_c00441{font-size:34.133867pt;}
.fs4_c00441{font-size:34.560533pt;}
.fs14_c00441{font-size:34.667200pt;}
.fs40_c00441{font-size:35.733333pt;}
.fs15_c00441{font-size:36.267200pt;}
.fs35_c00441{font-size:37.866667pt;}
.fsd_c00441{font-size:38.400000pt;}
.fs1b_c00441{font-size:39.467200pt;}
.fse_c00441{font-size:40.000533pt;}
.fs24_c00441{font-size:41.066667pt;}
.fs1d_c00441{font-size:42.133867pt;}
.fs38_c00441{font-size:42.240000pt;}
.fs26_c00441{font-size:43.200000pt;}
.fs2f_c00441{font-size:44.800000pt;}
.fs13_c00441{font-size:46.080000pt;}
.fs1e_c00441{font-size:49.066667pt;}
.fs22_c00441{font-size:50.133333pt;}
.fsf_c00441{font-size:51.200000pt;}
.fs1f_c00441{font-size:51.733333pt;}
.fs36_c00441{font-size:52.266667pt;}
.fs0_c00441{font-size:52.800000pt;}
.fs10_c00441{font-size:53.866667pt;}
.fs30_c00441{font-size:55.466667pt;}
.fs1c_c00441{font-size:56.000000pt;}
.fs2d_c00441{font-size:57.066667pt;}
.fs31_c00441{font-size:57.600000pt;}
.fs19_c00441{font-size:58.666667pt;}
.fs1_c00441{font-size:59.200000pt;}
.fsc_c00441{font-size:61.333333pt;}
.fs3_c00441{font-size:61.866667pt;}
.fs2_c00441{font-size:63.466667pt;}
.fs32_c00441{font-size:66.133333pt;}
.fs12_c00441{font-size:67.200000pt;}
.fs28_c00441{font-size:68.266667pt;}
.fs16_c00441{font-size:69.333333pt;}
.fs3e_c00441{font-size:69.866667pt;}
.fs33_c00441{font-size:70.400000pt;}
.fs17_c00441{font-size:71.466667pt;}
.fs37_c00441{font-size:72.000000pt;}
.fsb_c00441{font-size:72.533333pt;}
.fs2c_c00441{font-size:73.066667pt;}
.fs39_c00441{font-size:121.600000pt;}
.fs2a_c00441{font-size:142.933333pt;}
.y0_c00441{bottom:0.000000pt;}
.y91_c00441{bottom:90.240000pt;}
.y8c_c00441{bottom:131.520000pt;}
.y8d_c00441{bottom:132.160000pt;}
.y8e_c00441{bottom:132.480000pt;}
.y8f_c00441{bottom:132.813333pt;}
.y90_c00441{bottom:133.120000pt;}
.y8b_c00441{bottom:137.293333pt;}
.y89_c00441{bottom:145.293333pt;}
.y8a_c00441{bottom:148.160000pt;}
.y88_c00441{bottom:152.000000pt;}
.y86_c00441{bottom:163.840000pt;}
.y87_c00441{bottom:168.320000pt;}
.y84_c00441{bottom:179.213333pt;}
.y85_c00441{bottom:179.853333pt;}
.y82_c00441{bottom:193.933333pt;}
.y83_c00441{bottom:195.853333pt;}
.y81_c00441{bottom:196.493333pt;}
.y7f_c00441{bottom:209.933333pt;}
.y80_c00441{bottom:212.173333pt;}
.y7d_c00441{bottom:216.640000pt;}
.y7e_c00441{bottom:216.973333pt;}
.y7c_c00441{bottom:228.173333pt;}
.y7b_c00441{bottom:229.453333pt;}
.y79_c00441{bottom:230.080000pt;}
.y7a_c00441{bottom:231.373333pt;}
.y78_c00441{bottom:242.573333pt;}
.y77_c00441{bottom:258.253333pt;}
.y75_c00441{bottom:272.640000pt;}
.y76_c00441{bottom:276.493333pt;}
.y74_c00441{bottom:279.693333pt;}
.y73_c00441{bottom:281.933333pt;}
.y6f_c00441{bottom:289.933333pt;}
.y71_c00441{bottom:291.213333pt;}
.y72_c00441{bottom:291.533333pt;}
.y70_c00441{bottom:295.053333pt;}
.y6e_c00441{bottom:304.640000pt;}
.y6d_c00441{bottom:306.893333pt;}
.y6a_c00441{bottom:322.893333pt;}
.y6c_c00441{bottom:325.120000pt;}
.y6b_c00441{bottom:328.333333pt;}
.y66_c00441{bottom:337.600000pt;}
.y68_c00441{bottom:340.173333pt;}
.y69_c00441{bottom:343.373333pt;}
.y67_c00441{bottom:344.333333pt;}
.y61_c00441{bottom:354.880000pt;}
.y65_c00441{bottom:355.840000pt;}
.y63_c00441{bottom:359.373333pt;}
.y64_c00441{bottom:360.333333pt;}
.y62_c00441{bottom:362.253333pt;}
.y5d_c00441{bottom:368.640000pt;}
.y5c_c00441{bottom:368.973333pt;}
.y5f_c00441{bottom:369.293333pt;}
.y59_c00441{bottom:369.600000pt;}
.y60_c00441{bottom:371.840000pt;}
.y5e_c00441{bottom:372.173333pt;}
.y5a_c00441{bottom:376.333333pt;}
.y5b_c00441{bottom:376.640000pt;}
.y56_c00441{bottom:386.880000pt;}
.y58_c00441{bottom:387.840000pt;}
.y57_c00441{bottom:388.173333pt;}
.y55_c00441{bottom:403.840000pt;}
.y54_c00441{bottom:405.133333pt;}
.y53_c00441{bottom:419.533333pt;}
.y52_c00441{bottom:420.493333pt;}
.y51_c00441{bottom:435.213333pt;}
.y50_c00441{bottom:439.373333pt;}
.y4f_c00441{bottom:448.013333pt;}
.y4d_c00441{bottom:451.840000pt;}
.y4c_c00441{bottom:454.093333pt;}
.y4e_c00441{bottom:455.053333pt;}
.y4b_c00441{bottom:467.213333pt;}
.y49_c00441{bottom:470.093333pt;}
.y48_c00441{bottom:470.400000pt;}
.y4a_c00441{bottom:472.333333pt;}
.y46_c00441{bottom:481.293333pt;}
.y47_c00441{bottom:482.253333pt;}
.y45_c00441{bottom:485.133333pt;}
.y44_c00441{bottom:495.373333pt;}
.y41_c00441{bottom:500.800000pt;}
.y43_c00441{bottom:503.053333pt;}
.y42_c00441{bottom:504.640000pt;}
.y3e_c00441{bottom:513.293333pt;}
.y3f_c00441{bottom:513.600000pt;}
.y40_c00441{bottom:514.573333pt;}
.y3d_c00441{bottom:518.093333pt;}
.y3c_c00441{bottom:529.600000pt;}
.y3b_c00441{bottom:532.173333pt;}
.y3a_c00441{bottom:546.573333pt;}
.y38_c00441{bottom:561.933333pt;}
.y39_c00441{bottom:566.093333pt;}
.y37_c00441{bottom:577.933333pt;}
.y36_c00441{bottom:581.133333pt;}
.y35_c00441{bottom:593.293333pt;}
.y33_c00441{bottom:608.013333pt;}
.y34_c00441{bottom:609.293333pt;}
.y32_c00441{bottom:625.933333pt;}
.y31_c00441{bottom:641.600000pt;}
.y2f_c00441{bottom:656.640000pt;}
.y30_c00441{bottom:657.600000pt;}
.y2e_c00441{bottom:672.973333pt;}
.y2d_c00441{bottom:673.600000pt;}
.y2c_c00441{bottom:689.613333pt;}
.y2b_c00441{bottom:692.173333pt;}
.y2a_c00441{bottom:705.280000pt;}
.y29_c00441{bottom:707.200000pt;}
.y27_c00441{bottom:707.533333pt;}
.y28_c00441{bottom:711.360000pt;}
.y25_c00441{bottom:720.960000pt;}
.y26_c00441{bottom:721.280000pt;}
.y24_c00441{bottom:721.613333pt;}
.y23_c00441{bottom:722.880000pt;}
.y22_c00441{bottom:724.173333pt;}
.y20_c00441{bottom:733.453333pt;}
.y21_c00441{bottom:736.013333pt;}
.y1f_c00441{bottom:737.280000pt;}
.y1e_c00441{bottom:740.493333pt;}
.y1d_c00441{bottom:753.280000pt;}
.y1c_c00441{bottom:754.880000pt;}
.y1b_c00441{bottom:765.453333pt;}
.y1a_c00441{bottom:769.280000pt;}
.y19_c00441{bottom:782.400000pt;}
.y18_c00441{bottom:785.280000pt;}
.y17_c00441{bottom:788.173333pt;}
.y16_c00441{bottom:800.013333pt;}
.y15_c00441{bottom:801.613333pt;}
.y14_c00441{bottom:814.720000pt;}
.y12_c00441{bottom:816.013333pt;}
.y13_c00441{bottom:816.333333pt;}
.y11_c00441{bottom:816.640000pt;}
.y10_c00441{bottom:817.933333pt;}
.ye_c00441{bottom:818.880000pt;}
.yf_c00441{bottom:823.360000pt;}
.yd_c00441{bottom:844.493333pt;}
.yc_c00441{bottom:844.800000pt;}
.yb_c00441{bottom:860.493333pt;}
.ya_c00441{bottom:868.493333pt;}
.y9_c00441{bottom:873.280000pt;}
.y5_c00441{bottom:874.880000pt;}
.y7_c00441{bottom:878.093333pt;}
.y6_c00441{bottom:878.720000pt;}
.y8_c00441{bottom:881.280000pt;}
.y4_c00441{bottom:898.250667pt;}
.y3_c00441{bottom:926.400000pt;}
.y2_c00441{bottom:955.200000pt;}
.y1_c00441{bottom:1024.333333pt;}
.h34_c00441{height:5.967360pt;}
.ha_c00441{height:13.639680pt;}
.h7_c00441{height:14.492160pt;}
.h6_c00441{height:15.703125pt;}
.h2b_c00441{height:17.049600pt;}
.h1e_c00441{height:17.902435pt;}
.h50_c00441{height:19.607395pt;}
.h43_c00441{height:19.891148pt;}
.h32_c00441{height:20.459520pt;}
.h45_c00441{height:21.138056pt;}
.h13_c00441{height:21.460937pt;}
.h5_c00441{height:23.017315pt;}
.h28_c00441{height:23.362500pt;}
.he_c00441{height:25.574400pt;}
.h9_c00441{height:25.587500pt;}
.h51_c00441{height:25.648961pt;}
.h22_c00441{height:27.218750pt;}
.h48_c00441{height:28.131840pt;}
.h36_c00441{height:28.266148pt;}
.h56_c00441{height:28.775263pt;}
.h39_c00441{height:29.836800pt;}
.h8_c00441{height:30.359898pt;}
.hb_c00441{height:30.594306pt;}
.h17_c00441{height:30.689280pt;}
.h52_c00441{height:31.706250pt;}
.h2d_c00441{height:31.929687pt;}
.h4f_c00441{height:33.500523pt;}
.h4e_c00441{height:34.007034pt;}
.h38_c00441{height:34.487500pt;}
.h4a_c00441{height:34.890000pt;}
.h57_c00441{height:35.052865pt;}
.h1b_c00441{height:35.576565pt;}
.h31_c00441{height:35.594273pt;}
.h18_c00441{height:36.156806pt;}
.h44_c00441{height:37.164062pt;}
.h19_c00441{height:37.668750pt;}
.h1a_c00441{height:37.687500pt;}
.hf_c00441{height:41.719306pt;}
.h2e_c00441{height:42.377344pt;}
.h2c_c00441{height:42.831250pt;}
.h25_c00441{height:43.944306pt;}
.h3a_c00441{height:45.056250pt;}
.h11_c00441{height:50.250000pt;}
.h10_c00441{height:50.593646pt;}
.h24_c00441{height:51.174271pt;}
.h26_c00441{height:51.175000pt;}
.h53_c00441{height:51.271354pt;}
.h20_c00441{height:51.530000pt;}
.h2_c00441{height:51.820312pt;}
.h23_c00441{height:52.167500pt;}
.h2a_c00441{height:52.287500pt;}
.h55_c00441{height:52.810000pt;}
.h12_c00441{height:52.840885pt;}
.h14_c00441{height:52.867187pt;}
.h15_c00441{height:53.400000pt;}
.h27_c00441{height:53.956250pt;}
.h46_c00441{height:54.090000pt;}
.h2f_c00441{height:54.143333pt;}
.h3b_c00441{height:54.437500pt;}
.h41_c00441{height:54.960417pt;}
.h4d_c00441{height:55.370000pt;}
.h16_c00441{height:55.954167pt;}
.h37_c00441{height:56.007812pt;}
.h3d_c00441{height:56.503125pt;}
.h3c_c00441{height:57.287500pt;}
.h21_c00441{height:57.549479pt;}
.h59_c00441{height:57.627083pt;}
.h30_c00441{height:58.406250pt;}
.h29_c00441{height:58.567500pt;}
.h4_c00441{height:60.718750pt;}
.h58_c00441{height:61.187500pt;}
.h40_c00441{height:63.050000pt;}
.h3_c00441{height:63.962500pt;}
.hd_c00441{height:63.968750pt;}
.h42_c00441{height:64.525000pt;}
.h3e_c00441{height:64.906250pt;}
.h1c_c00441{height:68.046875pt;}
.h54_c00441{height:68.536198pt;}
.h3f_c00441{height:70.087500pt;}
.h1d_c00441{height:70.105729pt;}
.h4b_c00441{height:70.374271pt;}
.h47_c00441{height:70.664062pt;}
.h1f_c00441{height:72.312500pt;}
.h4c_c00441{height:73.425000pt;}
.hc_c00441{height:75.650000pt;}
.h35_c00441{height:76.206250pt;}
.h49_c00441{height:126.825000pt;}
.h33_c00441{height:149.075000pt;}
.h1_c00441{height:1122.666667pt;}
.h0_c00441{height:1122.880000pt;}
.w1_c00441{width:793.333333pt;}
.w0_c00441{width:793.600000pt;}
.x0_c00441{left:0.000000pt;}
.x3d_c00441{left:51.666667pt;}
.x5_c00441{left:52.813333pt;}
.x70_c00441{left:53.880000pt;}
.x65_c00441{left:55.066667pt;}
.x3e_c00441{left:56.053333pt;}
.x22_c00441{left:56.973333pt;}
.x2c_c00441{left:58.080000pt;}
.x2_c00441{left:59.040000pt;}
.x76_c00441{left:63.466667pt;}
.x54_c00441{left:65.400000pt;}
.x51_c00441{left:69.626667pt;}
.x6b_c00441{left:73.400000pt;}
.x37_c00441{left:76.653333pt;}
.x19_c00441{left:79.453333pt;}
.x47_c00441{left:81.613333pt;}
.x66_c00441{left:82.733333pt;}
.x4b_c00441{left:83.666667pt;}
.x30_c00441{left:85.360000pt;}
.x53_c00441{left:86.826667pt;}
.x67_c00441{left:89.440000pt;}
.x38_c00441{left:91.733333pt;}
.x31_c00441{left:94.653333pt;}
.x1a_c00441{left:96.266667pt;}
.x5f_c00441{left:97.546667pt;}
.x1_c00441{left:101.053333pt;}
.x6e_c00441{left:102.653333pt;}
.x41_c00441{left:107.440000pt;}
.x3c_c00441{left:109.186667pt;}
.x39_c00441{left:110.946667pt;}
.x24_c00441{left:111.893333pt;}
.x6c_c00441{left:112.853333pt;}
.x4c_c00441{left:113.973333pt;}
.x43_c00441{left:116.240000pt;}
.x55_c00441{left:117.453333pt;}
.x4d_c00441{left:121.693333pt;}
.xf_c00441{left:124.520000pt;}
.x42_c00441{left:125.573333pt;}
.x25_c00441{left:127.266667pt;}
.x1b_c00441{left:129.253333pt;}
.x56_c00441{left:130.560000pt;}
.x23_c00441{left:134.040000pt;}
.x60_c00441{left:135.173333pt;}
.x44_c00441{left:136.133333pt;}
.x29_c00441{left:137.693333pt;}
.x3a_c00441{left:139.026667pt;}
.x4e_c00441{left:141.253333pt;}
.x68_c00441{left:142.160000pt;}
.x26_c00441{left:145.186667pt;}
.x6_c00441{left:146.506667pt;}
.x35_c00441{left:148.600000pt;}
.x2a_c00441{left:150.960000pt;}
.x7_c00441{left:152.000000pt;}
.x3_c00441{left:153.853333pt;}
.x48_c00441{left:155.120000pt;}
.x13_c00441{left:156.640000pt;}
.x8_c00441{left:158.080000pt;}
.x14_c00441{left:161.720000pt;}
.x75_c00441{left:164.866667pt;}
.x71_c00441{left:166.306667pt;}
.x6d_c00441{left:167.773333pt;}
.x9_c00441{left:169.746667pt;}
.x15_c00441{left:172.373333pt;}
.xa_c00441{left:178.720000pt;}
.x4_c00441{left:180.613333pt;}
.x61_c00441{left:184.973333pt;}
.x58_c00441{left:188.066667pt;}
.x72_c00441{left:190.000000pt;}
.x49_c00441{left:193.280000pt;}
.x59_c00441{left:195.240000pt;}
.x62_c00441{left:196.720000pt;}
.x5b_c00441{left:223.000000pt;}
.x27_c00441{left:228.093333pt;}
.x2d_c00441{left:230.346667pt;}
.x16_c00441{left:232.200000pt;}
.x5c_c00441{left:246.733333pt;}
.x69_c00441{left:247.906667pt;}
.x1c_c00441{left:254.920000pt;}
.x6a_c00441{left:270.720000pt;}
.x74_c00441{left:274.440000pt;}
.x52_c00441{left:275.720000pt;}
.x5a_c00441{left:297.453333pt;}
.x28_c00441{left:300.360000pt;}
.x77_c00441{left:318.666667pt;}
.x5d_c00441{left:320.413333pt;}
.x32_c00441{left:322.106667pt;}
.x63_c00441{left:338.706667pt;}
.x1d_c00441{left:340.373333pt;}
.x64_c00441{left:366.600000pt;}
.x1e_c00441{left:368.493333pt;}
.x7d_c00441{left:377.760000pt;}
.x33_c00441{left:414.320000pt;}
.x34_c00441{left:436.400000pt;}
.xb_c00441{left:449.933333pt;}
.xc_c00441{left:453.720000pt;}
.x17_c00441{left:460.400000pt;}
.xd_c00441{left:471.693333pt;}
.x78_c00441{left:473.200000pt;}
.x10_c00441{left:477.893333pt;}
.x6f_c00441{left:479.560000pt;}
.x36_c00441{left:481.746667pt;}
.x18_c00441{left:483.080000pt;}
.x11_c00441{left:485.213333pt;}
.x12_c00441{left:490.333333pt;}
.x79_c00441{left:496.466667pt;}
.xe_c00441{left:498.066667pt;}
.x1f_c00441{left:505.200000pt;}
.x45_c00441{left:520.840000pt;}
.x7a_c00441{left:524.026667pt;}
.x46_c00441{left:549.640000pt;}
.x3f_c00441{left:568.560000pt;}
.x7b_c00441{left:587.346667pt;}
.x4f_c00441{left:588.680000pt;}
.x3b_c00441{left:596.386667pt;}
.x5e_c00441{left:612.480000pt;}
.x7c_c00441{left:614.866667pt;}
.x50_c00441{left:617.800000pt;}
.x4a_c00441{left:634.560000pt;}
.x2e_c00441{left:636.746667pt;}
.x2b_c00441{left:638.400000pt;}
.x57_c00441{left:640.200000pt;}
.x40_c00441{left:660.360000pt;}
.x73_c00441{left:661.320000pt;}
.x2f_c00441{left:664.560000pt;}
.x20_c00441{left:682.133333pt;}
.x21_c00441{left:705.466667pt;}
}





/* 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_c00442 {
    display:none;
  }
  .loading-indicator_c00442.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00442 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_c00442 { 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_c00442" -> "#page-container .classname_c00442")
 */
.pf_c00442 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00442 { /* 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_c00442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00442 { /* 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_c00442 { /* 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_c00442 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00442 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00442 {overflow:visible;}
  }
}
.c_c00442 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00442 { /* 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_c00442:after { /* webkit #35443 */
  content: '';
}
.t_c00442:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00442 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 */
}
.__c00442 { /* 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_c00442 { /* info for Javascript */
  display:none;
}
.l_c00442 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00442 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00442 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00442: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_c00442 {
    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_c00442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00442.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_c00442 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00442{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00442;src:url('chunks/assets/font_c7e1713a942cc7c548901758.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.284668;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_c00442;src:url('chunks/assets/font_5f1c6c0bf23489a68ead61c3.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:0.666000;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_c00442;src:url('chunks/assets/font_b2feefa7bdd995eadbb30562.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;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;}
.m0_c00442{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);}
.m2_c00442{transform:matrix(0.258548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258548,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{transform:matrix(0.263834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263834,0.000000,0.000000,0.250000,0,0);}
.m6_c00442{transform:matrix(0.266508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266508,0.000000,0.000000,0.250000,0,0);}
.ma_c00442{transform:matrix(0.288556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288556,0.000000,0.000000,0.250000,0,0);}
.m8_c00442{transform:matrix(0.309669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309669,0.000000,0.000000,0.250000,0,0);}
.m3_c00442{transform:matrix(0.316281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316281,0.000000,0.000000,0.250000,0,0);}
.m7_c00442{transform:matrix(0.347492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347492,0.000000,0.000000,0.250000,0,0);}
.m5_c00442{transform:matrix(0.367043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367043,0.000000,0.000000,0.250000,0,0);}
.m4_c00442{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m9_c00442{transform:matrix(0.709911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709911,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls6_c00442{letter-spacing:-0.135780px;}
.ls3_c00442{letter-spacing:0.000000px;}
.ls7_c00442{letter-spacing:0.622740px;}
.ls5_c00442{letter-spacing:0.930000px;}
.ls4_c00442{letter-spacing:0.960030px;}
.ls0_c00442{letter-spacing:1.557420px;}
.ls2_c00442{letter-spacing:2.340030px;}
.ls1_c00442{letter-spacing:2.490000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{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__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00442{word-spacing:0.000000px;}
._0_c00442{margin-left:-1.000680px;}
.fc0_c00442{color:transparent;}
.fs3_c00442{font-size:8.640000px;}
.fs5_c00442{font-size:18.600000px;}
.fs4_c00442{font-size:19.200600px;}
.fs2_c00442{font-size:46.800600px;}
.fs1_c00442{font-size:49.800000px;}
.fs6_c00442{font-size:58.200000px;}
.fs0_c00442{font-size:60.600000px;}
.y0_c00442{bottom:0.000000px;}
.y4_c00442{bottom:106.560000px;}
.y3_c00442{bottom:1077.855000px;}
.y2_c00442{bottom:1080.375000px;}
.y1_c00442{bottom:1153.080000px;}
.h5_c00442{height:5.754240px;}
.h7_c00442{height:19.399219px;}
.h6_c00442{height:20.025626px;}
.h4_c00442{height:45.932229px;}
.h3_c00442{height:48.875977px;}
.h8_c00442{height:57.120117px;}
.h2_c00442{height:59.475586px;}
.h1_c00442{height:1263.000000px;}
.h0_c00442{height:1263.240000px;}
.w1_c00442{width:892.500000px;}
.w0_c00442{width:892.800000px;}
.x0_c00442{left:0.000000px;}
.x2_c00442{left:65.415000px;}
.x5_c00442{left:67.695000px;}
.x6_c00442{left:75.975000px;}
.x1_c00442{left:110.445000px;}
.x3_c00442{left:111.870000px;}
.x7_c00442{left:129.570000px;}
.x4_c00442{left:137.865000px;}
.x8_c00442{left:158.640000px;}
.x9_c00442{left:187.605000px;}
.xa_c00442{left:212.670000px;}
.xb_c00442{left:225.975000px;}
.xc_c00442{left:235.710000px;}
.xd_c00442{left:422.835000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls6_c00442{letter-spacing:-0.120693pt;}
.ls3_c00442{letter-spacing:0.000000pt;}
.ls7_c00442{letter-spacing:0.553547pt;}
.ls5_c00442{letter-spacing:0.826667pt;}
.ls4_c00442{letter-spacing:0.853360pt;}
.ls0_c00442{letter-spacing:1.384373pt;}
.ls2_c00442{letter-spacing:2.080027pt;}
.ls1_c00442{letter-spacing:2.213333pt;}
.ws0_c00442{word-spacing:0.000000pt;}
._0_c00442{margin-left:-0.889493pt;}
.fs3_c00442{font-size:7.680000pt;}
.fs5_c00442{font-size:16.533333pt;}
.fs4_c00442{font-size:17.067200pt;}
.fs2_c00442{font-size:41.600533pt;}
.fs1_c00442{font-size:44.266667pt;}
.fs6_c00442{font-size:51.733333pt;}
.fs0_c00442{font-size:53.866667pt;}
.y0_c00442{bottom:0.000000pt;}
.y4_c00442{bottom:94.720000pt;}
.y3_c00442{bottom:958.093333pt;}
.y2_c00442{bottom:960.333333pt;}
.y1_c00442{bottom:1024.960000pt;}
.h5_c00442{height:5.114880pt;}
.h7_c00442{height:17.243750pt;}
.h6_c00442{height:17.800556pt;}
.h4_c00442{height:40.828648pt;}
.h3_c00442{height:43.445313pt;}
.h8_c00442{height:50.773437pt;}
.h2_c00442{height:52.867187pt;}
.h1_c00442{height:1122.666667pt;}
.h0_c00442{height:1122.880000pt;}
.w1_c00442{width:793.333333pt;}
.w0_c00442{width:793.600000pt;}
.x0_c00442{left:0.000000pt;}
.x2_c00442{left:58.146667pt;}
.x5_c00442{left:60.173333pt;}
.x6_c00442{left:67.533333pt;}
.x1_c00442{left:98.173333pt;}
.x3_c00442{left:99.440000pt;}
.x7_c00442{left:115.173333pt;}
.x4_c00442{left:122.546667pt;}
.x8_c00442{left:141.013333pt;}
.x9_c00442{left:166.760000pt;}
.xa_c00442{left:189.040000pt;}
.xb_c00442{left:200.866667pt;}
.xc_c00442{left:209.520000pt;}
.xd_c00442{left:375.853333pt;}
}





/* 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_c00443 {
    display:none;
  }
  .loading-indicator_c00443.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00443 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_c00443 { 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_c00443" -> "#page-container .classname_c00443")
 */
.pf_c00443 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00443 { /* 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_c00443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00443 { /* 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_c00443 { /* 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_c00443 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00443 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00443 {overflow:visible;}
  }
}
.c_c00443 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00443 { /* 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_c00443:after { /* webkit #35443 */
  content: '';
}
.t_c00443:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00443 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 */
}
.__c00443 { /* 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_c00443 { /* info for Javascript */
  display:none;
}
.l_c00443 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00443 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00443 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00443: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_c00443 {
    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_c00443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00443.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_c00443 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00443{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00443;src:url('chunks/assets/font_707cd77d1932004bb4b40259.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.284668;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_c00443;src:url('chunks/assets/font_2531e4c64c261a71970b0c8b.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;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_c00443;src:url('chunks/assets/font_13c8f16089d7fec066fdeee9.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.284180;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_c00443{transform:matrix(0.203799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203799,0.000000,0.000000,0.250000,0,0);}
.m5_c00443{transform:matrix(0.244303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244303,0.000000,0.000000,0.250000,0,0);}
.m8_c00443{transform:matrix(0.247327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247327,0.000000,0.000000,0.250000,0,0);}
.m7_c00443{transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);}
.m1_c00443{transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);}
.m0_c00443{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);}
.m6_c00443{transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);}
.m2_c00443{transform:matrix(0.251962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251962,0.000000,0.000000,0.250000,0,0);}
.m3_c00443{transform:matrix(0.272417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272417,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls8f_c00443{letter-spacing:-2.457000px;}
.ls9b_c00443{letter-spacing:-2.218320px;}
.ls99_c00443{letter-spacing:-2.204280px;}
.ls91_c00443{letter-spacing:-1.769040px;}
.ls9f_c00443{letter-spacing:-1.544400px;}
.ls86_c00443{letter-spacing:-1.291680px;}
.ls9e_c00443{letter-spacing:-1.249560px;}
.ls93_c00443{letter-spacing:-1.179360px;}
.ls81_c00443{letter-spacing:-0.947700px;}
.ls8d_c00443{letter-spacing:-0.870480px;}
.ls89_c00443{letter-spacing:-0.821340px;}
.ls88_c00443{letter-spacing:-0.807300px;}
.ls98_c00443{letter-spacing:-0.793260px;}
.ls7e_c00443{letter-spacing:-0.765180px;}
.ls85_c00443{letter-spacing:-0.687960px;}
.ls82_c00443{letter-spacing:-0.512460px;}
.ls80_c00443{letter-spacing:-0.470340px;}
.ls95_c00443{letter-spacing:-0.463320px;}
.ls9c_c00443{letter-spacing:-0.386100px;}
.ls9d_c00443{letter-spacing:-0.365040px;}
.ls8c_c00443{letter-spacing:-0.301860px;}
.ls84_c00443{letter-spacing:-0.231660px;}
.ls83_c00443{letter-spacing:-0.196560px;}
.ls8b_c00443{letter-spacing:-0.169920px;}
.ls9a_c00443{letter-spacing:-0.147420px;}
.ls7c_c00443{letter-spacing:-0.105300px;}
.ls7f_c00443{letter-spacing:-0.077220px;}
.ls87_c00443{letter-spacing:-0.070200px;}
.ls8e_c00443{letter-spacing:-0.014040px;}
.ls96_c00443{letter-spacing:-0.007020px;}
.ls7d_c00443{letter-spacing:0.000000px;}
.ls51_c00443{letter-spacing:0.014040px;}
.ls54_c00443{letter-spacing:0.021060px;}
.ls6e_c00443{letter-spacing:0.070200px;}
.lsa1_c00443{letter-spacing:0.080100px;}
.lsb_c00443{letter-spacing:0.091260px;}
.ls78_c00443{letter-spacing:0.098280px;}
.ls5f_c00443{letter-spacing:0.105300px;}
.ls8a_c00443{letter-spacing:0.147420px;}
.ls37_c00443{letter-spacing:0.154440px;}
.ls3e_c00443{letter-spacing:0.161460px;}
.ls49_c00443{letter-spacing:0.168480px;}
.ls97_c00443{letter-spacing:0.252720px;}
.ls16_c00443{letter-spacing:0.308880px;}
.ls60_c00443{letter-spacing:0.322920px;}
.ls27_c00443{letter-spacing:0.343980px;}
.ls68_c00443{letter-spacing:0.372060px;}
.ls5d_c00443{letter-spacing:0.491400px;}
.ls5e_c00443{letter-spacing:0.498420px;}
.ls57_c00443{letter-spacing:0.505440px;}
.ls43_c00443{letter-spacing:0.512460px;}
.ls94_c00443{letter-spacing:0.519480px;}
.ls71_c00443{letter-spacing:0.547560px;}
.ls40_c00443{letter-spacing:0.554580px;}
.ls28_c00443{letter-spacing:0.561600px;}
.ls66_c00443{letter-spacing:0.575640px;}
.ls47_c00443{letter-spacing:0.582660px;}
.ls67_c00443{letter-spacing:0.596700px;}
.ls65_c00443{letter-spacing:0.617760px;}
.ls76_c00443{letter-spacing:0.666900px;}
.ls5_c00443{letter-spacing:0.673920px;}
.ls73_c00443{letter-spacing:0.687960px;}
.ls35_c00443{letter-spacing:0.694980px;}
.ls74_c00443{letter-spacing:0.702000px;}
.ls6f_c00443{letter-spacing:0.730080px;}
.ls6b_c00443{letter-spacing:0.758160px;}
.ls53_c00443{letter-spacing:0.765180px;}
.ls2d_c00443{letter-spacing:0.772200px;}
.ls56_c00443{letter-spacing:0.807300px;}
.ls4b_c00443{letter-spacing:0.828360px;}
.ls36_c00443{letter-spacing:0.856440px;}
.ls62_c00443{letter-spacing:0.870480px;}
.ls2b_c00443{letter-spacing:0.884520px;}
.ls3a_c00443{letter-spacing:0.898560px;}
.lsd_c00443{letter-spacing:0.905580px;}
.ls17_c00443{letter-spacing:0.912600px;}
.ls69_c00443{letter-spacing:0.919620px;}
.ls18_c00443{letter-spacing:0.926640px;}
.ls30_c00443{letter-spacing:0.940680px;}
.ls4_c00443{letter-spacing:0.947700px;}
.ls42_c00443{letter-spacing:0.954720px;}
.ls6d_c00443{letter-spacing:0.961740px;}
.ls3f_c00443{letter-spacing:0.968760px;}
.ls31_c00443{letter-spacing:0.989820px;}
.ls13_c00443{letter-spacing:0.996840px;}
.ls64_c00443{letter-spacing:1.003860px;}
.ls9_c00443{letter-spacing:1.010880px;}
.ls14_c00443{letter-spacing:1.017900px;}
.ls1f_c00443{letter-spacing:1.053000px;}
.ls75_c00443{letter-spacing:1.060020px;}
.ls4f_c00443{letter-spacing:1.067040px;}
.lsc_c00443{letter-spacing:1.081080px;}
.ls55_c00443{letter-spacing:1.088100px;}
.ls3b_c00443{letter-spacing:1.095120px;}
.ls33_c00443{letter-spacing:1.102140px;}
.ls1d_c00443{letter-spacing:1.109160px;}
.ls7a_c00443{letter-spacing:1.116180px;}
.ls15_c00443{letter-spacing:1.123200px;}
.ls19_c00443{letter-spacing:1.137240px;}
.ls4a_c00443{letter-spacing:1.144260px;}
.ls70_c00443{letter-spacing:1.151280px;}
.ls2f_c00443{letter-spacing:1.158300px;}
.ls2c_c00443{letter-spacing:1.165320px;}
.ls20_c00443{letter-spacing:1.172340px;}
.ls1e_c00443{letter-spacing:1.179360px;}
.ls6_c00443{letter-spacing:1.186380px;}
.ls52_c00443{letter-spacing:1.200420px;}
.ls24_c00443{letter-spacing:1.207440px;}
.ls8_c00443{letter-spacing:1.214460px;}
.ls26_c00443{letter-spacing:1.221480px;}
.ls34_c00443{letter-spacing:1.235520px;}
.ls2_c00443{letter-spacing:1.242540px;}
.ls59_c00443{letter-spacing:1.249560px;}
.ls45_c00443{letter-spacing:1.256580px;}
.ls10_c00443{letter-spacing:1.263600px;}
.ls3_c00443{letter-spacing:1.277640px;}
.ls6a_c00443{letter-spacing:1.284660px;}
.ls4e_c00443{letter-spacing:1.291680px;}
.ls48_c00443{letter-spacing:1.305720px;}
.ls3c_c00443{letter-spacing:1.312740px;}
.ls5b_c00443{letter-spacing:1.319760px;}
.ls23_c00443{letter-spacing:1.326780px;}
.ls32_c00443{letter-spacing:1.340820px;}
.ls5c_c00443{letter-spacing:1.361880px;}
.lsa_c00443{letter-spacing:1.375920px;}
.ls4c_c00443{letter-spacing:1.382940px;}
.ls1c_c00443{letter-spacing:1.411020px;}
.ls1a_c00443{letter-spacing:1.418040px;}
.ls29_c00443{letter-spacing:1.425060px;}
.ls7_c00443{letter-spacing:1.432080px;}
.ls50_c00443{letter-spacing:1.439100px;}
.ls22_c00443{letter-spacing:1.460160px;}
.ls72_c00443{letter-spacing:1.467180px;}
.ls63_c00443{letter-spacing:1.481220px;}
.ls11_c00443{letter-spacing:1.488240px;}
.ls1b_c00443{letter-spacing:1.495260px;}
.lsa0_c00443{letter-spacing:1.502280px;}
.ls12_c00443{letter-spacing:1.530360px;}
.ls39_c00443{letter-spacing:1.628640px;}
.lsf_c00443{letter-spacing:1.684800px;}
.ls0_c00443{letter-spacing:1.691820px;}
.ls7b_c00443{letter-spacing:1.714980px;}
.ls2a_c00443{letter-spacing:1.719900px;}
.ls21_c00443{letter-spacing:1.804140px;}
.ls2e_c00443{letter-spacing:1.818180px;}
.ls3d_c00443{letter-spacing:1.819560px;}
.ls79_c00443{letter-spacing:1.839240px;}
.ls44_c00443{letter-spacing:1.867320px;}
.ls6c_c00443{letter-spacing:1.895400px;}
.ls46_c00443{letter-spacing:1.916460px;}
.ls58_c00443{letter-spacing:1.930500px;}
.ls38_c00443{letter-spacing:1.986660px;}
.lse_c00443{letter-spacing:1.993680px;}
.ls4d_c00443{letter-spacing:2.000700px;}
.ls5a_c00443{letter-spacing:2.127060px;}
.ls41_c00443{letter-spacing:2.148120px;}
.ls1_c00443{letter-spacing:2.183220px;}
.ls77_c00443{letter-spacing:2.681640px;}
.ls92_c00443{letter-spacing:2.702700px;}
.ls25_c00443{letter-spacing:2.857140px;}
.ls61_c00443{letter-spacing:3.257280px;}
.ls90_c00443{letter-spacing:3.510000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{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__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00443{word-spacing:0.000000px;}
._17_c00443{margin-left:-6.691140px;}
._e_c00443{margin-left:-5.252040px;}
._9_c00443{margin-left:-1.740960px;}
._d_c00443{width:1.815240px;}
._b_c00443{width:3.046680px;}
._a_c00443{width:4.282200px;}
._c_c00443{width:5.847660px;}
._0_c00443{width:7.321800px;}
._7_c00443{width:8.985600px;}
._10_c00443{width:10.228320px;}
._1_c00443{width:11.281140px;}
._8_c00443{width:13.239720px;}
._2_c00443{width:15.085980px;}
._3_c00443{width:16.370640px;}
._18_c00443{width:17.774460px;}
._6_c00443{width:18.939960px;}
._4_c00443{width:20.687940px;}
._5_c00443{width:21.762000px;}
._f_c00443{width:23.313420px;}
._15_c00443{width:25.440480px;}
._16_c00443{width:26.858520px;}
._11_c00443{width:28.746900px;}
._12_c00443{width:30.045600px;}
._14_c00443{width:31.070520px;}
._13_c00443{width:32.965920px;}
.fc0_c00443{color:transparent;}
.fs5_c00443{font-size:53.400000px;}
.fs0_c00443{font-size:60.600000px;}
.fs2_c00443{font-size:67.200000px;}
.fs1_c00443{font-size:70.200000px;}
.fs3_c00443{font-size:70.800000px;}
.fs4_c00443{font-size:73.800000px;}
.y0_c00443{bottom:0.000000px;}
.y24_c00443{bottom:106.560006px;}
.y23_c00443{bottom:153.712806px;}
.y22_c00443{bottom:184.320006px;}
.y21_c00443{bottom:184.321806px;}
.y20_c00443{bottom:215.281056px;}
.y1f_c00443{bottom:246.256806px;}
.y1e_c00443{bottom:277.216806px;}
.y1d_c00443{bottom:308.176356px;}
.y1b_c00443{bottom:338.409606px;}
.y1c_c00443{bottom:338.415006px;}
.y1a_c00443{bottom:369.736356px;}
.y19_c00443{bottom:399.976806px;}
.y18_c00443{bottom:430.935006px;}
.y17_c00443{bottom:430.937256px;}
.y15_c00443{bottom:462.605106px;}
.y16_c00443{bottom:462.615006px;}
.y14_c00443{bottom:525.241056px;}
.y13_c00443{bottom:555.848256px;}
.y12_c00443{bottom:587.176806px;}
.y11_c00443{bottom:618.135006px;}
.y10_c00443{bottom:618.138606px;}
.yf_c00443{bottom:649.096806px;}
.yd_c00443{bottom:680.050356px;}
.ye_c00443{bottom:680.055006px;}
.yc_c00443{bottom:710.639256px;}
.yb_c00443{bottom:741.615006px;}
.ya_c00443{bottom:772.568556px;}
.y9_c00443{bottom:803.509206px;}
.y8_c00443{bottom:865.092156px;}
.y7_c00443{bottom:896.050356px;}
.y6_c00443{bottom:926.640006px;}
.y5_c00443{bottom:957.252156px;}
.y4_c00443{bottom:988.210356px;}
.y3_c00443{bottom:1018.801056px;}
.y2_c00443{bottom:1080.735006px;}
.y1_c00443{bottom:1157.055006px;}
.h9_c00443{height:55.694531px;}
.h2_c00443{height:59.475586px;}
.h4_c00443{height:68.897461px;}
.h6_c00443{height:68.900461px;}
.h5_c00443{height:69.477558px;}
.h3_c00443{height:70.087500px;}
.h8_c00443{height:72.423464px;}
.h7_c00443{height:73.216406px;}
.h1_c00443{height:1263.000000px;}
.h0_c00443{height:1263.240006px;}
.w1_c00443{width:892.500000px;}
.w0_c00443{width:892.799998px;}
.x0_c00443{left:0.000000px;}
.x10_c00443{left:109.287598px;}
.x4_c00443{left:110.346898px;}
.x3_c00443{left:111.782399px;}
.x1_c00443{left:113.684999px;}
.xa_c00443{left:163.642948px;}
.x2_c00443{left:165.854399px;}
.x5_c00443{left:265.574998px;}
.x11_c00443{left:277.679999px;}
.xe_c00443{left:278.894999px;}
.x6_c00443{left:291.884999px;}
.x12_c00443{left:302.369999px;}
.xf_c00443{left:306.689999px;}
.x7_c00443{left:328.154999px;}
.x13_c00443{left:411.809999px;}
.x15_c00443{left:426.074998px;}
.x14_c00443{left:442.334999px;}
.x8_c00443{left:530.984998px;}
.x9_c00443{left:550.259999px;}
.xb_c00443{left:650.024999px;}
.xc_c00443{left:678.929999px;}
.xd_c00443{left:681.314999px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls8f_c00443{letter-spacing:-2.184000pt;}
.ls9b_c00443{letter-spacing:-1.971840pt;}
.ls99_c00443{letter-spacing:-1.959360pt;}
.ls91_c00443{letter-spacing:-1.572480pt;}
.ls9f_c00443{letter-spacing:-1.372800pt;}
.ls86_c00443{letter-spacing:-1.148160pt;}
.ls9e_c00443{letter-spacing:-1.110720pt;}
.ls93_c00443{letter-spacing:-1.048320pt;}
.ls81_c00443{letter-spacing:-0.842400pt;}
.ls8d_c00443{letter-spacing:-0.773760pt;}
.ls89_c00443{letter-spacing:-0.730080pt;}
.ls88_c00443{letter-spacing:-0.717600pt;}
.ls98_c00443{letter-spacing:-0.705120pt;}
.ls7e_c00443{letter-spacing:-0.680160pt;}
.ls85_c00443{letter-spacing:-0.611520pt;}
.ls82_c00443{letter-spacing:-0.455520pt;}
.ls80_c00443{letter-spacing:-0.418080pt;}
.ls95_c00443{letter-spacing:-0.411840pt;}
.ls9c_c00443{letter-spacing:-0.343200pt;}
.ls9d_c00443{letter-spacing:-0.324480pt;}
.ls8c_c00443{letter-spacing:-0.268320pt;}
.ls84_c00443{letter-spacing:-0.205920pt;}
.ls83_c00443{letter-spacing:-0.174720pt;}
.ls8b_c00443{letter-spacing:-0.151040pt;}
.ls9a_c00443{letter-spacing:-0.131040pt;}
.ls7c_c00443{letter-spacing:-0.093600pt;}
.ls7f_c00443{letter-spacing:-0.068640pt;}
.ls87_c00443{letter-spacing:-0.062400pt;}
.ls8e_c00443{letter-spacing:-0.012480pt;}
.ls96_c00443{letter-spacing:-0.006240pt;}
.ls7d_c00443{letter-spacing:0.000000pt;}
.ls51_c00443{letter-spacing:0.012480pt;}
.ls54_c00443{letter-spacing:0.018720pt;}
.ls6e_c00443{letter-spacing:0.062400pt;}
.lsa1_c00443{letter-spacing:0.071200pt;}
.lsb_c00443{letter-spacing:0.081120pt;}
.ls78_c00443{letter-spacing:0.087360pt;}
.ls5f_c00443{letter-spacing:0.093600pt;}
.ls8a_c00443{letter-spacing:0.131040pt;}
.ls37_c00443{letter-spacing:0.137280pt;}
.ls3e_c00443{letter-spacing:0.143520pt;}
.ls49_c00443{letter-spacing:0.149760pt;}
.ls97_c00443{letter-spacing:0.224640pt;}
.ls16_c00443{letter-spacing:0.274560pt;}
.ls60_c00443{letter-spacing:0.287040pt;}
.ls27_c00443{letter-spacing:0.305760pt;}
.ls68_c00443{letter-spacing:0.330720pt;}
.ls5d_c00443{letter-spacing:0.436800pt;}
.ls5e_c00443{letter-spacing:0.443040pt;}
.ls57_c00443{letter-spacing:0.449280pt;}
.ls43_c00443{letter-spacing:0.455520pt;}
.ls94_c00443{letter-spacing:0.461760pt;}
.ls71_c00443{letter-spacing:0.486720pt;}
.ls40_c00443{letter-spacing:0.492960pt;}
.ls28_c00443{letter-spacing:0.499200pt;}
.ls66_c00443{letter-spacing:0.511680pt;}
.ls47_c00443{letter-spacing:0.517920pt;}
.ls67_c00443{letter-spacing:0.530400pt;}
.ls65_c00443{letter-spacing:0.549120pt;}
.ls76_c00443{letter-spacing:0.592800pt;}
.ls5_c00443{letter-spacing:0.599040pt;}
.ls73_c00443{letter-spacing:0.611520pt;}
.ls35_c00443{letter-spacing:0.617760pt;}
.ls74_c00443{letter-spacing:0.624000pt;}
.ls6f_c00443{letter-spacing:0.648960pt;}
.ls6b_c00443{letter-spacing:0.673920pt;}
.ls53_c00443{letter-spacing:0.680160pt;}
.ls2d_c00443{letter-spacing:0.686400pt;}
.ls56_c00443{letter-spacing:0.717600pt;}
.ls4b_c00443{letter-spacing:0.736320pt;}
.ls36_c00443{letter-spacing:0.761280pt;}
.ls62_c00443{letter-spacing:0.773760pt;}
.ls2b_c00443{letter-spacing:0.786240pt;}
.ls3a_c00443{letter-spacing:0.798720pt;}
.lsd_c00443{letter-spacing:0.804960pt;}
.ls17_c00443{letter-spacing:0.811200pt;}
.ls69_c00443{letter-spacing:0.817440pt;}
.ls18_c00443{letter-spacing:0.823680pt;}
.ls30_c00443{letter-spacing:0.836160pt;}
.ls4_c00443{letter-spacing:0.842400pt;}
.ls42_c00443{letter-spacing:0.848640pt;}
.ls6d_c00443{letter-spacing:0.854880pt;}
.ls3f_c00443{letter-spacing:0.861120pt;}
.ls31_c00443{letter-spacing:0.879840pt;}
.ls13_c00443{letter-spacing:0.886080pt;}
.ls64_c00443{letter-spacing:0.892320pt;}
.ls9_c00443{letter-spacing:0.898560pt;}
.ls14_c00443{letter-spacing:0.904800pt;}
.ls1f_c00443{letter-spacing:0.936000pt;}
.ls75_c00443{letter-spacing:0.942240pt;}
.ls4f_c00443{letter-spacing:0.948480pt;}
.lsc_c00443{letter-spacing:0.960960pt;}
.ls55_c00443{letter-spacing:0.967200pt;}
.ls3b_c00443{letter-spacing:0.973440pt;}
.ls33_c00443{letter-spacing:0.979680pt;}
.ls1d_c00443{letter-spacing:0.985920pt;}
.ls7a_c00443{letter-spacing:0.992160pt;}
.ls15_c00443{letter-spacing:0.998400pt;}
.ls19_c00443{letter-spacing:1.010880pt;}
.ls4a_c00443{letter-spacing:1.017120pt;}
.ls70_c00443{letter-spacing:1.023360pt;}
.ls2f_c00443{letter-spacing:1.029600pt;}
.ls2c_c00443{letter-spacing:1.035840pt;}
.ls20_c00443{letter-spacing:1.042080pt;}
.ls1e_c00443{letter-spacing:1.048320pt;}
.ls6_c00443{letter-spacing:1.054560pt;}
.ls52_c00443{letter-spacing:1.067040pt;}
.ls24_c00443{letter-spacing:1.073280pt;}
.ls8_c00443{letter-spacing:1.079520pt;}
.ls26_c00443{letter-spacing:1.085760pt;}
.ls34_c00443{letter-spacing:1.098240pt;}
.ls2_c00443{letter-spacing:1.104480pt;}
.ls59_c00443{letter-spacing:1.110720pt;}
.ls45_c00443{letter-spacing:1.116960pt;}
.ls10_c00443{letter-spacing:1.123200pt;}
.ls3_c00443{letter-spacing:1.135680pt;}
.ls6a_c00443{letter-spacing:1.141920pt;}
.ls4e_c00443{letter-spacing:1.148160pt;}
.ls48_c00443{letter-spacing:1.160640pt;}
.ls3c_c00443{letter-spacing:1.166880pt;}
.ls5b_c00443{letter-spacing:1.173120pt;}
.ls23_c00443{letter-spacing:1.179360pt;}
.ls32_c00443{letter-spacing:1.191840pt;}
.ls5c_c00443{letter-spacing:1.210560pt;}
.lsa_c00443{letter-spacing:1.223040pt;}
.ls4c_c00443{letter-spacing:1.229280pt;}
.ls1c_c00443{letter-spacing:1.254240pt;}
.ls1a_c00443{letter-spacing:1.260480pt;}
.ls29_c00443{letter-spacing:1.266720pt;}
.ls7_c00443{letter-spacing:1.272960pt;}
.ls50_c00443{letter-spacing:1.279200pt;}
.ls22_c00443{letter-spacing:1.297920pt;}
.ls72_c00443{letter-spacing:1.304160pt;}
.ls63_c00443{letter-spacing:1.316640pt;}
.ls11_c00443{letter-spacing:1.322880pt;}
.ls1b_c00443{letter-spacing:1.329120pt;}
.lsa0_c00443{letter-spacing:1.335360pt;}
.ls12_c00443{letter-spacing:1.360320pt;}
.ls39_c00443{letter-spacing:1.447680pt;}
.lsf_c00443{letter-spacing:1.497600pt;}
.ls0_c00443{letter-spacing:1.503840pt;}
.ls7b_c00443{letter-spacing:1.524427pt;}
.ls2a_c00443{letter-spacing:1.528800pt;}
.ls21_c00443{letter-spacing:1.603680pt;}
.ls2e_c00443{letter-spacing:1.616160pt;}
.ls3d_c00443{letter-spacing:1.617387pt;}
.ls79_c00443{letter-spacing:1.634880pt;}
.ls44_c00443{letter-spacing:1.659840pt;}
.ls6c_c00443{letter-spacing:1.684800pt;}
.ls46_c00443{letter-spacing:1.703520pt;}
.ls58_c00443{letter-spacing:1.716000pt;}
.ls38_c00443{letter-spacing:1.765920pt;}
.lse_c00443{letter-spacing:1.772160pt;}
.ls4d_c00443{letter-spacing:1.778400pt;}
.ls5a_c00443{letter-spacing:1.890720pt;}
.ls41_c00443{letter-spacing:1.909440pt;}
.ls1_c00443{letter-spacing:1.940640pt;}
.ls77_c00443{letter-spacing:2.383680pt;}
.ls92_c00443{letter-spacing:2.402400pt;}
.ls25_c00443{letter-spacing:2.539680pt;}
.ls61_c00443{letter-spacing:2.895360pt;}
.ls90_c00443{letter-spacing:3.120000pt;}
.ws0_c00443{word-spacing:0.000000pt;}
._17_c00443{margin-left:-5.947680pt;}
._e_c00443{margin-left:-4.668480pt;}
._9_c00443{margin-left:-1.547520pt;}
._d_c00443{width:1.613547pt;}
._b_c00443{width:2.708160pt;}
._a_c00443{width:3.806400pt;}
._c_c00443{width:5.197920pt;}
._0_c00443{width:6.508267pt;}
._7_c00443{width:7.987200pt;}
._10_c00443{width:9.091840pt;}
._1_c00443{width:10.027680pt;}
._8_c00443{width:11.768640pt;}
._2_c00443{width:13.409760pt;}
._3_c00443{width:14.551680pt;}
._18_c00443{width:15.799520pt;}
._6_c00443{width:16.835520pt;}
._4_c00443{width:18.389280pt;}
._5_c00443{width:19.344000pt;}
._f_c00443{width:20.723040pt;}
._15_c00443{width:22.613760pt;}
._16_c00443{width:23.874240pt;}
._11_c00443{width:25.552800pt;}
._12_c00443{width:26.707200pt;}
._14_c00443{width:27.618240pt;}
._13_c00443{width:29.303040pt;}
.fs5_c00443{font-size:47.466667pt;}
.fs0_c00443{font-size:53.866667pt;}
.fs2_c00443{font-size:59.733333pt;}
.fs1_c00443{font-size:62.400000pt;}
.fs3_c00443{font-size:62.933333pt;}
.fs4_c00443{font-size:65.600000pt;}
.y0_c00443{bottom:0.000000pt;}
.y24_c00443{bottom:94.720005pt;}
.y23_c00443{bottom:136.633605pt;}
.y22_c00443{bottom:163.840005pt;}
.y21_c00443{bottom:163.841605pt;}
.y20_c00443{bottom:191.360939pt;}
.y1f_c00443{bottom:218.894939pt;}
.y1e_c00443{bottom:246.414939pt;}
.y1d_c00443{bottom:273.934539pt;}
.y1b_c00443{bottom:300.808539pt;}
.y1c_c00443{bottom:300.813339pt;}
.y1a_c00443{bottom:328.654539pt;}
.y19_c00443{bottom:355.534939pt;}
.y18_c00443{bottom:383.053339pt;}
.y17_c00443{bottom:383.055339pt;}
.y15_c00443{bottom:411.204539pt;}
.y16_c00443{bottom:411.213339pt;}
.y14_c00443{bottom:466.880939pt;}
.y13_c00443{bottom:494.087339pt;}
.y12_c00443{bottom:521.934939pt;}
.y11_c00443{bottom:549.453339pt;}
.y10_c00443{bottom:549.456539pt;}
.yf_c00443{bottom:576.974939pt;}
.yd_c00443{bottom:604.489205pt;}
.ye_c00443{bottom:604.493339pt;}
.yc_c00443{bottom:631.679339pt;}
.yb_c00443{bottom:659.213339pt;}
.ya_c00443{bottom:686.727605pt;}
.y9_c00443{bottom:714.230405pt;}
.y8_c00443{bottom:768.970805pt;}
.y7_c00443{bottom:796.489205pt;}
.y6_c00443{bottom:823.680005pt;}
.y5_c00443{bottom:850.890805pt;}
.y4_c00443{bottom:878.409205pt;}
.y3_c00443{bottom:905.600939pt;}
.y2_c00443{bottom:960.653339pt;}
.y1_c00443{bottom:1028.493339pt;}
.h9_c00443{height:49.506250pt;}
.h2_c00443{height:52.867187pt;}
.h4_c00443{height:61.242187pt;}
.h6_c00443{height:61.244854pt;}
.h5_c00443{height:61.757829pt;}
.h3_c00443{height:62.300000pt;}
.h8_c00443{height:64.376413pt;}
.h7_c00443{height:65.081250pt;}
.h1_c00443{height:1122.666667pt;}
.h0_c00443{height:1122.880005pt;}
.w1_c00443{width:793.333333pt;}
.w0_c00443{width:793.599999pt;}
.x0_c00443{left:0.000000pt;}
.x10_c00443{left:97.144532pt;}
.x4_c00443{left:98.086132pt;}
.x3_c00443{left:99.362132pt;}
.x1_c00443{left:101.053332pt;}
.xa_c00443{left:145.460399pt;}
.x2_c00443{left:147.426132pt;}
.x5_c00443{left:236.066665pt;}
.x11_c00443{left:246.826665pt;}
.xe_c00443{left:247.906665pt;}
.x6_c00443{left:259.453332pt;}
.x12_c00443{left:268.773332pt;}
.xf_c00443{left:272.613332pt;}
.x7_c00443{left:291.693332pt;}
.x13_c00443{left:366.053332pt;}
.x15_c00443{left:378.733332pt;}
.x14_c00443{left:393.186665pt;}
.x8_c00443{left:471.986665pt;}
.x9_c00443{left:489.119999pt;}
.xb_c00443{left:577.799999pt;}
.xc_c00443{left:603.493332pt;}
.xd_c00443{left:605.613332pt;}
}





/* 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_c00444 {
    display:none;
  }
  .loading-indicator_c00444.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00444 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_c00444 { 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_c00444" -> "#page-container .classname_c00444")
 */
.pf_c00444 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00444 { /* 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_c00444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00444 { /* 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_c00444 { /* 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_c00444 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00444 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00444 {overflow:visible;}
  }
}
.c_c00444 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00444 { /* 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_c00444:after { /* webkit #35443 */
  content: '';
}
.t_c00444:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00444 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 */
}
.__c00444 { /* 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_c00444 { /* info for Javascript */
  display:none;
}
.l_c00444 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00444 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00444 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00444: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_c00444 {
    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_c00444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00444.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_c00444 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00444{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00444;src:url('chunks/assets/font_299f58a9d904ae7bbbd4259e.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.284668;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_c00444;src:url('chunks/assets/font_96baa264a1cc390e5e2eb457.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;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_c00444;src:url('chunks/assets/font_38eb5432cef96dca527fa4e2.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.284180;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;}
.m5_c00444{transform:matrix(0.234194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234194,0.000000,0.000000,0.250000,0,0);}
.m3_c00444{transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241103,0.000000,0.000000,0.250000,0,0);}
.m7_c00444{transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246633,0.000000,0.000000,0.250000,0,0);}
.m8_c00444{transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);}
.m6_c00444{transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);}
.m9_c00444{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m4_c00444{transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);}
.m0_c00444{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);}
.m2_c00444{transform:matrix(0.285300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285300,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls98_c00444{letter-spacing:-2.436000px;}
.ls7d_c00444{letter-spacing:-2.415000px;}
.ls9b_c00444{letter-spacing:-2.067120px;}
.ls92_c00444{letter-spacing:-2.046240px;}
.lsa1_c00444{letter-spacing:-1.995000px;}
.ls95_c00444{letter-spacing:-1.872240px;}
.ls8a_c00444{letter-spacing:-1.823520px;}
.ls8f_c00444{letter-spacing:-1.816560px;}
.ls80_c00444{letter-spacing:-1.661640px;}
.ls7b_c00444{letter-spacing:-1.649520px;}
.lsa0_c00444{letter-spacing:-1.566000px;}
.ls85_c00444{letter-spacing:-1.531200px;}
.ls81_c00444{letter-spacing:-1.426800px;}
.ls97_c00444{letter-spacing:-1.218000px;}
.ls9e_c00444{letter-spacing:-1.169280px;}
.ls9c_c00444{letter-spacing:-1.155360px;}
.ls9a_c00444{letter-spacing:-0.856080px;}
.ls8e_c00444{letter-spacing:-0.758640px;}
.ls88_c00444{letter-spacing:-0.619440px;}
.ls9d_c00444{letter-spacing:-0.487200px;}
.ls93_c00444{letter-spacing:-0.431520px;}
.ls94_c00444{letter-spacing:-0.410640px;}
.ls90_c00444{letter-spacing:-0.382800px;}
.ls84_c00444{letter-spacing:-0.313200px;}
.ls87_c00444{letter-spacing:-0.257520px;}
.ls82_c00444{letter-spacing:-0.208800px;}
.ls96_c00444{letter-spacing:-0.160080px;}
.ls9f_c00444{letter-spacing:-0.139200px;}
.ls7f_c00444{letter-spacing:-0.104400px;}
.ls7a_c00444{letter-spacing:-0.090480px;}
.ls91_c00444{letter-spacing:-0.083520px;}
.ls89_c00444{letter-spacing:-0.006960px;}
.ls83_c00444{letter-spacing:0.000000px;}
.ls20_c00444{letter-spacing:0.006960px;}
.ls2b_c00444{letter-spacing:0.097440px;}
.lsa_c00444{letter-spacing:0.124440px;}
.ls53_c00444{letter-spacing:0.132240px;}
.ls41_c00444{letter-spacing:0.160080px;}
.ls3e_c00444{letter-spacing:0.222720px;}
.ls3a_c00444{letter-spacing:0.229680px;}
.ls44_c00444{letter-spacing:0.264480px;}
.ls70_c00444{letter-spacing:0.271440px;}
.ls4c_c00444{letter-spacing:0.278400px;}
.ls28_c00444{letter-spacing:0.320160px;}
.ls1a_c00444{letter-spacing:0.327120px;}
.ls29_c00444{letter-spacing:0.334080px;}
.ls5a_c00444{letter-spacing:0.361920px;}
.ls75_c00444{letter-spacing:0.396720px;}
.ls86_c00444{letter-spacing:0.410640px;}
.ls45_c00444{letter-spacing:0.452400px;}
.ls8d_c00444{letter-spacing:0.459360px;}
.ls48_c00444{letter-spacing:0.473280px;}
.ls72_c00444{letter-spacing:0.480240px;}
.ls50_c00444{letter-spacing:0.494160px;}
.ls1f_c00444{letter-spacing:0.535920px;}
.ls1b_c00444{letter-spacing:0.542880px;}
.ls47_c00444{letter-spacing:0.570720px;}
.ls22_c00444{letter-spacing:0.584640px;}
.lsb_c00444{letter-spacing:0.605520px;}
.ls3c_c00444{letter-spacing:0.619440px;}
.ls51_c00444{letter-spacing:0.626400px;}
.ls65_c00444{letter-spacing:0.647280px;}
.ls6f_c00444{letter-spacing:0.682080px;}
.ls27_c00444{letter-spacing:0.689040px;}
.ls1e_c00444{letter-spacing:0.696000px;}
.ls8c_c00444{letter-spacing:0.709920px;}
.ls31_c00444{letter-spacing:0.716880px;}
.ls17_c00444{letter-spacing:0.723840px;}
.ls24_c00444{letter-spacing:0.737760px;}
.ls3d_c00444{letter-spacing:0.744720px;}
.ls8_c00444{letter-spacing:0.765600px;}
.ls6a_c00444{letter-spacing:0.772560px;}
.ls34_c00444{letter-spacing:0.779520px;}
.ls30_c00444{letter-spacing:0.786480px;}
.ls52_c00444{letter-spacing:0.793440px;}
.ls11_c00444{letter-spacing:0.800400px;}
.ls18_c00444{letter-spacing:0.814320px;}
.lsd_c00444{letter-spacing:0.849120px;}
.ls59_c00444{letter-spacing:0.856080px;}
.ls5d_c00444{letter-spacing:0.870000px;}
.ls33_c00444{letter-spacing:0.876960px;}
.ls0_c00444{letter-spacing:0.883920px;}
.ls77_c00444{letter-spacing:0.890880px;}
.ls10_c00444{letter-spacing:0.897840px;}
.ls62_c00444{letter-spacing:0.904800px;}
.lsf_c00444{letter-spacing:0.918720px;}
.ls19_c00444{letter-spacing:0.925680px;}
.ls14_c00444{letter-spacing:0.932640px;}
.ls76_c00444{letter-spacing:0.939600px;}
.ls2c_c00444{letter-spacing:0.946560px;}
.ls66_c00444{letter-spacing:0.953520px;}
.ls64_c00444{letter-spacing:0.960480px;}
.ls3_c00444{letter-spacing:0.981360px;}
.ls4f_c00444{letter-spacing:0.988320px;}
.ls68_c00444{letter-spacing:0.995280px;}
.ls60_c00444{letter-spacing:1.002240px;}
.ls2f_c00444{letter-spacing:1.009200px;}
.ls1_c00444{letter-spacing:1.016160px;}
.ls2d_c00444{letter-spacing:1.023120px;}
.ls23_c00444{letter-spacing:1.030080px;}
.ls40_c00444{letter-spacing:1.037040px;}
.ls32_c00444{letter-spacing:1.044000px;}
.ls26_c00444{letter-spacing:1.050960px;}
.ls5_c00444{letter-spacing:1.057920px;}
.ls3b_c00444{letter-spacing:1.064880px;}
.ls61_c00444{letter-spacing:1.071840px;}
.ls73_c00444{letter-spacing:1.078800px;}
.ls43_c00444{letter-spacing:1.085760px;}
.ls8b_c00444{letter-spacing:1.092720px;}
.ls57_c00444{letter-spacing:1.099680px;}
.ls5b_c00444{letter-spacing:1.106640px;}
.ls4d_c00444{letter-spacing:1.127520px;}
.ls6c_c00444{letter-spacing:1.141440px;}
.ls37_c00444{letter-spacing:1.155360px;}
.ls1c_c00444{letter-spacing:1.162320px;}
.lse_c00444{letter-spacing:1.176240px;}
.ls2a_c00444{letter-spacing:1.183200px;}
.ls54_c00444{letter-spacing:1.197120px;}
.ls5f_c00444{letter-spacing:1.211040px;}
.ls7_c00444{letter-spacing:1.231920px;}
.ls71_c00444{letter-spacing:1.238880px;}
.ls49_c00444{letter-spacing:1.252800px;}
.ls1d_c00444{letter-spacing:1.273680px;}
.ls16_c00444{letter-spacing:1.280640px;}
.ls9_c00444{letter-spacing:1.301520px;}
.ls56_c00444{letter-spacing:1.322400px;}
.ls36_c00444{letter-spacing:1.336320px;}
.ls2_c00444{letter-spacing:1.350240px;}
.ls46_c00444{letter-spacing:1.357200px;}
.ls13_c00444{letter-spacing:1.364160px;}
.ls3f_c00444{letter-spacing:1.378080px;}
.ls78_c00444{letter-spacing:1.385040px;}
.ls38_c00444{letter-spacing:1.398960px;}
.ls69_c00444{letter-spacing:1.426800px;}
.ls35_c00444{letter-spacing:1.433760px;}
.ls74_c00444{letter-spacing:1.454640px;}
.ls6d_c00444{letter-spacing:1.468560px;}
.ls58_c00444{letter-spacing:1.482480px;}
.ls15_c00444{letter-spacing:1.510320px;}
.ls2e_c00444{letter-spacing:1.552080px;}
.ls79_c00444{letter-spacing:1.557420px;}
.ls21_c00444{letter-spacing:1.579920px;}
.ls6_c00444{letter-spacing:1.593840px;}
.ls99_c00444{letter-spacing:1.600800px;}
.ls6e_c00444{letter-spacing:1.614720px;}
.ls12_c00444{letter-spacing:1.628640px;}
.ls4a_c00444{letter-spacing:1.642560px;}
.ls39_c00444{letter-spacing:1.649520px;}
.ls4_c00444{letter-spacing:1.663440px;}
.ls6b_c00444{letter-spacing:1.691280px;}
.ls5e_c00444{letter-spacing:1.802640px;}
.ls4b_c00444{letter-spacing:1.816560px;}
.ls4e_c00444{letter-spacing:1.879200px;}
.lsc_c00444{letter-spacing:1.983600px;}
.ls5c_c00444{letter-spacing:2.018400px;}
.ls63_c00444{letter-spacing:2.088000px;}
.ls55_c00444{letter-spacing:2.442960px;}
.ls67_c00444{letter-spacing:2.477760px;}
.ls25_c00444{letter-spacing:2.839680px;}
.ls7c_c00444{letter-spacing:2.888400px;}
.ls42_c00444{letter-spacing:3.257280px;}
.ls7e_c00444{letter-spacing:3.480000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{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__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00444{word-spacing:0.000000px;}
._f_c00444{margin-left:-2.743440px;}
._10_c00444{margin-left:-1.105200px;}
._2_c00444{width:1.656480px;}
._5_c00444{width:3.480000px;}
._3_c00444{width:4.704960px;}
._0_c00444{width:6.264000px;}
._9_c00444{width:7.294080px;}
._6_c00444{width:8.498160px;}
._4_c00444{width:10.446960px;}
._1_c00444{width:12.089520px;}
._7_c00444{width:13.210080px;}
._11_c00444{width:14.518560px;}
._13_c00444{width:16.279440px;}
._14_c00444{width:17.991600px;}
._8_c00444{width:20.886960px;}
._12_c00444{width:22.689600px;}
._c_c00444{width:24.652320px;}
._a_c00444{width:26.239200px;}
._b_c00444{width:27.798240px;}
._e_c00444{width:29.663520px;}
._d_c00444{width:31.772400px;}
._15_c00444{width:33.978720px;}
.fc0_c00444{color:transparent;}
.fs4_c00444{font-size:57.000000px;}
.fs0_c00444{font-size:60.600000px;}
.fs2_c00444{font-size:69.000000px;}
.fs1_c00444{font-size:69.600000px;}
.fs3_c00444{font-size:73.200000px;}
.y0_c00444{bottom:0.000000px;}
.y27_c00444{bottom:113.760006px;}
.y26_c00444{bottom:162.720006px;}
.y25_c00444{bottom:162.724206px;}
.y24_c00444{bottom:192.982806px;}
.y23_c00444{bottom:223.920006px;}
.y22_c00444{bottom:255.255006px;}
.y21_c00444{bottom:255.256806px;}
.y20_c00444{bottom:285.846006px;}
.y1f_c00444{bottom:316.800606px;}
.y1e_c00444{bottom:377.648406px;}
.y1d_c00444{bottom:408.255006px;}
.y1c_c00444{bottom:408.257406px;}
.y1b_c00444{bottom:439.560006px;}
.y1a_c00444{bottom:439.568406px;}
.y19_c00444{bottom:470.175006px;}
.y18_c00444{bottom:470.180406px;}
.y16_c00444{bottom:501.124206px;}
.y17_c00444{bottom:501.135006px;}
.y15_c00444{bottom:531.713406px;}
.y14_c00444{bottom:562.320006px;}
.y13_c00444{bottom:562.325406px;}
.y12_c00444{bottom:593.283006px;}
.y11_c00444{bottom:624.259206px;}
.y10_c00444{bottom:654.483006px;}
.yf_c00444{bottom:685.462806px;}
.ye_c00444{bottom:716.403006px;}
.yd_c00444{bottom:747.367806px;}
.yc_c00444{bottom:808.215606px;}
.yb_c00444{bottom:839.901006px;}
.ya_c00444{bottom:870.490206px;}
.y9_c00444{bottom:900.748806px;}
.y8_c00444{bottom:931.338006px;}
.y7_c00444{bottom:961.944606px;}
.y6_c00444{bottom:992.533806px;}
.y5_c00444{bottom:1023.140406px;}
.y4_c00444{bottom:1054.095006px;}
.y3_c00444{bottom:1054.100406px;}
.y2_c00444{bottom:1085.055006px;}
.y1_c00444{bottom:1160.640006px;}
.h8_c00444{height:55.942383px;}
.h2_c00444{height:59.475586px;}
.h3_c00444{height:68.308594px;}
.h6_c00444{height:68.337394px;}
.h7_c00444{height:68.351794px;}
.h5_c00444{height:71.806055px;}
.h4_c00444{height:71.964844px;}
.h1_c00444{height:1263.000000px;}
.h0_c00444{height:1263.240006px;}
.w1_c00444{width:892.500000px;}
.w0_c00444{width:892.799998px;}
.x0_c00444{left:0.000000px;}
.x1_c00444{left:109.364998px;}
.x2_c00444{left:140.219999px;}
.x3_c00444{left:159.554998px;}
.x6_c00444{left:162.938999px;}
.x12_c00444{left:278.414999px;}
.x4_c00444{left:292.109999px;}
.x13_c00444{left:299.714999px;}
.xf_c00444{left:316.199999px;}
.x5_c00444{left:337.154999px;}
.x10_c00444{left:339.089999px;}
.x16_c00444{left:422.834999px;}
.x14_c00444{left:438.089998px;}
.x15_c00444{left:470.369999px;}
.xb_c00444{left:528.764998px;}
.xc_c00444{left:546.659999px;}
.x9_c00444{left:590.369999px;}
.xa_c00444{left:620.039999px;}
.x7_c00444{left:649.214998px;}
.xd_c00444{left:666.119999px;}
.x8_c00444{left:667.634999px;}
.xe_c00444{left:687.749998px;}
.x11_c00444{left:745.319999px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls98_c00444{letter-spacing:-2.165333pt;}
.ls7d_c00444{letter-spacing:-2.146667pt;}
.ls9b_c00444{letter-spacing:-1.837440pt;}
.ls92_c00444{letter-spacing:-1.818880pt;}
.lsa1_c00444{letter-spacing:-1.773333pt;}
.ls95_c00444{letter-spacing:-1.664213pt;}
.ls8a_c00444{letter-spacing:-1.620907pt;}
.ls8f_c00444{letter-spacing:-1.614720pt;}
.ls80_c00444{letter-spacing:-1.477013pt;}
.ls7b_c00444{letter-spacing:-1.466240pt;}
.lsa0_c00444{letter-spacing:-1.392000pt;}
.ls85_c00444{letter-spacing:-1.361067pt;}
.ls81_c00444{letter-spacing:-1.268267pt;}
.ls97_c00444{letter-spacing:-1.082667pt;}
.ls9e_c00444{letter-spacing:-1.039360pt;}
.ls9c_c00444{letter-spacing:-1.026987pt;}
.ls9a_c00444{letter-spacing:-0.760960pt;}
.ls8e_c00444{letter-spacing:-0.674347pt;}
.ls88_c00444{letter-spacing:-0.550613pt;}
.ls9d_c00444{letter-spacing:-0.433067pt;}
.ls93_c00444{letter-spacing:-0.383573pt;}
.ls94_c00444{letter-spacing:-0.365013pt;}
.ls90_c00444{letter-spacing:-0.340267pt;}
.ls84_c00444{letter-spacing:-0.278400pt;}
.ls87_c00444{letter-spacing:-0.228907pt;}
.ls82_c00444{letter-spacing:-0.185600pt;}
.ls96_c00444{letter-spacing:-0.142293pt;}
.ls9f_c00444{letter-spacing:-0.123733pt;}
.ls7f_c00444{letter-spacing:-0.092800pt;}
.ls7a_c00444{letter-spacing:-0.080427pt;}
.ls91_c00444{letter-spacing:-0.074240pt;}
.ls89_c00444{letter-spacing:-0.006187pt;}
.ls83_c00444{letter-spacing:0.000000pt;}
.ls20_c00444{letter-spacing:0.006187pt;}
.ls2b_c00444{letter-spacing:0.086613pt;}
.lsa_c00444{letter-spacing:0.110613pt;}
.ls53_c00444{letter-spacing:0.117547pt;}
.ls41_c00444{letter-spacing:0.142293pt;}
.ls3e_c00444{letter-spacing:0.197973pt;}
.ls3a_c00444{letter-spacing:0.204160pt;}
.ls44_c00444{letter-spacing:0.235093pt;}
.ls70_c00444{letter-spacing:0.241280pt;}
.ls4c_c00444{letter-spacing:0.247467pt;}
.ls28_c00444{letter-spacing:0.284587pt;}
.ls1a_c00444{letter-spacing:0.290773pt;}
.ls29_c00444{letter-spacing:0.296960pt;}
.ls5a_c00444{letter-spacing:0.321707pt;}
.ls75_c00444{letter-spacing:0.352640pt;}
.ls86_c00444{letter-spacing:0.365013pt;}
.ls45_c00444{letter-spacing:0.402133pt;}
.ls8d_c00444{letter-spacing:0.408320pt;}
.ls48_c00444{letter-spacing:0.420693pt;}
.ls72_c00444{letter-spacing:0.426880pt;}
.ls50_c00444{letter-spacing:0.439253pt;}
.ls1f_c00444{letter-spacing:0.476373pt;}
.ls1b_c00444{letter-spacing:0.482560pt;}
.ls47_c00444{letter-spacing:0.507307pt;}
.ls22_c00444{letter-spacing:0.519680pt;}
.lsb_c00444{letter-spacing:0.538240pt;}
.ls3c_c00444{letter-spacing:0.550613pt;}
.ls51_c00444{letter-spacing:0.556800pt;}
.ls65_c00444{letter-spacing:0.575360pt;}
.ls6f_c00444{letter-spacing:0.606293pt;}
.ls27_c00444{letter-spacing:0.612480pt;}
.ls1e_c00444{letter-spacing:0.618667pt;}
.ls8c_c00444{letter-spacing:0.631040pt;}
.ls31_c00444{letter-spacing:0.637227pt;}
.ls17_c00444{letter-spacing:0.643413pt;}
.ls24_c00444{letter-spacing:0.655787pt;}
.ls3d_c00444{letter-spacing:0.661973pt;}
.ls8_c00444{letter-spacing:0.680533pt;}
.ls6a_c00444{letter-spacing:0.686720pt;}
.ls34_c00444{letter-spacing:0.692907pt;}
.ls30_c00444{letter-spacing:0.699093pt;}
.ls52_c00444{letter-spacing:0.705280pt;}
.ls11_c00444{letter-spacing:0.711467pt;}
.ls18_c00444{letter-spacing:0.723840pt;}
.lsd_c00444{letter-spacing:0.754773pt;}
.ls59_c00444{letter-spacing:0.760960pt;}
.ls5d_c00444{letter-spacing:0.773333pt;}
.ls33_c00444{letter-spacing:0.779520pt;}
.ls0_c00444{letter-spacing:0.785707pt;}
.ls77_c00444{letter-spacing:0.791893pt;}
.ls10_c00444{letter-spacing:0.798080pt;}
.ls62_c00444{letter-spacing:0.804267pt;}
.lsf_c00444{letter-spacing:0.816640pt;}
.ls19_c00444{letter-spacing:0.822827pt;}
.ls14_c00444{letter-spacing:0.829013pt;}
.ls76_c00444{letter-spacing:0.835200pt;}
.ls2c_c00444{letter-spacing:0.841387pt;}
.ls66_c00444{letter-spacing:0.847573pt;}
.ls64_c00444{letter-spacing:0.853760pt;}
.ls3_c00444{letter-spacing:0.872320pt;}
.ls4f_c00444{letter-spacing:0.878507pt;}
.ls68_c00444{letter-spacing:0.884693pt;}
.ls60_c00444{letter-spacing:0.890880pt;}
.ls2f_c00444{letter-spacing:0.897067pt;}
.ls1_c00444{letter-spacing:0.903253pt;}
.ls2d_c00444{letter-spacing:0.909440pt;}
.ls23_c00444{letter-spacing:0.915627pt;}
.ls40_c00444{letter-spacing:0.921813pt;}
.ls32_c00444{letter-spacing:0.928000pt;}
.ls26_c00444{letter-spacing:0.934187pt;}
.ls5_c00444{letter-spacing:0.940373pt;}
.ls3b_c00444{letter-spacing:0.946560pt;}
.ls61_c00444{letter-spacing:0.952747pt;}
.ls73_c00444{letter-spacing:0.958933pt;}
.ls43_c00444{letter-spacing:0.965120pt;}
.ls8b_c00444{letter-spacing:0.971307pt;}
.ls57_c00444{letter-spacing:0.977493pt;}
.ls5b_c00444{letter-spacing:0.983680pt;}
.ls4d_c00444{letter-spacing:1.002240pt;}
.ls6c_c00444{letter-spacing:1.014613pt;}
.ls37_c00444{letter-spacing:1.026987pt;}
.ls1c_c00444{letter-spacing:1.033173pt;}
.lse_c00444{letter-spacing:1.045547pt;}
.ls2a_c00444{letter-spacing:1.051733pt;}
.ls54_c00444{letter-spacing:1.064107pt;}
.ls5f_c00444{letter-spacing:1.076480pt;}
.ls7_c00444{letter-spacing:1.095040pt;}
.ls71_c00444{letter-spacing:1.101227pt;}
.ls49_c00444{letter-spacing:1.113600pt;}
.ls1d_c00444{letter-spacing:1.132160pt;}
.ls16_c00444{letter-spacing:1.138347pt;}
.ls9_c00444{letter-spacing:1.156907pt;}
.ls56_c00444{letter-spacing:1.175467pt;}
.ls36_c00444{letter-spacing:1.187840pt;}
.ls2_c00444{letter-spacing:1.200213pt;}
.ls46_c00444{letter-spacing:1.206400pt;}
.ls13_c00444{letter-spacing:1.212587pt;}
.ls3f_c00444{letter-spacing:1.224960pt;}
.ls78_c00444{letter-spacing:1.231147pt;}
.ls38_c00444{letter-spacing:1.243520pt;}
.ls69_c00444{letter-spacing:1.268267pt;}
.ls35_c00444{letter-spacing:1.274453pt;}
.ls74_c00444{letter-spacing:1.293013pt;}
.ls6d_c00444{letter-spacing:1.305387pt;}
.ls58_c00444{letter-spacing:1.317760pt;}
.ls15_c00444{letter-spacing:1.342507pt;}
.ls2e_c00444{letter-spacing:1.379627pt;}
.ls79_c00444{letter-spacing:1.384373pt;}
.ls21_c00444{letter-spacing:1.404373pt;}
.ls6_c00444{letter-spacing:1.416747pt;}
.ls99_c00444{letter-spacing:1.422933pt;}
.ls6e_c00444{letter-spacing:1.435307pt;}
.ls12_c00444{letter-spacing:1.447680pt;}
.ls4a_c00444{letter-spacing:1.460053pt;}
.ls39_c00444{letter-spacing:1.466240pt;}
.ls4_c00444{letter-spacing:1.478613pt;}
.ls6b_c00444{letter-spacing:1.503360pt;}
.ls5e_c00444{letter-spacing:1.602347pt;}
.ls4b_c00444{letter-spacing:1.614720pt;}
.ls4e_c00444{letter-spacing:1.670400pt;}
.lsc_c00444{letter-spacing:1.763200pt;}
.ls5c_c00444{letter-spacing:1.794133pt;}
.ls63_c00444{letter-spacing:1.856000pt;}
.ls55_c00444{letter-spacing:2.171520pt;}
.ls67_c00444{letter-spacing:2.202453pt;}
.ls25_c00444{letter-spacing:2.524160pt;}
.ls7c_c00444{letter-spacing:2.567467pt;}
.ls42_c00444{letter-spacing:2.895360pt;}
.ls7e_c00444{letter-spacing:3.093333pt;}
.ws0_c00444{word-spacing:0.000000pt;}
._f_c00444{margin-left:-2.438613pt;}
._10_c00444{margin-left:-0.982400pt;}
._2_c00444{width:1.472427pt;}
._5_c00444{width:3.093333pt;}
._3_c00444{width:4.182187pt;}
._0_c00444{width:5.568000pt;}
._9_c00444{width:6.483627pt;}
._6_c00444{width:7.553920pt;}
._4_c00444{width:9.286187pt;}
._1_c00444{width:10.746240pt;}
._7_c00444{width:11.742293pt;}
._11_c00444{width:12.905387pt;}
._13_c00444{width:14.470613pt;}
._14_c00444{width:15.992533pt;}
._8_c00444{width:18.566187pt;}
._12_c00444{width:20.168533pt;}
._c_c00444{width:21.913173pt;}
._a_c00444{width:23.323733pt;}
._b_c00444{width:24.709547pt;}
._e_c00444{width:26.367573pt;}
._d_c00444{width:28.242133pt;}
._15_c00444{width:30.203307pt;}
.fs4_c00444{font-size:50.666667pt;}
.fs0_c00444{font-size:53.866667pt;}
.fs2_c00444{font-size:61.333333pt;}
.fs1_c00444{font-size:61.866667pt;}
.fs3_c00444{font-size:65.066667pt;}
.y0_c00444{bottom:0.000000pt;}
.y27_c00444{bottom:101.120005pt;}
.y26_c00444{bottom:144.640005pt;}
.y25_c00444{bottom:144.643739pt;}
.y24_c00444{bottom:171.540272pt;}
.y23_c00444{bottom:199.040005pt;}
.y22_c00444{bottom:226.893339pt;}
.y21_c00444{bottom:226.894939pt;}
.y20_c00444{bottom:254.085339pt;}
.y1f_c00444{bottom:281.600539pt;}
.y1e_c00444{bottom:335.687472pt;}
.y1d_c00444{bottom:362.893339pt;}
.y1c_c00444{bottom:362.895472pt;}
.y1b_c00444{bottom:390.720005pt;}
.y1a_c00444{bottom:390.727472pt;}
.y19_c00444{bottom:417.933339pt;}
.y18_c00444{bottom:417.938139pt;}
.y16_c00444{bottom:445.443739pt;}
.y17_c00444{bottom:445.453339pt;}
.y15_c00444{bottom:472.634139pt;}
.y14_c00444{bottom:499.840005pt;}
.y13_c00444{bottom:499.844805pt;}
.y12_c00444{bottom:527.362672pt;}
.y11_c00444{bottom:554.897072pt;}
.y10_c00444{bottom:581.762672pt;}
.yf_c00444{bottom:609.300272pt;}
.ye_c00444{bottom:636.802672pt;}
.yd_c00444{bottom:664.326939pt;}
.yc_c00444{bottom:718.413872pt;}
.yb_c00444{bottom:746.578672pt;}
.ya_c00444{bottom:773.769072pt;}
.y9_c00444{bottom:800.665605pt;}
.y8_c00444{bottom:827.856005pt;}
.y7_c00444{bottom:855.061872pt;}
.y6_c00444{bottom:882.252272pt;}
.y5_c00444{bottom:909.458139pt;}
.y4_c00444{bottom:936.973339pt;}
.y3_c00444{bottom:936.978139pt;}
.y2_c00444{bottom:964.493339pt;}
.y1_c00444{bottom:1031.680005pt;}
.h8_c00444{height:49.726562pt;}
.h2_c00444{height:52.867187pt;}
.h3_c00444{height:60.718750pt;}
.h6_c00444{height:60.744350pt;}
.h7_c00444{height:60.757150pt;}
.h5_c00444{height:63.827604pt;}
.h4_c00444{height:63.968750pt;}
.h1_c00444{height:1122.666667pt;}
.h0_c00444{height:1122.880005pt;}
.w1_c00444{width:793.333333pt;}
.w0_c00444{width:793.599999pt;}
.x0_c00444{left:0.000000pt;}
.x1_c00444{left:97.213332pt;}
.x2_c00444{left:124.639999pt;}
.x3_c00444{left:141.826665pt;}
.x6_c00444{left:144.834665pt;}
.x12_c00444{left:247.479999pt;}
.x4_c00444{left:259.653332pt;}
.x13_c00444{left:266.413332pt;}
.xf_c00444{left:281.066665pt;}
.x5_c00444{left:299.693332pt;}
.x10_c00444{left:301.413332pt;}
.x16_c00444{left:375.853332pt;}
.x14_c00444{left:389.413332pt;}
.x15_c00444{left:418.106665pt;}
.xb_c00444{left:470.013332pt;}
.xc_c00444{left:485.919999pt;}
.x9_c00444{left:524.773332pt;}
.xa_c00444{left:551.146665pt;}
.x7_c00444{left:577.079999pt;}
.xd_c00444{left:592.106665pt;}
.x8_c00444{left:593.453332pt;}
.xe_c00444{left:611.333332pt;}
.x11_c00444{left:662.506665pt;}
}





/* 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_c00445 {
    display:none;
  }
  .loading-indicator_c00445.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00445 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_c00445 { 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_c00445" -> "#page-container .classname_c00445")
 */
.pf_c00445 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00445 { /* 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_c00445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00445 { /* 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_c00445 { /* 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_c00445 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00445 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00445 {overflow:visible;}
  }
}
.c_c00445 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00445 { /* 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_c00445:after { /* webkit #35443 */
  content: '';
}
.t_c00445:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00445 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 */
}
.__c00445 { /* 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_c00445 { /* info for Javascript */
  display:none;
}
.l_c00445 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00445 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00445 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00445: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_c00445 {
    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_c00445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00445.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_c00445 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00445{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00445;src:url('chunks/assets/font_98dd36c0d10efab53627cd64.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.284668;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_c00445;src:url('chunks/assets/font_729c58a19996b333589bbd9a.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.284180;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_c00445;src:url('chunks/assets/font_3944420ce863fbf4d39701c9.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:0.666000;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_c00445;src:url('chunks/assets/font_7ce86a087eff300dbcaa5704.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.311035;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_c00445;src:url('chunks/assets/font_9076d02ecf2568574a0ec462.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;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;}
.m4_c00445{transform:matrix(0.159910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159910,0.000000,0.000000,0.250000,0,0);}
.m2_c00445{transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);}
.ma_c00445{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.m15_c00445{transform:matrix(0.231656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231656,0.000000,0.000000,0.250000,0,0);}
.m1_c00445{transform:matrix(0.233946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233946,0.000000,0.000000,0.250000,0,0);}
.m10_c00445{transform:matrix(0.235742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235742,0.000000,0.000000,0.250000,0,0);}
.m8_c00445{transform:matrix(0.236356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236356,0.000000,0.000000,0.250000,0,0);}
.m1a_c00445{transform:matrix(0.238444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238444,0.000000,0.000000,0.250000,0,0);}
.m6_c00445{transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);}
.m9_c00445{transform:matrix(0.239263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239263,0.000000,0.000000,0.250000,0,0);}
.m7_c00445{transform:matrix(0.240602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240602,0.000000,0.000000,0.250000,0,0);}
.md_c00445{transform:matrix(0.242676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242676,0.000000,0.000000,0.250000,0,0);}
.mc_c00445{transform:matrix(0.243894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243894,0.000000,0.000000,0.250000,0,0);}
.m13_c00445{transform:matrix(0.244244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244244,0.000000,0.000000,0.250000,0,0);}
.m5_c00445{transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);}
.m18_c00445{transform:matrix(0.245896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245896,0.000000,0.000000,0.250000,0,0);}
.m19_c00445{transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);}
.m17_c00445{transform:matrix(0.246360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246360,0.000000,0.000000,0.250000,0,0);}
.m3_c00445{transform:matrix(0.246579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246579,0.000000,0.000000,0.250000,0,0);}
.m12_c00445{transform:matrix(0.247419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247419,0.000000,0.000000,0.250000,0,0);}
.m1b_c00445{transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);}
.m16_c00445{transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);}
.m14_c00445{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.me_c00445{transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);}
.mf_c00445{transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);}
.m11_c00445{transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);}
.m0_c00445{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);}
.mb_c00445{transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls88_c00445{letter-spacing:-3.003000px;}
.ls61_c00445{letter-spacing:-2.520000px;}
.ls78_c00445{letter-spacing:-2.478000px;}
.ls55_c00445{letter-spacing:-2.448000px;}
.ls7d_c00445{letter-spacing:-2.201880px;}
.ls6d_c00445{letter-spacing:-2.109600px;}
.ls6a_c00445{letter-spacing:-1.936800px;}
.ls6e_c00445{letter-spacing:-1.922400px;}
.ls7e_c00445{letter-spacing:-1.785600px;}
.ls5e_c00445{letter-spacing:-1.749600px;}
.ls62_c00445{letter-spacing:-1.706400px;}
.ls7b_c00445{letter-spacing:-1.564680px;}
.ls80_c00445{letter-spacing:-1.519200px;}
.ls63_c00445{letter-spacing:-1.454400px;}
.ls60_c00445{letter-spacing:-1.396800px;}
.ls7c_c00445{letter-spacing:-1.309800px;}
.ls53_c00445{letter-spacing:-1.260000px;}
.ls4e_c00445{letter-spacing:-1.216800px;}
.ls7a_c00445{letter-spacing:-1.125720px;}
.ls5d_c00445{letter-spacing:-1.108800px;}
.ls5f_c00445{letter-spacing:-1.022400px;}
.ls66_c00445{letter-spacing:-1.008000px;}
.ls87_c00445{letter-spacing:-0.943200px;}
.ls4f_c00445{letter-spacing:-0.885600px;}
.ls77_c00445{letter-spacing:-0.705600px;}
.ls84_c00445{letter-spacing:-0.698400px;}
.ls69_c00445{letter-spacing:-0.676800px;}
.ls73_c00445{letter-spacing:-0.540000px;}
.ls83_c00445{letter-spacing:-0.532800px;}
.ls86_c00445{letter-spacing:-0.518400px;}
.ls70_c00445{letter-spacing:-0.504000px;}
.ls65_c00445{letter-spacing:-0.496800px;}
.ls75_c00445{letter-spacing:-0.489600px;}
.ls81_c00445{letter-spacing:-0.352800px;}
.ls79_c00445{letter-spacing:-0.346920px;}
.ls6f_c00445{letter-spacing:-0.345600px;}
.ls71_c00445{letter-spacing:-0.338400px;}
.ls5b_c00445{letter-spacing:-0.302400px;}
.ls5c_c00445{letter-spacing:-0.230400px;}
.ls50_c00445{letter-spacing:-0.187200px;}
.ls85_c00445{letter-spacing:-0.158400px;}
.ls67_c00445{letter-spacing:-0.144000px;}
.ls89_c00445{letter-spacing:-0.142560px;}
.ls82_c00445{letter-spacing:-0.136800px;}
.ls6b_c00445{letter-spacing:-0.129600px;}
.ls57_c00445{letter-spacing:-0.108000px;}
.ls7f_c00445{letter-spacing:-0.072000px;}
.ls56_c00445{letter-spacing:-0.064800px;}
.ls58_c00445{letter-spacing:-0.036000px;}
.ls52_c00445{letter-spacing:-0.028800px;}
.ls59_c00445{letter-spacing:-0.021600px;}
.ls54_c00445{letter-spacing:-0.014400px;}
.ls74_c00445{letter-spacing:-0.007200px;}
.ls51_c00445{letter-spacing:0.000000px;}
.ls3d_c00445{letter-spacing:0.007200px;}
.ls6_c00445{letter-spacing:0.014400px;}
.ls4b_c00445{letter-spacing:0.021600px;}
.ls1c_c00445{letter-spacing:0.028800px;}
.ls5_c00445{letter-spacing:0.043200px;}
.ls4c_c00445{letter-spacing:0.064800px;}
.ls3c_c00445{letter-spacing:0.079200px;}
.ls42_c00445{letter-spacing:0.086400px;}
.ls10_c00445{letter-spacing:0.108000px;}
.ls0_c00445{letter-spacing:0.129600px;}
.ls18_c00445{letter-spacing:0.136800px;}
.ls4_c00445{letter-spacing:0.151200px;}
.ls16_c00445{letter-spacing:0.158400px;}
.ls2b_c00445{letter-spacing:0.180000px;}
.ls3a_c00445{letter-spacing:0.187200px;}
.ls31_c00445{letter-spacing:0.201600px;}
.ls6c_c00445{letter-spacing:0.208800px;}
.lsd_c00445{letter-spacing:0.216000px;}
.ls1a_c00445{letter-spacing:0.223200px;}
.ls20_c00445{letter-spacing:0.237600px;}
.ls1e_c00445{letter-spacing:0.244800px;}
.ls3e_c00445{letter-spacing:0.252000px;}
.ls47_c00445{letter-spacing:0.259200px;}
.ls43_c00445{letter-spacing:0.266400px;}
.ls40_c00445{letter-spacing:0.273600px;}
.ls2d_c00445{letter-spacing:0.280800px;}
.ls38_c00445{letter-spacing:0.288000px;}
.ls1f_c00445{letter-spacing:0.295200px;}
.ls9_c00445{letter-spacing:0.302400px;}
.ls28_c00445{letter-spacing:0.309600px;}
.ls68_c00445{letter-spacing:0.322920px;}
.ls26_c00445{letter-spacing:0.324000px;}
.ls37_c00445{letter-spacing:0.331200px;}
.lsa_c00445{letter-spacing:0.338400px;}
.ls11_c00445{letter-spacing:0.345600px;}
.ls30_c00445{letter-spacing:0.360000px;}
.ls46_c00445{letter-spacing:0.367200px;}
.ls14_c00445{letter-spacing:0.374400px;}
.ls45_c00445{letter-spacing:0.403200px;}
.ls72_c00445{letter-spacing:0.410400px;}
.ls64_c00445{letter-spacing:0.417600px;}
.ls2f_c00445{letter-spacing:0.432000px;}
.ls2a_c00445{letter-spacing:0.439200px;}
.ls41_c00445{letter-spacing:0.446400px;}
.ls39_c00445{letter-spacing:0.468000px;}
.ls25_c00445{letter-spacing:0.475200px;}
.lse_c00445{letter-spacing:0.482400px;}
.ls1b_c00445{letter-spacing:0.504000px;}
.ls13_c00445{letter-spacing:0.511200px;}
.ls34_c00445{letter-spacing:0.512460px;}
.ls8_c00445{letter-spacing:0.525600px;}
.ls32_c00445{letter-spacing:0.532800px;}
.ls23_c00445{letter-spacing:0.540000px;}
.ls27_c00445{letter-spacing:0.568800px;}
.ls1d_c00445{letter-spacing:0.604800px;}
.ls12_c00445{letter-spacing:0.612000px;}
.ls3_c00445{letter-spacing:0.626400px;}
.ls36_c00445{letter-spacing:0.633600px;}
.ls4a_c00445{letter-spacing:0.684000px;}
.ls29_c00445{letter-spacing:0.716040px;}
.ls21_c00445{letter-spacing:0.720000px;}
.ls3b_c00445{letter-spacing:0.727200px;}
.lsc_c00445{letter-spacing:0.744120px;}
.ls35_c00445{letter-spacing:0.748800px;}
.ls15_c00445{letter-spacing:0.849420px;}
.ls44_c00445{letter-spacing:0.928800px;}
.lsf_c00445{letter-spacing:1.003860px;}
.lsb_c00445{letter-spacing:1.060020px;}
.ls48_c00445{letter-spacing:1.087200px;}
.ls33_c00445{letter-spacing:1.116180px;}
.ls7_c00445{letter-spacing:1.137240px;}
.ls24_c00445{letter-spacing:1.202400px;}
.ls2e_c00445{letter-spacing:1.368900px;}
.ls1_c00445{letter-spacing:1.425060px;}
.ls17_c00445{letter-spacing:1.425600px;}
.ls49_c00445{letter-spacing:1.483200px;}
.ls2_c00445{letter-spacing:1.558440px;}
.ls19_c00445{letter-spacing:1.641600px;}
.ls5a_c00445{letter-spacing:1.684800px;}
.ls4d_c00445{letter-spacing:1.714980px;}
.ls2c_c00445{letter-spacing:1.832220px;}
.ls3f_c00445{letter-spacing:2.016000px;}
.ls22_c00445{letter-spacing:3.124800px;}
.ls76_c00445{letter-spacing:3.600000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{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__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00445{word-spacing:0.000000px;}
._f_c00445{margin-left:-7.515120px;}
._1e_c00445{margin-left:-5.320800px;}
._1a_c00445{margin-left:-4.269600px;}
._1b_c00445{margin-left:-2.664000px;}
._19_c00445{margin-left:-1.045560px;}
._13_c00445{width:1.216800px;}
._14_c00445{width:2.548800px;}
._10_c00445{width:3.960000px;}
._1_c00445{width:5.745600px;}
._2_c00445{width:7.333560px;}
._0_c00445{width:8.899200px;}
._1f_c00445{width:9.946440px;}
._d_c00445{width:11.154780px;}
._12_c00445{width:12.168000px;}
._11_c00445{width:14.328000px;}
._18_c00445{width:15.703200px;}
._e_c00445{width:16.960920px;}
._16_c00445{width:19.944000px;}
._17_c00445{width:21.470400px;}
._15_c00445{width:22.694400px;}
._1d_c00445{width:23.945280px;}
._c_c00445{width:25.056000px;}
._1c_c00445{width:26.269800px;}
._a_c00445{width:27.504000px;}
._9_c00445{width:29.392920px;}
._b_c00445{width:31.807080px;}
._6_c00445{width:33.825600px;}
._5_c00445{width:35.575200px;}
._7_c00445{width:37.360800px;}
._4_c00445{width:38.419200px;}
._8_c00445{width:42.588000px;}
._3_c00445{width:43.848000px;}
.fc0_c00445{color:transparent;}
.fs6_c00445{font-size:52.800000px;}
.fs3_c00445{font-size:53.280000px;}
.fs0_c00445{font-size:60.600000px;}
.fs2_c00445{font-size:70.200000px;}
.fs4_c00445{font-size:70.800000px;}
.fs1_c00445{font-size:72.000000px;}
.fs5_c00445{font-size:85.800000px;}
.y0_c00445{bottom:0.000000px;}
.y22_c00445{bottom:99.360006px;}
.y21_c00445{bottom:148.320006px;}
.y20_c00445{bottom:178.920006px;}
.y1f_c00445{bottom:209.880006px;}
.y1e_c00445{bottom:240.840006px;}
.y1d_c00445{bottom:271.800006px;}
.y1c_c00445{bottom:333.018006px;}
.y1b_c00445{bottom:364.338006px;}
.y1a_c00445{bottom:395.280006px;}
.y18_c00445{bottom:425.877006px;}
.y19_c00445{bottom:425.880006px;}
.y17_c00445{bottom:456.855006px;}
.y16_c00445{bottom:456.858006px;}
.y15_c00445{bottom:487.800006px;}
.y14_c00445{bottom:518.400006px;}
.y12_c00445{bottom:580.317006px;}
.y13_c00445{bottom:580.320006px;}
.y11_c00445{bottom:610.938006px;}
.y10_c00445{bottom:641.877006px;}
.yf_c00445{bottom:672.855006px;}
.ye_c00445{bottom:703.458006px;}
.yc_c00445{bottom:734.397006px;}
.yd_c00445{bottom:734.400006px;}
.yb_c00445{bottom:765.375006px;}
.ya_c00445{bottom:795.975006px;}
.y9_c00445{bottom:858.255006px;}
.y8_c00445{bottom:858.258006px;}
.y7_c00445{bottom:888.480006px;}
.y6_c00445{bottom:919.455006px;}
.y5_c00445{bottom:950.415006px;}
.y4_c00445{bottom:980.999256px;}
.y3_c00445{bottom:1011.975006px;}
.y2_c00445{bottom:1042.935006px;}
.y1_c00445{bottom:1149.840006px;}
.h5_c00445{height:35.484480px;}
.h9_c00445{height:55.068750px;}
.h2_c00445{height:59.475586px;}
.h3_c00445{height:70.664062px;}
.h4_c00445{height:70.667063px;}
.h6_c00445{height:70.676062px;}
.h7_c00445{height:71.353125px;}
.h8_c00445{height:89.486719px;}
.h1_c00445{height:1263.000000px;}
.h0_c00445{height:1263.240006px;}
.w1_c00445{width:892.500000px;}
.w0_c00445{width:892.799998px;}
.x0_c00445{left:0.000000px;}
.x2b_c00445{left:108.689998px;}
.x18_c00445{left:109.763998px;}
.x11_c00445{left:111.047998px;}
.x3_c00445{left:112.469999px;}
.x2_c00445{left:113.609999px;}
.x1_c00445{left:114.764999px;}
.x19_c00445{left:125.489998px;}
.x2c_c00445{left:146.699998px;}
.x30_c00445{left:162.236998px;}
.x1b_c00445{left:163.349998px;}
.xe_c00445{left:165.131998px;}
.x1a_c00445{left:168.404999px;}
.x2d_c00445{left:178.814999px;}
.x1c_c00445{left:194.294998px;}
.x2e_c00445{left:202.289998px;}
.x12_c00445{left:213.959999px;}
.x1d_c00445{left:217.334998px;}
.x31_c00445{left:218.804998px;}
.x27_c00445{left:229.844999px;}
.x13_c00445{left:236.879998px;}
.x2f_c00445{left:240.644999px;}
.x28_c00445{left:257.579998px;}
.x1e_c00445{left:274.919999px;}
.xf_c00445{left:280.919999px;}
.x10_c00445{left:305.969998px;}
.x1f_c00445{left:332.819998px;}
.x32_c00445{left:344.129998px;}
.x16_c00445{left:359.114999px;}
.xc_c00445{left:360.869999px;}
.x33_c00445{left:362.324998px;}
.xd_c00445{left:383.579998px;}
.x17_c00445{left:388.604998px;}
.x20_c00445{left:418.574998px;}
.x37_c00445{left:424.994999px;}
.x21_c00445{left:441.164999px;}
.x8_c00445{left:480.614999px;}
.x29_c00445{left:485.804999px;}
.x5_c00445{left:499.529999px;}
.x2a_c00445{left:508.274999px;}
.x9_c00445{left:514.604998px;}
.x6_c00445{left:523.649999px;}
.x22_c00445{left:571.139998px;}
.x14_c00445{left:604.979999px;}
.x15_c00445{left:627.869999px;}
.x25_c00445{left:635.639998px;}
.x23_c00445{left:637.829998px;}
.x24_c00445{left:680.924999px;}
.x26_c00445{left:689.009999px;}
.x34_c00445{left:699.269998px;}
.x35_c00445{left:722.264998px;}
.xa_c00445{left:726.674999px;}
.x7_c00445{left:745.664999px;}
.x36_c00445{left:749.999998px;}
.xb_c00445{left:751.889998px;}
.x4_c00445{left:754.019998px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls88_c00445{letter-spacing:-2.669333pt;}
.ls61_c00445{letter-spacing:-2.240000pt;}
.ls78_c00445{letter-spacing:-2.202667pt;}
.ls55_c00445{letter-spacing:-2.176000pt;}
.ls7d_c00445{letter-spacing:-1.957227pt;}
.ls6d_c00445{letter-spacing:-1.875200pt;}
.ls6a_c00445{letter-spacing:-1.721600pt;}
.ls6e_c00445{letter-spacing:-1.708800pt;}
.ls7e_c00445{letter-spacing:-1.587200pt;}
.ls5e_c00445{letter-spacing:-1.555200pt;}
.ls62_c00445{letter-spacing:-1.516800pt;}
.ls7b_c00445{letter-spacing:-1.390827pt;}
.ls80_c00445{letter-spacing:-1.350400pt;}
.ls63_c00445{letter-spacing:-1.292800pt;}
.ls60_c00445{letter-spacing:-1.241600pt;}
.ls7c_c00445{letter-spacing:-1.164267pt;}
.ls53_c00445{letter-spacing:-1.120000pt;}
.ls4e_c00445{letter-spacing:-1.081600pt;}
.ls7a_c00445{letter-spacing:-1.000640pt;}
.ls5d_c00445{letter-spacing:-0.985600pt;}
.ls5f_c00445{letter-spacing:-0.908800pt;}
.ls66_c00445{letter-spacing:-0.896000pt;}
.ls87_c00445{letter-spacing:-0.838400pt;}
.ls4f_c00445{letter-spacing:-0.787200pt;}
.ls77_c00445{letter-spacing:-0.627200pt;}
.ls84_c00445{letter-spacing:-0.620800pt;}
.ls69_c00445{letter-spacing:-0.601600pt;}
.ls73_c00445{letter-spacing:-0.480000pt;}
.ls83_c00445{letter-spacing:-0.473600pt;}
.ls86_c00445{letter-spacing:-0.460800pt;}
.ls70_c00445{letter-spacing:-0.448000pt;}
.ls65_c00445{letter-spacing:-0.441600pt;}
.ls75_c00445{letter-spacing:-0.435200pt;}
.ls81_c00445{letter-spacing:-0.313600pt;}
.ls79_c00445{letter-spacing:-0.308373pt;}
.ls6f_c00445{letter-spacing:-0.307200pt;}
.ls71_c00445{letter-spacing:-0.300800pt;}
.ls5b_c00445{letter-spacing:-0.268800pt;}
.ls5c_c00445{letter-spacing:-0.204800pt;}
.ls50_c00445{letter-spacing:-0.166400pt;}
.ls85_c00445{letter-spacing:-0.140800pt;}
.ls67_c00445{letter-spacing:-0.128000pt;}
.ls89_c00445{letter-spacing:-0.126720pt;}
.ls82_c00445{letter-spacing:-0.121600pt;}
.ls6b_c00445{letter-spacing:-0.115200pt;}
.ls57_c00445{letter-spacing:-0.096000pt;}
.ls7f_c00445{letter-spacing:-0.064000pt;}
.ls56_c00445{letter-spacing:-0.057600pt;}
.ls58_c00445{letter-spacing:-0.032000pt;}
.ls52_c00445{letter-spacing:-0.025600pt;}
.ls59_c00445{letter-spacing:-0.019200pt;}
.ls54_c00445{letter-spacing:-0.012800pt;}
.ls74_c00445{letter-spacing:-0.006400pt;}
.ls51_c00445{letter-spacing:0.000000pt;}
.ls3d_c00445{letter-spacing:0.006400pt;}
.ls6_c00445{letter-spacing:0.012800pt;}
.ls4b_c00445{letter-spacing:0.019200pt;}
.ls1c_c00445{letter-spacing:0.025600pt;}
.ls5_c00445{letter-spacing:0.038400pt;}
.ls4c_c00445{letter-spacing:0.057600pt;}
.ls3c_c00445{letter-spacing:0.070400pt;}
.ls42_c00445{letter-spacing:0.076800pt;}
.ls10_c00445{letter-spacing:0.096000pt;}
.ls0_c00445{letter-spacing:0.115200pt;}
.ls18_c00445{letter-spacing:0.121600pt;}
.ls4_c00445{letter-spacing:0.134400pt;}
.ls16_c00445{letter-spacing:0.140800pt;}
.ls2b_c00445{letter-spacing:0.160000pt;}
.ls3a_c00445{letter-spacing:0.166400pt;}
.ls31_c00445{letter-spacing:0.179200pt;}
.ls6c_c00445{letter-spacing:0.185600pt;}
.lsd_c00445{letter-spacing:0.192000pt;}
.ls1a_c00445{letter-spacing:0.198400pt;}
.ls20_c00445{letter-spacing:0.211200pt;}
.ls1e_c00445{letter-spacing:0.217600pt;}
.ls3e_c00445{letter-spacing:0.224000pt;}
.ls47_c00445{letter-spacing:0.230400pt;}
.ls43_c00445{letter-spacing:0.236800pt;}
.ls40_c00445{letter-spacing:0.243200pt;}
.ls2d_c00445{letter-spacing:0.249600pt;}
.ls38_c00445{letter-spacing:0.256000pt;}
.ls1f_c00445{letter-spacing:0.262400pt;}
.ls9_c00445{letter-spacing:0.268800pt;}
.ls28_c00445{letter-spacing:0.275200pt;}
.ls68_c00445{letter-spacing:0.287040pt;}
.ls26_c00445{letter-spacing:0.288000pt;}
.ls37_c00445{letter-spacing:0.294400pt;}
.lsa_c00445{letter-spacing:0.300800pt;}
.ls11_c00445{letter-spacing:0.307200pt;}
.ls30_c00445{letter-spacing:0.320000pt;}
.ls46_c00445{letter-spacing:0.326400pt;}
.ls14_c00445{letter-spacing:0.332800pt;}
.ls45_c00445{letter-spacing:0.358400pt;}
.ls72_c00445{letter-spacing:0.364800pt;}
.ls64_c00445{letter-spacing:0.371200pt;}
.ls2f_c00445{letter-spacing:0.384000pt;}
.ls2a_c00445{letter-spacing:0.390400pt;}
.ls41_c00445{letter-spacing:0.396800pt;}
.ls39_c00445{letter-spacing:0.416000pt;}
.ls25_c00445{letter-spacing:0.422400pt;}
.lse_c00445{letter-spacing:0.428800pt;}
.ls1b_c00445{letter-spacing:0.448000pt;}
.ls13_c00445{letter-spacing:0.454400pt;}
.ls34_c00445{letter-spacing:0.455520pt;}
.ls8_c00445{letter-spacing:0.467200pt;}
.ls32_c00445{letter-spacing:0.473600pt;}
.ls23_c00445{letter-spacing:0.480000pt;}
.ls27_c00445{letter-spacing:0.505600pt;}
.ls1d_c00445{letter-spacing:0.537600pt;}
.ls12_c00445{letter-spacing:0.544000pt;}
.ls3_c00445{letter-spacing:0.556800pt;}
.ls36_c00445{letter-spacing:0.563200pt;}
.ls4a_c00445{letter-spacing:0.608000pt;}
.ls29_c00445{letter-spacing:0.636480pt;}
.ls21_c00445{letter-spacing:0.640000pt;}
.ls3b_c00445{letter-spacing:0.646400pt;}
.lsc_c00445{letter-spacing:0.661440pt;}
.ls35_c00445{letter-spacing:0.665600pt;}
.ls15_c00445{letter-spacing:0.755040pt;}
.ls44_c00445{letter-spacing:0.825600pt;}
.lsf_c00445{letter-spacing:0.892320pt;}
.lsb_c00445{letter-spacing:0.942240pt;}
.ls48_c00445{letter-spacing:0.966400pt;}
.ls33_c00445{letter-spacing:0.992160pt;}
.ls7_c00445{letter-spacing:1.010880pt;}
.ls24_c00445{letter-spacing:1.068800pt;}
.ls2e_c00445{letter-spacing:1.216800pt;}
.ls1_c00445{letter-spacing:1.266720pt;}
.ls17_c00445{letter-spacing:1.267200pt;}
.ls49_c00445{letter-spacing:1.318400pt;}
.ls2_c00445{letter-spacing:1.385280pt;}
.ls19_c00445{letter-spacing:1.459200pt;}
.ls5a_c00445{letter-spacing:1.497600pt;}
.ls4d_c00445{letter-spacing:1.524427pt;}
.ls2c_c00445{letter-spacing:1.628640pt;}
.ls3f_c00445{letter-spacing:1.792000pt;}
.ls22_c00445{letter-spacing:2.777600pt;}
.ls76_c00445{letter-spacing:3.200000pt;}
.ws0_c00445{word-spacing:0.000000pt;}
._f_c00445{margin-left:-6.680107pt;}
._1e_c00445{margin-left:-4.729600pt;}
._1a_c00445{margin-left:-3.795200pt;}
._1b_c00445{margin-left:-2.368000pt;}
._19_c00445{margin-left:-0.929387pt;}
._13_c00445{width:1.081600pt;}
._14_c00445{width:2.265600pt;}
._10_c00445{width:3.520000pt;}
._1_c00445{width:5.107200pt;}
._2_c00445{width:6.518720pt;}
._0_c00445{width:7.910400pt;}
._1f_c00445{width:8.841280pt;}
._d_c00445{width:9.915360pt;}
._12_c00445{width:10.816000pt;}
._11_c00445{width:12.736000pt;}
._18_c00445{width:13.958400pt;}
._e_c00445{width:15.076373pt;}
._16_c00445{width:17.728000pt;}
._17_c00445{width:19.084800pt;}
._15_c00445{width:20.172800pt;}
._1d_c00445{width:21.284693pt;}
._c_c00445{width:22.272000pt;}
._1c_c00445{width:23.350933pt;}
._a_c00445{width:24.448000pt;}
._9_c00445{width:26.127040pt;}
._b_c00445{width:28.272960pt;}
._6_c00445{width:30.067200pt;}
._5_c00445{width:31.622400pt;}
._7_c00445{width:33.209600pt;}
._4_c00445{width:34.150400pt;}
._8_c00445{width:37.856000pt;}
._3_c00445{width:38.976000pt;}
.fs6_c00445{font-size:46.933333pt;}
.fs3_c00445{font-size:47.360000pt;}
.fs0_c00445{font-size:53.866667pt;}
.fs2_c00445{font-size:62.400000pt;}
.fs4_c00445{font-size:62.933333pt;}
.fs1_c00445{font-size:64.000000pt;}
.fs5_c00445{font-size:76.266667pt;}
.y0_c00445{bottom:0.000000pt;}
.y22_c00445{bottom:88.320005pt;}
.y21_c00445{bottom:131.840005pt;}
.y20_c00445{bottom:159.040005pt;}
.y1f_c00445{bottom:186.560005pt;}
.y1e_c00445{bottom:214.080005pt;}
.y1d_c00445{bottom:241.600005pt;}
.y1c_c00445{bottom:296.016005pt;}
.y1b_c00445{bottom:323.856005pt;}
.y1a_c00445{bottom:351.360005pt;}
.y18_c00445{bottom:378.557339pt;}
.y19_c00445{bottom:378.560005pt;}
.y17_c00445{bottom:406.093339pt;}
.y16_c00445{bottom:406.096005pt;}
.y15_c00445{bottom:433.600005pt;}
.y14_c00445{bottom:460.800005pt;}
.y12_c00445{bottom:515.837339pt;}
.y13_c00445{bottom:515.840005pt;}
.y11_c00445{bottom:543.056005pt;}
.y10_c00445{bottom:570.557339pt;}
.yf_c00445{bottom:598.093339pt;}
.ye_c00445{bottom:625.296005pt;}
.yc_c00445{bottom:652.797339pt;}
.yd_c00445{bottom:652.800005pt;}
.yb_c00445{bottom:680.333339pt;}
.ya_c00445{bottom:707.533339pt;}
.y9_c00445{bottom:762.893339pt;}
.y8_c00445{bottom:762.896005pt;}
.y7_c00445{bottom:789.760005pt;}
.y6_c00445{bottom:817.293339pt;}
.y5_c00445{bottom:844.813339pt;}
.y4_c00445{bottom:871.999339pt;}
.y3_c00445{bottom:899.533339pt;}
.y2_c00445{bottom:927.053339pt;}
.y1_c00445{bottom:1022.080005pt;}
.h5_c00445{height:31.541760pt;}
.h9_c00445{height:48.950000pt;}
.h2_c00445{height:52.867187pt;}
.h3_c00445{height:62.812500pt;}
.h4_c00445{height:62.815167pt;}
.h6_c00445{height:62.823167pt;}
.h7_c00445{height:63.425000pt;}
.h8_c00445{height:79.543750pt;}
.h1_c00445{height:1122.666667pt;}
.h0_c00445{height:1122.880005pt;}
.w1_c00445{width:793.333333pt;}
.w0_c00445{width:793.599999pt;}
.x0_c00445{left:0.000000pt;}
.x2b_c00445{left:96.613332pt;}
.x18_c00445{left:97.567999pt;}
.x11_c00445{left:98.709332pt;}
.x3_c00445{left:99.973332pt;}
.x2_c00445{left:100.986665pt;}
.x1_c00445{left:102.013332pt;}
.x19_c00445{left:111.546665pt;}
.x2c_c00445{left:130.399999pt;}
.x30_c00445{left:144.210665pt;}
.x1b_c00445{left:145.199999pt;}
.xe_c00445{left:146.783999pt;}
.x1a_c00445{left:149.693332pt;}
.x2d_c00445{left:158.946665pt;}
.x1c_c00445{left:172.706665pt;}
.x2e_c00445{left:179.813332pt;}
.x12_c00445{left:190.186665pt;}
.x1d_c00445{left:193.186665pt;}
.x31_c00445{left:194.493332pt;}
.x27_c00445{left:204.306665pt;}
.x13_c00445{left:210.559999pt;}
.x2f_c00445{left:213.906665pt;}
.x28_c00445{left:228.959999pt;}
.x1e_c00445{left:244.373332pt;}
.xf_c00445{left:249.706665pt;}
.x10_c00445{left:271.973332pt;}
.x1f_c00445{left:295.839999pt;}
.x32_c00445{left:305.893332pt;}
.x16_c00445{left:319.213332pt;}
.xc_c00445{left:320.773332pt;}
.x33_c00445{left:322.066665pt;}
.xd_c00445{left:340.959999pt;}
.x17_c00445{left:345.426665pt;}
.x20_c00445{left:372.066665pt;}
.x37_c00445{left:377.773332pt;}
.x21_c00445{left:392.146665pt;}
.x8_c00445{left:427.213332pt;}
.x29_c00445{left:431.826665pt;}
.x5_c00445{left:444.026665pt;}
.x2a_c00445{left:451.799999pt;}
.x9_c00445{left:457.426665pt;}
.x6_c00445{left:465.466665pt;}
.x22_c00445{left:507.679999pt;}
.x14_c00445{left:537.759999pt;}
.x15_c00445{left:558.106665pt;}
.x25_c00445{left:565.013332pt;}
.x23_c00445{left:566.959999pt;}
.x24_c00445{left:605.266665pt;}
.x26_c00445{left:612.453332pt;}
.x34_c00445{left:621.573332pt;}
.x35_c00445{left:642.013332pt;}
.xa_c00445{left:645.933332pt;}
.x7_c00445{left:662.813332pt;}
.x36_c00445{left:666.666665pt;}
.xb_c00445{left:668.346665pt;}
.x4_c00445{left:670.239999pt;}
}





/* 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_c00446 {
    display:none;
  }
  .loading-indicator_c00446.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00446 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_c00446 { 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_c00446" -> "#page-container .classname_c00446")
 */
.pf_c00446 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00446 { /* 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_c00446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00446 { /* 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_c00446 { /* 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_c00446 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00446 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00446 {overflow:visible;}
  }
}
.c_c00446 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00446 { /* 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_c00446:after { /* webkit #35443 */
  content: '';
}
.t_c00446:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00446 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 */
}
.__c00446 { /* 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_c00446 { /* info for Javascript */
  display:none;
}
.l_c00446 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00446 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00446 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00446: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_c00446 {
    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_c00446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00446.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_c00446 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00446{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00446;src:url('chunks/assets/font_f0013344ddafbda3a9b6aeee.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.284668;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_c00446;src:url('chunks/assets/font_99d1212b2972ac80349b71fc.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;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_c00446;src:url('chunks/assets/font_33f772bc110f211de06e90aa.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.284180;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_c00446;src:url('chunks/assets/font_c17255b67ff59c7cad25ce6b.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:0.666000;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_c00446;src:url('chunks/assets/font_b061584b0211696462dfdf05.woff2')format("woff");}.ff5_c00446{font-family:ff5_c00446;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;}
.m3e_c00446{transform:matrix(0.100875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100875,0.000000,0.000000,0.250000,0,0);}
.m3c_c00446{transform:matrix(0.124652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124652,0.000000,0.000000,0.250000,0,0);}
.m4f_c00446{transform:matrix(0.131176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131176,0.000000,0.000000,0.250000,0,0);}
.me_c00446{transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);}
.m3d_c00446{transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);}
.m42_c00446{transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);}
.m46_c00446{transform:matrix(0.147054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147054,0.000000,0.000000,0.250000,0,0);}
.m1d_c00446{transform:matrix(0.157990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157990,0.000000,0.000000,0.250000,0,0);}
.m52_c00446{transform:matrix(0.165621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165621,0.000000,0.000000,0.250000,0,0);}
.m45_c00446{transform:matrix(0.175401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175401,0.000000,0.000000,0.250000,0,0);}
.m4e_c00446{transform:matrix(0.182678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182678,0.000000,0.000000,0.250000,0,0);}
.m44_c00446{transform:matrix(0.187843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187843,0.000000,0.000000,0.250000,0,0);}
.m1e_c00446{transform:matrix(0.202330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202330,0.000000,0.000000,0.250000,0,0);}
.m4b_c00446{transform:matrix(0.207580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207580,0.000000,0.000000,0.250000,0,0);}
.m35_c00446{transform:matrix(0.209502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209502,0.000000,0.000000,0.250000,0,0);}
.m14_c00446{transform:matrix(0.210112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210112,0.000000,0.000000,0.250000,0,0);}
.m4d_c00446{transform:matrix(0.210903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210903,0.000000,0.000000,0.250000,0,0);}
.m37_c00446{transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);}
.m2e_c00446{transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);}
.m10_c00446{transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);}
.m2a_c00446{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m9_c00446{transform:matrix(0.230603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230603,0.000000,0.000000,0.250000,0,0);}
.m32_c00446{transform:matrix(0.234168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234168,0.000000,0.000000,0.250000,0,0);}
.m24_c00446{transform:matrix(0.234431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234431,0.000000,0.000000,0.250000,0,0);}
.m1_c00446{transform:matrix(0.234956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234956,0.000000,0.000000,0.250000,0,0);}
.m3b_c00446{transform:matrix(0.235045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235045,0.000000,0.000000,0.250000,0,0);}
.m50_c00446{transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);}
.m31_c00446{transform:matrix(0.238912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238912,0.000000,0.000000,0.250000,0,0);}
.m48_c00446{transform:matrix(0.239538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239538,0.000000,0.000000,0.250000,0,0);}
.m29_c00446{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m27_c00446{transform:matrix(0.241817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241817,0.000000,0.000000,0.250000,0,0);}
.md_c00446{transform:matrix(0.242624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242624,0.000000,0.000000,0.250000,0,0);}
.m19_c00446{transform:matrix(0.245903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245903,0.000000,0.000000,0.250000,0,0);}
.m2_c00446{transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);}
.m47_c00446{transform:matrix(0.248473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248473,0.000000,0.000000,0.250000,0,0);}
.m13_c00446{transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);}
.m2f_c00446{transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);}
.m0_c00446{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);}
.m2d_c00446{transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);}
.m26_c00446{transform:matrix(0.253654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253654,0.000000,0.000000,0.250000,0,0);}
.m30_c00446{transform:matrix(0.255471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255471,0.000000,0.000000,0.250000,0,0);}
.m40_c00446{transform:matrix(0.260622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260622,0.000000,0.000000,0.250000,0,0);}
.m2b_c00446{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m28_c00446{transform:matrix(0.266527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266527,0.000000,0.000000,0.250000,0,0);}
.m2c_c00446{transform:matrix(0.267056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267056,0.000000,0.000000,0.250000,0,0);}
.m39_c00446{transform:matrix(0.267218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267218,0.000000,0.000000,0.250000,0,0);}
.m1f_c00446{transform:matrix(0.269243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269243,0.000000,0.000000,0.250000,0,0);}
.m7_c00446{transform:matrix(0.273313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273313,0.000000,0.000000,0.250000,0,0);}
.m6_c00446{transform:matrix(0.276818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276818,0.000000,0.000000,0.250000,0,0);}
.m33_c00446{transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);}
.m25_c00446{transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);}
.m38_c00446{transform:matrix(0.292473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292473,0.000000,0.000000,0.250000,0,0);}
.m51_c00446{transform:matrix(0.305397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305397,0.000000,0.000000,0.250000,0,0);}
.m15_c00446{transform:matrix(0.306085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306085,0.000000,0.000000,0.250000,0,0);}
.m20_c00446{transform:matrix(0.306569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306569,0.000000,0.000000,0.250000,0,0);}
.m58_c00446{transform:matrix(0.312211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312211,0.000000,0.000000,0.250000,0,0);}
.m56_c00446{transform:matrix(0.312486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312486,0.000000,0.000000,0.250000,0,0);}
.m3f_c00446{transform:matrix(0.314705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314705,0.000000,0.000000,0.250000,0,0);}
.m53_c00446{transform:matrix(0.324435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324435,0.000000,0.000000,0.250000,0,0);}
.m3a_c00446{transform:matrix(0.325973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325973,0.000000,0.000000,0.250000,0,0);}
.m43_c00446{transform:matrix(0.329187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329187,0.000000,0.000000,0.250000,0,0);}
.m41_c00446{transform:matrix(0.329630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329630,0.000000,0.000000,0.250000,0,0);}
.m18_c00446{transform:matrix(0.342242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342242,0.000000,0.000000,0.250000,0,0);}
.m54_c00446{transform:matrix(0.342558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342558,0.000000,0.000000,0.250000,0,0);}
.m57_c00446{transform:matrix(0.344308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344308,0.000000,0.000000,0.250000,0,0);}
.ma_c00446{transform:matrix(0.371693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371693,0.000000,0.000000,0.250000,0,0);}
.m16_c00446{transform:matrix(0.378319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378319,0.000000,0.000000,0.250000,0,0);}
.m12_c00446{transform:matrix(0.383995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383995,0.000000,0.000000,0.250000,0,0);}
.mc_c00446{transform:matrix(0.390489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390489,0.000000,0.000000,0.250000,0,0);}
.m36_c00446{transform:matrix(0.400773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400773,0.000000,0.000000,0.250000,0,0);}
.m8_c00446{transform:matrix(0.402789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402789,0.000000,0.000000,0.250000,0,0);}
.m4a_c00446{transform:matrix(0.403353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403353,0.000000,0.000000,0.250000,0,0);}
.m22_c00446{transform:matrix(0.417358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417358,0.000000,0.000000,0.250000,0,0);}
.m1a_c00446{transform:matrix(0.417819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417819,0.000000,0.000000,0.250000,0,0);}
.m4c_c00446{transform:matrix(0.426683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426683,0.000000,0.000000,0.250000,0,0);}
.m49_c00446{transform:matrix(0.428103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428103,0.000000,0.000000,0.250000,0,0);}
.m55_c00446{transform:matrix(0.432230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432230,0.000000,0.000000,0.250000,0,0);}
.m11_c00446{transform:matrix(0.442718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442718,0.000000,0.000000,0.250000,0,0);}
.m1b_c00446{transform:matrix(0.452878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452878,0.000000,0.000000,0.250000,0,0);}
.m21_c00446{transform:matrix(0.459701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459701,0.000000,0.000000,0.250000,0,0);}
.m17_c00446{transform:matrix(0.460824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460824,0.000000,0.000000,0.250000,0,0);}
.m34_c00446{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.m23_c00446{transform:matrix(0.492221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492221,0.000000,0.000000,0.250000,0,0);}
.m5_c00446{transform:matrix(0.516211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516211,0.000000,0.000000,0.250000,0,0);}
.m1c_c00446{transform:matrix(0.532330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532330,0.000000,0.000000,0.250000,0,0);}
.m4_c00446{transform:matrix(0.561034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561034,0.000000,0.000000,0.250000,0,0);}
.m3_c00446{transform:matrix(0.634750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634750,0.000000,0.000000,0.250000,0,0);}
.mb_c00446{transform:matrix(0.700684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700684,0.000000,0.000000,0.250000,0,0);}
.mf_c00446{transform:matrix(1.201641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.201641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.201641,0.000000,0.000000,0.250000,0,0);}
.vb_c00446{vertical-align:-17.340000px;}
.v6_c00446{vertical-align:-14.460000px;}
.ve_c00446{vertical-align:-12.960000px;}
.v5_c00446{vertical-align:-11.580000px;}
.v3_c00446{vertical-align:-10.140000px;}
.v8_c00446{vertical-align:-8.700000px;}
.v4_c00446{vertical-align:-7.200000px;}
.va_c00446{vertical-align:-5.760000px;}
.v1_c00446{vertical-align:-4.320000px;}
.v2_c00446{vertical-align:-1.435200px;}
.v0_c00446{vertical-align:0.000000px;}
.v7_c00446{vertical-align:1.500000px;}
.vd_c00446{vertical-align:5.820000px;}
.v9_c00446{vertical-align:10.080000px;}
.vc_c00446{vertical-align:11.520000px;}
.ls97_c00446{letter-spacing:-4.599000px;}
.ls90_c00446{letter-spacing:-2.772000px;}
.ls76_c00446{letter-spacing:-2.688000px;}
.ls9f_c00446{letter-spacing:-2.604000px;}
.ls47_c00446{letter-spacing:-2.499000px;}
.ls4c_c00446{letter-spacing:-2.477580px;}
.ls7c_c00446{letter-spacing:-2.184000px;}
.ls79_c00446{letter-spacing:-2.121000px;}
.ls8c_c00446{letter-spacing:-2.090700px;}
.ls63_c00446{letter-spacing:-2.027760px;}
.ls7d_c00446{letter-spacing:-1.974000px;}
.ls51_c00446{letter-spacing:-1.932000px;}
.ls4a_c00446{letter-spacing:-1.884960px;}
.ls91_c00446{letter-spacing:-1.827360px;}
.ls94_c00446{letter-spacing:-1.804800px;}
.ls8b_c00446{letter-spacing:-1.680000px;}
.ls8a_c00446{letter-spacing:-1.665600px;}
.ls5f_c00446{letter-spacing:-1.606500px;}
.ls88_c00446{letter-spacing:-1.488960px;}
.ls5d_c00446{letter-spacing:-1.485120px;}
.ls6c_c00446{letter-spacing:-1.430160px;}
.ls5c_c00446{letter-spacing:-1.356600px;}
.ls7f_c00446{letter-spacing:-1.345680px;}
.ls85_c00446{letter-spacing:-1.150560px;}
.ls5a_c00446{letter-spacing:-1.149540px;}
.ls54_c00446{letter-spacing:-1.120980px;}
.ls72_c00446{letter-spacing:-1.113840px;}
.ls78_c00446{letter-spacing:-1.085280px;}
.ls55_c00446{letter-spacing:-1.035300px;}
.ls83_c00446{letter-spacing:-0.908820px;}
.ls92_c00446{letter-spacing:-0.902400px;}
.ls74_c00446{letter-spacing:-0.885360px;}
.ls93_c00446{letter-spacing:-0.806520px;}
.ls61_c00446{letter-spacing:-0.799680px;}
.ls60_c00446{letter-spacing:-0.792540px;}
.ls4d_c00446{letter-spacing:-0.749700px;}
.ls7b_c00446{letter-spacing:-0.714240px;}
.ls64_c00446{letter-spacing:-0.699720px;}
.ls66_c00446{letter-spacing:-0.656880px;}
.lsa0_c00446{letter-spacing:-0.655500px;}
.ls84_c00446{letter-spacing:-0.620400px;}
.ls6a_c00446{letter-spacing:-0.580560px;}
.ls46_c00446{letter-spacing:-0.571200px;}
.ls53_c00446{letter-spacing:-0.551057px;}
.ls68_c00446{letter-spacing:-0.502680px;}
.ls98_c00446{letter-spacing:-0.473760px;}
.ls56_c00446{letter-spacing:-0.414120px;}
.ls5e_c00446{letter-spacing:-0.399840px;}
.ls4b_c00446{letter-spacing:-0.378420px;}
.ls73_c00446{letter-spacing:-0.371280px;}
.ls6f_c00446{letter-spacing:-0.349860px;}
.ls82_c00446{letter-spacing:-0.343200px;}
.ls5b_c00446{letter-spacing:-0.321300px;}
.ls62_c00446{letter-spacing:-0.264180px;}
.ls69_c00446{letter-spacing:-0.226560px;}
.ls49_c00446{letter-spacing:-0.199920px;}
.ls95_c00446{letter-spacing:-0.184140px;}
.ls58_c00446{letter-spacing:-0.178500px;}
.ls70_c00446{letter-spacing:-0.135660px;}
.ls45_c00446{letter-spacing:-0.134400px;}
.ls6e_c00446{letter-spacing:-0.114240px;}
.ls8f_c00446{letter-spacing:-0.110880px;}
.ls75_c00446{letter-spacing:-0.078540px;}
.ls48_c00446{letter-spacing:-0.064260px;}
.ls71_c00446{letter-spacing:-0.057120px;}
.ls6b_c00446{letter-spacing:-0.042480px;}
.ls59_c00446{letter-spacing:-0.035700px;}
.ls57_c00446{letter-spacing:-0.028560px;}
.ls67_c00446{letter-spacing:-0.021240px;}
.ls44_c00446{letter-spacing:0.000000px;}
.ls99_c00446{letter-spacing:0.004260px;}
.ls14_c00446{letter-spacing:0.007140px;}
.ls18_c00446{letter-spacing:0.021240px;}
.ls10_c00446{letter-spacing:0.028560px;}
.ls4e_c00446{letter-spacing:0.036720px;}
.ls23_c00446{letter-spacing:0.049980px;}
.ls27_c00446{letter-spacing:0.092820px;}
.ls6_c00446{letter-spacing:0.099960px;}
.ls8e_c00446{letter-spacing:0.130982px;}
.ls2a_c00446{letter-spacing:0.135660px;}
.ls96_c00446{letter-spacing:0.174840px;}
.lsa_c00446{letter-spacing:0.199920px;}
.ls26_c00446{letter-spacing:0.207060px;}
.ls9_c00446{letter-spacing:0.221340px;}
.lsf_c00446{letter-spacing:0.228480px;}
.ls33_c00446{letter-spacing:0.255420px;}
.ls1_c00446{letter-spacing:0.257040px;}
.ls31_c00446{letter-spacing:0.276360px;}
.ls6d_c00446{letter-spacing:0.311520px;}
.ls13_c00446{letter-spacing:0.314160px;}
.lsc_c00446{letter-spacing:0.321300px;}
.ls11_c00446{letter-spacing:0.328440px;}
.ls42_c00446{letter-spacing:0.339360px;}
.ls22_c00446{letter-spacing:0.392700px;}
.ls3f_c00446{letter-spacing:0.393900px;}
.ls24_c00446{letter-spacing:0.399840px;}
.ls2_c00446{letter-spacing:0.406980px;}
.ls1c_c00446{letter-spacing:0.410640px;}
.ls4_c00446{letter-spacing:0.414120px;}
.ls19_c00446{letter-spacing:0.431880px;}
.ls65_c00446{letter-spacing:0.442680px;}
.ls1f_c00446{letter-spacing:0.456960px;}
.lsb_c00446{letter-spacing:0.464100px;}
.ls7_c00446{letter-spacing:0.492660px;}
.ls1a_c00446{letter-spacing:0.502680px;}
.ls12_c00446{letter-spacing:0.506940px;}
.ls17_c00446{letter-spacing:0.514080px;}
.ls2e_c00446{letter-spacing:0.534600px;}
.ls21_c00446{letter-spacing:0.585480px;}
.ls25_c00446{letter-spacing:0.592620px;}
.ls1b_c00446{letter-spacing:0.601800px;}
.ls35_c00446{letter-spacing:0.609120px;}
.ls29_c00446{letter-spacing:0.628320px;}
.lsd_c00446{letter-spacing:0.642600px;}
.ls3b_c00446{letter-spacing:0.648600px;}
.ls15_c00446{letter-spacing:0.678300px;}
.ls16_c00446{letter-spacing:0.721140px;}
.ls1e_c00446{letter-spacing:0.729240px;}
.lse_c00446{letter-spacing:0.756840px;}
.ls1d_c00446{letter-spacing:0.835440px;}
.ls5_c00446{letter-spacing:0.992460px;}
.ls52_c00446{letter-spacing:1.110030px;}
.ls80_c00446{letter-spacing:1.157542px;}
.ls36_c00446{letter-spacing:1.180800px;}
.ls38_c00446{letter-spacing:1.336680px;}
.ls32_c00446{letter-spacing:1.347960px;}
.ls7e_c00446{letter-spacing:1.350030px;}
.ls7a_c00446{letter-spacing:1.410000px;}
.ls4f_c00446{letter-spacing:1.530000px;}
.ls30_c00446{letter-spacing:1.545360px;}
.ls9b_c00446{letter-spacing:1.560000px;}
.ls28_c00446{letter-spacing:1.606500px;}
.ls8_c00446{letter-spacing:1.613640px;}
.ls37_c00446{letter-spacing:1.624320px;}
.ls40_c00446{letter-spacing:1.646880px;}
.ls9e_c00446{letter-spacing:1.680000px;}
.ls20_c00446{letter-spacing:1.692180px;}
.ls3a_c00446{letter-spacing:1.697640px;}
.ls34_c00446{letter-spacing:1.703280px;}
.ls89_c00446{letter-spacing:1.737120px;}
.ls8d_c00446{letter-spacing:1.770030px;}
.ls2c_c00446{letter-spacing:1.821720px;}
.ls2d_c00446{letter-spacing:1.923240px;}
.ls2f_c00446{letter-spacing:1.938420px;}
.ls3d_c00446{letter-spacing:1.985280px;}
.ls86_c00446{letter-spacing:1.990920px;}
.ls0_c00446{letter-spacing:2.077740px;}
.ls81_c00446{letter-spacing:2.100000px;}
.ls9a_c00446{letter-spacing:2.190030px;}
.ls9d_c00446{letter-spacing:2.263200px;}
.ls3c_c00446{letter-spacing:2.509800px;}
.ls3e_c00446{letter-spacing:2.571840px;}
.ls43_c00446{letter-spacing:2.583900px;}
.ls9c_c00446{letter-spacing:2.712840px;}
.ls50_c00446{letter-spacing:2.760000px;}
.ls2b_c00446{letter-spacing:2.770320px;}
.ls87_c00446{letter-spacing:2.820000px;}
.ls41_c00446{letter-spacing:3.211800px;}
.ls3_c00446{letter-spacing:3.319680px;}
.ls77_c00446{letter-spacing:3.360000px;}
.ls39_c00446{letter-spacing:8.347200px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{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__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00446{word-spacing:0.000000px;}
.ws0_c00446{word-spacing:24.487262px;}
._3d_c00446{margin-left:-19.035000px;}
._2a_c00446{margin-left:-17.321760px;}
._41_c00446{margin-left:-15.859500px;}
._26_c00446{margin-left:-14.697840px;}
._35_c00446{margin-left:-12.718200px;}
._15_c00446{margin-left:-10.833780px;}
._37_c00446{margin-left:-9.808800px;}
._2b_c00446{margin-left:-7.574400px;}
._36_c00446{margin-left:-6.474720px;}
._10_c00446{margin-left:-4.978920px;}
._33_c00446{margin-left:-3.964867px;}
._11_c00446{margin-left:-2.898840px;}
._2_c00446{margin-left:-1.385160px;}
._a_c00446{width:1.768200px;}
._9_c00446{width:2.982420px;}
._4_c00446{width:4.131540px;}
._8_c00446{width:5.440680px;}
._3_c00446{width:7.154280px;}
._39_c00446{width:8.174280px;}
._1_c00446{width:11.037600px;}
._5_c00446{width:12.988740px;}
._6_c00446{width:14.193840px;}
._14_c00446{width:15.651000px;}
._7_c00446{width:18.849480px;}
._13_c00446{width:21.420000px;}
._0_c00446{width:23.569200px;}
._12_c00446{width:24.997560px;}
._f_c00446{width:29.750160px;}
._d_c00446{width:33.877800px;}
._b_c00446{width:35.676120px;}
._c_c00446{width:39.279840px;}
._e_c00446{width:40.809120px;}
._3f_c00446{width:79.596000px;}
._17_c00446{width:107.160000px;}
._22_c00446{width:109.800000px;}
._31_c00446{width:114.321600px;}
._25_c00446{width:117.619200px;}
._1c_c00446{width:118.809600px;}
._1b_c00446{width:121.680000px;}
._1a_c00446{width:123.115200px;}
._1e_c00446{width:125.021400px;}
._19_c00446{width:127.545600px;}
._32_c00446{width:129.060000px;}
._18_c00446{width:130.500000px;}
._16_c00446{width:145.599360px;}
._21_c00446{width:149.917560px;}
._2c_c00446{width:291.595200px;}
._28_c00446{width:295.581600px;}
._27_c00446{width:318.580080px;}
._3a_c00446{width:343.839960px;}
._34_c00446{width:400.309860px;}
._2e_c00446{width:418.618920px;}
._43_c00446{width:453.930000px;}
._30_c00446{width:456.244800px;}
._20_c00446{width:459.181200px;}
._24_c00446{width:465.782400px;}
._42_c00446{width:488.995200px;}
._3b_c00446{width:624.678600px;}
._2f_c00446{width:631.260000px;}
._1f_c00446{width:637.458600px;}
._38_c00446{width:686.026080px;}
._23_c00446{width:784.389600px;}
._3c_c00446{width:794.610600px;}
._40_c00446{width:798.309360px;}
._3e_c00446{width:941.126400px;}
._45_c00446{width:970.159200px;}
._29_c00446{width:1144.022400px;}
._2d_c00446{width:1295.867760px;}
._1d_c00446{width:1433.732880px;}
._44_c00446{width:2151.159600px;}
.fc0_c00446{color:transparent;}
.fs6_c00446{font-size:12.960000px;}
.fs8_c00446{font-size:19.200600px;}
.fs7_c00446{font-size:22.200600px;}
.fs15_c00446{font-size:27.000600px;}
.fs27_c00446{font-size:27.360600px;}
.fsd_c00446{font-size:27.600000px;}
.fs10_c00446{font-size:28.200000px;}
.fs4_c00446{font-size:30.600000px;}
.fs2b_c00446{font-size:31.200000px;}
.fs1b_c00446{font-size:31.800600px;}
.fs2d_c00446{font-size:33.600000px;}
.fs18_c00446{font-size:34.560000px;}
.fs21_c00446{font-size:35.400600px;}
.fs26_c00446{font-size:36.000000px;}
.fse_c00446{font-size:41.400600px;}
.fs1c_c00446{font-size:42.000000px;}
.fs28_c00446{font-size:42.600000px;}
.fs2a_c00446{font-size:43.200000px;}
.fs29_c00446{font-size:43.800600px;}
.fs2c_c00446{font-size:44.640600px;}
.fs1f_c00446{font-size:48.000000px;}
.fs1_c00446{font-size:48.600000px;}
.fs17_c00446{font-size:50.400000px;}
.fs1d_c00446{font-size:53.400000px;}
.fs5_c00446{font-size:55.200000px;}
.fs11_c00446{font-size:56.400000px;}
.fs30_c00446{font-size:57.000000px;}
.fs12_c00446{font-size:57.600000px;}
.fs1a_c00446{font-size:58.200000px;}
.fs0_c00446{font-size:59.400000px;}
.fsf_c00446{font-size:60.600000px;}
.fs2f_c00446{font-size:61.200000px;}
.fs19_c00446{font-size:61.800000px;}
.fs13_c00446{font-size:62.400000px;}
.fs22_c00446{font-size:64.200000px;}
.fs1e_c00446{font-size:64.800000px;}
.fs14_c00446{font-size:66.000000px;}
.fs20_c00446{font-size:66.600000px;}
.fs2_c00446{font-size:67.200000px;}
.fs9_c00446{font-size:67.800000px;}
.fsa_c00446{font-size:70.800000px;}
.fs3_c00446{font-size:71.400000px;}
.fs2e_c00446{font-size:74.400000px;}
.fs16_c00446{font-size:75.000000px;}
.fsc_c00446{font-size:76.800000px;}
.fs23_c00446{font-size:79.200000px;}
.fs24_c00446{font-size:84.600000px;}
.fsb_c00446{font-size:117.000000px;}
.fs25_c00446{font-size:131.400000px;}
.y0_c00446{bottom:0.000000px;}
.y54_c00446{bottom:106.920006px;}
.y52_c00446{bottom:162.360006px;}
.y53_c00446{bottom:162.720006px;}
.y4f_c00446{bottom:163.800006px;}
.y50_c00446{bottom:168.840006px;}
.y51_c00446{bottom:171.015006px;}
.y4e_c00446{bottom:181.440006px;}
.y4d_c00446{bottom:196.920006px;}
.y4b_c00446{bottom:198.375006px;}
.y4c_c00446{bottom:205.575006px;}
.y4a_c00446{bottom:214.215006px;}
.y49_c00446{bottom:216.375006px;}
.y48_c00446{bottom:235.455006px;}
.y47_c00446{bottom:251.655006px;}
.y44_c00446{bottom:253.095006px;}
.y46_c00446{bottom:254.175006px;}
.y45_c00446{bottom:258.840006px;}
.y43_c00446{bottom:270.735006px;}
.y42_c00446{bottom:275.055006px;}
.y41_c00446{bottom:287.655006px;}
.y3f_c00446{bottom:290.535006px;}
.y40_c00446{bottom:291.615006px;}
.y3e_c00446{bottom:309.255006px;}
.y3d_c00446{bottom:323.655006px;}
.y3c_c00446{bottom:325.095006px;}
.y3b_c00446{bottom:327.615006px;}
.y3a_c00446{bottom:340.920006px;}
.y38_c00446{bottom:343.455006px;}
.y39_c00446{bottom:348.135006px;}
.y37_c00446{bottom:359.655006px;}
.y36_c00446{bottom:379.455006px;}
.y35_c00446{bottom:396.015006px;}
.y34_c00446{bottom:401.400006px;}
.y33_c00446{bottom:412.935006px;}
.y31_c00446{bottom:413.280006px;}
.y32_c00446{bottom:420.135006px;}
.y30_c00446{bottom:431.640006px;}
.y2c_c00446{bottom:447.135006px;}
.y2e_c00446{bottom:447.855006px;}
.y2f_c00446{bottom:448.560006px;}
.y2d_c00446{bottom:454.695006px;}
.y2b_c00446{bottom:467.280006px;}
.y29_c00446{bottom:484.215006px;}
.y2a_c00446{bottom:484.560006px;}
.y27_c00446{bottom:501.855006px;}
.y28_c00446{bottom:506.880006px;}
.y26_c00446{bottom:519.480006px;}
.y25_c00446{bottom:520.215006px;}
.y24_c00446{bottom:537.855006px;}
.y23_c00446{bottom:538.215006px;}
.y22_c00446{bottom:559.095006px;}
.y20_c00446{bottom:575.640006px;}
.y21_c00446{bottom:576.375006px;}
.y1f_c00446{bottom:591.855006px;}
.y1c_c00446{bottom:592.935006px;}
.y1e_c00446{bottom:594.375006px;}
.y1d_c00446{bottom:597.255006px;}
.y19_c00446{bottom:609.135006px;}
.y1b_c00446{bottom:609.855006px;}
.y1a_c00446{bottom:615.615006px;}
.y17_c00446{bottom:626.775006px;}
.y18_c00446{bottom:627.480006px;}
.y15_c00446{bottom:628.935006px;}
.y16_c00446{bottom:633.255006px;}
.y13_c00446{bottom:644.775006px;}
.y14_c00446{bottom:645.135006px;}
.y11_c00446{bottom:645.855006px;}
.y12_c00446{bottom:652.695006px;}
.y10_c00446{bottom:738.015006px;}
.yf_c00446{bottom:763.215006px;}
.ye_c00446{bottom:769.680006px;}
.yd_c00446{bottom:769.683756px;}
.yc_c00446{bottom:801.742356px;}
.yb_c00446{bottom:864.740406px;}
.ya_c00446{bottom:895.676706px;}
.y9_c00446{bottom:926.280006px;}
.y8_c00446{bottom:956.895006px;}
.y7_c00446{bottom:956.895456px;}
.y6_c00446{bottom:987.847356px;}
.y5_c00446{bottom:1018.460106px;}
.y4_c00446{bottom:1049.055006px;}
.y3_c00446{bottom:1077.480006px;}
.y2_c00446{bottom:1080.735006px;}
.y1_c00446{bottom:1154.895006px;}
.h7_c00446{height:8.631360px;}
.h2c_c00446{height:18.222160px;}
.h9_c00446{height:18.844339px;}
.h8_c00446{height:21.788675px;}
.h1a_c00446{height:23.016960px;}
.h2a_c00446{height:23.976000px;}
.h17_c00446{height:26.486428px;}
.h12_c00446{height:27.676758px;}
.h31_c00446{height:28.771200px;}
.he_c00446{height:28.785937px;}
.h34_c00446{height:29.730640px;}
.h4_c00446{height:30.017285px;}
.h5_c00446{height:30.032227px;}
.h32_c00446{height:30.621094px;}
.h38_c00446{height:32.540625px;}
.h37_c00446{height:32.960156px;}
.h3b_c00446{height:32.976562px;}
.h1c_c00446{height:33.167032px;}
.h22_c00446{height:36.921720px;}
.h2e_c00446{height:42.966507px;}
.h10_c00446{height:43.179532px;}
.h1d_c00446{height:43.804688px;}
.h2d_c00446{height:44.430469px;}
.h1f_c00446{height:47.085938px;}
.h19_c00446{height:49.440234px;}
.h36_c00446{height:54.148828px;}
.h6_c00446{height:54.175781px;}
.h16_c00446{height:55.325977px;}
.h1e_c00446{height:55.353516px;}
.h13_c00446{height:55.755000px;}
.h3e_c00446{height:55.942383px;}
.h2_c00446{height:58.297852px;}
.h33_c00446{height:58.823438px;}
.h20_c00446{height:59.441719px;}
.h11_c00446{height:59.445996px;}
.h21_c00446{height:59.475586px;}
.h35_c00446{height:59.935195px;}
.h2f_c00446{height:60.075000px;}
.h23_c00446{height:60.455391px;}
.h3a_c00446{height:60.648398px;}
.h14_c00446{height:61.242188px;}
.h1b_c00446{height:62.875195px;}
.h39_c00446{height:63.203906px;}
.h18_c00446{height:63.468398px;}
.h3d_c00446{height:63.829687px;}
.h30_c00446{height:64.243195px;}
.h15_c00446{height:64.775391px;}
.h29_c00446{height:65.081250px;}
.h27_c00446{height:66.958594px;}
.h2b_c00446{height:68.835938px;}
.ha_c00446{height:69.464958px;}
.hb_c00446{height:70.053595px;}
.h3_c00446{height:70.075195px;}
.hf_c00446{height:70.087500px;}
.hd_c00446{height:75.375000px;}
.h3c_c00446{height:77.596875px;}
.h24_c00446{height:77.691797px;}
.h25_c00446{height:77.730469px;}
.h26_c00446{height:83.030273px;}
.hc_c00446{height:122.027344px;}
.h28_c00446{height:128.961914px;}
.h1_c00446{height:1263.000000px;}
.h0_c00446{height:1263.240006px;}
.w1_c00446{width:892.500000px;}
.w0_c00446{width:892.799998px;}
.x0_c00446{left:0.000000px;}
.x27_c00446{left:82.994998px;}
.x1e_c00446{left:88.049999px;}
.x14_c00446{left:89.118299px;}
.x3f_c00446{left:90.494998px;}
.x19_c00446{left:104.129999px;}
.x4b_c00446{left:107.129999px;}
.x1_c00446{left:109.004999px;}
.x2e_c00446{left:110.954999px;}
.x1f_c00446{left:113.144998px;}
.x38_c00446{left:120.284999px;}
.x6_c00446{left:124.334998px;}
.x3c_c00446{left:126.659999px;}
.x43_c00446{left:127.949999px;}
.x20_c00446{left:130.619998px;}
.x4c_c00446{left:133.439998px;}
.x2f_c00446{left:134.819998px;}
.x23_c00446{left:140.534999px;}
.x42_c00446{left:142.004998px;}
.x29_c00446{left:144.659999px;}
.x24_c00446{left:147.989998px;}
.x32_c00446{left:149.114998px;}
.x31_c00446{left:150.329999px;}
.x7_c00446{left:152.549998px;}
.x46_c00446{left:157.064999px;}
.x3e_c00446{left:158.684999px;}
.x33_c00446{left:159.899998px;}
.x4d_c00446{left:162.914998px;}
.x8_c00446{left:163.964999px;}
.x3b_c00446{left:166.859998px;}
.x34_c00446{left:167.879998px;}
.x21_c00446{left:173.789998px;}
.x28_c00446{left:175.319998px;}
.x2a_c00446{left:176.834998px;}
.x3d_c00446{left:178.349998px;}
.x35_c00446{left:180.269999px;}
.x9_c00446{left:184.139998px;}
.x44_c00446{left:186.584998px;}
.x2b_c00446{left:187.649998px;}
.x4a_c00446{left:188.879998px;}
.x2c_c00446{left:194.834998px;}
.x47_c00446{left:197.864998px;}
.x39_c00446{left:200.504999px;}
.x1a_c00446{left:202.829998px;}
.x48_c00446{left:205.499998px;}
.x36_c00446{left:206.924998px;}
.x4e_c00446{left:208.484998px;}
.x1b_c00446{left:221.939999px;}
.x26_c00446{left:228.239999px;}
.xa_c00446{left:245.339999px;}
.x4f_c00446{left:255.689998px;}
.x1c_c00446{left:291.929999px;}
.x25_c00446{left:293.939999px;}
.x2_c00446{left:300.779998px;}
.xb_c00446{left:302.579998px;}
.x3_c00446{left:319.289999px;}
.x22_c00446{left:333.179999px;}
.x41_c00446{left:336.824998px;}
.x4_c00446{left:379.994999px;}
.xc_c00446{left:382.169999px;}
.x5_c00446{left:402.284998px;}
.xd_c00446{left:404.909999px;}
.x1d_c00446{left:423.089998px;}
.xe_c00446{left:429.059999px;}
.xf_c00446{left:436.499998px;}
.x40_c00446{left:462.824998px;}
.x2d_c00446{left:464.219998px;}
.x10_c00446{left:470.099999px;}
.x37_c00446{left:506.699998px;}
.x11_c00446{left:540.989998px;}
.x3a_c00446{left:591.299998px;}
.x12_c00446{left:615.149999px;}
.x15_c00446{left:627.314999px;}
.x45_c00446{left:633.344998px;}
.x16_c00446{left:652.529999px;}
.x17_c00446{left:681.599999px;}
.x18_c00446{left:706.844998px;}
.x13_c00446{left:743.594998px;}
.x49_c00446{left:759.134999px;}
.x30_c00446{left:760.859998px;}
@media print{
.vb_c00446{vertical-align:-15.413333pt;}
.v6_c00446{vertical-align:-12.853333pt;}
.ve_c00446{vertical-align:-11.520000pt;}
.v5_c00446{vertical-align:-10.293333pt;}
.v3_c00446{vertical-align:-9.013333pt;}
.v8_c00446{vertical-align:-7.733333pt;}
.v4_c00446{vertical-align:-6.400000pt;}
.va_c00446{vertical-align:-5.120000pt;}
.v1_c00446{vertical-align:-3.840000pt;}
.v2_c00446{vertical-align:-1.275733pt;}
.v0_c00446{vertical-align:0.000000pt;}
.v7_c00446{vertical-align:1.333333pt;}
.vd_c00446{vertical-align:5.173333pt;}
.v9_c00446{vertical-align:8.960000pt;}
.vc_c00446{vertical-align:10.240000pt;}
.ls97_c00446{letter-spacing:-4.088000pt;}
.ls90_c00446{letter-spacing:-2.464000pt;}
.ls76_c00446{letter-spacing:-2.389333pt;}
.ls9f_c00446{letter-spacing:-2.314667pt;}
.ls47_c00446{letter-spacing:-2.221333pt;}
.ls4c_c00446{letter-spacing:-2.202293pt;}
.ls7c_c00446{letter-spacing:-1.941333pt;}
.ls79_c00446{letter-spacing:-1.885333pt;}
.ls8c_c00446{letter-spacing:-1.858400pt;}
.ls63_c00446{letter-spacing:-1.802453pt;}
.ls7d_c00446{letter-spacing:-1.754667pt;}
.ls51_c00446{letter-spacing:-1.717333pt;}
.ls4a_c00446{letter-spacing:-1.675520pt;}
.ls91_c00446{letter-spacing:-1.624320pt;}
.ls94_c00446{letter-spacing:-1.604267pt;}
.ls8b_c00446{letter-spacing:-1.493333pt;}
.ls8a_c00446{letter-spacing:-1.480533pt;}
.ls5f_c00446{letter-spacing:-1.428000pt;}
.ls88_c00446{letter-spacing:-1.323520pt;}
.ls5d_c00446{letter-spacing:-1.320107pt;}
.ls6c_c00446{letter-spacing:-1.271253pt;}
.ls5c_c00446{letter-spacing:-1.205867pt;}
.ls7f_c00446{letter-spacing:-1.196160pt;}
.ls85_c00446{letter-spacing:-1.022720pt;}
.ls5a_c00446{letter-spacing:-1.021813pt;}
.ls54_c00446{letter-spacing:-0.996427pt;}
.ls72_c00446{letter-spacing:-0.990080pt;}
.ls78_c00446{letter-spacing:-0.964693pt;}
.ls55_c00446{letter-spacing:-0.920267pt;}
.ls83_c00446{letter-spacing:-0.807840pt;}
.ls92_c00446{letter-spacing:-0.802133pt;}
.ls74_c00446{letter-spacing:-0.786987pt;}
.ls93_c00446{letter-spacing:-0.716907pt;}
.ls61_c00446{letter-spacing:-0.710827pt;}
.ls60_c00446{letter-spacing:-0.704480pt;}
.ls4d_c00446{letter-spacing:-0.666400pt;}
.ls7b_c00446{letter-spacing:-0.634880pt;}
.ls64_c00446{letter-spacing:-0.621973pt;}
.ls66_c00446{letter-spacing:-0.583893pt;}
.lsa0_c00446{letter-spacing:-0.582667pt;}
.ls84_c00446{letter-spacing:-0.551467pt;}
.ls6a_c00446{letter-spacing:-0.516053pt;}
.ls46_c00446{letter-spacing:-0.507733pt;}
.ls53_c00446{letter-spacing:-0.489829pt;}
.ls68_c00446{letter-spacing:-0.446827pt;}
.ls98_c00446{letter-spacing:-0.421120pt;}
.ls56_c00446{letter-spacing:-0.368107pt;}
.ls5e_c00446{letter-spacing:-0.355413pt;}
.ls4b_c00446{letter-spacing:-0.336373pt;}
.ls73_c00446{letter-spacing:-0.330027pt;}
.ls6f_c00446{letter-spacing:-0.310987pt;}
.ls82_c00446{letter-spacing:-0.305067pt;}
.ls5b_c00446{letter-spacing:-0.285600pt;}
.ls62_c00446{letter-spacing:-0.234827pt;}
.ls69_c00446{letter-spacing:-0.201387pt;}
.ls49_c00446{letter-spacing:-0.177707pt;}
.ls95_c00446{letter-spacing:-0.163680pt;}
.ls58_c00446{letter-spacing:-0.158667pt;}
.ls70_c00446{letter-spacing:-0.120587pt;}
.ls45_c00446{letter-spacing:-0.119467pt;}
.ls6e_c00446{letter-spacing:-0.101547pt;}
.ls8f_c00446{letter-spacing:-0.098560pt;}
.ls75_c00446{letter-spacing:-0.069813pt;}
.ls48_c00446{letter-spacing:-0.057120pt;}
.ls71_c00446{letter-spacing:-0.050773pt;}
.ls6b_c00446{letter-spacing:-0.037760pt;}
.ls59_c00446{letter-spacing:-0.031733pt;}
.ls57_c00446{letter-spacing:-0.025387pt;}
.ls67_c00446{letter-spacing:-0.018880pt;}
.ls44_c00446{letter-spacing:0.000000pt;}
.ls99_c00446{letter-spacing:0.003787pt;}
.ls14_c00446{letter-spacing:0.006347pt;}
.ls18_c00446{letter-spacing:0.018880pt;}
.ls10_c00446{letter-spacing:0.025387pt;}
.ls4e_c00446{letter-spacing:0.032640pt;}
.ls23_c00446{letter-spacing:0.044427pt;}
.ls27_c00446{letter-spacing:0.082507pt;}
.ls6_c00446{letter-spacing:0.088853pt;}
.ls8e_c00446{letter-spacing:0.116429pt;}
.ls2a_c00446{letter-spacing:0.120587pt;}
.ls96_c00446{letter-spacing:0.155413pt;}
.lsa_c00446{letter-spacing:0.177707pt;}
.ls26_c00446{letter-spacing:0.184053pt;}
.ls9_c00446{letter-spacing:0.196747pt;}
.lsf_c00446{letter-spacing:0.203093pt;}
.ls33_c00446{letter-spacing:0.227040pt;}
.ls1_c00446{letter-spacing:0.228480pt;}
.ls31_c00446{letter-spacing:0.245653pt;}
.ls6d_c00446{letter-spacing:0.276907pt;}
.ls13_c00446{letter-spacing:0.279253pt;}
.lsc_c00446{letter-spacing:0.285600pt;}
.ls11_c00446{letter-spacing:0.291947pt;}
.ls42_c00446{letter-spacing:0.301653pt;}
.ls22_c00446{letter-spacing:0.349067pt;}
.ls3f_c00446{letter-spacing:0.350133pt;}
.ls24_c00446{letter-spacing:0.355413pt;}
.ls2_c00446{letter-spacing:0.361760pt;}
.ls1c_c00446{letter-spacing:0.365013pt;}
.ls4_c00446{letter-spacing:0.368107pt;}
.ls19_c00446{letter-spacing:0.383893pt;}
.ls65_c00446{letter-spacing:0.393493pt;}
.ls1f_c00446{letter-spacing:0.406187pt;}
.lsb_c00446{letter-spacing:0.412533pt;}
.ls7_c00446{letter-spacing:0.437920pt;}
.ls1a_c00446{letter-spacing:0.446827pt;}
.ls12_c00446{letter-spacing:0.450613pt;}
.ls17_c00446{letter-spacing:0.456960pt;}
.ls2e_c00446{letter-spacing:0.475200pt;}
.ls21_c00446{letter-spacing:0.520427pt;}
.ls25_c00446{letter-spacing:0.526773pt;}
.ls1b_c00446{letter-spacing:0.534933pt;}
.ls35_c00446{letter-spacing:0.541440pt;}
.ls29_c00446{letter-spacing:0.558507pt;}
.lsd_c00446{letter-spacing:0.571200pt;}
.ls3b_c00446{letter-spacing:0.576533pt;}
.ls15_c00446{letter-spacing:0.602933pt;}
.ls16_c00446{letter-spacing:0.641013pt;}
.ls1e_c00446{letter-spacing:0.648213pt;}
.lse_c00446{letter-spacing:0.672747pt;}
.ls1d_c00446{letter-spacing:0.742613pt;}
.ls5_c00446{letter-spacing:0.882187pt;}
.ls52_c00446{letter-spacing:0.986693pt;}
.ls80_c00446{letter-spacing:1.028926pt;}
.ls36_c00446{letter-spacing:1.049600pt;}
.ls38_c00446{letter-spacing:1.188160pt;}
.ls32_c00446{letter-spacing:1.198187pt;}
.ls7e_c00446{letter-spacing:1.200027pt;}
.ls7a_c00446{letter-spacing:1.253333pt;}
.ls4f_c00446{letter-spacing:1.360000pt;}
.ls30_c00446{letter-spacing:1.373653pt;}
.ls9b_c00446{letter-spacing:1.386667pt;}
.ls28_c00446{letter-spacing:1.428000pt;}
.ls8_c00446{letter-spacing:1.434347pt;}
.ls37_c00446{letter-spacing:1.443840pt;}
.ls40_c00446{letter-spacing:1.463893pt;}
.ls9e_c00446{letter-spacing:1.493333pt;}
.ls20_c00446{letter-spacing:1.504160pt;}
.ls3a_c00446{letter-spacing:1.509013pt;}
.ls34_c00446{letter-spacing:1.514027pt;}
.ls89_c00446{letter-spacing:1.544107pt;}
.ls8d_c00446{letter-spacing:1.573360pt;}
.ls2c_c00446{letter-spacing:1.619307pt;}
.ls2d_c00446{letter-spacing:1.709547pt;}
.ls2f_c00446{letter-spacing:1.723040pt;}
.ls3d_c00446{letter-spacing:1.764693pt;}
.ls86_c00446{letter-spacing:1.769707pt;}
.ls0_c00446{letter-spacing:1.846880pt;}
.ls81_c00446{letter-spacing:1.866667pt;}
.ls9a_c00446{letter-spacing:1.946693pt;}
.ls9d_c00446{letter-spacing:2.011733pt;}
.ls3c_c00446{letter-spacing:2.230933pt;}
.ls3e_c00446{letter-spacing:2.286080pt;}
.ls43_c00446{letter-spacing:2.296800pt;}
.ls9c_c00446{letter-spacing:2.411413pt;}
.ls50_c00446{letter-spacing:2.453333pt;}
.ls2b_c00446{letter-spacing:2.462507pt;}
.ls87_c00446{letter-spacing:2.506667pt;}
.ls41_c00446{letter-spacing:2.854933pt;}
.ls3_c00446{letter-spacing:2.950827pt;}
.ls77_c00446{letter-spacing:2.986667pt;}
.ls39_c00446{letter-spacing:7.419733pt;}
.ws1_c00446{word-spacing:0.000000pt;}
.ws0_c00446{word-spacing:21.766455pt;}
._3d_c00446{margin-left:-16.920000pt;}
._2a_c00446{margin-left:-15.397120pt;}
._41_c00446{margin-left:-14.097333pt;}
._26_c00446{margin-left:-13.064747pt;}
._35_c00446{margin-left:-11.305067pt;}
._15_c00446{margin-left:-9.630027pt;}
._37_c00446{margin-left:-8.718933pt;}
._2b_c00446{margin-left:-6.732800pt;}
._36_c00446{margin-left:-5.755307pt;}
._10_c00446{margin-left:-4.425707pt;}
._33_c00446{margin-left:-3.524326pt;}
._11_c00446{margin-left:-2.576747pt;}
._2_c00446{margin-left:-1.231253pt;}
._a_c00446{width:1.571733pt;}
._9_c00446{width:2.651040pt;}
._4_c00446{width:3.672480pt;}
._8_c00446{width:4.836160pt;}
._3_c00446{width:6.359360pt;}
._39_c00446{width:7.266027pt;}
._1_c00446{width:9.811200pt;}
._5_c00446{width:11.545547pt;}
._6_c00446{width:12.616747pt;}
._14_c00446{width:13.912000pt;}
._7_c00446{width:16.755093pt;}
._13_c00446{width:19.040000pt;}
._0_c00446{width:20.950400pt;}
._12_c00446{width:22.220053pt;}
._f_c00446{width:26.444587pt;}
._d_c00446{width:30.113600pt;}
._b_c00446{width:31.712107pt;}
._c_c00446{width:34.915413pt;}
._e_c00446{width:36.274773pt;}
._3f_c00446{width:70.752000pt;}
._17_c00446{width:95.253333pt;}
._22_c00446{width:97.600000pt;}
._31_c00446{width:101.619200pt;}
._25_c00446{width:104.550400pt;}
._1c_c00446{width:105.608533pt;}
._1b_c00446{width:108.160000pt;}
._1a_c00446{width:109.435733pt;}
._1e_c00446{width:111.130133pt;}
._19_c00446{width:113.373867pt;}
._32_c00446{width:114.720000pt;}
._18_c00446{width:116.000000pt;}
._16_c00446{width:129.421653pt;}
._21_c00446{width:133.260053pt;}
._2c_c00446{width:259.195733pt;}
._28_c00446{width:262.739200pt;}
._27_c00446{width:283.182293pt;}
._3a_c00446{width:305.635520pt;}
._34_c00446{width:355.830987pt;}
._2e_c00446{width:372.105707pt;}
._43_c00446{width:403.493333pt;}
._30_c00446{width:405.550933pt;}
._20_c00446{width:408.161067pt;}
._24_c00446{width:414.028800pt;}
._42_c00446{width:434.662400pt;}
._3b_c00446{width:555.269867pt;}
._2f_c00446{width:561.120000pt;}
._1f_c00446{width:566.629867pt;}
._38_c00446{width:609.800960pt;}
._23_c00446{width:697.235200pt;}
._3c_c00446{width:706.320533pt;}
._40_c00446{width:709.608320pt;}
._3e_c00446{width:836.556800pt;}
._45_c00446{width:862.363733pt;}
._29_c00446{width:1016.908800pt;}
._2d_c00446{width:1151.882453pt;}
._1d_c00446{width:1274.429227pt;}
._44_c00446{width:1912.141867pt;}
.fs6_c00446{font-size:11.520000pt;}
.fs8_c00446{font-size:17.067200pt;}
.fs7_c00446{font-size:19.733867pt;}
.fs15_c00446{font-size:24.000533pt;}
.fs27_c00446{font-size:24.320533pt;}
.fsd_c00446{font-size:24.533333pt;}
.fs10_c00446{font-size:25.066667pt;}
.fs4_c00446{font-size:27.200000pt;}
.fs2b_c00446{font-size:27.733333pt;}
.fs1b_c00446{font-size:28.267200pt;}
.fs2d_c00446{font-size:29.866667pt;}
.fs18_c00446{font-size:30.720000pt;}
.fs21_c00446{font-size:31.467200pt;}
.fs26_c00446{font-size:32.000000pt;}
.fse_c00446{font-size:36.800533pt;}
.fs1c_c00446{font-size:37.333333pt;}
.fs28_c00446{font-size:37.866667pt;}
.fs2a_c00446{font-size:38.400000pt;}
.fs29_c00446{font-size:38.933867pt;}
.fs2c_c00446{font-size:39.680533pt;}
.fs1f_c00446{font-size:42.666667pt;}
.fs1_c00446{font-size:43.200000pt;}
.fs17_c00446{font-size:44.800000pt;}
.fs1d_c00446{font-size:47.466667pt;}
.fs5_c00446{font-size:49.066667pt;}
.fs11_c00446{font-size:50.133333pt;}
.fs30_c00446{font-size:50.666667pt;}
.fs12_c00446{font-size:51.200000pt;}
.fs1a_c00446{font-size:51.733333pt;}
.fs0_c00446{font-size:52.800000pt;}
.fsf_c00446{font-size:53.866667pt;}
.fs2f_c00446{font-size:54.400000pt;}
.fs19_c00446{font-size:54.933333pt;}
.fs13_c00446{font-size:55.466667pt;}
.fs22_c00446{font-size:57.066667pt;}
.fs1e_c00446{font-size:57.600000pt;}
.fs14_c00446{font-size:58.666667pt;}
.fs20_c00446{font-size:59.200000pt;}
.fs2_c00446{font-size:59.733333pt;}
.fs9_c00446{font-size:60.266667pt;}
.fsa_c00446{font-size:62.933333pt;}
.fs3_c00446{font-size:63.466667pt;}
.fs2e_c00446{font-size:66.133333pt;}
.fs16_c00446{font-size:66.666667pt;}
.fsc_c00446{font-size:68.266667pt;}
.fs23_c00446{font-size:70.400000pt;}
.fs24_c00446{font-size:75.200000pt;}
.fsb_c00446{font-size:104.000000pt;}
.fs25_c00446{font-size:116.800000pt;}
.y0_c00446{bottom:0.000000pt;}
.y54_c00446{bottom:95.040005pt;}
.y52_c00446{bottom:144.320005pt;}
.y53_c00446{bottom:144.640005pt;}
.y4f_c00446{bottom:145.600005pt;}
.y50_c00446{bottom:150.080005pt;}
.y51_c00446{bottom:152.013339pt;}
.y4e_c00446{bottom:161.280005pt;}
.y4d_c00446{bottom:175.040005pt;}
.y4b_c00446{bottom:176.333339pt;}
.y4c_c00446{bottom:182.733339pt;}
.y4a_c00446{bottom:190.413339pt;}
.y49_c00446{bottom:192.333339pt;}
.y48_c00446{bottom:209.293339pt;}
.y47_c00446{bottom:223.693339pt;}
.y44_c00446{bottom:224.973339pt;}
.y46_c00446{bottom:225.933339pt;}
.y45_c00446{bottom:230.080005pt;}
.y43_c00446{bottom:240.653339pt;}
.y42_c00446{bottom:244.493339pt;}
.y41_c00446{bottom:255.693339pt;}
.y3f_c00446{bottom:258.253339pt;}
.y40_c00446{bottom:259.213339pt;}
.y3e_c00446{bottom:274.893339pt;}
.y3d_c00446{bottom:287.693339pt;}
.y3c_c00446{bottom:288.973339pt;}
.y3b_c00446{bottom:291.213339pt;}
.y3a_c00446{bottom:303.040005pt;}
.y38_c00446{bottom:305.293339pt;}
.y39_c00446{bottom:309.453339pt;}
.y37_c00446{bottom:319.693339pt;}
.y36_c00446{bottom:337.293339pt;}
.y35_c00446{bottom:352.013339pt;}
.y34_c00446{bottom:356.800005pt;}
.y33_c00446{bottom:367.053339pt;}
.y31_c00446{bottom:367.360005pt;}
.y32_c00446{bottom:373.453339pt;}
.y30_c00446{bottom:383.680005pt;}
.y2c_c00446{bottom:397.453339pt;}
.y2e_c00446{bottom:398.093339pt;}
.y2f_c00446{bottom:398.720005pt;}
.y2d_c00446{bottom:404.173339pt;}
.y2b_c00446{bottom:415.360005pt;}
.y29_c00446{bottom:430.413339pt;}
.y2a_c00446{bottom:430.720005pt;}
.y27_c00446{bottom:446.093339pt;}
.y28_c00446{bottom:450.560005pt;}
.y26_c00446{bottom:461.760005pt;}
.y25_c00446{bottom:462.413339pt;}
.y24_c00446{bottom:478.093339pt;}
.y23_c00446{bottom:478.413339pt;}
.y22_c00446{bottom:496.973339pt;}
.y20_c00446{bottom:511.680005pt;}
.y21_c00446{bottom:512.333339pt;}
.y1f_c00446{bottom:526.093339pt;}
.y1c_c00446{bottom:527.053339pt;}
.y1e_c00446{bottom:528.333339pt;}
.y1d_c00446{bottom:530.893339pt;}
.y19_c00446{bottom:541.453339pt;}
.y1b_c00446{bottom:542.093339pt;}
.y1a_c00446{bottom:547.213339pt;}
.y17_c00446{bottom:557.133339pt;}
.y18_c00446{bottom:557.760005pt;}
.y15_c00446{bottom:559.053339pt;}
.y16_c00446{bottom:562.893339pt;}
.y13_c00446{bottom:573.133339pt;}
.y14_c00446{bottom:573.453339pt;}
.y11_c00446{bottom:574.093339pt;}
.y12_c00446{bottom:580.173339pt;}
.y10_c00446{bottom:656.013339pt;}
.yf_c00446{bottom:678.413339pt;}
.ye_c00446{bottom:684.160005pt;}
.yd_c00446{bottom:684.163339pt;}
.yc_c00446{bottom:712.659872pt;}
.yb_c00446{bottom:768.658139pt;}
.ya_c00446{bottom:796.157072pt;}
.y9_c00446{bottom:823.360005pt;}
.y8_c00446{bottom:850.573339pt;}
.y7_c00446{bottom:850.573739pt;}
.y6_c00446{bottom:878.086539pt;}
.y5_c00446{bottom:905.297872pt;}
.y4_c00446{bottom:932.493339pt;}
.y3_c00446{bottom:957.760005pt;}
.y2_c00446{bottom:960.653339pt;}
.y1_c00446{bottom:1026.573339pt;}
.h7_c00446{height:7.672320pt;}
.h2c_c00446{height:16.197475pt;}
.h9_c00446{height:16.750523pt;}
.h8_c00446{height:19.367711pt;}
.h1a_c00446{height:20.459520pt;}
.h2a_c00446{height:21.312000pt;}
.h17_c00446{height:23.543492pt;}
.h12_c00446{height:24.601563pt;}
.h31_c00446{height:25.574400pt;}
.he_c00446{height:25.587500pt;}
.h34_c00446{height:26.427235pt;}
.h4_c00446{height:26.682031pt;}
.h5_c00446{height:26.695312pt;}
.h32_c00446{height:27.218750pt;}
.h38_c00446{height:28.925000pt;}
.h37_c00446{height:29.297917pt;}
.h3b_c00446{height:29.312500pt;}
.h1c_c00446{height:29.481806pt;}
.h22_c00446{height:32.819306pt;}
.h2e_c00446{height:38.192450pt;}
.h10_c00446{height:38.381806pt;}
.h1d_c00446{height:38.937500pt;}
.h2d_c00446{height:39.493750pt;}
.h1f_c00446{height:41.854167pt;}
.h19_c00446{height:43.946875pt;}
.h36_c00446{height:48.132292pt;}
.h6_c00446{height:48.156250pt;}
.h16_c00446{height:49.178646pt;}
.h1e_c00446{height:49.203125pt;}
.h13_c00446{height:49.560000pt;}
.h3e_c00446{height:49.726562pt;}
.h2_c00446{height:51.820312pt;}
.h33_c00446{height:52.287500pt;}
.h20_c00446{height:52.837083pt;}
.h11_c00446{height:52.840885pt;}
.h21_c00446{height:52.867187pt;}
.h35_c00446{height:53.275729pt;}
.h2f_c00446{height:53.400000pt;}
.h23_c00446{height:53.738125pt;}
.h3a_c00446{height:53.909687pt;}
.h14_c00446{height:54.437500pt;}
.h1b_c00446{height:55.889063pt;}
.h39_c00446{height:56.181250pt;}
.h18_c00446{height:56.416354pt;}
.h3d_c00446{height:56.737500pt;}
.h30_c00446{height:57.105063pt;}
.h15_c00446{height:57.578125pt;}
.h29_c00446{height:57.850000pt;}
.h27_c00446{height:59.518750pt;}
.h2b_c00446{height:61.187500pt;}
.ha_c00446{height:61.746629pt;}
.hb_c00446{height:62.269862pt;}
.h3_c00446{height:62.289062pt;}
.hf_c00446{height:62.300000pt;}
.hd_c00446{height:67.000000pt;}
.h3c_c00446{height:68.975000pt;}
.h24_c00446{height:69.059375pt;}
.h25_c00446{height:69.093750pt;}
.h26_c00446{height:73.804688pt;}
.hc_c00446{height:108.468750pt;}
.h28_c00446{height:114.632812pt;}
.h1_c00446{height:1122.666667pt;}
.h0_c00446{height:1122.880005pt;}
.w1_c00446{width:793.333333pt;}
.w0_c00446{width:793.599999pt;}
.x0_c00446{left:0.000000pt;}
.x27_c00446{left:73.773332pt;}
.x1e_c00446{left:78.266665pt;}
.x14_c00446{left:79.216265pt;}
.x3f_c00446{left:80.439999pt;}
.x19_c00446{left:92.559999pt;}
.x4b_c00446{left:95.226665pt;}
.x1_c00446{left:96.893332pt;}
.x2e_c00446{left:98.626665pt;}
.x1f_c00446{left:100.573332pt;}
.x38_c00446{left:106.919999pt;}
.x6_c00446{left:110.519999pt;}
.x3c_c00446{left:112.586665pt;}
.x43_c00446{left:113.733332pt;}
.x20_c00446{left:116.106665pt;}
.x4c_c00446{left:118.613332pt;}
.x2f_c00446{left:119.839999pt;}
.x23_c00446{left:124.919999pt;}
.x42_c00446{left:126.226665pt;}
.x29_c00446{left:128.586665pt;}
.x24_c00446{left:131.546665pt;}
.x32_c00446{left:132.546665pt;}
.x31_c00446{left:133.626665pt;}
.x7_c00446{left:135.599999pt;}
.x46_c00446{left:139.613332pt;}
.x3e_c00446{left:141.053332pt;}
.x33_c00446{left:142.133332pt;}
.x4d_c00446{left:144.813332pt;}
.x8_c00446{left:145.746665pt;}
.x3b_c00446{left:148.319999pt;}
.x34_c00446{left:149.226665pt;}
.x21_c00446{left:154.479999pt;}
.x28_c00446{left:155.839999pt;}
.x2a_c00446{left:157.186665pt;}
.x3d_c00446{left:158.533332pt;}
.x35_c00446{left:160.239999pt;}
.x9_c00446{left:163.679999pt;}
.x44_c00446{left:165.853332pt;}
.x2b_c00446{left:166.799999pt;}
.x4a_c00446{left:167.893332pt;}
.x2c_c00446{left:173.186665pt;}
.x47_c00446{left:175.879999pt;}
.x39_c00446{left:178.226665pt;}
.x1a_c00446{left:180.293332pt;}
.x48_c00446{left:182.666665pt;}
.x36_c00446{left:183.933332pt;}
.x4e_c00446{left:185.319999pt;}
.x1b_c00446{left:197.279999pt;}
.x26_c00446{left:202.879999pt;}
.xa_c00446{left:218.079999pt;}
.x4f_c00446{left:227.279999pt;}
.x1c_c00446{left:259.493332pt;}
.x25_c00446{left:261.279999pt;}
.x2_c00446{left:267.359999pt;}
.xb_c00446{left:268.959999pt;}
.x3_c00446{left:283.813332pt;}
.x22_c00446{left:296.159999pt;}
.x41_c00446{left:299.399999pt;}
.x4_c00446{left:337.773332pt;}
.xc_c00446{left:339.706665pt;}
.x5_c00446{left:357.586665pt;}
.xd_c00446{left:359.919999pt;}
.x1d_c00446{left:376.079999pt;}
.xe_c00446{left:381.386665pt;}
.xf_c00446{left:387.999999pt;}
.x40_c00446{left:411.399999pt;}
.x2d_c00446{left:412.639999pt;}
.x10_c00446{left:417.866665pt;}
.x37_c00446{left:450.399999pt;}
.x11_c00446{left:480.879999pt;}
.x3a_c00446{left:525.599999pt;}
.x12_c00446{left:546.799999pt;}
.x15_c00446{left:557.613332pt;}
.x45_c00446{left:562.973332pt;}
.x16_c00446{left:580.026665pt;}
.x17_c00446{left:605.866665pt;}
.x18_c00446{left:628.306665pt;}
.x13_c00446{left:660.973332pt;}
.x49_c00446{left:674.786665pt;}
.x30_c00446{left:676.319999pt;}
}





/* 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_c00447 {
    display:none;
  }
  .loading-indicator_c00447.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00447 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_c00447 { 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_c00447" -> "#page-container .classname_c00447")
 */
.pf_c00447 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00447 { /* 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_c00447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00447 { /* 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_c00447 { /* 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_c00447 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00447 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00447 {overflow:visible;}
  }
}
.c_c00447 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00447 { /* 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_c00447:after { /* webkit #35443 */
  content: '';
}
.t_c00447:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00447 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 */
}
.__c00447 { /* 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_c00447 { /* info for Javascript */
  display:none;
}
.l_c00447 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00447 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00447 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00447: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_c00447 {
    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_c00447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00447.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_c00447 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00447{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00447;src:url('chunks/assets/font_a45b409aa392cda3256ec895.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.311035;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_c00447;src:url('chunks/assets/font_dee82384ab64e277e309510a.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00447{transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238577,0.000000,0.000000,0.250000,0,0);}
.m1_c00447{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);}
.v0_c00447{vertical-align:0.000000px;}
.ls1_c00447{letter-spacing:-2.331000px;}
.ls2_c00447{letter-spacing:-2.124000px;}
.ls4_c00447{letter-spacing:0.463320px;}
.ls3_c00447{letter-spacing:0.729240px;}
.ls0_c00447{letter-spacing:0.736320px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{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__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00447{word-spacing:0.000000px;}
._0_c00447{width:4.856880px;}
._1_c00447{width:6.301200px;}
.fc0_c00447{color:transparent;}
.fs2_c00447{font-size:59.400000px;}
.fs0_c00447{font-size:66.600000px;}
.fs1_c00447{font-size:70.800000px;}
.y0_c00447{bottom:0.000000px;}
.y3_c00447{bottom:108.000000px;}
.y2_c00447{bottom:1081.815000px;}
.y1_c00447{bottom:1158.495000px;}
.h4_c00447{height:58.297852px;}
.h2_c00447{height:67.120312px;}
.h3_c00447{height:69.486328px;}
.h1_c00447{height:1263.000000px;}
.h0_c00447{height:1263.240000px;}
.w1_c00447{width:892.500000px;}
.w0_c00447{width:892.800000px;}
.x0_c00447{left:0.000000px;}
.x2_c00447{left:92.730000px;}
.x1_c00447{left:113.685000px;}
.x3_c00447{left:425.340000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls1_c00447{letter-spacing:-2.072000pt;}
.ls2_c00447{letter-spacing:-1.888000pt;}
.ls4_c00447{letter-spacing:0.411840pt;}
.ls3_c00447{letter-spacing:0.648213pt;}
.ls0_c00447{letter-spacing:0.654507pt;}
.ws0_c00447{word-spacing:0.000000pt;}
._0_c00447{width:4.317227pt;}
._1_c00447{width:5.601067pt;}
.fs2_c00447{font-size:52.800000pt;}
.fs0_c00447{font-size:59.200000pt;}
.fs1_c00447{font-size:62.933333pt;}
.y0_c00447{bottom:0.000000pt;}
.y3_c00447{bottom:96.000000pt;}
.y2_c00447{bottom:961.613333pt;}
.y1_c00447{bottom:1029.773333pt;}
.h4_c00447{height:51.820312pt;}
.h2_c00447{height:59.662500pt;}
.h3_c00447{height:61.765625pt;}
.h1_c00447{height:1122.666667pt;}
.h0_c00447{height:1122.880000pt;}
.w1_c00447{width:793.333333pt;}
.w0_c00447{width:793.600000pt;}
.x0_c00447{left:0.000000pt;}
.x2_c00447{left:82.426667pt;}
.x1_c00447{left:101.053333pt;}
.x3_c00447{left:378.080000pt;}
}





/* 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_c00448 {
    display:none;
  }
  .loading-indicator_c00448.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00448 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_c00448 { 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_c00448" -> "#page-container .classname_c00448")
 */
.pf_c00448 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00448 { /* 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_c00448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00448 { /* 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_c00448 { /* 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_c00448 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00448 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00448 {overflow:visible;}
  }
}
.c_c00448 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00448 { /* 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_c00448:after { /* webkit #35443 */
  content: '';
}
.t_c00448:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00448 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 */
}
.__c00448 { /* 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_c00448 { /* info for Javascript */
  display:none;
}
.l_c00448 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00448 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00448 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00448: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_c00448 {
    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_c00448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00448.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_c00448 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00448{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00448;src:url('chunks/assets/font_34ecbbfcdf645e9fc2c2d856.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;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:ff2_c00448;src:url('chunks/assets/font_8987d5bdbd118d01a1001af2.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.284668;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_c00448;src:url('chunks/assets/font_f6584d68421f9a8b481591f1.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:0.666000;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_c00448;src:url('chunks/assets/font_b404399035cd6c81b2be6612.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;line-height:1.284180;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_c00448;src:url('chunks/assets/font_36dfff03e38886d9adafd17d.woff2')format("woff");}.ff5_c00448{font-family:ff5_c00448;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:ff6_c00448;src:url('chunks/assets/font_dba2943c3aa1a3b1f89b5b01.woff2')format("woff");}.ff6_c00448{font-family:ff6_c00448;line-height:1.311035;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_c00448;src:url('chunks/assets/font_e7d067dbe1e39d09fa08639d.woff2')format("woff");}.ff7_c00448{font-family:ff7_c00448;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;}
.mb_c00448{transform:matrix(0.026209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026209,0.000000,0.000000,0.250000,0,0);}
.m35_c00448{transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);}
.m31_c00448{transform:matrix(0.048850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048850,0.000000,0.000000,0.250000,0,0);}
.m7_c00448{transform:matrix(0.050349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050349,0.000000,0.000000,0.250000,0,0);}
.m4c_c00448{transform:matrix(0.051744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051744,0.000000,0.000000,0.250000,0,0);}
.m11_c00448{transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);}
.m42_c00448{transform:matrix(0.056947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056947,0.000000,0.000000,0.250000,0,0);}
.m19_c00448{transform:matrix(0.068548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068548,0.000000,0.000000,0.250000,0,0);}
.m2f_c00448{transform:matrix(0.082692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082692,0.000000,0.000000,0.250000,0,0);}
.m32_c00448{transform:matrix(0.089845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089845,0.000000,0.000000,0.250000,0,0);}
.m38_c00448{transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);}
.m36_c00448{transform:matrix(0.100448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100448,0.000000,0.000000,0.250000,0,0);}
.m3a_c00448{transform:matrix(0.107379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107379,0.000000,0.000000,0.250000,0,0);}
.m48_c00448{transform:matrix(0.108759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108759,0.000000,0.000000,0.250000,0,0);}
.m6_c00448{transform:matrix(0.110388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110388,0.000000,0.000000,0.250000,0,0);}
.m3d_c00448{transform:matrix(0.117523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117523,0.000000,0.000000,0.250000,0,0);}
.m39_c00448{transform:matrix(0.127424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127424,0.000000,0.000000,0.250000,0,0);}
.m29_c00448{transform:matrix(0.130436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130436,0.000000,0.000000,0.250000,0,0);}
.m2b_c00448{transform:matrix(0.132636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132636,0.000000,0.000000,0.250000,0,0);}
.m2d_c00448{transform:matrix(0.133002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133002,0.000000,0.000000,0.250000,0,0);}
.m2c_c00448{transform:matrix(0.135692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135692,0.000000,0.000000,0.250000,0,0);}
.m3f_c00448{transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);}
.m1e_c00448{transform:matrix(0.137581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137581,0.000000,0.000000,0.250000,0,0);}
.m2e_c00448{transform:matrix(0.141312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141312,0.000000,0.000000,0.250000,0,0);}
.mc_c00448{transform:matrix(0.141799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141799,0.000000,0.000000,0.250000,0,0);}
.mf_c00448{transform:matrix(0.142156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142156,0.000000,0.000000,0.250000,0,0);}
.m33_c00448{transform:matrix(0.147360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147360,0.000000,0.000000,0.250000,0,0);}
.m34_c00448{transform:matrix(0.153241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153241,0.000000,0.000000,0.250000,0,0);}
.m16_c00448{transform:matrix(0.160504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160504,0.000000,0.000000,0.250000,0,0);}
.m17_c00448{transform:matrix(0.163198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163198,0.000000,0.000000,0.250000,0,0);}
.m4d_c00448{transform:matrix(0.164919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164919,0.000000,0.000000,0.250000,0,0);}
.m4e_c00448{transform:matrix(0.171169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171169,0.000000,0.000000,0.250000,0,0);}
.m9_c00448{transform:matrix(0.171903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171903,0.000000,0.000000,0.250000,0,0);}
.m37_c00448{transform:matrix(0.173006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173006,0.000000,0.000000,0.250000,0,0);}
.m4a_c00448{transform:matrix(0.180557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180557,0.000000,0.000000,0.250000,0,0);}
.m24_c00448{transform:matrix(0.183094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183094,0.000000,0.000000,0.250000,0,0);}
.m26_c00448{transform:matrix(0.194091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194091,0.000000,0.000000,0.250000,0,0);}
.m49_c00448{transform:matrix(0.195576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195576,0.000000,0.000000,0.250000,0,0);}
.m20_c00448{transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);}
.m15_c00448{transform:matrix(0.205636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205636,0.000000,0.000000,0.250000,0,0);}
.m57_c00448{transform:matrix(0.206113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206113,0.000000,0.000000,0.250000,0,0);}
.m18_c00448{transform:matrix(0.207385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207385,0.000000,0.000000,0.250000,0,0);}
.m1c_c00448{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.m1a_c00448{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m47_c00448{transform:matrix(0.209512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209512,0.000000,0.000000,0.250000,0,0);}
.m4b_c00448{transform:matrix(0.212512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212512,0.000000,0.000000,0.250000,0,0);}
.m13_c00448{transform:matrix(0.213927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213927,0.000000,0.000000,0.250000,0,0);}
.m62_c00448{transform:matrix(0.221072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221072,0.000000,0.000000,0.250000,0,0);}
.m28_c00448{transform:matrix(0.221185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221185,0.000000,0.000000,0.250000,0,0);}
.m41_c00448{transform:matrix(0.221766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221766,0.000000,0.000000,0.250000,0,0);}
.m22_c00448{transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);}
.m25_c00448{transform:matrix(0.231748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231748,0.000000,0.000000,0.250000,0,0);}
.m27_c00448{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00448{transform:matrix(0.233688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233688,0.000000,0.000000,0.250000,0,0);}
.m5a_c00448{transform:matrix(0.233964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233964,0.000000,0.000000,0.250000,0,0);}
.m5f_c00448{transform:matrix(0.233998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233998,0.000000,0.000000,0.250000,0,0);}
.m5c_c00448{transform:matrix(0.234446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234446,0.000000,0.000000,0.250000,0,0);}
.m56_c00448{transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);}
.m61_c00448{transform:matrix(0.235102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235102,0.000000,0.000000,0.250000,0,0);}
.m46_c00448{transform:matrix(0.235411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235411,0.000000,0.000000,0.250000,0,0);}
.m52_c00448{transform:matrix(0.237585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237585,0.000000,0.000000,0.250000,0,0);}
.m45_c00448{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.m5d_c00448{transform:matrix(0.238618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238618,0.000000,0.000000,0.250000,0,0);}
.m59_c00448{transform:matrix(0.238642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238642,0.000000,0.000000,0.250000,0,0);}
.m3_c00448{transform:matrix(0.239123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239123,0.000000,0.000000,0.250000,0,0);}
.m4f_c00448{transform:matrix(0.240853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240853,0.000000,0.000000,0.250000,0,0);}
.m10_c00448{transform:matrix(0.241647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241647,0.000000,0.000000,0.250000,0,0);}
.m60_c00448{transform:matrix(0.243696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243696,0.000000,0.000000,0.250000,0,0);}
.m5b_c00448{transform:matrix(0.247346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247346,0.000000,0.000000,0.250000,0,0);}
.m51_c00448{transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);}
.m58_c00448{transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);}
.m2_c00448{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_c00448{transform:matrix(0.251604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251604,0.000000,0.000000,0.250000,0,0);}
.m54_c00448{transform:matrix(0.255590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255590,0.000000,0.000000,0.250000,0,0);}
.m8_c00448{transform:matrix(0.256082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256082,0.000000,0.000000,0.250000,0,0);}
.m5_c00448{transform:matrix(0.256737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256737,0.000000,0.000000,0.250000,0,0);}
.m1d_c00448{transform:matrix(0.258259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258259,0.000000,0.000000,0.250000,0,0);}
.m23_c00448{transform:matrix(0.259233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259233,0.000000,0.000000,0.250000,0,0);}
.m4_c00448{transform:matrix(0.262265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262265,0.000000,0.000000,0.250000,0,0);}
.m14_c00448{transform:matrix(0.266418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266418,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.267620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267620,0.000000,0.000000,0.250000,0,0);}
.m21_c00448{transform:matrix(0.270916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270916,0.000000,0.000000,0.250000,0,0);}
.m53_c00448{transform:matrix(0.277183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277183,0.000000,0.000000,0.250000,0,0);}
.m55_c00448{transform:matrix(0.278522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278522,0.000000,0.000000,0.250000,0,0);}
.m12_c00448{transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00448{transform:matrix(0.305802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305802,0.000000,0.000000,0.250000,0,0);}
.m30_c00448{transform:matrix(0.307940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307940,0.000000,0.000000,0.250000,0,0);}
.m1b_c00448{transform:matrix(0.319901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319901,0.000000,0.000000,0.250000,0,0);}
.m43_c00448{transform:matrix(0.326955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326955,0.000000,0.000000,0.250000,0,0);}
.ma_c00448{transform:matrix(0.335142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335142,0.000000,0.000000,0.250000,0,0);}
.md_c00448{transform:matrix(0.348083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348083,0.000000,0.000000,0.250000,0,0);}
.me_c00448{transform:matrix(0.349221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349221,0.000000,0.000000,0.250000,0,0);}
.m50_c00448{transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);}
.m44_c00448{transform:matrix(0.362726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362726,0.000000,0.000000,0.250000,0,0);}
.m2a_c00448{transform:matrix(0.389576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389576,0.000000,0.000000,0.250000,0,0);}
.m3e_c00448{transform:matrix(0.499078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499078,0.000000,0.000000,0.250000,0,0);}
.m40_c00448{transform:matrix(0.518937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518937,0.000000,0.000000,0.250000,0,0);}
.m3c_c00448{transform:matrix(0.540219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540219,0.000000,0.000000,0.250000,0,0);}
.m1f_c00448{transform:matrix(0.866719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.866719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.866719,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.v1_c00448{vertical-align:27.420000px;}
.ls1c_c00448{letter-spacing:-6.006000px;}
.ls1b_c00448{letter-spacing:-5.397021px;}
.ls2a_c00448{letter-spacing:-4.998000px;}
.ls27_c00448{letter-spacing:-4.032021px;}
.ls24_c00448{letter-spacing:-3.696000px;}
.ls34_c00448{letter-spacing:-3.570000px;}
.ls29_c00448{letter-spacing:-3.276000px;}
.ls1a_c00448{letter-spacing:-3.024000px;}
.ls35_c00448{letter-spacing:-2.667000px;}
.ls3f_c00448{letter-spacing:-2.625000px;}
.ls40_c00448{letter-spacing:-2.562000px;}
.ls41_c00448{letter-spacing:-2.331000px;}
.ls20_c00448{letter-spacing:-2.121000px;}
.ls32_c00448{letter-spacing:-1.911000px;}
.ls33_c00448{letter-spacing:-1.890000px;}
.lsd_c00448{letter-spacing:-1.848000px;}
.ls1e_c00448{letter-spacing:-1.806000px;}
.ls9_c00448{letter-spacing:-1.701000px;}
.ls12_c00448{letter-spacing:-1.533021px;}
.ls21_c00448{letter-spacing:-1.449021px;}
.ls22_c00448{letter-spacing:-1.428021px;}
.ls3c_c00448{letter-spacing:-1.365021px;}
.ls39_c00448{letter-spacing:-1.323021px;}
.ls19_c00448{letter-spacing:-1.302000px;}
.ls2b_c00448{letter-spacing:-1.260000px;}
.ls15_c00448{letter-spacing:-1.134021px;}
.ls26_c00448{letter-spacing:-1.113021px;}
.ls25_c00448{letter-spacing:-1.092000px;}
.ls18_c00448{letter-spacing:-0.966000px;}
.ls3e_c00448{letter-spacing:-0.886200px;}
.ls10_c00448{letter-spacing:-0.879660px;}
.ls38_c00448{letter-spacing:-0.819021px;}
.ls2f_c00448{letter-spacing:-0.753480px;}
.ls37_c00448{letter-spacing:-0.678180px;}
.ls2d_c00448{letter-spacing:-0.446170px;}
.ls13_c00448{letter-spacing:-0.357000px;}
.ls16_c00448{letter-spacing:-0.252726px;}
.ls28_c00448{letter-spacing:-0.120120px;}
.lsa_c00448{letter-spacing:0.000000px;}
.ls4_c00448{letter-spacing:0.021840px;}
.ls2_c00448{letter-spacing:0.029041px;}
.ls0_c00448{letter-spacing:0.102060px;}
.ls17_c00448{letter-spacing:0.378120px;}
.ls2c_c00448{letter-spacing:0.480000px;}
.lsb_c00448{letter-spacing:0.669120px;}
.ls3a_c00448{letter-spacing:0.991455px;}
.ls23_c00448{letter-spacing:1.080000px;}
.ls3_c00448{letter-spacing:1.185840px;}
.ls2e_c00448{letter-spacing:1.320030px;}
.ls14_c00448{letter-spacing:1.380000px;}
.lsf_c00448{letter-spacing:1.453140px;}
.ls3d_c00448{letter-spacing:1.560000px;}
.ls1_c00448{letter-spacing:1.589220px;}
.ls36_c00448{letter-spacing:1.592580px;}
.ls11_c00448{letter-spacing:1.607400px;}
.ls3b_c00448{letter-spacing:1.950030px;}
.ls30_c00448{letter-spacing:2.070030px;}
.ls31_c00448{letter-spacing:2.160000px;}
.ls8_c00448{letter-spacing:2.172420px;}
.ls5_c00448{letter-spacing:2.323680px;}
.ls6_c00448{letter-spacing:2.430000px;}
.ls1f_c00448{letter-spacing:2.580000px;}
.lsc_c00448{letter-spacing:2.640000px;}
.lse_c00448{letter-spacing:2.700000px;}
.ls7_c00448{letter-spacing:2.820000px;}
.ls1d_c00448{letter-spacing:3.150000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{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__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:0.000000px;}
._2_c00448{margin-left:-21.262500px;}
._3_c00448{margin-left:-17.010000px;}
._7_c00448{margin-left:-10.210200px;}
._5_c00448{margin-left:-7.643542px;}
._0_c00448{margin-left:-5.015018px;}
._1_c00448{margin-left:-1.814400px;}
._4_c00448{width:155.654400px;}
._6_c00448{width:218.007600px;}
._8_c00448{width:335.393280px;}
.fc0_c00448{color:transparent;}
.fs2b_c00448{font-size:9.600000px;}
.fs8_c00448{font-size:10.200000px;}
.fs2c_c00448{font-size:12.960000px;}
.fs2e_c00448{font-size:15.840000px;}
.fs2a_c00448{font-size:16.200600px;}
.fs18_c00448{font-size:17.400600px;}
.fs1a_c00448{font-size:21.600000px;}
.fsd_c00448{font-size:23.400600px;}
.fs9_c00448{font-size:25.920000px;}
.fs2d_c00448{font-size:26.400600px;}
.fsa_c00448{font-size:27.600000px;}
.fsc_c00448{font-size:28.800600px;}
.fs1e_c00448{font-size:31.200000px;}
.fs1f_c00448{font-size:31.800600px;}
.fsb_c00448{font-size:32.400600px;}
.fs17_c00448{font-size:34.800600px;}
.fs29_c00448{font-size:36.000000px;}
.fse_c00448{font-size:37.200000px;}
.fs36_c00448{font-size:37.800600px;}
.fs38_c00448{font-size:39.000600px;}
.fs2f_c00448{font-size:40.200000px;}
.fs19_c00448{font-size:40.800600px;}
.fs16_c00448{font-size:41.400600px;}
.fs22_c00448{font-size:41.760600px;}
.fs3a_c00448{font-size:42.000000px;}
.fs31_c00448{font-size:43.200000px;}
.fs7_c00448{font-size:43.800600px;}
.fs6_c00448{font-size:44.640600px;}
.fs23_c00448{font-size:46.200000px;}
.fs0_c00448{font-size:48.600000px;}
.fs3_c00448{font-size:49.200000px;}
.fs14_c00448{font-size:51.600000px;}
.fs30_c00448{font-size:51.840000px;}
.fs4_c00448{font-size:52.800000px;}
.fs5_c00448{font-size:54.000000px;}
.fs32_c00448{font-size:54.600000px;}
.fs37_c00448{font-size:55.800000px;}
.fs1_c00448{font-size:56.400000px;}
.fs15_c00448{font-size:60.600000px;}
.fs13_c00448{font-size:63.000000px;}
.fs3e_c00448{font-size:66.600000px;}
.fs1b_c00448{font-size:67.800000px;}
.fs39_c00448{font-size:69.000000px;}
.fs2_c00448{font-size:69.120000px;}
.fs3d_c00448{font-size:72.000000px;}
.fs3c_c00448{font-size:73.200000px;}
.fs21_c00448{font-size:74.880000px;}
.fs3b_c00448{font-size:75.000000px;}
.fs34_c00448{font-size:76.200000px;}
.fs27_c00448{font-size:80.640000px;}
.fsf_c00448{font-size:86.400000px;}
.fs35_c00448{font-size:87.840000px;}
.fs11_c00448{font-size:89.280000px;}
.fs25_c00448{font-size:92.160000px;}
.fs26_c00448{font-size:93.600000px;}
.fs33_c00448{font-size:102.000000px;}
.fs1c_c00448{font-size:105.600000px;}
.fs24_c00448{font-size:106.800000px;}
.fs20_c00448{font-size:115.200600px;}
.fs28_c00448{font-size:142.800000px;}
.fs10_c00448{font-size:154.200600px;}
.fs1d_c00448{font-size:162.600000px;}
.fs12_c00448{font-size:171.600000px;}
.y0_c00448{bottom:0.000000px;}
.y38_c00448{bottom:170.640000px;}
.y37_c00448{bottom:191.520000px;}
.y2c_c00448{bottom:341.295000px;}
.y2d_c00448{bottom:342.375000px;}
.y2e_c00448{bottom:342.735000px;}
.y2f_c00448{bottom:343.095000px;}
.y2b_c00448{bottom:385.935000px;}
.y2a_c00448{bottom:401.415000px;}
.y28_c00448{bottom:405.360000px;}
.y29_c00448{bottom:405.735000px;}
.y27_c00448{bottom:419.775000px;}
.y26_c00448{bottom:425.520000px;}
.y24_c00448{bottom:432.000000px;}
.y36_c00448{bottom:433.440000px;}
.y25_c00448{bottom:438.855000px;}
.y15_c00448{bottom:482.775000px;}
.y14_c00448{bottom:494.655000px;}
.y12_c00448{bottom:522.735000px;}
.y13_c00448{bottom:529.575000px;}
.y11_c00448{bottom:541.095000px;}
.yf_c00448{bottom:548.280000px;}
.y35_c00448{bottom:551.175000px;}
.y10_c00448{bottom:553.335000px;}
.yd_c00448{bottom:573.495000px;}
.ye_c00448{bottom:576.735000px;}
.yb_c00448{bottom:582.120000px;}
.yc_c00448{bottom:599.040000px;}
.ya_c00448{bottom:618.495000px;}
.y9_c00448{bottom:625.335000px;}
.y34_c00448{bottom:665.280000px;}
.y8_c00448{bottom:666.360000px;}
.y23_c00448{bottom:669.255000px;}
.y7_c00448{bottom:782.295000px;}
.y33_c00448{bottom:783.360000px;}
.y1c_c00448{bottom:785.175000px;}
.y1b_c00448{bottom:804.975000px;}
.y1a_c00448{bottom:821.175000px;}
.y22_c00448{bottom:840.240000px;}
.y21_c00448{bottom:847.455000px;}
.y20_c00448{bottom:855.720000px;}
.y1f_c00448{bottom:861.855000px;}
.y19_c00448{bottom:884.520000px;}
.y6_c00448{bottom:894.242700px;}
.y32_c00448{bottom:897.855000px;}
.y31_c00448{bottom:897.856200px;}
.y18_c00448{bottom:899.655000px;}
.y17_c00448{bottom:922.335000px;}
.y16_c00448{bottom:932.400000px;}
.y5_c00448{bottom:1008.720000px;}
.y30_c00448{bottom:1011.240000px;}
.y1e_c00448{bottom:1063.815000px;}
.y1d_c00448{bottom:1074.975000px;}
.y4_c00448{bottom:1085.400000px;}
.y3_c00448{bottom:1120.335000px;}
.y1_c00448{bottom:1140.855000px;}
.y2_c00448{bottom:1141.560000px;}
.h2e_c00448{height:8.631360px;}
.h2d_c00448{height:9.421875px;}
.ha_c00448{height:10.010742px;}
.h30_c00448{height:10.549440px;}
.h2c_c00448{height:16.896720px;}
.hb_c00448{height:17.262720px;}
.h1a_c00448{height:18.148282px;}
.h1c_c00448{height:22.528125px;}
.h3a_c00448{height:22.966409px;}
.h2f_c00448{height:25.910745px;}
.h24_c00448{height:27.812560px;}
.hc_c00448{height:28.785937px;}
.h8_c00448{height:29.730640px;}
.he_c00448{height:30.038126px;}
.h20_c00448{height:30.621094px;}
.h16_c00448{height:31.799417px;}
.h40_c00448{height:32.540625px;}
.h21_c00448{height:33.167032px;}
.hd_c00448{height:33.792813px;}
.h32_c00448{height:34.525440px;}
.h19_c00448{height:36.295938px;}
.h3b_c00448{height:37.099222px;}
.h2b_c00448{height:37.546875px;}
.h3e_c00448{height:38.276956px;}
.hf_c00448{height:38.798438px;}
.h1b_c00448{height:40.043558px;}
.h41_c00448{height:41.220703px;}
.h31_c00448{height:41.927344px;}
.h3c_c00448{height:42.553751px;}
.h18_c00448{height:43.179532px;}
.h33_c00448{height:45.056250px;}
.h25_c00448{height:45.342773px;}
.h9_c00448{height:45.682657px;}
.h4_c00448{height:46.033920px;}
.h5_c00448{height:48.263086px;}
.h23_c00448{height:49.870080px;}
.h15_c00448{height:50.642578px;}
.h2_c00448{height:50.688281px;}
.h7_c00448{height:52.971680px;}
.h36_c00448{height:52.998047px;}
.h29_c00448{height:53.706240px;}
.h3d_c00448{height:54.764648px;}
.h6_c00448{height:55.068750px;}
.h3_c00448{height:55.353516px;}
.h35_c00448{height:56.946094px;}
.h39_c00448{height:58.501440px;}
.h12_c00448{height:59.460480px;}
.h27_c00448{height:61.378560px;}
.h17_c00448{height:63.203906px;}
.h14_c00448{height:65.707031px;}
.h1d_c00448{height:66.541992px;}
.h45_c00448{height:69.461719px;}
.h3f_c00448{height:71.964844px;}
.h44_c00448{height:72.562500px;}
.h43_c00448{height:73.771875px;}
.h38_c00448{height:74.786133px;}
.h42_c00448{height:75.585938px;}
.h34_c00448{height:84.366094px;}
.h10_c00448{height:84.796875px;}
.h28_c00448{height:91.863281px;}
.h1e_c00448{height:103.640625px;}
.h37_c00448{height:106.382812px;}
.h26_c00448{height:111.389063px;}
.h22_c00448{height:120.150626px;}
.h2a_c00448{height:148.935938px;}
.h11_c00448{height:151.339456px;}
.h13_c00448{height:168.416016px;}
.h1f_c00448{height:169.586719px;}
.h1_c00448{height:1263.000000px;}
.h0_c00448{height:1263.240000px;}
.w1_c00448{width:892.500000px;}
.w0_c00448{width:892.800000px;}
.x0_c00448{left:0.000000px;}
.x10_c00448{left:75.855300px;}
.x8_c00448{left:83.160000px;}
.x11_c00448{left:84.915000px;}
.x14_c00448{left:86.235000px;}
.x22_c00448{left:87.855000px;}
.x23_c00448{left:101.520000px;}
.x1_c00448{left:106.155000px;}
.x65_c00448{left:108.315000px;}
.x6d_c00448{left:112.575000px;}
.x1a_c00448{left:115.725000px;}
.x12_c00448{left:117.270000px;}
.x28_c00448{left:120.105000px;}
.x2f_c00448{left:131.190000px;}
.x30_c00448{left:133.755000px;}
.x1b_c00448{left:138.795000px;}
.x31_c00448{left:141.375000px;}
.x32_c00448{left:143.475000px;}
.x33_c00448{left:148.575000px;}
.x15_c00448{left:149.835000px;}
.x29_c00448{left:163.950000px;}
.x6e_c00448{left:165.900000px;}
.x34_c00448{left:167.565000px;}
.x75_c00448{left:171.165000px;}
.x24_c00448{left:173.550000px;}
.x35_c00448{left:179.460000px;}
.x55_c00448{left:181.305000px;}
.x36_c00448{left:184.770000px;}
.x2a_c00448{left:186.720000px;}
.x56_c00448{left:193.605000px;}
.x60_c00448{left:206.205000px;}
.x13_c00448{left:208.110000px;}
.x57_c00448{left:210.450000px;}
.x2_c00448{left:211.875000px;}
.x66_c00448{left:213.675000px;}
.x25_c00448{left:221.340000px;}
.x58_c00448{left:230.940000px;}
.x59_c00448{left:241.155000px;}
.x2b_c00448{left:252.840000px;}
.x5a_c00448{left:256.755000px;}
.x2c_c00448{left:265.785000px;}
.x2d_c00448{left:271.890000px;}
.x1f_c00448{left:276.345000px;}
.x5b_c00448{left:279.750000px;}
.x26_c00448{left:284.160000px;}
.x21_c00448{left:287.430000px;}
.x1c_c00448{left:289.380000px;}
.x5c_c00448{left:290.520000px;}
.x6f_c00448{left:292.845000px;}
.x2e_c00448{left:295.110000px;}
.x20_c00448{left:299.985000px;}
.x16_c00448{left:303.045000px;}
.x1d_c00448{left:304.785000px;}
.x18_c00448{left:306.870000px;}
.x19_c00448{left:311.235000px;}
.x17_c00448{left:312.795000px;}
.x1e_c00448{left:316.650000px;}
.x3_c00448{left:318.930000px;}
.x27_c00448{left:325.125000px;}
.x5d_c00448{left:327.570000px;}
.x70_c00448{left:342.150000px;}
.x41_c00448{left:411.120000px;}
.x45_c00448{left:416.175000px;}
.x71_c00448{left:421.365000px;}
.x4_c00448{left:425.865000px;}
.x5e_c00448{left:428.265000px;}
.x5f_c00448{left:438.450000px;}
.x3a_c00448{left:451.365000px;}
.x3f_c00448{left:453.600000px;}
.x3c_c00448{left:458.055000px;}
.x40_c00448{left:459.735000px;}
.x3d_c00448{left:462.975000px;}
.x3b_c00448{left:464.775000px;}
.x38_c00448{left:467.190000px;}
.x39_c00448{left:472.575000px;}
.x37_c00448{left:476.925000px;}
.x3e_c00448{left:478.875000px;}
.x46_c00448{left:488.550000px;}
.x47_c00448{left:498.975000px;}
.x51_c00448{left:504.735000px;}
.x72_c00448{left:515.685000px;}
.x52_c00448{left:520.560000px;}
.x42_c00448{left:524.340000px;}
.x5_c00448{left:532.035000px;}
.x53_c00448{left:536.775000px;}
.x73_c00448{left:538.470000px;}
.x54_c00448{left:546.780000px;}
.x43_c00448{left:568.275000px;}
.x48_c00448{left:572.985000px;}
.x44_c00448{left:575.730000px;}
.x49_c00448{left:593.760000px;}
.x50_c00448{left:602.760000px;}
.x4b_c00448{left:609.510000px;}
.x61_c00448{left:611.505000px;}
.xe_c00448{left:613.095000px;}
.x4a_c00448{left:615.195000px;}
.x74_c00448{left:616.290000px;}
.x4c_c00448{left:621.360000px;}
.xf_c00448{left:622.815000px;}
.x9_c00448{left:626.040000px;}
.x4e_c00448{left:630.360000px;}
.x62_c00448{left:633.045000px;}
.x4f_c00448{left:635.760000px;}
.x6_c00448{left:637.035000px;}
.x4d_c00448{left:642.165000px;}
.xa_c00448{left:652.200000px;}
.xb_c00448{left:657.180000px;}
.x63_c00448{left:674.685000px;}
.xc_c00448{left:683.130000px;}
.x64_c00448{left:684.945000px;}
.xd_c00448{left:690.345000px;}
.x6c_c00448{left:695.460000px;}
.x6a_c00448{left:738.360000px;}
.x7_c00448{left:744.810000px;}
.x68_c00448{left:754.587600px;}
.x69_c00448{left:759.630000px;}
.x67_c00448{left:782.970000px;}
.x6b_c00448{left:784.275000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.v1_c00448{vertical-align:24.373333pt;}
.ls1c_c00448{letter-spacing:-5.338667pt;}
.ls1b_c00448{letter-spacing:-4.797352pt;}
.ls2a_c00448{letter-spacing:-4.442667pt;}
.ls27_c00448{letter-spacing:-3.584019pt;}
.ls24_c00448{letter-spacing:-3.285333pt;}
.ls34_c00448{letter-spacing:-3.173333pt;}
.ls29_c00448{letter-spacing:-2.912000pt;}
.ls1a_c00448{letter-spacing:-2.688000pt;}
.ls35_c00448{letter-spacing:-2.370667pt;}
.ls3f_c00448{letter-spacing:-2.333333pt;}
.ls40_c00448{letter-spacing:-2.277333pt;}
.ls41_c00448{letter-spacing:-2.072000pt;}
.ls20_c00448{letter-spacing:-1.885333pt;}
.ls32_c00448{letter-spacing:-1.698667pt;}
.ls33_c00448{letter-spacing:-1.680000pt;}
.lsd_c00448{letter-spacing:-1.642667pt;}
.ls1e_c00448{letter-spacing:-1.605333pt;}
.ls9_c00448{letter-spacing:-1.512000pt;}
.ls12_c00448{letter-spacing:-1.362685pt;}
.ls21_c00448{letter-spacing:-1.288019pt;}
.ls22_c00448{letter-spacing:-1.269352pt;}
.ls3c_c00448{letter-spacing:-1.213352pt;}
.ls39_c00448{letter-spacing:-1.176019pt;}
.ls19_c00448{letter-spacing:-1.157333pt;}
.ls2b_c00448{letter-spacing:-1.120000pt;}
.ls15_c00448{letter-spacing:-1.008019pt;}
.ls26_c00448{letter-spacing:-0.989352pt;}
.ls25_c00448{letter-spacing:-0.970667pt;}
.ls18_c00448{letter-spacing:-0.858667pt;}
.ls3e_c00448{letter-spacing:-0.787733pt;}
.ls10_c00448{letter-spacing:-0.781920pt;}
.ls38_c00448{letter-spacing:-0.728019pt;}
.ls2f_c00448{letter-spacing:-0.669760pt;}
.ls37_c00448{letter-spacing:-0.602827pt;}
.ls2d_c00448{letter-spacing:-0.396596pt;}
.ls13_c00448{letter-spacing:-0.317333pt;}
.ls16_c00448{letter-spacing:-0.224646pt;}
.ls28_c00448{letter-spacing:-0.106773pt;}
.lsa_c00448{letter-spacing:0.000000pt;}
.ls4_c00448{letter-spacing:0.019413pt;}
.ls2_c00448{letter-spacing:0.025814pt;}
.ls0_c00448{letter-spacing:0.090720pt;}
.ls17_c00448{letter-spacing:0.336107pt;}
.ls2c_c00448{letter-spacing:0.426667pt;}
.lsb_c00448{letter-spacing:0.594773pt;}
.ls3a_c00448{letter-spacing:0.881293pt;}
.ls23_c00448{letter-spacing:0.960000pt;}
.ls3_c00448{letter-spacing:1.054080pt;}
.ls2e_c00448{letter-spacing:1.173360pt;}
.ls14_c00448{letter-spacing:1.226667pt;}
.lsf_c00448{letter-spacing:1.291680pt;}
.ls3d_c00448{letter-spacing:1.386667pt;}
.ls1_c00448{letter-spacing:1.412640pt;}
.ls36_c00448{letter-spacing:1.415627pt;}
.ls11_c00448{letter-spacing:1.428800pt;}
.ls3b_c00448{letter-spacing:1.733360pt;}
.ls30_c00448{letter-spacing:1.840027pt;}
.ls31_c00448{letter-spacing:1.920000pt;}
.ls8_c00448{letter-spacing:1.931040pt;}
.ls5_c00448{letter-spacing:2.065493pt;}
.ls6_c00448{letter-spacing:2.160000pt;}
.ls1f_c00448{letter-spacing:2.293333pt;}
.lsc_c00448{letter-spacing:2.346667pt;}
.lse_c00448{letter-spacing:2.400000pt;}
.ls7_c00448{letter-spacing:2.506667pt;}
.ls1d_c00448{letter-spacing:2.800000pt;}
.ws0_c00448{word-spacing:0.000000pt;}
._2_c00448{margin-left:-18.900000pt;}
._3_c00448{margin-left:-15.120000pt;}
._7_c00448{margin-left:-9.075733pt;}
._5_c00448{margin-left:-6.794260pt;}
._0_c00448{margin-left:-4.457794pt;}
._1_c00448{margin-left:-1.612800pt;}
._4_c00448{width:138.359467pt;}
._6_c00448{width:193.784533pt;}
._8_c00448{width:298.127360pt;}
.fs2b_c00448{font-size:8.533333pt;}
.fs8_c00448{font-size:9.066667pt;}
.fs2c_c00448{font-size:11.520000pt;}
.fs2e_c00448{font-size:14.080000pt;}
.fs2a_c00448{font-size:14.400533pt;}
.fs18_c00448{font-size:15.467200pt;}
.fs1a_c00448{font-size:19.200000pt;}
.fsd_c00448{font-size:20.800533pt;}
.fs9_c00448{font-size:23.040000pt;}
.fs2d_c00448{font-size:23.467200pt;}
.fsa_c00448{font-size:24.533333pt;}
.fsc_c00448{font-size:25.600533pt;}
.fs1e_c00448{font-size:27.733333pt;}
.fs1f_c00448{font-size:28.267200pt;}
.fsb_c00448{font-size:28.800533pt;}
.fs17_c00448{font-size:30.933867pt;}
.fs29_c00448{font-size:32.000000pt;}
.fse_c00448{font-size:33.066667pt;}
.fs36_c00448{font-size:33.600533pt;}
.fs38_c00448{font-size:34.667200pt;}
.fs2f_c00448{font-size:35.733333pt;}
.fs19_c00448{font-size:36.267200pt;}
.fs16_c00448{font-size:36.800533pt;}
.fs22_c00448{font-size:37.120533pt;}
.fs3a_c00448{font-size:37.333333pt;}
.fs31_c00448{font-size:38.400000pt;}
.fs7_c00448{font-size:38.933867pt;}
.fs6_c00448{font-size:39.680533pt;}
.fs23_c00448{font-size:41.066667pt;}
.fs0_c00448{font-size:43.200000pt;}
.fs3_c00448{font-size:43.733333pt;}
.fs14_c00448{font-size:45.866667pt;}
.fs30_c00448{font-size:46.080000pt;}
.fs4_c00448{font-size:46.933333pt;}
.fs5_c00448{font-size:48.000000pt;}
.fs32_c00448{font-size:48.533333pt;}
.fs37_c00448{font-size:49.600000pt;}
.fs1_c00448{font-size:50.133333pt;}
.fs15_c00448{font-size:53.866667pt;}
.fs13_c00448{font-size:56.000000pt;}
.fs3e_c00448{font-size:59.200000pt;}
.fs1b_c00448{font-size:60.266667pt;}
.fs39_c00448{font-size:61.333333pt;}
.fs2_c00448{font-size:61.440000pt;}
.fs3d_c00448{font-size:64.000000pt;}
.fs3c_c00448{font-size:65.066667pt;}
.fs21_c00448{font-size:66.560000pt;}
.fs3b_c00448{font-size:66.666667pt;}
.fs34_c00448{font-size:67.733333pt;}
.fs27_c00448{font-size:71.680000pt;}
.fsf_c00448{font-size:76.800000pt;}
.fs35_c00448{font-size:78.080000pt;}
.fs11_c00448{font-size:79.360000pt;}
.fs25_c00448{font-size:81.920000pt;}
.fs26_c00448{font-size:83.200000pt;}
.fs33_c00448{font-size:90.666667pt;}
.fs1c_c00448{font-size:93.866667pt;}
.fs24_c00448{font-size:94.933333pt;}
.fs20_c00448{font-size:102.400533pt;}
.fs28_c00448{font-size:126.933333pt;}
.fs10_c00448{font-size:137.067200pt;}
.fs1d_c00448{font-size:144.533333pt;}
.fs12_c00448{font-size:152.533333pt;}
.y0_c00448{bottom:0.000000pt;}
.y38_c00448{bottom:151.680000pt;}
.y37_c00448{bottom:170.240000pt;}
.y2c_c00448{bottom:303.373333pt;}
.y2d_c00448{bottom:304.333333pt;}
.y2e_c00448{bottom:304.653333pt;}
.y2f_c00448{bottom:304.973333pt;}
.y2b_c00448{bottom:343.053333pt;}
.y2a_c00448{bottom:356.813333pt;}
.y28_c00448{bottom:360.320000pt;}
.y29_c00448{bottom:360.653333pt;}
.y27_c00448{bottom:373.133333pt;}
.y26_c00448{bottom:378.240000pt;}
.y24_c00448{bottom:384.000000pt;}
.y36_c00448{bottom:385.280000pt;}
.y25_c00448{bottom:390.093333pt;}
.y15_c00448{bottom:429.133333pt;}
.y14_c00448{bottom:439.693333pt;}
.y12_c00448{bottom:464.653333pt;}
.y13_c00448{bottom:470.733333pt;}
.y11_c00448{bottom:480.973333pt;}
.yf_c00448{bottom:487.360000pt;}
.y35_c00448{bottom:489.933333pt;}
.y10_c00448{bottom:491.853333pt;}
.yd_c00448{bottom:509.773333pt;}
.ye_c00448{bottom:512.653333pt;}
.yb_c00448{bottom:517.440000pt;}
.yc_c00448{bottom:532.480000pt;}
.ya_c00448{bottom:549.773333pt;}
.y9_c00448{bottom:555.853333pt;}
.y34_c00448{bottom:591.360000pt;}
.y8_c00448{bottom:592.320000pt;}
.y23_c00448{bottom:594.893333pt;}
.y7_c00448{bottom:695.373333pt;}
.y33_c00448{bottom:696.320000pt;}
.y1c_c00448{bottom:697.933333pt;}
.y1b_c00448{bottom:715.533333pt;}
.y1a_c00448{bottom:729.933333pt;}
.y22_c00448{bottom:746.880000pt;}
.y21_c00448{bottom:753.293333pt;}
.y20_c00448{bottom:760.640000pt;}
.y1f_c00448{bottom:766.093333pt;}
.y19_c00448{bottom:786.240000pt;}
.y6_c00448{bottom:794.882400pt;}
.y32_c00448{bottom:798.093333pt;}
.y31_c00448{bottom:798.094400pt;}
.y18_c00448{bottom:799.693333pt;}
.y17_c00448{bottom:819.853333pt;}
.y16_c00448{bottom:828.800000pt;}
.y5_c00448{bottom:896.640000pt;}
.y30_c00448{bottom:898.880000pt;}
.y1e_c00448{bottom:945.613333pt;}
.y1d_c00448{bottom:955.533333pt;}
.y4_c00448{bottom:964.800000pt;}
.y3_c00448{bottom:995.853333pt;}
.y1_c00448{bottom:1014.093333pt;}
.y2_c00448{bottom:1014.720000pt;}
.h2e_c00448{height:7.672320pt;}
.h2d_c00448{height:8.375000pt;}
.ha_c00448{height:8.898438pt;}
.h30_c00448{height:9.377280pt;}
.h2c_c00448{height:15.019306pt;}
.hb_c00448{height:15.344640pt;}
.h1a_c00448{height:16.131806pt;}
.h1c_c00448{height:20.025000pt;}
.h3a_c00448{height:20.414586pt;}
.h2f_c00448{height:23.031773pt;}
.h24_c00448{height:24.722275pt;}
.hc_c00448{height:25.587500pt;}
.h8_c00448{height:26.427235pt;}
.he_c00448{height:26.700556pt;}
.h20_c00448{height:27.218750pt;}
.h16_c00448{height:28.266148pt;}
.h40_c00448{height:28.925000pt;}
.h21_c00448{height:29.481806pt;}
.hd_c00448{height:30.038056pt;}
.h32_c00448{height:30.689280pt;}
.h19_c00448{height:32.263056pt;}
.h3b_c00448{height:32.977086pt;}
.h2b_c00448{height:33.375000pt;}
.h3e_c00448{height:34.023961pt;}
.hf_c00448{height:34.487500pt;}
.h1b_c00448{height:35.594273pt;}
.h41_c00448{height:36.640625pt;}
.h31_c00448{height:37.268750pt;}
.h3c_c00448{height:37.825556pt;}
.h18_c00448{height:38.381806pt;}
.h33_c00448{height:40.050000pt;}
.h25_c00448{height:40.304688pt;}
.h9_c00448{height:40.606806pt;}
.h4_c00448{height:40.919040pt;}
.h5_c00448{height:42.900521pt;}
.h23_c00448{height:44.328960pt;}
.h15_c00448{height:45.015625pt;}
.h2_c00448{height:45.056250pt;}
.h7_c00448{height:47.085938pt;}
.h36_c00448{height:47.109375pt;}
.h29_c00448{height:47.738880pt;}
.h3d_c00448{height:48.679688pt;}
.h6_c00448{height:48.950000pt;}
.h3_c00448{height:49.203125pt;}
.h35_c00448{height:50.618750pt;}
.h39_c00448{height:52.001280pt;}
.h12_c00448{height:52.853760pt;}
.h27_c00448{height:54.558720pt;}
.h17_c00448{height:56.181250pt;}
.h14_c00448{height:58.406250pt;}
.h1d_c00448{height:59.148438pt;}
.h45_c00448{height:61.743750pt;}
.h3f_c00448{height:63.968750pt;}
.h44_c00448{height:64.500000pt;}
.h43_c00448{height:65.575000pt;}
.h38_c00448{height:66.476562pt;}
.h42_c00448{height:67.187500pt;}
.h34_c00448{height:74.992083pt;}
.h10_c00448{height:75.375000pt;}
.h28_c00448{height:81.656250pt;}
.h1e_c00448{height:92.125000pt;}
.h37_c00448{height:94.562500pt;}
.h26_c00448{height:99.012500pt;}
.h22_c00448{height:106.800556pt;}
.h2a_c00448{height:132.387500pt;}
.h11_c00448{height:134.523961pt;}
.h13_c00448{height:149.703125pt;}
.h1f_c00448{height:150.743750pt;}
.h1_c00448{height:1122.666667pt;}
.h0_c00448{height:1122.880000pt;}
.w1_c00448{width:793.333333pt;}
.w0_c00448{width:793.600000pt;}
.x0_c00448{left:0.000000pt;}
.x10_c00448{left:67.426933pt;}
.x8_c00448{left:73.920000pt;}
.x11_c00448{left:75.480000pt;}
.x14_c00448{left:76.653333pt;}
.x22_c00448{left:78.093333pt;}
.x23_c00448{left:90.240000pt;}
.x1_c00448{left:94.360000pt;}
.x65_c00448{left:96.280000pt;}
.x6d_c00448{left:100.066667pt;}
.x1a_c00448{left:102.866667pt;}
.x12_c00448{left:104.240000pt;}
.x28_c00448{left:106.760000pt;}
.x2f_c00448{left:116.613333pt;}
.x30_c00448{left:118.893333pt;}
.x1b_c00448{left:123.373333pt;}
.x31_c00448{left:125.666667pt;}
.x32_c00448{left:127.533333pt;}
.x33_c00448{left:132.066667pt;}
.x15_c00448{left:133.186667pt;}
.x29_c00448{left:145.733333pt;}
.x6e_c00448{left:147.466667pt;}
.x34_c00448{left:148.946667pt;}
.x75_c00448{left:152.146667pt;}
.x24_c00448{left:154.266667pt;}
.x35_c00448{left:159.520000pt;}
.x55_c00448{left:161.160000pt;}
.x36_c00448{left:164.240000pt;}
.x2a_c00448{left:165.973333pt;}
.x56_c00448{left:172.093333pt;}
.x60_c00448{left:183.293333pt;}
.x13_c00448{left:184.986667pt;}
.x57_c00448{left:187.066667pt;}
.x2_c00448{left:188.333333pt;}
.x66_c00448{left:189.933333pt;}
.x25_c00448{left:196.746667pt;}
.x58_c00448{left:205.280000pt;}
.x59_c00448{left:214.360000pt;}
.x2b_c00448{left:224.746667pt;}
.x5a_c00448{left:228.226667pt;}
.x2c_c00448{left:236.253333pt;}
.x2d_c00448{left:241.680000pt;}
.x1f_c00448{left:245.640000pt;}
.x5b_c00448{left:248.666667pt;}
.x26_c00448{left:252.586667pt;}
.x21_c00448{left:255.493333pt;}
.x1c_c00448{left:257.226667pt;}
.x5c_c00448{left:258.240000pt;}
.x6f_c00448{left:260.306667pt;}
.x2e_c00448{left:262.320000pt;}
.x20_c00448{left:266.653333pt;}
.x16_c00448{left:269.373333pt;}
.x1d_c00448{left:270.920000pt;}
.x18_c00448{left:272.773333pt;}
.x19_c00448{left:276.653333pt;}
.x17_c00448{left:278.040000pt;}
.x1e_c00448{left:281.466667pt;}
.x3_c00448{left:283.493333pt;}
.x27_c00448{left:289.000000pt;}
.x5d_c00448{left:291.173333pt;}
.x70_c00448{left:304.133333pt;}
.x41_c00448{left:365.440000pt;}
.x45_c00448{left:369.933333pt;}
.x71_c00448{left:374.546667pt;}
.x4_c00448{left:378.546667pt;}
.x5e_c00448{left:380.680000pt;}
.x5f_c00448{left:389.733333pt;}
.x3a_c00448{left:401.213333pt;}
.x3f_c00448{left:403.200000pt;}
.x3c_c00448{left:407.160000pt;}
.x40_c00448{left:408.653333pt;}
.x3d_c00448{left:411.533333pt;}
.x3b_c00448{left:413.133333pt;}
.x38_c00448{left:415.280000pt;}
.x39_c00448{left:420.066667pt;}
.x37_c00448{left:423.933333pt;}
.x3e_c00448{left:425.666667pt;}
.x46_c00448{left:434.266667pt;}
.x47_c00448{left:443.533333pt;}
.x51_c00448{left:448.653333pt;}
.x72_c00448{left:458.386667pt;}
.x52_c00448{left:462.720000pt;}
.x42_c00448{left:466.080000pt;}
.x5_c00448{left:472.920000pt;}
.x53_c00448{left:477.133333pt;}
.x73_c00448{left:478.640000pt;}
.x54_c00448{left:486.026667pt;}
.x43_c00448{left:505.133333pt;}
.x48_c00448{left:509.320000pt;}
.x44_c00448{left:511.760000pt;}
.x49_c00448{left:527.786667pt;}
.x50_c00448{left:535.786667pt;}
.x4b_c00448{left:541.786667pt;}
.x61_c00448{left:543.560000pt;}
.xe_c00448{left:544.973333pt;}
.x4a_c00448{left:546.840000pt;}
.x74_c00448{left:547.813333pt;}
.x4c_c00448{left:552.320000pt;}
.xf_c00448{left:553.613333pt;}
.x9_c00448{left:556.480000pt;}
.x4e_c00448{left:560.320000pt;}
.x62_c00448{left:562.706667pt;}
.x4f_c00448{left:565.120000pt;}
.x6_c00448{left:566.253333pt;}
.x4d_c00448{left:570.813333pt;}
.xa_c00448{left:579.733333pt;}
.xb_c00448{left:584.160000pt;}
.x63_c00448{left:599.720000pt;}
.xc_c00448{left:607.226667pt;}
.x64_c00448{left:608.840000pt;}
.xd_c00448{left:613.640000pt;}
.x6c_c00448{left:618.186667pt;}
.x6a_c00448{left:656.320000pt;}
.x7_c00448{left:662.053333pt;}
.x68_c00448{left:670.744533pt;}
.x69_c00448{left:675.226667pt;}
.x67_c00448{left:695.973333pt;}
.x6b_c00448{left:697.133333pt;}
}





/* 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_c00449 {
    display:none;
  }
  .loading-indicator_c00449.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00449 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_c00449 { 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_c00449" -> "#page-container .classname_c00449")
 */
.pf_c00449 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00449 { /* 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_c00449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00449 { /* 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_c00449 { /* 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_c00449 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00449 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00449 {overflow:visible;}
  }
}
.c_c00449 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00449 { /* 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_c00449:after { /* webkit #35443 */
  content: '';
}
.t_c00449:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00449 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 */
}
.__c00449 { /* 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_c00449 { /* info for Javascript */
  display:none;
}
.l_c00449 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00449 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00449 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00449: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_c00449 {
    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_c00449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00449.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_c00449 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00449{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00449;src:url('chunks/assets/font_cda4ef590f78d6c5d5433682.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;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:ff2_c00449;src:url('chunks/assets/font_f0bd532e1f7a0ddc4b8b786f.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.284668;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_c00449;src:url('chunks/assets/font_1be6db4c3e77b26db8a49354.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:0.666000;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_c00449;src:url('chunks/assets/font_3700e50b03dac9414b04f482.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;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:ff5_c00449;src:url('chunks/assets/font_c0c53a1761a122844132c775.woff2')format("woff");}.ff5_c00449{font-family:ff5_c00449;line-height:1.311035;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;}
.m19_c00449{transform:matrix(0.054688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054688,0.000000,0.000000,0.250000,0,0);}
.m29_c00449{transform:matrix(0.085013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085013,0.000000,0.000000,0.250000,0,0);}
.m28_c00449{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m7_c00449{transform:matrix(0.098960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098960,0.000000,0.000000,0.250000,0,0);}
.m20_c00449{transform:matrix(0.111607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111607,0.000000,0.000000,0.250000,0,0);}
.m17_c00449{transform:matrix(0.121076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121076,0.000000,0.000000,0.250000,0,0);}
.m25_c00449{transform:matrix(0.127976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127976,0.000000,0.000000,0.250000,0,0);}
.m6_c00449{transform:matrix(0.130682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130682,0.000000,0.000000,0.250000,0,0);}
.m22_c00449{transform:matrix(0.134109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134109,0.000000,0.000000,0.250000,0,0);}
.m39_c00449{transform:matrix(0.140558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140558,0.000000,0.000000,0.250000,0,0);}
.m14_c00449{transform:matrix(0.156582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156582,0.000000,0.000000,0.250000,0,0);}
.m1b_c00449{transform:matrix(0.162216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162216,0.000000,0.000000,0.250000,0,0);}
.m1d_c00449{transform:matrix(0.177879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177879,0.000000,0.000000,0.250000,0,0);}
.m2b_c00449{transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);}
.m11_c00449{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.m16_c00449{transform:matrix(0.222157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222157,0.000000,0.000000,0.250000,0,0);}
.m37_c00449{transform:matrix(0.228486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228486,0.000000,0.000000,0.250000,0,0);}
.m1e_c00449{transform:matrix(0.230579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230579,0.000000,0.000000,0.250000,0,0);}
.m35_c00449{transform:matrix(0.231068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231068,0.000000,0.000000,0.250000,0,0);}
.m23_c00449{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m30_c00449{transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);}
.m36_c00449{transform:matrix(0.235374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235374,0.000000,0.000000,0.250000,0,0);}
.m10_c00449{transform:matrix(0.239711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239711,0.000000,0.000000,0.250000,0,0);}
.m38_c00449{transform:matrix(0.241486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241486,0.000000,0.000000,0.250000,0,0);}
.m34_c00449{transform:matrix(0.242556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242556,0.000000,0.000000,0.250000,0,0);}
.m1a_c00449{transform:matrix(0.244142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244142,0.000000,0.000000,0.250000,0,0);}
.m33_c00449{transform:matrix(0.244502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244502,0.000000,0.000000,0.250000,0,0);}
.m32_c00449{transform:matrix(0.244508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244508,0.000000,0.000000,0.250000,0,0);}
.m2d_c00449{transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);}
.m31_c00449{transform:matrix(0.248748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248748,0.000000,0.000000,0.250000,0,0);}
.m2_c00449{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);}
.m3f_c00449{transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);}
.m26_c00449{transform:matrix(0.265367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265367,0.000000,0.000000,0.250000,0,0);}
.m18_c00449{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m0_c00449{transform:matrix(0.267620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267620,0.000000,0.000000,0.250000,0,0);}
.m9_c00449{transform:matrix(0.269747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269747,0.000000,0.000000,0.250000,0,0);}
.m15_c00449{transform:matrix(0.270505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270505,0.000000,0.000000,0.250000,0,0);}
.m12_c00449{transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);}
.m2e_c00449{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m27_c00449{transform:matrix(0.272972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272972,0.000000,0.000000,0.250000,0,0);}
.m3c_c00449{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m4_c00449{transform:matrix(0.278244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278244,0.000000,0.000000,0.250000,0,0);}
.m1c_c00449{transform:matrix(0.278268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278268,0.000000,0.000000,0.250000,0,0);}
.m3a_c00449{transform:matrix(0.278522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278522,0.000000,0.000000,0.250000,0,0);}
.m3_c00449{transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);}
.mb_c00449{transform:matrix(0.281365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281365,0.000000,0.000000,0.250000,0,0);}
.ma_c00449{transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);}
.m8_c00449{transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);}
.m2f_c00449{transform:matrix(0.283921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283921,0.000000,0.000000,0.250000,0,0);}
.m3b_c00449{transform:matrix(0.294713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294713,0.000000,0.000000,0.250000,0,0);}
.m3d_c00449{transform:matrix(0.299591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299591,0.000000,0.000000,0.250000,0,0);}
.mc_c00449{transform:matrix(0.300321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300321,0.000000,0.000000,0.250000,0,0);}
.m3e_c00449{transform:matrix(0.302847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302847,0.000000,0.000000,0.250000,0,0);}
.m1_c00449{transform:matrix(0.308301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308301,0.000000,0.000000,0.250000,0,0);}
.m5_c00449{transform:matrix(0.308703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308703,0.000000,0.000000,0.250000,0,0);}
.mf_c00449{transform:matrix(0.315920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315920,0.000000,0.000000,0.250000,0,0);}
.md_c00449{transform:matrix(0.327409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327409,0.000000,0.000000,0.250000,0,0);}
.me_c00449{transform:matrix(0.328565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328565,0.000000,0.000000,0.250000,0,0);}
.m13_c00449{transform:matrix(0.341147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341147,0.000000,0.000000,0.250000,0,0);}
.m2a_c00449{transform:matrix(0.346528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346528,0.000000,0.000000,0.250000,0,0);}
.m2c_c00449{transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);}
.m1f_c00449{transform:matrix(0.370307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370307,0.000000,0.000000,0.250000,0,0);}
.m24_c00449{transform:matrix(0.451072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451072,0.000000,0.000000,0.250000,0,0);}
.m21_c00449{transform:matrix(0.496250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496250,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.v2_c00449{vertical-align:1.380000px;}
.v1_c00449{vertical-align:43.200000px;}
.ls17_c00449{letter-spacing:-3.801000px;}
.lsf_c00449{letter-spacing:-2.940000px;}
.lsd_c00449{letter-spacing:-2.688000px;}
.ls20_c00449{letter-spacing:-2.625000px;}
.ls22_c00449{letter-spacing:-2.541000px;}
.ls21_c00449{letter-spacing:-2.475000px;}
.ls12_c00449{letter-spacing:-1.995000px;}
.ls1b_c00449{letter-spacing:-1.953000px;}
.ls10_c00449{letter-spacing:-1.596000px;}
.lsb_c00449{letter-spacing:-1.449021px;}
.ls1d_c00449{letter-spacing:-1.365021px;}
.ls18_c00449{letter-spacing:-0.966000px;}
.ls13_c00449{letter-spacing:-0.330600px;}
.ls15_c00449{letter-spacing:-0.196689px;}
.ls7_c00449{letter-spacing:0.000000px;}
.ls11_c00449{letter-spacing:0.250806px;}
.ls1e_c00449{letter-spacing:0.616209px;}
.lsa_c00449{letter-spacing:0.635168px;}
.ls16_c00449{letter-spacing:0.720030px;}
.ls1_c00449{letter-spacing:0.729000px;}
.ls0_c00449{letter-spacing:0.985932px;}
.ls19_c00449{letter-spacing:1.170030px;}
.lse_c00449{letter-spacing:1.410000px;}
.ls2_c00449{letter-spacing:1.453140px;}
.ls1f_c00449{letter-spacing:1.560000px;}
.ls1c_c00449{letter-spacing:1.950030px;}
.lsc_c00449{letter-spacing:2.009400px;}
.ls1a_c00449{letter-spacing:2.160000px;}
.ls23_c00449{letter-spacing:2.172420px;}
.ls5_c00449{letter-spacing:2.340030px;}
.ls3_c00449{letter-spacing:2.430000px;}
.ls6_c00449{letter-spacing:2.550000px;}
.ls4_c00449{letter-spacing:2.670000px;}
.ls9_c00449{letter-spacing:2.760000px;}
.ls14_c00449{letter-spacing:2.850000px;}
.ls8_c00449{letter-spacing:2.880000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{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__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00449{word-spacing:0.000000px;}
._4_c00449{margin-left:-13.089600px;}
._5_c00449{width:41.028631px;}
._2_c00449{width:94.127400px;}
._3_c00449{width:340.170840px;}
._0_c00449{width:344.475921px;}
._1_c00449{width:401.667179px;}
.fc0_c00449{color:transparent;}
.fs1a_c00449{font-size:13.200600px;}
.fs1b_c00449{font-size:14.400600px;}
.fs1c_c00449{font-size:20.160000px;}
.fs1f_c00449{font-size:23.400600px;}
.fs21_c00449{font-size:24.480000px;}
.fs26_c00449{font-size:25.200000px;}
.fs17_c00449{font-size:26.400600px;}
.fs15_c00449{font-size:27.000600px;}
.fs1e_c00449{font-size:27.600000px;}
.fs13_c00449{font-size:28.200000px;}
.fs27_c00449{font-size:31.200000px;}
.fsf_c00449{font-size:38.880600px;}
.fs4_c00449{font-size:39.000600px;}
.fs10_c00449{font-size:41.400600px;}
.fs24_c00449{font-size:43.200000px;}
.fs16_c00449{font-size:45.600000px;}
.fs18_c00449{font-size:46.080000px;}
.fs2_c00449{font-size:46.800600px;}
.fse_c00449{font-size:47.400600px;}
.fs0_c00449{font-size:48.600000px;}
.fs3_c00449{font-size:51.000000px;}
.fs22_c00449{font-size:51.600000px;}
.fs1_c00449{font-size:53.400000px;}
.fsb_c00449{font-size:55.200000px;}
.fs25_c00449{font-size:55.800000px;}
.fs19_c00449{font-size:57.000000px;}
.fs6_c00449{font-size:57.600000px;}
.fs20_c00449{font-size:60.480000px;}
.fs8_c00449{font-size:63.360000px;}
.fs11_c00449{font-size:68.400000px;}
.fs5_c00449{font-size:69.600000px;}
.fs29_c00449{font-size:72.600000px;}
.fs28_c00449{font-size:75.000000px;}
.fs12_c00449{font-size:76.800000px;}
.fsa_c00449{font-size:80.640000px;}
.fs14_c00449{font-size:84.000000px;}
.fs7_c00449{font-size:94.800000px;}
.fs1d_c00449{font-size:108.600000px;}
.fs23_c00449{font-size:133.920000px;}
.fs9_c00449{font-size:151.200600px;}
.fsd_c00449{font-size:250.800000px;}
.fsc_c00449{font-size:326.400600px;}
.y0_c00449{bottom:0.000000px;}
.y2d_c00449{bottom:187.560000px;}
.y1f_c00449{bottom:339.495000px;}
.y20_c00449{bottom:340.215000px;}
.y25_c00449{bottom:340.935000px;}
.y2c_c00449{bottom:384.120000px;}
.y2b_c00449{bottom:396.735000px;}
.y2a_c00449{bottom:403.575000px;}
.y29_c00449{bottom:417.255000px;}
.y1e_c00449{bottom:429.855000px;}
.y34_c00449{bottom:431.280000px;}
.y1d_c00449{bottom:517.695000px;}
.y1c_c00449{bottom:536.040000px;}
.y1b_c00449{bottom:545.040000px;}
.y18_c00449{bottom:547.200000px;}
.y33_c00449{bottom:548.655000px;}
.y1a_c00449{bottom:549.735000px;}
.y19_c00449{bottom:558.000000px;}
.y17_c00449{bottom:566.280000px;}
.y16_c00449{bottom:571.695000px;}
.y15_c00449{bottom:641.175000px;}
.y14_c00449{bottom:665.280000px;}
.y32_c00449{bottom:666.000000px;}
.y13_c00449{bottom:705.975000px;}
.y12_c00449{bottom:721.440000px;}
.y24_c00449{bottom:728.655000px;}
.y23_c00449{bottom:735.495000px;}
.y11_c00449{bottom:768.615000px;}
.y31_c00449{bottom:780.135000px;}
.y10_c00449{bottom:780.855000px;}
.yd_c00449{bottom:794.520000px;}
.y4_c00449{bottom:890.295000px;}
.y30_c00449{bottom:893.520000px;}
.yc_c00449{bottom:919.815000px;}
.yb_c00449{bottom:977.040000px;}
.y3_c00449{bottom:1006.560000px;}
.ya_c00449{bottom:1010.520000px;}
.y2f_c00449{bottom:1011.240000px;}
.y9_c00449{bottom:1023.855000px;}
.y8_c00449{bottom:1056.240000px;}
.y28_c00449{bottom:1060.935000px;}
.y27_c00449{bottom:1085.400000px;}
.y7_c00449{bottom:1087.200000px;}
.y2_c00449{bottom:1110.615000px;}
.y2e_c00449{bottom:1124.655000px;}
.y6_c00449{bottom:1126.815000px;}
.yf_c00449{bottom:1127.880000px;}
.y22_c00449{bottom:1128.615000px;}
.y1_c00449{bottom:1137.240000px;}
.y5_c00449{bottom:1138.335000px;}
.ye_c00449{bottom:1139.040000px;}
.y21_c00449{bottom:1139.775000px;}
.y26_c00449{bottom:1140.135000px;}
.h1c_c00449{height:12.955667px;}
.h1e_c00449{height:13.426560px;}
.h1d_c00449{height:14.133401px;}
.h24_c00449{height:16.303680px;}
.h21_c00449{height:22.966409px;}
.h11_c00449{height:25.894480px;}
.h29_c00449{height:26.282813px;}
.h17_c00449{height:28.160782px;}
.h20_c00449{height:28.785937px;}
.h15_c00449{height:29.411719px;}
.h1a_c00449{height:30.689280px;}
.h2a_c00449{height:32.540625px;}
.h28_c00449{height:38.276956px;}
.h22_c00449{height:40.279680px;}
.h6_c00449{height:40.676407px;}
.ha_c00449{height:42.197760px;}
.h12_c00449{height:43.179532px;}
.h26_c00449{height:45.056250px;}
.h18_c00449{height:47.559375px;}
.h4_c00449{height:48.811563px;}
.h10_c00449{height:49.437345px;}
.h5_c00449{height:50.053711px;}
.h2_c00449{height:50.688281px;}
.h23_c00449{height:50.817345px;}
.h3_c00449{height:52.409180px;}
.hc_c00449{height:53.706240px;}
.h27_c00449{height:54.764648px;}
.hd_c00449{height:57.571875px;}
.h1b_c00449{height:59.449219px;}
.h8_c00449{height:60.075000px;}
.h13_c00449{height:67.130859px;}
.h19_c00449{height:69.110745px;}
.h7_c00449{height:72.590625px;}
.h2c_c00449{height:73.167187px;}
.h14_c00449{height:75.375000px;}
.h2b_c00449{height:75.585938px;}
.h16_c00449{height:87.609375px;}
.h25_c00449{height:89.190720px;}
.h9_c00449{height:93.041016px;}
.h1f_c00449{height:113.266406px;}
.hb_c00449{height:148.395120px;}
.hf_c00449{height:261.576562px;}
.he_c00449{height:320.344339px;}
.h1_c00449{height:1263.000000px;}
.h0_c00449{height:1263.240000px;}
.w1_c00449{width:892.500000px;}
.w0_c00449{width:892.800000px;}
.x0_c00449{left:0.000000px;}
.x4_c00449{left:76.215000px;}
.x2_c00449{left:83.325000px;}
.x3_c00449{left:84.570000px;}
.x1a_c00449{left:86.595000px;}
.x20_c00449{left:88.170000px;}
.x1_c00449{left:106.875000px;}
.x30_c00449{left:108.675000px;}
.x17_c00449{left:112.695000px;}
.x13_c00449{left:117.645000px;}
.x22_c00449{left:120.585000px;}
.x23_c00449{left:131.580000px;}
.xd_c00449{left:141.660000px;}
.x21_c00449{left:144.000000px;}
.xc_c00449{left:146.430000px;}
.x24_c00449{left:147.840000px;}
.xe_c00449{left:149.625000px;}
.xa_c00449{left:152.970000px;}
.x9_c00449{left:159.240000px;}
.x7_c00449{left:162.195000px;}
.x40_c00449{left:165.150000px;}
.x2c_c00449{left:167.730000px;}
.x25_c00449{left:174.180000px;}
.xf_c00449{left:181.440000px;}
.xb_c00449{left:192.180000px;}
.x28_c00449{left:194.730000px;}
.x2f_c00449{left:196.365000px;}
.x8_c00449{left:199.515000px;}
.x29_c00449{left:201.915000px;}
.x2d_c00449{left:203.235000px;}
.x5_c00449{left:212.955000px;}
.x31_c00449{left:214.035000px;}
.x6_c00449{left:218.250000px;}
.x10_c00449{left:219.930000px;}
.x2a_c00449{left:224.925000px;}
.x2b_c00449{left:238.275000px;}
.x2e_c00449{left:265.470000px;}
.x14_c00449{left:283.350000px;}
.x26_c00449{left:284.580000px;}
.x41_c00449{left:286.710000px;}
.x15_c00449{left:288.675000px;}
.x1e_c00449{left:297.900000px;}
.x1b_c00449{left:301.905000px;}
.x1f_c00449{left:305.490000px;}
.x27_c00449{left:312.135000px;}
.x1c_c00449{left:314.865000px;}
.x11_c00449{left:319.515000px;}
.x12_c00449{left:324.090000px;}
.x1d_c00449{left:325.485000px;}
.x19_c00449{left:340.020000px;}
.x16_c00449{left:346.350000px;}
.x18_c00449{left:349.335000px;}
.x42_c00449{left:374.955000px;}
.x43_c00449{left:433.710000px;}
.x44_c00449{left:469.965000px;}
.x45_c00449{left:491.190000px;}
.x32_c00449{left:531.675000px;}
.x33_c00449{left:535.410000px;}
.x34_c00449{left:536.415000px;}
.x46_c00449{left:545.925000px;}
.x37_c00449{left:607.695000px;}
.x3a_c00449{left:612.225000px;}
.x38_c00449{left:625.995000px;}
.x3b_c00449{left:633.045000px;}
.x3e_c00449{left:634.140000px;}
.x39_c00449{left:635.700000px;}
.x35_c00449{left:637.395000px;}
.x36_c00449{left:642.330000px;}
.x47_c00449{left:647.610000px;}
.x3c_c00449{left:653.070000px;}
.x3f_c00449{left:684.585000px;}
.x3d_c00449{left:695.460000px;}
.x4d_c00449{left:727.965000px;}
.x4b_c00449{left:732.960000px;}
.x48_c00449{left:744.450000px;}
.x49_c00449{left:748.890000px;}
.x4c_c00449{left:764.325000px;}
.x4a_c00449{left:782.115000px;}
.x4e_c00449{left:783.195000px;}
.x4f_c00449{left:784.410000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.v2_c00449{vertical-align:1.226667pt;}
.v1_c00449{vertical-align:38.400000pt;}
.ls17_c00449{letter-spacing:-3.378667pt;}
.lsf_c00449{letter-spacing:-2.613333pt;}
.lsd_c00449{letter-spacing:-2.389333pt;}
.ls20_c00449{letter-spacing:-2.333333pt;}
.ls22_c00449{letter-spacing:-2.258667pt;}
.ls21_c00449{letter-spacing:-2.200000pt;}
.ls12_c00449{letter-spacing:-1.773333pt;}
.ls1b_c00449{letter-spacing:-1.736000pt;}
.ls10_c00449{letter-spacing:-1.418667pt;}
.lsb_c00449{letter-spacing:-1.288019pt;}
.ls1d_c00449{letter-spacing:-1.213352pt;}
.ls18_c00449{letter-spacing:-0.858667pt;}
.ls13_c00449{letter-spacing:-0.293867pt;}
.ls15_c00449{letter-spacing:-0.174835pt;}
.ls7_c00449{letter-spacing:0.000000pt;}
.ls11_c00449{letter-spacing:0.222938pt;}
.ls1e_c00449{letter-spacing:0.547742pt;}
.lsa_c00449{letter-spacing:0.564594pt;}
.ls16_c00449{letter-spacing:0.640027pt;}
.ls1_c00449{letter-spacing:0.648000pt;}
.ls0_c00449{letter-spacing:0.876384pt;}
.ls19_c00449{letter-spacing:1.040027pt;}
.lse_c00449{letter-spacing:1.253333pt;}
.ls2_c00449{letter-spacing:1.291680pt;}
.ls1f_c00449{letter-spacing:1.386667pt;}
.ls1c_c00449{letter-spacing:1.733360pt;}
.lsc_c00449{letter-spacing:1.786133pt;}
.ls1a_c00449{letter-spacing:1.920000pt;}
.ls23_c00449{letter-spacing:1.931040pt;}
.ls5_c00449{letter-spacing:2.080027pt;}
.ls3_c00449{letter-spacing:2.160000pt;}
.ls6_c00449{letter-spacing:2.266667pt;}
.ls4_c00449{letter-spacing:2.373333pt;}
.ls9_c00449{letter-spacing:2.453333pt;}
.ls14_c00449{letter-spacing:2.533333pt;}
.ls8_c00449{letter-spacing:2.560000pt;}
.ws0_c00449{word-spacing:0.000000pt;}
._4_c00449{margin-left:-11.635200pt;}
._5_c00449{width:36.469894pt;}
._2_c00449{width:83.668800pt;}
._3_c00449{width:302.374080pt;}
._0_c00449{width:306.200819pt;}
._1_c00449{width:357.037493pt;}
.fs1a_c00449{font-size:11.733867pt;}
.fs1b_c00449{font-size:12.800533pt;}
.fs1c_c00449{font-size:17.920000pt;}
.fs1f_c00449{font-size:20.800533pt;}
.fs21_c00449{font-size:21.760000pt;}
.fs26_c00449{font-size:22.400000pt;}
.fs17_c00449{font-size:23.467200pt;}
.fs15_c00449{font-size:24.000533pt;}
.fs1e_c00449{font-size:24.533333pt;}
.fs13_c00449{font-size:25.066667pt;}
.fs27_c00449{font-size:27.733333pt;}
.fsf_c00449{font-size:34.560533pt;}
.fs4_c00449{font-size:34.667200pt;}
.fs10_c00449{font-size:36.800533pt;}
.fs24_c00449{font-size:38.400000pt;}
.fs16_c00449{font-size:40.533333pt;}
.fs18_c00449{font-size:40.960000pt;}
.fs2_c00449{font-size:41.600533pt;}
.fse_c00449{font-size:42.133867pt;}
.fs0_c00449{font-size:43.200000pt;}
.fs3_c00449{font-size:45.333333pt;}
.fs22_c00449{font-size:45.866667pt;}
.fs1_c00449{font-size:47.466667pt;}
.fsb_c00449{font-size:49.066667pt;}
.fs25_c00449{font-size:49.600000pt;}
.fs19_c00449{font-size:50.666667pt;}
.fs6_c00449{font-size:51.200000pt;}
.fs20_c00449{font-size:53.760000pt;}
.fs8_c00449{font-size:56.320000pt;}
.fs11_c00449{font-size:60.800000pt;}
.fs5_c00449{font-size:61.866667pt;}
.fs29_c00449{font-size:64.533333pt;}
.fs28_c00449{font-size:66.666667pt;}
.fs12_c00449{font-size:68.266667pt;}
.fsa_c00449{font-size:71.680000pt;}
.fs14_c00449{font-size:74.666667pt;}
.fs7_c00449{font-size:84.266667pt;}
.fs1d_c00449{font-size:96.533333pt;}
.fs23_c00449{font-size:119.040000pt;}
.fs9_c00449{font-size:134.400533pt;}
.fsd_c00449{font-size:222.933333pt;}
.fsc_c00449{font-size:290.133867pt;}
.y0_c00449{bottom:0.000000pt;}
.y2d_c00449{bottom:166.720000pt;}
.y1f_c00449{bottom:301.773333pt;}
.y20_c00449{bottom:302.413333pt;}
.y25_c00449{bottom:303.053333pt;}
.y2c_c00449{bottom:341.440000pt;}
.y2b_c00449{bottom:352.653333pt;}
.y2a_c00449{bottom:358.733333pt;}
.y29_c00449{bottom:370.893333pt;}
.y1e_c00449{bottom:382.093333pt;}
.y34_c00449{bottom:383.360000pt;}
.y1d_c00449{bottom:460.173333pt;}
.y1c_c00449{bottom:476.480000pt;}
.y1b_c00449{bottom:484.480000pt;}
.y18_c00449{bottom:486.400000pt;}
.y33_c00449{bottom:487.693333pt;}
.y1a_c00449{bottom:488.653333pt;}
.y19_c00449{bottom:496.000000pt;}
.y17_c00449{bottom:503.360000pt;}
.y16_c00449{bottom:508.173333pt;}
.y15_c00449{bottom:569.933333pt;}
.y14_c00449{bottom:591.360000pt;}
.y32_c00449{bottom:592.000000pt;}
.y13_c00449{bottom:627.533333pt;}
.y12_c00449{bottom:641.280000pt;}
.y24_c00449{bottom:647.693333pt;}
.y23_c00449{bottom:653.773333pt;}
.y11_c00449{bottom:683.213333pt;}
.y31_c00449{bottom:693.453333pt;}
.y10_c00449{bottom:694.093333pt;}
.yd_c00449{bottom:706.240000pt;}
.y4_c00449{bottom:791.373333pt;}
.y30_c00449{bottom:794.240000pt;}
.yc_c00449{bottom:817.613333pt;}
.yb_c00449{bottom:868.480000pt;}
.y3_c00449{bottom:894.720000pt;}
.ya_c00449{bottom:898.240000pt;}
.y2f_c00449{bottom:898.880000pt;}
.y9_c00449{bottom:910.093333pt;}
.y8_c00449{bottom:938.880000pt;}
.y28_c00449{bottom:943.053333pt;}
.y27_c00449{bottom:964.800000pt;}
.y7_c00449{bottom:966.400000pt;}
.y2_c00449{bottom:987.213333pt;}
.y2e_c00449{bottom:999.693333pt;}
.y6_c00449{bottom:1001.613333pt;}
.yf_c00449{bottom:1002.560000pt;}
.y22_c00449{bottom:1003.213333pt;}
.y1_c00449{bottom:1010.880000pt;}
.y5_c00449{bottom:1011.853333pt;}
.ye_c00449{bottom:1012.480000pt;}
.y21_c00449{bottom:1013.133333pt;}
.y26_c00449{bottom:1013.453333pt;}
.h1c_c00449{height:11.516148pt;}
.h1e_c00449{height:11.934720pt;}
.h1d_c00449{height:12.563023pt;}
.h24_c00449{height:14.492160pt;}
.h21_c00449{height:20.414586pt;}
.h11_c00449{height:23.017315pt;}
.h29_c00449{height:23.362500pt;}
.h17_c00449{height:25.031806pt;}
.h20_c00449{height:25.587500pt;}
.h15_c00449{height:26.143750pt;}
.h1a_c00449{height:27.279360pt;}
.h2a_c00449{height:28.925000pt;}
.h28_c00449{height:34.023961pt;}
.h22_c00449{height:35.804160pt;}
.h6_c00449{height:36.156806pt;}
.ha_c00449{height:37.509120pt;}
.h12_c00449{height:38.381806pt;}
.h26_c00449{height:40.050000pt;}
.h18_c00449{height:42.275000pt;}
.h4_c00449{height:43.388056pt;}
.h10_c00449{height:43.944306pt;}
.h5_c00449{height:44.492188pt;}
.h2_c00449{height:45.056250pt;}
.h23_c00449{height:45.170973pt;}
.h3_c00449{height:46.585938pt;}
.hc_c00449{height:47.738880pt;}
.h27_c00449{height:48.679688pt;}
.hd_c00449{height:51.175000pt;}
.h1b_c00449{height:52.843750pt;}
.h8_c00449{height:53.400000pt;}
.h13_c00449{height:59.671875pt;}
.h19_c00449{height:61.431773pt;}
.h7_c00449{height:64.525000pt;}
.h2c_c00449{height:65.037500pt;}
.h14_c00449{height:67.000000pt;}
.h2b_c00449{height:67.187500pt;}
.h16_c00449{height:77.875000pt;}
.h25_c00449{height:79.280640pt;}
.h9_c00449{height:82.703125pt;}
.h1f_c00449{height:100.681250pt;}
.hb_c00449{height:131.906773pt;}
.hf_c00449{height:232.512500pt;}
.he_c00449{height:284.750523pt;}
.h1_c00449{height:1122.666667pt;}
.h0_c00449{height:1122.880000pt;}
.w1_c00449{width:793.333333pt;}
.w0_c00449{width:793.600000pt;}
.x0_c00449{left:0.000000pt;}
.x4_c00449{left:67.746667pt;}
.x2_c00449{left:74.066667pt;}
.x3_c00449{left:75.173333pt;}
.x1a_c00449{left:76.973333pt;}
.x20_c00449{left:78.373333pt;}
.x1_c00449{left:95.000000pt;}
.x30_c00449{left:96.600000pt;}
.x17_c00449{left:100.173333pt;}
.x13_c00449{left:104.573333pt;}
.x22_c00449{left:107.186667pt;}
.x23_c00449{left:116.960000pt;}
.xd_c00449{left:125.920000pt;}
.x21_c00449{left:128.000000pt;}
.xc_c00449{left:130.160000pt;}
.x24_c00449{left:131.413333pt;}
.xe_c00449{left:133.000000pt;}
.xa_c00449{left:135.973333pt;}
.x9_c00449{left:141.546667pt;}
.x7_c00449{left:144.173333pt;}
.x40_c00449{left:146.800000pt;}
.x2c_c00449{left:149.093333pt;}
.x25_c00449{left:154.826667pt;}
.xf_c00449{left:161.280000pt;}
.xb_c00449{left:170.826667pt;}
.x28_c00449{left:173.093333pt;}
.x2f_c00449{left:174.546667pt;}
.x8_c00449{left:177.346667pt;}
.x29_c00449{left:179.480000pt;}
.x2d_c00449{left:180.653333pt;}
.x5_c00449{left:189.293333pt;}
.x31_c00449{left:190.253333pt;}
.x6_c00449{left:194.000000pt;}
.x10_c00449{left:195.493333pt;}
.x2a_c00449{left:199.933333pt;}
.x2b_c00449{left:211.800000pt;}
.x2e_c00449{left:235.973333pt;}
.x14_c00449{left:251.866667pt;}
.x26_c00449{left:252.960000pt;}
.x41_c00449{left:254.853333pt;}
.x15_c00449{left:256.600000pt;}
.x1e_c00449{left:264.800000pt;}
.x1b_c00449{left:268.360000pt;}
.x1f_c00449{left:271.546667pt;}
.x27_c00449{left:277.453333pt;}
.x1c_c00449{left:279.880000pt;}
.x11_c00449{left:284.013333pt;}
.x12_c00449{left:288.080000pt;}
.x1d_c00449{left:289.320000pt;}
.x19_c00449{left:302.240000pt;}
.x16_c00449{left:307.866667pt;}
.x18_c00449{left:310.520000pt;}
.x42_c00449{left:333.293333pt;}
.x43_c00449{left:385.520000pt;}
.x44_c00449{left:417.746667pt;}
.x45_c00449{left:436.613333pt;}
.x32_c00449{left:472.600000pt;}
.x33_c00449{left:475.920000pt;}
.x34_c00449{left:476.813333pt;}
.x46_c00449{left:485.266667pt;}
.x37_c00449{left:540.173333pt;}
.x3a_c00449{left:544.200000pt;}
.x38_c00449{left:556.440000pt;}
.x3b_c00449{left:562.706667pt;}
.x3e_c00449{left:563.680000pt;}
.x39_c00449{left:565.066667pt;}
.x35_c00449{left:566.573333pt;}
.x36_c00449{left:570.960000pt;}
.x47_c00449{left:575.653333pt;}
.x3c_c00449{left:580.506667pt;}
.x3f_c00449{left:608.520000pt;}
.x3d_c00449{left:618.186667pt;}
.x4d_c00449{left:647.080000pt;}
.x4b_c00449{left:651.520000pt;}
.x48_c00449{left:661.733333pt;}
.x49_c00449{left:665.680000pt;}
.x4c_c00449{left:679.400000pt;}
.x4a_c00449{left:695.213333pt;}
.x4e_c00449{left:696.173333pt;}
.x4f_c00449{left:697.253333pt;}
}





/* 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_c00450 {
    display:none;
  }
  .loading-indicator_c00450.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00450 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_c00450 { 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_c00450" -> "#page-container .classname_c00450")
 */
.pf_c00450 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00450 { /* 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_c00450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00450 { /* 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_c00450 { /* 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_c00450 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00450 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00450 {overflow:visible;}
  }
}
.c_c00450 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00450 { /* 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_c00450:after { /* webkit #35443 */
  content: '';
}
.t_c00450:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00450 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 */
}
.__c00450 { /* 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_c00450 { /* info for Javascript */
  display:none;
}
.l_c00450 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00450 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00450 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00450: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_c00450 {
    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_c00450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00450.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_c00450 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00450{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00450;src:url('chunks/assets/font_fd587d7215d56620e36c9819.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;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:ff2_c00450;src:url('chunks/assets/font_04d72751aa3d96b611201010.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.284668;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_c00450;src:url('chunks/assets/font_b53f5b63e5c6fc9e3ec05830.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;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:ff4_c00450;src:url('chunks/assets/font_b391a08889793c6c1df9a1f9.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:0.666000;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_c00450;src:url('chunks/assets/font_0539971e99b910124a024995.woff2')format("woff");}.ff5_c00450{font-family:ff5_c00450;line-height:1.311035;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_c00450;src:url('chunks/assets/font_50765a2768be21c8ff98934b.woff2')format("woff");}.ff6_c00450{font-family:ff6_c00450;line-height:1.284180;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_c00450;src:url('chunks/assets/font_b4fba2865e6cbfc7b69c5a7a.woff2')format("woff");}.ff7_c00450{font-family:ff7_c00450;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;}
.m1a_c00450{transform:matrix(0.045976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045976,0.000000,0.000000,0.250000,0,0);}
.m8_c00450{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m36_c00450{transform:matrix(0.072727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072727,0.000000,0.000000,0.250000,0,0);}
.m40_c00450{transform:matrix(0.092859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092859,0.000000,0.000000,0.250000,0,0);}
.m23_c00450{transform:matrix(0.093522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093522,0.000000,0.000000,0.250000,0,0);}
.m24_c00450{transform:matrix(0.093524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093524,0.000000,0.000000,0.250000,0,0);}
.m2b_c00450{transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);}
.m1b_c00450{transform:matrix(0.112049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112049,0.000000,0.000000,0.250000,0,0);}
.m2f_c00450{transform:matrix(0.113693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113693,0.000000,0.000000,0.250000,0,0);}
.m5_c00450{transform:matrix(0.114896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114896,0.000000,0.000000,0.250000,0,0);}
.m26_c00450{transform:matrix(0.120538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120538,0.000000,0.000000,0.250000,0,0);}
.m18_c00450{transform:matrix(0.128856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128856,0.000000,0.000000,0.250000,0,0);}
.m28_c00450{transform:matrix(0.133511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133511,0.000000,0.000000,0.250000,0,0);}
.m1c_c00450{transform:matrix(0.134820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134820,0.000000,0.000000,0.250000,0,0);}
.m31_c00450{transform:matrix(0.138387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138387,0.000000,0.000000,0.250000,0,0);}
.m19_c00450{transform:matrix(0.138475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138475,0.000000,0.000000,0.250000,0,0);}
.m15_c00450{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00450{transform:matrix(0.142223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142223,0.000000,0.000000,0.250000,0,0);}
.m30_c00450{transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);}
.m21_c00450{transform:matrix(0.147457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147457,0.000000,0.000000,0.250000,0,0);}
.m3e_c00450{transform:matrix(0.148799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148799,0.000000,0.000000,0.250000,0,0);}
.m22_c00450{transform:matrix(0.156706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156706,0.000000,0.000000,0.250000,0,0);}
.m34_c00450{transform:matrix(0.156863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156863,0.000000,0.000000,0.250000,0,0);}
.mb_c00450{transform:matrix(0.158784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158784,0.000000,0.000000,0.250000,0,0);}
.m27_c00450{transform:matrix(0.166261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166261,0.000000,0.000000,0.250000,0,0);}
.m17_c00450{transform:matrix(0.168071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168071,0.000000,0.000000,0.250000,0,0);}
.m49_c00450{transform:matrix(0.204651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204651,0.000000,0.000000,0.250000,0,0);}
.m2e_c00450{transform:matrix(0.218913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218913,0.000000,0.000000,0.250000,0,0);}
.m4_c00450{transform:matrix(0.219745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219745,0.000000,0.000000,0.250000,0,0);}
.m37_c00450{transform:matrix(0.233310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233310,0.000000,0.000000,0.250000,0,0);}
.m3a_c00450{transform:matrix(0.233564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233564,0.000000,0.000000,0.250000,0,0);}
.m3c_c00450{transform:matrix(0.238076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238076,0.000000,0.000000,0.250000,0,0);}
.m3b_c00450{transform:matrix(0.238378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238378,0.000000,0.000000,0.250000,0,0);}
.m20_c00450{transform:matrix(0.239467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239467,0.000000,0.000000,0.250000,0,0);}
.m3d_c00450{transform:matrix(0.241486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241486,0.000000,0.000000,0.250000,0,0);}
.m38_c00450{transform:matrix(0.242560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242560,0.000000,0.000000,0.250000,0,0);}
.m1e_c00450{transform:matrix(0.243931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243931,0.000000,0.000000,0.250000,0,0);}
.m39_c00450{transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);}
.m4c_c00450{transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);}
.m2_c00450{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);}
.md_c00450{transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);}
.m46_c00450{transform:matrix(0.255590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255590,0.000000,0.000000,0.250000,0,0);}
.m29_c00450{transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);}
.m48_c00450{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m47_c00450{transform:matrix(0.262265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262265,0.000000,0.000000,0.250000,0,0);}
.m42_c00450{transform:matrix(0.266299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266299,0.000000,0.000000,0.250000,0,0);}
.m0_c00450{transform:matrix(0.267620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267620,0.000000,0.000000,0.250000,0,0);}
.m1_c00450{transform:matrix(0.269194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269194,0.000000,0.000000,0.250000,0,0);}
.m3_c00450{transform:matrix(0.271848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271848,0.000000,0.000000,0.250000,0,0);}
.m33_c00450{transform:matrix(0.272972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272972,0.000000,0.000000,0.250000,0,0);}
.m9_c00450{transform:matrix(0.278522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278522,0.000000,0.000000,0.250000,0,0);}
.m2c_c00450{transform:matrix(0.281027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281027,0.000000,0.000000,0.250000,0,0);}
.m3f_c00450{transform:matrix(0.282063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282063,0.000000,0.000000,0.250000,0,0);}
.m6_c00450{transform:matrix(0.286134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286134,0.000000,0.000000,0.250000,0,0);}
.m25_c00450{transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);}
.m32_c00450{transform:matrix(0.292424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292424,0.000000,0.000000,0.250000,0,0);}
.m4b_c00450{transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);}
.m7_c00450{transform:matrix(0.300196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300196,0.000000,0.000000,0.250000,0,0);}
.ma_c00450{transform:matrix(0.310129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310129,0.000000,0.000000,0.250000,0,0);}
.m35_c00450{transform:matrix(0.313337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313337,0.000000,0.000000,0.250000,0,0);}
.mc_c00450{transform:matrix(0.327049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327049,0.000000,0.000000,0.250000,0,0);}
.m43_c00450{transform:matrix(0.334468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334468,0.000000,0.000000,0.250000,0,0);}
.m1d_c00450{transform:matrix(0.343059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343059,0.000000,0.000000,0.250000,0,0);}
.m4a_c00450{transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);}
.m45_c00450{transform:matrix(0.411575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411575,0.000000,0.000000,0.250000,0,0);}
.m44_c00450{transform:matrix(0.436406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436406,0.000000,0.000000,0.250000,0,0);}
.m2d_c00450{transform:matrix(0.470556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470556,0.000000,0.000000,0.250000,0,0);}
.m16_c00450{transform:matrix(0.516125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516125,0.000000,0.000000,0.250000,0,0);}
.m1f_c00450{transform:matrix(0.544810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544810,0.000000,0.000000,0.250000,0,0);}
.m10_c00450{transform:matrix(0.604211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604211,0.000000,0.000000,0.250000,0,0);}
.m11_c00450{transform:matrix(0.638596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638596,0.000000,0.000000,0.250000,0,0);}
.m41_c00450{transform:matrix(0.645846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645846,0.000000,0.000000,0.250000,0,0);}
.mf_c00450{transform:matrix(0.708815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708815,0.000000,0.000000,0.250000,0,0);}
.m14_c00450{transform:matrix(0.747211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747211,0.000000,0.000000,0.250000,0,0);}
.me_c00450{transform:matrix(0.791158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.791158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.791158,0.000000,0.000000,0.250000,0,0);}
.m12_c00450{transform:matrix(1.020553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.020553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.020553,0.000000,0.000000,0.250000,0,0);}
.m13_c00450{transform:matrix(1.178197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.178197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.178197,0.000000,0.000000,0.250000,0,0);}
.v1_c00450{vertical-align:-100.800000px;}
.v0_c00450{vertical-align:0.000000px;}
.ls13_c00450{letter-spacing:-3.675000px;}
.ls26_c00450{letter-spacing:-2.625000px;}
.ls17_c00450{letter-spacing:-2.604000px;}
.ls28_c00450{letter-spacing:-2.478000px;}
.ls23_c00450{letter-spacing:-2.415000px;}
.ls16_c00450{letter-spacing:-2.394000px;}
.ls3_c00450{letter-spacing:-2.310000px;}
.ls19_c00450{letter-spacing:-1.953000px;}
.ls10_c00450{letter-spacing:-1.890000px;}
.ls1c_c00450{letter-spacing:-1.869000px;}
.ls2e_c00450{letter-spacing:-1.848000px;}
.ls1b_c00450{letter-spacing:-1.743000px;}
.ls27_c00450{letter-spacing:-1.492500px;}
.ls1e_c00450{letter-spacing:-1.449021px;}
.ls1f_c00450{letter-spacing:-1.428021px;}
.ls30_c00450{letter-spacing:-1.365021px;}
.ls20_c00450{letter-spacing:-1.302000px;}
.ls11_c00450{letter-spacing:-1.281000px;}
.lsd_c00450{letter-spacing:-1.050000px;}
.lsf_c00450{letter-spacing:-0.966000px;}
.ls21_c00450{letter-spacing:-0.362880px;}
.ls22_c00450{letter-spacing:-0.231000px;}
.ls1_c00450{letter-spacing:0.000000px;}
.ls15_c00450{letter-spacing:0.220088px;}
.ls4_c00450{letter-spacing:0.357840px;}
.ls1d_c00450{letter-spacing:0.540000px;}
.ls9_c00450{letter-spacing:0.570000px;}
.ls31_c00450{letter-spacing:0.616209px;}
.ls2a_c00450{letter-spacing:0.729000px;}
.lsa_c00450{letter-spacing:1.050030px;}
.lsb_c00450{letter-spacing:1.078560px;}
.lse_c00450{letter-spacing:1.140030px;}
.ls14_c00450{letter-spacing:1.380000px;}
.ls12_c00450{letter-spacing:1.410000px;}
.ls2c_c00450{letter-spacing:1.433700px;}
.ls2d_c00450{letter-spacing:1.453140px;}
.ls2b_c00450{letter-spacing:1.740030px;}
.ls25_c00450{letter-spacing:1.815660px;}
.lsc_c00450{letter-spacing:1.914840px;}
.ls2f_c00450{letter-spacing:1.950030px;}
.ls5_c00450{letter-spacing:2.148120px;}
.ls24_c00450{letter-spacing:2.160000px;}
.ls7_c00450{letter-spacing:2.391120px;}
.ls8_c00450{letter-spacing:2.400000px;}
.ls0_c00450{letter-spacing:2.430000px;}
.ls2_c00450{letter-spacing:2.610000px;}
.ls6_c00450{letter-spacing:2.640000px;}
.ls1a_c00450{letter-spacing:2.790000px;}
.ls18_c00450{letter-spacing:3.720000px;}
.ls29_c00450{letter-spacing:3.930000px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{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__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00450{word-spacing:0.000000px;}
._1_c00450{width:32.424000px;}
._0_c00450{width:146.376000px;}
.fc0_c00450{color:transparent;}
.fs21_c00450{font-size:10.800000px;}
.fs11_c00450{font-size:11.400000px;}
.fs2e_c00450{font-size:11.520000px;}
.fs1a_c00450{font-size:16.800600px;}
.fs12_c00450{font-size:21.000600px;}
.fsc_c00450{font-size:22.800600px;}
.fs14_c00450{font-size:27.600000px;}
.fs18_c00450{font-size:28.200000px;}
.fs13_c00450{font-size:30.000000px;}
.fs27_c00450{font-size:30.600000px;}
.fs2f_c00450{font-size:34.800600px;}
.fs1b_c00450{font-size:35.400600px;}
.fs16_c00450{font-size:36.600000px;}
.fs24_c00450{font-size:37.200000px;}
.fs4_c00450{font-size:39.000600px;}
.fs23_c00450{font-size:40.800600px;}
.fs22_c00450{font-size:41.400600px;}
.fs17_c00450{font-size:41.760600px;}
.fs28_c00450{font-size:43.200000px;}
.fs25_c00450{font-size:46.200000px;}
.fs10_c00450{font-size:48.000000px;}
.fs0_c00450{font-size:48.600000px;}
.fs1f_c00450{font-size:49.800000px;}
.fs7_c00450{font-size:50.400000px;}
.fs3_c00450{font-size:52.200000px;}
.fsb_c00450{font-size:52.800000px;}
.fsf_c00450{font-size:53.280000px;}
.fs20_c00450{font-size:53.400000px;}
.fs15_c00450{font-size:54.000000px;}
.fs1e_c00450{font-size:55.800000px;}
.fs2d_c00450{font-size:57.600000px;}
.fs5_c00450{font-size:63.000000px;}
.fs6_c00450{font-size:66.000000px;}
.fs9_c00450{font-size:67.680000px;}
.fs1c_c00450{font-size:68.400000px;}
.fs26_c00450{font-size:69.000000px;}
.fs2b_c00450{font-size:70.800000px;}
.fs1d_c00450{font-size:74.400000px;}
.fs2a_c00450{font-size:75.000000px;}
.fs2c_c00450{font-size:78.600000px;}
.fs29_c00450{font-size:79.200000px;}
.fs2_c00450{font-size:82.200000px;}
.fs19_c00450{font-size:105.000000px;}
.fse_c00450{font-size:110.880000px;}
.fs1_c00450{font-size:114.000000px;}
.fs8_c00450{font-size:141.000000px;}
.fsa_c00450{font-size:153.000000px;}
.fsd_c00450{font-size:225.600000px;}
.y0_c00450{bottom:0.000000px;}
.y28_c00450{bottom:188.640000px;}
.y34_c00450{bottom:339.495000px;}
.y1e_c00450{bottom:340.200000px;}
.y1f_c00450{bottom:340.575000px;}
.y27_c00450{bottom:340.935000px;}
.y1d_c00450{bottom:375.135000px;}
.y1c_c00450{bottom:383.055000px;}
.y1b_c00450{bottom:383.057100px;}
.y1a_c00450{bottom:389.895000px;}
.y19_c00450{bottom:398.175000px;}
.y33_c00450{bottom:399.975000px;}
.y18_c00450{bottom:400.695000px;}
.y32_c00450{bottom:403.560000px;}
.y17_c00450{bottom:415.455000px;}
.y31_c00450{bottom:417.615000px;}
.y10_c00450{bottom:431.295000px;}
.y16_c00450{bottom:469.800000px;}
.y15_c00450{bottom:495.720000px;}
.y13_c00450{bottom:513.015000px;}
.y14_c00450{bottom:514.800000px;}
.y12_c00450{bottom:524.535000px;}
.y11_c00450{bottom:533.535000px;}
.y30_c00450{bottom:548.295000px;}
.yf_c00450{bottom:548.640000px;}
.y2f_c00450{bottom:662.400000px;}
.ye_c00450{bottom:666.015000px;}
.y2e_c00450{bottom:779.400000px;}
.yd_c00450{bottom:781.200000px;}
.yc_c00450{bottom:866.895000px;}
.yb_c00450{bottom:893.535000px;}
.y25_c00450{bottom:896.400000px;}
.y23_c00450{bottom:923.400000px;}
.y24_c00450{bottom:928.440000px;}
.ya_c00450{bottom:975.975000px;}
.y6_c00450{bottom:1007.280000px;}
.y2d_c00450{bottom:1010.535000px;}
.y9_c00450{bottom:1010.895000px;}
.y8_c00450{bottom:1023.135000px;}
.y7_c00450{bottom:1055.175000px;}
.y2b_c00450{bottom:1077.135000px;}
.y2a_c00450{bottom:1085.760000px;}
.y5_c00450{bottom:1087.560000px;}
.y29_c00450{bottom:1100.535000px;}
.y2_c00450{bottom:1111.695000px;}
.y2c_c00450{bottom:1124.280000px;}
.y4_c00450{bottom:1128.240000px;}
.y21_c00450{bottom:1128.600000px;}
.y22_c00450{bottom:1128.975000px;}
.y1_c00450{bottom:1138.695000px;}
.y3_c00450{bottom:1139.400000px;}
.y20_c00450{bottom:1139.760000px;}
.y26_c00450{bottom:1140.135000px;}
.h31_c00450{height:7.672320px;}
.h12_c00450{height:11.188477px;}
.h23_c00450{height:11.264063px;}
.h1c_c00450{height:17.522501px;}
.h13_c00450{height:20.610940px;}
.hd_c00450{height:23.780313px;}
.h1a_c00450{height:27.676758px;}
.h19_c00450{height:27.812560px;}
.h16_c00450{height:28.785937px;}
.h29_c00450{height:30.032227px;}
.h14_c00450{height:31.289062px;}
.h1d_c00450{height:34.743753px;}
.h10_c00450{height:35.484480px;}
.h2f_c00450{height:35.903027px;}
.h18_c00450{height:35.920898px;}
.h32_c00450{height:36.295938px;}
.h26_c00450{height:36.509766px;}
.h34_c00450{height:38.276956px;}
.h30_c00450{height:38.361600px;}
.h5_c00450{height:40.676407px;}
.h25_c00450{height:42.553751px;}
.h24_c00450{height:43.179532px;}
.h2a_c00450{height:45.056250px;}
.ha_c00450{height:45.074880px;}
.h27_c00450{height:48.185156px;}
.h21_c00450{height:48.875977px;}
.h11_c00450{height:50.062500px;}
.h2_c00450{height:50.688281px;}
.h4_c00450{height:51.231445px;}
.h33_c00450{height:51.820313px;}
.h22_c00450{height:52.409180px;}
.h8_c00450{height:52.565625px;}
.h2b_c00450{height:52.747200px;}
.h15_c00450{height:54.442969px;}
.hc_c00450{height:55.068750px;}
.h17_c00450{height:56.320312px;}
.h20_c00450{height:58.197656px;}
.h7_c00450{height:64.775391px;}
.h6_c00450{height:65.707031px;}
.h1e_c00450{height:71.339063px;}
.h2d_c00450{height:71.353125px;}
.h28_c00450{height:71.964844px;}
.hf_c00450{height:73.846080px;}
.h2c_c00450{height:75.585938px;}
.h1f_c00450{height:77.596875px;}
.h2e_c00450{height:81.977344px;}
.h1b_c00450{height:109.511719px;}
.h3_c00450{height:118.898438px;}
.h9_c00450{height:138.383789px;}
.hb_c00450{height:150.161133px;}
.he_c00450{height:221.414063px;}
.h1_c00450{height:1263.000000px;}
.h0_c00450{height:1263.240000px;}
.w1_c00450{width:892.500000px;}
.w0_c00450{width:892.800000px;}
.x0_c00450{left:0.000000px;}
.x10_c00450{left:80.895000px;}
.x2_c00450{left:89.130000px;}
.x14_c00450{left:90.945000px;}
.x1_c00450{left:112.635000px;}
.x3_c00450{left:116.565000px;}
.x39_c00450{left:119.415000px;}
.xa_c00450{left:122.355000px;}
.x1d_c00450{left:124.740000px;}
.x2d_c00450{left:126.960000px;}
.x15_c00450{left:128.025000px;}
.x1e_c00450{left:132.480000px;}
.x2e_c00450{left:135.510000px;}
.x2c_c00450{left:137.337000px;}
.x16_c00450{left:138.810000px;}
.x1f_c00450{left:139.920000px;}
.x11_c00450{left:144.915000px;}
.xe_c00450{left:151.695000px;}
.xb_c00450{left:155.025000px;}
.x1c_c00450{left:156.645000px;}
.x9_c00450{left:158.370000px;}
.xc_c00450{left:159.780000px;}
.x8_c00450{left:164.175000px;}
.x26_c00450{left:167.325000px;}
.x3a_c00450{left:170.865000px;}
.x20_c00450{left:172.320000px;}
.x22_c00450{left:174.195000px;}
.x27_c00450{left:179.400000px;}
.x17_c00450{left:181.545000px;}
.x21_c00450{left:183.675000px;}
.x23_c00450{left:185.040000px;}
.x29_c00450{left:190.320000px;}
.x2a_c00450{left:194.910000px;}
.x3b_c00450{left:198.300000px;}
.x13_c00450{left:202.350000px;}
.xf_c00450{left:203.775000px;}
.x6_c00450{left:204.945000px;}
.x2b_c00450{left:206.820000px;}
.x24_c00450{left:210.150000px;}
.x28_c00450{left:212.010000px;}
.x12_c00450{left:216.015000px;}
.x4_c00450{left:217.995000px;}
.x7_c00450{left:220.905000px;}
.x5_c00450{left:223.725000px;}
.x25_c00450{left:226.335000px;}
.x18_c00450{left:234.705000px;}
.x19_c00450{left:239.940000px;}
.xd_c00450{left:261.015000px;}
.x1a_c00450{left:266.610000px;}
.x1b_c00450{left:277.065000px;}
.x3c_c00450{left:292.830000px;}
.x2f_c00450{left:324.675000px;}
.x30_c00450{left:329.565000px;}
.x3d_c00450{left:355.125000px;}
.x3e_c00450{left:377.175000px;}
.x3f_c00450{left:401.205000px;}
.x31_c00450{left:431.625000px;}
.x32_c00450{left:436.125000px;}
.x35_c00450{left:457.200000px;}
.x33_c00450{left:472.755000px;}
.x40_c00450{left:477.885000px;}
.x34_c00450{left:482.670000px;}
.x38_c00450{left:537.075000px;}
.x36_c00450{left:538.515000px;}
.x37_c00450{left:542.325000px;}
.x41_c00450{left:544.125000px;}
.x42_c00450{left:566.100000px;}
.x43_c00450{left:579.930000px;}
.x52_c00450{left:616.590000px;}
.x47_c00450{left:619.455000px;}
.x46_c00450{left:622.590000px;}
.x48_c00450{left:629.655000px;}
.x49_c00450{left:631.095000px;}
.x53_c00450{left:637.725000px;}
.x51_c00450{left:640.380000px;}
.x57_c00450{left:642.075000px;}
.x44_c00450{left:643.515000px;}
.x45_c00450{left:648.525000px;}
.x54_c00450{left:657.630000px;}
.x4a_c00450{left:668.250000px;}
.x55_c00450{left:678.270000px;}
.x4e_c00450{left:691.110000px;}
.x56_c00450{left:699.420000px;}
.x4f_c00450{left:712.035000px;}
.x58_c00450{left:747.690000px;}
.x4b_c00450{left:750.210000px;}
.x4c_c00450{left:754.365000px;}
.x50_c00450{left:763.950000px;}
.x4d_c00450{left:787.515000px;}
@media print{
.v1_c00450{vertical-align:-89.600000pt;}
.v0_c00450{vertical-align:0.000000pt;}
.ls13_c00450{letter-spacing:-3.266667pt;}
.ls26_c00450{letter-spacing:-2.333333pt;}
.ls17_c00450{letter-spacing:-2.314667pt;}
.ls28_c00450{letter-spacing:-2.202667pt;}
.ls23_c00450{letter-spacing:-2.146667pt;}
.ls16_c00450{letter-spacing:-2.128000pt;}
.ls3_c00450{letter-spacing:-2.053333pt;}
.ls19_c00450{letter-spacing:-1.736000pt;}
.ls10_c00450{letter-spacing:-1.680000pt;}
.ls1c_c00450{letter-spacing:-1.661333pt;}
.ls2e_c00450{letter-spacing:-1.642667pt;}
.ls1b_c00450{letter-spacing:-1.549333pt;}
.ls27_c00450{letter-spacing:-1.326667pt;}
.ls1e_c00450{letter-spacing:-1.288019pt;}
.ls1f_c00450{letter-spacing:-1.269352pt;}
.ls30_c00450{letter-spacing:-1.213352pt;}
.ls20_c00450{letter-spacing:-1.157333pt;}
.ls11_c00450{letter-spacing:-1.138667pt;}
.lsd_c00450{letter-spacing:-0.933333pt;}
.lsf_c00450{letter-spacing:-0.858667pt;}
.ls21_c00450{letter-spacing:-0.322560pt;}
.ls22_c00450{letter-spacing:-0.205333pt;}
.ls1_c00450{letter-spacing:0.000000pt;}
.ls15_c00450{letter-spacing:0.195634pt;}
.ls4_c00450{letter-spacing:0.318080pt;}
.ls1d_c00450{letter-spacing:0.480000pt;}
.ls9_c00450{letter-spacing:0.506667pt;}
.ls31_c00450{letter-spacing:0.547742pt;}
.ls2a_c00450{letter-spacing:0.648000pt;}
.lsa_c00450{letter-spacing:0.933360pt;}
.lsb_c00450{letter-spacing:0.958720pt;}
.lse_c00450{letter-spacing:1.013360pt;}
.ls14_c00450{letter-spacing:1.226667pt;}
.ls12_c00450{letter-spacing:1.253333pt;}
.ls2c_c00450{letter-spacing:1.274400pt;}
.ls2d_c00450{letter-spacing:1.291680pt;}
.ls2b_c00450{letter-spacing:1.546693pt;}
.ls25_c00450{letter-spacing:1.613920pt;}
.lsc_c00450{letter-spacing:1.702080pt;}
.ls2f_c00450{letter-spacing:1.733360pt;}
.ls5_c00450{letter-spacing:1.909440pt;}
.ls24_c00450{letter-spacing:1.920000pt;}
.ls7_c00450{letter-spacing:2.125440pt;}
.ls8_c00450{letter-spacing:2.133333pt;}
.ls0_c00450{letter-spacing:2.160000pt;}
.ls2_c00450{letter-spacing:2.320000pt;}
.ls6_c00450{letter-spacing:2.346667pt;}
.ls1a_c00450{letter-spacing:2.480000pt;}
.ls18_c00450{letter-spacing:3.306667pt;}
.ls29_c00450{letter-spacing:3.493333pt;}
.ws0_c00450{word-spacing:0.000000pt;}
._1_c00450{width:28.821333pt;}
._0_c00450{width:130.112000pt;}
.fs21_c00450{font-size:9.600000pt;}
.fs11_c00450{font-size:10.133333pt;}
.fs2e_c00450{font-size:10.240000pt;}
.fs1a_c00450{font-size:14.933867pt;}
.fs12_c00450{font-size:18.667200pt;}
.fsc_c00450{font-size:20.267200pt;}
.fs14_c00450{font-size:24.533333pt;}
.fs18_c00450{font-size:25.066667pt;}
.fs13_c00450{font-size:26.666667pt;}
.fs27_c00450{font-size:27.200000pt;}
.fs2f_c00450{font-size:30.933867pt;}
.fs1b_c00450{font-size:31.467200pt;}
.fs16_c00450{font-size:32.533333pt;}
.fs24_c00450{font-size:33.066667pt;}
.fs4_c00450{font-size:34.667200pt;}
.fs23_c00450{font-size:36.267200pt;}
.fs22_c00450{font-size:36.800533pt;}
.fs17_c00450{font-size:37.120533pt;}
.fs28_c00450{font-size:38.400000pt;}
.fs25_c00450{font-size:41.066667pt;}
.fs10_c00450{font-size:42.666667pt;}
.fs0_c00450{font-size:43.200000pt;}
.fs1f_c00450{font-size:44.266667pt;}
.fs7_c00450{font-size:44.800000pt;}
.fs3_c00450{font-size:46.400000pt;}
.fsb_c00450{font-size:46.933333pt;}
.fsf_c00450{font-size:47.360000pt;}
.fs20_c00450{font-size:47.466667pt;}
.fs15_c00450{font-size:48.000000pt;}
.fs1e_c00450{font-size:49.600000pt;}
.fs2d_c00450{font-size:51.200000pt;}
.fs5_c00450{font-size:56.000000pt;}
.fs6_c00450{font-size:58.666667pt;}
.fs9_c00450{font-size:60.160000pt;}
.fs1c_c00450{font-size:60.800000pt;}
.fs26_c00450{font-size:61.333333pt;}
.fs2b_c00450{font-size:62.933333pt;}
.fs1d_c00450{font-size:66.133333pt;}
.fs2a_c00450{font-size:66.666667pt;}
.fs2c_c00450{font-size:69.866667pt;}
.fs29_c00450{font-size:70.400000pt;}
.fs2_c00450{font-size:73.066667pt;}
.fs19_c00450{font-size:93.333333pt;}
.fse_c00450{font-size:98.560000pt;}
.fs1_c00450{font-size:101.333333pt;}
.fs8_c00450{font-size:125.333333pt;}
.fsa_c00450{font-size:136.000000pt;}
.fsd_c00450{font-size:200.533333pt;}
.y0_c00450{bottom:0.000000pt;}
.y28_c00450{bottom:167.680000pt;}
.y34_c00450{bottom:301.773333pt;}
.y1e_c00450{bottom:302.400000pt;}
.y1f_c00450{bottom:302.733333pt;}
.y27_c00450{bottom:303.053333pt;}
.y1d_c00450{bottom:333.453333pt;}
.y1c_c00450{bottom:340.493333pt;}
.y1b_c00450{bottom:340.495200pt;}
.y1a_c00450{bottom:346.573333pt;}
.y19_c00450{bottom:353.933333pt;}
.y33_c00450{bottom:355.533333pt;}
.y18_c00450{bottom:356.173333pt;}
.y32_c00450{bottom:358.720000pt;}
.y17_c00450{bottom:369.293333pt;}
.y31_c00450{bottom:371.213333pt;}
.y10_c00450{bottom:383.373333pt;}
.y16_c00450{bottom:417.600000pt;}
.y15_c00450{bottom:440.640000pt;}
.y13_c00450{bottom:456.013333pt;}
.y14_c00450{bottom:457.600000pt;}
.y12_c00450{bottom:466.253333pt;}
.y11_c00450{bottom:474.253333pt;}
.y30_c00450{bottom:487.373333pt;}
.yf_c00450{bottom:487.680000pt;}
.y2f_c00450{bottom:588.800000pt;}
.ye_c00450{bottom:592.013333pt;}
.y2e_c00450{bottom:692.800000pt;}
.yd_c00450{bottom:694.400000pt;}
.yc_c00450{bottom:770.573333pt;}
.yb_c00450{bottom:794.253333pt;}
.y25_c00450{bottom:796.800000pt;}
.y23_c00450{bottom:820.800000pt;}
.y24_c00450{bottom:825.280000pt;}
.ya_c00450{bottom:867.533333pt;}
.y6_c00450{bottom:895.360000pt;}
.y2d_c00450{bottom:898.253333pt;}
.y9_c00450{bottom:898.573333pt;}
.y8_c00450{bottom:909.453333pt;}
.y7_c00450{bottom:937.933333pt;}
.y2b_c00450{bottom:957.453333pt;}
.y2a_c00450{bottom:965.120000pt;}
.y5_c00450{bottom:966.720000pt;}
.y29_c00450{bottom:978.253333pt;}
.y2_c00450{bottom:988.173333pt;}
.y2c_c00450{bottom:999.360000pt;}
.y4_c00450{bottom:1002.880000pt;}
.y21_c00450{bottom:1003.200000pt;}
.y22_c00450{bottom:1003.533333pt;}
.y1_c00450{bottom:1012.173333pt;}
.y3_c00450{bottom:1012.800000pt;}
.y20_c00450{bottom:1013.120000pt;}
.y26_c00450{bottom:1013.453333pt;}
.h31_c00450{height:6.819840pt;}
.h12_c00450{height:9.945312pt;}
.h23_c00450{height:10.012500pt;}
.h1c_c00450{height:15.575556pt;}
.h13_c00450{height:18.320836pt;}
.hd_c00450{height:21.138056pt;}
.h1a_c00450{height:24.601563pt;}
.h19_c00450{height:24.722275pt;}
.h16_c00450{height:25.587500pt;}
.h29_c00450{height:26.695312pt;}
.h14_c00450{height:27.812500pt;}
.h1d_c00450{height:30.883336pt;}
.h10_c00450{height:31.541760pt;}
.h2f_c00450{height:31.913802pt;}
.h18_c00450{height:31.929687pt;}
.h32_c00450{height:32.263056pt;}
.h26_c00450{height:32.453125pt;}
.h34_c00450{height:34.023961pt;}
.h30_c00450{height:34.099200pt;}
.h5_c00450{height:36.156806pt;}
.h25_c00450{height:37.825556pt;}
.h24_c00450{height:38.381806pt;}
.h2a_c00450{height:40.050000pt;}
.ha_c00450{height:40.066560pt;}
.h27_c00450{height:42.831250pt;}
.h21_c00450{height:43.445313pt;}
.h11_c00450{height:44.500000pt;}
.h2_c00450{height:45.056250pt;}
.h4_c00450{height:45.539062pt;}
.h33_c00450{height:46.062500pt;}
.h22_c00450{height:46.585938pt;}
.h8_c00450{height:46.725000pt;}
.h2b_c00450{height:46.886400pt;}
.h15_c00450{height:48.393750pt;}
.hc_c00450{height:48.950000pt;}
.h17_c00450{height:50.062500pt;}
.h20_c00450{height:51.731250pt;}
.h7_c00450{height:57.578125pt;}
.h6_c00450{height:58.406250pt;}
.h1e_c00450{height:63.412500pt;}
.h2d_c00450{height:63.425000pt;}
.h28_c00450{height:63.968750pt;}
.hf_c00450{height:65.640960pt;}
.h2c_c00450{height:67.187500pt;}
.h1f_c00450{height:68.975000pt;}
.h2e_c00450{height:72.868750pt;}
.h1b_c00450{height:97.343750pt;}
.h3_c00450{height:105.687500pt;}
.h9_c00450{height:123.007812pt;}
.hb_c00450{height:133.476562pt;}
.he_c00450{height:196.812500pt;}
.h1_c00450{height:1122.666667pt;}
.h0_c00450{height:1122.880000pt;}
.w1_c00450{width:793.333333pt;}
.w0_c00450{width:793.600000pt;}
.x0_c00450{left:0.000000pt;}
.x10_c00450{left:71.906667pt;}
.x2_c00450{left:79.226667pt;}
.x14_c00450{left:80.840000pt;}
.x1_c00450{left:100.120000pt;}
.x3_c00450{left:103.613333pt;}
.x39_c00450{left:106.146667pt;}
.xa_c00450{left:108.760000pt;}
.x1d_c00450{left:110.880000pt;}
.x2d_c00450{left:112.853333pt;}
.x15_c00450{left:113.800000pt;}
.x1e_c00450{left:117.760000pt;}
.x2e_c00450{left:120.453333pt;}
.x2c_c00450{left:122.077333pt;}
.x16_c00450{left:123.386667pt;}
.x1f_c00450{left:124.373333pt;}
.x11_c00450{left:128.813333pt;}
.xe_c00450{left:134.840000pt;}
.xb_c00450{left:137.800000pt;}
.x1c_c00450{left:139.240000pt;}
.x9_c00450{left:140.773333pt;}
.xc_c00450{left:142.026667pt;}
.x8_c00450{left:145.933333pt;}
.x26_c00450{left:148.733333pt;}
.x3a_c00450{left:151.880000pt;}
.x20_c00450{left:153.173333pt;}
.x22_c00450{left:154.840000pt;}
.x27_c00450{left:159.466667pt;}
.x17_c00450{left:161.373333pt;}
.x21_c00450{left:163.266667pt;}
.x23_c00450{left:164.480000pt;}
.x29_c00450{left:169.173333pt;}
.x2a_c00450{left:173.253333pt;}
.x3b_c00450{left:176.266667pt;}
.x13_c00450{left:179.866667pt;}
.xf_c00450{left:181.133333pt;}
.x6_c00450{left:182.173333pt;}
.x2b_c00450{left:183.840000pt;}
.x24_c00450{left:186.800000pt;}
.x28_c00450{left:188.453333pt;}
.x12_c00450{left:192.013333pt;}
.x4_c00450{left:193.773333pt;}
.x7_c00450{left:196.360000pt;}
.x5_c00450{left:198.866667pt;}
.x25_c00450{left:201.186667pt;}
.x18_c00450{left:208.626667pt;}
.x19_c00450{left:213.280000pt;}
.xd_c00450{left:232.013333pt;}
.x1a_c00450{left:236.986667pt;}
.x1b_c00450{left:246.280000pt;}
.x3c_c00450{left:260.293333pt;}
.x2f_c00450{left:288.600000pt;}
.x30_c00450{left:292.946667pt;}
.x3d_c00450{left:315.666667pt;}
.x3e_c00450{left:335.266667pt;}
.x3f_c00450{left:356.626667pt;}
.x31_c00450{left:383.666667pt;}
.x32_c00450{left:387.666667pt;}
.x35_c00450{left:406.400000pt;}
.x33_c00450{left:420.226667pt;}
.x40_c00450{left:424.786667pt;}
.x34_c00450{left:429.040000pt;}
.x38_c00450{left:477.400000pt;}
.x36_c00450{left:478.680000pt;}
.x37_c00450{left:482.066667pt;}
.x41_c00450{left:483.666667pt;}
.x42_c00450{left:503.200000pt;}
.x43_c00450{left:515.493333pt;}
.x52_c00450{left:548.080000pt;}
.x47_c00450{left:550.626667pt;}
.x46_c00450{left:553.413333pt;}
.x48_c00450{left:559.693333pt;}
.x49_c00450{left:560.973333pt;}
.x53_c00450{left:566.866667pt;}
.x51_c00450{left:569.226667pt;}
.x57_c00450{left:570.733333pt;}
.x44_c00450{left:572.013333pt;}
.x45_c00450{left:576.466667pt;}
.x54_c00450{left:584.560000pt;}
.x4a_c00450{left:594.000000pt;}
.x55_c00450{left:602.906667pt;}
.x4e_c00450{left:614.320000pt;}
.x56_c00450{left:621.706667pt;}
.x4f_c00450{left:632.920000pt;}
.x58_c00450{left:664.613333pt;}
.x4b_c00450{left:666.853333pt;}
.x4c_c00450{left:670.546667pt;}
.x50_c00450{left:679.066667pt;}
.x4d_c00450{left:700.013333pt;}
}





/* 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_c00451 {
    display:none;
  }
  .loading-indicator_c00451.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00451 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_c00451 { 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_c00451" -> "#page-container .classname_c00451")
 */
.pf_c00451 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00451 { /* 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_c00451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00451 { /* 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_c00451 { /* 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_c00451 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00451 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00451 {overflow:visible;}
  }
}
.c_c00451 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00451 { /* 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_c00451:after { /* webkit #35443 */
  content: '';
}
.t_c00451:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00451 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 */
}
.__c00451 { /* 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_c00451 { /* info for Javascript */
  display:none;
}
.l_c00451 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00451 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00451 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00451: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_c00451 {
    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_c00451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00451.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_c00451 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00451{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00451;src:url('chunks/assets/font_fdb436196f15e3efd0db358d.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.284668;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_c00451;src:url('chunks/assets/font_4a5c81e1e7db0a6e0d1c2cc3.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;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_c00451;src:url('chunks/assets/font_7fca4c484788b7d5fbf22fd3.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;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:ff4_c00451;src:url('chunks/assets/font_64dad255c0ce6bcf92eaee9f.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;line-height:0.666000;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_c00451;src:url('chunks/assets/font_6564b5fa272e3331230a50a4.woff2')format("woff");}.ff5_c00451{font-family:ff5_c00451;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:ff6_c00451;src:url('chunks/assets/font_5c45123e5bd69293ad3ca992.woff2')format("woff");}.ff6_c00451{font-family:ff6_c00451;line-height:1.284180;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_c00451;src:url('chunks/assets/font_a17e725937edd9d5685571ba.woff2')format("woff");}.ff7_c00451{font-family:ff7_c00451;line-height:1.311035;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;}
.m2b_c00451{transform:matrix(0.024576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024576,0.000000,0.000000,0.250000,0,0);}
.m2c_c00451{transform:matrix(0.047224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047224,0.000000,0.000000,0.250000,0,0);}
.m32_c00451{transform:matrix(0.049437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049437,0.000000,0.000000,0.250000,0,0);}
.m45_c00451{transform:matrix(0.067112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067112,0.000000,0.000000,0.250000,0,0);}
.m2e_c00451{transform:matrix(0.071027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071027,0.000000,0.000000,0.250000,0,0);}
.m9_c00451{transform:matrix(0.073761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073761,0.000000,0.000000,0.250000,0,0);}
.m33_c00451{transform:matrix(0.082699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082699,0.000000,0.000000,0.250000,0,0);}
.m23_c00451{transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);}
.m47_c00451{transform:matrix(0.091667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091667,0.000000,0.000000,0.250000,0,0);}
.m3a_c00451{transform:matrix(0.101024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101024,0.000000,0.000000,0.250000,0,0);}
.m17_c00451{transform:matrix(0.105906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105906,0.000000,0.000000,0.250000,0,0);}
.m38_c00451{transform:matrix(0.106636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106636,0.000000,0.000000,0.250000,0,0);}
.m3d_c00451{transform:matrix(0.107379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107379,0.000000,0.000000,0.250000,0,0);}
.m2f_c00451{transform:matrix(0.121432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121432,0.000000,0.000000,0.250000,0,0);}
.m35_c00451{transform:matrix(0.133885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133885,0.000000,0.000000,0.250000,0,0);}
.m19_c00451{transform:matrix(0.136176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136176,0.000000,0.000000,0.250000,0,0);}
.m2d_c00451{transform:matrix(0.139458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139458,0.000000,0.000000,0.250000,0,0);}
.m3e_c00451{transform:matrix(0.140828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140828,0.000000,0.000000,0.250000,0,0);}
.ma_c00451{transform:matrix(0.143721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143721,0.000000,0.000000,0.250000,0,0);}
.m31_c00451{transform:matrix(0.146492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146492,0.000000,0.000000,0.250000,0,0);}
.m42_c00451{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m34_c00451{transform:matrix(0.151236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151236,0.000000,0.000000,0.250000,0,0);}
.m14_c00451{transform:matrix(0.152464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152464,0.000000,0.000000,0.250000,0,0);}
.m20_c00451{transform:matrix(0.163548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163548,0.000000,0.000000,0.250000,0,0);}
.m58_c00451{transform:matrix(0.164202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164202,0.000000,0.000000,0.250000,0,0);}
.m24_c00451{transform:matrix(0.167751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167751,0.000000,0.000000,0.250000,0,0);}
.m18_c00451{transform:matrix(0.172642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172642,0.000000,0.000000,0.250000,0,0);}
.m22_c00451{transform:matrix(0.173906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173906,0.000000,0.000000,0.250000,0,0);}
.m12_c00451{transform:matrix(0.173976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173976,0.000000,0.000000,0.250000,0,0);}
.m3b_c00451{transform:matrix(0.174348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174348,0.000000,0.000000,0.250000,0,0);}
.m36_c00451{transform:matrix(0.176004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176004,0.000000,0.000000,0.250000,0,0);}
.m46_c00451{transform:matrix(0.182766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182766,0.000000,0.000000,0.250000,0,0);}
.m39_c00451{transform:matrix(0.184674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184674,0.000000,0.000000,0.250000,0,0);}
.m37_c00451{transform:matrix(0.185204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185204,0.000000,0.000000,0.250000,0,0);}
.m1a_c00451{transform:matrix(0.186446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186446,0.000000,0.000000,0.250000,0,0);}
.m43_c00451{transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);}
.m4c_c00451{transform:matrix(0.193731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193731,0.000000,0.000000,0.250000,0,0);}
.m15_c00451{transform:matrix(0.194736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194736,0.000000,0.000000,0.250000,0,0);}
.m28_c00451{transform:matrix(0.198789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198789,0.000000,0.000000,0.250000,0,0);}
.m1f_c00451{transform:matrix(0.199899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199899,0.000000,0.000000,0.250000,0,0);}
.m30_c00451{transform:matrix(0.210136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210136,0.000000,0.000000,0.250000,0,0);}
.m16_c00451{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m21_c00451{transform:matrix(0.214351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214351,0.000000,0.000000,0.250000,0,0);}
.m25_c00451{transform:matrix(0.220454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220454,0.000000,0.000000,0.250000,0,0);}
.m1c_c00451{transform:matrix(0.223878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223878,0.000000,0.000000,0.250000,0,0);}
.m13_c00451{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m54_c00451{transform:matrix(0.233564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233564,0.000000,0.000000,0.250000,0,0);}
.m50_c00451{transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);}
.m4f_c00451{transform:matrix(0.237585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237585,0.000000,0.000000,0.250000,0,0);}
.m57_c00451{transform:matrix(0.241486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241486,0.000000,0.000000,0.250000,0,0);}
.m55_c00451{transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);}
.m52_c00451{transform:matrix(0.243534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243534,0.000000,0.000000,0.250000,0,0);}
.m53_c00451{transform:matrix(0.244502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244502,0.000000,0.000000,0.250000,0,0);}
.m48_c00451{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.m56_c00451{transform:matrix(0.247156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247156,0.000000,0.000000,0.250000,0,0);}
.m51_c00451{transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);}
.m3_c00451{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);}
.m5b_c00451{transform:matrix(0.258849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258849,0.000000,0.000000,0.250000,0,0);}
.m2a_c00451{transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);}
.me_c00451{transform:matrix(0.264131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264131,0.000000,0.000000,0.250000,0,0);}
.m5a_c00451{transform:matrix(0.265367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265367,0.000000,0.000000,0.250000,0,0);}
.m5_c00451{transform:matrix(0.268812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268812,0.000000,0.000000,0.250000,0,0);}
.m10_c00451{transform:matrix(0.270062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270062,0.000000,0.000000,0.250000,0,0);}
.m27_c00451{transform:matrix(0.273289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273289,0.000000,0.000000,0.250000,0,0);}
.m8_c00451{transform:matrix(0.275741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275741,0.000000,0.000000,0.250000,0,0);}
.m4b_c00451{transform:matrix(0.275810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275810,0.000000,0.000000,0.250000,0,0);}
.m0_c00451{transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);}
.m4a_c00451{transform:matrix(0.277910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277910,0.000000,0.000000,0.250000,0,0);}
.m4_c00451{transform:matrix(0.279795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279795,0.000000,0.000000,0.250000,0,0);}
.m1_c00451{transform:matrix(0.281557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281557,0.000000,0.000000,0.250000,0,0);}
.m41_c00451{transform:matrix(0.282892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282892,0.000000,0.000000,0.250000,0,0);}
.m2_c00451{transform:matrix(0.283179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283179,0.000000,0.000000,0.250000,0,0);}
.m59_c00451{transform:matrix(0.284187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284187,0.000000,0.000000,0.250000,0,0);}
.m49_c00451{transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00451{transform:matrix(0.291510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291510,0.000000,0.000000,0.250000,0,0);}
.mb_c00451{transform:matrix(0.292735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292735,0.000000,0.000000,0.250000,0,0);}
.m4e_c00451{transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);}
.m6_c00451{transform:matrix(0.299179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299179,0.000000,0.000000,0.250000,0,0);}
.md_c00451{transform:matrix(0.303113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303113,0.000000,0.000000,0.250000,0,0);}
.m7_c00451{transform:matrix(0.306417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306417,0.000000,0.000000,0.250000,0,0);}
.mf_c00451{transform:matrix(0.329837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329837,0.000000,0.000000,0.250000,0,0);}
.m44_c00451{transform:matrix(0.330149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330149,0.000000,0.000000,0.250000,0,0);}
.m11_c00451{transform:matrix(0.340497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340497,0.000000,0.000000,0.250000,0,0);}
.m29_c00451{transform:matrix(0.343948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343948,0.000000,0.000000,0.250000,0,0);}
.mc_c00451{transform:matrix(0.351988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351988,0.000000,0.000000,0.250000,0,0);}
.m4d_c00451{transform:matrix(0.360937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360937,0.000000,0.000000,0.250000,0,0);}
.m26_c00451{transform:matrix(0.366341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366341,0.000000,0.000000,0.250000,0,0);}
.m3c_c00451{transform:matrix(0.422425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422425,0.000000,0.000000,0.250000,0,0);}
.m1d_c00451{transform:matrix(0.479953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479953,0.000000,0.000000,0.250000,0,0);}
.m1b_c00451{transform:matrix(0.581460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581460,0.000000,0.000000,0.250000,0,0);}
.m40_c00451{transform:matrix(0.618635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618635,0.000000,0.000000,0.250000,0,0);}
.m1e_c00451{transform:matrix(1.231453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.231453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.231453,0.000000,0.000000,0.250000,0,0);}
.v2_c00451{vertical-align:-20.160000px;}
.v3_c00451{vertical-align:-10.080000px;}
.v0_c00451{vertical-align:0.000000px;}
.v1_c00451{vertical-align:1.380000px;}
.ls7_c00451{letter-spacing:-9.492021px;}
.ls13_c00451{letter-spacing:-5.355000px;}
.ls16_c00451{letter-spacing:-5.250000px;}
.ls19_c00451{letter-spacing:-4.011000px;}
.ls1c_c00451{letter-spacing:-3.381000px;}
.lsd_c00451{letter-spacing:-3.066000px;}
.lse_c00451{letter-spacing:-3.024000px;}
.ls29_c00451{letter-spacing:-2.625000px;}
.ls2a_c00451{letter-spacing:-2.541000px;}
.ls22_c00451{letter-spacing:-2.016000px;}
.ls10_c00451{letter-spacing:-1.974000px;}
.lsc_c00451{letter-spacing:-1.449021px;}
.ls27_c00451{letter-spacing:-1.365021px;}
.ls1b_c00451{letter-spacing:-1.260000px;}
.ls12_c00451{letter-spacing:-0.987000px;}
.ls23_c00451{letter-spacing:-0.966000px;}
.ls14_c00451{letter-spacing:-0.777021px;}
.ls5_c00451{letter-spacing:0.000000px;}
.ls0_c00451{letter-spacing:0.357840px;}
.ls2_c00451{letter-spacing:0.422408px;}
.ls20_c00451{letter-spacing:0.471556px;}
.ls11_c00451{letter-spacing:0.480000px;}
.ls17_c00451{letter-spacing:0.574560px;}
.ls28_c00451{letter-spacing:0.616209px;}
.ls1_c00451{letter-spacing:0.663624px;}
.ls2b_c00451{letter-spacing:0.685440px;}
.ls1f_c00451{letter-spacing:0.840030px;}
.ls15_c00451{letter-spacing:0.870030px;}
.ls1e_c00451{letter-spacing:1.140030px;}
.ls1a_c00451{letter-spacing:1.200000px;}
.ls24_c00451{letter-spacing:1.380000px;}
.lsa_c00451{letter-spacing:1.784100px;}
.ls26_c00451{letter-spacing:1.950030px;}
.ls8_c00451{letter-spacing:2.010000px;}
.ls9_c00451{letter-spacing:2.070030px;}
.ls1d_c00451{letter-spacing:2.280000px;}
.ls4_c00451{letter-spacing:2.310000px;}
.ls25_c00451{letter-spacing:2.340030px;}
.ls6_c00451{letter-spacing:2.430000px;}
.ls3_c00451{letter-spacing:2.520000px;}
.lsb_c00451{letter-spacing:2.580000px;}
.ls18_c00451{letter-spacing:2.760000px;}
.lsf_c00451{letter-spacing:2.820000px;}
.ls21_c00451{letter-spacing:6.180000px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{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__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00451{word-spacing:0.000000px;}
._6_c00451{margin-left:-28.557600px;}
._7_c00451{margin-left:-27.068400px;}
._1_c00451{margin-left:-10.111200px;}
._3_c00451{margin-left:-3.776662px;}
._2_c00451{margin-left:-2.211000px;}
._c_c00451{width:14.031855px;}
._b_c00451{width:15.609284px;}
._5_c00451{width:50.646240px;}
._8_c00451{width:58.010290px;}
._9_c00451{width:73.250400px;}
._a_c00451{width:77.573400px;}
._0_c00451{width:90.568800px;}
._4_c00451{width:233.428800px;}
.fc0_c00451{color:transparent;}
.fs12_c00451{font-size:8.640000px;}
.fs18_c00451{font-size:9.600000px;}
.fs14_c00451{font-size:10.080000px;}
.fs2d_c00451{font-size:10.200000px;}
.fs27_c00451{font-size:14.400000px;}
.fs2b_c00451{font-size:16.200600px;}
.fs26_c00451{font-size:16.800600px;}
.fs1d_c00451{font-size:17.400600px;}
.fs1b_c00451{font-size:18.720000px;}
.fs2a_c00451{font-size:21.600000px;}
.fs1c_c00451{font-size:22.200600px;}
.fs25_c00451{font-size:22.800600px;}
.fs22_c00451{font-size:24.000000px;}
.fsf_c00451{font-size:26.400600px;}
.fs13_c00451{font-size:27.600000px;}
.fs19_c00451{font-size:28.200000px;}
.fs2e_c00451{font-size:33.000600px;}
.fs23_c00451{font-size:36.000000px;}
.fs1f_c00451{font-size:37.800600px;}
.fs4_c00451{font-size:39.000600px;}
.fsd_c00451{font-size:40.200000px;}
.fse_c00451{font-size:41.400600px;}
.fs24_c00451{font-size:45.600000px;}
.fs1_c00451{font-size:46.200000px;}
.fs2c_c00451{font-size:46.800600px;}
.fs3_c00451{font-size:48.600000px;}
.fs0_c00451{font-size:50.400000px;}
.fs11_c00451{font-size:51.600000px;}
.fs5_c00451{font-size:54.600000px;}
.fsc_c00451{font-size:55.200000px;}
.fs17_c00451{font-size:56.400000px;}
.fs10_c00451{font-size:57.000000px;}
.fs29_c00451{font-size:57.600000px;}
.fs6_c00451{font-size:58.200000px;}
.fs32_c00451{font-size:66.000000px;}
.fs30_c00451{font-size:72.600000px;}
.fs2f_c00451{font-size:75.000000px;}
.fs31_c00451{font-size:76.800000px;}
.fs20_c00451{font-size:84.960000px;}
.fs16_c00451{font-size:86.400000px;}
.fs15_c00451{font-size:87.600000px;}
.fs7_c00451{font-size:96.600000px;}
.fsa_c00451{font-size:106.560000px;}
.fs21_c00451{font-size:114.600000px;}
.fs28_c00451{font-size:123.600000px;}
.fs8_c00451{font-size:141.000000px;}
.fs1e_c00451{font-size:150.000000px;}
.fs1a_c00451{font-size:153.000000px;}
.fs2_c00451{font-size:175.800000px;}
.fsb_c00451{font-size:271.200600px;}
.fs9_c00451{font-size:326.400600px;}
.y0_c00451{bottom:0.000000px;}
.y32_c00451{bottom:189.375015px;}
.y39_c00451{bottom:340.575015px;}
.y31_c00451{bottom:341.295015px;}
.y2c_c00451{bottom:342.000015px;}
.y2d_c00451{bottom:342.375015px;}
.y2a_c00451{bottom:380.175015px;}
.y30_c00451{bottom:384.495015px;}
.y2b_c00451{bottom:384.840015px;}
.y28_c00451{bottom:394.215015px;}
.y29_c00451{bottom:398.520015px;}
.y25_c00451{bottom:399.600015px;}
.y27_c00451{bottom:403.215015px;}
.y2f_c00451{bottom:404.295015px;}
.y26_c00451{bottom:412.920015px;}
.y2e_c00451{bottom:417.975015px;}
.y24_c00451{bottom:423.000015px;}
.y38_c00451{bottom:431.295015px;}
.y22_c00451{bottom:432.735015px;}
.y23_c00451{bottom:438.135015px;}
.y1a_c00451{bottom:470.895015px;}
.y19_c00451{bottom:495.000015px;}
.y20_c00451{bottom:498.975015px;}
.y18_c00451{bottom:516.975015px;}
.y17_c00451{bottom:520.920015px;}
.y16_c00451{bottom:547.575015px;}
.y37_c00451{bottom:549.000015px;}
.y15_c00451{bottom:550.095015px;}
.y14_c00451{bottom:563.055015px;}
.y13_c00451{bottom:568.095015px;}
.y3b_c00451{bottom:615.255015px;}
.y3a_c00451{bottom:618.840015px;}
.y36_c00451{bottom:663.135015px;}
.y12_c00451{bottom:667.815015px;}
.y1d_c00451{bottom:705.975015px;}
.y35_c00451{bottom:779.760015px;}
.y11_c00451{bottom:782.280015px;}
.y10_c00451{bottom:868.695015px;}
.y5_c00451{bottom:892.440015px;}
.yf_c00451{bottom:898.575015px;}
.ye_c00451{bottom:918.375015px;}
.yd_c00451{bottom:978.855015px;}
.y4_c00451{bottom:1009.800015px;}
.y34_c00451{bottom:1012.335015px;}
.yb_c00451{bottom:1018.800015px;}
.yc_c00451{bottom:1026.015015px;}
.y9_c00451{bottom:1056.600015px;}
.ya_c00451{bottom:1056.960015px;}
.y7_c00451{bottom:1087.575015px;}
.y8_c00451{bottom:1089.015015px;}
.y3_c00451{bottom:1112.760015px;}
.y33_c00451{bottom:1124.640015px;}
.y6_c00451{bottom:1128.600015px;}
.y1c_c00451{bottom:1128.960015px;}
.y1f_c00451{bottom:1129.335015px;}
.y1_c00451{bottom:1139.400015px;}
.y2_c00451{bottom:1139.760015px;}
.y1b_c00451{bottom:1140.120015px;}
.y1e_c00451{bottom:1140.480015px;}
.y21_c00451{bottom:1140.855015px;}
.h13_c00451{height:6.713280px;}
.h1a_c00451{height:9.421875px;}
.h29_c00451{height:9.590400px;}
.h1d_c00451{height:12.467520px;}
.h2c_c00451{height:14.385600px;}
.h2d_c00451{height:16.896720px;}
.h28_c00451{height:17.522501px;}
.h1f_c00451{height:18.148282px;}
.h1e_c00451{height:21.788675px;}
.h30_c00451{height:22.528125px;}
.h27_c00451{height:23.780313px;}
.h24_c00451{height:25.031250px;}
.h1b_c00451{height:27.676758px;}
.h12_c00451{height:28.785937px;}
.h16_c00451{height:33.566400px;}
.h31_c00451{height:34.418595px;}
.h25_c00451{height:37.546875px;}
.h2f_c00451{height:38.276956px;}
.h21_c00451{height:39.424845px;}
.h6_c00451{height:40.676407px;}
.he_c00451{height:41.927344px;}
.hf_c00451{height:43.179532px;}
.h26_c00451{height:47.559375px;}
.h3_c00451{height:48.185156px;}
.h2e_c00451{height:48.811563px;}
.h2_c00451{height:49.464844px;}
.h11_c00451{height:50.642578px;}
.h5_c00451{height:50.688281px;}
.h34_c00451{height:52.565625px;}
.h18_c00451{height:55.325977px;}
.h19_c00451{height:55.353516px;}
.h10_c00451{height:55.942383px;}
.h22_c00451{height:56.583360px;}
.hd_c00451{height:57.571875px;}
.h2b_c00451{height:60.075000px;}
.h7_c00451{height:62.080781px;}
.h36_c00451{height:68.835938px;}
.hb_c00451{height:70.968960px;}
.h33_c00451{height:73.167187px;}
.h32_c00451{height:75.585938px;}
.h35_c00451{height:80.100000px;}
.h14_c00451{height:81.284063px;}
.h17_c00451{height:90.112500px;}
.h15_c00451{height:91.364062px;}
.h8_c00451{height:94.807617px;}
.h23_c00451{height:119.524219px;}
.h2a_c00451{height:121.306641px;}
.h9_c00451{height:147.058594px;}
.h20_c00451{height:151.171875px;}
.h1c_c00451{height:159.574219px;}
.h4_c00451{height:183.353906px;}
.hc_c00451{height:266.168558px;}
.ha_c00451{height:320.344339px;}
.h1_c00451{height:1263.000000px;}
.h0_c00451{height:1263.240015px;}
.w1_c00451{width:892.500000px;}
.w0_c00451{width:892.800000px;}
.x0_c00451{left:0.000000px;}
.x6_c00451{left:78.735000px;}
.x3_c00451{left:86.610000px;}
.x5_c00451{left:87.720000px;}
.x15_c00451{left:88.755000px;}
.x1_c00451{left:110.100000px;}
.x4_c00451{left:113.625000px;}
.x16_c00451{left:117.525000px;}
.x31_c00451{left:119.160000px;}
.x13_c00451{left:120.240000px;}
.x17_c00451{left:125.640000px;}
.x41_c00451{left:127.215000px;}
.x23_c00451{left:129.915000px;}
.x32_c00451{left:132.705000px;}
.x18_c00451{left:134.280000px;}
.x1a_c00451{left:138.060000px;}
.x11_c00451{left:139.170000px;}
.xd_c00451{left:141.060000px;}
.x26_c00451{left:143.640000px;}
.xc_c00451{left:145.350000px;}
.x27_c00451{left:150.300000px;}
.xb_c00451{left:152.130000px;}
.x42_c00451{left:153.330000px;}
.x19_c00451{left:156.360000px;}
.x9_c00451{left:158.160000px;}
.x1b_c00451{left:160.110000px;}
.x8_c00451{left:162.585000px;}
.x33_c00451{left:164.505000px;}
.x24_c00451{left:169.500000px;}
.x34_c00451{left:171.435000px;}
.xe_c00451{left:173.865000px;}
.x21_c00451{left:175.365000px;}
.x1c_c00451{left:177.120000px;}
.x28_c00451{left:178.755000px;}
.x43_c00451{left:180.315000px;}
.x44_c00451{left:184.830000px;}
.x14_c00451{left:189.090000px;}
.x45_c00451{left:190.260000px;}
.x35_c00451{left:195.750000px;}
.xa_c00451{left:197.460000px;}
.x1d_c00451{left:201.720000px;}
.x3f_c00451{left:204.195000px;}
.x1e_c00451{left:206.805000px;}
.x25_c00451{left:208.350000px;}
.x12_c00451{left:210.210000px;}
.x36_c00451{left:211.695000px;}
.x46_c00451{left:214.035000px;}
.x2_c00451{left:215.475000px;}
.x40_c00451{left:216.975000px;}
.x7_c00451{left:221.205000px;}
.x37_c00451{left:227.535000px;}
.x38_c00451{left:230.505000px;}
.x1f_c00451{left:238.890000px;}
.x39_c00451{left:241.575000px;}
.x22_c00451{left:248.625000px;}
.x20_c00451{left:254.295000px;}
.xf_c00451{left:258.525000px;}
.x10_c00451{left:274.290000px;}
.x3a_c00451{left:280.620000px;}
.x53_c00451{left:290.310000px;}
.x47_c00451{left:320.640000px;}
.x29_c00451{left:322.440000px;}
.x3b_c00451{left:325.395000px;}
.x2a_c00451{left:327.045000px;}
.x2b_c00451{left:338.070000px;}
.x54_c00451{left:352.245000px;}
.x55_c00451{left:374.295000px;}
.x56_c00451{left:399.030000px;}
.x48_c00451{left:426.885000px;}
.x2c_c00451{left:429.045000px;}
.x2d_c00451{left:433.605000px;}
.x3c_c00451{left:439.350000px;}
.x2e_c00451{left:498.810000px;}
.x57_c00451{left:509.565000px;}
.x49_c00451{left:533.820000px;}
.x2f_c00451{left:535.980000px;}
.x30_c00451{left:540.180000px;}
.x3d_c00451{left:545.580000px;}
.x58_c00451{left:575.805000px;}
.x3e_c00451{left:582.780000px;}
.x59_c00451{left:597.780000px;}
.x5a_c00451{left:611.610000px;}
.x4b_c00451{left:613.710000px;}
.x50_c00451{left:614.730000px;}
.x51_c00451{left:627.000000px;}
.x4c_c00451{left:634.845000px;}
.x4a_c00451{left:637.500000px;}
.x52_c00451{left:639.195000px;}
.x4d_c00451{left:655.110000px;}
.x4e_c00451{left:676.125000px;}
.x4f_c00451{left:696.900000px;}
.x5e_c00451{left:741.630000px;}
.x60_c00451{left:745.440000px;}
.x5b_c00451{left:748.320000px;}
.x5c_c00451{left:752.565000px;}
.x5f_c00451{left:784.695000px;}
.x5d_c00451{left:785.715000px;}
.x62_c00451{left:855.495000px;}
.x61_c00451{left:856.545000px;}
@media print{
.v2_c00451{vertical-align:-17.920000pt;}
.v3_c00451{vertical-align:-8.960000pt;}
.v0_c00451{vertical-align:0.000000pt;}
.v1_c00451{vertical-align:1.226667pt;}
.ls7_c00451{letter-spacing:-8.437352pt;}
.ls13_c00451{letter-spacing:-4.760000pt;}
.ls16_c00451{letter-spacing:-4.666667pt;}
.ls19_c00451{letter-spacing:-3.565333pt;}
.ls1c_c00451{letter-spacing:-3.005333pt;}
.lsd_c00451{letter-spacing:-2.725333pt;}
.lse_c00451{letter-spacing:-2.688000pt;}
.ls29_c00451{letter-spacing:-2.333333pt;}
.ls2a_c00451{letter-spacing:-2.258667pt;}
.ls22_c00451{letter-spacing:-1.792000pt;}
.ls10_c00451{letter-spacing:-1.754667pt;}
.lsc_c00451{letter-spacing:-1.288019pt;}
.ls27_c00451{letter-spacing:-1.213352pt;}
.ls1b_c00451{letter-spacing:-1.120000pt;}
.ls12_c00451{letter-spacing:-0.877333pt;}
.ls23_c00451{letter-spacing:-0.858667pt;}
.ls14_c00451{letter-spacing:-0.690685pt;}
.ls5_c00451{letter-spacing:0.000000pt;}
.ls0_c00451{letter-spacing:0.318080pt;}
.ls2_c00451{letter-spacing:0.375473pt;}
.ls20_c00451{letter-spacing:0.419161pt;}
.ls11_c00451{letter-spacing:0.426667pt;}
.ls17_c00451{letter-spacing:0.510720pt;}
.ls28_c00451{letter-spacing:0.547742pt;}
.ls1_c00451{letter-spacing:0.589888pt;}
.ls2b_c00451{letter-spacing:0.609280pt;}
.ls1f_c00451{letter-spacing:0.746693pt;}
.ls15_c00451{letter-spacing:0.773360pt;}
.ls1e_c00451{letter-spacing:1.013360pt;}
.ls1a_c00451{letter-spacing:1.066667pt;}
.ls24_c00451{letter-spacing:1.226667pt;}
.lsa_c00451{letter-spacing:1.585867pt;}
.ls26_c00451{letter-spacing:1.733360pt;}
.ls8_c00451{letter-spacing:1.786667pt;}
.ls9_c00451{letter-spacing:1.840027pt;}
.ls1d_c00451{letter-spacing:2.026667pt;}
.ls4_c00451{letter-spacing:2.053333pt;}
.ls25_c00451{letter-spacing:2.080027pt;}
.ls6_c00451{letter-spacing:2.160000pt;}
.ls3_c00451{letter-spacing:2.240000pt;}
.lsb_c00451{letter-spacing:2.293333pt;}
.ls18_c00451{letter-spacing:2.453333pt;}
.lsf_c00451{letter-spacing:2.506667pt;}
.ls21_c00451{letter-spacing:5.493333pt;}
.ws0_c00451{word-spacing:0.000000pt;}
._6_c00451{margin-left:-25.384533pt;}
._7_c00451{margin-left:-24.060800pt;}
._1_c00451{margin-left:-8.987733pt;}
._3_c00451{margin-left:-3.357033pt;}
._2_c00451{margin-left:-1.965333pt;}
._c_c00451{width:12.472760pt;}
._b_c00451{width:13.874919pt;}
._5_c00451{width:45.018880pt;}
._8_c00451{width:51.564702pt;}
._9_c00451{width:65.111467pt;}
._a_c00451{width:68.954133pt;}
._0_c00451{width:80.505600pt;}
._4_c00451{width:207.492267pt;}
.fs12_c00451{font-size:7.680000pt;}
.fs18_c00451{font-size:8.533333pt;}
.fs14_c00451{font-size:8.960000pt;}
.fs2d_c00451{font-size:9.066667pt;}
.fs27_c00451{font-size:12.800000pt;}
.fs2b_c00451{font-size:14.400533pt;}
.fs26_c00451{font-size:14.933867pt;}
.fs1d_c00451{font-size:15.467200pt;}
.fs1b_c00451{font-size:16.640000pt;}
.fs2a_c00451{font-size:19.200000pt;}
.fs1c_c00451{font-size:19.733867pt;}
.fs25_c00451{font-size:20.267200pt;}
.fs22_c00451{font-size:21.333333pt;}
.fsf_c00451{font-size:23.467200pt;}
.fs13_c00451{font-size:24.533333pt;}
.fs19_c00451{font-size:25.066667pt;}
.fs2e_c00451{font-size:29.333867pt;}
.fs23_c00451{font-size:32.000000pt;}
.fs1f_c00451{font-size:33.600533pt;}
.fs4_c00451{font-size:34.667200pt;}
.fsd_c00451{font-size:35.733333pt;}
.fse_c00451{font-size:36.800533pt;}
.fs24_c00451{font-size:40.533333pt;}
.fs1_c00451{font-size:41.066667pt;}
.fs2c_c00451{font-size:41.600533pt;}
.fs3_c00451{font-size:43.200000pt;}
.fs0_c00451{font-size:44.800000pt;}
.fs11_c00451{font-size:45.866667pt;}
.fs5_c00451{font-size:48.533333pt;}
.fsc_c00451{font-size:49.066667pt;}
.fs17_c00451{font-size:50.133333pt;}
.fs10_c00451{font-size:50.666667pt;}
.fs29_c00451{font-size:51.200000pt;}
.fs6_c00451{font-size:51.733333pt;}
.fs32_c00451{font-size:58.666667pt;}
.fs30_c00451{font-size:64.533333pt;}
.fs2f_c00451{font-size:66.666667pt;}
.fs31_c00451{font-size:68.266667pt;}
.fs20_c00451{font-size:75.520000pt;}
.fs16_c00451{font-size:76.800000pt;}
.fs15_c00451{font-size:77.866667pt;}
.fs7_c00451{font-size:85.866667pt;}
.fsa_c00451{font-size:94.720000pt;}
.fs21_c00451{font-size:101.866667pt;}
.fs28_c00451{font-size:109.866667pt;}
.fs8_c00451{font-size:125.333333pt;}
.fs1e_c00451{font-size:133.333333pt;}
.fs1a_c00451{font-size:136.000000pt;}
.fs2_c00451{font-size:156.266667pt;}
.fsb_c00451{font-size:241.067200pt;}
.fs9_c00451{font-size:290.133867pt;}
.y0_c00451{bottom:0.000000pt;}
.y32_c00451{bottom:168.333347pt;}
.y39_c00451{bottom:302.733347pt;}
.y31_c00451{bottom:303.373347pt;}
.y2c_c00451{bottom:304.000013pt;}
.y2d_c00451{bottom:304.333347pt;}
.y2a_c00451{bottom:337.933347pt;}
.y30_c00451{bottom:341.773347pt;}
.y2b_c00451{bottom:342.080013pt;}
.y28_c00451{bottom:350.413347pt;}
.y29_c00451{bottom:354.240013pt;}
.y25_c00451{bottom:355.200013pt;}
.y27_c00451{bottom:358.413347pt;}
.y2f_c00451{bottom:359.373347pt;}
.y26_c00451{bottom:367.040013pt;}
.y2e_c00451{bottom:371.533347pt;}
.y24_c00451{bottom:376.000013pt;}
.y38_c00451{bottom:383.373347pt;}
.y22_c00451{bottom:384.653347pt;}
.y23_c00451{bottom:389.453347pt;}
.y1a_c00451{bottom:418.573347pt;}
.y19_c00451{bottom:440.000013pt;}
.y20_c00451{bottom:443.533347pt;}
.y18_c00451{bottom:459.533347pt;}
.y17_c00451{bottom:463.040013pt;}
.y16_c00451{bottom:486.733347pt;}
.y37_c00451{bottom:488.000013pt;}
.y15_c00451{bottom:488.973347pt;}
.y14_c00451{bottom:500.493347pt;}
.y13_c00451{bottom:504.973347pt;}
.y3b_c00451{bottom:546.893347pt;}
.y3a_c00451{bottom:550.080013pt;}
.y36_c00451{bottom:589.453347pt;}
.y12_c00451{bottom:593.613347pt;}
.y1d_c00451{bottom:627.533347pt;}
.y35_c00451{bottom:693.120013pt;}
.y11_c00451{bottom:695.360013pt;}
.y10_c00451{bottom:772.173347pt;}
.y5_c00451{bottom:793.280013pt;}
.yf_c00451{bottom:798.733347pt;}
.ye_c00451{bottom:816.333347pt;}
.yd_c00451{bottom:870.093347pt;}
.y4_c00451{bottom:897.600013pt;}
.y34_c00451{bottom:899.853347pt;}
.yb_c00451{bottom:905.600013pt;}
.yc_c00451{bottom:912.013347pt;}
.y9_c00451{bottom:939.200013pt;}
.ya_c00451{bottom:939.520013pt;}
.y7_c00451{bottom:966.733347pt;}
.y8_c00451{bottom:968.013347pt;}
.y3_c00451{bottom:989.120013pt;}
.y33_c00451{bottom:999.680013pt;}
.y6_c00451{bottom:1003.200013pt;}
.y1c_c00451{bottom:1003.520013pt;}
.y1f_c00451{bottom:1003.853347pt;}
.y1_c00451{bottom:1012.800013pt;}
.y2_c00451{bottom:1013.120013pt;}
.y1b_c00451{bottom:1013.440013pt;}
.y1e_c00451{bottom:1013.760013pt;}
.y21_c00451{bottom:1014.093347pt;}
.h13_c00451{height:5.967360pt;}
.h1a_c00451{height:8.375000pt;}
.h29_c00451{height:8.524800pt;}
.h1d_c00451{height:11.082240pt;}
.h2c_c00451{height:12.787200pt;}
.h2d_c00451{height:15.019306pt;}
.h28_c00451{height:15.575556pt;}
.h1f_c00451{height:16.131806pt;}
.h1e_c00451{height:19.367711pt;}
.h30_c00451{height:20.025000pt;}
.h27_c00451{height:21.138056pt;}
.h24_c00451{height:22.250000pt;}
.h1b_c00451{height:24.601563pt;}
.h12_c00451{height:25.587500pt;}
.h16_c00451{height:29.836800pt;}
.h31_c00451{height:30.594306pt;}
.h25_c00451{height:33.375000pt;}
.h2f_c00451{height:34.023961pt;}
.h21_c00451{height:35.044306pt;}
.h6_c00451{height:36.156806pt;}
.he_c00451{height:37.268750pt;}
.hf_c00451{height:38.381806pt;}
.h26_c00451{height:42.275000pt;}
.h3_c00451{height:42.831250pt;}
.h2e_c00451{height:43.388056pt;}
.h2_c00451{height:43.968750pt;}
.h11_c00451{height:45.015625pt;}
.h5_c00451{height:45.056250pt;}
.h34_c00451{height:46.725000pt;}
.h18_c00451{height:49.178646pt;}
.h19_c00451{height:49.203125pt;}
.h10_c00451{height:49.726562pt;}
.h22_c00451{height:50.296320pt;}
.hd_c00451{height:51.175000pt;}
.h2b_c00451{height:53.400000pt;}
.h7_c00451{height:55.182917pt;}
.h36_c00451{height:61.187500pt;}
.hb_c00451{height:63.083520pt;}
.h33_c00451{height:65.037500pt;}
.h32_c00451{height:67.187500pt;}
.h35_c00451{height:71.200000pt;}
.h14_c00451{height:72.252500pt;}
.h17_c00451{height:80.100000pt;}
.h15_c00451{height:81.212500pt;}
.h8_c00451{height:84.273438pt;}
.h23_c00451{height:106.243750pt;}
.h2a_c00451{height:107.828125pt;}
.h9_c00451{height:130.718750pt;}
.h20_c00451{height:134.375000pt;}
.h1c_c00451{height:141.843750pt;}
.h4_c00451{height:162.981250pt;}
.hc_c00451{height:236.594273pt;}
.ha_c00451{height:284.750523pt;}
.h1_c00451{height:1122.666667pt;}
.h0_c00451{height:1122.880013pt;}
.w1_c00451{width:793.333333pt;}
.w0_c00451{width:793.600000pt;}
.x0_c00451{left:0.000000pt;}
.x6_c00451{left:69.986667pt;}
.x3_c00451{left:76.986667pt;}
.x5_c00451{left:77.973333pt;}
.x15_c00451{left:78.893333pt;}
.x1_c00451{left:97.866667pt;}
.x4_c00451{left:101.000000pt;}
.x16_c00451{left:104.466667pt;}
.x31_c00451{left:105.920000pt;}
.x13_c00451{left:106.880000pt;}
.x17_c00451{left:111.680000pt;}
.x41_c00451{left:113.080000pt;}
.x23_c00451{left:115.480000pt;}
.x32_c00451{left:117.960000pt;}
.x18_c00451{left:119.360000pt;}
.x1a_c00451{left:122.720000pt;}
.x11_c00451{left:123.706667pt;}
.xd_c00451{left:125.386667pt;}
.x26_c00451{left:127.680000pt;}
.xc_c00451{left:129.200000pt;}
.x27_c00451{left:133.600000pt;}
.xb_c00451{left:135.226667pt;}
.x42_c00451{left:136.293333pt;}
.x19_c00451{left:138.986667pt;}
.x9_c00451{left:140.586667pt;}
.x1b_c00451{left:142.320000pt;}
.x8_c00451{left:144.520000pt;}
.x33_c00451{left:146.226667pt;}
.x24_c00451{left:150.666667pt;}
.x34_c00451{left:152.386667pt;}
.xe_c00451{left:154.546667pt;}
.x21_c00451{left:155.880000pt;}
.x1c_c00451{left:157.440000pt;}
.x28_c00451{left:158.893333pt;}
.x43_c00451{left:160.280000pt;}
.x44_c00451{left:164.293333pt;}
.x14_c00451{left:168.080000pt;}
.x45_c00451{left:169.120000pt;}
.x35_c00451{left:174.000000pt;}
.xa_c00451{left:175.520000pt;}
.x1d_c00451{left:179.306667pt;}
.x3f_c00451{left:181.506667pt;}
.x1e_c00451{left:183.826667pt;}
.x25_c00451{left:185.200000pt;}
.x12_c00451{left:186.853333pt;}
.x36_c00451{left:188.173333pt;}
.x46_c00451{left:190.253333pt;}
.x2_c00451{left:191.533333pt;}
.x40_c00451{left:192.866667pt;}
.x7_c00451{left:196.626667pt;}
.x37_c00451{left:202.253333pt;}
.x38_c00451{left:204.893333pt;}
.x1f_c00451{left:212.346667pt;}
.x39_c00451{left:214.733333pt;}
.x22_c00451{left:221.000000pt;}
.x20_c00451{left:226.040000pt;}
.xf_c00451{left:229.800000pt;}
.x10_c00451{left:243.813333pt;}
.x3a_c00451{left:249.440000pt;}
.x53_c00451{left:258.053333pt;}
.x47_c00451{left:285.013333pt;}
.x29_c00451{left:286.613333pt;}
.x3b_c00451{left:289.240000pt;}
.x2a_c00451{left:290.706667pt;}
.x2b_c00451{left:300.506667pt;}
.x54_c00451{left:313.106667pt;}
.x55_c00451{left:332.706667pt;}
.x56_c00451{left:354.693333pt;}
.x48_c00451{left:379.453333pt;}
.x2c_c00451{left:381.373333pt;}
.x2d_c00451{left:385.426667pt;}
.x3c_c00451{left:390.533333pt;}
.x2e_c00451{left:443.386667pt;}
.x57_c00451{left:452.946667pt;}
.x49_c00451{left:474.506667pt;}
.x2f_c00451{left:476.426667pt;}
.x30_c00451{left:480.160000pt;}
.x3d_c00451{left:484.960000pt;}
.x58_c00451{left:511.826667pt;}
.x3e_c00451{left:518.026667pt;}
.x59_c00451{left:531.360000pt;}
.x5a_c00451{left:543.653333pt;}
.x4b_c00451{left:545.520000pt;}
.x50_c00451{left:546.426667pt;}
.x51_c00451{left:557.333333pt;}
.x4c_c00451{left:564.306667pt;}
.x4a_c00451{left:566.666667pt;}
.x52_c00451{left:568.173333pt;}
.x4d_c00451{left:582.320000pt;}
.x4e_c00451{left:601.000000pt;}
.x4f_c00451{left:619.466667pt;}
.x5e_c00451{left:659.226667pt;}
.x60_c00451{left:662.613333pt;}
.x5b_c00451{left:665.173333pt;}
.x5c_c00451{left:668.946667pt;}
.x5f_c00451{left:697.506667pt;}
.x5d_c00451{left:698.413333pt;}
.x62_c00451{left:760.440000pt;}
.x61_c00451{left:761.373333pt;}
}





/* 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_c00452 {
    display:none;
  }
  .loading-indicator_c00452.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00452 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_c00452 { 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_c00452" -> "#page-container .classname_c00452")
 */
.pf_c00452 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00452 { /* 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_c00452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00452 { /* 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_c00452 { /* 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_c00452 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00452 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00452 {overflow:visible;}
  }
}
.c_c00452 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00452 { /* 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_c00452:after { /* webkit #35443 */
  content: '';
}
.t_c00452:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00452 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 */
}
.__c00452 { /* 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_c00452 { /* info for Javascript */
  display:none;
}
.l_c00452 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00452 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00452 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00452: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_c00452 {
    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_c00452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00452.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_c00452 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00452{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00452;src:url('chunks/assets/font_7538f86460953edda536de81.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;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:ff2_c00452;src:url('chunks/assets/font_d4519928570da37fa33463ca.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.284668;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_c00452;src:url('chunks/assets/font_7254828cb2632ec3a114b5f7.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:0.666000;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_c00452;src:url('chunks/assets/font_4f6b5ad91ff147d20134b63f.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;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:ff5_c00452;src:url('chunks/assets/font_50765a2768be21c8ff98934b.woff2')format("woff");}.ff5_c00452{font-family:ff5_c00452;line-height:1.284180;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_c00452;src:url('chunks/assets/font_05d122db8edfaf01206aa9f2.woff2')format("woff");}.ff6_c00452{font-family:ff6_c00452;line-height:1.311035;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_c00452;src:url('chunks/assets/font_0c55ed5348e34b046113b196.woff2')format("woff");}.ff7_c00452{font-family:ff7_c00452;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;}
.m11_c00452{transform:matrix(0.056618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056618,0.000000,0.000000,0.250000,0,0);}
.m5_c00452{transform:matrix(0.061253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061253,0.000000,0.000000,0.250000,0,0);}
.m10_c00452{transform:matrix(0.107378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107378,0.000000,0.000000,0.250000,0,0);}
.m16_c00452{transform:matrix(0.134871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134871,0.000000,0.000000,0.250000,0,0);}
.m17_c00452{transform:matrix(0.147756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147756,0.000000,0.000000,0.250000,0,0);}
.m1a_c00452{transform:matrix(0.176918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176918,0.000000,0.000000,0.250000,0,0);}
.m14_c00452{transform:matrix(0.182013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182013,0.000000,0.000000,0.250000,0,0);}
.md_c00452{transform:matrix(0.189002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189002,0.000000,0.000000,0.250000,0,0);}
.m12_c00452{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m1_c00452{transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);}
.m3_c00452{transform:matrix(0.196877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196877,0.000000,0.000000,0.250000,0,0);}
.m1d_c00452{transform:matrix(0.205508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205508,0.000000,0.000000,0.250000,0,0);}
.m1c_c00452{transform:matrix(0.225036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225036,0.000000,0.000000,0.250000,0,0);}
.m19_c00452{transform:matrix(0.226921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226921,0.000000,0.000000,0.250000,0,0);}
.m26_c00452{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.m22_c00452{transform:matrix(0.237104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237104,0.000000,0.000000,0.250000,0,0);}
.m28_c00452{transform:matrix(0.237362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237362,0.000000,0.000000,0.250000,0,0);}
.m27_c00452{transform:matrix(0.239201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239201,0.000000,0.000000,0.250000,0,0);}
.m29_c00452{transform:matrix(0.239563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239563,0.000000,0.000000,0.250000,0,0);}
.m15_c00452{transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);}
.m18_c00452{transform:matrix(0.244128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244128,0.000000,0.000000,0.250000,0,0);}
.m25_c00452{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m24_c00452{transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);}
.m1f_c00452{transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);}
.m23_c00452{transform:matrix(0.248065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248065,0.000000,0.000000,0.250000,0,0);}
.m2_c00452{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);}
.m20_c00452{transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);}
.m4_c00452{transform:matrix(0.251657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251657,0.000000,0.000000,0.250000,0,0);}
.m21_c00452{transform:matrix(0.259442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259442,0.000000,0.000000,0.250000,0,0);}
.m9_c00452{transform:matrix(0.264357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264357,0.000000,0.000000,0.250000,0,0);}
.m1b_c00452{transform:matrix(0.266235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266235,0.000000,0.000000,0.250000,0,0);}
.me_c00452{transform:matrix(0.271990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271990,0.000000,0.000000,0.250000,0,0);}
.mf_c00452{transform:matrix(0.272349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272349,0.000000,0.000000,0.250000,0,0);}
.m6_c00452{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m13_c00452{transform:matrix(0.276416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276416,0.000000,0.000000,0.250000,0,0);}
.m0_c00452{transform:matrix(0.277910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277910,0.000000,0.000000,0.250000,0,0);}
.m2a_c00452{transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);}
.mb_c00452{transform:matrix(0.279676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279676,0.000000,0.000000,0.250000,0,0);}
.ma_c00452{transform:matrix(0.290360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290360,0.000000,0.000000,0.250000,0,0);}
.m7_c00452{transform:matrix(0.306099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306099,0.000000,0.000000,0.250000,0,0);}
.m8_c00452{transform:matrix(0.313581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313581,0.000000,0.000000,0.250000,0,0);}
.mc_c00452{transform:matrix(0.314534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314534,0.000000,0.000000,0.250000,0,0);}
.m1e_c00452{transform:matrix(0.360937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360937,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls14_c00452{letter-spacing:-3.486000px;}
.ls3_c00452{letter-spacing:-2.982000px;}
.ls1d_c00452{letter-spacing:-2.583000px;}
.ls1e_c00452{letter-spacing:-2.368980px;}
.ls19_c00452{letter-spacing:-1.890000px;}
.ls13_c00452{letter-spacing:-1.743000px;}
.ls15_c00452{letter-spacing:-1.449021px;}
.ls1b_c00452{letter-spacing:-1.365021px;}
.ls1f_c00452{letter-spacing:-1.321020px;}
.ls12_c00452{letter-spacing:-1.176000px;}
.lsb_c00452{letter-spacing:-1.008021px;}
.ls16_c00452{letter-spacing:-0.966000px;}
.lsf_c00452{letter-spacing:-0.924021px;}
.ls11_c00452{letter-spacing:-0.735021px;}
.ls18_c00452{letter-spacing:-0.417912px;}
.ls10_c00452{letter-spacing:-0.403212px;}
.ls9_c00452{letter-spacing:-0.362880px;}
.ls5_c00452{letter-spacing:0.000000px;}
.ls6_c00452{letter-spacing:0.357840px;}
.ls17_c00452{letter-spacing:1.050030px;}
.ls20_c00452{letter-spacing:1.078560px;}
.lsa_c00452{letter-spacing:1.302720px;}
.ls4_c00452{letter-spacing:1.385298px;}
.lsc_c00452{letter-spacing:1.466400px;}
.ls1c_c00452{letter-spacing:1.680000px;}
.ls0_c00452{letter-spacing:1.825223px;}
.lsd_c00452{letter-spacing:1.867344px;}
.lse_c00452{letter-spacing:1.890030px;}
.ls1a_c00452{letter-spacing:1.950030px;}
.ls2_c00452{letter-spacing:2.340030px;}
.ls8_c00452{letter-spacing:2.520000px;}
.ls7_c00452{letter-spacing:2.580000px;}
.ls1_c00452{letter-spacing:29.547844px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{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__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00452{word-spacing:0.000000px;}
._2_c00452{margin-left:-8.698354px;}
._3_c00452{width:41.018695px;}
._1_c00452{width:48.363600px;}
._5_c00452{width:78.348000px;}
._4_c00452{width:248.784000px;}
._0_c00452{width:344.947358px;}
.fc0_c00452{color:transparent;}
.fs13_c00452{font-size:10.800000px;}
.fs1b_c00452{font-size:12.000000px;}
.fs1c_c00452{font-size:13.200600px;}
.fs10_c00452{font-size:21.000600px;}
.fsf_c00452{font-size:26.400600px;}
.fs7_c00452{font-size:27.600000px;}
.fs16_c00452{font-size:28.200000px;}
.fs9_c00452{font-size:28.800600px;}
.fsa_c00452{font-size:31.200000px;}
.fs11_c00452{font-size:33.600000px;}
.fse_c00452{font-size:37.800600px;}
.fs1a_c00452{font-size:39.000600px;}
.fs14_c00452{font-size:41.400600px;}
.fs0_c00452{font-size:46.800600px;}
.fsc_c00452{font-size:47.520000px;}
.fs12_c00452{font-size:49.800000px;}
.fs3_c00452{font-size:50.400000px;}
.fs5_c00452{font-size:51.600000px;}
.fs8_c00452{font-size:52.800000px;}
.fs18_c00452{font-size:54.000000px;}
.fs19_c00452{font-size:55.800000px;}
.fs17_c00452{font-size:58.800000px;}
.fs1d_c00452{font-size:73.800000px;}
.fs1_c00452{font-size:85.200000px;}
.fsd_c00452{font-size:92.400000px;}
.fs2_c00452{font-size:95.040000px;}
.fsb_c00452{font-size:97.920000px;}
.fs15_c00452{font-size:99.600000px;}
.fs4_c00452{font-size:141.000000px;}
.fs6_c00452{font-size:145.200600px;}
.y0_c00452{bottom:0.000000px;}
.y22_c00452{bottom:188.280000px;}
.yc_c00452{bottom:337.695000px;}
.y11_c00452{bottom:338.775000px;}
.y12_c00452{bottom:339.135000px;}
.y21_c00452{bottom:339.495000px;}
.y20_c00452{bottom:382.695000px;}
.y1f_c00452{bottom:397.095000px;}
.y1e_c00452{bottom:402.495000px;}
.y1d_c00452{bottom:416.520000px;}
.yb_c00452{bottom:428.775000px;}
.y28_c00452{bottom:430.575000px;}
.y1c_c00452{bottom:496.815000px;}
.ya_c00452{bottom:545.775000px;}
.y27_c00452{bottom:547.935000px;}
.y10_c00452{bottom:574.935000px;}
.yf_c00452{bottom:602.655000px;}
.y9_c00452{bottom:659.175000px;}
.y26_c00452{bottom:661.335000px;}
.ye_c00452{bottom:706.695000px;}
.yd_c00452{bottom:720.000000px;}
.y8_c00452{bottom:778.335000px;}
.y25_c00452{bottom:779.400000px;}
.y1b_c00452{bottom:797.400000px;}
.y1a_c00452{bottom:806.775000px;}
.y19_c00452{bottom:828.360000px;}
.y4_c00452{bottom:888.855000px;}
.y18_c00452{bottom:891.000000px;}
.y24_c00452{bottom:891.720000px;}
.y17_c00452{bottom:913.695000px;}
.y16_c00452{bottom:919.455000px;}
.y7_c00452{bottom:931.695000px;}
.y3_c00452{bottom:1005.855000px;}
.y23_c00452{bottom:1009.080000px;}
.y6_c00452{bottom:1021.335000px;}
.y15_c00452{bottom:1052.655000px;}
.y5_c00452{bottom:1053.720000px;}
.y14_c00452{bottom:1056.975000px;}
.y13_c00452{bottom:1068.495000px;}
.y2_c00452{bottom:1111.695000px;}
.y1_c00452{bottom:1137.975000px;}
.h1e_c00452{height:13.767813px;}
.h19_c00452{height:20.610940px;}
.h13_c00452{height:21.902970px;}
.h12_c00452{height:25.910745px;}
.h18_c00452{height:27.662988px;}
.ha_c00452{height:28.785937px;}
.hc_c00452{height:30.038126px;}
.hf_c00452{height:31.648320px;}
.hd_c00452{height:32.540625px;}
.h14_c00452{height:35.043750px;}
.h1d_c00452{height:38.276956px;}
.h11_c00452{height:39.424845px;}
.h16_c00452{height:43.179532px;}
.h2_c00452{height:48.811563px;}
.h15_c00452{height:48.875977px;}
.h9_c00452{height:49.464844px;}
.h7_c00452{height:50.642578px;}
.h5_c00452{height:52.565625px;}
.h1b_c00452{height:52.998047px;}
.h1c_c00452{height:54.764648px;}
.hb_c00452{height:55.068750px;}
.h1a_c00452{height:59.259375px;}
.h4_c00452{height:63.296640px;}
.he_c00452{height:65.214720px;}
.h1f_c00452{height:74.376563px;}
.h3_c00452{height:83.619141px;}
.h10_c00452{height:96.370313px;}
.h17_c00452{height:103.879688px;}
.h6_c00452{height:138.383789px;}
.h8_c00452{height:151.439688px;}
.h1_c00452{height:1263.000000px;}
.h0_c00452{height:1263.240000px;}
.w1_c00452{width:892.500000px;}
.w0_c00452{width:892.800000px;}
.x0_c00452{left:0.000000px;}
.x8_c00452{left:76.215000px;}
.x13_c00452{left:77.295000px;}
.x7_c00452{left:83.880000px;}
.xf_c00452{left:85.275000px;}
.x11_c00452{left:86.565000px;}
.x12_c00452{left:88.155000px;}
.x1_c00452{left:106.875000px;}
.x14_c00452{left:109.035000px;}
.x10_c00452{left:118.050000px;}
.xc_c00452{left:126.705000px;}
.xb_c00452{left:139.875000px;}
.x9_c00452{left:145.815000px;}
.xd_c00452{left:152.145000px;}
.x33_c00452{left:169.785000px;}
.xe_c00452{left:176.610000px;}
.xa_c00452{left:185.205000px;}
.x34_c00452{left:196.500000px;}
.x2_c00452{left:211.845000px;}
.x15_c00452{left:213.645000px;}
.x1a_c00452{left:287.640000px;}
.x35_c00452{left:291.030000px;}
.x18_c00452{left:301.965000px;}
.x19_c00452{left:303.630000px;}
.x3_c00452{left:318.945000px;}
.x1b_c00452{left:320.025000px;}
.x17_c00452{left:341.100000px;}
.x16_c00452{left:347.220000px;}
.x36_c00452{left:353.670000px;}
.x37_c00452{left:379.995000px;}
.x1c_c00452{left:426.585000px;}
.x38_c00452{left:439.110000px;}
.x26_c00452{left:461.595000px;}
.x23_c00452{left:466.830000px;}
.x2a_c00452{left:468.645000px;}
.x24_c00452{left:472.200000px;}
.x39_c00452{left:475.005000px;}
.x2b_c00452{left:477.240000px;}
.x2c_c00452{left:489.135000px;}
.x25_c00452{left:494.250000px;}
.x3a_c00452{left:496.590000px;}
.x4_c00452{left:531.675000px;}
.x32_c00452{left:532.755000px;}
.x29_c00452{left:561.150000px;}
.x28_c00452{left:567.240000px;}
.x27_c00452{left:582.360000px;}
.x21_c00452{left:592.845000px;}
.x22_c00452{left:599.280000px;}
.x1d_c00452{left:612.735000px;}
.x1f_c00452{left:625.425000px;}
.x2e_c00452{left:633.045000px;}
.x2d_c00452{left:635.340000px;}
.x5_c00452{left:636.645000px;}
.x2f_c00452{left:653.430000px;}
.x1e_c00452{left:660.750000px;}
.x20_c00452{left:664.080000px;}
.x31_c00452{left:684.930000px;}
.x30_c00452{left:695.820000px;}
.x6_c00452{left:744.465000px;}
.x3b_c00452{left:782.235000px;}
.x3c_c00452{left:783.885000px;}
.x3d_c00452{left:785.115000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls14_c00452{letter-spacing:-3.098667pt;}
.ls3_c00452{letter-spacing:-2.650667pt;}
.ls1d_c00452{letter-spacing:-2.296000pt;}
.ls1e_c00452{letter-spacing:-2.105760pt;}
.ls19_c00452{letter-spacing:-1.680000pt;}
.ls13_c00452{letter-spacing:-1.549333pt;}
.ls15_c00452{letter-spacing:-1.288019pt;}
.ls1b_c00452{letter-spacing:-1.213352pt;}
.ls1f_c00452{letter-spacing:-1.174240pt;}
.ls12_c00452{letter-spacing:-1.045333pt;}
.lsb_c00452{letter-spacing:-0.896019pt;}
.ls16_c00452{letter-spacing:-0.858667pt;}
.lsf_c00452{letter-spacing:-0.821352pt;}
.ls11_c00452{letter-spacing:-0.653352pt;}
.ls18_c00452{letter-spacing:-0.371477pt;}
.ls10_c00452{letter-spacing:-0.358410pt;}
.ls9_c00452{letter-spacing:-0.322560pt;}
.ls5_c00452{letter-spacing:0.000000pt;}
.ls6_c00452{letter-spacing:0.318080pt;}
.ls17_c00452{letter-spacing:0.933360pt;}
.ls20_c00452{letter-spacing:0.958720pt;}
.lsa_c00452{letter-spacing:1.157973pt;}
.ls4_c00452{letter-spacing:1.231376pt;}
.lsc_c00452{letter-spacing:1.303467pt;}
.ls1c_c00452{letter-spacing:1.493333pt;}
.ls0_c00452{letter-spacing:1.622421pt;}
.lsd_c00452{letter-spacing:1.659861pt;}
.lse_c00452{letter-spacing:1.680027pt;}
.ls1a_c00452{letter-spacing:1.733360pt;}
.ls2_c00452{letter-spacing:2.080027pt;}
.ls8_c00452{letter-spacing:2.240000pt;}
.ls7_c00452{letter-spacing:2.293333pt;}
.ls1_c00452{letter-spacing:26.264750pt;}
.ws0_c00452{word-spacing:0.000000pt;}
._2_c00452{margin-left:-7.731870pt;}
._3_c00452{width:36.461062pt;}
._1_c00452{width:42.989867pt;}
._5_c00452{width:69.642667pt;}
._4_c00452{width:221.141333pt;}
._0_c00452{width:306.619874pt;}
.fs13_c00452{font-size:9.600000pt;}
.fs1b_c00452{font-size:10.666667pt;}
.fs1c_c00452{font-size:11.733867pt;}
.fs10_c00452{font-size:18.667200pt;}
.fsf_c00452{font-size:23.467200pt;}
.fs7_c00452{font-size:24.533333pt;}
.fs16_c00452{font-size:25.066667pt;}
.fs9_c00452{font-size:25.600533pt;}
.fsa_c00452{font-size:27.733333pt;}
.fs11_c00452{font-size:29.866667pt;}
.fse_c00452{font-size:33.600533pt;}
.fs1a_c00452{font-size:34.667200pt;}
.fs14_c00452{font-size:36.800533pt;}
.fs0_c00452{font-size:41.600533pt;}
.fsc_c00452{font-size:42.240000pt;}
.fs12_c00452{font-size:44.266667pt;}
.fs3_c00452{font-size:44.800000pt;}
.fs5_c00452{font-size:45.866667pt;}
.fs8_c00452{font-size:46.933333pt;}
.fs18_c00452{font-size:48.000000pt;}
.fs19_c00452{font-size:49.600000pt;}
.fs17_c00452{font-size:52.266667pt;}
.fs1d_c00452{font-size:65.600000pt;}
.fs1_c00452{font-size:75.733333pt;}
.fsd_c00452{font-size:82.133333pt;}
.fs2_c00452{font-size:84.480000pt;}
.fsb_c00452{font-size:87.040000pt;}
.fs15_c00452{font-size:88.533333pt;}
.fs4_c00452{font-size:125.333333pt;}
.fs6_c00452{font-size:129.067200pt;}
.y0_c00452{bottom:0.000000pt;}
.y22_c00452{bottom:167.360000pt;}
.yc_c00452{bottom:300.173333pt;}
.y11_c00452{bottom:301.133333pt;}
.y12_c00452{bottom:301.453333pt;}
.y21_c00452{bottom:301.773333pt;}
.y20_c00452{bottom:340.173333pt;}
.y1f_c00452{bottom:352.973333pt;}
.y1e_c00452{bottom:357.773333pt;}
.y1d_c00452{bottom:370.240000pt;}
.yb_c00452{bottom:381.133333pt;}
.y28_c00452{bottom:382.733333pt;}
.y1c_c00452{bottom:441.613333pt;}
.ya_c00452{bottom:485.133333pt;}
.y27_c00452{bottom:487.053333pt;}
.y10_c00452{bottom:511.053333pt;}
.yf_c00452{bottom:535.693333pt;}
.y9_c00452{bottom:585.933333pt;}
.y26_c00452{bottom:587.853333pt;}
.ye_c00452{bottom:628.173333pt;}
.yd_c00452{bottom:640.000000pt;}
.y8_c00452{bottom:691.853333pt;}
.y25_c00452{bottom:692.800000pt;}
.y1b_c00452{bottom:708.800000pt;}
.y1a_c00452{bottom:717.133333pt;}
.y19_c00452{bottom:736.320000pt;}
.y4_c00452{bottom:790.093333pt;}
.y18_c00452{bottom:792.000000pt;}
.y24_c00452{bottom:792.640000pt;}
.y17_c00452{bottom:812.173333pt;}
.y16_c00452{bottom:817.293333pt;}
.y7_c00452{bottom:828.173333pt;}
.y3_c00452{bottom:894.093333pt;}
.y23_c00452{bottom:896.960000pt;}
.y6_c00452{bottom:907.853333pt;}
.y15_c00452{bottom:935.693333pt;}
.y5_c00452{bottom:936.640000pt;}
.y14_c00452{bottom:939.533333pt;}
.y13_c00452{bottom:949.773333pt;}
.y2_c00452{bottom:988.173333pt;}
.y1_c00452{bottom:1011.533333pt;}
.h1e_c00452{height:12.238056pt;}
.h19_c00452{height:18.320836pt;}
.h13_c00452{height:19.469306pt;}
.h12_c00452{height:23.031773pt;}
.h18_c00452{height:24.589323pt;}
.ha_c00452{height:25.587500pt;}
.hc_c00452{height:26.700556pt;}
.hf_c00452{height:28.131840pt;}
.hd_c00452{height:28.925000pt;}
.h14_c00452{height:31.150000pt;}
.h1d_c00452{height:34.023961pt;}
.h11_c00452{height:35.044306pt;}
.h16_c00452{height:38.381806pt;}
.h2_c00452{height:43.388056pt;}
.h15_c00452{height:43.445313pt;}
.h9_c00452{height:43.968750pt;}
.h7_c00452{height:45.015625pt;}
.h5_c00452{height:46.725000pt;}
.h1b_c00452{height:47.109375pt;}
.h1c_c00452{height:48.679688pt;}
.hb_c00452{height:48.950000pt;}
.h1a_c00452{height:52.675000pt;}
.h4_c00452{height:56.263680pt;}
.he_c00452{height:57.968640pt;}
.h1f_c00452{height:66.112500pt;}
.h3_c00452{height:74.328125pt;}
.h10_c00452{height:85.662500pt;}
.h17_c00452{height:92.337500pt;}
.h6_c00452{height:123.007812pt;}
.h8_c00452{height:134.613056pt;}
.h1_c00452{height:1122.666667pt;}
.h0_c00452{height:1122.880000pt;}
.w1_c00452{width:793.333333pt;}
.w0_c00452{width:793.600000pt;}
.x0_c00452{left:0.000000pt;}
.x8_c00452{left:67.746667pt;}
.x13_c00452{left:68.706667pt;}
.x7_c00452{left:74.560000pt;}
.xf_c00452{left:75.800000pt;}
.x11_c00452{left:76.946667pt;}
.x12_c00452{left:78.360000pt;}
.x1_c00452{left:95.000000pt;}
.x14_c00452{left:96.920000pt;}
.x10_c00452{left:104.933333pt;}
.xc_c00452{left:112.626667pt;}
.xb_c00452{left:124.333333pt;}
.x9_c00452{left:129.613333pt;}
.xd_c00452{left:135.240000pt;}
.x33_c00452{left:150.920000pt;}
.xe_c00452{left:156.986667pt;}
.xa_c00452{left:164.626667pt;}
.x34_c00452{left:174.666667pt;}
.x2_c00452{left:188.306667pt;}
.x15_c00452{left:189.906667pt;}
.x1a_c00452{left:255.680000pt;}
.x35_c00452{left:258.693333pt;}
.x18_c00452{left:268.413333pt;}
.x19_c00452{left:269.893333pt;}
.x3_c00452{left:283.506667pt;}
.x1b_c00452{left:284.466667pt;}
.x17_c00452{left:303.200000pt;}
.x16_c00452{left:308.640000pt;}
.x36_c00452{left:314.373333pt;}
.x37_c00452{left:337.773333pt;}
.x1c_c00452{left:379.186667pt;}
.x38_c00452{left:390.320000pt;}
.x26_c00452{left:410.306667pt;}
.x23_c00452{left:414.960000pt;}
.x2a_c00452{left:416.573333pt;}
.x24_c00452{left:419.733333pt;}
.x39_c00452{left:422.226667pt;}
.x2b_c00452{left:424.213333pt;}
.x2c_c00452{left:434.786667pt;}
.x25_c00452{left:439.333333pt;}
.x3a_c00452{left:441.413333pt;}
.x4_c00452{left:472.600000pt;}
.x32_c00452{left:473.560000pt;}
.x29_c00452{left:498.800000pt;}
.x28_c00452{left:504.213333pt;}
.x27_c00452{left:517.653333pt;}
.x21_c00452{left:526.973333pt;}
.x22_c00452{left:532.693333pt;}
.x1d_c00452{left:544.653333pt;}
.x1f_c00452{left:555.933333pt;}
.x2e_c00452{left:562.706667pt;}
.x2d_c00452{left:564.746667pt;}
.x5_c00452{left:565.906667pt;}
.x2f_c00452{left:580.826667pt;}
.x1e_c00452{left:587.333333pt;}
.x20_c00452{left:590.293333pt;}
.x31_c00452{left:608.826667pt;}
.x30_c00452{left:618.506667pt;}
.x6_c00452{left:661.746667pt;}
.x3b_c00452{left:695.320000pt;}
.x3c_c00452{left:696.786667pt;}
.x3d_c00452{left:697.880000pt;}
}





/* 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_c00453 {
    display:none;
  }
  .loading-indicator_c00453.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00453 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_c00453 { 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_c00453" -> "#page-container .classname_c00453")
 */
.pf_c00453 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00453 { /* 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_c00453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00453 { /* 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_c00453 { /* 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_c00453 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00453 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00453 {overflow:visible;}
  }
}
.c_c00453 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00453 { /* 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_c00453:after { /* webkit #35443 */
  content: '';
}
.t_c00453:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00453 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 */
}
.__c00453 { /* 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_c00453 { /* info for Javascript */
  display:none;
}
.l_c00453 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00453 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00453 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00453: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_c00453 {
    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_c00453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00453.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_c00453 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00453{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00453;src:url('chunks/assets/font_97f54572c35eb34af5b43295.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.284668;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_c00453;src:url('chunks/assets/font_791e6f2c2b9cadc862d2c66e.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;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_c00453;src:url('chunks/assets/font_3a24c858b89130853dabb12d.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:0.666000;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_c00453;src:url('chunks/assets/font_f2ca796a005c040aca1e7c37.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;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:ff5_c00453;src:url('chunks/assets/font_7c33a1163c5bdff6b91a982c.woff2')format("woff");}.ff5_c00453{font-family:ff5_c00453;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:ff6_c00453;src:url('chunks/assets/font_5bceadc0fb83e1b94c0e85ad.woff2')format("woff");}.ff6_c00453{font-family:ff6_c00453;line-height:1.284180;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_c00453;src:url('chunks/assets/font_12dbb563796c68c9f611a5e6.woff2')format("woff");}.ff7_c00453{font-family:ff7_c00453;line-height:1.311035;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;}
.m1b_c00453{transform:matrix(0.017857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017857,0.000000,0.000000,0.250000,0,0);}
.m38_c00453{transform:matrix(0.028061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028061,0.000000,0.000000,0.250000,0,0);}
.m1f_c00453{transform:matrix(0.044236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044236,0.000000,0.000000,0.250000,0,0);}
.m23_c00453{transform:matrix(0.046931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046931,0.000000,0.000000,0.250000,0,0);}
.m36_c00453{transform:matrix(0.048470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048470,0.000000,0.000000,0.250000,0,0);}
.m24_c00453{transform:matrix(0.048491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048491,0.000000,0.000000,0.250000,0,0);}
.m28_c00453{transform:matrix(0.064278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064278,0.000000,0.000000,0.250000,0,0);}
.m2a_c00453{transform:matrix(0.065216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065216,0.000000,0.000000,0.250000,0,0);}
.m30_c00453{transform:matrix(0.068182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068182,0.000000,0.000000,0.250000,0,0);}
.m22_c00453{transform:matrix(0.069810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069810,0.000000,0.000000,0.250000,0,0);}
.m20_c00453{transform:matrix(0.072845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072845,0.000000,0.000000,0.250000,0,0);}
.m40_c00453{transform:matrix(0.078396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078396,0.000000,0.000000,0.250000,0,0);}
.m2f_c00453{transform:matrix(0.079545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079545,0.000000,0.000000,0.250000,0,0);}
.m10_c00453{transform:matrix(0.083690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083690,0.000000,0.000000,0.250000,0,0);}
.m37_c00453{transform:matrix(0.084927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084927,0.000000,0.000000,0.250000,0,0);}
.m21_c00453{transform:matrix(0.085585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085585,0.000000,0.000000,0.250000,0,0);}
.m25_c00453{transform:matrix(0.094013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094013,0.000000,0.000000,0.250000,0,0);}
.m1a_c00453{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mf_c00453{transform:matrix(0.105575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105575,0.000000,0.000000,0.250000,0,0);}
.m3e_c00453{transform:matrix(0.109186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109186,0.000000,0.000000,0.250000,0,0);}
.m39_c00453{transform:matrix(0.112512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112512,0.000000,0.000000,0.250000,0,0);}
.m3a_c00453{transform:matrix(0.113026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113026,0.000000,0.000000,0.250000,0,0);}
.m2c_c00453{transform:matrix(0.113693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113693,0.000000,0.000000,0.250000,0,0);}
.m3f_c00453{transform:matrix(0.118590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118590,0.000000,0.000000,0.250000,0,0);}
.m3b_c00453{transform:matrix(0.130556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130556,0.000000,0.000000,0.250000,0,0);}
.m3c_c00453{transform:matrix(0.131017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131017,0.000000,0.000000,0.250000,0,0);}
.m3d_c00453{transform:matrix(0.131479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131479,0.000000,0.000000,0.250000,0,0);}
.m11_c00453{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m29_c00453{transform:matrix(0.141295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141295,0.000000,0.000000,0.250000,0,0);}
.m1c_c00453{transform:matrix(0.141302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141302,0.000000,0.000000,0.250000,0,0);}
.m1e_c00453{transform:matrix(0.141981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141981,0.000000,0.000000,0.250000,0,0);}
.m44_c00453{transform:matrix(0.142017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142017,0.000000,0.000000,0.250000,0,0);}
.m33_c00453{transform:matrix(0.142618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142618,0.000000,0.000000,0.250000,0,0);}
.m2b_c00453{transform:matrix(0.151590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151590,0.000000,0.000000,0.250000,0,0);}
.m26_c00453{transform:matrix(0.169276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169276,0.000000,0.000000,0.250000,0,0);}
.m5_c00453{transform:matrix(0.188886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188886,0.000000,0.000000,0.250000,0,0);}
.m2d_c00453{transform:matrix(0.195117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195117,0.000000,0.000000,0.250000,0,0);}
.m2e_c00453{transform:matrix(0.197439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197439,0.000000,0.000000,0.250000,0,0);}
.m4b_c00453{transform:matrix(0.232201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232201,0.000000,0.000000,0.250000,0,0);}
.m4c_c00453{transform:matrix(0.237362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237362,0.000000,0.000000,0.250000,0,0);}
.m4a_c00453{transform:matrix(0.237935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237935,0.000000,0.000000,0.250000,0,0);}
.m47_c00453{transform:matrix(0.238913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238913,0.000000,0.000000,0.250000,0,0);}
.m4d_c00453{transform:matrix(0.241293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241293,0.000000,0.000000,0.250000,0,0);}
.m34_c00453{transform:matrix(0.242547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242547,0.000000,0.000000,0.250000,0,0);}
.m49_c00453{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m48_c00453{transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);}
.m2_c00453{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);}
.m42_c00453{transform:matrix(0.255326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255326,0.000000,0.000000,0.250000,0,0);}
.m7_c00453{transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);}
.m43_c00453{transform:matrix(0.265194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265194,0.000000,0.000000,0.250000,0,0);}
.ma_c00453{transform:matrix(0.265544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265544,0.000000,0.000000,0.250000,0,0);}
.m13_c00453{transform:matrix(0.268684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268684,0.000000,0.000000,0.250000,0,0);}
.m14_c00453{transform:matrix(0.270966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270966,0.000000,0.000000,0.250000,0,0);}
.m6_c00453{transform:matrix(0.272172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272172,0.000000,0.000000,0.250000,0,0);}
.m15_c00453{transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);}
.m0_c00453{transform:matrix(0.272585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272585,0.000000,0.000000,0.250000,0,0);}
.m46_c00453{transform:matrix(0.276384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276384,0.000000,0.000000,0.250000,0,0);}
.m1_c00453{transform:matrix(0.278244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278244,0.000000,0.000000,0.250000,0,0);}
.m19_c00453{transform:matrix(0.279768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279768,0.000000,0.000000,0.250000,0,0);}
.m45_c00453{transform:matrix(0.281803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281803,0.000000,0.000000,0.250000,0,0);}
.m31_c00453{transform:matrix(0.282375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282375,0.000000,0.000000,0.250000,0,0);}
.m8_c00453{transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);}
.m9_c00453{transform:matrix(0.288966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288966,0.000000,0.000000,0.250000,0,0);}
.m3_c00453{transform:matrix(0.291188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291188,0.000000,0.000000,0.250000,0,0);}
.m12_c00453{transform:matrix(0.292071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292071,0.000000,0.000000,0.250000,0,0);}
.m4_c00453{transform:matrix(0.306379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306379,0.000000,0.000000,0.250000,0,0);}
.me_c00453{transform:matrix(0.332519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332519,0.000000,0.000000,0.250000,0,0);}
.m32_c00453{transform:matrix(0.337587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337587,0.000000,0.000000,0.250000,0,0);}
.m17_c00453{transform:matrix(0.337821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337821,0.000000,0.000000,0.250000,0,0);}
.m16_c00453{transform:matrix(0.339888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339888,0.000000,0.000000,0.250000,0,0);}
.m35_c00453{transform:matrix(0.354752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354752,0.000000,0.000000,0.250000,0,0);}
.m18_c00453{transform:matrix(0.357771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357771,0.000000,0.000000,0.250000,0,0);}
.m27_c00453{transform:matrix(0.375668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375668,0.000000,0.000000,0.250000,0,0);}
.mb_c00453{transform:matrix(0.385451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385451,0.000000,0.000000,0.250000,0,0);}
.mc_c00453{transform:matrix(0.392112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392112,0.000000,0.000000,0.250000,0,0);}
.md_c00453{transform:matrix(0.413548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413548,0.000000,0.000000,0.250000,0,0);}
.m41_c00453{transform:matrix(0.484658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484658,0.000000,0.000000,0.250000,0,0);}
.m1d_c00453{transform:matrix(2.944179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.944179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.944179,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.v4_c00453{vertical-align:1.440000px;}
.v1_c00453{vertical-align:18.660000px;}
.v2_c00453{vertical-align:25.920000px;}
.v3_c00453{vertical-align:44.640000px;}
.ls21_c00453{letter-spacing:-6.363000px;}
.ls13_c00453{letter-spacing:-6.069000px;}
.ls14_c00453{letter-spacing:-5.691000px;}
.ls17_c00453{letter-spacing:-4.935000px;}
.ls15_c00453{letter-spacing:-4.893000px;}
.ls16_c00453{letter-spacing:-2.982000px;}
.lsb_c00453{letter-spacing:-2.604000px;}
.ls26_c00453{letter-spacing:-2.583000px;}
.ls28_c00453{letter-spacing:-2.575620px;}
.ls22_c00453{letter-spacing:-2.415000px;}
.ls2a_c00453{letter-spacing:-2.206620px;}
.ls27_c00453{letter-spacing:-2.191860px;}
.ls25_c00453{letter-spacing:-1.659021px;}
.ls1e_c00453{letter-spacing:-1.575021px;}
.ls18_c00453{letter-spacing:-1.428021px;}
.ls19_c00453{letter-spacing:-1.134021px;}
.ls29_c00453{letter-spacing:-1.114380px;}
.ls1f_c00453{letter-spacing:-1.098257px;}
.lsd_c00453{letter-spacing:-0.858360px;}
.ls1d_c00453{letter-spacing:-0.756000px;}
.ls1a_c00453{letter-spacing:-0.588021px;}
.ls10_c00453{letter-spacing:-0.339660px;}
.ls1b_c00453{letter-spacing:-0.185640px;}
.ls11_c00453{letter-spacing:-0.053460px;}
.ls3_c00453{letter-spacing:0.000000px;}
.ls0_c00453{letter-spacing:0.341765px;}
.ls4_c00453{letter-spacing:0.357840px;}
.ls23_c00453{letter-spacing:0.810030px;}
.ls1_c00453{letter-spacing:1.078560px;}
.ls20_c00453{letter-spacing:1.205779px;}
.ls7_c00453{letter-spacing:1.264800px;}
.ls1c_c00453{letter-spacing:1.380000px;}
.lsc_c00453{letter-spacing:1.453140px;}
.ls24_c00453{letter-spacing:1.680000px;}
.lsa_c00453{letter-spacing:1.920030px;}
.ls8_c00453{letter-spacing:1.986600px;}
.lsf_c00453{letter-spacing:2.009400px;}
.ls9_c00453{letter-spacing:2.010000px;}
.ls5_c00453{letter-spacing:2.400000px;}
.ls12_c00453{letter-spacing:2.430000px;}
.lse_c00453{letter-spacing:2.520000px;}
.ls2_c00453{letter-spacing:2.550000px;}
.ls6_c00453{letter-spacing:2.640000px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{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__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00453{word-spacing:0.000000px;}
._5_c00453{width:37.013954px;}
._4_c00453{width:38.814021px;}
._0_c00453{width:77.162400px;}
._1_c00453{width:93.019200px;}
._6_c00453{width:341.823360px;}
._2_c00453{width:386.015666px;}
._3_c00453{width:401.361266px;}
.fc0_c00453{color:transparent;}
.fs26_c00453{font-size:12.000000px;}
.fs11_c00453{font-size:14.400000px;}
.fs23_c00453{font-size:15.000600px;}
.fs21_c00453{font-size:15.600000px;}
.fs22_c00453{font-size:15.840000px;}
.fs2b_c00453{font-size:16.200600px;}
.fs20_c00453{font-size:16.800600px;}
.fs24_c00453{font-size:21.600000px;}
.fs12_c00453{font-size:27.600000px;}
.fs13_c00453{font-size:30.600000px;}
.fs1f_c00453{font-size:32.400600px;}
.fs15_c00453{font-size:33.120600px;}
.fs2c_c00453{font-size:33.600000px;}
.fsd_c00453{font-size:37.200000px;}
.fsf_c00453{font-size:38.400600px;}
.fs6_c00453{font-size:38.880600px;}
.fsa_c00453{font-size:39.000600px;}
.fsc_c00453{font-size:40.200000px;}
.fs1e_c00453{font-size:40.800600px;}
.fs1b_c00453{font-size:41.400600px;}
.fs25_c00453{font-size:45.000600px;}
.fsb_c00453{font-size:46.200000px;}
.fs2d_c00453{font-size:47.400600px;}
.fs8_c00453{font-size:48.000000px;}
.fse_c00453{font-size:48.600000px;}
.fs7_c00453{font-size:50.400000px;}
.fs0_c00453{font-size:51.000000px;}
.fs9_c00453{font-size:52.800000px;}
.fs1c_c00453{font-size:55.200000px;}
.fs2_c00453{font-size:56.400000px;}
.fs3_c00453{font-size:63.000000px;}
.fs2a_c00453{font-size:69.000000px;}
.fs2e_c00453{font-size:73.800000px;}
.fs10_c00453{font-size:74.400000px;}
.fs17_c00453{font-size:83.520000px;}
.fs1a_c00453{font-size:85.200000px;}
.fs4_c00453{font-size:96.600000px;}
.fs14_c00453{font-size:100.800000px;}
.fs19_c00453{font-size:139.800000px;}
.fs1d_c00453{font-size:141.000000px;}
.fs27_c00453{font-size:141.120000px;}
.fs5_c00453{font-size:142.800000px;}
.fs29_c00453{font-size:149.760000px;}
.fs18_c00453{font-size:162.600000px;}
.fs16_c00453{font-size:173.400000px;}
.fs1_c00453{font-size:174.600000px;}
.fs28_c00453{font-size:181.800000px;}
.y0_c00453{bottom:0.000000px;}
.y30_c00453{bottom:186.480000px;}
.y2d_c00453{bottom:336.975000px;}
.y2f_c00453{bottom:337.335000px;}
.y2e_c00453{bottom:337.695000px;}
.y2c_c00453{bottom:364.695000px;}
.y2a_c00453{bottom:372.615000px;}
.y2b_c00453{bottom:380.535000px;}
.y29_c00453{bottom:391.695000px;}
.y27_c00453{bottom:395.640000px;}
.y26_c00453{bottom:400.320000px;}
.y25_c00453{bottom:414.015000px;}
.y24_c00453{bottom:428.055000px;}
.y28_c00453{bottom:434.175000px;}
.y23_c00453{bottom:474.480000px;}
.y22_c00453{bottom:478.800000px;}
.y21_c00453{bottom:488.535000px;}
.y20_c00453{bottom:496.455000px;}
.y1f_c00453{bottom:497.895000px;}
.y1c_c00453{bottom:532.455000px;}
.y1e_c00453{bottom:544.695000px;}
.y1d_c00453{bottom:548.295000px;}
.y1b_c00453{bottom:551.895000px;}
.y1a_c00453{bottom:568.455000px;}
.y19_c00453{bottom:597.240000px;}
.y17_c00453{bottom:662.775000px;}
.y18_c00453{bottom:663.135000px;}
.yc_c00453{bottom:775.815000px;}
.y16_c00453{bottom:776.535000px;}
.y11_c00453{bottom:864.720000px;}
.yb_c00453{bottom:875.175000px;}
.ya_c00453{bottom:888.135000px;}
.y15_c00453{bottom:888.495000px;}
.y9_c00453{bottom:1005.495000px;}
.y14_c00453{bottom:1007.655000px;}
.y10_c00453{bottom:1008.720000px;}
.y7_c00453{bottom:1018.080000px;}
.y8_c00453{bottom:1024.200000px;}
.y13_c00453{bottom:1025.280000px;}
.y6_c00453{bottom:1056.240000px;}
.y4_c00453{bottom:1082.535000px;}
.y5_c00453{bottom:1089.015000px;}
.y3_c00453{bottom:1118.898750px;}
.y12_c00453{bottom:1120.695000px;}
.ye_c00453{bottom:1125.375000px;}
.y1_c00453{bottom:1135.815000px;}
.y2_c00453{bottom:1136.175000px;}
.yd_c00453{bottom:1136.535000px;}
.yf_c00453{bottom:1136.895000px;}
.h11_c00453{height:9.590400px;}
.h21_c00453{height:10.549440px;}
.h25_c00453{height:11.777344px;}
.h22_c00453{height:15.645157px;}
.h2c_c00453{height:15.892092px;}
.h20_c00453{height:16.270313px;}
.h1f_c00453{height:17.522501px;}
.h15_c00453{height:22.058320px;}
.h23_c00453{height:22.528125px;}
.h6_c00453{height:25.894480px;}
.h12_c00453{height:28.785937px;}
.h1e_c00453{height:31.799417px;}
.h13_c00453{height:31.914844px;}
.h2d_c00453{height:35.043750px;}
.h26_c00453{height:37.688089px;}
.hc_c00453{height:38.798438px;}
.he_c00453{height:40.050626px;}
.h10_c00453{height:40.676407px;}
.hb_c00453{height:41.927344px;}
.h1d_c00453{height:42.553751px;}
.h2e_c00453{height:46.521097px;}
.h24_c00453{height:46.934220px;}
.h2_c00453{height:50.053711px;}
.h8_c00453{height:50.062500px;}
.hd_c00453{height:50.688281px;}
.h9_c00453{height:51.820313px;}
.h7_c00453{height:52.565625px;}
.h17_c00453{height:55.624320px;}
.h1b_c00453{height:57.571875px;}
.h14_c00453{height:67.132800px;}
.h2b_c00453{height:71.964844px;}
.h2f_c00453{height:74.376563px;}
.hf_c00453{height:77.596875px;}
.h1a_c00453{height:88.860937px;}
.ha_c00453{height:92.825156px;}
.h27_c00453{height:93.985920px;}
.h4_c00453{height:94.807617px;}
.h2a_c00453{height:99.740160px;}
.h19_c00453{height:145.807031px;}
.h1c_c00453{height:147.058594px;}
.h5_c00453{height:148.935938px;}
.h18_c00453{height:169.586719px;}
.h16_c00453{height:170.182617px;}
.h28_c00453{height:178.337988px;}
.h29_c00453{height:178.426758px;}
.h3_c00453{height:182.102344px;}
.h1_c00453{height:1263.000000px;}
.h0_c00453{height:1263.240000px;}
.w1_c00453{width:892.500000px;}
.w0_c00453{width:892.800000px;}
.x0_c00453{left:0.000000px;}
.x9_c00453{left:78.015000px;}
.x3_c00453{left:86.237333px;}
.x21_c00453{left:88.035000px;}
.x1_c00453{left:109.380000px;}
.x4_c00453{left:113.265000px;}
.x54_c00453{left:117.225000px;}
.x22_c00453{left:119.520000px;}
.x36_c00453{left:123.960000px;}
.x3e_c00453{left:130.470000px;}
.x2b_c00453{left:132.840000px;}
.xa_c00453{left:134.985000px;}
.x37_c00453{left:136.710000px;}
.x3f_c00453{left:138.240000px;}
.x8_c00453{left:147.090000px;}
.x39_c00453{left:149.595000px;}
.x6_c00453{left:153.120000px;}
.x3a_c00453{left:154.680000px;}
.x3b_c00453{left:156.810000px;}
.x2c_c00453{left:157.890000px;}
.xb_c00453{left:160.425000px;}
.x2d_c00453{left:162.930000px;}
.x59_c00453{left:165.825000px;}
.x2e_c00453{left:169.200000px;}
.x38_c00453{left:170.355000px;}
.x40_c00453{left:178.320000px;}
.x3d_c00453{left:180.720000px;}
.xc_c00453{left:185.235000px;}
.x41_c00453{left:188.925000px;}
.x7_c00453{left:192.675000px;}
.x3c_c00453{left:198.255000px;}
.x47_c00453{left:201.450000px;}
.x5_c00453{left:209.970000px;}
.x48_c00453{left:211.440000px;}
.x2_c00453{left:215.115000px;}
.x23_c00453{left:220.845000px;}
.x49_c00453{left:227.460000px;}
.x2f_c00453{left:233.625000px;}
.x4a_c00453{left:236.085000px;}
.x30_c00453{left:240.570000px;}
.x31_c00453{left:251.805000px;}
.x10_c00453{left:258.510000px;}
.x32_c00453{left:260.655000px;}
.x5a_c00453{left:287.430000px;}
.x2a_c00453{left:289.095000px;}
.x29_c00453{left:299.685000px;}
.x33_c00453{left:313.215000px;}
.x55_c00453{left:320.715000px;}
.xd_c00453{left:321.765000px;}
.x34_c00453{left:323.820000px;}
.x4b_c00453{left:325.350000px;}
.xe_c00453{left:326.685000px;}
.x4c_c00453{left:328.545000px;}
.x11_c00453{left:332.670000px;}
.x5b_c00453{left:350.070000px;}
.x5c_c00453{left:376.020000px;}
.x4d_c00453{left:431.190000px;}
.x12_c00453{left:432.735000px;}
.x4e_c00453{left:434.745000px;}
.x5d_c00453{left:435.765000px;}
.x13_c00453{left:438.510000px;}
.x17_c00453{left:452.940000px;}
.x5e_c00453{left:456.630000px;}
.x18_c00453{left:459.870000px;}
.x19_c00453{left:470.805000px;}
.x35_c00453{left:519.885000px;}
.x5f_c00453{left:521.805000px;}
.x56_c00453{left:534.195000px;}
.xf_c00453{left:535.620000px;}
.x4f_c00453{left:537.390000px;}
.x14_c00453{left:539.775000px;}
.x60_c00453{left:543.390000px;}
.x15_c00453{left:544.755000px;}
.x24_c00453{left:549.720000px;}
.x16_c00453{left:561.030000px;}
.x43_c00453{left:614.040000px;}
.x44_c00453{left:615.150000px;}
.x53_c00453{left:627.330000px;}
.x45_c00453{left:635.205000px;}
.x42_c00453{left:637.305000px;}
.x57_c00453{left:639.555000px;}
.x50_c00453{left:643.590000px;}
.x25_c00453{left:645.285000px;}
.x51_c00453{left:647.580000px;}
.x26_c00453{left:650.865000px;}
.x46_c00453{left:655.230000px;}
.x52_c00453{left:667.920000px;}
.x1d_c00453{left:687.255000px;}
.x1e_c00453{left:691.020000px;}
.x1f_c00453{left:741.570000px;}
.x58_c00453{left:745.875000px;}
.x1a_c00453{left:748.050000px;}
.x27_c00453{left:751.485000px;}
.x1b_c00453{left:752.565000px;}
.x28_c00453{left:756.780000px;}
.x20_c00453{left:784.695000px;}
.x1c_c00453{left:785.715000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.v4_c00453{vertical-align:1.280000pt;}
.v1_c00453{vertical-align:16.586667pt;}
.v2_c00453{vertical-align:23.040000pt;}
.v3_c00453{vertical-align:39.680000pt;}
.ls21_c00453{letter-spacing:-5.656000pt;}
.ls13_c00453{letter-spacing:-5.394667pt;}
.ls14_c00453{letter-spacing:-5.058667pt;}
.ls17_c00453{letter-spacing:-4.386667pt;}
.ls15_c00453{letter-spacing:-4.349333pt;}
.ls16_c00453{letter-spacing:-2.650667pt;}
.lsb_c00453{letter-spacing:-2.314667pt;}
.ls26_c00453{letter-spacing:-2.296000pt;}
.ls28_c00453{letter-spacing:-2.289440pt;}
.ls22_c00453{letter-spacing:-2.146667pt;}
.ls2a_c00453{letter-spacing:-1.961440pt;}
.ls27_c00453{letter-spacing:-1.948320pt;}
.ls25_c00453{letter-spacing:-1.474685pt;}
.ls1e_c00453{letter-spacing:-1.400019pt;}
.ls18_c00453{letter-spacing:-1.269352pt;}
.ls19_c00453{letter-spacing:-1.008019pt;}
.ls29_c00453{letter-spacing:-0.990560pt;}
.ls1f_c00453{letter-spacing:-0.976229pt;}
.lsd_c00453{letter-spacing:-0.762987pt;}
.ls1d_c00453{letter-spacing:-0.672000pt;}
.ls1a_c00453{letter-spacing:-0.522685pt;}
.ls10_c00453{letter-spacing:-0.301920pt;}
.ls1b_c00453{letter-spacing:-0.165013pt;}
.ls11_c00453{letter-spacing:-0.047520pt;}
.ls3_c00453{letter-spacing:0.000000pt;}
.ls0_c00453{letter-spacing:0.303791pt;}
.ls4_c00453{letter-spacing:0.318080pt;}
.ls23_c00453{letter-spacing:0.720027pt;}
.ls1_c00453{letter-spacing:0.958720pt;}
.ls20_c00453{letter-spacing:1.071803pt;}
.ls7_c00453{letter-spacing:1.124267pt;}
.ls1c_c00453{letter-spacing:1.226667pt;}
.lsc_c00453{letter-spacing:1.291680pt;}
.ls24_c00453{letter-spacing:1.493333pt;}
.lsa_c00453{letter-spacing:1.706693pt;}
.ls8_c00453{letter-spacing:1.765867pt;}
.lsf_c00453{letter-spacing:1.786133pt;}
.ls9_c00453{letter-spacing:1.786667pt;}
.ls5_c00453{letter-spacing:2.133333pt;}
.ls12_c00453{letter-spacing:2.160000pt;}
.lse_c00453{letter-spacing:2.240000pt;}
.ls2_c00453{letter-spacing:2.266667pt;}
.ls6_c00453{letter-spacing:2.346667pt;}
.ws0_c00453{word-spacing:0.000000pt;}
._5_c00453{width:32.901292pt;}
._4_c00453{width:34.501352pt;}
._0_c00453{width:68.588800pt;}
._1_c00453{width:82.683733pt;}
._6_c00453{width:303.842987pt;}
._2_c00453{width:343.125037pt;}
._3_c00453{width:356.765570pt;}
.fs26_c00453{font-size:10.666667pt;}
.fs11_c00453{font-size:12.800000pt;}
.fs23_c00453{font-size:13.333867pt;}
.fs21_c00453{font-size:13.866667pt;}
.fs22_c00453{font-size:14.080000pt;}
.fs2b_c00453{font-size:14.400533pt;}
.fs20_c00453{font-size:14.933867pt;}
.fs24_c00453{font-size:19.200000pt;}
.fs12_c00453{font-size:24.533333pt;}
.fs13_c00453{font-size:27.200000pt;}
.fs1f_c00453{font-size:28.800533pt;}
.fs15_c00453{font-size:29.440533pt;}
.fs2c_c00453{font-size:29.866667pt;}
.fsd_c00453{font-size:33.066667pt;}
.fsf_c00453{font-size:34.133867pt;}
.fs6_c00453{font-size:34.560533pt;}
.fsa_c00453{font-size:34.667200pt;}
.fsc_c00453{font-size:35.733333pt;}
.fs1e_c00453{font-size:36.267200pt;}
.fs1b_c00453{font-size:36.800533pt;}
.fs25_c00453{font-size:40.000533pt;}
.fsb_c00453{font-size:41.066667pt;}
.fs2d_c00453{font-size:42.133867pt;}
.fs8_c00453{font-size:42.666667pt;}
.fse_c00453{font-size:43.200000pt;}
.fs7_c00453{font-size:44.800000pt;}
.fs0_c00453{font-size:45.333333pt;}
.fs9_c00453{font-size:46.933333pt;}
.fs1c_c00453{font-size:49.066667pt;}
.fs2_c00453{font-size:50.133333pt;}
.fs3_c00453{font-size:56.000000pt;}
.fs2a_c00453{font-size:61.333333pt;}
.fs2e_c00453{font-size:65.600000pt;}
.fs10_c00453{font-size:66.133333pt;}
.fs17_c00453{font-size:74.240000pt;}
.fs1a_c00453{font-size:75.733333pt;}
.fs4_c00453{font-size:85.866667pt;}
.fs14_c00453{font-size:89.600000pt;}
.fs19_c00453{font-size:124.266667pt;}
.fs1d_c00453{font-size:125.333333pt;}
.fs27_c00453{font-size:125.440000pt;}
.fs5_c00453{font-size:126.933333pt;}
.fs29_c00453{font-size:133.120000pt;}
.fs18_c00453{font-size:144.533333pt;}
.fs16_c00453{font-size:154.133333pt;}
.fs1_c00453{font-size:155.200000pt;}
.fs28_c00453{font-size:161.600000pt;}
.y0_c00453{bottom:0.000000pt;}
.y30_c00453{bottom:165.760000pt;}
.y2d_c00453{bottom:299.533333pt;}
.y2f_c00453{bottom:299.853333pt;}
.y2e_c00453{bottom:300.173333pt;}
.y2c_c00453{bottom:324.173333pt;}
.y2a_c00453{bottom:331.213333pt;}
.y2b_c00453{bottom:338.253333pt;}
.y29_c00453{bottom:348.173333pt;}
.y27_c00453{bottom:351.680000pt;}
.y26_c00453{bottom:355.840000pt;}
.y25_c00453{bottom:368.013333pt;}
.y24_c00453{bottom:380.493333pt;}
.y28_c00453{bottom:385.933333pt;}
.y23_c00453{bottom:421.760000pt;}
.y22_c00453{bottom:425.600000pt;}
.y21_c00453{bottom:434.253333pt;}
.y20_c00453{bottom:441.293333pt;}
.y1f_c00453{bottom:442.573333pt;}
.y1c_c00453{bottom:473.293333pt;}
.y1e_c00453{bottom:484.173333pt;}
.y1d_c00453{bottom:487.373333pt;}
.y1b_c00453{bottom:490.573333pt;}
.y1a_c00453{bottom:505.293333pt;}
.y19_c00453{bottom:530.880000pt;}
.y17_c00453{bottom:589.133333pt;}
.y18_c00453{bottom:589.453333pt;}
.yc_c00453{bottom:689.613333pt;}
.y16_c00453{bottom:690.253333pt;}
.y11_c00453{bottom:768.640000pt;}
.yb_c00453{bottom:777.933333pt;}
.ya_c00453{bottom:789.453333pt;}
.y15_c00453{bottom:789.773333pt;}
.y9_c00453{bottom:893.773333pt;}
.y14_c00453{bottom:895.693333pt;}
.y10_c00453{bottom:896.640000pt;}
.y7_c00453{bottom:904.960000pt;}
.y8_c00453{bottom:910.400000pt;}
.y13_c00453{bottom:911.360000pt;}
.y6_c00453{bottom:938.880000pt;}
.y4_c00453{bottom:962.253333pt;}
.y5_c00453{bottom:968.013333pt;}
.y3_c00453{bottom:994.576667pt;}
.y12_c00453{bottom:996.173333pt;}
.ye_c00453{bottom:1000.333333pt;}
.y1_c00453{bottom:1009.613333pt;}
.y2_c00453{bottom:1009.933333pt;}
.yd_c00453{bottom:1010.253333pt;}
.yf_c00453{bottom:1010.573333pt;}
.h11_c00453{height:8.524800pt;}
.h21_c00453{height:9.377280pt;}
.h25_c00453{height:10.468750pt;}
.h22_c00453{height:13.906806pt;}
.h2c_c00453{height:14.126304pt;}
.h20_c00453{height:14.462500pt;}
.h1f_c00453{height:15.575556pt;}
.h15_c00453{height:19.607395pt;}
.h23_c00453{height:20.025000pt;}
.h6_c00453{height:23.017315pt;}
.h12_c00453{height:25.587500pt;}
.h1e_c00453{height:28.266148pt;}
.h13_c00453{height:28.368750pt;}
.h2d_c00453{height:31.150000pt;}
.h26_c00453{height:33.500523pt;}
.hc_c00453{height:34.487500pt;}
.he_c00453{height:35.600556pt;}
.h10_c00453{height:36.156806pt;}
.hb_c00453{height:37.268750pt;}
.h1d_c00453{height:37.825556pt;}
.h2e_c00453{height:41.352086pt;}
.h24_c00453{height:41.719306pt;}
.h2_c00453{height:44.492188pt;}
.h8_c00453{height:44.500000pt;}
.hd_c00453{height:45.056250pt;}
.h9_c00453{height:46.062500pt;}
.h7_c00453{height:46.725000pt;}
.h17_c00453{height:49.443840pt;}
.h1b_c00453{height:51.175000pt;}
.h14_c00453{height:59.673600pt;}
.h2b_c00453{height:63.968750pt;}
.h2f_c00453{height:66.112500pt;}
.hf_c00453{height:68.975000pt;}
.h1a_c00453{height:78.987500pt;}
.ha_c00453{height:82.511250pt;}
.h27_c00453{height:83.543040pt;}
.h4_c00453{height:84.273438pt;}
.h2a_c00453{height:88.657920pt;}
.h19_c00453{height:129.606250pt;}
.h1c_c00453{height:130.718750pt;}
.h5_c00453{height:132.387500pt;}
.h18_c00453{height:150.743750pt;}
.h16_c00453{height:151.273437pt;}
.h28_c00453{height:158.522656pt;}
.h29_c00453{height:158.601562pt;}
.h3_c00453{height:161.868750pt;}
.h1_c00453{height:1122.666667pt;}
.h0_c00453{height:1122.880000pt;}
.w1_c00453{width:793.333333pt;}
.w0_c00453{width:793.600000pt;}
.x0_c00453{left:0.000000pt;}
.x9_c00453{left:69.346667pt;}
.x3_c00453{left:76.655407pt;}
.x21_c00453{left:78.253333pt;}
.x1_c00453{left:97.226667pt;}
.x4_c00453{left:100.680000pt;}
.x54_c00453{left:104.200000pt;}
.x22_c00453{left:106.240000pt;}
.x36_c00453{left:110.186667pt;}
.x3e_c00453{left:115.973333pt;}
.x2b_c00453{left:118.080000pt;}
.xa_c00453{left:119.986667pt;}
.x37_c00453{left:121.520000pt;}
.x3f_c00453{left:122.880000pt;}
.x8_c00453{left:130.746667pt;}
.x39_c00453{left:132.973333pt;}
.x6_c00453{left:136.106667pt;}
.x3a_c00453{left:137.493333pt;}
.x3b_c00453{left:139.386667pt;}
.x2c_c00453{left:140.346667pt;}
.xb_c00453{left:142.600000pt;}
.x2d_c00453{left:144.826667pt;}
.x59_c00453{left:147.400000pt;}
.x2e_c00453{left:150.400000pt;}
.x38_c00453{left:151.426667pt;}
.x40_c00453{left:158.506667pt;}
.x3d_c00453{left:160.640000pt;}
.xc_c00453{left:164.653333pt;}
.x41_c00453{left:167.933333pt;}
.x7_c00453{left:171.266667pt;}
.x3c_c00453{left:176.226667pt;}
.x47_c00453{left:179.066667pt;}
.x5_c00453{left:186.640000pt;}
.x48_c00453{left:187.946667pt;}
.x2_c00453{left:191.213333pt;}
.x23_c00453{left:196.306667pt;}
.x49_c00453{left:202.186667pt;}
.x2f_c00453{left:207.666667pt;}
.x4a_c00453{left:209.853333pt;}
.x30_c00453{left:213.840000pt;}
.x31_c00453{left:223.826667pt;}
.x10_c00453{left:229.786667pt;}
.x32_c00453{left:231.693333pt;}
.x5a_c00453{left:255.493333pt;}
.x2a_c00453{left:256.973333pt;}
.x29_c00453{left:266.386667pt;}
.x33_c00453{left:278.413333pt;}
.x55_c00453{left:285.080000pt;}
.xd_c00453{left:286.013333pt;}
.x34_c00453{left:287.840000pt;}
.x4b_c00453{left:289.200000pt;}
.xe_c00453{left:290.386667pt;}
.x4c_c00453{left:292.040000pt;}
.x11_c00453{left:295.706667pt;}
.x5b_c00453{left:311.173333pt;}
.x5c_c00453{left:334.240000pt;}
.x4d_c00453{left:383.280000pt;}
.x12_c00453{left:384.653333pt;}
.x4e_c00453{left:386.440000pt;}
.x5d_c00453{left:387.346667pt;}
.x13_c00453{left:389.786667pt;}
.x17_c00453{left:402.613333pt;}
.x5e_c00453{left:405.893333pt;}
.x18_c00453{left:408.773333pt;}
.x19_c00453{left:418.493333pt;}
.x35_c00453{left:462.120000pt;}
.x5f_c00453{left:463.826667pt;}
.x56_c00453{left:474.840000pt;}
.xf_c00453{left:476.106667pt;}
.x4f_c00453{left:477.680000pt;}
.x14_c00453{left:479.800000pt;}
.x60_c00453{left:483.013333pt;}
.x15_c00453{left:484.226667pt;}
.x24_c00453{left:488.640000pt;}
.x16_c00453{left:498.693333pt;}
.x43_c00453{left:545.813333pt;}
.x44_c00453{left:546.800000pt;}
.x53_c00453{left:557.626667pt;}
.x45_c00453{left:564.626667pt;}
.x42_c00453{left:566.493333pt;}
.x57_c00453{left:568.493333pt;}
.x50_c00453{left:572.080000pt;}
.x25_c00453{left:573.586667pt;}
.x51_c00453{left:575.626667pt;}
.x26_c00453{left:578.546667pt;}
.x46_c00453{left:582.426667pt;}
.x52_c00453{left:593.706667pt;}
.x1d_c00453{left:610.893333pt;}
.x1e_c00453{left:614.240000pt;}
.x1f_c00453{left:659.173333pt;}
.x58_c00453{left:663.000000pt;}
.x1a_c00453{left:664.933333pt;}
.x27_c00453{left:667.986667pt;}
.x1b_c00453{left:668.946667pt;}
.x28_c00453{left:672.693333pt;}
.x20_c00453{left:697.506667pt;}
.x1c_c00453{left:698.413333pt;}
}





/* 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_c00454 {
    display:none;
  }
  .loading-indicator_c00454.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00454 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_c00454 { 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_c00454" -> "#page-container .classname_c00454")
 */
.pf_c00454 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00454 { /* 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_c00454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00454 { /* 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_c00454 { /* 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_c00454 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00454 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00454 {overflow:visible;}
  }
}
.c_c00454 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00454 { /* 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_c00454:after { /* webkit #35443 */
  content: '';
}
.t_c00454:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00454 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 */
}
.__c00454 { /* 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_c00454 { /* info for Javascript */
  display:none;
}
.l_c00454 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00454 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00454 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00454: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_c00454 {
    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_c00454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00454.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_c00454 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00454{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00454;src:url('chunks/assets/font_31cb436969e71f4225b1bab2.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.284668;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_c00454;src:url('chunks/assets/font_37e207855a2f99530599fc18.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:0.666000;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_c00454;src:url('chunks/assets/font_9f3971d7e74ef4b3aada073a.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.284180;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_c00454;src:url('chunks/assets/font_4b7cdd4ca0f90bd35ef33bdb.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;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;}
.m5_c00454{transform:matrix(0.056512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056512,0.000000,0.000000,0.250000,0,0);}
.m4_c00454{transform:matrix(0.062791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062791,0.000000,0.000000,0.250000,0,0);}
.m8_c00454{transform:matrix(0.064009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064009,0.000000,0.000000,0.250000,0,0);}
.m7_c00454{transform:matrix(0.065930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065930,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{transform:matrix(0.184739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184739,0.000000,0.000000,0.250000,0,0);}
.m3_c00454{transform:matrix(0.191301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191301,0.000000,0.000000,0.250000,0,0);}
.m6_c00454{transform:matrix(0.207733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207733,0.000000,0.000000,0.250000,0,0);}
.mc_c00454{transform:matrix(0.215631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215631,0.000000,0.000000,0.250000,0,0);}
.me_c00454{transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);}
.m9_c00454{transform:matrix(0.245476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245476,0.000000,0.000000,0.250000,0,0);}
.m0_c00454{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);}
.ma_c00454{transform:matrix(0.254183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254183,0.000000,0.000000,0.250000,0,0);}
.m2_c00454{transform:matrix(0.255925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255925,0.000000,0.000000,0.250000,0,0);}
.md_c00454{transform:matrix(0.255992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255992,0.000000,0.000000,0.250000,0,0);}
.mb_c00454{transform:matrix(0.317548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317548,0.000000,0.000000,0.250000,0,0);}
.v5_c00454{vertical-align:-4.320000px;}
.v3_c00454{vertical-align:-2.940000px;}
.v1_c00454{vertical-align:-1.440000px;}
.v0_c00454{vertical-align:0.000000px;}
.v2_c00454{vertical-align:1.450800px;}
.v4_c00454{vertical-align:2.957400px;}
.ls43_c00454{letter-spacing:-8.484021px;}
.ls44_c00454{letter-spacing:-3.199688px;}
.ls3d_c00454{letter-spacing:-2.394000px;}
.ls4a_c00454{letter-spacing:-2.163000px;}
.ls45_c00454{letter-spacing:-1.953000px;}
.ls48_c00454{letter-spacing:-1.890000px;}
.ls3a_c00454{letter-spacing:-1.429560px;}
.ls41_c00454{letter-spacing:-0.868680px;}
.ls4b_c00454{letter-spacing:-0.651900px;}
.ls3b_c00454{letter-spacing:-0.526680px;}
.ls3e_c00454{letter-spacing:-0.239400px;}
.ls3c_c00454{letter-spacing:0.000000px;}
.ls34_c00454{letter-spacing:0.014760px;}
.lse_c00454{letter-spacing:0.034200px;}
.ls4c_c00454{letter-spacing:0.204180px;}
.ls36_c00454{letter-spacing:0.305040px;}
.ls39_c00454{letter-spacing:0.307500px;}
.ls37_c00454{letter-spacing:0.396060px;}
.ls26_c00454{letter-spacing:0.404700px;}
.ls38_c00454{letter-spacing:0.420660px;}
.ls35_c00454{letter-spacing:0.482160px;}
.ls1c_c00454{letter-spacing:0.615600px;}
.ls42_c00454{letter-spacing:0.629280px;}
.ls33_c00454{letter-spacing:0.666660px;}
.ls3_c00454{letter-spacing:0.752400px;}
.ls16_c00454{letter-spacing:0.775200px;}
.ls21_c00454{letter-spacing:0.820800px;}
.ls2c_c00454{letter-spacing:0.849300px;}
.ls29_c00454{letter-spacing:0.872100px;}
.ls2_c00454{letter-spacing:0.916560px;}
.ls6_c00454{letter-spacing:0.923400px;}
.ls31_c00454{letter-spacing:0.940500px;}
.ls2b_c00454{letter-spacing:0.946200px;}
.ls3f_c00454{letter-spacing:0.998640px;}
.ls0_c00454{letter-spacing:1.012320px;}
.ls18_c00454{letter-spacing:1.026000px;}
.lsb_c00454{letter-spacing:1.060200px;}
.ls13_c00454{letter-spacing:1.094400px;}
.ls14_c00454{letter-spacing:1.111500px;}
.ls2f_c00454{letter-spacing:1.117200px;}
.lsf_c00454{letter-spacing:1.121760px;}
.ls17_c00454{letter-spacing:1.134300px;}
.ls10_c00454{letter-spacing:1.157100px;}
.ls22_c00454{letter-spacing:1.202700px;}
.ls30_c00454{letter-spacing:1.214100px;}
.ls4_c00454{letter-spacing:1.217520px;}
.ls11_c00454{letter-spacing:1.236900px;}
.ls20_c00454{letter-spacing:1.271100px;}
.ls1f_c00454{letter-spacing:1.288200px;}
.ls1d_c00454{letter-spacing:1.293900px;}
.ls12_c00454{letter-spacing:1.299600px;}
.ls5_c00454{letter-spacing:1.333800px;}
.ls8_c00454{letter-spacing:1.354320px;}
.ls47_c00454{letter-spacing:1.362300px;}
.ls28_c00454{letter-spacing:1.390800px;}
.ls27_c00454{letter-spacing:1.419300px;}
.ls2a_c00454{letter-spacing:1.436400px;}
.ls15_c00454{letter-spacing:1.442100px;}
.lsa_c00454{letter-spacing:1.456920px;}
.ls9_c00454{letter-spacing:1.477440px;}
.ls25_c00454{letter-spacing:1.487700px;}
.lsd_c00454{letter-spacing:1.497960px;}
.ls1b_c00454{letter-spacing:1.551240px;}
.ls19_c00454{letter-spacing:1.567980px;}
.ls2e_c00454{letter-spacing:1.613100px;}
.ls7_c00454{letter-spacing:1.648440px;}
.ls2d_c00454{letter-spacing:1.698600px;}
.ls32_c00454{letter-spacing:1.727100px;}
.ls1e_c00454{letter-spacing:1.772700px;}
.ls24_c00454{letter-spacing:1.806900px;}
.ls1_c00454{letter-spacing:2.079360px;}
.lsc_c00454{letter-spacing:2.188800px;}
.ls1a_c00454{letter-spacing:2.204100px;}
.ls23_c00454{letter-spacing:2.622000px;}
.ls46_c00454{letter-spacing:2.790000px;}
.ls49_c00454{letter-spacing:2.850000px;}
.ls40_c00454{letter-spacing:3.420000px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{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__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00454{word-spacing:0.000000px;}
._31_c00454{margin-left:-9.283200px;}
._27_c00454{margin-left:-6.338400px;}
._1_c00454{margin-left:-3.926160px;}
._3_c00454{margin-left:-2.893320px;}
._4_c00454{margin-left:-1.785240px;}
._5_c00454{width:1.026000px;}
._2_c00454{width:2.038320px;}
._7_c00454{width:3.474720px;}
._6_c00454{width:4.682520px;}
._0_c00454{width:6.689520px;}
._8_c00454{width:8.488440px;}
._f_c00454{width:54.070200px;}
._12_c00454{width:55.911600px;}
._b_c00454{width:57.529800px;}
._a_c00454{width:58.924800px;}
._11_c00454{width:60.375600px;}
._10_c00454{width:63.109800px;}
._9_c00454{width:124.239000px;}
._37_c00454{width:156.662400px;}
._d_c00454{width:158.137200px;}
._1a_c00454{width:159.233040px;}
._1c_c00454{width:162.099000px;}
._c_c00454{width:163.549800px;}
._1d_c00454{width:165.056400px;}
._3d_c00454{width:239.088900px;}
._2e_c00454{width:240.879780px;}
._22_c00454{width:254.950200px;}
._23_c00454{width:257.313960px;}
._16_c00454{width:260.530200px;}
._36_c00454{width:262.371600px;}
._1e_c00454{width:263.431800px;}
._1b_c00454{width:265.132800px;}
._34_c00454{width:306.457200px;}
._40_c00454{width:343.678920px;}
._1f_c00454{width:357.008400px;}
._e_c00454{width:359.910000px;}
._15_c00454{width:362.811600px;}
._38_c00454{width:365.691000px;}
._21_c00454{width:366.940800px;}
._35_c00454{width:382.883880px;}
._25_c00454{width:462.135600px;}
._45_c00454{width:466.405200px;}
._29_c00454{width:469.860000px;}
._26_c00454{width:496.899600px;}
._14_c00454{width:532.858800px;}
._3b_c00454{width:555.182580px;}
._2b_c00454{width:563.523600px;}
._28_c00454{width:595.499100px;}
._18_c00454{width:640.191000px;}
._2a_c00454{width:663.930000px;}
._17_c00454{width:668.818800px;}
._43_c00454{width:677.045340px;}
._20_c00454{width:720.824400px;}
._3a_c00454{width:735.996300px;}
._2c_c00454{width:937.621200px;}
._2f_c00454{width:955.781400px;}
._44_c00454{width:967.404600px;}
._30_c00454{width:969.580800px;}
._3c_c00454{width:1072.699200px;}
._3f_c00454{width:1169.344800px;}
._3e_c00454{width:1297.844040px;}
._24_c00454{width:1323.380820px;}
._2d_c00454{width:1475.910000px;}
._42_c00454{width:1698.966240px;}
._33_c00454{width:1873.855860px;}
._39_c00454{width:1896.819000px;}
._13_c00454{width:1943.904000px;}
._41_c00454{width:2085.022800px;}
._32_c00454{width:2248.980000px;}
._19_c00454{width:2350.945200px;}
.fc0_c00454{color:transparent;}
.fsb_c00454{font-size:24.600000px;}
.fs9_c00454{font-size:54.000000px;}
.fs7_c00454{font-size:54.600000px;}
.fs4_c00454{font-size:55.800000px;}
.fs8_c00454{font-size:56.400000px;}
.fs3_c00454{font-size:57.000000px;}
.fs6_c00454{font-size:58.800000px;}
.fs5_c00454{font-size:61.200000px;}
.fsa_c00454{font-size:61.800000px;}
.fs0_c00454{font-size:68.400000px;}
.fs1_c00454{font-size:200.160600px;}
.fs2_c00454{font-size:242.400600px;}
.y0_c00454{bottom:0.000000px;}
.y27_c00454{bottom:32.760015px;}
.y26_c00454{bottom:73.815015px;}
.y25_c00454{bottom:136.080015px;}
.y24_c00454{bottom:137.175015px;}
.y23_c00454{bottom:154.080015px;}
.y22_c00454{bottom:155.175015px;}
.y21_c00454{bottom:173.175015px;}
.y20_c00454{bottom:190.815015px;}
.y1f_c00454{bottom:209.175015px;}
.y1e_c00454{bottom:226.815015px;}
.y1d_c00454{bottom:244.815015px;}
.y1c_c00454{bottom:262.815015px;}
.y1b_c00454{bottom:280.455015px;}
.y1a_c00454{bottom:298.080015px;}
.y19_c00454{bottom:316.080015px;}
.y18_c00454{bottom:334.080015px;}
.y17_c00454{bottom:351.735015px;}
.y16_c00454{bottom:369.735015px;}
.y15_c00454{bottom:387.735015px;}
.y14_c00454{bottom:405.000015px;}
.y13_c00454{bottom:405.735015px;}
.y12_c00454{bottom:423.375015px;}
.y11_c00454{bottom:441.375015px;}
.y10_c00454{bottom:458.655015px;}
.yf_c00454{bottom:476.295015px;}
.yd_c00454{bottom:476.655015px;}
.ye_c00454{bottom:477.735015px;}
.yc_c00454{bottom:494.655015px;}
.yb_c00454{bottom:512.655015px;}
.ya_c00454{bottom:530.295015px;}
.y9_c00454{bottom:548.655015px;}
.y8_c00454{bottom:566.295015px;}
.y7_c00454{bottom:584.655015px;}
.y6_c00454{bottom:602.655015px;}
.y5_c00454{bottom:620.295015px;}
.y4_c00454{bottom:620.655015px;}
.y3_c00454{bottom:644.055015px;}
.y2_c00454{bottom:708.480015px;}
.y1_c00454{bottom:740.520015px;}
.he_c00454{height:25.657031px;}
.h6_c00454{height:54.764648px;}
.h5_c00454{height:55.914551px;}
.hc_c00454{height:55.943437px;}
.ha_c00454{height:56.208984px;}
.h7_c00454{height:56.215448px;}
.hb_c00454{height:56.320312px;}
.h9_c00454{height:57.124453px;}
.h8_c00454{height:58.564453px;}
.hd_c00454{height:60.653320px;}
.h2_c00454{height:67.130859px;}
.h3_c00454{height:133.306960px;}
.h4_c00454{height:237.902933px;}
.h1_c00454{height:892.500000px;}
.h0_c00454{height:892.800015px;}
.w1_c00454{width:1263.000000px;}
.w0_c00454{width:1263.239989px;}
.x0_c00454{left:0.000000px;}
.x1_c00454{left:152.129989px;}
.x5_c00454{left:212.414989px;}
.x13_c00454{left:219.734990px;}
.xe_c00454{left:235.964989px;}
.xf_c00454{left:252.914989px;}
.x3_c00454{left:397.079989px;}
.x4_c00454{left:428.234989px;}
.x14_c00454{left:447.359989px;}
.xc_c00454{left:494.159989px;}
.xd_c00454{left:523.319990px;}
.x17_c00454{left:527.759990px;}
.x15_c00454{left:574.079990px;}
.x16_c00454{left:584.834990px;}
.x10_c00454{left:598.574990px;}
.x6_c00454{left:644.309990px;}
.x7_c00454{left:669.524990px;}
.x11_c00454{left:674.879989px;}
.x8_c00454{left:694.814990px;}
.x12_c00454{left:849.224989px;}
.x9_c00454{left:871.829990px;}
.xa_c00454{left:897.659989px;}
.xb_c00454{left:922.304989px;}
.x2_c00454{left:1004.684990px;}
@media print{
.v5_c00454{vertical-align:-3.840000pt;}
.v3_c00454{vertical-align:-2.613333pt;}
.v1_c00454{vertical-align:-1.280000pt;}
.v0_c00454{vertical-align:0.000000pt;}
.v2_c00454{vertical-align:1.289600pt;}
.v4_c00454{vertical-align:2.628800pt;}
.ls43_c00454{letter-spacing:-7.541352pt;}
.ls44_c00454{letter-spacing:-2.844167pt;}
.ls3d_c00454{letter-spacing:-2.128000pt;}
.ls4a_c00454{letter-spacing:-1.922667pt;}
.ls45_c00454{letter-spacing:-1.736000pt;}
.ls48_c00454{letter-spacing:-1.680000pt;}
.ls3a_c00454{letter-spacing:-1.270720pt;}
.ls41_c00454{letter-spacing:-0.772160pt;}
.ls4b_c00454{letter-spacing:-0.579467pt;}
.ls3b_c00454{letter-spacing:-0.468160pt;}
.ls3e_c00454{letter-spacing:-0.212800pt;}
.ls3c_c00454{letter-spacing:0.000000pt;}
.ls34_c00454{letter-spacing:0.013120pt;}
.lse_c00454{letter-spacing:0.030400pt;}
.ls4c_c00454{letter-spacing:0.181493pt;}
.ls36_c00454{letter-spacing:0.271147pt;}
.ls39_c00454{letter-spacing:0.273333pt;}
.ls37_c00454{letter-spacing:0.352053pt;}
.ls26_c00454{letter-spacing:0.359733pt;}
.ls38_c00454{letter-spacing:0.373920pt;}
.ls35_c00454{letter-spacing:0.428587pt;}
.ls1c_c00454{letter-spacing:0.547200pt;}
.ls42_c00454{letter-spacing:0.559360pt;}
.ls33_c00454{letter-spacing:0.592587pt;}
.ls3_c00454{letter-spacing:0.668800pt;}
.ls16_c00454{letter-spacing:0.689067pt;}
.ls21_c00454{letter-spacing:0.729600pt;}
.ls2c_c00454{letter-spacing:0.754933pt;}
.ls29_c00454{letter-spacing:0.775200pt;}
.ls2_c00454{letter-spacing:0.814720pt;}
.ls6_c00454{letter-spacing:0.820800pt;}
.ls31_c00454{letter-spacing:0.836000pt;}
.ls2b_c00454{letter-spacing:0.841067pt;}
.ls3f_c00454{letter-spacing:0.887680pt;}
.ls0_c00454{letter-spacing:0.899840pt;}
.ls18_c00454{letter-spacing:0.912000pt;}
.lsb_c00454{letter-spacing:0.942400pt;}
.ls13_c00454{letter-spacing:0.972800pt;}
.ls14_c00454{letter-spacing:0.988000pt;}
.ls2f_c00454{letter-spacing:0.993067pt;}
.lsf_c00454{letter-spacing:0.997120pt;}
.ls17_c00454{letter-spacing:1.008267pt;}
.ls10_c00454{letter-spacing:1.028533pt;}
.ls22_c00454{letter-spacing:1.069067pt;}
.ls30_c00454{letter-spacing:1.079200pt;}
.ls4_c00454{letter-spacing:1.082240pt;}
.ls11_c00454{letter-spacing:1.099467pt;}
.ls20_c00454{letter-spacing:1.129867pt;}
.ls1f_c00454{letter-spacing:1.145067pt;}
.ls1d_c00454{letter-spacing:1.150133pt;}
.ls12_c00454{letter-spacing:1.155200pt;}
.ls5_c00454{letter-spacing:1.185600pt;}
.ls8_c00454{letter-spacing:1.203840pt;}
.ls47_c00454{letter-spacing:1.210933pt;}
.ls28_c00454{letter-spacing:1.236267pt;}
.ls27_c00454{letter-spacing:1.261600pt;}
.ls2a_c00454{letter-spacing:1.276800pt;}
.ls15_c00454{letter-spacing:1.281867pt;}
.lsa_c00454{letter-spacing:1.295040pt;}
.ls9_c00454{letter-spacing:1.313280pt;}
.ls25_c00454{letter-spacing:1.322400pt;}
.lsd_c00454{letter-spacing:1.331520pt;}
.ls1b_c00454{letter-spacing:1.378880pt;}
.ls19_c00454{letter-spacing:1.393760pt;}
.ls2e_c00454{letter-spacing:1.433867pt;}
.ls7_c00454{letter-spacing:1.465280pt;}
.ls2d_c00454{letter-spacing:1.509867pt;}
.ls32_c00454{letter-spacing:1.535200pt;}
.ls1e_c00454{letter-spacing:1.575733pt;}
.ls24_c00454{letter-spacing:1.606133pt;}
.ls1_c00454{letter-spacing:1.848320pt;}
.lsc_c00454{letter-spacing:1.945600pt;}
.ls1a_c00454{letter-spacing:1.959200pt;}
.ls23_c00454{letter-spacing:2.330667pt;}
.ls46_c00454{letter-spacing:2.480000pt;}
.ls49_c00454{letter-spacing:2.533333pt;}
.ls40_c00454{letter-spacing:3.040000pt;}
.ws0_c00454{word-spacing:0.000000pt;}
._31_c00454{margin-left:-8.251733pt;}
._27_c00454{margin-left:-5.634133pt;}
._1_c00454{margin-left:-3.489920pt;}
._3_c00454{margin-left:-2.571840pt;}
._4_c00454{margin-left:-1.586880pt;}
._5_c00454{width:0.912000pt;}
._2_c00454{width:1.811840pt;}
._7_c00454{width:3.088640pt;}
._6_c00454{width:4.162240pt;}
._0_c00454{width:5.946240pt;}
._8_c00454{width:7.545280pt;}
._f_c00454{width:48.062400pt;}
._12_c00454{width:49.699200pt;}
._b_c00454{width:51.137600pt;}
._a_c00454{width:52.377600pt;}
._11_c00454{width:53.667200pt;}
._10_c00454{width:56.097600pt;}
._9_c00454{width:110.434667pt;}
._37_c00454{width:139.255467pt;}
._d_c00454{width:140.566400pt;}
._1a_c00454{width:141.540480pt;}
._1c_c00454{width:144.088000pt;}
._c_c00454{width:145.377600pt;}
._1d_c00454{width:146.716800pt;}
._3d_c00454{width:212.523467pt;}
._2e_c00454{width:214.115360pt;}
._22_c00454{width:226.622400pt;}
._23_c00454{width:228.723520pt;}
._16_c00454{width:231.582400pt;}
._36_c00454{width:233.219200pt;}
._1e_c00454{width:234.161600pt;}
._1b_c00454{width:235.673600pt;}
._34_c00454{width:272.406400pt;}
._40_c00454{width:305.492373pt;}
._1f_c00454{width:317.340800pt;}
._e_c00454{width:319.920000pt;}
._15_c00454{width:322.499200pt;}
._38_c00454{width:325.058667pt;}
._21_c00454{width:326.169600pt;}
._35_c00454{width:340.341227pt;}
._25_c00454{width:410.787200pt;}
._45_c00454{width:414.582400pt;}
._29_c00454{width:417.653333pt;}
._26_c00454{width:441.688533pt;}
._14_c00454{width:473.652267pt;}
._3b_c00454{width:493.495627pt;}
._2b_c00454{width:500.909867pt;}
._28_c00454{width:529.332533pt;}
._18_c00454{width:569.058667pt;}
._2a_c00454{width:590.160000pt;}
._17_c00454{width:594.505600pt;}
._43_c00454{width:601.818080pt;}
._20_c00454{width:640.732800pt;}
._3a_c00454{width:654.218933pt;}
._2c_c00454{width:833.441067pt;}
._2f_c00454{width:849.583467pt;}
._44_c00454{width:859.915200pt;}
._30_c00454{width:861.849600pt;}
._3c_c00454{width:953.510400pt;}
._3f_c00454{width:1039.417600pt;}
._3e_c00454{width:1153.639147pt;}
._24_c00454{width:1176.338507pt;}
._2d_c00454{width:1311.920000pt;}
._42_c00454{width:1510.192213pt;}
._33_c00454{width:1665.649653pt;}
._39_c00454{width:1686.061333pt;}
._13_c00454{width:1727.914667pt;}
._41_c00454{width:1853.353600pt;}
._32_c00454{width:1999.093333pt;}
._19_c00454{width:2089.729067pt;}
.fsb_c00454{font-size:21.866667pt;}
.fs9_c00454{font-size:48.000000pt;}
.fs7_c00454{font-size:48.533333pt;}
.fs4_c00454{font-size:49.600000pt;}
.fs8_c00454{font-size:50.133333pt;}
.fs3_c00454{font-size:50.666667pt;}
.fs6_c00454{font-size:52.266667pt;}
.fs5_c00454{font-size:54.400000pt;}
.fsa_c00454{font-size:54.933333pt;}
.fs0_c00454{font-size:60.800000pt;}
.fs1_c00454{font-size:177.920533pt;}
.fs2_c00454{font-size:215.467200pt;}
.y0_c00454{bottom:0.000000pt;}
.y27_c00454{bottom:29.120013pt;}
.y26_c00454{bottom:65.613347pt;}
.y25_c00454{bottom:120.960013pt;}
.y24_c00454{bottom:121.933347pt;}
.y23_c00454{bottom:136.960013pt;}
.y22_c00454{bottom:137.933347pt;}
.y21_c00454{bottom:153.933347pt;}
.y20_c00454{bottom:169.613347pt;}
.y1f_c00454{bottom:185.933347pt;}
.y1e_c00454{bottom:201.613347pt;}
.y1d_c00454{bottom:217.613347pt;}
.y1c_c00454{bottom:233.613347pt;}
.y1b_c00454{bottom:249.293347pt;}
.y1a_c00454{bottom:264.960013pt;}
.y19_c00454{bottom:280.960013pt;}
.y18_c00454{bottom:296.960013pt;}
.y17_c00454{bottom:312.653347pt;}
.y16_c00454{bottom:328.653347pt;}
.y15_c00454{bottom:344.653347pt;}
.y14_c00454{bottom:360.000013pt;}
.y13_c00454{bottom:360.653347pt;}
.y12_c00454{bottom:376.333347pt;}
.y11_c00454{bottom:392.333347pt;}
.y10_c00454{bottom:407.693347pt;}
.yf_c00454{bottom:423.373347pt;}
.yd_c00454{bottom:423.693347pt;}
.ye_c00454{bottom:424.653347pt;}
.yc_c00454{bottom:439.693347pt;}
.yb_c00454{bottom:455.693347pt;}
.ya_c00454{bottom:471.373347pt;}
.y9_c00454{bottom:487.693347pt;}
.y8_c00454{bottom:503.373347pt;}
.y7_c00454{bottom:519.693347pt;}
.y6_c00454{bottom:535.693347pt;}
.y5_c00454{bottom:551.373347pt;}
.y4_c00454{bottom:551.693347pt;}
.y3_c00454{bottom:572.493347pt;}
.y2_c00454{bottom:629.760013pt;}
.y1_c00454{bottom:658.240013pt;}
.he_c00454{height:22.806250pt;}
.h6_c00454{height:48.679688pt;}
.h5_c00454{height:49.701823pt;}
.hc_c00454{height:49.727500pt;}
.ha_c00454{height:49.963542pt;}
.h7_c00454{height:49.969288pt;}
.hb_c00454{height:50.062500pt;}
.h9_c00454{height:50.777292pt;}
.h8_c00454{height:52.057292pt;}
.hd_c00454{height:53.914062pt;}
.h2_c00454{height:59.671875pt;}
.h3_c00454{height:118.495075pt;}
.h4_c00454{height:211.469273pt;}
.h1_c00454{height:793.333333pt;}
.h0_c00454{height:793.600013pt;}
.w1_c00454{width:1122.666667pt;}
.w0_c00454{width:1122.879991pt;}
.x0_c00454{left:0.000000pt;}
.x1_c00454{left:135.226657pt;}
.x5_c00454{left:188.813324pt;}
.x13_c00454{left:195.319991pt;}
.xe_c00454{left:209.746657pt;}
.xf_c00454{left:224.813324pt;}
.x3_c00454{left:352.959991pt;}
.x4_c00454{left:380.653324pt;}
.x14_c00454{left:397.653324pt;}
.xc_c00454{left:439.253324pt;}
.xd_c00454{left:465.173324pt;}
.x17_c00454{left:469.119991pt;}
.x15_c00454{left:510.293324pt;}
.x16_c00454{left:519.853324pt;}
.x10_c00454{left:532.066657pt;}
.x6_c00454{left:572.719991pt;}
.x7_c00454{left:595.133324pt;}
.x11_c00454{left:599.893324pt;}
.x8_c00454{left:617.613324pt;}
.x12_c00454{left:754.866657pt;}
.x9_c00454{left:774.959991pt;}
.xa_c00454{left:797.919991pt;}
.xb_c00454{left:819.826657pt;}
.x2_c00454{left:893.053324pt;}
}





/* 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_c00455 {
    display:none;
  }
  .loading-indicator_c00455.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00455 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_c00455 { 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_c00455" -> "#page-container .classname_c00455")
 */
.pf_c00455 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00455 { /* 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_c00455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00455 { /* 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_c00455 { /* 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_c00455 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00455 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00455 {overflow:visible;}
  }
}
.c_c00455 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00455 { /* 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_c00455:after { /* webkit #35443 */
  content: '';
}
.t_c00455:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00455 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 */
}
.__c00455 { /* 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_c00455 { /* info for Javascript */
  display:none;
}
.l_c00455 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00455 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00455 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00455: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_c00455 {
    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_c00455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00455.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_c00455 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00455{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00455;src:url('chunks/assets/font_67da7de0ffb43d869bc3be4e.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.284668;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_c00455;src:url('chunks/assets/font_cb1785c646c67397980a2ea1.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;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_c00455;src:url('chunks/assets/font_2e03f251fe5457694997a240.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:0.666000;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_c00455;src:url('chunks/assets/font_3d230730dd08c50359956cba.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;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:ff5_c00455;src:url('chunks/assets/font_82dd7cf065dadb0b7bd0c544.woff2')format("woff");}.ff5_c00455{font-family:ff5_c00455;line-height:1.284180;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;}
.m19_c00455{transform:matrix(0.040437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040437,0.000000,0.000000,0.250000,0,0);}
.m1b_c00455{transform:matrix(0.042833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042833,0.000000,0.000000,0.250000,0,0);}
.m13_c00455{transform:matrix(0.042931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042931,0.000000,0.000000,0.250000,0,0);}
.mc_c00455{transform:matrix(0.043212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043212,0.000000,0.000000,0.250000,0,0);}
.m1c_c00455{transform:matrix(0.043269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043269,0.000000,0.000000,0.250000,0,0);}
.md_c00455{transform:matrix(0.044444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044444,0.000000,0.000000,0.250000,0,0);}
.m22_c00455{transform:matrix(0.047340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047340,0.000000,0.000000,0.250000,0,0);}
.m14_c00455{transform:matrix(0.049479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049479,0.000000,0.000000,0.250000,0,0);}
.m24_c00455{transform:matrix(0.050216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050216,0.000000,0.000000,0.250000,0,0);}
.m20_c00455{transform:matrix(0.050296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050296,0.000000,0.000000,0.250000,0,0);}
.m1e_c00455{transform:matrix(0.054948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054948,0.000000,0.000000,0.250000,0,0);}
.m8_c00455{transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);}
.m1a_c00455{transform:matrix(0.060204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060204,0.000000,0.000000,0.250000,0,0);}
.m4_c00455{transform:matrix(0.060547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060547,0.000000,0.000000,0.250000,0,0);}
.m10_c00455{transform:matrix(0.062503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062503,0.000000,0.000000,0.250000,0,0);}
.m23_c00455{transform:matrix(0.065385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065385,0.000000,0.000000,0.250000,0,0);}
.m9_c00455{transform:matrix(0.066966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066966,0.000000,0.000000,0.250000,0,0);}
.m17_c00455{transform:matrix(0.067308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067308,0.000000,0.000000,0.250000,0,0);}
.m26_c00455{transform:matrix(0.075721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075721,0.000000,0.000000,0.250000,0,0);}
.ma_c00455{transform:matrix(0.078203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078203,0.000000,0.000000,0.250000,0,0);}
.m21_c00455{transform:matrix(0.081735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081735,0.000000,0.000000,0.250000,0,0);}
.m5_c00455{transform:matrix(0.082773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082773,0.000000,0.000000,0.250000,0,0);}
.m1_c00455{transform:matrix(0.098896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098896,0.000000,0.000000,0.250000,0,0);}
.m3_c00455{transform:matrix(0.139876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139876,0.000000,0.000000,0.250000,0,0);}
.m12_c00455{transform:matrix(0.159509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159509,0.000000,0.000000,0.250000,0,0);}
.m16_c00455{transform:matrix(0.163361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163361,0.000000,0.000000,0.250000,0,0);}
.m33_c00455{transform:matrix(0.172361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172361,0.000000,0.000000,0.250000,0,0);}
.m15_c00455{transform:matrix(0.175397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175397,0.000000,0.000000,0.250000,0,0);}
.m11_c00455{transform:matrix(0.176489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176489,0.000000,0.000000,0.250000,0,0);}
.m1f_c00455{transform:matrix(0.187298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187298,0.000000,0.000000,0.250000,0,0);}
.m38_c00455{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m18_c00455{transform:matrix(0.212937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212937,0.000000,0.000000,0.250000,0,0);}
.m28_c00455{transform:matrix(0.217033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217033,0.000000,0.000000,0.250000,0,0);}
.m6_c00455{transform:matrix(0.220916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220916,0.000000,0.000000,0.250000,0,0);}
.m2f_c00455{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m36_c00455{transform:matrix(0.222276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222276,0.000000,0.000000,0.250000,0,0);}
.m2b_c00455{transform:matrix(0.223816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223816,0.000000,0.000000,0.250000,0,0);}
.m35_c00455{transform:matrix(0.228627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228627,0.000000,0.000000,0.250000,0,0);}
.m2a_c00455{transform:matrix(0.230598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230598,0.000000,0.000000,0.250000,0,0);}
.m2c_c00455{transform:matrix(0.230614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230614,0.000000,0.000000,0.250000,0,0);}
.m25_c00455{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m1d_c00455{transform:matrix(0.234113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234113,0.000000,0.000000,0.250000,0,0);}
.m29_c00455{transform:matrix(0.237379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237379,0.000000,0.000000,0.250000,0,0);}
.mb_c00455{transform:matrix(0.241513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241513,0.000000,0.000000,0.250000,0,0);}
.m31_c00455{transform:matrix(0.241616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241616,0.000000,0.000000,0.250000,0,0);}
.m2e_c00455{transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);}
.m27_c00455{transform:matrix(0.244162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244162,0.000000,0.000000,0.250000,0,0);}
.m32_c00455{transform:matrix(0.245497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245497,0.000000,0.000000,0.250000,0,0);}
.m3a_c00455{transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);}
.m30_c00455{transform:matrix(0.248146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248146,0.000000,0.000000,0.250000,0,0);}
.m34_c00455{transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);}
.m2d_c00455{transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);}
.m0_c00455{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);}
.m37_c00455{transform:matrix(0.253966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253966,0.000000,0.000000,0.250000,0,0);}
.m39_c00455{transform:matrix(0.280650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280650,0.000000,0.000000,0.250000,0,0);}
.m7_c00455{transform:matrix(0.316500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316500,0.000000,0.000000,0.250000,0,0);}
.m2_c00455{transform:matrix(0.323915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323915,0.000000,0.000000,0.250000,0,0);}
.mf_c00455{transform:matrix(0.376571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376571,0.000000,0.000000,0.250000,0,0);}
.me_c00455{transform:matrix(0.435468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435468,0.000000,0.000000,0.250000,0,0);}
.m3b_c00455{transform:matrix(4.803782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.803782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.803782,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls2c_c00455{letter-spacing:-2.415000px;}
.ls3f_c00455{letter-spacing:-2.394000px;}
.ls2d_c00455{letter-spacing:-2.373000px;}
.ls3d_c00455{letter-spacing:-2.121000px;}
.ls37_c00455{letter-spacing:-2.079000px;}
.ls3c_c00455{letter-spacing:-1.995000px;}
.ls32_c00455{letter-spacing:-1.890000px;}
.ls38_c00455{letter-spacing:-1.877040px;}
.ls36_c00455{letter-spacing:-1.302000px;}
.ls2f_c00455{letter-spacing:-1.197000px;}
.ls33_c00455{letter-spacing:-1.155021px;}
.ls29_c00455{letter-spacing:-1.062600px;}
.ls3b_c00455{letter-spacing:-1.045440px;}
.ls35_c00455{letter-spacing:-1.029021px;}
.ls3e_c00455{letter-spacing:-0.908820px;}
.ls34_c00455{letter-spacing:-0.903021px;}
.ls39_c00455{letter-spacing:-0.677160px;}
.ls48_c00455{letter-spacing:-0.651900px;}
.ls42_c00455{letter-spacing:-0.524400px;}
.ls44_c00455{letter-spacing:-0.404700px;}
.ls41_c00455{letter-spacing:-0.330600px;}
.ls47_c00455{letter-spacing:-0.255420px;}
.ls40_c00455{letter-spacing:-0.106920px;}
.ls2a_c00455{letter-spacing:0.000000px;}
.ls23_c00455{letter-spacing:0.014760px;}
.ls7_c00455{letter-spacing:0.029700px;}
.ls49_c00455{letter-spacing:0.204180px;}
.ls25_c00455{letter-spacing:0.305040px;}
.ls28_c00455{letter-spacing:0.307500px;}
.ls26_c00455{letter-spacing:0.396060px;}
.ls27_c00455{letter-spacing:0.420660px;}
.ls24_c00455{letter-spacing:0.482160px;}
.ls22_c00455{letter-spacing:0.666660px;}
.ls3a_c00455{letter-spacing:0.760320px;}
.ls30_c00455{letter-spacing:0.930000px;}
.ls1a_c00455{letter-spacing:0.957600px;}
.ls14_c00455{letter-spacing:1.043100px;}
.ls3_c00455{letter-spacing:1.083000px;}
.ls12_c00455{letter-spacing:1.088700px;}
.ls1_c00455{letter-spacing:1.097100px;}
.ls13_c00455{letter-spacing:1.117200px;}
.ls1c_c00455{letter-spacing:1.140000px;}
.lsa_c00455{letter-spacing:1.168500px;}
.lsd_c00455{letter-spacing:1.174200px;}
.ls9_c00455{letter-spacing:1.214100px;}
.ls45_c00455{letter-spacing:1.225500px;}
.ls2_c00455{letter-spacing:1.242600px;}
.ls21_c00455{letter-spacing:1.254000px;}
.ls11_c00455{letter-spacing:1.282500px;}
.ls16_c00455{letter-spacing:1.322400px;}
.ls1b_c00455{letter-spacing:1.328100px;}
.ls20_c00455{letter-spacing:1.333800px;}
.lsf_c00455{letter-spacing:1.368000px;}
.ls1d_c00455{letter-spacing:1.373700px;}
.ls8_c00455{letter-spacing:1.379400px;}
.ls5_c00455{letter-spacing:1.385100px;}
.ls0_c00455{letter-spacing:1.393800px;}
.ls2b_c00455{letter-spacing:1.410000px;}
.ls15_c00455{letter-spacing:1.442100px;}
.ls10_c00455{letter-spacing:1.470600px;}
.ls4_c00455{letter-spacing:1.476300px;}
.lsb_c00455{letter-spacing:1.499100px;}
.lse_c00455{letter-spacing:1.504800px;}
.ls1e_c00455{letter-spacing:1.556100px;}
.ls18_c00455{letter-spacing:1.561800px;}
.ls17_c00455{letter-spacing:1.573200px;}
.lsc_c00455{letter-spacing:1.584600px;}
.ls1f_c00455{letter-spacing:1.630200px;}
.ls19_c00455{letter-spacing:1.687200px;}
.ls6_c00455{letter-spacing:1.784100px;}
.ls31_c00455{letter-spacing:1.800000px;}
.ls2e_c00455{letter-spacing:1.980000px;}
.ls43_c00455{letter-spacing:2.850000px;}
.ls46_c00455{letter-spacing:3.090000px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{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__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00455{word-spacing:0.000000px;}
._39_c00455{margin-left:-3.898800px;}
._36_c00455{margin-left:-2.667600px;}
._f_c00455{margin-left:-1.153200px;}
._0_c00455{width:1.228200px;}
._1e_c00455{width:3.169200px;}
._1_c00455{width:4.664400px;}
._6_c00455{width:29.661480px;}
._4_c00455{width:38.134800px;}
._5_c00455{width:39.679200px;}
._11_c00455{width:44.847000px;}
._e_c00455{width:52.153200px;}
._15_c00455{width:53.222400px;}
._16_c00455{width:55.182600px;}
._3_c00455{width:56.608200px;}
._29_c00455{width:58.865400px;}
._12_c00455{width:60.112800px;}
._a_c00455{width:61.657200px;}
._21_c00455{width:127.734900px;}
._9_c00455{width:153.073800px;}
._1b_c00455{width:155.068200px;}
._14_c00455{width:156.697200px;}
._3e_c00455{width:157.766400px;}
._30_c00455{width:159.904800px;}
._13_c00455{width:161.389800px;}
._27_c00455{width:182.263200px;}
._44_c00455{width:191.775600px;}
._3d_c00455{width:198.618300px;}
._10_c00455{width:222.682200px;}
._b_c00455{width:256.667400px;}
._2b_c00455{width:257.766000px;}
._3f_c00455{width:259.281000px;}
._17_c00455{width:263.379600px;}
._7_c00455{width:265.768800px;}
._1c_c00455{width:306.682200px;}
._41_c00455{width:357.588000px;}
._32_c00455{width:359.726400px;}
._35_c00455{width:360.914400px;}
._47_c00455{width:461.603400px;}
._20_c00455{width:464.983200px;}
._28_c00455{width:468.334800px;}
._22_c00455{width:559.127400px;}
._18_c00455{width:563.112000px;}
._19_c00455{width:564.597000px;}
._40_c00455{width:570.418200px;}
._34_c00455{width:571.546800px;}
._3a_c00455{width:643.507800px;}
._33_c00455{width:658.033200px;}
._2f_c00455{width:669.171000px;}
._26_c00455{width:681.405300px;}
._42_c00455{width:718.879800px;}
._3c_c00455{width:729.744300px;}
._2e_c00455{width:746.347800px;}
._3b_c00455{width:758.835000px;}
._31_c00455{width:763.290000px;}
._8_c00455{width:767.626200px;}
._48_c00455{width:771.724800px;}
._2d_c00455{width:788.127000px;}
._1d_c00455{width:862.547400px;}
._43_c00455{width:1066.072800px;}
._45_c00455{width:1067.239800px;}
._c_c00455{width:1075.496400px;}
._2a_c00455{width:1144.736400px;}
._1a_c00455{width:1154.583360px;}
._24_c00455{width:1481.594700px;}
._d_c00455{width:1493.559000px;}
._2c_c00455{width:1680.544800px;}
._23_c00455{width:2082.687000px;}
._49_c00455{width:2147.275200px;}
._1f_c00455{width:2159.651400px;}
._46_c00455{width:2167.926600px;}
._38_c00455{width:2250.090000px;}
._25_c00455{width:2554.605300px;}
._37_c00455{width:2598.134400px;}
._2_c00455{width:2871.531600px;}
.fc0_c00455{color:transparent;}
.fs8_c00455{font-size:18.600000px;}
.fs19_c00455{font-size:24.600000px;}
.fsd_c00455{font-size:25.800600px;}
.fs3_c00455{font-size:28.200000px;}
.fs1_c00455{font-size:28.800600px;}
.fse_c00455{font-size:29.400600px;}
.fsb_c00455{font-size:33.000600px;}
.fs7_c00455{font-size:34.200000px;}
.fs9_c00455{font-size:36.000000px;}
.fsf_c00455{font-size:37.200000px;}
.fsc_c00455{font-size:37.440000px;}
.fs5_c00455{font-size:39.600000px;}
.fs2_c00455{font-size:46.080000px;}
.fs6_c00455{font-size:51.840000px;}
.fs17_c00455{font-size:52.200000px;}
.fsa_c00455{font-size:54.000000px;}
.fs13_c00455{font-size:55.800000px;}
.fs16_c00455{font-size:56.400000px;}
.fs11_c00455{font-size:57.000000px;}
.fs15_c00455{font-size:58.200000px;}
.fs10_c00455{font-size:59.400000px;}
.fs12_c00455{font-size:60.600000px;}
.fs18_c00455{font-size:61.800000px;}
.fs4_c00455{font-size:67.800000px;}
.fs14_c00455{font-size:68.400000px;}
.fs0_c00455{font-size:69.000000px;}
.y0_c00455{bottom:0.000000px;}
.y26_c00455{bottom:38.520015px;}
.y25_c00455{bottom:69.135015px;}
.y24_c00455{bottom:141.480015px;}
.y23_c00455{bottom:159.480015px;}
.y22_c00455{bottom:177.480015px;}
.y21_c00455{bottom:195.495015px;}
.y20_c00455{bottom:213.495015px;}
.y1f_c00455{bottom:231.495015px;}
.y1e_c00455{bottom:249.855015px;}
.y1d_c00455{bottom:267.495015px;}
.y1c_c00455{bottom:285.495015px;}
.y1b_c00455{bottom:303.495015px;}
.y1a_c00455{bottom:321.855015px;}
.y19_c00455{bottom:340.215015px;}
.y18_c00455{bottom:358.215015px;}
.y17_c00455{bottom:376.215015px;}
.y16_c00455{bottom:394.215015px;}
.y15_c00455{bottom:412.215015px;}
.y14_c00455{bottom:430.575015px;}
.y13_c00455{bottom:448.920015px;}
.y12_c00455{bottom:466.575015px;}
.y11_c00455{bottom:484.575015px;}
.y10_c00455{bottom:502.920015px;}
.yf_c00455{bottom:520.920015px;}
.ye_c00455{bottom:538.920015px;}
.yd_c00455{bottom:557.295015px;}
.yc_c00455{bottom:575.295015px;}
.yb_c00455{bottom:593.655015px;}
.ya_c00455{bottom:612.000015px;}
.y9_c00455{bottom:630.375015px;}
.y8_c00455{bottom:648.735015px;}
.y7_c00455{bottom:666.735015px;}
.y6_c00455{bottom:685.095015px;}
.y5_c00455{bottom:712.815015px;}
.y4_c00455{bottom:729.735015px;}
.y3_c00455{bottom:736.575015px;}
.y2_c00455{bottom:748.095015px;}
.y1_c00455{bottom:774.015015px;}
.h9_c00455{height:18.245801px;}
.hd_c00455{height:24.935040px;}
.he_c00455{height:25.321878px;}
.h19_c00455{height:25.657031px;}
.h4_c00455{height:27.676758px;}
.hf_c00455{height:30.663907px;}
.h3_c00455{height:30.689280px;}
.h8_c00455{height:33.565430px;}
.hc_c00455{height:34.418595px;}
.h7_c00455{height:34.525440px;}
.ha_c00455{height:37.546875px;}
.h10_c00455{height:38.798438px;}
.h6_c00455{height:41.301562px;}
.hb_c00455{height:52.971680px;}
.h12_c00455{height:55.914551px;}
.h17_c00455{height:58.197656px;}
.h11_c00455{height:58.297852px;}
.h16_c00455{height:58.823438px;}
.h13_c00455{height:59.475586px;}
.h18_c00455{height:60.653320px;}
.h15_c00455{height:60.700781px;}
.h5_c00455{height:66.541992px;}
.h14_c00455{height:67.130859px;}
.h2_c00455{height:67.719727px;}
.h1_c00455{height:892.500000px;}
.h0_c00455{height:892.800015px;}
.w1_c00455{width:1263.000000px;}
.w0_c00455{width:1263.240015px;}
.x0_c00455{left:0.000000px;}
.x2_c00455{left:149.400015px;}
.x1_c00455{left:152.850015px;}
.x3e_c00455{left:154.155015px;}
.x45_c00455{left:155.235015px;}
.x4a_c00455{left:156.360015px;}
.x4d_c00455{left:157.440015px;}
.x15_c00455{left:159.000015px;}
.x16_c00455{left:161.790015px;}
.x17_c00455{left:163.080015px;}
.x18_c00455{left:183.975015px;}
.x19_c00455{left:205.575015px;}
.x48_c00455{left:219.360015px;}
.x4e_c00455{left:221.085015px;}
.x46_c00455{left:231.630015px;}
.x3f_c00455{left:242.325015px;}
.x44_c00455{left:260.100015px;}
.x50_c00455{left:261.975015px;}
.x1a_c00455{left:265.695015px;}
.x1b_c00455{left:318.975015px;}
.xb_c00455{left:338.910015px;}
.x3_c00455{left:343.335015px;}
.x26_c00455{left:348.225015px;}
.x4f_c00455{left:352.650015px;}
.x4_c00455{left:389.340015px;}
.x27_c00455{left:396.225015px;}
.x49_c00455{left:402.030015px;}
.xc_c00455{left:415.455015px;}
.x28_c00455{left:421.470015px;}
.x40_c00455{left:425.730015px;}
.x29_c00455{left:446.985015px;}
.x2a_c00455{left:472.200015px;}
.x41_c00455{left:475.710015px;}
.x2b_c00455{left:497.385015px;}
.x2c_c00455{left:522.975015px;}
.x52_c00455{left:531.360015px;}
.x2d_c00455{left:547.770015px;}
.x2e_c00455{left:573.705015px;}
.x5_c00455{left:578.520015px;}
.xd_c00455{left:591.135015px;}
.x6_c00455{left:592.575015px;}
.xe_c00455{left:622.095015px;}
.x1c_c00455{left:625.335015px;}
.x1d_c00455{left:636.315015px;}
.x2f_c00455{left:648.630015px;}
.xf_c00455{left:665.910015px;}
.x30_c00455{left:673.845015px;}
.x1e_c00455{left:693.375015px;}
.x31_c00455{left:699.390015px;}
.x51_c00455{left:722.895015px;}
.x32_c00455{left:724.590015px;}
.x10_c00455{left:748.455015px;}
.x33_c00455{left:750.150015px;}
.x42_c00455{left:754.815015px;}
.x11_c00455{left:770.955015px;}
.x34_c00455{left:776.070015px;}
.x43_c00455{left:781.050015px;}
.x1f_c00455{left:783.990015px;}
.x12_c00455{left:795.435015px;}
.x35_c00455{left:801.630015px;}
.x7_c00455{left:809.760015px;}
.x13_c00455{left:821.520015px;}
.x36_c00455{left:826.830015px;}
.x20_c00455{left:847.455015px;}
.x37_c00455{left:852.750015px;}
.x4b_c00455{left:855.645015px;}
.x14_c00455{left:874.455015px;}
.x38_c00455{left:877.950015px;}
.x8_c00455{left:883.365015px;}
.x4c_c00455{left:884.370015px;}
.x9_c00455{left:920.880015px;}
.x21_c00455{left:922.335015px;}
.x39_c00455{left:928.650015px;}
.x22_c00455{left:951.135015px;}
.x3a_c00455{left:953.835015px;}
.x23_c00455{left:974.175015px;}
.x3b_c00455{left:979.035015px;}
.xa_c00455{left:981.360015px;}
.x47_c00455{left:984.810015px;}
.x3c_c00455{left:1004.220015px;}
.x24_c00455{left:1008.720015px;}
.x25_c00455{left:1024.560015px;}
.x3d_c00455{left:1029.435015px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls2c_c00455{letter-spacing:-2.146667pt;}
.ls3f_c00455{letter-spacing:-2.128000pt;}
.ls2d_c00455{letter-spacing:-2.109333pt;}
.ls3d_c00455{letter-spacing:-1.885333pt;}
.ls37_c00455{letter-spacing:-1.848000pt;}
.ls3c_c00455{letter-spacing:-1.773333pt;}
.ls32_c00455{letter-spacing:-1.680000pt;}
.ls38_c00455{letter-spacing:-1.668480pt;}
.ls36_c00455{letter-spacing:-1.157333pt;}
.ls2f_c00455{letter-spacing:-1.064000pt;}
.ls33_c00455{letter-spacing:-1.026685pt;}
.ls29_c00455{letter-spacing:-0.944533pt;}
.ls3b_c00455{letter-spacing:-0.929280pt;}
.ls35_c00455{letter-spacing:-0.914685pt;}
.ls3e_c00455{letter-spacing:-0.807840pt;}
.ls34_c00455{letter-spacing:-0.802685pt;}
.ls39_c00455{letter-spacing:-0.601920pt;}
.ls48_c00455{letter-spacing:-0.579467pt;}
.ls42_c00455{letter-spacing:-0.466133pt;}
.ls44_c00455{letter-spacing:-0.359733pt;}
.ls41_c00455{letter-spacing:-0.293867pt;}
.ls47_c00455{letter-spacing:-0.227040pt;}
.ls40_c00455{letter-spacing:-0.095040pt;}
.ls2a_c00455{letter-spacing:0.000000pt;}
.ls23_c00455{letter-spacing:0.013120pt;}
.ls7_c00455{letter-spacing:0.026400pt;}
.ls49_c00455{letter-spacing:0.181493pt;}
.ls25_c00455{letter-spacing:0.271147pt;}
.ls28_c00455{letter-spacing:0.273333pt;}
.ls26_c00455{letter-spacing:0.352053pt;}
.ls27_c00455{letter-spacing:0.373920pt;}
.ls24_c00455{letter-spacing:0.428587pt;}
.ls22_c00455{letter-spacing:0.592587pt;}
.ls3a_c00455{letter-spacing:0.675840pt;}
.ls30_c00455{letter-spacing:0.826667pt;}
.ls1a_c00455{letter-spacing:0.851200pt;}
.ls14_c00455{letter-spacing:0.927200pt;}
.ls3_c00455{letter-spacing:0.962667pt;}
.ls12_c00455{letter-spacing:0.967733pt;}
.ls1_c00455{letter-spacing:0.975200pt;}
.ls13_c00455{letter-spacing:0.993067pt;}
.ls1c_c00455{letter-spacing:1.013333pt;}
.lsa_c00455{letter-spacing:1.038667pt;}
.lsd_c00455{letter-spacing:1.043733pt;}
.ls9_c00455{letter-spacing:1.079200pt;}
.ls45_c00455{letter-spacing:1.089333pt;}
.ls2_c00455{letter-spacing:1.104533pt;}
.ls21_c00455{letter-spacing:1.114667pt;}
.ls11_c00455{letter-spacing:1.140000pt;}
.ls16_c00455{letter-spacing:1.175467pt;}
.ls1b_c00455{letter-spacing:1.180533pt;}
.ls20_c00455{letter-spacing:1.185600pt;}
.lsf_c00455{letter-spacing:1.216000pt;}
.ls1d_c00455{letter-spacing:1.221067pt;}
.ls8_c00455{letter-spacing:1.226133pt;}
.ls5_c00455{letter-spacing:1.231200pt;}
.ls0_c00455{letter-spacing:1.238933pt;}
.ls2b_c00455{letter-spacing:1.253333pt;}
.ls15_c00455{letter-spacing:1.281867pt;}
.ls10_c00455{letter-spacing:1.307200pt;}
.ls4_c00455{letter-spacing:1.312267pt;}
.lsb_c00455{letter-spacing:1.332533pt;}
.lse_c00455{letter-spacing:1.337600pt;}
.ls1e_c00455{letter-spacing:1.383200pt;}
.ls18_c00455{letter-spacing:1.388267pt;}
.ls17_c00455{letter-spacing:1.398400pt;}
.lsc_c00455{letter-spacing:1.408533pt;}
.ls1f_c00455{letter-spacing:1.449067pt;}
.ls19_c00455{letter-spacing:1.499733pt;}
.ls6_c00455{letter-spacing:1.585867pt;}
.ls31_c00455{letter-spacing:1.600000pt;}
.ls2e_c00455{letter-spacing:1.760000pt;}
.ls43_c00455{letter-spacing:2.533333pt;}
.ls46_c00455{letter-spacing:2.746667pt;}
.ws0_c00455{word-spacing:0.000000pt;}
._39_c00455{margin-left:-3.465600pt;}
._36_c00455{margin-left:-2.371200pt;}
._f_c00455{margin-left:-1.025067pt;}
._0_c00455{width:1.091733pt;}
._1e_c00455{width:2.817067pt;}
._1_c00455{width:4.146133pt;}
._6_c00455{width:26.365760pt;}
._4_c00455{width:33.897600pt;}
._5_c00455{width:35.270400pt;}
._11_c00455{width:39.864000pt;}
._e_c00455{width:46.358400pt;}
._15_c00455{width:47.308800pt;}
._16_c00455{width:49.051200pt;}
._3_c00455{width:50.318400pt;}
._29_c00455{width:52.324800pt;}
._12_c00455{width:53.433600pt;}
._a_c00455{width:54.806400pt;}
._21_c00455{width:113.542133pt;}
._9_c00455{width:136.065600pt;}
._1b_c00455{width:137.838400pt;}
._14_c00455{width:139.286400pt;}
._3e_c00455{width:140.236800pt;}
._30_c00455{width:142.137600pt;}
._13_c00455{width:143.457600pt;}
._27_c00455{width:162.011733pt;}
._44_c00455{width:170.467200pt;}
._3d_c00455{width:176.549600pt;}
._10_c00455{width:197.939733pt;}
._b_c00455{width:228.148800pt;}
._2b_c00455{width:229.125333pt;}
._3f_c00455{width:230.472000pt;}
._17_c00455{width:234.115200pt;}
._7_c00455{width:236.238933pt;}
._1c_c00455{width:272.606400pt;}
._41_c00455{width:317.856000pt;}
._32_c00455{width:319.756800pt;}
._35_c00455{width:320.812800pt;}
._47_c00455{width:410.314133pt;}
._20_c00455{width:413.318400pt;}
._28_c00455{width:416.297600pt;}
._22_c00455{width:497.002133pt;}
._18_c00455{width:500.544000pt;}
._19_c00455{width:501.864000pt;}
._40_c00455{width:507.038400pt;}
._34_c00455{width:508.041600pt;}
._3a_c00455{width:572.006933pt;}
._33_c00455{width:584.918400pt;}
._2f_c00455{width:594.818667pt;}
._26_c00455{width:605.693600pt;}
._42_c00455{width:639.004267pt;}
._3c_c00455{width:648.661600pt;}
._2e_c00455{width:663.420267pt;}
._3b_c00455{width:674.520000pt;}
._31_c00455{width:678.480000pt;}
._8_c00455{width:682.334400pt;}
._48_c00455{width:685.977600pt;}
._2d_c00455{width:700.557333pt;}
._1d_c00455{width:766.708800pt;}
._43_c00455{width:947.620267pt;}
._45_c00455{width:948.657600pt;}
._c_c00455{width:955.996800pt;}
._2a_c00455{width:1017.543467pt;}
._1a_c00455{width:1026.296320pt;}
._24_c00455{width:1316.973067pt;}
._d_c00455{width:1327.608000pt;}
._2c_c00455{width:1493.817600pt;}
._23_c00455{width:1851.277333pt;}
._49_c00455{width:1908.689067pt;}
._1f_c00455{width:1919.690133pt;}
._46_c00455{width:1927.045867pt;}
._38_c00455{width:2000.080000pt;}
._25_c00455{width:2270.760267pt;}
._37_c00455{width:2309.452800pt;}
._2_c00455{width:2552.472533pt;}
.fs8_c00455{font-size:16.533333pt;}
.fs19_c00455{font-size:21.866667pt;}
.fsd_c00455{font-size:22.933867pt;}
.fs3_c00455{font-size:25.066667pt;}
.fs1_c00455{font-size:25.600533pt;}
.fse_c00455{font-size:26.133867pt;}
.fsb_c00455{font-size:29.333867pt;}
.fs7_c00455{font-size:30.400000pt;}
.fs9_c00455{font-size:32.000000pt;}
.fsf_c00455{font-size:33.066667pt;}
.fsc_c00455{font-size:33.280000pt;}
.fs5_c00455{font-size:35.200000pt;}
.fs2_c00455{font-size:40.960000pt;}
.fs6_c00455{font-size:46.080000pt;}
.fs17_c00455{font-size:46.400000pt;}
.fsa_c00455{font-size:48.000000pt;}
.fs13_c00455{font-size:49.600000pt;}
.fs16_c00455{font-size:50.133333pt;}
.fs11_c00455{font-size:50.666667pt;}
.fs15_c00455{font-size:51.733333pt;}
.fs10_c00455{font-size:52.800000pt;}
.fs12_c00455{font-size:53.866667pt;}
.fs18_c00455{font-size:54.933333pt;}
.fs4_c00455{font-size:60.266667pt;}
.fs14_c00455{font-size:60.800000pt;}
.fs0_c00455{font-size:61.333333pt;}
.y0_c00455{bottom:0.000000pt;}
.y26_c00455{bottom:34.240013pt;}
.y25_c00455{bottom:61.453347pt;}
.y24_c00455{bottom:125.760013pt;}
.y23_c00455{bottom:141.760013pt;}
.y22_c00455{bottom:157.760013pt;}
.y21_c00455{bottom:173.773347pt;}
.y20_c00455{bottom:189.773347pt;}
.y1f_c00455{bottom:205.773347pt;}
.y1e_c00455{bottom:222.093347pt;}
.y1d_c00455{bottom:237.773347pt;}
.y1c_c00455{bottom:253.773347pt;}
.y1b_c00455{bottom:269.773347pt;}
.y1a_c00455{bottom:286.093347pt;}
.y19_c00455{bottom:302.413347pt;}
.y18_c00455{bottom:318.413347pt;}
.y17_c00455{bottom:334.413347pt;}
.y16_c00455{bottom:350.413347pt;}
.y15_c00455{bottom:366.413347pt;}
.y14_c00455{bottom:382.733347pt;}
.y13_c00455{bottom:399.040013pt;}
.y12_c00455{bottom:414.733347pt;}
.y11_c00455{bottom:430.733347pt;}
.y10_c00455{bottom:447.040013pt;}
.yf_c00455{bottom:463.040013pt;}
.ye_c00455{bottom:479.040013pt;}
.yd_c00455{bottom:495.373347pt;}
.yc_c00455{bottom:511.373347pt;}
.yb_c00455{bottom:527.693347pt;}
.ya_c00455{bottom:544.000013pt;}
.y9_c00455{bottom:560.333347pt;}
.y8_c00455{bottom:576.653347pt;}
.y7_c00455{bottom:592.653347pt;}
.y6_c00455{bottom:608.973347pt;}
.y5_c00455{bottom:633.613347pt;}
.y4_c00455{bottom:648.653347pt;}
.y3_c00455{bottom:654.733347pt;}
.y2_c00455{bottom:664.973347pt;}
.y1_c00455{bottom:688.013347pt;}
.h9_c00455{height:16.218490pt;}
.hd_c00455{height:22.164480pt;}
.he_c00455{height:22.508336pt;}
.h19_c00455{height:22.806250pt;}
.h4_c00455{height:24.601563pt;}
.hf_c00455{height:27.256806pt;}
.h3_c00455{height:27.279360pt;}
.h8_c00455{height:29.835938pt;}
.hc_c00455{height:30.594306pt;}
.h7_c00455{height:30.689280pt;}
.ha_c00455{height:33.375000pt;}
.h10_c00455{height:34.487500pt;}
.h6_c00455{height:36.712500pt;}
.hb_c00455{height:47.085938pt;}
.h12_c00455{height:49.701823pt;}
.h17_c00455{height:51.731250pt;}
.h11_c00455{height:51.820312pt;}
.h16_c00455{height:52.287500pt;}
.h13_c00455{height:52.867187pt;}
.h18_c00455{height:53.914062pt;}
.h15_c00455{height:53.956250pt;}
.h5_c00455{height:59.148438pt;}
.h14_c00455{height:59.671875pt;}
.h2_c00455{height:60.195312pt;}
.h1_c00455{height:793.333333pt;}
.h0_c00455{height:793.600013pt;}
.w1_c00455{width:1122.666667pt;}
.w0_c00455{width:1122.880013pt;}
.x0_c00455{left:0.000000pt;}
.x2_c00455{left:132.800013pt;}
.x1_c00455{left:135.866680pt;}
.x3e_c00455{left:137.026680pt;}
.x45_c00455{left:137.986680pt;}
.x4a_c00455{left:138.986680pt;}
.x4d_c00455{left:139.946680pt;}
.x15_c00455{left:141.333347pt;}
.x16_c00455{left:143.813347pt;}
.x17_c00455{left:144.960013pt;}
.x18_c00455{left:163.533347pt;}
.x19_c00455{left:182.733347pt;}
.x48_c00455{left:194.986680pt;}
.x4e_c00455{left:196.520013pt;}
.x46_c00455{left:205.893347pt;}
.x3f_c00455{left:215.400013pt;}
.x44_c00455{left:231.200013pt;}
.x50_c00455{left:232.866680pt;}
.x1a_c00455{left:236.173347pt;}
.x1b_c00455{left:283.533347pt;}
.xb_c00455{left:301.253347pt;}
.x3_c00455{left:305.186680pt;}
.x26_c00455{left:309.533347pt;}
.x4f_c00455{left:313.466680pt;}
.x4_c00455{left:346.080013pt;}
.x27_c00455{left:352.200013pt;}
.x49_c00455{left:357.360013pt;}
.xc_c00455{left:369.293347pt;}
.x28_c00455{left:374.640013pt;}
.x40_c00455{left:378.426680pt;}
.x29_c00455{left:397.320013pt;}
.x2a_c00455{left:419.733347pt;}
.x41_c00455{left:422.853347pt;}
.x2b_c00455{left:442.120013pt;}
.x2c_c00455{left:464.866680pt;}
.x52_c00455{left:472.320013pt;}
.x2d_c00455{left:486.906680pt;}
.x2e_c00455{left:509.960013pt;}
.x5_c00455{left:514.240013pt;}
.xd_c00455{left:525.453347pt;}
.x6_c00455{left:526.733347pt;}
.xe_c00455{left:552.973347pt;}
.x1c_c00455{left:555.853347pt;}
.x1d_c00455{left:565.613347pt;}
.x2f_c00455{left:576.560013pt;}
.xf_c00455{left:591.920013pt;}
.x30_c00455{left:598.973347pt;}
.x1e_c00455{left:616.333347pt;}
.x31_c00455{left:621.680013pt;}
.x51_c00455{left:642.573347pt;}
.x32_c00455{left:644.080013pt;}
.x10_c00455{left:665.293347pt;}
.x33_c00455{left:666.800013pt;}
.x42_c00455{left:670.946680pt;}
.x11_c00455{left:685.293347pt;}
.x34_c00455{left:689.840013pt;}
.x43_c00455{left:694.266680pt;}
.x1f_c00455{left:696.880013pt;}
.x12_c00455{left:707.053347pt;}
.x35_c00455{left:712.560013pt;}
.x7_c00455{left:719.786680pt;}
.x13_c00455{left:730.240013pt;}
.x36_c00455{left:734.960013pt;}
.x20_c00455{left:753.293347pt;}
.x37_c00455{left:758.000013pt;}
.x4b_c00455{left:760.573347pt;}
.x14_c00455{left:777.293347pt;}
.x38_c00455{left:780.400013pt;}
.x8_c00455{left:785.213347pt;}
.x4c_c00455{left:786.106680pt;}
.x9_c00455{left:818.560013pt;}
.x21_c00455{left:819.853347pt;}
.x39_c00455{left:825.466680pt;}
.x22_c00455{left:845.453347pt;}
.x3a_c00455{left:847.853347pt;}
.x23_c00455{left:865.933347pt;}
.x3b_c00455{left:870.253347pt;}
.xa_c00455{left:872.320013pt;}
.x47_c00455{left:875.386680pt;}
.x3c_c00455{left:892.640013pt;}
.x24_c00455{left:896.640013pt;}
.x25_c00455{left:910.720013pt;}
.x3d_c00455{left:915.053347pt;}
}





/* 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_c00456 {
    display:none;
  }
  .loading-indicator_c00456.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00456 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_c00456 { 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_c00456" -> "#page-container .classname_c00456")
 */
.pf_c00456 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00456 { /* 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_c00456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00456 { /* 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_c00456 { /* 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_c00456 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00456 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00456 {overflow:visible;}
  }
}
.c_c00456 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00456 { /* 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_c00456:after { /* webkit #35443 */
  content: '';
}
.t_c00456:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00456 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 */
}
.__c00456 { /* 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_c00456 { /* info for Javascript */
  display:none;
}
.l_c00456 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00456 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00456 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00456: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_c00456 {
    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_c00456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00456.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_c00456 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00456{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00456;src:url('chunks/assets/font_7afa56f8ceeee2366ef398e7.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.284668;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_c00456;src:url('chunks/assets/font_369c979b244f185eb0b547c9.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;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;}
.m1_c00456{transform:matrix(0.242529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242529,0.000000,0.000000,0.250000,0,0);}
.m0_c00456{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);}
.v0_c00456{vertical-align:0.000000px;}
.lsa_c00456{letter-spacing:-2.163000px;}
.ls8_c00456{letter-spacing:-2.147760px;}
.lsc_c00456{letter-spacing:-0.651900px;}
.lsb_c00456{letter-spacing:0.000000px;}
.ls2_c00456{letter-spacing:0.014760px;}
.lsd_c00456{letter-spacing:0.204180px;}
.ls4_c00456{letter-spacing:0.305040px;}
.ls7_c00456{letter-spacing:0.307500px;}
.ls5_c00456{letter-spacing:0.396060px;}
.ls6_c00456{letter-spacing:0.420660px;}
.ls3_c00456{letter-spacing:0.482160px;}
.ls1_c00456{letter-spacing:0.523980px;}
.ls0_c00456{letter-spacing:1.012320px;}
.ls9_c00456{letter-spacing:1.135440px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{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__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00456{word-spacing:0.000000px;}
._0_c00456{width:2.134080px;}
._2_c00456{width:3.773580px;}
._1_c00456{width:9.890640px;}
.fc0_c00456{color:transparent;}
.fs2_c00456{font-size:24.600000px;}
.fs1_c00456{font-size:61.800000px;}
.fs0_c00456{font-size:68.400000px;}
.y0_c00456{bottom:0.000000px;}
.y3_c00456{bottom:32.760015px;}
.y2_c00456{bottom:65.880015px;}
.y1_c00456{bottom:767.880015px;}
.h4_c00456{height:25.657031px;}
.h3_c00456{height:60.653320px;}
.h2_c00456{height:67.130859px;}
.h1_c00456{height:892.500000px;}
.h0_c00456{height:892.800015px;}
.w1_c00456{width:1263.000000px;}
.w0_c00456{width:1263.239989px;}
.x0_c00456{left:0.000000px;}
.x1_c00456{left:152.489989px;}
.x3_c00456{left:528.119990px;}
.x2_c00456{left:585.539990px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.lsa_c00456{letter-spacing:-1.922667pt;}
.ls8_c00456{letter-spacing:-1.909120pt;}
.lsc_c00456{letter-spacing:-0.579467pt;}
.lsb_c00456{letter-spacing:0.000000pt;}
.ls2_c00456{letter-spacing:0.013120pt;}
.lsd_c00456{letter-spacing:0.181493pt;}
.ls4_c00456{letter-spacing:0.271147pt;}
.ls7_c00456{letter-spacing:0.273333pt;}
.ls5_c00456{letter-spacing:0.352053pt;}
.ls6_c00456{letter-spacing:0.373920pt;}
.ls3_c00456{letter-spacing:0.428587pt;}
.ls1_c00456{letter-spacing:0.465760pt;}
.ls0_c00456{letter-spacing:0.899840pt;}
.ls9_c00456{letter-spacing:1.009280pt;}
.ws0_c00456{word-spacing:0.000000pt;}
._0_c00456{width:1.896960pt;}
._2_c00456{width:3.354293pt;}
._1_c00456{width:8.791680pt;}
.fs2_c00456{font-size:21.866667pt;}
.fs1_c00456{font-size:54.933333pt;}
.fs0_c00456{font-size:60.800000pt;}
.y0_c00456{bottom:0.000000pt;}
.y3_c00456{bottom:29.120013pt;}
.y2_c00456{bottom:58.560013pt;}
.y1_c00456{bottom:682.560013pt;}
.h4_c00456{height:22.806250pt;}
.h3_c00456{height:53.914062pt;}
.h2_c00456{height:59.671875pt;}
.h1_c00456{height:793.333333pt;}
.h0_c00456{height:793.600013pt;}
.w1_c00456{width:1122.666667pt;}
.w0_c00456{width:1122.879991pt;}
.x0_c00456{left:0.000000pt;}
.x1_c00456{left:135.546657pt;}
.x3_c00456{left:469.439991pt;}
.x2_c00456{left:520.479991pt;}
}





/* 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_c00457 {
    display:none;
  }
  .loading-indicator_c00457.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00457 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_c00457 { 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_c00457" -> "#page-container .classname_c00457")
 */
.pf_c00457 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00457 { /* 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_c00457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00457 { /* 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_c00457 { /* 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_c00457 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00457 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00457 {overflow:visible;}
  }
}
.c_c00457 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00457 { /* 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_c00457:after { /* webkit #35443 */
  content: '';
}
.t_c00457:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00457 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 */
}
.__c00457 { /* 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_c00457 { /* info for Javascript */
  display:none;
}
.l_c00457 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00457 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00457 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00457: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_c00457 {
    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_c00457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00457.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_c00457 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00457{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00457;src:url('chunks/assets/font_b86ff749373290234f90abe1.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.284668;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_c00457;src:url('chunks/assets/font_a48b710723ed8d9697cb468c.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.284180;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_c00457;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;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;}
.m5_c00457{transform:matrix(0.206397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206397,0.000000,0.000000,0.250000,0,0);}
.m2_c00457{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.m3_c00457{transform:matrix(0.237017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237017,0.000000,0.000000,0.250000,0,0);}
.m4_c00457{transform:matrix(0.239530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239530,0.000000,0.000000,0.250000,0,0);}
.m9_c00457{transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);}
.ma_c00457{transform:matrix(0.246112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246112,0.000000,0.000000,0.250000,0,0);}
.m7_c00457{transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);}
.m8_c00457{transform:matrix(0.247968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247968,0.000000,0.000000,0.250000,0,0);}
.m6_c00457{transform:matrix(0.248358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248358,0.000000,0.000000,0.250000,0,0);}
.m0_c00457{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_c00457{transform:matrix(0.251898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251898,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls71_c00457{letter-spacing:-3.612021px;}
.ls60_c00457{letter-spacing:-2.478000px;}
.ls67_c00457{letter-spacing:-2.385960px;}
.ls80_c00457{letter-spacing:-2.205000px;}
.ls62_c00457{letter-spacing:-2.088600px;}
.ls7d_c00457{letter-spacing:-2.060280px;}
.ls7a_c00457{letter-spacing:-1.529280px;}
.ls79_c00457{letter-spacing:-1.380600px;}
.ls5e_c00457{letter-spacing:-1.323960px;}
.ls6b_c00457{letter-spacing:-1.281480px;}
.ls72_c00457{letter-spacing:-1.231920px;}
.ls6d_c00457{letter-spacing:-0.955800px;}
.ls63_c00457{letter-spacing:-0.934560px;}
.ls76_c00457{letter-spacing:-0.892080px;}
.ls69_c00457{letter-spacing:-0.601800px;}
.ls64_c00457{letter-spacing:-0.559320px;}
.ls7c_c00457{letter-spacing:-0.516840px;}
.ls73_c00457{letter-spacing:-0.509760px;}
.ls5d_c00457{letter-spacing:-0.417720px;}
.ls65_c00457{letter-spacing:-0.389400px;}
.ls75_c00457{letter-spacing:-0.339840px;}
.ls6c_c00457{letter-spacing:-0.290280px;}
.ls68_c00457{letter-spacing:-0.254880px;}
.ls78_c00457{letter-spacing:-0.113280px;}
.ls66_c00457{letter-spacing:-0.070800px;}
.ls5f_c00457{letter-spacing:0.000000px;}
.ls43_c00457{letter-spacing:0.084960px;}
.ls3_c00457{letter-spacing:0.113280px;}
.ls40_c00457{letter-spacing:0.162840px;}
.ls39_c00457{letter-spacing:0.205320px;}
.ls10_c00457{letter-spacing:0.290280px;}
.ls42_c00457{letter-spacing:0.297360px;}
.ls4_c00457{letter-spacing:0.318600px;}
.ls23_c00457{letter-spacing:0.332760px;}
.ls17_c00457{letter-spacing:0.368160px;}
.ls4b_c00457{letter-spacing:0.382320px;}
.ls6a_c00457{letter-spacing:0.396480px;}
.ls21_c00457{letter-spacing:0.403560px;}
.ls70_c00457{letter-spacing:0.424800px;}
.ls4e_c00457{letter-spacing:0.446040px;}
.ls54_c00457{letter-spacing:0.460200px;}
.ls32_c00457{letter-spacing:0.467280px;}
.ls55_c00457{letter-spacing:0.474360px;}
.ls29_c00457{letter-spacing:0.481440px;}
.ls6e_c00457{letter-spacing:0.488520px;}
.ls2b_c00457{letter-spacing:0.502680px;}
.ls7b_c00457{letter-spacing:0.523920px;}
.ls3c_c00457{letter-spacing:0.531000px;}
.ls77_c00457{letter-spacing:0.538080px;}
.ls15_c00457{letter-spacing:0.545160px;}
.ls59_c00457{letter-spacing:0.589680px;}
.ls6f_c00457{letter-spacing:0.601800px;}
.ls25_c00457{letter-spacing:0.608880px;}
.ls1c_c00457{letter-spacing:0.615960px;}
.ls19_c00457{letter-spacing:0.630120px;}
.ls5_c00457{letter-spacing:0.637200px;}
.ls1d_c00457{letter-spacing:0.644280px;}
.ls20_c00457{letter-spacing:0.651360px;}
.ls4f_c00457{letter-spacing:0.665520px;}
.lsb_c00457{letter-spacing:0.672600px;}
.lsd_c00457{letter-spacing:0.679680px;}
.ls2e_c00457{letter-spacing:0.693840px;}
.ls7e_c00457{letter-spacing:0.700920px;}
.ls34_c00457{letter-spacing:0.708000px;}
.ls28_c00457{letter-spacing:0.715080px;}
.ls3b_c00457{letter-spacing:0.722160px;}
.ls44_c00457{letter-spacing:0.743400px;}
.ls38_c00457{letter-spacing:0.757560px;}
.lse_c00457{letter-spacing:0.764640px;}
.ls33_c00457{letter-spacing:0.771720px;}
.ls3d_c00457{letter-spacing:0.778800px;}
.ls9_c00457{letter-spacing:0.800040px;}
.ls7f_c00457{letter-spacing:0.800280px;}
.ls2a_c00457{letter-spacing:0.807120px;}
.ls35_c00457{letter-spacing:0.814200px;}
.ls6_c00457{letter-spacing:0.821280px;}
.ls37_c00457{letter-spacing:0.828360px;}
.ls50_c00457{letter-spacing:0.835440px;}
.ls16_c00457{letter-spacing:0.842520px;}
.ls41_c00457{letter-spacing:0.849600px;}
.lsf_c00457{letter-spacing:0.863760px;}
.ls1_c00457{letter-spacing:0.870840px;}
.ls36_c00457{letter-spacing:0.877920px;}
.ls22_c00457{letter-spacing:0.885000px;}
.ls2d_c00457{letter-spacing:0.899160px;}
.ls5a_c00457{letter-spacing:0.905580px;}
.ls30_c00457{letter-spacing:0.906240px;}
.ls53_c00457{letter-spacing:0.913320px;}
.ls1a_c00457{letter-spacing:0.920400px;}
.lsa_c00457{letter-spacing:0.941640px;}
.ls61_c00457{letter-spacing:0.948720px;}
.ls56_c00457{letter-spacing:0.955800px;}
.ls3a_c00457{letter-spacing:0.969960px;}
.ls7_c00457{letter-spacing:0.977040px;}
.ls2f_c00457{letter-spacing:0.991200px;}
.ls74_c00457{letter-spacing:0.998280px;}
.ls1e_c00457{letter-spacing:1.005360px;}
.ls18_c00457{letter-spacing:1.019520px;}
.ls5b_c00457{letter-spacing:1.047840px;}
.ls12_c00457{letter-spacing:1.054920px;}
.ls2_c00457{letter-spacing:1.062000px;}
.ls11_c00457{letter-spacing:1.076160px;}
.lsc_c00457{letter-spacing:1.083240px;}
.ls24_c00457{letter-spacing:1.097400px;}
.ls26_c00457{letter-spacing:1.118640px;}
.ls4c_c00457{letter-spacing:1.139880px;}
.ls8_c00457{letter-spacing:1.154040px;}
.ls1b_c00457{letter-spacing:1.161120px;}
.ls3f_c00457{letter-spacing:1.175280px;}
.ls4d_c00457{letter-spacing:1.189440px;}
.ls52_c00457{letter-spacing:1.281480px;}
.ls45_c00457{letter-spacing:1.295640px;}
.ls1f_c00457{letter-spacing:1.316880px;}
.ls2c_c00457{letter-spacing:1.331040px;}
.ls57_c00457{letter-spacing:1.359360px;}
.ls47_c00457{letter-spacing:1.373520px;}
.ls13_c00457{letter-spacing:1.465560px;}
.ls0_c00457{letter-spacing:1.472640px;}
.ls14_c00457{letter-spacing:1.500960px;}
.ls3e_c00457{letter-spacing:1.522200px;}
.ls48_c00457{letter-spacing:1.529280px;}
.ls58_c00457{letter-spacing:1.550520px;}
.ls4a_c00457{letter-spacing:1.883280px;}
.ls51_c00457{letter-spacing:2.315160px;}
.ls27_c00457{letter-spacing:2.336400px;}
.ls49_c00457{letter-spacing:2.364720px;}
.ls31_c00457{letter-spacing:2.959440px;}
.ls46_c00457{letter-spacing:3.532920px;}
.ls5c_c00457{letter-spacing:3.540000px;}
.sc__c00457{text-shadow:none;}
.sc0_c00457{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__c00457{-webkit-text-stroke:0px transparent;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00457{word-spacing:0.000000px;}
._1b_c00457{margin-left:-4.992360px;}
._14_c00457{margin-left:-3.009000px;}
._12_c00457{margin-left:-1.288560px;}
._13_c00457{width:1.500960px;}
._15_c00457{width:3.065640px;}
._e_c00457{width:4.977240px;}
._b_c00457{width:5.989680px;}
._d_c00457{width:7.957920px;}
._f_c00457{width:9.005640px;}
._c_c00457{width:10.195200px;}
._8_c00457{width:11.243040px;}
._9_c00457{width:12.885600px;}
._a_c00457{width:14.570640px;}
._4_c00457{width:16.461000px;}
._6_c00457{width:17.650440px;}
._7_c00457{width:19.951440px;}
._11_c00457{width:22.096680px;}
._5_c00457{width:23.307360px;}
._1_c00457{width:24.730440px;}
._0_c00457{width:26.096880px;}
._10_c00457{width:27.102240px;}
._3_c00457{width:28.143000px;}
._2_c00457{width:30.174960px;}
._16_c00457{width:32.582160px;}
._17_c00457{width:37.056720px;}
._18_c00457{width:41.446320px;}
._1a_c00457{width:44.742720px;}
._19_c00457{width:47.237760px;}
.fc0_c00457{color:transparent;}
.fs4_c00457{font-size:63.000000px;}
.fs2_c00457{font-size:70.200000px;}
.fs0_c00457{font-size:70.800000px;}
.fs3_c00457{font-size:75.600000px;}
.fs1_c00457{font-size:103.200600px;}
.y0_c00457{bottom:0.000000px;}
.y19_c00457{bottom:101.520000px;}
.y18_c00457{bottom:211.697700px;}
.y17_c00457{bottom:242.655000px;}
.y16_c00457{bottom:242.657700px;}
.y15_c00457{bottom:273.615000px;}
.y14_c00457{bottom:328.714200px;}
.y13_c00457{bottom:360.025500px;}
.y12_c00457{bottom:421.568400px;}
.y11_c00457{bottom:451.800000px;}
.y10_c00457{bottom:513.017700px;}
.yf_c00457{bottom:543.975000px;}
.ye_c00457{bottom:575.291700px;}
.yd_c00457{bottom:605.897700px;}
.yc_c00457{bottom:636.855000px;}
.yb_c00457{bottom:699.138600px;}
.ya_c00457{bottom:730.095900px;}
.y9_c00457{bottom:792.010500px;}
.y8_c00457{bottom:822.596100px;}
.y7_c00457{bottom:853.553400px;}
.y6_c00457{bottom:884.174400px;}
.y5_c00457{bottom:914.762700px;}
.y4_c00457{bottom:945.383700px;}
.y3_c00457{bottom:976.695000px;}
.y2_c00457{bottom:976.700700px;}
.y1_c00457{bottom:1008.720000px;}
.h5_c00457{height:61.831055px;}
.h2_c00457{height:69.486328px;}
.h4_c00457{height:78.837638px;}
.h3_c00457{height:101.285745px;}
.h1_c00457{height:1263.000000px;}
.h0_c00457{height:1263.240000px;}
.w1_c00457{width:892.500000px;}
.w0_c00457{width:892.800000px;}
.x0_c00457{left:0.000000px;}
.x13_c00457{left:106.111200px;}
.xe_c00457{left:107.298000px;}
.x7_c00457{left:108.566700px;}
.x4_c00457{left:109.998600px;}
.xf_c00457{left:160.455000px;}
.x8_c00457{left:161.879100px;}
.x1_c00457{left:163.695000px;}
.x10_c00457{left:182.070000px;}
.x9_c00457{left:186.870000px;}
.xa_c00457{left:353.655000px;}
.xb_c00457{left:391.125000px;}
.x16_c00457{left:422.460000px;}
.x5_c00457{left:441.270000px;}
.x2_c00457{left:460.050000px;}
.x6_c00457{left:478.410000px;}
.xc_c00457{left:485.460000px;}
.x3_c00457{left:489.345000px;}
.x11_c00457{left:495.000000px;}
.xd_c00457{left:513.690000px;}
.x12_c00457{left:529.035000px;}
.x14_c00457{left:681.240000px;}
.x15_c00457{left:702.885000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls71_c00457{letter-spacing:-3.210685pt;}
.ls60_c00457{letter-spacing:-2.202667pt;}
.ls67_c00457{letter-spacing:-2.120853pt;}
.ls80_c00457{letter-spacing:-1.960000pt;}
.ls62_c00457{letter-spacing:-1.856533pt;}
.ls7d_c00457{letter-spacing:-1.831360pt;}
.ls7a_c00457{letter-spacing:-1.359360pt;}
.ls79_c00457{letter-spacing:-1.227200pt;}
.ls5e_c00457{letter-spacing:-1.176853pt;}
.ls6b_c00457{letter-spacing:-1.139093pt;}
.ls72_c00457{letter-spacing:-1.095040pt;}
.ls6d_c00457{letter-spacing:-0.849600pt;}
.ls63_c00457{letter-spacing:-0.830720pt;}
.ls76_c00457{letter-spacing:-0.792960pt;}
.ls69_c00457{letter-spacing:-0.534933pt;}
.ls64_c00457{letter-spacing:-0.497173pt;}
.ls7c_c00457{letter-spacing:-0.459413pt;}
.ls73_c00457{letter-spacing:-0.453120pt;}
.ls5d_c00457{letter-spacing:-0.371307pt;}
.ls65_c00457{letter-spacing:-0.346133pt;}
.ls75_c00457{letter-spacing:-0.302080pt;}
.ls6c_c00457{letter-spacing:-0.258027pt;}
.ls68_c00457{letter-spacing:-0.226560pt;}
.ls78_c00457{letter-spacing:-0.100693pt;}
.ls66_c00457{letter-spacing:-0.062933pt;}
.ls5f_c00457{letter-spacing:0.000000pt;}
.ls43_c00457{letter-spacing:0.075520pt;}
.ls3_c00457{letter-spacing:0.100693pt;}
.ls40_c00457{letter-spacing:0.144747pt;}
.ls39_c00457{letter-spacing:0.182507pt;}
.ls10_c00457{letter-spacing:0.258027pt;}
.ls42_c00457{letter-spacing:0.264320pt;}
.ls4_c00457{letter-spacing:0.283200pt;}
.ls23_c00457{letter-spacing:0.295787pt;}
.ls17_c00457{letter-spacing:0.327253pt;}
.ls4b_c00457{letter-spacing:0.339840pt;}
.ls6a_c00457{letter-spacing:0.352427pt;}
.ls21_c00457{letter-spacing:0.358720pt;}
.ls70_c00457{letter-spacing:0.377600pt;}
.ls4e_c00457{letter-spacing:0.396480pt;}
.ls54_c00457{letter-spacing:0.409067pt;}
.ls32_c00457{letter-spacing:0.415360pt;}
.ls55_c00457{letter-spacing:0.421653pt;}
.ls29_c00457{letter-spacing:0.427947pt;}
.ls6e_c00457{letter-spacing:0.434240pt;}
.ls2b_c00457{letter-spacing:0.446827pt;}
.ls7b_c00457{letter-spacing:0.465707pt;}
.ls3c_c00457{letter-spacing:0.472000pt;}
.ls77_c00457{letter-spacing:0.478293pt;}
.ls15_c00457{letter-spacing:0.484587pt;}
.ls59_c00457{letter-spacing:0.524160pt;}
.ls6f_c00457{letter-spacing:0.534933pt;}
.ls25_c00457{letter-spacing:0.541227pt;}
.ls1c_c00457{letter-spacing:0.547520pt;}
.ls19_c00457{letter-spacing:0.560107pt;}
.ls5_c00457{letter-spacing:0.566400pt;}
.ls1d_c00457{letter-spacing:0.572693pt;}
.ls20_c00457{letter-spacing:0.578987pt;}
.ls4f_c00457{letter-spacing:0.591573pt;}
.lsb_c00457{letter-spacing:0.597867pt;}
.lsd_c00457{letter-spacing:0.604160pt;}
.ls2e_c00457{letter-spacing:0.616747pt;}
.ls7e_c00457{letter-spacing:0.623040pt;}
.ls34_c00457{letter-spacing:0.629333pt;}
.ls28_c00457{letter-spacing:0.635627pt;}
.ls3b_c00457{letter-spacing:0.641920pt;}
.ls44_c00457{letter-spacing:0.660800pt;}
.ls38_c00457{letter-spacing:0.673387pt;}
.lse_c00457{letter-spacing:0.679680pt;}
.ls33_c00457{letter-spacing:0.685973pt;}
.ls3d_c00457{letter-spacing:0.692267pt;}
.ls9_c00457{letter-spacing:0.711147pt;}
.ls7f_c00457{letter-spacing:0.711360pt;}
.ls2a_c00457{letter-spacing:0.717440pt;}
.ls35_c00457{letter-spacing:0.723733pt;}
.ls6_c00457{letter-spacing:0.730027pt;}
.ls37_c00457{letter-spacing:0.736320pt;}
.ls50_c00457{letter-spacing:0.742613pt;}
.ls16_c00457{letter-spacing:0.748907pt;}
.ls41_c00457{letter-spacing:0.755200pt;}
.lsf_c00457{letter-spacing:0.767787pt;}
.ls1_c00457{letter-spacing:0.774080pt;}
.ls36_c00457{letter-spacing:0.780373pt;}
.ls22_c00457{letter-spacing:0.786667pt;}
.ls2d_c00457{letter-spacing:0.799253pt;}
.ls5a_c00457{letter-spacing:0.804960pt;}
.ls30_c00457{letter-spacing:0.805547pt;}
.ls53_c00457{letter-spacing:0.811840pt;}
.ls1a_c00457{letter-spacing:0.818133pt;}
.lsa_c00457{letter-spacing:0.837013pt;}
.ls61_c00457{letter-spacing:0.843307pt;}
.ls56_c00457{letter-spacing:0.849600pt;}
.ls3a_c00457{letter-spacing:0.862187pt;}
.ls7_c00457{letter-spacing:0.868480pt;}
.ls2f_c00457{letter-spacing:0.881067pt;}
.ls74_c00457{letter-spacing:0.887360pt;}
.ls1e_c00457{letter-spacing:0.893653pt;}
.ls18_c00457{letter-spacing:0.906240pt;}
.ls5b_c00457{letter-spacing:0.931413pt;}
.ls12_c00457{letter-spacing:0.937707pt;}
.ls2_c00457{letter-spacing:0.944000pt;}
.ls11_c00457{letter-spacing:0.956587pt;}
.lsc_c00457{letter-spacing:0.962880pt;}
.ls24_c00457{letter-spacing:0.975467pt;}
.ls26_c00457{letter-spacing:0.994347pt;}
.ls4c_c00457{letter-spacing:1.013227pt;}
.ls8_c00457{letter-spacing:1.025813pt;}
.ls1b_c00457{letter-spacing:1.032107pt;}
.ls3f_c00457{letter-spacing:1.044693pt;}
.ls4d_c00457{letter-spacing:1.057280pt;}
.ls52_c00457{letter-spacing:1.139093pt;}
.ls45_c00457{letter-spacing:1.151680pt;}
.ls1f_c00457{letter-spacing:1.170560pt;}
.ls2c_c00457{letter-spacing:1.183147pt;}
.ls57_c00457{letter-spacing:1.208320pt;}
.ls47_c00457{letter-spacing:1.220907pt;}
.ls13_c00457{letter-spacing:1.302720pt;}
.ls0_c00457{letter-spacing:1.309013pt;}
.ls14_c00457{letter-spacing:1.334187pt;}
.ls3e_c00457{letter-spacing:1.353067pt;}
.ls48_c00457{letter-spacing:1.359360pt;}
.ls58_c00457{letter-spacing:1.378240pt;}
.ls4a_c00457{letter-spacing:1.674027pt;}
.ls51_c00457{letter-spacing:2.057920pt;}
.ls27_c00457{letter-spacing:2.076800pt;}
.ls49_c00457{letter-spacing:2.101973pt;}
.ls31_c00457{letter-spacing:2.630613pt;}
.ls46_c00457{letter-spacing:3.140373pt;}
.ls5c_c00457{letter-spacing:3.146667pt;}
.ws0_c00457{word-spacing:0.000000pt;}
._1b_c00457{margin-left:-4.437653pt;}
._14_c00457{margin-left:-2.674667pt;}
._12_c00457{margin-left:-1.145387pt;}
._13_c00457{width:1.334187pt;}
._15_c00457{width:2.725013pt;}
._e_c00457{width:4.424213pt;}
._b_c00457{width:5.324160pt;}
._d_c00457{width:7.073707pt;}
._f_c00457{width:8.005013pt;}
._c_c00457{width:9.062400pt;}
._8_c00457{width:9.993813pt;}
._9_c00457{width:11.453867pt;}
._a_c00457{width:12.951680pt;}
._4_c00457{width:14.632000pt;}
._6_c00457{width:15.689280pt;}
._7_c00457{width:17.734613pt;}
._11_c00457{width:19.641493pt;}
._5_c00457{width:20.717653pt;}
._1_c00457{width:21.982613pt;}
._0_c00457{width:23.197227pt;}
._10_c00457{width:24.090880pt;}
._3_c00457{width:25.016000pt;}
._2_c00457{width:26.822187pt;}
._16_c00457{width:28.961920pt;}
._17_c00457{width:32.939307pt;}
._18_c00457{width:36.841173pt;}
._1a_c00457{width:39.771307pt;}
._19_c00457{width:41.989120pt;}
.fs4_c00457{font-size:56.000000pt;}
.fs2_c00457{font-size:62.400000pt;}
.fs0_c00457{font-size:62.933333pt;}
.fs3_c00457{font-size:67.200000pt;}
.fs1_c00457{font-size:91.733867pt;}
.y0_c00457{bottom:0.000000pt;}
.y19_c00457{bottom:90.240000pt;}
.y18_c00457{bottom:188.175733pt;}
.y17_c00457{bottom:215.693333pt;}
.y16_c00457{bottom:215.695733pt;}
.y15_c00457{bottom:243.213333pt;}
.y14_c00457{bottom:292.190400pt;}
.y13_c00457{bottom:320.022667pt;}
.y12_c00457{bottom:374.727467pt;}
.y11_c00457{bottom:401.600000pt;}
.y10_c00457{bottom:456.015733pt;}
.yf_c00457{bottom:483.533333pt;}
.ye_c00457{bottom:511.370400pt;}
.yd_c00457{bottom:538.575733pt;}
.yc_c00457{bottom:566.093333pt;}
.yb_c00457{bottom:621.456533pt;}
.ya_c00457{bottom:648.974133pt;}
.y9_c00457{bottom:704.009333pt;}
.y8_c00457{bottom:731.196533pt;}
.y7_c00457{bottom:758.714133pt;}
.y6_c00457{bottom:785.932800pt;}
.y5_c00457{bottom:813.122400pt;}
.y4_c00457{bottom:840.341067pt;}
.y3_c00457{bottom:868.173333pt;}
.y2_c00457{bottom:868.178400pt;}
.y1_c00457{bottom:896.640000pt;}
.h5_c00457{height:54.960938pt;}
.h2_c00457{height:61.765625pt;}
.h4_c00457{height:70.077900pt;}
.h3_c00457{height:90.031773pt;}
.h1_c00457{height:1122.666667pt;}
.h0_c00457{height:1122.880000pt;}
.w1_c00457{width:793.333333pt;}
.w0_c00457{width:793.600000pt;}
.x0_c00457{left:0.000000pt;}
.x13_c00457{left:94.321067pt;}
.xe_c00457{left:95.376000pt;}
.x7_c00457{left:96.503733pt;}
.x4_c00457{left:97.776533pt;}
.xf_c00457{left:142.626667pt;}
.x8_c00457{left:143.892533pt;}
.x1_c00457{left:145.506667pt;}
.x10_c00457{left:161.840000pt;}
.x9_c00457{left:166.106667pt;}
.xa_c00457{left:314.360000pt;}
.xb_c00457{left:347.666667pt;}
.x16_c00457{left:375.520000pt;}
.x5_c00457{left:392.240000pt;}
.x2_c00457{left:408.933333pt;}
.x6_c00457{left:425.253333pt;}
.xc_c00457{left:431.520000pt;}
.x3_c00457{left:434.973333pt;}
.x11_c00457{left:440.000000pt;}
.xd_c00457{left:456.613333pt;}
.x12_c00457{left:470.253333pt;}
.x14_c00457{left:605.546667pt;}
.x15_c00457{left:624.786667pt;}
}





/* 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_c00458 {
    display:none;
  }
  .loading-indicator_c00458.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00458 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_c00458 { 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_c00458" -> "#page-container .classname_c00458")
 */
.pf_c00458 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00458 { /* 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_c00458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00458 { /* 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_c00458 { /* 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_c00458 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00458 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00458 {overflow:visible;}
  }
}
.c_c00458 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00458 { /* 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_c00458:after { /* webkit #35443 */
  content: '';
}
.t_c00458:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00458 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 */
}
.__c00458 { /* 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_c00458 { /* info for Javascript */
  display:none;
}
.l_c00458 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00458 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00458 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00458: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_c00458 {
    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_c00458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00458.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_c00458 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00458{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00458;src:url('chunks/assets/font_5b61aba1db08ed2f66532aa1.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.284668;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_c00458;src:url('chunks/assets/font_cacb60cfca86eceb7b15bda4.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.284180;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_c00458{transform:matrix(0.202552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202552,0.000000,0.000000,0.250000,0,0);}
.m5_c00458{transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);}
.md_c00458{transform:matrix(0.213010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213010,0.000000,0.000000,0.250000,0,0);}
.me_c00458{transform:matrix(0.215019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215019,0.000000,0.000000,0.250000,0,0);}
.m15_c00458{transform:matrix(0.229410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229410,0.000000,0.000000,0.250000,0,0);}
.m11_c00458{transform:matrix(0.231858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231858,0.000000,0.000000,0.250000,0,0);}
.m7_c00458{transform:matrix(0.238419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238419,0.000000,0.000000,0.250000,0,0);}
.ma_c00458{transform:matrix(0.238994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238994,0.000000,0.000000,0.250000,0,0);}
.m6_c00458{transform:matrix(0.239156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239156,0.000000,0.000000,0.250000,0,0);}
.mc_c00458{transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);}
.m8_c00458{transform:matrix(0.241281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241281,0.000000,0.000000,0.250000,0,0);}
.mf_c00458{transform:matrix(0.242683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242683,0.000000,0.000000,0.250000,0,0);}
.m3_c00458{transform:matrix(0.243573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243573,0.000000,0.000000,0.250000,0,0);}
.m1_c00458{transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);}
.m12_c00458{transform:matrix(0.245419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245419,0.000000,0.000000,0.250000,0,0);}
.m13_c00458{transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);}
.m4_c00458{transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);}
.m10_c00458{transform:matrix(0.246344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246344,0.000000,0.000000,0.250000,0,0);}
.m14_c00458{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.mb_c00458{transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);}
.m17_c00458{transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);}
.m18_c00458{transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);}
.m9_c00458{transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);}
.m0_c00458{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);}
.m16_c00458{transform:matrix(0.266781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266781,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.ls1e_c00458{letter-spacing:-2.520000px;}
.ls29_c00458{letter-spacing:-2.448000px;}
.ls5b_c00458{letter-spacing:-2.044800px;}
.ls35_c00458{letter-spacing:-1.936800px;}
.ls6d_c00458{letter-spacing:-1.922400px;}
.ls22_c00458{letter-spacing:-1.828800px;}
.ls2a_c00458{letter-spacing:-1.785600px;}
.ls48_c00458{letter-spacing:-1.764000px;}
.ls4f_c00458{letter-spacing:-1.670400px;}
.ls4d_c00458{letter-spacing:-1.483200px;}
.ls40_c00458{letter-spacing:-1.454400px;}
.ls52_c00458{letter-spacing:-1.396800px;}
.ls5c_c00458{letter-spacing:-1.216800px;}
.ls6a_c00458{letter-spacing:-1.202400px;}
.ls6c_c00458{letter-spacing:-1.180800px;}
.ls61_c00458{letter-spacing:-1.152000px;}
.ls27_c00458{letter-spacing:-1.116000px;}
.ls69_c00458{letter-spacing:-1.080000px;}
.ls4e_c00458{letter-spacing:-1.065600px;}
.ls4b_c00458{letter-spacing:-1.036800px;}
.ls70_c00458{letter-spacing:-1.022400px;}
.ls25_c00458{letter-spacing:-1.008000px;}
.ls5e_c00458{letter-spacing:-0.964800px;}
.ls5f_c00458{letter-spacing:-0.957600px;}
.ls2d_c00458{letter-spacing:-0.885600px;}
.ls55_c00458{letter-spacing:-0.871200px;}
.ls38_c00458{letter-spacing:-0.864000px;}
.ls32_c00458{letter-spacing:-0.828000px;}
.ls60_c00458{letter-spacing:-0.720000px;}
.ls41_c00458{letter-spacing:-0.691200px;}
.ls5a_c00458{letter-spacing:-0.684000px;}
.ls5d_c00458{letter-spacing:-0.676800px;}
.ls2e_c00458{letter-spacing:-0.662400px;}
.ls53_c00458{letter-spacing:-0.640800px;}
.ls3b_c00458{letter-spacing:-0.626400px;}
.ls3e_c00458{letter-spacing:-0.619200px;}
.ls3a_c00458{letter-spacing:-0.554400px;}
.ls72_c00458{letter-spacing:-0.491400px;}
.ls34_c00458{letter-spacing:-0.489600px;}
.ls67_c00458{letter-spacing:-0.482400px;}
.ls47_c00458{letter-spacing:-0.432000px;}
.ls30_c00458{letter-spacing:-0.417600px;}
.ls57_c00458{letter-spacing:-0.410400px;}
.ls3c_c00458{letter-spacing:-0.403200px;}
.ls4c_c00458{letter-spacing:-0.396000px;}
.ls42_c00458{letter-spacing:-0.381600px;}
.ls43_c00458{letter-spacing:-0.374400px;}
.ls65_c00458{letter-spacing:-0.360000px;}
.ls2b_c00458{letter-spacing:-0.352800px;}
.ls26_c00458{letter-spacing:-0.345600px;}
.ls20_c00458{letter-spacing:-0.295200px;}
.ls59_c00458{letter-spacing:-0.288000px;}
.ls2c_c00458{letter-spacing:-0.280800px;}
.ls39_c00458{letter-spacing:-0.273600px;}
.ls63_c00458{letter-spacing:-0.259200px;}
.ls44_c00458{letter-spacing:-0.252000px;}
.ls1d_c00458{letter-spacing:-0.244800px;}
.ls33_c00458{letter-spacing:-0.237600px;}
.ls21_c00458{letter-spacing:-0.230400px;}
.ls31_c00458{letter-spacing:-0.223200px;}
.ls64_c00458{letter-spacing:-0.216000px;}
.ls66_c00458{letter-spacing:-0.201600px;}
.ls28_c00458{letter-spacing:-0.187200px;}
.ls3f_c00458{letter-spacing:-0.172800px;}
.ls1c_c00458{letter-spacing:-0.165600px;}
.ls58_c00458{letter-spacing:-0.158400px;}
.ls54_c00458{letter-spacing:-0.144000px;}
.ls71_c00458{letter-spacing:-0.136800px;}
.ls23_c00458{letter-spacing:-0.129600px;}
.ls24_c00458{letter-spacing:-0.122400px;}
.ls56_c00458{letter-spacing:-0.112320px;}
.ls50_c00458{letter-spacing:-0.108000px;}
.ls6b_c00458{letter-spacing:-0.100800px;}
.ls4a_c00458{letter-spacing:-0.093600px;}
.ls49_c00458{letter-spacing:-0.086400px;}
.ls2f_c00458{letter-spacing:-0.079200px;}
.ls6e_c00458{letter-spacing:-0.072000px;}
.ls45_c00458{letter-spacing:-0.064800px;}
.ls51_c00458{letter-spacing:-0.043200px;}
.ls46_c00458{letter-spacing:-0.036000px;}
.ls37_c00458{letter-spacing:-0.014400px;}
.ls62_c00458{letter-spacing:-0.007200px;}
.ls1f_c00458{letter-spacing:0.000000px;}
.ls7_c00458{letter-spacing:0.007200px;}
.ls2_c00458{letter-spacing:0.028800px;}
.ls16_c00458{letter-spacing:0.036000px;}
.lsc_c00458{letter-spacing:0.064800px;}
.ls0_c00458{letter-spacing:0.086400px;}
.ls18_c00458{letter-spacing:0.108000px;}
.ls10_c00458{letter-spacing:0.115200px;}
.lsf_c00458{letter-spacing:0.136800px;}
.ls11_c00458{letter-spacing:0.144000px;}
.ls12_c00458{letter-spacing:0.165600px;}
.ls3_c00458{letter-spacing:0.187200px;}
.ls6f_c00458{letter-spacing:0.273780px;}
.lsd_c00458{letter-spacing:0.301860px;}
.ls9_c00458{letter-spacing:0.322920px;}
.ls73_c00458{letter-spacing:0.345600px;}
.lsb_c00458{letter-spacing:0.421200px;}
.lse_c00458{letter-spacing:0.463320px;}
.ls15_c00458{letter-spacing:0.482400px;}
.ls17_c00458{letter-spacing:0.589680px;}
.ls4_c00458{letter-spacing:0.702000px;}
.ls5_c00458{letter-spacing:0.709020px;}
.ls1a_c00458{letter-spacing:0.716040px;}
.lsa_c00458{letter-spacing:0.744120px;}
.ls8_c00458{letter-spacing:0.849420px;}
.ls36_c00458{letter-spacing:0.968760px;}
.ls6_c00458{letter-spacing:1.081080px;}
.ls1_c00458{letter-spacing:1.209600px;}
.ls19_c00458{letter-spacing:1.296000px;}
.ls13_c00458{letter-spacing:2.007720px;}
.ls14_c00458{letter-spacing:2.016000px;}
.ls3d_c00458{letter-spacing:2.613600px;}
.ls1b_c00458{letter-spacing:2.892780px;}
.ls68_c00458{letter-spacing:3.600000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{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__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00458{word-spacing:0.000000px;}
._13_c00458{margin-left:-6.516120px;}
._12_c00458{margin-left:-4.728600px;}
._f_c00458{margin-left:-1.979880px;}
._4_c00458{width:1.224000px;}
._3_c00458{width:3.124800px;}
._6_c00458{width:4.348800px;}
._7_c00458{width:5.407200px;}
._8_c00458{width:6.703200px;}
._5_c00458{width:8.568000px;}
._9_c00458{width:10.296000px;}
._1c_c00458{width:11.664000px;}
._a_c00458{width:13.332000px;}
._1b_c00458{width:14.443200px;}
._1d_c00458{width:16.212000px;}
._14_c00458{width:19.404000px;}
._10_c00458{width:20.662680px;}
._1_c00458{width:22.687200px;}
._0_c00458{width:24.055200px;}
._2_c00458{width:25.495200px;}
._11_c00458{width:27.396000px;}
._1a_c00458{width:28.641600px;}
._18_c00458{width:30.744000px;}
._19_c00458{width:31.939200px;}
._15_c00458{width:33.501600px;}
._c_c00458{width:34.776000px;}
._17_c00458{width:35.784000px;}
._e_c00458{width:37.274400px;}
._b_c00458{width:38.952000px;}
._16_c00458{width:40.140000px;}
._d_c00458{width:41.299200px;}
.fc0_c00458{color:transparent;}
.fs3_c00458{font-size:57.600000px;}
.fs0_c00458{font-size:59.400000px;}
.fs2_c00458{font-size:70.200000px;}
.fs1_c00458{font-size:72.000000px;}
.y0_c00458{bottom:0.000000px;}
.y1b_c00458{bottom:104.400006px;}
.y1a_c00458{bottom:208.455006px;}
.y19_c00458{bottom:239.775006px;}
.y18_c00458{bottom:302.058006px;}
.y17_c00458{bottom:332.658006px;}
.y16_c00458{bottom:362.880006px;}
.y14_c00458{bottom:393.477006px;}
.y15_c00458{bottom:393.480006px;}
.y13_c00458{bottom:424.455006px;}
.y12_c00458{bottom:455.055006px;}
.y11_c00458{bottom:516.618006px;}
.y10_c00458{bottom:547.560006px;}
.yf_c00458{bottom:609.855006px;}
.ye_c00458{bottom:642.255006px;}
.yd_c00458{bottom:672.855006px;}
.yc_c00458{bottom:734.055006px;}
.yb_c00458{bottom:795.615006px;}
.ya_c00458{bottom:826.575006px;}
.y9_c00458{bottom:857.520006px;}
.y8_c00458{bottom:888.480006px;}
.y7_c00458{bottom:888.482256px;}
.y6_c00458{bottom:920.160006px;}
.y5_c00458{bottom:951.840006px;}
.y4_c00458{bottom:1013.415006px;}
.y3_c00458{bottom:1013.418006px;}
.y2_c00458{bottom:1044.360006px;}
.y1_c00458{bottom:1152.000006px;}
.h5_c00458{height:56.531250px;}
.h2_c00458{height:58.297852px;}
.h4_c00458{height:70.655062px;}
.h3_c00458{height:70.664062px;}
.h1_c00458{height:1263.000000px;}
.h0_c00458{height:1263.240006px;}
.w1_c00458{width:892.500000px;}
.w0_c00458{width:892.799998px;}
.x0_c00458{left:0.000000px;}
.x2d_c00458{left:108.311998px;}
.x1_c00458{left:109.649998px;}
.x1a_c00458{left:132.749998px;}
.x16_c00458{left:159.674998px;}
.x1d_c00458{left:162.149998px;}
.x8_c00458{left:163.574998px;}
.x1b_c00458{left:167.009998px;}
.x9_c00458{left:181.694998px;}
.x1e_c00458{left:184.949998px;}
.x2e_c00458{left:193.934998px;}
.x27_c00458{left:195.989999px;}
.x17_c00458{left:221.579998px;}
.x28_c00458{left:224.429998px;}
.x1f_c00458{left:245.654999px;}
.x6_c00458{left:280.619999px;}
.x23_c00458{left:298.904999px;}
.x2_c00458{left:306.554999px;}
.x7_c00458{left:311.009999px;}
.x24_c00458{left:329.189999px;}
.x3_c00458{left:333.104999px;}
.x20_c00458{left:349.754999px;}
.x4_c00458{left:352.004999px;}
.x5_c00458{left:385.019998px;}
.xc_c00458{left:416.714998px;}
.x2f_c00458{left:421.754998px;}
.xe_c00458{left:433.274999px;}
.x10_c00458{left:442.994999px;}
.xd_c00458{left:446.969998px;}
.xf_c00458{left:455.249998px;}
.x21_c00458{left:460.184999px;}
.x11_c00458{left:464.969998px;}
.x29_c00458{left:482.999998px;}
.x22_c00458{left:486.509999px;}
.x2a_c00458{left:542.399999px;}
.x12_c00458{left:572.564999px;}
.xa_c00458{left:576.269998px;}
.x13_c00458{left:604.259999px;}
.xb_c00458{left:611.969998px;}
.x25_c00458{left:615.344998px;}
.x14_c00458{left:633.359998px;}
.x18_c00458{left:638.489998px;}
.x26_c00458{left:645.629999px;}
.x19_c00458{left:658.649999px;}
.x2b_c00458{left:663.629999px;}
.x15_c00458{left:677.339998px;}
.x1c_c00458{left:687.149999px;}
.x2c_c00458{left:688.829998px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls1e_c00458{letter-spacing:-2.240000pt;}
.ls29_c00458{letter-spacing:-2.176000pt;}
.ls5b_c00458{letter-spacing:-1.817600pt;}
.ls35_c00458{letter-spacing:-1.721600pt;}
.ls6d_c00458{letter-spacing:-1.708800pt;}
.ls22_c00458{letter-spacing:-1.625600pt;}
.ls2a_c00458{letter-spacing:-1.587200pt;}
.ls48_c00458{letter-spacing:-1.568000pt;}
.ls4f_c00458{letter-spacing:-1.484800pt;}
.ls4d_c00458{letter-spacing:-1.318400pt;}
.ls40_c00458{letter-spacing:-1.292800pt;}
.ls52_c00458{letter-spacing:-1.241600pt;}
.ls5c_c00458{letter-spacing:-1.081600pt;}
.ls6a_c00458{letter-spacing:-1.068800pt;}
.ls6c_c00458{letter-spacing:-1.049600pt;}
.ls61_c00458{letter-spacing:-1.024000pt;}
.ls27_c00458{letter-spacing:-0.992000pt;}
.ls69_c00458{letter-spacing:-0.960000pt;}
.ls4e_c00458{letter-spacing:-0.947200pt;}
.ls4b_c00458{letter-spacing:-0.921600pt;}
.ls70_c00458{letter-spacing:-0.908800pt;}
.ls25_c00458{letter-spacing:-0.896000pt;}
.ls5e_c00458{letter-spacing:-0.857600pt;}
.ls5f_c00458{letter-spacing:-0.851200pt;}
.ls2d_c00458{letter-spacing:-0.787200pt;}
.ls55_c00458{letter-spacing:-0.774400pt;}
.ls38_c00458{letter-spacing:-0.768000pt;}
.ls32_c00458{letter-spacing:-0.736000pt;}
.ls60_c00458{letter-spacing:-0.640000pt;}
.ls41_c00458{letter-spacing:-0.614400pt;}
.ls5a_c00458{letter-spacing:-0.608000pt;}
.ls5d_c00458{letter-spacing:-0.601600pt;}
.ls2e_c00458{letter-spacing:-0.588800pt;}
.ls53_c00458{letter-spacing:-0.569600pt;}
.ls3b_c00458{letter-spacing:-0.556800pt;}
.ls3e_c00458{letter-spacing:-0.550400pt;}
.ls3a_c00458{letter-spacing:-0.492800pt;}
.ls72_c00458{letter-spacing:-0.436800pt;}
.ls34_c00458{letter-spacing:-0.435200pt;}
.ls67_c00458{letter-spacing:-0.428800pt;}
.ls47_c00458{letter-spacing:-0.384000pt;}
.ls30_c00458{letter-spacing:-0.371200pt;}
.ls57_c00458{letter-spacing:-0.364800pt;}
.ls3c_c00458{letter-spacing:-0.358400pt;}
.ls4c_c00458{letter-spacing:-0.352000pt;}
.ls42_c00458{letter-spacing:-0.339200pt;}
.ls43_c00458{letter-spacing:-0.332800pt;}
.ls65_c00458{letter-spacing:-0.320000pt;}
.ls2b_c00458{letter-spacing:-0.313600pt;}
.ls26_c00458{letter-spacing:-0.307200pt;}
.ls20_c00458{letter-spacing:-0.262400pt;}
.ls59_c00458{letter-spacing:-0.256000pt;}
.ls2c_c00458{letter-spacing:-0.249600pt;}
.ls39_c00458{letter-spacing:-0.243200pt;}
.ls63_c00458{letter-spacing:-0.230400pt;}
.ls44_c00458{letter-spacing:-0.224000pt;}
.ls1d_c00458{letter-spacing:-0.217600pt;}
.ls33_c00458{letter-spacing:-0.211200pt;}
.ls21_c00458{letter-spacing:-0.204800pt;}
.ls31_c00458{letter-spacing:-0.198400pt;}
.ls64_c00458{letter-spacing:-0.192000pt;}
.ls66_c00458{letter-spacing:-0.179200pt;}
.ls28_c00458{letter-spacing:-0.166400pt;}
.ls3f_c00458{letter-spacing:-0.153600pt;}
.ls1c_c00458{letter-spacing:-0.147200pt;}
.ls58_c00458{letter-spacing:-0.140800pt;}
.ls54_c00458{letter-spacing:-0.128000pt;}
.ls71_c00458{letter-spacing:-0.121600pt;}
.ls23_c00458{letter-spacing:-0.115200pt;}
.ls24_c00458{letter-spacing:-0.108800pt;}
.ls56_c00458{letter-spacing:-0.099840pt;}
.ls50_c00458{letter-spacing:-0.096000pt;}
.ls6b_c00458{letter-spacing:-0.089600pt;}
.ls4a_c00458{letter-spacing:-0.083200pt;}
.ls49_c00458{letter-spacing:-0.076800pt;}
.ls2f_c00458{letter-spacing:-0.070400pt;}
.ls6e_c00458{letter-spacing:-0.064000pt;}
.ls45_c00458{letter-spacing:-0.057600pt;}
.ls51_c00458{letter-spacing:-0.038400pt;}
.ls46_c00458{letter-spacing:-0.032000pt;}
.ls37_c00458{letter-spacing:-0.012800pt;}
.ls62_c00458{letter-spacing:-0.006400pt;}
.ls1f_c00458{letter-spacing:0.000000pt;}
.ls7_c00458{letter-spacing:0.006400pt;}
.ls2_c00458{letter-spacing:0.025600pt;}
.ls16_c00458{letter-spacing:0.032000pt;}
.lsc_c00458{letter-spacing:0.057600pt;}
.ls0_c00458{letter-spacing:0.076800pt;}
.ls18_c00458{letter-spacing:0.096000pt;}
.ls10_c00458{letter-spacing:0.102400pt;}
.lsf_c00458{letter-spacing:0.121600pt;}
.ls11_c00458{letter-spacing:0.128000pt;}
.ls12_c00458{letter-spacing:0.147200pt;}
.ls3_c00458{letter-spacing:0.166400pt;}
.ls6f_c00458{letter-spacing:0.243360pt;}
.lsd_c00458{letter-spacing:0.268320pt;}
.ls9_c00458{letter-spacing:0.287040pt;}
.ls73_c00458{letter-spacing:0.307200pt;}
.lsb_c00458{letter-spacing:0.374400pt;}
.lse_c00458{letter-spacing:0.411840pt;}
.ls15_c00458{letter-spacing:0.428800pt;}
.ls17_c00458{letter-spacing:0.524160pt;}
.ls4_c00458{letter-spacing:0.624000pt;}
.ls5_c00458{letter-spacing:0.630240pt;}
.ls1a_c00458{letter-spacing:0.636480pt;}
.lsa_c00458{letter-spacing:0.661440pt;}
.ls8_c00458{letter-spacing:0.755040pt;}
.ls36_c00458{letter-spacing:0.861120pt;}
.ls6_c00458{letter-spacing:0.960960pt;}
.ls1_c00458{letter-spacing:1.075200pt;}
.ls19_c00458{letter-spacing:1.152000pt;}
.ls13_c00458{letter-spacing:1.784640pt;}
.ls14_c00458{letter-spacing:1.792000pt;}
.ls3d_c00458{letter-spacing:2.323200pt;}
.ls1b_c00458{letter-spacing:2.571360pt;}
.ls68_c00458{letter-spacing:3.200000pt;}
.ws0_c00458{word-spacing:0.000000pt;}
._13_c00458{margin-left:-5.792107pt;}
._12_c00458{margin-left:-4.203200pt;}
._f_c00458{margin-left:-1.759893pt;}
._4_c00458{width:1.088000pt;}
._3_c00458{width:2.777600pt;}
._6_c00458{width:3.865600pt;}
._7_c00458{width:4.806400pt;}
._8_c00458{width:5.958400pt;}
._5_c00458{width:7.616000pt;}
._9_c00458{width:9.152000pt;}
._1c_c00458{width:10.368000pt;}
._a_c00458{width:11.850667pt;}
._1b_c00458{width:12.838400pt;}
._1d_c00458{width:14.410667pt;}
._14_c00458{width:17.248000pt;}
._10_c00458{width:18.366827pt;}
._1_c00458{width:20.166400pt;}
._0_c00458{width:21.382400pt;}
._2_c00458{width:22.662400pt;}
._11_c00458{width:24.352000pt;}
._1a_c00458{width:25.459200pt;}
._18_c00458{width:27.328000pt;}
._19_c00458{width:28.390400pt;}
._15_c00458{width:29.779200pt;}
._c_c00458{width:30.912000pt;}
._17_c00458{width:31.808000pt;}
._e_c00458{width:33.132800pt;}
._b_c00458{width:34.624000pt;}
._16_c00458{width:35.680000pt;}
._d_c00458{width:36.710400pt;}
.fs3_c00458{font-size:51.200000pt;}
.fs0_c00458{font-size:52.800000pt;}
.fs2_c00458{font-size:62.400000pt;}
.fs1_c00458{font-size:64.000000pt;}
.y0_c00458{bottom:0.000000pt;}
.y1b_c00458{bottom:92.800005pt;}
.y1a_c00458{bottom:185.293339pt;}
.y19_c00458{bottom:213.133339pt;}
.y18_c00458{bottom:268.496005pt;}
.y17_c00458{bottom:295.696005pt;}
.y16_c00458{bottom:322.560005pt;}
.y14_c00458{bottom:349.757339pt;}
.y15_c00458{bottom:349.760005pt;}
.y13_c00458{bottom:377.293339pt;}
.y12_c00458{bottom:404.493339pt;}
.y11_c00458{bottom:459.216005pt;}
.y10_c00458{bottom:486.720005pt;}
.yf_c00458{bottom:542.093339pt;}
.ye_c00458{bottom:570.893339pt;}
.yd_c00458{bottom:598.093339pt;}
.yc_c00458{bottom:652.493339pt;}
.yb_c00458{bottom:707.213339pt;}
.ya_c00458{bottom:734.733339pt;}
.y9_c00458{bottom:762.240005pt;}
.y8_c00458{bottom:789.760005pt;}
.y7_c00458{bottom:789.762005pt;}
.y6_c00458{bottom:817.920005pt;}
.y5_c00458{bottom:846.080005pt;}
.y4_c00458{bottom:900.813339pt;}
.y3_c00458{bottom:900.816005pt;}
.y2_c00458{bottom:928.320005pt;}
.y1_c00458{bottom:1024.000005pt;}
.h5_c00458{height:50.250000pt;}
.h2_c00458{height:51.820312pt;}
.h4_c00458{height:62.804500pt;}
.h3_c00458{height:62.812500pt;}
.h1_c00458{height:1122.666667pt;}
.h0_c00458{height:1122.880005pt;}
.w1_c00458{width:793.333333pt;}
.w0_c00458{width:793.599999pt;}
.x0_c00458{left:0.000000pt;}
.x2d_c00458{left:96.277332pt;}
.x1_c00458{left:97.466665pt;}
.x1a_c00458{left:117.999999pt;}
.x16_c00458{left:141.933332pt;}
.x1d_c00458{left:144.133332pt;}
.x8_c00458{left:145.399999pt;}
.x1b_c00458{left:148.453332pt;}
.x9_c00458{left:161.506665pt;}
.x1e_c00458{left:164.399999pt;}
.x2e_c00458{left:172.386665pt;}
.x27_c00458{left:174.213332pt;}
.x17_c00458{left:196.959999pt;}
.x28_c00458{left:199.493332pt;}
.x1f_c00458{left:218.359999pt;}
.x6_c00458{left:249.439999pt;}
.x23_c00458{left:265.693332pt;}
.x2_c00458{left:272.493332pt;}
.x7_c00458{left:276.453332pt;}
.x24_c00458{left:292.613332pt;}
.x3_c00458{left:296.093332pt;}
.x20_c00458{left:310.893332pt;}
.x4_c00458{left:312.893332pt;}
.x5_c00458{left:342.239999pt;}
.xc_c00458{left:370.413332pt;}
.x2f_c00458{left:374.893332pt;}
.xe_c00458{left:385.133332pt;}
.x10_c00458{left:393.773332pt;}
.xd_c00458{left:397.306665pt;}
.xf_c00458{left:404.666665pt;}
.x21_c00458{left:409.053332pt;}
.x11_c00458{left:413.306665pt;}
.x29_c00458{left:429.333332pt;}
.x22_c00458{left:432.453332pt;}
.x2a_c00458{left:482.133332pt;}
.x12_c00458{left:508.946665pt;}
.xa_c00458{left:512.239999pt;}
.x13_c00458{left:537.119999pt;}
.xb_c00458{left:543.973332pt;}
.x25_c00458{left:546.973332pt;}
.x14_c00458{left:562.986665pt;}
.x18_c00458{left:567.546665pt;}
.x26_c00458{left:573.893332pt;}
.x19_c00458{left:585.466665pt;}
.x2b_c00458{left:589.893332pt;}
.x15_c00458{left:602.079999pt;}
.x1c_c00458{left:610.799999pt;}
.x2c_c00458{left:612.293332pt;}
}





/* 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_c00459 {
    display:none;
  }
  .loading-indicator_c00459.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00459 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_c00459 { 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_c00459" -> "#page-container .classname_c00459")
 */
.pf_c00459 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00459 { /* 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_c00459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00459 { /* 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_c00459 { /* 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_c00459 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00459 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00459 {overflow:visible;}
  }
}
.c_c00459 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00459 { /* 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_c00459:after { /* webkit #35443 */
  content: '';
}
.t_c00459:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00459 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 */
}
.__c00459 { /* 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_c00459 { /* info for Javascript */
  display:none;
}
.l_c00459 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00459 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00459 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00459: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_c00459 {
    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_c00459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00459.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_c00459 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00459{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00459;src:url('chunks/assets/font_fbc1d2cf38a5907667dd3f4a.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.284668;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_c00459;src:url('chunks/assets/font_d6b12d7ab920fe5c3be0c13f.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.284180;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_c00459;src:url('chunks/assets/font_9c09d2b54a5188bc6301960b.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:0.666000;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;}
.ma_c00459{transform:matrix(0.150463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150463,0.000000,0.000000,0.250000,0,0);}
.m8_c00459{transform:matrix(0.151351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151351,0.000000,0.000000,0.250000,0,0);}
.m3_c00459{transform:matrix(0.152030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152030,0.000000,0.000000,0.250000,0,0);}
.m7_c00459{transform:matrix(0.155408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155408,0.000000,0.000000,0.250000,0,0);}
.m5_c00459{transform:matrix(0.235853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235853,0.000000,0.000000,0.250000,0,0);}
.m6_c00459{transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);}
.m2_c00459{transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);}
.m9_c00459{transform:matrix(0.247496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247496,0.000000,0.000000,0.250000,0,0);}
.m4_c00459{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m1_c00459{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);}
.m0_c00459{transform:matrix(0.252112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252112,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls22_c00459{letter-spacing:-2.541000px;}
.ls36_c00459{letter-spacing:-2.410320px;}
.ls2e_c00459{letter-spacing:-2.265120px;}
.ls33_c00459{letter-spacing:-2.228820px;}
.ls48_c00459{letter-spacing:-2.178000px;}
.ls34_c00459{letter-spacing:-2.170740px;}
.ls1a_c00459{letter-spacing:-1.880340px;}
.ls20_c00459{letter-spacing:-1.568160px;}
.ls24_c00459{letter-spacing:-1.546380px;}
.ls38_c00459{letter-spacing:-1.481040px;}
.ls47_c00459{letter-spacing:-1.452000px;}
.ls2c_c00459{letter-spacing:-1.285020px;}
.ls40_c00459{letter-spacing:-1.183380px;}
.ls58_c00459{letter-spacing:-1.052700px;}
.ls30_c00459{letter-spacing:-0.972840px;}
.ls31_c00459{letter-spacing:-0.951060px;}
.ls1d_c00459{letter-spacing:-0.791340px;}
.ls4f_c00459{letter-spacing:-0.769560px;}
.ls4e_c00459{letter-spacing:-0.762300px;}
.ls29_c00459{letter-spacing:-0.682440px;}
.ls1b_c00459{letter-spacing:-0.646140px;}
.ls56_c00459{letter-spacing:-0.602580px;}
.ls59_c00459{letter-spacing:-0.588060px;}
.ls43_c00459{letter-spacing:-0.559020px;}
.ls3f_c00459{letter-spacing:-0.551760px;}
.ls3e_c00459{letter-spacing:-0.544500px;}
.ls42_c00459{letter-spacing:-0.529980px;}
.ls45_c00459{letter-spacing:-0.493680px;}
.ls32_c00459{letter-spacing:-0.457380px;}
.ls2d_c00459{letter-spacing:-0.450120px;}
.ls18_c00459{letter-spacing:-0.435600px;}
.ls21_c00459{letter-spacing:-0.421080px;}
.ls5a_c00459{letter-spacing:-0.413820px;}
.ls5c_c00459{letter-spacing:-0.399300px;}
.ls28_c00459{letter-spacing:-0.392040px;}
.ls19_c00459{letter-spacing:-0.384780px;}
.ls17_c00459{letter-spacing:-0.363000px;}
.ls27_c00459{letter-spacing:-0.348480px;}
.ls4d_c00459{letter-spacing:-0.297660px;}
.ls26_c00459{letter-spacing:-0.290400px;}
.ls4c_c00459{letter-spacing:-0.268620px;}
.ls51_c00459{letter-spacing:-0.261360px;}
.ls2b_c00459{letter-spacing:-0.254100px;}
.ls55_c00459{letter-spacing:-0.246840px;}
.ls16_c00459{letter-spacing:-0.232320px;}
.ls2f_c00459{letter-spacing:-0.225060px;}
.ls39_c00459{letter-spacing:-0.217800px;}
.ls44_c00459{letter-spacing:-0.210540px;}
.ls5d_c00459{letter-spacing:-0.203280px;}
.ls37_c00459{letter-spacing:-0.196020px;}
.ls4b_c00459{letter-spacing:-0.188760px;}
.ls3a_c00459{letter-spacing:-0.181500px;}
.ls3c_c00459{letter-spacing:-0.174240px;}
.ls3d_c00459{letter-spacing:-0.159720px;}
.ls25_c00459{letter-spacing:-0.152460px;}
.ls5e_c00459{letter-spacing:-0.137940px;}
.ls5b_c00459{letter-spacing:-0.130680px;}
.ls23_c00459{letter-spacing:-0.123420px;}
.ls4a_c00459{letter-spacing:-0.116160px;}
.ls57_c00459{letter-spacing:-0.108900px;}
.ls2a_c00459{letter-spacing:-0.087120px;}
.ls49_c00459{letter-spacing:-0.065340px;}
.ls53_c00459{letter-spacing:-0.043560px;}
.ls41_c00459{letter-spacing:-0.036300px;}
.ls1c_c00459{letter-spacing:-0.029040px;}
.ls1f_c00459{letter-spacing:-0.021780px;}
.ls50_c00459{letter-spacing:-0.007260px;}
.ls1e_c00459{letter-spacing:0.000000px;}
.lsf_c00459{letter-spacing:0.007260px;}
.ls3_c00459{letter-spacing:0.014520px;}
.ls9_c00459{letter-spacing:0.029040px;}
.ls12_c00459{letter-spacing:0.036300px;}
.ls7_c00459{letter-spacing:0.050820px;}
.ls3b_c00459{letter-spacing:0.072600px;}
.ls6_c00459{letter-spacing:0.079860px;}
.lse_c00459{letter-spacing:0.094380px;}
.ls52_c00459{letter-spacing:0.101640px;}
.ls14_c00459{letter-spacing:0.116160px;}
.lsb_c00459{letter-spacing:0.137940px;}
.ls13_c00459{letter-spacing:0.181500px;}
.lsd_c00459{letter-spacing:0.188760px;}
.lsa_c00459{letter-spacing:0.196020px;}
.ls5_c00459{letter-spacing:0.203280px;}
.ls10_c00459{letter-spacing:0.225060px;}
.ls1_c00459{letter-spacing:0.275880px;}
.ls2_c00459{letter-spacing:0.384780px;}
.ls8_c00459{letter-spacing:0.392040px;}
.ls54_c00459{letter-spacing:0.500940px;}
.ls35_c00459{letter-spacing:0.537240px;}
.ls46_c00459{letter-spacing:0.689700px;}
.ls11_c00459{letter-spacing:0.762300px;}
.ls5f_c00459{letter-spacing:0.905520px;}
.ls4_c00459{letter-spacing:0.943800px;}
.ls0_c00459{letter-spacing:1.294560px;}
.lsc_c00459{letter-spacing:1.807740px;}
.ls15_c00459{letter-spacing:2.940000px;}
.sc__c00459{text-shadow:none;}
.sc0_c00459{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__c00459{-webkit-text-stroke:0px transparent;}
.sc0_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00459{word-spacing:0.000000px;}
._17_c00459{margin-left:-1.775460px;}
._2_c00459{width:1.452000px;}
._1_c00459{width:2.468400px;}
._4_c00459{width:3.593700px;}
._0_c00459{width:5.212680px;}
._3_c00459{width:6.574320px;}
._9_c00459{width:8.370780px;}
._8_c00459{width:9.873600px;}
._a_c00459{width:10.948080px;}
._d_c00459{width:12.095160px;}
._5_c00459{width:13.547160px;}
._7_c00459{width:14.984640px;}
._c_c00459{width:16.066380px;}
._b_c00459{width:17.674980px;}
._6_c00459{width:18.934080px;}
._e_c00459{width:20.814420px;}
._16_c00459{width:22.266420px;}
._15_c00459{width:23.660340px;}
._11_c00459{width:25.359180px;}
._12_c00459{width:26.891040px;}
._f_c00459{width:27.943740px;}
._10_c00459{width:29.315880px;}
._14_c00459{width:30.882000px;}
._18_c00459{width:32.270700px;}
._13_c00459{width:33.493800px;}
._19_c00459{width:35.374560px;}
._1b_c00459{width:38.187600px;}
._1a_c00459{width:40.568880px;}
.fc0_c00459{color:transparent;}
.fs5_c00459{font-size:51.840000px;}
.fs3_c00459{font-size:53.280000px;}
.fs0_c00459{font-size:58.800000px;}
.fs2_c00459{font-size:69.600000px;}
.fs1_c00459{font-size:72.600000px;}
.fs4_c00459{font-size:73.800000px;}
.y0_c00459{bottom:0.000000px;}
.y17_c00459{bottom:108.000000px;}
.y16_c00459{bottom:465.851100px;}
.y14_c00459{bottom:496.811100px;}
.y15_c00459{bottom:496.815000px;}
.y13_c00459{bottom:527.775000px;}
.y12_c00459{bottom:527.777250px;}
.y11_c00459{bottom:558.360000px;}
.y10_c00459{bottom:620.272950px;}
.yf_c00459{bottom:651.255000px;}
.ye_c00459{bottom:681.855000px;}
.yd_c00459{bottom:743.415000px;}
.yc_c00459{bottom:774.360000px;}
.yb_c00459{bottom:774.364200px;}
.ya_c00459{bottom:805.691100px;}
.y9_c00459{bottom:836.655000px;}
.y8_c00459{bottom:867.615000px;}
.y7_c00459{bottom:929.171100px;}
.y6_c00459{bottom:960.135000px;}
.y5_c00459{bottom:960.137250px;}
.y4_c00459{bottom:990.720000px;}
.y3_c00459{bottom:1052.297250px;}
.y2_c00459{bottom:1082.880000px;}
.y1_c00459{bottom:1158.855000px;}
.h6_c00459{height:34.525440px;}
.h4_c00459{height:35.484480px;}
.h2_c00459{height:57.708984px;}
.h3_c00459{height:71.252930px;}
.h5_c00459{height:72.430664px;}
.h1_c00459{height:1263.000000px;}
.h0_c00459{height:1263.240000px;}
.w1_c00459{width:892.500000px;}
.w0_c00459{width:892.800000px;}
.x0_c00459{left:0.000000px;}
.x1d_c00459{left:107.816100px;}
.x10_c00459{left:108.900000px;}
.x6_c00459{left:110.346450px;}
.x1_c00459{left:111.810000px;}
.x1e_c00459{left:162.465000px;}
.xb_c00459{left:163.905000px;}
.x2_c00459{left:165.345000px;}
.xc_c00459{left:193.590000px;}
.x3_c00459{left:194.610000px;}
.x1f_c00459{left:197.175000px;}
.xd_c00459{left:227.010000px;}
.xe_c00459{left:248.610000px;}
.x15_c00459{left:327.795000px;}
.x1b_c00459{left:332.475000px;}
.x24_c00459{left:333.915000px;}
.x16_c00459{left:349.770000px;}
.x1c_c00459{left:356.580000px;}
.x25_c00459{left:358.020000px;}
.x7_c00459{left:410.235000px;}
.x26_c00459{left:423.555000px;}
.x8_c00459{left:433.290000px;}
.x17_c00459{left:497.895000px;}
.x18_c00459{left:532.395000px;}
.x19_c00459{left:571.695000px;}
.x20_c00459{left:586.050000px;}
.x21_c00459{left:616.995000px;}
.x13_c00459{left:625.875000px;}
.x22_c00459{left:629.655000px;}
.x4_c00459{left:630.735000px;}
.x11_c00459{left:643.875000px;}
.x14_c00459{left:653.970000px;}
.x5_c00459{left:655.155000px;}
.x1a_c00459{left:662.565000px;}
.x12_c00459{left:668.370000px;}
.x9_c00459{left:682.455000px;}
.x23_c00459{left:685.245000px;}
.xa_c00459{left:705.765000px;}
.xf_c00459{left:749.355000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls22_c00459{letter-spacing:-2.258667pt;}
.ls36_c00459{letter-spacing:-2.142507pt;}
.ls2e_c00459{letter-spacing:-2.013440pt;}
.ls33_c00459{letter-spacing:-1.981173pt;}
.ls48_c00459{letter-spacing:-1.936000pt;}
.ls34_c00459{letter-spacing:-1.929547pt;}
.ls1a_c00459{letter-spacing:-1.671413pt;}
.ls20_c00459{letter-spacing:-1.393920pt;}
.ls24_c00459{letter-spacing:-1.374560pt;}
.ls38_c00459{letter-spacing:-1.316480pt;}
.ls47_c00459{letter-spacing:-1.290667pt;}
.ls2c_c00459{letter-spacing:-1.142240pt;}
.ls40_c00459{letter-spacing:-1.051893pt;}
.ls58_c00459{letter-spacing:-0.935733pt;}
.ls30_c00459{letter-spacing:-0.864747pt;}
.ls31_c00459{letter-spacing:-0.845387pt;}
.ls1d_c00459{letter-spacing:-0.703413pt;}
.ls4f_c00459{letter-spacing:-0.684053pt;}
.ls4e_c00459{letter-spacing:-0.677600pt;}
.ls29_c00459{letter-spacing:-0.606613pt;}
.ls1b_c00459{letter-spacing:-0.574347pt;}
.ls56_c00459{letter-spacing:-0.535627pt;}
.ls59_c00459{letter-spacing:-0.522720pt;}
.ls43_c00459{letter-spacing:-0.496907pt;}
.ls3f_c00459{letter-spacing:-0.490453pt;}
.ls3e_c00459{letter-spacing:-0.484000pt;}
.ls42_c00459{letter-spacing:-0.471093pt;}
.ls45_c00459{letter-spacing:-0.438827pt;}
.ls32_c00459{letter-spacing:-0.406560pt;}
.ls2d_c00459{letter-spacing:-0.400107pt;}
.ls18_c00459{letter-spacing:-0.387200pt;}
.ls21_c00459{letter-spacing:-0.374293pt;}
.ls5a_c00459{letter-spacing:-0.367840pt;}
.ls5c_c00459{letter-spacing:-0.354933pt;}
.ls28_c00459{letter-spacing:-0.348480pt;}
.ls19_c00459{letter-spacing:-0.342027pt;}
.ls17_c00459{letter-spacing:-0.322667pt;}
.ls27_c00459{letter-spacing:-0.309760pt;}
.ls4d_c00459{letter-spacing:-0.264587pt;}
.ls26_c00459{letter-spacing:-0.258133pt;}
.ls4c_c00459{letter-spacing:-0.238773pt;}
.ls51_c00459{letter-spacing:-0.232320pt;}
.ls2b_c00459{letter-spacing:-0.225867pt;}
.ls55_c00459{letter-spacing:-0.219413pt;}
.ls16_c00459{letter-spacing:-0.206507pt;}
.ls2f_c00459{letter-spacing:-0.200053pt;}
.ls39_c00459{letter-spacing:-0.193600pt;}
.ls44_c00459{letter-spacing:-0.187147pt;}
.ls5d_c00459{letter-spacing:-0.180693pt;}
.ls37_c00459{letter-spacing:-0.174240pt;}
.ls4b_c00459{letter-spacing:-0.167787pt;}
.ls3a_c00459{letter-spacing:-0.161333pt;}
.ls3c_c00459{letter-spacing:-0.154880pt;}
.ls3d_c00459{letter-spacing:-0.141973pt;}
.ls25_c00459{letter-spacing:-0.135520pt;}
.ls5e_c00459{letter-spacing:-0.122613pt;}
.ls5b_c00459{letter-spacing:-0.116160pt;}
.ls23_c00459{letter-spacing:-0.109707pt;}
.ls4a_c00459{letter-spacing:-0.103253pt;}
.ls57_c00459{letter-spacing:-0.096800pt;}
.ls2a_c00459{letter-spacing:-0.077440pt;}
.ls49_c00459{letter-spacing:-0.058080pt;}
.ls53_c00459{letter-spacing:-0.038720pt;}
.ls41_c00459{letter-spacing:-0.032267pt;}
.ls1c_c00459{letter-spacing:-0.025813pt;}
.ls1f_c00459{letter-spacing:-0.019360pt;}
.ls50_c00459{letter-spacing:-0.006453pt;}
.ls1e_c00459{letter-spacing:0.000000pt;}
.lsf_c00459{letter-spacing:0.006453pt;}
.ls3_c00459{letter-spacing:0.012907pt;}
.ls9_c00459{letter-spacing:0.025813pt;}
.ls12_c00459{letter-spacing:0.032267pt;}
.ls7_c00459{letter-spacing:0.045173pt;}
.ls3b_c00459{letter-spacing:0.064533pt;}
.ls6_c00459{letter-spacing:0.070987pt;}
.lse_c00459{letter-spacing:0.083893pt;}
.ls52_c00459{letter-spacing:0.090347pt;}
.ls14_c00459{letter-spacing:0.103253pt;}
.lsb_c00459{letter-spacing:0.122613pt;}
.ls13_c00459{letter-spacing:0.161333pt;}
.lsd_c00459{letter-spacing:0.167787pt;}
.lsa_c00459{letter-spacing:0.174240pt;}
.ls5_c00459{letter-spacing:0.180693pt;}
.ls10_c00459{letter-spacing:0.200053pt;}
.ls1_c00459{letter-spacing:0.245227pt;}
.ls2_c00459{letter-spacing:0.342027pt;}
.ls8_c00459{letter-spacing:0.348480pt;}
.ls54_c00459{letter-spacing:0.445280pt;}
.ls35_c00459{letter-spacing:0.477547pt;}
.ls46_c00459{letter-spacing:0.613067pt;}
.ls11_c00459{letter-spacing:0.677600pt;}
.ls5f_c00459{letter-spacing:0.804907pt;}
.ls4_c00459{letter-spacing:0.838933pt;}
.ls0_c00459{letter-spacing:1.150720pt;}
.lsc_c00459{letter-spacing:1.606880pt;}
.ls15_c00459{letter-spacing:2.613333pt;}
.ws0_c00459{word-spacing:0.000000pt;}
._17_c00459{margin-left:-1.578187pt;}
._2_c00459{width:1.290667pt;}
._1_c00459{width:2.194133pt;}
._4_c00459{width:3.194400pt;}
._0_c00459{width:4.633493pt;}
._3_c00459{width:5.843840pt;}
._9_c00459{width:7.440693pt;}
._8_c00459{width:8.776533pt;}
._a_c00459{width:9.731627pt;}
._d_c00459{width:10.751253pt;}
._5_c00459{width:12.041920pt;}
._7_c00459{width:13.319680pt;}
._c_c00459{width:14.281227pt;}
._b_c00459{width:15.711093pt;}
._6_c00459{width:16.830293pt;}
._e_c00459{width:18.501707pt;}
._16_c00459{width:19.792373pt;}
._15_c00459{width:21.031413pt;}
._11_c00459{width:22.541493pt;}
._12_c00459{width:23.903147pt;}
._f_c00459{width:24.838880pt;}
._10_c00459{width:26.058560pt;}
._14_c00459{width:27.450667pt;}
._18_c00459{width:28.685067pt;}
._13_c00459{width:29.772267pt;}
._19_c00459{width:31.444053pt;}
._1b_c00459{width:33.944533pt;}
._1a_c00459{width:36.061227pt;}
.fs5_c00459{font-size:46.080000pt;}
.fs3_c00459{font-size:47.360000pt;}
.fs0_c00459{font-size:52.266667pt;}
.fs2_c00459{font-size:61.866667pt;}
.fs1_c00459{font-size:64.533333pt;}
.fs4_c00459{font-size:65.600000pt;}
.y0_c00459{bottom:0.000000pt;}
.y17_c00459{bottom:96.000000pt;}
.y16_c00459{bottom:414.089867pt;}
.y14_c00459{bottom:441.609867pt;}
.y15_c00459{bottom:441.613333pt;}
.y13_c00459{bottom:469.133333pt;}
.y12_c00459{bottom:469.135333pt;}
.y11_c00459{bottom:496.320000pt;}
.y10_c00459{bottom:551.353733pt;}
.yf_c00459{bottom:578.893333pt;}
.ye_c00459{bottom:606.093333pt;}
.yd_c00459{bottom:660.813333pt;}
.yc_c00459{bottom:688.320000pt;}
.yb_c00459{bottom:688.323733pt;}
.ya_c00459{bottom:716.169867pt;}
.y9_c00459{bottom:743.693333pt;}
.y8_c00459{bottom:771.213333pt;}
.y7_c00459{bottom:825.929867pt;}
.y6_c00459{bottom:853.453333pt;}
.y5_c00459{bottom:853.455333pt;}
.y4_c00459{bottom:880.640000pt;}
.y3_c00459{bottom:935.375333pt;}
.y2_c00459{bottom:962.560000pt;}
.y1_c00459{bottom:1030.093333pt;}
.h6_c00459{height:30.689280pt;}
.h4_c00459{height:31.541760pt;}
.h2_c00459{height:51.296875pt;}
.h3_c00459{height:63.335938pt;}
.h5_c00459{height:64.382813pt;}
.h1_c00459{height:1122.666667pt;}
.h0_c00459{height:1122.880000pt;}
.w1_c00459{width:793.333333pt;}
.w0_c00459{width:793.600000pt;}
.x0_c00459{left:0.000000pt;}
.x1d_c00459{left:95.836533pt;}
.x10_c00459{left:96.800000pt;}
.x6_c00459{left:98.085733pt;}
.x1_c00459{left:99.386667pt;}
.x1e_c00459{left:144.413333pt;}
.xb_c00459{left:145.693333pt;}
.x2_c00459{left:146.973333pt;}
.xc_c00459{left:172.080000pt;}
.x3_c00459{left:172.986667pt;}
.x1f_c00459{left:175.266667pt;}
.xd_c00459{left:201.786667pt;}
.xe_c00459{left:220.986667pt;}
.x15_c00459{left:291.373333pt;}
.x1b_c00459{left:295.533333pt;}
.x24_c00459{left:296.813333pt;}
.x16_c00459{left:310.906667pt;}
.x1c_c00459{left:316.960000pt;}
.x25_c00459{left:318.240000pt;}
.x7_c00459{left:364.653333pt;}
.x26_c00459{left:376.493333pt;}
.x8_c00459{left:385.146667pt;}
.x17_c00459{left:442.573333pt;}
.x18_c00459{left:473.240000pt;}
.x19_c00459{left:508.173333pt;}
.x20_c00459{left:520.933333pt;}
.x21_c00459{left:548.440000pt;}
.x13_c00459{left:556.333333pt;}
.x22_c00459{left:559.693333pt;}
.x4_c00459{left:560.653333pt;}
.x11_c00459{left:572.333333pt;}
.x14_c00459{left:581.306667pt;}
.x5_c00459{left:582.360000pt;}
.x1a_c00459{left:588.946667pt;}
.x12_c00459{left:594.106667pt;}
.x9_c00459{left:606.626667pt;}
.x23_c00459{left:609.106667pt;}
.xa_c00459{left:627.346667pt;}
.xf_c00459{left:666.093333pt;}
}





/* 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_c00460 {
    display:none;
  }
  .loading-indicator_c00460.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00460 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_c00460 { 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_c00460" -> "#page-container .classname_c00460")
 */
.pf_c00460 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00460 { /* 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_c00460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00460 { /* 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_c00460 { /* 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_c00460 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00460 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00460 {overflow:visible;}
  }
}
.c_c00460 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00460 { /* 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_c00460:after { /* webkit #35443 */
  content: '';
}
.t_c00460:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00460 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 */
}
.__c00460 { /* 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_c00460 { /* info for Javascript */
  display:none;
}
.l_c00460 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00460 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00460 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00460: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_c00460 {
    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_c00460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00460.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_c00460 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00460{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00460;src:url('chunks/assets/font_beca2bd02657910f08f0afb4.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.311035;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_c00460;src:url('chunks/assets/font_ba7e20a5483a021a94ca926e.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.284668;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_c00460;src:url('chunks/assets/font_6753bacfbc6934d566ed1a82.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.284180;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_c00460;src:url('chunks/assets/font_a1705bdb494203dec637a86b.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;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:ff5_c00460;src:url('chunks/assets/font_0b0e12ec8d89e99c21e74864.woff2')format("woff");}.ff5_c00460{font-family:ff5_c00460;line-height:0.666000;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;}
.m5_c00460{transform:matrix(0.139527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139527,0.000000,0.000000,0.250000,0,0);}
.m6_c00460{transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);}
.m0_c00460{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_c00460{transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);}
.m7_c00460{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m4_c00460{transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);}
.m3_c00460{transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);}
.m2_c00460{transform:matrix(0.266119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266119,0.000000,0.000000,0.250000,0,0);}
.m8_c00460{transform:matrix(1.121215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.121215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.121215,0.000000,0.000000,0.250000,0,0);}
.m9_c00460{transform:matrix(5.524694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.524694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.524694,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls85_c00460{letter-spacing:-2.457000px;}
.ls87_c00460{letter-spacing:-2.178480px;}
.ls4d_c00460{letter-spacing:-2.010960px;}
.ls83_c00460{letter-spacing:-1.826280px;}
.ls8c_c00460{letter-spacing:-1.814400px;}
.ls72_c00460{letter-spacing:-1.635600px;}
.ls7b_c00460{letter-spacing:-1.539000px;}
.ls89_c00460{letter-spacing:-1.517280px;}
.ls86_c00460{letter-spacing:-1.510320px;}
.ls54_c00460{letter-spacing:-1.347480px;}
.ls70_c00460{letter-spacing:-1.336320px;}
.ls50_c00460{letter-spacing:-1.306440px;}
.ls77_c00460{letter-spacing:-1.038960px;}
.ls69_c00460{letter-spacing:-0.916560px;}
.ls51_c00460{letter-spacing:-0.870000px;}
.ls78_c00460{letter-spacing:-0.849120px;}
.ls79_c00460{letter-spacing:-0.807360px;}
.ls7a_c00460{letter-spacing:-0.793440px;}
.ls57_c00460{letter-spacing:-0.738720px;}
.ls6b_c00460{letter-spacing:-0.697680px;}
.ls66_c00460{letter-spacing:-0.677160px;}
.ls74_c00460{letter-spacing:-0.615600px;}
.ls55_c00460{letter-spacing:-0.601920px;}
.ls5a_c00460{letter-spacing:-0.581400px;}
.ls5b_c00460{letter-spacing:-0.560880px;}
.ls6d_c00460{letter-spacing:-0.535920px;}
.ls73_c00460{letter-spacing:-0.526680px;}
.ls61_c00460{letter-spacing:-0.522000px;}
.ls6e_c00460{letter-spacing:-0.515040px;}
.ls5d_c00460{letter-spacing:-0.508080px;}
.ls62_c00460{letter-spacing:-0.480240px;}
.ls52_c00460{letter-spacing:-0.478800px;}
.ls63_c00460{letter-spacing:-0.466320px;}
.ls81_c00460{letter-spacing:-0.459360px;}
.ls7f_c00460{letter-spacing:-0.376200px;}
.ls5c_c00460{letter-spacing:-0.348000px;}
.ls71_c00460{letter-spacing:-0.278400px;}
.ls67_c00460{letter-spacing:-0.205200px;}
.ls5e_c00460{letter-spacing:-0.184680px;}
.ls58_c00460{letter-spacing:-0.174000px;}
.ls7e_c00460{letter-spacing:-0.150480px;}
.ls4f_c00460{letter-spacing:-0.116280px;}
.ls6c_c00460{letter-spacing:-0.088920px;}
.ls82_c00460{letter-spacing:-0.069600px;}
.ls7c_c00460{letter-spacing:-0.061560px;}
.ls8a_c00460{letter-spacing:-0.047880px;}
.ls68_c00460{letter-spacing:-0.027360px;}
.ls56_c00460{letter-spacing:-0.013680px;}
.ls60_c00460{letter-spacing:0.000000px;}
.ls59_c00460{letter-spacing:0.020520px;}
.ls44_c00460{letter-spacing:0.020880px;}
.ls38_c00460{letter-spacing:0.034200px;}
.ls27_c00460{letter-spacing:0.034800px;}
.ls6a_c00460{letter-spacing:0.041040px;}
.ls7_c00460{letter-spacing:0.047880px;}
.ls3f_c00460{letter-spacing:0.109440px;}
.ls1a_c00460{letter-spacing:0.111360px;}
.ls8b_c00460{letter-spacing:0.136800px;}
.ls1c_c00460{letter-spacing:0.143640px;}
.ls4_c00460{letter-spacing:0.150480px;}
.ls20_c00460{letter-spacing:0.164160px;}
.ls5f_c00460{letter-spacing:0.171000px;}
.ls23_c00460{letter-spacing:0.194880px;}
.ls32_c00460{letter-spacing:0.198360px;}
.ls4c_c00460{letter-spacing:0.212040px;}
.ls8_c00460{letter-spacing:0.225720px;}
.ls33_c00460{letter-spacing:0.246240px;}
.ls48_c00460{letter-spacing:0.259920px;}
.ls76_c00460{letter-spacing:0.266760px;}
.ls6f_c00460{letter-spacing:0.306240px;}
.ls53_c00460{letter-spacing:0.321480px;}
.ls42_c00460{letter-spacing:0.327120px;}
.lsd_c00460{letter-spacing:0.328320px;}
.ls21_c00460{letter-spacing:0.342000px;}
.lsf_c00460{letter-spacing:0.362520px;}
.ls1_c00460{letter-spacing:0.396720px;}
.ls39_c00460{letter-spacing:0.410400px;}
.ls26_c00460{letter-spacing:0.424560px;}
.ls41_c00460{letter-spacing:0.458280px;}
.ls9_c00460{letter-spacing:0.471960px;}
.ls14_c00460{letter-spacing:0.473280px;}
.ls49_c00460{letter-spacing:0.485640px;}
.ls16_c00460{letter-spacing:0.492480px;}
.lsc_c00460{letter-spacing:0.567720px;}
.ls36_c00460{letter-spacing:0.588240px;}
.ls17_c00460{letter-spacing:0.591600px;}
.ls40_c00460{letter-spacing:0.601920px;}
.ls1f_c00460{letter-spacing:0.615600px;}
.ls24_c00460{letter-spacing:0.696000px;}
.ls6_c00460{letter-spacing:0.704520px;}
.ls18_c00460{letter-spacing:0.716880px;}
.lsa_c00460{letter-spacing:0.718200px;}
.ls31_c00460{letter-spacing:0.725040px;}
.ls10_c00460{letter-spacing:0.731880px;}
.ls35_c00460{letter-spacing:0.745560px;}
.ls11_c00460{letter-spacing:0.752400px;}
.ls2a_c00460{letter-spacing:0.758640px;}
.ls3c_c00460{letter-spacing:0.759240px;}
.ls3d_c00460{letter-spacing:0.766080px;}
.ls13_c00460{letter-spacing:0.800280px;}
.ls75_c00460{letter-spacing:0.807120px;}
.ls2c_c00460{letter-spacing:0.868680px;}
.ls65_c00460{letter-spacing:0.897840px;}
.ls4b_c00460{letter-spacing:0.916560px;}
.lsb_c00460{letter-spacing:0.923400px;}
.ls5_c00460{letter-spacing:0.930240px;}
.ls3_c00460{letter-spacing:0.957600px;}
.ls1e_c00460{letter-spacing:1.012320px;}
.ls1b_c00460{letter-spacing:1.026000px;}
.ls2f_c00460{letter-spacing:1.032840px;}
.ls2e_c00460{letter-spacing:1.060200px;}
.ls45_c00460{letter-spacing:1.073880px;}
.ls1d_c00460{letter-spacing:1.176480px;}
.lse_c00460{letter-spacing:1.197000px;}
.ls3b_c00460{letter-spacing:1.203840px;}
.ls29_c00460{letter-spacing:1.224960px;}
.ls2b_c00460{letter-spacing:1.280640px;}
.ls37_c00460{letter-spacing:1.285920px;}
.ls15_c00460{letter-spacing:1.301520px;}
.ls80_c00460{letter-spacing:1.306440px;}
.ls22_c00460{letter-spacing:1.340640px;}
.ls19_c00460{letter-spacing:1.405920px;}
.ls12_c00460{letter-spacing:1.429560px;}
.ls2_c00460{letter-spacing:1.450080px;}
.ls84_c00460{letter-spacing:1.478400px;}
.ls2d_c00460{letter-spacing:1.504800px;}
.ls30_c00460{letter-spacing:1.545840px;}
.ls47_c00460{letter-spacing:1.648440px;}
.ls25_c00460{letter-spacing:1.663440px;}
.ls0_c00460{letter-spacing:1.675800px;}
.ls3a_c00460{letter-spacing:1.785240px;}
.ls88_c00460{letter-spacing:1.860000px;}
.ls4e_c00460{letter-spacing:2.298240px;}
.ls28_c00460{letter-spacing:2.324640px;}
.ls46_c00460{letter-spacing:2.366640px;}
.ls3e_c00460{letter-spacing:2.448720px;}
.ls43_c00460{letter-spacing:2.825760px;}
.ls4a_c00460{letter-spacing:3.091680px;}
.ls34_c00460{letter-spacing:3.194280px;}
.ls7d_c00460{letter-spacing:3.420000px;}
.ls64_c00460{letter-spacing:3.480000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{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__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00460{word-spacing:-1.805760px;}
.ws2_c00460{word-spacing:-0.848160px;}
.ws8_c00460{word-spacing:0.000000px;}
.ws7_c00460{word-spacing:1.905240px;}
.ws3_c00460{word-spacing:2.335440px;}
.ws4_c00460{word-spacing:2.648040px;}
.ws5_c00460{word-spacing:2.783880px;}
.ws6_c00460{word-spacing:6.819480px;}
.ws0_c00460{word-spacing:9.206640px;}
._10_c00460{margin-left:-4.661880px;}
._a_c00460{margin-left:-2.920680px;}
._8_c00460{margin-left:-1.265400px;}
._c_c00460{width:1.087560px;}
._9_c00460{width:2.523960px;}
._b_c00460{width:3.528240px;}
._7_c00460{width:4.993200px;}
._f_c00460{width:6.068280px;}
._0_c00460{width:7.229880px;}
._3_c00460{width:8.837280px;}
._1_c00460{width:10.225800px;}
._6_c00460{width:12.447000px;}
._4_c00460{width:14.678640px;}
._d_c00460{width:15.979200px;}
._5_c00460{width:17.811360px;}
._e_c00460{width:18.931320px;}
._2_c00460{width:20.485800px;}
._13_c00460{width:23.739840px;}
._11_c00460{width:25.710240px;}
._12_c00460{width:27.102240px;}
.fc0_c00460{color:transparent;}
.fs7_c00460{font-size:8.640000px;}
.fs3_c00460{font-size:25.800600px;}
.fs8_c00460{font-size:37.200000px;}
.fs5_c00460{font-size:53.280000px;}
.fs9_c00460{font-size:57.600000px;}
.fs6_c00460{font-size:67.200000px;}
.fs1_c00460{font-size:68.400000px;}
.fs2_c00460{font-size:69.600000px;}
.fs4_c00460{font-size:70.200000px;}
.fs0_c00460{font-size:79.800000px;}
.y0_c00460{bottom:0.000000px;}
.y1a_c00460{bottom:72.375006px;}
.y19_c00460{bottom:189.360006px;}
.y18_c00460{bottom:218.175006px;}
.y17_c00460{bottom:220.335006px;}
.y16_c00460{bottom:282.255006px;}
.y15_c00460{bottom:312.135006px;}
.y13_c00460{bottom:373.689006px;}
.y14_c00460{bottom:373.695006px;}
.y12_c00460{bottom:404.640006px;}
.y11_c00460{bottom:435.975006px;}
.y10_c00460{bottom:451.455006px;}
.yf_c00460{bottom:497.536206px;}
.ye_c00460{bottom:558.720006px;}
.yd_c00460{bottom:620.273406px;}
.yc_c00460{bottom:650.883006px;}
.yb_c00460{bottom:681.848106px;}
.ya_c00460{bottom:743.049006px;}
.y9_c00460{bottom:774.000006px;}
.y8_c00460{bottom:804.975006px;}
.y7_c00460{bottom:804.975906px;}
.y6_c00460{bottom:866.895006px;}
.y5_c00460{bottom:897.477906px;}
.y4_c00460{bottom:959.054106px;}
.y3_c00460{bottom:1020.247806px;}
.y2_c00460{bottom:1051.575006px;}
.y1_c00460{bottom:1114.215006px;}
.he_c00460{height:5.754240px;}
.h9_c00460{height:26.909220px;}
.hb_c00460{height:35.484480px;}
.hf_c00460{height:36.509766px;}
.h10_c00460{height:56.531250px;}
.hc_c00460{height:65.953125px;}
.h3_c00460{height:67.130859px;}
.h7_c00460{height:68.271009px;}
.h6_c00460{height:68.274609px;}
.h5_c00460{height:68.278209px;}
.h8_c00460{height:68.302209px;}
.h4_c00460{height:68.303409px;}
.hd_c00460{height:68.897461px;}
.ha_c00460{height:73.216406px;}
.h2_c00460{height:80.423438px;}
.h1_c00460{height:1263.000000px;}
.h0_c00460{height:1263.240006px;}
.w1_c00460{width:892.500000px;}
.w0_c00460{width:892.799998px;}
.x0_c00460{left:0.000000px;}
.x12_c00460{left:116.039999px;}
.x5_c00460{left:117.329999px;}
.x1_c00460{left:118.589999px;}
.x7_c00460{left:153.869998px;}
.x8_c00460{left:182.594999px;}
.xc_c00460{left:219.494999px;}
.x9_c00460{left:221.354998px;}
.xd_c00460{left:237.359998px;}
.x10_c00460{left:246.134998px;}
.x6_c00460{left:251.894999px;}
.xe_c00460{left:286.829998px;}
.xf_c00460{left:310.874999px;}
.xa_c00460{left:410.414999px;}
.x13_c00460{left:417.794999px;}
.x2_c00460{left:511.829998px;}
.x3_c00460{left:538.409999px;}
.x11_c00460{left:548.444999px;}
.xb_c00460{left:564.599999px;}
.x4_c00460{left:704.009999px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls85_c00460{letter-spacing:-2.184000pt;}
.ls87_c00460{letter-spacing:-1.936427pt;}
.ls4d_c00460{letter-spacing:-1.787520pt;}
.ls83_c00460{letter-spacing:-1.623360pt;}
.ls8c_c00460{letter-spacing:-1.612800pt;}
.ls72_c00460{letter-spacing:-1.453867pt;}
.ls7b_c00460{letter-spacing:-1.368000pt;}
.ls89_c00460{letter-spacing:-1.348693pt;}
.ls86_c00460{letter-spacing:-1.342507pt;}
.ls54_c00460{letter-spacing:-1.197760pt;}
.ls70_c00460{letter-spacing:-1.187840pt;}
.ls50_c00460{letter-spacing:-1.161280pt;}
.ls77_c00460{letter-spacing:-0.923520pt;}
.ls69_c00460{letter-spacing:-0.814720pt;}
.ls51_c00460{letter-spacing:-0.773333pt;}
.ls78_c00460{letter-spacing:-0.754773pt;}
.ls79_c00460{letter-spacing:-0.717653pt;}
.ls7a_c00460{letter-spacing:-0.705280pt;}
.ls57_c00460{letter-spacing:-0.656640pt;}
.ls6b_c00460{letter-spacing:-0.620160pt;}
.ls66_c00460{letter-spacing:-0.601920pt;}
.ls74_c00460{letter-spacing:-0.547200pt;}
.ls55_c00460{letter-spacing:-0.535040pt;}
.ls5a_c00460{letter-spacing:-0.516800pt;}
.ls5b_c00460{letter-spacing:-0.498560pt;}
.ls6d_c00460{letter-spacing:-0.476373pt;}
.ls73_c00460{letter-spacing:-0.468160pt;}
.ls61_c00460{letter-spacing:-0.464000pt;}
.ls6e_c00460{letter-spacing:-0.457813pt;}
.ls5d_c00460{letter-spacing:-0.451627pt;}
.ls62_c00460{letter-spacing:-0.426880pt;}
.ls52_c00460{letter-spacing:-0.425600pt;}
.ls63_c00460{letter-spacing:-0.414507pt;}
.ls81_c00460{letter-spacing:-0.408320pt;}
.ls7f_c00460{letter-spacing:-0.334400pt;}
.ls5c_c00460{letter-spacing:-0.309333pt;}
.ls71_c00460{letter-spacing:-0.247467pt;}
.ls67_c00460{letter-spacing:-0.182400pt;}
.ls5e_c00460{letter-spacing:-0.164160pt;}
.ls58_c00460{letter-spacing:-0.154667pt;}
.ls7e_c00460{letter-spacing:-0.133760pt;}
.ls4f_c00460{letter-spacing:-0.103360pt;}
.ls6c_c00460{letter-spacing:-0.079040pt;}
.ls82_c00460{letter-spacing:-0.061867pt;}
.ls7c_c00460{letter-spacing:-0.054720pt;}
.ls8a_c00460{letter-spacing:-0.042560pt;}
.ls68_c00460{letter-spacing:-0.024320pt;}
.ls56_c00460{letter-spacing:-0.012160pt;}
.ls60_c00460{letter-spacing:0.000000pt;}
.ls59_c00460{letter-spacing:0.018240pt;}
.ls44_c00460{letter-spacing:0.018560pt;}
.ls38_c00460{letter-spacing:0.030400pt;}
.ls27_c00460{letter-spacing:0.030933pt;}
.ls6a_c00460{letter-spacing:0.036480pt;}
.ls7_c00460{letter-spacing:0.042560pt;}
.ls3f_c00460{letter-spacing:0.097280pt;}
.ls1a_c00460{letter-spacing:0.098987pt;}
.ls8b_c00460{letter-spacing:0.121600pt;}
.ls1c_c00460{letter-spacing:0.127680pt;}
.ls4_c00460{letter-spacing:0.133760pt;}
.ls20_c00460{letter-spacing:0.145920pt;}
.ls5f_c00460{letter-spacing:0.152000pt;}
.ls23_c00460{letter-spacing:0.173227pt;}
.ls32_c00460{letter-spacing:0.176320pt;}
.ls4c_c00460{letter-spacing:0.188480pt;}
.ls8_c00460{letter-spacing:0.200640pt;}
.ls33_c00460{letter-spacing:0.218880pt;}
.ls48_c00460{letter-spacing:0.231040pt;}
.ls76_c00460{letter-spacing:0.237120pt;}
.ls6f_c00460{letter-spacing:0.272213pt;}
.ls53_c00460{letter-spacing:0.285760pt;}
.ls42_c00460{letter-spacing:0.290773pt;}
.lsd_c00460{letter-spacing:0.291840pt;}
.ls21_c00460{letter-spacing:0.304000pt;}
.lsf_c00460{letter-spacing:0.322240pt;}
.ls1_c00460{letter-spacing:0.352640pt;}
.ls39_c00460{letter-spacing:0.364800pt;}
.ls26_c00460{letter-spacing:0.377387pt;}
.ls41_c00460{letter-spacing:0.407360pt;}
.ls9_c00460{letter-spacing:0.419520pt;}
.ls14_c00460{letter-spacing:0.420693pt;}
.ls49_c00460{letter-spacing:0.431680pt;}
.ls16_c00460{letter-spacing:0.437760pt;}
.lsc_c00460{letter-spacing:0.504640pt;}
.ls36_c00460{letter-spacing:0.522880pt;}
.ls17_c00460{letter-spacing:0.525867pt;}
.ls40_c00460{letter-spacing:0.535040pt;}
.ls1f_c00460{letter-spacing:0.547200pt;}
.ls24_c00460{letter-spacing:0.618667pt;}
.ls6_c00460{letter-spacing:0.626240pt;}
.ls18_c00460{letter-spacing:0.637227pt;}
.lsa_c00460{letter-spacing:0.638400pt;}
.ls31_c00460{letter-spacing:0.644480pt;}
.ls10_c00460{letter-spacing:0.650560pt;}
.ls35_c00460{letter-spacing:0.662720pt;}
.ls11_c00460{letter-spacing:0.668800pt;}
.ls2a_c00460{letter-spacing:0.674347pt;}
.ls3c_c00460{letter-spacing:0.674880pt;}
.ls3d_c00460{letter-spacing:0.680960pt;}
.ls13_c00460{letter-spacing:0.711360pt;}
.ls75_c00460{letter-spacing:0.717440pt;}
.ls2c_c00460{letter-spacing:0.772160pt;}
.ls65_c00460{letter-spacing:0.798080pt;}
.ls4b_c00460{letter-spacing:0.814720pt;}
.lsb_c00460{letter-spacing:0.820800pt;}
.ls5_c00460{letter-spacing:0.826880pt;}
.ls3_c00460{letter-spacing:0.851200pt;}
.ls1e_c00460{letter-spacing:0.899840pt;}
.ls1b_c00460{letter-spacing:0.912000pt;}
.ls2f_c00460{letter-spacing:0.918080pt;}
.ls2e_c00460{letter-spacing:0.942400pt;}
.ls45_c00460{letter-spacing:0.954560pt;}
.ls1d_c00460{letter-spacing:1.045760pt;}
.lse_c00460{letter-spacing:1.064000pt;}
.ls3b_c00460{letter-spacing:1.070080pt;}
.ls29_c00460{letter-spacing:1.088853pt;}
.ls2b_c00460{letter-spacing:1.138347pt;}
.ls37_c00460{letter-spacing:1.143040pt;}
.ls15_c00460{letter-spacing:1.156907pt;}
.ls80_c00460{letter-spacing:1.161280pt;}
.ls22_c00460{letter-spacing:1.191680pt;}
.ls19_c00460{letter-spacing:1.249707pt;}
.ls12_c00460{letter-spacing:1.270720pt;}
.ls2_c00460{letter-spacing:1.288960pt;}
.ls84_c00460{letter-spacing:1.314133pt;}
.ls2d_c00460{letter-spacing:1.337600pt;}
.ls30_c00460{letter-spacing:1.374080pt;}
.ls47_c00460{letter-spacing:1.465280pt;}
.ls25_c00460{letter-spacing:1.478613pt;}
.ls0_c00460{letter-spacing:1.489600pt;}
.ls3a_c00460{letter-spacing:1.586880pt;}
.ls88_c00460{letter-spacing:1.653333pt;}
.ls4e_c00460{letter-spacing:2.042880pt;}
.ls28_c00460{letter-spacing:2.066347pt;}
.ls46_c00460{letter-spacing:2.103680pt;}
.ls3e_c00460{letter-spacing:2.176640pt;}
.ls43_c00460{letter-spacing:2.511787pt;}
.ls4a_c00460{letter-spacing:2.748160pt;}
.ls34_c00460{letter-spacing:2.839360pt;}
.ls7d_c00460{letter-spacing:3.040000pt;}
.ls64_c00460{letter-spacing:3.093333pt;}
.ws1_c00460{word-spacing:-1.605120pt;}
.ws2_c00460{word-spacing:-0.753920pt;}
.ws8_c00460{word-spacing:0.000000pt;}
.ws7_c00460{word-spacing:1.693547pt;}
.ws3_c00460{word-spacing:2.075947pt;}
.ws4_c00460{word-spacing:2.353813pt;}
.ws5_c00460{word-spacing:2.474560pt;}
.ws6_c00460{word-spacing:6.061760pt;}
.ws0_c00460{word-spacing:8.183680pt;}
._10_c00460{margin-left:-4.143893pt;}
._a_c00460{margin-left:-2.596160pt;}
._8_c00460{margin-left:-1.124800pt;}
._c_c00460{width:0.966720pt;}
._9_c00460{width:2.243520pt;}
._b_c00460{width:3.136213pt;}
._7_c00460{width:4.438400pt;}
._f_c00460{width:5.394027pt;}
._0_c00460{width:6.426560pt;}
._3_c00460{width:7.855360pt;}
._1_c00460{width:9.089600pt;}
._6_c00460{width:11.064000pt;}
._4_c00460{width:13.047680pt;}
._d_c00460{width:14.203733pt;}
._5_c00460{width:15.832320pt;}
._e_c00460{width:16.827840pt;}
._2_c00460{width:18.209600pt;}
._13_c00460{width:21.102080pt;}
._11_c00460{width:22.853547pt;}
._12_c00460{width:24.090880pt;}
.fs7_c00460{font-size:7.680000pt;}
.fs3_c00460{font-size:22.933867pt;}
.fs8_c00460{font-size:33.066667pt;}
.fs5_c00460{font-size:47.360000pt;}
.fs9_c00460{font-size:51.200000pt;}
.fs6_c00460{font-size:59.733333pt;}
.fs1_c00460{font-size:60.800000pt;}
.fs2_c00460{font-size:61.866667pt;}
.fs4_c00460{font-size:62.400000pt;}
.fs0_c00460{font-size:70.933333pt;}
.y0_c00460{bottom:0.000000pt;}
.y1a_c00460{bottom:64.333339pt;}
.y19_c00460{bottom:168.320005pt;}
.y18_c00460{bottom:193.933339pt;}
.y17_c00460{bottom:195.853339pt;}
.y16_c00460{bottom:250.893339pt;}
.y15_c00460{bottom:277.453339pt;}
.y13_c00460{bottom:332.168005pt;}
.y14_c00460{bottom:332.173339pt;}
.y12_c00460{bottom:359.680005pt;}
.y11_c00460{bottom:387.533339pt;}
.y10_c00460{bottom:401.293339pt;}
.yf_c00460{bottom:442.254405pt;}
.ye_c00460{bottom:496.640005pt;}
.yd_c00460{bottom:551.354139pt;}
.yc_c00460{bottom:578.562672pt;}
.yb_c00460{bottom:606.087205pt;}
.ya_c00460{bottom:660.488005pt;}
.y9_c00460{bottom:688.000005pt;}
.y8_c00460{bottom:715.533339pt;}
.y7_c00460{bottom:715.534139pt;}
.y6_c00460{bottom:770.573339pt;}
.y5_c00460{bottom:797.758139pt;}
.y4_c00460{bottom:852.492539pt;}
.y3_c00460{bottom:906.886939pt;}
.y2_c00460{bottom:934.733339pt;}
.y1_c00460{bottom:990.413339pt;}
.he_c00460{height:5.114880pt;}
.h9_c00460{height:23.919306pt;}
.hb_c00460{height:31.541760pt;}
.hf_c00460{height:32.453125pt;}
.h10_c00460{height:50.250000pt;}
.hc_c00460{height:58.625000pt;}
.h3_c00460{height:59.671875pt;}
.h7_c00460{height:60.685342pt;}
.h6_c00460{height:60.688542pt;}
.h5_c00460{height:60.691742pt;}
.h8_c00460{height:60.713075pt;}
.h4_c00460{height:60.714142pt;}
.hd_c00460{height:61.242187pt;}
.ha_c00460{height:65.081250pt;}
.h2_c00460{height:71.487500pt;}
.h1_c00460{height:1122.666667pt;}
.h0_c00460{height:1122.880005pt;}
.w1_c00460{width:793.333333pt;}
.w0_c00460{width:793.599999pt;}
.x0_c00460{left:0.000000pt;}
.x12_c00460{left:103.146665pt;}
.x5_c00460{left:104.293332pt;}
.x1_c00460{left:105.413332pt;}
.x7_c00460{left:136.773332pt;}
.x8_c00460{left:162.306665pt;}
.xc_c00460{left:195.106665pt;}
.x9_c00460{left:196.759999pt;}
.xd_c00460{left:210.986665pt;}
.x10_c00460{left:218.786665pt;}
.x6_c00460{left:223.906665pt;}
.xe_c00460{left:254.959999pt;}
.xf_c00460{left:276.333332pt;}
.xa_c00460{left:364.813332pt;}
.x13_c00460{left:371.373332pt;}
.x2_c00460{left:454.959999pt;}
.x3_c00460{left:478.586665pt;}
.x11_c00460{left:487.506665pt;}
.xb_c00460{left:501.866665pt;}
.x4_c00460{left:625.786665pt;}
}





/* 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_c00461 {
    display:none;
  }
  .loading-indicator_c00461.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00461 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_c00461 { 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_c00461" -> "#page-container .classname_c00461")
 */
.pf_c00461 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00461 { /* 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_c00461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00461 { /* 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_c00461 { /* 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_c00461 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00461 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00461 {overflow:visible;}
  }
}
.c_c00461 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00461 { /* 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_c00461:after { /* webkit #35443 */
  content: '';
}
.t_c00461:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00461 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 */
}
.__c00461 { /* 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_c00461 { /* info for Javascript */
  display:none;
}
.l_c00461 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00461 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00461 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00461: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_c00461 {
    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_c00461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00461.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_c00461 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00461{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00461;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.311035;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_c00461;src:url('chunks/assets/font_d5fa9925691e93c58eaf9ce2.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.284668;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_c00461;src:url('chunks/assets/font_c8b0abba7f3d9a21b0003cc0.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.284180;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_c00461;src:url('chunks/assets/font_9b658fa57f3906a4f0df9cba.woff2')format("woff");}.ff4_c00461{font-family:ff4_c00461;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;}
.m9_c00461{transform:matrix(0.228827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228827,0.000000,0.000000,0.250000,0,0);}
.m7_c00461{transform:matrix(0.231002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231002,0.000000,0.000000,0.250000,0,0);}
.m4_c00461{transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);}
.mf_c00461{transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);}
.md_c00461{transform:matrix(0.247231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247231,0.000000,0.000000,0.250000,0,0);}
.m3_c00461{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.m2_c00461{transform:matrix(0.248051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248051,0.000000,0.000000,0.250000,0,0);}
.m1_c00461{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.me_c00461{transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);}
.m0_c00461{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);}
.mc_c00461{transform:matrix(0.254692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254692,0.000000,0.000000,0.250000,0,0);}
.m5_c00461{transform:matrix(0.259478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259478,0.000000,0.000000,0.250000,0,0);}
.m8_c00461{transform:matrix(0.264033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264033,0.000000,0.000000,0.250000,0,0);}
.m6_c00461{transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);}
.ma_c00461{transform:matrix(0.281772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281772,0.000000,0.000000,0.250000,0,0);}
.mb_c00461{transform:matrix(0.281828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281828,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls56_c00461{letter-spacing:-2.478000px;}
.ls50_c00461{letter-spacing:-2.436000px;}
.ls6c_c00461{letter-spacing:-2.352000px;}
.ls86_c00461{letter-spacing:-2.343480px;}
.ls76_c00461{letter-spacing:-2.310000px;}
.ls7c_c00461{letter-spacing:-2.220240px;}
.ls69_c00461{letter-spacing:-2.150640px;}
.ls8d_c00461{letter-spacing:-1.847880px;}
.ls87_c00461{letter-spacing:-1.762920px;}
.ls5e_c00461{letter-spacing:-1.705200px;}
.ls6a_c00461{letter-spacing:-1.698240px;}
.ls55_c00461{letter-spacing:-1.692120px;}
.ls5b_c00461{letter-spacing:-1.649520px;}
.ls8a_c00461{letter-spacing:-1.635600px;}
.ls84_c00461{letter-spacing:-1.621680px;}
.ls94_c00461{letter-spacing:-1.486800px;}
.ls88_c00461{letter-spacing:-1.472640px;}
.ls8e_c00461{letter-spacing:-1.392000px;}
.ls82_c00461{letter-spacing:-1.336320px;}
.ls92_c00461{letter-spacing:-1.295640px;}
.ls91_c00461{letter-spacing:-1.218000px;}
.ls57_c00461{letter-spacing:-1.189440px;}
.ls4b_c00461{letter-spacing:-1.134480px;}
.ls65_c00461{letter-spacing:-1.113600px;}
.ls59_c00461{letter-spacing:-1.054920px;}
.ls60_c00461{letter-spacing:-1.009200px;}
.ls4c_c00461{letter-spacing:-0.988320px;}
.ls78_c00461{letter-spacing:-0.960480px;}
.ls89_c00461{letter-spacing:-0.934560px;}
.ls7b_c00461{letter-spacing:-0.932640px;}
.ls7f_c00461{letter-spacing:-0.876960px;}
.ls6d_c00461{letter-spacing:-0.778800px;}
.ls4d_c00461{letter-spacing:-0.737760px;}
.ls5a_c00461{letter-spacing:-0.722160px;}
.ls7a_c00461{letter-spacing:-0.689040px;}
.ls90_c00461{letter-spacing:-0.682080px;}
.ls67_c00461{letter-spacing:-0.675120px;}
.ls5d_c00461{letter-spacing:-0.668160px;}
.ls93_c00461{letter-spacing:-0.658440px;}
.ls96_c00461{letter-spacing:-0.563760px;}
.ls73_c00461{letter-spacing:-0.508080px;}
.ls72_c00461{letter-spacing:-0.452400px;}
.ls95_c00461{letter-spacing:-0.410640px;}
.ls53_c00461{letter-spacing:-0.403680px;}
.ls77_c00461{letter-spacing:-0.361920px;}
.ls8b_c00461{letter-spacing:-0.320160px;}
.ls8c_c00461{letter-spacing:-0.313200px;}
.ls6b_c00461{letter-spacing:-0.292320px;}
.ls52_c00461{letter-spacing:-0.250560px;}
.ls85_c00461{letter-spacing:-0.236640px;}
.ls71_c00461{letter-spacing:-0.215760px;}
.ls79_c00461{letter-spacing:-0.208800px;}
.ls83_c00461{letter-spacing:-0.201840px;}
.ls8f_c00461{letter-spacing:-0.194880px;}
.ls81_c00461{letter-spacing:-0.153120px;}
.ls6e_c00461{letter-spacing:-0.139200px;}
.ls58_c00461{letter-spacing:-0.120360px;}
.ls74_c00461{letter-spacing:-0.111360px;}
.ls5c_c00461{letter-spacing:-0.083520px;}
.ls68_c00461{letter-spacing:-0.062640px;}
.ls54_c00461{letter-spacing:-0.042480px;}
.ls5f_c00461{letter-spacing:-0.041760px;}
.ls66_c00461{letter-spacing:-0.020880px;}
.ls51_c00461{letter-spacing:0.000000px;}
.ls45_c00461{letter-spacing:0.013920px;}
.ls3c_c00461{letter-spacing:0.020880px;}
.ls2e_c00461{letter-spacing:0.034800px;}
.ls33_c00461{letter-spacing:0.041760px;}
.ls6_c00461{letter-spacing:0.063720px;}
.ls37_c00461{letter-spacing:0.077880px;}
.lse_c00461{letter-spacing:0.092040px;}
.ls80_c00461{letter-spacing:0.097440px;}
.ls75_c00461{letter-spacing:0.104400px;}
.ls9_c00461{letter-spacing:0.106200px;}
.ls1f_c00461{letter-spacing:0.111360px;}
.ls46_c00461{letter-spacing:0.118320px;}
.ls4e_c00461{letter-spacing:0.153120px;}
.lsc_c00461{letter-spacing:0.184080px;}
.ls5_c00461{letter-spacing:0.194880px;}
.ls1c_c00461{letter-spacing:0.215760px;}
.ls16_c00461{letter-spacing:0.229680px;}
.ls42_c00461{letter-spacing:0.243600px;}
.ls62_c00461{letter-spacing:0.250560px;}
.ls13_c00461{letter-spacing:0.271440px;}
.ls26_c00461{letter-spacing:0.327120px;}
.ls32_c00461{letter-spacing:0.334080px;}
.ls7_c00461{letter-spacing:0.375240px;}
.ls27_c00461{letter-spacing:0.382320px;}
.ls7d_c00461{letter-spacing:0.389760px;}
.lsd_c00461{letter-spacing:0.396480px;}
.ls15_c00461{letter-spacing:0.424560px;}
.ls49_c00461{letter-spacing:0.438480px;}
.ls11_c00461{letter-spacing:0.445440px;}
.ls30_c00461{letter-spacing:0.452400px;}
.ls10_c00461{letter-spacing:0.466320px;}
.ls7e_c00461{letter-spacing:0.480240px;}
.ls2f_c00461{letter-spacing:0.528960px;}
.ls3b_c00461{letter-spacing:0.549840px;}
.ls1e_c00461{letter-spacing:0.556800px;}
.ls3e_c00461{letter-spacing:0.584640px;}
.ls40_c00461{letter-spacing:0.598560px;}
.ls97_c00461{letter-spacing:0.622740px;}
.ls41_c00461{letter-spacing:0.626400px;}
.ls1_c00461{letter-spacing:0.633360px;}
.ls28_c00461{letter-spacing:0.640320px;}
.ls17_c00461{letter-spacing:0.647280px;}
.ls34_c00461{letter-spacing:0.696000px;}
.ls1d_c00461{letter-spacing:0.702960px;}
.ls43_c00461{letter-spacing:0.723840px;}
.ls24_c00461{letter-spacing:0.744720px;}
.ls25_c00461{letter-spacing:0.751680px;}
.ls1a_c00461{letter-spacing:0.758640px;}
.ls3f_c00461{letter-spacing:0.821280px;}
.ls19_c00461{letter-spacing:0.828240px;}
.ls12_c00461{letter-spacing:0.842160px;}
.ls0_c00461{letter-spacing:0.849120px;}
.ls4_c00461{letter-spacing:0.870000px;}
.ls29_c00461{letter-spacing:0.876960px;}
.ls20_c00461{letter-spacing:0.883920px;}
.ls47_c00461{letter-spacing:0.897840px;}
.ls3a_c00461{letter-spacing:0.911760px;}
.ls18_c00461{letter-spacing:0.939600px;}
.ls35_c00461{letter-spacing:0.967440px;}
.ls2_c00461{letter-spacing:0.974400px;}
.ls64_c00461{letter-spacing:0.981360px;}
.ls6f_c00461{letter-spacing:1.009200px;}
.ls36_c00461{letter-spacing:1.037040px;}
.lsf_c00461{letter-spacing:1.057920px;}
.ls61_c00461{letter-spacing:1.099680px;}
.ls3d_c00461{letter-spacing:1.106640px;}
.ls22_c00461{letter-spacing:1.127520px;}
.ls23_c00461{letter-spacing:1.141440px;}
.ls2b_c00461{letter-spacing:1.155360px;}
.ls21_c00461{letter-spacing:1.183200px;}
.lsb_c00461{letter-spacing:1.189440px;}
.ls48_c00461{letter-spacing:1.211040px;}
.ls14_c00461{letter-spacing:1.245840px;}
.ls1b_c00461{letter-spacing:1.287600px;}
.ls2d_c00461{letter-spacing:1.294560px;}
.ls2a_c00461{letter-spacing:1.371120px;}
.ls2c_c00461{letter-spacing:1.385040px;}
.ls39_c00461{letter-spacing:1.419840px;}
.ls3_c00461{letter-spacing:1.461600px;}
.ls4a_c00461{letter-spacing:1.536480px;}
.ls44_c00461{letter-spacing:1.586880px;}
.ls8_c00461{letter-spacing:1.819560px;}
.lsa_c00461{letter-spacing:2.024880px;}
.ls4f_c00461{letter-spacing:2.053200px;}
.ls31_c00461{letter-spacing:2.380320px;}
.ls38_c00461{letter-spacing:2.916960px;}
.ls63_c00461{letter-spacing:3.480000px;}
.ls70_c00461{letter-spacing:3.600000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{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__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00461{word-spacing:0.000000px;}
.ws1_c00461{word-spacing:1.990560px;}
.ws5_c00461{word-spacing:7.767360px;}
.ws3_c00461{word-spacing:8.435520px;}
.ws6_c00461{word-spacing:9.980640px;}
.ws0_c00461{word-spacing:11.652960px;}
.ws2_c00461{word-spacing:14.351520px;}
.ws4_c00461{word-spacing:23.427360px;}
._19_c00461{margin-left:-11.128800px;}
._18_c00461{margin-left:-6.465720px;}
._17_c00461{margin-left:-3.818400px;}
._2_c00461{margin-left:-2.137920px;}
._1_c00461{width:1.809120px;}
._e_c00461{width:2.840280px;}
._0_c00461{width:4.284000px;}
._8_c00461{width:6.291840px;}
._7_c00461{width:7.710120px;}
._9_c00461{width:9.372000px;}
._a_c00461{width:10.389360px;}
._6_c00461{width:11.555520px;}
._b_c00461{width:12.703200px;}
._3_c00461{width:14.017440px;}
._5_c00461{width:16.269840px;}
._15_c00461{width:17.429400px;}
._d_c00461{width:18.875520px;}
._c_c00461{width:20.027760px;}
._4_c00461{width:21.993600px;}
._12_c00461{width:23.643840px;}
._14_c00461{width:24.881280px;}
._16_c00461{width:28.000920px;}
._13_c00461{width:29.715360px;}
._f_c00461{width:59.343840px;}
._10_c00461{width:60.504000px;}
._11_c00461{width:63.355680px;}
.fc0_c00461{color:transparent;}
.fs0_c00461{font-size:58.200000px;}
.fs5_c00461{font-size:66.000000px;}
.fs4_c00461{font-size:67.200000px;}
.fs1_c00461{font-size:69.600000px;}
.fs2_c00461{font-size:70.800000px;}
.fs3_c00461{font-size:72.000000px;}
.y0_c00461{bottom:0.000000px;}
.y23_c00461{bottom:65.880000px;}
.y22_c00461{bottom:155.880000px;}
.y21_c00461{bottom:187.920000px;}
.y20_c00461{bottom:187.920600px;}
.y1f_c00461{bottom:248.055000px;}
.y1d_c00461{bottom:280.448400px;}
.y1e_c00461{bottom:280.455000px;}
.y1c_c00461{bottom:342.375000px;}
.y1a_c00461{bottom:373.687200px;}
.y1b_c00461{bottom:373.695000px;}
.y19_c00461{bottom:434.517600px;}
.y17_c00461{bottom:465.850800px;}
.y18_c00461{bottom:465.855000px;}
.y16_c00461{bottom:496.441800px;}
.y15_c00461{bottom:557.655000px;}
.y14_c00461{bottom:588.975000px;}
.y13_c00461{bottom:619.935000px;}
.y12_c00461{bottom:619.940400px;}
.y11_c00461{bottom:650.895000px;}
.y10_c00461{bottom:681.495000px;}
.ye_c00461{bottom:743.413800px;}
.yf_c00461{bottom:743.415000px;}
.yd_c00461{bottom:774.003000px;}
.yc_c00461{bottom:804.975000px;}
.yb_c00461{bottom:867.615000px;}
.ya_c00461{bottom:897.855000px;}
.y8_c00461{bottom:928.810800px;}
.y9_c00461{bottom:928.815000px;}
.y7_c00461{bottom:959.400000px;}
.y5_c00461{bottom:1021.328400px;}
.y6_c00461{bottom:1021.335000px;}
.y4_c00461{bottom:1051.935000px;}
.y3_c00461{bottom:1082.880000px;}
.y2_c00461{bottom:1113.855000px;}
.y1_c00461{bottom:1190.175000px;}
.ha_c00461{height:57.120117px;}
.h2_c00461{height:58.654687px;}
.h9_c00461{height:64.775391px;}
.h3_c00461{height:68.308594px;}
.h4_c00461{height:69.451758px;}
.h8_c00461{height:69.456558px;}
.h6_c00461{height:70.087500px;}
.h5_c00461{height:70.628906px;}
.h7_c00461{height:75.093750px;}
.h1_c00461{height:1263.000000px;}
.h0_c00461{height:1263.240000px;}
.w1_c00461{width:892.500000px;}
.w0_c00461{width:892.800000px;}
.x0_c00461{left:0.000000px;}
.x1a_c00461{left:118.767600px;}
.x14_c00461{left:119.850000px;}
.x6_c00461{left:121.200000px;}
.x7_c00461{left:122.278800px;}
.x2_c00461{left:123.450000px;}
.x1_c00461{left:124.830000px;}
.xa_c00461{left:199.845000px;}
.x23_c00461{left:201.495000px;}
.xb_c00461{left:219.720000px;}
.x20_c00461{left:223.680000px;}
.x24_c00461{left:224.760000px;}
.x10_c00461{left:237.345000px;}
.x3_c00461{left:254.430000px;}
.x1b_c00461{left:262.995000px;}
.x11_c00461{left:272.925000px;}
.x4_c00461{left:276.810000px;}
.x15_c00461{left:279.195000px;}
.x1d_c00461{left:282.360000px;}
.x16_c00461{left:318.165000px;}
.x1c_c00461{left:327.435000px;}
.xc_c00461{left:340.020000px;}
.x12_c00461{left:376.755000px;}
.xd_c00461{left:385.530000px;}
.x13_c00461{left:392.325000px;}
.x25_c00461{left:413.820000px;}
.x27_c00461{left:421.755000px;}
.x26_c00461{left:435.075000px;}
.x8_c00461{left:478.200000px;}
.x9_c00461{left:507.630000px;}
.x1e_c00461{left:564.300000px;}
.x18_c00461{left:581.925000px;}
.x1f_c00461{left:589.290000px;}
.x19_c00461{left:606.570000px;}
.x21_c00461{left:698.370000px;}
.x22_c00461{left:718.605000px;}
.xf_c00461{left:728.085000px;}
.x17_c00461{left:737.820000px;}
.xe_c00461{left:739.980000px;}
.x5_c00461{left:741.405000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls56_c00461{letter-spacing:-2.202667pt;}
.ls50_c00461{letter-spacing:-2.165333pt;}
.ls6c_c00461{letter-spacing:-2.090667pt;}
.ls86_c00461{letter-spacing:-2.083093pt;}
.ls76_c00461{letter-spacing:-2.053333pt;}
.ls7c_c00461{letter-spacing:-1.973547pt;}
.ls69_c00461{letter-spacing:-1.911680pt;}
.ls8d_c00461{letter-spacing:-1.642560pt;}
.ls87_c00461{letter-spacing:-1.567040pt;}
.ls5e_c00461{letter-spacing:-1.515733pt;}
.ls6a_c00461{letter-spacing:-1.509547pt;}
.ls55_c00461{letter-spacing:-1.504107pt;}
.ls5b_c00461{letter-spacing:-1.466240pt;}
.ls8a_c00461{letter-spacing:-1.453867pt;}
.ls84_c00461{letter-spacing:-1.441493pt;}
.ls94_c00461{letter-spacing:-1.321600pt;}
.ls88_c00461{letter-spacing:-1.309013pt;}
.ls8e_c00461{letter-spacing:-1.237333pt;}
.ls82_c00461{letter-spacing:-1.187840pt;}
.ls92_c00461{letter-spacing:-1.151680pt;}
.ls91_c00461{letter-spacing:-1.082667pt;}
.ls57_c00461{letter-spacing:-1.057280pt;}
.ls4b_c00461{letter-spacing:-1.008427pt;}
.ls65_c00461{letter-spacing:-0.989867pt;}
.ls59_c00461{letter-spacing:-0.937707pt;}
.ls60_c00461{letter-spacing:-0.897067pt;}
.ls4c_c00461{letter-spacing:-0.878507pt;}
.ls78_c00461{letter-spacing:-0.853760pt;}
.ls89_c00461{letter-spacing:-0.830720pt;}
.ls7b_c00461{letter-spacing:-0.829013pt;}
.ls7f_c00461{letter-spacing:-0.779520pt;}
.ls6d_c00461{letter-spacing:-0.692267pt;}
.ls4d_c00461{letter-spacing:-0.655787pt;}
.ls5a_c00461{letter-spacing:-0.641920pt;}
.ls7a_c00461{letter-spacing:-0.612480pt;}
.ls90_c00461{letter-spacing:-0.606293pt;}
.ls67_c00461{letter-spacing:-0.600107pt;}
.ls5d_c00461{letter-spacing:-0.593920pt;}
.ls93_c00461{letter-spacing:-0.585280pt;}
.ls96_c00461{letter-spacing:-0.501120pt;}
.ls73_c00461{letter-spacing:-0.451627pt;}
.ls72_c00461{letter-spacing:-0.402133pt;}
.ls95_c00461{letter-spacing:-0.365013pt;}
.ls53_c00461{letter-spacing:-0.358827pt;}
.ls77_c00461{letter-spacing:-0.321707pt;}
.ls8b_c00461{letter-spacing:-0.284587pt;}
.ls8c_c00461{letter-spacing:-0.278400pt;}
.ls6b_c00461{letter-spacing:-0.259840pt;}
.ls52_c00461{letter-spacing:-0.222720pt;}
.ls85_c00461{letter-spacing:-0.210347pt;}
.ls71_c00461{letter-spacing:-0.191787pt;}
.ls79_c00461{letter-spacing:-0.185600pt;}
.ls83_c00461{letter-spacing:-0.179413pt;}
.ls8f_c00461{letter-spacing:-0.173227pt;}
.ls81_c00461{letter-spacing:-0.136107pt;}
.ls6e_c00461{letter-spacing:-0.123733pt;}
.ls58_c00461{letter-spacing:-0.106987pt;}
.ls74_c00461{letter-spacing:-0.098987pt;}
.ls5c_c00461{letter-spacing:-0.074240pt;}
.ls68_c00461{letter-spacing:-0.055680pt;}
.ls54_c00461{letter-spacing:-0.037760pt;}
.ls5f_c00461{letter-spacing:-0.037120pt;}
.ls66_c00461{letter-spacing:-0.018560pt;}
.ls51_c00461{letter-spacing:0.000000pt;}
.ls45_c00461{letter-spacing:0.012373pt;}
.ls3c_c00461{letter-spacing:0.018560pt;}
.ls2e_c00461{letter-spacing:0.030933pt;}
.ls33_c00461{letter-spacing:0.037120pt;}
.ls6_c00461{letter-spacing:0.056640pt;}
.ls37_c00461{letter-spacing:0.069227pt;}
.lse_c00461{letter-spacing:0.081813pt;}
.ls80_c00461{letter-spacing:0.086613pt;}
.ls75_c00461{letter-spacing:0.092800pt;}
.ls9_c00461{letter-spacing:0.094400pt;}
.ls1f_c00461{letter-spacing:0.098987pt;}
.ls46_c00461{letter-spacing:0.105173pt;}
.ls4e_c00461{letter-spacing:0.136107pt;}
.lsc_c00461{letter-spacing:0.163627pt;}
.ls5_c00461{letter-spacing:0.173227pt;}
.ls1c_c00461{letter-spacing:0.191787pt;}
.ls16_c00461{letter-spacing:0.204160pt;}
.ls42_c00461{letter-spacing:0.216533pt;}
.ls62_c00461{letter-spacing:0.222720pt;}
.ls13_c00461{letter-spacing:0.241280pt;}
.ls26_c00461{letter-spacing:0.290773pt;}
.ls32_c00461{letter-spacing:0.296960pt;}
.ls7_c00461{letter-spacing:0.333547pt;}
.ls27_c00461{letter-spacing:0.339840pt;}
.ls7d_c00461{letter-spacing:0.346453pt;}
.lsd_c00461{letter-spacing:0.352427pt;}
.ls15_c00461{letter-spacing:0.377387pt;}
.ls49_c00461{letter-spacing:0.389760pt;}
.ls11_c00461{letter-spacing:0.395947pt;}
.ls30_c00461{letter-spacing:0.402133pt;}
.ls10_c00461{letter-spacing:0.414507pt;}
.ls7e_c00461{letter-spacing:0.426880pt;}
.ls2f_c00461{letter-spacing:0.470187pt;}
.ls3b_c00461{letter-spacing:0.488747pt;}
.ls1e_c00461{letter-spacing:0.494933pt;}
.ls3e_c00461{letter-spacing:0.519680pt;}
.ls40_c00461{letter-spacing:0.532053pt;}
.ls97_c00461{letter-spacing:0.553547pt;}
.ls41_c00461{letter-spacing:0.556800pt;}
.ls1_c00461{letter-spacing:0.562987pt;}
.ls28_c00461{letter-spacing:0.569173pt;}
.ls17_c00461{letter-spacing:0.575360pt;}
.ls34_c00461{letter-spacing:0.618667pt;}
.ls1d_c00461{letter-spacing:0.624853pt;}
.ls43_c00461{letter-spacing:0.643413pt;}
.ls24_c00461{letter-spacing:0.661973pt;}
.ls25_c00461{letter-spacing:0.668160pt;}
.ls1a_c00461{letter-spacing:0.674347pt;}
.ls3f_c00461{letter-spacing:0.730027pt;}
.ls19_c00461{letter-spacing:0.736213pt;}
.ls12_c00461{letter-spacing:0.748587pt;}
.ls0_c00461{letter-spacing:0.754773pt;}
.ls4_c00461{letter-spacing:0.773333pt;}
.ls29_c00461{letter-spacing:0.779520pt;}
.ls20_c00461{letter-spacing:0.785707pt;}
.ls47_c00461{letter-spacing:0.798080pt;}
.ls3a_c00461{letter-spacing:0.810453pt;}
.ls18_c00461{letter-spacing:0.835200pt;}
.ls35_c00461{letter-spacing:0.859947pt;}
.ls2_c00461{letter-spacing:0.866133pt;}
.ls64_c00461{letter-spacing:0.872320pt;}
.ls6f_c00461{letter-spacing:0.897067pt;}
.ls36_c00461{letter-spacing:0.921813pt;}
.lsf_c00461{letter-spacing:0.940373pt;}
.ls61_c00461{letter-spacing:0.977493pt;}
.ls3d_c00461{letter-spacing:0.983680pt;}
.ls22_c00461{letter-spacing:1.002240pt;}
.ls23_c00461{letter-spacing:1.014613pt;}
.ls2b_c00461{letter-spacing:1.026987pt;}
.ls21_c00461{letter-spacing:1.051733pt;}
.lsb_c00461{letter-spacing:1.057280pt;}
.ls48_c00461{letter-spacing:1.076480pt;}
.ls14_c00461{letter-spacing:1.107413pt;}
.ls1b_c00461{letter-spacing:1.144533pt;}
.ls2d_c00461{letter-spacing:1.150720pt;}
.ls2a_c00461{letter-spacing:1.218773pt;}
.ls2c_c00461{letter-spacing:1.231147pt;}
.ls39_c00461{letter-spacing:1.262080pt;}
.ls3_c00461{letter-spacing:1.299200pt;}
.ls4a_c00461{letter-spacing:1.365760pt;}
.ls44_c00461{letter-spacing:1.410560pt;}
.ls8_c00461{letter-spacing:1.617387pt;}
.lsa_c00461{letter-spacing:1.799893pt;}
.ls4f_c00461{letter-spacing:1.825067pt;}
.ls31_c00461{letter-spacing:2.115840pt;}
.ls38_c00461{letter-spacing:2.592853pt;}
.ls63_c00461{letter-spacing:3.093333pt;}
.ls70_c00461{letter-spacing:3.200000pt;}
.ws7_c00461{word-spacing:0.000000pt;}
.ws1_c00461{word-spacing:1.769387pt;}
.ws5_c00461{word-spacing:6.904320pt;}
.ws3_c00461{word-spacing:7.498240pt;}
.ws6_c00461{word-spacing:8.871680pt;}
.ws0_c00461{word-spacing:10.358187pt;}
.ws2_c00461{word-spacing:12.756907pt;}
.ws4_c00461{word-spacing:20.824320pt;}
._19_c00461{margin-left:-9.892267pt;}
._18_c00461{margin-left:-5.747307pt;}
._17_c00461{margin-left:-3.394133pt;}
._2_c00461{margin-left:-1.900373pt;}
._1_c00461{width:1.608107pt;}
._e_c00461{width:2.524693pt;}
._0_c00461{width:3.808000pt;}
._8_c00461{width:5.592747pt;}
._7_c00461{width:6.853440pt;}
._9_c00461{width:8.330667pt;}
._a_c00461{width:9.234987pt;}
._6_c00461{width:10.271573pt;}
._b_c00461{width:11.291733pt;}
._3_c00461{width:12.459947pt;}
._5_c00461{width:14.462080pt;}
._15_c00461{width:15.492800pt;}
._d_c00461{width:16.778240pt;}
._c_c00461{width:17.802453pt;}
._4_c00461{width:19.549867pt;}
._12_c00461{width:21.016747pt;}
._14_c00461{width:22.116693pt;}
._16_c00461{width:24.889707pt;}
._13_c00461{width:26.413653pt;}
._f_c00461{width:52.750080pt;}
._10_c00461{width:53.781333pt;}
._11_c00461{width:56.316160pt;}
.fs0_c00461{font-size:51.733333pt;}
.fs5_c00461{font-size:58.666667pt;}
.fs4_c00461{font-size:59.733333pt;}
.fs1_c00461{font-size:61.866667pt;}
.fs2_c00461{font-size:62.933333pt;}
.fs3_c00461{font-size:64.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y23_c00461{bottom:58.560000pt;}
.y22_c00461{bottom:138.560000pt;}
.y21_c00461{bottom:167.040000pt;}
.y20_c00461{bottom:167.040533pt;}
.y1f_c00461{bottom:220.493333pt;}
.y1d_c00461{bottom:249.287467pt;}
.y1e_c00461{bottom:249.293333pt;}
.y1c_c00461{bottom:304.333333pt;}
.y1a_c00461{bottom:332.166400pt;}
.y1b_c00461{bottom:332.173333pt;}
.y19_c00461{bottom:386.237867pt;}
.y17_c00461{bottom:414.089600pt;}
.y18_c00461{bottom:414.093333pt;}
.y16_c00461{bottom:441.281600pt;}
.y15_c00461{bottom:495.693333pt;}
.y14_c00461{bottom:523.533333pt;}
.y13_c00461{bottom:551.053333pt;}
.y12_c00461{bottom:551.058133pt;}
.y11_c00461{bottom:578.573333pt;}
.y10_c00461{bottom:605.773333pt;}
.ye_c00461{bottom:660.812267pt;}
.yf_c00461{bottom:660.813333pt;}
.yd_c00461{bottom:688.002667pt;}
.yc_c00461{bottom:715.533333pt;}
.yb_c00461{bottom:771.213333pt;}
.ya_c00461{bottom:798.093333pt;}
.y8_c00461{bottom:825.609600pt;}
.y9_c00461{bottom:825.613333pt;}
.y7_c00461{bottom:852.800000pt;}
.y5_c00461{bottom:907.847467pt;}
.y6_c00461{bottom:907.853333pt;}
.y4_c00461{bottom:935.053333pt;}
.y3_c00461{bottom:962.560000pt;}
.y2_c00461{bottom:990.093333pt;}
.y1_c00461{bottom:1057.933333pt;}
.ha_c00461{height:50.773437pt;}
.h2_c00461{height:52.137500pt;}
.h9_c00461{height:57.578125pt;}
.h3_c00461{height:60.718750pt;}
.h4_c00461{height:61.734896pt;}
.h8_c00461{height:61.739163pt;}
.h6_c00461{height:62.300000pt;}
.h5_c00461{height:62.781250pt;}
.h7_c00461{height:66.750000pt;}
.h1_c00461{height:1122.666667pt;}
.h0_c00461{height:1122.880000pt;}
.w1_c00461{width:793.333333pt;}
.w0_c00461{width:793.600000pt;}
.x0_c00461{left:0.000000pt;}
.x1a_c00461{left:105.571200pt;}
.x14_c00461{left:106.533333pt;}
.x6_c00461{left:107.733333pt;}
.x7_c00461{left:108.692267pt;}
.x2_c00461{left:109.733333pt;}
.x1_c00461{left:110.960000pt;}
.xa_c00461{left:177.640000pt;}
.x23_c00461{left:179.106667pt;}
.xb_c00461{left:195.306667pt;}
.x20_c00461{left:198.826667pt;}
.x24_c00461{left:199.786667pt;}
.x10_c00461{left:210.973333pt;}
.x3_c00461{left:226.160000pt;}
.x1b_c00461{left:233.773333pt;}
.x11_c00461{left:242.600000pt;}
.x4_c00461{left:246.053333pt;}
.x15_c00461{left:248.173333pt;}
.x1d_c00461{left:250.986667pt;}
.x16_c00461{left:282.813333pt;}
.x1c_c00461{left:291.053333pt;}
.xc_c00461{left:302.240000pt;}
.x12_c00461{left:334.893333pt;}
.xd_c00461{left:342.693333pt;}
.x13_c00461{left:348.733333pt;}
.x25_c00461{left:367.840000pt;}
.x27_c00461{left:374.893333pt;}
.x26_c00461{left:386.733333pt;}
.x8_c00461{left:425.066667pt;}
.x9_c00461{left:451.226667pt;}
.x1e_c00461{left:501.600000pt;}
.x18_c00461{left:517.266667pt;}
.x1f_c00461{left:523.813333pt;}
.x19_c00461{left:539.173333pt;}
.x21_c00461{left:620.773333pt;}
.x22_c00461{left:638.760000pt;}
.xf_c00461{left:647.186667pt;}
.x17_c00461{left:655.840000pt;}
.xe_c00461{left:657.760000pt;}
.x5_c00461{left:659.026667pt;}
}





/* 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_c00462 {
    display:none;
  }
  .loading-indicator_c00462.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00462 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_c00462 { 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_c00462" -> "#page-container .classname_c00462")
 */
.pf_c00462 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00462 { /* 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_c00462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00462 { /* 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_c00462 { /* 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_c00462 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00462 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00462 {overflow:visible;}
  }
}
.c_c00462 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00462 { /* 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_c00462:after { /* webkit #35443 */
  content: '';
}
.t_c00462:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00462 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 */
}
.__c00462 { /* 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_c00462 { /* info for Javascript */
  display:none;
}
.l_c00462 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00462 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00462 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00462: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_c00462 {
    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_c00462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00462.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_c00462 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00462;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.311035;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_c00462;src:url('chunks/assets/font_62bb6a6a3d3f9b899b7b0276.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.284668;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_c00462;src:url('chunks/assets/font_45c651de941f1e1d5f6e73a5.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.284180;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;}
.m7_c00462{transform:matrix(0.208323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208323,0.000000,0.000000,0.250000,0,0);}
.m4_c00462{transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219258,0.000000,0.000000,0.250000,0,0);}
.m9_c00462{transform:matrix(0.221277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221277,0.000000,0.000000,0.250000,0,0);}
.m8_c00462{transform:matrix(0.225564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225564,0.000000,0.000000,0.250000,0,0);}
.mb_c00462{transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);}
.m2_c00462{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.ma_c00462{transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);}
.mc_c00462{transform:matrix(0.236461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236461,0.000000,0.000000,0.250000,0,0);}
.m6_c00462{transform:matrix(0.243936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243936,0.000000,0.000000,0.250000,0,0);}
.m1_c00462{transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);}
.m5_c00462{transform:matrix(0.248451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248451,0.000000,0.000000,0.250000,0,0);}
.m0_c00462{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);}
.m3_c00462{transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls6f_c00462{letter-spacing:-2.604000px;}
.ls63_c00462{letter-spacing:-2.541000px;}
.ls52_c00462{letter-spacing:-2.373000px;}
.ls86_c00462{letter-spacing:-2.142000px;}
.ls66_c00462{letter-spacing:-1.844160px;}
.ls7f_c00462{letter-spacing:-1.823820px;}
.ls6b_c00462{letter-spacing:-1.647540px;}
.ls7c_c00462{letter-spacing:-1.328880px;}
.ls69_c00462{letter-spacing:-1.288200px;}
.ls57_c00462{letter-spacing:-1.274640px;}
.ls64_c00462{letter-spacing:-1.166160px;}
.ls5f_c00462{letter-spacing:-1.044120px;}
.ls54_c00462{letter-spacing:-1.037340px;}
.ls5a_c00462{letter-spacing:-1.017000px;}
.ls5d_c00462{letter-spacing:-0.996660px;}
.ls61_c00462{letter-spacing:-0.806820px;}
.ls5b_c00462{letter-spacing:-0.772920px;}
.ls5e_c00462{letter-spacing:-0.739020px;}
.ls83_c00462{letter-spacing:-0.616980px;}
.ls81_c00462{letter-spacing:-0.576300px;}
.ls5c_c00462{letter-spacing:-0.569520px;}
.ls75_c00462{letter-spacing:-0.549180px;}
.ls77_c00462{letter-spacing:-0.542400px;}
.ls68_c00462{letter-spacing:-0.515280px;}
.ls7a_c00462{letter-spacing:-0.352560px;}
.ls56_c00462{letter-spacing:-0.257640px;}
.ls55_c00462{letter-spacing:-0.237300px;}
.ls70_c00462{letter-spacing:-0.176280px;}
.ls7b_c00462{letter-spacing:-0.149160px;}
.ls73_c00462{letter-spacing:-0.135600px;}
.ls60_c00462{letter-spacing:-0.088140px;}
.ls6a_c00462{letter-spacing:-0.061020px;}
.ls6e_c00462{letter-spacing:-0.054240px;}
.ls6d_c00462{letter-spacing:-0.047460px;}
.ls59_c00462{letter-spacing:-0.033900px;}
.ls53_c00462{letter-spacing:0.000000px;}
.ls2c_c00462{letter-spacing:0.033900px;}
.ls4f_c00462{letter-spacing:0.040680px;}
.ls31_c00462{letter-spacing:0.094920px;}
.ls49_c00462{letter-spacing:0.101700px;}
.ls22_c00462{letter-spacing:0.149160px;}
.ls48_c00462{letter-spacing:0.155940px;}
.ls4b_c00462{letter-spacing:0.210180px;}
.ls45_c00462{letter-spacing:0.216960px;}
.ls4e_c00462{letter-spacing:0.230520px;}
.ls7_c00462{letter-spacing:0.271200px;}
.ls14_c00462{letter-spacing:0.291540px;}
.ls3a_c00462{letter-spacing:0.311880px;}
.ls85_c00462{letter-spacing:0.318660px;}
.ls3_c00462{letter-spacing:0.359340px;}
.ls67_c00462{letter-spacing:0.366120px;}
.ls7d_c00462{letter-spacing:0.413580px;}
.ls0_c00462{letter-spacing:0.454260px;}
.ls1f_c00462{letter-spacing:0.461040px;}
.ls82_c00462{letter-spacing:0.467820px;}
.lsc_c00462{letter-spacing:0.474600px;}
.ls6c_c00462{letter-spacing:0.481380px;}
.ls23_c00462{letter-spacing:0.528840px;}
.ls12_c00462{letter-spacing:0.535620px;}
.ls78_c00462{letter-spacing:0.555960px;}
.ls13_c00462{letter-spacing:0.596640px;}
.ls17_c00462{letter-spacing:0.603420px;}
.ls2a_c00462{letter-spacing:0.616980px;}
.ls38_c00462{letter-spacing:0.623760px;}
.ls34_c00462{letter-spacing:0.650880px;}
.ls2b_c00462{letter-spacing:0.664440px;}
.lsa_c00462{letter-spacing:0.671220px;}
.ls39_c00462{letter-spacing:0.684780px;}
.ls3b_c00462{letter-spacing:0.691560px;}
.ls33_c00462{letter-spacing:0.705120px;}
.ls4a_c00462{letter-spacing:0.711900px;}
.ls84_c00462{letter-spacing:0.732240px;}
.ls9_c00462{letter-spacing:0.752580px;}
.ls50_c00462{letter-spacing:0.759360px;}
.ls41_c00462{letter-spacing:0.806820px;}
.ls76_c00462{letter-spacing:0.820380px;}
.ls46_c00462{letter-spacing:0.854280px;}
.lsf_c00462{letter-spacing:0.881400px;}
.ls62_c00462{letter-spacing:0.901740px;}
.ls37_c00462{letter-spacing:0.915300px;}
.ls80_c00462{letter-spacing:0.928860px;}
.ls32_c00462{letter-spacing:0.942420px;}
.ls42_c00462{letter-spacing:0.949200px;}
.ls74_c00462{letter-spacing:0.969540px;}
.ls1b_c00462{letter-spacing:1.023780px;}
.ls30_c00462{letter-spacing:1.030560px;}
.ls19_c00462{letter-spacing:1.037340px;}
.ls1d_c00462{letter-spacing:1.050900px;}
.ls16_c00462{letter-spacing:1.057680px;}
.lse_c00462{letter-spacing:1.084800px;}
.ls72_c00462{letter-spacing:1.091580px;}
.ls1a_c00462{letter-spacing:1.098360px;}
.ls4_c00462{letter-spacing:1.139040px;}
.ls18_c00462{letter-spacing:1.145820px;}
.ls3f_c00462{letter-spacing:1.152600px;}
.ls44_c00462{letter-spacing:1.166160px;}
.ls28_c00462{letter-spacing:1.179720px;}
.ls11_c00462{letter-spacing:1.186500px;}
.ls15_c00462{letter-spacing:1.213620px;}
.ls24_c00462{letter-spacing:1.227180px;}
.ls43_c00462{letter-spacing:1.267860px;}
.ls29_c00462{letter-spacing:1.274640px;}
.ls27_c00462{letter-spacing:1.288200px;}
.ls3d_c00462{letter-spacing:1.301760px;}
.ls25_c00462{letter-spacing:1.315320px;}
.ls5_c00462{letter-spacing:1.322100px;}
.ls40_c00462{letter-spacing:1.335660px;}
.ls3c_c00462{letter-spacing:1.349220px;}
.ls1e_c00462{letter-spacing:1.383120px;}
.ls21_c00462{letter-spacing:1.389900px;}
.ls8_c00462{letter-spacing:1.396680px;}
.ls1c_c00462{letter-spacing:1.423800px;}
.ls36_c00462{letter-spacing:1.430580px;}
.ls1_c00462{letter-spacing:1.464480px;}
.ls2_c00462{letter-spacing:1.478040px;}
.ls35_c00462{letter-spacing:1.505160px;}
.ls26_c00462{letter-spacing:1.511940px;}
.ls2e_c00462{letter-spacing:1.532280px;}
.ls4c_c00462{letter-spacing:1.539060px;}
.ls3e_c00462{letter-spacing:1.579740px;}
.ls4d_c00462{letter-spacing:1.674660px;}
.ls51_c00462{letter-spacing:1.681920px;}
.ls7e_c00462{letter-spacing:1.701780px;}
.ls20_c00462{letter-spacing:1.722120px;}
.ls6_c00462{letter-spacing:1.742460px;}
.ls2d_c00462{letter-spacing:1.783140px;}
.ls71_c00462{letter-spacing:1.789920px;}
.ls47_c00462{letter-spacing:1.803480px;}
.ls2f_c00462{letter-spacing:1.857720px;}
.ls65_c00462{letter-spacing:1.864500px;}
.lsd_c00462{letter-spacing:1.878060px;}
.lsb_c00462{letter-spacing:1.945860px;}
.ls10_c00462{letter-spacing:2.223840px;}
.ls79_c00462{letter-spacing:2.942520px;}
.ls58_c00462{letter-spacing:3.390000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{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__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00462{word-spacing:-2.006880px;}
.ws1_c00462{word-spacing:-0.230520px;}
.wsa_c00462{word-spacing:0.000000px;}
.ws9_c00462{word-spacing:2.793360px;}
.ws7_c00462{word-spacing:4.176480px;}
.ws6_c00462{word-spacing:4.298520px;}
.ws0_c00462{word-spacing:13.858320px;}
.ws2_c00462{word-spacing:15.282120px;}
.ws5_c00462{word-spacing:25.736880px;}
.ws3_c00462{word-spacing:27.131880px;}
.ws8_c00462{word-spacing:38.754480px;}
._9_c00462{margin-left:-17.717100px;}
._14_c00462{margin-left:-6.576360px;}
._c_c00462{margin-left:-5.057880px;}
._6_c00462{margin-left:-3.878160px;}
._12_c00462{margin-left:-2.671320px;}
._a_c00462{margin-left:-1.661100px;}
._7_c00462{width:1.857720px;}
._8_c00462{width:3.655800px;}
._d_c00462{width:5.352360px;}
._3_c00462{width:6.910680px;}
._b_c00462{width:8.934180px;}
._5_c00462{width:10.344420px;}
._0_c00462{width:11.566680px;}
._1a_c00462{width:13.278780px;}
._2_c00462{width:14.319360px;}
._f_c00462{width:15.858420px;}
._1_c00462{width:16.922880px;}
._10_c00462{width:19.574100px;}
._4_c00462{width:20.746800px;}
._11_c00462{width:22.597740px;}
._15_c00462{width:24.810240px;}
._e_c00462{width:26.414880px;}
._13_c00462{width:30.123540px;}
._18_c00462{width:34.388160px;}
._16_c00462{width:38.395140px;}
._17_c00462{width:43.785240px;}
._19_c00462{width:48.782100px;}
.fc0_c00462{color:transparent;}
.fs0_c00462{font-size:57.600000px;}
.fs4_c00462{font-size:61.200000px;}
.fs1_c00462{font-size:67.800000px;}
.fs2_c00462{font-size:72.600000px;}
.fs3_c00462{font-size:74.400000px;}
.y0_c00462{bottom:0.000000px;}
.y22_c00462{bottom:72.735015px;}
.y21_c00462{bottom:134.640015px;}
.y1f_c00462{bottom:164.519715px;}
.y20_c00462{bottom:164.520015px;}
.y1e_c00462{bottom:226.455015px;}
.y1c_c00462{bottom:257.032365px;}
.y1d_c00462{bottom:257.040015px;}
.y1a_c00462{bottom:287.995665px;}
.y1b_c00462{bottom:288.000015px;}
.y19_c00462{bottom:349.576215px;}
.y18_c00462{bottom:379.822665px;}
.y17_c00462{bottom:442.080015px;}
.y16_c00462{bottom:442.085265px;}
.y15_c00462{bottom:472.680015px;}
.y14_c00462{bottom:472.681665px;}
.y13_c00462{bottom:534.600015px;}
.y12_c00462{bottom:564.840015px;}
.y11_c00462{bottom:564.841665px;}
.y10_c00462{bottom:626.760015px;}
.yf_c00462{bottom:657.375015px;}
.ye_c00462{bottom:719.298165px;}
.yd_c00462{bottom:749.520015px;}
.yb_c00462{bottom:811.091415px;}
.yc_c00462{bottom:811.095015px;}
.ya_c00462{bottom:842.415015px;}
.y9_c00462{bottom:903.975015px;}
.y8_c00462{bottom:934.560015px;}
.y7_c00462{bottom:934.571715px;}
.y6_c00462{bottom:995.422215px;}
.y4_c00462{bottom:1025.993565px;}
.y5_c00462{bottom:1026.000015px;}
.y3_c00462{bottom:1087.200015px;}
.y2_c00462{bottom:1118.520015px;}
.y1_c00462{bottom:1193.775015px;}
.h2_c00462{height:58.050000px;}
.h7_c00462{height:60.064453px;}
.h4_c00462{height:66.508887px;}
.h3_c00462{height:66.541992px;}
.h5_c00462{height:71.252930px;}
.h6_c00462{height:73.019531px;}
.h1_c00462{height:1263.000000px;}
.h0_c00462{height:1263.240015px;}
.w1_c00462{width:892.500000px;}
.w0_c00462{width:892.800015px;}
.x0_c00462{left:0.000000px;}
.x21_c00462{left:120.405015px;}
.x12_c00462{left:122.190015px;}
.x1_c00462{left:123.390015px;}
.x13_c00462{left:159.120015px;}
.x14_c00462{left:185.160015px;}
.x20_c00462{left:201.510015px;}
.x7_c00462{left:202.950015px;}
.x2_c00462{left:207.270015px;}
.x15_c00462{left:208.350015px;}
.x1b_c00462{left:211.230015px;}
.x8_c00462{left:223.335015px;}
.x18_c00462{left:224.775015px;}
.x3_c00462{left:231.975015px;}
.x10_c00462{left:233.775015px;}
.x16_c00462{left:235.215015px;}
.x1c_c00462{left:241.335015px;}
.x19_c00462{left:250.350015px;}
.x5_c00462{left:282.870015px;}
.xd_c00462{left:287.475015px;}
.x6_c00462{left:307.245015px;}
.x1a_c00462{left:313.320015px;}
.xe_c00462{left:343.815015px;}
.xf_c00462{left:369.840015px;}
.x22_c00462{left:421.755015px;}
.x1d_c00462{left:505.365015px;}
.x1e_c00462{left:538.245015px;}
.x1f_c00462{left:563.880015px;}
.x9_c00462{left:581.595015px;}
.xa_c00462{left:600.990015px;}
.xb_c00462{left:638.280015px;}
.xc_c00462{left:665.040015px;}
.x4_c00462{left:715.650015px;}
.x17_c00462{left:732.795015px;}
.x11_c00462{left:733.875015px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls6f_c00462{letter-spacing:-2.314667pt;}
.ls63_c00462{letter-spacing:-2.258667pt;}
.ls52_c00462{letter-spacing:-2.109333pt;}
.ls86_c00462{letter-spacing:-1.904000pt;}
.ls66_c00462{letter-spacing:-1.639253pt;}
.ls7f_c00462{letter-spacing:-1.621173pt;}
.ls6b_c00462{letter-spacing:-1.464480pt;}
.ls7c_c00462{letter-spacing:-1.181227pt;}
.ls69_c00462{letter-spacing:-1.145067pt;}
.ls57_c00462{letter-spacing:-1.133013pt;}
.ls64_c00462{letter-spacing:-1.036587pt;}
.ls5f_c00462{letter-spacing:-0.928107pt;}
.ls54_c00462{letter-spacing:-0.922080pt;}
.ls5a_c00462{letter-spacing:-0.904000pt;}
.ls5d_c00462{letter-spacing:-0.885920pt;}
.ls61_c00462{letter-spacing:-0.717173pt;}
.ls5b_c00462{letter-spacing:-0.687040pt;}
.ls5e_c00462{letter-spacing:-0.656907pt;}
.ls83_c00462{letter-spacing:-0.548427pt;}
.ls81_c00462{letter-spacing:-0.512267pt;}
.ls5c_c00462{letter-spacing:-0.506240pt;}
.ls75_c00462{letter-spacing:-0.488160pt;}
.ls77_c00462{letter-spacing:-0.482133pt;}
.ls68_c00462{letter-spacing:-0.458027pt;}
.ls7a_c00462{letter-spacing:-0.313387pt;}
.ls56_c00462{letter-spacing:-0.229013pt;}
.ls55_c00462{letter-spacing:-0.210933pt;}
.ls70_c00462{letter-spacing:-0.156693pt;}
.ls7b_c00462{letter-spacing:-0.132587pt;}
.ls73_c00462{letter-spacing:-0.120533pt;}
.ls60_c00462{letter-spacing:-0.078347pt;}
.ls6a_c00462{letter-spacing:-0.054240pt;}
.ls6e_c00462{letter-spacing:-0.048213pt;}
.ls6d_c00462{letter-spacing:-0.042187pt;}
.ls59_c00462{letter-spacing:-0.030133pt;}
.ls53_c00462{letter-spacing:0.000000pt;}
.ls2c_c00462{letter-spacing:0.030133pt;}
.ls4f_c00462{letter-spacing:0.036160pt;}
.ls31_c00462{letter-spacing:0.084373pt;}
.ls49_c00462{letter-spacing:0.090400pt;}
.ls22_c00462{letter-spacing:0.132587pt;}
.ls48_c00462{letter-spacing:0.138613pt;}
.ls4b_c00462{letter-spacing:0.186827pt;}
.ls45_c00462{letter-spacing:0.192853pt;}
.ls4e_c00462{letter-spacing:0.204907pt;}
.ls7_c00462{letter-spacing:0.241067pt;}
.ls14_c00462{letter-spacing:0.259147pt;}
.ls3a_c00462{letter-spacing:0.277227pt;}
.ls85_c00462{letter-spacing:0.283253pt;}
.ls3_c00462{letter-spacing:0.319413pt;}
.ls67_c00462{letter-spacing:0.325440pt;}
.ls7d_c00462{letter-spacing:0.367627pt;}
.ls0_c00462{letter-spacing:0.403787pt;}
.ls1f_c00462{letter-spacing:0.409813pt;}
.ls82_c00462{letter-spacing:0.415840pt;}
.lsc_c00462{letter-spacing:0.421867pt;}
.ls6c_c00462{letter-spacing:0.427893pt;}
.ls23_c00462{letter-spacing:0.470080pt;}
.ls12_c00462{letter-spacing:0.476107pt;}
.ls78_c00462{letter-spacing:0.494187pt;}
.ls13_c00462{letter-spacing:0.530347pt;}
.ls17_c00462{letter-spacing:0.536373pt;}
.ls2a_c00462{letter-spacing:0.548427pt;}
.ls38_c00462{letter-spacing:0.554453pt;}
.ls34_c00462{letter-spacing:0.578560pt;}
.ls2b_c00462{letter-spacing:0.590613pt;}
.lsa_c00462{letter-spacing:0.596640pt;}
.ls39_c00462{letter-spacing:0.608693pt;}
.ls3b_c00462{letter-spacing:0.614720pt;}
.ls33_c00462{letter-spacing:0.626773pt;}
.ls4a_c00462{letter-spacing:0.632800pt;}
.ls84_c00462{letter-spacing:0.650880pt;}
.ls9_c00462{letter-spacing:0.668960pt;}
.ls50_c00462{letter-spacing:0.674987pt;}
.ls41_c00462{letter-spacing:0.717173pt;}
.ls76_c00462{letter-spacing:0.729227pt;}
.ls46_c00462{letter-spacing:0.759360pt;}
.lsf_c00462{letter-spacing:0.783467pt;}
.ls62_c00462{letter-spacing:0.801547pt;}
.ls37_c00462{letter-spacing:0.813600pt;}
.ls80_c00462{letter-spacing:0.825653pt;}
.ls32_c00462{letter-spacing:0.837707pt;}
.ls42_c00462{letter-spacing:0.843733pt;}
.ls74_c00462{letter-spacing:0.861813pt;}
.ls1b_c00462{letter-spacing:0.910027pt;}
.ls30_c00462{letter-spacing:0.916053pt;}
.ls19_c00462{letter-spacing:0.922080pt;}
.ls1d_c00462{letter-spacing:0.934133pt;}
.ls16_c00462{letter-spacing:0.940160pt;}
.lse_c00462{letter-spacing:0.964267pt;}
.ls72_c00462{letter-spacing:0.970293pt;}
.ls1a_c00462{letter-spacing:0.976320pt;}
.ls4_c00462{letter-spacing:1.012480pt;}
.ls18_c00462{letter-spacing:1.018507pt;}
.ls3f_c00462{letter-spacing:1.024533pt;}
.ls44_c00462{letter-spacing:1.036587pt;}
.ls28_c00462{letter-spacing:1.048640pt;}
.ls11_c00462{letter-spacing:1.054667pt;}
.ls15_c00462{letter-spacing:1.078773pt;}
.ls24_c00462{letter-spacing:1.090827pt;}
.ls43_c00462{letter-spacing:1.126987pt;}
.ls29_c00462{letter-spacing:1.133013pt;}
.ls27_c00462{letter-spacing:1.145067pt;}
.ls3d_c00462{letter-spacing:1.157120pt;}
.ls25_c00462{letter-spacing:1.169173pt;}
.ls5_c00462{letter-spacing:1.175200pt;}
.ls40_c00462{letter-spacing:1.187253pt;}
.ls3c_c00462{letter-spacing:1.199307pt;}
.ls1e_c00462{letter-spacing:1.229440pt;}
.ls21_c00462{letter-spacing:1.235467pt;}
.ls8_c00462{letter-spacing:1.241493pt;}
.ls1c_c00462{letter-spacing:1.265600pt;}
.ls36_c00462{letter-spacing:1.271627pt;}
.ls1_c00462{letter-spacing:1.301760pt;}
.ls2_c00462{letter-spacing:1.313813pt;}
.ls35_c00462{letter-spacing:1.337920pt;}
.ls26_c00462{letter-spacing:1.343947pt;}
.ls2e_c00462{letter-spacing:1.362027pt;}
.ls4c_c00462{letter-spacing:1.368053pt;}
.ls3e_c00462{letter-spacing:1.404213pt;}
.ls4d_c00462{letter-spacing:1.488587pt;}
.ls51_c00462{letter-spacing:1.495040pt;}
.ls7e_c00462{letter-spacing:1.512693pt;}
.ls20_c00462{letter-spacing:1.530773pt;}
.ls6_c00462{letter-spacing:1.548853pt;}
.ls2d_c00462{letter-spacing:1.585013pt;}
.ls71_c00462{letter-spacing:1.591040pt;}
.ls47_c00462{letter-spacing:1.603093pt;}
.ls2f_c00462{letter-spacing:1.651307pt;}
.ls65_c00462{letter-spacing:1.657333pt;}
.lsd_c00462{letter-spacing:1.669387pt;}
.lsb_c00462{letter-spacing:1.729653pt;}
.ls10_c00462{letter-spacing:1.976747pt;}
.ls79_c00462{letter-spacing:2.615573pt;}
.ls58_c00462{letter-spacing:3.013333pt;}
.ws4_c00462{word-spacing:-1.783893pt;}
.ws1_c00462{word-spacing:-0.204907pt;}
.wsa_c00462{word-spacing:0.000000pt;}
.ws9_c00462{word-spacing:2.482987pt;}
.ws7_c00462{word-spacing:3.712427pt;}
.ws6_c00462{word-spacing:3.820907pt;}
.ws0_c00462{word-spacing:12.318507pt;}
.ws2_c00462{word-spacing:13.584107pt;}
.ws5_c00462{word-spacing:22.877227pt;}
.ws3_c00462{word-spacing:24.117227pt;}
.ws8_c00462{word-spacing:34.448427pt;}
._9_c00462{margin-left:-15.748533pt;}
._14_c00462{margin-left:-5.845653pt;}
._c_c00462{margin-left:-4.495893pt;}
._6_c00462{margin-left:-3.447253pt;}
._12_c00462{margin-left:-2.374507pt;}
._a_c00462{margin-left:-1.476533pt;}
._7_c00462{width:1.651307pt;}
._8_c00462{width:3.249600pt;}
._d_c00462{width:4.757653pt;}
._3_c00462{width:6.142827pt;}
._b_c00462{width:7.941493pt;}
._5_c00462{width:9.195040pt;}
._0_c00462{width:10.281493pt;}
._1a_c00462{width:11.803360pt;}
._2_c00462{width:12.728320pt;}
._f_c00462{width:14.096373pt;}
._1_c00462{width:15.042560pt;}
._10_c00462{width:17.399200pt;}
._4_c00462{width:18.441600pt;}
._11_c00462{width:20.086880pt;}
._15_c00462{width:22.053547pt;}
._e_c00462{width:23.479893pt;}
._13_c00462{width:26.776480pt;}
._18_c00462{width:30.567253pt;}
._16_c00462{width:34.129013pt;}
._17_c00462{width:38.920213pt;}
._19_c00462{width:43.361867pt;}
.fs0_c00462{font-size:51.200000pt;}
.fs4_c00462{font-size:54.400000pt;}
.fs1_c00462{font-size:60.266667pt;}
.fs2_c00462{font-size:64.533333pt;}
.fs3_c00462{font-size:66.133333pt;}
.y0_c00462{bottom:0.000000pt;}
.y22_c00462{bottom:64.653347pt;}
.y21_c00462{bottom:119.680013pt;}
.y1f_c00462{bottom:146.239747pt;}
.y20_c00462{bottom:146.240013pt;}
.y1e_c00462{bottom:201.293347pt;}
.y1c_c00462{bottom:228.473213pt;}
.y1d_c00462{bottom:228.480013pt;}
.y1a_c00462{bottom:255.996147pt;}
.y1b_c00462{bottom:256.000013pt;}
.y19_c00462{bottom:310.734413pt;}
.y18_c00462{bottom:337.620147pt;}
.y17_c00462{bottom:392.960013pt;}
.y16_c00462{bottom:392.964680pt;}
.y15_c00462{bottom:420.160013pt;}
.y14_c00462{bottom:420.161480pt;}
.y13_c00462{bottom:475.200013pt;}
.y12_c00462{bottom:502.080013pt;}
.y11_c00462{bottom:502.081480pt;}
.y10_c00462{bottom:557.120013pt;}
.yf_c00462{bottom:584.333347pt;}
.ye_c00462{bottom:639.376147pt;}
.yd_c00462{bottom:666.240013pt;}
.yb_c00462{bottom:720.970147pt;}
.yc_c00462{bottom:720.973347pt;}
.ya_c00462{bottom:748.813347pt;}
.y9_c00462{bottom:803.533347pt;}
.y8_c00462{bottom:830.720013pt;}
.y7_c00462{bottom:830.730413pt;}
.y6_c00462{bottom:884.819747pt;}
.y4_c00462{bottom:911.994280pt;}
.y5_c00462{bottom:912.000013pt;}
.y3_c00462{bottom:966.400013pt;}
.y2_c00462{bottom:994.240013pt;}
.y1_c00462{bottom:1061.133347pt;}
.h2_c00462{height:51.600000pt;}
.h7_c00462{height:53.390625pt;}
.h4_c00462{height:59.119010pt;}
.h3_c00462{height:59.148438pt;}
.h5_c00462{height:63.335938pt;}
.h6_c00462{height:64.906250pt;}
.h1_c00462{height:1122.666667pt;}
.h0_c00462{height:1122.880013pt;}
.w1_c00462{width:793.333333pt;}
.w0_c00462{width:793.600013pt;}
.x0_c00462{left:0.000000pt;}
.x21_c00462{left:107.026680pt;}
.x12_c00462{left:108.613347pt;}
.x1_c00462{left:109.680013pt;}
.x13_c00462{left:141.440013pt;}
.x14_c00462{left:164.586680pt;}
.x20_c00462{left:179.120013pt;}
.x7_c00462{left:180.400013pt;}
.x2_c00462{left:184.240013pt;}
.x15_c00462{left:185.200013pt;}
.x1b_c00462{left:187.760013pt;}
.x8_c00462{left:198.520013pt;}
.x18_c00462{left:199.800013pt;}
.x3_c00462{left:206.200013pt;}
.x10_c00462{left:207.800013pt;}
.x16_c00462{left:209.080013pt;}
.x1c_c00462{left:214.520013pt;}
.x19_c00462{left:222.533347pt;}
.x5_c00462{left:251.440013pt;}
.xd_c00462{left:255.533347pt;}
.x6_c00462{left:273.106680pt;}
.x1a_c00462{left:278.506680pt;}
.xe_c00462{left:305.613347pt;}
.xf_c00462{left:328.746680pt;}
.x22_c00462{left:374.893347pt;}
.x1d_c00462{left:449.213347pt;}
.x1e_c00462{left:478.440013pt;}
.x1f_c00462{left:501.226680pt;}
.x9_c00462{left:516.973347pt;}
.xa_c00462{left:534.213347pt;}
.xb_c00462{left:567.360013pt;}
.xc_c00462{left:591.146680pt;}
.x4_c00462{left:636.133347pt;}
.x17_c00462{left:651.373347pt;}
.x11_c00462{left:652.333347pt;}
}





/* 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_c00463 {
    display:none;
  }
  .loading-indicator_c00463.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00463 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_c00463 { 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_c00463" -> "#page-container .classname_c00463")
 */
.pf_c00463 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00463 { /* 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_c00463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00463 { /* 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_c00463 { /* 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_c00463 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00463 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00463 {overflow:visible;}
  }
}
.c_c00463 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00463 { /* 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_c00463:after { /* webkit #35443 */
  content: '';
}
.t_c00463:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00463 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 */
}
.__c00463 { /* 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_c00463 { /* info for Javascript */
  display:none;
}
.l_c00463 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00463 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00463 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00463: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_c00463 {
    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_c00463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00463.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_c00463 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00463{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00463;src:url('chunks/assets/font_02648b0960e84b8e7b3f4e6c.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.284668;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_c00463;src:url('chunks/assets/font_27eb990c632225c1f212f27c.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.284180;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_c00463;src:url('chunks/assets/font_ad684fcb06cbee4f5d05ca1d.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.311035;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_c00463;src:url('chunks/assets/font_952b9d709be0b8e903403fa2.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;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:ff5_c00463;src:url('chunks/assets/font_9cec595aaa36092a7d37f6c3.woff2')format("woff");}.ff5_c00463{font-family:ff5_c00463;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:ff6_c00463;src:url('chunks/assets/font_1a2c6017df13bbda0947932d.woff2')format("woff");}.ff6_c00463{font-family:ff6_c00463;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;}
.m12_c00463{transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209681,0.000000,0.000000,0.250000,0,0);}
.m14_c00463{transform:matrix(0.212478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212478,0.000000,0.000000,0.250000,0,0);}
.m13_c00463{transform:matrix(0.213504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213504,0.000000,0.000000,0.250000,0,0);}
.m5_c00463{transform:matrix(0.222639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222639,0.000000,0.000000,0.250000,0,0);}
.m17_c00463{transform:matrix(0.225563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225563,0.000000,0.000000,0.250000,0,0);}
.m10_c00463{transform:matrix(0.229417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229417,0.000000,0.000000,0.250000,0,0);}
.ma_c00463{transform:matrix(0.230949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230949,0.000000,0.000000,0.250000,0,0);}
.m6_c00463{transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);}
.m8_c00463{transform:matrix(0.239531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239531,0.000000,0.000000,0.250000,0,0);}
.m1_c00463{transform:matrix(0.239947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239947,0.000000,0.000000,0.250000,0,0);}
.me_c00463{transform:matrix(0.241201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241201,0.000000,0.000000,0.250000,0,0);}
.m7_c00463{transform:matrix(0.242934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242934,0.000000,0.000000,0.250000,0,0);}
.mb_c00463{transform:matrix(0.243428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243428,0.000000,0.000000,0.250000,0,0);}
.m4_c00463{transform:matrix(0.243453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243453,0.000000,0.000000,0.250000,0,0);}
.m15_c00463{transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);}
.md_c00463{transform:matrix(0.244602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244602,0.000000,0.000000,0.250000,0,0);}
.mf_c00463{transform:matrix(0.244944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244944,0.000000,0.000000,0.250000,0,0);}
.m2_c00463{transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);}
.m3_c00463{transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);}
.mc_c00463{transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);}
.m11_c00463{transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);}
.m0_c00463{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);}
.m9_c00463{transform:matrix(0.268434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268434,0.000000,0.000000,0.250000,0,0);}
.m16_c00463{transform:matrix(0.279419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279419,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.v1_c00463{vertical-align:14.460000px;}
.ls73_c00463{letter-spacing:-2.604000px;}
.ls57_c00463{letter-spacing:-2.562000px;}
.ls3b_c00463{letter-spacing:-2.457000px;}
.ls5f_c00463{letter-spacing:-2.436000px;}
.ls71_c00463{letter-spacing:-2.373000px;}
.ls58_c00463{letter-spacing:-2.342400px;}
.ls84_c00463{letter-spacing:-2.331000px;}
.ls4b_c00463{letter-spacing:-2.199360px;}
.ls5d_c00463{letter-spacing:-2.088000px;}
.ls88_c00463{letter-spacing:-1.993680px;}
.ls7c_c00463{letter-spacing:-1.902420px;}
.ls46_c00463{letter-spacing:-1.867320px;}
.ls69_c00463{letter-spacing:-1.823520px;}
.ls72_c00463{letter-spacing:-1.726080px;}
.ls48_c00463{letter-spacing:-1.586520px;}
.ls86_c00463{letter-spacing:-1.538160px;}
.ls6a_c00463{letter-spacing:-1.517280px;}
.ls65_c00463{letter-spacing:-1.467180px;}
.ls67_c00463{letter-spacing:-1.364160px;}
.ls50_c00463{letter-spacing:-1.165320px;}
.ls5b_c00463{letter-spacing:-1.078800px;}
.ls79_c00463{letter-spacing:-1.057920px;}
.ls41_c00463{letter-spacing:-1.010880px;}
.ls87_c00463{letter-spacing:-0.911760px;}
.ls62_c00463{letter-spacing:-0.905580px;}
.ls85_c00463{letter-spacing:-0.849120px;}
.ls76_c00463{letter-spacing:-0.835200px;}
.ls60_c00463{letter-spacing:-0.779520px;}
.ls43_c00463{letter-spacing:-0.765180px;}
.ls54_c00463{letter-spacing:-0.744120px;}
.ls6c_c00463{letter-spacing:-0.702000px;}
.ls42_c00463{letter-spacing:-0.652860px;}
.ls70_c00463{letter-spacing:-0.626400px;}
.ls6f_c00463{letter-spacing:-0.598560px;}
.ls74_c00463{letter-spacing:-0.584640px;}
.ls78_c00463{letter-spacing:-0.535920px;}
.ls77_c00463{letter-spacing:-0.515040px;}
.ls6d_c00463{letter-spacing:-0.512460px;}
.ls56_c00463{letter-spacing:-0.498420px;}
.ls4a_c00463{letter-spacing:-0.484380px;}
.ls40_c00463{letter-spacing:-0.477360px;}
.ls7e_c00463{letter-spacing:-0.449280px;}
.ls53_c00463{letter-spacing:-0.435240px;}
.ls7f_c00463{letter-spacing:-0.428220px;}
.ls51_c00463{letter-spacing:-0.421200px;}
.ls64_c00463{letter-spacing:-0.414180px;}
.ls75_c00463{letter-spacing:-0.407160px;}
.ls7d_c00463{letter-spacing:-0.400140px;}
.ls63_c00463{letter-spacing:-0.358020px;}
.ls7b_c00463{letter-spacing:-0.308880px;}
.ls68_c00463{letter-spacing:-0.285360px;}
.ls82_c00463{letter-spacing:-0.280800px;}
.ls47_c00463{letter-spacing:-0.245700px;}
.ls3e_c00463{letter-spacing:-0.238680px;}
.ls4c_c00463{letter-spacing:-0.229680px;}
.ls3c_c00463{letter-spacing:-0.196560px;}
.ls5c_c00463{letter-spacing:-0.194880px;}
.ls52_c00463{letter-spacing:-0.175500px;}
.ls66_c00463{letter-spacing:-0.154440px;}
.ls44_c00463{letter-spacing:-0.146160px;}
.ls7a_c00463{letter-spacing:-0.140400px;}
.ls3d_c00463{letter-spacing:-0.112320px;}
.ls6e_c00463{letter-spacing:-0.105300px;}
.ls55_c00463{letter-spacing:-0.084240px;}
.ls61_c00463{letter-spacing:-0.076560px;}
.ls5a_c00463{letter-spacing:-0.070200px;}
.ls4d_c00463{letter-spacing:-0.048720px;}
.ls4e_c00463{letter-spacing:-0.028080px;}
.ls4f_c00463{letter-spacing:0.000000px;}
.lsa_c00463{letter-spacing:0.007020px;}
.ls5e_c00463{letter-spacing:0.013920px;}
.ls2c_c00463{letter-spacing:0.028080px;}
.ls83_c00463{letter-spacing:0.041760px;}
.ls8_c00463{letter-spacing:0.070200px;}
.ls2a_c00463{letter-spacing:0.090480px;}
.ls28_c00463{letter-spacing:0.104400px;}
.ls1_c00463{letter-spacing:0.126360px;}
.ls18_c00463{letter-spacing:0.133380px;}
.ls14_c00463{letter-spacing:0.140400px;}
.ls3_c00463{letter-spacing:0.175500px;}
.ls27_c00463{letter-spacing:0.187920px;}
.ls15_c00463{letter-spacing:0.196560px;}
.ls1a_c00463{letter-spacing:0.203580px;}
.ls38_c00463{letter-spacing:0.215760px;}
.ls2b_c00463{letter-spacing:0.217620px;}
.ls4_c00463{letter-spacing:0.238680px;}
.ls19_c00463{letter-spacing:0.245700px;}
.ls6b_c00463{letter-spacing:0.250560px;}
.ls37_c00463{letter-spacing:0.257520px;}
.ls3f_c00463{letter-spacing:0.259740px;}
.ls6_c00463{letter-spacing:0.285360px;}
.ls36_c00463{letter-spacing:0.294840px;}
.ls12_c00463{letter-spacing:0.306240px;}
.ls10_c00463{letter-spacing:0.336960px;}
.ls32_c00463{letter-spacing:0.343980px;}
.ls80_c00463{letter-spacing:0.365040px;}
.ls7_c00463{letter-spacing:0.372060px;}
.ls22_c00463{letter-spacing:0.375840px;}
.lsc_c00463{letter-spacing:0.386100px;}
.ls1b_c00463{letter-spacing:0.393120px;}
.ls1d_c00463{letter-spacing:0.414180px;}
.ls21_c00463{letter-spacing:0.431520px;}
.ls1f_c00463{letter-spacing:0.438480px;}
.ls1c_c00463{letter-spacing:0.456300px;}
.ls35_c00463{letter-spacing:0.463320px;}
.ls11_c00463{letter-spacing:0.484380px;}
.ls0_c00463{letter-spacing:0.491400px;}
.ls13_c00463{letter-spacing:0.498420px;}
.ls30_c00463{letter-spacing:0.505440px;}
.lsf_c00463{letter-spacing:0.554580px;}
.ls2_c00463{letter-spacing:0.570720px;}
.ls2f_c00463{letter-spacing:0.582660px;}
.ls33_c00463{letter-spacing:0.589680px;}
.lse_c00463{letter-spacing:0.617760px;}
.ls2d_c00463{letter-spacing:0.638820px;}
.ls31_c00463{letter-spacing:0.687960px;}
.ls1e_c00463{letter-spacing:0.694980px;}
.ls26_c00463{letter-spacing:0.709920px;}
.ls3a_c00463{letter-spacing:0.737100px;}
.ls24_c00463{letter-spacing:0.744720px;}
.ls49_c00463{letter-spacing:0.786240px;}
.ls5_c00463{letter-spacing:0.870000px;}
.ls16_c00463{letter-spacing:0.890880px;}
.ls20_c00463{letter-spacing:0.897840px;}
.ls2e_c00463{letter-spacing:0.919620px;}
.ls9_c00463{letter-spacing:0.975780px;}
.lsd_c00463{letter-spacing:0.996840px;}
.ls34_c00463{letter-spacing:1.031940px;}
.ls25_c00463{letter-spacing:1.085760px;}
.ls45_c00463{letter-spacing:1.151280px;}
.ls39_c00463{letter-spacing:1.229280px;}
.ls23_c00463{letter-spacing:1.398960px;}
.lsb_c00463{letter-spacing:1.460160px;}
.ls29_c00463{letter-spacing:1.600800px;}
.ls89_c00463{letter-spacing:1.785600px;}
.ls17_c00463{letter-spacing:2.074080px;}
.ls81_c00463{letter-spacing:3.510000px;}
.ls59_c00463{letter-spacing:3.660000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{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__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00463{word-spacing:-18.300000px;}
.ws0_c00463{word-spacing:-3.552120px;}
.ws9_c00463{word-spacing:0.000000px;}
.ws3_c00463{word-spacing:0.533520px;}
.ws5_c00463{word-spacing:3.320460px;}
.ws1_c00463{word-spacing:7.258680px;}
.ws2_c00463{word-spacing:17.409600px;}
.ws7_c00463{word-spacing:21.702660px;}
.ws8_c00463{word-spacing:28.943460px;}
.ws6_c00463{word-spacing:35.310600px;}
._b_c00463{margin-left:-2.576340px;}
._a_c00463{margin-left:-1.432020px;}
._0_c00463{width:1.614600px;}
._1_c00463{width:3.166680px;}
._2_c00463{width:5.594940px;}
._f_c00463{width:6.735180px;}
._4_c00463{width:7.834320px;}
._3_c00463{width:10.277280px;}
._10_c00463{width:11.525880px;}
._e_c00463{width:12.613920px;}
._9_c00463{width:14.518200px;}
._8_c00463{width:15.740760px;}
._5_c00463{width:17.465760px;}
._7_c00463{width:19.684080px;}
._d_c00463{width:20.991360px;}
._14_c00463{width:24.269520px;}
._15_c00463{width:26.297940px;}
._c_c00463{width:27.983100px;}
._16_c00463{width:29.206440px;}
._6_c00463{width:30.663360px;}
._11_c00463{width:33.078240px;}
._13_c00463{width:34.531380px;}
._12_c00463{width:36.363600px;}
._17_c00463{width:39.084060px;}
.fc0_c00463{color:transparent;}
.fs9_c00463{font-size:57.600000px;}
.fs0_c00463{font-size:62.400000px;}
.fs8_c00463{font-size:66.600000px;}
.fs4_c00463{font-size:67.200000px;}
.fs6_c00463{font-size:67.800000px;}
.fs2_c00463{font-size:69.600000px;}
.fs1_c00463{font-size:70.200000px;}
.fs5_c00463{font-size:72.000000px;}
.fs3_c00463{font-size:73.200000px;}
.fs7_c00463{font-size:74.400000px;}
.y0_c00463{bottom:0.000000px;}
.y1f_c00463{bottom:79.215000px;}
.y1e_c00463{bottom:231.495000px;}
.y1d_c00463{bottom:262.815000px;}
.y1c_c00463{bottom:262.816800px;}
.y1b_c00463{bottom:293.775000px;}
.y1a_c00463{bottom:356.055000px;}
.y19_c00463{bottom:387.003000px;}
.y18_c00463{bottom:417.975000px;}
.y17_c00463{bottom:479.179350px;}
.y16_c00463{bottom:510.120000px;}
.y14_c00463{bottom:540.352500px;}
.y15_c00463{bottom:540.360000px;}
.y13_c00463{bottom:602.655000px;}
.y12_c00463{bottom:602.662800px;}
.y10_c00463{bottom:633.592050px;}
.y11_c00463{bottom:633.600000px;}
.yf_c00463{bottom:695.175000px;}
.ye_c00463{bottom:726.120000px;}
.yd_c00463{bottom:753.120000px;}
.yc_c00463{bottom:756.735000px;}
.yb_c00463{bottom:818.655000px;}
.ya_c00463{bottom:818.661150px;}
.y8_c00463{bottom:880.558800px;}
.y9_c00463{bottom:880.560000px;}
.y7_c00463{bottom:910.812600px;}
.y6_c00463{bottom:973.080000px;}
.y4_c00463{bottom:1003.690950px;}
.y5_c00463{bottom:1003.695000px;}
.y3_c00463{bottom:1065.607350px;}
.y2_c00463{bottom:1095.495000px;}
.y1_c00463{bottom:1203.855000px;}
.he_c00463{height:56.531250px;}
.h2_c00463{height:61.242188px;}
.h9_c00463{height:68.274609px;}
.hc_c00463{height:68.308594px;}
.h3_c00463{height:68.897461px;}
.h5_c00463{height:68.902261px;}
.h4_c00463{height:68.907061px;}
.hd_c00463{height:69.461719px;}
.h8_c00463{height:70.628906px;}
.ha_c00463{height:70.713281px;}
.hb_c00463{height:72.983203px;}
.h6_c00463{height:73.771875px;}
.h7_c00463{height:84.547500px;}
.h1_c00463{height:1263.000000px;}
.h0_c00463{height:1263.240000px;}
.w1_c00463{width:892.500000px;}
.w0_c00463{width:892.800000px;}
.x0_c00463{left:0.000000px;}
.x2b_c00463{left:118.919400px;}
.x1a_c00463{left:120.001800px;}
.xc_c00463{left:121.215000px;}
.x7_c00463{left:122.313300px;}
.x5_c00463{left:123.407250px;}
.x2_c00463{left:124.485000px;}
.x1_c00463{left:126.285000px;}
.xa_c00463{left:202.215000px;}
.x3_c00463{left:205.110000px;}
.x1d_c00463{left:209.415000px;}
.xb_c00463{left:222.945000px;}
.x19_c00463{left:224.025000px;}
.x4_c00463{left:225.465000px;}
.x6_c00463{left:228.705000px;}
.x28_c00463{left:230.580000px;}
.x1e_c00463{left:239.145000px;}
.x1b_c00463{left:241.365000px;}
.x1c_c00463{left:259.305000px;}
.xd_c00463{left:275.205000px;}
.x27_c00463{left:284.505000px;}
.xe_c00463{left:302.310000px;}
.xf_c00463{left:350.445000px;}
.x1f_c00463{left:399.420000px;}
.x10_c00463{left:419.220000px;}
.x2c_c00463{left:423.195000px;}
.x20_c00463{left:438.375000px;}
.x11_c00463{left:442.590000px;}
.x12_c00463{left:463.125000px;}
.x21_c00463{left:474.990000px;}
.x22_c00463{left:494.790000px;}
.x23_c00463{left:531.465000px;}
.x24_c00463{left:556.320000px;}
.x13_c00463{left:572.010000px;}
.x25_c00463{left:587.235000px;}
.x8_c00463{left:597.360000px;}
.x26_c00463{left:601.110000px;}
.x14_c00463{left:609.630000px;}
.x17_c00463{left:613.980000px;}
.x9_c00463{left:618.330000px;}
.x29_c00463{left:657.225000px;}
.x18_c00463{left:659.670000px;}
.x15_c00463{left:664.365000px;}
.x2a_c00463{left:676.920000px;}
.x16_c00463{left:736.380000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.v1_c00463{vertical-align:12.853333pt;}
.ls73_c00463{letter-spacing:-2.314667pt;}
.ls57_c00463{letter-spacing:-2.277333pt;}
.ls3b_c00463{letter-spacing:-2.184000pt;}
.ls5f_c00463{letter-spacing:-2.165333pt;}
.ls71_c00463{letter-spacing:-2.109333pt;}
.ls58_c00463{letter-spacing:-2.082133pt;}
.ls84_c00463{letter-spacing:-2.072000pt;}
.ls4b_c00463{letter-spacing:-1.954987pt;}
.ls5d_c00463{letter-spacing:-1.856000pt;}
.ls88_c00463{letter-spacing:-1.772160pt;}
.ls7c_c00463{letter-spacing:-1.691040pt;}
.ls46_c00463{letter-spacing:-1.659840pt;}
.ls69_c00463{letter-spacing:-1.620907pt;}
.ls72_c00463{letter-spacing:-1.534293pt;}
.ls48_c00463{letter-spacing:-1.410240pt;}
.ls86_c00463{letter-spacing:-1.367253pt;}
.ls6a_c00463{letter-spacing:-1.348693pt;}
.ls65_c00463{letter-spacing:-1.304160pt;}
.ls67_c00463{letter-spacing:-1.212587pt;}
.ls50_c00463{letter-spacing:-1.035840pt;}
.ls5b_c00463{letter-spacing:-0.958933pt;}
.ls79_c00463{letter-spacing:-0.940373pt;}
.ls41_c00463{letter-spacing:-0.898560pt;}
.ls87_c00463{letter-spacing:-0.810453pt;}
.ls62_c00463{letter-spacing:-0.804960pt;}
.ls85_c00463{letter-spacing:-0.754773pt;}
.ls76_c00463{letter-spacing:-0.742400pt;}
.ls60_c00463{letter-spacing:-0.692907pt;}
.ls43_c00463{letter-spacing:-0.680160pt;}
.ls54_c00463{letter-spacing:-0.661440pt;}
.ls6c_c00463{letter-spacing:-0.624000pt;}
.ls42_c00463{letter-spacing:-0.580320pt;}
.ls70_c00463{letter-spacing:-0.556800pt;}
.ls6f_c00463{letter-spacing:-0.532053pt;}
.ls74_c00463{letter-spacing:-0.519680pt;}
.ls78_c00463{letter-spacing:-0.476373pt;}
.ls77_c00463{letter-spacing:-0.457813pt;}
.ls6d_c00463{letter-spacing:-0.455520pt;}
.ls56_c00463{letter-spacing:-0.443040pt;}
.ls4a_c00463{letter-spacing:-0.430560pt;}
.ls40_c00463{letter-spacing:-0.424320pt;}
.ls7e_c00463{letter-spacing:-0.399360pt;}
.ls53_c00463{letter-spacing:-0.386880pt;}
.ls7f_c00463{letter-spacing:-0.380640pt;}
.ls51_c00463{letter-spacing:-0.374400pt;}
.ls64_c00463{letter-spacing:-0.368160pt;}
.ls75_c00463{letter-spacing:-0.361920pt;}
.ls7d_c00463{letter-spacing:-0.355680pt;}
.ls63_c00463{letter-spacing:-0.318240pt;}
.ls7b_c00463{letter-spacing:-0.274560pt;}
.ls68_c00463{letter-spacing:-0.253653pt;}
.ls82_c00463{letter-spacing:-0.249600pt;}
.ls47_c00463{letter-spacing:-0.218400pt;}
.ls3e_c00463{letter-spacing:-0.212160pt;}
.ls4c_c00463{letter-spacing:-0.204160pt;}
.ls3c_c00463{letter-spacing:-0.174720pt;}
.ls5c_c00463{letter-spacing:-0.173227pt;}
.ls52_c00463{letter-spacing:-0.156000pt;}
.ls66_c00463{letter-spacing:-0.137280pt;}
.ls44_c00463{letter-spacing:-0.129920pt;}
.ls7a_c00463{letter-spacing:-0.124800pt;}
.ls3d_c00463{letter-spacing:-0.099840pt;}
.ls6e_c00463{letter-spacing:-0.093600pt;}
.ls55_c00463{letter-spacing:-0.074880pt;}
.ls61_c00463{letter-spacing:-0.068053pt;}
.ls5a_c00463{letter-spacing:-0.062400pt;}
.ls4d_c00463{letter-spacing:-0.043307pt;}
.ls4e_c00463{letter-spacing:-0.024960pt;}
.ls4f_c00463{letter-spacing:0.000000pt;}
.lsa_c00463{letter-spacing:0.006240pt;}
.ls5e_c00463{letter-spacing:0.012373pt;}
.ls2c_c00463{letter-spacing:0.024960pt;}
.ls83_c00463{letter-spacing:0.037120pt;}
.ls8_c00463{letter-spacing:0.062400pt;}
.ls2a_c00463{letter-spacing:0.080427pt;}
.ls28_c00463{letter-spacing:0.092800pt;}
.ls1_c00463{letter-spacing:0.112320pt;}
.ls18_c00463{letter-spacing:0.118560pt;}
.ls14_c00463{letter-spacing:0.124800pt;}
.ls3_c00463{letter-spacing:0.156000pt;}
.ls27_c00463{letter-spacing:0.167040pt;}
.ls15_c00463{letter-spacing:0.174720pt;}
.ls1a_c00463{letter-spacing:0.180960pt;}
.ls38_c00463{letter-spacing:0.191787pt;}
.ls2b_c00463{letter-spacing:0.193440pt;}
.ls4_c00463{letter-spacing:0.212160pt;}
.ls19_c00463{letter-spacing:0.218400pt;}
.ls6b_c00463{letter-spacing:0.222720pt;}
.ls37_c00463{letter-spacing:0.228907pt;}
.ls3f_c00463{letter-spacing:0.230880pt;}
.ls6_c00463{letter-spacing:0.253653pt;}
.ls36_c00463{letter-spacing:0.262080pt;}
.ls12_c00463{letter-spacing:0.272213pt;}
.ls10_c00463{letter-spacing:0.299520pt;}
.ls32_c00463{letter-spacing:0.305760pt;}
.ls80_c00463{letter-spacing:0.324480pt;}
.ls7_c00463{letter-spacing:0.330720pt;}
.ls22_c00463{letter-spacing:0.334080pt;}
.lsc_c00463{letter-spacing:0.343200pt;}
.ls1b_c00463{letter-spacing:0.349440pt;}
.ls1d_c00463{letter-spacing:0.368160pt;}
.ls21_c00463{letter-spacing:0.383573pt;}
.ls1f_c00463{letter-spacing:0.389760pt;}
.ls1c_c00463{letter-spacing:0.405600pt;}
.ls35_c00463{letter-spacing:0.411840pt;}
.ls11_c00463{letter-spacing:0.430560pt;}
.ls0_c00463{letter-spacing:0.436800pt;}
.ls13_c00463{letter-spacing:0.443040pt;}
.ls30_c00463{letter-spacing:0.449280pt;}
.lsf_c00463{letter-spacing:0.492960pt;}
.ls2_c00463{letter-spacing:0.507307pt;}
.ls2f_c00463{letter-spacing:0.517920pt;}
.ls33_c00463{letter-spacing:0.524160pt;}
.lse_c00463{letter-spacing:0.549120pt;}
.ls2d_c00463{letter-spacing:0.567840pt;}
.ls31_c00463{letter-spacing:0.611520pt;}
.ls1e_c00463{letter-spacing:0.617760pt;}
.ls26_c00463{letter-spacing:0.631040pt;}
.ls3a_c00463{letter-spacing:0.655200pt;}
.ls24_c00463{letter-spacing:0.661973pt;}
.ls49_c00463{letter-spacing:0.698880pt;}
.ls5_c00463{letter-spacing:0.773333pt;}
.ls16_c00463{letter-spacing:0.791893pt;}
.ls20_c00463{letter-spacing:0.798080pt;}
.ls2e_c00463{letter-spacing:0.817440pt;}
.ls9_c00463{letter-spacing:0.867360pt;}
.lsd_c00463{letter-spacing:0.886080pt;}
.ls34_c00463{letter-spacing:0.917280pt;}
.ls25_c00463{letter-spacing:0.965120pt;}
.ls45_c00463{letter-spacing:1.023360pt;}
.ls39_c00463{letter-spacing:1.092693pt;}
.ls23_c00463{letter-spacing:1.243520pt;}
.lsb_c00463{letter-spacing:1.297920pt;}
.ls29_c00463{letter-spacing:1.422933pt;}
.ls89_c00463{letter-spacing:1.587200pt;}
.ls17_c00463{letter-spacing:1.843627pt;}
.ls81_c00463{letter-spacing:3.120000pt;}
.ls59_c00463{letter-spacing:3.253333pt;}
.ws4_c00463{word-spacing:-16.266667pt;}
.ws0_c00463{word-spacing:-3.157440pt;}
.ws9_c00463{word-spacing:0.000000pt;}
.ws3_c00463{word-spacing:0.474240pt;}
.ws5_c00463{word-spacing:2.951520pt;}
.ws1_c00463{word-spacing:6.452160pt;}
.ws2_c00463{word-spacing:15.475200pt;}
.ws7_c00463{word-spacing:19.291253pt;}
.ws8_c00463{word-spacing:25.727520pt;}
.ws6_c00463{word-spacing:31.387200pt;}
._b_c00463{margin-left:-2.290080pt;}
._a_c00463{margin-left:-1.272907pt;}
._0_c00463{width:1.435200pt;}
._1_c00463{width:2.814827pt;}
._2_c00463{width:4.973280pt;}
._f_c00463{width:5.986827pt;}
._4_c00463{width:6.963840pt;}
._3_c00463{width:9.135360pt;}
._10_c00463{width:10.245227pt;}
._e_c00463{width:11.212373pt;}
._9_c00463{width:12.905067pt;}
._8_c00463{width:13.991787pt;}
._5_c00463{width:15.525120pt;}
._7_c00463{width:17.496960pt;}
._d_c00463{width:18.658987pt;}
._14_c00463{width:21.572907pt;}
._15_c00463{width:23.375947pt;}
._c_c00463{width:24.873867pt;}
._16_c00463{width:25.961280pt;}
._6_c00463{width:27.256320pt;}
._11_c00463{width:29.402880pt;}
._13_c00463{width:30.694560pt;}
._12_c00463{width:32.323200pt;}
._17_c00463{width:34.741387pt;}
.fs9_c00463{font-size:51.200000pt;}
.fs0_c00463{font-size:55.466667pt;}
.fs8_c00463{font-size:59.200000pt;}
.fs4_c00463{font-size:59.733333pt;}
.fs6_c00463{font-size:60.266667pt;}
.fs2_c00463{font-size:61.866667pt;}
.fs1_c00463{font-size:62.400000pt;}
.fs5_c00463{font-size:64.000000pt;}
.fs3_c00463{font-size:65.066667pt;}
.fs7_c00463{font-size:66.133333pt;}
.y0_c00463{bottom:0.000000pt;}
.y1f_c00463{bottom:70.413333pt;}
.y1e_c00463{bottom:205.773333pt;}
.y1d_c00463{bottom:233.613333pt;}
.y1c_c00463{bottom:233.614933pt;}
.y1b_c00463{bottom:261.133333pt;}
.y1a_c00463{bottom:316.493333pt;}
.y19_c00463{bottom:344.002667pt;}
.y18_c00463{bottom:371.533333pt;}
.y17_c00463{bottom:425.937200pt;}
.y16_c00463{bottom:453.440000pt;}
.y14_c00463{bottom:480.313333pt;}
.y15_c00463{bottom:480.320000pt;}
.y13_c00463{bottom:535.693333pt;}
.y12_c00463{bottom:535.700267pt;}
.y10_c00463{bottom:563.192933pt;}
.y11_c00463{bottom:563.200000pt;}
.yf_c00463{bottom:617.933333pt;}
.ye_c00463{bottom:645.440000pt;}
.yd_c00463{bottom:669.440000pt;}
.yc_c00463{bottom:672.653333pt;}
.yb_c00463{bottom:727.693333pt;}
.ya_c00463{bottom:727.698800pt;}
.y8_c00463{bottom:782.718933pt;}
.y9_c00463{bottom:782.720000pt;}
.y7_c00463{bottom:809.611200pt;}
.y6_c00463{bottom:864.960000pt;}
.y4_c00463{bottom:892.169733pt;}
.y5_c00463{bottom:892.173333pt;}
.y3_c00463{bottom:947.206533pt;}
.y2_c00463{bottom:973.773333pt;}
.y1_c00463{bottom:1070.093333pt;}
.he_c00463{height:50.250000pt;}
.h2_c00463{height:54.437500pt;}
.h9_c00463{height:60.688542pt;}
.hc_c00463{height:60.718750pt;}
.h3_c00463{height:61.242187pt;}
.h5_c00463{height:61.246454pt;}
.h4_c00463{height:61.250721pt;}
.hd_c00463{height:61.743750pt;}
.h8_c00463{height:62.781250pt;}
.ha_c00463{height:62.856250pt;}
.hb_c00463{height:64.873958pt;}
.h6_c00463{height:65.575000pt;}
.h7_c00463{height:75.153333pt;}
.h1_c00463{height:1122.666667pt;}
.h0_c00463{height:1122.880000pt;}
.w1_c00463{width:793.333333pt;}
.w0_c00463{width:793.600000pt;}
.x0_c00463{left:0.000000pt;}
.x2b_c00463{left:105.706133pt;}
.x1a_c00463{left:106.668267pt;}
.xc_c00463{left:107.746667pt;}
.x7_c00463{left:108.722933pt;}
.x5_c00463{left:109.695333pt;}
.x2_c00463{left:110.653333pt;}
.x1_c00463{left:112.253333pt;}
.xa_c00463{left:179.746667pt;}
.x3_c00463{left:182.320000pt;}
.x1d_c00463{left:186.146667pt;}
.xb_c00463{left:198.173333pt;}
.x19_c00463{left:199.133333pt;}
.x4_c00463{left:200.413333pt;}
.x6_c00463{left:203.293333pt;}
.x28_c00463{left:204.960000pt;}
.x1e_c00463{left:212.573333pt;}
.x1b_c00463{left:214.546667pt;}
.x1c_c00463{left:230.493333pt;}
.xd_c00463{left:244.626667pt;}
.x27_c00463{left:252.893333pt;}
.xe_c00463{left:268.720000pt;}
.xf_c00463{left:311.506667pt;}
.x1f_c00463{left:355.040000pt;}
.x10_c00463{left:372.640000pt;}
.x2c_c00463{left:376.173333pt;}
.x20_c00463{left:389.666667pt;}
.x11_c00463{left:393.413333pt;}
.x12_c00463{left:411.666667pt;}
.x21_c00463{left:422.213333pt;}
.x22_c00463{left:439.813333pt;}
.x23_c00463{left:472.413333pt;}
.x24_c00463{left:494.506667pt;}
.x13_c00463{left:508.453333pt;}
.x25_c00463{left:521.986667pt;}
.x8_c00463{left:530.986667pt;}
.x26_c00463{left:534.320000pt;}
.x14_c00463{left:541.893333pt;}
.x17_c00463{left:545.760000pt;}
.x9_c00463{left:549.626667pt;}
.x29_c00463{left:584.200000pt;}
.x18_c00463{left:586.373333pt;}
.x15_c00463{left:590.546667pt;}
.x2a_c00463{left:601.706667pt;}
.x16_c00463{left:654.560000pt;}
}





/* 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_c00464 {
    display:none;
  }
  .loading-indicator_c00464.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00464 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_c00464 { 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_c00464" -> "#page-container .classname_c00464")
 */
.pf_c00464 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00464 { /* 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_c00464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00464 { /* 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_c00464 { /* 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_c00464 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00464 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00464 {overflow:visible;}
  }
}
.c_c00464 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00464 { /* 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_c00464:after { /* webkit #35443 */
  content: '';
}
.t_c00464:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00464 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 */
}
.__c00464 { /* 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_c00464 { /* info for Javascript */
  display:none;
}
.l_c00464 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00464 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00464 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00464: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_c00464 {
    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_c00464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00464.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_c00464 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00464{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00464;src:url('chunks/assets/font_47947b01dc372f6c2a97ef9b.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.284668;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_c00464;src:url('chunks/assets/font_3de365f6bcfd1be421514279.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.284180;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_c00464;src:url('chunks/assets/font_1c319f4ac1b2bfe90caaf59c.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;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:ff4_c00464;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;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:ff5_c00464;src:url('chunks/assets/font_82068a73e4f5a38bbb76ac89.woff2')format("woff");}.ff5_c00464{font-family:ff5_c00464;line-height:0.666000;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;}
.m6_c00464{transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);}
.m10_c00464{transform:matrix(0.237910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237910,0.000000,0.000000,0.250000,0,0);}
.m7_c00464{transform:matrix(0.243039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243039,0.000000,0.000000,0.250000,0,0);}
.m2_c00464{transform:matrix(0.243152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243152,0.000000,0.000000,0.250000,0,0);}
.m4_c00464{transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);}
.mf_c00464{transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);}
.m0_c00464{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_c00464{transform:matrix(0.274568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274568,0.000000,0.000000,0.250000,0,0);}
.m5_c00464{transform:matrix(0.275123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275123,0.000000,0.000000,0.250000,0,0);}
.m3_c00464{transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);}
.mb_c00464{transform:matrix(0.503452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503452,0.000000,0.000000,0.250000,0,0);}
.me_c00464{transform:matrix(0.613095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613095,0.000000,0.000000,0.250000,0,0);}
.md_c00464{transform:matrix(0.643298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643298,0.000000,0.000000,0.250000,0,0);}
.ma_c00464{transform:matrix(0.774202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774202,0.000000,0.000000,0.250000,0,0);}
.m9_c00464{transform:matrix(1.137290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.137290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.137290,0.000000,0.000000,0.250000,0,0);}
.m8_c00464{transform:matrix(1.629556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.629556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.629556,0.000000,0.000000,0.250000,0,0);}
.mc_c00464{transform:matrix(4.352411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.352411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.352411,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls66_c00464{letter-spacing:-2.583000px;}
.ls5e_c00464{letter-spacing:-2.457000px;}
.ls81_c00464{letter-spacing:-2.394000px;}
.ls97_c00464{letter-spacing:-2.205000px;}
.ls88_c00464{letter-spacing:-2.084940px;}
.ls57_c00464{letter-spacing:-2.058840px;}
.ls5f_c00464{letter-spacing:-1.909440px;}
.ls4c_c00464{letter-spacing:-1.902420px;}
.ls52_c00464{letter-spacing:-1.895400px;}
.ls6f_c00464{letter-spacing:-1.663740px;}
.ls54_c00464{letter-spacing:-1.621620px;}
.ls78_c00464{letter-spacing:-1.450080px;}
.ls8a_c00464{letter-spacing:-1.429560px;}
.ls7d_c00464{letter-spacing:-1.368000px;}
.ls69_c00464{letter-spacing:-1.265400px;}
.ls7c_c00464{letter-spacing:-1.200420px;}
.ls86_c00464{letter-spacing:-1.151280px;}
.ls83_c00464{letter-spacing:-1.094400px;}
.ls62_c00464{letter-spacing:-1.073880px;}
.ls53_c00464{letter-spacing:-1.060020px;}
.ls50_c00464{letter-spacing:-0.982800px;}
.ls6e_c00464{letter-spacing:-0.926640px;}
.ls60_c00464{letter-spacing:-0.905580px;}
.ls5d_c00464{letter-spacing:-0.896040px;}
.ls87_c00464{letter-spacing:-0.849420px;}
.ls89_c00464{letter-spacing:-0.807300px;}
.ls72_c00464{letter-spacing:-0.807120px;}
.ls7a_c00464{letter-spacing:-0.697680px;}
.ls7b_c00464{letter-spacing:-0.684000px;}
.ls7e_c00464{letter-spacing:-0.663480px;}
.ls49_c00464{letter-spacing:-0.656640px;}
.ls79_c00464{letter-spacing:-0.636120px;}
.ls63_c00464{letter-spacing:-0.629280px;}
.ls73_c00464{letter-spacing:-0.615600px;}
.ls80_c00464{letter-spacing:-0.610740px;}
.ls70_c00464{letter-spacing:-0.568620px;}
.ls56_c00464{letter-spacing:-0.526680px;}
.ls92_c00464{letter-spacing:-0.499320px;}
.ls93_c00464{letter-spacing:-0.435240px;}
.ls8e_c00464{letter-spacing:-0.421200px;}
.ls71_c00464{letter-spacing:-0.403560px;}
.ls6d_c00464{letter-spacing:-0.379080px;}
.ls84_c00464{letter-spacing:-0.376200px;}
.ls77_c00464{letter-spacing:-0.372060px;}
.ls82_c00464{letter-spacing:-0.369360px;}
.ls4e_c00464{letter-spacing:-0.358020px;}
.ls6c_c00464{letter-spacing:-0.328320px;}
.ls61_c00464{letter-spacing:-0.315900px;}
.ls4d_c00464{letter-spacing:-0.280800px;}
.ls85_c00464{letter-spacing:-0.238680px;}
.ls51_c00464{letter-spacing:-0.231660px;}
.ls94_c00464{letter-spacing:-0.217620px;}
.ls76_c00464{letter-spacing:-0.205200px;}
.ls68_c00464{letter-spacing:-0.189540px;}
.ls8c_c00464{letter-spacing:-0.171000px;}
.ls4b_c00464{letter-spacing:-0.154440px;}
.ls8b_c00464{letter-spacing:-0.150480px;}
.ls6b_c00464{letter-spacing:-0.109440px;}
.ls91_c00464{letter-spacing:-0.098280px;}
.ls4a_c00464{letter-spacing:-0.088920px;}
.ls6a_c00464{letter-spacing:-0.082080px;}
.ls4f_c00464{letter-spacing:-0.070200px;}
.ls74_c00464{letter-spacing:-0.068400px;}
.ls67_c00464{letter-spacing:-0.020520px;}
.ls7f_c00464{letter-spacing:-0.013680px;}
.ls59_c00464{letter-spacing:0.000000px;}
.ls95_c00464{letter-spacing:0.007020px;}
.ls41_c00464{letter-spacing:0.013680px;}
.ls2c_c00464{letter-spacing:0.020520px;}
.ls43_c00464{letter-spacing:0.027360px;}
.ls3_c00464{letter-spacing:0.035100px;}
.ls58_c00464{letter-spacing:0.041040px;}
.ls4_c00464{letter-spacing:0.049140px;}
.ls55_c00464{letter-spacing:0.061560px;}
.ls1d_c00464{letter-spacing:0.098280px;}
.ls64_c00464{letter-spacing:0.116280px;}
.ls5_c00464{letter-spacing:0.150480px;}
.ls32_c00464{letter-spacing:0.157320px;}
.ls75_c00464{letter-spacing:0.164160px;}
.ls35_c00464{letter-spacing:0.177840px;}
.ls20_c00464{letter-spacing:0.189540px;}
.lsf_c00464{letter-spacing:0.198360px;}
.ls14_c00464{letter-spacing:0.212040px;}
.lsa_c00464{letter-spacing:0.232560px;}
.ls46_c00464{letter-spacing:0.246240px;}
.ls8d_c00464{letter-spacing:0.253080px;}
.ls2b_c00464{letter-spacing:0.307800px;}
.ls28_c00464{letter-spacing:0.314640px;}
.ls23_c00464{letter-spacing:0.321480px;}
.ls1_c00464{letter-spacing:0.322920px;}
.lse_c00464{letter-spacing:0.335160px;}
.ls8_c00464{letter-spacing:0.342000px;}
.ls18_c00464{letter-spacing:0.362520px;}
.ls21_c00464{letter-spacing:0.376200px;}
.ls3b_c00464{letter-spacing:0.403560px;}
.ls3f_c00464{letter-spacing:0.410400px;}
.ls16_c00464{letter-spacing:0.437760px;}
.ls34_c00464{letter-spacing:0.451440px;}
.ls1c_c00464{letter-spacing:0.492480px;}
.ls2f_c00464{letter-spacing:0.498420px;}
.ls47_c00464{letter-spacing:0.499320px;}
.ls2e_c00464{letter-spacing:0.519840px;}
.ls96_c00464{letter-spacing:0.526680px;}
.ls2a_c00464{letter-spacing:0.554040px;}
.ls25_c00464{letter-spacing:0.560880px;}
.ls33_c00464{letter-spacing:0.603720px;}
.ls19_c00464{letter-spacing:0.608760px;}
.ls40_c00464{letter-spacing:0.622440px;}
.ls38_c00464{letter-spacing:0.629280px;}
.lsc_c00464{letter-spacing:0.649800px;}
.ls27_c00464{letter-spacing:0.677160px;}
.ls3c_c00464{letter-spacing:0.697680px;}
.ls15_c00464{letter-spacing:0.704520px;}
.ls2_c00464{letter-spacing:0.709020px;}
.ls1a_c00464{letter-spacing:0.725040px;}
.ls11_c00464{letter-spacing:0.731880px;}
.ls42_c00464{letter-spacing:0.759240px;}
.ls13_c00464{letter-spacing:0.807120px;}
.ls37_c00464{letter-spacing:0.813960px;}
.ls12_c00464{letter-spacing:0.820800px;}
.ls10_c00464{letter-spacing:0.834480px;}
.ls5a_c00464{letter-spacing:0.889200px;}
.lsb_c00464{letter-spacing:0.902880px;}
.ls90_c00464{letter-spacing:0.930000px;}
.ls44_c00464{letter-spacing:0.930240px;}
.lsd_c00464{letter-spacing:0.971280px;}
.ls65_c00464{letter-spacing:1.026000px;}
.ls31_c00464{letter-spacing:1.073880px;}
.ls39_c00464{letter-spacing:1.087560px;}
.ls5c_c00464{letter-spacing:1.162800px;}
.ls30_c00464{letter-spacing:1.251720px;}
.ls8f_c00464{letter-spacing:1.298700px;}
.ls9_c00464{letter-spacing:1.299600px;}
.ls3a_c00464{letter-spacing:1.306440px;}
.ls7_c00464{letter-spacing:1.347480px;}
.ls48_c00464{letter-spacing:1.360320px;}
.ls24_c00464{letter-spacing:1.368000px;}
.ls26_c00464{letter-spacing:1.429560px;}
.ls1f_c00464{letter-spacing:1.488240px;}
.ls29_c00464{letter-spacing:1.634760px;}
.ls6_c00464{letter-spacing:1.641600px;}
.ls45_c00464{letter-spacing:1.648440px;}
.ls0_c00464{letter-spacing:1.689480px;}
.ls22_c00464{letter-spacing:1.764720px;}
.ls1e_c00464{letter-spacing:1.819440px;}
.ls1b_c00464{letter-spacing:1.881000px;}
.ls3d_c00464{letter-spacing:1.887840px;}
.ls2d_c00464{letter-spacing:1.949400px;}
.ls3e_c00464{letter-spacing:1.997280px;}
.ls36_c00464{letter-spacing:2.052000px;}
.ls17_c00464{letter-spacing:3.064320px;}
.ls5b_c00464{letter-spacing:3.420000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{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__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00464{word-spacing:-1.525320px;}
.ws6_c00464{word-spacing:-1.394760px;}
.ws3_c00464{word-spacing:-0.585720px;}
.wsa_c00464{word-spacing:0.000000px;}
.ws8_c00464{word-spacing:10.540440px;}
.ws1_c00464{word-spacing:11.402280px;}
.ws9_c00464{word-spacing:15.643080px;}
.ws2_c00464{word-spacing:16.190280px;}
.ws4_c00464{word-spacing:33.317640px;}
.ws7_c00464{word-spacing:34.179480px;}
.ws0_c00464{word-spacing:47.500440px;}
._1a_c00464{margin-left:-3.549960px;}
._b_c00464{margin-left:-1.918800px;}
._10_c00464{width:1.589160px;}
._c_c00464{width:3.358440px;}
._e_c00464{width:4.815360px;}
._d_c00464{width:5.851800px;}
._6_c00464{width:6.977880px;}
._1b_c00464{width:8.605800px;}
._7_c00464{width:9.722700px;}
._5_c00464{width:11.793600px;}
._f_c00464{width:13.663440px;}
._a_c00464{width:15.063120px;}
._15_c00464{width:16.449120px;}
._8_c00464{width:17.458740px;}
._9_c00464{width:19.094400px;}
._20_c00464{width:20.155740px;}
._1f_c00464{width:21.764520px;}
._18_c00464{width:22.934400px;}
._16_c00464{width:25.146720px;}
._14_c00464{width:28.467120px;}
._12_c00464{width:29.822400px;}
._11_c00464{width:31.478160px;}
._13_c00464{width:33.420240px;}
._17_c00464{width:35.136600px;}
._1c_c00464{width:37.360080px;}
._1d_c00464{width:39.877200px;}
._1e_c00464{width:40.985160px;}
._19_c00464{width:43.062240px;}
._0_c00464{width:49.056480px;}
._2_c00464{width:52.734240px;}
._4_c00464{width:55.387800px;}
._3_c00464{width:56.539080px;}
._1_c00464{width:60.725520px;}
.fc0_c00464{color:transparent;}
.fs7_c00464{font-size:10.080000px;}
.fs5_c00464{font-size:18.600000px;}
.fs6_c00464{font-size:21.000600px;}
.fs0_c00464{font-size:62.400000px;}
.fs8_c00464{font-size:63.000000px;}
.fs4_c00464{font-size:66.600000px;}
.fs1_c00464{font-size:68.400000px;}
.fs2_c00464{font-size:70.200000px;}
.fs3_c00464{font-size:73.800000px;}
.y0_c00464{bottom:0.000000px;}
.y1e_c00464{bottom:67.335006px;}
.y1d_c00464{bottom:159.840006px;}
.y1c_c00464{bottom:190.080006px;}
.y1b_c00464{bottom:218.880006px;}
.y1a_c00464{bottom:221.415006px;}
.y19_c00464{bottom:282.623106px;}
.y18_c00464{bottom:313.215006px;}
.y17_c00464{bottom:374.048106px;}
.y16_c00464{bottom:404.640006px;}
.y15_c00464{bottom:435.975006px;}
.y13_c00464{bottom:497.877906px;}
.y14_c00464{bottom:497.880006px;}
.y12_c00464{bottom:559.455006px;}
.y11_c00464{bottom:621.015006px;}
.y10_c00464{bottom:651.615006px;}
.ye_c00464{bottom:713.166906px;}
.yf_c00464{bottom:713.175006px;}
.yd_c00464{bottom:744.129006px;}
.yc_c00464{bottom:805.312806px;}
.yb_c00464{bottom:836.640006px;}
.ya_c00464{bottom:836.646906px;}
.y9_c00464{bottom:867.615006px;}
.y8_c00464{bottom:928.807806px;}
.y7_c00464{bottom:959.415006px;}
.y5_c00464{bottom:989.639106px;}
.y6_c00464{bottom:989.640006px;}
.y4_c00464{bottom:1050.840006px;}
.y3_c00464{bottom:1082.167806px;}
.y2_c00464{bottom:1112.775006px;}
.y1_c00464{bottom:1188.360006px;}
.he_c00464{height:6.713280px;}
.hc_c00464{height:18.254883px;}
.hd_c00464{height:21.902970px;}
.h2_c00464{height:61.242188px;}
.hf_c00464{height:61.831055px;}
.hb_c00464{height:65.364258px;}
.h4_c00464{height:67.130859px;}
.h5_c00464{height:67.134459px;}
.ha_c00464{height:68.830784px;}
.h3_c00464{height:68.863184px;}
.h9_c00464{height:68.871584px;}
.h8_c00464{height:68.887184px;}
.h6_c00464{height:71.339063px;}
.h7_c00464{height:72.430664px;}
.h1_c00464{height:1263.000000px;}
.h0_c00464{height:1263.240006px;}
.w1_c00464{width:892.500000px;}
.w0_c00464{width:892.799998px;}
.x0_c00464{left:0.000000px;}
.x17_c00464{left:120.734999px;}
.xd_c00464{left:121.964698px;}
.x1_c00464{left:123.044999px;}
.xa_c00464{left:153.689998px;}
.x11_c00464{left:186.944998px;}
.xb_c00464{left:188.549998px;}
.xf_c00464{left:255.209999px;}
.x10_c00464{left:281.279998px;}
.x12_c00464{left:285.374999px;}
.x13_c00464{left:299.984998px;}
.x8_c00464{left:314.849999px;}
.x9_c00464{left:334.754999px;}
.x18_c00464{left:340.004999px;}
.x19_c00464{left:357.644999px;}
.x1a_c00464{left:422.819999px;}
.x2_c00464{left:657.179999px;}
.x14_c00464{left:669.464998px;}
.xe_c00464{left:674.399999px;}
.x3_c00464{left:678.914999px;}
.x4_c00464{left:682.004999px;}
.x15_c00464{left:688.994999px;}
.x6_c00464{left:703.979999px;}
.x16_c00464{left:706.334998px;}
.x5_c00464{left:717.614998px;}
.x7_c00464{left:726.434999px;}
.xc_c00464{left:733.139998px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls66_c00464{letter-spacing:-2.296000pt;}
.ls5e_c00464{letter-spacing:-2.184000pt;}
.ls81_c00464{letter-spacing:-2.128000pt;}
.ls97_c00464{letter-spacing:-1.960000pt;}
.ls88_c00464{letter-spacing:-1.853280pt;}
.ls57_c00464{letter-spacing:-1.830080pt;}
.ls5f_c00464{letter-spacing:-1.697280pt;}
.ls4c_c00464{letter-spacing:-1.691040pt;}
.ls52_c00464{letter-spacing:-1.684800pt;}
.ls6f_c00464{letter-spacing:-1.478880pt;}
.ls54_c00464{letter-spacing:-1.441440pt;}
.ls78_c00464{letter-spacing:-1.288960pt;}
.ls8a_c00464{letter-spacing:-1.270720pt;}
.ls7d_c00464{letter-spacing:-1.216000pt;}
.ls69_c00464{letter-spacing:-1.124800pt;}
.ls7c_c00464{letter-spacing:-1.067040pt;}
.ls86_c00464{letter-spacing:-1.023360pt;}
.ls83_c00464{letter-spacing:-0.972800pt;}
.ls62_c00464{letter-spacing:-0.954560pt;}
.ls53_c00464{letter-spacing:-0.942240pt;}
.ls50_c00464{letter-spacing:-0.873600pt;}
.ls6e_c00464{letter-spacing:-0.823680pt;}
.ls60_c00464{letter-spacing:-0.804960pt;}
.ls5d_c00464{letter-spacing:-0.796480pt;}
.ls87_c00464{letter-spacing:-0.755040pt;}
.ls89_c00464{letter-spacing:-0.717600pt;}
.ls72_c00464{letter-spacing:-0.717440pt;}
.ls7a_c00464{letter-spacing:-0.620160pt;}
.ls7b_c00464{letter-spacing:-0.608000pt;}
.ls7e_c00464{letter-spacing:-0.589760pt;}
.ls49_c00464{letter-spacing:-0.583680pt;}
.ls79_c00464{letter-spacing:-0.565440pt;}
.ls63_c00464{letter-spacing:-0.559360pt;}
.ls73_c00464{letter-spacing:-0.547200pt;}
.ls80_c00464{letter-spacing:-0.542880pt;}
.ls70_c00464{letter-spacing:-0.505440pt;}
.ls56_c00464{letter-spacing:-0.468160pt;}
.ls92_c00464{letter-spacing:-0.443840pt;}
.ls93_c00464{letter-spacing:-0.386880pt;}
.ls8e_c00464{letter-spacing:-0.374400pt;}
.ls71_c00464{letter-spacing:-0.358720pt;}
.ls6d_c00464{letter-spacing:-0.336960pt;}
.ls84_c00464{letter-spacing:-0.334400pt;}
.ls77_c00464{letter-spacing:-0.330720pt;}
.ls82_c00464{letter-spacing:-0.328320pt;}
.ls4e_c00464{letter-spacing:-0.318240pt;}
.ls6c_c00464{letter-spacing:-0.291840pt;}
.ls61_c00464{letter-spacing:-0.280800pt;}
.ls4d_c00464{letter-spacing:-0.249600pt;}
.ls85_c00464{letter-spacing:-0.212160pt;}
.ls51_c00464{letter-spacing:-0.205920pt;}
.ls94_c00464{letter-spacing:-0.193440pt;}
.ls76_c00464{letter-spacing:-0.182400pt;}
.ls68_c00464{letter-spacing:-0.168480pt;}
.ls8c_c00464{letter-spacing:-0.152000pt;}
.ls4b_c00464{letter-spacing:-0.137280pt;}
.ls8b_c00464{letter-spacing:-0.133760pt;}
.ls6b_c00464{letter-spacing:-0.097280pt;}
.ls91_c00464{letter-spacing:-0.087360pt;}
.ls4a_c00464{letter-spacing:-0.079040pt;}
.ls6a_c00464{letter-spacing:-0.072960pt;}
.ls4f_c00464{letter-spacing:-0.062400pt;}
.ls74_c00464{letter-spacing:-0.060800pt;}
.ls67_c00464{letter-spacing:-0.018240pt;}
.ls7f_c00464{letter-spacing:-0.012160pt;}
.ls59_c00464{letter-spacing:0.000000pt;}
.ls95_c00464{letter-spacing:0.006240pt;}
.ls41_c00464{letter-spacing:0.012160pt;}
.ls2c_c00464{letter-spacing:0.018240pt;}
.ls43_c00464{letter-spacing:0.024320pt;}
.ls3_c00464{letter-spacing:0.031200pt;}
.ls58_c00464{letter-spacing:0.036480pt;}
.ls4_c00464{letter-spacing:0.043680pt;}
.ls55_c00464{letter-spacing:0.054720pt;}
.ls1d_c00464{letter-spacing:0.087360pt;}
.ls64_c00464{letter-spacing:0.103360pt;}
.ls5_c00464{letter-spacing:0.133760pt;}
.ls32_c00464{letter-spacing:0.139840pt;}
.ls75_c00464{letter-spacing:0.145920pt;}
.ls35_c00464{letter-spacing:0.158080pt;}
.ls20_c00464{letter-spacing:0.168480pt;}
.lsf_c00464{letter-spacing:0.176320pt;}
.ls14_c00464{letter-spacing:0.188480pt;}
.lsa_c00464{letter-spacing:0.206720pt;}
.ls46_c00464{letter-spacing:0.218880pt;}
.ls8d_c00464{letter-spacing:0.224960pt;}
.ls2b_c00464{letter-spacing:0.273600pt;}
.ls28_c00464{letter-spacing:0.279680pt;}
.ls23_c00464{letter-spacing:0.285760pt;}
.ls1_c00464{letter-spacing:0.287040pt;}
.lse_c00464{letter-spacing:0.297920pt;}
.ls8_c00464{letter-spacing:0.304000pt;}
.ls18_c00464{letter-spacing:0.322240pt;}
.ls21_c00464{letter-spacing:0.334400pt;}
.ls3b_c00464{letter-spacing:0.358720pt;}
.ls3f_c00464{letter-spacing:0.364800pt;}
.ls16_c00464{letter-spacing:0.389120pt;}
.ls34_c00464{letter-spacing:0.401280pt;}
.ls1c_c00464{letter-spacing:0.437760pt;}
.ls2f_c00464{letter-spacing:0.443040pt;}
.ls47_c00464{letter-spacing:0.443840pt;}
.ls2e_c00464{letter-spacing:0.462080pt;}
.ls96_c00464{letter-spacing:0.468160pt;}
.ls2a_c00464{letter-spacing:0.492480pt;}
.ls25_c00464{letter-spacing:0.498560pt;}
.ls33_c00464{letter-spacing:0.536640pt;}
.ls19_c00464{letter-spacing:0.541120pt;}
.ls40_c00464{letter-spacing:0.553280pt;}
.ls38_c00464{letter-spacing:0.559360pt;}
.lsc_c00464{letter-spacing:0.577600pt;}
.ls27_c00464{letter-spacing:0.601920pt;}
.ls3c_c00464{letter-spacing:0.620160pt;}
.ls15_c00464{letter-spacing:0.626240pt;}
.ls2_c00464{letter-spacing:0.630240pt;}
.ls1a_c00464{letter-spacing:0.644480pt;}
.ls11_c00464{letter-spacing:0.650560pt;}
.ls42_c00464{letter-spacing:0.674880pt;}
.ls13_c00464{letter-spacing:0.717440pt;}
.ls37_c00464{letter-spacing:0.723520pt;}
.ls12_c00464{letter-spacing:0.729600pt;}
.ls10_c00464{letter-spacing:0.741760pt;}
.ls5a_c00464{letter-spacing:0.790400pt;}
.lsb_c00464{letter-spacing:0.802560pt;}
.ls90_c00464{letter-spacing:0.826667pt;}
.ls44_c00464{letter-spacing:0.826880pt;}
.lsd_c00464{letter-spacing:0.863360pt;}
.ls65_c00464{letter-spacing:0.912000pt;}
.ls31_c00464{letter-spacing:0.954560pt;}
.ls39_c00464{letter-spacing:0.966720pt;}
.ls5c_c00464{letter-spacing:1.033600pt;}
.ls30_c00464{letter-spacing:1.112640pt;}
.ls8f_c00464{letter-spacing:1.154400pt;}
.ls9_c00464{letter-spacing:1.155200pt;}
.ls3a_c00464{letter-spacing:1.161280pt;}
.ls7_c00464{letter-spacing:1.197760pt;}
.ls48_c00464{letter-spacing:1.209173pt;}
.ls24_c00464{letter-spacing:1.216000pt;}
.ls26_c00464{letter-spacing:1.270720pt;}
.ls1f_c00464{letter-spacing:1.322880pt;}
.ls29_c00464{letter-spacing:1.453120pt;}
.ls6_c00464{letter-spacing:1.459200pt;}
.ls45_c00464{letter-spacing:1.465280pt;}
.ls0_c00464{letter-spacing:1.501760pt;}
.ls22_c00464{letter-spacing:1.568640pt;}
.ls1e_c00464{letter-spacing:1.617280pt;}
.ls1b_c00464{letter-spacing:1.672000pt;}
.ls3d_c00464{letter-spacing:1.678080pt;}
.ls2d_c00464{letter-spacing:1.732800pt;}
.ls3e_c00464{letter-spacing:1.775360pt;}
.ls36_c00464{letter-spacing:1.824000pt;}
.ls17_c00464{letter-spacing:2.723840pt;}
.ls5b_c00464{letter-spacing:3.040000pt;}
.ws5_c00464{word-spacing:-1.355840pt;}
.ws6_c00464{word-spacing:-1.239787pt;}
.ws3_c00464{word-spacing:-0.520640pt;}
.wsa_c00464{word-spacing:0.000000pt;}
.ws8_c00464{word-spacing:9.369280pt;}
.ws1_c00464{word-spacing:10.135360pt;}
.ws9_c00464{word-spacing:13.904960pt;}
.ws2_c00464{word-spacing:14.391360pt;}
.ws4_c00464{word-spacing:29.615680pt;}
.ws7_c00464{word-spacing:30.381760pt;}
.ws0_c00464{word-spacing:42.222613pt;}
._1a_c00464{margin-left:-3.155520pt;}
._b_c00464{margin-left:-1.705600pt;}
._10_c00464{width:1.412587pt;}
._c_c00464{width:2.985280pt;}
._e_c00464{width:4.280320pt;}
._d_c00464{width:5.201600pt;}
._6_c00464{width:6.202560pt;}
._1b_c00464{width:7.649600pt;}
._7_c00464{width:8.642400pt;}
._5_c00464{width:10.483200pt;}
._f_c00464{width:12.145280pt;}
._a_c00464{width:13.389440pt;}
._15_c00464{width:14.621440pt;}
._8_c00464{width:15.518880pt;}
._9_c00464{width:16.972800pt;}
._20_c00464{width:17.916213pt;}
._1f_c00464{width:19.346240pt;}
._18_c00464{width:20.386133pt;}
._16_c00464{width:22.352640pt;}
._14_c00464{width:25.304107pt;}
._12_c00464{width:26.508800pt;}
._11_c00464{width:27.980587pt;}
._13_c00464{width:29.706880pt;}
._17_c00464{width:31.232533pt;}
._1c_c00464{width:33.208960pt;}
._1d_c00464{width:35.446400pt;}
._1e_c00464{width:36.431253pt;}
._19_c00464{width:38.277547pt;}
._0_c00464{width:43.605760pt;}
._2_c00464{width:46.874880pt;}
._4_c00464{width:49.233600pt;}
._3_c00464{width:50.256960pt;}
._1_c00464{width:53.978240pt;}
.fs7_c00464{font-size:8.960000pt;}
.fs5_c00464{font-size:16.533333pt;}
.fs6_c00464{font-size:18.667200pt;}
.fs0_c00464{font-size:55.466667pt;}
.fs8_c00464{font-size:56.000000pt;}
.fs4_c00464{font-size:59.200000pt;}
.fs1_c00464{font-size:60.800000pt;}
.fs2_c00464{font-size:62.400000pt;}
.fs3_c00464{font-size:65.600000pt;}
.y0_c00464{bottom:0.000000pt;}
.y1e_c00464{bottom:59.853339pt;}
.y1d_c00464{bottom:142.080005pt;}
.y1c_c00464{bottom:168.960005pt;}
.y1b_c00464{bottom:194.560005pt;}
.y1a_c00464{bottom:196.813339pt;}
.y19_c00464{bottom:251.220539pt;}
.y18_c00464{bottom:278.413339pt;}
.y17_c00464{bottom:332.487205pt;}
.y16_c00464{bottom:359.680005pt;}
.y15_c00464{bottom:387.533339pt;}
.y13_c00464{bottom:442.558139pt;}
.y14_c00464{bottom:442.560005pt;}
.y12_c00464{bottom:497.293339pt;}
.y11_c00464{bottom:552.013339pt;}
.y10_c00464{bottom:579.213339pt;}
.ye_c00464{bottom:633.926139pt;}
.yf_c00464{bottom:633.933339pt;}
.yd_c00464{bottom:661.448005pt;}
.yc_c00464{bottom:715.833605pt;}
.yb_c00464{bottom:743.680005pt;}
.ya_c00464{bottom:743.686139pt;}
.y9_c00464{bottom:771.213339pt;}
.y8_c00464{bottom:825.606939pt;}
.y7_c00464{bottom:852.813339pt;}
.y5_c00464{bottom:879.679205pt;}
.y6_c00464{bottom:879.680005pt;}
.y4_c00464{bottom:934.080005pt;}
.y3_c00464{bottom:961.926939pt;}
.y2_c00464{bottom:989.133339pt;}
.y1_c00464{bottom:1056.320005pt;}
.he_c00464{height:5.967360pt;}
.hc_c00464{height:16.226562pt;}
.hd_c00464{height:19.469306pt;}
.h2_c00464{height:54.437500pt;}
.hf_c00464{height:54.960938pt;}
.hb_c00464{height:58.101562pt;}
.h4_c00464{height:59.671875pt;}
.h5_c00464{height:59.675075pt;}
.ha_c00464{height:61.182919pt;}
.h3_c00464{height:61.211719pt;}
.h9_c00464{height:61.219185pt;}
.h8_c00464{height:61.233052pt;}
.h6_c00464{height:63.412500pt;}
.h7_c00464{height:64.382813pt;}
.h1_c00464{height:1122.666667pt;}
.h0_c00464{height:1122.880005pt;}
.w1_c00464{width:793.333333pt;}
.w0_c00464{width:793.599999pt;}
.x0_c00464{left:0.000000pt;}
.x17_c00464{left:107.319999pt;}
.xd_c00464{left:108.413065pt;}
.x1_c00464{left:109.373332pt;}
.xa_c00464{left:136.613332pt;}
.x11_c00464{left:166.173332pt;}
.xb_c00464{left:167.599999pt;}
.xf_c00464{left:226.853332pt;}
.x10_c00464{left:250.026665pt;}
.x12_c00464{left:253.666665pt;}
.x13_c00464{left:266.653332pt;}
.x8_c00464{left:279.866665pt;}
.x9_c00464{left:297.559999pt;}
.x18_c00464{left:302.226665pt;}
.x19_c00464{left:317.906665pt;}
.x1a_c00464{left:375.839999pt;}
.x2_c00464{left:584.159999pt;}
.x14_c00464{left:595.079999pt;}
.xe_c00464{left:599.466665pt;}
.x3_c00464{left:603.479999pt;}
.x4_c00464{left:606.226665pt;}
.x15_c00464{left:612.439999pt;}
.x6_c00464{left:625.759999pt;}
.x16_c00464{left:627.853332pt;}
.x5_c00464{left:637.879999pt;}
.x7_c00464{left:645.719999pt;}
.xc_c00464{left:651.679999pt;}
}





/* 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_c00465 {
    display:none;
  }
  .loading-indicator_c00465.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00465 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_c00465 { 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_c00465" -> "#page-container .classname_c00465")
 */
.pf_c00465 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00465 { /* 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_c00465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00465 { /* 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_c00465 { /* 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_c00465 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00465 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00465 {overflow:visible;}
  }
}
.c_c00465 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00465 { /* 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_c00465:after { /* webkit #35443 */
  content: '';
}
.t_c00465:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00465 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 */
}
.__c00465 { /* 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_c00465 { /* info for Javascript */
  display:none;
}
.l_c00465 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00465 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00465 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00465: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_c00465 {
    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_c00465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00465.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_c00465 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00465{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00465;src:url('chunks/assets/font_8a4e844956d096d05e183993.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.311035;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_c00465;src:url('chunks/assets/font_f3c42743c3df8c07a4ac9abf.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.284668;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_c00465;src:url('chunks/assets/font_b414d7ce0c8c42611b694873.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;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:ff4_c00465;src:url('chunks/assets/font_253e2bdef4a634e003b736c7.woff2')format("woff");}.ff4_c00465{font-family:ff4_c00465;line-height:1.284180;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_c00465;src:url('chunks/assets/font_424d4202ff630b8c20803c83.woff2')format("woff");}.ff5_c00465{font-family:ff5_c00465;line-height:0.666000;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;}
.me_c00465{transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);}
.m3_c00465{transform:matrix(0.239361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239361,0.000000,0.000000,0.250000,0,0);}
.mc_c00465{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.m7_c00465{transform:matrix(0.245797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245797,0.000000,0.000000,0.250000,0,0);}
.m11_c00465{transform:matrix(0.247051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247051,0.000000,0.000000,0.250000,0,0);}
.m6_c00465{transform:matrix(0.248051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248051,0.000000,0.000000,0.250000,0,0);}
.m2_c00465{transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);}
.m0_c00465{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);}
.ma_c00465{transform:matrix(0.250556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250556,0.000000,0.000000,0.250000,0,0);}
.m12_c00465{transform:matrix(0.250587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250587,0.000000,0.000000,0.250000,0,0);}
.m14_c00465{transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253203,0.000000,0.000000,0.250000,0,0);}
.mf_c00465{transform:matrix(0.254953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254953,0.000000,0.000000,0.250000,0,0);}
.m13_c00465{transform:matrix(0.255020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255020,0.000000,0.000000,0.250000,0,0);}
.md_c00465{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.m8_c00465{transform:matrix(0.256049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256049,0.000000,0.000000,0.250000,0,0);}
.m4_c00465{transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);}
.m9_c00465{transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);}
.mb_c00465{transform:matrix(0.276522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276522,0.000000,0.000000,0.250000,0,0);}
.m5_c00465{transform:matrix(0.280171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280171,0.000000,0.000000,0.250000,0,0);}
.m10_c00465{transform:matrix(0.285681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285681,0.000000,0.000000,0.250000,0,0);}
.m1_c00465{transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls65_c00465{letter-spacing:-2.562000px;}
.ls7b_c00465{letter-spacing:-2.478000px;}
.ls7e_c00465{letter-spacing:-2.352000px;}
.ls9f_c00465{letter-spacing:-2.223120px;}
.ls9e_c00465{letter-spacing:-1.996560px;}
.ls6c_c00465{letter-spacing:-1.692120px;}
.ls9d_c00465{letter-spacing:-1.685040px;}
.ls9a_c00465{letter-spacing:-1.599360px;}
.ls93_c00465{letter-spacing:-1.444800px;}
.ls89_c00465{letter-spacing:-1.444320px;}
.ls7c_c00465{letter-spacing:-1.345200px;}
.ls90_c00465{letter-spacing:-1.323960px;}
.ls76_c00465{letter-spacing:-1.169280px;}
.ls77_c00465{letter-spacing:-1.118640px;}
.ls8a_c00465{letter-spacing:-1.090320px;}
.ls70_c00465{letter-spacing:-1.040760px;}
.ls88_c00465{letter-spacing:-1.012440px;}
.ls85_c00465{letter-spacing:-0.984120px;}
.ls8e_c00465{letter-spacing:-0.870840px;}
.ls78_c00465{letter-spacing:-0.835440px;}
.ls8b_c00465{letter-spacing:-0.828360px;}
.ls86_c00465{letter-spacing:-0.814200px;}
.ls68_c00465{letter-spacing:-0.806400px;}
.ls7d_c00465{letter-spacing:-0.750480px;}
.ls72_c00465{letter-spacing:-0.725760px;}
.ls96_c00465{letter-spacing:-0.631680px;}
.ls8f_c00465{letter-spacing:-0.566400px;}
.lsa0_c00465{letter-spacing:-0.509760px;}
.ls7a_c00465{letter-spacing:-0.446040px;}
.ls6b_c00465{letter-spacing:-0.290280px;}
.ls6f_c00465{letter-spacing:-0.247800px;}
.ls87_c00465{letter-spacing:-0.240720px;}
.ls6e_c00465{letter-spacing:-0.219480px;}
.ls98_c00465{letter-spacing:-0.084960px;}
.ls81_c00465{letter-spacing:-0.073920px;}
.ls6a_c00465{letter-spacing:-0.042480px;}
.ls91_c00465{letter-spacing:-0.026880px;}
.ls69_c00465{letter-spacing:-0.007080px;}
.ls67_c00465{letter-spacing:0.000000px;}
.ls79_c00465{letter-spacing:0.028320px;}
.lsa1_c00465{letter-spacing:0.047040px;}
.ls51_c00465{letter-spacing:0.084960px;}
.ls2e_c00465{letter-spacing:0.099120px;}
.ls2b_c00465{letter-spacing:0.184080px;}
.ls41_c00465{letter-spacing:0.226560px;}
.ls7_c00465{letter-spacing:0.241920px;}
.ls29_c00465{letter-spacing:0.268800px;}
.ls19_c00465{letter-spacing:0.376320px;}
.ls15_c00465{letter-spacing:0.423360px;}
.lsa2_c00465{letter-spacing:0.463320px;}
.ls2f_c00465{letter-spacing:0.481440px;}
.ls5a_c00465{letter-spacing:0.490560px;}
.ls40_c00465{letter-spacing:0.559320px;}
.ls31_c00465{letter-spacing:0.598080px;}
.ls1e_c00465{letter-spacing:0.630120px;}
.ls38_c00465{letter-spacing:0.631680px;}
.ls1b_c00465{letter-spacing:0.645120px;}
.ls56_c00465{letter-spacing:0.672000px;}
.ls3b_c00465{letter-spacing:0.685440px;}
.ls54_c00465{letter-spacing:0.698880px;}
.ls1f_c00465{letter-spacing:0.700920px;}
.ls8d_c00465{letter-spacing:0.712320px;}
.ls9_c00465{letter-spacing:0.725760px;}
.ls5d_c00465{letter-spacing:0.806400px;}
.ls2c_c00465{letter-spacing:0.807120px;}
.ls11_c00465{letter-spacing:0.814200px;}
.ls2d_c00465{letter-spacing:0.856680px;}
.lsf_c00465{letter-spacing:0.870840px;}
.ls42_c00465{letter-spacing:0.873600px;}
.ls1a_c00465{letter-spacing:0.893760px;}
.ls74_c00465{letter-spacing:0.900480px;}
.ls5_c00465{letter-spacing:0.913920px;}
.ls52_c00465{letter-spacing:0.927360px;}
.ls47_c00465{letter-spacing:0.947520px;}
.ls95_c00465{letter-spacing:1.061760px;}
.ls1_c00465{letter-spacing:1.095360px;}
.ls25_c00465{letter-spacing:1.102080px;}
.ls99_c00465{letter-spacing:1.168200px;}
.ls23_c00465{letter-spacing:1.176000px;}
.ls20_c00465{letter-spacing:1.189440px;}
.ls9b_c00465{letter-spacing:1.202880px;}
.ls10_c00465{letter-spacing:1.203600px;}
.ls34_c00465{letter-spacing:1.270080px;}
.ls97_c00465{letter-spacing:1.276800px;}
.ls80_c00465{letter-spacing:1.283520px;}
.ls61_c00465{letter-spacing:1.303680px;}
.ls27_c00465{letter-spacing:1.337280px;}
.ls6d_c00465{letter-spacing:1.338120px;}
.lsb_c00465{letter-spacing:1.384320px;}
.ls32_c00465{letter-spacing:1.417920px;}
.ls4b_c00465{letter-spacing:1.451520px;}
.ls18_c00465{letter-spacing:1.478400px;}
.ls3f_c00465{letter-spacing:1.498560px;}
.ls9c_c00465{letter-spacing:1.538880px;}
.ls3e_c00465{letter-spacing:1.559040px;}
.ls92_c00465{letter-spacing:1.579200px;}
.ls94_c00465{letter-spacing:1.606080px;}
.ls3_c00465{letter-spacing:1.612800px;}
.ls4e_c00465{letter-spacing:1.626240px;}
.ls45_c00465{letter-spacing:1.666560px;}
.ls36_c00465{letter-spacing:1.673280px;}
.ls3c_c00465{letter-spacing:1.686720px;}
.ls58_c00465{letter-spacing:1.700160px;}
.ls12_c00465{letter-spacing:1.753920px;}
.ls30_c00465{letter-spacing:1.821120px;}
.ls14_c00465{letter-spacing:1.841280px;}
.ls62_c00465{letter-spacing:1.858080px;}
.ls33_c00465{letter-spacing:1.868160px;}
.ls28_c00465{letter-spacing:1.881600px;}
.ls49_c00465{letter-spacing:1.908480px;}
.ls60_c00465{letter-spacing:1.928640px;}
.ls39_c00465{letter-spacing:1.942080px;}
.ls63_c00465{letter-spacing:1.975680px;}
.ls59_c00465{letter-spacing:1.982400px;}
.ls4f_c00465{letter-spacing:2.002560px;}
.ls5f_c00465{letter-spacing:2.016000px;}
.ls21_c00465{letter-spacing:2.029440px;}
.ls13_c00465{letter-spacing:2.036160px;}
.ls17_c00465{letter-spacing:2.042880px;}
.ls3d_c00465{letter-spacing:2.049600px;}
.ls2a_c00465{letter-spacing:2.076480px;}
.ls71_c00465{letter-spacing:2.143680px;}
.ls37_c00465{letter-spacing:2.170560px;}
.ls8_c00465{letter-spacing:2.184000px;}
.ls50_c00465{letter-spacing:2.197440px;}
.ls26_c00465{letter-spacing:2.204160px;}
.lsc_c00465{letter-spacing:2.210880px;}
.ls4d_c00465{letter-spacing:2.217600px;}
.ls7f_c00465{letter-spacing:2.224320px;}
.ls8c_c00465{letter-spacing:2.271360px;}
.ls57_c00465{letter-spacing:2.284800px;}
.ls48_c00465{letter-spacing:2.325120px;}
.ls82_c00465{letter-spacing:2.338560px;}
.lse_c00465{letter-spacing:2.343480px;}
.ls16_c00465{letter-spacing:2.358720px;}
.ls22_c00465{letter-spacing:2.372160px;}
.ls4a_c00465{letter-spacing:2.412480px;}
.ls43_c00465{letter-spacing:2.419200px;}
.ls44_c00465{letter-spacing:2.452800px;}
.ls66_c00465{letter-spacing:2.479680px;}
.ls1d_c00465{letter-spacing:2.486400px;}
.ls1c_c00465{letter-spacing:2.499840px;}
.lsa_c00465{letter-spacing:2.540160px;}
.ls3a_c00465{letter-spacing:2.546880px;}
.ls84_c00465{letter-spacing:2.560320px;}
.ls4_c00465{letter-spacing:2.661120px;}
.ls2_c00465{letter-spacing:2.708160px;}
.ls5b_c00465{letter-spacing:2.728320px;}
.ls35_c00465{letter-spacing:2.735040px;}
.ls5c_c00465{letter-spacing:2.755200px;}
.ls6_c00465{letter-spacing:2.862720px;}
.ls46_c00465{letter-spacing:2.896320px;}
.ls55_c00465{letter-spacing:2.916480px;}
.lsd_c00465{letter-spacing:2.943360px;}
.ls0_c00465{letter-spacing:2.970240px;}
.ls24_c00465{letter-spacing:3.017280px;}
.ls5e_c00465{letter-spacing:3.037440px;}
.ls53_c00465{letter-spacing:3.151680px;}
.ls4c_c00465{letter-spacing:3.346560px;}
.ls73_c00465{letter-spacing:3.360000px;}
.ls75_c00465{letter-spacing:3.600000px;}
.ls64_c00465{letter-spacing:3.660000px;}
.ls83_c00465{letter-spacing:3.780000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{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__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00465{word-spacing:-0.006720px;}
.ws6_c00465{word-spacing:0.000000px;}
.ws1_c00465{word-spacing:2.945280px;}
.ws0_c00465{word-spacing:3.578880px;}
.ws3_c00465{word-spacing:7.049280px;}
.ws5_c00465{word-spacing:10.684800px;}
.ws2_c00465{word-spacing:20.388480px;}
._f_c00465{margin-left:-13.478400px;}
._1b_c00465{margin-left:-12.038400px;}
._13_c00465{margin-left:-6.744000px;}
._1c_c00465{margin-left:-5.642520px;}
._14_c00465{margin-left:-3.709920px;}
._1a_c00465{margin-left:-2.190720px;}
._15_c00465{margin-left:-1.132800px;}
._c_c00465{width:1.713120px;}
._11_c00465{width:3.840480px;}
._8_c00465{width:5.281920px;}
._1f_c00465{width:6.515040px;}
._a_c00465{width:7.660560px;}
._b_c00465{width:8.814360px;}
._10_c00465{width:10.774920px;}
._12_c00465{width:12.149400px;}
._16_c00465{width:13.961880px;}
._17_c00465{width:16.840800px;}
._1d_c00465{width:18.043080px;}
._9_c00465{width:19.353600px;}
._7_c00465{width:20.796000px;}
._19_c00465{width:21.933840px;}
._5_c00465{width:23.098080px;}
._d_c00465{width:24.634320px;}
._6_c00465{width:25.845120px;}
._e_c00465{width:27.439200px;}
._18_c00465{width:29.796000px;}
._1e_c00465{width:37.154040px;}
._0_c00465{width:38.974080px;}
._3_c00465{width:41.816160px;}
._2_c00465{width:42.898080px;}
._1_c00465{width:44.674560px;}
._4_c00465{width:45.677280px;}
.fc0_c00465{color:transparent;}
.fs8_c00465{font-size:53.280000px;}
.fs0_c00465{font-size:58.800000px;}
.fsa_c00465{font-size:59.400000px;}
.fs1_c00465{font-size:67.200000px;}
.fs7_c00465{font-size:68.400000px;}
.fs9_c00465{font-size:70.200000px;}
.fs3_c00465{font-size:70.800000px;}
.fs4_c00465{font-size:72.000000px;}
.fs2_c00465{font-size:73.200000px;}
.fs5_c00465{font-size:73.800000px;}
.fs6_c00465{font-size:75.600000px;}
.y0_c00465{bottom:0.000000px;}
.y21_c00465{bottom:64.455000px;}
.y20_c00465{bottom:216.372600px;}
.y1f_c00465{bottom:247.335000px;}
.y1e_c00465{bottom:309.255000px;}
.y1d_c00465{bottom:340.560000px;}
.y1c_c00465{bottom:340.560600px;}
.y1b_c00465{bottom:401.410200px;}
.y1a_c00465{bottom:433.095000px;}
.y19_c00465{bottom:433.102200px;}
.y17_c00465{bottom:463.692000px;}
.y18_c00465{bottom:463.695000px;}
.y16_c00465{bottom:525.600000px;}
.y15_c00465{bottom:555.855000px;}
.y14_c00465{bottom:555.859800px;}
.y13_c00465{bottom:587.175000px;}
.y11_c00465{bottom:648.732600px;}
.y12_c00465{bottom:648.735000px;}
.y10_c00465{bottom:679.695000px;}
.yf_c00465{bottom:710.660400px;}
.ye_c00465{bottom:741.600000px;}
.yd_c00465{bottom:772.560000px;}
.yc_c00465{bottom:834.495000px;}
.yb_c00465{bottom:865.080000px;}
.ya_c00465{bottom:865.082700px;}
.y9_c00465{bottom:896.040000px;}
.y8_c00465{bottom:926.655000px;}
.y6_c00465{bottom:987.852600px;}
.y7_c00465{bottom:987.855000px;}
.y5_c00465{bottom:1018.814400px;}
.y4_c00465{bottom:1049.397600px;}
.y3_c00465{bottom:1080.360000px;}
.y2_c00465{bottom:1111.335000px;}
.y1_c00465{bottom:1189.080000px;}
.he_c00465{height:35.484480px;}
.h10_c00465{height:58.297852px;}
.h2_c00465{height:59.259375px;}
.h3_c00465{height:65.953125px;}
.hd_c00465{height:65.965125px;}
.hc_c00465{height:69.432558px;}
.h7_c00465{height:69.451758px;}
.h6_c00465{height:69.461358px;}
.h5_c00465{height:70.087500px;}
.h8_c00465{height:70.664062px;}
.hb_c00465{height:71.339063px;}
.h4_c00465{height:71.841797px;}
.h9_c00465{height:72.419864px;}
.hf_c00465{height:73.214006px;}
.ha_c00465{height:74.197266px;}
.h1_c00465{height:1263.000000px;}
.h0_c00465{height:1263.240000px;}
.w1_c00465{width:892.500000px;}
.w0_c00465{width:892.800000px;}
.x0_c00465{left:0.000000px;}
.x16_c00465{left:121.558800px;}
.x17_c00465{left:123.090000px;}
.x8_c00465{left:124.095600px;}
.x9_c00465{left:125.472600px;}
.x2_c00465{left:126.645000px;}
.x1_c00465{left:127.710000px;}
.x25_c00465{left:195.735000px;}
.x13_c00465{left:203.325000px;}
.xa_c00465{left:211.710000px;}
.x26_c00465{left:214.395000px;}
.x1a_c00465{left:225.645000px;}
.xb_c00465{left:234.315000px;}
.x18_c00465{left:253.110000px;}
.x27_c00465{left:255.165000px;}
.x19_c00465{left:275.355000px;}
.x28_c00465{left:286.470000px;}
.x14_c00465{left:320.370000px;}
.x23_c00465{left:340.020000px;}
.x1b_c00465{left:344.790000px;}
.x24_c00465{left:381.015000px;}
.x1c_c00465{left:389.145000px;}
.x2b_c00465{left:425.340000px;}
.x21_c00465{left:433.095000px;}
.xc_c00465{left:451.710000px;}
.xd_c00465{left:478.275000px;}
.x3_c00465{left:497.415000px;}
.x4_c00465{left:533.715000px;}
.x29_c00465{left:538.380000px;}
.xe_c00465{left:543.405000px;}
.xf_c00465{left:560.040000px;}
.x2a_c00465{left:562.530000px;}
.x1d_c00465{left:574.350000px;}
.x15_c00465{left:586.635000px;}
.x1e_c00465{left:592.350000px;}
.x1f_c00465{left:595.710000px;}
.x22_c00465{left:597.555000px;}
.x20_c00465{left:620.760000px;}
.x10_c00465{left:684.150000px;}
.x11_c00465{left:708.510000px;}
.x6_c00465{left:723.135000px;}
.x5_c00465{left:739.365000px;}
.x12_c00465{left:741.030000px;}
.x7_c00465{left:744.765000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls65_c00465{letter-spacing:-2.277333pt;}
.ls7b_c00465{letter-spacing:-2.202667pt;}
.ls7e_c00465{letter-spacing:-2.090667pt;}
.ls9f_c00465{letter-spacing:-1.976107pt;}
.ls9e_c00465{letter-spacing:-1.774720pt;}
.ls6c_c00465{letter-spacing:-1.504107pt;}
.ls9d_c00465{letter-spacing:-1.497813pt;}
.ls9a_c00465{letter-spacing:-1.421653pt;}
.ls93_c00465{letter-spacing:-1.284267pt;}
.ls89_c00465{letter-spacing:-1.283840pt;}
.ls7c_c00465{letter-spacing:-1.195733pt;}
.ls90_c00465{letter-spacing:-1.176853pt;}
.ls76_c00465{letter-spacing:-1.039360pt;}
.ls77_c00465{letter-spacing:-0.994347pt;}
.ls8a_c00465{letter-spacing:-0.969173pt;}
.ls70_c00465{letter-spacing:-0.925120pt;}
.ls88_c00465{letter-spacing:-0.899947pt;}
.ls85_c00465{letter-spacing:-0.874773pt;}
.ls8e_c00465{letter-spacing:-0.774080pt;}
.ls78_c00465{letter-spacing:-0.742613pt;}
.ls8b_c00465{letter-spacing:-0.736320pt;}
.ls86_c00465{letter-spacing:-0.723733pt;}
.ls68_c00465{letter-spacing:-0.716800pt;}
.ls7d_c00465{letter-spacing:-0.667093pt;}
.ls72_c00465{letter-spacing:-0.645120pt;}
.ls96_c00465{letter-spacing:-0.561493pt;}
.ls8f_c00465{letter-spacing:-0.503467pt;}
.lsa0_c00465{letter-spacing:-0.453120pt;}
.ls7a_c00465{letter-spacing:-0.396480pt;}
.ls6b_c00465{letter-spacing:-0.258027pt;}
.ls6f_c00465{letter-spacing:-0.220267pt;}
.ls87_c00465{letter-spacing:-0.213973pt;}
.ls6e_c00465{letter-spacing:-0.195093pt;}
.ls98_c00465{letter-spacing:-0.075520pt;}
.ls81_c00465{letter-spacing:-0.065707pt;}
.ls6a_c00465{letter-spacing:-0.037760pt;}
.ls91_c00465{letter-spacing:-0.023893pt;}
.ls69_c00465{letter-spacing:-0.006293pt;}
.ls67_c00465{letter-spacing:0.000000pt;}
.ls79_c00465{letter-spacing:0.025173pt;}
.lsa1_c00465{letter-spacing:0.041813pt;}
.ls51_c00465{letter-spacing:0.075520pt;}
.ls2e_c00465{letter-spacing:0.088107pt;}
.ls2b_c00465{letter-spacing:0.163627pt;}
.ls41_c00465{letter-spacing:0.201387pt;}
.ls7_c00465{letter-spacing:0.215040pt;}
.ls29_c00465{letter-spacing:0.238933pt;}
.ls19_c00465{letter-spacing:0.334507pt;}
.ls15_c00465{letter-spacing:0.376320pt;}
.lsa2_c00465{letter-spacing:0.411840pt;}
.ls2f_c00465{letter-spacing:0.427947pt;}
.ls5a_c00465{letter-spacing:0.436053pt;}
.ls40_c00465{letter-spacing:0.497173pt;}
.ls31_c00465{letter-spacing:0.531627pt;}
.ls1e_c00465{letter-spacing:0.560107pt;}
.ls38_c00465{letter-spacing:0.561493pt;}
.ls1b_c00465{letter-spacing:0.573440pt;}
.ls56_c00465{letter-spacing:0.597333pt;}
.ls3b_c00465{letter-spacing:0.609280pt;}
.ls54_c00465{letter-spacing:0.621227pt;}
.ls1f_c00465{letter-spacing:0.623040pt;}
.ls8d_c00465{letter-spacing:0.633173pt;}
.ls9_c00465{letter-spacing:0.645120pt;}
.ls5d_c00465{letter-spacing:0.716800pt;}
.ls2c_c00465{letter-spacing:0.717440pt;}
.ls11_c00465{letter-spacing:0.723733pt;}
.ls2d_c00465{letter-spacing:0.761493pt;}
.lsf_c00465{letter-spacing:0.774080pt;}
.ls42_c00465{letter-spacing:0.776533pt;}
.ls1a_c00465{letter-spacing:0.794453pt;}
.ls74_c00465{letter-spacing:0.800427pt;}
.ls5_c00465{letter-spacing:0.812373pt;}
.ls52_c00465{letter-spacing:0.824320pt;}
.ls47_c00465{letter-spacing:0.842240pt;}
.ls95_c00465{letter-spacing:0.943787pt;}
.ls1_c00465{letter-spacing:0.973653pt;}
.ls25_c00465{letter-spacing:0.979627pt;}
.ls99_c00465{letter-spacing:1.038400pt;}
.ls23_c00465{letter-spacing:1.045333pt;}
.ls20_c00465{letter-spacing:1.057280pt;}
.ls9b_c00465{letter-spacing:1.069227pt;}
.ls10_c00465{letter-spacing:1.069867pt;}
.ls34_c00465{letter-spacing:1.128960pt;}
.ls97_c00465{letter-spacing:1.134933pt;}
.ls80_c00465{letter-spacing:1.140907pt;}
.ls61_c00465{letter-spacing:1.158827pt;}
.ls27_c00465{letter-spacing:1.188693pt;}
.ls6d_c00465{letter-spacing:1.189440pt;}
.lsb_c00465{letter-spacing:1.230507pt;}
.ls32_c00465{letter-spacing:1.260373pt;}
.ls4b_c00465{letter-spacing:1.290240pt;}
.ls18_c00465{letter-spacing:1.314133pt;}
.ls3f_c00465{letter-spacing:1.332053pt;}
.ls9c_c00465{letter-spacing:1.367893pt;}
.ls3e_c00465{letter-spacing:1.385813pt;}
.ls92_c00465{letter-spacing:1.403733pt;}
.ls94_c00465{letter-spacing:1.427627pt;}
.ls3_c00465{letter-spacing:1.433600pt;}
.ls4e_c00465{letter-spacing:1.445547pt;}
.ls45_c00465{letter-spacing:1.481387pt;}
.ls36_c00465{letter-spacing:1.487360pt;}
.ls3c_c00465{letter-spacing:1.499307pt;}
.ls58_c00465{letter-spacing:1.511253pt;}
.ls12_c00465{letter-spacing:1.559040pt;}
.ls30_c00465{letter-spacing:1.618773pt;}
.ls14_c00465{letter-spacing:1.636693pt;}
.ls62_c00465{letter-spacing:1.651627pt;}
.ls33_c00465{letter-spacing:1.660587pt;}
.ls28_c00465{letter-spacing:1.672533pt;}
.ls49_c00465{letter-spacing:1.696427pt;}
.ls60_c00465{letter-spacing:1.714347pt;}
.ls39_c00465{letter-spacing:1.726293pt;}
.ls63_c00465{letter-spacing:1.756160pt;}
.ls59_c00465{letter-spacing:1.762133pt;}
.ls4f_c00465{letter-spacing:1.780053pt;}
.ls5f_c00465{letter-spacing:1.792000pt;}
.ls21_c00465{letter-spacing:1.803947pt;}
.ls13_c00465{letter-spacing:1.809920pt;}
.ls17_c00465{letter-spacing:1.815893pt;}
.ls3d_c00465{letter-spacing:1.821867pt;}
.ls2a_c00465{letter-spacing:1.845760pt;}
.ls71_c00465{letter-spacing:1.905493pt;}
.ls37_c00465{letter-spacing:1.929387pt;}
.ls8_c00465{letter-spacing:1.941333pt;}
.ls50_c00465{letter-spacing:1.953280pt;}
.ls26_c00465{letter-spacing:1.959253pt;}
.lsc_c00465{letter-spacing:1.965227pt;}
.ls4d_c00465{letter-spacing:1.971200pt;}
.ls7f_c00465{letter-spacing:1.977173pt;}
.ls8c_c00465{letter-spacing:2.018987pt;}
.ls57_c00465{letter-spacing:2.030933pt;}
.ls48_c00465{letter-spacing:2.066773pt;}
.ls82_c00465{letter-spacing:2.078720pt;}
.lse_c00465{letter-spacing:2.083093pt;}
.ls16_c00465{letter-spacing:2.096640pt;}
.ls22_c00465{letter-spacing:2.108587pt;}
.ls4a_c00465{letter-spacing:2.144427pt;}
.ls43_c00465{letter-spacing:2.150400pt;}
.ls44_c00465{letter-spacing:2.180267pt;}
.ls66_c00465{letter-spacing:2.204160pt;}
.ls1d_c00465{letter-spacing:2.210133pt;}
.ls1c_c00465{letter-spacing:2.222080pt;}
.lsa_c00465{letter-spacing:2.257920pt;}
.ls3a_c00465{letter-spacing:2.263893pt;}
.ls84_c00465{letter-spacing:2.275840pt;}
.ls4_c00465{letter-spacing:2.365440pt;}
.ls2_c00465{letter-spacing:2.407253pt;}
.ls5b_c00465{letter-spacing:2.425173pt;}
.ls35_c00465{letter-spacing:2.431147pt;}
.ls5c_c00465{letter-spacing:2.449067pt;}
.ls6_c00465{letter-spacing:2.544640pt;}
.ls46_c00465{letter-spacing:2.574507pt;}
.ls55_c00465{letter-spacing:2.592427pt;}
.lsd_c00465{letter-spacing:2.616320pt;}
.ls0_c00465{letter-spacing:2.640213pt;}
.ls24_c00465{letter-spacing:2.682027pt;}
.ls5e_c00465{letter-spacing:2.699947pt;}
.ls53_c00465{letter-spacing:2.801493pt;}
.ls4c_c00465{letter-spacing:2.974720pt;}
.ls73_c00465{letter-spacing:2.986667pt;}
.ls75_c00465{letter-spacing:3.200000pt;}
.ls64_c00465{letter-spacing:3.253333pt;}
.ls83_c00465{letter-spacing:3.360000pt;}
.ws4_c00465{word-spacing:-0.005973pt;}
.ws6_c00465{word-spacing:0.000000pt;}
.ws1_c00465{word-spacing:2.618027pt;}
.ws0_c00465{word-spacing:3.181227pt;}
.ws3_c00465{word-spacing:6.266027pt;}
.ws5_c00465{word-spacing:9.497600pt;}
.ws2_c00465{word-spacing:18.123093pt;}
._f_c00465{margin-left:-11.980800pt;}
._1b_c00465{margin-left:-10.700800pt;}
._13_c00465{margin-left:-5.994667pt;}
._1c_c00465{margin-left:-5.015573pt;}
._14_c00465{margin-left:-3.297707pt;}
._1a_c00465{margin-left:-1.947307pt;}
._15_c00465{margin-left:-1.006933pt;}
._c_c00465{width:1.522773pt;}
._11_c00465{width:3.413760pt;}
._8_c00465{width:4.695040pt;}
._1f_c00465{width:5.791147pt;}
._a_c00465{width:6.809387pt;}
._b_c00465{width:7.834987pt;}
._10_c00465{width:9.577707pt;}
._12_c00465{width:10.799467pt;}
._16_c00465{width:12.410560pt;}
._17_c00465{width:14.969600pt;}
._1d_c00465{width:16.038293pt;}
._9_c00465{width:17.203200pt;}
._7_c00465{width:18.485333pt;}
._19_c00465{width:19.496747pt;}
._5_c00465{width:20.531627pt;}
._d_c00465{width:21.897173pt;}
._6_c00465{width:22.973440pt;}
._e_c00465{width:24.390400pt;}
._18_c00465{width:26.485333pt;}
._1e_c00465{width:33.025813pt;}
._0_c00465{width:34.643627pt;}
._3_c00465{width:37.169920pt;}
._2_c00465{width:38.131627pt;}
._1_c00465{width:39.710720pt;}
._4_c00465{width:40.602027pt;}
.fs8_c00465{font-size:47.360000pt;}
.fs0_c00465{font-size:52.266667pt;}
.fsa_c00465{font-size:52.800000pt;}
.fs1_c00465{font-size:59.733333pt;}
.fs7_c00465{font-size:60.800000pt;}
.fs9_c00465{font-size:62.400000pt;}
.fs3_c00465{font-size:62.933333pt;}
.fs4_c00465{font-size:64.000000pt;}
.fs2_c00465{font-size:65.066667pt;}
.fs5_c00465{font-size:65.600000pt;}
.fs6_c00465{font-size:67.200000pt;}
.y0_c00465{bottom:0.000000pt;}
.y21_c00465{bottom:57.293333pt;}
.y20_c00465{bottom:192.331200pt;}
.y1f_c00465{bottom:219.853333pt;}
.y1e_c00465{bottom:274.893333pt;}
.y1d_c00465{bottom:302.720000pt;}
.y1c_c00465{bottom:302.720533pt;}
.y1b_c00465{bottom:356.809067pt;}
.y1a_c00465{bottom:384.973333pt;}
.y19_c00465{bottom:384.979733pt;}
.y17_c00465{bottom:412.170667pt;}
.y18_c00465{bottom:412.173333pt;}
.y16_c00465{bottom:467.200000pt;}
.y15_c00465{bottom:494.093333pt;}
.y14_c00465{bottom:494.097600pt;}
.y13_c00465{bottom:521.933333pt;}
.y11_c00465{bottom:576.651200pt;}
.y12_c00465{bottom:576.653333pt;}
.y10_c00465{bottom:604.173333pt;}
.yf_c00465{bottom:631.698133pt;}
.ye_c00465{bottom:659.200000pt;}
.yd_c00465{bottom:686.720000pt;}
.yc_c00465{bottom:741.773333pt;}
.yb_c00465{bottom:768.960000pt;}
.ya_c00465{bottom:768.962400pt;}
.y9_c00465{bottom:796.480000pt;}
.y8_c00465{bottom:823.693333pt;}
.y6_c00465{bottom:878.091200pt;}
.y7_c00465{bottom:878.093333pt;}
.y5_c00465{bottom:905.612800pt;}
.y4_c00465{bottom:932.797867pt;}
.y3_c00465{bottom:960.320000pt;}
.y2_c00465{bottom:987.853333pt;}
.y1_c00465{bottom:1056.960000pt;}
.he_c00465{height:31.541760pt;}
.h10_c00465{height:51.820312pt;}
.h2_c00465{height:52.675000pt;}
.h3_c00465{height:58.625000pt;}
.hd_c00465{height:58.635667pt;}
.hc_c00465{height:61.717829pt;}
.h7_c00465{height:61.734896pt;}
.h6_c00465{height:61.743429pt;}
.h5_c00465{height:62.300000pt;}
.h8_c00465{height:62.812500pt;}
.hb_c00465{height:63.412500pt;}
.h4_c00465{height:63.859375pt;}
.h9_c00465{height:64.373213pt;}
.hf_c00465{height:65.079117pt;}
.ha_c00465{height:65.953125pt;}
.h1_c00465{height:1122.666667pt;}
.h0_c00465{height:1122.880000pt;}
.w1_c00465{width:793.333333pt;}
.w0_c00465{width:793.600000pt;}
.x0_c00465{left:0.000000pt;}
.x16_c00465{left:108.052267pt;}
.x17_c00465{left:109.413333pt;}
.x8_c00465{left:110.307200pt;}
.x9_c00465{left:111.531200pt;}
.x2_c00465{left:112.573333pt;}
.x1_c00465{left:113.520000pt;}
.x25_c00465{left:173.986667pt;}
.x13_c00465{left:180.733333pt;}
.xa_c00465{left:188.186667pt;}
.x26_c00465{left:190.573333pt;}
.x1a_c00465{left:200.573333pt;}
.xb_c00465{left:208.280000pt;}
.x18_c00465{left:224.986667pt;}
.x27_c00465{left:226.813333pt;}
.x19_c00465{left:244.760000pt;}
.x28_c00465{left:254.640000pt;}
.x14_c00465{left:284.773333pt;}
.x23_c00465{left:302.240000pt;}
.x1b_c00465{left:306.480000pt;}
.x24_c00465{left:338.680000pt;}
.x1c_c00465{left:345.906667pt;}
.x2b_c00465{left:378.080000pt;}
.x21_c00465{left:384.973333pt;}
.xc_c00465{left:401.520000pt;}
.xd_c00465{left:425.133333pt;}
.x3_c00465{left:442.146667pt;}
.x4_c00465{left:474.413333pt;}
.x29_c00465{left:478.560000pt;}
.xe_c00465{left:483.026667pt;}
.xf_c00465{left:497.813333pt;}
.x2a_c00465{left:500.026667pt;}
.x1d_c00465{left:510.533333pt;}
.x15_c00465{left:521.453333pt;}
.x1e_c00465{left:526.533333pt;}
.x1f_c00465{left:529.520000pt;}
.x22_c00465{left:531.160000pt;}
.x20_c00465{left:551.786667pt;}
.x10_c00465{left:608.133333pt;}
.x11_c00465{left:629.786667pt;}
.x6_c00465{left:642.786667pt;}
.x5_c00465{left:657.213333pt;}
.x12_c00465{left:658.693333pt;}
.x7_c00465{left:662.013333pt;}
}





/* 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_c00466 {
    display:none;
  }
  .loading-indicator_c00466.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00466 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_c00466 { 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_c00466" -> "#page-container .classname_c00466")
 */
.pf_c00466 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00466 { /* 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_c00466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00466 { /* 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_c00466 { /* 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_c00466 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00466 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00466 {overflow:visible;}
  }
}
.c_c00466 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00466 { /* 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_c00466:after { /* webkit #35443 */
  content: '';
}
.t_c00466:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00466 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 */
}
.__c00466 { /* 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_c00466 { /* info for Javascript */
  display:none;
}
.l_c00466 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00466 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00466 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00466: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_c00466 {
    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_c00466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00466.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_c00466 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00466{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00466;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.311035;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_c00466;src:url('chunks/assets/font_d606c845fc3cce47dec74934.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.284668;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_c00466;src:url('chunks/assets/font_50fcf293d68b663c384b0b24.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.284180;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_c00466;src:url('chunks/assets/font_1c319f4ac1b2bfe90caaf59c.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;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;}
.md_c00466{transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);}
.m7_c00466{transform:matrix(0.185886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185886,0.000000,0.000000,0.250000,0,0);}
.m8_c00466{transform:matrix(0.191051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191051,0.000000,0.000000,0.250000,0,0);}
.m4_c00466{transform:matrix(0.205413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205413,0.000000,0.000000,0.250000,0,0);}
.mc_c00466{transform:matrix(0.220798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220798,0.000000,0.000000,0.250000,0,0);}
.m9_c00466{transform:matrix(0.232697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232697,0.000000,0.000000,0.250000,0,0);}
.mb_c00466{transform:matrix(0.235454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235454,0.000000,0.000000,0.250000,0,0);}
.ma_c00466{transform:matrix(0.243121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243121,0.000000,0.000000,0.250000,0,0);}
.m6_c00466{transform:matrix(0.245546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245546,0.000000,0.000000,0.250000,0,0);}
.m1_c00466{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.me_c00466{transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{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);}
.m2_c00466{transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);}
.m5_c00466{transform:matrix(0.255770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255770,0.000000,0.000000,0.250000,0,0);}
.m3_c00466{transform:matrix(0.257781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257781,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls71_c00466{letter-spacing:-2.478000px;}
.ls80_c00466{letter-spacing:-2.442600px;}
.ls7a_c00466{letter-spacing:-2.415000px;}
.ls55_c00466{letter-spacing:-2.394000px;}
.ls77_c00466{letter-spacing:-2.366640px;}
.ls8e_c00466{letter-spacing:-2.134080px;}
.ls6b_c00466{letter-spacing:-2.125200px;}
.ls5f_c00466{letter-spacing:-2.120400px;}
.ls82_c00466{letter-spacing:-2.053200px;}
.ls73_c00466{letter-spacing:-1.918200px;}
.ls6a_c00466{letter-spacing:-1.911300px;}
.ls56_c00466{letter-spacing:-1.785240px;}
.ls69_c00466{letter-spacing:-1.662900px;}
.ls5c_c00466{letter-spacing:-1.642200px;}
.ls7b_c00466{letter-spacing:-1.552500px;}
.ls7d_c00466{letter-spacing:-1.450080px;}
.ls93_c00466{letter-spacing:-1.388520px;}
.ls8c_c00466{letter-spacing:-1.326960px;}
.ls72_c00466{letter-spacing:-1.311000px;}
.ls81_c00466{letter-spacing:-1.295640px;}
.ls97_c00466{letter-spacing:-1.279080px;}
.ls5b_c00466{letter-spacing:-1.193700px;}
.ls62_c00466{letter-spacing:-1.186800px;}
.ls63_c00466{letter-spacing:-1.166100px;}
.ls86_c00466{letter-spacing:-1.080720px;}
.ls88_c00466{letter-spacing:-0.868680px;}
.ls76_c00466{letter-spacing:-0.861840px;}
.ls84_c00466{letter-spacing:-0.807120px;}
.ls5a_c00466{letter-spacing:-0.703800px;}
.ls74_c00466{letter-spacing:-0.690000px;}
.ls61_c00466{letter-spacing:-0.684000px;}
.ls8d_c00466{letter-spacing:-0.601920px;}
.ls75_c00466{letter-spacing:-0.579600px;}
.ls5e_c00466{letter-spacing:-0.560880px;}
.ls59_c00466{letter-spacing:-0.526680px;}
.ls96_c00466{letter-spacing:-0.403560px;}
.ls7e_c00466{letter-spacing:-0.376200px;}
.ls66_c00466{letter-spacing:-0.348840px;}
.ls92_c00466{letter-spacing:-0.342000px;}
.ls6c_c00466{letter-spacing:-0.321480px;}
.ls8f_c00466{letter-spacing:-0.294120px;}
.ls5d_c00466{letter-spacing:-0.246240px;}
.ls7f_c00466{letter-spacing:-0.212400px;}
.ls6f_c00466{letter-spacing:-0.205200px;}
.ls83_c00466{letter-spacing:-0.184080px;}
.ls65_c00466{letter-spacing:-0.095760px;}
.ls7c_c00466{letter-spacing:-0.089700px;}
.ls60_c00466{letter-spacing:-0.088920px;}
.ls67_c00466{letter-spacing:-0.068400px;}
.ls95_c00466{letter-spacing:-0.055200px;}
.ls64_c00466{letter-spacing:-0.047880px;}
.ls87_c00466{letter-spacing:-0.020520px;}
.ls6e_c00466{letter-spacing:-0.006840px;}
.ls57_c00466{letter-spacing:0.000000px;}
.ls19_c00466{letter-spacing:0.034200px;}
.ls2a_c00466{letter-spacing:0.088920px;}
.ls35_c00466{letter-spacing:0.095760px;}
.ls45_c00466{letter-spacing:0.116280px;}
.ls32_c00466{letter-spacing:0.123120px;}
.ls17_c00466{letter-spacing:0.164160px;}
.ls91_c00466{letter-spacing:0.165600px;}
.ls4_c00466{letter-spacing:0.198360px;}
.ls1a_c00466{letter-spacing:0.227700px;}
.ls41_c00466{letter-spacing:0.239400px;}
.ls6d_c00466{letter-spacing:0.246240px;}
.ls4f_c00466{letter-spacing:0.253080px;}
.ls43_c00466{letter-spacing:0.273600px;}
.ls23_c00466{letter-spacing:0.280440px;}
.ls9_c00466{letter-spacing:0.294120px;}
.ls33_c00466{letter-spacing:0.314640px;}
.ls8b_c00466{letter-spacing:0.317400px;}
.ls1_c00466{letter-spacing:0.355680px;}
.ls4d_c00466{letter-spacing:0.383040px;}
.ls24_c00466{letter-spacing:0.386400px;}
.lsa_c00466{letter-spacing:0.403560px;}
.lse_c00466{letter-spacing:0.417240px;}
.ls28_c00466{letter-spacing:0.471960px;}
.ls13_c00466{letter-spacing:0.499320px;}
.ls3d_c00466{letter-spacing:0.513000px;}
.ls85_c00466{letter-spacing:0.519840px;}
.ls22_c00466{letter-spacing:0.526680px;}
.ls53_c00466{letter-spacing:0.554040px;}
.ls44_c00466{letter-spacing:0.581400px;}
.ls37_c00466{letter-spacing:0.588240px;}
.ls94_c00466{letter-spacing:0.595080px;}
.ls70_c00466{letter-spacing:0.601920px;}
.ls48_c00466{letter-spacing:0.615600px;}
.ls18_c00466{letter-spacing:0.622440px;}
.ls98_c00466{letter-spacing:0.622740px;}
.ls34_c00466{letter-spacing:0.649800px;}
.ls2c_c00466{letter-spacing:0.684000px;}
.ls3b_c00466{letter-spacing:0.711360px;}
.ls1f_c00466{letter-spacing:0.718200px;}
.ls46_c00466{letter-spacing:0.745560px;}
.ls3f_c00466{letter-spacing:0.752400px;}
.ls3_c00466{letter-spacing:0.766080px;}
.ls2f_c00466{letter-spacing:0.772920px;}
.ls2_c00466{letter-spacing:0.779760px;}
.lsc_c00466{letter-spacing:0.793440px;}
.lsf_c00466{letter-spacing:0.848160px;}
.ls49_c00466{letter-spacing:0.855000px;}
.ls7_c00466{letter-spacing:0.868680px;}
.lsb_c00466{letter-spacing:0.889200px;}
.ls14_c00466{letter-spacing:0.916560px;}
.ls3e_c00466{letter-spacing:0.964440px;}
.ls10_c00466{letter-spacing:0.971280px;}
.ls90_c00466{letter-spacing:0.978120px;}
.ls4c_c00466{letter-spacing:0.984960px;}
.ls2d_c00466{letter-spacing:0.991800px;}
.ls11_c00466{letter-spacing:1.005480px;}
.ls15_c00466{letter-spacing:1.012320px;}
.ls3a_c00466{letter-spacing:1.019160px;}
.ls5_c00466{letter-spacing:1.039680px;}
.ls12_c00466{letter-spacing:1.060200px;}
.ls6_c00466{letter-spacing:1.067040px;}
.ls40_c00466{letter-spacing:1.114920px;}
.ls4a_c00466{letter-spacing:1.128600px;}
.ls20_c00466{letter-spacing:1.135440px;}
.ls2e_c00466{letter-spacing:1.149120px;}
.ls38_c00466{letter-spacing:1.176480px;}
.ls1b_c00466{letter-spacing:1.210680px;}
.ls30_c00466{letter-spacing:1.244880px;}
.ls1c_c00466{letter-spacing:1.258560px;}
.ls27_c00466{letter-spacing:1.272240px;}
.ls26_c00466{letter-spacing:1.306440px;}
.ls1e_c00466{letter-spacing:1.333800px;}
.lsd_c00466{letter-spacing:1.368000px;}
.ls36_c00466{letter-spacing:1.402200px;}
.ls42_c00466{letter-spacing:1.422720px;}
.ls31_c00466{letter-spacing:1.429560px;}
.ls52_c00466{letter-spacing:1.442100px;}
.ls8a_c00466{letter-spacing:1.456920px;}
.ls2b_c00466{letter-spacing:1.470600px;}
.ls89_c00466{letter-spacing:1.504800px;}
.ls54_c00466{letter-spacing:1.536480px;}
.ls50_c00466{letter-spacing:1.545840px;}
.ls29_c00466{letter-spacing:1.607400px;}
.ls16_c00466{letter-spacing:1.648440px;}
.ls78_c00466{letter-spacing:1.710000px;}
.ls0_c00466{letter-spacing:1.723680px;}
.ls21_c00466{letter-spacing:1.737360px;}
.ls68_c00466{letter-spacing:1.792080px;}
.ls39_c00466{letter-spacing:1.935720px;}
.ls4e_c00466{letter-spacing:2.113560px;}
.ls25_c00466{letter-spacing:2.181960px;}
.ls1d_c00466{letter-spacing:2.195640px;}
.ls4b_c00466{letter-spacing:2.250360px;}
.ls51_c00466{letter-spacing:2.270880px;}
.ls3c_c00466{letter-spacing:2.455560px;}
.ls47_c00466{letter-spacing:2.503440px;}
.ls8_c00466{letter-spacing:3.091680px;}
.ls58_c00466{letter-spacing:3.420000px;}
.ls79_c00466{letter-spacing:3.450000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{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__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00466{word-spacing:-1.662120px;}
.ws7_c00466{word-spacing:0.000000px;}
.ws3_c00466{word-spacing:0.075240px;}
.ws2_c00466{word-spacing:1.785240px;}
.ws0_c00466{word-spacing:8.119080px;}
.ws5_c00466{word-spacing:9.281880px;}
.ws1_c00466{word-spacing:9.309240px;}
.ws4_c00466{word-spacing:15.711480px;}
._13_c00466{margin-left:-13.744800px;}
._15_c00466{margin-left:-12.441240px;}
._e_c00466{margin-left:-8.299800px;}
._14_c00466{margin-left:-6.696360px;}
._16_c00466{margin-left:-4.751280px;}
._5_c00466{margin-left:-3.577320px;}
._f_c00466{margin-left:-1.640040px;}
._10_c00466{width:1.124520px;}
._8_c00466{width:2.161440px;}
._7_c00466{width:4.145040px;}
._6_c00466{width:5.410440px;}
._0_c00466{width:6.539040px;}
._4_c00466{width:7.811280px;}
._2_c00466{width:9.411840px;}
._12_c00466{width:10.833000px;}
._1_c00466{width:11.868720px;}
._9_c00466{width:12.995880px;}
._b_c00466{width:14.375760px;}
._3_c00466{width:16.074000px;}
._c_c00466{width:17.255280px;}
._d_c00466{width:18.852420px;}
._11_c00466{width:21.320280px;}
._a_c00466{width:23.271120px;}
.fc0_c00466{color:transparent;}
.fs0_c00466{font-size:58.200000px;}
.fs3_c00466{font-size:66.600000px;}
.fs1_c00466{font-size:68.400000px;}
.fs2_c00466{font-size:69.000000px;}
.fs4_c00466{font-size:70.800000px;}
.y0_c00466{bottom:0.000000px;}
.y1d_c00466{bottom:70.575006px;}
.y1c_c00466{bottom:192.255006px;}
.y1b_c00466{bottom:222.496806px;}
.y1a_c00466{bottom:284.775006px;}
.y19_c00466{bottom:284.783106px;}
.y18_c00466{bottom:315.375006px;}
.y17_c00466{bottom:376.215006px;}
.y15_c00466{bottom:407.166906px;}
.y16_c00466{bottom:407.175006px;}
.y14_c00466{bottom:438.135006px;}
.y13_c00466{bottom:500.400006px;}
.y12_c00466{bottom:531.015006px;}
.y11_c00466{bottom:592.560006px;}
.y10_c00466{bottom:623.543106px;}
.yf_c00466{bottom:654.135006px;}
.ye_c00466{bottom:715.695006px;}
.yd_c00466{bottom:746.640006px;}
.yc_c00466{bottom:746.646906px;}
.yb_c00466{bottom:777.617106px;}
.ya_c00466{bottom:839.166906px;}
.y9_c00466{bottom:870.125106px;}
.y8_c00466{bottom:930.607806px;}
.y7_c00466{bottom:961.928106px;}
.y6_c00466{bottom:992.518206px;}
.y5_c00466{bottom:1053.360006px;}
.y3_c00466{bottom:1084.672806px;}
.y4_c00466{bottom:1084.680006px;}
.y2_c00466{bottom:1116.000006px;}
.y1_c00466{bottom:1191.255006px;}
.hb_c00466{height:57.120117px;}
.h2_c00466{height:58.654687px;}
.h3_c00466{height:67.130859px;}
.ha_c00466{height:67.653635px;}
.h8_c00466{height:67.658435px;}
.h4_c00466{height:67.686035px;}
.h6_c00466{height:67.713635px;}
.h5_c00466{height:69.468919px;}
.h9_c00466{height:69.486328px;}
.h7_c00466{height:69.501319px;}
.h1_c00466{height:1263.000000px;}
.h0_c00466{height:1263.240006px;}
.w1_c00466{width:892.500000px;}
.w0_c00466{width:892.799998px;}
.x0_c00466{left:0.000000px;}
.x1_c00466{left:122.309999px;}
.x8_c00466{left:123.374999px;}
.xc_c00466{left:192.254999px;}
.xa_c00466{left:197.129998px;}
.x17_c00466{left:205.829998px;}
.xb_c00466{left:217.559998px;}
.x18_c00466{left:220.994999px;}
.xd_c00466{left:228.764998px;}
.x15_c00466{left:234.884998px;}
.x6_c00466{left:238.754999px;}
.x16_c00466{left:252.479998px;}
.x7_c00466{left:273.794999px;}
.x1a_c00466{left:279.629998px;}
.x1b_c00466{left:296.099999px;}
.x2_c00466{left:325.709999px;}
.x3_c00466{left:343.334998px;}
.x4_c00466{left:380.444999px;}
.xe_c00466{left:405.284998px;}
.x5_c00466{left:410.669999px;}
.x20_c00466{left:422.474999px;}
.xf_c00466{left:424.364999px;}
.x1e_c00466{left:446.909999px;}
.x1f_c00466{left:464.684999px;}
.x1c_c00466{left:493.679999px;}
.x1d_c00466{left:505.349999px;}
.x10_c00466{left:569.804999px;}
.x11_c00466{left:589.244999px;}
.x12_c00466{left:643.604998px;}
.x13_c00466{left:689.399999px;}
.x14_c00466{left:708.659999px;}
.x19_c00466{left:723.149999px;}
.x9_c00466{left:738.929999px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls71_c00466{letter-spacing:-2.202667pt;}
.ls80_c00466{letter-spacing:-2.171200pt;}
.ls7a_c00466{letter-spacing:-2.146667pt;}
.ls55_c00466{letter-spacing:-2.128000pt;}
.ls77_c00466{letter-spacing:-2.103680pt;}
.ls8e_c00466{letter-spacing:-1.896960pt;}
.ls6b_c00466{letter-spacing:-1.889067pt;}
.ls5f_c00466{letter-spacing:-1.884800pt;}
.ls82_c00466{letter-spacing:-1.825067pt;}
.ls73_c00466{letter-spacing:-1.705067pt;}
.ls6a_c00466{letter-spacing:-1.698933pt;}
.ls56_c00466{letter-spacing:-1.586880pt;}
.ls69_c00466{letter-spacing:-1.478133pt;}
.ls5c_c00466{letter-spacing:-1.459733pt;}
.ls7b_c00466{letter-spacing:-1.380000pt;}
.ls7d_c00466{letter-spacing:-1.288960pt;}
.ls93_c00466{letter-spacing:-1.234240pt;}
.ls8c_c00466{letter-spacing:-1.179520pt;}
.ls72_c00466{letter-spacing:-1.165333pt;}
.ls81_c00466{letter-spacing:-1.151680pt;}
.ls97_c00466{letter-spacing:-1.136960pt;}
.ls5b_c00466{letter-spacing:-1.061067pt;}
.ls62_c00466{letter-spacing:-1.054933pt;}
.ls63_c00466{letter-spacing:-1.036533pt;}
.ls86_c00466{letter-spacing:-0.960640pt;}
.ls88_c00466{letter-spacing:-0.772160pt;}
.ls76_c00466{letter-spacing:-0.766080pt;}
.ls84_c00466{letter-spacing:-0.717440pt;}
.ls5a_c00466{letter-spacing:-0.625600pt;}
.ls74_c00466{letter-spacing:-0.613333pt;}
.ls61_c00466{letter-spacing:-0.608000pt;}
.ls8d_c00466{letter-spacing:-0.535040pt;}
.ls75_c00466{letter-spacing:-0.515200pt;}
.ls5e_c00466{letter-spacing:-0.498560pt;}
.ls59_c00466{letter-spacing:-0.468160pt;}
.ls96_c00466{letter-spacing:-0.358720pt;}
.ls7e_c00466{letter-spacing:-0.334400pt;}
.ls66_c00466{letter-spacing:-0.310080pt;}
.ls92_c00466{letter-spacing:-0.304000pt;}
.ls6c_c00466{letter-spacing:-0.285760pt;}
.ls8f_c00466{letter-spacing:-0.261440pt;}
.ls5d_c00466{letter-spacing:-0.218880pt;}
.ls7f_c00466{letter-spacing:-0.188800pt;}
.ls6f_c00466{letter-spacing:-0.182400pt;}
.ls83_c00466{letter-spacing:-0.163627pt;}
.ls65_c00466{letter-spacing:-0.085120pt;}
.ls7c_c00466{letter-spacing:-0.079733pt;}
.ls60_c00466{letter-spacing:-0.079040pt;}
.ls67_c00466{letter-spacing:-0.060800pt;}
.ls95_c00466{letter-spacing:-0.049067pt;}
.ls64_c00466{letter-spacing:-0.042560pt;}
.ls87_c00466{letter-spacing:-0.018240pt;}
.ls6e_c00466{letter-spacing:-0.006080pt;}
.ls57_c00466{letter-spacing:0.000000pt;}
.ls19_c00466{letter-spacing:0.030400pt;}
.ls2a_c00466{letter-spacing:0.079040pt;}
.ls35_c00466{letter-spacing:0.085120pt;}
.ls45_c00466{letter-spacing:0.103360pt;}
.ls32_c00466{letter-spacing:0.109440pt;}
.ls17_c00466{letter-spacing:0.145920pt;}
.ls91_c00466{letter-spacing:0.147200pt;}
.ls4_c00466{letter-spacing:0.176320pt;}
.ls1a_c00466{letter-spacing:0.202400pt;}
.ls41_c00466{letter-spacing:0.212800pt;}
.ls6d_c00466{letter-spacing:0.218880pt;}
.ls4f_c00466{letter-spacing:0.224960pt;}
.ls43_c00466{letter-spacing:0.243200pt;}
.ls23_c00466{letter-spacing:0.249280pt;}
.ls9_c00466{letter-spacing:0.261440pt;}
.ls33_c00466{letter-spacing:0.279680pt;}
.ls8b_c00466{letter-spacing:0.282133pt;}
.ls1_c00466{letter-spacing:0.316160pt;}
.ls4d_c00466{letter-spacing:0.340480pt;}
.ls24_c00466{letter-spacing:0.343467pt;}
.lsa_c00466{letter-spacing:0.358720pt;}
.lse_c00466{letter-spacing:0.370880pt;}
.ls28_c00466{letter-spacing:0.419520pt;}
.ls13_c00466{letter-spacing:0.443840pt;}
.ls3d_c00466{letter-spacing:0.456000pt;}
.ls85_c00466{letter-spacing:0.462080pt;}
.ls22_c00466{letter-spacing:0.468160pt;}
.ls53_c00466{letter-spacing:0.492480pt;}
.ls44_c00466{letter-spacing:0.516800pt;}
.ls37_c00466{letter-spacing:0.522880pt;}
.ls94_c00466{letter-spacing:0.528960pt;}
.ls70_c00466{letter-spacing:0.535040pt;}
.ls48_c00466{letter-spacing:0.547200pt;}
.ls18_c00466{letter-spacing:0.553280pt;}
.ls98_c00466{letter-spacing:0.553547pt;}
.ls34_c00466{letter-spacing:0.577600pt;}
.ls2c_c00466{letter-spacing:0.608000pt;}
.ls3b_c00466{letter-spacing:0.632320pt;}
.ls1f_c00466{letter-spacing:0.638400pt;}
.ls46_c00466{letter-spacing:0.662720pt;}
.ls3f_c00466{letter-spacing:0.668800pt;}
.ls3_c00466{letter-spacing:0.680960pt;}
.ls2f_c00466{letter-spacing:0.687040pt;}
.ls2_c00466{letter-spacing:0.693120pt;}
.lsc_c00466{letter-spacing:0.705280pt;}
.lsf_c00466{letter-spacing:0.753920pt;}
.ls49_c00466{letter-spacing:0.760000pt;}
.ls7_c00466{letter-spacing:0.772160pt;}
.lsb_c00466{letter-spacing:0.790400pt;}
.ls14_c00466{letter-spacing:0.814720pt;}
.ls3e_c00466{letter-spacing:0.857280pt;}
.ls10_c00466{letter-spacing:0.863360pt;}
.ls90_c00466{letter-spacing:0.869440pt;}
.ls4c_c00466{letter-spacing:0.875520pt;}
.ls2d_c00466{letter-spacing:0.881600pt;}
.ls11_c00466{letter-spacing:0.893760pt;}
.ls15_c00466{letter-spacing:0.899840pt;}
.ls3a_c00466{letter-spacing:0.905920pt;}
.ls5_c00466{letter-spacing:0.924160pt;}
.ls12_c00466{letter-spacing:0.942400pt;}
.ls6_c00466{letter-spacing:0.948480pt;}
.ls40_c00466{letter-spacing:0.991040pt;}
.ls4a_c00466{letter-spacing:1.003200pt;}
.ls20_c00466{letter-spacing:1.009280pt;}
.ls2e_c00466{letter-spacing:1.021440pt;}
.ls38_c00466{letter-spacing:1.045760pt;}
.ls1b_c00466{letter-spacing:1.076160pt;}
.ls30_c00466{letter-spacing:1.106560pt;}
.ls1c_c00466{letter-spacing:1.118720pt;}
.ls27_c00466{letter-spacing:1.130880pt;}
.ls26_c00466{letter-spacing:1.161280pt;}
.ls1e_c00466{letter-spacing:1.185600pt;}
.lsd_c00466{letter-spacing:1.216000pt;}
.ls36_c00466{letter-spacing:1.246400pt;}
.ls42_c00466{letter-spacing:1.264640pt;}
.ls31_c00466{letter-spacing:1.270720pt;}
.ls52_c00466{letter-spacing:1.281867pt;}
.ls8a_c00466{letter-spacing:1.295040pt;}
.ls2b_c00466{letter-spacing:1.307200pt;}
.ls89_c00466{letter-spacing:1.337600pt;}
.ls54_c00466{letter-spacing:1.365760pt;}
.ls50_c00466{letter-spacing:1.374080pt;}
.ls29_c00466{letter-spacing:1.428800pt;}
.ls16_c00466{letter-spacing:1.465280pt;}
.ls78_c00466{letter-spacing:1.520000pt;}
.ls0_c00466{letter-spacing:1.532160pt;}
.ls21_c00466{letter-spacing:1.544320pt;}
.ls68_c00466{letter-spacing:1.592960pt;}
.ls39_c00466{letter-spacing:1.720640pt;}
.ls4e_c00466{letter-spacing:1.878720pt;}
.ls25_c00466{letter-spacing:1.939520pt;}
.ls1d_c00466{letter-spacing:1.951680pt;}
.ls4b_c00466{letter-spacing:2.000320pt;}
.ls51_c00466{letter-spacing:2.018560pt;}
.ls3c_c00466{letter-spacing:2.182720pt;}
.ls47_c00466{letter-spacing:2.225280pt;}
.ls8_c00466{letter-spacing:2.748160pt;}
.ls58_c00466{letter-spacing:3.040000pt;}
.ls79_c00466{letter-spacing:3.066667pt;}
.ws6_c00466{word-spacing:-1.477440pt;}
.ws7_c00466{word-spacing:0.000000pt;}
.ws3_c00466{word-spacing:0.066880pt;}
.ws2_c00466{word-spacing:1.586880pt;}
.ws0_c00466{word-spacing:7.216960pt;}
.ws5_c00466{word-spacing:8.250560pt;}
.ws1_c00466{word-spacing:8.274880pt;}
.ws4_c00466{word-spacing:13.965760pt;}
._13_c00466{margin-left:-12.217600pt;}
._15_c00466{margin-left:-11.058880pt;}
._e_c00466{margin-left:-7.377600pt;}
._14_c00466{margin-left:-5.952320pt;}
._16_c00466{margin-left:-4.223360pt;}
._5_c00466{margin-left:-3.179840pt;}
._f_c00466{margin-left:-1.457813pt;}
._10_c00466{width:0.999573pt;}
._8_c00466{width:1.921280pt;}
._7_c00466{width:3.684480pt;}
._6_c00466{width:4.809280pt;}
._0_c00466{width:5.812480pt;}
._4_c00466{width:6.943360pt;}
._2_c00466{width:8.366080pt;}
._12_c00466{width:9.629333pt;}
._1_c00466{width:10.549973pt;}
._9_c00466{width:11.551893pt;}
._b_c00466{width:12.778453pt;}
._3_c00466{width:14.288000pt;}
._c_c00466{width:15.338027pt;}
._d_c00466{width:16.757707pt;}
._11_c00466{width:18.951360pt;}
._a_c00466{width:20.685440pt;}
.fs0_c00466{font-size:51.733333pt;}
.fs3_c00466{font-size:59.200000pt;}
.fs1_c00466{font-size:60.800000pt;}
.fs2_c00466{font-size:61.333333pt;}
.fs4_c00466{font-size:62.933333pt;}
.y0_c00466{bottom:0.000000pt;}
.y1d_c00466{bottom:62.733339pt;}
.y1c_c00466{bottom:170.893339pt;}
.y1b_c00466{bottom:197.774939pt;}
.y1a_c00466{bottom:253.133339pt;}
.y19_c00466{bottom:253.140539pt;}
.y18_c00466{bottom:280.333339pt;}
.y17_c00466{bottom:334.413339pt;}
.y15_c00466{bottom:361.926139pt;}
.y16_c00466{bottom:361.933339pt;}
.y14_c00466{bottom:389.453339pt;}
.y13_c00466{bottom:444.800005pt;}
.y12_c00466{bottom:472.013339pt;}
.y11_c00466{bottom:526.720005pt;}
.y10_c00466{bottom:554.260539pt;}
.yf_c00466{bottom:581.453339pt;}
.ye_c00466{bottom:636.173339pt;}
.yd_c00466{bottom:663.680005pt;}
.yc_c00466{bottom:663.686139pt;}
.yb_c00466{bottom:691.215205pt;}
.ya_c00466{bottom:745.926139pt;}
.y9_c00466{bottom:773.444539pt;}
.y8_c00466{bottom:827.206939pt;}
.y7_c00466{bottom:855.047205pt;}
.y6_c00466{bottom:882.238405pt;}
.y5_c00466{bottom:936.320005pt;}
.y3_c00466{bottom:964.153605pt;}
.y4_c00466{bottom:964.160005pt;}
.y2_c00466{bottom:992.000005pt;}
.y1_c00466{bottom:1058.893339pt;}
.hb_c00466{height:50.773437pt;}
.h2_c00466{height:52.137500pt;}
.h3_c00466{height:59.671875pt;}
.ha_c00466{height:60.136565pt;}
.h8_c00466{height:60.140831pt;}
.h4_c00466{height:60.165365pt;}
.h6_c00466{height:60.189898pt;}
.h5_c00466{height:61.750150pt;}
.h9_c00466{height:61.765625pt;}
.h7_c00466{height:61.778950pt;}
.h1_c00466{height:1122.666667pt;}
.h0_c00466{height:1122.880005pt;}
.w1_c00466{width:793.333333pt;}
.w0_c00466{width:793.599999pt;}
.x0_c00466{left:0.000000pt;}
.x1_c00466{left:108.719999pt;}
.x8_c00466{left:109.666665pt;}
.xc_c00466{left:170.893332pt;}
.xa_c00466{left:175.226665pt;}
.x17_c00466{left:182.959999pt;}
.xb_c00466{left:193.386665pt;}
.x18_c00466{left:196.439999pt;}
.xd_c00466{left:203.346665pt;}
.x15_c00466{left:208.786665pt;}
.x6_c00466{left:212.226665pt;}
.x16_c00466{left:224.426665pt;}
.x7_c00466{left:243.373332pt;}
.x1a_c00466{left:248.559999pt;}
.x1b_c00466{left:263.199999pt;}
.x2_c00466{left:289.519999pt;}
.x3_c00466{left:305.186665pt;}
.x4_c00466{left:338.173332pt;}
.xe_c00466{left:360.253332pt;}
.x5_c00466{left:365.039999pt;}
.x20_c00466{left:375.533332pt;}
.xf_c00466{left:377.213332pt;}
.x1e_c00466{left:397.253332pt;}
.x1f_c00466{left:413.053332pt;}
.x1c_c00466{left:438.826665pt;}
.x1d_c00466{left:449.199999pt;}
.x10_c00466{left:506.493332pt;}
.x11_c00466{left:523.773332pt;}
.x12_c00466{left:572.093332pt;}
.x13_c00466{left:612.799999pt;}
.x14_c00466{left:629.919999pt;}
.x19_c00466{left:642.799999pt;}
.x9_c00466{left:656.826665pt;}
}





/* 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_c00467 {
    display:none;
  }
  .loading-indicator_c00467.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00467 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_c00467 { 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_c00467" -> "#page-container .classname_c00467")
 */
.pf_c00467 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00467 { /* 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_c00467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00467 { /* 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_c00467 { /* 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_c00467 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00467 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00467 {overflow:visible;}
  }
}
.c_c00467 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00467 { /* 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_c00467:after { /* webkit #35443 */
  content: '';
}
.t_c00467:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00467 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 */
}
.__c00467 { /* 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_c00467 { /* info for Javascript */
  display:none;
}
.l_c00467 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00467 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00467 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00467: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_c00467 {
    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_c00467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00467.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_c00467 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00467{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00467;src:url('chunks/assets/font_12d47052a4e2f5b4bab1ef6e.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.311035;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_c00467;src:url('chunks/assets/font_c6f8899f457a2a4fef82986e.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.284668;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_c00467;src:url('chunks/assets/font_4e31289e7c3b4db8e1b56e34.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;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:ff4_c00467;src:url('chunks/assets/font_b039e7c1b4602ced5d2ce8cd.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;line-height:1.284180;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_c00467;src:url('chunks/assets/font_e0ca5251fc758dd23b595f77.woff2')format("woff");}.ff5_c00467{font-family:ff5_c00467;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;}
.m8_c00467{transform:matrix(0.195308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195308,0.000000,0.000000,0.250000,0,0);}
.m6_c00467{transform:matrix(0.198313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198313,0.000000,0.000000,0.250000,0,0);}
.m10_c00467{transform:matrix(0.224149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224149,0.000000,0.000000,0.250000,0,0);}
.m4_c00467{transform:matrix(0.225337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225337,0.000000,0.000000,0.250000,0,0);}
.mf_c00467{transform:matrix(0.231829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231829,0.000000,0.000000,0.250000,0,0);}
.m11_c00467{transform:matrix(0.233128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233128,0.000000,0.000000,0.250000,0,0);}
.m2_c00467{transform:matrix(0.237931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237931,0.000000,0.000000,0.250000,0,0);}
.md_c00467{transform:matrix(0.238748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238748,0.000000,0.000000,0.250000,0,0);}
.m1_c00467{transform:matrix(0.243431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243431,0.000000,0.000000,0.250000,0,0);}
.mc_c00467{transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);}
.m7_c00467{transform:matrix(0.246664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246664,0.000000,0.000000,0.250000,0,0);}
.ma_c00467{transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);}
.m5_c00467{transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);}
.m0_c00467{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);}
.me_c00467{transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);}
.mb_c00467{transform:matrix(0.275060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275060,0.000000,0.000000,0.250000,0,0);}
.m3_c00467{transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);}
.m9_c00467{transform:matrix(0.281828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281828,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls80_c00467{letter-spacing:-2.583000px;}
.ls51_c00467{letter-spacing:-2.520000px;}
.ls46_c00467{letter-spacing:-2.436000px;}
.ls91_c00467{letter-spacing:-2.289000px;}
.ls8e_c00467{letter-spacing:-2.268000px;}
.ls88_c00467{letter-spacing:-2.206320px;}
.ls83_c00467{letter-spacing:-1.867140px;}
.ls85_c00467{letter-spacing:-1.845000px;}
.ls62_c00467{letter-spacing:-1.795680px;}
.ls7c_c00467{letter-spacing:-1.793340px;}
.ls84_c00467{letter-spacing:-1.712160px;}
.ls69_c00467{letter-spacing:-1.649520px;}
.ls82_c00467{letter-spacing:-1.638360px;}
.ls7d_c00467{letter-spacing:-1.630980px;}
.ls81_c00467{letter-spacing:-1.608840px;}
.ls57_c00467{letter-spacing:-1.586880px;}
.ls7f_c00467{letter-spacing:-1.571940px;}
.ls71_c00467{letter-spacing:-1.517280px;}
.ls58_c00467{letter-spacing:-1.468560px;}
.ls87_c00467{letter-spacing:-1.426800px;}
.ls68_c00467{letter-spacing:-1.294560px;}
.ls7e_c00467{letter-spacing:-1.276740px;}
.ls65_c00467{letter-spacing:-1.273680px;}
.ls53_c00467{letter-spacing:-1.190160px;}
.ls73_c00467{letter-spacing:-1.169280px;}
.ls50_c00467{letter-spacing:-1.113600px;}
.ls6d_c00467{letter-spacing:-1.023120px;}
.ls7b_c00467{letter-spacing:-1.009200px;}
.ls7a_c00467{letter-spacing:-0.974400px;}
.ls76_c00467{letter-spacing:-0.932640px;}
.ls52_c00467{letter-spacing:-0.856080px;}
.ls6e_c00467{letter-spacing:-0.835200px;}
.ls8d_c00467{letter-spacing:-0.828240px;}
.ls5f_c00467{letter-spacing:-0.814320px;}
.ls5e_c00467{letter-spacing:-0.800400px;}
.ls5b_c00467{letter-spacing:-0.730800px;}
.ls5a_c00467{letter-spacing:-0.709920px;}
.ls63_c00467{letter-spacing:-0.675120px;}
.ls70_c00467{letter-spacing:-0.528960px;}
.ls59_c00467{letter-spacing:-0.515040px;}
.ls75_c00467{letter-spacing:-0.454860px;}
.ls49_c00467{letter-spacing:-0.403680px;}
.ls55_c00467{letter-spacing:-0.389760px;}
.ls64_c00467{letter-spacing:-0.382800px;}
.ls56_c00467{letter-spacing:-0.375840px;}
.ls61_c00467{letter-spacing:-0.341040px;}
.ls6f_c00467{letter-spacing:-0.292320px;}
.ls79_c00467{letter-spacing:-0.264480px;}
.ls6b_c00467{letter-spacing:-0.208800px;}
.ls4e_c00467{letter-spacing:-0.194880px;}
.ls60_c00467{letter-spacing:-0.132240px;}
.ls48_c00467{letter-spacing:-0.125280px;}
.ls4d_c00467{letter-spacing:-0.111360px;}
.ls6c_c00467{letter-spacing:-0.097440px;}
.ls78_c00467{letter-spacing:-0.090480px;}
.ls5d_c00467{letter-spacing:-0.083520px;}
.ls8b_c00467{letter-spacing:-0.055680px;}
.ls89_c00467{letter-spacing:-0.048720px;}
.ls5c_c00467{letter-spacing:-0.027840px;}
.ls47_c00467{letter-spacing:0.000000px;}
.ls10_c00467{letter-spacing:0.020880px;}
.ls16_c00467{letter-spacing:0.048720px;}
.ls72_c00467{letter-spacing:0.062640px;}
.ls15_c00467{letter-spacing:0.097440px;}
.ls11_c00467{letter-spacing:0.104400px;}
.ls4b_c00467{letter-spacing:0.125280px;}
.ls4a_c00467{letter-spacing:0.153120px;}
.ls19_c00467{letter-spacing:0.174000px;}
.lsc_c00467{letter-spacing:0.187920px;}
.ls8a_c00467{letter-spacing:0.201840px;}
.ls90_c00467{letter-spacing:0.208800px;}
.ls24_c00467{letter-spacing:0.222720px;}
.ls6a_c00467{letter-spacing:0.229680px;}
.ls30_c00467{letter-spacing:0.250560px;}
.ls4_c00467{letter-spacing:0.257520px;}
.ls3e_c00467{letter-spacing:0.285360px;}
.ls74_c00467{letter-spacing:0.306240px;}
.ls8c_c00467{letter-spacing:0.313200px;}
.ls3_c00467{letter-spacing:0.327120px;}
.ls1c_c00467{letter-spacing:0.341040px;}
.ls9_c00467{letter-spacing:0.354960px;}
.ls39_c00467{letter-spacing:0.361920px;}
.ls1a_c00467{letter-spacing:0.368880px;}
.ls1d_c00467{letter-spacing:0.375840px;}
.lsa_c00467{letter-spacing:0.382800px;}
.ls77_c00467{letter-spacing:0.410640px;}
.ls36_c00467{letter-spacing:0.424560px;}
.ls3c_c00467{letter-spacing:0.452400px;}
.ls8f_c00467{letter-spacing:0.459360px;}
.ls3d_c00467{letter-spacing:0.487200px;}
.ls13_c00467{letter-spacing:0.501120px;}
.ls1b_c00467{letter-spacing:0.528960px;}
.ls41_c00467{letter-spacing:0.535920px;}
.ls67_c00467{letter-spacing:0.549840px;}
.ls42_c00467{letter-spacing:0.563760px;}
.ls27_c00467{letter-spacing:0.570720px;}
.ls2_c00467{letter-spacing:0.577680px;}
.ls1_c00467{letter-spacing:0.591600px;}
.lsd_c00467{letter-spacing:0.612480px;}
.lsf_c00467{letter-spacing:0.619440px;}
.ls0_c00467{letter-spacing:0.682080px;}
.ls20_c00467{letter-spacing:0.696000px;}
.ls3b_c00467{letter-spacing:0.702960px;}
.ls2e_c00467{letter-spacing:0.737760px;}
.ls7_c00467{letter-spacing:0.758640px;}
.ls40_c00467{letter-spacing:0.828240px;}
.ls3f_c00467{letter-spacing:0.835200px;}
.ls17_c00467{letter-spacing:0.842160px;}
.ls6_c00467{letter-spacing:0.849120px;}
.ls43_c00467{letter-spacing:0.856080px;}
.ls38_c00467{letter-spacing:0.870000px;}
.ls26_c00467{letter-spacing:0.883920px;}
.ls8_c00467{letter-spacing:0.890880px;}
.ls2f_c00467{letter-spacing:0.897840px;}
.ls45_c00467{letter-spacing:0.918720px;}
.ls5_c00467{letter-spacing:0.939600px;}
.ls54_c00467{letter-spacing:0.946560px;}
.ls34_c00467{letter-spacing:0.953520px;}
.ls2b_c00467{letter-spacing:0.981360px;}
.lse_c00467{letter-spacing:0.988320px;}
.ls23_c00467{letter-spacing:1.141440px;}
.ls4c_c00467{letter-spacing:1.155360px;}
.ls1f_c00467{letter-spacing:1.190160px;}
.lsb_c00467{letter-spacing:1.224960px;}
.ls12_c00467{letter-spacing:1.266720px;}
.ls22_c00467{letter-spacing:1.287600px;}
.ls1e_c00467{letter-spacing:1.322400px;}
.ls2a_c00467{letter-spacing:1.350240px;}
.ls21_c00467{letter-spacing:1.357200px;}
.ls3a_c00467{letter-spacing:1.378080px;}
.ls31_c00467{letter-spacing:1.398960px;}
.ls2c_c00467{letter-spacing:1.433760px;}
.ls35_c00467{letter-spacing:1.545120px;}
.ls86_c00467{letter-spacing:1.586880px;}
.ls29_c00467{letter-spacing:1.600800px;}
.ls2d_c00467{letter-spacing:1.607760px;}
.ls28_c00467{letter-spacing:1.802640px;}
.ls44_c00467{letter-spacing:1.814400px;}
.ls66_c00467{letter-spacing:1.839960px;}
.ls37_c00467{letter-spacing:2.044260px;}
.ls33_c00467{letter-spacing:2.143680px;}
.ls32_c00467{letter-spacing:2.164560px;}
.ls14_c00467{letter-spacing:2.241120px;}
.ls18_c00467{letter-spacing:2.380320px;}
.ls25_c00467{letter-spacing:2.867520px;}
.ls4f_c00467{letter-spacing:3.480000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{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__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00467{word-spacing:-1.983600px;}
.ws6_c00467{word-spacing:-1.378080px;}
.wsa_c00467{word-spacing:0.000000px;}
.ws2_c00467{word-spacing:1.545120px;}
.ws0_c00467{word-spacing:3.591360px;}
.ws3_c00467{word-spacing:4.599840px;}
.ws5_c00467{word-spacing:7.321920px;}
.ws9_c00467{word-spacing:7.878720px;}
.ws1_c00467{word-spacing:9.897120px;}
.ws4_c00467{word-spacing:30.052320px;}
.ws7_c00467{word-spacing:31.362720px;}
._1a_c00467{margin-left:-22.538640px;}
._19_c00467{margin-left:-18.796560px;}
._a_c00467{margin-left:-8.727840px;}
._0_c00467{margin-left:-7.077000px;}
._8_c00467{margin-left:-5.303520px;}
._9_c00467{margin-left:-3.354720px;}
._4_c00467{margin-left:-1.990560px;}
._b_c00467{width:1.057920px;}
._1_c00467{width:2.213280px;}
._3_c00467{width:4.252560px;}
._c_c00467{width:5.967120px;}
._5_c00467{width:7.695480px;}
._e_c00467{width:8.827920px;}
._f_c00467{width:10.057200px;}
._6_c00467{width:11.797200px;}
._2_c00467{width:13.224000px;}
._7_c00467{width:14.295840px;}
._d_c00467{width:19.000800px;}
._15_c00467{width:20.803440px;}
._1b_c00467{width:22.390920px;}
._14_c00467{width:24.360000px;}
._13_c00467{width:26.378880px;}
._16_c00467{width:27.519360px;}
._10_c00467{width:29.676960px;}
._12_c00467{width:31.257840px;}
._17_c00467{width:32.955120px;}
._18_c00467{width:34.241460px;}
._11_c00467{width:39.184800px;}
.fc0_c00467{color:transparent;}
.fs0_c00467{font-size:57.600000px;}
.fs5_c00467{font-size:64.800000px;}
.fs9_c00467{font-size:65.400000px;}
.fs2_c00467{font-size:66.600000px;}
.fs4_c00467{font-size:68.400000px;}
.fs1_c00467{font-size:69.600000px;}
.fs3_c00467{font-size:72.000000px;}
.fs6_c00467{font-size:73.800000px;}
.fs7_c00467{font-size:79.800000px;}
.fs8_c00467{font-size:103.800000px;}
.y0_c00467{bottom:0.000000px;}
.y24_c00467{bottom:69.135000px;}
.y23_c00467{bottom:128.160000px;}
.y21_c00467{bottom:159.473400px;}
.y22_c00467{bottom:159.480000px;}
.y20_c00467{bottom:190.080000px;}
.y1f_c00467{bottom:190.084200px;}
.y1e_c00467{bottom:251.645400px;}
.y1d_c00467{bottom:282.600000px;}
.y1c_c00467{bottom:313.935000px;}
.y1b_c00467{bottom:375.855000px;}
.y1a_c00467{bottom:375.860400px;}
.y19_c00467{bottom:406.815000px;}
.y18_c00467{bottom:467.997600px;}
.y17_c00467{bottom:499.335000px;}
.y16_c00467{bottom:529.569600px;}
.y15_c00467{bottom:561.255000px;}
.y14_c00467{bottom:623.175000px;}
.y13_c00467{bottom:653.773800px;}
.y12_c00467{bottom:715.335000px;}
.y11_c00467{bottom:715.342800px;}
.yf_c00467{bottom:746.273400px;}
.y10_c00467{bottom:746.280000px;}
.ye_c00467{bottom:808.200000px;}
.yc_c00467{bottom:838.810800px;}
.yd_c00467{bottom:838.815000px;}
.ya_c00467{bottom:900.716400px;}
.yb_c00467{bottom:900.720000px;}
.y8_c00467{bottom:930.970800px;}
.y9_c00467{bottom:930.975000px;}
.y7_c00467{bottom:992.880000px;}
.y6_c00467{bottom:992.888400px;}
.y5_c00467{bottom:1023.495000px;}
.y3_c00467{bottom:1086.130800px;}
.y4_c00467{bottom:1086.135000px;}
.y2_c00467{bottom:1116.720000px;}
.y1_c00467{bottom:1193.775000px;}
.h2_c00467{height:58.050000px;}
.h10_c00467{height:64.186523px;}
.hf_c00467{height:67.584375px;}
.h5_c00467{height:68.274609px;}
.h3_c00467{height:68.308594px;}
.h7_c00467{height:68.325394px;}
.h8_c00467{height:68.334994px;}
.h4_c00467{height:69.461719px;}
.h9_c00467{height:71.343863px;}
.hb_c00467{height:72.409064px;}
.he_c00467{height:72.413864px;}
.hd_c00467{height:72.430664px;}
.h6_c00467{height:72.562500px;}
.ha_c00467{height:78.319336px;}
.hc_c00467{height:101.874023px;}
.h1_c00467{height:1263.000000px;}
.h0_c00467{height:1263.240000px;}
.w1_c00467{width:892.500000px;}
.w0_c00467{width:892.800000px;}
.x0_c00467{left:0.000000px;}
.x1d_c00467{left:117.555000px;}
.x27_c00467{left:118.595400px;}
.x1c_c00467{left:119.860200px;}
.x14_c00467{left:121.215000px;}
.xd_c00467{left:122.941800px;}
.x5_c00467{left:123.973200px;}
.x2_c00467{left:125.460000px;}
.x1_c00467{left:126.630000px;}
.x19_c00467{left:167.250000px;}
.x1a_c00467{left:197.175000px;}
.x20_c00467{left:205.095000px;}
.x3_c00467{left:206.205000px;}
.x17_c00467{left:215.850000px;}
.x1b_c00467{left:218.640000px;}
.x21_c00467{left:232.515000px;}
.x10_c00467{left:236.415000px;}
.x4_c00467{left:239.760000px;}
.x8_c00467{left:241.920000px;}
.x18_c00467{left:247.140000px;}
.x2a_c00467{left:315.900000px;}
.x6_c00467{left:338.580000px;}
.x2b_c00467{left:342.480000px;}
.x7_c00467{left:355.830000px;}
.x11_c00467{left:387.840000px;}
.x12_c00467{left:423.330000px;}
.x26_c00467{left:437.955000px;}
.x28_c00467{left:457.095000px;}
.xb_c00467{left:465.165000px;}
.x29_c00467{left:480.360000px;}
.xc_c00467{left:490.830000px;}
.x15_c00467{left:507.765000px;}
.x16_c00467{left:534.570000px;}
.x1e_c00467{left:545.220000px;}
.x9_c00467{left:559.260000px;}
.x1f_c00467{left:576.720000px;}
.xa_c00467{left:581.055000px;}
.x2c_c00467{left:607.545000px;}
.x2d_c00467{left:626.535000px;}
.x22_c00467{left:628.365000px;}
.x24_c00467{left:652.140000px;}
.x23_c00467{left:655.755000px;}
.x25_c00467{left:671.160000px;}
.xe_c00467{left:698.250000px;}
.xf_c00467{left:717.600000px;}
.x13_c00467{left:729.225000px;}
.x2e_c00467{left:737.145000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls80_c00467{letter-spacing:-2.296000pt;}
.ls51_c00467{letter-spacing:-2.240000pt;}
.ls46_c00467{letter-spacing:-2.165333pt;}
.ls91_c00467{letter-spacing:-2.034667pt;}
.ls8e_c00467{letter-spacing:-2.016000pt;}
.ls88_c00467{letter-spacing:-1.961173pt;}
.ls83_c00467{letter-spacing:-1.659680pt;}
.ls85_c00467{letter-spacing:-1.640000pt;}
.ls62_c00467{letter-spacing:-1.596160pt;}
.ls7c_c00467{letter-spacing:-1.594080pt;}
.ls84_c00467{letter-spacing:-1.521920pt;}
.ls69_c00467{letter-spacing:-1.466240pt;}
.ls82_c00467{letter-spacing:-1.456320pt;}
.ls7d_c00467{letter-spacing:-1.449760pt;}
.ls81_c00467{letter-spacing:-1.430080pt;}
.ls57_c00467{letter-spacing:-1.410560pt;}
.ls7f_c00467{letter-spacing:-1.397280pt;}
.ls71_c00467{letter-spacing:-1.348693pt;}
.ls58_c00467{letter-spacing:-1.305387pt;}
.ls87_c00467{letter-spacing:-1.268267pt;}
.ls68_c00467{letter-spacing:-1.150720pt;}
.ls7e_c00467{letter-spacing:-1.134880pt;}
.ls65_c00467{letter-spacing:-1.132160pt;}
.ls53_c00467{letter-spacing:-1.057920pt;}
.ls73_c00467{letter-spacing:-1.039360pt;}
.ls50_c00467{letter-spacing:-0.989867pt;}
.ls6d_c00467{letter-spacing:-0.909440pt;}
.ls7b_c00467{letter-spacing:-0.897067pt;}
.ls7a_c00467{letter-spacing:-0.866133pt;}
.ls76_c00467{letter-spacing:-0.829013pt;}
.ls52_c00467{letter-spacing:-0.760960pt;}
.ls6e_c00467{letter-spacing:-0.742400pt;}
.ls8d_c00467{letter-spacing:-0.736213pt;}
.ls5f_c00467{letter-spacing:-0.723840pt;}
.ls5e_c00467{letter-spacing:-0.711467pt;}
.ls5b_c00467{letter-spacing:-0.649600pt;}
.ls5a_c00467{letter-spacing:-0.631040pt;}
.ls63_c00467{letter-spacing:-0.600107pt;}
.ls70_c00467{letter-spacing:-0.470187pt;}
.ls59_c00467{letter-spacing:-0.457813pt;}
.ls75_c00467{letter-spacing:-0.404320pt;}
.ls49_c00467{letter-spacing:-0.358827pt;}
.ls55_c00467{letter-spacing:-0.346453pt;}
.ls64_c00467{letter-spacing:-0.340267pt;}
.ls56_c00467{letter-spacing:-0.334080pt;}
.ls61_c00467{letter-spacing:-0.303147pt;}
.ls6f_c00467{letter-spacing:-0.259840pt;}
.ls79_c00467{letter-spacing:-0.235093pt;}
.ls6b_c00467{letter-spacing:-0.185600pt;}
.ls4e_c00467{letter-spacing:-0.173227pt;}
.ls60_c00467{letter-spacing:-0.117547pt;}
.ls48_c00467{letter-spacing:-0.111360pt;}
.ls4d_c00467{letter-spacing:-0.098987pt;}
.ls6c_c00467{letter-spacing:-0.086613pt;}
.ls78_c00467{letter-spacing:-0.080427pt;}
.ls5d_c00467{letter-spacing:-0.074240pt;}
.ls8b_c00467{letter-spacing:-0.049493pt;}
.ls89_c00467{letter-spacing:-0.043307pt;}
.ls5c_c00467{letter-spacing:-0.024747pt;}
.ls47_c00467{letter-spacing:0.000000pt;}
.ls10_c00467{letter-spacing:0.018560pt;}
.ls16_c00467{letter-spacing:0.043307pt;}
.ls72_c00467{letter-spacing:0.055680pt;}
.ls15_c00467{letter-spacing:0.086613pt;}
.ls11_c00467{letter-spacing:0.092800pt;}
.ls4b_c00467{letter-spacing:0.111360pt;}
.ls4a_c00467{letter-spacing:0.136107pt;}
.ls19_c00467{letter-spacing:0.154667pt;}
.lsc_c00467{letter-spacing:0.167040pt;}
.ls8a_c00467{letter-spacing:0.179413pt;}
.ls90_c00467{letter-spacing:0.185600pt;}
.ls24_c00467{letter-spacing:0.197973pt;}
.ls6a_c00467{letter-spacing:0.204160pt;}
.ls30_c00467{letter-spacing:0.222720pt;}
.ls4_c00467{letter-spacing:0.228907pt;}
.ls3e_c00467{letter-spacing:0.253653pt;}
.ls74_c00467{letter-spacing:0.272213pt;}
.ls8c_c00467{letter-spacing:0.278400pt;}
.ls3_c00467{letter-spacing:0.290773pt;}
.ls1c_c00467{letter-spacing:0.303147pt;}
.ls9_c00467{letter-spacing:0.315520pt;}
.ls39_c00467{letter-spacing:0.321707pt;}
.ls1a_c00467{letter-spacing:0.327893pt;}
.ls1d_c00467{letter-spacing:0.334080pt;}
.lsa_c00467{letter-spacing:0.340267pt;}
.ls77_c00467{letter-spacing:0.365013pt;}
.ls36_c00467{letter-spacing:0.377387pt;}
.ls3c_c00467{letter-spacing:0.402133pt;}
.ls8f_c00467{letter-spacing:0.408320pt;}
.ls3d_c00467{letter-spacing:0.433067pt;}
.ls13_c00467{letter-spacing:0.445440pt;}
.ls1b_c00467{letter-spacing:0.470187pt;}
.ls41_c00467{letter-spacing:0.476373pt;}
.ls67_c00467{letter-spacing:0.488747pt;}
.ls42_c00467{letter-spacing:0.501120pt;}
.ls27_c00467{letter-spacing:0.507307pt;}
.ls2_c00467{letter-spacing:0.513493pt;}
.ls1_c00467{letter-spacing:0.525867pt;}
.lsd_c00467{letter-spacing:0.544427pt;}
.lsf_c00467{letter-spacing:0.550613pt;}
.ls0_c00467{letter-spacing:0.606293pt;}
.ls20_c00467{letter-spacing:0.618667pt;}
.ls3b_c00467{letter-spacing:0.624853pt;}
.ls2e_c00467{letter-spacing:0.655787pt;}
.ls7_c00467{letter-spacing:0.674347pt;}
.ls40_c00467{letter-spacing:0.736213pt;}
.ls3f_c00467{letter-spacing:0.742400pt;}
.ls17_c00467{letter-spacing:0.748587pt;}
.ls6_c00467{letter-spacing:0.754773pt;}
.ls43_c00467{letter-spacing:0.760960pt;}
.ls38_c00467{letter-spacing:0.773333pt;}
.ls26_c00467{letter-spacing:0.785707pt;}
.ls8_c00467{letter-spacing:0.791893pt;}
.ls2f_c00467{letter-spacing:0.798080pt;}
.ls45_c00467{letter-spacing:0.816640pt;}
.ls5_c00467{letter-spacing:0.835200pt;}
.ls54_c00467{letter-spacing:0.841387pt;}
.ls34_c00467{letter-spacing:0.847573pt;}
.ls2b_c00467{letter-spacing:0.872320pt;}
.lse_c00467{letter-spacing:0.878507pt;}
.ls23_c00467{letter-spacing:1.014613pt;}
.ls4c_c00467{letter-spacing:1.026987pt;}
.ls1f_c00467{letter-spacing:1.057920pt;}
.lsb_c00467{letter-spacing:1.088853pt;}
.ls12_c00467{letter-spacing:1.125973pt;}
.ls22_c00467{letter-spacing:1.144533pt;}
.ls1e_c00467{letter-spacing:1.175467pt;}
.ls2a_c00467{letter-spacing:1.200213pt;}
.ls21_c00467{letter-spacing:1.206400pt;}
.ls3a_c00467{letter-spacing:1.224960pt;}
.ls31_c00467{letter-spacing:1.243520pt;}
.ls2c_c00467{letter-spacing:1.274453pt;}
.ls35_c00467{letter-spacing:1.373440pt;}
.ls86_c00467{letter-spacing:1.410560pt;}
.ls29_c00467{letter-spacing:1.422933pt;}
.ls2d_c00467{letter-spacing:1.429120pt;}
.ls28_c00467{letter-spacing:1.602347pt;}
.ls44_c00467{letter-spacing:1.612800pt;}
.ls66_c00467{letter-spacing:1.635520pt;}
.ls37_c00467{letter-spacing:1.817120pt;}
.ls33_c00467{letter-spacing:1.905493pt;}
.ls32_c00467{letter-spacing:1.924053pt;}
.ls14_c00467{letter-spacing:1.992107pt;}
.ls18_c00467{letter-spacing:2.115840pt;}
.ls25_c00467{letter-spacing:2.548907pt;}
.ls4f_c00467{letter-spacing:3.093333pt;}
.ws8_c00467{word-spacing:-1.763200pt;}
.ws6_c00467{word-spacing:-1.224960pt;}
.wsa_c00467{word-spacing:0.000000pt;}
.ws2_c00467{word-spacing:1.373440pt;}
.ws0_c00467{word-spacing:3.192320pt;}
.ws3_c00467{word-spacing:4.088747pt;}
.ws5_c00467{word-spacing:6.508373pt;}
.ws9_c00467{word-spacing:7.003307pt;}
.ws1_c00467{word-spacing:8.797440pt;}
.ws4_c00467{word-spacing:26.713173pt;}
.ws7_c00467{word-spacing:27.877973pt;}
._1a_c00467{margin-left:-20.034347pt;}
._19_c00467{margin-left:-16.708053pt;}
._a_c00467{margin-left:-7.758080pt;}
._0_c00467{margin-left:-6.290667pt;}
._8_c00467{margin-left:-4.714240pt;}
._9_c00467{margin-left:-2.981973pt;}
._4_c00467{margin-left:-1.769387pt;}
._b_c00467{width:0.940373pt;}
._1_c00467{width:1.967360pt;}
._3_c00467{width:3.780053pt;}
._c_c00467{width:5.304107pt;}
._5_c00467{width:6.840427pt;}
._e_c00467{width:7.847040pt;}
._f_c00467{width:8.939733pt;}
._6_c00467{width:10.486400pt;}
._2_c00467{width:11.754667pt;}
._7_c00467{width:12.707413pt;}
._d_c00467{width:16.889600pt;}
._15_c00467{width:18.491947pt;}
._1b_c00467{width:19.903040pt;}
._14_c00467{width:21.653333pt;}
._13_c00467{width:23.447893pt;}
._16_c00467{width:24.461653pt;}
._10_c00467{width:26.379520pt;}
._12_c00467{width:27.784747pt;}
._17_c00467{width:29.293440pt;}
._18_c00467{width:30.436853pt;}
._11_c00467{width:34.830933pt;}
.fs0_c00467{font-size:51.200000pt;}
.fs5_c00467{font-size:57.600000pt;}
.fs9_c00467{font-size:58.133333pt;}
.fs2_c00467{font-size:59.200000pt;}
.fs4_c00467{font-size:60.800000pt;}
.fs1_c00467{font-size:61.866667pt;}
.fs3_c00467{font-size:64.000000pt;}
.fs6_c00467{font-size:65.600000pt;}
.fs7_c00467{font-size:70.933333pt;}
.fs8_c00467{font-size:92.266667pt;}
.y0_c00467{bottom:0.000000pt;}
.y24_c00467{bottom:61.453333pt;}
.y23_c00467{bottom:113.920000pt;}
.y21_c00467{bottom:141.754133pt;}
.y22_c00467{bottom:141.760000pt;}
.y20_c00467{bottom:168.960000pt;}
.y1f_c00467{bottom:168.963733pt;}
.y1e_c00467{bottom:223.684800pt;}
.y1d_c00467{bottom:251.200000pt;}
.y1c_c00467{bottom:279.053333pt;}
.y1b_c00467{bottom:334.093333pt;}
.y1a_c00467{bottom:334.098133pt;}
.y19_c00467{bottom:361.613333pt;}
.y18_c00467{bottom:415.997867pt;}
.y17_c00467{bottom:443.853333pt;}
.y16_c00467{bottom:470.728533pt;}
.y15_c00467{bottom:498.893333pt;}
.y14_c00467{bottom:553.933333pt;}
.y13_c00467{bottom:581.132267pt;}
.y12_c00467{bottom:635.853333pt;}
.y11_c00467{bottom:635.860267pt;}
.yf_c00467{bottom:663.354133pt;}
.y10_c00467{bottom:663.360000pt;}
.ye_c00467{bottom:718.400000pt;}
.yc_c00467{bottom:745.609600pt;}
.yd_c00467{bottom:745.613333pt;}
.ya_c00467{bottom:800.636800pt;}
.yb_c00467{bottom:800.640000pt;}
.y8_c00467{bottom:827.529600pt;}
.y9_c00467{bottom:827.533333pt;}
.y7_c00467{bottom:882.560000pt;}
.y6_c00467{bottom:882.567467pt;}
.y5_c00467{bottom:909.773333pt;}
.y3_c00467{bottom:965.449600pt;}
.y4_c00467{bottom:965.453333pt;}
.y2_c00467{bottom:992.640000pt;}
.y1_c00467{bottom:1061.133333pt;}
.h2_c00467{height:51.600000pt;}
.h10_c00467{height:57.054688pt;}
.hf_c00467{height:60.075000pt;}
.h5_c00467{height:60.688542pt;}
.h3_c00467{height:60.718750pt;}
.h7_c00467{height:60.733683pt;}
.h8_c00467{height:60.742217pt;}
.h4_c00467{height:61.743750pt;}
.h9_c00467{height:63.416767pt;}
.hb_c00467{height:64.363613pt;}
.he_c00467{height:64.367879pt;}
.hd_c00467{height:64.382813pt;}
.h6_c00467{height:64.500000pt;}
.ha_c00467{height:69.617188pt;}
.hc_c00467{height:90.554688pt;}
.h1_c00467{height:1122.666667pt;}
.h0_c00467{height:1122.880000pt;}
.w1_c00467{width:793.333333pt;}
.w0_c00467{width:793.600000pt;}
.x0_c00467{left:0.000000pt;}
.x1d_c00467{left:104.493333pt;}
.x27_c00467{left:105.418133pt;}
.x1c_c00467{left:106.542400pt;}
.x14_c00467{left:107.746667pt;}
.xd_c00467{left:109.281600pt;}
.x5_c00467{left:110.198400pt;}
.x2_c00467{left:111.520000pt;}
.x1_c00467{left:112.560000pt;}
.x19_c00467{left:148.666667pt;}
.x1a_c00467{left:175.266667pt;}
.x20_c00467{left:182.306667pt;}
.x3_c00467{left:183.293333pt;}
.x17_c00467{left:191.866667pt;}
.x1b_c00467{left:194.346667pt;}
.x21_c00467{left:206.680000pt;}
.x10_c00467{left:210.146667pt;}
.x4_c00467{left:213.120000pt;}
.x8_c00467{left:215.040000pt;}
.x18_c00467{left:219.680000pt;}
.x2a_c00467{left:280.800000pt;}
.x6_c00467{left:300.960000pt;}
.x2b_c00467{left:304.426667pt;}
.x7_c00467{left:316.293333pt;}
.x11_c00467{left:344.746667pt;}
.x12_c00467{left:376.293333pt;}
.x26_c00467{left:389.293333pt;}
.x28_c00467{left:406.306667pt;}
.xb_c00467{left:413.480000pt;}
.x29_c00467{left:426.986667pt;}
.xc_c00467{left:436.293333pt;}
.x15_c00467{left:451.346667pt;}
.x16_c00467{left:475.173333pt;}
.x1e_c00467{left:484.640000pt;}
.x9_c00467{left:497.120000pt;}
.x1f_c00467{left:512.640000pt;}
.xa_c00467{left:516.493333pt;}
.x2c_c00467{left:540.040000pt;}
.x2d_c00467{left:556.920000pt;}
.x22_c00467{left:558.546667pt;}
.x24_c00467{left:579.680000pt;}
.x23_c00467{left:582.893333pt;}
.x25_c00467{left:596.586667pt;}
.xe_c00467{left:620.666667pt;}
.xf_c00467{left:637.866667pt;}
.x13_c00467{left:648.200000pt;}
.x2e_c00467{left:655.240000pt;}
}





/* 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_c00468 {
    display:none;
  }
  .loading-indicator_c00468.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00468 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_c00468 { 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_c00468" -> "#page-container .classname_c00468")
 */
.pf_c00468 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00468 { /* 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_c00468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00468 { /* 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_c00468 { /* 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_c00468 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00468 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00468 {overflow:visible;}
  }
}
.c_c00468 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00468 { /* 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_c00468:after { /* webkit #35443 */
  content: '';
}
.t_c00468:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00468 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 */
}
.__c00468 { /* 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_c00468 { /* info for Javascript */
  display:none;
}
.l_c00468 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00468 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00468 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00468: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_c00468 {
    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_c00468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00468.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_c00468 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00468{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00468;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.311035;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_c00468;src:url('chunks/assets/font_3eeede2532e902f6bfb5dcba.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.284668;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_c00468;src:url('chunks/assets/font_b8d3218b418abffebd8c73b0.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.284180;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_c00468;src:url('chunks/assets/font_1a2c6017df13bbda0947932d.woff2')format("woff");}.ff4_c00468{font-family:ff4_c00468;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:ff5_c00468;src:url('chunks/assets/font_20f753b2cff3bb5e76d3068f.woff2')format("woff");}.ff5_c00468{font-family:ff5_c00468;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;}
.mf_c00468{transform:matrix(0.199399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199399,0.000000,0.000000,0.250000,0,0);}
.m4_c00468{transform:matrix(0.224285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224285,0.000000,0.000000,0.250000,0,0);}
.me_c00468{transform:matrix(0.226449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226449,0.000000,0.000000,0.250000,0,0);}
.m7_c00468{transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);}
.ma_c00468{transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);}
.m6_c00468{transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);}
.md_c00468{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m0_c00468{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_c00468{transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);}
.m9_c00468{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.m8_c00468{transform:matrix(0.259316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259316,0.000000,0.000000,0.250000,0,0);}
.m10_c00468{transform:matrix(0.261673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261673,0.000000,0.000000,0.250000,0,0);}
.mb_c00468{transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);}
.mc_c00468{transform:matrix(0.295961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295961,0.000000,0.000000,0.250000,0,0);}
.m2_c00468{transform:matrix(0.299908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299908,0.000000,0.000000,0.250000,0,0);}
.m5_c00468{transform:matrix(0.322930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322930,0.000000,0.000000,0.250000,0,0);}
.m3_c00468{transform:matrix(0.324360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324360,0.000000,0.000000,0.250000,0,0);}
.v1_c00468{vertical-align:-2.940000px;}
.v0_c00468{vertical-align:0.000000px;}
.v2_c00468{vertical-align:2.940000px;}
.ls61_c00468{letter-spacing:-2.415000px;}
.ls56_c00468{letter-spacing:-2.394000px;}
.ls5e_c00468{letter-spacing:-2.366640px;}
.ls54_c00468{letter-spacing:-2.305080px;}
.ls7b_c00468{letter-spacing:-2.247000px;}
.ls5d_c00468{letter-spacing:-2.058840px;}
.ls70_c00468{letter-spacing:-1.904400px;}
.ls6f_c00468{letter-spacing:-1.897500px;}
.ls5a_c00468{letter-spacing:-1.890600px;}
.ls8a_c00468{letter-spacing:-1.826280px;}
.ls72_c00468{letter-spacing:-1.792080px;}
.ls6b_c00468{letter-spacing:-1.766400px;}
.ls51_c00468{letter-spacing:-1.642200px;}
.ls82_c00468{letter-spacing:-1.634760px;}
.ls6e_c00468{letter-spacing:-1.573200px;}
.ls6a_c00468{letter-spacing:-1.524900px;}
.ls62_c00468{letter-spacing:-1.421400px;}
.ls5c_c00468{letter-spacing:-1.258560px;}
.ls50_c00468{letter-spacing:-1.193700px;}
.ls86_c00468{letter-spacing:-1.186800px;}
.ls7c_c00468{letter-spacing:-1.124700px;}
.ls7d_c00468{letter-spacing:-1.083300px;}
.ls89_c00468{letter-spacing:-1.080720px;}
.ls47_c00468{letter-spacing:-0.986700px;}
.ls52_c00468{letter-spacing:-0.964440px;}
.ls53_c00468{letter-spacing:-0.916560px;}
.ls74_c00468{letter-spacing:-0.821100px;}
.ls64_c00468{letter-spacing:-0.745560px;}
.ls4f_c00468{letter-spacing:-0.703800px;}
.ls5f_c00468{letter-spacing:-0.697680px;}
.ls63_c00468{letter-spacing:-0.669300px;}
.ls43_c00468{letter-spacing:-0.656640px;}
.ls87_c00468{letter-spacing:-0.648600px;}
.ls88_c00468{letter-spacing:-0.579600px;}
.ls75_c00468{letter-spacing:-0.538200px;}
.ls44_c00468{letter-spacing:-0.526680px;}
.ls4e_c00468{letter-spacing:-0.478800px;}
.ls45_c00468{letter-spacing:-0.430920px;}
.ls48_c00468{letter-spacing:-0.403560px;}
.ls6d_c00468{letter-spacing:-0.379500px;}
.ls8c_c00468{letter-spacing:-0.328320px;}
.ls80_c00468{letter-spacing:-0.205200px;}
.ls5b_c00468{letter-spacing:-0.124200px;}
.ls85_c00468{letter-spacing:-0.089700px;}
.ls57_c00468{letter-spacing:-0.088920px;}
.ls46_c00468{letter-spacing:-0.075240px;}
.ls66_c00468{letter-spacing:-0.068400px;}
.ls4d_c00468{letter-spacing:-0.041040px;}
.ls7e_c00468{letter-spacing:-0.020520px;}
.ls4b_c00468{letter-spacing:0.000000px;}
.ls24_c00468{letter-spacing:0.006900px;}
.ls3d_c00468{letter-spacing:0.034200px;}
.ls49_c00468{letter-spacing:0.041040px;}
.ls30_c00468{letter-spacing:0.048300px;}
.ls1a_c00468{letter-spacing:0.061560px;}
.ls7_c00468{letter-spacing:0.110400px;}
.ls27_c00468{letter-spacing:0.116280px;}
.ls8e_c00468{letter-spacing:0.118680px;}
.ls76_c00468{letter-spacing:0.177840px;}
.ls1_c00468{letter-spacing:0.198360px;}
.ls15_c00468{letter-spacing:0.212040px;}
.ls16_c00468{letter-spacing:0.227700px;}
.ls2a_c00468{letter-spacing:0.239400px;}
.ls7f_c00468{letter-spacing:0.246240px;}
.ls9_c00468{letter-spacing:0.287280px;}
.ls60_c00468{letter-spacing:0.317400px;}
.ls29_c00468{letter-spacing:0.321480px;}
.ls81_c00468{letter-spacing:0.335160px;}
.ls73_c00468{letter-spacing:0.348840px;}
.ls59_c00468{letter-spacing:0.362520px;}
.ls1c_c00468{letter-spacing:0.396720px;}
.ls2d_c00468{letter-spacing:0.407100px;}
.ls2c_c00468{letter-spacing:0.410400px;}
.ls2f_c00468{letter-spacing:0.420900px;}
.ls3e_c00468{letter-spacing:0.451440px;}
.ls71_c00468{letter-spacing:0.458280px;}
.lsa_c00468{letter-spacing:0.465120px;}
.ls12_c00468{letter-spacing:0.485640px;}
.ls35_c00468{letter-spacing:0.489900px;}
.ls3a_c00468{letter-spacing:0.503700px;}
.ls34_c00468{letter-spacing:0.517500px;}
.ls14_c00468{letter-spacing:0.526680px;}
.ls2e_c00468{letter-spacing:0.538200px;}
.ls8d_c00468{letter-spacing:0.547200px;}
.ls65_c00468{letter-spacing:0.554040px;}
.ls7a_c00468{letter-spacing:0.560880px;}
.ls67_c00468{letter-spacing:0.574560px;}
.ls39_c00468{letter-spacing:0.588240px;}
.ls33_c00468{letter-spacing:0.615600px;}
.ls2_c00468{letter-spacing:0.621000px;}
.ls19_c00468{letter-spacing:0.629280px;}
.ls78_c00468{letter-spacing:0.636120px;}
.ls1f_c00468{letter-spacing:0.642960px;}
.ls38_c00468{letter-spacing:0.731880px;}
.ls5_c00468{letter-spacing:0.738720px;}
.lsd_c00468{letter-spacing:0.752400px;}
.ls32_c00468{letter-spacing:0.759240px;}
.ls2b_c00468{letter-spacing:0.793440px;}
.ls8b_c00468{letter-spacing:0.820800px;}
.ls3_c00468{letter-spacing:0.827640px;}
.ls21_c00468{letter-spacing:0.834480px;}
.ls28_c00468{letter-spacing:0.848160px;}
.ls41_c00468{letter-spacing:0.861840px;}
.ls10_c00468{letter-spacing:0.875520px;}
.ls1d_c00468{letter-spacing:0.902880px;}
.lsc_c00468{letter-spacing:0.916560px;}
.ls23_c00468{letter-spacing:0.950760px;}
.ls77_c00468{letter-spacing:0.957600px;}
.lsf_c00468{letter-spacing:0.971280px;}
.lsb_c00468{letter-spacing:0.998640px;}
.ls69_c00468{letter-spacing:1.019160px;}
.ls40_c00468{letter-spacing:1.026000px;}
.ls3c_c00468{letter-spacing:1.053360px;}
.ls58_c00468{letter-spacing:1.067040px;}
.ls84_c00468{letter-spacing:1.108080px;}
.ls18_c00468{letter-spacing:1.135440px;}
.ls1b_c00468{letter-spacing:1.238040px;}
.ls83_c00468{letter-spacing:1.244880px;}
.lse_c00468{letter-spacing:1.258560px;}
.ls3f_c00468{letter-spacing:1.285920px;}
.ls1e_c00468{letter-spacing:1.306440px;}
.ls20_c00468{letter-spacing:1.368000px;}
.ls22_c00468{letter-spacing:1.429560px;}
.ls4c_c00468{letter-spacing:1.436400px;}
.ls26_c00468{letter-spacing:1.450080px;}
.ls8_c00468{letter-spacing:1.497960px;}
.ls4_c00468{letter-spacing:1.518480px;}
.ls55_c00468{letter-spacing:1.593720px;}
.ls13_c00468{letter-spacing:1.648440px;}
.ls3b_c00468{letter-spacing:1.655280px;}
.ls42_c00468{letter-spacing:1.670340px;}
.ls0_c00468{letter-spacing:1.723680px;}
.ls68_c00468{letter-spacing:1.730520px;}
.ls11_c00468{letter-spacing:1.737360px;}
.ls17_c00468{letter-spacing:1.744200px;}
.ls6_c00468{letter-spacing:1.794000px;}
.ls79_c00468{letter-spacing:1.846800px;}
.ls36_c00468{letter-spacing:1.853640px;}
.ls25_c00468{letter-spacing:1.942560px;}
.ls37_c00468{letter-spacing:2.660760px;}
.ls31_c00468{letter-spacing:2.711700px;}
.ls4a_c00468{letter-spacing:3.420000px;}
.ls6c_c00468{letter-spacing:3.450000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{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__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00468{word-spacing:-18.830520px;}
.ws2_c00468{word-spacing:-0.813960px;}
.ws4_c00468{word-spacing:-0.499320px;}
.wsb_c00468{word-spacing:0.000000px;}
.ws3_c00468{word-spacing:0.485640px;}
.ws8_c00468{word-spacing:7.872840px;}
.wsa_c00468{word-spacing:8.255880px;}
.ws0_c00468{word-spacing:9.401880px;}
.ws1_c00468{word-spacing:10.991880px;}
.ws6_c00468{word-spacing:13.139640px;}
.ws7_c00468{word-spacing:20.925240px;}
.ws9_c00468{word-spacing:25.971480px;}
._e_c00468{margin-left:-13.338000px;}
._13_c00468{margin-left:-6.354360px;}
._12_c00468{margin-left:-5.212080px;}
._a_c00468{margin-left:-3.255840px;}
._8_c00468{margin-left:-2.083080px;}
._9_c00468{margin-left:-1.039680px;}
._5_c00468{width:1.315080px;}
._b_c00468{width:3.532680px;}
._7_c00468{width:5.106000px;}
._c_c00468{width:6.459000px;}
._6_c00468{width:8.404200px;}
._d_c00468{width:9.701040px;}
._0_c00468{width:10.725120px;}
._3_c00468{width:12.270960px;}
._2_c00468{width:13.887000px;}
._f_c00468{width:14.993280px;}
._4_c00468{width:18.110520px;}
._11_c00468{width:19.562400px;}
._10_c00468{width:20.834640px;}
._1_c00468{width:23.242320px;}
._15_c00468{width:26.799120px;}
._16_c00468{width:29.111040px;}
._14_c00468{width:33.447600px;}
.fc0_c00468{color:transparent;}
.fs5_c00468{font-size:51.600000px;}
.fs0_c00468{font-size:58.200000px;}
.fs4_c00468{font-size:64.200000px;}
.fs1_c00468{font-size:68.400000px;}
.fs2_c00468{font-size:69.000000px;}
.fs3_c00468{font-size:78.000000px;}
.y0_c00468{bottom:0.000000px;}
.y1b_c00468{bottom:69.135006px;}
.y1a_c00468{bottom:160.207206px;}
.y19_c00468{bottom:190.440006px;}
.y18_c00468{bottom:252.735006px;}
.y17_c00468{bottom:252.743106px;}
.y16_c00468{bottom:283.335006px;}
.y15_c00468{bottom:344.880006px;}
.y14_c00468{bottom:374.775006px;}
.y12_c00468{bottom:437.046906px;}
.y13_c00468{bottom:437.055006px;}
.y11_c00468{bottom:468.015006px;}
.y10_c00468{bottom:529.566006px;}
.yf_c00468{bottom:560.175006px;}
.ye_c00468{bottom:622.103106px;}
.yd_c00468{bottom:652.695006px;}
.yc_c00468{bottom:714.255006px;}
.yb_c00468{bottom:745.215006px;}
.ya_c00468{bottom:806.049906px;}
.y8_c00468{bottom:837.356106px;}
.y9_c00468{bottom:837.360006px;}
.y7_c00468{bottom:898.215006px;}
.y6_c00468{bottom:929.160006px;}
.y5_c00468{bottom:990.728106px;}
.y4_c00468{bottom:1021.320006px;}
.y3_c00468{bottom:1082.887806px;}
.y2_c00468{bottom:1114.215006px;}
.y1_c00468{bottom:1189.095006px;}
.hb_c00468{height:53.817187px;}
.h2_c00468{height:58.654687px;}
.ha_c00468{height:66.958594px;}
.h5_c00468{height:67.130859px;}
.h9_c00468{height:67.653635px;}
.h3_c00468{height:67.686035px;}
.h7_c00468{height:67.701635px;}
.h6_c00468{height:67.713635px;}
.h4_c00468{height:67.714835px;}
.h8_c00468{height:73.612734px;}
.h1_c00468{height:1263.000000px;}
.h0_c00468{height:1263.240006px;}
.w1_c00468{width:892.500000px;}
.w0_c00468{width:892.799998px;}
.x0_c00468{left:0.000000px;}
.x29_c00468{left:121.600498px;}
.x1_c00468{left:122.669999px;}
.x2_c00468{left:123.950999px;}
.x3_c00468{left:154.349998px;}
.x1a_c00468{left:195.299999px;}
.x16_c00468{left:198.539998px;}
.x1e_c00468{left:200.339999px;}
.x1b_c00468{left:231.599998px;}
.x17_c00468{left:236.999998px;}
.x1f_c00468{left:241.319998px;}
.x10_c00468{left:318.254999px;}
.x4_c00468{left:343.259999px;}
.x6_c00468{left:348.644999px;}
.x1d_c00468{left:359.924999px;}
.x7_c00468{left:376.604999px;}
.x11_c00468{left:377.774999px;}
.x5_c00468{left:379.919999px;}
.x25_c00468{left:382.184999px;}
.x8_c00468{left:390.359998px;}
.x1c_c00468{left:399.059999px;}
.x26_c00468{left:401.939999px;}
.x20_c00468{left:405.914999px;}
.x14_c00468{left:421.379999px;}
.x2a_c00468{left:423.209999px;}
.xd_c00468{left:441.224999px;}
.x15_c00468{left:443.114999px;}
.x27_c00468{left:446.684999px;}
.xe_c00468{left:457.874998px;}
.x21_c00468{left:537.374998px;}
.x22_c00468{left:560.444999px;}
.x18_c00468{left:561.494999px;}
.xb_c00468{left:589.064999px;}
.x19_c00468{left:596.549998px;}
.x28_c00468{left:615.059999px;}
.x9_c00468{left:618.014998px;}
.x23_c00468{left:629.819999px;}
.xc_c00468{left:633.779999px;}
.x24_c00468{left:650.474999px;}
.xa_c00468{left:652.244999px;}
.x12_c00468{left:659.684999px;}
.x13_c00468{left:685.604998px;}
.xf_c00468{left:709.754999px;}
@media print{
.v1_c00468{vertical-align:-2.613333pt;}
.v0_c00468{vertical-align:0.000000pt;}
.v2_c00468{vertical-align:2.613333pt;}
.ls61_c00468{letter-spacing:-2.146667pt;}
.ls56_c00468{letter-spacing:-2.128000pt;}
.ls5e_c00468{letter-spacing:-2.103680pt;}
.ls54_c00468{letter-spacing:-2.048960pt;}
.ls7b_c00468{letter-spacing:-1.997333pt;}
.ls5d_c00468{letter-spacing:-1.830080pt;}
.ls70_c00468{letter-spacing:-1.692800pt;}
.ls6f_c00468{letter-spacing:-1.686667pt;}
.ls5a_c00468{letter-spacing:-1.680533pt;}
.ls8a_c00468{letter-spacing:-1.623360pt;}
.ls72_c00468{letter-spacing:-1.592960pt;}
.ls6b_c00468{letter-spacing:-1.570133pt;}
.ls51_c00468{letter-spacing:-1.459733pt;}
.ls82_c00468{letter-spacing:-1.453120pt;}
.ls6e_c00468{letter-spacing:-1.398400pt;}
.ls6a_c00468{letter-spacing:-1.355467pt;}
.ls62_c00468{letter-spacing:-1.263467pt;}
.ls5c_c00468{letter-spacing:-1.118720pt;}
.ls50_c00468{letter-spacing:-1.061067pt;}
.ls86_c00468{letter-spacing:-1.054933pt;}
.ls7c_c00468{letter-spacing:-0.999733pt;}
.ls7d_c00468{letter-spacing:-0.962933pt;}
.ls89_c00468{letter-spacing:-0.960640pt;}
.ls47_c00468{letter-spacing:-0.877067pt;}
.ls52_c00468{letter-spacing:-0.857280pt;}
.ls53_c00468{letter-spacing:-0.814720pt;}
.ls74_c00468{letter-spacing:-0.729867pt;}
.ls64_c00468{letter-spacing:-0.662720pt;}
.ls4f_c00468{letter-spacing:-0.625600pt;}
.ls5f_c00468{letter-spacing:-0.620160pt;}
.ls63_c00468{letter-spacing:-0.594933pt;}
.ls43_c00468{letter-spacing:-0.583680pt;}
.ls87_c00468{letter-spacing:-0.576533pt;}
.ls88_c00468{letter-spacing:-0.515200pt;}
.ls75_c00468{letter-spacing:-0.478400pt;}
.ls44_c00468{letter-spacing:-0.468160pt;}
.ls4e_c00468{letter-spacing:-0.425600pt;}
.ls45_c00468{letter-spacing:-0.383040pt;}
.ls48_c00468{letter-spacing:-0.358720pt;}
.ls6d_c00468{letter-spacing:-0.337333pt;}
.ls8c_c00468{letter-spacing:-0.291840pt;}
.ls80_c00468{letter-spacing:-0.182400pt;}
.ls5b_c00468{letter-spacing:-0.110400pt;}
.ls85_c00468{letter-spacing:-0.079733pt;}
.ls57_c00468{letter-spacing:-0.079040pt;}
.ls46_c00468{letter-spacing:-0.066880pt;}
.ls66_c00468{letter-spacing:-0.060800pt;}
.ls4d_c00468{letter-spacing:-0.036480pt;}
.ls7e_c00468{letter-spacing:-0.018240pt;}
.ls4b_c00468{letter-spacing:0.000000pt;}
.ls24_c00468{letter-spacing:0.006133pt;}
.ls3d_c00468{letter-spacing:0.030400pt;}
.ls49_c00468{letter-spacing:0.036480pt;}
.ls30_c00468{letter-spacing:0.042933pt;}
.ls1a_c00468{letter-spacing:0.054720pt;}
.ls7_c00468{letter-spacing:0.098133pt;}
.ls27_c00468{letter-spacing:0.103360pt;}
.ls8e_c00468{letter-spacing:0.105493pt;}
.ls76_c00468{letter-spacing:0.158080pt;}
.ls1_c00468{letter-spacing:0.176320pt;}
.ls15_c00468{letter-spacing:0.188480pt;}
.ls16_c00468{letter-spacing:0.202400pt;}
.ls2a_c00468{letter-spacing:0.212800pt;}
.ls7f_c00468{letter-spacing:0.218880pt;}
.ls9_c00468{letter-spacing:0.255360pt;}
.ls60_c00468{letter-spacing:0.282133pt;}
.ls29_c00468{letter-spacing:0.285760pt;}
.ls81_c00468{letter-spacing:0.297920pt;}
.ls73_c00468{letter-spacing:0.310080pt;}
.ls59_c00468{letter-spacing:0.322240pt;}
.ls1c_c00468{letter-spacing:0.352640pt;}
.ls2d_c00468{letter-spacing:0.361867pt;}
.ls2c_c00468{letter-spacing:0.364800pt;}
.ls2f_c00468{letter-spacing:0.374133pt;}
.ls3e_c00468{letter-spacing:0.401280pt;}
.ls71_c00468{letter-spacing:0.407360pt;}
.lsa_c00468{letter-spacing:0.413440pt;}
.ls12_c00468{letter-spacing:0.431680pt;}
.ls35_c00468{letter-spacing:0.435467pt;}
.ls3a_c00468{letter-spacing:0.447733pt;}
.ls34_c00468{letter-spacing:0.460000pt;}
.ls14_c00468{letter-spacing:0.468160pt;}
.ls2e_c00468{letter-spacing:0.478400pt;}
.ls8d_c00468{letter-spacing:0.486400pt;}
.ls65_c00468{letter-spacing:0.492480pt;}
.ls7a_c00468{letter-spacing:0.498560pt;}
.ls67_c00468{letter-spacing:0.510720pt;}
.ls39_c00468{letter-spacing:0.522880pt;}
.ls33_c00468{letter-spacing:0.547200pt;}
.ls2_c00468{letter-spacing:0.552000pt;}
.ls19_c00468{letter-spacing:0.559360pt;}
.ls78_c00468{letter-spacing:0.565440pt;}
.ls1f_c00468{letter-spacing:0.571520pt;}
.ls38_c00468{letter-spacing:0.650560pt;}
.ls5_c00468{letter-spacing:0.656640pt;}
.lsd_c00468{letter-spacing:0.668800pt;}
.ls32_c00468{letter-spacing:0.674880pt;}
.ls2b_c00468{letter-spacing:0.705280pt;}
.ls8b_c00468{letter-spacing:0.729600pt;}
.ls3_c00468{letter-spacing:0.735680pt;}
.ls21_c00468{letter-spacing:0.741760pt;}
.ls28_c00468{letter-spacing:0.753920pt;}
.ls41_c00468{letter-spacing:0.766080pt;}
.ls10_c00468{letter-spacing:0.778240pt;}
.ls1d_c00468{letter-spacing:0.802560pt;}
.lsc_c00468{letter-spacing:0.814720pt;}
.ls23_c00468{letter-spacing:0.845120pt;}
.ls77_c00468{letter-spacing:0.851200pt;}
.lsf_c00468{letter-spacing:0.863360pt;}
.lsb_c00468{letter-spacing:0.887680pt;}
.ls69_c00468{letter-spacing:0.905920pt;}
.ls40_c00468{letter-spacing:0.912000pt;}
.ls3c_c00468{letter-spacing:0.936320pt;}
.ls58_c00468{letter-spacing:0.948480pt;}
.ls84_c00468{letter-spacing:0.984960pt;}
.ls18_c00468{letter-spacing:1.009280pt;}
.ls1b_c00468{letter-spacing:1.100480pt;}
.ls83_c00468{letter-spacing:1.106560pt;}
.lse_c00468{letter-spacing:1.118720pt;}
.ls3f_c00468{letter-spacing:1.143040pt;}
.ls1e_c00468{letter-spacing:1.161280pt;}
.ls20_c00468{letter-spacing:1.216000pt;}
.ls22_c00468{letter-spacing:1.270720pt;}
.ls4c_c00468{letter-spacing:1.276800pt;}
.ls26_c00468{letter-spacing:1.288960pt;}
.ls8_c00468{letter-spacing:1.331520pt;}
.ls4_c00468{letter-spacing:1.349760pt;}
.ls55_c00468{letter-spacing:1.416640pt;}
.ls13_c00468{letter-spacing:1.465280pt;}
.ls3b_c00468{letter-spacing:1.471360pt;}
.ls42_c00468{letter-spacing:1.484747pt;}
.ls0_c00468{letter-spacing:1.532160pt;}
.ls68_c00468{letter-spacing:1.538240pt;}
.ls11_c00468{letter-spacing:1.544320pt;}
.ls17_c00468{letter-spacing:1.550400pt;}
.ls6_c00468{letter-spacing:1.594667pt;}
.ls79_c00468{letter-spacing:1.641600pt;}
.ls36_c00468{letter-spacing:1.647680pt;}
.ls25_c00468{letter-spacing:1.726720pt;}
.ls37_c00468{letter-spacing:2.365120pt;}
.ls31_c00468{letter-spacing:2.410400pt;}
.ls4a_c00468{letter-spacing:3.040000pt;}
.ls6c_c00468{letter-spacing:3.066667pt;}
.ws5_c00468{word-spacing:-16.738240pt;}
.ws2_c00468{word-spacing:-0.723520pt;}
.ws4_c00468{word-spacing:-0.443840pt;}
.wsb_c00468{word-spacing:0.000000pt;}
.ws3_c00468{word-spacing:0.431680pt;}
.ws8_c00468{word-spacing:6.998080pt;}
.wsa_c00468{word-spacing:7.338560pt;}
.ws0_c00468{word-spacing:8.357227pt;}
.ws1_c00468{word-spacing:9.770560pt;}
.ws6_c00468{word-spacing:11.679680pt;}
.ws7_c00468{word-spacing:18.600213pt;}
.ws9_c00468{word-spacing:23.085760pt;}
._e_c00468{margin-left:-11.856000pt;}
._13_c00468{margin-left:-5.648320pt;}
._12_c00468{margin-left:-4.632960pt;}
._a_c00468{margin-left:-2.894080pt;}
._8_c00468{margin-left:-1.851627pt;}
._9_c00468{margin-left:-0.924160pt;}
._5_c00468{width:1.168960pt;}
._b_c00468{width:3.140160pt;}
._7_c00468{width:4.538667pt;}
._c_c00468{width:5.741333pt;}
._6_c00468{width:7.470400pt;}
._d_c00468{width:8.623147pt;}
._0_c00468{width:9.533440pt;}
._3_c00468{width:10.907520pt;}
._2_c00468{width:12.344000pt;}
._f_c00468{width:13.327360pt;}
._4_c00468{width:16.098240pt;}
._11_c00468{width:17.388800pt;}
._10_c00468{width:18.519680pt;}
._1_c00468{width:20.659840pt;}
._15_c00468{width:23.821440pt;}
._16_c00468{width:25.876480pt;}
._14_c00468{width:29.731200pt;}
.fs5_c00468{font-size:45.866667pt;}
.fs0_c00468{font-size:51.733333pt;}
.fs4_c00468{font-size:57.066667pt;}
.fs1_c00468{font-size:60.800000pt;}
.fs2_c00468{font-size:61.333333pt;}
.fs3_c00468{font-size:69.333333pt;}
.y0_c00468{bottom:0.000000pt;}
.y1b_c00468{bottom:61.453339pt;}
.y1a_c00468{bottom:142.406405pt;}
.y19_c00468{bottom:169.280005pt;}
.y18_c00468{bottom:224.653339pt;}
.y17_c00468{bottom:224.660539pt;}
.y16_c00468{bottom:251.853339pt;}
.y15_c00468{bottom:306.560005pt;}
.y14_c00468{bottom:333.133339pt;}
.y12_c00468{bottom:388.486139pt;}
.y13_c00468{bottom:388.493339pt;}
.y11_c00468{bottom:416.013339pt;}
.y10_c00468{bottom:470.725339pt;}
.yf_c00468{bottom:497.933339pt;}
.ye_c00468{bottom:552.980539pt;}
.yd_c00468{bottom:580.173339pt;}
.yc_c00468{bottom:634.893339pt;}
.yb_c00468{bottom:662.413339pt;}
.ya_c00468{bottom:716.488805pt;}
.y8_c00468{bottom:744.316539pt;}
.y9_c00468{bottom:744.320005pt;}
.y7_c00468{bottom:798.413339pt;}
.y6_c00468{bottom:825.920005pt;}
.y5_c00468{bottom:880.647205pt;}
.y4_c00468{bottom:907.840005pt;}
.y3_c00468{bottom:962.566939pt;}
.y2_c00468{bottom:990.413339pt;}
.y1_c00468{bottom:1056.973339pt;}
.hb_c00468{height:47.837500pt;}
.h2_c00468{height:52.137500pt;}
.ha_c00468{height:59.518750pt;}
.h5_c00468{height:59.671875pt;}
.h9_c00468{height:60.136565pt;}
.h3_c00468{height:60.165365pt;}
.h7_c00468{height:60.179231pt;}
.h6_c00468{height:60.189898pt;}
.h4_c00468{height:60.190965pt;}
.h8_c00468{height:65.433542pt;}
.h1_c00468{height:1122.666667pt;}
.h0_c00468{height:1122.880005pt;}
.w1_c00468{width:793.333333pt;}
.w0_c00468{width:793.599999pt;}
.x0_c00468{left:0.000000pt;}
.x29_c00468{left:108.089332pt;}
.x1_c00468{left:109.039999pt;}
.x2_c00468{left:110.178665pt;}
.x3_c00468{left:137.199999pt;}
.x1a_c00468{left:173.599999pt;}
.x16_c00468{left:176.479999pt;}
.x1e_c00468{left:178.079999pt;}
.x1b_c00468{left:205.866665pt;}
.x17_c00468{left:210.666665pt;}
.x1f_c00468{left:214.506665pt;}
.x10_c00468{left:282.893332pt;}
.x4_c00468{left:305.119999pt;}
.x6_c00468{left:309.906665pt;}
.x1d_c00468{left:319.933332pt;}
.x7_c00468{left:334.759999pt;}
.x11_c00468{left:335.799999pt;}
.x5_c00468{left:337.706665pt;}
.x25_c00468{left:339.719999pt;}
.x8_c00468{left:346.986665pt;}
.x1c_c00468{left:354.719999pt;}
.x26_c00468{left:357.279999pt;}
.x20_c00468{left:360.813332pt;}
.x14_c00468{left:374.559999pt;}
.x2a_c00468{left:376.186665pt;}
.xd_c00468{left:392.199999pt;}
.x15_c00468{left:393.879999pt;}
.x27_c00468{left:397.053332pt;}
.xe_c00468{left:406.999999pt;}
.x21_c00468{left:477.666665pt;}
.x22_c00468{left:498.173332pt;}
.x18_c00468{left:499.106665pt;}
.xb_c00468{left:523.613332pt;}
.x19_c00468{left:530.266665pt;}
.x28_c00468{left:546.719999pt;}
.x9_c00468{left:549.346665pt;}
.x23_c00468{left:559.839999pt;}
.xc_c00468{left:563.359999pt;}
.x24_c00468{left:578.199999pt;}
.xa_c00468{left:579.773332pt;}
.x12_c00468{left:586.386665pt;}
.x13_c00468{left:609.426665pt;}
.xf_c00468{left:630.893332pt;}
}





/* 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_c00469 {
    display:none;
  }
  .loading-indicator_c00469.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00469 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_c00469 { 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_c00469" -> "#page-container .classname_c00469")
 */
.pf_c00469 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00469 { /* 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_c00469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00469 { /* 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_c00469 { /* 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_c00469 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00469 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00469 {overflow:visible;}
  }
}
.c_c00469 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00469 { /* 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_c00469:after { /* webkit #35443 */
  content: '';
}
.t_c00469:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00469 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 */
}
.__c00469 { /* 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_c00469 { /* info for Javascript */
  display:none;
}
.l_c00469 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00469 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00469 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00469: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_c00469 {
    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_c00469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00469.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_c00469 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00469{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00469;src:url('chunks/assets/font_a55b6ad0adec3fe425993f34.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.311035;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_c00469;src:url('chunks/assets/font_ece78aac56b302516fe762b7.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.284668;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_c00469;src:url('chunks/assets/font_698aeb45413b890dd11af35a.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.284180;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_c00469;src:url('chunks/assets/font_1a2c6017df13bbda0947932d.woff2')format("woff");}.ff4_c00469{font-family:ff4_c00469;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:ff5_c00469;src:url('chunks/assets/font_8ba8c700a595b03f8e0f3760.woff2')format("woff");}.ff5_c00469{font-family:ff5_c00469;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:ff6_c00469;src:url('chunks/assets/font_ea9629a54b9a5f91476af835.woff2')format("woff");}.ff6_c00469{font-family:ff6_c00469;line-height:0.666000;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_c00469;src:url('chunks/assets/font_0d858a1213a5e18c8f9c2e4e.woff2')format("woff");}.ff7_c00469{font-family:ff7_c00469;line-height:1.284180;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;}
.m1f_c00469{transform:matrix(0.126603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126603,0.000000,0.000000,0.250000,0,0);}
.m17_c00469{transform:matrix(0.129828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129828,0.000000,0.000000,0.250000,0,0);}
.m18_c00469{transform:matrix(0.186473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186473,0.000000,0.000000,0.250000,0,0);}
.m24_c00469{transform:matrix(0.196311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196311,0.000000,0.000000,0.250000,0,0);}
.m10_c00469{transform:matrix(0.203687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203687,0.000000,0.000000,0.250000,0,0);}
.m20_c00469{transform:matrix(0.223774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223774,0.000000,0.000000,0.250000,0,0);}
.mc_c00469{transform:matrix(0.224352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224352,0.000000,0.000000,0.250000,0,0);}
.m22_c00469{transform:matrix(0.227858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227858,0.000000,0.000000,0.250000,0,0);}
.m5_c00469{transform:matrix(0.231829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231829,0.000000,0.000000,0.250000,0,0);}
.m8_c00469{transform:matrix(0.233301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233301,0.000000,0.000000,0.250000,0,0);}
.m25_c00469{transform:matrix(0.233430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233430,0.000000,0.000000,0.250000,0,0);}
.m1d_c00469{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m1e_c00469{transform:matrix(0.235412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235412,0.000000,0.000000,0.250000,0,0);}
.m21_c00469{transform:matrix(0.235740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235740,0.000000,0.000000,0.250000,0,0);}
.m23_c00469{transform:matrix(0.238240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238240,0.000000,0.000000,0.250000,0,0);}
.mf_c00469{transform:matrix(0.238274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238274,0.000000,0.000000,0.250000,0,0);}
.m14_c00469{transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);}
.m1c_c00469{transform:matrix(0.243074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243074,0.000000,0.000000,0.250000,0,0);}
.m27_c00469{transform:matrix(0.243124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243124,0.000000,0.000000,0.250000,0,0);}
.m1b_c00469{transform:matrix(0.245420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245420,0.000000,0.000000,0.250000,0,0);}
.m3_c00469{transform:matrix(0.246111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246111,0.000000,0.000000,0.250000,0,0);}
.m26_c00469{transform:matrix(0.246376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246376,0.000000,0.000000,0.250000,0,0);}
.m1a_c00469{transform:matrix(0.246534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246534,0.000000,0.000000,0.250000,0,0);}
.mb_c00469{transform:matrix(0.246916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246916,0.000000,0.000000,0.250000,0,0);}
.m12_c00469{transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);}
.m9_c00469{transform:matrix(0.248857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248857,0.000000,0.000000,0.250000,0,0);}
.m1_c00469{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);}
.m13_c00469{transform:matrix(0.250679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250679,0.000000,0.000000,0.250000,0,0);}
.me_c00469{transform:matrix(0.251387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251387,0.000000,0.000000,0.250000,0,0);}
.m0_c00469{transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);}
.m6_c00469{transform:matrix(0.252197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252197,0.000000,0.000000,0.250000,0,0);}
.m15_c00469{transform:matrix(0.253979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253979,0.000000,0.000000,0.250000,0,0);}
.m19_c00469{transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);}
.m16_c00469{transform:matrix(0.255195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255195,0.000000,0.000000,0.250000,0,0);}
.m7_c00469{transform:matrix(0.268876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268876,0.000000,0.000000,0.250000,0,0);}
.m2_c00469{transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);}
.m11_c00469{transform:matrix(0.274723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274723,0.000000,0.000000,0.250000,0,0);}
.m4_c00469{transform:matrix(0.287307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287307,0.000000,0.000000,0.250000,0,0);}
.ma_c00469{transform:matrix(0.291086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291086,0.000000,0.000000,0.250000,0,0);}
.md_c00469{transform:matrix(0.311419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311419,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls6d_c00469{letter-spacing:-2.730000px;}
.ls70_c00469{letter-spacing:-2.667000px;}
.ls6b_c00469{letter-spacing:-2.625000px;}
.ls6f_c00469{letter-spacing:-2.562000px;}
.ls6c_c00469{letter-spacing:-2.520000px;}
.ls1b_c00469{letter-spacing:-2.499000px;}
.ls20_c00469{letter-spacing:-2.484720px;}
.ls2e_c00469{letter-spacing:-2.457000px;}
.ls68_c00469{letter-spacing:-2.363340px;}
.ls57_c00469{letter-spacing:-2.291940px;}
.ls26_c00469{letter-spacing:-2.268000px;}
.ls55_c00469{letter-spacing:-2.227680px;}
.ls3a_c00469{letter-spacing:-2.184840px;}
.ls65_c00469{letter-spacing:-2.106300px;}
.ls73_c00469{letter-spacing:-1.842120px;}
.ls60_c00469{letter-spacing:-1.813560px;}
.ls7a_c00469{letter-spacing:-1.792140px;}
.ls6e_c00469{letter-spacing:-1.785600px;}
.ls4b_c00469{letter-spacing:-1.592220px;}
.ls43_c00469{letter-spacing:-1.577940px;}
.ls42_c00469{letter-spacing:-1.527960px;}
.ls33_c00469{letter-spacing:-1.463700px;}
.ls52_c00469{letter-spacing:-1.361880px;}
.ls58_c00469{letter-spacing:-1.320900px;}
.ls27_c00469{letter-spacing:-1.313760px;}
.ls16_c00469{letter-spacing:-1.306620px;}
.ls71_c00469{letter-spacing:-1.263780px;}
.ls15_c00469{letter-spacing:-1.185240px;}
.ls2d_c00469{letter-spacing:-1.135260px;}
.ls1c_c00469{letter-spacing:-1.106700px;}
.ls28_c00469{letter-spacing:-1.049580px;}
.ls3f_c00469{letter-spacing:-1.042440px;}
.ls2a_c00469{letter-spacing:-1.021020px;}
.ls22_c00469{letter-spacing:-1.013880px;}
.ls3b_c00469{letter-spacing:-1.006740px;}
.ls38_c00469{letter-spacing:-0.992460px;}
.ls4a_c00469{letter-spacing:-0.956760px;}
.ls31_c00469{letter-spacing:-0.947700px;}
.ls25_c00469{letter-spacing:-0.913920px;}
.ls64_c00469{letter-spacing:-0.899640px;}
.ls56_c00469{letter-spacing:-0.863940px;}
.ls4c_c00469{letter-spacing:-0.856800px;}
.ls47_c00469{letter-spacing:-0.849660px;}
.ls34_c00469{letter-spacing:-0.828240px;}
.ls4f_c00469{letter-spacing:-0.728280px;}
.ls1a_c00469{letter-spacing:-0.721140px;}
.ls29_c00469{letter-spacing:-0.706860px;}
.ls61_c00469{letter-spacing:-0.578340px;}
.ls5f_c00469{letter-spacing:-0.556920px;}
.ls53_c00469{letter-spacing:-0.554580px;}
.ls5a_c00469{letter-spacing:-0.549780px;}
.ls75_c00469{letter-spacing:-0.528360px;}
.ls63_c00469{letter-spacing:-0.514080px;}
.ls3e_c00469{letter-spacing:-0.492660px;}
.ls36_c00469{letter-spacing:-0.485520px;}
.ls78_c00469{letter-spacing:-0.449820px;}
.ls39_c00469{letter-spacing:-0.428400px;}
.ls5b_c00469{letter-spacing:-0.414120px;}
.ls19_c00469{letter-spacing:-0.392700px;}
.ls69_c00469{letter-spacing:-0.328440px;}
.ls76_c00469{letter-spacing:-0.315900px;}
.ls30_c00469{letter-spacing:-0.314160px;}
.ls24_c00469{letter-spacing:-0.307020px;}
.ls1f_c00469{letter-spacing:-0.299880px;}
.ls66_c00469{letter-spacing:-0.292740px;}
.ls37_c00469{letter-spacing:-0.278460px;}
.ls40_c00469{letter-spacing:-0.271320px;}
.ls72_c00469{letter-spacing:-0.257040px;}
.ls1e_c00469{letter-spacing:-0.242760px;}
.ls5d_c00469{letter-spacing:-0.235620px;}
.ls77_c00469{letter-spacing:-0.228480px;}
.ls49_c00469{letter-spacing:-0.199920px;}
.ls67_c00469{letter-spacing:-0.192780px;}
.ls23_c00469{letter-spacing:-0.178500px;}
.ls21_c00469{letter-spacing:-0.171360px;}
.ls4d_c00469{letter-spacing:-0.149940px;}
.ls51_c00469{letter-spacing:-0.140400px;}
.ls2c_c00469{letter-spacing:-0.128520px;}
.ls4e_c00469{letter-spacing:-0.107100px;}
.ls59_c00469{letter-spacing:-0.099960px;}
.ls3c_c00469{letter-spacing:-0.085680px;}
.ls54_c00469{letter-spacing:-0.084240px;}
.ls50_c00469{letter-spacing:-0.078540px;}
.ls35_c00469{letter-spacing:-0.071400px;}
.ls62_c00469{letter-spacing:-0.049140px;}
.ls41_c00469{letter-spacing:-0.035700px;}
.ls5c_c00469{letter-spacing:-0.028080px;}
.ls79_c00469{letter-spacing:-0.014040px;}
.ls14_c00469{letter-spacing:-0.007140px;}
.ls3d_c00469{letter-spacing:0.000000px;}
.ls6a_c00469{letter-spacing:0.021420px;}
.ls17_c00469{letter-spacing:0.056160px;}
.ls32_c00469{letter-spacing:0.105300px;}
.ls5e_c00469{letter-spacing:0.112320px;}
.ls5_c00469{letter-spacing:0.114240px;}
.ls11_c00469{letter-spacing:0.154440px;}
.ls7_c00469{letter-spacing:0.168480px;}
.ls2f_c00469{letter-spacing:0.196560px;}
.ls2_c00469{letter-spacing:0.252720px;}
.ls48_c00469{letter-spacing:0.285600px;}
.ls1_c00469{letter-spacing:0.343980px;}
.ls46_c00469{letter-spacing:0.358020px;}
.ls4_c00469{letter-spacing:0.386100px;}
.lsf_c00469{letter-spacing:0.456300px;}
.ls0_c00469{letter-spacing:0.484380px;}
.lse_c00469{letter-spacing:0.492660px;}
.ls12_c00469{letter-spacing:0.603720px;}
.ls9_c00469{letter-spacing:0.624780px;}
.ls45_c00469{letter-spacing:0.779220px;}
.lsc_c00469{letter-spacing:0.856800px;}
.ls10_c00469{letter-spacing:0.885360px;}
.ls7b_c00469{letter-spacing:0.905520px;}
.ls74_c00469{letter-spacing:0.942480px;}
.ls44_c00469{letter-spacing:1.053000px;}
.lsa_c00469{letter-spacing:1.242360px;}
.ls6_c00469{letter-spacing:1.285200px;}
.ls8_c00469{letter-spacing:1.312740px;}
.lsb_c00469{letter-spacing:2.306220px;}
.ls3_c00469{letter-spacing:2.377620px;}
.lsd_c00469{letter-spacing:2.813160px;}
.ls13_c00469{letter-spacing:3.060000px;}
.ls2b_c00469{letter-spacing:3.420000px;}
.ls18_c00469{letter-spacing:3.510000px;}
.ls1d_c00469{letter-spacing:3.570000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{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__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00469{word-spacing:0.000000px;}
.ws6_c00469{word-spacing:2.577540px;}
.ws3_c00469{word-spacing:3.434340px;}
.ws1_c00469{word-spacing:5.861940px;}
.ws0_c00469{word-spacing:5.871540px;}
.ws2_c00469{word-spacing:13.144740px;}
.ws8_c00469{word-spacing:18.356940px;}
.ws5_c00469{word-spacing:26.418000px;}
.ws7_c00469{word-spacing:30.066540px;}
.ws4_c00469{word-spacing:38.277540px;}
._14_c00469{margin-left:-19.292880px;}
._5_c00469{margin-left:-2.555880px;}
._16_c00469{margin-left:-1.113840px;}
._11_c00469{width:1.999200px;}
._7_c00469{width:3.184440px;}
._2_c00469{width:4.190940px;}
._12_c00469{width:5.412120px;}
._0_c00469{width:6.781380px;}
._6_c00469{width:8.453760px;}
._3_c00469{width:9.586980px;}
._4_c00469{width:10.881600px;}
._d_c00469{width:12.854940px;}
._b_c00469{width:14.922600px;}
._c_c00469{width:15.943620px;}
._a_c00469{width:17.191980px;}
._1_c00469{width:19.349400px;}
._8_c00469{width:21.181380px;}
._e_c00469{width:24.402000px;}
._13_c00469{width:25.501380px;}
._15_c00469{width:27.762180px;}
._9_c00469{width:29.880900px;}
._17_c00469{width:31.131840px;}
._f_c00469{width:36.956640px;}
._10_c00469{width:43.554000px;}
.fc0_c00469{color:transparent;}
.fs5_c00469{font-size:53.280000px;}
.fs7_c00469{font-size:56.160000px;}
.fsc_c00469{font-size:58.800000px;}
.fs0_c00469{font-size:61.200000px;}
.fs3_c00469{font-size:64.800000px;}
.fs4_c00469{font-size:68.400000px;}
.fs2_c00469{font-size:70.200000px;}
.fs1_c00469{font-size:71.400000px;}
.fs8_c00469{font-size:72.000000px;}
.fsa_c00469{font-size:73.200000px;}
.fs6_c00469{font-size:75.000000px;}
.fsb_c00469{font-size:76.200000px;}
.fs9_c00469{font-size:78.000000px;}
.y0_c00469{bottom:0.000000px;}
.y22_c00469{bottom:66.255000px;}
.y21_c00469{bottom:125.280000px;}
.y1f_c00469{bottom:156.251100px;}
.y20_c00469{bottom:156.255000px;}
.y1e_c00469{bottom:187.560000px;}
.y1d_c00469{bottom:187.561350px;}
.y1c_c00469{bottom:248.055000px;}
.y1b_c00469{bottom:280.095000px;}
.y19_c00469{bottom:311.053350px;}
.y1a_c00469{bottom:311.055000px;}
.y18_c00469{bottom:372.975000px;}
.y17_c00469{bottom:372.976800px;}
.y15_c00469{bottom:403.933350px;}
.y16_c00469{bottom:403.935000px;}
.y14_c00469{bottom:465.855000px;}
.y13_c00469{bottom:496.440000px;}
.y12_c00469{bottom:557.655000px;}
.y11_c00469{bottom:589.335000px;}
.y10_c00469{bottom:589.340100px;}
.yf_c00469{bottom:619.935000px;}
.ye_c00469{bottom:681.495000px;}
.yc_c00469{bottom:712.088100px;}
.yd_c00469{bottom:712.095000px;}
.yb_c00469{bottom:743.040000px;}
.ya_c00469{bottom:804.975000px;}
.y9_c00469{bottom:835.560000px;}
.y8_c00469{bottom:897.495000px;}
.y7_c00469{bottom:927.720000px;}
.y6_c00469{bottom:989.655000px;}
.y5_c00469{bottom:989.662950px;}
.y4_c00469{bottom:1020.240000px;}
.y3_c00469{bottom:1082.880000px;}
.y2_c00469{bottom:1113.135000px;}
.y1_c00469{bottom:1190.175000px;}
.h7_c00469{height:35.484480px;}
.h9_c00469{height:37.402560px;}
.hf_c00469{height:57.708984px;}
.h2_c00469{height:61.678125px;}
.h5_c00469{height:67.584375px;}
.h4_c00469{height:68.863184px;}
.h3_c00469{height:70.075195px;}
.h6_c00469{height:71.339063px;}
.hc_c00469{height:71.806055px;}
.ha_c00469{height:72.562500px;}
.he_c00469{height:73.211006px;}
.hd_c00469{height:74.748926px;}
.h8_c00469{height:75.585938px;}
.hb_c00469{height:78.609375px;}
.h1_c00469{height:1263.000000px;}
.h0_c00469{height:1263.240000px;}
.w1_c00469{width:892.500000px;}
.w0_c00469{width:892.800000px;}
.x0_c00469{left:0.000000px;}
.x23_c00469{left:118.620000px;}
.x18_c00469{left:119.809800px;}
.x12_c00469{left:120.870000px;}
.x6_c00469{left:122.310000px;}
.x2_c00469{left:123.750000px;}
.x1_c00469{left:124.830000px;}
.x31_c00469{left:178.455000px;}
.x2c_c00469{left:190.335000px;}
.x7_c00469{left:195.300000px;}
.x37_c00469{left:197.460000px;}
.x32_c00469{left:199.290000px;}
.x1e_c00469{left:200.340000px;}
.x3a_c00469{left:226.950000px;}
.x8_c00469{left:230.865000px;}
.x13_c00469{left:233.745000px;}
.x2d_c00469{left:237.420000px;}
.x1f_c00469{left:242.265000px;}
.x26_c00469{left:246.090000px;}
.x16_c00469{left:250.065000px;}
.x27_c00469{left:261.210000px;}
.x17_c00469{left:266.895000px;}
.x22_c00469{left:271.605000px;}
.xb_c00469{left:291.975000px;}
.xc_c00469{left:324.030000px;}
.x3b_c00469{left:336.495000px;}
.x33_c00469{left:350.625000px;}
.x10_c00469{left:370.185000px;}
.x45_c00469{left:376.770000px;}
.x3c_c00469{left:381.060000px;}
.x34_c00469{left:393.285000px;}
.x46_c00469{left:395.955000px;}
.x3d_c00469{left:403.200000px;}
.x11_c00469{left:405.825000px;}
.x35_c00469{left:406.830000px;}
.x28_c00469{left:414.540000px;}
.x9_c00469{left:417.465000px;}
.x49_c00469{left:422.115000px;}
.xa_c00469{left:434.655000px;}
.xd_c00469{left:441.135000px;}
.x36_c00469{left:448.935000px;}
.x3_c00469{left:455.595000px;}
.x29_c00469{left:459.180000px;}
.x3e_c00469{left:464.970000px;}
.x19_c00469{left:481.140000px;}
.x14_c00469{left:499.125000px;}
.x1a_c00469{left:500.895000px;}
.x4_c00469{left:502.695000px;}
.x15_c00469{left:528.915000px;}
.x2e_c00469{left:540.540000px;}
.x38_c00469{left:554.715000px;}
.x3f_c00469{left:582.375000px;}
.x2f_c00469{left:586.440000px;}
.x2a_c00469{left:594.180000px;}
.x24_c00469{left:596.685000px;}
.x1b_c00469{left:606.120000px;}
.x2b_c00469{left:612.255000px;}
.x25_c00469{left:621.675000px;}
.x40_c00469{left:622.935000px;}
.x43_c00469{left:636.660000px;}
.x1c_c00469{left:638.775000px;}
.x41_c00469{left:656.325000px;}
.x44_c00469{left:659.835000px;}
.xe_c00469{left:668.280000px;}
.x47_c00469{left:671.985000px;}
.x42_c00469{left:673.020000px;}
.x30_c00469{left:688.740000px;}
.x48_c00469{left:691.695000px;}
.xf_c00469{left:693.945000px;}
.x20_c00469{left:715.890000px;}
.x5_c00469{left:729.510000px;}
.x1d_c00469{left:731.340000px;}
.x39_c00469{left:736.005000px;}
.x21_c00469{left:739.770000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls6d_c00469{letter-spacing:-2.426667pt;}
.ls70_c00469{letter-spacing:-2.370667pt;}
.ls6b_c00469{letter-spacing:-2.333333pt;}
.ls6f_c00469{letter-spacing:-2.277333pt;}
.ls6c_c00469{letter-spacing:-2.240000pt;}
.ls1b_c00469{letter-spacing:-2.221333pt;}
.ls20_c00469{letter-spacing:-2.208640pt;}
.ls2e_c00469{letter-spacing:-2.184000pt;}
.ls68_c00469{letter-spacing:-2.100747pt;}
.ls57_c00469{letter-spacing:-2.037280pt;}
.ls26_c00469{letter-spacing:-2.016000pt;}
.ls55_c00469{letter-spacing:-1.980160pt;}
.ls3a_c00469{letter-spacing:-1.942080pt;}
.ls65_c00469{letter-spacing:-1.872267pt;}
.ls73_c00469{letter-spacing:-1.637440pt;}
.ls60_c00469{letter-spacing:-1.612053pt;}
.ls7a_c00469{letter-spacing:-1.593013pt;}
.ls6e_c00469{letter-spacing:-1.587200pt;}
.ls4b_c00469{letter-spacing:-1.415307pt;}
.ls43_c00469{letter-spacing:-1.402613pt;}
.ls42_c00469{letter-spacing:-1.358187pt;}
.ls33_c00469{letter-spacing:-1.301067pt;}
.ls52_c00469{letter-spacing:-1.210560pt;}
.ls58_c00469{letter-spacing:-1.174133pt;}
.ls27_c00469{letter-spacing:-1.167787pt;}
.ls16_c00469{letter-spacing:-1.161440pt;}
.ls71_c00469{letter-spacing:-1.123360pt;}
.ls15_c00469{letter-spacing:-1.053547pt;}
.ls2d_c00469{letter-spacing:-1.009120pt;}
.ls1c_c00469{letter-spacing:-0.983733pt;}
.ls28_c00469{letter-spacing:-0.932960pt;}
.ls3f_c00469{letter-spacing:-0.926613pt;}
.ls2a_c00469{letter-spacing:-0.907573pt;}
.ls22_c00469{letter-spacing:-0.901227pt;}
.ls3b_c00469{letter-spacing:-0.894880pt;}
.ls38_c00469{letter-spacing:-0.882187pt;}
.ls4a_c00469{letter-spacing:-0.850453pt;}
.ls31_c00469{letter-spacing:-0.842400pt;}
.ls25_c00469{letter-spacing:-0.812373pt;}
.ls64_c00469{letter-spacing:-0.799680pt;}
.ls56_c00469{letter-spacing:-0.767947pt;}
.ls4c_c00469{letter-spacing:-0.761600pt;}
.ls47_c00469{letter-spacing:-0.755253pt;}
.ls34_c00469{letter-spacing:-0.736213pt;}
.ls4f_c00469{letter-spacing:-0.647360pt;}
.ls1a_c00469{letter-spacing:-0.641013pt;}
.ls29_c00469{letter-spacing:-0.628320pt;}
.ls61_c00469{letter-spacing:-0.514080pt;}
.ls5f_c00469{letter-spacing:-0.495040pt;}
.ls53_c00469{letter-spacing:-0.492960pt;}
.ls5a_c00469{letter-spacing:-0.488693pt;}
.ls75_c00469{letter-spacing:-0.469653pt;}
.ls63_c00469{letter-spacing:-0.456960pt;}
.ls3e_c00469{letter-spacing:-0.437920pt;}
.ls36_c00469{letter-spacing:-0.431573pt;}
.ls78_c00469{letter-spacing:-0.399840pt;}
.ls39_c00469{letter-spacing:-0.380800pt;}
.ls5b_c00469{letter-spacing:-0.368107pt;}
.ls19_c00469{letter-spacing:-0.349067pt;}
.ls69_c00469{letter-spacing:-0.291947pt;}
.ls76_c00469{letter-spacing:-0.280800pt;}
.ls30_c00469{letter-spacing:-0.279253pt;}
.ls24_c00469{letter-spacing:-0.272907pt;}
.ls1f_c00469{letter-spacing:-0.266560pt;}
.ls66_c00469{letter-spacing:-0.260213pt;}
.ls37_c00469{letter-spacing:-0.247520pt;}
.ls40_c00469{letter-spacing:-0.241173pt;}
.ls72_c00469{letter-spacing:-0.228480pt;}
.ls1e_c00469{letter-spacing:-0.215787pt;}
.ls5d_c00469{letter-spacing:-0.209440pt;}
.ls77_c00469{letter-spacing:-0.203093pt;}
.ls49_c00469{letter-spacing:-0.177707pt;}
.ls67_c00469{letter-spacing:-0.171360pt;}
.ls23_c00469{letter-spacing:-0.158667pt;}
.ls21_c00469{letter-spacing:-0.152320pt;}
.ls4d_c00469{letter-spacing:-0.133280pt;}
.ls51_c00469{letter-spacing:-0.124800pt;}
.ls2c_c00469{letter-spacing:-0.114240pt;}
.ls4e_c00469{letter-spacing:-0.095200pt;}
.ls59_c00469{letter-spacing:-0.088853pt;}
.ls3c_c00469{letter-spacing:-0.076160pt;}
.ls54_c00469{letter-spacing:-0.074880pt;}
.ls50_c00469{letter-spacing:-0.069813pt;}
.ls35_c00469{letter-spacing:-0.063467pt;}
.ls62_c00469{letter-spacing:-0.043680pt;}
.ls41_c00469{letter-spacing:-0.031733pt;}
.ls5c_c00469{letter-spacing:-0.024960pt;}
.ls79_c00469{letter-spacing:-0.012480pt;}
.ls14_c00469{letter-spacing:-0.006347pt;}
.ls3d_c00469{letter-spacing:0.000000pt;}
.ls6a_c00469{letter-spacing:0.019040pt;}
.ls17_c00469{letter-spacing:0.049920pt;}
.ls32_c00469{letter-spacing:0.093600pt;}
.ls5e_c00469{letter-spacing:0.099840pt;}
.ls5_c00469{letter-spacing:0.101547pt;}
.ls11_c00469{letter-spacing:0.137280pt;}
.ls7_c00469{letter-spacing:0.149760pt;}
.ls2f_c00469{letter-spacing:0.174720pt;}
.ls2_c00469{letter-spacing:0.224640pt;}
.ls48_c00469{letter-spacing:0.253867pt;}
.ls1_c00469{letter-spacing:0.305760pt;}
.ls46_c00469{letter-spacing:0.318240pt;}
.ls4_c00469{letter-spacing:0.343200pt;}
.lsf_c00469{letter-spacing:0.405600pt;}
.ls0_c00469{letter-spacing:0.430560pt;}
.lse_c00469{letter-spacing:0.437920pt;}
.ls12_c00469{letter-spacing:0.536640pt;}
.ls9_c00469{letter-spacing:0.555360pt;}
.ls45_c00469{letter-spacing:0.692640pt;}
.lsc_c00469{letter-spacing:0.761600pt;}
.ls10_c00469{letter-spacing:0.786987pt;}
.ls7b_c00469{letter-spacing:0.804907pt;}
.ls74_c00469{letter-spacing:0.837760pt;}
.ls44_c00469{letter-spacing:0.936000pt;}
.lsa_c00469{letter-spacing:1.104320pt;}
.ls6_c00469{letter-spacing:1.142400pt;}
.ls8_c00469{letter-spacing:1.166880pt;}
.lsb_c00469{letter-spacing:2.049973pt;}
.ls3_c00469{letter-spacing:2.113440pt;}
.lsd_c00469{letter-spacing:2.500587pt;}
.ls13_c00469{letter-spacing:2.720000pt;}
.ls2b_c00469{letter-spacing:3.040000pt;}
.ls18_c00469{letter-spacing:3.120000pt;}
.ls1d_c00469{letter-spacing:3.173333pt;}
.ws9_c00469{word-spacing:0.000000pt;}
.ws6_c00469{word-spacing:2.291147pt;}
.ws3_c00469{word-spacing:3.052747pt;}
.ws1_c00469{word-spacing:5.210613pt;}
.ws0_c00469{word-spacing:5.219147pt;}
.ws2_c00469{word-spacing:11.684213pt;}
.ws8_c00469{word-spacing:16.317280pt;}
.ws5_c00469{word-spacing:23.482667pt;}
.ws7_c00469{word-spacing:26.725813pt;}
.ws4_c00469{word-spacing:34.024480pt;}
._14_c00469{margin-left:-17.149227pt;}
._5_c00469{margin-left:-2.271893pt;}
._16_c00469{margin-left:-0.990080pt;}
._11_c00469{width:1.777067pt;}
._7_c00469{width:2.830613pt;}
._2_c00469{width:3.725280pt;}
._12_c00469{width:4.810773pt;}
._0_c00469{width:6.027893pt;}
._6_c00469{width:7.514453pt;}
._3_c00469{width:8.521760pt;}
._4_c00469{width:9.672533pt;}
._d_c00469{width:11.426613pt;}
._b_c00469{width:13.264533pt;}
._c_c00469{width:14.172107pt;}
._a_c00469{width:15.281760pt;}
._1_c00469{width:17.199467pt;}
._8_c00469{width:18.827893pt;}
._e_c00469{width:21.690667pt;}
._13_c00469{width:22.667893pt;}
._15_c00469{width:24.677493pt;}
._9_c00469{width:26.560800pt;}
._17_c00469{width:27.672747pt;}
._f_c00469{width:32.850347pt;}
._10_c00469{width:38.714667pt;}
.fs5_c00469{font-size:47.360000pt;}
.fs7_c00469{font-size:49.920000pt;}
.fsc_c00469{font-size:52.266667pt;}
.fs0_c00469{font-size:54.400000pt;}
.fs3_c00469{font-size:57.600000pt;}
.fs4_c00469{font-size:60.800000pt;}
.fs2_c00469{font-size:62.400000pt;}
.fs1_c00469{font-size:63.466667pt;}
.fs8_c00469{font-size:64.000000pt;}
.fsa_c00469{font-size:65.066667pt;}
.fs6_c00469{font-size:66.666667pt;}
.fsb_c00469{font-size:67.733333pt;}
.fs9_c00469{font-size:69.333333pt;}
.y0_c00469{bottom:0.000000pt;}
.y22_c00469{bottom:58.893333pt;}
.y21_c00469{bottom:111.360000pt;}
.y1f_c00469{bottom:138.889867pt;}
.y20_c00469{bottom:138.893333pt;}
.y1e_c00469{bottom:166.720000pt;}
.y1d_c00469{bottom:166.721200pt;}
.y1c_c00469{bottom:220.493333pt;}
.y1b_c00469{bottom:248.973333pt;}
.y19_c00469{bottom:276.491867pt;}
.y1a_c00469{bottom:276.493333pt;}
.y18_c00469{bottom:331.533333pt;}
.y17_c00469{bottom:331.534933pt;}
.y15_c00469{bottom:359.051867pt;}
.y16_c00469{bottom:359.053333pt;}
.y14_c00469{bottom:414.093333pt;}
.y13_c00469{bottom:441.280000pt;}
.y12_c00469{bottom:495.693333pt;}
.y11_c00469{bottom:523.853333pt;}
.y10_c00469{bottom:523.857867pt;}
.yf_c00469{bottom:551.053333pt;}
.ye_c00469{bottom:605.773333pt;}
.yc_c00469{bottom:632.967200pt;}
.yd_c00469{bottom:632.973333pt;}
.yb_c00469{bottom:660.480000pt;}
.ya_c00469{bottom:715.533333pt;}
.y9_c00469{bottom:742.720000pt;}
.y8_c00469{bottom:797.773333pt;}
.y7_c00469{bottom:824.640000pt;}
.y6_c00469{bottom:879.693333pt;}
.y5_c00469{bottom:879.700400pt;}
.y4_c00469{bottom:906.880000pt;}
.y3_c00469{bottom:962.560000pt;}
.y2_c00469{bottom:989.453333pt;}
.y1_c00469{bottom:1057.933333pt;}
.h7_c00469{height:31.541760pt;}
.h9_c00469{height:33.246720pt;}
.hf_c00469{height:51.296875pt;}
.h2_c00469{height:54.825000pt;}
.h5_c00469{height:60.075000pt;}
.h4_c00469{height:61.211719pt;}
.h3_c00469{height:62.289062pt;}
.h6_c00469{height:63.412500pt;}
.hc_c00469{height:63.827604pt;}
.ha_c00469{height:64.500000pt;}
.he_c00469{height:65.076450pt;}
.hd_c00469{height:66.443490pt;}
.h8_c00469{height:67.187500pt;}
.hb_c00469{height:69.875000pt;}
.h1_c00469{height:1122.666667pt;}
.h0_c00469{height:1122.880000pt;}
.w1_c00469{width:793.333333pt;}
.w0_c00469{width:793.600000pt;}
.x0_c00469{left:0.000000pt;}
.x23_c00469{left:105.440000pt;}
.x18_c00469{left:106.497600pt;}
.x12_c00469{left:107.440000pt;}
.x6_c00469{left:108.720000pt;}
.x2_c00469{left:110.000000pt;}
.x1_c00469{left:110.960000pt;}
.x31_c00469{left:158.626667pt;}
.x2c_c00469{left:169.186667pt;}
.x7_c00469{left:173.600000pt;}
.x37_c00469{left:175.520000pt;}
.x32_c00469{left:177.146667pt;}
.x1e_c00469{left:178.080000pt;}
.x3a_c00469{left:201.733333pt;}
.x8_c00469{left:205.213333pt;}
.x13_c00469{left:207.773333pt;}
.x2d_c00469{left:211.040000pt;}
.x1f_c00469{left:215.346667pt;}
.x26_c00469{left:218.746667pt;}
.x16_c00469{left:222.280000pt;}
.x27_c00469{left:232.186667pt;}
.x17_c00469{left:237.240000pt;}
.x22_c00469{left:241.426667pt;}
.xb_c00469{left:259.533333pt;}
.xc_c00469{left:288.026667pt;}
.x3b_c00469{left:299.106667pt;}
.x33_c00469{left:311.666667pt;}
.x10_c00469{left:329.053333pt;}
.x45_c00469{left:334.906667pt;}
.x3c_c00469{left:338.720000pt;}
.x34_c00469{left:349.586667pt;}
.x46_c00469{left:351.960000pt;}
.x3d_c00469{left:358.400000pt;}
.x11_c00469{left:360.733333pt;}
.x35_c00469{left:361.626667pt;}
.x28_c00469{left:368.480000pt;}
.x9_c00469{left:371.080000pt;}
.x49_c00469{left:375.213333pt;}
.xa_c00469{left:386.360000pt;}
.xd_c00469{left:392.120000pt;}
.x36_c00469{left:399.053333pt;}
.x3_c00469{left:404.973333pt;}
.x29_c00469{left:408.160000pt;}
.x3e_c00469{left:413.306667pt;}
.x19_c00469{left:427.680000pt;}
.x14_c00469{left:443.666667pt;}
.x1a_c00469{left:445.240000pt;}
.x4_c00469{left:446.840000pt;}
.x15_c00469{left:470.146667pt;}
.x2e_c00469{left:480.480000pt;}
.x38_c00469{left:493.080000pt;}
.x3f_c00469{left:517.666667pt;}
.x2f_c00469{left:521.280000pt;}
.x2a_c00469{left:528.160000pt;}
.x24_c00469{left:530.386667pt;}
.x1b_c00469{left:538.773333pt;}
.x2b_c00469{left:544.226667pt;}
.x25_c00469{left:552.600000pt;}
.x40_c00469{left:553.720000pt;}
.x43_c00469{left:565.920000pt;}
.x1c_c00469{left:567.800000pt;}
.x41_c00469{left:583.400000pt;}
.x44_c00469{left:586.520000pt;}
.xe_c00469{left:594.026667pt;}
.x47_c00469{left:597.320000pt;}
.x42_c00469{left:598.240000pt;}
.x30_c00469{left:612.213333pt;}
.x48_c00469{left:614.840000pt;}
.xf_c00469{left:616.840000pt;}
.x20_c00469{left:636.346667pt;}
.x5_c00469{left:648.453333pt;}
.x1d_c00469{left:650.080000pt;}
.x39_c00469{left:654.226667pt;}
.x21_c00469{left:657.573333pt;}
}





/* 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_c00470 {
    display:none;
  }
  .loading-indicator_c00470.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00470 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_c00470 { 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_c00470" -> "#page-container .classname_c00470")
 */
.pf_c00470 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00470 { /* 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_c00470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00470 { /* 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_c00470 { /* 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_c00470 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00470 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00470 {overflow:visible;}
  }
}
.c_c00470 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00470 { /* 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_c00470:after { /* webkit #35443 */
  content: '';
}
.t_c00470:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00470 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 */
}
.__c00470 { /* 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_c00470 { /* info for Javascript */
  display:none;
}
.l_c00470 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00470 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00470 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00470: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_c00470 {
    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_c00470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00470.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_c00470 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00470{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00470;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.311035;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_c00470;src:url('chunks/assets/font_119f3de666c44687620e5564.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.284668;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_c00470;src:url('chunks/assets/font_079ef5d15e40c4e23bdda5a6.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.284180;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_c00470;src:url('chunks/assets/font_1a2c6017df13bbda0947932d.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;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;}
.m7_c00470{transform:matrix(0.167615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167615,0.000000,0.000000,0.250000,0,0);}
.m6_c00470{transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);}
.ma_c00470{transform:matrix(0.224352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224352,0.000000,0.000000,0.250000,0,0);}
.m16_c00470{transform:matrix(0.229983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229983,0.000000,0.000000,0.250000,0,0);}
.md_c00470{transform:matrix(0.232965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232965,0.000000,0.000000,0.250000,0,0);}
.me_c00470{transform:matrix(0.237239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237239,0.000000,0.000000,0.250000,0,0);}
.m13_c00470{transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);}
.m11_c00470{transform:matrix(0.243878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243878,0.000000,0.000000,0.250000,0,0);}
.m8_c00470{transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);}
.m12_c00470{transform:matrix(0.244744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244744,0.000000,0.000000,0.250000,0,0);}
.m5_c00470{transform:matrix(0.244895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244895,0.000000,0.000000,0.250000,0,0);}
.m9_c00470{transform:matrix(0.245118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245118,0.000000,0.000000,0.250000,0,0);}
.mf_c00470{transform:matrix(0.245913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245913,0.000000,0.000000,0.250000,0,0);}
.mc_c00470{transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);}
.m15_c00470{transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);}
.m4_c00470{transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);}
.m3_c00470{transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);}
.mb_c00470{transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);}
.m10_c00470{transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);}
.m0_c00470{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);}
.m14_c00470{transform:matrix(0.261235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261235,0.000000,0.000000,0.250000,0,0);}
.m2_c00470{transform:matrix(0.273472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273472,0.000000,0.000000,0.250000,0,0);}
.m1_c00470{transform:matrix(0.292218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292218,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls52_c00470{letter-spacing:-2.457000px;}
.ls8e_c00470{letter-spacing:-2.442960px;}
.ls80_c00470{letter-spacing:-2.415000px;}
.ls50_c00470{letter-spacing:-2.379780px;}
.ls6a_c00470{letter-spacing:-2.373000px;}
.lsa4_c00470{letter-spacing:-2.352000px;}
.ls91_c00470{letter-spacing:-2.274480px;}
.ls75_c00470{letter-spacing:-2.268000px;}
.ls67_c00470{letter-spacing:-2.204280px;}
.lsa5_c00470{letter-spacing:-2.163000px;}
.ls9a_c00470{letter-spacing:-2.155140px;}
.ls4d_c00470{letter-spacing:-1.902420px;}
.ls48_c00470{letter-spacing:-1.839240px;}
.ls5f_c00470{letter-spacing:-1.797120px;}
.ls97_c00470{letter-spacing:-1.769040px;}
.ls46_c00470{letter-spacing:-1.677780px;}
.ls68_c00470{letter-spacing:-1.670760px;}
.ls83_c00470{letter-spacing:-1.642680px;}
.lsa2_c00470{letter-spacing:-1.642200px;}
.ls73_c00470{letter-spacing:-1.572480px;}
.ls8f_c00470{letter-spacing:-1.545600px;}
.ls81_c00470{letter-spacing:-1.511100px;}
.ls9e_c00470{letter-spacing:-1.497300px;}
.ls84_c00470{letter-spacing:-1.460160px;}
.ls89_c00470{letter-spacing:-1.442100px;}
.ls53_c00470{letter-spacing:-1.277640px;}
.ls82_c00470{letter-spacing:-1.270620px;}
.ls71_c00470{letter-spacing:-1.235520px;}
.ls96_c00470{letter-spacing:-1.124700px;}
.ls4e_c00470{letter-spacing:-1.081080px;}
.ls7c_c00470{letter-spacing:-1.074060px;}
.ls59_c00470{letter-spacing:-1.010880px;}
.ls7e_c00470{letter-spacing:-0.996840px;}
.ls4a_c00470{letter-spacing:-0.989820px;}
.ls78_c00470{letter-spacing:-0.954720px;}
.ls77_c00470{letter-spacing:-0.947700px;}
.ls49_c00470{letter-spacing:-0.940680px;}
.ls3e_c00470{letter-spacing:-0.926640px;}
.ls6d_c00470{letter-spacing:-0.912600px;}
.ls64_c00470{letter-spacing:-0.849420px;}
.ls99_c00470{letter-spacing:-0.821340px;}
.ls5c_c00470{letter-spacing:-0.786240px;}
.lsa3_c00470{letter-spacing:-0.766080px;}
.ls63_c00470{letter-spacing:-0.765180px;}
.ls9d_c00470{letter-spacing:-0.752100px;}
.ls3f_c00470{letter-spacing:-0.702000px;}
.ls85_c00470{letter-spacing:-0.673920px;}
.ls6e_c00470{letter-spacing:-0.666900px;}
.ls72_c00470{letter-spacing:-0.652860px;}
.ls92_c00470{letter-spacing:-0.610740px;}
.ls6f_c00470{letter-spacing:-0.589680px;}
.ls56_c00470{letter-spacing:-0.582660px;}
.ls95_c00470{letter-spacing:-0.575640px;}
.ls47_c00470{letter-spacing:-0.554580px;}
.ls74_c00470{letter-spacing:-0.552000px;}
.ls88_c00470{letter-spacing:-0.540540px;}
.ls93_c00470{letter-spacing:-0.533520px;}
.ls8b_c00470{letter-spacing:-0.519480px;}
.ls61_c00470{letter-spacing:-0.512460px;}
.ls79_c00470{letter-spacing:-0.449280px;}
.ls7f_c00470{letter-spacing:-0.427800px;}
.ls55_c00470{letter-spacing:-0.421200px;}
.ls8d_c00470{letter-spacing:-0.414180px;}
.ls8a_c00470{letter-spacing:-0.407100px;}
.ls6b_c00470{letter-spacing:-0.358020px;}
.ls4c_c00470{letter-spacing:-0.351000px;}
.ls7a_c00470{letter-spacing:-0.294840px;}
.ls6c_c00470{letter-spacing:-0.287820px;}
.ls65_c00470{letter-spacing:-0.280800px;}
.ls5d_c00470{letter-spacing:-0.273780px;}
.ls41_c00470{letter-spacing:-0.259740px;}
.ls8c_c00470{letter-spacing:-0.238680px;}
.ls57_c00470{letter-spacing:-0.224640px;}
.ls86_c00470{letter-spacing:-0.217620px;}
.ls5e_c00470{letter-spacing:-0.203580px;}
.ls66_c00470{letter-spacing:-0.196560px;}
.ls60_c00470{letter-spacing:-0.189540px;}
.ls9c_c00470{letter-spacing:-0.172500px;}
.ls44_c00470{letter-spacing:-0.168480px;}
.ls87_c00470{letter-spacing:-0.161460px;}
.ls7d_c00470{letter-spacing:-0.133380px;}
.ls5a_c00470{letter-spacing:-0.105300px;}
.ls62_c00470{letter-spacing:-0.091260px;}
.ls43_c00470{letter-spacing:-0.063180px;}
.ls90_c00470{letter-spacing:-0.062100px;}
.ls58_c00470{letter-spacing:-0.056160px;}
.ls94_c00470{letter-spacing:-0.049140px;}
.ls76_c00470{letter-spacing:-0.041400px;}
.ls45_c00470{letter-spacing:-0.035100px;}
.ls4f_c00470{letter-spacing:-0.021060px;}
.ls4b_c00470{letter-spacing:-0.014040px;}
.ls3d_c00470{letter-spacing:0.000000px;}
.ls18_c00470{letter-spacing:0.007020px;}
.ls4_c00470{letter-spacing:0.014040px;}
.ls70_c00470{letter-spacing:0.021060px;}
.ls20_c00470{letter-spacing:0.028080px;}
.ls9b_c00470{letter-spacing:0.034500px;}
.ls24_c00470{letter-spacing:0.049140px;}
.ls9f_c00470{letter-spacing:0.055200px;}
.ls21_c00470{letter-spacing:0.056160px;}
.ls7b_c00470{letter-spacing:0.063180px;}
.lsa_c00470{letter-spacing:0.070200px;}
.ls0_c00470{letter-spacing:0.084240px;}
.ls2f_c00470{letter-spacing:0.098280px;}
.ls10_c00470{letter-spacing:0.105300px;}
.ls6_c00470{letter-spacing:0.110400px;}
.ls1c_c00470{letter-spacing:0.112320px;}
.lsb_c00470{letter-spacing:0.119340px;}
.ls2d_c00470{letter-spacing:0.124200px;}
.lsc_c00470{letter-spacing:0.140400px;}
.ls98_c00470{letter-spacing:0.161460px;}
.lse_c00470{letter-spacing:0.168480px;}
.ls51_c00470{letter-spacing:0.175500px;}
.ls13_c00470{letter-spacing:0.196560px;}
.ls37_c00470{letter-spacing:0.200100px;}
.ls7_c00470{letter-spacing:0.217620px;}
.ls40_c00470{letter-spacing:0.224640px;}
.ls3a_c00470{letter-spacing:0.227700px;}
.ls5b_c00470{letter-spacing:0.248400px;}
.ls1_c00470{letter-spacing:0.273780px;}
.ls23_c00470{letter-spacing:0.287820px;}
.ls3_c00470{letter-spacing:0.308880px;}
.ls28_c00470{letter-spacing:0.315900px;}
.ls2b_c00470{letter-spacing:0.345000px;}
.ls17_c00470{letter-spacing:0.358020px;}
.ls8_c00470{letter-spacing:0.365700px;}
.ls2_c00470{letter-spacing:0.372060px;}
.ls14_c00470{letter-spacing:0.379080px;}
.ls42_c00470{letter-spacing:0.379500px;}
.ls2a_c00470{letter-spacing:0.386400px;}
.ls69_c00470{letter-spacing:0.428220px;}
.ls1a_c00470{letter-spacing:0.477360px;}
.lsd_c00470{letter-spacing:0.533520px;}
.ls31_c00470{letter-spacing:0.545100px;}
.ls16_c00470{letter-spacing:0.572700px;}
.ls9_c00470{letter-spacing:0.648600px;}
.ls54_c00470{letter-spacing:0.652860px;}
.ls22_c00470{letter-spacing:0.680940px;}
.ls1f_c00470{letter-spacing:0.687960px;}
.lsa0_c00470{letter-spacing:0.694980px;}
.ls27_c00470{letter-spacing:0.738300px;}
.ls26_c00470{letter-spacing:0.752100px;}
.ls29_c00470{letter-spacing:0.856440px;}
.ls1b_c00470{letter-spacing:0.891540px;}
.ls34_c00470{letter-spacing:0.897000px;}
.ls2e_c00470{letter-spacing:0.905580px;}
.ls19_c00470{letter-spacing:0.947700px;}
.ls12_c00470{letter-spacing:0.989820px;}
.ls5_c00470{letter-spacing:1.055700px;}
.ls36_c00470{letter-spacing:1.166100px;}
.ls25_c00470{letter-spacing:1.221300px;}
.lsf_c00470{letter-spacing:1.242540px;}
.ls11_c00470{letter-spacing:1.263600px;}
.ls2c_c00470{letter-spacing:1.297200px;}
.ls1d_c00470{letter-spacing:1.368900px;}
.ls33_c00470{letter-spacing:1.373100px;}
.ls3b_c00470{letter-spacing:1.408440px;}
.ls15_c00470{letter-spacing:1.453140px;}
.ls35_c00470{letter-spacing:1.476600px;}
.ls39_c00470{letter-spacing:1.524900px;}
.ls1e_c00470{letter-spacing:1.579500px;}
.ls30_c00470{letter-spacing:1.766400px;}
.ls32_c00470{letter-spacing:1.828500px;}
.ls38_c00470{letter-spacing:2.104500px;}
.lsa1_c00470{letter-spacing:3.450000px;}
.ls3c_c00470{letter-spacing:3.510000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{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__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00470{word-spacing:-0.200460px;}
.wsa_c00470{word-spacing:0.000000px;}
.ws6_c00470{word-spacing:2.793960px;}
.ws4_c00470{word-spacing:3.720600px;}
.ws5_c00470{word-spacing:4.998240px;}
.ws8_c00470{word-spacing:10.228140px;}
.ws9_c00470{word-spacing:10.859940px;}
.ws0_c00470{word-spacing:12.846600px;}
.ws7_c00470{word-spacing:16.124940px;}
.ws2_c00470{word-spacing:21.228480px;}
.ws3_c00470{word-spacing:21.881340px;}
._14_c00470{margin-left:-10.740600px;}
._15_c00470{margin-left:-8.367840px;}
._17_c00470{margin-left:-6.119160px;}
._a_c00470{margin-left:-4.752960px;}
._f_c00470{margin-left:-3.327420px;}
._9_c00470{margin-left:-1.109160px;}
._0_c00470{width:1.245600px;}
._6_c00470{width:2.878200px;}
._7_c00470{width:3.983220px;}
._16_c00470{width:5.033280px;}
._5_c00470{width:6.149520px;}
._b_c00470{width:7.458720px;}
._11_c00470{width:8.462640px;}
._8_c00470{width:9.928800px;}
._12_c00470{width:10.993320px;}
._3_c00470{width:12.636000px;}
._1_c00470{width:13.773240px;}
._4_c00470{width:15.515340px;}
._13_c00470{width:16.660380px;}
._10_c00470{width:20.996820px;}
._c_c00470{width:22.351680px;}
._2_c00470{width:23.657400px;}
._e_c00470{width:25.552800px;}
._d_c00470{width:28.480140px;}
.fc0_c00470{color:transparent;}
.fs0_c00470{font-size:58.200000px;}
.fs6_c00470{font-size:61.800000px;}
.fs4_c00470{font-size:64.800000px;}
.fs5_c00470{font-size:67.200000px;}
.fs3_c00470{font-size:67.800000px;}
.fs2_c00470{font-size:69.000000px;}
.fs1_c00470{font-size:70.200000px;}
.y0_c00470{bottom:0.000000px;}
.y25_c00470{bottom:72.015006px;}
.y24_c00470{bottom:133.560006px;}
.y22_c00470{bottom:163.796256px;}
.y23_c00470{bottom:163.800006px;}
.y20_c00470{bottom:194.410056px;}
.y21_c00470{bottom:194.415006px;}
.y1f_c00470{bottom:256.695006px;}
.y1e_c00470{bottom:287.280006px;}
.y1c_c00470{bottom:348.127806px;}
.y1d_c00470{bottom:348.135006px;}
.y1a_c00470{bottom:378.728256px;}
.y1b_c00470{bottom:378.735006px;}
.y19_c00470{bottom:410.055006px;}
.y17_c00470{bottom:471.964206px;}
.y18_c00470{bottom:471.975006px;}
.y16_c00470{bottom:502.553856px;}
.y15_c00470{bottom:564.136806px;}
.y14_c00470{bottom:595.095006px;}
.y13_c00470{bottom:625.689606px;}
.y12_c00470{bottom:687.255006px;}
.y11_c00470{bottom:717.855006px;}
.y10_c00470{bottom:717.858606px;}
.yf_c00470{bottom:779.775006px;}
.ye_c00470{bottom:779.776806px;}
.yc_c00470{bottom:810.728256px;}
.yd_c00470{bottom:810.735006px;}
.ya_c00470{bottom:842.049156px;}
.yb_c00470{bottom:842.055006px;}
.y8_c00470{bottom:902.890356px;}
.y9_c00470{bottom:902.895006px;}
.y7_c00470{bottom:933.480006px;}
.y6_c00470{bottom:933.483156px;}
.y5_c00470{bottom:994.667406px;}
.y4_c00470{bottom:1055.513256px;}
.y3_c00470{bottom:1086.840006px;}
.y2_c00470{bottom:1117.800006px;}
.y1_c00470{bottom:1193.415006px;}
.h2_c00470{height:58.654687px;}
.hb_c00470{height:60.653320px;}
.ha_c00470{height:65.953125px;}
.h5_c00470{height:66.541992px;}
.h7_c00470{height:67.584375px;}
.h6_c00470{height:67.686035px;}
.h9_c00470{height:67.701035px;}
.h3_c00470{height:68.897461px;}
.h8_c00470{height:68.924461px;}
.h4_c00470{height:68.947861px;}
.h1_c00470{height:1263.000000px;}
.h0_c00470{height:1263.240006px;}
.w1_c00470{width:892.500000px;}
.w0_c00470{width:892.799998px;}
.x0_c00470{left:0.000000px;}
.x30_c00470{left:120.599998px;}
.x26_c00470{left:122.009549px;}
.x1_c00470{left:123.029999px;}
.x27_c00470{left:135.254998px;}
.x1c_c00470{left:141.314999px;}
.x28_c00470{left:150.734998px;}
.x31_c00470{left:190.439998px;}
.x2_c00470{left:197.459999px;}
.x16_c00470{left:201.884998px;}
.x2c_c00470{left:214.124998px;}
.x17_c00470{left:223.154999px;}
.xe_c00470{left:225.284999px;}
.x3_c00470{left:233.594999px;}
.x2d_c00470{left:241.664998px;}
.xf_c00470{left:249.944999px;}
.x18_c00470{left:257.264998px;}
.x12_c00470{left:260.159999px;}
.x13_c00470{left:271.724999px;}
.x19_c00470{left:273.749999px;}
.x29_c00470{left:276.434999px;}
.x23_c00470{left:279.464999px;}
.x1f_c00470{left:312.959999px;}
.x6_c00470{left:324.539999px;}
.x7_c00470{left:344.624999px;}
.x20_c00470{left:347.114999px;}
.x1a_c00470{left:369.839999px;}
.x2a_c00470{left:372.419999px;}
.x8_c00470{left:380.444999px;}
.x1b_c00470{left:397.184999px;}
.x9_c00470{left:411.224999px;}
.x32_c00470{left:412.379999px;}
.x33_c00470{left:422.834999px;}
.x1d_c00470{left:436.829998px;}
.x14_c00470{left:439.454998px;}
.x1e_c00470{left:458.174999px;}
.x15_c00470{left:461.369999px;}
.x21_c00470{left:464.864999px;}
.x22_c00470{left:505.364999px;}
.xa_c00470{left:549.899999px;}
.xb_c00470{left:574.124998px;}
.x4_c00470{left:577.979999px;}
.x5_c00470{left:600.434999px;}
.x24_c00470{left:668.414999px;}
.x10_c00470{left:671.999998px;}
.xc_c00470{left:674.399999px;}
.x25_c00470{left:684.644999px;}
.x11_c00470{left:686.729999px;}
.x2e_c00470{left:688.004999px;}
.xd_c00470{left:700.364998px;}
.x2f_c00470{left:707.684999px;}
.x2b_c00470{left:733.499998px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls52_c00470{letter-spacing:-2.184000pt;}
.ls8e_c00470{letter-spacing:-2.171520pt;}
.ls80_c00470{letter-spacing:-2.146667pt;}
.ls50_c00470{letter-spacing:-2.115360pt;}
.ls6a_c00470{letter-spacing:-2.109333pt;}
.lsa4_c00470{letter-spacing:-2.090667pt;}
.ls91_c00470{letter-spacing:-2.021760pt;}
.ls75_c00470{letter-spacing:-2.016000pt;}
.ls67_c00470{letter-spacing:-1.959360pt;}
.lsa5_c00470{letter-spacing:-1.922667pt;}
.ls9a_c00470{letter-spacing:-1.915680pt;}
.ls4d_c00470{letter-spacing:-1.691040pt;}
.ls48_c00470{letter-spacing:-1.634880pt;}
.ls5f_c00470{letter-spacing:-1.597440pt;}
.ls97_c00470{letter-spacing:-1.572480pt;}
.ls46_c00470{letter-spacing:-1.491360pt;}
.ls68_c00470{letter-spacing:-1.485120pt;}
.ls83_c00470{letter-spacing:-1.460160pt;}
.lsa2_c00470{letter-spacing:-1.459733pt;}
.ls73_c00470{letter-spacing:-1.397760pt;}
.ls8f_c00470{letter-spacing:-1.373867pt;}
.ls81_c00470{letter-spacing:-1.343200pt;}
.ls9e_c00470{letter-spacing:-1.330933pt;}
.ls84_c00470{letter-spacing:-1.297920pt;}
.ls89_c00470{letter-spacing:-1.281867pt;}
.ls53_c00470{letter-spacing:-1.135680pt;}
.ls82_c00470{letter-spacing:-1.129440pt;}
.ls71_c00470{letter-spacing:-1.098240pt;}
.ls96_c00470{letter-spacing:-0.999733pt;}
.ls4e_c00470{letter-spacing:-0.960960pt;}
.ls7c_c00470{letter-spacing:-0.954720pt;}
.ls59_c00470{letter-spacing:-0.898560pt;}
.ls7e_c00470{letter-spacing:-0.886080pt;}
.ls4a_c00470{letter-spacing:-0.879840pt;}
.ls78_c00470{letter-spacing:-0.848640pt;}
.ls77_c00470{letter-spacing:-0.842400pt;}
.ls49_c00470{letter-spacing:-0.836160pt;}
.ls3e_c00470{letter-spacing:-0.823680pt;}
.ls6d_c00470{letter-spacing:-0.811200pt;}
.ls64_c00470{letter-spacing:-0.755040pt;}
.ls99_c00470{letter-spacing:-0.730080pt;}
.ls5c_c00470{letter-spacing:-0.698880pt;}
.lsa3_c00470{letter-spacing:-0.680960pt;}
.ls63_c00470{letter-spacing:-0.680160pt;}
.ls9d_c00470{letter-spacing:-0.668533pt;}
.ls3f_c00470{letter-spacing:-0.624000pt;}
.ls85_c00470{letter-spacing:-0.599040pt;}
.ls6e_c00470{letter-spacing:-0.592800pt;}
.ls72_c00470{letter-spacing:-0.580320pt;}
.ls92_c00470{letter-spacing:-0.542880pt;}
.ls6f_c00470{letter-spacing:-0.524160pt;}
.ls56_c00470{letter-spacing:-0.517920pt;}
.ls95_c00470{letter-spacing:-0.511680pt;}
.ls47_c00470{letter-spacing:-0.492960pt;}
.ls74_c00470{letter-spacing:-0.490667pt;}
.ls88_c00470{letter-spacing:-0.480480pt;}
.ls93_c00470{letter-spacing:-0.474240pt;}
.ls8b_c00470{letter-spacing:-0.461760pt;}
.ls61_c00470{letter-spacing:-0.455520pt;}
.ls79_c00470{letter-spacing:-0.399360pt;}
.ls7f_c00470{letter-spacing:-0.380267pt;}
.ls55_c00470{letter-spacing:-0.374400pt;}
.ls8d_c00470{letter-spacing:-0.368160pt;}
.ls8a_c00470{letter-spacing:-0.361867pt;}
.ls6b_c00470{letter-spacing:-0.318240pt;}
.ls4c_c00470{letter-spacing:-0.312000pt;}
.ls7a_c00470{letter-spacing:-0.262080pt;}
.ls6c_c00470{letter-spacing:-0.255840pt;}
.ls65_c00470{letter-spacing:-0.249600pt;}
.ls5d_c00470{letter-spacing:-0.243360pt;}
.ls41_c00470{letter-spacing:-0.230880pt;}
.ls8c_c00470{letter-spacing:-0.212160pt;}
.ls57_c00470{letter-spacing:-0.199680pt;}
.ls86_c00470{letter-spacing:-0.193440pt;}
.ls5e_c00470{letter-spacing:-0.180960pt;}
.ls66_c00470{letter-spacing:-0.174720pt;}
.ls60_c00470{letter-spacing:-0.168480pt;}
.ls9c_c00470{letter-spacing:-0.153333pt;}
.ls44_c00470{letter-spacing:-0.149760pt;}
.ls87_c00470{letter-spacing:-0.143520pt;}
.ls7d_c00470{letter-spacing:-0.118560pt;}
.ls5a_c00470{letter-spacing:-0.093600pt;}
.ls62_c00470{letter-spacing:-0.081120pt;}
.ls43_c00470{letter-spacing:-0.056160pt;}
.ls90_c00470{letter-spacing:-0.055200pt;}
.ls58_c00470{letter-spacing:-0.049920pt;}
.ls94_c00470{letter-spacing:-0.043680pt;}
.ls76_c00470{letter-spacing:-0.036800pt;}
.ls45_c00470{letter-spacing:-0.031200pt;}
.ls4f_c00470{letter-spacing:-0.018720pt;}
.ls4b_c00470{letter-spacing:-0.012480pt;}
.ls3d_c00470{letter-spacing:0.000000pt;}
.ls18_c00470{letter-spacing:0.006240pt;}
.ls4_c00470{letter-spacing:0.012480pt;}
.ls70_c00470{letter-spacing:0.018720pt;}
.ls20_c00470{letter-spacing:0.024960pt;}
.ls9b_c00470{letter-spacing:0.030667pt;}
.ls24_c00470{letter-spacing:0.043680pt;}
.ls9f_c00470{letter-spacing:0.049067pt;}
.ls21_c00470{letter-spacing:0.049920pt;}
.ls7b_c00470{letter-spacing:0.056160pt;}
.lsa_c00470{letter-spacing:0.062400pt;}
.ls0_c00470{letter-spacing:0.074880pt;}
.ls2f_c00470{letter-spacing:0.087360pt;}
.ls10_c00470{letter-spacing:0.093600pt;}
.ls6_c00470{letter-spacing:0.098133pt;}
.ls1c_c00470{letter-spacing:0.099840pt;}
.lsb_c00470{letter-spacing:0.106080pt;}
.ls2d_c00470{letter-spacing:0.110400pt;}
.lsc_c00470{letter-spacing:0.124800pt;}
.ls98_c00470{letter-spacing:0.143520pt;}
.lse_c00470{letter-spacing:0.149760pt;}
.ls51_c00470{letter-spacing:0.156000pt;}
.ls13_c00470{letter-spacing:0.174720pt;}
.ls37_c00470{letter-spacing:0.177867pt;}
.ls7_c00470{letter-spacing:0.193440pt;}
.ls40_c00470{letter-spacing:0.199680pt;}
.ls3a_c00470{letter-spacing:0.202400pt;}
.ls5b_c00470{letter-spacing:0.220800pt;}
.ls1_c00470{letter-spacing:0.243360pt;}
.ls23_c00470{letter-spacing:0.255840pt;}
.ls3_c00470{letter-spacing:0.274560pt;}
.ls28_c00470{letter-spacing:0.280800pt;}
.ls2b_c00470{letter-spacing:0.306667pt;}
.ls17_c00470{letter-spacing:0.318240pt;}
.ls8_c00470{letter-spacing:0.325067pt;}
.ls2_c00470{letter-spacing:0.330720pt;}
.ls14_c00470{letter-spacing:0.336960pt;}
.ls42_c00470{letter-spacing:0.337333pt;}
.ls2a_c00470{letter-spacing:0.343467pt;}
.ls69_c00470{letter-spacing:0.380640pt;}
.ls1a_c00470{letter-spacing:0.424320pt;}
.lsd_c00470{letter-spacing:0.474240pt;}
.ls31_c00470{letter-spacing:0.484533pt;}
.ls16_c00470{letter-spacing:0.509067pt;}
.ls9_c00470{letter-spacing:0.576533pt;}
.ls54_c00470{letter-spacing:0.580320pt;}
.ls22_c00470{letter-spacing:0.605280pt;}
.ls1f_c00470{letter-spacing:0.611520pt;}
.lsa0_c00470{letter-spacing:0.617760pt;}
.ls27_c00470{letter-spacing:0.656267pt;}
.ls26_c00470{letter-spacing:0.668533pt;}
.ls29_c00470{letter-spacing:0.761280pt;}
.ls1b_c00470{letter-spacing:0.792480pt;}
.ls34_c00470{letter-spacing:0.797333pt;}
.ls2e_c00470{letter-spacing:0.804960pt;}
.ls19_c00470{letter-spacing:0.842400pt;}
.ls12_c00470{letter-spacing:0.879840pt;}
.ls5_c00470{letter-spacing:0.938400pt;}
.ls36_c00470{letter-spacing:1.036533pt;}
.ls25_c00470{letter-spacing:1.085600pt;}
.lsf_c00470{letter-spacing:1.104480pt;}
.ls11_c00470{letter-spacing:1.123200pt;}
.ls2c_c00470{letter-spacing:1.153067pt;}
.ls1d_c00470{letter-spacing:1.216800pt;}
.ls33_c00470{letter-spacing:1.220533pt;}
.ls3b_c00470{letter-spacing:1.251947pt;}
.ls15_c00470{letter-spacing:1.291680pt;}
.ls35_c00470{letter-spacing:1.312533pt;}
.ls39_c00470{letter-spacing:1.355467pt;}
.ls1e_c00470{letter-spacing:1.404000pt;}
.ls30_c00470{letter-spacing:1.570133pt;}
.ls32_c00470{letter-spacing:1.625333pt;}
.ls38_c00470{letter-spacing:1.870667pt;}
.lsa1_c00470{letter-spacing:3.066667pt;}
.ls3c_c00470{letter-spacing:3.120000pt;}
.ws1_c00470{word-spacing:-0.178187pt;}
.wsa_c00470{word-spacing:0.000000pt;}
.ws6_c00470{word-spacing:2.483520pt;}
.ws4_c00470{word-spacing:3.307200pt;}
.ws5_c00470{word-spacing:4.442880pt;}
.ws8_c00470{word-spacing:9.091680pt;}
.ws9_c00470{word-spacing:9.653280pt;}
.ws0_c00470{word-spacing:11.419200pt;}
.ws7_c00470{word-spacing:14.333280pt;}
.ws2_c00470{word-spacing:18.869760pt;}
.ws3_c00470{word-spacing:19.450080pt;}
._14_c00470{margin-left:-9.547200pt;}
._15_c00470{margin-left:-7.438080pt;}
._17_c00470{margin-left:-5.439253pt;}
._a_c00470{margin-left:-4.224853pt;}
._f_c00470{margin-left:-2.957707pt;}
._9_c00470{margin-left:-0.985920pt;}
._0_c00470{width:1.107200pt;}
._6_c00470{width:2.558400pt;}
._7_c00470{width:3.540640pt;}
._16_c00470{width:4.474027pt;}
._5_c00470{width:5.466240pt;}
._b_c00470{width:6.629973pt;}
._11_c00470{width:7.522347pt;}
._8_c00470{width:8.825600pt;}
._12_c00470{width:9.771840pt;}
._3_c00470{width:11.232000pt;}
._1_c00470{width:12.242880pt;}
._4_c00470{width:13.791413pt;}
._13_c00470{width:14.809227pt;}
._10_c00470{width:18.663840pt;}
._c_c00470{width:19.868160pt;}
._2_c00470{width:21.028800pt;}
._e_c00470{width:22.713600pt;}
._d_c00470{width:25.315680pt;}
.fs0_c00470{font-size:51.733333pt;}
.fs6_c00470{font-size:54.933333pt;}
.fs4_c00470{font-size:57.600000pt;}
.fs5_c00470{font-size:59.733333pt;}
.fs3_c00470{font-size:60.266667pt;}
.fs2_c00470{font-size:61.333333pt;}
.fs1_c00470{font-size:62.400000pt;}
.y0_c00470{bottom:0.000000pt;}
.y25_c00470{bottom:64.013339pt;}
.y24_c00470{bottom:118.720005pt;}
.y22_c00470{bottom:145.596672pt;}
.y23_c00470{bottom:145.600005pt;}
.y20_c00470{bottom:172.808939pt;}
.y21_c00470{bottom:172.813339pt;}
.y1f_c00470{bottom:228.173339pt;}
.y1e_c00470{bottom:255.360005pt;}
.y1c_c00470{bottom:309.446939pt;}
.y1d_c00470{bottom:309.453339pt;}
.y1a_c00470{bottom:336.647339pt;}
.y1b_c00470{bottom:336.653339pt;}
.y19_c00470{bottom:364.493339pt;}
.y17_c00470{bottom:419.523739pt;}
.y18_c00470{bottom:419.533339pt;}
.y16_c00470{bottom:446.714539pt;}
.y15_c00470{bottom:501.454939pt;}
.y14_c00470{bottom:528.973339pt;}
.y13_c00470{bottom:556.168539pt;}
.y12_c00470{bottom:610.893339pt;}
.y11_c00470{bottom:638.093339pt;}
.y10_c00470{bottom:638.096539pt;}
.yf_c00470{bottom:693.133339pt;}
.ye_c00470{bottom:693.134939pt;}
.yc_c00470{bottom:720.647339pt;}
.yd_c00470{bottom:720.653339pt;}
.ya_c00470{bottom:748.488139pt;}
.yb_c00470{bottom:748.493339pt;}
.y8_c00470{bottom:802.569205pt;}
.y9_c00470{bottom:802.573339pt;}
.y7_c00470{bottom:829.760005pt;}
.y6_c00470{bottom:829.762805pt;}
.y5_c00470{bottom:884.148805pt;}
.y4_c00470{bottom:938.234005pt;}
.y3_c00470{bottom:966.080005pt;}
.y2_c00470{bottom:993.600005pt;}
.y1_c00470{bottom:1060.813339pt;}
.h2_c00470{height:52.137500pt;}
.hb_c00470{height:53.914062pt;}
.ha_c00470{height:58.625000pt;}
.h5_c00470{height:59.148438pt;}
.h7_c00470{height:60.075000pt;}
.h6_c00470{height:60.165365pt;}
.h9_c00470{height:60.178698pt;}
.h3_c00470{height:61.242187pt;}
.h8_c00470{height:61.266187pt;}
.h4_c00470{height:61.286988pt;}
.h1_c00470{height:1122.666667pt;}
.h0_c00470{height:1122.880005pt;}
.w1_c00470{width:793.333333pt;}
.w0_c00470{width:793.599999pt;}
.x0_c00470{left:0.000000pt;}
.x30_c00470{left:107.199999pt;}
.x26_c00470{left:108.452932pt;}
.x1_c00470{left:109.359999pt;}
.x27_c00470{left:120.226665pt;}
.x1c_c00470{left:125.613332pt;}
.x28_c00470{left:133.986665pt;}
.x31_c00470{left:169.279999pt;}
.x2_c00470{left:175.519999pt;}
.x16_c00470{left:179.453332pt;}
.x2c_c00470{left:190.333332pt;}
.x17_c00470{left:198.359999pt;}
.xe_c00470{left:200.253332pt;}
.x3_c00470{left:207.639999pt;}
.x2d_c00470{left:214.813332pt;}
.xf_c00470{left:222.173332pt;}
.x18_c00470{left:228.679999pt;}
.x12_c00470{left:231.253332pt;}
.x13_c00470{left:241.533332pt;}
.x19_c00470{left:243.333332pt;}
.x29_c00470{left:245.719999pt;}
.x23_c00470{left:248.413332pt;}
.x1f_c00470{left:278.186665pt;}
.x6_c00470{left:288.479999pt;}
.x7_c00470{left:306.333332pt;}
.x20_c00470{left:308.546665pt;}
.x1a_c00470{left:328.746665pt;}
.x2a_c00470{left:331.039999pt;}
.x8_c00470{left:338.173332pt;}
.x1b_c00470{left:353.053332pt;}
.x9_c00470{left:365.533332pt;}
.x32_c00470{left:366.559999pt;}
.x33_c00470{left:375.853332pt;}
.x1d_c00470{left:388.293332pt;}
.x14_c00470{left:390.626665pt;}
.x1e_c00470{left:407.266665pt;}
.x15_c00470{left:410.106665pt;}
.x21_c00470{left:413.213332pt;}
.x22_c00470{left:449.213332pt;}
.xa_c00470{left:488.799999pt;}
.xb_c00470{left:510.333332pt;}
.x4_c00470{left:513.759999pt;}
.x5_c00470{left:533.719999pt;}
.x24_c00470{left:594.146665pt;}
.x10_c00470{left:597.333332pt;}
.xc_c00470{left:599.466665pt;}
.x25_c00470{left:608.573332pt;}
.x11_c00470{left:610.426665pt;}
.x2e_c00470{left:611.559999pt;}
.xd_c00470{left:622.546665pt;}
.x2f_c00470{left:629.053332pt;}
.x2b_c00470{left:651.999999pt;}
}





/* 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_c00471 {
    display:none;
  }
  .loading-indicator_c00471.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00471 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_c00471 { 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_c00471" -> "#page-container .classname_c00471")
 */
.pf_c00471 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00471 { /* 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_c00471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00471 { /* 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_c00471 { /* 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_c00471 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00471 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00471 {overflow:visible;}
  }
}
.c_c00471 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00471 { /* 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_c00471:after { /* webkit #35443 */
  content: '';
}
.t_c00471:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00471 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 */
}
.__c00471 { /* 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_c00471 { /* info for Javascript */
  display:none;
}
.l_c00471 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00471 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00471 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00471: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_c00471 {
    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_c00471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00471.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_c00471 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00471{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00471;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.311035;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_c00471;src:url('chunks/assets/font_ddd4a2fb116f6bae94e54327.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.284668;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_c00471;src:url('chunks/assets/font_66ee12f9ecedf3d70c8af362.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.284180;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_c00471;src:url('chunks/assets/font_58e6084c856900b494517f92.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;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:ff5_c00471;src:url('chunks/assets/font_b5762dce5ad4f4a697fef1b2.woff2')format("woff");}.ff5_c00471{font-family:ff5_c00471;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;}
.m7_c00471{transform:matrix(0.199399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199399,0.000000,0.000000,0.250000,0,0);}
.m2_c00471{transform:matrix(0.211910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211910,0.000000,0.000000,0.250000,0,0);}
.md_c00471{transform:matrix(0.225294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225294,0.000000,0.000000,0.250000,0,0);}
.ma_c00471{transform:matrix(0.231822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231822,0.000000,0.000000,0.250000,0,0);}
.mf_c00471{transform:matrix(0.232414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232414,0.000000,0.000000,0.250000,0,0);}
.m10_c00471{transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);}
.me_c00471{transform:matrix(0.244061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244061,0.000000,0.000000,0.250000,0,0);}
.m3_c00471{transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);}
.m0_c00471{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);}
.m11_c00471{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.m5_c00471{transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);}
.m4_c00471{transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);}
.m1_c00471{transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);}
.m6_c00471{transform:matrix(0.256489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256489,0.000000,0.000000,0.250000,0,0);}
.mb_c00471{transform:matrix(0.261079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261079,0.000000,0.000000,0.250000,0,0);}
.mc_c00471{transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);}
.m9_c00471{transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);}
.m8_c00471{transform:matrix(0.286772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286772,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.lsa3_c00471{letter-spacing:-2.478000px;}
.ls91_c00471{letter-spacing:-2.415000px;}
.ls7f_c00471{letter-spacing:-2.394000px;}
.ls75_c00471{letter-spacing:-2.366640px;}
.ls94_c00471{letter-spacing:-1.826280px;}
.ls78_c00471{letter-spacing:-1.262700px;}
.ls9e_c00471{letter-spacing:-1.166100px;}
.lsab_c00471{letter-spacing:-1.083300px;}
.ls8a_c00471{letter-spacing:-0.971280px;}
.ls9f_c00471{letter-spacing:-0.964440px;}
.lsad_c00471{letter-spacing:-0.931500px;}
.lsb0_c00471{letter-spacing:-0.821100px;}
.ls89_c00471{letter-spacing:-0.779700px;}
.lsa4_c00471{letter-spacing:-0.745200px;}
.ls77_c00471{letter-spacing:-0.684000px;}
.lsae_c00471{letter-spacing:-0.656640px;}
.lsac_c00471{letter-spacing:-0.572700px;}
.lsa1_c00471{letter-spacing:-0.554040px;}
.ls96_c00471{letter-spacing:-0.547200px;}
.ls87_c00471{letter-spacing:-0.489900px;}
.ls99_c00471{letter-spacing:-0.462300px;}
.ls7d_c00471{letter-spacing:-0.427800px;}
.ls73_c00471{letter-spacing:-0.396720px;}
.lsa8_c00471{letter-spacing:-0.348840px;}
.lsa6_c00471{letter-spacing:-0.307800px;}
.ls86_c00471{letter-spacing:-0.303600px;}
.ls85_c00471{letter-spacing:-0.269100px;}
.ls92_c00471{letter-spacing:-0.184680px;}
.lsaa_c00471{letter-spacing:-0.171000px;}
.ls88_c00471{letter-spacing:-0.151800px;}
.ls80_c00471{letter-spacing:-0.123120px;}
.ls9d_c00471{letter-spacing:-0.089700px;}
.ls82_c00471{letter-spacing:-0.088920px;}
.ls9b_c00471{letter-spacing:-0.082080px;}
.ls83_c00471{letter-spacing:-0.069000px;}
.ls84_c00471{letter-spacing:-0.055200px;}
.ls74_c00471{letter-spacing:0.000000px;}
.ls20_c00471{letter-spacing:0.034500px;}
.ls98_c00471{letter-spacing:0.069000px;}
.lsa0_c00471{letter-spacing:0.082080px;}
.ls70_c00471{letter-spacing:0.123120px;}
.ls69_c00471{letter-spacing:0.157320px;}
.lsb2_c00471{letter-spacing:0.182280px;}
.ls18_c00471{letter-spacing:0.191520px;}
.ls31_c00471{letter-spacing:0.198360px;}
.ls26_c00471{letter-spacing:0.213900px;}
.ls8_c00471{letter-spacing:0.246240px;}
.ls9a_c00471{letter-spacing:0.262200px;}
.ls1d_c00471{letter-spacing:0.266760px;}
.ls2e_c00471{letter-spacing:0.280440px;}
.ls79_c00471{letter-spacing:0.307800px;}
.ls43_c00471{letter-spacing:0.331200px;}
.ls90_c00471{letter-spacing:0.338100px;}
.ls97_c00471{letter-spacing:0.348840px;}
.ls8d_c00471{letter-spacing:0.351900px;}
.ls6d_c00471{letter-spacing:0.358800px;}
.ls1_c00471{letter-spacing:0.376200px;}
.ls5f_c00471{letter-spacing:0.383040px;}
.lsc_c00471{letter-spacing:0.389880px;}
.ls3b_c00471{letter-spacing:0.393300px;}
.ls45_c00471{letter-spacing:0.414000px;}
.lsd_c00471{letter-spacing:0.427800px;}
.ls10_c00471{letter-spacing:0.430920px;}
.ls39_c00471{letter-spacing:0.465120px;}
.ls6e_c00471{letter-spacing:0.478800px;}
.ls4_c00471{letter-spacing:0.492480px;}
.ls44_c00471{letter-spacing:0.496800px;}
.ls48_c00471{letter-spacing:0.499320px;}
.ls2b_c00471{letter-spacing:0.513000px;}
.ls4c_c00471{letter-spacing:0.526680px;}
.ls54_c00471{letter-spacing:0.545100px;}
.ls71_c00471{letter-spacing:0.554040px;}
.ls37_c00471{letter-spacing:0.558900px;}
.ls76_c00471{letter-spacing:0.579600px;}
.ls25_c00471{letter-spacing:0.586500px;}
.ls52_c00471{letter-spacing:0.593400px;}
.ls4b_c00471{letter-spacing:0.608760px;}
.ls6b_c00471{letter-spacing:0.615600px;}
.lsa7_c00471{letter-spacing:0.636120px;}
.ls8e_c00471{letter-spacing:0.642960px;}
.ls19_c00471{letter-spacing:0.656640px;}
.ls28_c00471{letter-spacing:0.662400px;}
.ls21_c00471{letter-spacing:0.676200px;}
.ls5d_c00471{letter-spacing:0.684000px;}
.ls8c_c00471{letter-spacing:0.690000px;}
.ls49_c00471{letter-spacing:0.718200px;}
.ls2a_c00471{letter-spacing:0.731400px;}
.ls1b_c00471{letter-spacing:0.731880px;}
.ls3a_c00471{letter-spacing:0.752100px;}
.ls8b_c00471{letter-spacing:0.759240px;}
.ls5b_c00471{letter-spacing:0.766080px;}
.lse_c00471{letter-spacing:0.772920px;}
.lsa5_c00471{letter-spacing:0.821100px;}
.ls7e_c00471{letter-spacing:0.862500px;}
.ls5e_c00471{letter-spacing:0.868680px;}
.ls9_c00471{letter-spacing:0.882360px;}
.lsb_c00471{letter-spacing:0.916560px;}
.ls93_c00471{letter-spacing:0.923400px;}
.ls2c_c00471{letter-spacing:0.930240px;}
.ls56_c00471{letter-spacing:0.937080px;}
.ls5_c00471{letter-spacing:0.952200px;}
.ls33_c00471{letter-spacing:0.978120px;}
.ls59_c00471{letter-spacing:1.019160px;}
.ls32_c00471{letter-spacing:1.053360px;}
.ls6c_c00471{letter-spacing:1.055700px;}
.ls29_c00471{letter-spacing:1.062600px;}
.lsa2_c00471{letter-spacing:1.067040px;}
.ls6_c00471{letter-spacing:1.114920px;}
.ls22_c00471{letter-spacing:1.131600px;}
.ls64_c00471{letter-spacing:1.135440px;}
.ls58_c00471{letter-spacing:1.162800px;}
.ls38_c00471{letter-spacing:1.197000px;}
.ls1c_c00471{letter-spacing:1.203840px;}
.ls42_c00471{letter-spacing:1.238040px;}
.ls15_c00471{letter-spacing:1.244880px;}
.ls4e_c00471{letter-spacing:1.262700px;}
.ls57_c00471{letter-spacing:1.279080px;}
.ls23_c00471{letter-spacing:1.311000px;}
.ls16_c00471{letter-spacing:1.347480px;}
.ls3f_c00471{letter-spacing:1.354320px;}
.ls50_c00471{letter-spacing:1.373100px;}
.ls68_c00471{letter-spacing:1.380000px;}
.ls13_c00471{letter-spacing:1.388520px;}
.ls67_c00471{letter-spacing:1.393800px;}
.ls2_c00471{letter-spacing:1.415880px;}
.ls40_c00471{letter-spacing:1.429560px;}
.ls2f_c00471{letter-spacing:1.450080px;}
.ls1a_c00471{letter-spacing:1.476600px;}
.ls65_c00471{letter-spacing:1.497960px;}
.lsa9_c00471{letter-spacing:1.511640px;}
.ls6f_c00471{letter-spacing:1.525320px;}
.ls34_c00471{letter-spacing:1.532160px;}
.ls7b_c00471{letter-spacing:1.552680px;}
.ls60_c00471{letter-spacing:1.559520px;}
.ls3d_c00471{letter-spacing:1.614240px;}
.ls6a_c00471{letter-spacing:1.621080px;}
.ls4a_c00471{letter-spacing:1.648440px;}
.ls72_c00471{letter-spacing:1.670340px;}
.ls8f_c00471{letter-spacing:1.675800px;}
.lsaf_c00471{letter-spacing:1.682640px;}
.ls3_c00471{letter-spacing:1.730520px;}
.ls35_c00471{letter-spacing:1.745700px;}
.ls1f_c00471{letter-spacing:1.766400px;}
.lsa_c00471{letter-spacing:1.792080px;}
.ls30_c00471{letter-spacing:1.839960px;}
.ls27_c00471{letter-spacing:1.869900px;}
.ls3c_c00471{letter-spacing:1.901520px;}
.ls1e_c00471{letter-spacing:1.911300px;}
.ls62_c00471{letter-spacing:1.983600px;}
.ls55_c00471{letter-spacing:1.990440px;}
.lsf_c00471{letter-spacing:1.997280px;}
.ls46_c00471{letter-spacing:2.017800px;}
.ls0_c00471{letter-spacing:2.024640px;}
.ls5a_c00471{letter-spacing:2.031480px;}
.ls3e_c00471{letter-spacing:2.086200px;}
.ls53_c00471{letter-spacing:2.104500px;}
.ls47_c00471{letter-spacing:2.127240px;}
.ls5c_c00471{letter-spacing:2.140920px;}
.ls36_c00471{letter-spacing:2.147760px;}
.ls14_c00471{letter-spacing:2.154600px;}
.ls95_c00471{letter-spacing:2.168280px;}
.ls2d_c00471{letter-spacing:2.202480px;}
.ls63_c00471{letter-spacing:2.243520px;}
.ls11_c00471{letter-spacing:2.284560px;}
.ls24_c00471{letter-spacing:2.352900px;}
.ls61_c00471{letter-spacing:2.421360px;}
.ls81_c00471{letter-spacing:2.462400px;}
.ls4d_c00471{letter-spacing:2.484000px;}
.ls17_c00471{letter-spacing:2.503440px;}
.ls41_c00471{letter-spacing:2.592360px;}
.ls51_c00471{letter-spacing:2.601300px;}
.ls7a_c00471{letter-spacing:2.879640px;}
.lsb1_c00471{letter-spacing:2.925600px;}
.ls12_c00471{letter-spacing:2.989080px;}
.ls7_c00471{letter-spacing:3.091680px;}
.ls4f_c00471{letter-spacing:3.270600px;}
.ls66_c00471{letter-spacing:3.318900px;}
.ls7c_c00471{letter-spacing:3.420000px;}
.ls9c_c00471{letter-spacing:3.450000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{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__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00471{word-spacing:-1.525320px;}
.ws9_c00471{word-spacing:0.000000px;}
.ws1_c00471{word-spacing:3.283200px;}
.ws8_c00471{word-spacing:4.220280px;}
.ws7_c00471{word-spacing:7.093080px;}
.ws5_c00471{word-spacing:12.701880px;}
.ws4_c00471{word-spacing:13.112280px;}
.ws2_c00471{word-spacing:15.198840px;}
.ws0_c00471{word-spacing:26.995440px;}
.ws6_c00471{word-spacing:50.321880px;}
._13_c00471{margin-left:-23.970600px;}
._a_c00471{margin-left:-16.074000px;}
._18_c00471{margin-left:-6.853200px;}
._5_c00471{margin-left:-5.013720px;}
._7_c00471{margin-left:-2.833560px;}
._8_c00471{margin-left:-1.284600px;}
._14_c00471{width:1.173000px;}
._6_c00471{width:2.257200px;}
._11_c00471{width:4.209000px;}
._b_c00471{width:5.335200px;}
._d_c00471{width:7.283280px;}
._12_c00471{width:8.987340px;}
._15_c00471{width:10.309800px;}
._9_c00471{width:11.764500px;}
._c_c00471{width:13.399560px;}
._10_c00471{width:14.507160px;}
._f_c00471{width:15.981000px;}
._17_c00471{width:20.373600px;}
._e_c00471{width:21.758340px;}
._1b_c00471{width:23.515200px;}
._0_c00471{width:25.417440px;}
._3_c00471{width:27.702000px;}
._1_c00471{width:29.412000px;}
._2_c00471{width:30.786840px;}
._4_c00471{width:41.714280px;}
._19_c00471{width:49.316400px;}
._16_c00471{width:50.709960px;}
._1a_c00471{width:61.443720px;}
.fc0_c00471{color:transparent;}
.fs0_c00471{font-size:58.200000px;}
.fs4_c00471{font-size:58.800000px;}
.fs1_c00471{font-size:68.400000px;}
.fs2_c00471{font-size:69.000000px;}
.fs3_c00471{font-size:70.800000px;}
.y0_c00471{bottom:0.000000px;}
.y1f_c00471{bottom:73.455000px;}
.y1e_c00471{bottom:195.135000px;}
.y1d_c00471{bottom:225.735000px;}
.y1c_c00471{bottom:286.935000px;}
.y1a_c00471{bottom:318.967800px;}
.y1b_c00471{bottom:318.975000px;}
.y19_c00471{bottom:350.288100px;}
.y18_c00471{bottom:410.770800px;}
.y17_c00471{bottom:442.440000px;}
.y16_c00471{bottom:442.444200px;}
.y15_c00471{bottom:473.412300px;}
.y14_c00471{bottom:533.895000px;}
.y12_c00471{bottom:565.573500px;}
.y13_c00471{bottom:565.575000px;}
.y11_c00471{bottom:596.520000px;}
.y10_c00471{bottom:658.095000px;}
.yf_c00471{bottom:689.038800px;}
.yd_c00471{bottom:750.966900px;}
.ye_c00471{bottom:750.975000px;}
.yc_c00471{bottom:781.935000px;}
.yb_c00471{bottom:781.935750px;}
.ya_c00471{bottom:812.520000px;}
.y9_c00471{bottom:874.814250px;}
.y8_c00471{bottom:905.398500px;}
.y7_c00471{bottom:936.000000px;}
.y5_c00471{bottom:997.551900px;}
.y6_c00471{bottom:997.560000px;}
.y4_c00471{bottom:1028.520000px;}
.y3_c00471{bottom:1090.080000px;}
.y2_c00471{bottom:1121.400000px;}
.y1_c00471{bottom:1198.080000px;}
.hd_c00471{height:57.708984px;}
.h2_c00471{height:58.654687px;}
.h5_c00471{height:67.130859px;}
.h6_c00471{height:67.135659px;}
.ha_c00471{height:67.158459px;}
.h8_c00471{height:67.669235px;}
.h3_c00471{height:67.686035px;}
.h7_c00471{height:67.692035px;}
.hb_c00471{height:67.714835px;}
.h4_c00471{height:71.339063px;}
.hc_c00471{height:71.964844px;}
.h9_c00471{height:73.842188px;}
.h1_c00471{height:1263.000000px;}
.h0_c00471{height:1263.240000px;}
.w1_c00471{width:892.500000px;}
.w0_c00471{width:892.800000px;}
.x0_c00471{left:0.000000px;}
.x1f_c00471{left:120.045300px;}
.xf_c00471{left:121.114500px;}
.xb_c00471{left:122.673750px;}
.x3_c00471{left:123.783000px;}
.x2_c00471{left:124.815000px;}
.x1_c00471{left:126.270000px;}
.xc_c00471{left:142.875000px;}
.x22_c00471{left:162.480000px;}
.x14_c00471{left:196.380000px;}
.x15_c00471{left:214.725000px;}
.xd_c00471{left:236.445000px;}
.x9_c00471{left:237.525000px;}
.x4_c00471{left:254.880000px;}
.xe_c00471{left:262.755000px;}
.xa_c00471{left:268.845000px;}
.x5_c00471{left:277.365000px;}
.x16_c00471{left:294.645000px;}
.x17_c00471{left:311.535000px;}
.x10_c00471{left:358.455000px;}
.x23_c00471{left:361.005000px;}
.x20_c00471{left:380.325000px;}
.x11_c00471{left:383.685000px;}
.x24_c00471{left:388.920000px;}
.x21_c00471{left:411.810000px;}
.x25_c00471{left:423.195000px;}
.x12_c00471{left:446.925000px;}
.x13_c00471{left:470.490000px;}
.x1b_c00471{left:494.850000px;}
.x1c_c00471{left:525.615000px;}
.x6_c00471{left:575.865000px;}
.x7_c00471{left:591.645000px;}
.x18_c00471{left:622.470000px;}
.x1d_c00471{left:661.455000px;}
.x1e_c00471{left:687.030000px;}
.x19_c00471{left:688.110000px;}
.x8_c00471{left:694.965000px;}
.x1a_c00471{left:729.540000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.lsa3_c00471{letter-spacing:-2.202667pt;}
.ls91_c00471{letter-spacing:-2.146667pt;}
.ls7f_c00471{letter-spacing:-2.128000pt;}
.ls75_c00471{letter-spacing:-2.103680pt;}
.ls94_c00471{letter-spacing:-1.623360pt;}
.ls78_c00471{letter-spacing:-1.122400pt;}
.ls9e_c00471{letter-spacing:-1.036533pt;}
.lsab_c00471{letter-spacing:-0.962933pt;}
.ls8a_c00471{letter-spacing:-0.863360pt;}
.ls9f_c00471{letter-spacing:-0.857280pt;}
.lsad_c00471{letter-spacing:-0.828000pt;}
.lsb0_c00471{letter-spacing:-0.729867pt;}
.ls89_c00471{letter-spacing:-0.693067pt;}
.lsa4_c00471{letter-spacing:-0.662400pt;}
.ls77_c00471{letter-spacing:-0.608000pt;}
.lsae_c00471{letter-spacing:-0.583680pt;}
.lsac_c00471{letter-spacing:-0.509067pt;}
.lsa1_c00471{letter-spacing:-0.492480pt;}
.ls96_c00471{letter-spacing:-0.486400pt;}
.ls87_c00471{letter-spacing:-0.435467pt;}
.ls99_c00471{letter-spacing:-0.410933pt;}
.ls7d_c00471{letter-spacing:-0.380267pt;}
.ls73_c00471{letter-spacing:-0.352640pt;}
.lsa8_c00471{letter-spacing:-0.310080pt;}
.lsa6_c00471{letter-spacing:-0.273600pt;}
.ls86_c00471{letter-spacing:-0.269867pt;}
.ls85_c00471{letter-spacing:-0.239200pt;}
.ls92_c00471{letter-spacing:-0.164160pt;}
.lsaa_c00471{letter-spacing:-0.152000pt;}
.ls88_c00471{letter-spacing:-0.134933pt;}
.ls80_c00471{letter-spacing:-0.109440pt;}
.ls9d_c00471{letter-spacing:-0.079733pt;}
.ls82_c00471{letter-spacing:-0.079040pt;}
.ls9b_c00471{letter-spacing:-0.072960pt;}
.ls83_c00471{letter-spacing:-0.061333pt;}
.ls84_c00471{letter-spacing:-0.049067pt;}
.ls74_c00471{letter-spacing:0.000000pt;}
.ls20_c00471{letter-spacing:0.030667pt;}
.ls98_c00471{letter-spacing:0.061333pt;}
.lsa0_c00471{letter-spacing:0.072960pt;}
.ls70_c00471{letter-spacing:0.109440pt;}
.ls69_c00471{letter-spacing:0.139840pt;}
.lsb2_c00471{letter-spacing:0.162027pt;}
.ls18_c00471{letter-spacing:0.170240pt;}
.ls31_c00471{letter-spacing:0.176320pt;}
.ls26_c00471{letter-spacing:0.190133pt;}
.ls8_c00471{letter-spacing:0.218880pt;}
.ls9a_c00471{letter-spacing:0.233067pt;}
.ls1d_c00471{letter-spacing:0.237120pt;}
.ls2e_c00471{letter-spacing:0.249280pt;}
.ls79_c00471{letter-spacing:0.273600pt;}
.ls43_c00471{letter-spacing:0.294400pt;}
.ls90_c00471{letter-spacing:0.300533pt;}
.ls97_c00471{letter-spacing:0.310080pt;}
.ls8d_c00471{letter-spacing:0.312800pt;}
.ls6d_c00471{letter-spacing:0.318933pt;}
.ls1_c00471{letter-spacing:0.334400pt;}
.ls5f_c00471{letter-spacing:0.340480pt;}
.lsc_c00471{letter-spacing:0.346560pt;}
.ls3b_c00471{letter-spacing:0.349600pt;}
.ls45_c00471{letter-spacing:0.368000pt;}
.lsd_c00471{letter-spacing:0.380267pt;}
.ls10_c00471{letter-spacing:0.383040pt;}
.ls39_c00471{letter-spacing:0.413440pt;}
.ls6e_c00471{letter-spacing:0.425600pt;}
.ls4_c00471{letter-spacing:0.437760pt;}
.ls44_c00471{letter-spacing:0.441600pt;}
.ls48_c00471{letter-spacing:0.443840pt;}
.ls2b_c00471{letter-spacing:0.456000pt;}
.ls4c_c00471{letter-spacing:0.468160pt;}
.ls54_c00471{letter-spacing:0.484533pt;}
.ls71_c00471{letter-spacing:0.492480pt;}
.ls37_c00471{letter-spacing:0.496800pt;}
.ls76_c00471{letter-spacing:0.515200pt;}
.ls25_c00471{letter-spacing:0.521333pt;}
.ls52_c00471{letter-spacing:0.527467pt;}
.ls4b_c00471{letter-spacing:0.541120pt;}
.ls6b_c00471{letter-spacing:0.547200pt;}
.lsa7_c00471{letter-spacing:0.565440pt;}
.ls8e_c00471{letter-spacing:0.571520pt;}
.ls19_c00471{letter-spacing:0.583680pt;}
.ls28_c00471{letter-spacing:0.588800pt;}
.ls21_c00471{letter-spacing:0.601067pt;}
.ls5d_c00471{letter-spacing:0.608000pt;}
.ls8c_c00471{letter-spacing:0.613333pt;}
.ls49_c00471{letter-spacing:0.638400pt;}
.ls2a_c00471{letter-spacing:0.650133pt;}
.ls1b_c00471{letter-spacing:0.650560pt;}
.ls3a_c00471{letter-spacing:0.668533pt;}
.ls8b_c00471{letter-spacing:0.674880pt;}
.ls5b_c00471{letter-spacing:0.680960pt;}
.lse_c00471{letter-spacing:0.687040pt;}
.lsa5_c00471{letter-spacing:0.729867pt;}
.ls7e_c00471{letter-spacing:0.766667pt;}
.ls5e_c00471{letter-spacing:0.772160pt;}
.ls9_c00471{letter-spacing:0.784320pt;}
.lsb_c00471{letter-spacing:0.814720pt;}
.ls93_c00471{letter-spacing:0.820800pt;}
.ls2c_c00471{letter-spacing:0.826880pt;}
.ls56_c00471{letter-spacing:0.832960pt;}
.ls5_c00471{letter-spacing:0.846400pt;}
.ls33_c00471{letter-spacing:0.869440pt;}
.ls59_c00471{letter-spacing:0.905920pt;}
.ls32_c00471{letter-spacing:0.936320pt;}
.ls6c_c00471{letter-spacing:0.938400pt;}
.ls29_c00471{letter-spacing:0.944533pt;}
.lsa2_c00471{letter-spacing:0.948480pt;}
.ls6_c00471{letter-spacing:0.991040pt;}
.ls22_c00471{letter-spacing:1.005867pt;}
.ls64_c00471{letter-spacing:1.009280pt;}
.ls58_c00471{letter-spacing:1.033600pt;}
.ls38_c00471{letter-spacing:1.064000pt;}
.ls1c_c00471{letter-spacing:1.070080pt;}
.ls42_c00471{letter-spacing:1.100480pt;}
.ls15_c00471{letter-spacing:1.106560pt;}
.ls4e_c00471{letter-spacing:1.122400pt;}
.ls57_c00471{letter-spacing:1.136960pt;}
.ls23_c00471{letter-spacing:1.165333pt;}
.ls16_c00471{letter-spacing:1.197760pt;}
.ls3f_c00471{letter-spacing:1.203840pt;}
.ls50_c00471{letter-spacing:1.220533pt;}
.ls68_c00471{letter-spacing:1.226667pt;}
.ls13_c00471{letter-spacing:1.234240pt;}
.ls67_c00471{letter-spacing:1.238933pt;}
.ls2_c00471{letter-spacing:1.258560pt;}
.ls40_c00471{letter-spacing:1.270720pt;}
.ls2f_c00471{letter-spacing:1.288960pt;}
.ls1a_c00471{letter-spacing:1.312533pt;}
.ls65_c00471{letter-spacing:1.331520pt;}
.lsa9_c00471{letter-spacing:1.343680pt;}
.ls6f_c00471{letter-spacing:1.355840pt;}
.ls34_c00471{letter-spacing:1.361920pt;}
.ls7b_c00471{letter-spacing:1.380160pt;}
.ls60_c00471{letter-spacing:1.386240pt;}
.ls3d_c00471{letter-spacing:1.434880pt;}
.ls6a_c00471{letter-spacing:1.440960pt;}
.ls4a_c00471{letter-spacing:1.465280pt;}
.ls72_c00471{letter-spacing:1.484747pt;}
.ls8f_c00471{letter-spacing:1.489600pt;}
.lsaf_c00471{letter-spacing:1.495680pt;}
.ls3_c00471{letter-spacing:1.538240pt;}
.ls35_c00471{letter-spacing:1.551733pt;}
.ls1f_c00471{letter-spacing:1.570133pt;}
.lsa_c00471{letter-spacing:1.592960pt;}
.ls30_c00471{letter-spacing:1.635520pt;}
.ls27_c00471{letter-spacing:1.662133pt;}
.ls3c_c00471{letter-spacing:1.690240pt;}
.ls1e_c00471{letter-spacing:1.698933pt;}
.ls62_c00471{letter-spacing:1.763200pt;}
.ls55_c00471{letter-spacing:1.769280pt;}
.lsf_c00471{letter-spacing:1.775360pt;}
.ls46_c00471{letter-spacing:1.793600pt;}
.ls0_c00471{letter-spacing:1.799680pt;}
.ls5a_c00471{letter-spacing:1.805760pt;}
.ls3e_c00471{letter-spacing:1.854400pt;}
.ls53_c00471{letter-spacing:1.870667pt;}
.ls47_c00471{letter-spacing:1.890880pt;}
.ls5c_c00471{letter-spacing:1.903040pt;}
.ls36_c00471{letter-spacing:1.909120pt;}
.ls14_c00471{letter-spacing:1.915200pt;}
.ls95_c00471{letter-spacing:1.927360pt;}
.ls2d_c00471{letter-spacing:1.957760pt;}
.ls63_c00471{letter-spacing:1.994240pt;}
.ls11_c00471{letter-spacing:2.030720pt;}
.ls24_c00471{letter-spacing:2.091467pt;}
.ls61_c00471{letter-spacing:2.152320pt;}
.ls81_c00471{letter-spacing:2.188800pt;}
.ls4d_c00471{letter-spacing:2.208000pt;}
.ls17_c00471{letter-spacing:2.225280pt;}
.ls41_c00471{letter-spacing:2.304320pt;}
.ls51_c00471{letter-spacing:2.312267pt;}
.ls7a_c00471{letter-spacing:2.559680pt;}
.lsb1_c00471{letter-spacing:2.600533pt;}
.ls12_c00471{letter-spacing:2.656960pt;}
.ls7_c00471{letter-spacing:2.748160pt;}
.ls4f_c00471{letter-spacing:2.907200pt;}
.ls66_c00471{letter-spacing:2.950133pt;}
.ls7c_c00471{letter-spacing:3.040000pt;}
.ls9c_c00471{letter-spacing:3.066667pt;}
.ws3_c00471{word-spacing:-1.355840pt;}
.ws9_c00471{word-spacing:0.000000pt;}
.ws1_c00471{word-spacing:2.918400pt;}
.ws8_c00471{word-spacing:3.751360pt;}
.ws7_c00471{word-spacing:6.304960pt;}
.ws5_c00471{word-spacing:11.290560pt;}
.ws4_c00471{word-spacing:11.655360pt;}
.ws2_c00471{word-spacing:13.510080pt;}
.ws0_c00471{word-spacing:23.995947pt;}
.ws6_c00471{word-spacing:44.730560pt;}
._13_c00471{margin-left:-21.307200pt;}
._a_c00471{margin-left:-14.288000pt;}
._18_c00471{margin-left:-6.091733pt;}
._5_c00471{margin-left:-4.456640pt;}
._7_c00471{margin-left:-2.518720pt;}
._8_c00471{margin-left:-1.141867pt;}
._14_c00471{width:1.042667pt;}
._6_c00471{width:2.006400pt;}
._11_c00471{width:3.741333pt;}
._b_c00471{width:4.742400pt;}
._d_c00471{width:6.474027pt;}
._12_c00471{width:7.988747pt;}
._15_c00471{width:9.164267pt;}
._9_c00471{width:10.457333pt;}
._c_c00471{width:11.910720pt;}
._10_c00471{width:12.895253pt;}
._f_c00471{width:14.205333pt;}
._17_c00471{width:18.109867pt;}
._e_c00471{width:19.340747pt;}
._1b_c00471{width:20.902400pt;}
._0_c00471{width:22.593280pt;}
._3_c00471{width:24.624000pt;}
._1_c00471{width:26.144000pt;}
._2_c00471{width:27.366080pt;}
._4_c00471{width:37.079360pt;}
._19_c00471{width:43.836800pt;}
._16_c00471{width:45.075520pt;}
._1a_c00471{width:54.616640pt;}
.fs0_c00471{font-size:51.733333pt;}
.fs4_c00471{font-size:52.266667pt;}
.fs1_c00471{font-size:60.800000pt;}
.fs2_c00471{font-size:61.333333pt;}
.fs3_c00471{font-size:62.933333pt;}
.y0_c00471{bottom:0.000000pt;}
.y1f_c00471{bottom:65.293333pt;}
.y1e_c00471{bottom:173.453333pt;}
.y1d_c00471{bottom:200.653333pt;}
.y1c_c00471{bottom:255.053333pt;}
.y1a_c00471{bottom:283.526933pt;}
.y1b_c00471{bottom:283.533333pt;}
.y19_c00471{bottom:311.367200pt;}
.y18_c00471{bottom:365.129600pt;}
.y17_c00471{bottom:393.280000pt;}
.y16_c00471{bottom:393.283733pt;}
.y15_c00471{bottom:420.810933pt;}
.y14_c00471{bottom:474.573333pt;}
.y12_c00471{bottom:502.732000pt;}
.y13_c00471{bottom:502.733333pt;}
.y11_c00471{bottom:530.240000pt;}
.y10_c00471{bottom:584.973333pt;}
.yf_c00471{bottom:612.478933pt;}
.yd_c00471{bottom:667.526133pt;}
.ye_c00471{bottom:667.533333pt;}
.yc_c00471{bottom:695.053333pt;}
.yb_c00471{bottom:695.054000pt;}
.ya_c00471{bottom:722.240000pt;}
.y9_c00471{bottom:777.612667pt;}
.y8_c00471{bottom:804.798667pt;}
.y7_c00471{bottom:832.000000pt;}
.y5_c00471{bottom:886.712800pt;}
.y6_c00471{bottom:886.720000pt;}
.y4_c00471{bottom:914.240000pt;}
.y3_c00471{bottom:968.960000pt;}
.y2_c00471{bottom:996.800000pt;}
.y1_c00471{bottom:1064.960000pt;}
.hd_c00471{height:51.296875pt;}
.h2_c00471{height:52.137500pt;}
.h5_c00471{height:59.671875pt;}
.h6_c00471{height:59.676142pt;}
.ha_c00471{height:59.696408pt;}
.h8_c00471{height:60.150431pt;}
.h3_c00471{height:60.165365pt;}
.h7_c00471{height:60.170698pt;}
.hb_c00471{height:60.190965pt;}
.h4_c00471{height:63.412500pt;}
.hc_c00471{height:63.968750pt;}
.h9_c00471{height:65.637500pt;}
.h1_c00471{height:1122.666667pt;}
.h0_c00471{height:1122.880000pt;}
.w1_c00471{width:793.333333pt;}
.w0_c00471{width:793.600000pt;}
.x0_c00471{left:0.000000pt;}
.x1f_c00471{left:106.706933pt;}
.xf_c00471{left:107.657333pt;}
.xb_c00471{left:109.043333pt;}
.x3_c00471{left:110.029333pt;}
.x2_c00471{left:110.946667pt;}
.x1_c00471{left:112.240000pt;}
.xc_c00471{left:127.000000pt;}
.x22_c00471{left:144.426667pt;}
.x14_c00471{left:174.560000pt;}
.x15_c00471{left:190.866667pt;}
.xd_c00471{left:210.173333pt;}
.x9_c00471{left:211.133333pt;}
.x4_c00471{left:226.560000pt;}
.xe_c00471{left:233.560000pt;}
.xa_c00471{left:238.973333pt;}
.x5_c00471{left:246.546667pt;}
.x16_c00471{left:261.906667pt;}
.x17_c00471{left:276.920000pt;}
.x10_c00471{left:318.626667pt;}
.x23_c00471{left:320.893333pt;}
.x20_c00471{left:338.066667pt;}
.x11_c00471{left:341.053333pt;}
.x24_c00471{left:345.706667pt;}
.x21_c00471{left:366.053333pt;}
.x25_c00471{left:376.173333pt;}
.x12_c00471{left:397.266667pt;}
.x13_c00471{left:418.213333pt;}
.x1b_c00471{left:439.866667pt;}
.x1c_c00471{left:467.213333pt;}
.x6_c00471{left:511.880000pt;}
.x7_c00471{left:525.906667pt;}
.x18_c00471{left:553.306667pt;}
.x1d_c00471{left:587.960000pt;}
.x1e_c00471{left:610.693333pt;}
.x19_c00471{left:611.653333pt;}
.x8_c00471{left:617.746667pt;}
.x1a_c00471{left:648.480000pt;}
}





/* 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_c00472 {
    display:none;
  }
  .loading-indicator_c00472.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00472 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_c00472 { 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_c00472" -> "#page-container .classname_c00472")
 */
.pf_c00472 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00472 { /* 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_c00472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00472 { /* 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_c00472 { /* 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_c00472 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00472 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00472 {overflow:visible;}
  }
}
.c_c00472 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00472 { /* 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_c00472:after { /* webkit #35443 */
  content: '';
}
.t_c00472:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00472 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 */
}
.__c00472 { /* 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_c00472 { /* info for Javascript */
  display:none;
}
.l_c00472 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00472 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00472 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00472: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_c00472 {
    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_c00472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00472.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_c00472 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00472{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00472;src:url('chunks/assets/font_6df8d555a0cb0088d425ca6c.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.311035;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_c00472;src:url('chunks/assets/font_17dc7244c26300a5751c8707.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.284668;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_c00472;src:url('chunks/assets/font_1f404fec05064e002f0ef51e.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;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:ff4_c00472;src:url('chunks/assets/font_1a2c6017df13bbda0947932d.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;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:ff5_c00472;src:url('chunks/assets/font_d28d6302637fab40058f1c99.woff2')format("woff");}.ff5_c00472{font-family:ff5_c00472;line-height:1.284180;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_c00472;src:url('chunks/assets/font_83fed1b35ca290e191fdd9bb.woff2')format("woff");}.ff6_c00472{font-family:ff6_c00472;line-height:0.666000;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;}
.mc_c00472{transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);}
.md_c00472{transform:matrix(0.116083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116083,0.000000,0.000000,0.250000,0,0);}
.me_c00472{transform:matrix(0.216691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216691,0.000000,0.000000,0.250000,0,0);}
.m2_c00472{transform:matrix(0.226449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226449,0.000000,0.000000,0.250000,0,0);}
.m7_c00472{transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);}
.m3_c00472{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.m9_c00472{transform:matrix(0.244042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244042,0.000000,0.000000,0.250000,0,0);}
.m5_c00472{transform:matrix(0.248654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248654,0.000000,0.000000,0.250000,0,0);}
.ma_c00472{transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);}
.m0_c00472{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);}
.m6_c00472{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.mb_c00472{transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);}
.m8_c00472{transform:matrix(0.253930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253930,0.000000,0.000000,0.250000,0,0);}
.m4_c00472{transform:matrix(0.274568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274568,0.000000,0.000000,0.250000,0,0);}
.m1_c00472{transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls5b_c00472{letter-spacing:-2.394000px;}
.ls81_c00472{letter-spacing:-2.331000px;}
.ls59_c00472{letter-spacing:-2.247000px;}
.ls70_c00472{letter-spacing:-2.209320px;}
.ls7e_c00472{letter-spacing:-2.134080px;}
.ls62_c00472{letter-spacing:-1.990440px;}
.ls79_c00472{letter-spacing:-1.723680px;}
.ls60_c00472{letter-spacing:-1.689480px;}
.ls74_c00472{letter-spacing:-1.593720px;}
.ls61_c00472{letter-spacing:-1.292760px;}
.ls67_c00472{letter-spacing:-1.285920px;}
.ls63_c00472{letter-spacing:-1.080720px;}
.ls80_c00472{letter-spacing:-0.957600px;}
.ls68_c00472{letter-spacing:-0.855000px;}
.ls86_c00472{letter-spacing:-0.814800px;}
.ls5c_c00472{letter-spacing:-0.800280px;}
.ls75_c00472{letter-spacing:-0.725040px;}
.ls5e_c00472{letter-spacing:-0.684000px;}
.ls7c_c00472{letter-spacing:-0.670320px;}
.ls64_c00472{letter-spacing:-0.663480px;}
.ls83_c00472{letter-spacing:-0.656640px;}
.ls71_c00472{letter-spacing:-0.601920px;}
.ls5f_c00472{letter-spacing:-0.540360px;}
.ls7b_c00472{letter-spacing:-0.458280px;}
.ls58_c00472{letter-spacing:-0.417240px;}
.ls69_c00472{letter-spacing:-0.376200px;}
.ls53_c00472{letter-spacing:-0.355680px;}
.ls6f_c00472{letter-spacing:-0.300960px;}
.ls6b_c00472{letter-spacing:-0.266760px;}
.ls84_c00472{letter-spacing:-0.246240px;}
.ls72_c00472{letter-spacing:-0.239760px;}
.ls55_c00472{letter-spacing:-0.205200px;}
.ls56_c00472{letter-spacing:-0.191520px;}
.ls7a_c00472{letter-spacing:-0.157320px;}
.ls6c_c00472{letter-spacing:-0.136800px;}
.ls5d_c00472{letter-spacing:-0.088920px;}
.ls6e_c00472{letter-spacing:-0.075240px;}
.ls5a_c00472{letter-spacing:-0.041040px;}
.ls6d_c00472{letter-spacing:-0.034200px;}
.ls6a_c00472{letter-spacing:-0.013680px;}
.ls54_c00472{letter-spacing:0.000000px;}
.ls65_c00472{letter-spacing:0.027360px;}
.ls1c_c00472{letter-spacing:0.034200px;}
.ls85_c00472{letter-spacing:0.041040px;}
.ls31_c00472{letter-spacing:0.075240px;}
.ls28_c00472{letter-spacing:0.102600px;}
.ls4d_c00472{letter-spacing:0.109440px;}
.ls2d_c00472{letter-spacing:0.116280px;}
.ls33_c00472{letter-spacing:0.150480px;}
.ls13_c00472{letter-spacing:0.198360px;}
.ls16_c00472{letter-spacing:0.212040px;}
.ls12_c00472{letter-spacing:0.225720px;}
.ls22_c00472{letter-spacing:0.239400px;}
.ls23_c00472{letter-spacing:0.253080px;}
.ls82_c00472{letter-spacing:0.273600px;}
.ls3a_c00472{letter-spacing:0.300960px;}
.ls1e_c00472{letter-spacing:0.335160px;}
.ls4b_c00472{letter-spacing:0.342000px;}
.ls76_c00472{letter-spacing:0.355680px;}
.ls3d_c00472{letter-spacing:0.362520px;}
.ls26_c00472{letter-spacing:0.369360px;}
.ls11_c00472{letter-spacing:0.389880px;}
.ls49_c00472{letter-spacing:0.396720px;}
.ls78_c00472{letter-spacing:0.403560px;}
.ls73_c00472{letter-spacing:0.417240px;}
.ls77_c00472{letter-spacing:0.430920px;}
.ls7d_c00472{letter-spacing:0.444600px;}
.ls3f_c00472{letter-spacing:0.492480px;}
.ls3b_c00472{letter-spacing:0.499320px;}
.ls4e_c00472{letter-spacing:0.513000px;}
.ls2a_c00472{letter-spacing:0.519840px;}
.ls10_c00472{letter-spacing:0.560880px;}
.ls1b_c00472{letter-spacing:0.581400px;}
.ls1a_c00472{letter-spacing:0.588240px;}
.lsf_c00472{letter-spacing:0.595080px;}
.lsd_c00472{letter-spacing:0.608760px;}
.ls32_c00472{letter-spacing:0.615600px;}
.ls6_c00472{letter-spacing:0.663480px;}
.ls19_c00472{letter-spacing:0.704520px;}
.ls51_c00472{letter-spacing:0.725040px;}
.ls47_c00472{letter-spacing:0.738720px;}
.ls17_c00472{letter-spacing:0.745560px;}
.ls36_c00472{letter-spacing:0.752400px;}
.ls35_c00472{letter-spacing:0.759240px;}
.ls4_c00472{letter-spacing:0.779760px;}
.ls39_c00472{letter-spacing:0.793440px;}
.ls34_c00472{letter-spacing:0.800280px;}
.ls15_c00472{letter-spacing:0.813960px;}
.ls42_c00472{letter-spacing:0.827640px;}
.ls8_c00472{letter-spacing:0.834480px;}
.ls2e_c00472{letter-spacing:0.855000px;}
.lsa_c00472{letter-spacing:0.861840px;}
.ls38_c00472{letter-spacing:0.868680px;}
.ls2_c00472{letter-spacing:0.875520px;}
.ls27_c00472{letter-spacing:0.902880px;}
.ls5_c00472{letter-spacing:0.916560px;}
.ls25_c00472{letter-spacing:0.930240px;}
.ls7f_c00472{letter-spacing:0.943920px;}
.ls1_c00472{letter-spacing:0.950760px;}
.ls41_c00472{letter-spacing:0.957600px;}
.ls4f_c00472{letter-spacing:0.991800px;}
.ls21_c00472{letter-spacing:1.053360px;}
.ls48_c00472{letter-spacing:1.060200px;}
.ls66_c00472{letter-spacing:1.067040px;}
.ls2c_c00472{letter-spacing:1.094400px;}
.ls7_c00472{letter-spacing:1.108080px;}
.ls9_c00472{letter-spacing:1.190160px;}
.ls4c_c00472{letter-spacing:1.197000px;}
.ls40_c00472{letter-spacing:1.279080px;}
.ls2f_c00472{letter-spacing:1.320120px;}
.lse_c00472{letter-spacing:1.333800px;}
.ls44_c00472{letter-spacing:1.354320px;}
.ls45_c00472{letter-spacing:1.361160px;}
.ls46_c00472{letter-spacing:1.368000px;}
.ls30_c00472{letter-spacing:1.395360px;}
.ls50_c00472{letter-spacing:1.409040px;}
.ls2b_c00472{letter-spacing:1.422720px;}
.ls3_c00472{letter-spacing:1.425060px;}
.ls3c_c00472{letter-spacing:1.436400px;}
.ls3e_c00472{letter-spacing:1.443240px;}
.ls20_c00472{letter-spacing:1.450080px;}
.ls18_c00472{letter-spacing:1.463760px;}
.ls24_c00472{letter-spacing:1.518480px;}
.ls0_c00472{letter-spacing:1.532160px;}
.ls29_c00472{letter-spacing:1.552680px;}
.ls1f_c00472{letter-spacing:1.580040px;}
.lsb_c00472{letter-spacing:1.593720px;}
.ls1d_c00472{letter-spacing:1.634760px;}
.ls52_c00472{letter-spacing:1.670340px;}
.ls4a_c00472{letter-spacing:1.703160px;}
.ls14_c00472{letter-spacing:1.874160px;}
.lsc_c00472{letter-spacing:1.915200px;}
.ls43_c00472{letter-spacing:2.496600px;}
.ls37_c00472{letter-spacing:2.503440px;}
.ls57_c00472{letter-spacing:3.420000px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{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__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00472{word-spacing:0.000000px;}
.ws3_c00472{word-spacing:0.143640px;}
.ws7_c00472{word-spacing:1.210680px;}
.ws5_c00472{word-spacing:3.125880px;}
.ws1_c00472{word-spacing:9.555240px;}
.ws4_c00472{word-spacing:11.976840px;}
.ws6_c00472{word-spacing:12.147840px;}
.ws8_c00472{word-spacing:13.892040px;}
.ws2_c00472{word-spacing:14.753880px;}
.ws0_c00472{word-spacing:33.256080px;}
._c_c00472{margin-left:-10.965000px;}
._16_c00472{margin-left:-6.826320px;}
._11_c00472{margin-left:-5.056200px;}
._12_c00472{margin-left:-3.296880px;}
._14_c00472{margin-left:-1.265400px;}
._b_c00472{width:1.199400px;}
._13_c00472{width:2.508960px;}
._5_c00472{width:3.896400px;}
._7_c00472{width:5.622480px;}
._a_c00472{width:7.264080px;}
._9_c00472{width:8.697600px;}
._6_c00472{width:10.966320px;}
._e_c00472{width:12.045240px;}
._10_c00472{width:13.329360px;}
._f_c00472{width:15.342120px;}
._8_c00472{width:17.929680px;}
._d_c00472{width:19.218600px;}
._15_c00472{width:21.016440px;}
._18_c00472{width:22.860120px;}
._4_c00472{width:34.761180px;}
._0_c00472{width:36.600720px;}
._1_c00472{width:38.208240px;}
._3_c00472{width:39.745200px;}
._2_c00472{width:43.044240px;}
._17_c00472{width:47.480400px;}
.fc0_c00472{color:transparent;}
.fs5_c00472{font-size:51.840000px;}
.fs0_c00472{font-size:58.200000px;}
.fs3_c00472{font-size:64.200000px;}
.fs8_c00472{font-size:66.000000px;}
.fs4_c00472{font-size:66.600000px;}
.fs1_c00472{font-size:68.400000px;}
.fs2_c00472{font-size:70.200000px;}
.fs6_c00472{font-size:73.800000px;}
.fs7_c00472{font-size:76.800000px;}
.y0_c00472{bottom:0.000000px;}
.y1d_c00472{bottom:67.695015px;}
.y1c_c00472{bottom:190.103115px;}
.y1b_c00472{bottom:220.695015px;}
.y1a_c00472{bottom:282.960015px;}
.y19_c00472{bottom:282.966315px;}
.y18_c00472{bottom:313.216215px;}
.y17_c00472{bottom:374.400015px;}
.y16_c00472{bottom:405.000015px;}
.y15_c00472{bottom:405.006915px;}
.y14_c00472{bottom:435.975915px;}
.y13_c00472{bottom:497.895015px;}
.y12_c00472{bottom:527.055015px;}
.y11_c00472{bottom:590.400015px;}
.y1f_c00472{bottom:615.255015px;}
.y1e_c00472{bottom:618.840015px;}
.y10_c00472{bottom:620.655015px;}
.yf_c00472{bottom:682.575015px;}
.ye_c00472{bottom:713.175915px;}
.yd_c00472{bottom:775.086915px;}
.yc_c00472{bottom:806.057115px;}
.yb_c00472{bottom:867.600015px;}
.ya_c00472{bottom:867.605115px;}
.y8_c00472{bottom:897.853215px;}
.y9_c00472{bottom:897.855015px;}
.y7_c00472{bottom:958.689015px;}
.y6_c00472{bottom:989.640015px;}
.y5_c00472{bottom:1050.480015px;}
.y3_c00472{bottom:1081.791915px;}
.y4_c00472{bottom:1081.800015px;}
.y2_c00472{bottom:1112.760015px;}
.y1_c00472{bottom:1188.015015px;}
.hb_c00472{height:34.525440px;}
.he_c00472{height:57.120117px;}
.h2_c00472{height:58.654687px;}
.h6_c00472{height:66.958594px;}
.h7_c00472{height:67.097461px;}
.h9_c00472{height:67.120312px;}
.h5_c00472{height:67.130859px;}
.h4_c00472{height:67.163259px;}
.h10_c00472{height:68.835938px;}
.ha_c00472{height:69.458119px;}
.hc_c00472{height:69.461719px;}
.h8_c00472{height:69.485719px;}
.hd_c00472{height:72.430664px;}
.h3_c00472{height:73.216406px;}
.hf_c00472{height:80.100000px;}
.h1_c00472{height:1263.000000px;}
.h0_c00472{height:1263.240015px;}
.w1_c00472{width:892.500000px;}
.w0_c00472{width:892.800000px;}
.x0_c00472{left:0.000000px;}
.x13_c00472{left:115.082700px;}
.xd_c00472{left:117.645000px;}
.x1_c00472{left:118.710000px;}
.x6_c00472{left:137.280000px;}
.x15_c00472{left:164.670000px;}
.x16_c00472{left:166.290000px;}
.x17_c00472{left:213.660000px;}
.x9_c00472{left:316.185000px;}
.xa_c00472{left:362.295000px;}
.x2_c00472{left:367.020000px;}
.x3_c00472{left:387.360000px;}
.x1a_c00472{left:417.435000px;}
.x14_c00472{left:420.960000px;}
.xe_c00472{left:427.695000px;}
.xf_c00472{left:461.775000px;}
.x18_c00472{left:520.740000px;}
.x19_c00472{left:543.435000px;}
.x4_c00472{left:624.105000px;}
.x5_c00472{left:642.735000px;}
.x10_c00472{left:681.105000px;}
.x11_c00472{left:700.965000px;}
.x7_c00472{left:702.180000px;}
.xc_c00472{left:720.540000px;}
.x8_c00472{left:723.915000px;}
.x12_c00472{left:729.975000px;}
.xb_c00472{left:732.420000px;}
.x1c_c00472{left:855.495000px;}
.x1b_c00472{left:856.545000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls5b_c00472{letter-spacing:-2.128000pt;}
.ls81_c00472{letter-spacing:-2.072000pt;}
.ls59_c00472{letter-spacing:-1.997333pt;}
.ls70_c00472{letter-spacing:-1.963840pt;}
.ls7e_c00472{letter-spacing:-1.896960pt;}
.ls62_c00472{letter-spacing:-1.769280pt;}
.ls79_c00472{letter-spacing:-1.532160pt;}
.ls60_c00472{letter-spacing:-1.501760pt;}
.ls74_c00472{letter-spacing:-1.416640pt;}
.ls61_c00472{letter-spacing:-1.149120pt;}
.ls67_c00472{letter-spacing:-1.143040pt;}
.ls63_c00472{letter-spacing:-0.960640pt;}
.ls80_c00472{letter-spacing:-0.851200pt;}
.ls68_c00472{letter-spacing:-0.760000pt;}
.ls86_c00472{letter-spacing:-0.724267pt;}
.ls5c_c00472{letter-spacing:-0.711360pt;}
.ls75_c00472{letter-spacing:-0.644480pt;}
.ls5e_c00472{letter-spacing:-0.608000pt;}
.ls7c_c00472{letter-spacing:-0.595840pt;}
.ls64_c00472{letter-spacing:-0.589760pt;}
.ls83_c00472{letter-spacing:-0.583680pt;}
.ls71_c00472{letter-spacing:-0.535040pt;}
.ls5f_c00472{letter-spacing:-0.480320pt;}
.ls7b_c00472{letter-spacing:-0.407360pt;}
.ls58_c00472{letter-spacing:-0.370880pt;}
.ls69_c00472{letter-spacing:-0.334400pt;}
.ls53_c00472{letter-spacing:-0.316160pt;}
.ls6f_c00472{letter-spacing:-0.267520pt;}
.ls6b_c00472{letter-spacing:-0.237120pt;}
.ls84_c00472{letter-spacing:-0.218880pt;}
.ls72_c00472{letter-spacing:-0.213120pt;}
.ls55_c00472{letter-spacing:-0.182400pt;}
.ls56_c00472{letter-spacing:-0.170240pt;}
.ls7a_c00472{letter-spacing:-0.139840pt;}
.ls6c_c00472{letter-spacing:-0.121600pt;}
.ls5d_c00472{letter-spacing:-0.079040pt;}
.ls6e_c00472{letter-spacing:-0.066880pt;}
.ls5a_c00472{letter-spacing:-0.036480pt;}
.ls6d_c00472{letter-spacing:-0.030400pt;}
.ls6a_c00472{letter-spacing:-0.012160pt;}
.ls54_c00472{letter-spacing:0.000000pt;}
.ls65_c00472{letter-spacing:0.024320pt;}
.ls1c_c00472{letter-spacing:0.030400pt;}
.ls85_c00472{letter-spacing:0.036480pt;}
.ls31_c00472{letter-spacing:0.066880pt;}
.ls28_c00472{letter-spacing:0.091200pt;}
.ls4d_c00472{letter-spacing:0.097280pt;}
.ls2d_c00472{letter-spacing:0.103360pt;}
.ls33_c00472{letter-spacing:0.133760pt;}
.ls13_c00472{letter-spacing:0.176320pt;}
.ls16_c00472{letter-spacing:0.188480pt;}
.ls12_c00472{letter-spacing:0.200640pt;}
.ls22_c00472{letter-spacing:0.212800pt;}
.ls23_c00472{letter-spacing:0.224960pt;}
.ls82_c00472{letter-spacing:0.243200pt;}
.ls3a_c00472{letter-spacing:0.267520pt;}
.ls1e_c00472{letter-spacing:0.297920pt;}
.ls4b_c00472{letter-spacing:0.304000pt;}
.ls76_c00472{letter-spacing:0.316160pt;}
.ls3d_c00472{letter-spacing:0.322240pt;}
.ls26_c00472{letter-spacing:0.328320pt;}
.ls11_c00472{letter-spacing:0.346560pt;}
.ls49_c00472{letter-spacing:0.352640pt;}
.ls78_c00472{letter-spacing:0.358720pt;}
.ls73_c00472{letter-spacing:0.370880pt;}
.ls77_c00472{letter-spacing:0.383040pt;}
.ls7d_c00472{letter-spacing:0.395200pt;}
.ls3f_c00472{letter-spacing:0.437760pt;}
.ls3b_c00472{letter-spacing:0.443840pt;}
.ls4e_c00472{letter-spacing:0.456000pt;}
.ls2a_c00472{letter-spacing:0.462080pt;}
.ls10_c00472{letter-spacing:0.498560pt;}
.ls1b_c00472{letter-spacing:0.516800pt;}
.ls1a_c00472{letter-spacing:0.522880pt;}
.lsf_c00472{letter-spacing:0.528960pt;}
.lsd_c00472{letter-spacing:0.541120pt;}
.ls32_c00472{letter-spacing:0.547200pt;}
.ls6_c00472{letter-spacing:0.589760pt;}
.ls19_c00472{letter-spacing:0.626240pt;}
.ls51_c00472{letter-spacing:0.644480pt;}
.ls47_c00472{letter-spacing:0.656640pt;}
.ls17_c00472{letter-spacing:0.662720pt;}
.ls36_c00472{letter-spacing:0.668800pt;}
.ls35_c00472{letter-spacing:0.674880pt;}
.ls4_c00472{letter-spacing:0.693120pt;}
.ls39_c00472{letter-spacing:0.705280pt;}
.ls34_c00472{letter-spacing:0.711360pt;}
.ls15_c00472{letter-spacing:0.723520pt;}
.ls42_c00472{letter-spacing:0.735680pt;}
.ls8_c00472{letter-spacing:0.741760pt;}
.ls2e_c00472{letter-spacing:0.760000pt;}
.lsa_c00472{letter-spacing:0.766080pt;}
.ls38_c00472{letter-spacing:0.772160pt;}
.ls2_c00472{letter-spacing:0.778240pt;}
.ls27_c00472{letter-spacing:0.802560pt;}
.ls5_c00472{letter-spacing:0.814720pt;}
.ls25_c00472{letter-spacing:0.826880pt;}
.ls7f_c00472{letter-spacing:0.839040pt;}
.ls1_c00472{letter-spacing:0.845120pt;}
.ls41_c00472{letter-spacing:0.851200pt;}
.ls4f_c00472{letter-spacing:0.881600pt;}
.ls21_c00472{letter-spacing:0.936320pt;}
.ls48_c00472{letter-spacing:0.942400pt;}
.ls66_c00472{letter-spacing:0.948480pt;}
.ls2c_c00472{letter-spacing:0.972800pt;}
.ls7_c00472{letter-spacing:0.984960pt;}
.ls9_c00472{letter-spacing:1.057920pt;}
.ls4c_c00472{letter-spacing:1.064000pt;}
.ls40_c00472{letter-spacing:1.136960pt;}
.ls2f_c00472{letter-spacing:1.173440pt;}
.lse_c00472{letter-spacing:1.185600pt;}
.ls44_c00472{letter-spacing:1.203840pt;}
.ls45_c00472{letter-spacing:1.209920pt;}
.ls46_c00472{letter-spacing:1.216000pt;}
.ls30_c00472{letter-spacing:1.240320pt;}
.ls50_c00472{letter-spacing:1.252480pt;}
.ls2b_c00472{letter-spacing:1.264640pt;}
.ls3_c00472{letter-spacing:1.266720pt;}
.ls3c_c00472{letter-spacing:1.276800pt;}
.ls3e_c00472{letter-spacing:1.282880pt;}
.ls20_c00472{letter-spacing:1.288960pt;}
.ls18_c00472{letter-spacing:1.301120pt;}
.ls24_c00472{letter-spacing:1.349760pt;}
.ls0_c00472{letter-spacing:1.361920pt;}
.ls29_c00472{letter-spacing:1.380160pt;}
.ls1f_c00472{letter-spacing:1.404480pt;}
.lsb_c00472{letter-spacing:1.416640pt;}
.ls1d_c00472{letter-spacing:1.453120pt;}
.ls52_c00472{letter-spacing:1.484747pt;}
.ls4a_c00472{letter-spacing:1.513920pt;}
.ls14_c00472{letter-spacing:1.665920pt;}
.lsc_c00472{letter-spacing:1.702400pt;}
.ls43_c00472{letter-spacing:2.219200pt;}
.ls37_c00472{letter-spacing:2.225280pt;}
.ls57_c00472{letter-spacing:3.040000pt;}
.ws9_c00472{word-spacing:0.000000pt;}
.ws3_c00472{word-spacing:0.127680pt;}
.ws7_c00472{word-spacing:1.076160pt;}
.ws5_c00472{word-spacing:2.778560pt;}
.ws1_c00472{word-spacing:8.493547pt;}
.ws4_c00472{word-spacing:10.646080pt;}
.ws6_c00472{word-spacing:10.798080pt;}
.ws8_c00472{word-spacing:12.348480pt;}
.ws2_c00472{word-spacing:13.114560pt;}
.ws0_c00472{word-spacing:29.560960pt;}
._c_c00472{margin-left:-9.746667pt;}
._16_c00472{margin-left:-6.067840pt;}
._11_c00472{margin-left:-4.494400pt;}
._12_c00472{margin-left:-2.930560pt;}
._14_c00472{margin-left:-1.124800pt;}
._b_c00472{width:1.066133pt;}
._13_c00472{width:2.230187pt;}
._5_c00472{width:3.463467pt;}
._7_c00472{width:4.997760pt;}
._a_c00472{width:6.456960pt;}
._9_c00472{width:7.731200pt;}
._6_c00472{width:9.747840pt;}
._e_c00472{width:10.706880pt;}
._10_c00472{width:11.848320pt;}
._f_c00472{width:13.637440pt;}
._8_c00472{width:15.937493pt;}
._d_c00472{width:17.083200pt;}
._15_c00472{width:18.681280pt;}
._18_c00472{width:20.320107pt;}
._4_c00472{width:30.898827pt;}
._0_c00472{width:32.533973pt;}
._1_c00472{width:33.962880pt;}
._3_c00472{width:35.329067pt;}
._2_c00472{width:38.261547pt;}
._17_c00472{width:42.204800pt;}
.fs5_c00472{font-size:46.080000pt;}
.fs0_c00472{font-size:51.733333pt;}
.fs3_c00472{font-size:57.066667pt;}
.fs8_c00472{font-size:58.666667pt;}
.fs4_c00472{font-size:59.200000pt;}
.fs1_c00472{font-size:60.800000pt;}
.fs2_c00472{font-size:62.400000pt;}
.fs6_c00472{font-size:65.600000pt;}
.fs7_c00472{font-size:68.266667pt;}
.y0_c00472{bottom:0.000000pt;}
.y1d_c00472{bottom:60.173347pt;}
.y1c_c00472{bottom:168.980547pt;}
.y1b_c00472{bottom:196.173347pt;}
.y1a_c00472{bottom:251.520013pt;}
.y19_c00472{bottom:251.525613pt;}
.y18_c00472{bottom:278.414413pt;}
.y17_c00472{bottom:332.800013pt;}
.y16_c00472{bottom:360.000013pt;}
.y15_c00472{bottom:360.006147pt;}
.y14_c00472{bottom:387.534147pt;}
.y13_c00472{bottom:442.573347pt;}
.y12_c00472{bottom:468.493347pt;}
.y11_c00472{bottom:524.800013pt;}
.y1f_c00472{bottom:546.893347pt;}
.y1e_c00472{bottom:550.080013pt;}
.y10_c00472{bottom:551.693347pt;}
.yf_c00472{bottom:606.733347pt;}
.ye_c00472{bottom:633.934147pt;}
.yd_c00472{bottom:688.966147pt;}
.yc_c00472{bottom:716.495213pt;}
.yb_c00472{bottom:771.200013pt;}
.ya_c00472{bottom:771.204547pt;}
.y8_c00472{bottom:798.091747pt;}
.y9_c00472{bottom:798.093347pt;}
.y7_c00472{bottom:852.168013pt;}
.y6_c00472{bottom:879.680013pt;}
.y5_c00472{bottom:933.760013pt;}
.y3_c00472{bottom:961.592813pt;}
.y4_c00472{bottom:961.600013pt;}
.y2_c00472{bottom:989.120013pt;}
.y1_c00472{bottom:1056.013347pt;}
.hb_c00472{height:30.689280pt;}
.he_c00472{height:50.773437pt;}
.h2_c00472{height:52.137500pt;}
.h6_c00472{height:59.518750pt;}
.h7_c00472{height:59.642187pt;}
.h9_c00472{height:59.662500pt;}
.h5_c00472{height:59.671875pt;}
.h4_c00472{height:59.700675pt;}
.h10_c00472{height:61.187500pt;}
.ha_c00472{height:61.740550pt;}
.hc_c00472{height:61.743750pt;}
.h8_c00472{height:61.765083pt;}
.hd_c00472{height:64.382813pt;}
.h3_c00472{height:65.081250pt;}
.hf_c00472{height:71.200000pt;}
.h1_c00472{height:1122.666667pt;}
.h0_c00472{height:1122.880013pt;}
.w1_c00472{width:793.333333pt;}
.w0_c00472{width:793.600000pt;}
.x0_c00472{left:0.000000pt;}
.x13_c00472{left:102.295733pt;}
.xd_c00472{left:104.573333pt;}
.x1_c00472{left:105.520000pt;}
.x6_c00472{left:122.026667pt;}
.x15_c00472{left:146.373333pt;}
.x16_c00472{left:147.813333pt;}
.x17_c00472{left:189.920000pt;}
.x9_c00472{left:281.053333pt;}
.xa_c00472{left:322.040000pt;}
.x2_c00472{left:326.240000pt;}
.x3_c00472{left:344.320000pt;}
.x1a_c00472{left:371.053333pt;}
.x14_c00472{left:374.186667pt;}
.xe_c00472{left:380.173333pt;}
.xf_c00472{left:410.466667pt;}
.x18_c00472{left:462.880000pt;}
.x19_c00472{left:483.053333pt;}
.x4_c00472{left:554.760000pt;}
.x5_c00472{left:571.320000pt;}
.x10_c00472{left:605.426667pt;}
.x11_c00472{left:623.080000pt;}
.x7_c00472{left:624.160000pt;}
.xc_c00472{left:640.480000pt;}
.x8_c00472{left:643.480000pt;}
.x12_c00472{left:648.866667pt;}
.xb_c00472{left:651.040000pt;}
.x1c_c00472{left:760.440000pt;}
.x1b_c00472{left:761.373333pt;}
}





/* 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_c00473 {
    display:none;
  }
  .loading-indicator_c00473.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00473 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_c00473 { 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_c00473" -> "#page-container .classname_c00473")
 */
.pf_c00473 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00473 { /* 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_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00473 { /* 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_c00473 { /* 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_c00473 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00473 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00473 {overflow:visible;}
  }
}
.c_c00473 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00473 { /* 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_c00473:after { /* webkit #35443 */
  content: '';
}
.t_c00473:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00473 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 */
}
.__c00473 { /* 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_c00473 { /* info for Javascript */
  display:none;
}
.l_c00473 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00473 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00473 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00473: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_c00473 {
    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_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00473.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_c00473 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00473{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00473;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.311035;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_c00473;src:url('chunks/assets/font_74f78e97e299c72dccc417d5.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.284668;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_c00473;src:url('chunks/assets/font_00e3afb29658889013ac9526.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.284180;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_c00473;src:url('chunks/assets/font_2bb45aad5eb1bcbbc9f5346a.woff2')format("woff");}.ff4_c00473{font-family:ff4_c00473;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:ff5_c00473;src:url('chunks/assets/font_46e7e17f0dfa460ac12a6601.woff2')format("woff");}.ff5_c00473{font-family:ff5_c00473;line-height:0.666000;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_c00473;src:url('chunks/assets/font_1a2c6017df13bbda0947932d.woff2')format("woff");}.ff6_c00473{font-family:ff6_c00473;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;}
.m5_c00473{transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);}
.m4_c00473{transform:matrix(0.221889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221889,0.000000,0.000000,0.250000,0,0);}
.m11_c00473{transform:matrix(0.225563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225563,0.000000,0.000000,0.250000,0,0);}
.m16_c00473{transform:matrix(0.229553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229553,0.000000,0.000000,0.250000,0,0);}
.m12_c00473{transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238018,0.000000,0.000000,0.250000,0,0);}
.mc_c00473{transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);}
.mf_c00473{transform:matrix(0.244583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244583,0.000000,0.000000,0.250000,0,0);}
.me_c00473{transform:matrix(0.244744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244744,0.000000,0.000000,0.250000,0,0);}
.md_c00473{transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);}
.m17_c00473{transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);}
.m14_c00473{transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);}
.m2_c00473{transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{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);}
.m3_c00473{transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);}
.m15_c00473{transform:matrix(0.254964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254964,0.000000,0.000000,0.250000,0,0);}
.m1_c00473{transform:matrix(0.255550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255550,0.000000,0.000000,0.250000,0,0);}
.m10_c00473{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m6_c00473{transform:matrix(0.263694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263694,0.000000,0.000000,0.250000,0,0);}
.m7_c00473{transform:matrix(0.272065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272065,0.000000,0.000000,0.250000,0,0);}
.m13_c00473{transform:matrix(0.279419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279419,0.000000,0.000000,0.250000,0,0);}
.m9_c00473{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.mb_c00473{transform:matrix(0.437531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437531,0.000000,0.000000,0.250000,0,0);}
.ma_c00473{transform:matrix(0.464185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464185,0.000000,0.000000,0.250000,0,0);}
.m8_c00473{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls94_c00473{letter-spacing:-2.604000px;}
.ls59_c00473{letter-spacing:-2.457000px;}
.ls63_c00473{letter-spacing:-2.415000px;}
.ls79_c00473{letter-spacing:-2.373000px;}
.ls73_c00473{letter-spacing:-2.331000px;}
.ls9a_c00473{letter-spacing:-2.159700px;}
.ls50_c00473{letter-spacing:-1.995000px;}
.ls5a_c00473{letter-spacing:-1.923480px;}
.ls49_c00473{letter-spacing:-1.867320px;}
.lsa0_c00473{letter-spacing:-1.586880px;}
.ls64_c00473{letter-spacing:-1.586520px;}
.ls85_c00473{letter-spacing:-1.572480px;}
.ls7c_c00473{letter-spacing:-1.509300px;}
.ls9f_c00473{letter-spacing:-1.432080px;}
.ls83_c00473{letter-spacing:-1.214460px;}
.ls74_c00473{letter-spacing:-1.210680px;}
.ls9b_c00473{letter-spacing:-1.102140px;}
.ls76_c00473{letter-spacing:-1.045980px;}
.ls4a_c00473{letter-spacing:-0.989820px;}
.ls6a_c00473{letter-spacing:-0.961740px;}
.ls90_c00473{letter-spacing:-0.835380px;}
.ls95_c00473{letter-spacing:-0.793260px;}
.ls9d_c00473{letter-spacing:-0.723060px;}
.ls8e_c00473{letter-spacing:-0.716040px;}
.ls5c_c00473{letter-spacing:-0.702000px;}
.ls98_c00473{letter-spacing:-0.690840px;}
.ls7d_c00473{letter-spacing:-0.652860px;}
.lsa2_c00473{letter-spacing:-0.631800px;}
.ls8c_c00473{letter-spacing:-0.624780px;}
.ls96_c00473{letter-spacing:-0.595080px;}
.ls6c_c00473{letter-spacing:-0.568620px;}
.ls8f_c00473{letter-spacing:-0.547560px;}
.ls8b_c00473{letter-spacing:-0.512460px;}
.ls6d_c00473{letter-spacing:-0.463320px;}
.ls60_c00473{letter-spacing:-0.449280px;}
.ls99_c00473{letter-spacing:-0.430920px;}
.ls65_c00473{letter-spacing:-0.414180px;}
.ls71_c00473{letter-spacing:-0.407160px;}
.lsa1_c00473{letter-spacing:-0.372060px;}
.ls91_c00473{letter-spacing:-0.351000px;}
.ls80_c00473{letter-spacing:-0.322920px;}
.ls69_c00473{letter-spacing:-0.315900px;}
.ls6b_c00473{letter-spacing:-0.287820px;}
.ls61_c00473{letter-spacing:-0.273780px;}
.ls8d_c00473{letter-spacing:-0.259740px;}
.ls57_c00473{letter-spacing:-0.239400px;}
.ls9e_c00473{letter-spacing:-0.182520px;}
.ls5b_c00473{letter-spacing:-0.154440px;}
.ls89_c00473{letter-spacing:-0.147420px;}
.ls87_c00473{letter-spacing:-0.140400px;}
.ls88_c00473{letter-spacing:-0.133380px;}
.ls7f_c00473{letter-spacing:-0.105300px;}
.ls5f_c00473{letter-spacing:-0.084240px;}
.ls6f_c00473{letter-spacing:-0.070200px;}
.ls97_c00473{letter-spacing:-0.061560px;}
.ls67_c00473{letter-spacing:-0.056160px;}
.ls7e_c00473{letter-spacing:-0.049140px;}
.ls75_c00473{letter-spacing:-0.041040px;}
.ls84_c00473{letter-spacing:-0.035100px;}
.ls53_c00473{letter-spacing:0.000000px;}
.ls66_c00473{letter-spacing:0.014040px;}
.ls81_c00473{letter-spacing:0.021060px;}
.ls77_c00473{letter-spacing:0.028080px;}
.ls16_c00473{letter-spacing:0.042120px;}
.ls28_c00473{letter-spacing:0.063180px;}
.ls19_c00473{letter-spacing:0.091260px;}
.lse_c00473{letter-spacing:0.102600px;}
.ls20_c00473{letter-spacing:0.105300px;}
.ls1c_c00473{letter-spacing:0.140400px;}
.ls1d_c00473{letter-spacing:0.147420px;}
.ls86_c00473{letter-spacing:0.154440px;}
.ls68_c00473{letter-spacing:0.161460px;}
.ls33_c00473{letter-spacing:0.175500px;}
.ls2e_c00473{letter-spacing:0.189540px;}
.ls23_c00473{letter-spacing:0.196560px;}
.ls1b_c00473{letter-spacing:0.203580px;}
.ls37_c00473{letter-spacing:0.210600px;}
.ls22_c00473{letter-spacing:0.224640px;}
.ls54_c00473{letter-spacing:0.226920px;}
.ls2c_c00473{letter-spacing:0.232560px;}
.ls35_c00473{letter-spacing:0.238680px;}
.ls26_c00473{letter-spacing:0.252720px;}
.ls18_c00473{letter-spacing:0.294840px;}
.ls93_c00473{letter-spacing:0.301860px;}
.ls7a_c00473{letter-spacing:0.308880px;}
.ls7_c00473{letter-spacing:0.321480px;}
.ls31_c00473{letter-spacing:0.322920px;}
.ls15_c00473{letter-spacing:0.343980px;}
.ls29_c00473{letter-spacing:0.351000px;}
.ls72_c00473{letter-spacing:0.355680px;}
.ls62_c00473{letter-spacing:0.358020px;}
.ls27_c00473{letter-spacing:0.383040px;}
.ls45_c00473{letter-spacing:0.386100px;}
.ls39_c00473{letter-spacing:0.400140px;}
.ls2d_c00473{letter-spacing:0.407160px;}
.ls34_c00473{letter-spacing:0.414180px;}
.ls5e_c00473{letter-spacing:0.417240px;}
.ls3a_c00473{letter-spacing:0.421200px;}
.ls24_c00473{letter-spacing:0.442260px;}
.ls1_c00473{letter-spacing:0.458280px;}
.ls2a_c00473{letter-spacing:0.463320px;}
.ls2_c00473{letter-spacing:0.499320px;}
.ls21_c00473{letter-spacing:0.512460px;}
.ls7b_c00473{letter-spacing:0.519480px;}
.ls36_c00473{letter-spacing:0.554580px;}
.ls43_c00473{letter-spacing:0.588240px;}
.ls25_c00473{letter-spacing:0.617760px;}
.lsa3_c00473{letter-spacing:0.622740px;}
.ls0_c00473{letter-spacing:0.631800px;}
.ls3e_c00473{letter-spacing:0.656640px;}
.ls10_c00473{letter-spacing:0.684000px;}
.ls6e_c00473{letter-spacing:0.687960px;}
.ls47_c00473{letter-spacing:0.690840px;}
.ls3_c00473{letter-spacing:0.704520px;}
.ls30_c00473{letter-spacing:0.716040px;}
.ls92_c00473{letter-spacing:0.725040px;}
.ls78_c00473{letter-spacing:0.751140px;}
.ls14_c00473{letter-spacing:0.752400px;}
.ls2b_c00473{letter-spacing:0.759240px;}
.ls44_c00473{letter-spacing:0.772200px;}
.ls40_c00473{letter-spacing:0.772920px;}
.ls1f_c00473{letter-spacing:0.779220px;}
.ls58_c00473{letter-spacing:0.779760px;}
.ls17_c00473{letter-spacing:0.786240px;}
.ls4f_c00473{letter-spacing:0.813960px;}
.ls41_c00473{letter-spacing:0.834480px;}
.ls32_c00473{letter-spacing:0.856440px;}
.ls3c_c00473{letter-spacing:0.905580px;}
.ls4b_c00473{letter-spacing:0.909720px;}
.ls55_c00473{letter-spacing:0.930000px;}
.ls5_c00473{letter-spacing:0.937080px;}
.ls5d_c00473{letter-spacing:0.998640px;}
.ls8a_c00473{letter-spacing:1.039680px;}
.ls1e_c00473{letter-spacing:1.080720px;}
.ls4c_c00473{letter-spacing:1.087560px;}
.lsb_c00473{letter-spacing:1.121760px;}
.lsc_c00473{letter-spacing:1.135440px;}
.ls12_c00473{letter-spacing:1.142280px;}
.ls13_c00473{letter-spacing:1.176480px;}
.lsa_c00473{letter-spacing:1.235100px;}
.ls11_c00473{letter-spacing:1.238040px;}
.ls3b_c00473{letter-spacing:1.396980px;}
.ls6_c00473{letter-spacing:1.402200px;}
.ls1a_c00473{letter-spacing:1.477440px;}
.ls42_c00473{letter-spacing:1.504800px;}
.ls9c_c00473{letter-spacing:1.656720px;}
.lsf_c00473{letter-spacing:1.662120px;}
.ls48_c00473{letter-spacing:1.670340px;}
.ls38_c00473{letter-spacing:1.682640px;}
.ls56_c00473{letter-spacing:1.710000px;}
.ls4e_c00473{letter-spacing:1.744200px;}
.ls4_c00473{letter-spacing:1.751040px;}
.ls46_c00473{letter-spacing:1.811160px;}
.ls2f_c00473{letter-spacing:1.965600px;}
.lsd_c00473{letter-spacing:2.120400px;}
.ls9_c00473{letter-spacing:2.175120px;}
.ls3f_c00473{letter-spacing:2.209320px;}
.ls82_c00473{letter-spacing:2.449980px;}
.ls51_c00473{letter-spacing:2.479500px;}
.ls3d_c00473{letter-spacing:2.688660px;}
.ls52_c00473{letter-spacing:2.850000px;}
.ls4d_c00473{letter-spacing:3.420000px;}
.ls70_c00473{letter-spacing:3.510000px;}
.ls8_c00473{letter-spacing:664.666200px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{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__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00473{word-spacing:-1.542600px;}
.ws5_c00473{word-spacing:-0.280800px;}
.wsb_c00473{word-spacing:0.000000px;}
.ws8_c00473{word-spacing:0.842400px;}
.wsa_c00473{word-spacing:3.629340px;}
.ws7_c00473{word-spacing:3.952260px;}
.ws2_c00473{word-spacing:17.949000px;}
.ws9_c00473{word-spacing:19.326060px;}
.ws1_c00473{word-spacing:26.598000px;}
.ws6_c00473{word-spacing:26.977860px;}
.ws0_c00473{word-spacing:29.989740px;}
.ws4_c00473{word-spacing:30.558060px;}
._1b_c00473{margin-left:-16.970580px;}
._14_c00473{margin-left:-11.397000px;}
._a_c00473{margin-left:-3.693600px;}
._d_c00473{margin-left:-2.571840px;}
._e_c00473{margin-left:-1.536720px;}
._f_c00473{width:1.346040px;}
._6_c00473{width:2.604000px;}
._c_c00473{width:4.106400px;}
._13_c00473{width:5.839440px;}
._b_c00473{width:8.002800px;}
._1c_c00473{width:11.177880px;}
._10_c00473{width:12.986400px;}
._1a_c00473{width:15.176100px;}
._18_c00473{width:16.270320px;}
._15_c00473{width:18.023400px;}
._19_c00473{width:19.610100px;}
._8_c00473{width:21.223800px;}
._5_c00473{width:23.256000px;}
._1d_c00473{width:24.916260px;}
._16_c00473{width:26.381160px;}
._17_c00473{width:27.540720px;}
._0_c00473{width:30.396600px;}
._9_c00473{width:31.806000px;}
._4_c00473{width:32.934600px;}
._3_c00473{width:36.238320px;}
._12_c00473{width:37.402560px;}
._11_c00473{width:39.071640px;}
._1_c00473{width:42.176160px;}
._2_c00473{width:44.008560px;}
._7_c00473{width:46.023000px;}
.fc0_c00473{color:transparent;}
.fs6_c00473{font-size:10.080000px;}
.fs5_c00473{font-size:18.600000px;}
.fs7_c00473{font-size:34.200000px;}
.fs4_c00473{font-size:54.720000px;}
.fs3_c00473{font-size:57.000000px;}
.fs0_c00473{font-size:58.200000px;}
.fsa_c00473{font-size:66.600000px;}
.fsb_c00473{font-size:67.800000px;}
.fs2_c00473{font-size:68.400000px;}
.fs8_c00473{font-size:69.000000px;}
.fs1_c00473{font-size:70.200000px;}
.fs9_c00473{font-size:73.800000px;}
.fsc_c00473{font-size:74.400000px;}
.y0_c00473{bottom:0.000000px;}
.y23_c00473{bottom:64.815000px;}
.y22_c00473{bottom:155.161800px;}
.y20_c00473{bottom:186.112050px;}
.y21_c00473{bottom:186.120000px;}
.y1f_c00473{bottom:247.689900px;}
.y1e_c00473{bottom:279.000000px;}
.y1d_c00473{bottom:309.969900px;}
.y1c_c00473{bottom:371.166750px;}
.y1b_c00473{bottom:402.493500px;}
.y1a_c00473{bottom:463.690350px;}
.y18_c00473{bottom:494.279250px;}
.y19_c00473{bottom:494.280000px;}
.y17_c00473{bottom:525.255000px;}
.y15_c00473{bottom:556.192500px;}
.y16_c00473{bottom:556.200000px;}
.y14_c00473{bottom:618.503100px;}
.y12_c00473{bottom:649.092600px;}
.y13_c00473{bottom:649.095000px;}
.y11_c00473{bottom:711.360000px;}
.y10_c00473{bottom:741.975000px;}
.yf_c00473{bottom:741.976800px;}
.ye_c00473{bottom:772.932600px;}
.yd_c00473{bottom:835.198800px;}
.yc_c00473{bottom:865.455000px;}
.yb_c00473{bottom:895.695000px;}
.ya_c00473{bottom:895.698600px;}
.y9_c00473{bottom:957.622200px;}
.y7_c00473{bottom:987.850050px;}
.y8_c00473{bottom:987.855000px;}
.y6_c00473{bottom:1050.135000px;}
.y5_c00473{bottom:1076.775000px;}
.y4_c00473{bottom:1080.360000px;}
.y3_c00473{bottom:1080.366900px;}
.y2_c00473{bottom:1111.335000px;}
.y1_c00473{bottom:1189.080000px;}
.h8_c00473{height:6.713280px;}
.h7_c00473{height:18.254883px;}
.h9_c00473{height:35.669531px;}
.h6_c00473{height:36.443520px;}
.h16_c00473{height:57.120117px;}
.h2_c00473{height:58.654687px;}
.h5_c00473{height:59.449219px;}
.h4_c00473{height:67.097461px;}
.hc_c00473{height:67.719727px;}
.h11_c00473{height:68.865061px;}
.ha_c00473{height:68.868661px;}
.h3_c00473{height:68.897461px;}
.hd_c00473{height:68.902261px;}
.h15_c00473{height:68.917861px;}
.h12_c00473{height:68.927461px;}
.hf_c00473{height:69.461719px;}
.he_c00473{height:69.471319px;}
.h10_c00473{height:70.713281px;}
.hb_c00473{height:72.430664px;}
.h13_c00473{height:73.216406px;}
.h14_c00473{height:77.596875px;}
.h1_c00473{height:1263.000000px;}
.h0_c00473{height:1263.240000px;}
.w1_c00473{width:892.500000px;}
.w0_c00473{width:892.800000px;}
.x0_c00473{left:0.000000px;}
.x30_c00473{left:119.809500px;}
.x22_c00473{left:120.873300px;}
.x1d_c00473{left:122.205000px;}
.x14_c00473{left:123.660000px;}
.x2_c00473{left:125.565000px;}
.x1_c00473{left:126.990000px;}
.x32_c00473{left:145.020000px;}
.xd_c00473{left:191.115000px;}
.x3_c00473{left:206.850000px;}
.x17_c00473{left:216.255000px;}
.x31_c00473{left:225.915000px;}
.x4_c00473{left:238.335000px;}
.x2b_c00473{left:242.460000px;}
.x1a_c00473{left:267.300000px;}
.x23_c00473{left:287.400000px;}
.x15_c00473{left:297.255000px;}
.x24_c00473{left:315.825000px;}
.x16_c00473{left:319.110000px;}
.x1b_c00473{left:393.000000px;}
.xe_c00473{left:400.590000px;}
.x1c_c00473{left:415.050000px;}
.x33_c00473{left:423.555000px;}
.xf_c00473{left:431.895000px;}
.x1e_c00473{left:464.220000px;}
.x1f_c00473{left:491.085000px;}
.x5_c00473{left:544.170000px;}
.x2c_c00473{left:546.345000px;}
.x2d_c00473{left:563.535000px;}
.x18_c00473{left:570.090000px;}
.x6_c00473{left:575.415000px;}
.x25_c00473{left:586.965000px;}
.x20_c00473{left:595.665000px;}
.x19_c00473{left:600.615000px;}
.x10_c00473{left:608.715000px;}
.x26_c00473{left:612.675000px;}
.x21_c00473{left:614.700000px;}
.x7_c00473{left:625.950000px;}
.x29_c00473{left:627.435000px;}
.x11_c00473{left:634.335000px;}
.x12_c00473{left:639.990000px;}
.x2a_c00473{left:653.010000px;}
.x27_c00473{left:661.125000px;}
.x8_c00473{left:667.695000px;}
.x2e_c00473{left:672.645000px;}
.x28_c00473{left:687.255000px;}
.x2f_c00473{left:693.870000px;}
.x9_c00473{left:698.115000px;}
.xa_c00473{left:718.455000px;}
.xb_c00473{left:726.555000px;}
.x13_c00473{left:745.425000px;}
.xc_c00473{left:753.855000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls94_c00473{letter-spacing:-2.314667pt;}
.ls59_c00473{letter-spacing:-2.184000pt;}
.ls63_c00473{letter-spacing:-2.146667pt;}
.ls79_c00473{letter-spacing:-2.109333pt;}
.ls73_c00473{letter-spacing:-2.072000pt;}
.ls9a_c00473{letter-spacing:-1.919733pt;}
.ls50_c00473{letter-spacing:-1.773333pt;}
.ls5a_c00473{letter-spacing:-1.709760pt;}
.ls49_c00473{letter-spacing:-1.659840pt;}
.lsa0_c00473{letter-spacing:-1.410560pt;}
.ls64_c00473{letter-spacing:-1.410240pt;}
.ls85_c00473{letter-spacing:-1.397760pt;}
.ls7c_c00473{letter-spacing:-1.341600pt;}
.ls9f_c00473{letter-spacing:-1.272960pt;}
.ls83_c00473{letter-spacing:-1.079520pt;}
.ls74_c00473{letter-spacing:-1.076160pt;}
.ls9b_c00473{letter-spacing:-0.979680pt;}
.ls76_c00473{letter-spacing:-0.929760pt;}
.ls4a_c00473{letter-spacing:-0.879840pt;}
.ls6a_c00473{letter-spacing:-0.854880pt;}
.ls90_c00473{letter-spacing:-0.742560pt;}
.ls95_c00473{letter-spacing:-0.705120pt;}
.ls9d_c00473{letter-spacing:-0.642720pt;}
.ls8e_c00473{letter-spacing:-0.636480pt;}
.ls5c_c00473{letter-spacing:-0.624000pt;}
.ls98_c00473{letter-spacing:-0.614080pt;}
.ls7d_c00473{letter-spacing:-0.580320pt;}
.lsa2_c00473{letter-spacing:-0.561600pt;}
.ls8c_c00473{letter-spacing:-0.555360pt;}
.ls96_c00473{letter-spacing:-0.528960pt;}
.ls6c_c00473{letter-spacing:-0.505440pt;}
.ls8f_c00473{letter-spacing:-0.486720pt;}
.ls8b_c00473{letter-spacing:-0.455520pt;}
.ls6d_c00473{letter-spacing:-0.411840pt;}
.ls60_c00473{letter-spacing:-0.399360pt;}
.ls99_c00473{letter-spacing:-0.383040pt;}
.ls65_c00473{letter-spacing:-0.368160pt;}
.ls71_c00473{letter-spacing:-0.361920pt;}
.lsa1_c00473{letter-spacing:-0.330720pt;}
.ls91_c00473{letter-spacing:-0.312000pt;}
.ls80_c00473{letter-spacing:-0.287040pt;}
.ls69_c00473{letter-spacing:-0.280800pt;}
.ls6b_c00473{letter-spacing:-0.255840pt;}
.ls61_c00473{letter-spacing:-0.243360pt;}
.ls8d_c00473{letter-spacing:-0.230880pt;}
.ls57_c00473{letter-spacing:-0.212800pt;}
.ls9e_c00473{letter-spacing:-0.162240pt;}
.ls5b_c00473{letter-spacing:-0.137280pt;}
.ls89_c00473{letter-spacing:-0.131040pt;}
.ls87_c00473{letter-spacing:-0.124800pt;}
.ls88_c00473{letter-spacing:-0.118560pt;}
.ls7f_c00473{letter-spacing:-0.093600pt;}
.ls5f_c00473{letter-spacing:-0.074880pt;}
.ls6f_c00473{letter-spacing:-0.062400pt;}
.ls97_c00473{letter-spacing:-0.054720pt;}
.ls67_c00473{letter-spacing:-0.049920pt;}
.ls7e_c00473{letter-spacing:-0.043680pt;}
.ls75_c00473{letter-spacing:-0.036480pt;}
.ls84_c00473{letter-spacing:-0.031200pt;}
.ls53_c00473{letter-spacing:0.000000pt;}
.ls66_c00473{letter-spacing:0.012480pt;}
.ls81_c00473{letter-spacing:0.018720pt;}
.ls77_c00473{letter-spacing:0.024960pt;}
.ls16_c00473{letter-spacing:0.037440pt;}
.ls28_c00473{letter-spacing:0.056160pt;}
.ls19_c00473{letter-spacing:0.081120pt;}
.lse_c00473{letter-spacing:0.091200pt;}
.ls20_c00473{letter-spacing:0.093600pt;}
.ls1c_c00473{letter-spacing:0.124800pt;}
.ls1d_c00473{letter-spacing:0.131040pt;}
.ls86_c00473{letter-spacing:0.137280pt;}
.ls68_c00473{letter-spacing:0.143520pt;}
.ls33_c00473{letter-spacing:0.156000pt;}
.ls2e_c00473{letter-spacing:0.168480pt;}
.ls23_c00473{letter-spacing:0.174720pt;}
.ls1b_c00473{letter-spacing:0.180960pt;}
.ls37_c00473{letter-spacing:0.187200pt;}
.ls22_c00473{letter-spacing:0.199680pt;}
.ls54_c00473{letter-spacing:0.201707pt;}
.ls2c_c00473{letter-spacing:0.206720pt;}
.ls35_c00473{letter-spacing:0.212160pt;}
.ls26_c00473{letter-spacing:0.224640pt;}
.ls18_c00473{letter-spacing:0.262080pt;}
.ls93_c00473{letter-spacing:0.268320pt;}
.ls7a_c00473{letter-spacing:0.274560pt;}
.ls7_c00473{letter-spacing:0.285760pt;}
.ls31_c00473{letter-spacing:0.287040pt;}
.ls15_c00473{letter-spacing:0.305760pt;}
.ls29_c00473{letter-spacing:0.312000pt;}
.ls72_c00473{letter-spacing:0.316160pt;}
.ls62_c00473{letter-spacing:0.318240pt;}
.ls27_c00473{letter-spacing:0.340480pt;}
.ls45_c00473{letter-spacing:0.343200pt;}
.ls39_c00473{letter-spacing:0.355680pt;}
.ls2d_c00473{letter-spacing:0.361920pt;}
.ls34_c00473{letter-spacing:0.368160pt;}
.ls5e_c00473{letter-spacing:0.370880pt;}
.ls3a_c00473{letter-spacing:0.374400pt;}
.ls24_c00473{letter-spacing:0.393120pt;}
.ls1_c00473{letter-spacing:0.407360pt;}
.ls2a_c00473{letter-spacing:0.411840pt;}
.ls2_c00473{letter-spacing:0.443840pt;}
.ls21_c00473{letter-spacing:0.455520pt;}
.ls7b_c00473{letter-spacing:0.461760pt;}
.ls36_c00473{letter-spacing:0.492960pt;}
.ls43_c00473{letter-spacing:0.522880pt;}
.ls25_c00473{letter-spacing:0.549120pt;}
.lsa3_c00473{letter-spacing:0.553547pt;}
.ls0_c00473{letter-spacing:0.561600pt;}
.ls3e_c00473{letter-spacing:0.583680pt;}
.ls10_c00473{letter-spacing:0.608000pt;}
.ls6e_c00473{letter-spacing:0.611520pt;}
.ls47_c00473{letter-spacing:0.614080pt;}
.ls3_c00473{letter-spacing:0.626240pt;}
.ls30_c00473{letter-spacing:0.636480pt;}
.ls92_c00473{letter-spacing:0.644480pt;}
.ls78_c00473{letter-spacing:0.667680pt;}
.ls14_c00473{letter-spacing:0.668800pt;}
.ls2b_c00473{letter-spacing:0.674880pt;}
.ls44_c00473{letter-spacing:0.686400pt;}
.ls40_c00473{letter-spacing:0.687040pt;}
.ls1f_c00473{letter-spacing:0.692640pt;}
.ls58_c00473{letter-spacing:0.693120pt;}
.ls17_c00473{letter-spacing:0.698880pt;}
.ls4f_c00473{letter-spacing:0.723520pt;}
.ls41_c00473{letter-spacing:0.741760pt;}
.ls32_c00473{letter-spacing:0.761280pt;}
.ls3c_c00473{letter-spacing:0.804960pt;}
.ls4b_c00473{letter-spacing:0.808640pt;}
.ls55_c00473{letter-spacing:0.826667pt;}
.ls5_c00473{letter-spacing:0.832960pt;}
.ls5d_c00473{letter-spacing:0.887680pt;}
.ls8a_c00473{letter-spacing:0.924160pt;}
.ls1e_c00473{letter-spacing:0.960640pt;}
.ls4c_c00473{letter-spacing:0.966720pt;}
.lsb_c00473{letter-spacing:0.997120pt;}
.lsc_c00473{letter-spacing:1.009280pt;}
.ls12_c00473{letter-spacing:1.015360pt;}
.ls13_c00473{letter-spacing:1.045760pt;}
.lsa_c00473{letter-spacing:1.097867pt;}
.ls11_c00473{letter-spacing:1.100480pt;}
.ls3b_c00473{letter-spacing:1.241760pt;}
.ls6_c00473{letter-spacing:1.246400pt;}
.ls1a_c00473{letter-spacing:1.313280pt;}
.ls42_c00473{letter-spacing:1.337600pt;}
.ls9c_c00473{letter-spacing:1.472640pt;}
.lsf_c00473{letter-spacing:1.477440pt;}
.ls48_c00473{letter-spacing:1.484747pt;}
.ls38_c00473{letter-spacing:1.495680pt;}
.ls56_c00473{letter-spacing:1.520000pt;}
.ls4e_c00473{letter-spacing:1.550400pt;}
.ls4_c00473{letter-spacing:1.556480pt;}
.ls46_c00473{letter-spacing:1.609920pt;}
.ls2f_c00473{letter-spacing:1.747200pt;}
.lsd_c00473{letter-spacing:1.884800pt;}
.ls9_c00473{letter-spacing:1.933440pt;}
.ls3f_c00473{letter-spacing:1.963840pt;}
.ls82_c00473{letter-spacing:2.177760pt;}
.ls51_c00473{letter-spacing:2.204000pt;}
.ls3d_c00473{letter-spacing:2.389920pt;}
.ls52_c00473{letter-spacing:2.533333pt;}
.ls4d_c00473{letter-spacing:3.040000pt;}
.ls70_c00473{letter-spacing:3.120000pt;}
.ls8_c00473{letter-spacing:590.814400pt;}
.ws3_c00473{word-spacing:-1.371200pt;}
.ws5_c00473{word-spacing:-0.249600pt;}
.wsb_c00473{word-spacing:0.000000pt;}
.ws8_c00473{word-spacing:0.748800pt;}
.wsa_c00473{word-spacing:3.226080pt;}
.ws7_c00473{word-spacing:3.513120pt;}
.ws2_c00473{word-spacing:15.954667pt;}
.ws9_c00473{word-spacing:17.178720pt;}
.ws1_c00473{word-spacing:23.642667pt;}
.ws6_c00473{word-spacing:23.980320pt;}
.ws0_c00473{word-spacing:26.657547pt;}
.ws4_c00473{word-spacing:27.162720pt;}
._1b_c00473{margin-left:-15.084960pt;}
._14_c00473{margin-left:-10.130667pt;}
._a_c00473{margin-left:-3.283200pt;}
._d_c00473{margin-left:-2.286080pt;}
._e_c00473{margin-left:-1.365973pt;}
._f_c00473{width:1.196480pt;}
._6_c00473{width:2.314667pt;}
._c_c00473{width:3.650133pt;}
._13_c00473{width:5.190613pt;}
._b_c00473{width:7.113600pt;}
._1c_c00473{width:9.935893pt;}
._10_c00473{width:11.543467pt;}
._1a_c00473{width:13.489867pt;}
._18_c00473{width:14.462507pt;}
._15_c00473{width:16.020800pt;}
._19_c00473{width:17.431200pt;}
._8_c00473{width:18.865600pt;}
._5_c00473{width:20.672000pt;}
._1d_c00473{width:22.147787pt;}
._16_c00473{width:23.449920pt;}
._17_c00473{width:24.480640pt;}
._0_c00473{width:27.019200pt;}
._9_c00473{width:28.272000pt;}
._4_c00473{width:29.275200pt;}
._3_c00473{width:32.211840pt;}
._12_c00473{width:33.246720pt;}
._11_c00473{width:34.730347pt;}
._1_c00473{width:37.489920pt;}
._2_c00473{width:39.118720pt;}
._7_c00473{width:40.909333pt;}
.fs6_c00473{font-size:8.960000pt;}
.fs5_c00473{font-size:16.533333pt;}
.fs7_c00473{font-size:30.400000pt;}
.fs4_c00473{font-size:48.640000pt;}
.fs3_c00473{font-size:50.666667pt;}
.fs0_c00473{font-size:51.733333pt;}
.fsa_c00473{font-size:59.200000pt;}
.fsb_c00473{font-size:60.266667pt;}
.fs2_c00473{font-size:60.800000pt;}
.fs8_c00473{font-size:61.333333pt;}
.fs1_c00473{font-size:62.400000pt;}
.fs9_c00473{font-size:65.600000pt;}
.fsc_c00473{font-size:66.133333pt;}
.y0_c00473{bottom:0.000000pt;}
.y23_c00473{bottom:57.613333pt;}
.y22_c00473{bottom:137.921600pt;}
.y20_c00473{bottom:165.432933pt;}
.y21_c00473{bottom:165.440000pt;}
.y1f_c00473{bottom:220.168800pt;}
.y1e_c00473{bottom:248.000000pt;}
.y1d_c00473{bottom:275.528800pt;}
.y1c_c00473{bottom:329.926000pt;}
.y1b_c00473{bottom:357.772000pt;}
.y1a_c00473{bottom:412.169200pt;}
.y18_c00473{bottom:439.359333pt;}
.y19_c00473{bottom:439.360000pt;}
.y17_c00473{bottom:466.893333pt;}
.y15_c00473{bottom:494.393333pt;}
.y16_c00473{bottom:494.400000pt;}
.y14_c00473{bottom:549.780533pt;}
.y12_c00473{bottom:576.971200pt;}
.y13_c00473{bottom:576.973333pt;}
.y11_c00473{bottom:632.320000pt;}
.y10_c00473{bottom:659.533333pt;}
.yf_c00473{bottom:659.534933pt;}
.ye_c00473{bottom:687.051200pt;}
.yd_c00473{bottom:742.398933pt;}
.yc_c00473{bottom:769.293333pt;}
.yb_c00473{bottom:796.173333pt;}
.ya_c00473{bottom:796.176533pt;}
.y9_c00473{bottom:851.219733pt;}
.y7_c00473{bottom:878.088933pt;}
.y8_c00473{bottom:878.093333pt;}
.y6_c00473{bottom:933.453333pt;}
.y5_c00473{bottom:957.133333pt;}
.y4_c00473{bottom:960.320000pt;}
.y3_c00473{bottom:960.326133pt;}
.y2_c00473{bottom:987.853333pt;}
.y1_c00473{bottom:1056.960000pt;}
.h8_c00473{height:5.967360pt;}
.h7_c00473{height:16.226562pt;}
.h9_c00473{height:31.706250pt;}
.h6_c00473{height:32.394240pt;}
.h16_c00473{height:50.773437pt;}
.h2_c00473{height:52.137500pt;}
.h5_c00473{height:52.843750pt;}
.h4_c00473{height:59.642187pt;}
.hc_c00473{height:60.195312pt;}
.h11_c00473{height:61.213388pt;}
.ha_c00473{height:61.216587pt;}
.h3_c00473{height:61.242187pt;}
.hd_c00473{height:61.246454pt;}
.h15_c00473{height:61.260321pt;}
.h12_c00473{height:61.268854pt;}
.hf_c00473{height:61.743750pt;}
.he_c00473{height:61.752283pt;}
.h10_c00473{height:62.856250pt;}
.hb_c00473{height:64.382813pt;}
.h13_c00473{height:65.081250pt;}
.h14_c00473{height:68.975000pt;}
.h1_c00473{height:1122.666667pt;}
.h0_c00473{height:1122.880000pt;}
.w1_c00473{width:793.333333pt;}
.w0_c00473{width:793.600000pt;}
.x0_c00473{left:0.000000pt;}
.x30_c00473{left:106.497333pt;}
.x22_c00473{left:107.442933pt;}
.x1d_c00473{left:108.626667pt;}
.x14_c00473{left:109.920000pt;}
.x2_c00473{left:111.613333pt;}
.x1_c00473{left:112.880000pt;}
.x32_c00473{left:128.906667pt;}
.xd_c00473{left:169.880000pt;}
.x3_c00473{left:183.866667pt;}
.x17_c00473{left:192.226667pt;}
.x31_c00473{left:200.813333pt;}
.x4_c00473{left:211.853333pt;}
.x2b_c00473{left:215.520000pt;}
.x1a_c00473{left:237.600000pt;}
.x23_c00473{left:255.466667pt;}
.x15_c00473{left:264.226667pt;}
.x24_c00473{left:280.733333pt;}
.x16_c00473{left:283.653333pt;}
.x1b_c00473{left:349.333333pt;}
.xe_c00473{left:356.080000pt;}
.x1c_c00473{left:368.933333pt;}
.x33_c00473{left:376.493333pt;}
.xf_c00473{left:383.906667pt;}
.x1e_c00473{left:412.640000pt;}
.x1f_c00473{left:436.520000pt;}
.x5_c00473{left:483.706667pt;}
.x2c_c00473{left:485.640000pt;}
.x2d_c00473{left:500.920000pt;}
.x18_c00473{left:506.746667pt;}
.x6_c00473{left:511.480000pt;}
.x25_c00473{left:521.746667pt;}
.x20_c00473{left:529.480000pt;}
.x19_c00473{left:533.880000pt;}
.x10_c00473{left:541.080000pt;}
.x26_c00473{left:544.600000pt;}
.x21_c00473{left:546.400000pt;}
.x7_c00473{left:556.400000pt;}
.x29_c00473{left:557.720000pt;}
.x11_c00473{left:563.853333pt;}
.x12_c00473{left:568.880000pt;}
.x2a_c00473{left:580.453333pt;}
.x27_c00473{left:587.666667pt;}
.x8_c00473{left:593.506667pt;}
.x2e_c00473{left:597.906667pt;}
.x28_c00473{left:610.893333pt;}
.x2f_c00473{left:616.773333pt;}
.x9_c00473{left:620.546667pt;}
.xa_c00473{left:638.626667pt;}
.xb_c00473{left:645.826667pt;}
.x13_c00473{left:662.600000pt;}
.xc_c00473{left:670.093333pt;}
}





/* 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_c00474 {
    display:none;
  }
  .loading-indicator_c00474.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00474 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_c00474 { 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_c00474" -> "#page-container .classname_c00474")
 */
.pf_c00474 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00474 { /* 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_c00474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00474 { /* 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_c00474 { /* 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_c00474 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00474 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00474 {overflow:visible;}
  }
}
.c_c00474 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00474 { /* 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_c00474:after { /* webkit #35443 */
  content: '';
}
.t_c00474:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00474 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 */
}
.__c00474 { /* 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_c00474 { /* info for Javascript */
  display:none;
}
.l_c00474 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00474 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00474 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00474: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_c00474 {
    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_c00474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00474.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_c00474 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00474{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00474;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.311035;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_c00474;src:url('chunks/assets/font_d2efcef8b486a27b7cd7688f.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.284668;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_c00474;src:url('chunks/assets/font_1e70da5e4f4930cc0ccfd8c7.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.284180;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_c00474;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff4_c00474{font-family:ff4_c00474;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:ff5_c00474;src:url('chunks/assets/font_1f404fec05064e002f0ef51e.woff2')format("woff");}.ff5_c00474{font-family:ff5_c00474;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;}
.m8_c00474{transform:matrix(0.238703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238703,0.000000,0.000000,0.250000,0,0);}
.md_c00474{transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);}
.mb_c00474{transform:matrix(0.243060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243060,0.000000,0.000000,0.250000,0,0);}
.m5_c00474{transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);}
.m4_c00474{transform:matrix(0.245959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245959,0.000000,0.000000,0.250000,0,0);}
.m7_c00474{transform:matrix(0.246395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246395,0.000000,0.000000,0.250000,0,0);}
.mc_c00474{transform:matrix(0.247231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247231,0.000000,0.000000,0.250000,0,0);}
.m9_c00474{transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);}
.m6_c00474{transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);}
.mf_c00474{transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);}
.m0_c00474{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);}
.m3_c00474{transform:matrix(0.263838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263838,0.000000,0.000000,0.250000,0,0);}
.m1_c00474{transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);}
.m2_c00474{transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);}
.ma_c00474{transform:matrix(0.294737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294737,0.000000,0.000000,0.250000,0,0);}
.me_c00474{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls40_c00474{letter-spacing:-2.436000px;}
.ls51_c00474{letter-spacing:-2.415120px;}
.ls4b_c00474{letter-spacing:-2.394000px;}
.ls70_c00474{letter-spacing:-2.220240px;}
.ls32_c00474{letter-spacing:-2.167200px;}
.ls6e_c00474{letter-spacing:-2.018400px;}
.ls7a_c00474{letter-spacing:-1.956240px;}
.ls62_c00474{letter-spacing:-1.908360px;}
.ls7d_c00474{letter-spacing:-1.802640px;}
.ls44_c00474{letter-spacing:-1.649520px;}
.ls50_c00474{letter-spacing:-1.600800px;}
.ls65_c00474{letter-spacing:-1.552080px;}
.ls60_c00474{letter-spacing:-1.531200px;}
.ls69_c00474{letter-spacing:-1.468560px;}
.ls7e_c00474{letter-spacing:-1.460160px;}
.ls8c_c00474{letter-spacing:-1.357200px;}
.ls7c_c00474{letter-spacing:-1.301520px;}
.ls7b_c00474{letter-spacing:-1.292760px;}
.ls72_c00474{letter-spacing:-1.211040px;}
.ls35_c00474{letter-spacing:-1.113600px;}
.ls43_c00474{letter-spacing:-1.099680px;}
.ls6c_c00474{letter-spacing:-1.064880px;}
.ls5a_c00474{letter-spacing:-1.044000px;}
.ls5c_c00474{letter-spacing:-0.988320px;}
.ls42_c00474{letter-spacing:-0.974400px;}
.ls7f_c00474{letter-spacing:-0.911760px;}
.ls45_c00474{letter-spacing:-0.897840px;}
.ls34_c00474{letter-spacing:-0.870000px;}
.ls86_c00474{letter-spacing:-0.863040px;}
.ls6a_c00474{letter-spacing:-0.856080px;}
.ls83_c00474{letter-spacing:-0.855000px;}
.ls41_c00474{letter-spacing:-0.765600px;}
.ls63_c00474{letter-spacing:-0.744720px;}
.ls33_c00474{letter-spacing:-0.689040px;}
.ls8a_c00474{letter-spacing:-0.663480px;}
.ls6d_c00474{letter-spacing:-0.656640px;}
.ls5b_c00474{letter-spacing:-0.647280px;}
.ls89_c00474{letter-spacing:-0.633360px;}
.ls39_c00474{letter-spacing:-0.612480px;}
.ls56_c00474{letter-spacing:-0.563760px;}
.ls74_c00474{letter-spacing:-0.556800px;}
.ls61_c00474{letter-spacing:-0.515040px;}
.ls84_c00474{letter-spacing:-0.506160px;}
.ls88_c00474{letter-spacing:-0.501120px;}
.ls3c_c00474{letter-spacing:-0.480240px;}
.ls82_c00474{letter-spacing:-0.459360px;}
.ls57_c00474{letter-spacing:-0.452400px;}
.ls4c_c00474{letter-spacing:-0.424080px;}
.ls4d_c00474{letter-spacing:-0.410640px;}
.ls3a_c00474{letter-spacing:-0.403680px;}
.ls49_c00474{letter-spacing:-0.382800px;}
.ls4f_c00474{letter-spacing:-0.361920px;}
.ls87_c00474{letter-spacing:-0.334080px;}
.ls4e_c00474{letter-spacing:-0.320160px;}
.ls78_c00474{letter-spacing:-0.300960px;}
.ls75_c00474{letter-spacing:-0.299280px;}
.ls6f_c00474{letter-spacing:-0.292320px;}
.ls77_c00474{letter-spacing:-0.278400px;}
.ls3e_c00474{letter-spacing:-0.257520px;}
.ls52_c00474{letter-spacing:-0.250560px;}
.ls80_c00474{letter-spacing:-0.222720px;}
.ls71_c00474{letter-spacing:-0.215760px;}
.ls6b_c00474{letter-spacing:-0.208800px;}
.ls68_c00474{letter-spacing:-0.187920px;}
.ls4a_c00474{letter-spacing:-0.180960px;}
.ls54_c00474{letter-spacing:-0.167040px;}
.ls66_c00474{letter-spacing:-0.160080px;}
.ls48_c00474{letter-spacing:-0.153120px;}
.ls73_c00474{letter-spacing:-0.146160px;}
.ls3d_c00474{letter-spacing:-0.125280px;}
.ls58_c00474{letter-spacing:-0.123120px;}
.ls46_c00474{letter-spacing:-0.090480px;}
.ls67_c00474{letter-spacing:-0.076560px;}
.ls53_c00474{letter-spacing:-0.062640px;}
.ls5d_c00474{letter-spacing:-0.055680px;}
.ls59_c00474{letter-spacing:-0.041040px;}
.ls5e_c00474{letter-spacing:-0.034800px;}
.ls81_c00474{letter-spacing:-0.027840px;}
.ls47_c00474{letter-spacing:-0.006960px;}
.ls38_c00474{letter-spacing:0.000000px;}
.lsd_c00474{letter-spacing:0.006960px;}
.ls22_c00474{letter-spacing:0.013920px;}
.ls1f_c00474{letter-spacing:0.020880px;}
.ls2_c00474{letter-spacing:0.034800px;}
.lse_c00474{letter-spacing:0.048720px;}
.ls11_c00474{letter-spacing:0.055680px;}
.ls4_c00474{letter-spacing:0.062640px;}
.ls8d_c00474{letter-spacing:0.062700px;}
.ls85_c00474{letter-spacing:0.069600px;}
.ls27_c00474{letter-spacing:0.090480px;}
.ls18_c00474{letter-spacing:0.097440px;}
.ls3_c00474{letter-spacing:0.104400px;}
.ls5f_c00474{letter-spacing:0.118320px;}
.ls21_c00474{letter-spacing:0.132240px;}
.ls15_c00474{letter-spacing:0.167040px;}
.ls19_c00474{letter-spacing:0.174000px;}
.ls6_c00474{letter-spacing:0.180960px;}
.ls1_c00474{letter-spacing:0.236640px;}
.ls26_c00474{letter-spacing:0.243600px;}
.ls2e_c00474{letter-spacing:0.244800px;}
.ls36_c00474{letter-spacing:0.250560px;}
.ls14_c00474{letter-spacing:0.278400px;}
.ls2a_c00474{letter-spacing:0.285360px;}
.ls8_c00474{letter-spacing:0.313200px;}
.ls8b_c00474{letter-spacing:0.321480px;}
.ls16_c00474{letter-spacing:0.327120px;}
.ls1d_c00474{letter-spacing:0.334080px;}
.lsb_c00474{letter-spacing:0.341040px;}
.ls3b_c00474{letter-spacing:0.375840px;}
.ls7_c00474{letter-spacing:0.396720px;}
.ls12_c00474{letter-spacing:0.424560px;}
.ls1e_c00474{letter-spacing:0.437760px;}
.ls13_c00474{letter-spacing:0.466320px;}
.ls2f_c00474{letter-spacing:0.508080px;}
.lsf_c00474{letter-spacing:0.542880px;}
.lsc_c00474{letter-spacing:0.591600px;}
.ls55_c00474{letter-spacing:0.619440px;}
.ls25_c00474{letter-spacing:0.626400px;}
.ls64_c00474{letter-spacing:0.640320px;}
.ls3f_c00474{letter-spacing:0.649800px;}
.ls20_c00474{letter-spacing:0.702960px;}
.ls29_c00474{letter-spacing:0.709920px;}
.ls76_c00474{letter-spacing:0.723840px;}
.ls2d_c00474{letter-spacing:0.744720px;}
.ls0_c00474{letter-spacing:0.765600px;}
.ls1a_c00474{letter-spacing:0.772560px;}
.ls28_c00474{letter-spacing:0.848160px;}
.ls9_c00474{letter-spacing:0.855000px;}
.ls1c_c00474{letter-spacing:0.856080px;}
.ls2c_c00474{letter-spacing:0.861840px;}
.lsa_c00474{letter-spacing:0.902880px;}
.ls79_c00474{letter-spacing:0.964440px;}
.ls30_c00474{letter-spacing:0.995280px;}
.ls10_c00474{letter-spacing:1.002240px;}
.ls17_c00474{letter-spacing:1.057920px;}
.ls5_c00474{letter-spacing:1.231920px;}
.ls1b_c00474{letter-spacing:1.503360px;}
.ls23_c00474{letter-spacing:1.649520px;}
.ls31_c00474{letter-spacing:1.670340px;}
.ls24_c00474{letter-spacing:1.733040px;}
.ls2b_c00474{letter-spacing:2.874480px;}
.ls37_c00474{letter-spacing:3.480000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{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__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00474{word-spacing:0.000000px;}
.ws3_c00474{word-spacing:1.900080px;}
.ws7_c00474{word-spacing:2.706480px;}
.ws2_c00474{word-spacing:3.410400px;}
.ws5_c00474{word-spacing:5.588880px;}
.ws6_c00474{word-spacing:8.164080px;}
.ws0_c00474{word-spacing:24.311280px;}
.ws4_c00474{word-spacing:27.498960px;}
.ws1_c00474{word-spacing:45.838560px;}
._1e_c00474{margin-left:-16.599120px;}
._1d_c00474{margin-left:-5.508000px;}
._15_c00474{margin-left:-4.099440px;}
._11_c00474{margin-left:-2.310720px;}
._f_c00474{margin-left:-1.099680px;}
._10_c00474{width:1.350240px;}
._12_c00474{width:2.763120px;}
._d_c00474{width:4.656240px;}
._b_c00474{width:6.069120px;}
._c_c00474{width:7.106160px;}
._e_c00474{width:8.219760px;}
._13_c00474{width:10.158960px;}
._1b_c00474{width:11.406480px;}
._17_c00474{width:12.464760px;}
._1a_c00474{width:13.636200px;}
._1c_c00474{width:15.169920px;}
._16_c00474{width:16.481760px;}
._14_c00474{width:19.961280px;}
._18_c00474{width:21.339360px;}
._2_c00474{width:23.552640px;}
._4_c00474{width:25.062480px;}
._0_c00474{width:26.253600px;}
._3_c00474{width:27.268800px;}
._19_c00474{width:31.696800px;}
._1_c00474{width:35.808000px;}
._a_c00474{width:37.116000px;}
._9_c00474{width:38.851200px;}
._8_c00474{width:40.507200px;}
._5_c00474{width:42.414240px;}
._6_c00474{width:45.273600px;}
._7_c00474{width:50.072160px;}
.fc0_c00474{color:transparent;}
.fs9_c00474{font-size:57.000000px;}
.fs0_c00474{font-size:58.200000px;}
.fsb_c00474{font-size:66.000000px;}
.fs6_c00474{font-size:66.600000px;}
.fs5_c00474{font-size:67.200000px;}
.fs4_c00474{font-size:68.400000px;}
.fs1_c00474{font-size:69.600000px;}
.fs8_c00474{font-size:70.200000px;}
.fs7_c00474{font-size:70.800000px;}
.fs2_c00474{font-size:72.000000px;}
.fs3_c00474{font-size:73.800000px;}
.fsa_c00474{font-size:76.800000px;}
.y0_c00474{bottom:0.000000px;}
.y22_c00474{bottom:64.095015px;}
.y20_c00474{bottom:155.876415px;}
.y21_c00474{bottom:155.880015px;}
.y1f_c00474{bottom:186.135015px;}
.y1e_c00474{bottom:248.775015px;}
.y1d_c00474{bottom:279.000015px;}
.y1c_c00474{bottom:279.008415px;}
.y1b_c00474{bottom:309.615015px;}
.y1a_c00474{bottom:371.175015px;}
.y19_c00474{bottom:401.400015px;}
.y18_c00474{bottom:401.403015px;}
.y17_c00474{bottom:432.375015px;}
.y16_c00474{bottom:494.295015px;}
.y15_c00474{bottom:524.888415px;}
.y14_c00474{bottom:555.495015px;}
.y24_c00474{bottom:615.255015px;}
.y13_c00474{bottom:617.768415px;}
.y23_c00474{bottom:618.840015px;}
.y11_c00474{bottom:648.368415px;}
.y12_c00474{bottom:648.375015px;}
.y10_c00474{bottom:710.288415px;}
.ye_c00474{bottom:740.890815px;}
.yf_c00474{bottom:740.895015px;}
.yd_c00474{bottom:771.480015px;}
.yc_c00474{bottom:771.481815px;}
.yb_c00474{bottom:832.695015px;}
.ya_c00474{bottom:863.640015px;}
.y9_c00474{bottom:894.255015px;}
.y8_c00474{bottom:894.261615px;}
.y7_c00474{bottom:955.440015px;}
.y6_c00474{bottom:955.445415px;}
.y5_c00474{bottom:986.400015px;}
.y4_c00474{bottom:986.408415px;}
.y3_c00474{bottom:1017.015015px;}
.y2_c00474{bottom:1109.895015px;}
.y1_c00474{bottom:1184.760015px;}
.hd_c00474{height:55.942383px;}
.h2_c00474{height:58.654687px;}
.h6_c00474{height:67.097461px;}
.h4_c00474{height:68.308594px;}
.h8_c00474{height:68.334994px;}
.hf_c00474{height:68.835938px;}
.h9_c00474{height:69.461719px;}
.hc_c00474{height:70.101900px;}
.h7_c00474{height:70.113900px;}
.h3_c00474{height:70.664062px;}
.h5_c00474{height:72.430664px;}
.hb_c00474{height:73.216406px;}
.ha_c00474{height:73.842188px;}
.he_c00474{height:80.100000px;}
.h1_c00474{height:1263.000000px;}
.h0_c00474{height:1263.240015px;}
.w1_c00474{width:892.500000px;}
.w0_c00474{width:892.800000px;}
.x0_c00474{left:0.000000px;}
.x26_c00474{left:125.205000px;}
.x1c_c00474{left:126.285000px;}
.x1_c00474{left:127.350000px;}
.x1f_c00474{left:194.220000px;}
.x20_c00474{left:215.970000px;}
.x18_c00474{left:224.550000px;}
.x3_c00474{left:230.940000px;}
.x19_c00474{left:246.195000px;}
.x4_c00474{left:259.155000px;}
.x9_c00474{left:298.845000px;}
.xd_c00474{left:303.525000px;}
.xa_c00474{left:319.080000px;}
.x7_c00474{left:324.840000px;}
.xe_c00474{left:328.470000px;}
.x27_c00474{left:330.300000px;}
.x23_c00474{left:342.540000px;}
.x8_c00474{left:351.480000px;}
.x24_c00474{left:363.555000px;}
.x1a_c00474{left:377.565000px;}
.xf_c00474{left:382.500000px;}
.x14_c00474{left:394.380000px;}
.x1b_c00474{left:405.480000px;}
.x15_c00474{left:416.850000px;}
.x29_c00474{left:425.715000px;}
.x25_c00474{left:434.700000px;}
.x12_c00474{left:435.780000px;}
.x5_c00474{left:440.820000px;}
.x13_c00474{left:454.500000px;}
.x10_c00474{left:459.900000px;}
.x6_c00474{left:468.735000px;}
.x11_c00474{left:484.170000px;}
.x16_c00474{left:501.660000px;}
.x28_c00474{left:521.790000px;}
.x17_c00474{left:536.880000px;}
.x1d_c00474{left:553.500000px;}
.x1e_c00474{left:574.035000px;}
.x21_c00474{left:639.990000px;}
.x22_c00474{left:662.160000px;}
.xc_c00474{left:725.925000px;}
.x2_c00474{left:739.260000px;}
.xb_c00474{left:740.700000px;}
.x2b_c00474{left:855.495000px;}
.x2a_c00474{left:856.545000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls40_c00474{letter-spacing:-2.165333pt;}
.ls51_c00474{letter-spacing:-2.146773pt;}
.ls4b_c00474{letter-spacing:-2.128000pt;}
.ls70_c00474{letter-spacing:-1.973547pt;}
.ls32_c00474{letter-spacing:-1.926400pt;}
.ls6e_c00474{letter-spacing:-1.794133pt;}
.ls7a_c00474{letter-spacing:-1.738880pt;}
.ls62_c00474{letter-spacing:-1.696320pt;}
.ls7d_c00474{letter-spacing:-1.602347pt;}
.ls44_c00474{letter-spacing:-1.466240pt;}
.ls50_c00474{letter-spacing:-1.422933pt;}
.ls65_c00474{letter-spacing:-1.379627pt;}
.ls60_c00474{letter-spacing:-1.361067pt;}
.ls69_c00474{letter-spacing:-1.305387pt;}
.ls7e_c00474{letter-spacing:-1.297920pt;}
.ls8c_c00474{letter-spacing:-1.206400pt;}
.ls7c_c00474{letter-spacing:-1.156907pt;}
.ls7b_c00474{letter-spacing:-1.149120pt;}
.ls72_c00474{letter-spacing:-1.076480pt;}
.ls35_c00474{letter-spacing:-0.989867pt;}
.ls43_c00474{letter-spacing:-0.977493pt;}
.ls6c_c00474{letter-spacing:-0.946560pt;}
.ls5a_c00474{letter-spacing:-0.928000pt;}
.ls5c_c00474{letter-spacing:-0.878507pt;}
.ls42_c00474{letter-spacing:-0.866133pt;}
.ls7f_c00474{letter-spacing:-0.810453pt;}
.ls45_c00474{letter-spacing:-0.798080pt;}
.ls34_c00474{letter-spacing:-0.773333pt;}
.ls86_c00474{letter-spacing:-0.767147pt;}
.ls6a_c00474{letter-spacing:-0.760960pt;}
.ls83_c00474{letter-spacing:-0.760000pt;}
.ls41_c00474{letter-spacing:-0.680533pt;}
.ls63_c00474{letter-spacing:-0.661973pt;}
.ls33_c00474{letter-spacing:-0.612480pt;}
.ls8a_c00474{letter-spacing:-0.589760pt;}
.ls6d_c00474{letter-spacing:-0.583680pt;}
.ls5b_c00474{letter-spacing:-0.575360pt;}
.ls89_c00474{letter-spacing:-0.562987pt;}
.ls39_c00474{letter-spacing:-0.544427pt;}
.ls56_c00474{letter-spacing:-0.501120pt;}
.ls74_c00474{letter-spacing:-0.494933pt;}
.ls61_c00474{letter-spacing:-0.457813pt;}
.ls84_c00474{letter-spacing:-0.449920pt;}
.ls88_c00474{letter-spacing:-0.445440pt;}
.ls3c_c00474{letter-spacing:-0.426880pt;}
.ls82_c00474{letter-spacing:-0.408320pt;}
.ls57_c00474{letter-spacing:-0.402133pt;}
.ls4c_c00474{letter-spacing:-0.376960pt;}
.ls4d_c00474{letter-spacing:-0.365013pt;}
.ls3a_c00474{letter-spacing:-0.358827pt;}
.ls49_c00474{letter-spacing:-0.340267pt;}
.ls4f_c00474{letter-spacing:-0.321707pt;}
.ls87_c00474{letter-spacing:-0.296960pt;}
.ls4e_c00474{letter-spacing:-0.284587pt;}
.ls78_c00474{letter-spacing:-0.267520pt;}
.ls75_c00474{letter-spacing:-0.266027pt;}
.ls6f_c00474{letter-spacing:-0.259840pt;}
.ls77_c00474{letter-spacing:-0.247467pt;}
.ls3e_c00474{letter-spacing:-0.228907pt;}
.ls52_c00474{letter-spacing:-0.222720pt;}
.ls80_c00474{letter-spacing:-0.197973pt;}
.ls71_c00474{letter-spacing:-0.191787pt;}
.ls6b_c00474{letter-spacing:-0.185600pt;}
.ls68_c00474{letter-spacing:-0.167040pt;}
.ls4a_c00474{letter-spacing:-0.160853pt;}
.ls54_c00474{letter-spacing:-0.148480pt;}
.ls66_c00474{letter-spacing:-0.142293pt;}
.ls48_c00474{letter-spacing:-0.136107pt;}
.ls73_c00474{letter-spacing:-0.129920pt;}
.ls3d_c00474{letter-spacing:-0.111360pt;}
.ls58_c00474{letter-spacing:-0.109440pt;}
.ls46_c00474{letter-spacing:-0.080427pt;}
.ls67_c00474{letter-spacing:-0.068053pt;}
.ls53_c00474{letter-spacing:-0.055680pt;}
.ls5d_c00474{letter-spacing:-0.049493pt;}
.ls59_c00474{letter-spacing:-0.036480pt;}
.ls5e_c00474{letter-spacing:-0.030933pt;}
.ls81_c00474{letter-spacing:-0.024747pt;}
.ls47_c00474{letter-spacing:-0.006187pt;}
.ls38_c00474{letter-spacing:0.000000pt;}
.lsd_c00474{letter-spacing:0.006187pt;}
.ls22_c00474{letter-spacing:0.012373pt;}
.ls1f_c00474{letter-spacing:0.018560pt;}
.ls2_c00474{letter-spacing:0.030933pt;}
.lse_c00474{letter-spacing:0.043307pt;}
.ls11_c00474{letter-spacing:0.049493pt;}
.ls4_c00474{letter-spacing:0.055680pt;}
.ls8d_c00474{letter-spacing:0.055733pt;}
.ls85_c00474{letter-spacing:0.061867pt;}
.ls27_c00474{letter-spacing:0.080427pt;}
.ls18_c00474{letter-spacing:0.086613pt;}
.ls3_c00474{letter-spacing:0.092800pt;}
.ls5f_c00474{letter-spacing:0.105173pt;}
.ls21_c00474{letter-spacing:0.117547pt;}
.ls15_c00474{letter-spacing:0.148480pt;}
.ls19_c00474{letter-spacing:0.154667pt;}
.ls6_c00474{letter-spacing:0.160853pt;}
.ls1_c00474{letter-spacing:0.210347pt;}
.ls26_c00474{letter-spacing:0.216533pt;}
.ls2e_c00474{letter-spacing:0.217600pt;}
.ls36_c00474{letter-spacing:0.222720pt;}
.ls14_c00474{letter-spacing:0.247467pt;}
.ls2a_c00474{letter-spacing:0.253653pt;}
.ls8_c00474{letter-spacing:0.278400pt;}
.ls8b_c00474{letter-spacing:0.285760pt;}
.ls16_c00474{letter-spacing:0.290773pt;}
.ls1d_c00474{letter-spacing:0.296960pt;}
.lsb_c00474{letter-spacing:0.303147pt;}
.ls3b_c00474{letter-spacing:0.334080pt;}
.ls7_c00474{letter-spacing:0.352640pt;}
.ls12_c00474{letter-spacing:0.377387pt;}
.ls1e_c00474{letter-spacing:0.389120pt;}
.ls13_c00474{letter-spacing:0.414507pt;}
.ls2f_c00474{letter-spacing:0.451627pt;}
.lsf_c00474{letter-spacing:0.482560pt;}
.lsc_c00474{letter-spacing:0.525867pt;}
.ls55_c00474{letter-spacing:0.550613pt;}
.ls25_c00474{letter-spacing:0.556800pt;}
.ls64_c00474{letter-spacing:0.569173pt;}
.ls3f_c00474{letter-spacing:0.577600pt;}
.ls20_c00474{letter-spacing:0.624853pt;}
.ls29_c00474{letter-spacing:0.631040pt;}
.ls76_c00474{letter-spacing:0.643413pt;}
.ls2d_c00474{letter-spacing:0.661973pt;}
.ls0_c00474{letter-spacing:0.680533pt;}
.ls1a_c00474{letter-spacing:0.686720pt;}
.ls28_c00474{letter-spacing:0.753920pt;}
.ls9_c00474{letter-spacing:0.760000pt;}
.ls1c_c00474{letter-spacing:0.760960pt;}
.ls2c_c00474{letter-spacing:0.766080pt;}
.lsa_c00474{letter-spacing:0.802560pt;}
.ls79_c00474{letter-spacing:0.857280pt;}
.ls30_c00474{letter-spacing:0.884693pt;}
.ls10_c00474{letter-spacing:0.890880pt;}
.ls17_c00474{letter-spacing:0.940373pt;}
.ls5_c00474{letter-spacing:1.095040pt;}
.ls1b_c00474{letter-spacing:1.336320pt;}
.ls23_c00474{letter-spacing:1.466240pt;}
.ls31_c00474{letter-spacing:1.484747pt;}
.ls24_c00474{letter-spacing:1.540480pt;}
.ls2b_c00474{letter-spacing:2.555093pt;}
.ls37_c00474{letter-spacing:3.093333pt;}
.ws8_c00474{word-spacing:0.000000pt;}
.ws3_c00474{word-spacing:1.688960pt;}
.ws7_c00474{word-spacing:2.405760pt;}
.ws2_c00474{word-spacing:3.031467pt;}
.ws5_c00474{word-spacing:4.967893pt;}
.ws6_c00474{word-spacing:7.256960pt;}
.ws0_c00474{word-spacing:21.610027pt;}
.ws4_c00474{word-spacing:24.443520pt;}
.ws1_c00474{word-spacing:40.745387pt;}
._1e_c00474{margin-left:-14.754773pt;}
._1d_c00474{margin-left:-4.896000pt;}
._15_c00474{margin-left:-3.643947pt;}
._11_c00474{margin-left:-2.053973pt;}
._f_c00474{margin-left:-0.977493pt;}
._10_c00474{width:1.200213pt;}
._12_c00474{width:2.456107pt;}
._d_c00474{width:4.138880pt;}
._b_c00474{width:5.394773pt;}
._c_c00474{width:6.316587pt;}
._e_c00474{width:7.306453pt;}
._13_c00474{width:9.030187pt;}
._1b_c00474{width:10.139093pt;}
._17_c00474{width:11.079787pt;}
._1a_c00474{width:12.121067pt;}
._1c_c00474{width:13.484373pt;}
._16_c00474{width:14.650453pt;}
._14_c00474{width:17.743360pt;}
._18_c00474{width:18.968320pt;}
._2_c00474{width:20.935680pt;}
._4_c00474{width:22.277760pt;}
._0_c00474{width:23.336533pt;}
._3_c00474{width:24.238933pt;}
._19_c00474{width:28.174933pt;}
._1_c00474{width:31.829333pt;}
._a_c00474{width:32.992000pt;}
._9_c00474{width:34.534400pt;}
._8_c00474{width:36.006400pt;}
._5_c00474{width:37.701547pt;}
._6_c00474{width:40.243200pt;}
._7_c00474{width:44.508587pt;}
.fs9_c00474{font-size:50.666667pt;}
.fs0_c00474{font-size:51.733333pt;}
.fsb_c00474{font-size:58.666667pt;}
.fs6_c00474{font-size:59.200000pt;}
.fs5_c00474{font-size:59.733333pt;}
.fs4_c00474{font-size:60.800000pt;}
.fs1_c00474{font-size:61.866667pt;}
.fs8_c00474{font-size:62.400000pt;}
.fs7_c00474{font-size:62.933333pt;}
.fs2_c00474{font-size:64.000000pt;}
.fs3_c00474{font-size:65.600000pt;}
.fsa_c00474{font-size:68.266667pt;}
.y0_c00474{bottom:0.000000pt;}
.y22_c00474{bottom:56.973347pt;}
.y20_c00474{bottom:138.556813pt;}
.y21_c00474{bottom:138.560013pt;}
.y1f_c00474{bottom:165.453347pt;}
.y1e_c00474{bottom:221.133347pt;}
.y1d_c00474{bottom:248.000013pt;}
.y1c_c00474{bottom:248.007480pt;}
.y1b_c00474{bottom:275.213347pt;}
.y1a_c00474{bottom:329.933347pt;}
.y19_c00474{bottom:356.800013pt;}
.y18_c00474{bottom:356.802680pt;}
.y17_c00474{bottom:384.333347pt;}
.y16_c00474{bottom:439.373347pt;}
.y15_c00474{bottom:466.567480pt;}
.y14_c00474{bottom:493.773347pt;}
.y24_c00474{bottom:546.893347pt;}
.y13_c00474{bottom:549.127480pt;}
.y23_c00474{bottom:550.080013pt;}
.y11_c00474{bottom:576.327480pt;}
.y12_c00474{bottom:576.333347pt;}
.y10_c00474{bottom:631.367480pt;}
.ye_c00474{bottom:658.569613pt;}
.yf_c00474{bottom:658.573347pt;}
.yd_c00474{bottom:685.760013pt;}
.yc_c00474{bottom:685.761613pt;}
.yb_c00474{bottom:740.173347pt;}
.ya_c00474{bottom:767.680013pt;}
.y9_c00474{bottom:794.893347pt;}
.y8_c00474{bottom:794.899213pt;}
.y7_c00474{bottom:849.280013pt;}
.y6_c00474{bottom:849.284813pt;}
.y5_c00474{bottom:876.800013pt;}
.y4_c00474{bottom:876.807480pt;}
.y3_c00474{bottom:904.013347pt;}
.y2_c00474{bottom:986.573347pt;}
.y1_c00474{bottom:1053.120013pt;}
.hd_c00474{height:49.726562pt;}
.h2_c00474{height:52.137500pt;}
.h6_c00474{height:59.642187pt;}
.h4_c00474{height:60.718750pt;}
.h8_c00474{height:60.742217pt;}
.hf_c00474{height:61.187500pt;}
.h9_c00474{height:61.743750pt;}
.hc_c00474{height:62.312800pt;}
.h7_c00474{height:62.323467pt;}
.h3_c00474{height:62.812500pt;}
.h5_c00474{height:64.382813pt;}
.hb_c00474{height:65.081250pt;}
.ha_c00474{height:65.637500pt;}
.he_c00474{height:71.200000pt;}
.h1_c00474{height:1122.666667pt;}
.h0_c00474{height:1122.880013pt;}
.w1_c00474{width:793.333333pt;}
.w0_c00474{width:793.600000pt;}
.x0_c00474{left:0.000000pt;}
.x26_c00474{left:111.293333pt;}
.x1c_c00474{left:112.253333pt;}
.x1_c00474{left:113.200000pt;}
.x1f_c00474{left:172.640000pt;}
.x20_c00474{left:191.973333pt;}
.x18_c00474{left:199.600000pt;}
.x3_c00474{left:205.280000pt;}
.x19_c00474{left:218.840000pt;}
.x4_c00474{left:230.360000pt;}
.x9_c00474{left:265.640000pt;}
.xd_c00474{left:269.800000pt;}
.xa_c00474{left:283.626667pt;}
.x7_c00474{left:288.746667pt;}
.xe_c00474{left:291.973333pt;}
.x27_c00474{left:293.600000pt;}
.x23_c00474{left:304.480000pt;}
.x8_c00474{left:312.426667pt;}
.x24_c00474{left:323.160000pt;}
.x1a_c00474{left:335.613333pt;}
.xf_c00474{left:340.000000pt;}
.x14_c00474{left:350.560000pt;}
.x1b_c00474{left:360.426667pt;}
.x15_c00474{left:370.533333pt;}
.x29_c00474{left:378.413333pt;}
.x25_c00474{left:386.400000pt;}
.x12_c00474{left:387.360000pt;}
.x5_c00474{left:391.840000pt;}
.x13_c00474{left:404.000000pt;}
.x10_c00474{left:408.800000pt;}
.x6_c00474{left:416.653333pt;}
.x11_c00474{left:430.373333pt;}
.x16_c00474{left:445.920000pt;}
.x28_c00474{left:463.813333pt;}
.x17_c00474{left:477.226667pt;}
.x1d_c00474{left:492.000000pt;}
.x1e_c00474{left:510.253333pt;}
.x21_c00474{left:568.880000pt;}
.x22_c00474{left:588.586667pt;}
.xc_c00474{left:645.266667pt;}
.x2_c00474{left:657.120000pt;}
.xb_c00474{left:658.400000pt;}
.x2b_c00474{left:760.440000pt;}
.x2a_c00474{left:761.373333pt;}
}





/* 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_c00475 {
    display:none;
  }
  .loading-indicator_c00475.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00475 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_c00475 { 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_c00475" -> "#page-container .classname_c00475")
 */
.pf_c00475 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00475 { /* 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_c00475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00475 { /* 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_c00475 { /* 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_c00475 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00475 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00475 {overflow:visible;}
  }
}
.c_c00475 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00475 { /* 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_c00475:after { /* webkit #35443 */
  content: '';
}
.t_c00475:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00475 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 */
}
.__c00475 { /* 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_c00475 { /* info for Javascript */
  display:none;
}
.l_c00475 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00475 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00475 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00475: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_c00475 {
    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_c00475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00475.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_c00475 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00475{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00475;src:url('chunks/assets/font_16f3a23554a81e13746a3df3.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.284668;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_c00475;src:url('chunks/assets/font_3a368c70d354307ac9045273.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.284180;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_c00475;src:url('chunks/assets/font_169e7c83863031422a6c2cf0.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;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;}
.m7_c00475{transform:matrix(0.211559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211559,0.000000,0.000000,0.250000,0,0);}
.m8_c00475{transform:matrix(0.239211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239211,0.000000,0.000000,0.250000,0,0);}
.m9_c00475{transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);}
.ma_c00475{transform:matrix(0.247474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247474,0.000000,0.000000,0.250000,0,0);}
.m0_c00475{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);}
.m3_c00475{transform:matrix(0.250463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250463,0.000000,0.000000,0.250000,0,0);}
.m6_c00475{transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);}
.m1_c00475{transform:matrix(0.268746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268746,0.000000,0.000000,0.250000,0,0);}
.m2_c00475{transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);}
.m5_c00475{transform:matrix(0.281779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281779,0.000000,0.000000,0.250000,0,0);}
.m4_c00475{transform:matrix(0.286772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286772,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls69_c00475{letter-spacing:-3.318000px;}
.ls79_c00475{letter-spacing:-2.394000px;}
.ls6b_c00475{letter-spacing:-2.359800px;}
.ls62_c00475{letter-spacing:-2.243520px;}
.ls74_c00475{letter-spacing:-2.106720px;}
.ls7b_c00475{letter-spacing:-1.785240px;}
.ls82_c00475{letter-spacing:-1.703160px;}
.ls71_c00475{letter-spacing:-1.689480px;}
.ls65_c00475{letter-spacing:-1.593720px;}
.ls77_c00475{letter-spacing:-1.210680px;}
.ls84_c00475{letter-spacing:-0.834480px;}
.ls58_c00475{letter-spacing:-0.697680px;}
.ls73_c00475{letter-spacing:-0.601920px;}
.ls83_c00475{letter-spacing:-0.560880px;}
.ls5d_c00475{letter-spacing:-0.547200px;}
.ls6a_c00475{letter-spacing:-0.526680px;}
.ls59_c00475{letter-spacing:-0.485640px;}
.ls7d_c00475{letter-spacing:-0.396720px;}
.ls6d_c00475{letter-spacing:-0.348840px;}
.ls6f_c00475{letter-spacing:-0.342000px;}
.ls64_c00475{letter-spacing:-0.273600px;}
.ls68_c00475{letter-spacing:-0.239400px;}
.ls5b_c00475{letter-spacing:-0.205200px;}
.ls86_c00475{letter-spacing:-0.198360px;}
.ls6c_c00475{letter-spacing:-0.157320px;}
.ls66_c00475{letter-spacing:-0.143640px;}
.ls72_c00475{letter-spacing:-0.088920px;}
.ls81_c00475{letter-spacing:-0.047880px;}
.ls80_c00475{letter-spacing:-0.013680px;}
.ls61_c00475{letter-spacing:0.000000px;}
.ls53_c00475{letter-spacing:0.020520px;}
.ls48_c00475{letter-spacing:0.041040px;}
.ls85_c00475{letter-spacing:0.082080px;}
.ls49_c00475{letter-spacing:0.143640px;}
.ls22_c00475{letter-spacing:0.150480px;}
.ls1d_c00475{letter-spacing:0.171000px;}
.ls2_c00475{letter-spacing:0.198360px;}
.ls2b_c00475{letter-spacing:0.239400px;}
.ls3e_c00475{letter-spacing:0.246240px;}
.ls7a_c00475{letter-spacing:0.273600px;}
.ls1_c00475{letter-spacing:0.314640px;}
.ls4b_c00475{letter-spacing:0.342000px;}
.ls5e_c00475{letter-spacing:0.348840px;}
.ls75_c00475{letter-spacing:0.383040px;}
.ls4a_c00475{letter-spacing:0.403560px;}
.ls40_c00475{letter-spacing:0.417240px;}
.ls7c_c00475{letter-spacing:0.444600px;}
.ls17_c00475{letter-spacing:0.478800px;}
.ls54_c00475{letter-spacing:0.492480px;}
.ls7f_c00475{letter-spacing:0.499320px;}
.ls76_c00475{letter-spacing:0.506160px;}
.ls19_c00475{letter-spacing:0.588240px;}
.ls32_c00475{letter-spacing:0.608760px;}
.ls6e_c00475{letter-spacing:0.615600px;}
.ls87_c00475{letter-spacing:0.622740px;}
.ls5c_c00475{letter-spacing:0.656640px;}
.ls28_c00475{letter-spacing:0.684000px;}
.ls9_c00475{letter-spacing:0.718200px;}
.ls3_c00475{letter-spacing:0.731880px;}
.ls12_c00475{letter-spacing:0.738720px;}
.ls16_c00475{letter-spacing:0.752400px;}
.ls20_c00475{letter-spacing:0.759240px;}
.ls4e_c00475{letter-spacing:0.766080px;}
.ls10_c00475{letter-spacing:0.786600px;}
.ls2c_c00475{letter-spacing:0.793440px;}
.ls78_c00475{letter-spacing:0.827640px;}
.ls15_c00475{letter-spacing:0.841320px;}
.ls52_c00475{letter-spacing:0.848160px;}
.ls63_c00475{letter-spacing:0.861840px;}
.ls31_c00475{letter-spacing:0.902880px;}
.lsa_c00475{letter-spacing:0.916560px;}
.lsc_c00475{letter-spacing:0.923400px;}
.ls3f_c00475{letter-spacing:0.930240px;}
.ls67_c00475{letter-spacing:0.937080px;}
.lsf_c00475{letter-spacing:0.991800px;}
.ls26_c00475{letter-spacing:0.998640px;}
.ls3b_c00475{letter-spacing:1.005480px;}
.ls30_c00475{letter-spacing:1.012320px;}
.ls1b_c00475{letter-spacing:1.026000px;}
.ls51_c00475{letter-spacing:1.032840px;}
.ls4d_c00475{letter-spacing:1.039680px;}
.ls55_c00475{letter-spacing:1.060200px;}
.ls7e_c00475{letter-spacing:1.087560px;}
.ls18_c00475{letter-spacing:1.101240px;}
.lse_c00475{letter-spacing:1.128600px;}
.ls42_c00475{letter-spacing:1.135440px;}
.ls25_c00475{letter-spacing:1.155960px;}
.ls27_c00475{letter-spacing:1.197000px;}
.lsd_c00475{letter-spacing:1.224360px;}
.ls23_c00475{letter-spacing:1.231200px;}
.ls38_c00475{letter-spacing:1.238040px;}
.ls13_c00475{letter-spacing:1.244880px;}
.ls43_c00475{letter-spacing:1.258560px;}
.ls41_c00475{letter-spacing:1.285920px;}
.ls39_c00475{letter-spacing:1.299600px;}
.ls33_c00475{letter-spacing:1.306440px;}
.ls24_c00475{letter-spacing:1.333800px;}
.ls1f_c00475{letter-spacing:1.340640px;}
.ls50_c00475{letter-spacing:1.354320px;}
.ls1a_c00475{letter-spacing:1.368000px;}
.ls5f_c00475{letter-spacing:1.374840px;}
.ls34_c00475{letter-spacing:1.415880px;}
.ls14_c00475{letter-spacing:1.429560px;}
.ls3c_c00475{letter-spacing:1.436400px;}
.ls37_c00475{letter-spacing:1.450080px;}
.ls5_c00475{letter-spacing:1.456920px;}
.ls2f_c00475{letter-spacing:1.484280px;}
.ls46_c00475{letter-spacing:1.497960px;}
.ls45_c00475{letter-spacing:1.518480px;}
.ls3d_c00475{letter-spacing:1.552680px;}
.ls3a_c00475{letter-spacing:1.559520px;}
.ls29_c00475{letter-spacing:1.566360px;}
.ls21_c00475{letter-spacing:1.586880px;}
.ls1c_c00475{letter-spacing:1.627920px;}
.ls1e_c00475{letter-spacing:1.668960px;}
.ls70_c00475{letter-spacing:1.682640px;}
.ls7_c00475{letter-spacing:1.710000px;}
.ls36_c00475{letter-spacing:1.737360px;}
.ls5a_c00475{letter-spacing:1.751040px;}
.ls0_c00475{letter-spacing:1.757880px;}
.ls11_c00475{letter-spacing:1.764720px;}
.ls4_c00475{letter-spacing:1.812600px;}
.ls56_c00475{letter-spacing:1.866600px;}
.ls2d_c00475{letter-spacing:1.894680px;}
.lsb_c00475{letter-spacing:1.963080px;}
.ls2e_c00475{letter-spacing:1.997280px;}
.ls44_c00475{letter-spacing:2.031480px;}
.ls8_c00475{letter-spacing:2.079360px;}
.ls6_c00475{letter-spacing:2.113560px;}
.ls4c_c00475{letter-spacing:2.168280px;}
.ls47_c00475{letter-spacing:2.264040px;}
.ls4f_c00475{letter-spacing:2.496600px;}
.ls35_c00475{letter-spacing:2.783880px;}
.ls2a_c00475{letter-spacing:3.091680px;}
.ls57_c00475{letter-spacing:3.420000px;}
.ls60_c00475{letter-spacing:3.660000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{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__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00475{word-spacing:-3.584160px;}
.ws8_c00475{word-spacing:0.000000px;}
.ws1_c00475{word-spacing:1.750680px;}
.ws0_c00475{word-spacing:2.441880px;}
.ws5_c00475{word-spacing:4.220280px;}
.ws3_c00475{word-spacing:12.838680px;}
.ws4_c00475{word-spacing:18.314280px;}
.ws2_c00475{word-spacing:23.054280px;}
.ws6_c00475{word-spacing:25.834680px;}
._17_c00475{margin-left:-7.660800px;}
._5_c00475{margin-left:-4.083480px;}
._4_c00475{margin-left:-2.961720px;}
._3_c00475{margin-left:-1.402200px;}
._8_c00475{width:1.128600px;}
._0_c00475{width:2.715480px;}
._2_c00475{width:4.664880px;}
._6_c00475{width:5.745600px;}
._7_c00475{width:7.695000px;}
._c_c00475{width:9.411840px;}
._12_c00475{width:10.701240px;}
._1_c00475{width:12.448800px;}
._11_c00475{width:14.887200px;}
._14_c00475{width:17.544240px;}
._16_c00475{width:19.856640px;}
._9_c00475{width:21.414840px;}
._b_c00475{width:22.667760px;}
._10_c00475{width:23.704800px;}
._13_c00475{width:25.007400px;}
._15_c00475{width:28.173600px;}
._d_c00475{width:34.774560px;}
._a_c00475{width:36.047760px;}
._e_c00475{width:37.456800px;}
._18_c00475{width:41.877840px;}
._f_c00475{width:43.960680px;}
.fc0_c00475{color:transparent;}
.fs4_c00475{font-size:58.200000px;}
.fs0_c00475{font-size:61.200000px;}
.fs1_c00475{font-size:68.400000px;}
.fs2_c00475{font-size:73.200000px;}
.fs3_c00475{font-size:94.800000px;}
.y0_c00475{bottom:0.000000px;}
.y1d_c00475{bottom:67.335000px;}
.y1b_c00475{bottom:189.351600px;}
.y1c_c00475{bottom:189.360000px;}
.y1a_c00475{bottom:250.210500px;}
.y19_c00475{bottom:344.175000px;}
.y18_c00475{bottom:374.768100px;}
.y17_c00475{bottom:405.360000px;}
.y16_c00475{bottom:467.286900px;}
.y15_c00475{bottom:498.255000px;}
.y13_c00475{bottom:560.169000px;}
.y14_c00475{bottom:560.175000px;}
.y12_c00475{bottom:591.120000px;}
.y11_c00475{bottom:653.047200px;}
.y10_c00475{bottom:683.280900px;}
.yf_c00475{bottom:745.200000px;}
.ye_c00475{bottom:775.807200px;}
.yd_c00475{bottom:806.040000px;}
.yc_c00475{bottom:806.040600px;}
.yb_c00475{bottom:868.703100px;}
.y9_c00475{bottom:899.288100px;}
.ya_c00475{bottom:899.295000px;}
.y7_c00475{bottom:929.879700px;}
.y8_c00475{bottom:929.880000px;}
.y6_c00475{bottom:992.175000px;}
.y5_c00475{bottom:1022.400000px;}
.y4_c00475{bottom:1022.407800px;}
.y3_c00475{bottom:1084.703100px;}
.y2_c00475{bottom:1115.295000px;}
.y1_c00475{bottom:1191.975000px;}
.h9_c00475{height:57.120117px;}
.h2_c00475{height:60.064453px;}
.h3_c00475{height:67.130859px;}
.h7_c00475{height:67.154859px;}
.h8_c00475{height:67.158459px;}
.h6_c00475{height:67.162059px;}
.h4_c00475{height:71.841797px;}
.h5_c00475{height:98.873438px;}
.h1_c00475{height:1263.000000px;}
.h0_c00475{height:1263.240000px;}
.w1_c00475{width:892.500000px;}
.w0_c00475{width:892.800000px;}
.x0_c00475{left:0.000000px;}
.x19_c00475{left:119.785800px;}
.x16_c00475{left:121.452300px;}
.x15_c00475{left:122.658000px;}
.x12_c00475{left:123.738300px;}
.xb_c00475{left:124.791000px;}
.x7_c00475{left:125.886000px;}
.x2_c00475{left:127.365000px;}
.x1_c00475{left:128.445000px;}
.xc_c00475{left:209.340000px;}
.x1a_c00475{left:231.030000px;}
.xd_c00475{left:245.475000px;}
.x1b_c00475{left:251.400000px;}
.x10_c00475{left:281.340000px;}
.x11_c00475{left:319.155000px;}
.x8_c00475{left:344.355000px;}
.x17_c00475{left:388.335000px;}
.x13_c00475{left:407.295000px;}
.x18_c00475{left:410.610000px;}
.x9_c00475{left:417.420000px;}
.x1e_c00475{left:423.195000px;}
.x3_c00475{left:427.140000px;}
.x14_c00475{left:441.180000px;}
.x4_c00475{left:473.745000px;}
.xe_c00475{left:588.060000px;}
.x1c_c00475{left:608.655000px;}
.xf_c00475{left:612.555000px;}
.x1d_c00475{left:627.600000px;}
.x5_c00475{left:682.740000px;}
.x6_c00475{left:702.840000px;}
.xa_c00475{left:742.485000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls69_c00475{letter-spacing:-2.949333pt;}
.ls79_c00475{letter-spacing:-2.128000pt;}
.ls6b_c00475{letter-spacing:-2.097600pt;}
.ls62_c00475{letter-spacing:-1.994240pt;}
.ls74_c00475{letter-spacing:-1.872640pt;}
.ls7b_c00475{letter-spacing:-1.586880pt;}
.ls82_c00475{letter-spacing:-1.513920pt;}
.ls71_c00475{letter-spacing:-1.501760pt;}
.ls65_c00475{letter-spacing:-1.416640pt;}
.ls77_c00475{letter-spacing:-1.076160pt;}
.ls84_c00475{letter-spacing:-0.741760pt;}
.ls58_c00475{letter-spacing:-0.620160pt;}
.ls73_c00475{letter-spacing:-0.535040pt;}
.ls83_c00475{letter-spacing:-0.498560pt;}
.ls5d_c00475{letter-spacing:-0.486400pt;}
.ls6a_c00475{letter-spacing:-0.468160pt;}
.ls59_c00475{letter-spacing:-0.431680pt;}
.ls7d_c00475{letter-spacing:-0.352640pt;}
.ls6d_c00475{letter-spacing:-0.310080pt;}
.ls6f_c00475{letter-spacing:-0.304000pt;}
.ls64_c00475{letter-spacing:-0.243200pt;}
.ls68_c00475{letter-spacing:-0.212800pt;}
.ls5b_c00475{letter-spacing:-0.182400pt;}
.ls86_c00475{letter-spacing:-0.176320pt;}
.ls6c_c00475{letter-spacing:-0.139840pt;}
.ls66_c00475{letter-spacing:-0.127680pt;}
.ls72_c00475{letter-spacing:-0.079040pt;}
.ls81_c00475{letter-spacing:-0.042560pt;}
.ls80_c00475{letter-spacing:-0.012160pt;}
.ls61_c00475{letter-spacing:0.000000pt;}
.ls53_c00475{letter-spacing:0.018240pt;}
.ls48_c00475{letter-spacing:0.036480pt;}
.ls85_c00475{letter-spacing:0.072960pt;}
.ls49_c00475{letter-spacing:0.127680pt;}
.ls22_c00475{letter-spacing:0.133760pt;}
.ls1d_c00475{letter-spacing:0.152000pt;}
.ls2_c00475{letter-spacing:0.176320pt;}
.ls2b_c00475{letter-spacing:0.212800pt;}
.ls3e_c00475{letter-spacing:0.218880pt;}
.ls7a_c00475{letter-spacing:0.243200pt;}
.ls1_c00475{letter-spacing:0.279680pt;}
.ls4b_c00475{letter-spacing:0.304000pt;}
.ls5e_c00475{letter-spacing:0.310080pt;}
.ls75_c00475{letter-spacing:0.340480pt;}
.ls4a_c00475{letter-spacing:0.358720pt;}
.ls40_c00475{letter-spacing:0.370880pt;}
.ls7c_c00475{letter-spacing:0.395200pt;}
.ls17_c00475{letter-spacing:0.425600pt;}
.ls54_c00475{letter-spacing:0.437760pt;}
.ls7f_c00475{letter-spacing:0.443840pt;}
.ls76_c00475{letter-spacing:0.449920pt;}
.ls19_c00475{letter-spacing:0.522880pt;}
.ls32_c00475{letter-spacing:0.541120pt;}
.ls6e_c00475{letter-spacing:0.547200pt;}
.ls87_c00475{letter-spacing:0.553547pt;}
.ls5c_c00475{letter-spacing:0.583680pt;}
.ls28_c00475{letter-spacing:0.608000pt;}
.ls9_c00475{letter-spacing:0.638400pt;}
.ls3_c00475{letter-spacing:0.650560pt;}
.ls12_c00475{letter-spacing:0.656640pt;}
.ls16_c00475{letter-spacing:0.668800pt;}
.ls20_c00475{letter-spacing:0.674880pt;}
.ls4e_c00475{letter-spacing:0.680960pt;}
.ls10_c00475{letter-spacing:0.699200pt;}
.ls2c_c00475{letter-spacing:0.705280pt;}
.ls78_c00475{letter-spacing:0.735680pt;}
.ls15_c00475{letter-spacing:0.747840pt;}
.ls52_c00475{letter-spacing:0.753920pt;}
.ls63_c00475{letter-spacing:0.766080pt;}
.ls31_c00475{letter-spacing:0.802560pt;}
.lsa_c00475{letter-spacing:0.814720pt;}
.lsc_c00475{letter-spacing:0.820800pt;}
.ls3f_c00475{letter-spacing:0.826880pt;}
.ls67_c00475{letter-spacing:0.832960pt;}
.lsf_c00475{letter-spacing:0.881600pt;}
.ls26_c00475{letter-spacing:0.887680pt;}
.ls3b_c00475{letter-spacing:0.893760pt;}
.ls30_c00475{letter-spacing:0.899840pt;}
.ls1b_c00475{letter-spacing:0.912000pt;}
.ls51_c00475{letter-spacing:0.918080pt;}
.ls4d_c00475{letter-spacing:0.924160pt;}
.ls55_c00475{letter-spacing:0.942400pt;}
.ls7e_c00475{letter-spacing:0.966720pt;}
.ls18_c00475{letter-spacing:0.978880pt;}
.lse_c00475{letter-spacing:1.003200pt;}
.ls42_c00475{letter-spacing:1.009280pt;}
.ls25_c00475{letter-spacing:1.027520pt;}
.ls27_c00475{letter-spacing:1.064000pt;}
.lsd_c00475{letter-spacing:1.088320pt;}
.ls23_c00475{letter-spacing:1.094400pt;}
.ls38_c00475{letter-spacing:1.100480pt;}
.ls13_c00475{letter-spacing:1.106560pt;}
.ls43_c00475{letter-spacing:1.118720pt;}
.ls41_c00475{letter-spacing:1.143040pt;}
.ls39_c00475{letter-spacing:1.155200pt;}
.ls33_c00475{letter-spacing:1.161280pt;}
.ls24_c00475{letter-spacing:1.185600pt;}
.ls1f_c00475{letter-spacing:1.191680pt;}
.ls50_c00475{letter-spacing:1.203840pt;}
.ls1a_c00475{letter-spacing:1.216000pt;}
.ls5f_c00475{letter-spacing:1.222080pt;}
.ls34_c00475{letter-spacing:1.258560pt;}
.ls14_c00475{letter-spacing:1.270720pt;}
.ls3c_c00475{letter-spacing:1.276800pt;}
.ls37_c00475{letter-spacing:1.288960pt;}
.ls5_c00475{letter-spacing:1.295040pt;}
.ls2f_c00475{letter-spacing:1.319360pt;}
.ls46_c00475{letter-spacing:1.331520pt;}
.ls45_c00475{letter-spacing:1.349760pt;}
.ls3d_c00475{letter-spacing:1.380160pt;}
.ls3a_c00475{letter-spacing:1.386240pt;}
.ls29_c00475{letter-spacing:1.392320pt;}
.ls21_c00475{letter-spacing:1.410560pt;}
.ls1c_c00475{letter-spacing:1.447040pt;}
.ls1e_c00475{letter-spacing:1.483520pt;}
.ls70_c00475{letter-spacing:1.495680pt;}
.ls7_c00475{letter-spacing:1.520000pt;}
.ls36_c00475{letter-spacing:1.544320pt;}
.ls5a_c00475{letter-spacing:1.556480pt;}
.ls0_c00475{letter-spacing:1.562560pt;}
.ls11_c00475{letter-spacing:1.568640pt;}
.ls4_c00475{letter-spacing:1.611200pt;}
.ls56_c00475{letter-spacing:1.659200pt;}
.ls2d_c00475{letter-spacing:1.684160pt;}
.lsb_c00475{letter-spacing:1.744960pt;}
.ls2e_c00475{letter-spacing:1.775360pt;}
.ls44_c00475{letter-spacing:1.805760pt;}
.ls8_c00475{letter-spacing:1.848320pt;}
.ls6_c00475{letter-spacing:1.878720pt;}
.ls4c_c00475{letter-spacing:1.927360pt;}
.ls47_c00475{letter-spacing:2.012480pt;}
.ls4f_c00475{letter-spacing:2.219200pt;}
.ls35_c00475{letter-spacing:2.474560pt;}
.ls2a_c00475{letter-spacing:2.748160pt;}
.ls57_c00475{letter-spacing:3.040000pt;}
.ls60_c00475{letter-spacing:3.253333pt;}
.ws7_c00475{word-spacing:-3.185920pt;}
.ws8_c00475{word-spacing:0.000000pt;}
.ws1_c00475{word-spacing:1.556160pt;}
.ws0_c00475{word-spacing:2.170560pt;}
.ws5_c00475{word-spacing:3.751360pt;}
.ws3_c00475{word-spacing:11.412160pt;}
.ws4_c00475{word-spacing:16.279360pt;}
.ws2_c00475{word-spacing:20.492693pt;}
.ws6_c00475{word-spacing:22.964160pt;}
._17_c00475{margin-left:-6.809600pt;}
._5_c00475{margin-left:-3.629760pt;}
._4_c00475{margin-left:-2.632640pt;}
._3_c00475{margin-left:-1.246400pt;}
._8_c00475{width:1.003200pt;}
._0_c00475{width:2.413760pt;}
._2_c00475{width:4.146560pt;}
._6_c00475{width:5.107200pt;}
._7_c00475{width:6.840000pt;}
._c_c00475{width:8.366080pt;}
._12_c00475{width:9.512213pt;}
._1_c00475{width:11.065600pt;}
._11_c00475{width:13.233067pt;}
._14_c00475{width:15.594880pt;}
._16_c00475{width:17.650347pt;}
._9_c00475{width:19.035413pt;}
._b_c00475{width:20.149120pt;}
._10_c00475{width:21.070933pt;}
._13_c00475{width:22.228800pt;}
._15_c00475{width:25.043200pt;}
._d_c00475{width:30.910720pt;}
._a_c00475{width:32.042453pt;}
._e_c00475{width:33.294933pt;}
._18_c00475{width:37.224747pt;}
._f_c00475{width:39.076160pt;}
.fs4_c00475{font-size:51.733333pt;}
.fs0_c00475{font-size:54.400000pt;}
.fs1_c00475{font-size:60.800000pt;}
.fs2_c00475{font-size:65.066667pt;}
.fs3_c00475{font-size:84.266667pt;}
.y0_c00475{bottom:0.000000pt;}
.y1d_c00475{bottom:59.853333pt;}
.y1b_c00475{bottom:168.312533pt;}
.y1c_c00475{bottom:168.320000pt;}
.y1a_c00475{bottom:222.409333pt;}
.y19_c00475{bottom:305.933333pt;}
.y18_c00475{bottom:333.127200pt;}
.y17_c00475{bottom:360.320000pt;}
.y16_c00475{bottom:415.366133pt;}
.y15_c00475{bottom:442.893333pt;}
.y13_c00475{bottom:497.928000pt;}
.y14_c00475{bottom:497.933333pt;}
.y12_c00475{bottom:525.440000pt;}
.y11_c00475{bottom:580.486400pt;}
.y10_c00475{bottom:607.360800pt;}
.yf_c00475{bottom:662.400000pt;}
.ye_c00475{bottom:689.606400pt;}
.yd_c00475{bottom:716.480000pt;}
.yc_c00475{bottom:716.480533pt;}
.yb_c00475{bottom:772.180533pt;}
.y9_c00475{bottom:799.367200pt;}
.ya_c00475{bottom:799.373333pt;}
.y7_c00475{bottom:826.559733pt;}
.y8_c00475{bottom:826.560000pt;}
.y6_c00475{bottom:881.933333pt;}
.y5_c00475{bottom:908.800000pt;}
.y4_c00475{bottom:908.806933pt;}
.y3_c00475{bottom:964.180533pt;}
.y2_c00475{bottom:991.373333pt;}
.y1_c00475{bottom:1059.533333pt;}
.h9_c00475{height:50.773437pt;}
.h2_c00475{height:53.390625pt;}
.h3_c00475{height:59.671875pt;}
.h7_c00475{height:59.693208pt;}
.h8_c00475{height:59.696408pt;}
.h6_c00475{height:59.699608pt;}
.h4_c00475{height:63.859375pt;}
.h5_c00475{height:87.887500pt;}
.h1_c00475{height:1122.666667pt;}
.h0_c00475{height:1122.880000pt;}
.w1_c00475{width:793.333333pt;}
.w0_c00475{width:793.600000pt;}
.x0_c00475{left:0.000000pt;}
.x19_c00475{left:106.476267pt;}
.x16_c00475{left:107.957600pt;}
.x15_c00475{left:109.029333pt;}
.x12_c00475{left:109.989600pt;}
.xb_c00475{left:110.925333pt;}
.x7_c00475{left:111.898667pt;}
.x2_c00475{left:113.213333pt;}
.x1_c00475{left:114.173333pt;}
.xc_c00475{left:186.080000pt;}
.x1a_c00475{left:205.360000pt;}
.xd_c00475{left:218.200000pt;}
.x1b_c00475{left:223.466667pt;}
.x10_c00475{left:250.080000pt;}
.x11_c00475{left:283.693333pt;}
.x8_c00475{left:306.093333pt;}
.x17_c00475{left:345.186667pt;}
.x13_c00475{left:362.040000pt;}
.x18_c00475{left:364.986667pt;}
.x9_c00475{left:371.040000pt;}
.x1e_c00475{left:376.173333pt;}
.x3_c00475{left:379.680000pt;}
.x14_c00475{left:392.160000pt;}
.x4_c00475{left:421.106667pt;}
.xe_c00475{left:522.720000pt;}
.x1c_c00475{left:541.026667pt;}
.xf_c00475{left:544.493333pt;}
.x1d_c00475{left:557.866667pt;}
.x5_c00475{left:606.880000pt;}
.x6_c00475{left:624.746667pt;}
.xa_c00475{left:659.986667pt;}
}





/* 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_c00476 {
    display:none;
  }
  .loading-indicator_c00476.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00476 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_c00476 { 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_c00476" -> "#page-container .classname_c00476")
 */
.pf_c00476 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00476 { /* 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_c00476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00476 { /* 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_c00476 { /* 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_c00476 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00476 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00476 {overflow:visible;}
  }
}
.c_c00476 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00476 { /* 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_c00476:after { /* webkit #35443 */
  content: '';
}
.t_c00476:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00476 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 */
}
.__c00476 { /* 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_c00476 { /* info for Javascript */
  display:none;
}
.l_c00476 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00476 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00476 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00476: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_c00476 {
    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_c00476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00476.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_c00476 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00476{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00476;src:url('chunks/assets/font_4d8895738eef03692bdc0a7c.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.284668;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_c00476;src:url('chunks/assets/font_bca9c56c1431f1bac5e478eb.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.284180;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_c00476;src:url('chunks/assets/font_b3fa09ea89167bad937a1dcd.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;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;}
.m3_c00476{transform:matrix(0.242558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242558,0.000000,0.000000,0.250000,0,0);}
.mb_c00476{transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);}
.m7_c00476{transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);}
.m5_c00476{transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);}
.mc_c00476{transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);}
.md_c00476{transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);}
.m9_c00476{transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);}
.m1_c00476{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);}
.m8_c00476{transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);}
.m0_c00476{transform:matrix(0.253643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253643,0.000000,0.000000,0.250000,0,0);}
.ma_c00476{transform:matrix(0.253856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253856,0.000000,0.000000,0.250000,0,0);}
.m2_c00476{transform:matrix(0.258989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258989,0.000000,0.000000,0.250000,0,0);}
.me_c00476{transform:matrix(0.276998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276998,0.000000,0.000000,0.250000,0,0);}
.m6_c00476{transform:matrix(0.283153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283153,0.000000,0.000000,0.250000,0,0);}
.m4_c00476{transform:matrix(0.294188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294188,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls5c_c00476{letter-spacing:-2.436000px;}
.ls62_c00476{letter-spacing:-2.373000px;}
.ls70_c00476{letter-spacing:-1.905180px;}
.ls79_c00476{letter-spacing:-1.816560px;}
.ls78_c00476{letter-spacing:-1.635600px;}
.ls65_c00476{letter-spacing:-1.600080px;}
.ls5e_c00476{letter-spacing:-1.552080px;}
.ls4d_c00476{letter-spacing:-1.274640px;}
.ls54_c00476{letter-spacing:-1.220400px;}
.ls7e_c00476{letter-spacing:-1.197120px;}
.ls74_c00476{letter-spacing:-1.091580px;}
.ls73_c00476{letter-spacing:-0.955980px;}
.ls5a_c00476{letter-spacing:-0.925680px;}
.ls7d_c00476{letter-spacing:-0.911760px;}
.ls80_c00476{letter-spacing:-0.739020px;}
.ls84_c00476{letter-spacing:-0.684780px;}
.ls75_c00476{letter-spacing:-0.678000px;}
.ls4e_c00476{letter-spacing:-0.619440px;}
.ls55_c00476{letter-spacing:-0.616980px;}
.ls82_c00476{letter-spacing:-0.542400px;}
.ls7a_c00476{letter-spacing:-0.522000px;}
.ls6e_c00476{letter-spacing:-0.501720px;}
.ls5d_c00476{letter-spacing:-0.480240px;}
.ls7f_c00476{letter-spacing:-0.459360px;}
.ls52_c00476{letter-spacing:-0.438480px;}
.ls59_c00476{letter-spacing:-0.413580px;}
.ls69_c00476{letter-spacing:-0.334080px;}
.ls53_c00476{letter-spacing:-0.250860px;}
.ls81_c00476{letter-spacing:-0.237300px;}
.ls6f_c00476{letter-spacing:-0.236640px;}
.ls5b_c00476{letter-spacing:-0.167040px;}
.ls6a_c00476{letter-spacing:-0.132240px;}
.ls60_c00476{letter-spacing:-0.115260px;}
.ls57_c00476{letter-spacing:-0.074580px;}
.ls56_c00476{letter-spacing:-0.040680px;}
.ls4f_c00476{letter-spacing:0.000000px;}
.ls1f_c00476{letter-spacing:0.049140px;}
.ls4b_c00476{letter-spacing:0.061020px;}
.ls4a_c00476{letter-spacing:0.062640px;}
.ls71_c00476{letter-spacing:0.067800px;}
.ls22_c00476{letter-spacing:0.094920px;}
.ls7_c00476{letter-spacing:0.118320px;}
.ls7b_c00476{letter-spacing:0.142380px;}
.ls45_c00476{letter-spacing:0.169500px;}
.ls77_c00476{letter-spacing:0.176280px;}
.ls17_c00476{letter-spacing:0.210180px;}
.ls2b_c00476{letter-spacing:0.216960px;}
.ls19_c00476{letter-spacing:0.271200px;}
.ls41_c00476{letter-spacing:0.305100px;}
.ls6b_c00476{letter-spacing:0.339000px;}
.ls85_c00476{letter-spacing:0.345600px;}
.ls35_c00476{letter-spacing:0.386460px;}
.ls61_c00476{letter-spacing:0.393240px;}
.ls32_c00476{letter-spacing:0.396720px;}
.ls66_c00476{letter-spacing:0.427140px;}
.ls8_c00476{letter-spacing:0.454260px;}
.ls10_c00476{letter-spacing:0.481380px;}
.ls1_c00476{letter-spacing:0.501720px;}
.lsf_c00476{letter-spacing:0.508500px;}
.ls6c_c00476{letter-spacing:0.515280px;}
.ls7c_c00476{letter-spacing:0.528840px;}
.ls4_c00476{letter-spacing:0.535620px;}
.ls38_c00476{letter-spacing:0.542400px;}
.ls1b_c00476{letter-spacing:0.549180px;}
.ls11_c00476{letter-spacing:0.569520px;}
.lsa_c00476{letter-spacing:0.576300px;}
.ls3c_c00476{letter-spacing:0.589860px;}
.ls68_c00476{letter-spacing:0.605520px;}
.ls13_c00476{letter-spacing:0.610200px;}
.ls47_c00476{letter-spacing:0.616980px;}
.ls72_c00476{letter-spacing:0.623760px;}
.ls21_c00476{letter-spacing:0.654240px;}
.ls39_c00476{letter-spacing:0.691560px;}
.ls64_c00476{letter-spacing:0.711900px;}
.lsb_c00476{letter-spacing:0.718680px;}
.ls12_c00476{letter-spacing:0.772920px;}
.ls2d_c00476{letter-spacing:0.793260px;}
.ls5_c00476{letter-spacing:0.813600px;}
.ls44_c00476{letter-spacing:0.827160px;}
.ls25_c00476{letter-spacing:0.847500px;}
.ls14_c00476{letter-spacing:0.861060px;}
.ls49_c00476{letter-spacing:0.874620px;}
.ls2c_c00476{letter-spacing:0.894960px;}
.ls3d_c00476{letter-spacing:0.901740px;}
.ls24_c00476{letter-spacing:0.908520px;}
.ls28_c00476{letter-spacing:0.935640px;}
.ls6_c00476{letter-spacing:1.003440px;}
.ls63_c00476{letter-spacing:1.010220px;}
.ls42_c00476{letter-spacing:1.023780px;}
.ls83_c00476{letter-spacing:1.044120px;}
.lse_c00476{letter-spacing:1.050900px;}
.ls36_c00476{letter-spacing:1.084800px;}
.ls18_c00476{letter-spacing:1.091580px;}
.ls1a_c00476{letter-spacing:1.098360px;}
.ls6d_c00476{letter-spacing:1.111920px;}
.ls50_c00476{letter-spacing:1.120560px;}
.ls43_c00476{letter-spacing:1.132260px;}
.ls58_c00476{letter-spacing:1.139040px;}
.ls3e_c00476{letter-spacing:1.145820px;}
.ls20_c00476{letter-spacing:1.152600px;}
.ls15_c00476{letter-spacing:1.159380px;}
.ls2e_c00476{letter-spacing:1.172940px;}
.ls27_c00476{letter-spacing:1.193280px;}
.ls40_c00476{letter-spacing:1.200060px;}
.ls30_c00476{letter-spacing:1.206840px;}
.ls2a_c00476{letter-spacing:1.254300px;}
.ls3f_c00476{letter-spacing:1.261080px;}
.lsd_c00476{letter-spacing:1.267860px;}
.ls1e_c00476{letter-spacing:1.322100px;}
.ls2_c00476{letter-spacing:1.356000px;}
.ls48_c00476{letter-spacing:1.369560px;}
.ls9_c00476{letter-spacing:1.403460px;}
.ls1d_c00476{letter-spacing:1.417020px;}
.ls3a_c00476{letter-spacing:1.478040px;}
.ls1c_c00476{letter-spacing:1.484820px;}
.ls46_c00476{letter-spacing:1.532280px;}
.ls37_c00476{letter-spacing:1.559400px;}
.ls26_c00476{letter-spacing:1.566180px;}
.ls16_c00476{letter-spacing:1.593300px;}
.ls33_c00476{letter-spacing:1.681440px;}
.ls2f_c00476{letter-spacing:1.722120px;}
.ls3b_c00476{letter-spacing:1.728900px;}
.ls3_c00476{letter-spacing:1.749240px;}
.ls23_c00476{letter-spacing:2.034000px;}
.ls29_c00476{letter-spacing:2.040780px;}
.ls0_c00476{letter-spacing:2.074680px;}
.ls76_c00476{letter-spacing:2.081460px;}
.lsc_c00476{letter-spacing:2.088240px;}
.ls34_c00476{letter-spacing:2.665680px;}
.ls31_c00476{letter-spacing:2.825760px;}
.ls4c_c00476{letter-spacing:2.940000px;}
.ls5f_c00476{letter-spacing:3.360000px;}
.ls67_c00476{letter-spacing:3.390000px;}
.ls51_c00476{letter-spacing:3.480000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{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__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00476{word-spacing:-4.059000px;}
.ws8_c00476{word-spacing:0.000000px;}
.ws3_c00476{word-spacing:0.555960px;}
.ws5_c00476{word-spacing:3.286920px;}
.ws6_c00476{word-spacing:10.486920px;}
.ws0_c00476{word-spacing:12.353160px;}
.ws2_c00476{word-spacing:14.963460px;}
.ws7_c00476{word-spacing:19.553520px;}
.ws4_c00476{word-spacing:27.323880px;}
._13_c00476{margin-left:-8.725620px;}
._7_c00476{margin-left:-3.257340px;}
._8_c00476{margin-left:-1.010220px;}
._a_c00476{width:1.789920px;}
._5_c00476{width:2.815440px;}
._9_c00476{width:4.629000px;}
._6_c00476{width:5.769780px;}
._14_c00476{width:6.969840px;}
._f_c00476{width:8.389260px;}
._2_c00476{width:10.170000px;}
._0_c00476{width:11.593800px;}
._4_c00476{width:12.674400px;}
._d_c00476{width:13.749840px;}
._3_c00476{width:14.760060px;}
._e_c00476{width:15.810960px;}
._15_c00476{width:17.299980px;}
._b_c00476{width:19.054620px;}
._16_c00476{width:21.153600px;}
._c_c00476{width:23.927940px;}
._1_c00476{width:25.858920px;}
._11_c00476{width:28.326840px;}
._12_c00476{width:29.560800px;}
._10_c00476{width:34.425540px;}
.fc0_c00476{color:transparent;}
.fs5_c00476{font-size:57.600000px;}
.fs0_c00476{font-size:58.800000px;}
.fs4_c00476{font-size:67.200000px;}
.fs1_c00476{font-size:67.800000px;}
.fs2_c00476{font-size:69.600000px;}
.fs3_c00476{font-size:70.200000px;}
.y0_c00476{bottom:0.000000px;}
.y1c_c00476{bottom:70.935015px;}
.y1b_c00476{bottom:224.660265px;}
.y1a_c00476{bottom:255.255015px;}
.y19_c00476{bottom:316.815015px;}
.y18_c00476{bottom:347.040015px;}
.y17_c00476{bottom:408.975015px;}
.y16_c00476{bottom:408.980265px;}
.y15_c00476{bottom:439.575015px;}
.y14_c00476{bottom:439.580265px;}
.y13_c00476{bottom:470.175015px;}
.y12_c00476{bottom:562.680015px;}
.y11_c00476{bottom:624.601215px;}
.y10_c00476{bottom:654.847365px;}
.yf_c00476{bottom:685.815015px;}
.yd_c00476{bottom:747.728415px;}
.ye_c00476{bottom:747.735015px;}
.yc_c00476{bottom:778.335015px;}
.yb_c00476{bottom:839.876415px;}
.ya_c00476{bottom:871.200015px;}
.y8_c00476{bottom:901.447365px;}
.y9_c00476{bottom:901.455015px;}
.y7_c00476{bottom:932.408565px;}
.y6_c00476{bottom:993.622215px;}
.y4_c00476{bottom:1024.191615px;}
.y5_c00476{bottom:1024.200015px;}
.y3_c00476{bottom:1085.409615px;}
.y2_c00476{bottom:1117.095015px;}
.y1_c00476{bottom:1192.335015px;}
.hc_c00476{height:56.531250px;}
.h2_c00476{height:57.708984px;}
.h5_c00476{height:66.541992px;}
.h6_c00476{height:66.567792px;}
.ha_c00476{height:68.245209px;}
.hb_c00476{height:68.253609px;}
.h3_c00476{height:68.274609px;}
.h4_c00476{height:68.308209px;}
.h8_c00476{height:70.087500px;}
.h9_c00476{height:73.216406px;}
.h7_c00476{height:73.247006px;}
.h1_c00476{height:1263.000000px;}
.h0_c00476{height:1263.240015px;}
.w1_c00476{width:892.500000px;}
.w0_c00476{width:892.800015px;}
.x0_c00476{left:0.000000px;}
.x1f_c00476{left:124.485015px;}
.x1_c00476{left:125.580015px;}
.x15_c00476{left:239.415015px;}
.x16_c00476{left:257.640015px;}
.x17_c00476{left:286.275015px;}
.x5_c00476{left:295.110015px;}
.xb_c00476{left:297.480015px;}
.x20_c00476{left:307.875015px;}
.x1d_c00476{left:312.255015px;}
.xc_c00476{left:316.215015px;}
.x6_c00476{left:318.285015px;}
.x18_c00476{left:327.000015px;}
.x9_c00476{left:329.220015px;}
.x1e_c00476{left:333.570015px;}
.xa_c00476{left:348.150015px;}
.x21_c00476{left:350.400015px;}
.x2_c00476{left:369.210015px;}
.x19_c00476{left:383.220015px;}
.x1a_c00476{left:404.115015px;}
.xf_c00476{left:405.180015px;}
.x22_c00476{left:409.140015px;}
.x3_c00476{left:412.725015px;}
.x10_c00476{left:425.115015px;}
.x26_c00476{left:426.420015px;}
.x23_c00476{left:432.195015px;}
.x27_c00476{left:449.955015px;}
.xd_c00476{left:467.100015px;}
.x7_c00476{left:487.125015px;}
.xe_c00476{left:492.510015px;}
.x13_c00476{left:543.780015px;}
.x8_c00476{left:546.765015px;}
.x1b_c00476{left:555.300015px;}
.x14_c00476{left:565.515015px;}
.x24_c00476{left:587.700015px;}
.x1c_c00476{left:596.535015px;}
.x11_c00476{left:607.875015px;}
.x25_c00476{left:631.455015px;}
.x12_c00476{left:634.965015px;}
.x4_c00476{left:738.510015px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls5c_c00476{letter-spacing:-2.165333pt;}
.ls62_c00476{letter-spacing:-2.109333pt;}
.ls70_c00476{letter-spacing:-1.693493pt;}
.ls79_c00476{letter-spacing:-1.614720pt;}
.ls78_c00476{letter-spacing:-1.453867pt;}
.ls65_c00476{letter-spacing:-1.422293pt;}
.ls5e_c00476{letter-spacing:-1.379627pt;}
.ls4d_c00476{letter-spacing:-1.133013pt;}
.ls54_c00476{letter-spacing:-1.084800pt;}
.ls7e_c00476{letter-spacing:-1.064107pt;}
.ls74_c00476{letter-spacing:-0.970293pt;}
.ls73_c00476{letter-spacing:-0.849760pt;}
.ls5a_c00476{letter-spacing:-0.822827pt;}
.ls7d_c00476{letter-spacing:-0.810453pt;}
.ls80_c00476{letter-spacing:-0.656907pt;}
.ls84_c00476{letter-spacing:-0.608693pt;}
.ls75_c00476{letter-spacing:-0.602667pt;}
.ls4e_c00476{letter-spacing:-0.550613pt;}
.ls55_c00476{letter-spacing:-0.548427pt;}
.ls82_c00476{letter-spacing:-0.482133pt;}
.ls7a_c00476{letter-spacing:-0.464000pt;}
.ls6e_c00476{letter-spacing:-0.445973pt;}
.ls5d_c00476{letter-spacing:-0.426880pt;}
.ls7f_c00476{letter-spacing:-0.408320pt;}
.ls52_c00476{letter-spacing:-0.389760pt;}
.ls59_c00476{letter-spacing:-0.367627pt;}
.ls69_c00476{letter-spacing:-0.296960pt;}
.ls53_c00476{letter-spacing:-0.222987pt;}
.ls81_c00476{letter-spacing:-0.210933pt;}
.ls6f_c00476{letter-spacing:-0.210347pt;}
.ls5b_c00476{letter-spacing:-0.148480pt;}
.ls6a_c00476{letter-spacing:-0.117547pt;}
.ls60_c00476{letter-spacing:-0.102453pt;}
.ls57_c00476{letter-spacing:-0.066293pt;}
.ls56_c00476{letter-spacing:-0.036160pt;}
.ls4f_c00476{letter-spacing:0.000000pt;}
.ls1f_c00476{letter-spacing:0.043680pt;}
.ls4b_c00476{letter-spacing:0.054240pt;}
.ls4a_c00476{letter-spacing:0.055680pt;}
.ls71_c00476{letter-spacing:0.060267pt;}
.ls22_c00476{letter-spacing:0.084373pt;}
.ls7_c00476{letter-spacing:0.105173pt;}
.ls7b_c00476{letter-spacing:0.126560pt;}
.ls45_c00476{letter-spacing:0.150667pt;}
.ls77_c00476{letter-spacing:0.156693pt;}
.ls17_c00476{letter-spacing:0.186827pt;}
.ls2b_c00476{letter-spacing:0.192853pt;}
.ls19_c00476{letter-spacing:0.241067pt;}
.ls41_c00476{letter-spacing:0.271200pt;}
.ls6b_c00476{letter-spacing:0.301333pt;}
.ls85_c00476{letter-spacing:0.307200pt;}
.ls35_c00476{letter-spacing:0.343520pt;}
.ls61_c00476{letter-spacing:0.349547pt;}
.ls32_c00476{letter-spacing:0.352640pt;}
.ls66_c00476{letter-spacing:0.379680pt;}
.ls8_c00476{letter-spacing:0.403787pt;}
.ls10_c00476{letter-spacing:0.427893pt;}
.ls1_c00476{letter-spacing:0.445973pt;}
.lsf_c00476{letter-spacing:0.452000pt;}
.ls6c_c00476{letter-spacing:0.458027pt;}
.ls7c_c00476{letter-spacing:0.470080pt;}
.ls4_c00476{letter-spacing:0.476107pt;}
.ls38_c00476{letter-spacing:0.482133pt;}
.ls1b_c00476{letter-spacing:0.488160pt;}
.ls11_c00476{letter-spacing:0.506240pt;}
.lsa_c00476{letter-spacing:0.512267pt;}
.ls3c_c00476{letter-spacing:0.524320pt;}
.ls68_c00476{letter-spacing:0.538240pt;}
.ls13_c00476{letter-spacing:0.542400pt;}
.ls47_c00476{letter-spacing:0.548427pt;}
.ls72_c00476{letter-spacing:0.554453pt;}
.ls21_c00476{letter-spacing:0.581547pt;}
.ls39_c00476{letter-spacing:0.614720pt;}
.ls64_c00476{letter-spacing:0.632800pt;}
.lsb_c00476{letter-spacing:0.638827pt;}
.ls12_c00476{letter-spacing:0.687040pt;}
.ls2d_c00476{letter-spacing:0.705120pt;}
.ls5_c00476{letter-spacing:0.723200pt;}
.ls44_c00476{letter-spacing:0.735253pt;}
.ls25_c00476{letter-spacing:0.753333pt;}
.ls14_c00476{letter-spacing:0.765387pt;}
.ls49_c00476{letter-spacing:0.777440pt;}
.ls2c_c00476{letter-spacing:0.795520pt;}
.ls3d_c00476{letter-spacing:0.801547pt;}
.ls24_c00476{letter-spacing:0.807573pt;}
.ls28_c00476{letter-spacing:0.831680pt;}
.ls6_c00476{letter-spacing:0.891947pt;}
.ls63_c00476{letter-spacing:0.897973pt;}
.ls42_c00476{letter-spacing:0.910027pt;}
.ls83_c00476{letter-spacing:0.928107pt;}
.lse_c00476{letter-spacing:0.934133pt;}
.ls36_c00476{letter-spacing:0.964267pt;}
.ls18_c00476{letter-spacing:0.970293pt;}
.ls1a_c00476{letter-spacing:0.976320pt;}
.ls6d_c00476{letter-spacing:0.988373pt;}
.ls50_c00476{letter-spacing:0.996053pt;}
.ls43_c00476{letter-spacing:1.006453pt;}
.ls58_c00476{letter-spacing:1.012480pt;}
.ls3e_c00476{letter-spacing:1.018507pt;}
.ls20_c00476{letter-spacing:1.024533pt;}
.ls15_c00476{letter-spacing:1.030560pt;}
.ls2e_c00476{letter-spacing:1.042613pt;}
.ls27_c00476{letter-spacing:1.060693pt;}
.ls40_c00476{letter-spacing:1.066720pt;}
.ls30_c00476{letter-spacing:1.072747pt;}
.ls2a_c00476{letter-spacing:1.114933pt;}
.ls3f_c00476{letter-spacing:1.120960pt;}
.lsd_c00476{letter-spacing:1.126987pt;}
.ls1e_c00476{letter-spacing:1.175200pt;}
.ls2_c00476{letter-spacing:1.205333pt;}
.ls48_c00476{letter-spacing:1.217387pt;}
.ls9_c00476{letter-spacing:1.247520pt;}
.ls1d_c00476{letter-spacing:1.259573pt;}
.ls3a_c00476{letter-spacing:1.313813pt;}
.ls1c_c00476{letter-spacing:1.319840pt;}
.ls46_c00476{letter-spacing:1.362027pt;}
.ls37_c00476{letter-spacing:1.386133pt;}
.ls26_c00476{letter-spacing:1.392160pt;}
.ls16_c00476{letter-spacing:1.416267pt;}
.ls33_c00476{letter-spacing:1.494613pt;}
.ls2f_c00476{letter-spacing:1.530773pt;}
.ls3b_c00476{letter-spacing:1.536800pt;}
.ls3_c00476{letter-spacing:1.554880pt;}
.ls23_c00476{letter-spacing:1.808000pt;}
.ls29_c00476{letter-spacing:1.814027pt;}
.ls0_c00476{letter-spacing:1.844160pt;}
.ls76_c00476{letter-spacing:1.850187pt;}
.lsc_c00476{letter-spacing:1.856213pt;}
.ls34_c00476{letter-spacing:2.369493pt;}
.ls31_c00476{letter-spacing:2.511787pt;}
.ls4c_c00476{letter-spacing:2.613333pt;}
.ls5f_c00476{letter-spacing:2.986667pt;}
.ls67_c00476{letter-spacing:3.013333pt;}
.ls51_c00476{letter-spacing:3.093333pt;}
.ws1_c00476{word-spacing:-3.608000pt;}
.ws8_c00476{word-spacing:0.000000pt;}
.ws3_c00476{word-spacing:0.494187pt;}
.ws5_c00476{word-spacing:2.921707pt;}
.ws6_c00476{word-spacing:9.321707pt;}
.ws0_c00476{word-spacing:10.980587pt;}
.ws2_c00476{word-spacing:13.300853pt;}
.ws7_c00476{word-spacing:17.380907pt;}
.ws4_c00476{word-spacing:24.287893pt;}
._13_c00476{margin-left:-7.756107pt;}
._7_c00476{margin-left:-2.895413pt;}
._8_c00476{margin-left:-0.897973pt;}
._a_c00476{width:1.591040pt;}
._5_c00476{width:2.502613pt;}
._9_c00476{width:4.114667pt;}
._6_c00476{width:5.128693pt;}
._14_c00476{width:6.195413pt;}
._f_c00476{width:7.457120pt;}
._2_c00476{width:9.040000pt;}
._0_c00476{width:10.305600pt;}
._4_c00476{width:11.266133pt;}
._d_c00476{width:12.222080pt;}
._3_c00476{width:13.120053pt;}
._e_c00476{width:14.054187pt;}
._15_c00476{width:15.377760pt;}
._b_c00476{width:16.937440pt;}
._16_c00476{width:18.803200pt;}
._c_c00476{width:21.269280pt;}
._1_c00476{width:22.985707pt;}
._11_c00476{width:25.179413pt;}
._12_c00476{width:26.276267pt;}
._10_c00476{width:30.600480pt;}
.fs5_c00476{font-size:51.200000pt;}
.fs0_c00476{font-size:52.266667pt;}
.fs4_c00476{font-size:59.733333pt;}
.fs1_c00476{font-size:60.266667pt;}
.fs2_c00476{font-size:61.866667pt;}
.fs3_c00476{font-size:62.400000pt;}
.y0_c00476{bottom:0.000000pt;}
.y1c_c00476{bottom:63.053347pt;}
.y1b_c00476{bottom:199.698013pt;}
.y1a_c00476{bottom:226.893347pt;}
.y19_c00476{bottom:281.613347pt;}
.y18_c00476{bottom:308.480013pt;}
.y17_c00476{bottom:363.533347pt;}
.y16_c00476{bottom:363.538013pt;}
.y15_c00476{bottom:390.733347pt;}
.y14_c00476{bottom:390.738013pt;}
.y13_c00476{bottom:417.933347pt;}
.y12_c00476{bottom:500.160013pt;}
.y11_c00476{bottom:555.201080pt;}
.y10_c00476{bottom:582.086547pt;}
.yf_c00476{bottom:609.613347pt;}
.yd_c00476{bottom:664.647480pt;}
.ye_c00476{bottom:664.653347pt;}
.yc_c00476{bottom:691.853347pt;}
.yb_c00476{bottom:746.556813pt;}
.ya_c00476{bottom:774.400013pt;}
.y8_c00476{bottom:801.286547pt;}
.y9_c00476{bottom:801.293347pt;}
.y7_c00476{bottom:828.807613pt;}
.y6_c00476{bottom:883.219747pt;}
.y4_c00476{bottom:910.392547pt;}
.y5_c00476{bottom:910.400013pt;}
.y3_c00476{bottom:964.808547pt;}
.y2_c00476{bottom:992.973347pt;}
.y1_c00476{bottom:1059.853347pt;}
.hc_c00476{height:50.250000pt;}
.h2_c00476{height:51.296875pt;}
.h5_c00476{height:59.148438pt;}
.h6_c00476{height:59.171371pt;}
.ha_c00476{height:60.662408pt;}
.hb_c00476{height:60.669875pt;}
.h3_c00476{height:60.688542pt;}
.h4_c00476{height:60.718408pt;}
.h8_c00476{height:62.300000pt;}
.h9_c00476{height:65.081250pt;}
.h7_c00476{height:65.108450pt;}
.h1_c00476{height:1122.666667pt;}
.h0_c00476{height:1122.880013pt;}
.w1_c00476{width:793.333333pt;}
.w0_c00476{width:793.600013pt;}
.x0_c00476{left:0.000000pt;}
.x1f_c00476{left:110.653347pt;}
.x1_c00476{left:111.626680pt;}
.x15_c00476{left:212.813347pt;}
.x16_c00476{left:229.013347pt;}
.x17_c00476{left:254.466680pt;}
.x5_c00476{left:262.320013pt;}
.xb_c00476{left:264.426680pt;}
.x20_c00476{left:273.666680pt;}
.x1d_c00476{left:277.560013pt;}
.xc_c00476{left:281.080013pt;}
.x6_c00476{left:282.920013pt;}
.x18_c00476{left:290.666680pt;}
.x9_c00476{left:292.640013pt;}
.x1e_c00476{left:296.506680pt;}
.xa_c00476{left:309.466680pt;}
.x21_c00476{left:311.466680pt;}
.x2_c00476{left:328.186680pt;}
.x19_c00476{left:340.640013pt;}
.x1a_c00476{left:359.213347pt;}
.xf_c00476{left:360.160013pt;}
.x22_c00476{left:363.680013pt;}
.x3_c00476{left:366.866680pt;}
.x10_c00476{left:377.880013pt;}
.x26_c00476{left:379.040013pt;}
.x23_c00476{left:384.173347pt;}
.x27_c00476{left:399.960013pt;}
.xd_c00476{left:415.200013pt;}
.x7_c00476{left:433.000013pt;}
.xe_c00476{left:437.786680pt;}
.x13_c00476{left:483.360013pt;}
.x8_c00476{left:486.013347pt;}
.x1b_c00476{left:493.600013pt;}
.x14_c00476{left:502.680013pt;}
.x24_c00476{left:522.400013pt;}
.x1c_c00476{left:530.253347pt;}
.x11_c00476{left:540.333347pt;}
.x25_c00476{left:561.293347pt;}
.x12_c00476{left:564.413347pt;}
.x4_c00476{left:656.453347pt;}
}





/* 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_c00477 {
    display:none;
  }
  .loading-indicator_c00477.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00477 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_c00477 { 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_c00477" -> "#page-container .classname_c00477")
 */
.pf_c00477 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00477 { /* 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_c00477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00477 { /* 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_c00477 { /* 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_c00477 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00477 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00477 {overflow:visible;}
  }
}
.c_c00477 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00477 { /* 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_c00477:after { /* webkit #35443 */
  content: '';
}
.t_c00477:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00477 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 */
}
.__c00477 { /* 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_c00477 { /* info for Javascript */
  display:none;
}
.l_c00477 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00477 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00477 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00477: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_c00477 {
    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_c00477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00477.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_c00477 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00477{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00477;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.311035;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_c00477;src:url('chunks/assets/font_7ec8c59a157124c4d5365091.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.284668;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_c00477;src:url('chunks/assets/font_40d84f365d052cdf43a117de.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;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:ff4_c00477;src:url('chunks/assets/font_2e6421c2cfb31c6abe7895ae.woff2')format("woff");}.ff4_c00477{font-family:ff4_c00477;line-height:1.284180;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_c00477;src:url('chunks/assets/font_1a2c6017df13bbda0947932d.woff2')format("woff");}.ff5_c00477{font-family:ff5_c00477;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;}
.m9_c00477{transform:matrix(0.227614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227614,0.000000,0.000000,0.250000,0,0);}
.m3_c00477{transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);}
.m7_c00477{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.m4_c00477{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.m2_c00477{transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248899,0.000000,0.000000,0.250000,0,0);}
.m0_c00477{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_c00477{transform:matrix(0.264031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264031,0.000000,0.000000,0.250000,0,0);}
.m6_c00477{transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280669,0.000000,0.000000,0.250000,0,0);}
.m8_c00477{transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);}
.m5_c00477{transform:matrix(0.286772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286772,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls60_c00477{letter-spacing:-2.436000px;}
.ls64_c00477{letter-spacing:-2.394000px;}
.ls81_c00477{letter-spacing:-2.310000px;}
.ls57_c00477{letter-spacing:-2.178480px;}
.ls58_c00477{letter-spacing:-2.018400px;}
.ls6a_c00477{letter-spacing:-1.942560px;}
.ls82_c00477{letter-spacing:-1.886160px;}
.ls67_c00477{letter-spacing:-1.846800px;}
.ls75_c00477{letter-spacing:-1.634760px;}
.ls5d_c00477{letter-spacing:-1.539000px;}
.ls61_c00477{letter-spacing:-1.538160px;}
.ls7d_c00477{letter-spacing:-1.489440px;}
.ls63_c00477{letter-spacing:-1.463760px;}
.ls59_c00477{letter-spacing:-1.461600px;}
.ls72_c00477{letter-spacing:-1.456920px;}
.ls7a_c00477{letter-spacing:-1.388520px;}
.ls83_c00477{letter-spacing:-0.932640px;}
.ls7f_c00477{letter-spacing:-0.916560px;}
.ls84_c00477{letter-spacing:-0.745560px;}
.ls73_c00477{letter-spacing:-0.738720px;}
.ls62_c00477{letter-spacing:-0.723840px;}
.ls6b_c00477{letter-spacing:-0.677160px;}
.ls69_c00477{letter-spacing:-0.601920px;}
.ls7c_c00477{letter-spacing:-0.556800px;}
.ls6d_c00477{letter-spacing:-0.315900px;}
.ls66_c00477{letter-spacing:-0.299280px;}
.ls55_c00477{letter-spacing:-0.212040px;}
.ls68_c00477{letter-spacing:-0.198360px;}
.ls74_c00477{letter-spacing:-0.171000px;}
.ls5a_c00477{letter-spacing:-0.167040px;}
.ls65_c00477{letter-spacing:-0.164160px;}
.ls5b_c00477{letter-spacing:-0.150480px;}
.ls85_c00477{letter-spacing:-0.098940px;}
.ls5e_c00477{letter-spacing:-0.088920px;}
.ls6e_c00477{letter-spacing:-0.082080px;}
.ls54_c00477{letter-spacing:0.000000px;}
.ls48_c00477{letter-spacing:0.109440px;}
.lsd_c00477{letter-spacing:0.116280px;}
.ls35_c00477{letter-spacing:0.150480px;}
.ls1_c00477{letter-spacing:0.164160px;}
.ls39_c00477{letter-spacing:0.167040px;}
.ls9_c00477{letter-spacing:0.171000px;}
.ls21_c00477{letter-spacing:0.180960px;}
.ls33_c00477{letter-spacing:0.191520px;}
.ls79_c00477{letter-spacing:0.194880px;}
.ls4_c00477{letter-spacing:0.198360px;}
.lsf_c00477{letter-spacing:0.205200px;}
.ls7b_c00477{letter-spacing:0.212040px;}
.ls77_c00477{letter-spacing:0.259920px;}
.ls70_c00477{letter-spacing:0.266760px;}
.ls76_c00477{letter-spacing:0.287280px;}
.ls1e_c00477{letter-spacing:0.348840px;}
.ls1b_c00477{letter-spacing:0.361920px;}
.ls52_c00477{letter-spacing:0.382800px;}
.ls32_c00477{letter-spacing:0.445440px;}
.ls3_c00477{letter-spacing:0.478800px;}
.ls1a_c00477{letter-spacing:0.492480px;}
.ls38_c00477{letter-spacing:0.506160px;}
.ls43_c00477{letter-spacing:0.528960px;}
.ls11_c00477{letter-spacing:0.554040px;}
.ls5c_c00477{letter-spacing:0.574560px;}
.ls3d_c00477{letter-spacing:0.598560px;}
.ls2f_c00477{letter-spacing:0.601920px;}
.ls20_c00477{letter-spacing:0.605520px;}
.ls80_c00477{letter-spacing:0.629280px;}
.ls8_c00477{letter-spacing:0.642960px;}
.ls44_c00477{letter-spacing:0.647280px;}
.ls6_c00477{letter-spacing:0.649800px;}
.lsc_c00477{letter-spacing:0.670320px;}
.ls13_c00477{letter-spacing:0.677160px;}
.ls71_c00477{letter-spacing:0.697680px;}
.ls2d_c00477{letter-spacing:0.718200px;}
.ls36_c00477{letter-spacing:0.731880px;}
.ls30_c00477{letter-spacing:0.745560px;}
.ls2b_c00477{letter-spacing:0.766080px;}
.ls31_c00477{letter-spacing:0.772560px;}
.ls42_c00477{letter-spacing:0.779760px;}
.ls37_c00477{letter-spacing:0.786600px;}
.ls1d_c00477{letter-spacing:0.807120px;}
.ls1f_c00477{letter-spacing:0.814320px;}
.ls27_c00477{letter-spacing:0.834480px;}
.ls4c_c00477{letter-spacing:0.841320px;}
.ls22_c00477{letter-spacing:0.848160px;}
.ls17_c00477{letter-spacing:0.896040px;}
.ls4d_c00477{letter-spacing:0.902880px;}
.ls28_c00477{letter-spacing:0.916560px;}
.ls5f_c00477{letter-spacing:0.937080px;}
.ls25_c00477{letter-spacing:0.984960px;}
.ls4f_c00477{letter-spacing:0.998640px;}
.ls7e_c00477{letter-spacing:1.026000px;}
.ls51_c00477{letter-spacing:1.044000px;}
.ls6f_c00477{letter-spacing:1.060200px;}
.ls41_c00477{letter-spacing:1.067040px;}
.ls46_c00477{letter-spacing:1.094400px;}
.ls47_c00477{letter-spacing:1.121760px;}
.ls1c_c00477{letter-spacing:1.128600px;}
.ls2a_c00477{letter-spacing:1.169640px;}
.ls49_c00477{letter-spacing:1.183320px;}
.ls3e_c00477{letter-spacing:1.231200px;}
.ls3c_c00477{letter-spacing:1.245840px;}
.ls6c_c00477{letter-spacing:1.279080px;}
.ls3f_c00477{letter-spacing:1.285920px;}
.ls34_c00477{letter-spacing:1.381680px;}
.ls3a_c00477{letter-spacing:1.392000px;}
.ls29_c00477{letter-spacing:1.402200px;}
.lse_c00477{letter-spacing:1.443240px;}
.ls5_c00477{letter-spacing:1.450080px;}
.ls24_c00477{letter-spacing:1.456920px;}
.ls4a_c00477{letter-spacing:1.477440px;}
.ls10_c00477{letter-spacing:1.532160px;}
.ls53_c00477{letter-spacing:1.536480px;}
.ls12_c00477{letter-spacing:1.545840px;}
.ls7_c00477{letter-spacing:1.559520px;}
.ls45_c00477{letter-spacing:1.573200px;}
.ls18_c00477{letter-spacing:1.614240px;}
.ls0_c00477{letter-spacing:1.634760px;}
.lsb_c00477{letter-spacing:1.662120px;}
.ls16_c00477{letter-spacing:1.778400px;}
.ls4b_c00477{letter-spacing:1.812600px;}
.lsa_c00477{letter-spacing:1.874160px;}
.ls40_c00477{letter-spacing:1.894680px;}
.ls2_c00477{letter-spacing:1.908360px;}
.ls19_c00477{letter-spacing:1.928880px;}
.ls78_c00477{letter-spacing:1.949400px;}
.ls15_c00477{letter-spacing:2.004120px;}
.ls23_c00477{letter-spacing:2.038320px;}
.ls2e_c00477{letter-spacing:2.058840px;}
.ls2c_c00477{letter-spacing:2.086200px;}
.ls4e_c00477{letter-spacing:2.147760px;}
.ls14_c00477{letter-spacing:2.305080px;}
.ls3b_c00477{letter-spacing:2.338560px;}
.ls26_c00477{letter-spacing:2.359800px;}
.ls50_c00477{letter-spacing:3.331080px;}
.ls56_c00477{letter-spacing:3.420000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{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__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00477{word-spacing:-1.053360px;}
.ws3_c00477{word-spacing:-0.711360px;}
.ws9_c00477{word-spacing:0.000000px;}
.ws1_c00477{word-spacing:1.580040px;}
.ws2_c00477{word-spacing:3.946680px;}
.ws5_c00477{word-spacing:9.343440px;}
.ws8_c00477{word-spacing:13.317480px;}
.ws7_c00477{word-spacing:24.934080px;}
.ws4_c00477{word-spacing:25.834680px;}
.ws0_c00477{word-spacing:44.234280px;}
._1a_c00477{margin-left:-13.449480px;}
._18_c00477{margin-left:-9.644400px;}
._1e_c00477{margin-left:-6.811200px;}
._c_c00477{margin-left:-2.589480px;}
._e_c00477{margin-left:-1.008840px;}
._6_c00477{width:1.255800px;}
._f_c00477{width:2.352960px;}
._b_c00477{width:3.725040px;}
._9_c00477{width:4.866480px;}
._d_c00477{width:6.618720px;}
._a_c00477{width:8.601480px;}
._15_c00477{width:10.460880px;}
._7_c00477{width:12.632400px;}
._1b_c00477{width:13.748400px;}
._17_c00477{width:15.251640px;}
._8_c00477{width:17.469600px;}
._16_c00477{width:19.640880px;}
._1d_c00477{width:22.024800px;}
._10_c00477{width:24.624000px;}
._13_c00477{width:25.830240px;}
._12_c00477{width:26.849520px;}
._11_c00477{width:27.920880px;}
._14_c00477{width:30.278160px;}
._2_c00477{width:31.806000px;}
._1c_c00477{width:36.574800px;}
._3_c00477{width:41.997960px;}
._5_c00477{width:43.858080px;}
._0_c00477{width:45.335520px;}
._1_c00477{width:46.512000px;}
._4_c00477{width:52.736400px;}
._19_c00477{width:71.014440px;}
.fc0_c00477{color:transparent;}
.fs0_c00477{font-size:58.200000px;}
.fs4_c00477{font-size:66.000000px;}
.fs1_c00477{font-size:68.400000px;}
.fs2_c00477{font-size:69.600000px;}
.fs3_c00477{font-size:70.200000px;}
.y0_c00477{bottom:0.000000px;}
.y1c_c00477{bottom:73.815000px;}
.y1b_c00477{bottom:226.095000px;}
.y1a_c00477{bottom:226.103100px;}
.y19_c00477{bottom:256.695000px;}
.y18_c00477{bottom:256.698000px;}
.y17_c00477{bottom:318.591600px;}
.y16_c00477{bottom:350.288100px;}
.y15_c00477{bottom:411.112800px;}
.y14_c00477{bottom:442.440000px;}
.y12_c00477{bottom:473.412300px;}
.y13_c00477{bottom:473.415000px;}
.y11_c00477{bottom:533.895000px;}
.y10_c00477{bottom:565.935000px;}
.yf_c00477{bottom:627.489000px;}
.ye_c00477{bottom:658.446900px;}
.yd_c00477{bottom:720.006900px;}
.yc_c00477{bottom:750.966900px;}
.yb_c00477{bottom:781.935000px;}
.ya_c00477{bottom:812.880000px;}
.y9_c00477{bottom:874.815000px;}
.y8_c00477{bottom:905.775000px;}
.y7_c00477{bottom:967.335000px;}
.y6_c00477{bottom:997.935000px;}
.y5_c00477{bottom:1060.205100px;}
.y3_c00477{bottom:1090.447800px;}
.y4_c00477{bottom:1090.455000px;}
.y2_c00477{bottom:1121.775000px;}
.y1_c00477{bottom:1198.455000px;}
.hc_c00477{height:57.120117px;}
.h2_c00477{height:58.654687px;}
.h4_c00477{height:67.130859px;}
.h7_c00477{height:67.154859px;}
.h9_c00477{height:67.164459px;}
.ha_c00477{height:68.242209px;}
.h5_c00477{height:68.274609px;}
.h8_c00477{height:68.302209px;}
.hb_c00477{height:68.835938px;}
.h3_c00477{height:71.339063px;}
.h6_c00477{height:73.248806px;}
.h1_c00477{height:1263.000000px;}
.h0_c00477{height:1263.240000px;}
.w1_c00477{width:892.500000px;}
.w0_c00477{width:892.800000px;}
.x0_c00477{left:0.000000px;}
.x14_c00477{left:120.048000px;}
.xf_c00477{left:121.216200px;}
.xa_c00477{left:122.325000px;}
.x5_c00477{left:124.125000px;}
.x2_c00477{left:125.205000px;}
.x1_c00477{left:126.990000px;}
.x9_c00477{left:166.695000px;}
.x10_c00477{left:198.990000px;}
.x11_c00477{left:214.545000px;}
.x3_c00477{left:234.900000px;}
.x4_c00477{left:280.365000px;}
.xb_c00477{left:356.925000px;}
.xc_c00477{left:376.560000px;}
.x19_c00477{left:423.555000px;}
.x17_c00477{left:455.985000px;}
.x7_c00477{left:467.085000px;}
.x18_c00477{left:473.685000px;}
.x8_c00477{left:489.450000px;}
.x12_c00477{left:514.710000px;}
.x15_c00477{left:527.580000px;}
.x16_c00477{left:549.675000px;}
.x13_c00477{left:552.165000px;}
.xd_c00477{left:688.500000px;}
.xe_c00477{left:707.880000px;}
.x6_c00477{left:715.500000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls60_c00477{letter-spacing:-2.165333pt;}
.ls64_c00477{letter-spacing:-2.128000pt;}
.ls81_c00477{letter-spacing:-2.053333pt;}
.ls57_c00477{letter-spacing:-1.936427pt;}
.ls58_c00477{letter-spacing:-1.794133pt;}
.ls6a_c00477{letter-spacing:-1.726720pt;}
.ls82_c00477{letter-spacing:-1.676587pt;}
.ls67_c00477{letter-spacing:-1.641600pt;}
.ls75_c00477{letter-spacing:-1.453120pt;}
.ls5d_c00477{letter-spacing:-1.368000pt;}
.ls61_c00477{letter-spacing:-1.367253pt;}
.ls7d_c00477{letter-spacing:-1.323947pt;}
.ls63_c00477{letter-spacing:-1.301120pt;}
.ls59_c00477{letter-spacing:-1.299200pt;}
.ls72_c00477{letter-spacing:-1.295040pt;}
.ls7a_c00477{letter-spacing:-1.234240pt;}
.ls83_c00477{letter-spacing:-0.829013pt;}
.ls7f_c00477{letter-spacing:-0.814720pt;}
.ls84_c00477{letter-spacing:-0.662720pt;}
.ls73_c00477{letter-spacing:-0.656640pt;}
.ls62_c00477{letter-spacing:-0.643413pt;}
.ls6b_c00477{letter-spacing:-0.601920pt;}
.ls69_c00477{letter-spacing:-0.535040pt;}
.ls7c_c00477{letter-spacing:-0.494933pt;}
.ls6d_c00477{letter-spacing:-0.280800pt;}
.ls66_c00477{letter-spacing:-0.266027pt;}
.ls55_c00477{letter-spacing:-0.188480pt;}
.ls68_c00477{letter-spacing:-0.176320pt;}
.ls74_c00477{letter-spacing:-0.152000pt;}
.ls5a_c00477{letter-spacing:-0.148480pt;}
.ls65_c00477{letter-spacing:-0.145920pt;}
.ls5b_c00477{letter-spacing:-0.133760pt;}
.ls85_c00477{letter-spacing:-0.087947pt;}
.ls5e_c00477{letter-spacing:-0.079040pt;}
.ls6e_c00477{letter-spacing:-0.072960pt;}
.ls54_c00477{letter-spacing:0.000000pt;}
.ls48_c00477{letter-spacing:0.097280pt;}
.lsd_c00477{letter-spacing:0.103360pt;}
.ls35_c00477{letter-spacing:0.133760pt;}
.ls1_c00477{letter-spacing:0.145920pt;}
.ls39_c00477{letter-spacing:0.148480pt;}
.ls9_c00477{letter-spacing:0.152000pt;}
.ls21_c00477{letter-spacing:0.160853pt;}
.ls33_c00477{letter-spacing:0.170240pt;}
.ls79_c00477{letter-spacing:0.173227pt;}
.ls4_c00477{letter-spacing:0.176320pt;}
.lsf_c00477{letter-spacing:0.182400pt;}
.ls7b_c00477{letter-spacing:0.188480pt;}
.ls77_c00477{letter-spacing:0.231040pt;}
.ls70_c00477{letter-spacing:0.237120pt;}
.ls76_c00477{letter-spacing:0.255360pt;}
.ls1e_c00477{letter-spacing:0.310080pt;}
.ls1b_c00477{letter-spacing:0.321707pt;}
.ls52_c00477{letter-spacing:0.340267pt;}
.ls32_c00477{letter-spacing:0.395947pt;}
.ls3_c00477{letter-spacing:0.425600pt;}
.ls1a_c00477{letter-spacing:0.437760pt;}
.ls38_c00477{letter-spacing:0.449920pt;}
.ls43_c00477{letter-spacing:0.470187pt;}
.ls11_c00477{letter-spacing:0.492480pt;}
.ls5c_c00477{letter-spacing:0.510720pt;}
.ls3d_c00477{letter-spacing:0.532053pt;}
.ls2f_c00477{letter-spacing:0.535040pt;}
.ls20_c00477{letter-spacing:0.538240pt;}
.ls80_c00477{letter-spacing:0.559360pt;}
.ls8_c00477{letter-spacing:0.571520pt;}
.ls44_c00477{letter-spacing:0.575360pt;}
.ls6_c00477{letter-spacing:0.577600pt;}
.lsc_c00477{letter-spacing:0.595840pt;}
.ls13_c00477{letter-spacing:0.601920pt;}
.ls71_c00477{letter-spacing:0.620160pt;}
.ls2d_c00477{letter-spacing:0.638400pt;}
.ls36_c00477{letter-spacing:0.650560pt;}
.ls30_c00477{letter-spacing:0.662720pt;}
.ls2b_c00477{letter-spacing:0.680960pt;}
.ls31_c00477{letter-spacing:0.686720pt;}
.ls42_c00477{letter-spacing:0.693120pt;}
.ls37_c00477{letter-spacing:0.699200pt;}
.ls1d_c00477{letter-spacing:0.717440pt;}
.ls1f_c00477{letter-spacing:0.723840pt;}
.ls27_c00477{letter-spacing:0.741760pt;}
.ls4c_c00477{letter-spacing:0.747840pt;}
.ls22_c00477{letter-spacing:0.753920pt;}
.ls17_c00477{letter-spacing:0.796480pt;}
.ls4d_c00477{letter-spacing:0.802560pt;}
.ls28_c00477{letter-spacing:0.814720pt;}
.ls5f_c00477{letter-spacing:0.832960pt;}
.ls25_c00477{letter-spacing:0.875520pt;}
.ls4f_c00477{letter-spacing:0.887680pt;}
.ls7e_c00477{letter-spacing:0.912000pt;}
.ls51_c00477{letter-spacing:0.928000pt;}
.ls6f_c00477{letter-spacing:0.942400pt;}
.ls41_c00477{letter-spacing:0.948480pt;}
.ls46_c00477{letter-spacing:0.972800pt;}
.ls47_c00477{letter-spacing:0.997120pt;}
.ls1c_c00477{letter-spacing:1.003200pt;}
.ls2a_c00477{letter-spacing:1.039680pt;}
.ls49_c00477{letter-spacing:1.051840pt;}
.ls3e_c00477{letter-spacing:1.094400pt;}
.ls3c_c00477{letter-spacing:1.107413pt;}
.ls6c_c00477{letter-spacing:1.136960pt;}
.ls3f_c00477{letter-spacing:1.143040pt;}
.ls34_c00477{letter-spacing:1.228160pt;}
.ls3a_c00477{letter-spacing:1.237333pt;}
.ls29_c00477{letter-spacing:1.246400pt;}
.lse_c00477{letter-spacing:1.282880pt;}
.ls5_c00477{letter-spacing:1.288960pt;}
.ls24_c00477{letter-spacing:1.295040pt;}
.ls4a_c00477{letter-spacing:1.313280pt;}
.ls10_c00477{letter-spacing:1.361920pt;}
.ls53_c00477{letter-spacing:1.365760pt;}
.ls12_c00477{letter-spacing:1.374080pt;}
.ls7_c00477{letter-spacing:1.386240pt;}
.ls45_c00477{letter-spacing:1.398400pt;}
.ls18_c00477{letter-spacing:1.434880pt;}
.ls0_c00477{letter-spacing:1.453120pt;}
.lsb_c00477{letter-spacing:1.477440pt;}
.ls16_c00477{letter-spacing:1.580800pt;}
.ls4b_c00477{letter-spacing:1.611200pt;}
.lsa_c00477{letter-spacing:1.665920pt;}
.ls40_c00477{letter-spacing:1.684160pt;}
.ls2_c00477{letter-spacing:1.696320pt;}
.ls19_c00477{letter-spacing:1.714560pt;}
.ls78_c00477{letter-spacing:1.732800pt;}
.ls15_c00477{letter-spacing:1.781440pt;}
.ls23_c00477{letter-spacing:1.811840pt;}
.ls2e_c00477{letter-spacing:1.830080pt;}
.ls2c_c00477{letter-spacing:1.854400pt;}
.ls4e_c00477{letter-spacing:1.909120pt;}
.ls14_c00477{letter-spacing:2.048960pt;}
.ls3b_c00477{letter-spacing:2.078720pt;}
.ls26_c00477{letter-spacing:2.097600pt;}
.ls50_c00477{letter-spacing:2.960960pt;}
.ls56_c00477{letter-spacing:3.040000pt;}
.ws6_c00477{word-spacing:-0.936320pt;}
.ws3_c00477{word-spacing:-0.632320pt;}
.ws9_c00477{word-spacing:0.000000pt;}
.ws1_c00477{word-spacing:1.404480pt;}
.ws2_c00477{word-spacing:3.508160pt;}
.ws5_c00477{word-spacing:8.305280pt;}
.ws8_c00477{word-spacing:11.837760pt;}
.ws7_c00477{word-spacing:22.163627pt;}
.ws4_c00477{word-spacing:22.964160pt;}
.ws0_c00477{word-spacing:39.319360pt;}
._1a_c00477{margin-left:-11.955093pt;}
._18_c00477{margin-left:-8.572800pt;}
._1e_c00477{margin-left:-6.054400pt;}
._c_c00477{margin-left:-2.301760pt;}
._e_c00477{margin-left:-0.896747pt;}
._6_c00477{width:1.116267pt;}
._f_c00477{width:2.091520pt;}
._b_c00477{width:3.311147pt;}
._9_c00477{width:4.325760pt;}
._d_c00477{width:5.883307pt;}
._a_c00477{width:7.645760pt;}
._15_c00477{width:9.298560pt;}
._7_c00477{width:11.228800pt;}
._1b_c00477{width:12.220800pt;}
._17_c00477{width:13.557013pt;}
._8_c00477{width:15.528533pt;}
._16_c00477{width:17.458560pt;}
._1d_c00477{width:19.577600pt;}
._10_c00477{width:21.888000pt;}
._13_c00477{width:22.960213pt;}
._12_c00477{width:23.866240pt;}
._11_c00477{width:24.818560pt;}
._14_c00477{width:26.913920pt;}
._2_c00477{width:28.272000pt;}
._1c_c00477{width:32.510933pt;}
._3_c00477{width:37.331520pt;}
._5_c00477{width:38.984960pt;}
._0_c00477{width:40.298240pt;}
._1_c00477{width:41.344000pt;}
._4_c00477{width:46.876800pt;}
._19_c00477{width:63.123947pt;}
.fs0_c00477{font-size:51.733333pt;}
.fs4_c00477{font-size:58.666667pt;}
.fs1_c00477{font-size:60.800000pt;}
.fs2_c00477{font-size:61.866667pt;}
.fs3_c00477{font-size:62.400000pt;}
.y0_c00477{bottom:0.000000pt;}
.y1c_c00477{bottom:65.613333pt;}
.y1b_c00477{bottom:200.973333pt;}
.y1a_c00477{bottom:200.980533pt;}
.y19_c00477{bottom:228.173333pt;}
.y18_c00477{bottom:228.176000pt;}
.y17_c00477{bottom:283.192533pt;}
.y16_c00477{bottom:311.367200pt;}
.y15_c00477{bottom:365.433600pt;}
.y14_c00477{bottom:393.280000pt;}
.y12_c00477{bottom:420.810933pt;}
.y13_c00477{bottom:420.813333pt;}
.y11_c00477{bottom:474.573333pt;}
.y10_c00477{bottom:503.053333pt;}
.yf_c00477{bottom:557.768000pt;}
.ye_c00477{bottom:585.286133pt;}
.yd_c00477{bottom:640.006133pt;}
.yc_c00477{bottom:667.526133pt;}
.yb_c00477{bottom:695.053333pt;}
.ya_c00477{bottom:722.560000pt;}
.y9_c00477{bottom:777.613333pt;}
.y8_c00477{bottom:805.133333pt;}
.y7_c00477{bottom:859.853333pt;}
.y6_c00477{bottom:887.053333pt;}
.y5_c00477{bottom:942.404533pt;}
.y3_c00477{bottom:969.286933pt;}
.y4_c00477{bottom:969.293333pt;}
.y2_c00477{bottom:997.133333pt;}
.y1_c00477{bottom:1065.293333pt;}
.hc_c00477{height:50.773437pt;}
.h2_c00477{height:52.137500pt;}
.h4_c00477{height:59.671875pt;}
.h7_c00477{height:59.693208pt;}
.h9_c00477{height:59.701742pt;}
.ha_c00477{height:60.659742pt;}
.h5_c00477{height:60.688542pt;}
.h8_c00477{height:60.713075pt;}
.hb_c00477{height:61.187500pt;}
.h3_c00477{height:63.412500pt;}
.h6_c00477{height:65.110050pt;}
.h1_c00477{height:1122.666667pt;}
.h0_c00477{height:1122.880000pt;}
.w1_c00477{width:793.333333pt;}
.w0_c00477{width:793.600000pt;}
.x0_c00477{left:0.000000pt;}
.x14_c00477{left:106.709333pt;}
.xf_c00477{left:107.747733pt;}
.xa_c00477{left:108.733333pt;}
.x5_c00477{left:110.333333pt;}
.x2_c00477{left:111.293333pt;}
.x1_c00477{left:112.880000pt;}
.x9_c00477{left:148.173333pt;}
.x10_c00477{left:176.880000pt;}
.x11_c00477{left:190.706667pt;}
.x3_c00477{left:208.800000pt;}
.x4_c00477{left:249.213333pt;}
.xb_c00477{left:317.266667pt;}
.xc_c00477{left:334.720000pt;}
.x19_c00477{left:376.493333pt;}
.x17_c00477{left:405.320000pt;}
.x7_c00477{left:415.186667pt;}
.x18_c00477{left:421.053333pt;}
.x8_c00477{left:435.066667pt;}
.x12_c00477{left:457.520000pt;}
.x15_c00477{left:468.960000pt;}
.x16_c00477{left:488.600000pt;}
.x13_c00477{left:490.813333pt;}
.xd_c00477{left:612.000000pt;}
.xe_c00477{left:629.226667pt;}
.x6_c00477{left:636.000000pt;}
}





/* 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_c00478 {
    display:none;
  }
  .loading-indicator_c00478.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00478 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_c00478 { 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_c00478" -> "#page-container .classname_c00478")
 */
.pf_c00478 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00478 { /* 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_c00478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00478 { /* 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_c00478 { /* 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_c00478 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00478 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00478 {overflow:visible;}
  }
}
.c_c00478 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00478 { /* 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_c00478:after { /* webkit #35443 */
  content: '';
}
.t_c00478:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00478 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 */
}
.__c00478 { /* 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_c00478 { /* info for Javascript */
  display:none;
}
.l_c00478 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00478 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00478 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00478: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_c00478 {
    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_c00478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00478.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_c00478 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00478{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00478;src:url('chunks/assets/font_62b99fa9c38fb5b01059d153.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.311035;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_c00478;src:url('chunks/assets/font_2ac37ca021d323cc30a870ff.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.284668;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_c00478;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;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:ff4_c00478;src:url('chunks/assets/font_83e9b747129c4057980aa74f.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:1.284180;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_c00478;src:url('chunks/assets/font_a864b3a7c10a769047e64e80.woff2')format("woff");}.ff5_c00478{font-family:ff5_c00478;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:ff6_c00478;src:url('chunks/assets/font_a3c35806682982ceeee55e98.woff2')format("woff");}.ff6_c00478{font-family:ff6_c00478;line-height:1.284180;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;}
.mb_c00478{transform:matrix(0.194559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194559,0.000000,0.000000,0.250000,0,0);}
.m15_c00478{transform:matrix(0.201060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201060,0.000000,0.000000,0.250000,0,0);}
.m18_c00478{transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);}
.m14_c00478{transform:matrix(0.226376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226376,0.000000,0.000000,0.250000,0,0);}
.m6_c00478{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.m20_c00478{transform:matrix(0.230713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230713,0.000000,0.000000,0.250000,0,0);}
.m12_c00478{transform:matrix(0.231317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231317,0.000000,0.000000,0.250000,0,0);}
.m4_c00478{transform:matrix(0.231394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231394,0.000000,0.000000,0.250000,0,0);}
.m8_c00478{transform:matrix(0.233591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233591,0.000000,0.000000,0.250000,0,0);}
.m1a_c00478{transform:matrix(0.237619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237619,0.000000,0.000000,0.250000,0,0);}
.m16_c00478{transform:matrix(0.239221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239221,0.000000,0.000000,0.250000,0,0);}
.m17_c00478{transform:matrix(0.240460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240460,0.000000,0.000000,0.250000,0,0);}
.m5_c00478{transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);}
.md_c00478{transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);}
.m1b_c00478{transform:matrix(0.243207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243207,0.000000,0.000000,0.250000,0,0);}
.mf_c00478{transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);}
.m1e_c00478{transform:matrix(0.244804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244804,0.000000,0.000000,0.250000,0,0);}
.ma_c00478{transform:matrix(0.245929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245929,0.000000,0.000000,0.250000,0,0);}
.m7_c00478{transform:matrix(0.245959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245959,0.000000,0.000000,0.250000,0,0);}
.m1_c00478{transform:matrix(0.246418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246418,0.000000,0.000000,0.250000,0,0);}
.m1c_c00478{transform:matrix(0.247006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247006,0.000000,0.000000,0.250000,0,0);}
.mc_c00478{transform:matrix(0.247196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247196,0.000000,0.000000,0.250000,0,0);}
.m9_c00478{transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);}
.m1f_c00478{transform:matrix(0.248754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248754,0.000000,0.000000,0.250000,0,0);}
.m13_c00478{transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);}
.m11_c00478{transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);}
.m2_c00478{transform:matrix(0.249491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249491,0.000000,0.000000,0.250000,0,0);}
.m0_c00478{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);}
.m19_c00478{transform:matrix(0.257459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257459,0.000000,0.000000,0.250000,0,0);}
.me_c00478{transform:matrix(0.267110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267110,0.000000,0.000000,0.250000,0,0);}
.m10_c00478{transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);}
.m1d_c00478{transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);}
.m3_c00478{transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls69_c00478{letter-spacing:-3.192000px;}
.ls63_c00478{letter-spacing:-2.667000px;}
.ls65_c00478{letter-spacing:-2.520000px;}
.ls67_c00478{letter-spacing:-2.499000px;}
.ls2a_c00478{letter-spacing:-2.436000px;}
.ls31_c00478{letter-spacing:-2.422080px;}
.ls3f_c00478{letter-spacing:-2.415000px;}
.ls66_c00478{letter-spacing:-2.291940px;}
.ls72_c00478{letter-spacing:-2.249400px;}
.ls5a_c00478{letter-spacing:-2.178480px;}
.ls6a_c00478{letter-spacing:-2.004480px;}
.ls42_c00478{letter-spacing:-1.948800px;}
.ls26_c00478{letter-spacing:-1.705200px;}
.ls71_c00478{letter-spacing:-1.690500px;}
.ls3c_c00478{letter-spacing:-1.607760px;}
.ls3b_c00478{letter-spacing:-1.559040px;}
.ls61_c00478{letter-spacing:-1.534380px;}
.ls52_c00478{letter-spacing:-1.475520px;}
.ls47_c00478{letter-spacing:-1.426800px;}
.ls76_c00478{letter-spacing:-1.398960px;}
.ls70_c00478{letter-spacing:-1.345500px;}
.ls25_c00478{letter-spacing:-1.336320px;}
.ls84_c00478{letter-spacing:-1.266720px;}
.ls32_c00478{letter-spacing:-1.113600px;}
.ls82_c00478{letter-spacing:-1.106640px;}
.ls86_c00478{letter-spacing:-0.993600px;}
.ls6f_c00478{letter-spacing:-0.986700px;}
.ls49_c00478{letter-spacing:-0.974400px;}
.ls46_c00478{letter-spacing:-0.946560px;}
.ls5f_c00478{letter-spacing:-0.883920px;}
.ls83_c00478{letter-spacing:-0.842160px;}
.ls73_c00478{letter-spacing:-0.835200px;}
.ls81_c00478{letter-spacing:-0.786600px;}
.ls28_c00478{letter-spacing:-0.737760px;}
.ls53_c00478{letter-spacing:-0.709920px;}
.ls77_c00478{letter-spacing:-0.690000px;}
.ls37_c00478{letter-spacing:-0.689040px;}
.ls33_c00478{letter-spacing:-0.668160px;}
.ls6c_c00478{letter-spacing:-0.647280px;}
.ls3d_c00478{letter-spacing:-0.641700px;}
.ls80_c00478{letter-spacing:-0.612480px;}
.ls7b_c00478{letter-spacing:-0.591600px;}
.ls35_c00478{letter-spacing:-0.563760px;}
.ls24_c00478{letter-spacing:-0.549840px;}
.ls27_c00478{letter-spacing:-0.522000px;}
.ls7f_c00478{letter-spacing:-0.501120px;}
.ls68_c00478{letter-spacing:-0.487200px;}
.ls23_c00478{letter-spacing:-0.452400px;}
.ls2d_c00478{letter-spacing:-0.431520px;}
.ls59_c00478{letter-spacing:-0.424560px;}
.ls79_c00478{letter-spacing:-0.410640px;}
.ls5d_c00478{letter-spacing:-0.403680px;}
.ls55_c00478{letter-spacing:-0.396720px;}
.ls7a_c00478{letter-spacing:-0.389760px;}
.ls4a_c00478{letter-spacing:-0.386400px;}
.ls5c_c00478{letter-spacing:-0.375840px;}
.ls4e_c00478{letter-spacing:-0.341040px;}
.ls5b_c00478{letter-spacing:-0.257520px;}
.ls4d_c00478{letter-spacing:-0.255300px;}
.ls75_c00478{letter-spacing:-0.243600px;}
.ls30_c00478{letter-spacing:-0.236640px;}
.ls62_c00478{letter-spacing:-0.224700px;}
.ls6b_c00478{letter-spacing:-0.215760px;}
.ls58_c00478{letter-spacing:-0.208800px;}
.ls51_c00478{letter-spacing:-0.201840px;}
.ls87_c00478{letter-spacing:-0.194880px;}
.ls45_c00478{letter-spacing:-0.187920px;}
.ls3e_c00478{letter-spacing:-0.158700px;}
.ls54_c00478{letter-spacing:-0.090480px;}
.ls6e_c00478{letter-spacing:-0.083520px;}
.ls57_c00478{letter-spacing:-0.076560px;}
.ls3a_c00478{letter-spacing:-0.055680px;}
.ls38_c00478{letter-spacing:-0.041760px;}
.ls39_c00478{letter-spacing:-0.034800px;}
.ls56_c00478{letter-spacing:-0.027840px;}
.ls4c_c00478{letter-spacing:-0.020700px;}
.ls5e_c00478{letter-spacing:-0.006960px;}
.ls2b_c00478{letter-spacing:0.000000px;}
.ls2_c00478{letter-spacing:0.006960px;}
.ls5_c00478{letter-spacing:0.013920px;}
.ls40_c00478{letter-spacing:0.027600px;}
.ls12_c00478{letter-spacing:0.041760px;}
.lsc_c00478{letter-spacing:0.048720px;}
.ls15_c00478{letter-spacing:0.082800px;}
.ls16_c00478{letter-spacing:0.104400px;}
.ls60_c00478{letter-spacing:0.111360px;}
.ls1b_c00478{letter-spacing:0.117300px;}
.ls4_c00478{letter-spacing:0.118320px;}
.ls41_c00478{letter-spacing:0.125280px;}
.ls1c_c00478{letter-spacing:0.160080px;}
.ls19_c00478{letter-spacing:0.160500px;}
.ls14_c00478{letter-spacing:0.167040px;}
.lsf_c00478{letter-spacing:0.172500px;}
.ls6_c00478{letter-spacing:0.174000px;}
.ls13_c00478{letter-spacing:0.180960px;}
.ls1e_c00478{letter-spacing:0.193200px;}
.ls2e_c00478{letter-spacing:0.236640px;}
.ls20_c00478{letter-spacing:0.243600px;}
.ls7c_c00478{letter-spacing:0.250560px;}
.ls3_c00478{letter-spacing:0.257520px;}
.ls18_c00478{letter-spacing:0.263220px;}
.lse_c00478{letter-spacing:0.269100px;}
.ls9_c00478{letter-spacing:0.276000px;}
.ls1_c00478{letter-spacing:0.285360px;}
.ls74_c00478{letter-spacing:0.320160px;}
.ls85_c00478{letter-spacing:0.327120px;}
.ls44_c00478{letter-spacing:0.331200px;}
.lsd_c00478{letter-spacing:0.345000px;}
.ls88_c00478{letter-spacing:0.345600px;}
.ls50_c00478{letter-spacing:0.361920px;}
.ls48_c00478{letter-spacing:0.375840px;}
.ls78_c00478{letter-spacing:0.441600px;}
.ls7d_c00478{letter-spacing:0.452400px;}
.ls11_c00478{letter-spacing:0.459360px;}
.lsb_c00478{letter-spacing:0.473280px;}
.ls6d_c00478{letter-spacing:0.522000px;}
.ls21_c00478{letter-spacing:0.524400px;}
.ls4f_c00478{letter-spacing:0.542880px;}
.ls36_c00478{letter-spacing:0.612480px;}
.ls2c_c00478{letter-spacing:0.626400px;}
.ls8_c00478{letter-spacing:0.669300px;}
.ls43_c00478{letter-spacing:0.758640px;}
.ls4b_c00478{letter-spacing:0.765900px;}
.ls17_c00478{letter-spacing:0.821280px;}
.ls7_c00478{letter-spacing:0.939600px;}
.ls1a_c00478{letter-spacing:1.033620px;}
.ls29_c00478{letter-spacing:1.078800px;}
.ls64_c00478{letter-spacing:1.290420px;}
.ls22_c00478{letter-spacing:1.408440px;}
.ls34_c00478{letter-spacing:1.697400px;}
.ls1d_c00478{letter-spacing:1.966500px;}
.lsa_c00478{letter-spacing:2.104500px;}
.ls1f_c00478{letter-spacing:2.728320px;}
.ls0_c00478{letter-spacing:3.132000px;}
.ls10_c00478{letter-spacing:3.277500px;}
.ls2f_c00478{letter-spacing:3.480000px;}
.ls7e_c00478{letter-spacing:3.570000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{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__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00478{word-spacing:0.000000px;}
.ws0_c00478{word-spacing:0.668160px;}
.ws4_c00478{word-spacing:5.052960px;}
.ws1_c00478{word-spacing:5.449680px;}
.ws2_c00478{word-spacing:12.444000px;}
.ws6_c00478{word-spacing:14.755200px;}
.ws3_c00478{word-spacing:17.560080px;}
.ws5_c00478{word-spacing:31.967280px;}
.ws7_c00478{word-spacing:32.642400px;}
._11_c00478{margin-left:-2.888640px;}
._9_c00478{margin-left:-1.823520px;}
._5_c00478{width:1.626000px;}
._1_c00478{width:3.093840px;}
._7_c00478{width:4.106400px;}
._4_c00478{width:5.430000px;}
._6_c00478{width:6.779040px;}
._0_c00478{width:8.305200px;}
._2_c00478{width:10.286880px;}
._3_c00478{width:12.218880px;}
._8_c00478{width:14.286960px;}
._e_c00478{width:16.286400px;}
._a_c00478{width:19.282500px;}
._10_c00478{width:20.618940px;}
._12_c00478{width:27.993120px;}
._b_c00478{width:29.604000px;}
._c_c00478{width:31.815900px;}
._d_c00478{width:33.171780px;}
._f_c00478{width:34.674720px;}
._13_c00478{width:38.481840px;}
.fc0_c00478{color:transparent;}
.fsa_c00478{font-size:57.600000px;}
.fs0_c00478{font-size:58.200000px;}
.fs6_c00478{font-size:64.200000px;}
.fs5_c00478{font-size:66.600000px;}
.fs3_c00478{font-size:67.200000px;}
.fs4_c00478{font-size:69.000000px;}
.fs1_c00478{font-size:69.600000px;}
.fs2_c00478{font-size:71.400000px;}
.fs8_c00478{font-size:72.000000px;}
.fs7_c00478{font-size:76.200000px;}
.fs9_c00478{font-size:91.200000px;}
.y0_c00478{bottom:0.000000px;}
.y22_c00478{bottom:69.855015px;}
.y21_c00478{bottom:131.038815px;}
.y20_c00478{bottom:161.280015px;}
.y1e_c00478{bottom:222.477615px;}
.y1f_c00478{bottom:222.480015px;}
.y1d_c00478{bottom:253.815015px;}
.y1b_c00478{bottom:314.996265px;}
.y1c_c00478{bottom:315.000015px;}
.y19_c00478{bottom:345.610815px;}
.y1a_c00478{bottom:345.615015px;}
.y18_c00478{bottom:407.520015px;}
.y16_c00478{bottom:438.476415px;}
.y17_c00478{bottom:438.480015px;}
.y15_c00478{bottom:500.055015px;}
.y14_c00478{bottom:530.295015px;}
.y13_c00478{bottom:560.895015px;}
.y12_c00478{bottom:622.815015px;}
.y11_c00478{bottom:653.415015px;}
.y10_c00478{bottom:653.420415px;}
.yf_c00478{bottom:684.375015px;}
.ye_c00478{bottom:746.295015px;}
.yc_c00478{bottom:777.253515px;}
.yd_c00478{bottom:777.255015px;}
.yb_c00478{bottom:808.200015px;}
.ya_c00478{bottom:869.415015px;}
.y8_c00478{bottom:900.352215px;}
.y9_c00478{bottom:900.360015px;}
.y7_c00478{bottom:961.200015px;}
.y5_c00478{bottom:992.517615px;}
.y6_c00478{bottom:992.520015px;}
.y4_c00478{bottom:1053.000015px;}
.y3_c00478{bottom:1084.335015px;}
.y2_c00478{bottom:1115.655015px;}
.y1_c00478{bottom:1190.175015px;}
.h11_c00478{height:56.531250px;}
.h2_c00478{height:58.654687px;}
.ha_c00478{height:64.701562px;}
.h6_c00478{height:67.686035px;}
.h7_c00478{height:67.719727px;}
.h3_c00478{height:68.308594px;}
.h10_c00478{height:68.313394px;}
.h8_c00478{height:68.314594px;}
.hf_c00478{height:68.323594px;}
.h9_c00478{height:69.461719px;}
.hd_c00478{height:70.040332px;}
.h4_c00478{height:70.075195px;}
.h5_c00478{height:70.087500px;}
.hc_c00478{height:70.628906px;}
.hb_c00478{height:76.795312px;}
.he_c00478{height:95.118750px;}
.h1_c00478{height:1263.000000px;}
.h0_c00478{height:1263.240015px;}
.w1_c00478{width:892.500000px;}
.w0_c00478{width:892.800015px;}
.x0_c00478{left:0.000000px;}
.x1_c00478{left:122.670015px;}
.x2_c00478{left:123.750015px;}
.xb_c00478{left:125.685015px;}
.x5_c00478{left:144.840015px;}
.x29_c00478{left:162.480015px;}
.x33_c00478{left:208.020015px;}
.x2a_c00478{left:212.655015px;}
.x1a_c00478{left:213.735015px;}
.x1f_c00478{left:215.175015px;}
.x42_c00478{left:225.285015px;}
.x3e_c00478{left:228.885015px;}
.x41_c00478{left:233.835015px;}
.x25_c00478{left:235.290015px;}
.x3b_c00478{left:242.175015px;}
.x8_c00478{left:245.325015px;}
.x1b_c00478{left:247.440015px;}
.x20_c00478{left:249.480015px;}
.x34_c00478{left:252.120015px;}
.x26_c00478{left:256.155015px;}
.x9_c00478{left:263.280015px;}
.x12_c00478{left:265.575015px;}
.xa_c00478{left:284.190015px;}
.x13_c00478{left:289.200015px;}
.x3a_c00478{left:301.500015px;}
.x6_c00478{left:306.900015px;}
.x2b_c00478{left:322.470015px;}
.x7_c00478{left:326.355015px;}
.x21_c00478{left:332.175015px;}
.x14_c00478{left:340.170015px;}
.x2c_c00478{left:344.280015px;}
.x18_c00478{left:349.005015px;}
.x22_c00478{left:356.880015px;}
.x2d_c00478{left:359.895015px;}
.x19_c00478{left:367.020015px;}
.x3c_c00478{left:369.975015px;}
.xc_c00478{left:378.135015px;}
.x2e_c00478{left:383.940015px;}
.x3d_c00478{left:387.870015px;}
.x15_c00478{left:394.815015px;}
.x3f_c00478{left:398.850015px;}
.xd_c00478{left:410.160015px;}
.x16_c00478{left:412.440015px;}
.x47_c00478{left:422.835015px;}
.x40_c00478{left:429.240015px;}
.x17_c00478{left:438.270015px;}
.x35_c00478{left:442.620015px;}
.x43_c00478{left:463.965015px;}
.x36_c00478{left:468.675015px;}
.xe_c00478{left:474.600015px;}
.xf_c00478{left:500.190015px;}
.x27_c00478{left:504.930015px;}
.x44_c00478{left:525.210015px;}
.x10_c00478{left:567.510015px;}
.x45_c00478{left:581.580015px;}
.x28_c00478{left:583.170015px;}
.x2f_c00478{left:591.165015px;}
.x11_c00478{left:603.840015px;}
.x30_c00478{left:610.005015px;}
.x3_c00478{left:611.205015px;}
.x37_c00478{left:616.500015px;}
.x1c_c00478{left:619.020015px;}
.x4_c00478{left:631.050015px;}
.x23_c00478{left:634.140015px;}
.x1d_c00478{left:645.405015px;}
.x38_c00478{left:649.020015px;}
.x24_c00478{left:656.970015px;}
.x46_c00478{left:678.780015px;}
.x31_c00478{left:679.845015px;}
.x1e_c00478{left:703.680015px;}
.x39_c00478{left:710.925015px;}
.x32_c00478{left:716.580015px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls69_c00478{letter-spacing:-2.837333pt;}
.ls63_c00478{letter-spacing:-2.370667pt;}
.ls65_c00478{letter-spacing:-2.240000pt;}
.ls67_c00478{letter-spacing:-2.221333pt;}
.ls2a_c00478{letter-spacing:-2.165333pt;}
.ls31_c00478{letter-spacing:-2.152960pt;}
.ls3f_c00478{letter-spacing:-2.146667pt;}
.ls66_c00478{letter-spacing:-2.037280pt;}
.ls72_c00478{letter-spacing:-1.999467pt;}
.ls5a_c00478{letter-spacing:-1.936427pt;}
.ls6a_c00478{letter-spacing:-1.781760pt;}
.ls42_c00478{letter-spacing:-1.732267pt;}
.ls26_c00478{letter-spacing:-1.515733pt;}
.ls71_c00478{letter-spacing:-1.502667pt;}
.ls3c_c00478{letter-spacing:-1.429120pt;}
.ls3b_c00478{letter-spacing:-1.385813pt;}
.ls61_c00478{letter-spacing:-1.363893pt;}
.ls52_c00478{letter-spacing:-1.311573pt;}
.ls47_c00478{letter-spacing:-1.268267pt;}
.ls76_c00478{letter-spacing:-1.243520pt;}
.ls70_c00478{letter-spacing:-1.196000pt;}
.ls25_c00478{letter-spacing:-1.187840pt;}
.ls84_c00478{letter-spacing:-1.125973pt;}
.ls32_c00478{letter-spacing:-0.989867pt;}
.ls82_c00478{letter-spacing:-0.983680pt;}
.ls86_c00478{letter-spacing:-0.883200pt;}
.ls6f_c00478{letter-spacing:-0.877067pt;}
.ls49_c00478{letter-spacing:-0.866133pt;}
.ls46_c00478{letter-spacing:-0.841387pt;}
.ls5f_c00478{letter-spacing:-0.785707pt;}
.ls83_c00478{letter-spacing:-0.748587pt;}
.ls73_c00478{letter-spacing:-0.742400pt;}
.ls81_c00478{letter-spacing:-0.699200pt;}
.ls28_c00478{letter-spacing:-0.655787pt;}
.ls53_c00478{letter-spacing:-0.631040pt;}
.ls77_c00478{letter-spacing:-0.613333pt;}
.ls37_c00478{letter-spacing:-0.612480pt;}
.ls33_c00478{letter-spacing:-0.593920pt;}
.ls6c_c00478{letter-spacing:-0.575360pt;}
.ls3d_c00478{letter-spacing:-0.570400pt;}
.ls80_c00478{letter-spacing:-0.544427pt;}
.ls7b_c00478{letter-spacing:-0.525867pt;}
.ls35_c00478{letter-spacing:-0.501120pt;}
.ls24_c00478{letter-spacing:-0.488747pt;}
.ls27_c00478{letter-spacing:-0.464000pt;}
.ls7f_c00478{letter-spacing:-0.445440pt;}
.ls68_c00478{letter-spacing:-0.433067pt;}
.ls23_c00478{letter-spacing:-0.402133pt;}
.ls2d_c00478{letter-spacing:-0.383573pt;}
.ls59_c00478{letter-spacing:-0.377387pt;}
.ls79_c00478{letter-spacing:-0.365013pt;}
.ls5d_c00478{letter-spacing:-0.358827pt;}
.ls55_c00478{letter-spacing:-0.352640pt;}
.ls7a_c00478{letter-spacing:-0.346453pt;}
.ls4a_c00478{letter-spacing:-0.343467pt;}
.ls5c_c00478{letter-spacing:-0.334080pt;}
.ls4e_c00478{letter-spacing:-0.303147pt;}
.ls5b_c00478{letter-spacing:-0.228907pt;}
.ls4d_c00478{letter-spacing:-0.226933pt;}
.ls75_c00478{letter-spacing:-0.216533pt;}
.ls30_c00478{letter-spacing:-0.210347pt;}
.ls62_c00478{letter-spacing:-0.199733pt;}
.ls6b_c00478{letter-spacing:-0.191787pt;}
.ls58_c00478{letter-spacing:-0.185600pt;}
.ls51_c00478{letter-spacing:-0.179413pt;}
.ls87_c00478{letter-spacing:-0.173227pt;}
.ls45_c00478{letter-spacing:-0.167040pt;}
.ls3e_c00478{letter-spacing:-0.141067pt;}
.ls54_c00478{letter-spacing:-0.080427pt;}
.ls6e_c00478{letter-spacing:-0.074240pt;}
.ls57_c00478{letter-spacing:-0.068053pt;}
.ls3a_c00478{letter-spacing:-0.049493pt;}
.ls38_c00478{letter-spacing:-0.037120pt;}
.ls39_c00478{letter-spacing:-0.030933pt;}
.ls56_c00478{letter-spacing:-0.024747pt;}
.ls4c_c00478{letter-spacing:-0.018400pt;}
.ls5e_c00478{letter-spacing:-0.006187pt;}
.ls2b_c00478{letter-spacing:0.000000pt;}
.ls2_c00478{letter-spacing:0.006187pt;}
.ls5_c00478{letter-spacing:0.012373pt;}
.ls40_c00478{letter-spacing:0.024533pt;}
.ls12_c00478{letter-spacing:0.037120pt;}
.lsc_c00478{letter-spacing:0.043307pt;}
.ls15_c00478{letter-spacing:0.073600pt;}
.ls16_c00478{letter-spacing:0.092800pt;}
.ls60_c00478{letter-spacing:0.098987pt;}
.ls1b_c00478{letter-spacing:0.104267pt;}
.ls4_c00478{letter-spacing:0.105173pt;}
.ls41_c00478{letter-spacing:0.111360pt;}
.ls1c_c00478{letter-spacing:0.142293pt;}
.ls19_c00478{letter-spacing:0.142667pt;}
.ls14_c00478{letter-spacing:0.148480pt;}
.lsf_c00478{letter-spacing:0.153333pt;}
.ls6_c00478{letter-spacing:0.154667pt;}
.ls13_c00478{letter-spacing:0.160853pt;}
.ls1e_c00478{letter-spacing:0.171733pt;}
.ls2e_c00478{letter-spacing:0.210347pt;}
.ls20_c00478{letter-spacing:0.216533pt;}
.ls7c_c00478{letter-spacing:0.222720pt;}
.ls3_c00478{letter-spacing:0.228907pt;}
.ls18_c00478{letter-spacing:0.233973pt;}
.lse_c00478{letter-spacing:0.239200pt;}
.ls9_c00478{letter-spacing:0.245333pt;}
.ls1_c00478{letter-spacing:0.253653pt;}
.ls74_c00478{letter-spacing:0.284587pt;}
.ls85_c00478{letter-spacing:0.290773pt;}
.ls44_c00478{letter-spacing:0.294400pt;}
.lsd_c00478{letter-spacing:0.306667pt;}
.ls88_c00478{letter-spacing:0.307200pt;}
.ls50_c00478{letter-spacing:0.321707pt;}
.ls48_c00478{letter-spacing:0.334080pt;}
.ls78_c00478{letter-spacing:0.392533pt;}
.ls7d_c00478{letter-spacing:0.402133pt;}
.ls11_c00478{letter-spacing:0.408320pt;}
.lsb_c00478{letter-spacing:0.420693pt;}
.ls6d_c00478{letter-spacing:0.464000pt;}
.ls21_c00478{letter-spacing:0.466133pt;}
.ls4f_c00478{letter-spacing:0.482560pt;}
.ls36_c00478{letter-spacing:0.544427pt;}
.ls2c_c00478{letter-spacing:0.556800pt;}
.ls8_c00478{letter-spacing:0.594933pt;}
.ls43_c00478{letter-spacing:0.674347pt;}
.ls4b_c00478{letter-spacing:0.680800pt;}
.ls17_c00478{letter-spacing:0.730027pt;}
.ls7_c00478{letter-spacing:0.835200pt;}
.ls1a_c00478{letter-spacing:0.918773pt;}
.ls29_c00478{letter-spacing:0.958933pt;}
.ls64_c00478{letter-spacing:1.147040pt;}
.ls22_c00478{letter-spacing:1.251947pt;}
.ls34_c00478{letter-spacing:1.508800pt;}
.ls1d_c00478{letter-spacing:1.748000pt;}
.lsa_c00478{letter-spacing:1.870667pt;}
.ls1f_c00478{letter-spacing:2.425173pt;}
.ls0_c00478{letter-spacing:2.784000pt;}
.ls10_c00478{letter-spacing:2.913333pt;}
.ls2f_c00478{letter-spacing:3.093333pt;}
.ls7e_c00478{letter-spacing:3.173333pt;}
.ws8_c00478{word-spacing:0.000000pt;}
.ws0_c00478{word-spacing:0.593920pt;}
.ws4_c00478{word-spacing:4.491520pt;}
.ws1_c00478{word-spacing:4.844160pt;}
.ws2_c00478{word-spacing:11.061333pt;}
.ws6_c00478{word-spacing:13.115733pt;}
.ws3_c00478{word-spacing:15.608960pt;}
.ws5_c00478{word-spacing:28.415360pt;}
.ws7_c00478{word-spacing:29.015467pt;}
._11_c00478{margin-left:-2.567680pt;}
._9_c00478{margin-left:-1.620907pt;}
._5_c00478{width:1.445333pt;}
._1_c00478{width:2.750080pt;}
._7_c00478{width:3.650133pt;}
._4_c00478{width:4.826667pt;}
._6_c00478{width:6.025813pt;}
._0_c00478{width:7.382400pt;}
._2_c00478{width:9.143893pt;}
._3_c00478{width:10.861227pt;}
._8_c00478{width:12.699520pt;}
._e_c00478{width:14.476800pt;}
._a_c00478{width:17.140000pt;}
._10_c00478{width:18.327947pt;}
._12_c00478{width:24.882773pt;}
._b_c00478{width:26.314667pt;}
._c_c00478{width:28.280800pt;}
._d_c00478{width:29.486027pt;}
._f_c00478{width:30.821973pt;}
._13_c00478{width:34.206080pt;}
.fsa_c00478{font-size:51.200000pt;}
.fs0_c00478{font-size:51.733333pt;}
.fs6_c00478{font-size:57.066667pt;}
.fs5_c00478{font-size:59.200000pt;}
.fs3_c00478{font-size:59.733333pt;}
.fs4_c00478{font-size:61.333333pt;}
.fs1_c00478{font-size:61.866667pt;}
.fs2_c00478{font-size:63.466667pt;}
.fs8_c00478{font-size:64.000000pt;}
.fs7_c00478{font-size:67.733333pt;}
.fs9_c00478{font-size:81.066667pt;}
.y0_c00478{bottom:0.000000pt;}
.y22_c00478{bottom:62.093347pt;}
.y21_c00478{bottom:116.478947pt;}
.y20_c00478{bottom:143.360013pt;}
.y1e_c00478{bottom:197.757880pt;}
.y1f_c00478{bottom:197.760013pt;}
.y1d_c00478{bottom:225.613347pt;}
.y1b_c00478{bottom:279.996680pt;}
.y1c_c00478{bottom:280.000013pt;}
.y19_c00478{bottom:307.209613pt;}
.y1a_c00478{bottom:307.213347pt;}
.y18_c00478{bottom:362.240013pt;}
.y16_c00478{bottom:389.756813pt;}
.y17_c00478{bottom:389.760013pt;}
.y15_c00478{bottom:444.493347pt;}
.y14_c00478{bottom:471.373347pt;}
.y13_c00478{bottom:498.573347pt;}
.y12_c00478{bottom:553.613347pt;}
.y11_c00478{bottom:580.813347pt;}
.y10_c00478{bottom:580.818147pt;}
.yf_c00478{bottom:608.333347pt;}
.ye_c00478{bottom:663.373347pt;}
.yc_c00478{bottom:690.892013pt;}
.yd_c00478{bottom:690.893347pt;}
.yb_c00478{bottom:718.400013pt;}
.ya_c00478{bottom:772.813347pt;}
.y8_c00478{bottom:800.313080pt;}
.y9_c00478{bottom:800.320013pt;}
.y7_c00478{bottom:854.400013pt;}
.y5_c00478{bottom:882.237880pt;}
.y6_c00478{bottom:882.240013pt;}
.y4_c00478{bottom:936.000013pt;}
.y3_c00478{bottom:963.853347pt;}
.y2_c00478{bottom:991.693347pt;}
.y1_c00478{bottom:1057.933347pt;}
.h11_c00478{height:50.250000pt;}
.h2_c00478{height:52.137500pt;}
.ha_c00478{height:57.512500pt;}
.h6_c00478{height:60.165365pt;}
.h7_c00478{height:60.195312pt;}
.h3_c00478{height:60.718750pt;}
.h10_c00478{height:60.723017pt;}
.h8_c00478{height:60.724083pt;}
.hf_c00478{height:60.732083pt;}
.h9_c00478{height:61.743750pt;}
.hd_c00478{height:62.258073pt;}
.h4_c00478{height:62.289062pt;}
.h5_c00478{height:62.300000pt;}
.hc_c00478{height:62.781250pt;}
.hb_c00478{height:68.262500pt;}
.he_c00478{height:84.550000pt;}
.h1_c00478{height:1122.666667pt;}
.h0_c00478{height:1122.880013pt;}
.w1_c00478{width:793.333333pt;}
.w0_c00478{width:793.600013pt;}
.x0_c00478{left:0.000000pt;}
.x1_c00478{left:109.040013pt;}
.x2_c00478{left:110.000013pt;}
.xb_c00478{left:111.720013pt;}
.x5_c00478{left:128.746680pt;}
.x29_c00478{left:144.426680pt;}
.x33_c00478{left:184.906680pt;}
.x2a_c00478{left:189.026680pt;}
.x1a_c00478{left:189.986680pt;}
.x1f_c00478{left:191.266680pt;}
.x42_c00478{left:200.253347pt;}
.x3e_c00478{left:203.453347pt;}
.x41_c00478{left:207.853347pt;}
.x25_c00478{left:209.146680pt;}
.x3b_c00478{left:215.266680pt;}
.x8_c00478{left:218.066680pt;}
.x1b_c00478{left:219.946680pt;}
.x20_c00478{left:221.760013pt;}
.x34_c00478{left:224.106680pt;}
.x26_c00478{left:227.693347pt;}
.x9_c00478{left:234.026680pt;}
.x12_c00478{left:236.066680pt;}
.xa_c00478{left:252.613347pt;}
.x13_c00478{left:257.066680pt;}
.x3a_c00478{left:268.000013pt;}
.x6_c00478{left:272.800013pt;}
.x2b_c00478{left:286.640013pt;}
.x7_c00478{left:290.093347pt;}
.x21_c00478{left:295.266680pt;}
.x14_c00478{left:302.373347pt;}
.x2c_c00478{left:306.026680pt;}
.x18_c00478{left:310.226680pt;}
.x22_c00478{left:317.226680pt;}
.x2d_c00478{left:319.906680pt;}
.x19_c00478{left:326.240013pt;}
.x3c_c00478{left:328.866680pt;}
.xc_c00478{left:336.120013pt;}
.x2e_c00478{left:341.280013pt;}
.x3d_c00478{left:344.773347pt;}
.x15_c00478{left:350.946680pt;}
.x3f_c00478{left:354.533347pt;}
.xd_c00478{left:364.586680pt;}
.x16_c00478{left:366.613347pt;}
.x47_c00478{left:375.853347pt;}
.x40_c00478{left:381.546680pt;}
.x17_c00478{left:389.573347pt;}
.x35_c00478{left:393.440013pt;}
.x43_c00478{left:412.413347pt;}
.x36_c00478{left:416.600013pt;}
.xe_c00478{left:421.866680pt;}
.xf_c00478{left:444.613347pt;}
.x27_c00478{left:448.826680pt;}
.x44_c00478{left:466.853347pt;}
.x10_c00478{left:504.453347pt;}
.x45_c00478{left:516.960013pt;}
.x28_c00478{left:518.373347pt;}
.x2f_c00478{left:525.480013pt;}
.x11_c00478{left:536.746680pt;}
.x30_c00478{left:542.226680pt;}
.x3_c00478{left:543.293347pt;}
.x37_c00478{left:548.000013pt;}
.x1c_c00478{left:550.240013pt;}
.x4_c00478{left:560.933347pt;}
.x23_c00478{left:563.680013pt;}
.x1d_c00478{left:573.693347pt;}
.x38_c00478{left:576.906680pt;}
.x24_c00478{left:583.973347pt;}
.x46_c00478{left:603.360013pt;}
.x31_c00478{left:604.306680pt;}
.x1e_c00478{left:625.493347pt;}
.x39_c00478{left:631.933347pt;}
.x32_c00478{left:636.960013pt;}
}





/* 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_c00479 {
    display:none;
  }
  .loading-indicator_c00479.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00479 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_c00479 { 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_c00479" -> "#page-container .classname_c00479")
 */
.pf_c00479 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00479 { /* 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_c00479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00479 { /* 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_c00479 { /* 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_c00479 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00479 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00479 {overflow:visible;}
  }
}
.c_c00479 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00479 { /* 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_c00479:after { /* webkit #35443 */
  content: '';
}
.t_c00479:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00479 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 */
}
.__c00479 { /* 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_c00479 { /* info for Javascript */
  display:none;
}
.l_c00479 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00479 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00479 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00479: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_c00479 {
    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_c00479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00479.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_c00479 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00479{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00479;src:url('chunks/assets/font_7845df797838e51163cfad15.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.311035;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_c00479;src:url('chunks/assets/font_bb8b506985b4ec7b5415cc56.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.284668;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_c00479;src:url('chunks/assets/font_efdbb53ebd650222111c8757.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.284180;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_c00479;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff4_c00479{font-family:ff4_c00479;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:ff5_c00479;src:url('chunks/assets/font_cdfa3c45ac75a3ac07082ba3.woff2')format("woff");}.ff5_c00479{font-family:ff5_c00479;line-height:0.666000;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_c00479;src:url('chunks/assets/font_ea53e7c8234f94e9997a2dd7.woff2')format("woff");}.ff6_c00479{font-family:ff6_c00479;line-height:1.284180;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;}
.mc_c00479{transform:matrix(0.112782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112782,0.000000,0.000000,0.250000,0,0);}
.md_c00479{transform:matrix(0.119619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119619,0.000000,0.000000,0.250000,0,0);}
.me_c00479{transform:matrix(0.121965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121965,0.000000,0.000000,0.250000,0,0);}
.m10_c00479{transform:matrix(0.123687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123687,0.000000,0.000000,0.250000,0,0);}
.mf_c00479{transform:matrix(0.229933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229933,0.000000,0.000000,0.250000,0,0);}
.ma_c00479{transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);}
.m9_c00479{transform:matrix(0.245456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245456,0.000000,0.000000,0.250000,0,0);}
.m5_c00479{transform:matrix(0.246591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246591,0.000000,0.000000,0.250000,0,0);}
.mb_c00479{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.m0_c00479{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);}
.m4_c00479{transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);}
.m3_c00479{transform:matrix(0.252376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252376,0.000000,0.000000,0.250000,0,0);}
.m6_c00479{transform:matrix(0.261611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261611,0.000000,0.000000,0.250000,0,0);}
.m11_c00479{transform:matrix(0.264458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264458,0.000000,0.000000,0.250000,0,0);}
.m7_c00479{transform:matrix(0.272546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272546,0.000000,0.000000,0.250000,0,0);}
.m8_c00479{transform:matrix(0.276998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276998,0.000000,0.000000,0.250000,0,0);}
.m1_c00479{transform:matrix(0.283153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283153,0.000000,0.000000,0.250000,0,0);}
.m2_c00479{transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls76_c00479{letter-spacing:-2.583000px;}
.ls6e_c00479{letter-spacing:-2.520000px;}
.ls5c_c00479{letter-spacing:-2.373000px;}
.ls51_c00479{letter-spacing:-1.986540px;}
.ls75_c00479{letter-spacing:-1.873080px;}
.ls5e_c00479{letter-spacing:-1.674660px;}
.ls74_c00479{letter-spacing:-1.614240px;}
.ls73_c00479{letter-spacing:-1.566360px;}
.ls7a_c00479{letter-spacing:-1.267860px;}
.ls78_c00479{letter-spacing:-1.240740px;}
.ls5f_c00479{letter-spacing:-1.220400px;}
.ls63_c00479{letter-spacing:-1.186500px;}
.ls70_c00479{letter-spacing:-1.118700px;}
.ls6b_c00479{letter-spacing:-0.739020px;}
.ls6a_c00479{letter-spacing:-0.528840px;}
.ls68_c00479{letter-spacing:-0.345780px;}
.ls5d_c00479{letter-spacing:-0.339000px;}
.ls64_c00479{letter-spacing:-0.318660px;}
.ls71_c00479{letter-spacing:-0.294120px;}
.ls60_c00479{letter-spacing:-0.257640px;}
.ls57_c00479{letter-spacing:-0.250860px;}
.ls72_c00479{letter-spacing:-0.191520px;}
.ls52_c00479{letter-spacing:-0.074580px;}
.ls6f_c00479{letter-spacing:-0.067800px;}
.ls59_c00479{letter-spacing:-0.027120px;}
.ls55_c00479{letter-spacing:0.000000px;}
.ls3f_c00479{letter-spacing:0.033900px;}
.ls15_c00479{letter-spacing:0.047460px;}
.ls3d_c00479{letter-spacing:0.216960px;}
.lsc_c00479{letter-spacing:0.250860px;}
.ls7c_c00479{letter-spacing:0.270480px;}
.ls13_c00479{letter-spacing:0.298320px;}
.ls6_c00479{letter-spacing:0.359340px;}
.ls65_c00479{letter-spacing:0.366120px;}
.ls27_c00479{letter-spacing:0.386460px;}
.ls6c_c00479{letter-spacing:0.393240px;}
.ls14_c00479{letter-spacing:0.400020px;}
.ls43_c00479{letter-spacing:0.440700px;}
.ls22_c00479{letter-spacing:0.481380px;}
.ls3_c00479{letter-spacing:0.501720px;}
.ls69_c00479{letter-spacing:0.508500px;}
.ls17_c00479{letter-spacing:0.515280px;}
.ls67_c00479{letter-spacing:0.549180px;}
.ls5a_c00479{letter-spacing:0.610200px;}
.ls1_c00479{letter-spacing:0.664440px;}
.ls7b_c00479{letter-spacing:0.711900px;}
.ls2_c00479{letter-spacing:0.732240px;}
.ls4e_c00479{letter-spacing:0.739020px;}
.ls37_c00479{letter-spacing:0.752580px;}
.ls2e_c00479{letter-spacing:0.793260px;}
.ls29_c00479{letter-spacing:0.806820px;}
.ls36_c00479{letter-spacing:0.840720px;}
.lsb_c00479{letter-spacing:0.854280px;}
.ls56_c00479{letter-spacing:0.861060px;}
.ls42_c00479{letter-spacing:0.894960px;}
.ls1c_c00479{letter-spacing:0.908520px;}
.ls46_c00479{letter-spacing:0.922080px;}
.ls2a_c00479{letter-spacing:0.928860px;}
.ls1d_c00479{letter-spacing:0.942420px;}
.ls3c_c00479{letter-spacing:0.976320px;}
.ls23_c00479{letter-spacing:0.983100px;}
.ls41_c00479{letter-spacing:0.989880px;}
.ls10_c00479{letter-spacing:1.003440px;}
.lsf_c00479{letter-spacing:1.030560px;}
.ls19_c00479{letter-spacing:1.037340px;}
.ls4d_c00479{letter-spacing:1.057680px;}
.ls47_c00479{letter-spacing:1.071240px;}
.lsa_c00479{letter-spacing:1.084800px;}
.ls4_c00479{letter-spacing:1.091580px;}
.lse_c00479{letter-spacing:1.098360px;}
.ls5_c00479{letter-spacing:1.132260px;}
.ls79_c00479{letter-spacing:1.152600px;}
.ls58_c00479{letter-spacing:1.159380px;}
.ls40_c00479{letter-spacing:1.179720px;}
.lsd_c00479{letter-spacing:1.193280px;}
.ls7_c00479{letter-spacing:1.200060px;}
.ls5b_c00479{letter-spacing:1.206840px;}
.ls32_c00479{letter-spacing:1.227180px;}
.ls11_c00479{letter-spacing:1.254300px;}
.ls33_c00479{letter-spacing:1.294980px;}
.ls1a_c00479{letter-spacing:1.301760px;}
.ls49_c00479{letter-spacing:1.315320px;}
.ls66_c00479{letter-spacing:1.335660px;}
.ls25_c00479{letter-spacing:1.349220px;}
.ls3e_c00479{letter-spacing:1.362780px;}
.ls31_c00479{letter-spacing:1.376340px;}
.ls4c_c00479{letter-spacing:1.417020px;}
.ls39_c00479{letter-spacing:1.423800px;}
.ls2b_c00479{letter-spacing:1.430580px;}
.ls4a_c00479{letter-spacing:1.450920px;}
.ls34_c00479{letter-spacing:1.457700px;}
.ls3a_c00479{letter-spacing:1.464480px;}
.ls8_c00479{letter-spacing:1.478040px;}
.ls2f_c00479{letter-spacing:1.484820px;}
.ls4f_c00479{letter-spacing:1.505160px;}
.ls53_c00479{letter-spacing:1.525500px;}
.ls50_c00479{letter-spacing:1.536480px;}
.ls24_c00479{letter-spacing:1.539060px;}
.ls4b_c00479{letter-spacing:1.559400px;}
.ls2c_c00479{letter-spacing:1.566180px;}
.ls6d_c00479{letter-spacing:1.572960px;}
.ls77_c00479{letter-spacing:1.579740px;}
.ls62_c00479{letter-spacing:1.606860px;}
.ls20_c00479{letter-spacing:1.633980px;}
.ls26_c00479{letter-spacing:1.681440px;}
.ls1f_c00479{letter-spacing:1.688220px;}
.ls44_c00479{letter-spacing:1.722120px;}
.ls18_c00479{letter-spacing:1.728900px;}
.ls30_c00479{letter-spacing:1.749240px;}
.ls16_c00479{letter-spacing:1.789920px;}
.ls1b_c00479{letter-spacing:1.857720px;}
.ls61_c00479{letter-spacing:1.864500px;}
.ls48_c00479{letter-spacing:1.911960px;}
.ls0_c00479{letter-spacing:2.027220px;}
.ls12_c00479{letter-spacing:2.128920px;}
.ls38_c00479{letter-spacing:2.149260px;}
.ls21_c00479{letter-spacing:2.196720px;}
.ls3b_c00479{letter-spacing:2.203500px;}
.ls2d_c00479{letter-spacing:2.522160px;}
.ls9_c00479{letter-spacing:2.576400px;}
.ls1e_c00479{letter-spacing:2.583180px;}
.ls28_c00479{letter-spacing:2.630640px;}
.ls45_c00479{letter-spacing:2.705220px;}
.ls35_c00479{letter-spacing:3.051000px;}
.ls54_c00479{letter-spacing:3.390000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{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__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00479{word-spacing:-2.020440px;}
.ws7_c00479{word-spacing:-1.817040px;}
.ws5_c00479{word-spacing:-0.867840px;}
.wsb_c00479{word-spacing:0.000000px;}
.ws8_c00479{word-spacing:3.023880px;}
.ws6_c00479{word-spacing:4.809780px;}
.ws3_c00479{word-spacing:6.590160px;}
.ws4_c00479{word-spacing:7.878360px;}
.wsa_c00479{word-spacing:14.075280px;}
.ws2_c00479{word-spacing:17.830560px;}
.ws1_c00479{word-spacing:21.167160px;}
.ws9_c00479{word-spacing:25.543440px;}
._14_c00479{margin-left:-5.958480px;}
._c_c00479{margin-left:-4.417680px;}
._0_c00479{margin-left:-3.186600px;}
._3_c00479{margin-left:-1.932300px;}
._12_c00479{width:1.037340px;}
._1_c00479{width:2.508600px;}
._a_c00479{width:3.708660px;}
._13_c00479{width:4.759560px;}
._e_c00479{width:5.830800px;}
._f_c00479{width:6.847800px;}
._2_c00479{width:8.881800px;}
._4_c00479{width:9.905580px;}
._d_c00479{width:11.269320px;}
._5_c00479{width:12.353160px;}
._16_c00479{width:14.298900px;}
._b_c00479{width:15.526200px;}
._11_c00479{width:16.677840px;}
._6_c00479{width:21.289200px;}
._9_c00479{width:23.879160px;}
._10_c00479{width:25.728300px;}
._7_c00479{width:26.984400px;}
._15_c00479{width:28.979880px;}
._8_c00479{width:31.933800px;}
._17_c00479{width:36.747600px;}
._1a_c00479{width:38.829060px;}
._18_c00479{width:40.747800px;}
._19_c00479{width:42.205500px;}
.fc0_c00479{color:transparent;}
.fs5_c00479{font-size:54.720000px;}
.fs0_c00479{font-size:58.200000px;}
.fs9_c00479{font-size:58.800000px;}
.fs2_c00479{font-size:67.200000px;}
.fs1_c00479{font-size:67.800000px;}
.fs4_c00479{font-size:68.400000px;}
.fs8_c00479{font-size:69.000000px;}
.fs3_c00479{font-size:72.000000px;}
.fs6_c00479{font-size:72.600000px;}
.fs7_c00479{font-size:73.800000px;}
.y0_c00479{bottom:0.000000px;}
.y1f_c00479{bottom:66.975000px;}
.y1e_c00479{bottom:126.731850px;}
.y1d_c00479{bottom:158.394450px;}
.y1c_c00479{bottom:189.735000px;}
.y1b_c00479{bottom:250.935000px;}
.y1a_c00479{bottom:281.895000px;}
.y19_c00479{bottom:343.455450px;}
.y18_c00479{bottom:375.135000px;}
.y17_c00479{bottom:436.335000px;}
.y16_c00479{bottom:497.527350px;}
.y15_c00479{bottom:528.495000px;}
.y13_c00479{bottom:590.036400px;}
.y14_c00479{bottom:590.040000px;}
.y12_c00479{bottom:621.360000px;}
.y11_c00479{bottom:652.335000px;}
.y10_c00479{bottom:652.336650px;}
.ye_c00479{bottom:714.249000px;}
.yf_c00479{bottom:714.255000px;}
.yd_c00479{bottom:745.199700px;}
.yc_c00479{bottom:807.135000px;}
.ya_c00479{bottom:837.719700px;}
.yb_c00479{bottom:837.720000px;}
.y9_c00479{bottom:899.655000px;}
.y8_c00479{bottom:930.240000px;}
.y7_c00479{bottom:960.855000px;}
.y6_c00479{bottom:960.863850px;}
.y5_c00479{bottom:1022.782200px;}
.y3_c00479{bottom:1053.359700px;}
.y4_c00479{bottom:1053.360000px;}
.y2_c00479{bottom:1115.295000px;}
.y1_c00479{bottom:1192.335000px;}
.h9_c00479{height:36.443520px;}
.hd_c00479{height:57.708984px;}
.h2_c00479{height:58.654687px;}
.h5_c00479{height:66.508887px;}
.h3_c00479{height:66.541992px;}
.h8_c00479{height:68.934375px;}
.h4_c00479{height:70.088700px;}
.h6_c00479{height:70.101900px;}
.h7_c00479{height:70.664062px;}
.ha_c00479{height:71.217480px;}
.hc_c00479{height:71.964844px;}
.hb_c00479{height:74.376563px;}
.h1_c00479{height:1263.000000px;}
.h0_c00479{height:1263.240000px;}
.w1_c00479{width:892.500000px;}
.w0_c00479{width:892.800000px;}
.x0_c00479{left:0.000000px;}
.x27_c00479{left:121.844250px;}
.x17_c00479{left:123.030000px;}
.xd_c00479{left:124.113900px;}
.x8_c00479{left:125.556300px;}
.x3_c00479{left:126.642150px;}
.x2_c00479{left:127.710000px;}
.x1_c00479{left:128.790000px;}
.x18_c00479{left:186.735000px;}
.x1d_c00479{left:195.855000px;}
.xb_c00479{left:198.525000px;}
.x19_c00479{left:203.895000px;}
.x1c_c00479{left:205.335000px;}
.x24_c00479{left:211.170000px;}
.xe_c00479{left:215.475000px;}
.x1e_c00479{left:252.030000px;}
.xf_c00479{left:259.845000px;}
.x15_c00479{left:355.455000px;}
.x16_c00479{left:373.455000px;}
.x28_c00479{left:425.820000px;}
.x4_c00479{left:427.140000px;}
.x5_c00479{left:451.755000px;}
.x9_c00479{left:480.435000px;}
.x25_c00479{left:486.885000px;}
.x13_c00479{left:489.780000px;}
.xa_c00479{left:503.835000px;}
.x14_c00479{left:508.455000px;}
.x26_c00479{left:509.745000px;}
.x10_c00479{left:511.830000px;}
.x1f_c00479{left:517.335000px;}
.x11_c00479{left:544.815000px;}
.x20_c00479{left:600.495000px;}
.x22_c00479{left:604.440000px;}
.x1a_c00479{left:621.255000px;}
.x1b_c00479{left:640.215000px;}
.x23_c00479{left:643.245000px;}
.x21_c00479{left:698.310000px;}
.x6_c00479{left:711.885000px;}
.xc_c00479{left:734.325000px;}
.x7_c00479{left:736.875000px;}
.x12_c00479{left:741.420000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls76_c00479{letter-spacing:-2.296000pt;}
.ls6e_c00479{letter-spacing:-2.240000pt;}
.ls5c_c00479{letter-spacing:-2.109333pt;}
.ls51_c00479{letter-spacing:-1.765813pt;}
.ls75_c00479{letter-spacing:-1.664960pt;}
.ls5e_c00479{letter-spacing:-1.488587pt;}
.ls74_c00479{letter-spacing:-1.434880pt;}
.ls73_c00479{letter-spacing:-1.392320pt;}
.ls7a_c00479{letter-spacing:-1.126987pt;}
.ls78_c00479{letter-spacing:-1.102880pt;}
.ls5f_c00479{letter-spacing:-1.084800pt;}
.ls63_c00479{letter-spacing:-1.054667pt;}
.ls70_c00479{letter-spacing:-0.994400pt;}
.ls6b_c00479{letter-spacing:-0.656907pt;}
.ls6a_c00479{letter-spacing:-0.470080pt;}
.ls68_c00479{letter-spacing:-0.307360pt;}
.ls5d_c00479{letter-spacing:-0.301333pt;}
.ls64_c00479{letter-spacing:-0.283253pt;}
.ls71_c00479{letter-spacing:-0.261440pt;}
.ls60_c00479{letter-spacing:-0.229013pt;}
.ls57_c00479{letter-spacing:-0.222987pt;}
.ls72_c00479{letter-spacing:-0.170240pt;}
.ls52_c00479{letter-spacing:-0.066293pt;}
.ls6f_c00479{letter-spacing:-0.060267pt;}
.ls59_c00479{letter-spacing:-0.024107pt;}
.ls55_c00479{letter-spacing:0.000000pt;}
.ls3f_c00479{letter-spacing:0.030133pt;}
.ls15_c00479{letter-spacing:0.042187pt;}
.ls3d_c00479{letter-spacing:0.192853pt;}
.lsc_c00479{letter-spacing:0.222987pt;}
.ls7c_c00479{letter-spacing:0.240427pt;}
.ls13_c00479{letter-spacing:0.265173pt;}
.ls6_c00479{letter-spacing:0.319413pt;}
.ls65_c00479{letter-spacing:0.325440pt;}
.ls27_c00479{letter-spacing:0.343520pt;}
.ls6c_c00479{letter-spacing:0.349547pt;}
.ls14_c00479{letter-spacing:0.355573pt;}
.ls43_c00479{letter-spacing:0.391733pt;}
.ls22_c00479{letter-spacing:0.427893pt;}
.ls3_c00479{letter-spacing:0.445973pt;}
.ls69_c00479{letter-spacing:0.452000pt;}
.ls17_c00479{letter-spacing:0.458027pt;}
.ls67_c00479{letter-spacing:0.488160pt;}
.ls5a_c00479{letter-spacing:0.542400pt;}
.ls1_c00479{letter-spacing:0.590613pt;}
.ls7b_c00479{letter-spacing:0.632800pt;}
.ls2_c00479{letter-spacing:0.650880pt;}
.ls4e_c00479{letter-spacing:0.656907pt;}
.ls37_c00479{letter-spacing:0.668960pt;}
.ls2e_c00479{letter-spacing:0.705120pt;}
.ls29_c00479{letter-spacing:0.717173pt;}
.ls36_c00479{letter-spacing:0.747307pt;}
.lsb_c00479{letter-spacing:0.759360pt;}
.ls56_c00479{letter-spacing:0.765387pt;}
.ls42_c00479{letter-spacing:0.795520pt;}
.ls1c_c00479{letter-spacing:0.807573pt;}
.ls46_c00479{letter-spacing:0.819627pt;}
.ls2a_c00479{letter-spacing:0.825653pt;}
.ls1d_c00479{letter-spacing:0.837707pt;}
.ls3c_c00479{letter-spacing:0.867840pt;}
.ls23_c00479{letter-spacing:0.873867pt;}
.ls41_c00479{letter-spacing:0.879893pt;}
.ls10_c00479{letter-spacing:0.891947pt;}
.lsf_c00479{letter-spacing:0.916053pt;}
.ls19_c00479{letter-spacing:0.922080pt;}
.ls4d_c00479{letter-spacing:0.940160pt;}
.ls47_c00479{letter-spacing:0.952213pt;}
.lsa_c00479{letter-spacing:0.964267pt;}
.ls4_c00479{letter-spacing:0.970293pt;}
.lse_c00479{letter-spacing:0.976320pt;}
.ls5_c00479{letter-spacing:1.006453pt;}
.ls79_c00479{letter-spacing:1.024533pt;}
.ls58_c00479{letter-spacing:1.030560pt;}
.ls40_c00479{letter-spacing:1.048640pt;}
.lsd_c00479{letter-spacing:1.060693pt;}
.ls7_c00479{letter-spacing:1.066720pt;}
.ls5b_c00479{letter-spacing:1.072747pt;}
.ls32_c00479{letter-spacing:1.090827pt;}
.ls11_c00479{letter-spacing:1.114933pt;}
.ls33_c00479{letter-spacing:1.151093pt;}
.ls1a_c00479{letter-spacing:1.157120pt;}
.ls49_c00479{letter-spacing:1.169173pt;}
.ls66_c00479{letter-spacing:1.187253pt;}
.ls25_c00479{letter-spacing:1.199307pt;}
.ls3e_c00479{letter-spacing:1.211360pt;}
.ls31_c00479{letter-spacing:1.223413pt;}
.ls4c_c00479{letter-spacing:1.259573pt;}
.ls39_c00479{letter-spacing:1.265600pt;}
.ls2b_c00479{letter-spacing:1.271627pt;}
.ls4a_c00479{letter-spacing:1.289707pt;}
.ls34_c00479{letter-spacing:1.295733pt;}
.ls3a_c00479{letter-spacing:1.301760pt;}
.ls8_c00479{letter-spacing:1.313813pt;}
.ls2f_c00479{letter-spacing:1.319840pt;}
.ls4f_c00479{letter-spacing:1.337920pt;}
.ls53_c00479{letter-spacing:1.356000pt;}
.ls50_c00479{letter-spacing:1.365760pt;}
.ls24_c00479{letter-spacing:1.368053pt;}
.ls4b_c00479{letter-spacing:1.386133pt;}
.ls2c_c00479{letter-spacing:1.392160pt;}
.ls6d_c00479{letter-spacing:1.398187pt;}
.ls77_c00479{letter-spacing:1.404213pt;}
.ls62_c00479{letter-spacing:1.428320pt;}
.ls20_c00479{letter-spacing:1.452427pt;}
.ls26_c00479{letter-spacing:1.494613pt;}
.ls1f_c00479{letter-spacing:1.500640pt;}
.ls44_c00479{letter-spacing:1.530773pt;}
.ls18_c00479{letter-spacing:1.536800pt;}
.ls30_c00479{letter-spacing:1.554880pt;}
.ls16_c00479{letter-spacing:1.591040pt;}
.ls1b_c00479{letter-spacing:1.651307pt;}
.ls61_c00479{letter-spacing:1.657333pt;}
.ls48_c00479{letter-spacing:1.699520pt;}
.ls0_c00479{letter-spacing:1.801973pt;}
.ls12_c00479{letter-spacing:1.892373pt;}
.ls38_c00479{letter-spacing:1.910453pt;}
.ls21_c00479{letter-spacing:1.952640pt;}
.ls3b_c00479{letter-spacing:1.958667pt;}
.ls2d_c00479{letter-spacing:2.241920pt;}
.ls9_c00479{letter-spacing:2.290133pt;}
.ls1e_c00479{letter-spacing:2.296160pt;}
.ls28_c00479{letter-spacing:2.338347pt;}
.ls45_c00479{letter-spacing:2.404640pt;}
.ls35_c00479{letter-spacing:2.712000pt;}
.ls54_c00479{letter-spacing:3.013333pt;}
.ws0_c00479{word-spacing:-1.795947pt;}
.ws7_c00479{word-spacing:-1.615147pt;}
.ws5_c00479{word-spacing:-0.771413pt;}
.wsb_c00479{word-spacing:0.000000pt;}
.ws8_c00479{word-spacing:2.687893pt;}
.ws6_c00479{word-spacing:4.275360pt;}
.ws3_c00479{word-spacing:5.857920pt;}
.ws4_c00479{word-spacing:7.002987pt;}
.wsa_c00479{word-spacing:12.511360pt;}
.ws2_c00479{word-spacing:15.849387pt;}
.ws1_c00479{word-spacing:18.815253pt;}
.ws9_c00479{word-spacing:22.705280pt;}
._14_c00479{margin-left:-5.296427pt;}
._c_c00479{margin-left:-3.926827pt;}
._0_c00479{margin-left:-2.832533pt;}
._3_c00479{margin-left:-1.717600pt;}
._12_c00479{width:0.922080pt;}
._1_c00479{width:2.229867pt;}
._a_c00479{width:3.296587pt;}
._13_c00479{width:4.230720pt;}
._e_c00479{width:5.182933pt;}
._f_c00479{width:6.086933pt;}
._2_c00479{width:7.894933pt;}
._4_c00479{width:8.804960pt;}
._d_c00479{width:10.017173pt;}
._5_c00479{width:10.980587pt;}
._16_c00479{width:12.710133pt;}
._b_c00479{width:13.801067pt;}
._11_c00479{width:14.824747pt;}
._6_c00479{width:18.923733pt;}
._9_c00479{width:21.225920pt;}
._10_c00479{width:22.869600pt;}
._7_c00479{width:23.986133pt;}
._15_c00479{width:25.759893pt;}
._8_c00479{width:28.385600pt;}
._17_c00479{width:32.664533pt;}
._1a_c00479{width:34.514720pt;}
._18_c00479{width:36.220267pt;}
._19_c00479{width:37.516000pt;}
.fs5_c00479{font-size:48.640000pt;}
.fs0_c00479{font-size:51.733333pt;}
.fs9_c00479{font-size:52.266667pt;}
.fs2_c00479{font-size:59.733333pt;}
.fs1_c00479{font-size:60.266667pt;}
.fs4_c00479{font-size:60.800000pt;}
.fs8_c00479{font-size:61.333333pt;}
.fs3_c00479{font-size:64.000000pt;}
.fs6_c00479{font-size:64.533333pt;}
.fs7_c00479{font-size:65.600000pt;}
.y0_c00479{bottom:0.000000pt;}
.y1f_c00479{bottom:59.533333pt;}
.y1e_c00479{bottom:112.650533pt;}
.y1d_c00479{bottom:140.795067pt;}
.y1c_c00479{bottom:168.653333pt;}
.y1b_c00479{bottom:223.053333pt;}
.y1a_c00479{bottom:250.573333pt;}
.y19_c00479{bottom:305.293733pt;}
.y18_c00479{bottom:333.453333pt;}
.y17_c00479{bottom:387.853333pt;}
.y16_c00479{bottom:442.246533pt;}
.y15_c00479{bottom:469.773333pt;}
.y13_c00479{bottom:524.476800pt;}
.y14_c00479{bottom:524.480000pt;}
.y12_c00479{bottom:552.320000pt;}
.y11_c00479{bottom:579.853333pt;}
.y10_c00479{bottom:579.854800pt;}
.ye_c00479{bottom:634.888000pt;}
.yf_c00479{bottom:634.893333pt;}
.yd_c00479{bottom:662.399733pt;}
.yc_c00479{bottom:717.453333pt;}
.ya_c00479{bottom:744.639733pt;}
.yb_c00479{bottom:744.640000pt;}
.y9_c00479{bottom:799.693333pt;}
.y8_c00479{bottom:826.880000pt;}
.y7_c00479{bottom:854.093333pt;}
.y6_c00479{bottom:854.101200pt;}
.y5_c00479{bottom:909.139733pt;}
.y3_c00479{bottom:936.319733pt;}
.y4_c00479{bottom:936.320000pt;}
.y2_c00479{bottom:991.373333pt;}
.y1_c00479{bottom:1059.853333pt;}
.h9_c00479{height:32.394240pt;}
.hd_c00479{height:51.296875pt;}
.h2_c00479{height:52.137500pt;}
.h5_c00479{height:59.119010pt;}
.h3_c00479{height:59.148438pt;}
.h8_c00479{height:61.275000pt;}
.h4_c00479{height:62.301067pt;}
.h6_c00479{height:62.312800pt;}
.h7_c00479{height:62.812500pt;}
.ha_c00479{height:63.304427pt;}
.hc_c00479{height:63.968750pt;}
.hb_c00479{height:66.112500pt;}
.h1_c00479{height:1122.666667pt;}
.h0_c00479{height:1122.880000pt;}
.w1_c00479{width:793.333333pt;}
.w0_c00479{width:793.600000pt;}
.x0_c00479{left:0.000000pt;}
.x27_c00479{left:108.306000pt;}
.x17_c00479{left:109.360000pt;}
.xd_c00479{left:110.323467pt;}
.x8_c00479{left:111.605600pt;}
.x3_c00479{left:112.570800pt;}
.x2_c00479{left:113.520000pt;}
.x1_c00479{left:114.480000pt;}
.x18_c00479{left:165.986667pt;}
.x1d_c00479{left:174.093333pt;}
.xb_c00479{left:176.466667pt;}
.x19_c00479{left:181.240000pt;}
.x1c_c00479{left:182.520000pt;}
.x24_c00479{left:187.706667pt;}
.xe_c00479{left:191.533333pt;}
.x1e_c00479{left:224.026667pt;}
.xf_c00479{left:230.973333pt;}
.x15_c00479{left:315.960000pt;}
.x16_c00479{left:331.960000pt;}
.x28_c00479{left:378.506667pt;}
.x4_c00479{left:379.680000pt;}
.x5_c00479{left:401.560000pt;}
.x9_c00479{left:427.053333pt;}
.x25_c00479{left:432.786667pt;}
.x13_c00479{left:435.360000pt;}
.xa_c00479{left:447.853333pt;}
.x14_c00479{left:451.960000pt;}
.x26_c00479{left:453.106667pt;}
.x10_c00479{left:454.960000pt;}
.x1f_c00479{left:459.853333pt;}
.x11_c00479{left:484.280000pt;}
.x20_c00479{left:533.773333pt;}
.x22_c00479{left:537.280000pt;}
.x1a_c00479{left:552.226667pt;}
.x1b_c00479{left:569.080000pt;}
.x23_c00479{left:571.773333pt;}
.x21_c00479{left:620.720000pt;}
.x6_c00479{left:632.786667pt;}
.xc_c00479{left:652.733333pt;}
.x7_c00479{left:655.000000pt;}
.x12_c00479{left:659.040000pt;}
}





/* 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_c00480 {
    display:none;
  }
  .loading-indicator_c00480.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00480 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_c00480 { 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_c00480" -> "#page-container .classname_c00480")
 */
.pf_c00480 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00480 { /* 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_c00480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00480 { /* 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_c00480 { /* 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_c00480 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00480 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00480 {overflow:visible;}
  }
}
.c_c00480 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00480 { /* 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_c00480:after { /* webkit #35443 */
  content: '';
}
.t_c00480:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00480 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 */
}
.__c00480 { /* 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_c00480 { /* info for Javascript */
  display:none;
}
.l_c00480 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00480 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00480 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00480: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_c00480 {
    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_c00480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00480.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_c00480 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00480{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00480;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.311035;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_c00480;src:url('chunks/assets/font_505d3b6146d5ac84cd58b13f.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.284668;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_c00480;src:url('chunks/assets/font_a5884faffdb20b96b043effe.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.284180;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_c00480;src:url('chunks/assets/font_a6f3398a5d50ddb82607df24.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;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;}
.m3_c00480{transform:matrix(0.230471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230471,0.000000,0.000000,0.250000,0,0);}
.mb_c00480{transform:matrix(0.236718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236718,0.000000,0.000000,0.250000,0,0);}
.mc_c00480{transform:matrix(0.237756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237756,0.000000,0.000000,0.250000,0,0);}
.m2_c00480{transform:matrix(0.244667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244667,0.000000,0.000000,0.250000,0,0);}
.m9_c00480{transform:matrix(0.245020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245020,0.000000,0.000000,0.250000,0,0);}
.ma_c00480{transform:matrix(0.245072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245072,0.000000,0.000000,0.250000,0,0);}
.m4_c00480{transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);}
.m7_c00480{transform:matrix(0.249346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249346,0.000000,0.000000,0.250000,0,0);}
.m5_c00480{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m6_c00480{transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);}
.m0_c00480{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_c00480{transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);}
.m8_c00480{transform:matrix(0.277002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277002,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls6a_c00480{letter-spacing:-2.499000px;}
.ls35_c00480{letter-spacing:-2.415000px;}
.ls3d_c00480{letter-spacing:-2.394000px;}
.ls33_c00480{letter-spacing:-2.221800px;}
.ls6b_c00480{letter-spacing:-2.056320px;}
.ls31_c00480{letter-spacing:-2.042400px;}
.ls76_c00480{letter-spacing:-1.824660px;}
.ls63_c00480{letter-spacing:-1.787100px;}
.ls3a_c00480{letter-spacing:-1.745700px;}
.ls40_c00480{letter-spacing:-1.731900px;}
.ls55_c00480{letter-spacing:-1.628400px;}
.ls75_c00480{letter-spacing:-1.518000px;}
.ls71_c00480{letter-spacing:-1.497300px;}
.ls6e_c00480{letter-spacing:-1.400700px;}
.ls53_c00480{letter-spacing:-1.297200px;}
.ls6f_c00480{letter-spacing:-1.207500px;}
.ls5f_c00480{letter-spacing:-1.117800px;}
.ls54_c00480{letter-spacing:-1.110900px;}
.ls3f_c00480{letter-spacing:-1.083300px;}
.ls30_c00480{letter-spacing:-1.069500px;}
.ls69_c00480{letter-spacing:-1.055700px;}
.ls46_c00480{letter-spacing:-1.014300px;}
.ls2c_c00480{letter-spacing:-1.006740px;}
.ls6c_c00480{letter-spacing:-0.966000px;}
.ls5d_c00480{letter-spacing:-0.890100px;}
.ls4d_c00480{letter-spacing:-0.862500px;}
.ls4e_c00480{letter-spacing:-0.855600px;}
.ls4f_c00480{letter-spacing:-0.807300px;}
.ls73_c00480{letter-spacing:-0.779700px;}
.ls68_c00480{letter-spacing:-0.738300px;}
.ls62_c00480{letter-spacing:-0.703800px;}
.ls4c_c00480{letter-spacing:-0.676200px;}
.ls5c_c00480{letter-spacing:-0.648600px;}
.ls5e_c00480{letter-spacing:-0.621000px;}
.ls36_c00480{letter-spacing:-0.593400px;}
.ls64_c00480{letter-spacing:-0.586500px;}
.ls74_c00480{letter-spacing:-0.545100px;}
.ls43_c00480{letter-spacing:-0.469200px;}
.ls44_c00480{letter-spacing:-0.386400px;}
.ls59_c00480{letter-spacing:-0.379500px;}
.ls51_c00480{letter-spacing:-0.372600px;}
.ls2e_c00480{letter-spacing:-0.345000px;}
.ls48_c00480{letter-spacing:-0.331200px;}
.ls6d_c00480{letter-spacing:-0.317400px;}
.ls4b_c00480{letter-spacing:-0.296700px;}
.ls66_c00480{letter-spacing:-0.276000px;}
.ls39_c00480{letter-spacing:-0.269100px;}
.ls49_c00480{letter-spacing:-0.248400px;}
.ls37_c00480{letter-spacing:-0.220800px;}
.ls3e_c00480{letter-spacing:-0.207000px;}
.ls56_c00480{letter-spacing:-0.186300px;}
.ls57_c00480{letter-spacing:-0.144900px;}
.ls42_c00480{letter-spacing:-0.138000px;}
.ls65_c00480{letter-spacing:-0.131100px;}
.ls32_c00480{letter-spacing:-0.117300px;}
.ls2d_c00480{letter-spacing:-0.103500px;}
.ls60_c00480{letter-spacing:-0.089700px;}
.ls67_c00480{letter-spacing:-0.075900px;}
.ls72_c00480{letter-spacing:-0.041400px;}
.ls4a_c00480{letter-spacing:-0.027600px;}
.ls47_c00480{letter-spacing:-0.020700px;}
.ls41_c00480{letter-spacing:0.000000px;}
.ls3b_c00480{letter-spacing:0.013800px;}
.ls29_c00480{letter-spacing:0.034500px;}
.ls50_c00480{letter-spacing:0.041400px;}
.ls52_c00480{letter-spacing:0.048300px;}
.ls20_c00480{letter-spacing:0.062100px;}
.ls1a_c00480{letter-spacing:0.069000px;}
.lsc_c00480{letter-spacing:0.103500px;}
.ls8_c00480{letter-spacing:0.131100px;}
.ls9_c00480{letter-spacing:0.144900px;}
.ls34_c00480{letter-spacing:0.193200px;}
.ls1_c00480{letter-spacing:0.207000px;}
.ls58_c00480{letter-spacing:0.220800px;}
.ls16_c00480{letter-spacing:0.241500px;}
.ls17_c00480{letter-spacing:0.255300px;}
.ls14_c00480{letter-spacing:0.276000px;}
.ls7_c00480{letter-spacing:0.289800px;}
.ls1e_c00480{letter-spacing:0.338100px;}
.ls18_c00480{letter-spacing:0.345000px;}
.ls1c_c00480{letter-spacing:0.351900px;}
.ls1d_c00480{letter-spacing:0.358800px;}
.ls21_c00480{letter-spacing:0.379500px;}
.ls23_c00480{letter-spacing:0.386400px;}
.ls2a_c00480{letter-spacing:0.393300px;}
.ls5_c00480{letter-spacing:0.420900px;}
.ls2_c00480{letter-spacing:0.448500px;}
.lsb_c00480{letter-spacing:0.469200px;}
.ls26_c00480{letter-spacing:0.476100px;}
.ls6_c00480{letter-spacing:0.503700px;}
.ls4_c00480{letter-spacing:0.524400px;}
.ls24_c00480{letter-spacing:0.552000px;}
.ls28_c00480{letter-spacing:0.558900px;}
.lsa_c00480{letter-spacing:0.579600px;}
.ls15_c00480{letter-spacing:0.586500px;}
.ls38_c00480{letter-spacing:0.593400px;}
.lse_c00480{letter-spacing:0.607200px;}
.ls11_c00480{letter-spacing:0.627900px;}
.ls13_c00480{letter-spacing:0.676200px;}
.ls45_c00480{letter-spacing:0.759000px;}
.ls22_c00480{letter-spacing:0.772800px;}
.ls25_c00480{letter-spacing:0.828000px;}
.ls3c_c00480{letter-spacing:0.924600px;}
.ls3_c00480{letter-spacing:0.945300px;}
.ls61_c00480{letter-spacing:1.000500px;}
.ls12_c00480{letter-spacing:1.097100px;}
.ls19_c00480{letter-spacing:1.186800px;}
.ls1b_c00480{letter-spacing:1.193700px;}
.ls5b_c00480{letter-spacing:1.221300px;}
.ls2b_c00480{letter-spacing:1.408440px;}
.ls1f_c00480{letter-spacing:1.504200px;}
.lsf_c00480{letter-spacing:1.566300px;}
.ls70_c00480{letter-spacing:1.952700px;}
.ls5a_c00480{letter-spacing:2.042400px;}
.lsd_c00480{letter-spacing:2.506140px;}
.ls27_c00480{letter-spacing:3.070500px;}
.ls0_c00480{letter-spacing:3.270120px;}
.ls10_c00480{letter-spacing:3.422400px;}
.ls2f_c00480{letter-spacing:3.450000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{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__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00480{word-spacing:-1.228200px;}
.ws9_c00480{word-spacing:0.000000px;}
.ws3_c00480{word-spacing:2.290800px;}
.ws8_c00480{word-spacing:3.825000px;}
.ws0_c00480{word-spacing:5.107500px;}
.ws4_c00480{word-spacing:8.017800px;}
.ws1_c00480{word-spacing:8.935500px;}
.ws5_c00480{word-spacing:9.052800px;}
.ws6_c00480{word-spacing:11.868000px;}
.ws2_c00480{word-spacing:26.785800px;}
._16_c00480{margin-left:-6.484140px;}
._f_c00480{margin-left:-4.958880px;}
._d_c00480{margin-left:-3.163680px;}
._e_c00480{margin-left:-2.084400px;}
._a_c00480{width:1.079700px;}
._2_c00480{width:2.599080px;}
._1_c00480{width:4.172400px;}
._0_c00480{width:5.956920px;}
._6_c00480{width:6.962100px;}
._4_c00480{width:8.082000px;}
._7_c00480{width:9.092520px;}
._9_c00480{width:10.494900px;}
._3_c00480{width:12.213000px;}
._10_c00480{width:13.899300px;}
._8_c00480{width:14.908800px;}
._5_c00480{width:21.035880px;}
._b_c00480{width:24.343200px;}
._c_c00480{width:29.206800px;}
._14_c00480{width:37.756800px;}
._15_c00480{width:40.654800px;}
._12_c00480{width:41.669100px;}
._13_c00480{width:45.057000px;}
._11_c00480{width:47.506500px;}
.fc0_c00480{color:transparent;}
.fs7_c00480{font-size:55.800000px;}
.fs0_c00480{font-size:58.200000px;}
.fs4_c00480{font-size:63.000000px;}
.fs6_c00480{font-size:66.600000px;}
.fs3_c00480{font-size:68.400000px;}
.fs2_c00480{font-size:69.000000px;}
.fs5_c00480{font-size:70.200000px;}
.fs1_c00480{font-size:71.400000px;}
.y0_c00480{bottom:0.000000px;}
.y20_c00480{bottom:66.975015px;}
.y1f_c00480{bottom:190.076265px;}
.y1e_c00480{bottom:220.695015px;}
.y1c_c00480{bottom:282.247515px;}
.y1d_c00480{bottom:282.255015px;}
.y1a_c00480{bottom:344.172015px;}
.y1b_c00480{bottom:344.175015px;}
.y19_c00480{bottom:405.371265px;}
.y18_c00480{bottom:436.335765px;}
.y16_c00480{bottom:466.918515px;}
.y17_c00480{bottom:466.920015px;}
.y15_c00480{bottom:497.520015px;}
.y14_c00480{bottom:559.071765px;}
.y12_c00480{bottom:590.414265px;}
.y13_c00480{bottom:590.415015px;}
.y11_c00480{bottom:651.600015px;}
.yf_c00480{bottom:682.569765px;}
.y10_c00480{bottom:682.575015px;}
.yd_c00480{bottom:744.474015px;}
.ye_c00480{bottom:744.480015px;}
.yc_c00480{bottom:775.455015px;}
.ya_c00480{bottom:836.649015px;}
.yb_c00480{bottom:836.655015px;}
.y8_c00480{bottom:867.972015px;}
.y9_c00480{bottom:867.975015px;}
.y7_c00480{bottom:929.175015px;}
.y6_c00480{bottom:959.775015px;}
.y5_c00480{bottom:1020.975765px;}
.y3_c00480{bottom:1051.556265px;}
.y4_c00480{bottom:1051.560015px;}
.y2_c00480{bottom:1082.175015px;}
.y1_c00480{bottom:1188.720015px;}
.ha_c00480{height:54.764648px;}
.h2_c00480{height:58.654687px;}
.h5_c00480{height:67.686035px;}
.h4_c00480{height:67.719727px;}
.h9_c00480{height:67.734727px;}
.h8_c00480{height:67.752727px;}
.h3_c00480{height:70.075195px;}
.h6_c00480{height:71.339063px;}
.h7_c00480{height:73.216406px;}
.h1_c00480{height:1263.000000px;}
.h0_c00480{height:1263.240015px;}
.w1_c00480{width:892.500000px;}
.w0_c00480{width:892.800015px;}
.x0_c00480{left:0.000000px;}
.x24_c00480{left:125.153265px;}
.x1_c00480{left:126.630015px;}
.x6_c00480{left:127.945515px;}
.x9_c00480{left:158.175015px;}
.x25_c00480{left:209.310015px;}
.x26_c00480{left:227.040015px;}
.x27_c00480{left:231.840015px;}
.x12_c00480{left:233.640015px;}
.x1e_c00480{left:234.720015px;}
.x7_c00480{left:235.800015px;}
.xa_c00480{left:239.760015px;}
.x28_c00480{left:253.560015px;}
.x13_c00480{left:255.720015px;}
.x1f_c00480{left:258.600015px;}
.x8_c00480{left:259.680015px;}
.xb_c00480{left:268.320015px;}
.x10_c00480{left:274.125015px;}
.x18_c00480{left:283.125015px;}
.x11_c00480{left:305.055015px;}
.x19_c00480{left:314.055015px;}
.x2d_c00480{left:366.045015px;}
.x1a_c00480{left:392.955015px;}
.x20_c00480{left:394.080015px;}
.x1b_c00480{left:415.965015px;}
.x21_c00480{left:419.295015px;}
.x2e_c00480{left:425.460015px;}
.x14_c00480{left:493.035015px;}
.x1c_c00480{left:506.355015px;}
.x15_c00480{left:514.290015px;}
.x1d_c00480{left:529.170015px;}
.x2b_c00480{left:540.885015px;}
.x4_c00480{left:558.510015px;}
.x2c_c00480{left:570.990015px;}
.x2_c00480{left:574.395015px;}
.x5_c00480{left:577.560015px;}
.x22_c00480{left:582.990015px;}
.xc_c00480{left:604.275015px;}
.x23_c00480{left:613.725015px;}
.xd_c00480{left:632.010015px;}
.x29_c00480{left:638.460015px;}
.x3_c00480{left:647.670015px;}
.xe_c00480{left:662.220015px;}
.x2a_c00480{left:668.550015px;}
.x16_c00480{left:678.435015px;}
.x17_c00480{left:698.085015px;}
.xf_c00480{left:731.715015px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls6a_c00480{letter-spacing:-2.221333pt;}
.ls35_c00480{letter-spacing:-2.146667pt;}
.ls3d_c00480{letter-spacing:-2.128000pt;}
.ls33_c00480{letter-spacing:-1.974933pt;}
.ls6b_c00480{letter-spacing:-1.827840pt;}
.ls31_c00480{letter-spacing:-1.815467pt;}
.ls76_c00480{letter-spacing:-1.621920pt;}
.ls63_c00480{letter-spacing:-1.588533pt;}
.ls3a_c00480{letter-spacing:-1.551733pt;}
.ls40_c00480{letter-spacing:-1.539467pt;}
.ls55_c00480{letter-spacing:-1.447467pt;}
.ls75_c00480{letter-spacing:-1.349333pt;}
.ls71_c00480{letter-spacing:-1.330933pt;}
.ls6e_c00480{letter-spacing:-1.245067pt;}
.ls53_c00480{letter-spacing:-1.153067pt;}
.ls6f_c00480{letter-spacing:-1.073333pt;}
.ls5f_c00480{letter-spacing:-0.993600pt;}
.ls54_c00480{letter-spacing:-0.987467pt;}
.ls3f_c00480{letter-spacing:-0.962933pt;}
.ls30_c00480{letter-spacing:-0.950667pt;}
.ls69_c00480{letter-spacing:-0.938400pt;}
.ls46_c00480{letter-spacing:-0.901600pt;}
.ls2c_c00480{letter-spacing:-0.894880pt;}
.ls6c_c00480{letter-spacing:-0.858667pt;}
.ls5d_c00480{letter-spacing:-0.791200pt;}
.ls4d_c00480{letter-spacing:-0.766667pt;}
.ls4e_c00480{letter-spacing:-0.760533pt;}
.ls4f_c00480{letter-spacing:-0.717600pt;}
.ls73_c00480{letter-spacing:-0.693067pt;}
.ls68_c00480{letter-spacing:-0.656267pt;}
.ls62_c00480{letter-spacing:-0.625600pt;}
.ls4c_c00480{letter-spacing:-0.601067pt;}
.ls5c_c00480{letter-spacing:-0.576533pt;}
.ls5e_c00480{letter-spacing:-0.552000pt;}
.ls36_c00480{letter-spacing:-0.527467pt;}
.ls64_c00480{letter-spacing:-0.521333pt;}
.ls74_c00480{letter-spacing:-0.484533pt;}
.ls43_c00480{letter-spacing:-0.417067pt;}
.ls44_c00480{letter-spacing:-0.343467pt;}
.ls59_c00480{letter-spacing:-0.337333pt;}
.ls51_c00480{letter-spacing:-0.331200pt;}
.ls2e_c00480{letter-spacing:-0.306667pt;}
.ls48_c00480{letter-spacing:-0.294400pt;}
.ls6d_c00480{letter-spacing:-0.282133pt;}
.ls4b_c00480{letter-spacing:-0.263733pt;}
.ls66_c00480{letter-spacing:-0.245333pt;}
.ls39_c00480{letter-spacing:-0.239200pt;}
.ls49_c00480{letter-spacing:-0.220800pt;}
.ls37_c00480{letter-spacing:-0.196267pt;}
.ls3e_c00480{letter-spacing:-0.184000pt;}
.ls56_c00480{letter-spacing:-0.165600pt;}
.ls57_c00480{letter-spacing:-0.128800pt;}
.ls42_c00480{letter-spacing:-0.122667pt;}
.ls65_c00480{letter-spacing:-0.116533pt;}
.ls32_c00480{letter-spacing:-0.104267pt;}
.ls2d_c00480{letter-spacing:-0.092000pt;}
.ls60_c00480{letter-spacing:-0.079733pt;}
.ls67_c00480{letter-spacing:-0.067467pt;}
.ls72_c00480{letter-spacing:-0.036800pt;}
.ls4a_c00480{letter-spacing:-0.024533pt;}
.ls47_c00480{letter-spacing:-0.018400pt;}
.ls41_c00480{letter-spacing:0.000000pt;}
.ls3b_c00480{letter-spacing:0.012267pt;}
.ls29_c00480{letter-spacing:0.030667pt;}
.ls50_c00480{letter-spacing:0.036800pt;}
.ls52_c00480{letter-spacing:0.042933pt;}
.ls20_c00480{letter-spacing:0.055200pt;}
.ls1a_c00480{letter-spacing:0.061333pt;}
.lsc_c00480{letter-spacing:0.092000pt;}
.ls8_c00480{letter-spacing:0.116533pt;}
.ls9_c00480{letter-spacing:0.128800pt;}
.ls34_c00480{letter-spacing:0.171733pt;}
.ls1_c00480{letter-spacing:0.184000pt;}
.ls58_c00480{letter-spacing:0.196267pt;}
.ls16_c00480{letter-spacing:0.214667pt;}
.ls17_c00480{letter-spacing:0.226933pt;}
.ls14_c00480{letter-spacing:0.245333pt;}
.ls7_c00480{letter-spacing:0.257600pt;}
.ls1e_c00480{letter-spacing:0.300533pt;}
.ls18_c00480{letter-spacing:0.306667pt;}
.ls1c_c00480{letter-spacing:0.312800pt;}
.ls1d_c00480{letter-spacing:0.318933pt;}
.ls21_c00480{letter-spacing:0.337333pt;}
.ls23_c00480{letter-spacing:0.343467pt;}
.ls2a_c00480{letter-spacing:0.349600pt;}
.ls5_c00480{letter-spacing:0.374133pt;}
.ls2_c00480{letter-spacing:0.398667pt;}
.lsb_c00480{letter-spacing:0.417067pt;}
.ls26_c00480{letter-spacing:0.423200pt;}
.ls6_c00480{letter-spacing:0.447733pt;}
.ls4_c00480{letter-spacing:0.466133pt;}
.ls24_c00480{letter-spacing:0.490667pt;}
.ls28_c00480{letter-spacing:0.496800pt;}
.lsa_c00480{letter-spacing:0.515200pt;}
.ls15_c00480{letter-spacing:0.521333pt;}
.ls38_c00480{letter-spacing:0.527467pt;}
.lse_c00480{letter-spacing:0.539733pt;}
.ls11_c00480{letter-spacing:0.558133pt;}
.ls13_c00480{letter-spacing:0.601067pt;}
.ls45_c00480{letter-spacing:0.674667pt;}
.ls22_c00480{letter-spacing:0.686933pt;}
.ls25_c00480{letter-spacing:0.736000pt;}
.ls3c_c00480{letter-spacing:0.821867pt;}
.ls3_c00480{letter-spacing:0.840267pt;}
.ls61_c00480{letter-spacing:0.889333pt;}
.ls12_c00480{letter-spacing:0.975200pt;}
.ls19_c00480{letter-spacing:1.054933pt;}
.ls1b_c00480{letter-spacing:1.061067pt;}
.ls5b_c00480{letter-spacing:1.085600pt;}
.ls2b_c00480{letter-spacing:1.251947pt;}
.ls1f_c00480{letter-spacing:1.337067pt;}
.lsf_c00480{letter-spacing:1.392267pt;}
.ls70_c00480{letter-spacing:1.735733pt;}
.ls5a_c00480{letter-spacing:1.815467pt;}
.lsd_c00480{letter-spacing:2.227680pt;}
.ls27_c00480{letter-spacing:2.729333pt;}
.ls0_c00480{letter-spacing:2.906773pt;}
.ls10_c00480{letter-spacing:3.042133pt;}
.ls2f_c00480{letter-spacing:3.066667pt;}
.ws7_c00480{word-spacing:-1.091733pt;}
.ws9_c00480{word-spacing:0.000000pt;}
.ws3_c00480{word-spacing:2.036267pt;}
.ws8_c00480{word-spacing:3.400000pt;}
.ws0_c00480{word-spacing:4.540000pt;}
.ws4_c00480{word-spacing:7.126933pt;}
.ws1_c00480{word-spacing:7.942667pt;}
.ws5_c00480{word-spacing:8.046933pt;}
.ws6_c00480{word-spacing:10.549333pt;}
.ws2_c00480{word-spacing:23.809600pt;}
._16_c00480{margin-left:-5.763680pt;}
._f_c00480{margin-left:-4.407893pt;}
._d_c00480{margin-left:-2.812160pt;}
._e_c00480{margin-left:-1.852800pt;}
._a_c00480{width:0.959733pt;}
._2_c00480{width:2.310293pt;}
._1_c00480{width:3.708800pt;}
._0_c00480{width:5.295040pt;}
._6_c00480{width:6.188533pt;}
._4_c00480{width:7.184000pt;}
._7_c00480{width:8.082240pt;}
._9_c00480{width:9.328800pt;}
._3_c00480{width:10.856000pt;}
._10_c00480{width:12.354933pt;}
._8_c00480{width:13.252267pt;}
._5_c00480{width:18.698560pt;}
._b_c00480{width:21.638400pt;}
._c_c00480{width:25.961600pt;}
._14_c00480{width:33.561600pt;}
._15_c00480{width:36.137600pt;}
._12_c00480{width:37.039200pt;}
._13_c00480{width:40.050667pt;}
._11_c00480{width:42.228000pt;}
.fs7_c00480{font-size:49.600000pt;}
.fs0_c00480{font-size:51.733333pt;}
.fs4_c00480{font-size:56.000000pt;}
.fs6_c00480{font-size:59.200000pt;}
.fs3_c00480{font-size:60.800000pt;}
.fs2_c00480{font-size:61.333333pt;}
.fs5_c00480{font-size:62.400000pt;}
.fs1_c00480{font-size:63.466667pt;}
.y0_c00480{bottom:0.000000pt;}
.y20_c00480{bottom:59.533347pt;}
.y1f_c00480{bottom:168.956680pt;}
.y1e_c00480{bottom:196.173347pt;}
.y1c_c00480{bottom:250.886680pt;}
.y1d_c00480{bottom:250.893347pt;}
.y1a_c00480{bottom:305.930680pt;}
.y1b_c00480{bottom:305.933347pt;}
.y19_c00480{bottom:360.330013pt;}
.y18_c00480{bottom:387.854013pt;}
.y16_c00480{bottom:415.038680pt;}
.y17_c00480{bottom:415.040013pt;}
.y15_c00480{bottom:442.240013pt;}
.y14_c00480{bottom:496.952680pt;}
.y12_c00480{bottom:524.812680pt;}
.y13_c00480{bottom:524.813347pt;}
.y11_c00480{bottom:579.200013pt;}
.yf_c00480{bottom:606.728680pt;}
.y10_c00480{bottom:606.733347pt;}
.yd_c00480{bottom:661.754680pt;}
.ye_c00480{bottom:661.760013pt;}
.yc_c00480{bottom:689.293347pt;}
.ya_c00480{bottom:743.688013pt;}
.yb_c00480{bottom:743.693347pt;}
.y8_c00480{bottom:771.530680pt;}
.y9_c00480{bottom:771.533347pt;}
.y7_c00480{bottom:825.933347pt;}
.y6_c00480{bottom:853.133347pt;}
.y5_c00480{bottom:907.534013pt;}
.y3_c00480{bottom:934.716680pt;}
.y4_c00480{bottom:934.720013pt;}
.y2_c00480{bottom:961.933347pt;}
.y1_c00480{bottom:1056.640013pt;}
.ha_c00480{height:48.679688pt;}
.h2_c00480{height:52.137500pt;}
.h5_c00480{height:60.165365pt;}
.h4_c00480{height:60.195312pt;}
.h9_c00480{height:60.208646pt;}
.h8_c00480{height:60.224646pt;}
.h3_c00480{height:62.289062pt;}
.h6_c00480{height:63.412500pt;}
.h7_c00480{height:65.081250pt;}
.h1_c00480{height:1122.666667pt;}
.h0_c00480{height:1122.880013pt;}
.w1_c00480{width:793.333333pt;}
.w0_c00480{width:793.600013pt;}
.x0_c00480{left:0.000000pt;}
.x24_c00480{left:111.247347pt;}
.x1_c00480{left:112.560013pt;}
.x6_c00480{left:113.729347pt;}
.x9_c00480{left:140.600013pt;}
.x25_c00480{left:186.053347pt;}
.x26_c00480{left:201.813347pt;}
.x27_c00480{left:206.080013pt;}
.x12_c00480{left:207.680013pt;}
.x1e_c00480{left:208.640013pt;}
.x7_c00480{left:209.600013pt;}
.xa_c00480{left:213.120013pt;}
.x28_c00480{left:225.386680pt;}
.x13_c00480{left:227.306680pt;}
.x1f_c00480{left:229.866680pt;}
.x8_c00480{left:230.826680pt;}
.xb_c00480{left:238.506680pt;}
.x10_c00480{left:243.666680pt;}
.x18_c00480{left:251.666680pt;}
.x11_c00480{left:271.160013pt;}
.x19_c00480{left:279.160013pt;}
.x2d_c00480{left:325.373347pt;}
.x1a_c00480{left:349.293347pt;}
.x20_c00480{left:350.293347pt;}
.x1b_c00480{left:369.746680pt;}
.x21_c00480{left:372.706680pt;}
.x2e_c00480{left:378.186680pt;}
.x14_c00480{left:438.253347pt;}
.x1c_c00480{left:450.093347pt;}
.x15_c00480{left:457.146680pt;}
.x1d_c00480{left:470.373347pt;}
.x2b_c00480{left:480.786680pt;}
.x4_c00480{left:496.453347pt;}
.x2c_c00480{left:507.546680pt;}
.x2_c00480{left:510.573347pt;}
.x5_c00480{left:513.386680pt;}
.x22_c00480{left:518.213347pt;}
.xc_c00480{left:537.133347pt;}
.x23_c00480{left:545.533347pt;}
.xd_c00480{left:561.786680pt;}
.x29_c00480{left:567.520013pt;}
.x3_c00480{left:575.706680pt;}
.xe_c00480{left:588.640013pt;}
.x2a_c00480{left:594.266680pt;}
.x16_c00480{left:603.053347pt;}
.x17_c00480{left:620.520013pt;}
.xf_c00480{left:650.413347pt;}
}





/* 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_c00481 {
    display:none;
  }
  .loading-indicator_c00481.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00481 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_c00481 { 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_c00481" -> "#page-container .classname_c00481")
 */
.pf_c00481 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00481 { /* 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_c00481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00481 { /* 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_c00481 { /* 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_c00481 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00481 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00481 {overflow:visible;}
  }
}
.c_c00481 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00481 { /* 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_c00481:after { /* webkit #35443 */
  content: '';
}
.t_c00481:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00481 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 */
}
.__c00481 { /* 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_c00481 { /* info for Javascript */
  display:none;
}
.l_c00481 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00481 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00481 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00481: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_c00481 {
    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_c00481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00481.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_c00481 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00481{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00481;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.311035;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_c00481;src:url('chunks/assets/font_f8a14adf2b7ecae0a3b07c4d.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.284668;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_c00481;src:url('chunks/assets/font_32d3bbb2c942d8753af7d672.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.284180;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_c00481;src:url('chunks/assets/font_8be89f8c28895176a9ff1acc.woff2')format("woff");}.ff4_c00481{font-family:ff4_c00481;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:ff5_c00481;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff5_c00481{font-family:ff5_c00481;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;}
.m12_c00481{transform:matrix(0.216393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216393,0.000000,0.000000,0.250000,0,0);}
.m9_c00481{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m2_c00481{transform:matrix(0.239173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239173,0.000000,0.000000,0.250000,0,0);}
.mf_c00481{transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);}
.m4_c00481{transform:matrix(0.246237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246237,0.000000,0.000000,0.250000,0,0);}
.ma_c00481{transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);}
.m13_c00481{transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);}
.m6_c00481{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);}
.m0_c00481{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);}
.m5_c00481{transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);}
.m8_c00481{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md_c00481{transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);}
.m7_c00481{transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);}
.m11_c00481{transform:matrix(0.256529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256529,0.000000,0.000000,0.250000,0,0);}
.m3_c00481{transform:matrix(0.260834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260834,0.000000,0.000000,0.250000,0,0);}
.mb_c00481{transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);}
.me_c00481{transform:matrix(0.272082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272082,0.000000,0.000000,0.250000,0,0);}
.m14_c00481{transform:matrix(0.275533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275533,0.000000,0.000000,0.250000,0,0);}
.m10_c00481{transform:matrix(0.283153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283153,0.000000,0.000000,0.250000,0,0);}
.mc_c00481{transform:matrix(0.284506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284506,0.000000,0.000000,0.250000,0,0);}
.m1_c00481{transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls6b_c00481{letter-spacing:-2.457000px;}
.ls69_c00481{letter-spacing:-2.414880px;}
.ls67_c00481{letter-spacing:-2.373000px;}
.ls7a_c00481{letter-spacing:-2.310000px;}
.ls96_c00481{letter-spacing:-2.098980px;}
.ls8e_c00481{letter-spacing:-1.916460px;}
.lsa0_c00481{letter-spacing:-1.558440px;}
.ls95_c00481{letter-spacing:-1.518720px;}
.ls7d_c00481{letter-spacing:-1.516320px;}
.ls6e_c00481{letter-spacing:-1.471260px;}
.ls99_c00481{letter-spacing:-1.403460px;}
.lsa1_c00481{letter-spacing:-1.354860px;}
.ls91_c00481{letter-spacing:-1.186500px;}
.ls82_c00481{letter-spacing:-1.132260px;}
.ls8d_c00481{letter-spacing:-1.102140px;}
.ls9e_c00481{letter-spacing:-1.030560px;}
.ls7f_c00481{letter-spacing:-0.982800px;}
.ls97_c00481{letter-spacing:-0.912600px;}
.ls93_c00481{letter-spacing:-0.905580px;}
.ls7c_c00481{letter-spacing:-0.898560px;}
.ls7e_c00481{letter-spacing:-0.849420px;}
.ls76_c00481{letter-spacing:-0.603420px;}
.ls90_c00481{letter-spacing:-0.576300px;}
.ls83_c00481{letter-spacing:-0.540540px;}
.ls71_c00481{letter-spacing:-0.491400px;}
.ls89_c00481{letter-spacing:-0.456300px;}
.ls7b_c00481{letter-spacing:-0.413580px;}
.lsa2_c00481{letter-spacing:-0.336960px;}
.ls74_c00481{letter-spacing:-0.264420px;}
.ls9a_c00481{letter-spacing:-0.257640px;}
.ls8b_c00481{letter-spacing:-0.231660px;}
.ls6c_c00481{letter-spacing:-0.189840px;}
.ls6a_c00481{letter-spacing:-0.154440px;}
.ls85_c00481{letter-spacing:-0.126360px;}
.ls79_c00481{letter-spacing:-0.081360px;}
.ls77_c00481{letter-spacing:-0.035100px;}
.ls72_c00481{letter-spacing:-0.028080px;}
.ls8c_c00481{letter-spacing:-0.014040px;}
.ls98_c00481{letter-spacing:-0.006780px;}
.ls6d_c00481{letter-spacing:0.000000px;}
.ls13_c00481{letter-spacing:0.033900px;}
.ls30_c00481{letter-spacing:0.094920px;}
.ls6f_c00481{letter-spacing:0.105300px;}
.ls23_c00481{letter-spacing:0.108480px;}
.ls56_c00481{letter-spacing:0.112320px;}
.ls3d_c00481{letter-spacing:0.168480px;}
.ls31_c00481{letter-spacing:0.169500px;}
.ls25_c00481{letter-spacing:0.176280px;}
.ls4a_c00481{letter-spacing:0.210600px;}
.ls10_c00481{letter-spacing:0.216960px;}
.ls28_c00481{letter-spacing:0.257640px;}
.ls5b_c00481{letter-spacing:0.291540px;}
.ls42_c00481{letter-spacing:0.294840px;}
.ls4b_c00481{letter-spacing:0.322920px;}
.ls58_c00481{letter-spacing:0.351000px;}
.ls17_c00481{letter-spacing:0.400020px;}
.ls35_c00481{letter-spacing:0.406800px;}
.ls75_c00481{letter-spacing:0.413580px;}
.ls2e_c00481{letter-spacing:0.414180px;}
.ls61_c00481{letter-spacing:0.427140px;}
.ls41_c00481{letter-spacing:0.494940px;}
.ls2_c00481{letter-spacing:0.501720px;}
.ls11_c00481{letter-spacing:0.519480px;}
.ls2f_c00481{letter-spacing:0.526500px;}
.ls4e_c00481{letter-spacing:0.528840px;}
.ls47_c00481{letter-spacing:0.547560px;}
.lsa3_c00481{letter-spacing:0.569520px;}
.ls94_c00481{letter-spacing:0.576300px;}
.ls8a_c00481{letter-spacing:0.589680px;}
.lsd_c00481{letter-spacing:0.596640px;}
.ls2d_c00481{letter-spacing:0.616980px;}
.ls44_c00481{letter-spacing:0.644100px;}
.ls1c_c00481{letter-spacing:0.650880px;}
.ls9b_c00481{letter-spacing:0.657660px;}
.ls50_c00481{letter-spacing:0.664440px;}
.ls51_c00481{letter-spacing:0.691560px;}
.ls15_c00481{letter-spacing:0.705120px;}
.lsa4_c00481{letter-spacing:0.715860px;}
.ls48_c00481{letter-spacing:0.758160px;}
.ls37_c00481{letter-spacing:0.793260px;}
.ls1f_c00481{letter-spacing:0.813600px;}
.ls84_c00481{letter-spacing:0.814320px;}
.ls4c_c00481{letter-spacing:0.847500px;}
.ls8_c00481{letter-spacing:0.861060px;}
.ls22_c00481{letter-spacing:0.888180px;}
.ls78_c00481{letter-spacing:0.894960px;}
.ls1b_c00481{letter-spacing:0.901740px;}
.ls65_c00481{letter-spacing:0.908520px;}
.ls5c_c00481{letter-spacing:0.915300px;}
.lsb_c00481{letter-spacing:0.922080px;}
.ls1a_c00481{letter-spacing:0.928860px;}
.ls1_c00481{letter-spacing:0.955980px;}
.ls4_c00481{letter-spacing:0.983100px;}
.ls54_c00481{letter-spacing:0.989880px;}
.ls32_c00481{letter-spacing:1.010220px;}
.ls3c_c00481{letter-spacing:1.017000px;}
.ls81_c00481{letter-spacing:1.030560px;}
.ls1e_c00481{letter-spacing:1.057680px;}
.ls33_c00481{letter-spacing:1.064460px;}
.ls16_c00481{letter-spacing:1.071240px;}
.ls5_c00481{letter-spacing:1.078020px;}
.ls43_c00481{letter-spacing:1.084800px;}
.ls12_c00481{letter-spacing:1.088100px;}
.ls52_c00481{letter-spacing:1.098360px;}
.ls66_c00481{letter-spacing:1.105140px;}
.ls45_c00481{letter-spacing:1.111920px;}
.ls9_c00481{letter-spacing:1.118700px;}
.ls20_c00481{letter-spacing:1.125480px;}
.ls53_c00481{letter-spacing:1.132260px;}
.ls55_c00481{letter-spacing:1.139040px;}
.ls29_c00481{letter-spacing:1.145820px;}
.ls73_c00481{letter-spacing:1.159380px;}
.ls6_c00481{letter-spacing:1.200060px;}
.ls4d_c00481{letter-spacing:1.213620px;}
.ls3f_c00481{letter-spacing:1.227180px;}
.ls5f_c00481{letter-spacing:1.240740px;}
.ls39_c00481{letter-spacing:1.261080px;}
.ls5e_c00481{letter-spacing:1.288200px;}
.ls92_c00481{letter-spacing:1.328880px;}
.lsa_c00481{letter-spacing:1.356000px;}
.ls68_c00481{letter-spacing:1.369560px;}
.ls34_c00481{letter-spacing:1.389900px;}
.ls2a_c00481{letter-spacing:1.437360px;}
.ls9f_c00481{letter-spacing:1.444140px;}
.ls3a_c00481{letter-spacing:1.457700px;}
.ls3_c00481{letter-spacing:1.464480px;}
.ls18_c00481{letter-spacing:1.478040px;}
.ls5d_c00481{letter-spacing:1.484820px;}
.ls19_c00481{letter-spacing:1.505160px;}
.ls63_c00481{letter-spacing:1.559400px;}
.ls3b_c00481{letter-spacing:1.586520px;}
.ls80_c00481{letter-spacing:1.640760px;}
.ls2c_c00481{letter-spacing:1.647540px;}
.ls88_c00481{letter-spacing:1.654320px;}
.ls62_c00481{letter-spacing:1.670340px;}
.ls3e_c00481{letter-spacing:1.749240px;}
.lsc_c00481{letter-spacing:1.776360px;}
.ls57_c00481{letter-spacing:1.857720px;}
.ls5a_c00481{letter-spacing:1.864500px;}
.ls87_c00481{letter-spacing:1.878060px;}
.ls14_c00481{letter-spacing:1.925520px;}
.ls26_c00481{letter-spacing:1.932300px;}
.ls4f_c00481{letter-spacing:2.027220px;}
.ls24_c00481{letter-spacing:2.034000px;}
.ls9d_c00481{letter-spacing:2.061120px;}
.ls8f_c00481{letter-spacing:2.067900px;}
.lse_c00481{letter-spacing:2.081460px;}
.ls38_c00481{letter-spacing:2.115360px;}
.ls7_c00481{letter-spacing:2.135700px;}
.ls0_c00481{letter-spacing:2.142480px;}
.ls27_c00481{letter-spacing:2.196720px;}
.ls9c_c00481{letter-spacing:2.230620px;}
.ls1d_c00481{letter-spacing:2.250960px;}
.ls40_c00481{letter-spacing:2.264520px;}
.ls46_c00481{letter-spacing:2.278080px;}
.ls60_c00481{letter-spacing:2.311980px;}
.lsf_c00481{letter-spacing:2.325540px;}
.ls36_c00481{letter-spacing:2.332320px;}
.ls59_c00481{letter-spacing:2.440800px;}
.ls21_c00481{letter-spacing:2.705220px;}
.ls2b_c00481{letter-spacing:2.739120px;}
.ls49_c00481{letter-spacing:2.990520px;}
.ls64_c00481{letter-spacing:3.390000px;}
.ls70_c00481{letter-spacing:3.510000px;}
.ls86_c00481{letter-spacing:3.690000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{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__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00481{word-spacing:0.000000px;}
.ws2_c00481{word-spacing:2.290560px;}
.ws1_c00481{word-spacing:2.363880px;}
.ws3_c00481{word-spacing:4.820580px;}
.ws0_c00481{word-spacing:13.787160px;}
.ws5_c00481{word-spacing:21.848760px;}
.ws6_c00481{word-spacing:29.384520px;}
.ws7_c00481{word-spacing:31.364280px;}
.ws4_c00481{word-spacing:37.228980px;}
._7_c00481{margin-left:-14.253600px;}
._d_c00481{margin-left:-5.072460px;}
._a_c00481{margin-left:-3.341520px;}
._b_c00481{margin-left:-1.653780px;}
._4_c00481{width:1.796700px;}
._f_c00481{width:2.990280px;}
._5_c00481{width:4.039320px;}
._3_c00481{width:5.437560px;}
._9_c00481{width:7.020000px;}
._c_c00481{width:8.030940px;}
._6_c00481{width:9.551280px;}
._8_c00481{width:10.708380px;}
._0_c00481{width:12.407400px;}
._2_c00481{width:13.805580px;}
._e_c00481{width:16.288140px;}
._1a_c00481{width:18.087480px;}
._11_c00481{width:20.107860px;}
._10_c00481{width:21.541260px;}
._1_c00481{width:23.018100px;}
._19_c00481{width:25.276740px;}
._1c_c00481{width:29.760660px;}
._18_c00481{width:31.000320px;}
._17_c00481{width:32.423220px;}
._12_c00481{width:34.727400px;}
._15_c00481{width:35.942400px;}
._1b_c00481{width:37.142940px;}
._14_c00481{width:38.162820px;}
._16_c00481{width:40.650180px;}
._1d_c00481{width:44.555460px;}
._13_c00481{width:46.782000px;}
.fc0_c00481{color:transparent;}
.fs0_c00481{font-size:58.200000px;}
.fs5_c00481{font-size:66.000000px;}
.fs4_c00481{font-size:66.600000px;}
.fs1_c00481{font-size:67.800000px;}
.fs6_c00481{font-size:69.000000px;}
.fs2_c00481{font-size:70.200000px;}
.fs3_c00481{font-size:73.800000px;}
.y0_c00481{bottom:0.000000px;}
.y21_c00481{bottom:69.135000px;}
.y20_c00481{bottom:129.960000px;}
.y1f_c00481{bottom:129.960450px;}
.y1e_c00481{bottom:161.640000px;}
.y1d_c00481{bottom:161.640450px;}
.y1c_c00481{bottom:222.135000px;}
.y1b_c00481{bottom:222.137250px;}
.y1a_c00481{bottom:253.815000px;}
.y19_c00481{bottom:314.648700px;}
.y17_c00481{bottom:346.689300px;}
.y18_c00481{bottom:346.695000px;}
.y16_c00481{bottom:377.640000px;}
.y15_c00481{bottom:377.642400px;}
.y14_c00481{bottom:438.120000px;}
.y13_c00481{bottom:469.815000px;}
.y12_c00481{bottom:500.775000px;}
.y11_c00481{bottom:561.602550px;}
.y10_c00481{bottom:593.655000px;}
.yf_c00481{bottom:654.857400px;}
.ye_c00481{bottom:686.520000px;}
.yd_c00481{bottom:686.527350px;}
.yc_c00481{bottom:717.495000px;}
.yb_c00481{bottom:778.687350px;}
.ya_c00481{bottom:809.647350px;}
.y8_c00481{bottom:840.612600px;}
.y9_c00481{bottom:840.615000px;}
.y7_c00481{bottom:902.175000px;}
.y6_c00481{bottom:964.080000px;}
.y5_c00481{bottom:994.335000px;}
.y4_c00481{bottom:1056.615000px;}
.y3_c00481{bottom:1087.200000px;}
.y2_c00481{bottom:1118.175000px;}
.y1_c00481{bottom:1194.135000px;}
.h10_c00481{height:57.120117px;}
.h2_c00481{height:58.654687px;}
.h3_c00481{height:66.541992px;}
.h9_c00481{height:66.572592px;}
.ha_c00481{height:68.833784px;}
.h7_c00481{height:68.835938px;}
.hf_c00481{height:68.861384px;}
.h4_c00481{height:68.863184px;}
.h8_c00481{height:68.893784px;}
.hb_c00481{height:68.897461px;}
.hc_c00481{height:69.461719px;}
.h6_c00481{height:69.471319px;}
.hd_c00481{height:71.964844px;}
.h5_c00481{height:72.430664px;}
.he_c00481{height:73.216406px;}
.h1_c00481{height:1263.000000px;}
.h0_c00481{height:1263.240000px;}
.w1_c00481{width:892.500000px;}
.w0_c00481{width:892.800000px;}
.x0_c00481{left:0.000000px;}
.x1f_c00481{left:122.213700px;}
.x12_c00481{left:123.405000px;}
.x9_c00481{left:124.845000px;}
.x1_c00481{left:126.630000px;}
.xe_c00481{left:153.675000px;}
.x20_c00481{left:163.770000px;}
.x4_c00481{left:170.565000px;}
.xc_c00481{left:196.830000px;}
.x21_c00481{left:198.270000px;}
.x5_c00481{left:208.320000px;}
.xd_c00481{left:212.595000px;}
.x1a_c00481{left:219.870000px;}
.x22_c00481{left:232.470000px;}
.x18_c00481{left:246.720000px;}
.x23_c00481{left:259.395000px;}
.xf_c00481{left:265.605000px;}
.x19_c00481{left:283.170000px;}
.x10_c00481{left:304.890000px;}
.x1b_c00481{left:345.780000px;}
.x1c_c00481{left:367.935000px;}
.x24_c00481{left:376.545000px;}
.x27_c00481{left:406.770000px;}
.x1d_c00481{left:426.315000px;}
.x6_c00481{left:431.835000px;}
.x28_c00481{left:440.970000px;}
.x11_c00481{left:454.455000px;}
.x1e_c00481{left:467.565000px;}
.x13_c00481{left:469.590000px;}
.x14_c00481{left:490.470000px;}
.x7_c00481{left:492.405000px;}
.xa_c00481{left:530.880000px;}
.xb_c00481{left:550.650000px;}
.x15_c00481{left:671.730000px;}
.x25_c00481{left:674.085000px;}
.x16_c00481{left:696.645000px;}
.x26_c00481{left:701.655000px;}
.x2_c00481{left:712.605000px;}
.x8_c00481{left:734.250000px;}
.x3_c00481{left:735.435000px;}
.x17_c00481{left:750.765000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls6b_c00481{letter-spacing:-2.184000pt;}
.ls69_c00481{letter-spacing:-2.146560pt;}
.ls67_c00481{letter-spacing:-2.109333pt;}
.ls7a_c00481{letter-spacing:-2.053333pt;}
.ls96_c00481{letter-spacing:-1.865760pt;}
.ls8e_c00481{letter-spacing:-1.703520pt;}
.lsa0_c00481{letter-spacing:-1.385280pt;}
.ls95_c00481{letter-spacing:-1.349973pt;}
.ls7d_c00481{letter-spacing:-1.347840pt;}
.ls6e_c00481{letter-spacing:-1.307787pt;}
.ls99_c00481{letter-spacing:-1.247520pt;}
.lsa1_c00481{letter-spacing:-1.204320pt;}
.ls91_c00481{letter-spacing:-1.054667pt;}
.ls82_c00481{letter-spacing:-1.006453pt;}
.ls8d_c00481{letter-spacing:-0.979680pt;}
.ls9e_c00481{letter-spacing:-0.916053pt;}
.ls7f_c00481{letter-spacing:-0.873600pt;}
.ls97_c00481{letter-spacing:-0.811200pt;}
.ls93_c00481{letter-spacing:-0.804960pt;}
.ls7c_c00481{letter-spacing:-0.798720pt;}
.ls7e_c00481{letter-spacing:-0.755040pt;}
.ls76_c00481{letter-spacing:-0.536373pt;}
.ls90_c00481{letter-spacing:-0.512267pt;}
.ls83_c00481{letter-spacing:-0.480480pt;}
.ls71_c00481{letter-spacing:-0.436800pt;}
.ls89_c00481{letter-spacing:-0.405600pt;}
.ls7b_c00481{letter-spacing:-0.367627pt;}
.lsa2_c00481{letter-spacing:-0.299520pt;}
.ls74_c00481{letter-spacing:-0.235040pt;}
.ls9a_c00481{letter-spacing:-0.229013pt;}
.ls8b_c00481{letter-spacing:-0.205920pt;}
.ls6c_c00481{letter-spacing:-0.168747pt;}
.ls6a_c00481{letter-spacing:-0.137280pt;}
.ls85_c00481{letter-spacing:-0.112320pt;}
.ls79_c00481{letter-spacing:-0.072320pt;}
.ls77_c00481{letter-spacing:-0.031200pt;}
.ls72_c00481{letter-spacing:-0.024960pt;}
.ls8c_c00481{letter-spacing:-0.012480pt;}
.ls98_c00481{letter-spacing:-0.006027pt;}
.ls6d_c00481{letter-spacing:0.000000pt;}
.ls13_c00481{letter-spacing:0.030133pt;}
.ls30_c00481{letter-spacing:0.084373pt;}
.ls6f_c00481{letter-spacing:0.093600pt;}
.ls23_c00481{letter-spacing:0.096427pt;}
.ls56_c00481{letter-spacing:0.099840pt;}
.ls3d_c00481{letter-spacing:0.149760pt;}
.ls31_c00481{letter-spacing:0.150667pt;}
.ls25_c00481{letter-spacing:0.156693pt;}
.ls4a_c00481{letter-spacing:0.187200pt;}
.ls10_c00481{letter-spacing:0.192853pt;}
.ls28_c00481{letter-spacing:0.229013pt;}
.ls5b_c00481{letter-spacing:0.259147pt;}
.ls42_c00481{letter-spacing:0.262080pt;}
.ls4b_c00481{letter-spacing:0.287040pt;}
.ls58_c00481{letter-spacing:0.312000pt;}
.ls17_c00481{letter-spacing:0.355573pt;}
.ls35_c00481{letter-spacing:0.361600pt;}
.ls75_c00481{letter-spacing:0.367627pt;}
.ls2e_c00481{letter-spacing:0.368160pt;}
.ls61_c00481{letter-spacing:0.379680pt;}
.ls41_c00481{letter-spacing:0.439947pt;}
.ls2_c00481{letter-spacing:0.445973pt;}
.ls11_c00481{letter-spacing:0.461760pt;}
.ls2f_c00481{letter-spacing:0.468000pt;}
.ls4e_c00481{letter-spacing:0.470080pt;}
.ls47_c00481{letter-spacing:0.486720pt;}
.lsa3_c00481{letter-spacing:0.506240pt;}
.ls94_c00481{letter-spacing:0.512267pt;}
.ls8a_c00481{letter-spacing:0.524160pt;}
.lsd_c00481{letter-spacing:0.530347pt;}
.ls2d_c00481{letter-spacing:0.548427pt;}
.ls44_c00481{letter-spacing:0.572533pt;}
.ls1c_c00481{letter-spacing:0.578560pt;}
.ls9b_c00481{letter-spacing:0.584587pt;}
.ls50_c00481{letter-spacing:0.590613pt;}
.ls51_c00481{letter-spacing:0.614720pt;}
.ls15_c00481{letter-spacing:0.626773pt;}
.lsa4_c00481{letter-spacing:0.636320pt;}
.ls48_c00481{letter-spacing:0.673920pt;}
.ls37_c00481{letter-spacing:0.705120pt;}
.ls1f_c00481{letter-spacing:0.723200pt;}
.ls84_c00481{letter-spacing:0.723840pt;}
.ls4c_c00481{letter-spacing:0.753333pt;}
.ls8_c00481{letter-spacing:0.765387pt;}
.ls22_c00481{letter-spacing:0.789493pt;}
.ls78_c00481{letter-spacing:0.795520pt;}
.ls1b_c00481{letter-spacing:0.801547pt;}
.ls65_c00481{letter-spacing:0.807573pt;}
.ls5c_c00481{letter-spacing:0.813600pt;}
.lsb_c00481{letter-spacing:0.819627pt;}
.ls1a_c00481{letter-spacing:0.825653pt;}
.ls1_c00481{letter-spacing:0.849760pt;}
.ls4_c00481{letter-spacing:0.873867pt;}
.ls54_c00481{letter-spacing:0.879893pt;}
.ls32_c00481{letter-spacing:0.897973pt;}
.ls3c_c00481{letter-spacing:0.904000pt;}
.ls81_c00481{letter-spacing:0.916053pt;}
.ls1e_c00481{letter-spacing:0.940160pt;}
.ls33_c00481{letter-spacing:0.946187pt;}
.ls16_c00481{letter-spacing:0.952213pt;}
.ls5_c00481{letter-spacing:0.958240pt;}
.ls43_c00481{letter-spacing:0.964267pt;}
.ls12_c00481{letter-spacing:0.967200pt;}
.ls52_c00481{letter-spacing:0.976320pt;}
.ls66_c00481{letter-spacing:0.982347pt;}
.ls45_c00481{letter-spacing:0.988373pt;}
.ls9_c00481{letter-spacing:0.994400pt;}
.ls20_c00481{letter-spacing:1.000427pt;}
.ls53_c00481{letter-spacing:1.006453pt;}
.ls55_c00481{letter-spacing:1.012480pt;}
.ls29_c00481{letter-spacing:1.018507pt;}
.ls73_c00481{letter-spacing:1.030560pt;}
.ls6_c00481{letter-spacing:1.066720pt;}
.ls4d_c00481{letter-spacing:1.078773pt;}
.ls3f_c00481{letter-spacing:1.090827pt;}
.ls5f_c00481{letter-spacing:1.102880pt;}
.ls39_c00481{letter-spacing:1.120960pt;}
.ls5e_c00481{letter-spacing:1.145067pt;}
.ls92_c00481{letter-spacing:1.181227pt;}
.lsa_c00481{letter-spacing:1.205333pt;}
.ls68_c00481{letter-spacing:1.217387pt;}
.ls34_c00481{letter-spacing:1.235467pt;}
.ls2a_c00481{letter-spacing:1.277653pt;}
.ls9f_c00481{letter-spacing:1.283680pt;}
.ls3a_c00481{letter-spacing:1.295733pt;}
.ls3_c00481{letter-spacing:1.301760pt;}
.ls18_c00481{letter-spacing:1.313813pt;}
.ls5d_c00481{letter-spacing:1.319840pt;}
.ls19_c00481{letter-spacing:1.337920pt;}
.ls63_c00481{letter-spacing:1.386133pt;}
.ls3b_c00481{letter-spacing:1.410240pt;}
.ls80_c00481{letter-spacing:1.458453pt;}
.ls2c_c00481{letter-spacing:1.464480pt;}
.ls88_c00481{letter-spacing:1.470507pt;}
.ls62_c00481{letter-spacing:1.484747pt;}
.ls3e_c00481{letter-spacing:1.554880pt;}
.lsc_c00481{letter-spacing:1.578987pt;}
.ls57_c00481{letter-spacing:1.651307pt;}
.ls5a_c00481{letter-spacing:1.657333pt;}
.ls87_c00481{letter-spacing:1.669387pt;}
.ls14_c00481{letter-spacing:1.711573pt;}
.ls26_c00481{letter-spacing:1.717600pt;}
.ls4f_c00481{letter-spacing:1.801973pt;}
.ls24_c00481{letter-spacing:1.808000pt;}
.ls9d_c00481{letter-spacing:1.832107pt;}
.ls8f_c00481{letter-spacing:1.838133pt;}
.lse_c00481{letter-spacing:1.850187pt;}
.ls38_c00481{letter-spacing:1.880320pt;}
.ls7_c00481{letter-spacing:1.898400pt;}
.ls0_c00481{letter-spacing:1.904427pt;}
.ls27_c00481{letter-spacing:1.952640pt;}
.ls9c_c00481{letter-spacing:1.982773pt;}
.ls1d_c00481{letter-spacing:2.000853pt;}
.ls40_c00481{letter-spacing:2.012907pt;}
.ls46_c00481{letter-spacing:2.024960pt;}
.ls60_c00481{letter-spacing:2.055093pt;}
.lsf_c00481{letter-spacing:2.067147pt;}
.ls36_c00481{letter-spacing:2.073173pt;}
.ls59_c00481{letter-spacing:2.169600pt;}
.ls21_c00481{letter-spacing:2.404640pt;}
.ls2b_c00481{letter-spacing:2.434773pt;}
.ls49_c00481{letter-spacing:2.658240pt;}
.ls64_c00481{letter-spacing:3.013333pt;}
.ls70_c00481{letter-spacing:3.120000pt;}
.ls86_c00481{letter-spacing:3.280000pt;}
.ws8_c00481{word-spacing:0.000000pt;}
.ws2_c00481{word-spacing:2.036053pt;}
.ws1_c00481{word-spacing:2.101227pt;}
.ws3_c00481{word-spacing:4.284960pt;}
.ws0_c00481{word-spacing:12.255253pt;}
.ws5_c00481{word-spacing:19.421120pt;}
.ws6_c00481{word-spacing:26.119573pt;}
.ws7_c00481{word-spacing:27.879360pt;}
.ws4_c00481{word-spacing:33.092427pt;}
._7_c00481{margin-left:-12.669867pt;}
._d_c00481{margin-left:-4.508853pt;}
._a_c00481{margin-left:-2.970240pt;}
._b_c00481{margin-left:-1.470027pt;}
._4_c00481{width:1.597067pt;}
._f_c00481{width:2.658027pt;}
._5_c00481{width:3.590507pt;}
._3_c00481{width:4.833387pt;}
._9_c00481{width:6.240000pt;}
._c_c00481{width:7.138613pt;}
._6_c00481{width:8.490027pt;}
._8_c00481{width:9.518560pt;}
._0_c00481{width:11.028800pt;}
._2_c00481{width:12.271627pt;}
._e_c00481{width:14.478347pt;}
._1a_c00481{width:16.077760pt;}
._11_c00481{width:17.873653pt;}
._10_c00481{width:19.147787pt;}
._1_c00481{width:20.460533pt;}
._19_c00481{width:22.468213pt;}
._1c_c00481{width:26.453920pt;}
._18_c00481{width:27.555840pt;}
._17_c00481{width:28.820640pt;}
._12_c00481{width:30.868800pt;}
._15_c00481{width:31.948800pt;}
._1b_c00481{width:33.015947pt;}
._14_c00481{width:33.922507pt;}
._16_c00481{width:36.133493pt;}
._1d_c00481{width:39.604853pt;}
._13_c00481{width:41.584000pt;}
.fs0_c00481{font-size:51.733333pt;}
.fs5_c00481{font-size:58.666667pt;}
.fs4_c00481{font-size:59.200000pt;}
.fs1_c00481{font-size:60.266667pt;}
.fs6_c00481{font-size:61.333333pt;}
.fs2_c00481{font-size:62.400000pt;}
.fs3_c00481{font-size:65.600000pt;}
.y0_c00481{bottom:0.000000pt;}
.y21_c00481{bottom:61.453333pt;}
.y20_c00481{bottom:115.520000pt;}
.y1f_c00481{bottom:115.520400pt;}
.y1e_c00481{bottom:143.680000pt;}
.y1d_c00481{bottom:143.680400pt;}
.y1c_c00481{bottom:197.453333pt;}
.y1b_c00481{bottom:197.455333pt;}
.y1a_c00481{bottom:225.613333pt;}
.y19_c00481{bottom:279.687733pt;}
.y17_c00481{bottom:308.168267pt;}
.y18_c00481{bottom:308.173333pt;}
.y16_c00481{bottom:335.680000pt;}
.y15_c00481{bottom:335.682133pt;}
.y14_c00481{bottom:389.440000pt;}
.y13_c00481{bottom:417.613333pt;}
.y12_c00481{bottom:445.133333pt;}
.y11_c00481{bottom:499.202267pt;}
.y10_c00481{bottom:527.693333pt;}
.yf_c00481{bottom:582.095467pt;}
.ye_c00481{bottom:610.240000pt;}
.yd_c00481{bottom:610.246533pt;}
.yc_c00481{bottom:637.773333pt;}
.yb_c00481{bottom:692.166533pt;}
.ya_c00481{bottom:719.686533pt;}
.y8_c00481{bottom:747.211200pt;}
.y9_c00481{bottom:747.213333pt;}
.y7_c00481{bottom:801.933333pt;}
.y6_c00481{bottom:856.960000pt;}
.y5_c00481{bottom:883.853333pt;}
.y4_c00481{bottom:939.213333pt;}
.y3_c00481{bottom:966.400000pt;}
.y2_c00481{bottom:993.933333pt;}
.y1_c00481{bottom:1061.453333pt;}
.h10_c00481{height:50.773437pt;}
.h2_c00481{height:52.137500pt;}
.h3_c00481{height:59.148438pt;}
.h9_c00481{height:59.175637pt;}
.ha_c00481{height:61.185585pt;}
.h7_c00481{height:61.187500pt;}
.hf_c00481{height:61.210119pt;}
.h4_c00481{height:61.211719pt;}
.h8_c00481{height:61.238919pt;}
.hb_c00481{height:61.242187pt;}
.hc_c00481{height:61.743750pt;}
.h6_c00481{height:61.752283pt;}
.hd_c00481{height:63.968750pt;}
.h5_c00481{height:64.382813pt;}
.he_c00481{height:65.081250pt;}
.h1_c00481{height:1122.666667pt;}
.h0_c00481{height:1122.880000pt;}
.w1_c00481{width:793.333333pt;}
.w0_c00481{width:793.600000pt;}
.x0_c00481{left:0.000000pt;}
.x1f_c00481{left:108.634400pt;}
.x12_c00481{left:109.693333pt;}
.x9_c00481{left:110.973333pt;}
.x1_c00481{left:112.560000pt;}
.xe_c00481{left:136.600000pt;}
.x20_c00481{left:145.573333pt;}
.x4_c00481{left:151.613333pt;}
.xc_c00481{left:174.960000pt;}
.x21_c00481{left:176.240000pt;}
.x5_c00481{left:185.173333pt;}
.xd_c00481{left:188.973333pt;}
.x1a_c00481{left:195.440000pt;}
.x22_c00481{left:206.640000pt;}
.x18_c00481{left:219.306667pt;}
.x23_c00481{left:230.573333pt;}
.xf_c00481{left:236.093333pt;}
.x19_c00481{left:251.706667pt;}
.x10_c00481{left:271.013333pt;}
.x1b_c00481{left:307.360000pt;}
.x1c_c00481{left:327.053333pt;}
.x24_c00481{left:334.706667pt;}
.x27_c00481{left:361.573333pt;}
.x1d_c00481{left:378.946667pt;}
.x6_c00481{left:383.853333pt;}
.x28_c00481{left:391.973333pt;}
.x11_c00481{left:403.960000pt;}
.x1e_c00481{left:415.613333pt;}
.x13_c00481{left:417.413333pt;}
.x14_c00481{left:435.973333pt;}
.x7_c00481{left:437.693333pt;}
.xa_c00481{left:471.893333pt;}
.xb_c00481{left:489.466667pt;}
.x15_c00481{left:597.093333pt;}
.x25_c00481{left:599.186667pt;}
.x16_c00481{left:619.240000pt;}
.x26_c00481{left:623.693333pt;}
.x2_c00481{left:633.426667pt;}
.x8_c00481{left:652.666667pt;}
.x3_c00481{left:653.720000pt;}
.x17_c00481{left:667.346667pt;}
}





/* 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_c00482 {
    display:none;
  }
  .loading-indicator_c00482.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00482 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_c00482 { 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_c00482" -> "#page-container .classname_c00482")
 */
.pf_c00482 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00482 { /* 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_c00482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00482 { /* 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_c00482 { /* 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_c00482 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00482 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00482 {overflow:visible;}
  }
}
.c_c00482 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00482 { /* 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_c00482:after { /* webkit #35443 */
  content: '';
}
.t_c00482:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00482 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 */
}
.__c00482 { /* 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_c00482 { /* info for Javascript */
  display:none;
}
.l_c00482 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00482 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00482 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00482: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_c00482 {
    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_c00482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00482.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_c00482 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00482{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00482;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.311035;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_c00482;src:url('chunks/assets/font_6e8f896cc9586c4665ce0cdc.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.284668;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_c00482;src:url('chunks/assets/font_0f7837f234895509767aba5c.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.284180;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_c00482;src:url('chunks/assets/font_af2a8e0df0b38476d704afbd.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;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:ff5_c00482;src:url('chunks/assets/font_a7865fba37fde547f1bd68f2.woff2')format("woff");}.ff5_c00482{font-family:ff5_c00482;line-height:0.666000;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;}
.m6_c00482{transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);}
.mc_c00482{transform:matrix(0.191412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191412,0.000000,0.000000,0.250000,0,0);}
.m3_c00482{transform:matrix(0.208729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208729,0.000000,0.000000,0.250000,0,0);}
.md_c00482{transform:matrix(0.238930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238930,0.000000,0.000000,0.250000,0,0);}
.m10_c00482{transform:matrix(0.239033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239033,0.000000,0.000000,0.250000,0,0);}
.m8_c00482{transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);}
.m9_c00482{transform:matrix(0.247326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247326,0.000000,0.000000,0.250000,0,0);}
.m0_c00482{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);}
.me_c00482{transform:matrix(0.255645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255645,0.000000,0.000000,0.250000,0,0);}
.mb_c00482{transform:matrix(0.256123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256123,0.000000,0.000000,0.250000,0,0);}
.mf_c00482{transform:matrix(0.256252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256252,0.000000,0.000000,0.250000,0,0);}
.m1_c00482{transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);}
.m2_c00482{transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);}
.m7_c00482{transform:matrix(0.277473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277473,0.000000,0.000000,0.250000,0,0);}
.m5_c00482{transform:matrix(0.279471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279471,0.000000,0.000000,0.250000,0,0);}
.m4_c00482{transform:matrix(0.280080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280080,0.000000,0.000000,0.250000,0,0);}
.ma_c00482{transform:matrix(0.285681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285681,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls9b_c00482{letter-spacing:-3.696000px;}
.ls88_c00482{letter-spacing:-2.667000px;}
.ls7b_c00482{letter-spacing:-2.541000px;}
.ls9e_c00482{letter-spacing:-2.394000px;}
.ls8f_c00482{letter-spacing:-2.352000px;}
.ls76_c00482{letter-spacing:-2.277720px;}
.ls94_c00482{letter-spacing:-2.210880px;}
.ls70_c00482{letter-spacing:-2.076480px;}
.lsa5_c00482{letter-spacing:-2.031480px;}
.ls9d_c00482{letter-spacing:-2.004120px;}
.ls99_c00482{letter-spacing:-1.969920px;}
.ls67_c00482{letter-spacing:-1.968960px;}
.lsa1_c00482{letter-spacing:-1.565760px;}
.ls6e_c00482{letter-spacing:-1.518720px;}
.ls91_c00482{letter-spacing:-1.512000px;}
.ls84_c00482{letter-spacing:-1.210680px;}
.ls98_c00482{letter-spacing:-1.197000px;}
.ls72_c00482{letter-spacing:-1.061760px;}
.ls83_c00482{letter-spacing:-1.060200px;}
.ls6f_c00482{letter-spacing:-0.954240px;}
.ls89_c00482{letter-spacing:-0.950760px;}
.ls6d_c00482{letter-spacing:-0.947520px;}
.ls9a_c00482{letter-spacing:-0.930240px;}
.lsa8_c00482{letter-spacing:-0.827640px;}
.ls93_c00482{letter-spacing:-0.813120px;}
.ls9c_c00482{letter-spacing:-0.766080px;}
.ls77_c00482{letter-spacing:-0.739200px;}
.ls6a_c00482{letter-spacing:-0.732480px;}
.ls8c_c00482{letter-spacing:-0.665280px;}
.lsa7_c00482{letter-spacing:-0.547200px;}
.ls8d_c00482{letter-spacing:-0.483840px;}
.ls7e_c00482{letter-spacing:-0.430920px;}
.lsab_c00482{letter-spacing:-0.385020px;}
.ls7c_c00482{letter-spacing:-0.369360px;}
.ls7a_c00482{letter-spacing:-0.342000px;}
.ls7f_c00482{letter-spacing:-0.322560px;}
.ls71_c00482{letter-spacing:-0.287280px;}
.ls6b_c00482{letter-spacing:-0.282240px;}
.ls9f_c00482{letter-spacing:-0.248640px;}
.lsa9_c00482{letter-spacing:-0.246240px;}
.ls85_c00482{letter-spacing:-0.194880px;}
.lsa3_c00482{letter-spacing:-0.120960px;}
.lsa6_c00482{letter-spacing:-0.102600px;}
.ls75_c00482{letter-spacing:-0.068400px;}
.ls7d_c00482{letter-spacing:-0.061560px;}
.ls97_c00482{letter-spacing:-0.026880px;}
.ls8b_c00482{letter-spacing:-0.020160px;}
.ls68_c00482{letter-spacing:0.000000px;}
.ls27_c00482{letter-spacing:0.041040px;}
.ls2b_c00482{letter-spacing:0.087360px;}
.ls51_c00482{letter-spacing:0.095760px;}
.ls4f_c00482{letter-spacing:0.102600px;}
.ls11_c00482{letter-spacing:0.134400px;}
.ls2a_c00482{letter-spacing:0.168000px;}
.ls63_c00482{letter-spacing:0.205200px;}
.ls2_c00482{letter-spacing:0.228480px;}
.ls28_c00482{letter-spacing:0.314640px;}
.ls6c_c00482{letter-spacing:0.342720px;}
.ls6_c00482{letter-spacing:0.348840px;}
.ls29_c00482{letter-spacing:0.376320px;}
.ls42_c00482{letter-spacing:0.396480px;}
.ls5f_c00482{letter-spacing:0.430080px;}
.ls34_c00482{letter-spacing:0.444600px;}
.ls56_c00482{letter-spacing:0.483840px;}
.ls14_c00482{letter-spacing:0.490560px;}
.ls3b_c00482{letter-spacing:0.497280px;}
.ls64_c00482{letter-spacing:0.506160px;}
.lsb_c00482{letter-spacing:0.517440px;}
.ls1c_c00482{letter-spacing:0.544320px;}
.ls80_c00482{letter-spacing:0.551040px;}
.ls39_c00482{letter-spacing:0.577920px;}
.ls59_c00482{letter-spacing:0.591360px;}
.ls60_c00482{letter-spacing:0.598080px;}
.ls4a_c00482{letter-spacing:0.604800px;}
.lsf_c00482{letter-spacing:0.615600px;}
.ls5d_c00482{letter-spacing:0.631680px;}
.ls57_c00482{letter-spacing:0.651840px;}
.lse_c00482{letter-spacing:0.672000px;}
.ls2f_c00482{letter-spacing:0.685440px;}
.ls7_c00482{letter-spacing:0.697680px;}
.lsaa_c00482{letter-spacing:0.698880px;}
.ls35_c00482{letter-spacing:0.725040px;}
.ls49_c00482{letter-spacing:0.759360px;}
.ls95_c00482{letter-spacing:0.779520px;}
.ls24_c00482{letter-spacing:0.786240px;}
.ls1a_c00482{letter-spacing:0.786600px;}
.lsc_c00482{letter-spacing:0.799680px;}
.ls4e_c00482{letter-spacing:0.806400px;}
.lsd_c00482{letter-spacing:0.833280px;}
.ls3e_c00482{letter-spacing:0.846720px;}
.ls30_c00482{letter-spacing:0.853440px;}
.ls3a_c00482{letter-spacing:0.860160px;}
.ls5_c00482{letter-spacing:0.868680px;}
.ls41_c00482{letter-spacing:0.882360px;}
.ls54_c00482{letter-spacing:0.893760px;}
.ls2e_c00482{letter-spacing:0.900480px;}
.ls79_c00482{letter-spacing:0.907200px;}
.ls40_c00482{letter-spacing:0.920640px;}
.ls96_c00482{letter-spacing:0.927360px;}
.ls73_c00482{letter-spacing:0.960960px;}
.ls48_c00482{letter-spacing:0.974400px;}
.ls50_c00482{letter-spacing:0.978120px;}
.ls5b_c00482{letter-spacing:0.994560px;}
.ls2d_c00482{letter-spacing:1.001280px;}
.ls18_c00482{letter-spacing:1.008000px;}
.ls3c_c00482{letter-spacing:1.014720px;}
.ls3f_c00482{letter-spacing:1.021440px;}
.ls17_c00482{letter-spacing:1.028160px;}
.ls13_c00482{letter-spacing:1.034880px;}
.ls1f_c00482{letter-spacing:1.048320px;}
.ls32_c00482{letter-spacing:1.055040px;}
.ls62_c00482{letter-spacing:1.061760px;}
.ls5c_c00482{letter-spacing:1.068480px;}
.ls3_c00482{letter-spacing:1.115520px;}
.ls66_c00482{letter-spacing:1.128960px;}
.lsa0_c00482{letter-spacing:1.135680px;}
.ls8a_c00482{letter-spacing:1.169280px;}
.ls4d_c00482{letter-spacing:1.196160px;}
.ls45_c00482{letter-spacing:1.202880px;}
.ls58_c00482{letter-spacing:1.223040px;}
.ls5a_c00482{letter-spacing:1.229760px;}
.ls2c_c00482{letter-spacing:1.256640px;}
.ls61_c00482{letter-spacing:1.263360px;}
.ls92_c00482{letter-spacing:1.283520px;}
.ls81_c00482{letter-spacing:1.303680px;}
.ls5e_c00482{letter-spacing:1.317120px;}
.ls37_c00482{letter-spacing:1.344000px;}
.ls19_c00482{letter-spacing:1.384320px;}
.ls1d_c00482{letter-spacing:1.404480px;}
.ls52_c00482{letter-spacing:1.424640px;}
.ls4c_c00482{letter-spacing:1.444800px;}
.ls3d_c00482{letter-spacing:1.458240px;}
.ls10_c00482{letter-spacing:1.485120px;}
.ls31_c00482{letter-spacing:1.491840px;}
.ls9_c00482{letter-spacing:1.505160px;}
.ls22_c00482{letter-spacing:1.512000px;}
.ls16_c00482{letter-spacing:1.552320px;}
.lsa2_c00482{letter-spacing:1.599360px;}
.ls36_c00482{letter-spacing:1.606080px;}
.ls53_c00482{letter-spacing:1.632960px;}
.ls90_c00482{letter-spacing:1.693440px;}
.ls4_c00482{letter-spacing:1.706880px;}
.ls12_c00482{letter-spacing:1.720320px;}
.ls21_c00482{letter-spacing:1.727040px;}
.ls33_c00482{letter-spacing:1.733760px;}
.ls25_c00482{letter-spacing:1.819440px;}
.ls8e_c00482{letter-spacing:1.854720px;}
.ls46_c00482{letter-spacing:1.942080px;}
.ls20_c00482{letter-spacing:1.955520px;}
.ls1_c00482{letter-spacing:1.975680px;}
.ls87_c00482{letter-spacing:2.002560px;}
.ls44_c00482{letter-spacing:2.036160px;}
.ls43_c00482{letter-spacing:2.056320px;}
.ls74_c00482{letter-spacing:2.069760px;}
.ls86_c00482{letter-spacing:2.076480px;}
.ls47_c00482{letter-spacing:2.083200px;}
.ls1e_c00482{letter-spacing:2.130240px;}
.ls1b_c00482{letter-spacing:2.150400px;}
.ls23_c00482{letter-spacing:2.177280px;}
.ls78_c00482{letter-spacing:2.231040px;}
.ls38_c00482{letter-spacing:2.264640px;}
.ls15_c00482{letter-spacing:2.271360px;}
.lsa_c00482{letter-spacing:2.358720px;}
.ls8_c00482{letter-spacing:2.472960px;}
.ls4b_c00482{letter-spacing:2.567040px;}
.ls65_c00482{letter-spacing:2.667600px;}
.ls55_c00482{letter-spacing:2.755200px;}
.ls0_c00482{letter-spacing:3.138240px;}
.ls26_c00482{letter-spacing:3.262680px;}
.ls82_c00482{letter-spacing:3.292800px;}
.ls69_c00482{letter-spacing:3.360000px;}
.lsa4_c00482{letter-spacing:3.420000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{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__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00482{word-spacing:-0.732480px;}
.wsa_c00482{word-spacing:0.000000px;}
.ws8_c00482{word-spacing:2.970240px;}
.ws4_c00482{word-spacing:4.448640px;}
.ws6_c00482{word-spacing:5.859840px;}
.ws9_c00482{word-spacing:6.700320px;}
.ws5_c00482{word-spacing:7.069440px;}
.ws0_c00482{word-spacing:8.749440px;}
.ws1_c00482{word-spacing:13.984320px;}
.ws7_c00482{word-spacing:24.587040px;}
.ws3_c00482{word-spacing:28.365120px;}
._10_c00482{margin-left:-9.680640px;}
._1d_c00482{margin-left:-5.918400px;}
._18_c00482{margin-left:-4.197000px;}
._d_c00482{margin-left:-3.156960px;}
._12_c00482{margin-left:-2.036160px;}
._f_c00482{margin-left:-1.034880px;}
._11_c00482{width:1.046880px;}
._e_c00482{width:2.419200px;}
._6_c00482{width:3.574440px;}
._0_c00482{width:4.730880px;}
._3_c00482{width:6.259680px;}
._13_c00482{width:7.598160px;}
._5_c00482{width:9.623040px;}
._2_c00482{width:11.424000px;}
._8_c00482{width:12.862080px;}
._b_c00482{width:14.448000px;}
._a_c00482{width:15.489600px;}
._1_c00482{width:16.601280px;}
._7_c00482{width:18.756600px;}
._17_c00482{width:20.596800px;}
._4_c00482{width:21.698880px;}
._c_c00482{width:22.788480px;}
._1a_c00482{width:23.788800px;}
._9_c00482{width:25.623360px;}
._1c_c00482{width:27.009600px;}
._14_c00482{width:28.089600px;}
._16_c00482{width:30.507840px;}
._1b_c00482{width:32.681520px;}
._15_c00482{width:35.044800px;}
._19_c00482{width:36.859200px;}
.fc0_c00482{color:transparent;}
.fs5_c00482{font-size:53.280000px;}
.fs8_c00482{font-size:55.800000px;}
.fs0_c00482{font-size:58.800000px;}
.fs3_c00482{font-size:66.600000px;}
.fs1_c00482{font-size:67.200000px;}
.fs2_c00482{font-size:68.400000px;}
.fs4_c00482{font-size:72.600000px;}
.fs6_c00482{font-size:76.200000px;}
.fs7_c00482{font-size:105.600000px;}
.y0_c00482{bottom:0.000000px;}
.y1f_c00482{bottom:68.055000px;}
.y1e_c00482{bottom:190.800000px;}
.y1d_c00482{bottom:190.805100px;}
.y1c_c00482{bottom:221.055000px;}
.y1b_c00482{bottom:221.059800px;}
.y1a_c00482{bottom:252.375000px;}
.y19_c00482{bottom:313.935000px;}
.y18_c00482{bottom:313.942200px;}
.y17_c00482{bottom:344.535000px;}
.y16_c00482{bottom:406.092600px;}
.y14_c00482{bottom:437.052600px;}
.y15_c00482{bottom:437.055000px;}
.y12_c00482{bottom:468.012600px;}
.y13_c00482{bottom:468.015000px;}
.y11_c00482{bottom:498.975000px;}
.yf_c00482{bottom:560.534400px;}
.y10_c00482{bottom:560.535000px;}
.ye_c00482{bottom:591.480000px;}
.yd_c00482{bottom:652.695000px;}
.yc_c00482{bottom:652.702200px;}
.yb_c00482{bottom:683.295000px;}
.ya_c00482{bottom:744.480000px;}
.y9_c00482{bottom:775.440000px;}
.y8_c00482{bottom:837.377400px;}
.y7_c00482{bottom:868.339800px;}
.y6_c00482{bottom:929.895000px;}
.y5_c00482{bottom:990.720000px;}
.y4_c00482{bottom:1021.335000px;}
.y3_c00482{bottom:1081.815000px;}
.y2_c00482{bottom:1113.135000px;}
.y1_c00482{bottom:1188.720000px;}
.h8_c00482{height:35.484480px;}
.he_c00482{height:54.764648px;}
.h2_c00482{height:59.259375px;}
.h3_c00482{height:65.953125px;}
.ha_c00482{height:65.962725px;}
.hc_c00482{height:67.068661px;}
.h6_c00482{height:67.087861px;}
.h4_c00482{height:67.097461px;}
.hb_c00482{height:67.107061px;}
.h5_c00482{height:69.461719px;}
.h7_c00482{height:71.252930px;}
.h9_c00482{height:79.474219px;}
.hd_c00482{height:103.640625px;}
.h1_c00482{height:1263.000000px;}
.h0_c00482{height:1263.240000px;}
.w1_c00482{width:892.500000px;}
.w0_c00482{width:892.800000px;}
.x0_c00482{left:0.000000px;}
.x19_c00482{left:126.277200px;}
.x1_c00482{left:127.350000px;}
.xb_c00482{left:179.640000px;}
.x4_c00482{left:201.510000px;}
.xc_c00482{left:210.150000px;}
.xe_c00482{left:223.560000px;}
.x1a_c00482{left:225.630000px;}
.x6_c00482{left:227.250000px;}
.x5_c00482{left:239.175000px;}
.xf_c00482{left:241.155000px;}
.x8_c00482{left:243.135000px;}
.x7_c00482{left:245.535000px;}
.xd_c00482{left:247.680000px;}
.x1b_c00482{left:260.925000px;}
.x12_c00482{left:296.820000px;}
.x13_c00482{left:321.150000px;}
.x15_c00482{left:368.085000px;}
.x16_c00482{left:387.975000px;}
.x1c_c00482{left:426.375000px;}
.x1e_c00482{left:429.375000px;}
.x9_c00482{left:437.940000px;}
.x1f_c00482{left:444.000000px;}
.xa_c00482{left:458.340000px;}
.x1d_c00482{left:469.965000px;}
.x17_c00482{left:487.920000px;}
.x18_c00482{left:535.245000px;}
.x2_c00482{left:592.395000px;}
.x10_c00482{left:649.860000px;}
.x11_c00482{left:669.585000px;}
.x3_c00482{left:672.855000px;}
.x14_c00482{left:712.650000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls9b_c00482{letter-spacing:-3.285333pt;}
.ls88_c00482{letter-spacing:-2.370667pt;}
.ls7b_c00482{letter-spacing:-2.258667pt;}
.ls9e_c00482{letter-spacing:-2.128000pt;}
.ls8f_c00482{letter-spacing:-2.090667pt;}
.ls76_c00482{letter-spacing:-2.024640pt;}
.ls94_c00482{letter-spacing:-1.965227pt;}
.ls70_c00482{letter-spacing:-1.845760pt;}
.lsa5_c00482{letter-spacing:-1.805760pt;}
.ls9d_c00482{letter-spacing:-1.781440pt;}
.ls99_c00482{letter-spacing:-1.751040pt;}
.ls67_c00482{letter-spacing:-1.750187pt;}
.lsa1_c00482{letter-spacing:-1.391787pt;}
.ls6e_c00482{letter-spacing:-1.349973pt;}
.ls91_c00482{letter-spacing:-1.344000pt;}
.ls84_c00482{letter-spacing:-1.076160pt;}
.ls98_c00482{letter-spacing:-1.064000pt;}
.ls72_c00482{letter-spacing:-0.943787pt;}
.ls83_c00482{letter-spacing:-0.942400pt;}
.ls6f_c00482{letter-spacing:-0.848213pt;}
.ls89_c00482{letter-spacing:-0.845120pt;}
.ls6d_c00482{letter-spacing:-0.842240pt;}
.ls9a_c00482{letter-spacing:-0.826880pt;}
.lsa8_c00482{letter-spacing:-0.735680pt;}
.ls93_c00482{letter-spacing:-0.722773pt;}
.ls9c_c00482{letter-spacing:-0.680960pt;}
.ls77_c00482{letter-spacing:-0.657067pt;}
.ls6a_c00482{letter-spacing:-0.651093pt;}
.ls8c_c00482{letter-spacing:-0.591360pt;}
.lsa7_c00482{letter-spacing:-0.486400pt;}
.ls8d_c00482{letter-spacing:-0.430080pt;}
.ls7e_c00482{letter-spacing:-0.383040pt;}
.lsab_c00482{letter-spacing:-0.342240pt;}
.ls7c_c00482{letter-spacing:-0.328320pt;}
.ls7a_c00482{letter-spacing:-0.304000pt;}
.ls7f_c00482{letter-spacing:-0.286720pt;}
.ls71_c00482{letter-spacing:-0.255360pt;}
.ls6b_c00482{letter-spacing:-0.250880pt;}
.ls9f_c00482{letter-spacing:-0.221013pt;}
.lsa9_c00482{letter-spacing:-0.218880pt;}
.ls85_c00482{letter-spacing:-0.173227pt;}
.lsa3_c00482{letter-spacing:-0.107520pt;}
.lsa6_c00482{letter-spacing:-0.091200pt;}
.ls75_c00482{letter-spacing:-0.060800pt;}
.ls7d_c00482{letter-spacing:-0.054720pt;}
.ls97_c00482{letter-spacing:-0.023893pt;}
.ls8b_c00482{letter-spacing:-0.017920pt;}
.ls68_c00482{letter-spacing:0.000000pt;}
.ls27_c00482{letter-spacing:0.036480pt;}
.ls2b_c00482{letter-spacing:0.077653pt;}
.ls51_c00482{letter-spacing:0.085120pt;}
.ls4f_c00482{letter-spacing:0.091200pt;}
.ls11_c00482{letter-spacing:0.119467pt;}
.ls2a_c00482{letter-spacing:0.149333pt;}
.ls63_c00482{letter-spacing:0.182400pt;}
.ls2_c00482{letter-spacing:0.203093pt;}
.ls28_c00482{letter-spacing:0.279680pt;}
.ls6c_c00482{letter-spacing:0.304640pt;}
.ls6_c00482{letter-spacing:0.310080pt;}
.ls29_c00482{letter-spacing:0.334507pt;}
.ls42_c00482{letter-spacing:0.352427pt;}
.ls5f_c00482{letter-spacing:0.382293pt;}
.ls34_c00482{letter-spacing:0.395200pt;}
.ls56_c00482{letter-spacing:0.430080pt;}
.ls14_c00482{letter-spacing:0.436053pt;}
.ls3b_c00482{letter-spacing:0.442027pt;}
.ls64_c00482{letter-spacing:0.449920pt;}
.lsb_c00482{letter-spacing:0.459947pt;}
.ls1c_c00482{letter-spacing:0.483840pt;}
.ls80_c00482{letter-spacing:0.489813pt;}
.ls39_c00482{letter-spacing:0.513707pt;}
.ls59_c00482{letter-spacing:0.525653pt;}
.ls60_c00482{letter-spacing:0.531627pt;}
.ls4a_c00482{letter-spacing:0.537600pt;}
.lsf_c00482{letter-spacing:0.547200pt;}
.ls5d_c00482{letter-spacing:0.561493pt;}
.ls57_c00482{letter-spacing:0.579413pt;}
.lse_c00482{letter-spacing:0.597333pt;}
.ls2f_c00482{letter-spacing:0.609280pt;}
.ls7_c00482{letter-spacing:0.620160pt;}
.lsaa_c00482{letter-spacing:0.621227pt;}
.ls35_c00482{letter-spacing:0.644480pt;}
.ls49_c00482{letter-spacing:0.674987pt;}
.ls95_c00482{letter-spacing:0.692907pt;}
.ls24_c00482{letter-spacing:0.698880pt;}
.ls1a_c00482{letter-spacing:0.699200pt;}
.lsc_c00482{letter-spacing:0.710827pt;}
.ls4e_c00482{letter-spacing:0.716800pt;}
.lsd_c00482{letter-spacing:0.740693pt;}
.ls3e_c00482{letter-spacing:0.752640pt;}
.ls30_c00482{letter-spacing:0.758613pt;}
.ls3a_c00482{letter-spacing:0.764587pt;}
.ls5_c00482{letter-spacing:0.772160pt;}
.ls41_c00482{letter-spacing:0.784320pt;}
.ls54_c00482{letter-spacing:0.794453pt;}
.ls2e_c00482{letter-spacing:0.800427pt;}
.ls79_c00482{letter-spacing:0.806400pt;}
.ls40_c00482{letter-spacing:0.818347pt;}
.ls96_c00482{letter-spacing:0.824320pt;}
.ls73_c00482{letter-spacing:0.854187pt;}
.ls48_c00482{letter-spacing:0.866133pt;}
.ls50_c00482{letter-spacing:0.869440pt;}
.ls5b_c00482{letter-spacing:0.884053pt;}
.ls2d_c00482{letter-spacing:0.890027pt;}
.ls18_c00482{letter-spacing:0.896000pt;}
.ls3c_c00482{letter-spacing:0.901973pt;}
.ls3f_c00482{letter-spacing:0.907947pt;}
.ls17_c00482{letter-spacing:0.913920pt;}
.ls13_c00482{letter-spacing:0.919893pt;}
.ls1f_c00482{letter-spacing:0.931840pt;}
.ls32_c00482{letter-spacing:0.937813pt;}
.ls62_c00482{letter-spacing:0.943787pt;}
.ls5c_c00482{letter-spacing:0.949760pt;}
.ls3_c00482{letter-spacing:0.991573pt;}
.ls66_c00482{letter-spacing:1.003520pt;}
.lsa0_c00482{letter-spacing:1.009493pt;}
.ls8a_c00482{letter-spacing:1.039360pt;}
.ls4d_c00482{letter-spacing:1.063253pt;}
.ls45_c00482{letter-spacing:1.069227pt;}
.ls58_c00482{letter-spacing:1.087147pt;}
.ls5a_c00482{letter-spacing:1.093120pt;}
.ls2c_c00482{letter-spacing:1.117013pt;}
.ls61_c00482{letter-spacing:1.122987pt;}
.ls92_c00482{letter-spacing:1.140907pt;}
.ls81_c00482{letter-spacing:1.158827pt;}
.ls5e_c00482{letter-spacing:1.170773pt;}
.ls37_c00482{letter-spacing:1.194667pt;}
.ls19_c00482{letter-spacing:1.230507pt;}
.ls1d_c00482{letter-spacing:1.248427pt;}
.ls52_c00482{letter-spacing:1.266347pt;}
.ls4c_c00482{letter-spacing:1.284267pt;}
.ls3d_c00482{letter-spacing:1.296213pt;}
.ls10_c00482{letter-spacing:1.320107pt;}
.ls31_c00482{letter-spacing:1.326080pt;}
.ls9_c00482{letter-spacing:1.337920pt;}
.ls22_c00482{letter-spacing:1.344000pt;}
.ls16_c00482{letter-spacing:1.379840pt;}
.lsa2_c00482{letter-spacing:1.421653pt;}
.ls36_c00482{letter-spacing:1.427627pt;}
.ls53_c00482{letter-spacing:1.451520pt;}
.ls90_c00482{letter-spacing:1.505280pt;}
.ls4_c00482{letter-spacing:1.517227pt;}
.ls12_c00482{letter-spacing:1.529173pt;}
.ls21_c00482{letter-spacing:1.535147pt;}
.ls33_c00482{letter-spacing:1.541120pt;}
.ls25_c00482{letter-spacing:1.617280pt;}
.ls8e_c00482{letter-spacing:1.648640pt;}
.ls46_c00482{letter-spacing:1.726293pt;}
.ls20_c00482{letter-spacing:1.738240pt;}
.ls1_c00482{letter-spacing:1.756160pt;}
.ls87_c00482{letter-spacing:1.780053pt;}
.ls44_c00482{letter-spacing:1.809920pt;}
.ls43_c00482{letter-spacing:1.827840pt;}
.ls74_c00482{letter-spacing:1.839787pt;}
.ls86_c00482{letter-spacing:1.845760pt;}
.ls47_c00482{letter-spacing:1.851733pt;}
.ls1e_c00482{letter-spacing:1.893547pt;}
.ls1b_c00482{letter-spacing:1.911467pt;}
.ls23_c00482{letter-spacing:1.935360pt;}
.ls78_c00482{letter-spacing:1.983147pt;}
.ls38_c00482{letter-spacing:2.013013pt;}
.ls15_c00482{letter-spacing:2.018987pt;}
.lsa_c00482{letter-spacing:2.096640pt;}
.ls8_c00482{letter-spacing:2.198187pt;}
.ls4b_c00482{letter-spacing:2.281813pt;}
.ls65_c00482{letter-spacing:2.371200pt;}
.ls55_c00482{letter-spacing:2.449067pt;}
.ls0_c00482{letter-spacing:2.789547pt;}
.ls26_c00482{letter-spacing:2.900160pt;}
.ls82_c00482{letter-spacing:2.926933pt;}
.ls69_c00482{letter-spacing:2.986667pt;}
.lsa4_c00482{letter-spacing:3.040000pt;}
.ws2_c00482{word-spacing:-0.651093pt;}
.wsa_c00482{word-spacing:0.000000pt;}
.ws8_c00482{word-spacing:2.640213pt;}
.ws4_c00482{word-spacing:3.954347pt;}
.ws6_c00482{word-spacing:5.208747pt;}
.ws9_c00482{word-spacing:5.955840pt;}
.ws5_c00482{word-spacing:6.283947pt;}
.ws0_c00482{word-spacing:7.777280pt;}
.ws1_c00482{word-spacing:12.430507pt;}
.ws7_c00482{word-spacing:21.855147pt;}
.ws3_c00482{word-spacing:25.213440pt;}
._10_c00482{margin-left:-8.605013pt;}
._1d_c00482{margin-left:-5.260800pt;}
._18_c00482{margin-left:-3.730667pt;}
._d_c00482{margin-left:-2.806187pt;}
._12_c00482{margin-left:-1.809920pt;}
._f_c00482{margin-left:-0.919893pt;}
._11_c00482{width:0.930560pt;}
._e_c00482{width:2.150400pt;}
._6_c00482{width:3.177280pt;}
._0_c00482{width:4.205227pt;}
._3_c00482{width:5.564160pt;}
._13_c00482{width:6.753920pt;}
._5_c00482{width:8.553813pt;}
._2_c00482{width:10.154667pt;}
._8_c00482{width:11.432960pt;}
._b_c00482{width:12.842667pt;}
._a_c00482{width:13.768533pt;}
._1_c00482{width:14.756693pt;}
._7_c00482{width:16.672533pt;}
._17_c00482{width:18.308267pt;}
._4_c00482{width:19.287893pt;}
._c_c00482{width:20.256427pt;}
._1a_c00482{width:21.145600pt;}
._9_c00482{width:22.776320pt;}
._1c_c00482{width:24.008533pt;}
._14_c00482{width:24.968533pt;}
._16_c00482{width:27.118080pt;}
._1b_c00482{width:29.050240pt;}
._15_c00482{width:31.150933pt;}
._19_c00482{width:32.763733pt;}
.fs5_c00482{font-size:47.360000pt;}
.fs8_c00482{font-size:49.600000pt;}
.fs0_c00482{font-size:52.266667pt;}
.fs3_c00482{font-size:59.200000pt;}
.fs1_c00482{font-size:59.733333pt;}
.fs2_c00482{font-size:60.800000pt;}
.fs4_c00482{font-size:64.533333pt;}
.fs6_c00482{font-size:67.733333pt;}
.fs7_c00482{font-size:93.866667pt;}
.y0_c00482{bottom:0.000000pt;}
.y1f_c00482{bottom:60.493333pt;}
.y1e_c00482{bottom:169.600000pt;}
.y1d_c00482{bottom:169.604533pt;}
.y1c_c00482{bottom:196.493333pt;}
.y1b_c00482{bottom:196.497600pt;}
.y1a_c00482{bottom:224.333333pt;}
.y19_c00482{bottom:279.053333pt;}
.y18_c00482{bottom:279.059733pt;}
.y17_c00482{bottom:306.253333pt;}
.y16_c00482{bottom:360.971200pt;}
.y14_c00482{bottom:388.491200pt;}
.y15_c00482{bottom:388.493333pt;}
.y12_c00482{bottom:416.011200pt;}
.y13_c00482{bottom:416.013333pt;}
.y11_c00482{bottom:443.533333pt;}
.yf_c00482{bottom:498.252800pt;}
.y10_c00482{bottom:498.253333pt;}
.ye_c00482{bottom:525.760000pt;}
.yd_c00482{bottom:580.173333pt;}
.yc_c00482{bottom:580.179733pt;}
.yb_c00482{bottom:607.373333pt;}
.ya_c00482{bottom:661.760000pt;}
.y9_c00482{bottom:689.280000pt;}
.y8_c00482{bottom:744.335467pt;}
.y7_c00482{bottom:771.857600pt;}
.y6_c00482{bottom:826.573333pt;}
.y5_c00482{bottom:880.640000pt;}
.y4_c00482{bottom:907.853333pt;}
.y3_c00482{bottom:961.613333pt;}
.y2_c00482{bottom:989.453333pt;}
.y1_c00482{bottom:1056.640000pt;}
.h8_c00482{height:31.541760pt;}
.he_c00482{height:48.679688pt;}
.h2_c00482{height:52.675000pt;}
.h3_c00482{height:58.625000pt;}
.ha_c00482{height:58.633533pt;}
.hc_c00482{height:59.616587pt;}
.h6_c00482{height:59.633654pt;}
.h4_c00482{height:59.642187pt;}
.hb_c00482{height:59.650721pt;}
.h5_c00482{height:61.743750pt;}
.h7_c00482{height:63.335938pt;}
.h9_c00482{height:70.643750pt;}
.hd_c00482{height:92.125000pt;}
.h1_c00482{height:1122.666667pt;}
.h0_c00482{height:1122.880000pt;}
.w1_c00482{width:793.333333pt;}
.w0_c00482{width:793.600000pt;}
.x0_c00482{left:0.000000pt;}
.x19_c00482{left:112.246400pt;}
.x1_c00482{left:113.200000pt;}
.xb_c00482{left:159.680000pt;}
.x4_c00482{left:179.120000pt;}
.xc_c00482{left:186.800000pt;}
.xe_c00482{left:198.720000pt;}
.x1a_c00482{left:200.560000pt;}
.x6_c00482{left:202.000000pt;}
.x5_c00482{left:212.600000pt;}
.xf_c00482{left:214.360000pt;}
.x8_c00482{left:216.120000pt;}
.x7_c00482{left:218.253333pt;}
.xd_c00482{left:220.160000pt;}
.x1b_c00482{left:231.933333pt;}
.x12_c00482{left:263.840000pt;}
.x13_c00482{left:285.466667pt;}
.x15_c00482{left:327.186667pt;}
.x16_c00482{left:344.866667pt;}
.x1c_c00482{left:379.000000pt;}
.x1e_c00482{left:381.666667pt;}
.x9_c00482{left:389.280000pt;}
.x1f_c00482{left:394.666667pt;}
.xa_c00482{left:407.413333pt;}
.x1d_c00482{left:417.746667pt;}
.x17_c00482{left:433.706667pt;}
.x18_c00482{left:475.773333pt;}
.x2_c00482{left:526.573333pt;}
.x10_c00482{left:577.653333pt;}
.x11_c00482{left:595.186667pt;}
.x3_c00482{left:598.093333pt;}
.x14_c00482{left:633.466667pt;}
}





/* 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_c00483 {
    display:none;
  }
  .loading-indicator_c00483.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00483 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_c00483 { 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_c00483" -> "#page-container .classname_c00483")
 */
.pf_c00483 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00483 { /* 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_c00483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00483 { /* 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_c00483 { /* 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_c00483 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00483 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00483 {overflow:visible;}
  }
}
.c_c00483 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00483 { /* 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_c00483:after { /* webkit #35443 */
  content: '';
}
.t_c00483:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00483 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 */
}
.__c00483 { /* 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_c00483 { /* info for Javascript */
  display:none;
}
.l_c00483 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00483 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00483 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00483: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_c00483 {
    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_c00483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00483.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_c00483 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00483{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00483;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.311035;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_c00483;src:url('chunks/assets/font_7b98381591b21edd681dd5b8.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.284668;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_c00483;src:url('chunks/assets/font_49ac052fa882814501adc364.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;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:ff4_c00483;src:url('chunks/assets/font_7f3a57d1a67e35927117cd4c.woff2')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:1.284180;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_c00483;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff5_c00483{font-family:ff5_c00483;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;}
.me_c00483{transform:matrix(0.112558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112558,0.000000,0.000000,0.250000,0,0);}
.m12_c00483{transform:matrix(0.196599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196599,0.000000,0.000000,0.250000,0,0);}
.m14_c00483{transform:matrix(0.203881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203881,0.000000,0.000000,0.250000,0,0);}
.m8_c00483{transform:matrix(0.217539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217539,0.000000,0.000000,0.250000,0,0);}
.m3_c00483{transform:matrix(0.233407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233407,0.000000,0.000000,0.250000,0,0);}
.ma_c00483{transform:matrix(0.235998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235998,0.000000,0.000000,0.250000,0,0);}
.mf_c00483{transform:matrix(0.237205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237205,0.000000,0.000000,0.250000,0,0);}
.m5_c00483{transform:matrix(0.237603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237603,0.000000,0.000000,0.250000,0,0);}
.m16_c00483{transform:matrix(0.245322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245322,0.000000,0.000000,0.250000,0,0);}
.m9_c00483{transform:matrix(0.245471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245471,0.000000,0.000000,0.250000,0,0);}
.md_c00483{transform:matrix(0.246649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246649,0.000000,0.000000,0.250000,0,0);}
.m6_c00483{transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);}
.mb_c00483{transform:matrix(0.249224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249224,0.000000,0.000000,0.250000,0,0);}
.m15_c00483{transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);}
.m7_c00483{transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);}
.m0_c00483{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);}
.m13_c00483{transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);}
.mc_c00483{transform:matrix(0.263077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263077,0.000000,0.000000,0.250000,0,0);}
.m2_c00483{transform:matrix(0.267733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267733,0.000000,0.000000,0.250000,0,0);}
.m1_c00483{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.m11_c00483{transform:matrix(0.270904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270904,0.000000,0.000000,0.250000,0,0);}
.m4_c00483{transform:matrix(0.278228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278228,0.000000,0.000000,0.250000,0,0);}
.m10_c00483{transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.lsa1_c00483{letter-spacing:-2.646000px;}
.lsa5_c00483{letter-spacing:-2.562000px;}
.ls99_c00483{letter-spacing:-2.541000px;}
.lsab_c00483{letter-spacing:-2.436000px;}
.ls71_c00483{letter-spacing:-2.415000px;}
.ls78_c00483{letter-spacing:-2.394000px;}
.lsb5_c00483{letter-spacing:-2.125200px;}
.lsa6_c00483{letter-spacing:-1.938900px;}
.lsa2_c00483{letter-spacing:-1.893600px;}
.ls75_c00483{letter-spacing:-1.766400px;}
.ls86_c00483{letter-spacing:-1.745700px;}
.ls82_c00483{letter-spacing:-1.704300px;}
.ls73_c00483{letter-spacing:-1.649100px;}
.ls7b_c00483{letter-spacing:-1.642200px;}
.ls70_c00483{letter-spacing:-1.593720px;}
.ls6d_c00483{letter-spacing:-1.552680px;}
.ls7d_c00483{letter-spacing:-1.545600px;}
.ls93_c00483{letter-spacing:-1.538700px;}
.ls97_c00483{letter-spacing:-1.477440px;}
.lsb2_c00483{letter-spacing:-1.340640px;}
.ls8b_c00483{letter-spacing:-1.299600px;}
.lsb1_c00483{letter-spacing:-1.285920px;}
.ls8e_c00483{letter-spacing:-1.276500px;}
.ls7e_c00483{letter-spacing:-1.124700px;}
.ls8d_c00483{letter-spacing:-1.117800px;}
.lsae_c00483{letter-spacing:-1.110900px;}
.lsb0_c00483{letter-spacing:-1.083300px;}
.lsa7_c00483{letter-spacing:-1.069500px;}
.ls61_c00483{letter-spacing:-1.014300px;}
.ls6e_c00483{letter-spacing:-1.012320px;}
.ls6a_c00483{letter-spacing:-0.993600px;}
.ls5c_c00483{letter-spacing:-0.978120px;}
.ls72_c00483{letter-spacing:-0.952200px;}
.lsa3_c00483{letter-spacing:-0.943200px;}
.ls96_c00483{letter-spacing:-0.937080px;}
.ls9f_c00483{letter-spacing:-0.871200px;}
.ls94_c00483{letter-spacing:-0.862500px;}
.ls9b_c00483{letter-spacing:-0.855000px;}
.ls5b_c00483{letter-spacing:-0.834480px;}
.lsaf_c00483{letter-spacing:-0.828000px;}
.ls57_c00483{letter-spacing:-0.800400px;}
.lsb3_c00483{letter-spacing:-0.765900px;}
.ls85_c00483{letter-spacing:-0.759240px;}
.ls83_c00483{letter-spacing:-0.752400px;}
.ls67_c00483{letter-spacing:-0.731400px;}
.ls84_c00483{letter-spacing:-0.697680px;}
.ls7f_c00483{letter-spacing:-0.676200px;}
.ls92_c00483{letter-spacing:-0.655500px;}
.ls64_c00483{letter-spacing:-0.607200px;}
.ls6f_c00483{letter-spacing:-0.506160px;}
.ls63_c00483{letter-spacing:-0.503700px;}
.ls6b_c00483{letter-spacing:-0.489900px;}
.ls8f_c00483{letter-spacing:-0.427800px;}
.ls87_c00483{letter-spacing:-0.393300px;}
.ls68_c00483{letter-spacing:-0.386400px;}
.lsa8_c00483{letter-spacing:-0.369360px;}
.ls95_c00483{letter-spacing:-0.348840px;}
.ls60_c00483{letter-spacing:-0.345000px;}
.ls89_c00483{letter-spacing:-0.331200px;}
.ls79_c00483{letter-spacing:-0.300960px;}
.ls8c_c00483{letter-spacing:-0.280440px;}
.ls7c_c00483{letter-spacing:-0.262200px;}
.ls6c_c00483{letter-spacing:-0.239400px;}
.ls9c_c00483{letter-spacing:-0.218880px;}
.ls74_c00483{letter-spacing:-0.207000px;}
.ls66_c00483{letter-spacing:-0.136800px;}
.ls90_c00483{letter-spacing:-0.131100px;}
.ls5e_c00483{letter-spacing:-0.103500px;}
.ls9d_c00483{letter-spacing:-0.082800px;}
.lsa4_c00483{letter-spacing:-0.069000px;}
.ls76_c00483{letter-spacing:-0.041400px;}
.ls88_c00483{letter-spacing:-0.034500px;}
.ls7a_c00483{letter-spacing:-0.034200px;}
.ls56_c00483{letter-spacing:-0.020700px;}
.ls5d_c00483{letter-spacing:-0.013680px;}
.ls5f_c00483{letter-spacing:0.000000px;}
.lsac_c00483{letter-spacing:0.006900px;}
.lsb4_c00483{letter-spacing:0.055200px;}
.lsaa_c00483{letter-spacing:0.068400px;}
.ls9a_c00483{letter-spacing:0.082800px;}
.ls4a_c00483{letter-spacing:0.089700px;}
.ls5_c00483{letter-spacing:0.103500px;}
.ls2e_c00483{letter-spacing:0.110400px;}
.ls3a_c00483{letter-spacing:0.144900px;}
.ls9e_c00483{letter-spacing:0.151800px;}
.ls4d_c00483{letter-spacing:0.165600px;}
.ls1e_c00483{letter-spacing:0.182520px;}
.ls2_c00483{letter-spacing:0.186300px;}
.ls10_c00483{letter-spacing:0.213900px;}
.ls31_c00483{letter-spacing:0.234600px;}
.ls1a_c00483{letter-spacing:0.241500px;}
.ls53_c00483{letter-spacing:0.253080px;}
.lse_c00483{letter-spacing:0.266760px;}
.ls22_c00483{letter-spacing:0.276000px;}
.ls2a_c00483{letter-spacing:0.296700px;}
.ls8a_c00483{letter-spacing:0.310500px;}
.ls24_c00483{letter-spacing:0.331200px;}
.ls8_c00483{letter-spacing:0.351900px;}
.ls20_c00483{letter-spacing:0.386400px;}
.ls59_c00483{letter-spacing:0.414000px;}
.ls12_c00483{letter-spacing:0.420900px;}
.ls54_c00483{letter-spacing:0.424080px;}
.ls4c_c00483{letter-spacing:0.427800px;}
.ls58_c00483{letter-spacing:0.434700px;}
.ls65_c00483{letter-spacing:0.437760px;}
.ls51_c00483{letter-spacing:0.441600px;}
.ls21_c00483{letter-spacing:0.455400px;}
.ls39_c00483{letter-spacing:0.469200px;}
.ls3_c00483{letter-spacing:0.503700px;}
.ls23_c00483{letter-spacing:0.506160px;}
.ls11_c00483{letter-spacing:0.517500px;}
.ls32_c00483{letter-spacing:0.531300px;}
.ls77_c00483{letter-spacing:0.545100px;}
.ls4b_c00483{letter-spacing:0.579600px;}
.lsc_c00483{letter-spacing:0.581400px;}
.ls3e_c00483{letter-spacing:0.586500px;}
.ls50_c00483{letter-spacing:0.607200px;}
.ls44_c00483{letter-spacing:0.614100px;}
.lsa_c00483{letter-spacing:0.615600px;}
.ls1c_c00483{letter-spacing:0.655500px;}
.lsad_c00483{letter-spacing:0.662400px;}
.ls4_c00483{letter-spacing:0.676200px;}
.ls3d_c00483{letter-spacing:0.683100px;}
.ls7_c00483{letter-spacing:0.690000px;}
.ls28_c00483{letter-spacing:0.703800px;}
.lsb6_c00483{letter-spacing:0.715860px;}
.ls27_c00483{letter-spacing:0.717600px;}
.ls4e_c00483{letter-spacing:0.731400px;}
.ls91_c00483{letter-spacing:0.738300px;}
.ls62_c00483{letter-spacing:0.745200px;}
.ls36_c00483{letter-spacing:0.752400px;}
.ls42_c00483{letter-spacing:0.759240px;}
.ls2f_c00483{letter-spacing:0.772800px;}
.ls16_c00483{letter-spacing:0.772920px;}
.ls1_c00483{letter-spacing:0.793260px;}
.ls3f_c00483{letter-spacing:0.793500px;}
.ls14_c00483{letter-spacing:0.813960px;}
.ls40_c00483{letter-spacing:0.814200px;}
.ls41_c00483{letter-spacing:0.821100px;}
.ls80_c00483{letter-spacing:0.827640px;}
.ls45_c00483{letter-spacing:0.828000px;}
.ls29_c00483{letter-spacing:0.848160px;}
.ls13_c00483{letter-spacing:0.848700px;}
.ls15_c00483{letter-spacing:0.855000px;}
.ls98_c00483{letter-spacing:0.869400px;}
.ls9_c00483{letter-spacing:0.883200px;}
.ls46_c00483{letter-spacing:0.910800px;}
.ls47_c00483{letter-spacing:0.930240px;}
.ls81_c00483{letter-spacing:0.957600px;}
.ls34_c00483{letter-spacing:0.959100px;}
.ls0_c00483{letter-spacing:0.986700px;}
.ls2d_c00483{letter-spacing:0.993600px;}
.ls49_c00483{letter-spacing:1.007400px;}
.ls48_c00483{letter-spacing:1.026000px;}
.ls1b_c00483{letter-spacing:1.035000px;}
.ls35_c00483{letter-spacing:1.062600px;}
.ls37_c00483{letter-spacing:1.069500px;}
.ls6_c00483{letter-spacing:1.097100px;}
.ls1f_c00483{letter-spacing:1.131600px;}
.ls19_c00483{letter-spacing:1.142280px;}
.ls4f_c00483{letter-spacing:1.193700px;}
.ls38_c00483{letter-spacing:1.207500px;}
.ls17_c00483{letter-spacing:1.217520px;}
.ls26_c00483{letter-spacing:1.262700px;}
.ls30_c00483{letter-spacing:1.290300px;}
.lsf_c00483{letter-spacing:1.338600px;}
.lsb_c00483{letter-spacing:1.368000px;}
.ls2b_c00483{letter-spacing:1.380000px;}
.ls3c_c00483{letter-spacing:1.407600px;}
.ls2c_c00483{letter-spacing:1.421400px;}
.ls25_c00483{letter-spacing:1.455900px;}
.ls3b_c00483{letter-spacing:1.497300px;}
.ls55_c00483{letter-spacing:1.536480px;}
.ls43_c00483{letter-spacing:1.683600px;}
.ls1d_c00483{letter-spacing:1.766400px;}
.lsa9_c00483{letter-spacing:1.771560px;}
.lsd_c00483{letter-spacing:2.052000px;}
.ls18_c00483{letter-spacing:2.072520px;}
.ls52_c00483{letter-spacing:2.208000px;}
.ls33_c00483{letter-spacing:3.022200px;}
.ls5a_c00483{letter-spacing:3.420000px;}
.ls69_c00483{letter-spacing:3.450000px;}
.lsa0_c00483{letter-spacing:3.600000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{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__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00483{word-spacing:-0.862500px;}
.wsa_c00483{word-spacing:0.000000px;}
.ws2_c00483{word-spacing:0.310500px;}
.ws9_c00483{word-spacing:1.158900px;}
.ws6_c00483{word-spacing:3.070500px;}
.ws3_c00483{word-spacing:3.727800px;}
.ws5_c00483{word-spacing:4.174500px;}
.ws0_c00483{word-spacing:15.117900px;}
.ws4_c00483{word-spacing:17.429400px;}
.ws8_c00483{word-spacing:24.559200px;}
.ws1_c00483{word-spacing:30.532500px;}
._19_c00483{margin-left:-16.560000px;}
._18_c00483{margin-left:-11.416860px;}
._1a_c00483{margin-left:-9.765120px;}
._f_c00483{margin-left:-4.593840px;}
._11_c00483{margin-left:-3.585840px;}
._6_c00483{margin-left:-2.394000px;}
._1b_c00483{width:1.121640px;}
._10_c00483{width:2.581260px;}
._14_c00483{width:3.583740px;}
._7_c00483{width:4.596480px;}
._12_c00483{width:5.644200px;}
._e_c00483{width:7.140420px;}
._4_c00483{width:8.966880px;}
._13_c00483{width:10.790280px;}
._5_c00483{width:12.209400px;}
._3_c00483{width:14.372700px;}
._0_c00483{width:15.959100px;}
._2_c00483{width:18.424200px;}
._17_c00483{width:19.751700px;}
._1_c00483{width:21.680820px;}
._15_c00483{width:22.925700px;}
._16_c00483{width:26.909340px;}
._a_c00483{width:28.138200px;}
._8_c00483{width:30.359100px;}
._c_c00483{width:31.675800px;}
._b_c00483{width:33.424500px;}
._d_c00483{width:35.397000px;}
._9_c00483{width:37.520820px;}
.fc0_c00483{color:transparent;}
.fs0_c00483{font-size:58.200000px;}
.fs5_c00483{font-size:67.200000px;}
.fs2_c00483{font-size:67.800000px;}
.fs3_c00483{font-size:68.400000px;}
.fs1_c00483{font-size:69.000000px;}
.fsa_c00483{font-size:69.600000px;}
.fs4_c00483{font-size:70.200000px;}
.fs7_c00483{font-size:72.000000px;}
.fs6_c00483{font-size:72.600000px;}
.fs9_c00483{font-size:73.200000px;}
.fs8_c00483{font-size:75.600000px;}
.y0_c00483{bottom:0.000000px;}
.y1f_c00483{bottom:66.255015px;}
.y1e_c00483{bottom:127.080015px;}
.y1d_c00483{bottom:158.040015px;}
.y1c_c00483{bottom:219.615015px;}
.y1b_c00483{bottom:250.575015px;}
.y1a_c00483{bottom:281.175015px;}
.y19_c00483{bottom:342.735015px;}
.y17_c00483{bottom:404.991015px;}
.y18_c00483{bottom:405.000015px;}
.y16_c00483{bottom:436.334265px;}
.y15_c00483{bottom:497.520015px;}
.y14_c00483{bottom:528.480015px;}
.y13_c00483{bottom:528.487515px;}
.y12_c00483{bottom:590.415015px;}
.y11_c00483{bottom:620.655015px;}
.y10_c00483{bottom:682.575015px;}
.yf_c00483{bottom:682.583115px;}
.ye_c00483{bottom:713.167515px;}
.yd_c00483{bottom:775.095015px;}
.yc_c00483{bottom:806.040015px;}
.ya_c00483{bottom:868.327215px;}
.yb_c00483{bottom:868.335015px;}
.y9_c00483{bottom:898.560015px;}
.y7_c00483{bottom:960.126915px;}
.y8_c00483{bottom:960.135015px;}
.y6_c00483{bottom:991.095765px;}
.y5_c00483{bottom:1021.335015px;}
.y3_c00483{bottom:1082.516265px;}
.y4_c00483{bottom:1082.520015px;}
.y2_c00483{bottom:1113.480015px;}
.y1_c00483{bottom:1190.880015px;}
.h12_c00483{height:57.120117px;}
.h2_c00483{height:58.654687px;}
.h5_c00483{height:67.097461px;}
.h4_c00483{height:67.719727px;}
.ha_c00483{height:67.749727px;}
.h9_c00483{height:67.750927px;}
.h7_c00483{height:67.752127px;}
.h6_c00483{height:68.860184px;}
.hc_c00483{height:70.087500px;}
.he_c00483{height:70.664062px;}
.h3_c00483{height:70.713281px;}
.h10_c00483{height:71.841797px;}
.hb_c00483{height:71.964844px;}
.h11_c00483{height:72.590625px;}
.h8_c00483{height:73.216406px;}
.hf_c00483{height:74.197266px;}
.hd_c00483{height:75.719531px;}
.h1_c00483{height:1263.000000px;}
.h0_c00483{height:1263.240015px;}
.w1_c00483{width:892.500000px;}
.w0_c00483{width:892.800015px;}
.x0_c00483{left:0.000000px;}
.x29_c00483{left:121.695015px;}
.x11_c00483{left:123.120015px;}
.x8_c00483{left:125.057115px;}
.x7_c00483{left:126.180015px;}
.x4_c00483{left:127.980015px;}
.x1_c00483{left:129.150015px;}
.x26_c00483{left:145.395015px;}
.xd_c00483{left:158.220015px;}
.x2_c00483{left:196.935015px;}
.x24_c00483{left:205.485015px;}
.xe_c00483{left:207.525015px;}
.x16_c00483{left:212.055015px;}
.x10_c00483{left:214.680015px;}
.x3_c00483{left:218.490015px;}
.x25_c00483{left:221.310015px;}
.x27_c00483{left:232.110015px;}
.x17_c00483{left:234.840015px;}
.x1b_c00483{left:240.030015px;}
.x28_c00483{left:249.960015px;}
.xf_c00483{left:261.150015px;}
.x2a_c00483{left:274.140015px;}
.x1c_c00483{left:278.595015px;}
.x1d_c00483{left:296.940015px;}
.x9_c00483{left:307.605015px;}
.x2b_c00483{left:315.900015px;}
.xa_c00483{left:324.285015px;}
.x5_c00483{left:386.910015px;}
.x21_c00483{left:409.860015px;}
.x1e_c00483{left:418.410015px;}
.x6_c00483{left:422.565015px;}
.x2d_c00483{left:425.100015px;}
.x22_c00483{left:432.495015px;}
.x12_c00483{left:466.380015px;}
.x13_c00483{left:486.285015px;}
.x18_c00483{left:489.000015px;}
.x2c_c00483{left:505.560015px;}
.x14_c00483{left:513.165015px;}
.x19_c00483{left:521.085015px;}
.x1a_c00483{left:546.960015px;}
.x15_c00483{left:553.800015px;}
.xb_c00483{left:644.580015px;}
.x1f_c00483{left:661.860015px;}
.xc_c00483{left:664.530015px;}
.x20_c00483{left:686.370015px;}
.x23_c00483{left:723.150015px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.lsa1_c00483{letter-spacing:-2.352000pt;}
.lsa5_c00483{letter-spacing:-2.277333pt;}
.ls99_c00483{letter-spacing:-2.258667pt;}
.lsab_c00483{letter-spacing:-2.165333pt;}
.ls71_c00483{letter-spacing:-2.146667pt;}
.ls78_c00483{letter-spacing:-2.128000pt;}
.lsb5_c00483{letter-spacing:-1.889067pt;}
.lsa6_c00483{letter-spacing:-1.723467pt;}
.lsa2_c00483{letter-spacing:-1.683200pt;}
.ls75_c00483{letter-spacing:-1.570133pt;}
.ls86_c00483{letter-spacing:-1.551733pt;}
.ls82_c00483{letter-spacing:-1.514933pt;}
.ls73_c00483{letter-spacing:-1.465867pt;}
.ls7b_c00483{letter-spacing:-1.459733pt;}
.ls70_c00483{letter-spacing:-1.416640pt;}
.ls6d_c00483{letter-spacing:-1.380160pt;}
.ls7d_c00483{letter-spacing:-1.373867pt;}
.ls93_c00483{letter-spacing:-1.367733pt;}
.ls97_c00483{letter-spacing:-1.313280pt;}
.lsb2_c00483{letter-spacing:-1.191680pt;}
.ls8b_c00483{letter-spacing:-1.155200pt;}
.lsb1_c00483{letter-spacing:-1.143040pt;}
.ls8e_c00483{letter-spacing:-1.134667pt;}
.ls7e_c00483{letter-spacing:-0.999733pt;}
.ls8d_c00483{letter-spacing:-0.993600pt;}
.lsae_c00483{letter-spacing:-0.987467pt;}
.lsb0_c00483{letter-spacing:-0.962933pt;}
.lsa7_c00483{letter-spacing:-0.950667pt;}
.ls61_c00483{letter-spacing:-0.901600pt;}
.ls6e_c00483{letter-spacing:-0.899840pt;}
.ls6a_c00483{letter-spacing:-0.883200pt;}
.ls5c_c00483{letter-spacing:-0.869440pt;}
.ls72_c00483{letter-spacing:-0.846400pt;}
.lsa3_c00483{letter-spacing:-0.838400pt;}
.ls96_c00483{letter-spacing:-0.832960pt;}
.ls9f_c00483{letter-spacing:-0.774400pt;}
.ls94_c00483{letter-spacing:-0.766667pt;}
.ls9b_c00483{letter-spacing:-0.760000pt;}
.ls5b_c00483{letter-spacing:-0.741760pt;}
.lsaf_c00483{letter-spacing:-0.736000pt;}
.ls57_c00483{letter-spacing:-0.711467pt;}
.lsb3_c00483{letter-spacing:-0.680800pt;}
.ls85_c00483{letter-spacing:-0.674880pt;}
.ls83_c00483{letter-spacing:-0.668800pt;}
.ls67_c00483{letter-spacing:-0.650133pt;}
.ls84_c00483{letter-spacing:-0.620160pt;}
.ls7f_c00483{letter-spacing:-0.601067pt;}
.ls92_c00483{letter-spacing:-0.582667pt;}
.ls64_c00483{letter-spacing:-0.539733pt;}
.ls6f_c00483{letter-spacing:-0.449920pt;}
.ls63_c00483{letter-spacing:-0.447733pt;}
.ls6b_c00483{letter-spacing:-0.435467pt;}
.ls8f_c00483{letter-spacing:-0.380267pt;}
.ls87_c00483{letter-spacing:-0.349600pt;}
.ls68_c00483{letter-spacing:-0.343467pt;}
.lsa8_c00483{letter-spacing:-0.328320pt;}
.ls95_c00483{letter-spacing:-0.310080pt;}
.ls60_c00483{letter-spacing:-0.306667pt;}
.ls89_c00483{letter-spacing:-0.294400pt;}
.ls79_c00483{letter-spacing:-0.267520pt;}
.ls8c_c00483{letter-spacing:-0.249280pt;}
.ls7c_c00483{letter-spacing:-0.233067pt;}
.ls6c_c00483{letter-spacing:-0.212800pt;}
.ls9c_c00483{letter-spacing:-0.194560pt;}
.ls74_c00483{letter-spacing:-0.184000pt;}
.ls66_c00483{letter-spacing:-0.121600pt;}
.ls90_c00483{letter-spacing:-0.116533pt;}
.ls5e_c00483{letter-spacing:-0.092000pt;}
.ls9d_c00483{letter-spacing:-0.073600pt;}
.lsa4_c00483{letter-spacing:-0.061333pt;}
.ls76_c00483{letter-spacing:-0.036800pt;}
.ls88_c00483{letter-spacing:-0.030667pt;}
.ls7a_c00483{letter-spacing:-0.030400pt;}
.ls56_c00483{letter-spacing:-0.018400pt;}
.ls5d_c00483{letter-spacing:-0.012160pt;}
.ls5f_c00483{letter-spacing:0.000000pt;}
.lsac_c00483{letter-spacing:0.006133pt;}
.lsb4_c00483{letter-spacing:0.049067pt;}
.lsaa_c00483{letter-spacing:0.060800pt;}
.ls9a_c00483{letter-spacing:0.073600pt;}
.ls4a_c00483{letter-spacing:0.079733pt;}
.ls5_c00483{letter-spacing:0.092000pt;}
.ls2e_c00483{letter-spacing:0.098133pt;}
.ls3a_c00483{letter-spacing:0.128800pt;}
.ls9e_c00483{letter-spacing:0.134933pt;}
.ls4d_c00483{letter-spacing:0.147200pt;}
.ls1e_c00483{letter-spacing:0.162240pt;}
.ls2_c00483{letter-spacing:0.165600pt;}
.ls10_c00483{letter-spacing:0.190133pt;}
.ls31_c00483{letter-spacing:0.208533pt;}
.ls1a_c00483{letter-spacing:0.214667pt;}
.ls53_c00483{letter-spacing:0.224960pt;}
.lse_c00483{letter-spacing:0.237120pt;}
.ls22_c00483{letter-spacing:0.245333pt;}
.ls2a_c00483{letter-spacing:0.263733pt;}
.ls8a_c00483{letter-spacing:0.276000pt;}
.ls24_c00483{letter-spacing:0.294400pt;}
.ls8_c00483{letter-spacing:0.312800pt;}
.ls20_c00483{letter-spacing:0.343467pt;}
.ls59_c00483{letter-spacing:0.368000pt;}
.ls12_c00483{letter-spacing:0.374133pt;}
.ls54_c00483{letter-spacing:0.376960pt;}
.ls4c_c00483{letter-spacing:0.380267pt;}
.ls58_c00483{letter-spacing:0.386400pt;}
.ls65_c00483{letter-spacing:0.389120pt;}
.ls51_c00483{letter-spacing:0.392533pt;}
.ls21_c00483{letter-spacing:0.404800pt;}
.ls39_c00483{letter-spacing:0.417067pt;}
.ls3_c00483{letter-spacing:0.447733pt;}
.ls23_c00483{letter-spacing:0.449920pt;}
.ls11_c00483{letter-spacing:0.460000pt;}
.ls32_c00483{letter-spacing:0.472267pt;}
.ls77_c00483{letter-spacing:0.484533pt;}
.ls4b_c00483{letter-spacing:0.515200pt;}
.lsc_c00483{letter-spacing:0.516800pt;}
.ls3e_c00483{letter-spacing:0.521333pt;}
.ls50_c00483{letter-spacing:0.539733pt;}
.ls44_c00483{letter-spacing:0.545867pt;}
.lsa_c00483{letter-spacing:0.547200pt;}
.ls1c_c00483{letter-spacing:0.582667pt;}
.lsad_c00483{letter-spacing:0.588800pt;}
.ls4_c00483{letter-spacing:0.601067pt;}
.ls3d_c00483{letter-spacing:0.607200pt;}
.ls7_c00483{letter-spacing:0.613333pt;}
.ls28_c00483{letter-spacing:0.625600pt;}
.lsb6_c00483{letter-spacing:0.636320pt;}
.ls27_c00483{letter-spacing:0.637867pt;}
.ls4e_c00483{letter-spacing:0.650133pt;}
.ls91_c00483{letter-spacing:0.656267pt;}
.ls62_c00483{letter-spacing:0.662400pt;}
.ls36_c00483{letter-spacing:0.668800pt;}
.ls42_c00483{letter-spacing:0.674880pt;}
.ls2f_c00483{letter-spacing:0.686933pt;}
.ls16_c00483{letter-spacing:0.687040pt;}
.ls1_c00483{letter-spacing:0.705120pt;}
.ls3f_c00483{letter-spacing:0.705333pt;}
.ls14_c00483{letter-spacing:0.723520pt;}
.ls40_c00483{letter-spacing:0.723733pt;}
.ls41_c00483{letter-spacing:0.729867pt;}
.ls80_c00483{letter-spacing:0.735680pt;}
.ls45_c00483{letter-spacing:0.736000pt;}
.ls29_c00483{letter-spacing:0.753920pt;}
.ls13_c00483{letter-spacing:0.754400pt;}
.ls15_c00483{letter-spacing:0.760000pt;}
.ls98_c00483{letter-spacing:0.772800pt;}
.ls9_c00483{letter-spacing:0.785067pt;}
.ls46_c00483{letter-spacing:0.809600pt;}
.ls47_c00483{letter-spacing:0.826880pt;}
.ls81_c00483{letter-spacing:0.851200pt;}
.ls34_c00483{letter-spacing:0.852533pt;}
.ls0_c00483{letter-spacing:0.877067pt;}
.ls2d_c00483{letter-spacing:0.883200pt;}
.ls49_c00483{letter-spacing:0.895467pt;}
.ls48_c00483{letter-spacing:0.912000pt;}
.ls1b_c00483{letter-spacing:0.920000pt;}
.ls35_c00483{letter-spacing:0.944533pt;}
.ls37_c00483{letter-spacing:0.950667pt;}
.ls6_c00483{letter-spacing:0.975200pt;}
.ls1f_c00483{letter-spacing:1.005867pt;}
.ls19_c00483{letter-spacing:1.015360pt;}
.ls4f_c00483{letter-spacing:1.061067pt;}
.ls38_c00483{letter-spacing:1.073333pt;}
.ls17_c00483{letter-spacing:1.082240pt;}
.ls26_c00483{letter-spacing:1.122400pt;}
.ls30_c00483{letter-spacing:1.146933pt;}
.lsf_c00483{letter-spacing:1.189867pt;}
.lsb_c00483{letter-spacing:1.216000pt;}
.ls2b_c00483{letter-spacing:1.226667pt;}
.ls3c_c00483{letter-spacing:1.251200pt;}
.ls2c_c00483{letter-spacing:1.263467pt;}
.ls25_c00483{letter-spacing:1.294133pt;}
.ls3b_c00483{letter-spacing:1.330933pt;}
.ls55_c00483{letter-spacing:1.365760pt;}
.ls43_c00483{letter-spacing:1.496533pt;}
.ls1d_c00483{letter-spacing:1.570133pt;}
.lsa9_c00483{letter-spacing:1.574720pt;}
.lsd_c00483{letter-spacing:1.824000pt;}
.ls18_c00483{letter-spacing:1.842240pt;}
.ls52_c00483{letter-spacing:1.962667pt;}
.ls33_c00483{letter-spacing:2.686400pt;}
.ls5a_c00483{letter-spacing:3.040000pt;}
.ls69_c00483{letter-spacing:3.066667pt;}
.lsa0_c00483{letter-spacing:3.200000pt;}
.ws7_c00483{word-spacing:-0.766667pt;}
.wsa_c00483{word-spacing:0.000000pt;}
.ws2_c00483{word-spacing:0.276000pt;}
.ws9_c00483{word-spacing:1.030133pt;}
.ws6_c00483{word-spacing:2.729333pt;}
.ws3_c00483{word-spacing:3.313600pt;}
.ws5_c00483{word-spacing:3.710667pt;}
.ws0_c00483{word-spacing:13.438133pt;}
.ws4_c00483{word-spacing:15.492800pt;}
.ws8_c00483{word-spacing:21.830400pt;}
.ws1_c00483{word-spacing:27.140000pt;}
._19_c00483{margin-left:-14.720000pt;}
._18_c00483{margin-left:-10.148320pt;}
._1a_c00483{margin-left:-8.680107pt;}
._f_c00483{margin-left:-4.083413pt;}
._11_c00483{margin-left:-3.187413pt;}
._6_c00483{margin-left:-2.128000pt;}
._1b_c00483{width:0.997013pt;}
._10_c00483{width:2.294453pt;}
._14_c00483{width:3.185547pt;}
._7_c00483{width:4.085760pt;}
._12_c00483{width:5.017067pt;}
._e_c00483{width:6.347040pt;}
._4_c00483{width:7.970560pt;}
._13_c00483{width:9.591360pt;}
._5_c00483{width:10.852800pt;}
._3_c00483{width:12.775733pt;}
._0_c00483{width:14.185867pt;}
._2_c00483{width:16.377067pt;}
._17_c00483{width:17.557067pt;}
._1_c00483{width:19.271840pt;}
._15_c00483{width:20.378400pt;}
._16_c00483{width:23.919413pt;}
._a_c00483{width:25.011733pt;}
._8_c00483{width:26.985867pt;}
._c_c00483{width:28.156267pt;}
._b_c00483{width:29.710667pt;}
._d_c00483{width:31.464000pt;}
._9_c00483{width:33.351840pt;}
.fs0_c00483{font-size:51.733333pt;}
.fs5_c00483{font-size:59.733333pt;}
.fs2_c00483{font-size:60.266667pt;}
.fs3_c00483{font-size:60.800000pt;}
.fs1_c00483{font-size:61.333333pt;}
.fsa_c00483{font-size:61.866667pt;}
.fs4_c00483{font-size:62.400000pt;}
.fs7_c00483{font-size:64.000000pt;}
.fs6_c00483{font-size:64.533333pt;}
.fs9_c00483{font-size:65.066667pt;}
.fs8_c00483{font-size:67.200000pt;}
.y0_c00483{bottom:0.000000pt;}
.y1f_c00483{bottom:58.893347pt;}
.y1e_c00483{bottom:112.960013pt;}
.y1d_c00483{bottom:140.480013pt;}
.y1c_c00483{bottom:195.213347pt;}
.y1b_c00483{bottom:222.733347pt;}
.y1a_c00483{bottom:249.933347pt;}
.y19_c00483{bottom:304.653347pt;}
.y17_c00483{bottom:359.992013pt;}
.y18_c00483{bottom:360.000013pt;}
.y16_c00483{bottom:387.852680pt;}
.y15_c00483{bottom:442.240013pt;}
.y14_c00483{bottom:469.760013pt;}
.y13_c00483{bottom:469.766680pt;}
.y12_c00483{bottom:524.813347pt;}
.y11_c00483{bottom:551.693347pt;}
.y10_c00483{bottom:606.733347pt;}
.yf_c00483{bottom:606.740547pt;}
.ye_c00483{bottom:633.926680pt;}
.yd_c00483{bottom:688.973347pt;}
.yc_c00483{bottom:716.480013pt;}
.ya_c00483{bottom:771.846413pt;}
.yb_c00483{bottom:771.853347pt;}
.y9_c00483{bottom:798.720013pt;}
.y7_c00483{bottom:853.446147pt;}
.y8_c00483{bottom:853.453347pt;}
.y6_c00483{bottom:880.974013pt;}
.y5_c00483{bottom:907.853347pt;}
.y3_c00483{bottom:962.236680pt;}
.y4_c00483{bottom:962.240013pt;}
.y2_c00483{bottom:989.760013pt;}
.y1_c00483{bottom:1058.560013pt;}
.h12_c00483{height:50.773437pt;}
.h2_c00483{height:52.137500pt;}
.h5_c00483{height:59.642187pt;}
.h4_c00483{height:60.195312pt;}
.ha_c00483{height:60.221979pt;}
.h9_c00483{height:60.223046pt;}
.h7_c00483{height:60.224113pt;}
.h6_c00483{height:61.209052pt;}
.hc_c00483{height:62.300000pt;}
.he_c00483{height:62.812500pt;}
.h3_c00483{height:62.856250pt;}
.h10_c00483{height:63.859375pt;}
.hb_c00483{height:63.968750pt;}
.h11_c00483{height:64.525000pt;}
.h8_c00483{height:65.081250pt;}
.hf_c00483{height:65.953125pt;}
.hd_c00483{height:67.306250pt;}
.h1_c00483{height:1122.666667pt;}
.h0_c00483{height:1122.880013pt;}
.w1_c00483{width:793.333333pt;}
.w0_c00483{width:793.600013pt;}
.x0_c00483{left:0.000000pt;}
.x29_c00483{left:108.173347pt;}
.x11_c00483{left:109.440013pt;}
.x8_c00483{left:111.161880pt;}
.x7_c00483{left:112.160013pt;}
.x4_c00483{left:113.760013pt;}
.x1_c00483{left:114.800013pt;}
.x26_c00483{left:129.240013pt;}
.xd_c00483{left:140.640013pt;}
.x2_c00483{left:175.053347pt;}
.x24_c00483{left:182.653347pt;}
.xe_c00483{left:184.466680pt;}
.x16_c00483{left:188.493347pt;}
.x10_c00483{left:190.826680pt;}
.x3_c00483{left:194.213347pt;}
.x25_c00483{left:196.720013pt;}
.x27_c00483{left:206.320013pt;}
.x17_c00483{left:208.746680pt;}
.x1b_c00483{left:213.360013pt;}
.x28_c00483{left:222.186680pt;}
.xf_c00483{left:232.133347pt;}
.x2a_c00483{left:243.680013pt;}
.x1c_c00483{left:247.640013pt;}
.x1d_c00483{left:263.946680pt;}
.x9_c00483{left:273.426680pt;}
.x2b_c00483{left:280.800013pt;}
.xa_c00483{left:288.253347pt;}
.x5_c00483{left:343.920013pt;}
.x21_c00483{left:364.320013pt;}
.x1e_c00483{left:371.920013pt;}
.x6_c00483{left:375.613347pt;}
.x2d_c00483{left:377.866680pt;}
.x22_c00483{left:384.440013pt;}
.x12_c00483{left:414.560013pt;}
.x13_c00483{left:432.253347pt;}
.x18_c00483{left:434.666680pt;}
.x2c_c00483{left:449.386680pt;}
.x14_c00483{left:456.146680pt;}
.x19_c00483{left:463.186680pt;}
.x1a_c00483{left:486.186680pt;}
.x15_c00483{left:492.266680pt;}
.xb_c00483{left:572.960013pt;}
.x1f_c00483{left:588.320013pt;}
.xc_c00483{left:590.693347pt;}
.x20_c00483{left:610.106680pt;}
.x23_c00483{left:642.800013pt;}
}





/* 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_c00484 {
    display:none;
  }
  .loading-indicator_c00484.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00484 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_c00484 { 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_c00484" -> "#page-container .classname_c00484")
 */
.pf_c00484 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00484 { /* 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_c00484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00484 { /* 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_c00484 { /* 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_c00484 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00484 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00484 {overflow:visible;}
  }
}
.c_c00484 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00484 { /* 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_c00484:after { /* webkit #35443 */
  content: '';
}
.t_c00484:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00484 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 */
}
.__c00484 { /* 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_c00484 { /* info for Javascript */
  display:none;
}
.l_c00484 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00484 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00484 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00484: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_c00484 {
    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_c00484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00484.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_c00484 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00484{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00484;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.311035;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_c00484;src:url('chunks/assets/font_c5c52116c3a88944146746f3.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.284668;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_c00484;src:url('chunks/assets/font_5a0235eeff991224e703105a.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.284180;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_c00484;src:url('chunks/assets/font_097068d757738ecb317c69eb.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;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:ff5_c00484;src:url('chunks/assets/font_a1059478b1e948bfa2607142.woff2')format("woff");}.ff5_c00484{font-family:ff5_c00484;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;}
.m14_c00484{transform:matrix(0.187568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187568,0.000000,0.000000,0.250000,0,0);}
.m3_c00484{transform:matrix(0.192959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192959,0.000000,0.000000,0.250000,0,0);}
.m4_c00484{transform:matrix(0.211807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211807,0.000000,0.000000,0.250000,0,0);}
.m6_c00484{transform:matrix(0.213961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213961,0.000000,0.000000,0.250000,0,0);}
.m13_c00484{transform:matrix(0.238447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238447,0.000000,0.000000,0.250000,0,0);}
.m15_c00484{transform:matrix(0.244049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244049,0.000000,0.000000,0.250000,0,0);}
.m2_c00484{transform:matrix(0.245174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245174,0.000000,0.000000,0.250000,0,0);}
.m7_c00484{transform:matrix(0.245224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245224,0.000000,0.000000,0.250000,0,0);}
.m5_c00484{transform:matrix(0.245511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245511,0.000000,0.000000,0.250000,0,0);}
.mb_c00484{transform:matrix(0.245701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245701,0.000000,0.000000,0.250000,0,0);}
.m11_c00484{transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);}
.m10_c00484{transform:matrix(0.248051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248051,0.000000,0.000000,0.250000,0,0);}
.md_c00484{transform:matrix(0.248098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248098,0.000000,0.000000,0.250000,0,0);}
.m17_c00484{transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);}
.m16_c00484{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m12_c00484{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m0_c00484{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);}
.m9_c00484{transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);}
.m1_c00484{transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);}
.m18_c00484{transform:matrix(0.262263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262263,0.000000,0.000000,0.250000,0,0);}
.me_c00484{transform:matrix(0.267880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267880,0.000000,0.000000,0.250000,0,0);}
.m8_c00484{transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);}
.ma_c00484{transform:matrix(0.272180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272180,0.000000,0.000000,0.250000,0,0);}
.mf_c00484{transform:matrix(0.278228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278228,0.000000,0.000000,0.250000,0,0);}
.mc_c00484{transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls3e_c00484{letter-spacing:-2.562000px;}
.ls35_c00484{letter-spacing:-2.478000px;}
.ls64_c00484{letter-spacing:-2.449680px;}
.ls2e_c00484{letter-spacing:-2.415000px;}
.ls72_c00484{letter-spacing:-2.331000px;}
.ls65_c00484{letter-spacing:-2.251440px;}
.ls6d_c00484{letter-spacing:-2.187720px;}
.ls8e_c00484{letter-spacing:-2.166600px;}
.ls31_c00484{letter-spacing:-2.139000px;}
.ls46_c00484{letter-spacing:-2.097600px;}
.ls8d_c00484{letter-spacing:-2.067360px;}
.ls34_c00484{letter-spacing:-1.847880px;}
.ls37_c00484{letter-spacing:-1.835400px;}
.ls5e_c00484{letter-spacing:-1.734600px;}
.ls4c_c00484{letter-spacing:-1.713360px;}
.ls5d_c00484{letter-spacing:-1.692120px;}
.ls85_c00484{letter-spacing:-1.642200px;}
.ls7c_c00484{letter-spacing:-1.458480px;}
.ls78_c00484{letter-spacing:-1.428300px;}
.ls75_c00484{letter-spacing:-1.380600px;}
.ls56_c00484{letter-spacing:-1.323960px;}
.ls52_c00484{letter-spacing:-1.290300px;}
.ls83_c00484{letter-spacing:-1.274400px;}
.ls3b_c00484{letter-spacing:-1.267320px;}
.ls3c_c00484{letter-spacing:-1.242000px;}
.ls6c_c00484{letter-spacing:-1.239000px;}
.ls66_c00484{letter-spacing:-1.175280px;}
.ls44_c00484{letter-spacing:-1.173000px;}
.ls6f_c00484{letter-spacing:-1.083300px;}
.ls71_c00484{letter-spacing:-1.048800px;}
.ls7b_c00484{letter-spacing:-1.019520px;}
.ls30_c00484{letter-spacing:-1.014300px;}
.ls84_c00484{letter-spacing:-1.005360px;}
.ls6b_c00484{letter-spacing:-0.998280px;}
.ls57_c00484{letter-spacing:-0.984120px;}
.ls5f_c00484{letter-spacing:-0.948720px;}
.ls62_c00484{letter-spacing:-0.927480px;}
.ls7d_c00484{letter-spacing:-0.924600px;}
.ls58_c00484{letter-spacing:-0.910800px;}
.ls88_c00484{letter-spacing:-0.771720px;}
.ls32_c00484{letter-spacing:-0.696900px;}
.ls82_c00484{letter-spacing:-0.683100px;}
.ls68_c00484{letter-spacing:-0.679680px;}
.ls5b_c00484{letter-spacing:-0.676200px;}
.ls49_c00484{letter-spacing:-0.658440px;}
.ls8a_c00484{letter-spacing:-0.655500px;}
.ls67_c00484{letter-spacing:-0.587640px;}
.ls3d_c00484{letter-spacing:-0.579600px;}
.ls60_c00484{letter-spacing:-0.573480px;}
.ls51_c00484{letter-spacing:-0.572700px;}
.ls36_c00484{letter-spacing:-0.566400px;}
.ls69_c00484{letter-spacing:-0.552240px;}
.ls6a_c00484{letter-spacing:-0.545160px;}
.ls40_c00484{letter-spacing:-0.538080px;}
.ls7a_c00484{letter-spacing:-0.524400px;}
.ls4b_c00484{letter-spacing:-0.489900px;}
.ls63_c00484{letter-spacing:-0.481440px;}
.ls76_c00484{letter-spacing:-0.474360px;}
.ls7f_c00484{letter-spacing:-0.462300px;}
.ls80_c00484{letter-spacing:-0.448500px;}
.ls5a_c00484{letter-spacing:-0.427800px;}
.ls5c_c00484{letter-spacing:-0.417720px;}
.ls50_c00484{letter-spacing:-0.407100px;}
.ls61_c00484{letter-spacing:-0.403560px;}
.ls3f_c00484{letter-spacing:-0.386400px;}
.ls89_c00484{letter-spacing:-0.382320px;}
.ls42_c00484{letter-spacing:-0.331200px;}
.ls59_c00484{letter-spacing:-0.303600px;}
.ls3a_c00484{letter-spacing:-0.289800px;}
.ls74_c00484{letter-spacing:-0.282900px;}
.ls8f_c00484{letter-spacing:-0.282240px;}
.ls8c_c00484{letter-spacing:-0.255300px;}
.ls7e_c00484{letter-spacing:-0.248400px;}
.ls6e_c00484{letter-spacing:-0.186300px;}
.ls4e_c00484{letter-spacing:-0.172500px;}
.ls55_c00484{letter-spacing:-0.144900px;}
.ls48_c00484{letter-spacing:-0.106200px;}
.ls2f_c00484{letter-spacing:-0.103500px;}
.ls4a_c00484{letter-spacing:-0.048300px;}
.ls53_c00484{letter-spacing:-0.041400px;}
.ls45_c00484{letter-spacing:-0.006900px;}
.ls33_c00484{letter-spacing:0.000000px;}
.ls86_c00484{letter-spacing:0.013800px;}
.ls17_c00484{letter-spacing:0.034500px;}
.ls38_c00484{letter-spacing:0.048300px;}
.ls70_c00484{letter-spacing:0.055200px;}
.ls3_c00484{letter-spacing:0.069000px;}
.ls27_c00484{letter-spacing:0.089700px;}
.ls2a_c00484{letter-spacing:0.117300px;}
.ls1a_c00484{letter-spacing:0.120360px;}
.lsb_c00484{letter-spacing:0.138000px;}
.ls13_c00484{letter-spacing:0.151800px;}
.ls4_c00484{letter-spacing:0.172500px;}
.lsa_c00484{letter-spacing:0.186300px;}
.ls7_c00484{letter-spacing:0.193200px;}
.ls41_c00484{letter-spacing:0.200100px;}
.lse_c00484{letter-spacing:0.213900px;}
.ls22_c00484{letter-spacing:0.220800px;}
.ls2_c00484{letter-spacing:0.255300px;}
.ls12_c00484{letter-spacing:0.262200px;}
.ls14_c00484{letter-spacing:0.269100px;}
.ls16_c00484{letter-spacing:0.276000px;}
.ls77_c00484{letter-spacing:0.296700px;}
.ls1c_c00484{letter-spacing:0.351900px;}
.ls29_c00484{letter-spacing:0.386400px;}
.ls19_c00484{letter-spacing:0.403560px;}
.ls26_c00484{letter-spacing:0.420900px;}
.ls1d_c00484{letter-spacing:0.427800px;}
.ls23_c00484{letter-spacing:0.434700px;}
.ls11_c00484{letter-spacing:0.469200px;}
.ls47_c00484{letter-spacing:0.476100px;}
.ls15_c00484{letter-spacing:0.483000px;}
.ls54_c00484{letter-spacing:0.489900px;}
.ls1f_c00484{letter-spacing:0.565800px;}
.ls81_c00484{letter-spacing:0.600300px;}
.ls1_c00484{letter-spacing:0.614100px;}
.ls43_c00484{letter-spacing:0.621000px;}
.lsd_c00484{letter-spacing:0.641700px;}
.ls39_c00484{letter-spacing:0.662400px;}
.ls24_c00484{letter-spacing:0.683100px;}
.ls1b_c00484{letter-spacing:0.722160px;}
.ls10_c00484{letter-spacing:0.731400px;}
.ls8_c00484{letter-spacing:0.738300px;}
.ls4f_c00484{letter-spacing:0.779700px;}
.ls18_c00484{letter-spacing:0.786600px;}
.ls0_c00484{letter-spacing:0.793500px;}
.ls79_c00484{letter-spacing:0.814200px;}
.ls2b_c00484{letter-spacing:0.821100px;}
.ls28_c00484{letter-spacing:0.828000px;}
.ls20_c00484{letter-spacing:0.841800px;}
.lsf_c00484{letter-spacing:0.869400px;}
.ls87_c00484{letter-spacing:0.883200px;}
.ls25_c00484{letter-spacing:0.910800px;}
.ls9_c00484{letter-spacing:0.931500px;}
.ls73_c00484{letter-spacing:1.021200px;}
.lsc_c00484{letter-spacing:1.090200px;}
.ls8b_c00484{letter-spacing:1.393800px;}
.ls1e_c00484{letter-spacing:1.435200px;}
.ls6_c00484{letter-spacing:1.511100px;}
.ls2c_c00484{letter-spacing:1.814400px;}
.ls21_c00484{letter-spacing:2.083800px;}
.ls5_c00484{letter-spacing:2.159700px;}
.ls4d_c00484{letter-spacing:3.360000px;}
.ls2d_c00484{letter-spacing:3.450000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{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__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00484{word-spacing:0.000000px;}
.ws7_c00484{word-spacing:3.325800px;}
.ws1_c00484{word-spacing:6.547500px;}
.ws8_c00484{word-spacing:6.872400px;}
.ws2_c00484{word-spacing:8.017800px;}
.ws3_c00484{word-spacing:12.088800px;}
.ws9_c00484{word-spacing:12.367800px;}
.ws4_c00484{word-spacing:14.947800px;}
.ws0_c00484{word-spacing:15.187500px;}
.ws6_c00484{word-spacing:19.126800px;}
.ws5_c00484{word-spacing:19.463400px;}
._7_c00484{margin-left:-21.038100px;}
._5_c00484{margin-left:-2.967000px;}
._d_c00484{width:1.521600px;}
._6_c00484{width:2.691000px;}
._8_c00484{width:3.891600px;}
._3_c00484{width:5.080800px;}
._a_c00484{width:6.513600px;}
._17_c00484{width:7.607820px;}
._b_c00484{width:8.687100px;}
._9_c00484{width:9.784200px;}
._4_c00484{width:11.343600px;}
._c_c00484{width:12.882300px;}
._0_c00484{width:14.007000px;}
._2_c00484{width:15.718200px;}
._1_c00484{width:18.588600px;}
._f_c00484{width:19.789200px;}
._18_c00484{width:20.792400px;}
._e_c00484{width:21.808500px;}
._15_c00484{width:24.086160px;}
._11_c00484{width:26.491260px;}
._13_c00484{width:28.079280px;}
._10_c00484{width:29.338800px;}
._16_c00484{width:31.613580px;}
._14_c00484{width:35.031840px;}
._12_c00484{width:36.837240px;}
.fc0_c00484{color:transparent;}
.fs0_c00484{font-size:57.600000px;}
.fs5_c00484{font-size:66.600000px;}
.fs4_c00484{font-size:67.200000px;}
.fs1_c00484{font-size:69.000000px;}
.fs2_c00484{font-size:70.800000px;}
.fs3_c00484{font-size:73.200000px;}
.y0_c00484{bottom:0.000000px;}
.y1f_c00484{bottom:70.215015px;}
.y1e_c00484{bottom:162.735015px;}
.y1d_c00484{bottom:162.735765px;}
.y1b_c00484{bottom:192.972015px;}
.y1c_c00484{bottom:192.975015px;}
.y1a_c00484{bottom:254.175015px;}
.y19_c00484{bottom:284.775015px;}
.y18_c00484{bottom:347.040015px;}
.y17_c00484{bottom:376.935015px;}
.y16_c00484{bottom:439.575015px;}
.y15_c00484{bottom:469.455015px;}
.y14_c00484{bottom:531.735015px;}
.y13_c00484{bottom:531.740265px;}
.y12_c00484{bottom:561.587715px;}
.y11_c00484{bottom:592.916715px;}
.y10_c00484{bottom:623.520015px;}
.yf_c00484{bottom:685.453515px;}
.ye_c00484{bottom:716.055015px;}
.yc_c00484{bottom:778.333515px;}
.yd_c00484{bottom:778.335015px;}
.ya_c00484{bottom:808.929765px;}
.yb_c00484{bottom:808.935015px;}
.y9_c00484{bottom:870.840015px;}
.y8_c00484{bottom:900.720015px;}
.y7_c00484{bottom:900.732765px;}
.y6_c00484{bottom:962.660265px;}
.y4_c00484{bottom:992.517015px;}
.y5_c00484{bottom:992.520015px;}
.y3_c00484{bottom:1053.720015px;}
.y2_c00484{bottom:1084.680015px;}
.y1_c00484{bottom:1191.255015px;}
.hb_c00484{height:56.531250px;}
.h2_c00484{height:58.050000px;}
.h3_c00484{height:67.719727px;}
.h4_c00484{height:69.451758px;}
.h6_c00484{height:69.457758px;}
.h8_c00484{height:69.461719px;}
.h9_c00484{height:69.486328px;}
.ha_c00484{height:70.084500px;}
.h7_c00484{height:70.087500px;}
.h5_c00484{height:71.841797px;}
.h1_c00484{height:1263.000000px;}
.h0_c00484{height:1263.240015px;}
.w1_c00484{width:892.500000px;}
.w0_c00484{width:892.800015px;}
.x0_c00484{left:0.000000px;}
.x26_c00484{left:125.460015px;}
.x1c_c00484{left:126.626415px;}
.x1_c00484{left:127.710015px;}
.xb_c00484{left:129.015015px;}
.xc_c00484{left:149.430015px;}
.x2_c00484{left:151.155015px;}
.x1d_c00484{left:157.005015px;}
.x21_c00484{left:171.120015px;}
.x2b_c00484{left:183.870015px;}
.x27_c00484{left:193.860015px;}
.x22_c00484{left:196.725015px;}
.x17_c00484{left:207.270015px;}
.x23_c00484{left:216.900015px;}
.x28_c00484{left:218.280015px;}
.x1e_c00484{left:221.220015px;}
.x24_c00484{left:234.975015px;}
.x9_c00484{left:238.590015px;}
.x3_c00484{left:240.750015px;}
.x18_c00484{left:249.075015px;}
.xa_c00484{left:256.800015px;}
.x4_c00484{left:260.760015px;}
.x2c_c00484{left:291.585015px;}
.x29_c00484{left:331.740015px;}
.x2d_c00484{left:334.620015px;}
.x2a_c00484{left:353.295015px;}
.xd_c00484{left:354.510015px;}
.xe_c00484{left:391.440015px;}
.x1a_c00484{left:395.085015px;}
.x1b_c00484{left:418.110015px;}
.x2e_c00484{left:425.100015px;}
.x19_c00484{left:474.300015px;}
.xf_c00484{left:476.835015px;}
.x12_c00484{left:495.480015px;}
.x13_c00484{left:521.775015px;}
.x10_c00484{left:560.700015px;}
.x14_c00484{left:577.980015px;}
.x11_c00484{left:582.240015px;}
.x15_c00484{left:600.600015px;}
.x5_c00484{left:621.975015px;}
.x16_c00484{left:626.190015px;}
.x6_c00484{left:645.615015px;}
.x7_c00484{left:687.570015px;}
.x8_c00484{left:725.160015px;}
.x25_c00484{left:735.300015px;}
.x1f_c00484{left:738.210015px;}
.x20_c00484{left:747.075015px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls3e_c00484{letter-spacing:-2.277333pt;}
.ls35_c00484{letter-spacing:-2.202667pt;}
.ls64_c00484{letter-spacing:-2.177493pt;}
.ls2e_c00484{letter-spacing:-2.146667pt;}
.ls72_c00484{letter-spacing:-2.072000pt;}
.ls65_c00484{letter-spacing:-2.001280pt;}
.ls6d_c00484{letter-spacing:-1.944640pt;}
.ls8e_c00484{letter-spacing:-1.925867pt;}
.ls31_c00484{letter-spacing:-1.901333pt;}
.ls46_c00484{letter-spacing:-1.864533pt;}
.ls8d_c00484{letter-spacing:-1.837653pt;}
.ls34_c00484{letter-spacing:-1.642560pt;}
.ls37_c00484{letter-spacing:-1.631467pt;}
.ls5e_c00484{letter-spacing:-1.541867pt;}
.ls4c_c00484{letter-spacing:-1.522987pt;}
.ls5d_c00484{letter-spacing:-1.504107pt;}
.ls85_c00484{letter-spacing:-1.459733pt;}
.ls7c_c00484{letter-spacing:-1.296427pt;}
.ls78_c00484{letter-spacing:-1.269600pt;}
.ls75_c00484{letter-spacing:-1.227200pt;}
.ls56_c00484{letter-spacing:-1.176853pt;}
.ls52_c00484{letter-spacing:-1.146933pt;}
.ls83_c00484{letter-spacing:-1.132800pt;}
.ls3b_c00484{letter-spacing:-1.126507pt;}
.ls3c_c00484{letter-spacing:-1.104000pt;}
.ls6c_c00484{letter-spacing:-1.101333pt;}
.ls66_c00484{letter-spacing:-1.044693pt;}
.ls44_c00484{letter-spacing:-1.042667pt;}
.ls6f_c00484{letter-spacing:-0.962933pt;}
.ls71_c00484{letter-spacing:-0.932267pt;}
.ls7b_c00484{letter-spacing:-0.906240pt;}
.ls30_c00484{letter-spacing:-0.901600pt;}
.ls84_c00484{letter-spacing:-0.893653pt;}
.ls6b_c00484{letter-spacing:-0.887360pt;}
.ls57_c00484{letter-spacing:-0.874773pt;}
.ls5f_c00484{letter-spacing:-0.843307pt;}
.ls62_c00484{letter-spacing:-0.824427pt;}
.ls7d_c00484{letter-spacing:-0.821867pt;}
.ls58_c00484{letter-spacing:-0.809600pt;}
.ls88_c00484{letter-spacing:-0.685973pt;}
.ls32_c00484{letter-spacing:-0.619467pt;}
.ls82_c00484{letter-spacing:-0.607200pt;}
.ls68_c00484{letter-spacing:-0.604160pt;}
.ls5b_c00484{letter-spacing:-0.601067pt;}
.ls49_c00484{letter-spacing:-0.585280pt;}
.ls8a_c00484{letter-spacing:-0.582667pt;}
.ls67_c00484{letter-spacing:-0.522347pt;}
.ls3d_c00484{letter-spacing:-0.515200pt;}
.ls60_c00484{letter-spacing:-0.509760pt;}
.ls51_c00484{letter-spacing:-0.509067pt;}
.ls36_c00484{letter-spacing:-0.503467pt;}
.ls69_c00484{letter-spacing:-0.490880pt;}
.ls6a_c00484{letter-spacing:-0.484587pt;}
.ls40_c00484{letter-spacing:-0.478293pt;}
.ls7a_c00484{letter-spacing:-0.466133pt;}
.ls4b_c00484{letter-spacing:-0.435467pt;}
.ls63_c00484{letter-spacing:-0.427947pt;}
.ls76_c00484{letter-spacing:-0.421653pt;}
.ls7f_c00484{letter-spacing:-0.410933pt;}
.ls80_c00484{letter-spacing:-0.398667pt;}
.ls5a_c00484{letter-spacing:-0.380267pt;}
.ls5c_c00484{letter-spacing:-0.371307pt;}
.ls50_c00484{letter-spacing:-0.361867pt;}
.ls61_c00484{letter-spacing:-0.358720pt;}
.ls3f_c00484{letter-spacing:-0.343467pt;}
.ls89_c00484{letter-spacing:-0.339840pt;}
.ls42_c00484{letter-spacing:-0.294400pt;}
.ls59_c00484{letter-spacing:-0.269867pt;}
.ls3a_c00484{letter-spacing:-0.257600pt;}
.ls74_c00484{letter-spacing:-0.251467pt;}
.ls8f_c00484{letter-spacing:-0.250880pt;}
.ls8c_c00484{letter-spacing:-0.226933pt;}
.ls7e_c00484{letter-spacing:-0.220800pt;}
.ls6e_c00484{letter-spacing:-0.165600pt;}
.ls4e_c00484{letter-spacing:-0.153333pt;}
.ls55_c00484{letter-spacing:-0.128800pt;}
.ls48_c00484{letter-spacing:-0.094400pt;}
.ls2f_c00484{letter-spacing:-0.092000pt;}
.ls4a_c00484{letter-spacing:-0.042933pt;}
.ls53_c00484{letter-spacing:-0.036800pt;}
.ls45_c00484{letter-spacing:-0.006133pt;}
.ls33_c00484{letter-spacing:0.000000pt;}
.ls86_c00484{letter-spacing:0.012267pt;}
.ls17_c00484{letter-spacing:0.030667pt;}
.ls38_c00484{letter-spacing:0.042933pt;}
.ls70_c00484{letter-spacing:0.049067pt;}
.ls3_c00484{letter-spacing:0.061333pt;}
.ls27_c00484{letter-spacing:0.079733pt;}
.ls2a_c00484{letter-spacing:0.104267pt;}
.ls1a_c00484{letter-spacing:0.106987pt;}
.lsb_c00484{letter-spacing:0.122667pt;}
.ls13_c00484{letter-spacing:0.134933pt;}
.ls4_c00484{letter-spacing:0.153333pt;}
.lsa_c00484{letter-spacing:0.165600pt;}
.ls7_c00484{letter-spacing:0.171733pt;}
.ls41_c00484{letter-spacing:0.177867pt;}
.lse_c00484{letter-spacing:0.190133pt;}
.ls22_c00484{letter-spacing:0.196267pt;}
.ls2_c00484{letter-spacing:0.226933pt;}
.ls12_c00484{letter-spacing:0.233067pt;}
.ls14_c00484{letter-spacing:0.239200pt;}
.ls16_c00484{letter-spacing:0.245333pt;}
.ls77_c00484{letter-spacing:0.263733pt;}
.ls1c_c00484{letter-spacing:0.312800pt;}
.ls29_c00484{letter-spacing:0.343467pt;}
.ls19_c00484{letter-spacing:0.358720pt;}
.ls26_c00484{letter-spacing:0.374133pt;}
.ls1d_c00484{letter-spacing:0.380267pt;}
.ls23_c00484{letter-spacing:0.386400pt;}
.ls11_c00484{letter-spacing:0.417067pt;}
.ls47_c00484{letter-spacing:0.423200pt;}
.ls15_c00484{letter-spacing:0.429333pt;}
.ls54_c00484{letter-spacing:0.435467pt;}
.ls1f_c00484{letter-spacing:0.502933pt;}
.ls81_c00484{letter-spacing:0.533600pt;}
.ls1_c00484{letter-spacing:0.545867pt;}
.ls43_c00484{letter-spacing:0.552000pt;}
.lsd_c00484{letter-spacing:0.570400pt;}
.ls39_c00484{letter-spacing:0.588800pt;}
.ls24_c00484{letter-spacing:0.607200pt;}
.ls1b_c00484{letter-spacing:0.641920pt;}
.ls10_c00484{letter-spacing:0.650133pt;}
.ls8_c00484{letter-spacing:0.656267pt;}
.ls4f_c00484{letter-spacing:0.693067pt;}
.ls18_c00484{letter-spacing:0.699200pt;}
.ls0_c00484{letter-spacing:0.705333pt;}
.ls79_c00484{letter-spacing:0.723733pt;}
.ls2b_c00484{letter-spacing:0.729867pt;}
.ls28_c00484{letter-spacing:0.736000pt;}
.ls20_c00484{letter-spacing:0.748267pt;}
.lsf_c00484{letter-spacing:0.772800pt;}
.ls87_c00484{letter-spacing:0.785067pt;}
.ls25_c00484{letter-spacing:0.809600pt;}
.ls9_c00484{letter-spacing:0.828000pt;}
.ls73_c00484{letter-spacing:0.907733pt;}
.lsc_c00484{letter-spacing:0.969067pt;}
.ls8b_c00484{letter-spacing:1.238933pt;}
.ls1e_c00484{letter-spacing:1.275733pt;}
.ls6_c00484{letter-spacing:1.343200pt;}
.ls2c_c00484{letter-spacing:1.612800pt;}
.ls21_c00484{letter-spacing:1.852267pt;}
.ls5_c00484{letter-spacing:1.919733pt;}
.ls4d_c00484{letter-spacing:2.986667pt;}
.ls2d_c00484{letter-spacing:3.066667pt;}
.wsa_c00484{word-spacing:0.000000pt;}
.ws7_c00484{word-spacing:2.956267pt;}
.ws1_c00484{word-spacing:5.820000pt;}
.ws8_c00484{word-spacing:6.108800pt;}
.ws2_c00484{word-spacing:7.126933pt;}
.ws3_c00484{word-spacing:10.745600pt;}
.ws9_c00484{word-spacing:10.993600pt;}
.ws4_c00484{word-spacing:13.286933pt;}
.ws0_c00484{word-spacing:13.500000pt;}
.ws6_c00484{word-spacing:17.001600pt;}
.ws5_c00484{word-spacing:17.300800pt;}
._7_c00484{margin-left:-18.700533pt;}
._5_c00484{margin-left:-2.637333pt;}
._d_c00484{width:1.352533pt;}
._6_c00484{width:2.392000pt;}
._8_c00484{width:3.459200pt;}
._3_c00484{width:4.516267pt;}
._a_c00484{width:5.789867pt;}
._17_c00484{width:6.762507pt;}
._b_c00484{width:7.721867pt;}
._9_c00484{width:8.697067pt;}
._4_c00484{width:10.083200pt;}
._c_c00484{width:11.450933pt;}
._0_c00484{width:12.450667pt;}
._2_c00484{width:13.971733pt;}
._1_c00484{width:16.523200pt;}
._f_c00484{width:17.590400pt;}
._18_c00484{width:18.482133pt;}
._e_c00484{width:19.385333pt;}
._15_c00484{width:21.409920pt;}
._11_c00484{width:23.547787pt;}
._13_c00484{width:24.959360pt;}
._10_c00484{width:26.078933pt;}
._16_c00484{width:28.100960pt;}
._14_c00484{width:31.139413pt;}
._12_c00484{width:32.744213pt;}
.fs0_c00484{font-size:51.200000pt;}
.fs5_c00484{font-size:59.200000pt;}
.fs4_c00484{font-size:59.733333pt;}
.fs1_c00484{font-size:61.333333pt;}
.fs2_c00484{font-size:62.933333pt;}
.fs3_c00484{font-size:65.066667pt;}
.y0_c00484{bottom:0.000000pt;}
.y1f_c00484{bottom:62.413347pt;}
.y1e_c00484{bottom:144.653347pt;}
.y1d_c00484{bottom:144.654013pt;}
.y1b_c00484{bottom:171.530680pt;}
.y1c_c00484{bottom:171.533347pt;}
.y1a_c00484{bottom:225.933347pt;}
.y19_c00484{bottom:253.133347pt;}
.y18_c00484{bottom:308.480013pt;}
.y17_c00484{bottom:335.053347pt;}
.y16_c00484{bottom:390.733347pt;}
.y15_c00484{bottom:417.293347pt;}
.y14_c00484{bottom:472.653347pt;}
.y13_c00484{bottom:472.658013pt;}
.y12_c00484{bottom:499.189080pt;}
.y11_c00484{bottom:527.037080pt;}
.y10_c00484{bottom:554.240013pt;}
.yf_c00484{bottom:609.292013pt;}
.ye_c00484{bottom:636.493347pt;}
.yc_c00484{bottom:691.852013pt;}
.yd_c00484{bottom:691.853347pt;}
.ya_c00484{bottom:719.048680pt;}
.yb_c00484{bottom:719.053347pt;}
.y9_c00484{bottom:774.080013pt;}
.y8_c00484{bottom:800.640013pt;}
.y7_c00484{bottom:800.651347pt;}
.y6_c00484{bottom:855.698013pt;}
.y4_c00484{bottom:882.237347pt;}
.y5_c00484{bottom:882.240013pt;}
.y3_c00484{bottom:936.640013pt;}
.y2_c00484{bottom:964.160013pt;}
.y1_c00484{bottom:1058.893347pt;}
.hb_c00484{height:50.250000pt;}
.h2_c00484{height:51.600000pt;}
.h3_c00484{height:60.195312pt;}
.h4_c00484{height:61.734896pt;}
.h6_c00484{height:61.740229pt;}
.h8_c00484{height:61.743750pt;}
.h9_c00484{height:61.765625pt;}
.ha_c00484{height:62.297333pt;}
.h7_c00484{height:62.300000pt;}
.h5_c00484{height:63.859375pt;}
.h1_c00484{height:1122.666667pt;}
.h0_c00484{height:1122.880013pt;}
.w1_c00484{width:793.333333pt;}
.w0_c00484{width:793.600013pt;}
.x0_c00484{left:0.000000pt;}
.x26_c00484{left:111.520013pt;}
.x1c_c00484{left:112.556813pt;}
.x1_c00484{left:113.520013pt;}
.xb_c00484{left:114.680013pt;}
.xc_c00484{left:132.826680pt;}
.x2_c00484{left:134.360013pt;}
.x1d_c00484{left:139.560013pt;}
.x21_c00484{left:152.106680pt;}
.x2b_c00484{left:163.440013pt;}
.x27_c00484{left:172.320013pt;}
.x22_c00484{left:174.866680pt;}
.x17_c00484{left:184.240013pt;}
.x23_c00484{left:192.800013pt;}
.x28_c00484{left:194.026680pt;}
.x1e_c00484{left:196.640013pt;}
.x24_c00484{left:208.866680pt;}
.x9_c00484{left:212.080013pt;}
.x3_c00484{left:214.000013pt;}
.x18_c00484{left:221.400013pt;}
.xa_c00484{left:228.266680pt;}
.x4_c00484{left:231.786680pt;}
.x2c_c00484{left:259.186680pt;}
.x29_c00484{left:294.880013pt;}
.x2d_c00484{left:297.440013pt;}
.x2a_c00484{left:314.040013pt;}
.xd_c00484{left:315.120013pt;}
.xe_c00484{left:347.946680pt;}
.x1a_c00484{left:351.186680pt;}
.x1b_c00484{left:371.653347pt;}
.x2e_c00484{left:377.866680pt;}
.x19_c00484{left:421.600013pt;}
.xf_c00484{left:423.853347pt;}
.x12_c00484{left:440.426680pt;}
.x13_c00484{left:463.800013pt;}
.x10_c00484{left:498.400013pt;}
.x14_c00484{left:513.760013pt;}
.x11_c00484{left:517.546680pt;}
.x15_c00484{left:533.866680pt;}
.x5_c00484{left:552.866680pt;}
.x16_c00484{left:556.613347pt;}
.x6_c00484{left:573.880013pt;}
.x7_c00484{left:611.173347pt;}
.x8_c00484{left:644.586680pt;}
.x25_c00484{left:653.600013pt;}
.x1f_c00484{left:656.186680pt;}
.x20_c00484{left:664.066680pt;}
}





/* 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_c00485 {
    display:none;
  }
  .loading-indicator_c00485.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00485 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_c00485 { 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_c00485" -> "#page-container .classname_c00485")
 */
.pf_c00485 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00485 { /* 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_c00485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00485 { /* 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_c00485 { /* 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_c00485 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00485 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00485 {overflow:visible;}
  }
}
.c_c00485 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00485 { /* 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_c00485:after { /* webkit #35443 */
  content: '';
}
.t_c00485:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00485 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 */
}
.__c00485 { /* 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_c00485 { /* info for Javascript */
  display:none;
}
.l_c00485 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00485 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00485 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00485: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_c00485 {
    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_c00485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00485.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_c00485 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00485{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00485;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.311035;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_c00485;src:url('chunks/assets/font_c24b4bddc2cd7d1af251b075.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.284668;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_c00485;src:url('chunks/assets/font_74cc4a898b97f54016800865.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;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:ff4_c00485;src:url('chunks/assets/font_935e3dc03c57a41edf70b4d2.woff2')format("woff");}.ff4_c00485{font-family:ff4_c00485;line-height:1.284180;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_c00485;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff5_c00485{font-family:ff5_c00485;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;}
.m5_c00485{transform:matrix(0.238797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238797,0.000000,0.000000,0.250000,0,0);}
.m1_c00485{transform:matrix(0.239692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239692,0.000000,0.000000,0.250000,0,0);}
.m4_c00485{transform:matrix(0.243382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243382,0.000000,0.000000,0.250000,0,0);}
.m2_c00485{transform:matrix(0.244804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244804,0.000000,0.000000,0.250000,0,0);}
.ma_c00485{transform:matrix(0.246418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246418,0.000000,0.000000,0.250000,0,0);}
.mb_c00485{transform:matrix(0.247231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247231,0.000000,0.000000,0.250000,0,0);}
.m7_c00485{transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);}
.m0_c00485{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);}
.m9_c00485{transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);}
.m6_c00485{transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);}
.m3_c00485{transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);}
.m8_c00485{transform:matrix(0.286513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286513,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls5b_c00485{letter-spacing:-2.457000px;}
.ls62_c00485{letter-spacing:-2.436000px;}
.ls5c_c00485{letter-spacing:-2.351700px;}
.ls8d_c00485{letter-spacing:-2.225340px;}
.ls6e_c00485{letter-spacing:-2.168760px;}
.ls8a_c00485{letter-spacing:-2.150640px;}
.ls60_c00485{letter-spacing:-1.767840px;}
.ls7e_c00485{letter-spacing:-1.698240px;}
.ls9c_c00485{letter-spacing:-1.649520px;}
.ls89_c00485{letter-spacing:-1.503360px;}
.ls68_c00485{letter-spacing:-1.398960px;}
.ls6a_c00485{letter-spacing:-1.364160px;}
.ls5a_c00485{letter-spacing:-1.361880px;}
.ls98_c00485{letter-spacing:-1.343280px;}
.ls86_c00485{letter-spacing:-1.315440px;}
.ls83_c00485{letter-spacing:-1.301520px;}
.ls8c_c00485{letter-spacing:-1.200420px;}
.ls6d_c00485{letter-spacing:-1.134480px;}
.ls9a_c00485{letter-spacing:-1.116180px;}
.ls71_c00485{letter-spacing:-1.113600px;}
.ls70_c00485{letter-spacing:-1.009200px;}
.ls77_c00485{letter-spacing:-0.982800px;}
.ls75_c00485{letter-spacing:-0.898560px;}
.ls4f_c00485{letter-spacing:-0.870000px;}
.ls76_c00485{letter-spacing:-0.849420px;}
.ls87_c00485{letter-spacing:-0.828240px;}
.ls78_c00485{letter-spacing:-0.793440px;}
.ls96_c00485{letter-spacing:-0.779520px;}
.ls7c_c00485{letter-spacing:-0.737760px;}
.ls9d_c00485{letter-spacing:-0.716880px;}
.ls52_c00485{letter-spacing:-0.702960px;}
.ls63_c00485{letter-spacing:-0.689040px;}
.ls65_c00485{letter-spacing:-0.633360px;}
.ls5e_c00485{letter-spacing:-0.626400px;}
.ls58_c00485{letter-spacing:-0.619440px;}
.ls6c_c00485{letter-spacing:-0.598560px;}
.ls7a_c00485{letter-spacing:-0.584640px;}
.ls88_c00485{letter-spacing:-0.549840px;}
.ls82_c00485{letter-spacing:-0.533520px;}
.ls73_c00485{letter-spacing:-0.480240px;}
.ls8f_c00485{letter-spacing:-0.445440px;}
.ls94_c00485{letter-spacing:-0.431520px;}
.ls92_c00485{letter-spacing:-0.428220px;}
.ls53_c00485{letter-spacing:-0.403680px;}
.ls7d_c00485{letter-spacing:-0.396720px;}
.ls97_c00485{letter-spacing:-0.389760px;}
.ls5f_c00485{letter-spacing:-0.354960px;}
.ls7b_c00485{letter-spacing:-0.243600px;}
.ls50_c00485{letter-spacing:-0.222720px;}
.ls54_c00485{letter-spacing:-0.208800px;}
.ls69_c00485{letter-spacing:-0.182520px;}
.ls9b_c00485{letter-spacing:-0.175500px;}
.ls95_c00485{letter-spacing:-0.167040px;}
.ls57_c00485{letter-spacing:-0.153120px;}
.ls9e_c00485{letter-spacing:-0.146160px;}
.ls85_c00485{letter-spacing:-0.111360px;}
.ls67_c00485{letter-spacing:-0.097440px;}
.ls55_c00485{letter-spacing:-0.090480px;}
.ls8e_c00485{letter-spacing:-0.083520px;}
.ls8b_c00485{letter-spacing:-0.062640px;}
.ls84_c00485{letter-spacing:-0.055680px;}
.ls5d_c00485{letter-spacing:-0.049140px;}
.ls51_c00485{letter-spacing:0.000000px;}
.ls1c_c00485{letter-spacing:0.027840px;}
.ls12_c00485{letter-spacing:0.028080px;}
.ls47_c00485{letter-spacing:0.034800px;}
.ls20_c00485{letter-spacing:0.041760px;}
.ls66_c00485{letter-spacing:0.048720px;}
.lsa_c00485{letter-spacing:0.076560px;}
.ls31_c00485{letter-spacing:0.090480px;}
.ls3c_c00485{letter-spacing:0.097440px;}
.ls11_c00485{letter-spacing:0.104400px;}
.ls80_c00485{letter-spacing:0.132240px;}
.ls4d_c00485{letter-spacing:0.167040px;}
.ls93_c00485{letter-spacing:0.168480px;}
.ls17_c00485{letter-spacing:0.174000px;}
.ls2a_c00485{letter-spacing:0.180960px;}
.ls43_c00485{letter-spacing:0.187920px;}
.ls35_c00485{letter-spacing:0.196560px;}
.ls28_c00485{letter-spacing:0.201840px;}
.ls46_c00485{letter-spacing:0.215760px;}
.ls39_c00485{letter-spacing:0.222720px;}
.lsc_c00485{letter-spacing:0.273780px;}
.ls1d_c00485{letter-spacing:0.294840px;}
.ls9_c00485{letter-spacing:0.306240px;}
.ls4a_c00485{letter-spacing:0.313200px;}
.lsd_c00485{letter-spacing:0.315900px;}
.ls10_c00485{letter-spacing:0.327120px;}
.ls6_c00485{letter-spacing:0.334080px;}
.ls2d_c00485{letter-spacing:0.341040px;}
.ls0_c00485{letter-spacing:0.348000px;}
.ls72_c00485{letter-spacing:0.354960px;}
.ls7f_c00485{letter-spacing:0.361920px;}
.ls59_c00485{letter-spacing:0.375840px;}
.lse_c00485{letter-spacing:0.382800px;}
.ls21_c00485{letter-spacing:0.396720px;}
.ls2b_c00485{letter-spacing:0.400140px;}
.ls7_c00485{letter-spacing:0.410640px;}
.ls23_c00485{letter-spacing:0.424560px;}
.ls49_c00485{letter-spacing:0.438480px;}
.ls56_c00485{letter-spacing:0.445440px;}
.ls2c_c00485{letter-spacing:0.449280px;}
.ls5_c00485{letter-spacing:0.473280px;}
.ls1a_c00485{letter-spacing:0.480240px;}
.ls4c_c00485{letter-spacing:0.484380px;}
.ls22_c00485{letter-spacing:0.487200px;}
.ls36_c00485{letter-spacing:0.494160px;}
.ls33_c00485{letter-spacing:0.535920px;}
.ls4b_c00485{letter-spacing:0.542880px;}
.ls38_c00485{letter-spacing:0.563760px;}
.ls4_c00485{letter-spacing:0.570720px;}
.ls25_c00485{letter-spacing:0.584640px;}
.ls9f_c00485{letter-spacing:0.587400px;}
.ls2e_c00485{letter-spacing:0.591600px;}
.ls3b_c00485{letter-spacing:0.598560px;}
.ls30_c00485{letter-spacing:0.633360px;}
.ls3a_c00485{letter-spacing:0.661200px;}
.ls74_c00485{letter-spacing:0.668160px;}
.ls90_c00485{letter-spacing:0.716880px;}
.ls37_c00485{letter-spacing:0.744720px;}
.ls1b_c00485{letter-spacing:0.751680px;}
.ls34_c00485{letter-spacing:0.765180px;}
.ls27_c00485{letter-spacing:0.765600px;}
.ls16_c00485{letter-spacing:0.779520px;}
.ls15_c00485{letter-spacing:0.780000px;}
.ls81_c00485{letter-spacing:0.793440px;}
.lsf_c00485{letter-spacing:0.814320px;}
.lsb_c00485{letter-spacing:0.821280px;}
.ls3_c00485{letter-spacing:0.835200px;}
.ls48_c00485{letter-spacing:0.849120px;}
.ls42_c00485{letter-spacing:0.856080px;}
.ls32_c00485{letter-spacing:0.897840px;}
.ls3d_c00485{letter-spacing:0.904800px;}
.ls40_c00485{letter-spacing:0.953520px;}
.ls2_c00485{letter-spacing:0.974400px;}
.ls41_c00485{letter-spacing:1.002240px;}
.ls14_c00485{letter-spacing:1.030080px;}
.ls61_c00485{letter-spacing:1.050960px;}
.ls29_c00485{letter-spacing:1.057920px;}
.ls18_c00485{letter-spacing:1.120560px;}
.ls1f_c00485{letter-spacing:1.134480px;}
.ls24_c00485{letter-spacing:1.148400px;}
.ls19_c00485{letter-spacing:1.162320px;}
.ls1e_c00485{letter-spacing:1.176240px;}
.ls91_c00485{letter-spacing:1.287600px;}
.ls26_c00485{letter-spacing:1.329360px;}
.ls6f_c00485{letter-spacing:1.440720px;}
.ls4e_c00485{letter-spacing:1.536480px;}
.ls2f_c00485{letter-spacing:1.684320px;}
.ls3f_c00485{letter-spacing:1.881360px;}
.ls45_c00485{letter-spacing:1.886160px;}
.ls8_c00485{letter-spacing:1.983600px;}
.ls3e_c00485{letter-spacing:2.014740px;}
.ls1_c00485{letter-spacing:2.046240px;}
.ls99_c00485{letter-spacing:2.185440px;}
.ls6b_c00485{letter-spacing:2.239380px;}
.ls13_c00485{letter-spacing:2.728320px;}
.ls44_c00485{letter-spacing:3.445200px;}
.ls79_c00485{letter-spacing:3.450000px;}
.ls64_c00485{letter-spacing:3.480000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{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__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00485{word-spacing:0.000000px;}
.ws0_c00485{word-spacing:2.129760px;}
.ws4_c00485{word-spacing:4.722720px;}
.ws5_c00485{word-spacing:5.057760px;}
.ws2_c00485{word-spacing:16.530000px;}
.ws3_c00485{word-spacing:17.295600px;}
.ws6_c00485{word-spacing:26.628960px;}
.ws1_c00485{word-spacing:28.626480px;}
._20_c00485{margin-left:-12.501600px;}
._21_c00485{margin-left:-9.695640px;}
._4_c00485{margin-left:-8.517000px;}
._8_c00485{margin-left:-4.071600px;}
._1_c00485{margin-left:-2.277120px;}
._7_c00485{margin-left:-1.028880px;}
._6_c00485{width:1.048800px;}
._2_c00485{width:2.901600px;}
._1c_c00485{width:4.003200px;}
._0_c00485{width:6.055200px;}
._3_c00485{width:7.368000px;}
._1e_c00485{width:8.490720px;}
._a_c00485{width:9.972540px;}
._22_c00485{width:11.145120px;}
._5_c00485{width:12.445200px;}
._9_c00485{width:13.653900px;}
._17_c00485{width:14.934480px;}
._d_c00485{width:16.983000px;}
._1f_c00485{width:18.215040px;}
._18_c00485{width:19.237440px;}
._1b_c00485{width:20.609040px;}
._1a_c00485{width:22.411200px;}
._1d_c00485{width:23.761440px;}
._19_c00485{width:25.257840px;}
._b_c00485{width:28.034880px;}
._e_c00485{width:30.129840px;}
._c_c00485{width:32.317920px;}
._15_c00485{width:37.555440px;}
._11_c00485{width:41.070960px;}
._16_c00485{width:42.515040px;}
._f_c00485{width:43.674000px;}
._12_c00485{width:45.010320px;}
._10_c00485{width:46.464960px;}
._13_c00485{width:48.378960px;}
._14_c00485{width:53.912640px;}
.fc0_c00485{color:transparent;}
.fs9_c00485{font-size:53.400000px;}
.fs0_c00485{font-size:58.200000px;}
.fs6_c00485{font-size:63.600000px;}
.fs2_c00485{font-size:66.600000px;}
.fs7_c00485{font-size:69.000000px;}
.fs1_c00485{font-size:69.600000px;}
.fs4_c00485{font-size:70.200000px;}
.fs3_c00485{font-size:70.800000px;}
.fs8_c00485{font-size:72.000000px;}
.fs5_c00485{font-size:75.000000px;}
.y0_c00485{bottom:0.000000px;}
.y21_c00485{bottom:72.735000px;}
.y20_c00485{bottom:193.689600px;}
.y1f_c00485{bottom:225.380400px;}
.y1e_c00485{bottom:256.335000px;}
.y1d_c00485{bottom:317.895000px;}
.y1c_c00485{bottom:349.580400px;}
.y1b_c00485{bottom:380.535000px;}
.y1a_c00485{bottom:441.720000px;}
.y19_c00485{bottom:472.695000px;}
.y18_c00485{bottom:533.892000px;}
.y17_c00485{bottom:565.563000px;}
.y15_c00485{bottom:596.528400px;}
.y16_c00485{bottom:596.535000px;}
.y14_c00485{bottom:658.462800px;}
.y13_c00485{bottom:689.400000px;}
.y12_c00485{bottom:689.403000px;}
.y11_c00485{bottom:720.376200px;}
.y10_c00485{bottom:781.928400px;}
.yf_c00485{bottom:812.535000px;}
.ye_c00485{bottom:812.540400px;}
.yd_c00485{bottom:843.495000px;}
.yb_c00485{bottom:874.076400px;}
.yc_c00485{bottom:874.080000px;}
.y9_c00485{bottom:935.650350px;}
.ya_c00485{bottom:935.655000px;}
.y7_c00485{bottom:966.236400px;}
.y8_c00485{bottom:966.240000px;}
.y6_c00485{bottom:996.495000px;}
.y5_c00485{bottom:996.502800px;}
.y4_c00485{bottom:1058.760000px;}
.y3_c00485{bottom:1089.015000px;}
.y2_c00485{bottom:1120.695000px;}
.y1_c00485{bottom:1197.720000px;}
.hf_c00485{height:55.694531px;}
.h2_c00485{height:58.654687px;}
.h7_c00485{height:68.308594px;}
.hc_c00485{height:68.831984px;}
.ha_c00485{height:68.841584px;}
.h5_c00485{height:68.863184px;}
.h8_c00485{height:68.881784px;}
.h6_c00485{height:69.430519px;}
.h4_c00485{height:69.451758px;}
.h3_c00485{height:69.461719px;}
.hd_c00485{height:70.616906px;}
.he_c00485{height:71.943244px;}
.hb_c00485{height:71.964844px;}
.h9_c00485{height:78.237056px;}
.h1_c00485{height:1263.000000px;}
.h0_c00485{height:1263.240000px;}
.w1_c00485{width:892.500000px;}
.w0_c00485{width:892.800000px;}
.x0_c00485{left:0.000000px;}
.x1e_c00485{left:122.175000px;}
.x17_c00485{left:123.669600px;}
.x10_c00485{left:124.740000px;}
.x3_c00485{left:125.775000px;}
.x2_c00485{left:127.365000px;}
.x1_c00485{left:128.430000px;}
.x4_c00485{left:158.820000px;}
.x5_c00485{left:194.520000px;}
.x18_c00485{left:215.100000px;}
.x1c_c00485{left:221.325000px;}
.x19_c00485{left:239.790000px;}
.x1d_c00485{left:242.040000px;}
.xa_c00485{left:269.820000px;}
.xb_c00485{left:299.490000px;}
.xc_c00485{left:331.080000px;}
.xd_c00485{left:354.030000px;}
.x6_c00485{left:358.875000px;}
.x7_c00485{left:388.200000px;}
.x21_c00485{left:425.475000px;}
.x13_c00485{left:427.470000px;}
.x14_c00485{left:447.990000px;}
.x1f_c00485{left:460.725000px;}
.x20_c00485{left:489.360000px;}
.x8_c00485{left:522.180000px;}
.x11_c00485{left:523.260000px;}
.x12_c00485{left:546.405000px;}
.x9_c00485{left:547.920000px;}
.x15_c00485{left:628.830000px;}
.x16_c00485{left:654.165000px;}
.x1a_c00485{left:664.740000px;}
.x1b_c00485{left:696.000000px;}
.xe_c00485{left:720.780000px;}
.xf_c00485{left:749.490000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls5b_c00485{letter-spacing:-2.184000pt;}
.ls62_c00485{letter-spacing:-2.165333pt;}
.ls5c_c00485{letter-spacing:-2.090400pt;}
.ls8d_c00485{letter-spacing:-1.978080pt;}
.ls6e_c00485{letter-spacing:-1.927787pt;}
.ls8a_c00485{letter-spacing:-1.911680pt;}
.ls60_c00485{letter-spacing:-1.571413pt;}
.ls7e_c00485{letter-spacing:-1.509547pt;}
.ls9c_c00485{letter-spacing:-1.466240pt;}
.ls89_c00485{letter-spacing:-1.336320pt;}
.ls68_c00485{letter-spacing:-1.243520pt;}
.ls6a_c00485{letter-spacing:-1.212587pt;}
.ls5a_c00485{letter-spacing:-1.210560pt;}
.ls98_c00485{letter-spacing:-1.194027pt;}
.ls86_c00485{letter-spacing:-1.169280pt;}
.ls83_c00485{letter-spacing:-1.156907pt;}
.ls8c_c00485{letter-spacing:-1.067040pt;}
.ls6d_c00485{letter-spacing:-1.008427pt;}
.ls9a_c00485{letter-spacing:-0.992160pt;}
.ls71_c00485{letter-spacing:-0.989867pt;}
.ls70_c00485{letter-spacing:-0.897067pt;}
.ls77_c00485{letter-spacing:-0.873600pt;}
.ls75_c00485{letter-spacing:-0.798720pt;}
.ls4f_c00485{letter-spacing:-0.773333pt;}
.ls76_c00485{letter-spacing:-0.755040pt;}
.ls87_c00485{letter-spacing:-0.736213pt;}
.ls78_c00485{letter-spacing:-0.705280pt;}
.ls96_c00485{letter-spacing:-0.692907pt;}
.ls7c_c00485{letter-spacing:-0.655787pt;}
.ls9d_c00485{letter-spacing:-0.637227pt;}
.ls52_c00485{letter-spacing:-0.624853pt;}
.ls63_c00485{letter-spacing:-0.612480pt;}
.ls65_c00485{letter-spacing:-0.562987pt;}
.ls5e_c00485{letter-spacing:-0.556800pt;}
.ls58_c00485{letter-spacing:-0.550613pt;}
.ls6c_c00485{letter-spacing:-0.532053pt;}
.ls7a_c00485{letter-spacing:-0.519680pt;}
.ls88_c00485{letter-spacing:-0.488747pt;}
.ls82_c00485{letter-spacing:-0.474240pt;}
.ls73_c00485{letter-spacing:-0.426880pt;}
.ls8f_c00485{letter-spacing:-0.395947pt;}
.ls94_c00485{letter-spacing:-0.383573pt;}
.ls92_c00485{letter-spacing:-0.380640pt;}
.ls53_c00485{letter-spacing:-0.358827pt;}
.ls7d_c00485{letter-spacing:-0.352640pt;}
.ls97_c00485{letter-spacing:-0.346453pt;}
.ls5f_c00485{letter-spacing:-0.315520pt;}
.ls7b_c00485{letter-spacing:-0.216533pt;}
.ls50_c00485{letter-spacing:-0.197973pt;}
.ls54_c00485{letter-spacing:-0.185600pt;}
.ls69_c00485{letter-spacing:-0.162240pt;}
.ls9b_c00485{letter-spacing:-0.156000pt;}
.ls95_c00485{letter-spacing:-0.148480pt;}
.ls57_c00485{letter-spacing:-0.136107pt;}
.ls9e_c00485{letter-spacing:-0.129920pt;}
.ls85_c00485{letter-spacing:-0.098987pt;}
.ls67_c00485{letter-spacing:-0.086613pt;}
.ls55_c00485{letter-spacing:-0.080427pt;}
.ls8e_c00485{letter-spacing:-0.074240pt;}
.ls8b_c00485{letter-spacing:-0.055680pt;}
.ls84_c00485{letter-spacing:-0.049493pt;}
.ls5d_c00485{letter-spacing:-0.043680pt;}
.ls51_c00485{letter-spacing:0.000000pt;}
.ls1c_c00485{letter-spacing:0.024747pt;}
.ls12_c00485{letter-spacing:0.024960pt;}
.ls47_c00485{letter-spacing:0.030933pt;}
.ls20_c00485{letter-spacing:0.037120pt;}
.ls66_c00485{letter-spacing:0.043307pt;}
.lsa_c00485{letter-spacing:0.068053pt;}
.ls31_c00485{letter-spacing:0.080427pt;}
.ls3c_c00485{letter-spacing:0.086613pt;}
.ls11_c00485{letter-spacing:0.092800pt;}
.ls80_c00485{letter-spacing:0.117547pt;}
.ls4d_c00485{letter-spacing:0.148480pt;}
.ls93_c00485{letter-spacing:0.149760pt;}
.ls17_c00485{letter-spacing:0.154667pt;}
.ls2a_c00485{letter-spacing:0.160853pt;}
.ls43_c00485{letter-spacing:0.167040pt;}
.ls35_c00485{letter-spacing:0.174720pt;}
.ls28_c00485{letter-spacing:0.179413pt;}
.ls46_c00485{letter-spacing:0.191787pt;}
.ls39_c00485{letter-spacing:0.197973pt;}
.lsc_c00485{letter-spacing:0.243360pt;}
.ls1d_c00485{letter-spacing:0.262080pt;}
.ls9_c00485{letter-spacing:0.272213pt;}
.ls4a_c00485{letter-spacing:0.278400pt;}
.lsd_c00485{letter-spacing:0.280800pt;}
.ls10_c00485{letter-spacing:0.290773pt;}
.ls6_c00485{letter-spacing:0.296960pt;}
.ls2d_c00485{letter-spacing:0.303147pt;}
.ls0_c00485{letter-spacing:0.309333pt;}
.ls72_c00485{letter-spacing:0.315520pt;}
.ls7f_c00485{letter-spacing:0.321707pt;}
.ls59_c00485{letter-spacing:0.334080pt;}
.lse_c00485{letter-spacing:0.340267pt;}
.ls21_c00485{letter-spacing:0.352640pt;}
.ls2b_c00485{letter-spacing:0.355680pt;}
.ls7_c00485{letter-spacing:0.365013pt;}
.ls23_c00485{letter-spacing:0.377387pt;}
.ls49_c00485{letter-spacing:0.389760pt;}
.ls56_c00485{letter-spacing:0.395947pt;}
.ls2c_c00485{letter-spacing:0.399360pt;}
.ls5_c00485{letter-spacing:0.420693pt;}
.ls1a_c00485{letter-spacing:0.426880pt;}
.ls4c_c00485{letter-spacing:0.430560pt;}
.ls22_c00485{letter-spacing:0.433067pt;}
.ls36_c00485{letter-spacing:0.439253pt;}
.ls33_c00485{letter-spacing:0.476373pt;}
.ls4b_c00485{letter-spacing:0.482560pt;}
.ls38_c00485{letter-spacing:0.501120pt;}
.ls4_c00485{letter-spacing:0.507307pt;}
.ls25_c00485{letter-spacing:0.519680pt;}
.ls9f_c00485{letter-spacing:0.522133pt;}
.ls2e_c00485{letter-spacing:0.525867pt;}
.ls3b_c00485{letter-spacing:0.532053pt;}
.ls30_c00485{letter-spacing:0.562987pt;}
.ls3a_c00485{letter-spacing:0.587733pt;}
.ls74_c00485{letter-spacing:0.593920pt;}
.ls90_c00485{letter-spacing:0.637227pt;}
.ls37_c00485{letter-spacing:0.661973pt;}
.ls1b_c00485{letter-spacing:0.668160pt;}
.ls34_c00485{letter-spacing:0.680160pt;}
.ls27_c00485{letter-spacing:0.680533pt;}
.ls16_c00485{letter-spacing:0.692907pt;}
.ls15_c00485{letter-spacing:0.693333pt;}
.ls81_c00485{letter-spacing:0.705280pt;}
.lsf_c00485{letter-spacing:0.723840pt;}
.lsb_c00485{letter-spacing:0.730027pt;}
.ls3_c00485{letter-spacing:0.742400pt;}
.ls48_c00485{letter-spacing:0.754773pt;}
.ls42_c00485{letter-spacing:0.760960pt;}
.ls32_c00485{letter-spacing:0.798080pt;}
.ls3d_c00485{letter-spacing:0.804267pt;}
.ls40_c00485{letter-spacing:0.847573pt;}
.ls2_c00485{letter-spacing:0.866133pt;}
.ls41_c00485{letter-spacing:0.890880pt;}
.ls14_c00485{letter-spacing:0.915627pt;}
.ls61_c00485{letter-spacing:0.934187pt;}
.ls29_c00485{letter-spacing:0.940373pt;}
.ls18_c00485{letter-spacing:0.996053pt;}
.ls1f_c00485{letter-spacing:1.008427pt;}
.ls24_c00485{letter-spacing:1.020800pt;}
.ls19_c00485{letter-spacing:1.033173pt;}
.ls1e_c00485{letter-spacing:1.045547pt;}
.ls91_c00485{letter-spacing:1.144533pt;}
.ls26_c00485{letter-spacing:1.181653pt;}
.ls6f_c00485{letter-spacing:1.280640pt;}
.ls4e_c00485{letter-spacing:1.365760pt;}
.ls2f_c00485{letter-spacing:1.497173pt;}
.ls3f_c00485{letter-spacing:1.672320pt;}
.ls45_c00485{letter-spacing:1.676587pt;}
.ls8_c00485{letter-spacing:1.763200pt;}
.ls3e_c00485{letter-spacing:1.790880pt;}
.ls1_c00485{letter-spacing:1.818880pt;}
.ls99_c00485{letter-spacing:1.942613pt;}
.ls6b_c00485{letter-spacing:1.990560pt;}
.ls13_c00485{letter-spacing:2.425173pt;}
.ls44_c00485{letter-spacing:3.062400pt;}
.ls79_c00485{letter-spacing:3.066667pt;}
.ls64_c00485{letter-spacing:3.093333pt;}
.ws7_c00485{word-spacing:0.000000pt;}
.ws0_c00485{word-spacing:1.893120pt;}
.ws4_c00485{word-spacing:4.197973pt;}
.ws5_c00485{word-spacing:4.495787pt;}
.ws2_c00485{word-spacing:14.693333pt;}
.ws3_c00485{word-spacing:15.373867pt;}
.ws6_c00485{word-spacing:23.670187pt;}
.ws1_c00485{word-spacing:25.445760pt;}
._20_c00485{margin-left:-11.112533pt;}
._21_c00485{margin-left:-8.618347pt;}
._4_c00485{margin-left:-7.570667pt;}
._8_c00485{margin-left:-3.619200pt;}
._1_c00485{margin-left:-2.024107pt;}
._7_c00485{margin-left:-0.914560pt;}
._6_c00485{width:0.932267pt;}
._2_c00485{width:2.579200pt;}
._1c_c00485{width:3.558400pt;}
._0_c00485{width:5.382400pt;}
._3_c00485{width:6.549333pt;}
._1e_c00485{width:7.547307pt;}
._a_c00485{width:8.864480pt;}
._22_c00485{width:9.906773pt;}
._5_c00485{width:11.062400pt;}
._9_c00485{width:12.136800pt;}
._17_c00485{width:13.275093pt;}
._d_c00485{width:15.096000pt;}
._1f_c00485{width:16.191147pt;}
._18_c00485{width:17.099947pt;}
._1b_c00485{width:18.319147pt;}
._1a_c00485{width:19.921067pt;}
._1d_c00485{width:21.121280pt;}
._19_c00485{width:22.451413pt;}
._b_c00485{width:24.919893pt;}
._e_c00485{width:26.782080pt;}
._c_c00485{width:28.727040pt;}
._15_c00485{width:33.382613pt;}
._11_c00485{width:36.507520pt;}
._16_c00485{width:37.791147pt;}
._f_c00485{width:38.821333pt;}
._12_c00485{width:40.009173pt;}
._10_c00485{width:41.302187pt;}
._13_c00485{width:43.003520pt;}
._14_c00485{width:47.922347pt;}
.fs9_c00485{font-size:47.466667pt;}
.fs0_c00485{font-size:51.733333pt;}
.fs6_c00485{font-size:56.533333pt;}
.fs2_c00485{font-size:59.200000pt;}
.fs7_c00485{font-size:61.333333pt;}
.fs1_c00485{font-size:61.866667pt;}
.fs4_c00485{font-size:62.400000pt;}
.fs3_c00485{font-size:62.933333pt;}
.fs8_c00485{font-size:64.000000pt;}
.fs5_c00485{font-size:66.666667pt;}
.y0_c00485{bottom:0.000000pt;}
.y21_c00485{bottom:64.653333pt;}
.y20_c00485{bottom:172.168533pt;}
.y1f_c00485{bottom:200.338133pt;}
.y1e_c00485{bottom:227.853333pt;}
.y1d_c00485{bottom:282.573333pt;}
.y1c_c00485{bottom:310.738133pt;}
.y1b_c00485{bottom:338.253333pt;}
.y1a_c00485{bottom:392.640000pt;}
.y19_c00485{bottom:420.173333pt;}
.y18_c00485{bottom:474.570667pt;}
.y17_c00485{bottom:502.722667pt;}
.y15_c00485{bottom:530.247467pt;}
.y16_c00485{bottom:530.253333pt;}
.y14_c00485{bottom:585.300267pt;}
.y13_c00485{bottom:612.800000pt;}
.y12_c00485{bottom:612.802667pt;}
.y11_c00485{bottom:640.334400pt;}
.y10_c00485{bottom:695.047467pt;}
.yf_c00485{bottom:722.253333pt;}
.ye_c00485{bottom:722.258133pt;}
.yd_c00485{bottom:749.773333pt;}
.yb_c00485{bottom:776.956800pt;}
.yc_c00485{bottom:776.960000pt;}
.y9_c00485{bottom:831.689200pt;}
.ya_c00485{bottom:831.693333pt;}
.y7_c00485{bottom:858.876800pt;}
.y8_c00485{bottom:858.880000pt;}
.y6_c00485{bottom:885.773333pt;}
.y5_c00485{bottom:885.780267pt;}
.y4_c00485{bottom:941.120000pt;}
.y3_c00485{bottom:968.013333pt;}
.y2_c00485{bottom:996.173333pt;}
.y1_c00485{bottom:1064.640000pt;}
.hf_c00485{height:49.506250pt;}
.h2_c00485{height:52.137500pt;}
.h7_c00485{height:60.718750pt;}
.hc_c00485{height:61.183985pt;}
.ha_c00485{height:61.192519pt;}
.h5_c00485{height:61.211719pt;}
.h8_c00485{height:61.228252pt;}
.h6_c00485{height:61.716017pt;}
.h4_c00485{height:61.734896pt;}
.h3_c00485{height:61.743750pt;}
.hd_c00485{height:62.770583pt;}
.he_c00485{height:63.949550pt;}
.hb_c00485{height:63.968750pt;}
.h9_c00485{height:69.544050pt;}
.h1_c00485{height:1122.666667pt;}
.h0_c00485{height:1122.880000pt;}
.w1_c00485{width:793.333333pt;}
.w0_c00485{width:793.600000pt;}
.x0_c00485{left:0.000000pt;}
.x1e_c00485{left:108.600000pt;}
.x17_c00485{left:109.928533pt;}
.x10_c00485{left:110.880000pt;}
.x3_c00485{left:111.800000pt;}
.x2_c00485{left:113.213333pt;}
.x1_c00485{left:114.160000pt;}
.x4_c00485{left:141.173333pt;}
.x5_c00485{left:172.906667pt;}
.x18_c00485{left:191.200000pt;}
.x1c_c00485{left:196.733333pt;}
.x19_c00485{left:213.146667pt;}
.x1d_c00485{left:215.146667pt;}
.xa_c00485{left:239.840000pt;}
.xb_c00485{left:266.213333pt;}
.xc_c00485{left:294.293333pt;}
.xd_c00485{left:314.693333pt;}
.x6_c00485{left:319.000000pt;}
.x7_c00485{left:345.066667pt;}
.x21_c00485{left:378.200000pt;}
.x13_c00485{left:379.973333pt;}
.x14_c00485{left:398.213333pt;}
.x1f_c00485{left:409.533333pt;}
.x20_c00485{left:434.986667pt;}
.x8_c00485{left:464.160000pt;}
.x11_c00485{left:465.120000pt;}
.x12_c00485{left:485.693333pt;}
.x9_c00485{left:487.040000pt;}
.x15_c00485{left:558.960000pt;}
.x16_c00485{left:581.480000pt;}
.x1a_c00485{left:590.880000pt;}
.x1b_c00485{left:618.666667pt;}
.xe_c00485{left:640.693333pt;}
.xf_c00485{left:666.213333pt;}
}





/* 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_c00486 {
    display:none;
  }
  .loading-indicator_c00486.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00486 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_c00486 { 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_c00486" -> "#page-container .classname_c00486")
 */
.pf_c00486 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00486 { /* 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_c00486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00486 { /* 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_c00486 { /* 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_c00486 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00486 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00486 {overflow:visible;}
  }
}
.c_c00486 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00486 { /* 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_c00486:after { /* webkit #35443 */
  content: '';
}
.t_c00486:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00486 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 */
}
.__c00486 { /* 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_c00486 { /* info for Javascript */
  display:none;
}
.l_c00486 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00486 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00486 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00486: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_c00486 {
    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_c00486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00486.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_c00486 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00486{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00486;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.311035;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_c00486;src:url('chunks/assets/font_8cc34fbe9728738a7d352545.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.284668;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_c00486;src:url('chunks/assets/font_5b6a9b13f76bea673d2e8eb6.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.284180;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_c00486;src:url('chunks/assets/font_cd54a7a4a036704170901c14.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;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:ff5_c00486;src:url('chunks/assets/font_2963696c76667744786a2f92.woff2')format("woff");}.ff5_c00486{font-family:ff5_c00486;line-height:0.666000;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_c00486{transform:matrix(0.200040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200040,0.000000,0.000000,0.250000,0,0);}
.m6_c00486{transform:matrix(0.228827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228827,0.000000,0.000000,0.250000,0,0);}
.m8_c00486{transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);}
.m13_c00486{transform:matrix(0.231339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231339,0.000000,0.000000,0.250000,0,0);}
.m12_c00486{transform:matrix(0.239989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239989,0.000000,0.000000,0.250000,0,0);}
.m7_c00486{transform:matrix(0.240983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240983,0.000000,0.000000,0.250000,0,0);}
.mc_c00486{transform:matrix(0.242861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242861,0.000000,0.000000,0.250000,0,0);}
.m9_c00486{transform:matrix(0.243504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243504,0.000000,0.000000,0.250000,0,0);}
.m1_c00486{transform:matrix(0.244707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244707,0.000000,0.000000,0.250000,0,0);}
.m5_c00486{transform:matrix(0.245174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245174,0.000000,0.000000,0.250000,0,0);}
.mb_c00486{transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);}
.md_c00486{transform:matrix(0.248098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248098,0.000000,0.000000,0.250000,0,0);}
.mf_c00486{transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);}
.me_c00486{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m10_c00486{transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);}
.m0_c00486{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);}
.m2_c00486{transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);}
.m3_c00486{transform:matrix(0.252948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252948,0.000000,0.000000,0.250000,0,0);}
.ma_c00486{transform:matrix(0.274537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274537,0.000000,0.000000,0.250000,0,0);}
.m11_c00486{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls38_c00486{letter-spacing:-2.478000px;}
.ls48_c00486{letter-spacing:-2.457000px;}
.ls30_c00486{letter-spacing:-2.415000px;}
.ls5d_c00486{letter-spacing:-2.394000px;}
.ls44_c00486{letter-spacing:-2.310000px;}
.ls68_c00486{letter-spacing:-1.835400px;}
.ls35_c00486{letter-spacing:-1.787100px;}
.ls5f_c00486{letter-spacing:-1.669800px;}
.ls41_c00486{letter-spacing:-1.449000px;}
.ls60_c00486{letter-spacing:-1.421400px;}
.ls3d_c00486{letter-spacing:-1.235100px;}
.ls66_c00486{letter-spacing:-1.152300px;}
.ls45_c00486{letter-spacing:-1.048800px;}
.ls37_c00486{letter-spacing:-0.952200px;}
.ls4f_c00486{letter-spacing:-0.938400px;}
.ls5a_c00486{letter-spacing:-0.924600px;}
.ls59_c00486{letter-spacing:-0.916560px;}
.ls62_c00486{letter-spacing:-0.862500px;}
.ls50_c00486{letter-spacing:-0.759000px;}
.ls54_c00486{letter-spacing:-0.731400px;}
.ls4a_c00486{letter-spacing:-0.655500px;}
.ls3f_c00486{letter-spacing:-0.648600px;}
.ls70_c00486{letter-spacing:-0.634800px;}
.ls6a_c00486{letter-spacing:-0.614100px;}
.ls58_c00486{letter-spacing:-0.586500px;}
.ls52_c00486{letter-spacing:-0.524400px;}
.ls6f_c00486{letter-spacing:-0.489900px;}
.ls53_c00486{letter-spacing:-0.476100px;}
.ls3e_c00486{letter-spacing:-0.427800px;}
.ls67_c00486{letter-spacing:-0.414000px;}
.ls3a_c00486{letter-spacing:-0.386400px;}
.ls42_c00486{letter-spacing:-0.296700px;}
.ls3b_c00486{letter-spacing:-0.282900px;}
.ls55_c00486{letter-spacing:-0.248400px;}
.ls4c_c00486{letter-spacing:-0.220800px;}
.ls69_c00486{letter-spacing:-0.186300px;}
.ls4d_c00486{letter-spacing:-0.158700px;}
.ls40_c00486{letter-spacing:-0.151800px;}
.ls49_c00486{letter-spacing:-0.131100px;}
.ls4e_c00486{letter-spacing:-0.110400px;}
.ls36_c00486{letter-spacing:-0.103500px;}
.ls3c_c00486{letter-spacing:-0.082800px;}
.ls6c_c00486{letter-spacing:-0.062100px;}
.ls56_c00486{letter-spacing:-0.048300px;}
.ls31_c00486{letter-spacing:-0.041400px;}
.ls6d_c00486{letter-spacing:-0.020700px;}
.ls46_c00486{letter-spacing:-0.013800px;}
.ls32_c00486{letter-spacing:0.000000px;}
.ls12_c00486{letter-spacing:0.006900px;}
.ls8_c00486{letter-spacing:0.013800px;}
.ls1b_c00486{letter-spacing:0.020700px;}
.ls6b_c00486{letter-spacing:0.034500px;}
.ls5b_c00486{letter-spacing:0.041400px;}
.ls2d_c00486{letter-spacing:0.062100px;}
.ls15_c00486{letter-spacing:0.089700px;}
.lsd_c00486{letter-spacing:0.096600px;}
.ls1_c00486{letter-spacing:0.103500px;}
.ls24_c00486{letter-spacing:0.138000px;}
.ls6e_c00486{letter-spacing:0.144900px;}
.ls51_c00486{letter-spacing:0.165600px;}
.ls61_c00486{letter-spacing:0.172500px;}
.ls11_c00486{letter-spacing:0.193200px;}
.ls25_c00486{letter-spacing:0.200100px;}
.ls28_c00486{letter-spacing:0.207000px;}
.ls9_c00486{letter-spacing:0.213900px;}
.ls16_c00486{letter-spacing:0.220800px;}
.ls4_c00486{letter-spacing:0.227700px;}
.ls21_c00486{letter-spacing:0.241500px;}
.lsc_c00486{letter-spacing:0.262200px;}
.ls1e_c00486{letter-spacing:0.269100px;}
.ls7_c00486{letter-spacing:0.296700px;}
.ls29_c00486{letter-spacing:0.303600px;}
.ls6_c00486{letter-spacing:0.317400px;}
.ls10_c00486{letter-spacing:0.324300px;}
.ls2a_c00486{letter-spacing:0.331200px;}
.lsb_c00486{letter-spacing:0.345000px;}
.ls5_c00486{letter-spacing:0.351900px;}
.ls5e_c00486{letter-spacing:0.365700px;}
.ls65_c00486{letter-spacing:0.372600px;}
.ls33_c00486{letter-spacing:0.386400px;}
.ls1d_c00486{letter-spacing:0.407100px;}
.ls1f_c00486{letter-spacing:0.414000px;}
.ls26_c00486{letter-spacing:0.420900px;}
.ls22_c00486{letter-spacing:0.434700px;}
.ls14_c00486{letter-spacing:0.455400px;}
.ls27_c00486{letter-spacing:0.483000px;}
.ls2_c00486{letter-spacing:0.503700px;}
.lsf_c00486{letter-spacing:0.510600px;}
.ls47_c00486{letter-spacing:0.531300px;}
.ls18_c00486{letter-spacing:0.545100px;}
.ls19_c00486{letter-spacing:0.572700px;}
.ls3_c00486{letter-spacing:0.586500px;}
.lse_c00486{letter-spacing:0.593400px;}
.ls0_c00486{letter-spacing:0.600300px;}
.ls1a_c00486{letter-spacing:0.648600px;}
.ls2c_c00486{letter-spacing:0.669300px;}
.ls43_c00486{letter-spacing:0.717600px;}
.ls5c_c00486{letter-spacing:0.772800px;}
.ls17_c00486{letter-spacing:0.786600px;}
.ls2f_c00486{letter-spacing:0.793500px;}
.ls57_c00486{letter-spacing:0.800400px;}
.ls39_c00486{letter-spacing:0.821100px;}
.ls20_c00486{letter-spacing:0.897000px;}
.ls2b_c00486{letter-spacing:0.924600px;}
.ls23_c00486{letter-spacing:0.931500px;}
.ls64_c00486{letter-spacing:0.952200px;}
.ls1c_c00486{letter-spacing:1.000500px;}
.ls4b_c00486{letter-spacing:1.173000px;}
.lsa_c00486{letter-spacing:1.242000px;}
.ls2e_c00486{letter-spacing:1.536480px;}
.ls63_c00486{letter-spacing:2.525400px;}
.ls13_c00486{letter-spacing:3.042900px;}
.ls34_c00486{letter-spacing:3.450000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{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__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00486{word-spacing:0.000000px;}
.ws0_c00486{word-spacing:0.345000px;}
.ws6_c00486{word-spacing:3.727800px;}
.ws8_c00486{word-spacing:3.739800px;}
.ws5_c00486{word-spacing:5.188800px;}
.ws3_c00486{word-spacing:7.383000px;}
.ws9_c00486{word-spacing:9.466800px;}
.ws4_c00486{word-spacing:13.110000px;}
.ws7_c00486{word-spacing:20.989800px;}
.ws2_c00486{word-spacing:22.942500px;}
.ws1_c00486{word-spacing:23.887800px;}
._0_c00486{margin-left:-18.291900px;}
._a_c00486{margin-left:-5.975400px;}
._19_c00486{margin-left:-2.684100px;}
._b_c00486{margin-left:-1.097100px;}
._1_c00486{width:2.070000px;}
._13_c00486{width:3.194700px;}
._4_c00486{width:4.312500px;}
._e_c00486{width:5.671800px;}
._d_c00486{width:6.699900px;}
._2_c00486{width:7.728000px;}
._c_c00486{width:8.997600px;}
._3_c00486{width:10.108500px;}
._14_c00486{width:11.178000px;}
._12_c00486{width:12.792600px;}
._17_c00486{width:14.517000px;}
._15_c00486{width:15.718200px;}
._18_c00486{width:17.891700px;}
._16_c00486{width:19.292400px;}
._6_c00486{width:20.665500px;}
._5_c00486{width:22.618200px;}
._7_c00486{width:24.087900px;}
._8_c00486{width:26.385600px;}
._9_c00486{width:28.421100px;}
._10_c00486{width:48.852000px;}
._f_c00486{width:50.328600px;}
._11_c00486{width:51.570600px;}
.fc0_c00486{color:transparent;}
.fs7_c00486{font-size:10.080000px;}
.fs6_c00486{font-size:34.800600px;}
.fs0_c00486{font-size:58.200000px;}
.fs3_c00486{font-size:66.000000px;}
.fs5_c00486{font-size:68.400000px;}
.fs1_c00486{font-size:69.000000px;}
.fs4_c00486{font-size:70.200000px;}
.fs2_c00486{font-size:70.800000px;}
.y0_c00486{bottom:0.000000px;}
.y21_c00486{bottom:67.695015px;}
.y20_c00486{bottom:190.815015px;}
.y1f_c00486{bottom:218.535015px;}
.y1e_c00486{bottom:221.040015px;}
.y1d_c00486{bottom:221.048265px;}
.y1c_c00486{bottom:283.700265px;}
.y1a_c00486{bottom:313.212015px;}
.y1b_c00486{bottom:313.215015px;}
.y18_c00486{bottom:374.411265px;}
.y19_c00486{bottom:374.415015px;}
.y17_c00486{bottom:405.375015px;}
.y16_c00486{bottom:468.000015px;}
.y15_c00486{bottom:497.895015px;}
.y14_c00486{bottom:559.813515px;}
.y13_c00486{bottom:590.415015px;}
.y12_c00486{bottom:651.973515px;}
.y10_c00486{bottom:682.563765px;}
.y11_c00486{bottom:682.575015px;}
.yf_c00486{bottom:744.474015px;}
.ye_c00486{bottom:775.455015px;}
.yd_c00486{bottom:775.455765px;}
.yb_c00486{bottom:806.036265px;}
.yc_c00486{bottom:806.040015px;}
.y9_c00486{bottom:836.991015px;}
.ya_c00486{bottom:837.000015px;}
.y8_c00486{bottom:898.556265px;}
.y6_c00486{bottom:929.170515px;}
.y7_c00486{bottom:929.175015px;}
.y5_c00486{bottom:990.356265px;}
.y4_c00486{bottom:1020.975015px;}
.y3_c00486{bottom:1082.520015px;}
.y2_c00486{bottom:1113.480015px;}
.y1_c00486{bottom:1189.095015px;}
.hb_c00486{height:6.713280px;}
.ha_c00486{height:36.295938px;}
.h2_c00486{height:58.654687px;}
.h5_c00486{height:64.775391px;}
.h7_c00486{height:67.686035px;}
.h3_c00486{height:67.719727px;}
.h6_c00486{height:68.897461px;}
.h4_c00486{height:69.486328px;}
.h9_c00486{height:71.339063px;}
.h8_c00486{height:71.345063px;}
.h1_c00486{height:1263.000000px;}
.h0_c00486{height:1263.240015px;}
.w1_c00486{width:892.500000px;}
.w0_c00486{width:892.800015px;}
.x0_c00486{left:0.000000px;}
.x20_c00486{left:124.701765px;}
.x1_c00486{left:125.910015px;}
.x7_c00486{left:127.185015px;}
.x19_c00486{left:153.120015px;}
.x22_c00486{left:193.110015px;}
.x1e_c00486{left:202.965015px;}
.x21_c00486{left:204.045015px;}
.xd_c00486{left:209.985015px;}
.xb_c00486{left:220.590015px;}
.x13_c00486{left:222.030015px;}
.x1f_c00486{left:223.320015px;}
.x8_c00486{left:225.630015px;}
.x15_c00486{left:228.960015px;}
.x1a_c00486{left:233.205015px;}
.xe_c00486{left:235.230015px;}
.xc_c00486{left:238.440015px;}
.x14_c00486{left:242.040015px;}
.xa_c00486{left:247.440015px;}
.x9_c00486{left:248.520015px;}
.x16_c00486{left:251.400015px;}
.x1b_c00486{left:259.680015px;}
.x2_c00486{left:262.380015px;}
.x3_c00486{left:288.840015px;}
.x1c_c00486{left:303.495015px;}
.x1d_c00486{left:339.060015px;}
.x11_c00486{left:388.995015px;}
.x26_c00486{left:424.020015px;}
.x4_c00486{left:433.995015px;}
.x12_c00486{left:442.200015px;}
.xf_c00486{left:448.695015px;}
.x5_c00486{left:478.650015px;}
.x10_c00486{left:485.925015px;}
.x24_c00486{left:495.195015px;}
.x23_c00486{left:505.440015px;}
.x25_c00486{left:512.760015px;}
.x17_c00486{left:578.325015px;}
.x18_c00486{left:616.695015px;}
.x6_c00486{left:739.680015px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls38_c00486{letter-spacing:-2.202667pt;}
.ls48_c00486{letter-spacing:-2.184000pt;}
.ls30_c00486{letter-spacing:-2.146667pt;}
.ls5d_c00486{letter-spacing:-2.128000pt;}
.ls44_c00486{letter-spacing:-2.053333pt;}
.ls68_c00486{letter-spacing:-1.631467pt;}
.ls35_c00486{letter-spacing:-1.588533pt;}
.ls5f_c00486{letter-spacing:-1.484267pt;}
.ls41_c00486{letter-spacing:-1.288000pt;}
.ls60_c00486{letter-spacing:-1.263467pt;}
.ls3d_c00486{letter-spacing:-1.097867pt;}
.ls66_c00486{letter-spacing:-1.024267pt;}
.ls45_c00486{letter-spacing:-0.932267pt;}
.ls37_c00486{letter-spacing:-0.846400pt;}
.ls4f_c00486{letter-spacing:-0.834133pt;}
.ls5a_c00486{letter-spacing:-0.821867pt;}
.ls59_c00486{letter-spacing:-0.814720pt;}
.ls62_c00486{letter-spacing:-0.766667pt;}
.ls50_c00486{letter-spacing:-0.674667pt;}
.ls54_c00486{letter-spacing:-0.650133pt;}
.ls4a_c00486{letter-spacing:-0.582667pt;}
.ls3f_c00486{letter-spacing:-0.576533pt;}
.ls70_c00486{letter-spacing:-0.564267pt;}
.ls6a_c00486{letter-spacing:-0.545867pt;}
.ls58_c00486{letter-spacing:-0.521333pt;}
.ls52_c00486{letter-spacing:-0.466133pt;}
.ls6f_c00486{letter-spacing:-0.435467pt;}
.ls53_c00486{letter-spacing:-0.423200pt;}
.ls3e_c00486{letter-spacing:-0.380267pt;}
.ls67_c00486{letter-spacing:-0.368000pt;}
.ls3a_c00486{letter-spacing:-0.343467pt;}
.ls42_c00486{letter-spacing:-0.263733pt;}
.ls3b_c00486{letter-spacing:-0.251467pt;}
.ls55_c00486{letter-spacing:-0.220800pt;}
.ls4c_c00486{letter-spacing:-0.196267pt;}
.ls69_c00486{letter-spacing:-0.165600pt;}
.ls4d_c00486{letter-spacing:-0.141067pt;}
.ls40_c00486{letter-spacing:-0.134933pt;}
.ls49_c00486{letter-spacing:-0.116533pt;}
.ls4e_c00486{letter-spacing:-0.098133pt;}
.ls36_c00486{letter-spacing:-0.092000pt;}
.ls3c_c00486{letter-spacing:-0.073600pt;}
.ls6c_c00486{letter-spacing:-0.055200pt;}
.ls56_c00486{letter-spacing:-0.042933pt;}
.ls31_c00486{letter-spacing:-0.036800pt;}
.ls6d_c00486{letter-spacing:-0.018400pt;}
.ls46_c00486{letter-spacing:-0.012267pt;}
.ls32_c00486{letter-spacing:0.000000pt;}
.ls12_c00486{letter-spacing:0.006133pt;}
.ls8_c00486{letter-spacing:0.012267pt;}
.ls1b_c00486{letter-spacing:0.018400pt;}
.ls6b_c00486{letter-spacing:0.030667pt;}
.ls5b_c00486{letter-spacing:0.036800pt;}
.ls2d_c00486{letter-spacing:0.055200pt;}
.ls15_c00486{letter-spacing:0.079733pt;}
.lsd_c00486{letter-spacing:0.085867pt;}
.ls1_c00486{letter-spacing:0.092000pt;}
.ls24_c00486{letter-spacing:0.122667pt;}
.ls6e_c00486{letter-spacing:0.128800pt;}
.ls51_c00486{letter-spacing:0.147200pt;}
.ls61_c00486{letter-spacing:0.153333pt;}
.ls11_c00486{letter-spacing:0.171733pt;}
.ls25_c00486{letter-spacing:0.177867pt;}
.ls28_c00486{letter-spacing:0.184000pt;}
.ls9_c00486{letter-spacing:0.190133pt;}
.ls16_c00486{letter-spacing:0.196267pt;}
.ls4_c00486{letter-spacing:0.202400pt;}
.ls21_c00486{letter-spacing:0.214667pt;}
.lsc_c00486{letter-spacing:0.233067pt;}
.ls1e_c00486{letter-spacing:0.239200pt;}
.ls7_c00486{letter-spacing:0.263733pt;}
.ls29_c00486{letter-spacing:0.269867pt;}
.ls6_c00486{letter-spacing:0.282133pt;}
.ls10_c00486{letter-spacing:0.288267pt;}
.ls2a_c00486{letter-spacing:0.294400pt;}
.lsb_c00486{letter-spacing:0.306667pt;}
.ls5_c00486{letter-spacing:0.312800pt;}
.ls5e_c00486{letter-spacing:0.325067pt;}
.ls65_c00486{letter-spacing:0.331200pt;}
.ls33_c00486{letter-spacing:0.343467pt;}
.ls1d_c00486{letter-spacing:0.361867pt;}
.ls1f_c00486{letter-spacing:0.368000pt;}
.ls26_c00486{letter-spacing:0.374133pt;}
.ls22_c00486{letter-spacing:0.386400pt;}
.ls14_c00486{letter-spacing:0.404800pt;}
.ls27_c00486{letter-spacing:0.429333pt;}
.ls2_c00486{letter-spacing:0.447733pt;}
.lsf_c00486{letter-spacing:0.453867pt;}
.ls47_c00486{letter-spacing:0.472267pt;}
.ls18_c00486{letter-spacing:0.484533pt;}
.ls19_c00486{letter-spacing:0.509067pt;}
.ls3_c00486{letter-spacing:0.521333pt;}
.lse_c00486{letter-spacing:0.527467pt;}
.ls0_c00486{letter-spacing:0.533600pt;}
.ls1a_c00486{letter-spacing:0.576533pt;}
.ls2c_c00486{letter-spacing:0.594933pt;}
.ls43_c00486{letter-spacing:0.637867pt;}
.ls5c_c00486{letter-spacing:0.686933pt;}
.ls17_c00486{letter-spacing:0.699200pt;}
.ls2f_c00486{letter-spacing:0.705333pt;}
.ls57_c00486{letter-spacing:0.711467pt;}
.ls39_c00486{letter-spacing:0.729867pt;}
.ls20_c00486{letter-spacing:0.797333pt;}
.ls2b_c00486{letter-spacing:0.821867pt;}
.ls23_c00486{letter-spacing:0.828000pt;}
.ls64_c00486{letter-spacing:0.846400pt;}
.ls1c_c00486{letter-spacing:0.889333pt;}
.ls4b_c00486{letter-spacing:1.042667pt;}
.lsa_c00486{letter-spacing:1.104000pt;}
.ls2e_c00486{letter-spacing:1.365760pt;}
.ls63_c00486{letter-spacing:2.244800pt;}
.ls13_c00486{letter-spacing:2.704800pt;}
.ls34_c00486{letter-spacing:3.066667pt;}
.wsa_c00486{word-spacing:0.000000pt;}
.ws0_c00486{word-spacing:0.306667pt;}
.ws6_c00486{word-spacing:3.313600pt;}
.ws8_c00486{word-spacing:3.324267pt;}
.ws5_c00486{word-spacing:4.612267pt;}
.ws3_c00486{word-spacing:6.562667pt;}
.ws9_c00486{word-spacing:8.414933pt;}
.ws4_c00486{word-spacing:11.653333pt;}
.ws7_c00486{word-spacing:18.657600pt;}
.ws2_c00486{word-spacing:20.393333pt;}
.ws1_c00486{word-spacing:21.233600pt;}
._0_c00486{margin-left:-16.259467pt;}
._a_c00486{margin-left:-5.311467pt;}
._19_c00486{margin-left:-2.385867pt;}
._b_c00486{margin-left:-0.975200pt;}
._1_c00486{width:1.840000pt;}
._13_c00486{width:2.839733pt;}
._4_c00486{width:3.833333pt;}
._e_c00486{width:5.041600pt;}
._d_c00486{width:5.955467pt;}
._2_c00486{width:6.869333pt;}
._c_c00486{width:7.997867pt;}
._3_c00486{width:8.985333pt;}
._14_c00486{width:9.936000pt;}
._12_c00486{width:11.371200pt;}
._17_c00486{width:12.904000pt;}
._15_c00486{width:13.971733pt;}
._18_c00486{width:15.903733pt;}
._16_c00486{width:17.148800pt;}
._6_c00486{width:18.369333pt;}
._5_c00486{width:20.105067pt;}
._7_c00486{width:21.411467pt;}
._8_c00486{width:23.453867pt;}
._9_c00486{width:25.263200pt;}
._10_c00486{width:43.424000pt;}
._f_c00486{width:44.736533pt;}
._11_c00486{width:45.840533pt;}
.fs7_c00486{font-size:8.960000pt;}
.fs6_c00486{font-size:30.933867pt;}
.fs0_c00486{font-size:51.733333pt;}
.fs3_c00486{font-size:58.666667pt;}
.fs5_c00486{font-size:60.800000pt;}
.fs1_c00486{font-size:61.333333pt;}
.fs4_c00486{font-size:62.400000pt;}
.fs2_c00486{font-size:62.933333pt;}
.y0_c00486{bottom:0.000000pt;}
.y21_c00486{bottom:60.173347pt;}
.y20_c00486{bottom:169.613347pt;}
.y1f_c00486{bottom:194.253347pt;}
.y1e_c00486{bottom:196.480013pt;}
.y1d_c00486{bottom:196.487347pt;}
.y1c_c00486{bottom:252.178013pt;}
.y1a_c00486{bottom:278.410680pt;}
.y1b_c00486{bottom:278.413347pt;}
.y18_c00486{bottom:332.810013pt;}
.y19_c00486{bottom:332.813347pt;}
.y17_c00486{bottom:360.333347pt;}
.y16_c00486{bottom:416.000013pt;}
.y15_c00486{bottom:442.573347pt;}
.y14_c00486{bottom:497.612013pt;}
.y13_c00486{bottom:524.813347pt;}
.y12_c00486{bottom:579.532013pt;}
.y10_c00486{bottom:606.723347pt;}
.y11_c00486{bottom:606.733347pt;}
.yf_c00486{bottom:661.754680pt;}
.ye_c00486{bottom:689.293347pt;}
.yd_c00486{bottom:689.294013pt;}
.yb_c00486{bottom:716.476680pt;}
.yc_c00486{bottom:716.480013pt;}
.y9_c00486{bottom:743.992013pt;}
.ya_c00486{bottom:744.000013pt;}
.y8_c00486{bottom:798.716680pt;}
.y6_c00486{bottom:825.929347pt;}
.y7_c00486{bottom:825.933347pt;}
.y5_c00486{bottom:880.316680pt;}
.y4_c00486{bottom:907.533347pt;}
.y3_c00486{bottom:962.240013pt;}
.y2_c00486{bottom:989.760013pt;}
.y1_c00486{bottom:1056.973347pt;}
.hb_c00486{height:5.967360pt;}
.ha_c00486{height:32.263056pt;}
.h2_c00486{height:52.137500pt;}
.h5_c00486{height:57.578125pt;}
.h7_c00486{height:60.165365pt;}
.h3_c00486{height:60.195312pt;}
.h6_c00486{height:61.242187pt;}
.h4_c00486{height:61.765625pt;}
.h9_c00486{height:63.412500pt;}
.h8_c00486{height:63.417833pt;}
.h1_c00486{height:1122.666667pt;}
.h0_c00486{height:1122.880013pt;}
.w1_c00486{width:793.333333pt;}
.w0_c00486{width:793.600013pt;}
.x0_c00486{left:0.000000pt;}
.x20_c00486{left:110.846013pt;}
.x1_c00486{left:111.920013pt;}
.x7_c00486{left:113.053347pt;}
.x19_c00486{left:136.106680pt;}
.x22_c00486{left:171.653347pt;}
.x1e_c00486{left:180.413347pt;}
.x21_c00486{left:181.373347pt;}
.xd_c00486{left:186.653347pt;}
.xb_c00486{left:196.080013pt;}
.x13_c00486{left:197.360013pt;}
.x1f_c00486{left:198.506680pt;}
.x8_c00486{left:200.560013pt;}
.x15_c00486{left:203.520013pt;}
.x1a_c00486{left:207.293347pt;}
.xe_c00486{left:209.093347pt;}
.xc_c00486{left:211.946680pt;}
.x14_c00486{left:215.146680pt;}
.xa_c00486{left:219.946680pt;}
.x9_c00486{left:220.906680pt;}
.x16_c00486{left:223.466680pt;}
.x1b_c00486{left:230.826680pt;}
.x2_c00486{left:233.226680pt;}
.x3_c00486{left:256.746680pt;}
.x1c_c00486{left:269.773347pt;}
.x1d_c00486{left:301.386680pt;}
.x11_c00486{left:345.773347pt;}
.x26_c00486{left:376.906680pt;}
.x4_c00486{left:385.773347pt;}
.x12_c00486{left:393.066680pt;}
.xf_c00486{left:398.840013pt;}
.x5_c00486{left:425.466680pt;}
.x10_c00486{left:431.933347pt;}
.x24_c00486{left:440.173347pt;}
.x23_c00486{left:449.280013pt;}
.x25_c00486{left:455.786680pt;}
.x17_c00486{left:514.066680pt;}
.x18_c00486{left:548.173347pt;}
.x6_c00486{left:657.493347pt;}
}





/* 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_c00487 {
    display:none;
  }
  .loading-indicator_c00487.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00487 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_c00487 { 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_c00487" -> "#page-container .classname_c00487")
 */
.pf_c00487 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00487 { /* 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_c00487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00487 { /* 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_c00487 { /* 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_c00487 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00487 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00487 {overflow:visible;}
  }
}
.c_c00487 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00487 { /* 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_c00487:after { /* webkit #35443 */
  content: '';
}
.t_c00487:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00487 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 */
}
.__c00487 { /* 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_c00487 { /* info for Javascript */
  display:none;
}
.l_c00487 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00487 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00487 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00487: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_c00487 {
    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_c00487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00487.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_c00487 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00487{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00487;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.311035;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_c00487;src:url('chunks/assets/font_684f5aa9cbad07a4752060d3.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.284668;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_c00487;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;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:ff4_c00487;src:url('chunks/assets/font_fe5c405660acefdef9cdd38f.woff2')format("woff");}.ff4_c00487{font-family:ff4_c00487;line-height:1.284180;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;}
.m9_c00487{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.mb_c00487{transform:matrix(0.240905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240905,0.000000,0.000000,0.250000,0,0);}
.ma_c00487{transform:matrix(0.241759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241759,0.000000,0.000000,0.250000,0,0);}
.mc_c00487{transform:matrix(0.243147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243147,0.000000,0.000000,0.250000,0,0);}
.m8_c00487{transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);}
.m1_c00487{transform:matrix(0.244895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244895,0.000000,0.000000,0.250000,0,0);}
.m3_c00487{transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);}
.m2_c00487{transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);}
.me_c00487{transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);}
.mf_c00487{transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);}
.m0_c00487{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);}
.m6_c00487{transform:matrix(0.262138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262138,0.000000,0.000000,0.250000,0,0);}
.m4_c00487{transform:matrix(0.264827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264827,0.000000,0.000000,0.250000,0,0);}
.md_c00487{transform:matrix(0.269391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269391,0.000000,0.000000,0.250000,0,0);}
.m5_c00487{transform:matrix(0.273472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273472,0.000000,0.000000,0.250000,0,0);}
.m7_c00487{transform:matrix(0.279419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279419,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls73_c00487{letter-spacing:-2.478000px;}
.ls2f_c00487{letter-spacing:-2.457000px;}
.ls7e_c00487{letter-spacing:-2.442960px;}
.ls62_c00487{letter-spacing:-2.436000px;}
.ls5e_c00487{letter-spacing:-2.415000px;}
.ls8a_c00487{letter-spacing:-2.338560px;}
.ls5a_c00487{letter-spacing:-2.204280px;}
.ls61_c00487{letter-spacing:-2.101920px;}
.ls65_c00487{letter-spacing:-1.867320px;}
.ls3c_c00487{letter-spacing:-1.860300px;}
.ls4e_c00487{letter-spacing:-1.677780px;}
.ls60_c00487{letter-spacing:-1.649700px;}
.ls75_c00487{letter-spacing:-1.572480px;}
.ls63_c00487{letter-spacing:-1.510320px;}
.ls38_c00487{letter-spacing:-1.460160px;}
.ls79_c00487{letter-spacing:-1.432080px;}
.ls8c_c00487{letter-spacing:-1.287600px;}
.ls40_c00487{letter-spacing:-1.249560px;}
.ls51_c00487{letter-spacing:-1.193400px;}
.ls76_c00487{letter-spacing:-1.165320px;}
.ls81_c00487{letter-spacing:-1.120560px;}
.ls86_c00487{letter-spacing:-1.102140px;}
.ls70_c00487{letter-spacing:-1.095120px;}
.ls5b_c00487{letter-spacing:-1.081080px;}
.ls39_c00487{letter-spacing:-1.074060px;}
.ls8e_c00487{letter-spacing:-1.071840px;}
.ls80_c00487{letter-spacing:-1.057920px;}
.ls52_c00487{letter-spacing:-1.053000px;}
.ls59_c00487{letter-spacing:-1.045980px;}
.ls3b_c00487{letter-spacing:-1.030080px;}
.ls8b_c00487{letter-spacing:-0.989820px;}
.ls3e_c00487{letter-spacing:-0.933660px;}
.ls5f_c00487{letter-spacing:-0.912600px;}
.ls41_c00487{letter-spacing:-0.877500px;}
.ls4f_c00487{letter-spacing:-0.863460px;}
.ls84_c00487{letter-spacing:-0.835380px;}
.ls64_c00487{letter-spacing:-0.821280px;}
.ls57_c00487{letter-spacing:-0.793440px;}
.ls66_c00487{letter-spacing:-0.765180px;}
.ls6f_c00487{letter-spacing:-0.751140px;}
.ls33_c00487{letter-spacing:-0.737100px;}
.ls90_c00487{letter-spacing:-0.723060px;}
.ls44_c00487{letter-spacing:-0.702000px;}
.ls6a_c00487{letter-spacing:-0.694980px;}
.ls7c_c00487{letter-spacing:-0.687960px;}
.ls8f_c00487{letter-spacing:-0.680940px;}
.ls78_c00487{letter-spacing:-0.659880px;}
.ls68_c00487{letter-spacing:-0.652860px;}
.ls87_c00487{letter-spacing:-0.631800px;}
.ls7b_c00487{letter-spacing:-0.619440px;}
.ls82_c00487{letter-spacing:-0.610740px;}
.ls45_c00487{letter-spacing:-0.582660px;}
.ls7f_c00487{letter-spacing:-0.563760px;}
.ls37_c00487{letter-spacing:-0.526500px;}
.ls56_c00487{letter-spacing:-0.494160px;}
.ls7d_c00487{letter-spacing:-0.477360px;}
.ls36_c00487{letter-spacing:-0.421200px;}
.ls30_c00487{letter-spacing:-0.414180px;}
.ls4b_c00487{letter-spacing:-0.407160px;}
.ls58_c00487{letter-spacing:-0.382800px;}
.ls3d_c00487{letter-spacing:-0.372060px;}
.ls6b_c00487{letter-spacing:-0.329940px;}
.ls6c_c00487{letter-spacing:-0.322920px;}
.ls6e_c00487{letter-spacing:-0.294840px;}
.ls5d_c00487{letter-spacing:-0.287820px;}
.ls49_c00487{letter-spacing:-0.259740px;}
.ls71_c00487{letter-spacing:-0.252720px;}
.ls34_c00487{letter-spacing:-0.238680px;}
.ls3a_c00487{letter-spacing:-0.217620px;}
.ls7a_c00487{letter-spacing:-0.208800px;}
.ls88_c00487{letter-spacing:-0.203580px;}
.ls85_c00487{letter-spacing:-0.161460px;}
.ls54_c00487{letter-spacing:-0.154440px;}
.ls55_c00487{letter-spacing:-0.140400px;}
.ls5c_c00487{letter-spacing:-0.133380px;}
.ls50_c00487{letter-spacing:-0.126360px;}
.ls46_c00487{letter-spacing:-0.119340px;}
.ls89_c00487{letter-spacing:-0.112320px;}
.ls47_c00487{letter-spacing:-0.084240px;}
.ls6d_c00487{letter-spacing:-0.049140px;}
.ls72_c00487{letter-spacing:-0.042120px;}
.ls31_c00487{letter-spacing:-0.035100px;}
.ls77_c00487{letter-spacing:-0.007020px;}
.ls92_c00487{letter-spacing:-0.005820px;}
.ls32_c00487{letter-spacing:0.000000px;}
.ls16_c00487{letter-spacing:0.007020px;}
.ls5_c00487{letter-spacing:0.014040px;}
.ls11_c00487{letter-spacing:0.021060px;}
.ls48_c00487{letter-spacing:0.035100px;}
.ls1a_c00487{letter-spacing:0.083520px;}
.ls2_c00487{letter-spacing:0.098280px;}
.ls53_c00487{letter-spacing:0.105300px;}
.ls8_c00487{letter-spacing:0.111360px;}
.ls26_c00487{letter-spacing:0.112320px;}
.ls8d_c00487{letter-spacing:0.118320px;}
.ls4a_c00487{letter-spacing:0.133380px;}
.ls3_c00487{letter-spacing:0.140400px;}
.lse_c00487{letter-spacing:0.147420px;}
.ls7_c00487{letter-spacing:0.168480px;}
.ls6_c00487{letter-spacing:0.175500px;}
.ls13_c00487{letter-spacing:0.182520px;}
.ls1b_c00487{letter-spacing:0.187920px;}
.lsb_c00487{letter-spacing:0.196560px;}
.ls3f_c00487{letter-spacing:0.203580px;}
.ls35_c00487{letter-spacing:0.210600px;}
.ls83_c00487{letter-spacing:0.217620px;}
.ls28_c00487{letter-spacing:0.222720px;}
.lsf_c00487{letter-spacing:0.224640px;}
.ls0_c00487{letter-spacing:0.231660px;}
.ls29_c00487{letter-spacing:0.236640px;}
.ls2e_c00487{letter-spacing:0.252720px;}
.lsa_c00487{letter-spacing:0.266760px;}
.ls74_c00487{letter-spacing:0.273780px;}
.ls42_c00487{letter-spacing:0.280800px;}
.ls21_c00487{letter-spacing:0.287820px;}
.lsd_c00487{letter-spacing:0.294840px;}
.ls15_c00487{letter-spacing:0.301860px;}
.lsc_c00487{letter-spacing:0.308880px;}
.ls12_c00487{letter-spacing:0.322920px;}
.ls4_c00487{letter-spacing:0.329940px;}
.ls14_c00487{letter-spacing:0.336960px;}
.ls17_c00487{letter-spacing:0.351000px;}
.ls91_c00487{letter-spacing:0.358020px;}
.ls1_c00487{letter-spacing:0.365040px;}
.ls1d_c00487{letter-spacing:0.540540px;}
.ls2a_c00487{letter-spacing:0.561600px;}
.ls22_c00487{letter-spacing:0.577680px;}
.ls23_c00487{letter-spacing:0.598560px;}
.ls9_c00487{letter-spacing:0.631800px;}
.ls18_c00487{letter-spacing:0.633360px;}
.ls10_c00487{letter-spacing:0.694980px;}
.ls67_c00487{letter-spacing:0.723060px;}
.ls27_c00487{letter-spacing:0.730080px;}
.ls1f_c00487{letter-spacing:0.751140px;}
.ls2c_c00487{letter-spacing:0.772560px;}
.ls19_c00487{letter-spacing:0.863040px;}
.ls4c_c00487{letter-spacing:0.911760px;}
.ls20_c00487{letter-spacing:1.060020px;}
.ls69_c00487{letter-spacing:1.109160px;}
.ls2b_c00487{letter-spacing:1.474200px;}
.ls2d_c00487{letter-spacing:1.670340px;}
.ls1e_c00487{letter-spacing:2.302560px;}
.ls24_c00487{letter-spacing:2.665680px;}
.ls1c_c00487{letter-spacing:2.832720px;}
.ls25_c00487{letter-spacing:2.885220px;}
.ls4d_c00487{letter-spacing:3.480000px;}
.ls43_c00487{letter-spacing:3.510000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{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__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00487{word-spacing:-0.891540px;}
.wsa_c00487{word-spacing:0.000000px;}
.ws6_c00487{word-spacing:3.901200px;}
.ws8_c00487{word-spacing:4.062660px;}
.ws3_c00487{word-spacing:5.917860px;}
.ws1_c00487{word-spacing:7.782660px;}
.ws0_c00487{word-spacing:10.662660px;}
.ws9_c00487{word-spacing:12.130140px;}
.ws5_c00487{word-spacing:16.707600px;}
.ws2_c00487{word-spacing:26.657400px;}
.ws4_c00487{word-spacing:33.317400px;}
._18_c00487{margin-left:-21.850200px;}
._16_c00487{margin-left:-18.957960px;}
._19_c00487{margin-left:-11.644740px;}
._11_c00487{margin-left:-10.322220px;}
._7_c00487{margin-left:-5.686200px;}
._17_c00487{margin-left:-4.133820px;}
._c_c00487{margin-left:-1.825200px;}
._5_c00487{width:1.137240px;}
._12_c00487{width:2.428920px;}
._8_c00487{width:3.931200px;}
._b_c00487{width:4.934400px;}
._6_c00487{width:6.247800px;}
._9_c00487{width:7.606860px;}
._0_c00487{width:9.255180px;}
._3_c00487{width:10.824840px;}
._a_c00487{width:12.720240px;}
._4_c00487{width:13.781880px;}
._2_c00487{width:15.683400px;}
._1a_c00487{width:17.146980px;}
._15_c00487{width:18.336240px;}
._1_c00487{width:20.556000px;}
._f_c00487{width:23.699520px;}
._e_c00487{width:24.819000px;}
._10_c00487{width:28.838160px;}
._d_c00487{width:29.989440px;}
._13_c00487{width:31.195260px;}
._14_c00487{width:33.119880px;}
.fc0_c00487{color:transparent;}
.fs0_c00487{font-size:58.200000px;}
.fs2_c00487{font-size:67.200000px;}
.fs5_c00487{font-size:69.000000px;}
.fs3_c00487{font-size:69.600000px;}
.fs1_c00487{font-size:70.200000px;}
.fs6_c00487{font-size:70.800000px;}
.fs4_c00487{font-size:73.800000px;}
.y0_c00487{bottom:0.000000px;}
.y1e_c00487{bottom:66.255006px;}
.y1d_c00487{bottom:126.015006px;}
.y1c_c00487{bottom:157.680006px;}
.y1b_c00487{bottom:218.880006px;}
.y1a_c00487{bottom:249.499956px;}
.y19_c00487{bottom:341.648706px;}
.y18_c00487{bottom:373.699356px;}
.y17_c00487{bottom:404.640006px;}
.y16_c00487{bottom:465.855006px;}
.y15_c00487{bottom:527.055006px;}
.y14_c00487{bottom:558.015006px;}
.y13_c00487{bottom:558.016806px;}
.y12_c00487{bottom:588.975006px;}
.y11_c00487{bottom:651.255006px;}
.yf_c00487{bottom:682.209606px;}
.y10_c00487{bottom:682.215006px;}
.ye_c00487{bottom:743.780406px;}
.yd_c00487{bottom:774.735006px;}
.yc_c00487{bottom:805.321056px;}
.ya_c00487{bottom:867.250356px;}
.yb_c00487{bottom:867.255006px;}
.y9_c00487{bottom:897.840006px;}
.y8_c00487{bottom:897.847806px;}
.y7_c00487{bottom:928.455006px;}
.y6_c00487{bottom:990.000006px;}
.y5_c00487{bottom:1020.615006px;}
.y4_c00487{bottom:1020.621156px;}
.y3_c00487{bottom:1082.520006px;}
.y2_c00487{bottom:1113.480006px;}
.y1_c00487{bottom:1190.160006px;}
.he_c00487{height:57.120117px;}
.h2_c00487{height:58.654687px;}
.ha_c00487{height:67.719727px;}
.h6_c00487{height:68.274609px;}
.h8_c00487{height:68.875861px;}
.h3_c00487{height:68.897461px;}
.h5_c00487{height:68.916061px;}
.h9_c00487{height:68.919061px;}
.hc_c00487{height:68.922661px;}
.hb_c00487{height:69.451758px;}
.h4_c00487{height:70.087500px;}
.h7_c00487{height:72.426464px;}
.hd_c00487{height:72.430664px;}
.h1_c00487{height:1263.000000px;}
.h0_c00487{height:1263.240006px;}
.w1_c00487{width:892.500000px;}
.w0_c00487{width:892.799998px;}
.x0_c00487{left:0.000000px;}
.x28_c00487{left:123.191249px;}
.x1a_c00487{left:124.694998px;}
.x9_c00487{left:125.759999px;}
.x6_c00487{left:127.116149px;}
.x1_c00487{left:128.789998px;}
.x29_c00487{left:137.114998px;}
.x16_c00487{left:144.899998px;}
.x2a_c00487{left:158.804998px;}
.x7_c00487{left:207.284999px;}
.x2_c00487{left:209.084998px;}
.x27_c00487{left:212.234998px;}
.xe_c00487{left:213.299999px;}
.xa_c00487{left:217.709999px;}
.x8_c00487{left:229.424998px;}
.x3_c00487{left:231.584998px;}
.xf_c00487{left:238.529998px;}
.xb_c00487{left:243.644999px;}
.x17_c00487{left:245.564999px;}
.x1d_c00487{left:260.249999px;}
.x18_c00487{left:272.624999px;}
.x20_c00487{left:319.889999px;}
.x21_c00487{left:339.074998px;}
.x1e_c00487{left:362.924999px;}
.x4_c00487{left:378.569998px;}
.x1f_c00487{left:386.024999px;}
.x5_c00487{left:398.774999px;}
.x2d_c00487{left:427.259999px;}
.x22_c00487{left:428.579998px;}
.x23_c00487{left:449.114999px;}
.x14_c00487{left:455.249998px;}
.x10_c00487{left:488.009999px;}
.x11_c00487{left:511.664999px;}
.x1b_c00487{left:537.899999px;}
.xc_c00487{left:546.734998px;}
.x15_c00487{left:556.094998px;}
.x1c_c00487{left:573.239998px;}
.xd_c00487{left:584.384999px;}
.x24_c00487{left:607.379999px;}
.x12_c00487{left:629.459998px;}
.x13_c00487{left:654.794999px;}
.x25_c00487{left:656.444999px;}
.x26_c00487{left:675.824998px;}
.x2b_c00487{left:678.029999px;}
.x2c_c00487{left:697.469998px;}
.x19_c00487{left:745.079998px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls73_c00487{letter-spacing:-2.202667pt;}
.ls2f_c00487{letter-spacing:-2.184000pt;}
.ls7e_c00487{letter-spacing:-2.171520pt;}
.ls62_c00487{letter-spacing:-2.165333pt;}
.ls5e_c00487{letter-spacing:-2.146667pt;}
.ls8a_c00487{letter-spacing:-2.078720pt;}
.ls5a_c00487{letter-spacing:-1.959360pt;}
.ls61_c00487{letter-spacing:-1.868373pt;}
.ls65_c00487{letter-spacing:-1.659840pt;}
.ls3c_c00487{letter-spacing:-1.653600pt;}
.ls4e_c00487{letter-spacing:-1.491360pt;}
.ls60_c00487{letter-spacing:-1.466400pt;}
.ls75_c00487{letter-spacing:-1.397760pt;}
.ls63_c00487{letter-spacing:-1.342507pt;}
.ls38_c00487{letter-spacing:-1.297920pt;}
.ls79_c00487{letter-spacing:-1.272960pt;}
.ls8c_c00487{letter-spacing:-1.144533pt;}
.ls40_c00487{letter-spacing:-1.110720pt;}
.ls51_c00487{letter-spacing:-1.060800pt;}
.ls76_c00487{letter-spacing:-1.035840pt;}
.ls81_c00487{letter-spacing:-0.996053pt;}
.ls86_c00487{letter-spacing:-0.979680pt;}
.ls70_c00487{letter-spacing:-0.973440pt;}
.ls5b_c00487{letter-spacing:-0.960960pt;}
.ls39_c00487{letter-spacing:-0.954720pt;}
.ls8e_c00487{letter-spacing:-0.952747pt;}
.ls80_c00487{letter-spacing:-0.940373pt;}
.ls52_c00487{letter-spacing:-0.936000pt;}
.ls59_c00487{letter-spacing:-0.929760pt;}
.ls3b_c00487{letter-spacing:-0.915627pt;}
.ls8b_c00487{letter-spacing:-0.879840pt;}
.ls3e_c00487{letter-spacing:-0.829920pt;}
.ls5f_c00487{letter-spacing:-0.811200pt;}
.ls41_c00487{letter-spacing:-0.780000pt;}
.ls4f_c00487{letter-spacing:-0.767520pt;}
.ls84_c00487{letter-spacing:-0.742560pt;}
.ls64_c00487{letter-spacing:-0.730027pt;}
.ls57_c00487{letter-spacing:-0.705280pt;}
.ls66_c00487{letter-spacing:-0.680160pt;}
.ls6f_c00487{letter-spacing:-0.667680pt;}
.ls33_c00487{letter-spacing:-0.655200pt;}
.ls90_c00487{letter-spacing:-0.642720pt;}
.ls44_c00487{letter-spacing:-0.624000pt;}
.ls6a_c00487{letter-spacing:-0.617760pt;}
.ls7c_c00487{letter-spacing:-0.611520pt;}
.ls8f_c00487{letter-spacing:-0.605280pt;}
.ls78_c00487{letter-spacing:-0.586560pt;}
.ls68_c00487{letter-spacing:-0.580320pt;}
.ls87_c00487{letter-spacing:-0.561600pt;}
.ls7b_c00487{letter-spacing:-0.550613pt;}
.ls82_c00487{letter-spacing:-0.542880pt;}
.ls45_c00487{letter-spacing:-0.517920pt;}
.ls7f_c00487{letter-spacing:-0.501120pt;}
.ls37_c00487{letter-spacing:-0.468000pt;}
.ls56_c00487{letter-spacing:-0.439253pt;}
.ls7d_c00487{letter-spacing:-0.424320pt;}
.ls36_c00487{letter-spacing:-0.374400pt;}
.ls30_c00487{letter-spacing:-0.368160pt;}
.ls4b_c00487{letter-spacing:-0.361920pt;}
.ls58_c00487{letter-spacing:-0.340267pt;}
.ls3d_c00487{letter-spacing:-0.330720pt;}
.ls6b_c00487{letter-spacing:-0.293280pt;}
.ls6c_c00487{letter-spacing:-0.287040pt;}
.ls6e_c00487{letter-spacing:-0.262080pt;}
.ls5d_c00487{letter-spacing:-0.255840pt;}
.ls49_c00487{letter-spacing:-0.230880pt;}
.ls71_c00487{letter-spacing:-0.224640pt;}
.ls34_c00487{letter-spacing:-0.212160pt;}
.ls3a_c00487{letter-spacing:-0.193440pt;}
.ls7a_c00487{letter-spacing:-0.185600pt;}
.ls88_c00487{letter-spacing:-0.180960pt;}
.ls85_c00487{letter-spacing:-0.143520pt;}
.ls54_c00487{letter-spacing:-0.137280pt;}
.ls55_c00487{letter-spacing:-0.124800pt;}
.ls5c_c00487{letter-spacing:-0.118560pt;}
.ls50_c00487{letter-spacing:-0.112320pt;}
.ls46_c00487{letter-spacing:-0.106080pt;}
.ls89_c00487{letter-spacing:-0.099840pt;}
.ls47_c00487{letter-spacing:-0.074880pt;}
.ls6d_c00487{letter-spacing:-0.043680pt;}
.ls72_c00487{letter-spacing:-0.037440pt;}
.ls31_c00487{letter-spacing:-0.031200pt;}
.ls77_c00487{letter-spacing:-0.006240pt;}
.ls92_c00487{letter-spacing:-0.005173pt;}
.ls32_c00487{letter-spacing:0.000000pt;}
.ls16_c00487{letter-spacing:0.006240pt;}
.ls5_c00487{letter-spacing:0.012480pt;}
.ls11_c00487{letter-spacing:0.018720pt;}
.ls48_c00487{letter-spacing:0.031200pt;}
.ls1a_c00487{letter-spacing:0.074240pt;}
.ls2_c00487{letter-spacing:0.087360pt;}
.ls53_c00487{letter-spacing:0.093600pt;}
.ls8_c00487{letter-spacing:0.098987pt;}
.ls26_c00487{letter-spacing:0.099840pt;}
.ls8d_c00487{letter-spacing:0.105173pt;}
.ls4a_c00487{letter-spacing:0.118560pt;}
.ls3_c00487{letter-spacing:0.124800pt;}
.lse_c00487{letter-spacing:0.131040pt;}
.ls7_c00487{letter-spacing:0.149760pt;}
.ls6_c00487{letter-spacing:0.156000pt;}
.ls13_c00487{letter-spacing:0.162240pt;}
.ls1b_c00487{letter-spacing:0.167040pt;}
.lsb_c00487{letter-spacing:0.174720pt;}
.ls3f_c00487{letter-spacing:0.180960pt;}
.ls35_c00487{letter-spacing:0.187200pt;}
.ls83_c00487{letter-spacing:0.193440pt;}
.ls28_c00487{letter-spacing:0.197973pt;}
.lsf_c00487{letter-spacing:0.199680pt;}
.ls0_c00487{letter-spacing:0.205920pt;}
.ls29_c00487{letter-spacing:0.210347pt;}
.ls2e_c00487{letter-spacing:0.224640pt;}
.lsa_c00487{letter-spacing:0.237120pt;}
.ls74_c00487{letter-spacing:0.243360pt;}
.ls42_c00487{letter-spacing:0.249600pt;}
.ls21_c00487{letter-spacing:0.255840pt;}
.lsd_c00487{letter-spacing:0.262080pt;}
.ls15_c00487{letter-spacing:0.268320pt;}
.lsc_c00487{letter-spacing:0.274560pt;}
.ls12_c00487{letter-spacing:0.287040pt;}
.ls4_c00487{letter-spacing:0.293280pt;}
.ls14_c00487{letter-spacing:0.299520pt;}
.ls17_c00487{letter-spacing:0.312000pt;}
.ls91_c00487{letter-spacing:0.318240pt;}
.ls1_c00487{letter-spacing:0.324480pt;}
.ls1d_c00487{letter-spacing:0.480480pt;}
.ls2a_c00487{letter-spacing:0.499200pt;}
.ls22_c00487{letter-spacing:0.513493pt;}
.ls23_c00487{letter-spacing:0.532053pt;}
.ls9_c00487{letter-spacing:0.561600pt;}
.ls18_c00487{letter-spacing:0.562987pt;}
.ls10_c00487{letter-spacing:0.617760pt;}
.ls67_c00487{letter-spacing:0.642720pt;}
.ls27_c00487{letter-spacing:0.648960pt;}
.ls1f_c00487{letter-spacing:0.667680pt;}
.ls2c_c00487{letter-spacing:0.686720pt;}
.ls19_c00487{letter-spacing:0.767147pt;}
.ls4c_c00487{letter-spacing:0.810453pt;}
.ls20_c00487{letter-spacing:0.942240pt;}
.ls69_c00487{letter-spacing:0.985920pt;}
.ls2b_c00487{letter-spacing:1.310400pt;}
.ls2d_c00487{letter-spacing:1.484747pt;}
.ls1e_c00487{letter-spacing:2.046720pt;}
.ls24_c00487{letter-spacing:2.369493pt;}
.ls1c_c00487{letter-spacing:2.517973pt;}
.ls25_c00487{letter-spacing:2.564640pt;}
.ls4d_c00487{letter-spacing:3.093333pt;}
.ls43_c00487{letter-spacing:3.120000pt;}
.ws7_c00487{word-spacing:-0.792480pt;}
.wsa_c00487{word-spacing:0.000000pt;}
.ws6_c00487{word-spacing:3.467733pt;}
.ws8_c00487{word-spacing:3.611253pt;}
.ws3_c00487{word-spacing:5.260320pt;}
.ws1_c00487{word-spacing:6.917920pt;}
.ws0_c00487{word-spacing:9.477920pt;}
.ws9_c00487{word-spacing:10.782347pt;}
.ws5_c00487{word-spacing:14.851200pt;}
.ws2_c00487{word-spacing:23.695467pt;}
.ws4_c00487{word-spacing:29.615467pt;}
._18_c00487{margin-left:-19.422400pt;}
._16_c00487{margin-left:-16.851520pt;}
._19_c00487{margin-left:-10.350880pt;}
._11_c00487{margin-left:-9.175307pt;}
._7_c00487{margin-left:-5.054400pt;}
._17_c00487{margin-left:-3.674507pt;}
._c_c00487{margin-left:-1.622400pt;}
._5_c00487{width:1.010880pt;}
._12_c00487{width:2.159040pt;}
._8_c00487{width:3.494400pt;}
._b_c00487{width:4.386133pt;}
._6_c00487{width:5.553600pt;}
._9_c00487{width:6.761653pt;}
._0_c00487{width:8.226827pt;}
._3_c00487{width:9.622080pt;}
._a_c00487{width:11.306880pt;}
._4_c00487{width:12.250560pt;}
._2_c00487{width:13.940800pt;}
._1a_c00487{width:15.241760pt;}
._15_c00487{width:16.298880pt;}
._1_c00487{width:18.272000pt;}
._f_c00487{width:21.066240pt;}
._e_c00487{width:22.061333pt;}
._10_c00487{width:25.633920pt;}
._d_c00487{width:26.657280pt;}
._13_c00487{width:27.729120pt;}
._14_c00487{width:29.439893pt;}
.fs0_c00487{font-size:51.733333pt;}
.fs2_c00487{font-size:59.733333pt;}
.fs5_c00487{font-size:61.333333pt;}
.fs3_c00487{font-size:61.866667pt;}
.fs1_c00487{font-size:62.400000pt;}
.fs6_c00487{font-size:62.933333pt;}
.fs4_c00487{font-size:65.600000pt;}
.y0_c00487{bottom:0.000000pt;}
.y1e_c00487{bottom:58.893339pt;}
.y1d_c00487{bottom:112.013339pt;}
.y1c_c00487{bottom:140.160005pt;}
.y1b_c00487{bottom:194.560005pt;}
.y1a_c00487{bottom:221.777739pt;}
.y19_c00487{bottom:303.687739pt;}
.y18_c00487{bottom:332.177205pt;}
.y17_c00487{bottom:359.680005pt;}
.y16_c00487{bottom:414.093339pt;}
.y15_c00487{bottom:468.493339pt;}
.y14_c00487{bottom:496.013339pt;}
.y13_c00487{bottom:496.014939pt;}
.y12_c00487{bottom:523.533339pt;}
.y11_c00487{bottom:578.893339pt;}
.yf_c00487{bottom:606.408539pt;}
.y10_c00487{bottom:606.413339pt;}
.ye_c00487{bottom:661.138139pt;}
.yd_c00487{bottom:688.653339pt;}
.yc_c00487{bottom:715.840939pt;}
.ya_c00487{bottom:770.889205pt;}
.yb_c00487{bottom:770.893339pt;}
.y9_c00487{bottom:798.080005pt;}
.y8_c00487{bottom:798.086939pt;}
.y7_c00487{bottom:825.293339pt;}
.y6_c00487{bottom:880.000005pt;}
.y5_c00487{bottom:907.213339pt;}
.y4_c00487{bottom:907.218805pt;}
.y3_c00487{bottom:962.240005pt;}
.y2_c00487{bottom:989.760005pt;}
.y1_c00487{bottom:1057.920005pt;}
.he_c00487{height:50.773437pt;}
.h2_c00487{height:52.137500pt;}
.ha_c00487{height:60.195312pt;}
.h6_c00487{height:60.688542pt;}
.h8_c00487{height:61.222987pt;}
.h3_c00487{height:61.242187pt;}
.h5_c00487{height:61.258721pt;}
.h9_c00487{height:61.261387pt;}
.hc_c00487{height:61.264588pt;}
.hb_c00487{height:61.734896pt;}
.h4_c00487{height:62.300000pt;}
.h7_c00487{height:64.379079pt;}
.hd_c00487{height:64.382813pt;}
.h1_c00487{height:1122.666667pt;}
.h0_c00487{height:1122.880005pt;}
.w1_c00487{width:793.333333pt;}
.w0_c00487{width:793.599999pt;}
.x0_c00487{left:0.000000pt;}
.x28_c00487{left:109.503332pt;}
.x1a_c00487{left:110.839999pt;}
.x9_c00487{left:111.786665pt;}
.x6_c00487{left:112.992132pt;}
.x1_c00487{left:114.479999pt;}
.x29_c00487{left:121.879999pt;}
.x16_c00487{left:128.799999pt;}
.x2a_c00487{left:141.159999pt;}
.x7_c00487{left:184.253332pt;}
.x2_c00487{left:185.853332pt;}
.x27_c00487{left:188.653332pt;}
.xe_c00487{left:189.599999pt;}
.xa_c00487{left:193.519999pt;}
.x8_c00487{left:203.933332pt;}
.x3_c00487{left:205.853332pt;}
.xf_c00487{left:212.026665pt;}
.xb_c00487{left:216.573332pt;}
.x17_c00487{left:218.279999pt;}
.x1d_c00487{left:231.333332pt;}
.x18_c00487{left:242.333332pt;}
.x20_c00487{left:284.346665pt;}
.x21_c00487{left:301.399999pt;}
.x1e_c00487{left:322.599999pt;}
.x4_c00487{left:336.506665pt;}
.x1f_c00487{left:343.133332pt;}
.x5_c00487{left:354.466665pt;}
.x2d_c00487{left:379.786665pt;}
.x22_c00487{left:380.959999pt;}
.x23_c00487{left:399.213332pt;}
.x14_c00487{left:404.666665pt;}
.x10_c00487{left:433.786665pt;}
.x11_c00487{left:454.813332pt;}
.x1b_c00487{left:478.133332pt;}
.xc_c00487{left:485.986665pt;}
.x15_c00487{left:494.306665pt;}
.x1c_c00487{left:509.546665pt;}
.xd_c00487{left:519.453332pt;}
.x24_c00487{left:539.893332pt;}
.x12_c00487{left:559.519999pt;}
.x13_c00487{left:582.039999pt;}
.x25_c00487{left:583.506665pt;}
.x26_c00487{left:600.733332pt;}
.x2b_c00487{left:602.693332pt;}
.x2c_c00487{left:619.973332pt;}
.x19_c00487{left:662.293332pt;}
}





/* 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_c00488 {
    display:none;
  }
  .loading-indicator_c00488.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00488 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_c00488 { 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_c00488" -> "#page-container .classname_c00488")
 */
.pf_c00488 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00488 { /* 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_c00488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00488 { /* 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_c00488 { /* 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_c00488 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00488 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00488 {overflow:visible;}
  }
}
.c_c00488 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00488 { /* 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_c00488:after { /* webkit #35443 */
  content: '';
}
.t_c00488:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00488 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 */
}
.__c00488 { /* 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_c00488 { /* info for Javascript */
  display:none;
}
.l_c00488 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00488 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00488 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00488: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_c00488 {
    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_c00488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00488.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_c00488 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00488{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00488;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.311035;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_c00488;src:url('chunks/assets/font_1024811cfd916c3a3a2352b7.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.284668;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_c00488;src:url('chunks/assets/font_06d5b7a688520496828d9040.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.284180;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_c00488;src:url('chunks/assets/font_4d2959c0cab505755390faea.woff2')format("woff");}.ff4_c00488{font-family:ff4_c00488;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;}
.m5_c00488{transform:matrix(0.196599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196599,0.000000,0.000000,0.250000,0,0);}
.m4_c00488{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.ma_c00488{transform:matrix(0.203881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203881,0.000000,0.000000,0.250000,0,0);}
.m9_c00488{transform:matrix(0.226098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226098,0.000000,0.000000,0.250000,0,0);}
.m8_c00488{transform:matrix(0.227709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227709,0.000000,0.000000,0.250000,0,0);}
.m1_c00488{transform:matrix(0.230478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230478,0.000000,0.000000,0.250000,0,0);}
.m7_c00488{transform:matrix(0.241920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241920,0.000000,0.000000,0.250000,0,0);}
.me_c00488{transform:matrix(0.243341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243341,0.000000,0.000000,0.250000,0,0);}
.m3_c00488{transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);}
.m6_c00488{transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);}
.md_c00488{transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);}
.mf_c00488{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m2_c00488{transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);}
.mb_c00488{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m0_c00488{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);}
.mc_c00488{transform:matrix(0.272180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272180,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls56_c00488{letter-spacing:-2.898000px;}
.ls54_c00488{letter-spacing:-2.436000px;}
.ls3c_c00488{letter-spacing:-2.415000px;}
.ls7b_c00488{letter-spacing:-2.290800px;}
.ls5d_c00488{letter-spacing:-2.125200px;}
.ls77_c00488{letter-spacing:-2.097600px;}
.ls50_c00488{letter-spacing:-1.938900px;}
.ls35_c00488{letter-spacing:-1.869900px;}
.ls5a_c00488{letter-spacing:-1.552500px;}
.ls6d_c00488{letter-spacing:-1.317900px;}
.ls65_c00488{letter-spacing:-1.283400px;}
.ls7c_c00488{letter-spacing:-1.276500px;}
.ls38_c00488{letter-spacing:-1.110900px;}
.ls39_c00488{letter-spacing:-1.083300px;}
.ls7a_c00488{letter-spacing:-1.069500px;}
.ls72_c00488{letter-spacing:-1.055700px;}
.ls4f_c00488{letter-spacing:-1.048800px;}
.ls60_c00488{letter-spacing:-1.014300px;}
.ls49_c00488{letter-spacing:-1.000500px;}
.ls75_c00488{letter-spacing:-0.966000px;}
.ls6e_c00488{letter-spacing:-0.793500px;}
.ls70_c00488{letter-spacing:-0.696900px;}
.ls73_c00488{letter-spacing:-0.676200px;}
.ls68_c00488{letter-spacing:-0.655500px;}
.ls61_c00488{letter-spacing:-0.648600px;}
.ls4e_c00488{letter-spacing:-0.621000px;}
.ls62_c00488{letter-spacing:-0.607200px;}
.ls3e_c00488{letter-spacing:-0.552000px;}
.ls40_c00488{letter-spacing:-0.489900px;}
.ls58_c00488{letter-spacing:-0.469200px;}
.ls67_c00488{letter-spacing:-0.462300px;}
.ls55_c00488{letter-spacing:-0.455400px;}
.ls41_c00488{letter-spacing:-0.441600px;}
.ls48_c00488{letter-spacing:-0.427800px;}
.ls3d_c00488{letter-spacing:-0.420900px;}
.ls5f_c00488{letter-spacing:-0.414000px;}
.ls59_c00488{letter-spacing:-0.407100px;}
.ls44_c00488{letter-spacing:-0.386400px;}
.ls5b_c00488{letter-spacing:-0.372600px;}
.ls63_c00488{letter-spacing:-0.351900px;}
.ls64_c00488{letter-spacing:-0.331200px;}
.ls6b_c00488{letter-spacing:-0.310500px;}
.ls46_c00488{letter-spacing:-0.296700px;}
.ls37_c00488{letter-spacing:-0.289800px;}
.ls52_c00488{letter-spacing:-0.282900px;}
.ls4d_c00488{letter-spacing:-0.262200px;}
.ls76_c00488{letter-spacing:-0.255300px;}
.ls5c_c00488{letter-spacing:-0.248400px;}
.ls6f_c00488{letter-spacing:-0.220800px;}
.ls42_c00488{letter-spacing:-0.207000px;}
.ls3f_c00488{letter-spacing:-0.200100px;}
.ls66_c00488{letter-spacing:-0.193200px;}
.ls78_c00488{letter-spacing:-0.172500px;}
.ls45_c00488{letter-spacing:-0.165600px;}
.ls47_c00488{letter-spacing:-0.158700px;}
.ls79_c00488{letter-spacing:-0.144900px;}
.ls51_c00488{letter-spacing:-0.138000px;}
.ls36_c00488{letter-spacing:-0.103500px;}
.ls4b_c00488{letter-spacing:-0.089700px;}
.ls3b_c00488{letter-spacing:-0.082800px;}
.ls5e_c00488{letter-spacing:-0.075900px;}
.ls6c_c00488{letter-spacing:-0.069000px;}
.ls4a_c00488{letter-spacing:-0.048300px;}
.ls57_c00488{letter-spacing:-0.027600px;}
.ls69_c00488{letter-spacing:-0.020700px;}
.ls3a_c00488{letter-spacing:0.000000px;}
.ls18_c00488{letter-spacing:0.006900px;}
.ls43_c00488{letter-spacing:0.013800px;}
.ls2e_c00488{letter-spacing:0.020700px;}
.ls23_c00488{letter-spacing:0.027600px;}
.ls6a_c00488{letter-spacing:0.034500px;}
.ls15_c00488{letter-spacing:0.041400px;}
.ls2d_c00488{letter-spacing:0.048300px;}
.ls10_c00488{letter-spacing:0.075900px;}
.ls1e_c00488{letter-spacing:0.082800px;}
.ls26_c00488{letter-spacing:0.089700px;}
.ls21_c00488{letter-spacing:0.096600px;}
.ls1c_c00488{letter-spacing:0.103500px;}
.ls24_c00488{letter-spacing:0.117300px;}
.ls53_c00488{letter-spacing:0.144900px;}
.ls25_c00488{letter-spacing:0.158700px;}
.ls19_c00488{letter-spacing:0.172500px;}
.ls1_c00488{letter-spacing:0.186300px;}
.ls29_c00488{letter-spacing:0.213900px;}
.ls7d_c00488{letter-spacing:0.255300px;}
.ls4_c00488{letter-spacing:0.269100px;}
.ls28_c00488{letter-spacing:0.276000px;}
.ls1d_c00488{letter-spacing:0.282900px;}
.ls5_c00488{letter-spacing:0.310500px;}
.ls3_c00488{letter-spacing:0.317400px;}
.ls27_c00488{letter-spacing:0.324300px;}
.lsc_c00488{letter-spacing:0.331200px;}
.ls4c_c00488{letter-spacing:0.351900px;}
.ls9_c00488{letter-spacing:0.365700px;}
.ls2c_c00488{letter-spacing:0.393300px;}
.ls1a_c00488{letter-spacing:0.407100px;}
.ls7_c00488{letter-spacing:0.420900px;}
.ls2b_c00488{letter-spacing:0.427800px;}
.ls7e_c00488{letter-spacing:0.437760px;}
.ls13_c00488{letter-spacing:0.469200px;}
.ls12_c00488{letter-spacing:0.476100px;}
.ls2_c00488{letter-spacing:0.496800px;}
.lsb_c00488{letter-spacing:0.517500px;}
.ls30_c00488{letter-spacing:0.531300px;}
.ls17_c00488{letter-spacing:0.545100px;}
.ls11_c00488{letter-spacing:0.552000px;}
.ls33_c00488{letter-spacing:0.565800px;}
.ls16_c00488{letter-spacing:0.572700px;}
.lsd_c00488{letter-spacing:0.641700px;}
.ls71_c00488{letter-spacing:0.662400px;}
.lsf_c00488{letter-spacing:0.683100px;}
.ls8_c00488{letter-spacing:0.696900px;}
.ls6_c00488{letter-spacing:0.738300px;}
.ls1f_c00488{letter-spacing:0.759000px;}
.ls0_c00488{letter-spacing:0.779700px;}
.ls31_c00488{letter-spacing:0.966000px;}
.ls14_c00488{letter-spacing:1.055700px;}
.ls32_c00488{letter-spacing:1.276500px;}
.ls2a_c00488{letter-spacing:1.386900px;}
.ls34_c00488{letter-spacing:1.408440px;}
.ls2f_c00488{letter-spacing:1.449000px;}
.ls1b_c00488{letter-spacing:1.538700px;}
.lse_c00488{letter-spacing:1.794000px;}
.ls22_c00488{letter-spacing:2.049300px;}
.ls20_c00488{letter-spacing:2.228700px;}
.lsa_c00488{letter-spacing:3.091200px;}
.ls74_c00488{letter-spacing:3.450000px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{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__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00488{word-spacing:0.000000px;}
.ws8_c00488{word-spacing:0.703800px;}
.ws3_c00488{word-spacing:2.760000px;}
.ws6_c00488{word-spacing:3.174000px;}
.ws2_c00488{word-spacing:4.774800px;}
.ws1_c00488{word-spacing:6.154800px;}
.ws9_c00488{word-spacing:7.217400px;}
.ws5_c00488{word-spacing:10.777800px;}
.ws4_c00488{word-spacing:12.682200px;}
.ws0_c00488{word-spacing:13.213500px;}
.ws7_c00488{word-spacing:19.126800px;}
._11_c00488{margin-left:-17.595000px;}
._17_c00488{margin-left:-6.865500px;}
._e_c00488{margin-left:-4.153800px;}
._a_c00488{margin-left:-2.994600px;}
._f_c00488{margin-left:-1.138500px;}
._d_c00488{width:1.324800px;}
._7_c00488{width:2.532300px;}
._9_c00488{width:4.229700px;}
._8_c00488{width:6.141000px;}
._6_c00488{width:7.783200px;}
._13_c00488{width:9.059700px;}
._5_c00488{width:10.198200px;}
._b_c00488{width:11.371200px;}
._0_c00488{width:12.992700px;}
._2_c00488{width:14.276100px;}
._3_c00488{width:15.787200px;}
._c_c00488{width:17.312100px;}
._4_c00488{width:18.961200px;}
._16_c00488{width:20.286000px;}
._10_c00488{width:22.121400px;}
._14_c00488{width:23.736000px;}
._1_c00488{width:25.550700px;}
._12_c00488{width:27.675900px;}
._15_c00488{width:30.780900px;}
.fc0_c00488{color:transparent;}
.fs4_c00488{font-size:57.600000px;}
.fs0_c00488{font-size:58.200000px;}
.fs1_c00488{font-size:69.000000px;}
.fs2_c00488{font-size:69.600000px;}
.fs3_c00488{font-size:82.800000px;}
.y0_c00488{bottom:0.000000px;}
.y23_c00488{bottom:68.400015px;}
.y22_c00488{bottom:130.695015px;}
.y21_c00488{bottom:130.700265px;}
.y1f_c00488{bottom:160.558515px;}
.y20_c00488{bottom:160.560015px;}
.y1d_c00488{bottom:190.807515px;}
.y1e_c00488{bottom:190.815015px;}
.y1c_c00488{bottom:253.080015px;}
.y1b_c00488{bottom:283.338765px;}
.y1a_c00488{bottom:344.904015px;}
.y19_c00488{bottom:375.126015px;}
.y18_c00488{bottom:437.415765px;}
.y17_c00488{bottom:467.655015px;}
.y16_c00488{bottom:467.658765px;}
.y15_c00488{bottom:498.605265px;}
.y14_c00488{bottom:560.895015px;}
.y12_c00488{bottom:591.127515px;}
.y13_c00488{bottom:591.135015px;}
.y11_c00488{bottom:653.048265px;}
.y10_c00488{bottom:683.649765px;}
.yf_c00488{bottom:745.215015px;}
.yd_c00488{bottom:775.806015px;}
.ye_c00488{bottom:775.815015px;}
.yc_c00488{bottom:806.407515px;}
.ya_c00488{bottom:868.330515px;}
.yb_c00488{bottom:868.335015px;}
.y9_c00488{bottom:898.932015px;}
.y8_c00488{bottom:960.480015px;}
.y7_c00488{bottom:960.480765px;}
.y6_c00488{bottom:990.720015px;}
.y5_c00488{bottom:1052.298015px;}
.y3_c00488{bottom:1082.514015px;}
.y4_c00488{bottom:1082.520015px;}
.y2_c00488{bottom:1113.840015px;}
.y1_c00488{bottom:1189.455015px;}
.h8_c00488{height:56.531250px;}
.h2_c00488{height:58.654687px;}
.h4_c00488{height:67.686035px;}
.h3_c00488{height:67.719727px;}
.h7_c00488{height:67.746727px;}
.h5_c00488{height:72.590625px;}
.h6_c00488{height:86.357813px;}
.h1_c00488{height:1263.000000px;}
.h0_c00488{height:1263.240015px;}
.w1_c00488{width:892.500000px;}
.w0_c00488{width:892.800015px;}
.x0_c00488{left:0.000000px;}
.x1d_c00488{left:120.895515px;}
.x13_c00488{left:123.416265px;}
.x1_c00488{left:124.470015px;}
.x4_c00488{left:126.120015px;}
.xf_c00488{left:142.245015px;}
.x16_c00488{left:143.850015px;}
.x10_c00488{left:179.460015px;}
.x11_c00488{left:200.310015px;}
.x1e_c00488{left:203.940015px;}
.x1f_c00488{left:223.845015px;}
.x9_c00488{left:233.520015px;}
.xa_c00488{left:247.965015px;}
.x5_c00488{left:263.700015px;}
.x6_c00488{left:302.160015px;}
.x7_c00488{left:345.045015px;}
.x8_c00488{left:362.775015px;}
.x20_c00488{left:421.860015px;}
.xb_c00488{left:440.205015px;}
.xc_c00488{left:456.885015px;}
.x14_c00488{left:470.070015px;}
.x15_c00488{left:492.165015px;}
.x2_c00488{left:506.295015px;}
.xd_c00488{left:519.435015px;}
.x3_c00488{left:538.050015px;}
.x19_c00488{left:539.205015px;}
.xe_c00488{left:546.270015px;}
.x1a_c00488{left:557.550015px;}
.x17_c00488{left:583.380015px;}
.x18_c00488{left:603.675015px;}
.x1b_c00488{left:613.275015px;}
.x1c_c00488{left:634.290015px;}
.x12_c00488{left:734.625015px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls56_c00488{letter-spacing:-2.576000pt;}
.ls54_c00488{letter-spacing:-2.165333pt;}
.ls3c_c00488{letter-spacing:-2.146667pt;}
.ls7b_c00488{letter-spacing:-2.036267pt;}
.ls5d_c00488{letter-spacing:-1.889067pt;}
.ls77_c00488{letter-spacing:-1.864533pt;}
.ls50_c00488{letter-spacing:-1.723467pt;}
.ls35_c00488{letter-spacing:-1.662133pt;}
.ls5a_c00488{letter-spacing:-1.380000pt;}
.ls6d_c00488{letter-spacing:-1.171467pt;}
.ls65_c00488{letter-spacing:-1.140800pt;}
.ls7c_c00488{letter-spacing:-1.134667pt;}
.ls38_c00488{letter-spacing:-0.987467pt;}
.ls39_c00488{letter-spacing:-0.962933pt;}
.ls7a_c00488{letter-spacing:-0.950667pt;}
.ls72_c00488{letter-spacing:-0.938400pt;}
.ls4f_c00488{letter-spacing:-0.932267pt;}
.ls60_c00488{letter-spacing:-0.901600pt;}
.ls49_c00488{letter-spacing:-0.889333pt;}
.ls75_c00488{letter-spacing:-0.858667pt;}
.ls6e_c00488{letter-spacing:-0.705333pt;}
.ls70_c00488{letter-spacing:-0.619467pt;}
.ls73_c00488{letter-spacing:-0.601067pt;}
.ls68_c00488{letter-spacing:-0.582667pt;}
.ls61_c00488{letter-spacing:-0.576533pt;}
.ls4e_c00488{letter-spacing:-0.552000pt;}
.ls62_c00488{letter-spacing:-0.539733pt;}
.ls3e_c00488{letter-spacing:-0.490667pt;}
.ls40_c00488{letter-spacing:-0.435467pt;}
.ls58_c00488{letter-spacing:-0.417067pt;}
.ls67_c00488{letter-spacing:-0.410933pt;}
.ls55_c00488{letter-spacing:-0.404800pt;}
.ls41_c00488{letter-spacing:-0.392533pt;}
.ls48_c00488{letter-spacing:-0.380267pt;}
.ls3d_c00488{letter-spacing:-0.374133pt;}
.ls5f_c00488{letter-spacing:-0.368000pt;}
.ls59_c00488{letter-spacing:-0.361867pt;}
.ls44_c00488{letter-spacing:-0.343467pt;}
.ls5b_c00488{letter-spacing:-0.331200pt;}
.ls63_c00488{letter-spacing:-0.312800pt;}
.ls64_c00488{letter-spacing:-0.294400pt;}
.ls6b_c00488{letter-spacing:-0.276000pt;}
.ls46_c00488{letter-spacing:-0.263733pt;}
.ls37_c00488{letter-spacing:-0.257600pt;}
.ls52_c00488{letter-spacing:-0.251467pt;}
.ls4d_c00488{letter-spacing:-0.233067pt;}
.ls76_c00488{letter-spacing:-0.226933pt;}
.ls5c_c00488{letter-spacing:-0.220800pt;}
.ls6f_c00488{letter-spacing:-0.196267pt;}
.ls42_c00488{letter-spacing:-0.184000pt;}
.ls3f_c00488{letter-spacing:-0.177867pt;}
.ls66_c00488{letter-spacing:-0.171733pt;}
.ls78_c00488{letter-spacing:-0.153333pt;}
.ls45_c00488{letter-spacing:-0.147200pt;}
.ls47_c00488{letter-spacing:-0.141067pt;}
.ls79_c00488{letter-spacing:-0.128800pt;}
.ls51_c00488{letter-spacing:-0.122667pt;}
.ls36_c00488{letter-spacing:-0.092000pt;}
.ls4b_c00488{letter-spacing:-0.079733pt;}
.ls3b_c00488{letter-spacing:-0.073600pt;}
.ls5e_c00488{letter-spacing:-0.067467pt;}
.ls6c_c00488{letter-spacing:-0.061333pt;}
.ls4a_c00488{letter-spacing:-0.042933pt;}
.ls57_c00488{letter-spacing:-0.024533pt;}
.ls69_c00488{letter-spacing:-0.018400pt;}
.ls3a_c00488{letter-spacing:0.000000pt;}
.ls18_c00488{letter-spacing:0.006133pt;}
.ls43_c00488{letter-spacing:0.012267pt;}
.ls2e_c00488{letter-spacing:0.018400pt;}
.ls23_c00488{letter-spacing:0.024533pt;}
.ls6a_c00488{letter-spacing:0.030667pt;}
.ls15_c00488{letter-spacing:0.036800pt;}
.ls2d_c00488{letter-spacing:0.042933pt;}
.ls10_c00488{letter-spacing:0.067467pt;}
.ls1e_c00488{letter-spacing:0.073600pt;}
.ls26_c00488{letter-spacing:0.079733pt;}
.ls21_c00488{letter-spacing:0.085867pt;}
.ls1c_c00488{letter-spacing:0.092000pt;}
.ls24_c00488{letter-spacing:0.104267pt;}
.ls53_c00488{letter-spacing:0.128800pt;}
.ls25_c00488{letter-spacing:0.141067pt;}
.ls19_c00488{letter-spacing:0.153333pt;}
.ls1_c00488{letter-spacing:0.165600pt;}
.ls29_c00488{letter-spacing:0.190133pt;}
.ls7d_c00488{letter-spacing:0.226933pt;}
.ls4_c00488{letter-spacing:0.239200pt;}
.ls28_c00488{letter-spacing:0.245333pt;}
.ls1d_c00488{letter-spacing:0.251467pt;}
.ls5_c00488{letter-spacing:0.276000pt;}
.ls3_c00488{letter-spacing:0.282133pt;}
.ls27_c00488{letter-spacing:0.288267pt;}
.lsc_c00488{letter-spacing:0.294400pt;}
.ls4c_c00488{letter-spacing:0.312800pt;}
.ls9_c00488{letter-spacing:0.325067pt;}
.ls2c_c00488{letter-spacing:0.349600pt;}
.ls1a_c00488{letter-spacing:0.361867pt;}
.ls7_c00488{letter-spacing:0.374133pt;}
.ls2b_c00488{letter-spacing:0.380267pt;}
.ls7e_c00488{letter-spacing:0.389120pt;}
.ls13_c00488{letter-spacing:0.417067pt;}
.ls12_c00488{letter-spacing:0.423200pt;}
.ls2_c00488{letter-spacing:0.441600pt;}
.lsb_c00488{letter-spacing:0.460000pt;}
.ls30_c00488{letter-spacing:0.472267pt;}
.ls17_c00488{letter-spacing:0.484533pt;}
.ls11_c00488{letter-spacing:0.490667pt;}
.ls33_c00488{letter-spacing:0.502933pt;}
.ls16_c00488{letter-spacing:0.509067pt;}
.lsd_c00488{letter-spacing:0.570400pt;}
.ls71_c00488{letter-spacing:0.588800pt;}
.lsf_c00488{letter-spacing:0.607200pt;}
.ls8_c00488{letter-spacing:0.619467pt;}
.ls6_c00488{letter-spacing:0.656267pt;}
.ls1f_c00488{letter-spacing:0.674667pt;}
.ls0_c00488{letter-spacing:0.693067pt;}
.ls31_c00488{letter-spacing:0.858667pt;}
.ls14_c00488{letter-spacing:0.938400pt;}
.ls32_c00488{letter-spacing:1.134667pt;}
.ls2a_c00488{letter-spacing:1.232800pt;}
.ls34_c00488{letter-spacing:1.251947pt;}
.ls2f_c00488{letter-spacing:1.288000pt;}
.ls1b_c00488{letter-spacing:1.367733pt;}
.lse_c00488{letter-spacing:1.594667pt;}
.ls22_c00488{letter-spacing:1.821600pt;}
.ls20_c00488{letter-spacing:1.981067pt;}
.lsa_c00488{letter-spacing:2.747733pt;}
.ls74_c00488{letter-spacing:3.066667pt;}
.wsa_c00488{word-spacing:0.000000pt;}
.ws8_c00488{word-spacing:0.625600pt;}
.ws3_c00488{word-spacing:2.453333pt;}
.ws6_c00488{word-spacing:2.821333pt;}
.ws2_c00488{word-spacing:4.244267pt;}
.ws1_c00488{word-spacing:5.470933pt;}
.ws9_c00488{word-spacing:6.415467pt;}
.ws5_c00488{word-spacing:9.580267pt;}
.ws4_c00488{word-spacing:11.273067pt;}
.ws0_c00488{word-spacing:11.745333pt;}
.ws7_c00488{word-spacing:17.001600pt;}
._11_c00488{margin-left:-15.640000pt;}
._17_c00488{margin-left:-6.102667pt;}
._e_c00488{margin-left:-3.692267pt;}
._a_c00488{margin-left:-2.661867pt;}
._f_c00488{margin-left:-1.012000pt;}
._d_c00488{width:1.177600pt;}
._7_c00488{width:2.250933pt;}
._9_c00488{width:3.759733pt;}
._8_c00488{width:5.458667pt;}
._6_c00488{width:6.918400pt;}
._13_c00488{width:8.053067pt;}
._5_c00488{width:9.065067pt;}
._b_c00488{width:10.107733pt;}
._0_c00488{width:11.549067pt;}
._2_c00488{width:12.689867pt;}
._3_c00488{width:14.033067pt;}
._c_c00488{width:15.388533pt;}
._4_c00488{width:16.854400pt;}
._16_c00488{width:18.032000pt;}
._10_c00488{width:19.663467pt;}
._14_c00488{width:21.098667pt;}
._1_c00488{width:22.711733pt;}
._12_c00488{width:24.600800pt;}
._15_c00488{width:27.360800pt;}
.fs4_c00488{font-size:51.200000pt;}
.fs0_c00488{font-size:51.733333pt;}
.fs1_c00488{font-size:61.333333pt;}
.fs2_c00488{font-size:61.866667pt;}
.fs3_c00488{font-size:73.600000pt;}
.y0_c00488{bottom:0.000000pt;}
.y23_c00488{bottom:60.800013pt;}
.y22_c00488{bottom:116.173347pt;}
.y21_c00488{bottom:116.178013pt;}
.y1f_c00488{bottom:142.718680pt;}
.y20_c00488{bottom:142.720013pt;}
.y1d_c00488{bottom:169.606680pt;}
.y1e_c00488{bottom:169.613347pt;}
.y1c_c00488{bottom:224.960013pt;}
.y1b_c00488{bottom:251.856680pt;}
.y1a_c00488{bottom:306.581347pt;}
.y19_c00488{bottom:333.445347pt;}
.y18_c00488{bottom:388.814013pt;}
.y17_c00488{bottom:415.693347pt;}
.y16_c00488{bottom:415.696680pt;}
.y15_c00488{bottom:443.204680pt;}
.y14_c00488{bottom:498.573347pt;}
.y12_c00488{bottom:525.446680pt;}
.y13_c00488{bottom:525.453347pt;}
.y11_c00488{bottom:580.487347pt;}
.y10_c00488{bottom:607.688680pt;}
.yf_c00488{bottom:662.413347pt;}
.yd_c00488{bottom:689.605347pt;}
.ye_c00488{bottom:689.613347pt;}
.yc_c00488{bottom:716.806680pt;}
.ya_c00488{bottom:771.849347pt;}
.yb_c00488{bottom:771.853347pt;}
.y9_c00488{bottom:799.050680pt;}
.y8_c00488{bottom:853.760013pt;}
.y7_c00488{bottom:853.760680pt;}
.y6_c00488{bottom:880.640013pt;}
.y5_c00488{bottom:935.376013pt;}
.y3_c00488{bottom:962.234680pt;}
.y4_c00488{bottom:962.240013pt;}
.y2_c00488{bottom:990.080013pt;}
.y1_c00488{bottom:1057.293347pt;}
.h8_c00488{height:50.250000pt;}
.h2_c00488{height:52.137500pt;}
.h4_c00488{height:60.165365pt;}
.h3_c00488{height:60.195312pt;}
.h7_c00488{height:60.219313pt;}
.h5_c00488{height:64.525000pt;}
.h6_c00488{height:76.762500pt;}
.h1_c00488{height:1122.666667pt;}
.h0_c00488{height:1122.880013pt;}
.w1_c00488{width:793.333333pt;}
.w0_c00488{width:793.600013pt;}
.x0_c00488{left:0.000000pt;}
.x1d_c00488{left:107.462680pt;}
.x13_c00488{left:109.703347pt;}
.x1_c00488{left:110.640013pt;}
.x4_c00488{left:112.106680pt;}
.xf_c00488{left:126.440013pt;}
.x16_c00488{left:127.866680pt;}
.x10_c00488{left:159.520013pt;}
.x11_c00488{left:178.053347pt;}
.x1e_c00488{left:181.280013pt;}
.x1f_c00488{left:198.973347pt;}
.x9_c00488{left:207.573347pt;}
.xa_c00488{left:220.413347pt;}
.x5_c00488{left:234.400013pt;}
.x6_c00488{left:268.586680pt;}
.x7_c00488{left:306.706680pt;}
.x8_c00488{left:322.466680pt;}
.x20_c00488{left:374.986680pt;}
.xb_c00488{left:391.293347pt;}
.xc_c00488{left:406.120013pt;}
.x14_c00488{left:417.840013pt;}
.x15_c00488{left:437.480013pt;}
.x2_c00488{left:450.040013pt;}
.xd_c00488{left:461.720013pt;}
.x3_c00488{left:478.266680pt;}
.x19_c00488{left:479.293347pt;}
.xe_c00488{left:485.573347pt;}
.x1a_c00488{left:495.600013pt;}
.x17_c00488{left:518.560013pt;}
.x18_c00488{left:536.600013pt;}
.x1b_c00488{left:545.133347pt;}
.x1c_c00488{left:563.813347pt;}
.x12_c00488{left:653.000013pt;}
}





/* 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_c00489 {
    display:none;
  }
  .loading-indicator_c00489.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00489 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_c00489 { 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_c00489" -> "#page-container .classname_c00489")
 */
.pf_c00489 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00489 { /* 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_c00489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00489 { /* 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_c00489 { /* 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_c00489 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00489 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00489 {overflow:visible;}
  }
}
.c_c00489 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00489 { /* 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_c00489:after { /* webkit #35443 */
  content: '';
}
.t_c00489:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00489 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 */
}
.__c00489 { /* 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_c00489 { /* info for Javascript */
  display:none;
}
.l_c00489 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00489 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00489 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00489: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_c00489 {
    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_c00489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00489.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_c00489 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00489{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00489;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.311035;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_c00489;src:url('chunks/assets/font_e731e74ab7b92dabfe7ebc1d.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.284668;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_c00489;src:url('chunks/assets/font_1a2c6017df13bbda0947932d.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;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:ff4_c00489;src:url('chunks/assets/font_b597afb043733b6c075d5d86.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;line-height:1.284180;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_c00489;src:url('chunks/assets/font_4065c983e79deab158012935.woff2')format("woff");}.ff5_c00489{font-family:ff5_c00489;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;}
.ma_c00489{transform:matrix(0.188085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188085,0.000000,0.000000,0.250000,0,0);}
.m2_c00489{transform:matrix(0.224352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224352,0.000000,0.000000,0.250000,0,0);}
.m6_c00489{transform:matrix(0.230935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230935,0.000000,0.000000,0.250000,0,0);}
.m5_c00489{transform:matrix(0.235164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235164,0.000000,0.000000,0.250000,0,0);}
.m0_c00489{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);}
.m9_c00489{transform:matrix(0.250523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250523,0.000000,0.000000,0.250000,0,0);}
.m8_c00489{transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);}
.m1_c00489{transform:matrix(0.252716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252716,0.000000,0.000000,0.250000,0,0);}
.m3_c00489{transform:matrix(0.253358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253358,0.000000,0.000000,0.250000,0,0);}
.m7_c00489{transform:matrix(0.259525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259525,0.000000,0.000000,0.250000,0,0);}
.m4_c00489{transform:matrix(0.288255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288255,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls91_c00489{letter-spacing:-3.402021px;}
.ls7e_c00489{letter-spacing:-2.415000px;}
.ls7a_c00489{letter-spacing:-2.331000px;}
.ls74_c00489{letter-spacing:-2.268000px;}
.ls8f_c00489{letter-spacing:-1.545600px;}
.ls7b_c00489{letter-spacing:-1.265400px;}
.ls8b_c00489{letter-spacing:-1.172160px;}
.ls77_c00489{letter-spacing:-0.819180px;}
.ls78_c00489{letter-spacing:-0.699300px;}
.ls8e_c00489{letter-spacing:-0.472860px;}
.ls75_c00489{letter-spacing:-0.331200px;}
.ls73_c00489{letter-spacing:-0.273060px;}
.ls85_c00489{letter-spacing:-0.133200px;}
.ls6f_c00489{letter-spacing:0.000000px;}
.ls3d_c00489{letter-spacing:0.053280px;}
.ls5e_c00489{letter-spacing:0.131100px;}
.ls51_c00489{letter-spacing:0.159840px;}
.ls6c_c00489{letter-spacing:0.324300px;}
.ls87_c00489{letter-spacing:0.346320px;}
.ls67_c00489{letter-spacing:0.358800px;}
.ls23_c00489{letter-spacing:0.372600px;}
.lsb_c00489{letter-spacing:0.393300px;}
.ls7d_c00489{letter-spacing:0.427800px;}
.ls5f_c00489{letter-spacing:0.439560px;}
.ls60_c00489{letter-spacing:0.446220px;}
.ls27_c00489{letter-spacing:0.455400px;}
.ls41_c00489{letter-spacing:0.552000px;}
.ls5c_c00489{letter-spacing:0.593400px;}
.ls50_c00489{letter-spacing:0.634800px;}
.ls3c_c00489{letter-spacing:0.662400px;}
.lsc_c00489{letter-spacing:0.666000px;}
.ls6a_c00489{letter-spacing:0.672660px;}
.ls12_c00489{letter-spacing:0.683100px;}
.ls11_c00489{letter-spacing:0.819180px;}
.ls92_c00489{letter-spacing:0.856080px;}
.ls2d_c00489{letter-spacing:0.945720px;}
.ls3f_c00489{letter-spacing:0.965700px;}
.ls59_c00489{letter-spacing:0.972360px;}
.ls5d_c00489{letter-spacing:1.000500px;}
.ls68_c00489{letter-spacing:1.038960px;}
.ls2e_c00489{letter-spacing:1.045620px;}
.ls6b_c00489{letter-spacing:1.055700px;}
.ls56_c00489{letter-spacing:1.065600px;}
.ls54_c00489{letter-spacing:1.085580px;}
.ls26_c00489{letter-spacing:1.105560px;}
.ls3b_c00489{letter-spacing:1.145520px;}
.ls82_c00489{letter-spacing:1.152180px;}
.ls3_c00489{letter-spacing:1.158840px;}
.ls5_c00489{letter-spacing:1.165500px;}
.ls65_c00489{letter-spacing:1.172160px;}
.ls43_c00489{letter-spacing:1.178820px;}
.ls13_c00489{letter-spacing:1.200600px;}
.ls4d_c00489{letter-spacing:1.205460px;}
.ls9_c00489{letter-spacing:1.212120px;}
.ls57_c00489{letter-spacing:1.218780px;}
.ls1_c00489{letter-spacing:1.258740px;}
.ls4e_c00489{letter-spacing:1.292040px;}
.ls6d_c00489{letter-spacing:1.305360px;}
.ls1a_c00489{letter-spacing:1.312020px;}
.ls8a_c00489{letter-spacing:1.332000px;}
.ls84_c00489{letter-spacing:1.338600px;}
.ls7f_c00489{letter-spacing:1.371960px;}
.ls8_c00489{letter-spacing:1.385280px;}
.ls6_c00489{letter-spacing:1.391940px;}
.ls40_c00489{letter-spacing:1.398600px;}
.ls32_c00489{letter-spacing:1.431900px;}
.ls2a_c00489{letter-spacing:1.438560px;}
.ls22_c00489{letter-spacing:1.445220px;}
.ls64_c00489{letter-spacing:1.451880px;}
.ls7c_c00489{letter-spacing:1.471860px;}
.ls1c_c00489{letter-spacing:1.485180px;}
.ls76_c00489{letter-spacing:1.491840px;}
.ls55_c00489{letter-spacing:1.525140px;}
.ls2f_c00489{letter-spacing:1.531800px;}
.ls6e_c00489{letter-spacing:1.536480px;}
.ls2b_c00489{letter-spacing:1.591740px;}
.ls29_c00489{letter-spacing:1.598400px;}
.ls83_c00489{letter-spacing:1.605060px;}
.ls36_c00489{letter-spacing:1.611720px;}
.ls35_c00489{letter-spacing:1.618380px;}
.ls14_c00489{letter-spacing:1.625040px;}
.ls46_c00489{letter-spacing:1.631700px;}
.ls80_c00489{letter-spacing:1.665000px;}
.ls21_c00489{letter-spacing:1.678320px;}
.ls90_c00489{letter-spacing:1.704300px;}
.ls1b_c00489{letter-spacing:1.704960px;}
.ls81_c00489{letter-spacing:1.711620px;}
.ls58_c00489{letter-spacing:1.798200px;}
.ls4c_c00489{letter-spacing:1.811520px;}
.ls17_c00489{letter-spacing:1.818180px;}
.ls71_c00489{letter-spacing:1.831500px;}
.ls33_c00489{letter-spacing:1.878120px;}
.ls38_c00489{letter-spacing:1.898100px;}
.ls15_c00489{letter-spacing:1.931400px;}
.ls25_c00489{letter-spacing:1.938060px;}
.ls8d_c00489{letter-spacing:1.944720px;}
.ls4a_c00489{letter-spacing:1.971360px;}
.ls89_c00489{letter-spacing:1.991340px;}
.ls44_c00489{letter-spacing:2.024640px;}
.ls20_c00489{letter-spacing:2.031300px;}
.ls47_c00489{letter-spacing:2.037960px;}
.ls5a_c00489{letter-spacing:2.044620px;}
.ls28_c00489{letter-spacing:2.064600px;}
.ls4f_c00489{letter-spacing:2.090700px;}
.ls30_c00489{letter-spacing:2.097900px;}
.ls19_c00489{letter-spacing:2.117880px;}
.ls48_c00489{letter-spacing:2.131200px;}
.ls10_c00489{letter-spacing:2.137860px;}
.ls62_c00489{letter-spacing:2.144520px;}
.ls63_c00489{letter-spacing:2.157840px;}
.ls69_c00489{letter-spacing:2.191140px;}
.ls61_c00489{letter-spacing:2.211120px;}
.ls1e_c00489{letter-spacing:2.237760px;}
.lse_c00489{letter-spacing:2.264400px;}
.lsa_c00489{letter-spacing:2.284380px;}
.ls79_c00489{letter-spacing:2.304360px;}
.ls70_c00489{letter-spacing:2.317680px;}
.ls45_c00489{letter-spacing:2.344320px;}
.ls4_c00489{letter-spacing:2.390940px;}
.ls1d_c00489{letter-spacing:2.437560px;}
.ls8c_c00489{letter-spacing:2.450880px;}
.ls53_c00489{letter-spacing:2.550780px;}
.ls39_c00489{letter-spacing:2.557440px;}
.ls52_c00489{letter-spacing:2.577420px;}
.ls0_c00489{letter-spacing:2.584080px;}
.ls3a_c00489{letter-spacing:2.590740px;}
.ls86_c00489{letter-spacing:2.630700px;}
.ls88_c00489{letter-spacing:2.644020px;}
.ls3e_c00489{letter-spacing:2.650680px;}
.ls2_c00489{letter-spacing:2.710620px;}
.ls1f_c00489{letter-spacing:2.717280px;}
.ls31_c00489{letter-spacing:2.730600px;}
.lsd_c00489{letter-spacing:2.743920px;}
.ls2c_c00489{letter-spacing:2.763900px;}
.ls18_c00489{letter-spacing:2.830500px;}
.ls42_c00489{letter-spacing:2.857140px;}
.ls4b_c00489{letter-spacing:2.877120px;}
.ls24_c00489{letter-spacing:2.917080px;}
.ls66_c00489{letter-spacing:2.937060px;}
.lsf_c00489{letter-spacing:2.983680px;}
.ls16_c00489{letter-spacing:3.043620px;}
.ls37_c00489{letter-spacing:3.050280px;}
.ls34_c00489{letter-spacing:3.130200px;}
.ls7_c00489{letter-spacing:3.136860px;}
.ls5b_c00489{letter-spacing:3.139500px;}
.ls49_c00489{letter-spacing:3.170160px;}
.ls72_c00489{letter-spacing:3.330000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{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__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00489{word-spacing:-2.433180px;}
.ws4_c00489{word-spacing:-1.811520px;}
.ws2_c00489{word-spacing:-0.479520px;}
.ws9_c00489{word-spacing:0.000000px;}
.ws5_c00489{word-spacing:1.718280px;}
.ws1_c00489{word-spacing:2.831340px;}
.ws3_c00489{word-spacing:6.819840px;}
.ws8_c00489{word-spacing:8.105220px;}
.ws6_c00489{word-spacing:18.827940px;}
.ws0_c00489{word-spacing:35.477820px;}
._16_c00489{margin-left:-6.207120px;}
._13_c00489{margin-left:-5.141520px;}
._12_c00489{margin-left:-3.956040px;}
._5_c00489{margin-left:-2.630700px;}
._14_c00489{margin-left:-1.391940px;}
._6_c00489{width:2.104560px;}
._9_c00489{width:3.702960px;}
._8_c00489{width:5.383200px;}
._7_c00489{width:6.789600px;}
._15_c00489{width:8.351220px;}
._c_c00489{width:9.749700px;}
._a_c00489{width:12.855540px;}
._17_c00489{width:15.561360px;}
._e_c00489{width:17.415900px;}
._b_c00489{width:18.446280px;}
._10_c00489{width:20.785860px;}
._f_c00489{width:22.577400px;}
._d_c00489{width:23.909400px;}
._11_c00489{width:25.907400px;}
._0_c00489{width:33.032880px;}
._3_c00489{width:35.817480px;}
._1_c00489{width:37.455840px;}
._2_c00489{width:39.314700px;}
._4_c00489{width:43.056900px;}
.fc0_c00489{color:transparent;}
.fs6_c00489{font-size:52.200000px;}
.fs0_c00489{font-size:58.200000px;}
.fs2_c00489{font-size:64.800000px;}
.fs1_c00489{font-size:66.600000px;}
.fs4_c00489{font-size:68.400000px;}
.fs3_c00489{font-size:69.000000px;}
.fs5_c00489{font-size:97.200600px;}
.y0_c00489{bottom:0.000000px;}
.y1b_c00489{bottom:77.055006px;}
.y1a_c00489{bottom:230.055006px;}
.y19_c00489{bottom:261.015006px;}
.y18_c00489{bottom:322.211706px;}
.y17_c00489{bottom:353.880006px;}
.y16_c00489{bottom:415.447656px;}
.y15_c00489{bottom:446.400006px;}
.y14_c00489{bottom:446.403306px;}
.y13_c00489{bottom:507.982656px;}
.y12_c00489{bottom:538.935006px;}
.y11_c00489{bottom:600.480006px;}
.y10_c00489{bottom:631.800006px;}
.yf_c00489{bottom:693.367656px;}
.ye_c00489{bottom:724.320006px;}
.yd_c00489{bottom:786.255006px;}
.yc_c00489{bottom:816.840006px;}
.yb_c00489{bottom:816.847656px;}
.ya_c00489{bottom:847.800006px;}
.y9_c00489{bottom:909.360006px;}
.y8_c00489{bottom:970.933956px;}
.y7_c00489{bottom:1001.520006px;}
.y5_c00489{bottom:1032.474606px;}
.y6_c00489{bottom:1032.480006px;}
.y4_c00489{bottom:1093.680006px;}
.y3_c00489{bottom:1093.681356px;}
.y2_c00489{bottom:1125.000006px;}
.y1_c00489{bottom:1200.975006px;}
.he_c00489{height:54.442969px;}
.h2_c00489{height:58.654687px;}
.h3_c00489{height:65.364258px;}
.hc_c00489{height:65.377458px;}
.h6_c00489{height:65.385858px;}
.h4_c00489{height:67.584375px;}
.h9_c00489{height:67.655435px;}
.h5_c00489{height:67.686035px;}
.h7_c00489{height:67.690235px;}
.ha_c00489{height:67.715435px;}
.h8_c00489{height:69.461719px;}
.hb_c00489{height:71.325863px;}
.hd_c00489{height:95.349612px;}
.h1_c00489{height:1263.000000px;}
.h0_c00489{height:1263.240006px;}
.w1_c00489{width:892.500000px;}
.w0_c00489{width:892.799998px;}
.x0_c00489{left:0.000000px;}
.x16_c00489{left:123.449099px;}
.x10_c00489{left:124.758148px;}
.xc_c00489{left:126.059999px;}
.x2_c00489{left:127.124249px;}
.x1_c00489{left:128.429998px;}
.x13_c00489{left:226.874998px;}
.x3_c00489{left:239.009998px;}
.x4_c00489{left:273.929999px;}
.x11_c00489{left:315.224999px;}
.x12_c00489{left:332.054999px;}
.x7_c00489{left:359.204998px;}
.x8_c00489{left:389.084999px;}
.xa_c00489{left:399.059999px;}
.x14_c00489{left:409.499998px;}
.xb_c00489{left:421.049998px;}
.x1a_c00489{left:427.634999px;}
.x15_c00489{left:432.494999px;}
.x17_c00489{left:445.154998px;}
.x18_c00489{left:477.914999px;}
.x5_c00489{left:518.264998px;}
.x6_c00489{left:535.454998px;}
.xe_c00489{left:632.444999px;}
.xf_c00489{left:677.354998px;}
.xd_c00489{left:735.914999px;}
.x19_c00489{left:740.924999px;}
.x9_c00489{left:743.579998px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls91_c00489{letter-spacing:-3.024019pt;}
.ls7e_c00489{letter-spacing:-2.146667pt;}
.ls7a_c00489{letter-spacing:-2.072000pt;}
.ls74_c00489{letter-spacing:-2.016000pt;}
.ls8f_c00489{letter-spacing:-1.373867pt;}
.ls7b_c00489{letter-spacing:-1.124800pt;}
.ls8b_c00489{letter-spacing:-1.041920pt;}
.ls77_c00489{letter-spacing:-0.728160pt;}
.ls78_c00489{letter-spacing:-0.621600pt;}
.ls8e_c00489{letter-spacing:-0.420320pt;}
.ls75_c00489{letter-spacing:-0.294400pt;}
.ls73_c00489{letter-spacing:-0.242720pt;}
.ls85_c00489{letter-spacing:-0.118400pt;}
.ls6f_c00489{letter-spacing:0.000000pt;}
.ls3d_c00489{letter-spacing:0.047360pt;}
.ls5e_c00489{letter-spacing:0.116533pt;}
.ls51_c00489{letter-spacing:0.142080pt;}
.ls6c_c00489{letter-spacing:0.288267pt;}
.ls87_c00489{letter-spacing:0.307840pt;}
.ls67_c00489{letter-spacing:0.318933pt;}
.ls23_c00489{letter-spacing:0.331200pt;}
.lsb_c00489{letter-spacing:0.349600pt;}
.ls7d_c00489{letter-spacing:0.380267pt;}
.ls5f_c00489{letter-spacing:0.390720pt;}
.ls60_c00489{letter-spacing:0.396640pt;}
.ls27_c00489{letter-spacing:0.404800pt;}
.ls41_c00489{letter-spacing:0.490667pt;}
.ls5c_c00489{letter-spacing:0.527467pt;}
.ls50_c00489{letter-spacing:0.564267pt;}
.ls3c_c00489{letter-spacing:0.588800pt;}
.lsc_c00489{letter-spacing:0.592000pt;}
.ls6a_c00489{letter-spacing:0.597920pt;}
.ls12_c00489{letter-spacing:0.607200pt;}
.ls11_c00489{letter-spacing:0.728160pt;}
.ls92_c00489{letter-spacing:0.760960pt;}
.ls2d_c00489{letter-spacing:0.840640pt;}
.ls3f_c00489{letter-spacing:0.858400pt;}
.ls59_c00489{letter-spacing:0.864320pt;}
.ls5d_c00489{letter-spacing:0.889333pt;}
.ls68_c00489{letter-spacing:0.923520pt;}
.ls2e_c00489{letter-spacing:0.929440pt;}
.ls6b_c00489{letter-spacing:0.938400pt;}
.ls56_c00489{letter-spacing:0.947200pt;}
.ls54_c00489{letter-spacing:0.964960pt;}
.ls26_c00489{letter-spacing:0.982720pt;}
.ls3b_c00489{letter-spacing:1.018240pt;}
.ls82_c00489{letter-spacing:1.024160pt;}
.ls3_c00489{letter-spacing:1.030080pt;}
.ls5_c00489{letter-spacing:1.036000pt;}
.ls65_c00489{letter-spacing:1.041920pt;}
.ls43_c00489{letter-spacing:1.047840pt;}
.ls13_c00489{letter-spacing:1.067200pt;}
.ls4d_c00489{letter-spacing:1.071520pt;}
.ls9_c00489{letter-spacing:1.077440pt;}
.ls57_c00489{letter-spacing:1.083360pt;}
.ls1_c00489{letter-spacing:1.118880pt;}
.ls4e_c00489{letter-spacing:1.148480pt;}
.ls6d_c00489{letter-spacing:1.160320pt;}
.ls1a_c00489{letter-spacing:1.166240pt;}
.ls8a_c00489{letter-spacing:1.184000pt;}
.ls84_c00489{letter-spacing:1.189867pt;}
.ls7f_c00489{letter-spacing:1.219520pt;}
.ls8_c00489{letter-spacing:1.231360pt;}
.ls6_c00489{letter-spacing:1.237280pt;}
.ls40_c00489{letter-spacing:1.243200pt;}
.ls32_c00489{letter-spacing:1.272800pt;}
.ls2a_c00489{letter-spacing:1.278720pt;}
.ls22_c00489{letter-spacing:1.284640pt;}
.ls64_c00489{letter-spacing:1.290560pt;}
.ls7c_c00489{letter-spacing:1.308320pt;}
.ls1c_c00489{letter-spacing:1.320160pt;}
.ls76_c00489{letter-spacing:1.326080pt;}
.ls55_c00489{letter-spacing:1.355680pt;}
.ls2f_c00489{letter-spacing:1.361600pt;}
.ls6e_c00489{letter-spacing:1.365760pt;}
.ls2b_c00489{letter-spacing:1.414880pt;}
.ls29_c00489{letter-spacing:1.420800pt;}
.ls83_c00489{letter-spacing:1.426720pt;}
.ls36_c00489{letter-spacing:1.432640pt;}
.ls35_c00489{letter-spacing:1.438560pt;}
.ls14_c00489{letter-spacing:1.444480pt;}
.ls46_c00489{letter-spacing:1.450400pt;}
.ls80_c00489{letter-spacing:1.480000pt;}
.ls21_c00489{letter-spacing:1.491840pt;}
.ls90_c00489{letter-spacing:1.514933pt;}
.ls1b_c00489{letter-spacing:1.515520pt;}
.ls81_c00489{letter-spacing:1.521440pt;}
.ls58_c00489{letter-spacing:1.598400pt;}
.ls4c_c00489{letter-spacing:1.610240pt;}
.ls17_c00489{letter-spacing:1.616160pt;}
.ls71_c00489{letter-spacing:1.628000pt;}
.ls33_c00489{letter-spacing:1.669440pt;}
.ls38_c00489{letter-spacing:1.687200pt;}
.ls15_c00489{letter-spacing:1.716800pt;}
.ls25_c00489{letter-spacing:1.722720pt;}
.ls8d_c00489{letter-spacing:1.728640pt;}
.ls4a_c00489{letter-spacing:1.752320pt;}
.ls89_c00489{letter-spacing:1.770080pt;}
.ls44_c00489{letter-spacing:1.799680pt;}
.ls20_c00489{letter-spacing:1.805600pt;}
.ls47_c00489{letter-spacing:1.811520pt;}
.ls5a_c00489{letter-spacing:1.817440pt;}
.ls28_c00489{letter-spacing:1.835200pt;}
.ls4f_c00489{letter-spacing:1.858400pt;}
.ls30_c00489{letter-spacing:1.864800pt;}
.ls19_c00489{letter-spacing:1.882560pt;}
.ls48_c00489{letter-spacing:1.894400pt;}
.ls10_c00489{letter-spacing:1.900320pt;}
.ls62_c00489{letter-spacing:1.906240pt;}
.ls63_c00489{letter-spacing:1.918080pt;}
.ls69_c00489{letter-spacing:1.947680pt;}
.ls61_c00489{letter-spacing:1.965440pt;}
.ls1e_c00489{letter-spacing:1.989120pt;}
.lse_c00489{letter-spacing:2.012800pt;}
.lsa_c00489{letter-spacing:2.030560pt;}
.ls79_c00489{letter-spacing:2.048320pt;}
.ls70_c00489{letter-spacing:2.060160pt;}
.ls45_c00489{letter-spacing:2.083840pt;}
.ls4_c00489{letter-spacing:2.125280pt;}
.ls1d_c00489{letter-spacing:2.166720pt;}
.ls8c_c00489{letter-spacing:2.178560pt;}
.ls53_c00489{letter-spacing:2.267360pt;}
.ls39_c00489{letter-spacing:2.273280pt;}
.ls52_c00489{letter-spacing:2.291040pt;}
.ls0_c00489{letter-spacing:2.296960pt;}
.ls3a_c00489{letter-spacing:2.302880pt;}
.ls86_c00489{letter-spacing:2.338400pt;}
.ls88_c00489{letter-spacing:2.350240pt;}
.ls3e_c00489{letter-spacing:2.356160pt;}
.ls2_c00489{letter-spacing:2.409440pt;}
.ls1f_c00489{letter-spacing:2.415360pt;}
.ls31_c00489{letter-spacing:2.427200pt;}
.lsd_c00489{letter-spacing:2.439040pt;}
.ls2c_c00489{letter-spacing:2.456800pt;}
.ls18_c00489{letter-spacing:2.516000pt;}
.ls42_c00489{letter-spacing:2.539680pt;}
.ls4b_c00489{letter-spacing:2.557440pt;}
.ls24_c00489{letter-spacing:2.592960pt;}
.ls66_c00489{letter-spacing:2.610720pt;}
.lsf_c00489{letter-spacing:2.652160pt;}
.ls16_c00489{letter-spacing:2.705440pt;}
.ls37_c00489{letter-spacing:2.711360pt;}
.ls34_c00489{letter-spacing:2.782400pt;}
.ls7_c00489{letter-spacing:2.788320pt;}
.ls5b_c00489{letter-spacing:2.790667pt;}
.ls49_c00489{letter-spacing:2.817920pt;}
.ls72_c00489{letter-spacing:2.960000pt;}
.ws7_c00489{word-spacing:-2.162827pt;}
.ws4_c00489{word-spacing:-1.610240pt;}
.ws2_c00489{word-spacing:-0.426240pt;}
.ws9_c00489{word-spacing:0.000000pt;}
.ws5_c00489{word-spacing:1.527360pt;}
.ws1_c00489{word-spacing:2.516747pt;}
.ws3_c00489{word-spacing:6.062080pt;}
.ws8_c00489{word-spacing:7.204640pt;}
.ws6_c00489{word-spacing:16.735947pt;}
.ws0_c00489{word-spacing:31.535840pt;}
._16_c00489{margin-left:-5.517440pt;}
._13_c00489{margin-left:-4.570240pt;}
._12_c00489{margin-left:-3.516480pt;}
._5_c00489{margin-left:-2.338400pt;}
._14_c00489{margin-left:-1.237280pt;}
._6_c00489{width:1.870720pt;}
._9_c00489{width:3.291520pt;}
._8_c00489{width:4.785067pt;}
._7_c00489{width:6.035200pt;}
._15_c00489{width:7.423307pt;}
._c_c00489{width:8.666400pt;}
._a_c00489{width:11.427147pt;}
._17_c00489{width:13.832320pt;}
._e_c00489{width:15.480800pt;}
._b_c00489{width:16.396693pt;}
._10_c00489{width:18.476320pt;}
._f_c00489{width:20.068800pt;}
._d_c00489{width:21.252800pt;}
._11_c00489{width:23.028800pt;}
._0_c00489{width:29.362560pt;}
._3_c00489{width:31.837760pt;}
._1_c00489{width:33.294080pt;}
._2_c00489{width:34.946400pt;}
._4_c00489{width:38.272800pt;}
.fs6_c00489{font-size:46.400000pt;}
.fs0_c00489{font-size:51.733333pt;}
.fs2_c00489{font-size:57.600000pt;}
.fs1_c00489{font-size:59.200000pt;}
.fs4_c00489{font-size:60.800000pt;}
.fs3_c00489{font-size:61.333333pt;}
.fs5_c00489{font-size:86.400533pt;}
.y0_c00489{bottom:0.000000pt;}
.y1b_c00489{bottom:68.493339pt;}
.y1a_c00489{bottom:204.493339pt;}
.y19_c00489{bottom:232.013339pt;}
.y18_c00489{bottom:286.410405pt;}
.y17_c00489{bottom:314.560005pt;}
.y16_c00489{bottom:369.286805pt;}
.y15_c00489{bottom:396.800005pt;}
.y14_c00489{bottom:396.802939pt;}
.y13_c00489{bottom:451.540139pt;}
.y12_c00489{bottom:479.053339pt;}
.y11_c00489{bottom:533.760005pt;}
.y10_c00489{bottom:561.600005pt;}
.yf_c00489{bottom:616.326805pt;}
.ye_c00489{bottom:643.840005pt;}
.yd_c00489{bottom:698.893339pt;}
.yc_c00489{bottom:726.080005pt;}
.yb_c00489{bottom:726.086805pt;}
.ya_c00489{bottom:753.600005pt;}
.y9_c00489{bottom:808.320005pt;}
.y8_c00489{bottom:863.052405pt;}
.y7_c00489{bottom:890.240005pt;}
.y5_c00489{bottom:917.755205pt;}
.y6_c00489{bottom:917.760005pt;}
.y4_c00489{bottom:972.160005pt;}
.y3_c00489{bottom:972.161205pt;}
.y2_c00489{bottom:1000.000005pt;}
.y1_c00489{bottom:1067.533339pt;}
.he_c00489{height:48.393750pt;}
.h2_c00489{height:52.137500pt;}
.h3_c00489{height:58.101562pt;}
.hc_c00489{height:58.113296pt;}
.h6_c00489{height:58.120762pt;}
.h4_c00489{height:60.075000pt;}
.h9_c00489{height:60.138165pt;}
.h5_c00489{height:60.165365pt;}
.h7_c00489{height:60.169098pt;}
.ha_c00489{height:60.191498pt;}
.h8_c00489{height:61.743750pt;}
.hb_c00489{height:63.400767pt;}
.hd_c00489{height:84.755211pt;}
.h1_c00489{height:1122.666667pt;}
.h0_c00489{height:1122.880005pt;}
.w1_c00489{width:793.333333pt;}
.w0_c00489{width:793.599999pt;}
.x0_c00489{left:0.000000pt;}
.x16_c00489{left:109.732532pt;}
.x10_c00489{left:110.896132pt;}
.xc_c00489{left:112.053332pt;}
.x2_c00489{left:112.999332pt;}
.x1_c00489{left:114.159999pt;}
.x13_c00489{left:201.666665pt;}
.x3_c00489{left:212.453332pt;}
.x4_c00489{left:243.493332pt;}
.x11_c00489{left:280.199999pt;}
.x12_c00489{left:295.159999pt;}
.x7_c00489{left:319.293332pt;}
.x8_c00489{left:345.853332pt;}
.xa_c00489{left:354.719999pt;}
.x14_c00489{left:363.999999pt;}
.xb_c00489{left:374.266665pt;}
.x1a_c00489{left:380.119999pt;}
.x15_c00489{left:384.439999pt;}
.x17_c00489{left:395.693332pt;}
.x18_c00489{left:424.813332pt;}
.x5_c00489{left:460.679999pt;}
.x6_c00489{left:475.959999pt;}
.xe_c00489{left:562.173332pt;}
.xf_c00489{left:602.093332pt;}
.xd_c00489{left:654.146665pt;}
.x19_c00489{left:658.599999pt;}
.x9_c00489{left:660.959999pt;}
}





/* 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_c00490 {
    display:none;
  }
  .loading-indicator_c00490.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00490 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_c00490 { 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_c00490" -> "#page-container .classname_c00490")
 */
.pf_c00490 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00490 { /* 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_c00490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00490 { /* 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_c00490 { /* 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_c00490 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00490 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00490 {overflow:visible;}
  }
}
.c_c00490 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00490 { /* 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_c00490:after { /* webkit #35443 */
  content: '';
}
.t_c00490:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00490 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 */
}
.__c00490 { /* 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_c00490 { /* info for Javascript */
  display:none;
}
.l_c00490 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00490 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00490 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00490: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_c00490 {
    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_c00490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00490.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_c00490 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00490{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00490;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.311035;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_c00490;src:url('chunks/assets/font_87ec143b92e5bcdf72b59511.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.284668;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_c00490;src:url('chunks/assets/font_c9158c20e09a016e07b49c6c.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.284180;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_c00490;src:url('chunks/assets/font_097068d757738ecb317c69eb.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;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;}
.m6_c00490{transform:matrix(0.233729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233729,0.000000,0.000000,0.250000,0,0);}
.m1_c00490{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.mb_c00490{transform:matrix(0.243472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243472,0.000000,0.000000,0.250000,0,0);}
.m4_c00490{transform:matrix(0.244246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244246,0.000000,0.000000,0.250000,0,0);}
.mc_c00490{transform:matrix(0.249224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249224,0.000000,0.000000,0.250000,0,0);}
.m0_c00490{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);}
.m5_c00490{transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);}
.m7_c00490{transform:matrix(0.252743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252743,0.000000,0.000000,0.250000,0,0);}
.m2_c00490{transform:matrix(0.259493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259493,0.000000,0.000000,0.250000,0,0);}
.ma_c00490{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m8_c00490{transform:matrix(0.283153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283153,0.000000,0.000000,0.250000,0,0);}
.m9_c00490{transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);}
.m3_c00490{transform:matrix(0.297661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297661,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls53_c00490{letter-spacing:-2.604000px;}
.ls72_c00490{letter-spacing:-2.478000px;}
.ls84_c00490{letter-spacing:-2.415000px;}
.ls67_c00490{letter-spacing:-2.373000px;}
.ls57_c00490{letter-spacing:-2.298420px;}
.ls5b_c00490{letter-spacing:-2.070000px;}
.ls5e_c00490{letter-spacing:-2.054340px;}
.ls87_c00490{letter-spacing:-2.037000px;}
.ls61_c00490{letter-spacing:-1.959420px;}
.ls81_c00490{letter-spacing:-1.600800px;}
.ls6b_c00490{letter-spacing:-1.552500px;}
.ls78_c00490{letter-spacing:-1.545600px;}
.ls58_c00490{letter-spacing:-1.179720px;}
.ls62_c00490{letter-spacing:-1.132260px;}
.ls82_c00490{letter-spacing:-1.124700px;}
.ls79_c00490{letter-spacing:-1.057680px;}
.ls5c_c00490{letter-spacing:-1.041900px;}
.ls6a_c00490{letter-spacing:-0.910800px;}
.ls7e_c00490{letter-spacing:-0.888180px;}
.ls6f_c00490{letter-spacing:-0.821100px;}
.ls64_c00490{letter-spacing:-0.779700px;}
.ls7b_c00490{letter-spacing:-0.650880px;}
.ls65_c00490{letter-spacing:-0.648600px;}
.ls66_c00490{letter-spacing:-0.607200px;}
.ls70_c00490{letter-spacing:-0.509760px;}
.ls83_c00490{letter-spacing:-0.441600px;}
.ls6e_c00490{letter-spacing:-0.413580px;}
.ls85_c00490{letter-spacing:-0.372900px;}
.ls54_c00490{letter-spacing:-0.345780px;}
.ls76_c00490{letter-spacing:-0.257640px;}
.ls5f_c00490{letter-spacing:-0.183060px;}
.ls73_c00490{letter-spacing:-0.169500px;}
.ls63_c00490{letter-spacing:-0.115260px;}
.ls77_c00490{letter-spacing:-0.081360px;}
.ls7c_c00490{letter-spacing:-0.074580px;}
.ls55_c00490{letter-spacing:0.000000px;}
.ls6c_c00490{letter-spacing:0.069000px;}
.ls3b_c00490{letter-spacing:0.128820px;}
.ls86_c00490{letter-spacing:0.135600px;}
.ls44_c00490{letter-spacing:0.165600px;}
.ls28_c00490{letter-spacing:0.183060px;}
.ls71_c00490{letter-spacing:0.184080px;}
.ls17_c00490{letter-spacing:0.216960px;}
.ls4_c00490{letter-spacing:0.220800px;}
.ls2b_c00490{letter-spacing:0.230520px;}
.lsf_c00490{letter-spacing:0.244080px;}
.ls11_c00490{letter-spacing:0.250860px;}
.ls2e_c00490{letter-spacing:0.257640px;}
.ls24_c00490{letter-spacing:0.276000px;}
.ls0_c00490{letter-spacing:0.284760px;}
.lsd_c00490{letter-spacing:0.291540px;}
.ls4b_c00490{letter-spacing:0.311880px;}
.lse_c00490{letter-spacing:0.317400px;}
.ls41_c00490{letter-spacing:0.324300px;}
.ls31_c00490{letter-spacing:0.339000px;}
.ls1e_c00490{letter-spacing:0.386400px;}
.ls7a_c00490{letter-spacing:0.413580px;}
.ls6d_c00490{letter-spacing:0.447480px;}
.ls38_c00490{letter-spacing:0.454260px;}
.ls1f_c00490{letter-spacing:0.467820px;}
.ls16_c00490{letter-spacing:0.474600px;}
.ls56_c00490{letter-spacing:0.501720px;}
.ls14_c00490{letter-spacing:0.542400px;}
.ls20_c00490{letter-spacing:0.549180px;}
.ls3e_c00490{letter-spacing:0.552000px;}
.ls42_c00490{letter-spacing:0.572700px;}
.ls1d_c00490{letter-spacing:0.627900px;}
.ls29_c00490{letter-spacing:0.657660px;}
.ls8_c00490{letter-spacing:0.671220px;}
.ls3_c00490{letter-spacing:0.678000px;}
.ls12_c00490{letter-spacing:0.691560px;}
.ls4d_c00490{letter-spacing:0.698340px;}
.ls2a_c00490{letter-spacing:0.711900px;}
.ls69_c00490{letter-spacing:0.718680px;}
.ls25_c00490{letter-spacing:0.732240px;}
.ls1a_c00490{letter-spacing:0.739020px;}
.ls22_c00490{letter-spacing:0.745800px;}
.ls68_c00490{letter-spacing:0.752580px;}
.ls23_c00490{letter-spacing:0.759000px;}
.ls2f_c00490{letter-spacing:0.759360px;}
.ls60_c00490{letter-spacing:0.779700px;}
.ls7f_c00490{letter-spacing:0.833940px;}
.ls4f_c00490{letter-spacing:0.840720px;}
.ls50_c00490{letter-spacing:0.867840px;}
.ls18_c00490{letter-spacing:0.874620px;}
.ls3a_c00490{letter-spacing:0.881400px;}
.ls35_c00490{letter-spacing:0.969540px;}
.ls3c_c00490{letter-spacing:0.979800px;}
.ls2d_c00490{letter-spacing:0.996660px;}
.ls30_c00490{letter-spacing:1.003440px;}
.ls39_c00490{letter-spacing:1.023780px;}
.ls74_c00490{letter-spacing:1.037340px;}
.ls27_c00490{letter-spacing:1.044120px;}
.ls40_c00490{letter-spacing:1.055700px;}
.ls34_c00490{letter-spacing:1.057680px;}
.ls9_c00490{letter-spacing:1.064460px;}
.ls75_c00490{letter-spacing:1.078020px;}
.ls45_c00490{letter-spacing:1.111920px;}
.ls6_c00490{letter-spacing:1.118700px;}
.ls4a_c00490{letter-spacing:1.125480px;}
.ls33_c00490{letter-spacing:1.139040px;}
.ls32_c00490{letter-spacing:1.172940px;}
.ls4c_c00490{letter-spacing:1.193280px;}
.ls19_c00490{letter-spacing:1.200060px;}
.ls5_c00490{letter-spacing:1.207500px;}
.ls36_c00490{letter-spacing:1.221300px;}
.ls37_c00490{letter-spacing:1.267860px;}
.ls80_c00490{letter-spacing:1.281420px;}
.ls47_c00490{letter-spacing:1.294980px;}
.ls4e_c00490{letter-spacing:1.383120px;}
.ls51_c00490{letter-spacing:1.408440px;}
.ls49_c00490{letter-spacing:1.414500px;}
.ls59_c00490{letter-spacing:1.417020px;}
.ls7_c00490{letter-spacing:1.437360px;}
.lsb_c00490{letter-spacing:1.457700px;}
.ls3d_c00490{letter-spacing:1.483500px;}
.ls10_c00490{letter-spacing:1.491600px;}
.ls26_c00490{letter-spacing:1.498380px;}
.ls46_c00490{letter-spacing:1.525500px;}
.ls3f_c00490{letter-spacing:1.552620px;}
.ls1b_c00490{letter-spacing:1.579740px;}
.ls48_c00490{letter-spacing:1.586520px;}
.ls21_c00490{letter-spacing:1.620420px;}
.ls7d_c00490{letter-spacing:1.633980px;}
.ls13_c00490{letter-spacing:1.635300px;}
.ls15_c00490{letter-spacing:1.735680px;}
.ls1c_c00490{letter-spacing:1.776360px;}
.ls52_c00490{letter-spacing:1.823820px;}
.lsc_c00490{letter-spacing:1.857720px;}
.ls1_c00490{letter-spacing:1.884840px;}
.ls2_c00490{letter-spacing:2.542500px;}
.lsa_c00490{letter-spacing:2.705220px;}
.ls43_c00490{letter-spacing:2.925600px;}
.ls2c_c00490{letter-spacing:2.962860px;}
.ls5d_c00490{letter-spacing:3.360000px;}
.ls5a_c00490{letter-spacing:3.390000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{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__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00490{word-spacing:-2.393340px;}
.ws8_c00490{word-spacing:-0.366120px;}
.ws9_c00490{word-spacing:0.000000px;}
.ws1_c00490{word-spacing:1.396680px;}
.ws0_c00490{word-spacing:1.518720px;}
.ws5_c00490{word-spacing:1.925520px;}
.ws6_c00490{word-spacing:9.397080px;}
.ws2_c00490{word-spacing:10.075080px;}
.ws3_c00490{word-spacing:17.736480px;}
.ws4_c00490{word-spacing:34.144080px;}
._16_c00490{margin-left:-22.195980px;}
._1e_c00490{margin-left:-15.251940px;}
._1d_c00490{margin-left:-13.582380px;}
._1b_c00490{margin-left:-12.091680px;}
._1c_c00490{margin-left:-6.486000px;}
._a_c00490{margin-left:-3.627300px;}
._11_c00490{margin-left:-2.512560px;}
._f_c00490{margin-left:-1.294440px;}
._10_c00490{width:1.723920px;}
._b_c00490{width:3.560340px;}
._d_c00490{width:4.614960px;}
._13_c00490{width:5.661300px;}
._22_c00490{width:6.699240px;}
._2_c00490{width:7.932600px;}
._c_c00490{width:9.503760px;}
._14_c00490{width:10.745880px;}
._e_c00490{width:12.739620px;}
._0_c00490{width:13.980360px;}
._12_c00490{width:15.100500px;}
._15_c00490{width:16.228200px;}
._21_c00490{width:17.252280px;}
._1_c00490{width:20.102700px;}
._4_c00490{width:21.688500px;}
._9_c00490{width:24.760560px;}
._5_c00490{width:25.899600px;}
._6_c00490{width:27.065760px;}
._3_c00490{width:29.808000px;}
._1a_c00490{width:30.861000px;}
._8_c00490{width:32.235780px;}
._17_c00490{width:34.002960px;}
._7_c00490{width:35.235660px;}
._19_c00490{width:38.302080px;}
._18_c00490{width:41.970240px;}
._1f_c00490{width:78.586980px;}
._20_c00490{width:82.065120px;}
.fc0_c00490{color:transparent;}
.fs0_c00490{font-size:58.200000px;}
.fs4_c00490{font-size:67.200000px;}
.fs1_c00490{font-size:67.800000px;}
.fs3_c00490{font-size:69.000000px;}
.fs6_c00490{font-size:69.600000px;}
.fs5_c00490{font-size:70.800000px;}
.fs2_c00490{font-size:74.400000px;}
.y0_c00490{bottom:0.000000px;}
.y1c_c00490{bottom:69.135000px;}
.y1b_c00490{bottom:130.695000px;}
.y1a_c00490{bottom:160.920000px;}
.y19_c00490{bottom:221.771400px;}
.y18_c00490{bottom:253.095000px;}
.y17_c00490{bottom:314.298150px;}
.y16_c00490{bottom:344.520000px;}
.y15_c00490{bottom:406.440000px;}
.y13_c00490{bottom:437.409300px;}
.y14_c00490{bottom:437.415000px;}
.y12_c00490{bottom:468.360000px;}
.y11_c00490{bottom:529.575000px;}
.y10_c00490{bottom:560.172600px;}
.yf_c00490{bottom:621.735000px;}
.ye_c00490{bottom:652.695000px;}
.yd_c00490{bottom:714.255000px;}
.yc_c00490{bottom:714.256650px;}
.yb_c00490{bottom:776.175000px;}
.y9_c00490{bottom:807.132600px;}
.ya_c00490{bottom:807.135000px;}
.y8_c00490{bottom:868.695000px;}
.y7_c00490{bottom:899.295000px;}
.y6_c00490{bottom:960.495000px;}
.y5_c00490{bottom:991.455000px;}
.y4_c00490{bottom:1052.291400px;}
.y3_c00490{bottom:1083.615000px;}
.y2_c00490{bottom:1114.560000px;}
.y1_c00490{bottom:1190.175000px;}
.hb_c00490{height:57.120117px;}
.h2_c00490{height:58.654687px;}
.h3_c00490{height:66.541992px;}
.h5_c00490{height:67.686035px;}
.h8_c00490{height:67.695635px;}
.h6_c00490{height:67.700435px;}
.ha_c00490{height:68.308594px;}
.h9_c00490{height:69.451758px;}
.h7_c00490{height:70.087500px;}
.h4_c00490{height:73.019531px;}
.h1_c00490{height:1263.000000px;}
.h0_c00490{height:1263.240000px;}
.w1_c00490{width:892.500000px;}
.w0_c00490{width:892.800000px;}
.x0_c00490{left:0.000000px;}
.x14_c00490{left:118.410000px;}
.x1_c00490{left:119.790000px;}
.x4_c00490{left:120.960000px;}
.x7_c00490{left:140.910000px;}
.x8_c00490{left:143.955000px;}
.x10_c00490{left:174.765000px;}
.x11_c00490{left:195.675000px;}
.x2_c00490{left:205.485000px;}
.x3_c00490{left:234.990000px;}
.xb_c00490{left:295.755000px;}
.x15_c00490{left:298.275000px;}
.xc_c00490{left:321.675000px;}
.x16_c00490{left:330.240000px;}
.x5_c00490{left:378.195000px;}
.x17_c00490{left:420.060000px;}
.x6_c00490{left:440.145000px;}
.x9_c00490{left:444.750000px;}
.xa_c00490{left:463.455000px;}
.x12_c00490{left:511.005000px;}
.xd_c00490{left:544.575000px;}
.xe_c00490{left:630.180000px;}
.xf_c00490{left:650.745000px;}
.x13_c00490{left:704.715000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls53_c00490{letter-spacing:-2.314667pt;}
.ls72_c00490{letter-spacing:-2.202667pt;}
.ls84_c00490{letter-spacing:-2.146667pt;}
.ls67_c00490{letter-spacing:-2.109333pt;}
.ls57_c00490{letter-spacing:-2.043040pt;}
.ls5b_c00490{letter-spacing:-1.840000pt;}
.ls5e_c00490{letter-spacing:-1.826080pt;}
.ls87_c00490{letter-spacing:-1.810667pt;}
.ls61_c00490{letter-spacing:-1.741707pt;}
.ls81_c00490{letter-spacing:-1.422933pt;}
.ls6b_c00490{letter-spacing:-1.380000pt;}
.ls78_c00490{letter-spacing:-1.373867pt;}
.ls58_c00490{letter-spacing:-1.048640pt;}
.ls62_c00490{letter-spacing:-1.006453pt;}
.ls82_c00490{letter-spacing:-0.999733pt;}
.ls79_c00490{letter-spacing:-0.940160pt;}
.ls5c_c00490{letter-spacing:-0.926133pt;}
.ls6a_c00490{letter-spacing:-0.809600pt;}
.ls7e_c00490{letter-spacing:-0.789493pt;}
.ls6f_c00490{letter-spacing:-0.729867pt;}
.ls64_c00490{letter-spacing:-0.693067pt;}
.ls7b_c00490{letter-spacing:-0.578560pt;}
.ls65_c00490{letter-spacing:-0.576533pt;}
.ls66_c00490{letter-spacing:-0.539733pt;}
.ls70_c00490{letter-spacing:-0.453120pt;}
.ls83_c00490{letter-spacing:-0.392533pt;}
.ls6e_c00490{letter-spacing:-0.367627pt;}
.ls85_c00490{letter-spacing:-0.331467pt;}
.ls54_c00490{letter-spacing:-0.307360pt;}
.ls76_c00490{letter-spacing:-0.229013pt;}
.ls5f_c00490{letter-spacing:-0.162720pt;}
.ls73_c00490{letter-spacing:-0.150667pt;}
.ls63_c00490{letter-spacing:-0.102453pt;}
.ls77_c00490{letter-spacing:-0.072320pt;}
.ls7c_c00490{letter-spacing:-0.066293pt;}
.ls55_c00490{letter-spacing:0.000000pt;}
.ls6c_c00490{letter-spacing:0.061333pt;}
.ls3b_c00490{letter-spacing:0.114507pt;}
.ls86_c00490{letter-spacing:0.120533pt;}
.ls44_c00490{letter-spacing:0.147200pt;}
.ls28_c00490{letter-spacing:0.162720pt;}
.ls71_c00490{letter-spacing:0.163627pt;}
.ls17_c00490{letter-spacing:0.192853pt;}
.ls4_c00490{letter-spacing:0.196267pt;}
.ls2b_c00490{letter-spacing:0.204907pt;}
.lsf_c00490{letter-spacing:0.216960pt;}
.ls11_c00490{letter-spacing:0.222987pt;}
.ls2e_c00490{letter-spacing:0.229013pt;}
.ls24_c00490{letter-spacing:0.245333pt;}
.ls0_c00490{letter-spacing:0.253120pt;}
.lsd_c00490{letter-spacing:0.259147pt;}
.ls4b_c00490{letter-spacing:0.277227pt;}
.lse_c00490{letter-spacing:0.282133pt;}
.ls41_c00490{letter-spacing:0.288267pt;}
.ls31_c00490{letter-spacing:0.301333pt;}
.ls1e_c00490{letter-spacing:0.343467pt;}
.ls7a_c00490{letter-spacing:0.367627pt;}
.ls6d_c00490{letter-spacing:0.397760pt;}
.ls38_c00490{letter-spacing:0.403787pt;}
.ls1f_c00490{letter-spacing:0.415840pt;}
.ls16_c00490{letter-spacing:0.421867pt;}
.ls56_c00490{letter-spacing:0.445973pt;}
.ls14_c00490{letter-spacing:0.482133pt;}
.ls20_c00490{letter-spacing:0.488160pt;}
.ls3e_c00490{letter-spacing:0.490667pt;}
.ls42_c00490{letter-spacing:0.509067pt;}
.ls1d_c00490{letter-spacing:0.558133pt;}
.ls29_c00490{letter-spacing:0.584587pt;}
.ls8_c00490{letter-spacing:0.596640pt;}
.ls3_c00490{letter-spacing:0.602667pt;}
.ls12_c00490{letter-spacing:0.614720pt;}
.ls4d_c00490{letter-spacing:0.620747pt;}
.ls2a_c00490{letter-spacing:0.632800pt;}
.ls69_c00490{letter-spacing:0.638827pt;}
.ls25_c00490{letter-spacing:0.650880pt;}
.ls1a_c00490{letter-spacing:0.656907pt;}
.ls22_c00490{letter-spacing:0.662933pt;}
.ls68_c00490{letter-spacing:0.668960pt;}
.ls23_c00490{letter-spacing:0.674667pt;}
.ls2f_c00490{letter-spacing:0.674987pt;}
.ls60_c00490{letter-spacing:0.693067pt;}
.ls7f_c00490{letter-spacing:0.741280pt;}
.ls4f_c00490{letter-spacing:0.747307pt;}
.ls50_c00490{letter-spacing:0.771413pt;}
.ls18_c00490{letter-spacing:0.777440pt;}
.ls3a_c00490{letter-spacing:0.783467pt;}
.ls35_c00490{letter-spacing:0.861813pt;}
.ls3c_c00490{letter-spacing:0.870933pt;}
.ls2d_c00490{letter-spacing:0.885920pt;}
.ls30_c00490{letter-spacing:0.891947pt;}
.ls39_c00490{letter-spacing:0.910027pt;}
.ls74_c00490{letter-spacing:0.922080pt;}
.ls27_c00490{letter-spacing:0.928107pt;}
.ls40_c00490{letter-spacing:0.938400pt;}
.ls34_c00490{letter-spacing:0.940160pt;}
.ls9_c00490{letter-spacing:0.946187pt;}
.ls75_c00490{letter-spacing:0.958240pt;}
.ls45_c00490{letter-spacing:0.988373pt;}
.ls6_c00490{letter-spacing:0.994400pt;}
.ls4a_c00490{letter-spacing:1.000427pt;}
.ls33_c00490{letter-spacing:1.012480pt;}
.ls32_c00490{letter-spacing:1.042613pt;}
.ls4c_c00490{letter-spacing:1.060693pt;}
.ls19_c00490{letter-spacing:1.066720pt;}
.ls5_c00490{letter-spacing:1.073333pt;}
.ls36_c00490{letter-spacing:1.085600pt;}
.ls37_c00490{letter-spacing:1.126987pt;}
.ls80_c00490{letter-spacing:1.139040pt;}
.ls47_c00490{letter-spacing:1.151093pt;}
.ls4e_c00490{letter-spacing:1.229440pt;}
.ls51_c00490{letter-spacing:1.251947pt;}
.ls49_c00490{letter-spacing:1.257333pt;}
.ls59_c00490{letter-spacing:1.259573pt;}
.ls7_c00490{letter-spacing:1.277653pt;}
.lsb_c00490{letter-spacing:1.295733pt;}
.ls3d_c00490{letter-spacing:1.318667pt;}
.ls10_c00490{letter-spacing:1.325867pt;}
.ls26_c00490{letter-spacing:1.331893pt;}
.ls46_c00490{letter-spacing:1.356000pt;}
.ls3f_c00490{letter-spacing:1.380107pt;}
.ls1b_c00490{letter-spacing:1.404213pt;}
.ls48_c00490{letter-spacing:1.410240pt;}
.ls21_c00490{letter-spacing:1.440373pt;}
.ls7d_c00490{letter-spacing:1.452427pt;}
.ls13_c00490{letter-spacing:1.453600pt;}
.ls15_c00490{letter-spacing:1.542827pt;}
.ls1c_c00490{letter-spacing:1.578987pt;}
.ls52_c00490{letter-spacing:1.621173pt;}
.lsc_c00490{letter-spacing:1.651307pt;}
.ls1_c00490{letter-spacing:1.675413pt;}
.ls2_c00490{letter-spacing:2.260000pt;}
.lsa_c00490{letter-spacing:2.404640pt;}
.ls43_c00490{letter-spacing:2.600533pt;}
.ls2c_c00490{letter-spacing:2.633653pt;}
.ls5d_c00490{letter-spacing:2.986667pt;}
.ls5a_c00490{letter-spacing:3.013333pt;}
.ws7_c00490{word-spacing:-2.127413pt;}
.ws8_c00490{word-spacing:-0.325440pt;}
.ws9_c00490{word-spacing:0.000000pt;}
.ws1_c00490{word-spacing:1.241493pt;}
.ws0_c00490{word-spacing:1.349973pt;}
.ws5_c00490{word-spacing:1.711573pt;}
.ws6_c00490{word-spacing:8.352960pt;}
.ws2_c00490{word-spacing:8.955627pt;}
.ws3_c00490{word-spacing:15.765760pt;}
.ws4_c00490{word-spacing:30.350293pt;}
._16_c00490{margin-left:-19.729760pt;}
._1e_c00490{margin-left:-13.557280pt;}
._1d_c00490{margin-left:-12.073227pt;}
._1b_c00490{margin-left:-10.748160pt;}
._1c_c00490{margin-left:-5.765333pt;}
._a_c00490{margin-left:-3.224267pt;}
._11_c00490{margin-left:-2.233387pt;}
._f_c00490{margin-left:-1.150613pt;}
._10_c00490{width:1.532373pt;}
._b_c00490{width:3.164747pt;}
._d_c00490{width:4.102187pt;}
._13_c00490{width:5.032267pt;}
._22_c00490{width:5.954880pt;}
._2_c00490{width:7.051200pt;}
._c_c00490{width:8.447787pt;}
._14_c00490{width:9.551893pt;}
._e_c00490{width:11.324107pt;}
._0_c00490{width:12.426987pt;}
._12_c00490{width:13.422667pt;}
._15_c00490{width:14.425067pt;}
._21_c00490{width:15.335360pt;}
._1_c00490{width:17.869067pt;}
._4_c00490{width:19.278667pt;}
._9_c00490{width:22.009387pt;}
._5_c00490{width:23.021867pt;}
._6_c00490{width:24.058453pt;}
._3_c00490{width:26.496000pt;}
._1a_c00490{width:27.432000pt;}
._8_c00490{width:28.654027pt;}
._17_c00490{width:30.224853pt;}
._7_c00490{width:31.320587pt;}
._19_c00490{width:34.046293pt;}
._18_c00490{width:37.306880pt;}
._1f_c00490{width:69.855093pt;}
._20_c00490{width:72.946773pt;}
.fs0_c00490{font-size:51.733333pt;}
.fs4_c00490{font-size:59.733333pt;}
.fs1_c00490{font-size:60.266667pt;}
.fs3_c00490{font-size:61.333333pt;}
.fs6_c00490{font-size:61.866667pt;}
.fs5_c00490{font-size:62.933333pt;}
.fs2_c00490{font-size:66.133333pt;}
.y0_c00490{bottom:0.000000pt;}
.y1c_c00490{bottom:61.453333pt;}
.y1b_c00490{bottom:116.173333pt;}
.y1a_c00490{bottom:143.040000pt;}
.y19_c00490{bottom:197.130133pt;}
.y18_c00490{bottom:224.973333pt;}
.y17_c00490{bottom:279.376133pt;}
.y16_c00490{bottom:306.240000pt;}
.y15_c00490{bottom:361.280000pt;}
.y13_c00490{bottom:388.808267pt;}
.y14_c00490{bottom:388.813333pt;}
.y12_c00490{bottom:416.320000pt;}
.y11_c00490{bottom:470.733333pt;}
.y10_c00490{bottom:497.931200pt;}
.yf_c00490{bottom:552.653333pt;}
.ye_c00490{bottom:580.173333pt;}
.yd_c00490{bottom:634.893333pt;}
.yc_c00490{bottom:634.894800pt;}
.yb_c00490{bottom:689.933333pt;}
.y9_c00490{bottom:717.451200pt;}
.ya_c00490{bottom:717.453333pt;}
.y8_c00490{bottom:772.173333pt;}
.y7_c00490{bottom:799.373333pt;}
.y6_c00490{bottom:853.773333pt;}
.y5_c00490{bottom:881.293333pt;}
.y4_c00490{bottom:935.370133pt;}
.y3_c00490{bottom:963.213333pt;}
.y2_c00490{bottom:990.720000pt;}
.y1_c00490{bottom:1057.933333pt;}
.hb_c00490{height:50.773437pt;}
.h2_c00490{height:52.137500pt;}
.h3_c00490{height:59.148438pt;}
.h5_c00490{height:60.165365pt;}
.h8_c00490{height:60.173898pt;}
.h6_c00490{height:60.178165pt;}
.ha_c00490{height:60.718750pt;}
.h9_c00490{height:61.734896pt;}
.h7_c00490{height:62.300000pt;}
.h4_c00490{height:64.906250pt;}
.h1_c00490{height:1122.666667pt;}
.h0_c00490{height:1122.880000pt;}
.w1_c00490{width:793.333333pt;}
.w0_c00490{width:793.600000pt;}
.x0_c00490{left:0.000000pt;}
.x14_c00490{left:105.253333pt;}
.x1_c00490{left:106.480000pt;}
.x4_c00490{left:107.520000pt;}
.x7_c00490{left:125.253333pt;}
.x8_c00490{left:127.960000pt;}
.x10_c00490{left:155.346667pt;}
.x11_c00490{left:173.933333pt;}
.x2_c00490{left:182.653333pt;}
.x3_c00490{left:208.880000pt;}
.xb_c00490{left:262.893333pt;}
.x15_c00490{left:265.133333pt;}
.xc_c00490{left:285.933333pt;}
.x16_c00490{left:293.546667pt;}
.x5_c00490{left:336.173333pt;}
.x17_c00490{left:373.386667pt;}
.x6_c00490{left:391.240000pt;}
.x9_c00490{left:395.333333pt;}
.xa_c00490{left:411.960000pt;}
.x12_c00490{left:454.226667pt;}
.xd_c00490{left:484.066667pt;}
.xe_c00490{left:560.160000pt;}
.xf_c00490{left:578.440000pt;}
.x13_c00490{left:626.413333pt;}
}





/* 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_c00491 {
    display:none;
  }
  .loading-indicator_c00491.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00491 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_c00491 { 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_c00491" -> "#page-container .classname_c00491")
 */
.pf_c00491 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00491 { /* 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_c00491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00491 { /* 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_c00491 { /* 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_c00491 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00491 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00491 {overflow:visible;}
  }
}
.c_c00491 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00491 { /* 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_c00491:after { /* webkit #35443 */
  content: '';
}
.t_c00491:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00491 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 */
}
.__c00491 { /* 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_c00491 { /* info for Javascript */
  display:none;
}
.l_c00491 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00491 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00491 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00491: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_c00491 {
    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_c00491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00491.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_c00491 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00491{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00491;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.311035;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_c00491;src:url('chunks/assets/font_f22121b612dfa7c4a1b03c7e.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.284668;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_c00491;src:url('chunks/assets/font_93fe0fb198b0e9f8eaa1e787.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.284180;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_c00491;src:url('chunks/assets/font_6d9c6b7b9c5d5c3bbc0be6b8.woff2')format("woff");}.ff4_c00491{font-family:ff4_c00491;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:ff5_c00491;src:url('chunks/assets/font_3bb301c9afb25cc8018cdd04.woff2')format("woff");}.ff5_c00491{font-family:ff5_c00491;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;}
.m1_c00491{transform:matrix(0.186869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186869,0.000000,0.000000,0.250000,0,0);}
.m7_c00491{transform:matrix(0.221571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221571,0.000000,0.000000,0.250000,0,0);}
.ma_c00491{transform:matrix(0.231002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231002,0.000000,0.000000,0.250000,0,0);}
.m4_c00491{transform:matrix(0.233946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233946,0.000000,0.000000,0.250000,0,0);}
.m3_c00491{transform:matrix(0.237239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237239,0.000000,0.000000,0.250000,0,0);}
.m2_c00491{transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);}
.m5_c00491{transform:matrix(0.247793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247793,0.000000,0.000000,0.250000,0,0);}
.m9_c00491{transform:matrix(0.247996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247996,0.000000,0.000000,0.250000,0,0);}
.m0_c00491{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);}
.m6_c00491{transform:matrix(0.258374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258374,0.000000,0.000000,0.250000,0,0);}
.m8_c00491{transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls7f_c00491{letter-spacing:-2.415000px;}
.ls75_c00491{letter-spacing:-2.373000px;}
.ls80_c00491{letter-spacing:-2.242500px;}
.ls85_c00491{letter-spacing:-2.034000px;}
.ls84_c00491{letter-spacing:-1.649100px;}
.ls70_c00491{letter-spacing:-1.518720px;}
.ls81_c00491{letter-spacing:-1.359300px;}
.ls87_c00491{letter-spacing:-1.274640px;}
.ls9c_c00491{letter-spacing:-1.166100px;}
.ls8d_c00491{letter-spacing:-0.883200px;}
.ls96_c00491{letter-spacing:-0.869400px;}
.ls8c_c00491{letter-spacing:-0.627900px;}
.ls7a_c00491{letter-spacing:-0.603420px;}
.ls78_c00491{letter-spacing:-0.600300px;}
.ls89_c00491{letter-spacing:-0.586500px;}
.ls76_c00491{letter-spacing:-0.450000px;}
.ls9b_c00491{letter-spacing:-0.414000px;}
.ls77_c00491{letter-spacing:-0.413580px;}
.ls7d_c00491{letter-spacing:-0.345780px;}
.ls9e_c00491{letter-spacing:-0.324300px;}
.ls7b_c00491{letter-spacing:-0.277980px;}
.ls79_c00491{letter-spacing:-0.276000px;}
.ls9f_c00491{letter-spacing:-0.257640px;}
.ls9d_c00491{letter-spacing:-0.234600px;}
.ls72_c00491{letter-spacing:-0.189840px;}
.ls8e_c00491{letter-spacing:-0.162720px;}
.ls91_c00491{letter-spacing:-0.115260px;}
.ls97_c00491{letter-spacing:-0.082800px;}
.ls9a_c00491{letter-spacing:-0.075900px;}
.ls88_c00491{letter-spacing:-0.069000px;}
.ls71_c00491{letter-spacing:0.000000px;}
.ls8_c00491{letter-spacing:0.033900px;}
.ls1c_c00491{letter-spacing:0.094920px;}
.ls86_c00491{letter-spacing:0.101700px;}
.ls18_c00491{letter-spacing:0.131100px;}
.ls3e_c00491{letter-spacing:0.162720px;}
.ls1f_c00491{letter-spacing:0.169500px;}
.ls38_c00491{letter-spacing:0.216960px;}
.ls6e_c00491{letter-spacing:0.223740px;}
.ls48_c00491{letter-spacing:0.244080px;}
.ls26_c00491{letter-spacing:0.257640px;}
.lsa0_c00491{letter-spacing:0.270480px;}
.ls64_c00491{letter-spacing:0.271200px;}
.ls35_c00491{letter-spacing:0.276000px;}
.ls93_c00491{letter-spacing:0.311880px;}
.ls58_c00491{letter-spacing:0.332220px;}
.lsf_c00491{letter-spacing:0.372900px;}
.ls11_c00491{letter-spacing:0.386460px;}
.ls2e_c00491{letter-spacing:0.406800px;}
.ls51_c00491{letter-spacing:0.427140px;}
.ls63_c00491{letter-spacing:0.448500px;}
.ls61_c00491{letter-spacing:0.455400px;}
.ls3c_c00491{letter-spacing:0.461040px;}
.ls6c_c00491{letter-spacing:0.483000px;}
.ls2_c00491{letter-spacing:0.501720px;}
.ls95_c00491{letter-spacing:0.549180px;}
.ls5a_c00491{letter-spacing:0.552000px;}
.ls1b_c00491{letter-spacing:0.600300px;}
.ls5c_c00491{letter-spacing:0.644100px;}
.ls36_c00491{letter-spacing:0.690000px;}
.ls5e_c00491{letter-spacing:0.691560px;}
.ls7e_c00491{letter-spacing:0.698340px;}
.ls73_c00491{letter-spacing:0.717600px;}
.ls50_c00491{letter-spacing:0.732240px;}
.ls1a_c00491{letter-spacing:0.752100px;}
.ls6d_c00491{letter-spacing:0.752580px;}
.ls94_c00491{letter-spacing:0.759360px;}
.lsb_c00491{letter-spacing:0.793260px;}
.ls69_c00491{letter-spacing:0.813600px;}
.lsc_c00491{letter-spacing:0.827160px;}
.ls2d_c00491{letter-spacing:0.855600px;}
.ls92_c00491{letter-spacing:0.861060px;}
.ls4f_c00491{letter-spacing:0.915300px;}
.ls62_c00491{letter-spacing:0.917700px;}
.ls12_c00491{letter-spacing:1.003440px;}
.ls83_c00491{letter-spacing:1.010220px;}
.ls7c_c00491{letter-spacing:1.037340px;}
.ls60_c00491{letter-spacing:1.044120px;}
.ls82_c00491{letter-spacing:1.104000px;}
.ls17_c00491{letter-spacing:1.125480px;}
.ls45_c00491{letter-spacing:1.132260px;}
.ls40_c00491{letter-spacing:1.152600px;}
.ls90_c00491{letter-spacing:1.172940px;}
.ls9_c00491{letter-spacing:1.179720px;}
.ls29_c00491{letter-spacing:1.186500px;}
.ls28_c00491{letter-spacing:1.200060px;}
.lsa_c00491{letter-spacing:1.206840px;}
.ls34_c00491{letter-spacing:1.213620px;}
.ls2a_c00491{letter-spacing:1.227180px;}
.ls32_c00491{letter-spacing:1.240740px;}
.ls3b_c00491{letter-spacing:1.242000px;}
.ls98_c00491{letter-spacing:1.274640px;}
.ls5_c00491{letter-spacing:1.283400px;}
.ls15_c00491{letter-spacing:1.328880px;}
.ls6_c00491{letter-spacing:1.349220px;}
.ls5f_c00491{letter-spacing:1.356000px;}
.ls22_c00491{letter-spacing:1.369560px;}
.ls21_c00491{letter-spacing:1.389900px;}
.ls3_c00491{letter-spacing:1.393800px;}
.ls4a_c00491{letter-spacing:1.403460px;}
.ls19_c00491{letter-spacing:1.421400px;}
.ls20_c00491{letter-spacing:1.423800px;}
.lsd_c00491{letter-spacing:1.430580px;}
.ls3f_c00491{letter-spacing:1.450920px;}
.ls55_c00491{letter-spacing:1.457700px;}
.ls13_c00491{letter-spacing:1.464480px;}
.ls1_c00491{letter-spacing:1.471260px;}
.ls4_c00491{letter-spacing:1.476600px;}
.ls42_c00491{letter-spacing:1.478040px;}
.ls30_c00491{letter-spacing:1.498380px;}
.ls47_c00491{letter-spacing:1.511940px;}
.ls6a_c00491{letter-spacing:1.525500px;}
.ls52_c00491{letter-spacing:1.532280px;}
.ls66_c00491{letter-spacing:1.539060px;}
.ls8b_c00491{letter-spacing:1.566180px;}
.ls4b_c00491{letter-spacing:1.593300px;}
.ls14_c00491{letter-spacing:1.627200px;}
.ls1e_c00491{letter-spacing:1.640760px;}
.ls7_c00491{letter-spacing:1.661100px;}
.ls6f_c00491{letter-spacing:1.670340px;}
.ls33_c00491{letter-spacing:1.688220px;}
.ls16_c00491{letter-spacing:1.695000px;}
.ls2b_c00491{letter-spacing:1.701780px;}
.ls3a_c00491{letter-spacing:1.762800px;}
.ls2c_c00491{letter-spacing:1.769580px;}
.ls59_c00491{letter-spacing:1.789920px;}
.ls5d_c00491{letter-spacing:1.796700px;}
.ls4e_c00491{letter-spacing:1.817040px;}
.ls67_c00491{letter-spacing:1.823820px;}
.lse_c00491{letter-spacing:1.844160px;}
.ls25_c00491{letter-spacing:1.898400px;}
.ls46_c00491{letter-spacing:1.932300px;}
.ls8a_c00491{letter-spacing:1.966200px;}
.ls68_c00491{letter-spacing:1.993320px;}
.ls56_c00491{letter-spacing:2.006880px;}
.ls5b_c00491{letter-spacing:2.013660px;}
.ls1d_c00491{letter-spacing:2.034000px;}
.ls54_c00491{letter-spacing:2.054340px;}
.ls99_c00491{letter-spacing:2.142480px;}
.ls0_c00491{letter-spacing:2.230620px;}
.ls37_c00491{letter-spacing:2.318760px;}
.ls2f_c00491{letter-spacing:2.359440px;}
.ls65_c00491{letter-spacing:2.366220px;}
.ls27_c00491{letter-spacing:2.406900px;}
.ls3d_c00491{letter-spacing:2.420460px;}
.ls53_c00491{letter-spacing:2.447580px;}
.ls4d_c00491{letter-spacing:2.488260px;}
.ls23_c00491{letter-spacing:2.542500px;}
.ls4c_c00491{letter-spacing:2.569620px;}
.ls57_c00491{letter-spacing:2.576400px;}
.ls74_c00491{letter-spacing:2.583180px;}
.ls39_c00491{letter-spacing:2.603520px;}
.ls41_c00491{letter-spacing:2.617080px;}
.ls24_c00491{letter-spacing:2.759460px;}
.ls43_c00491{letter-spacing:2.946300px;}
.ls44_c00491{letter-spacing:3.030660px;}
.ls6b_c00491{letter-spacing:3.037440px;}
.ls49_c00491{letter-spacing:3.051000px;}
.ls10_c00491{letter-spacing:3.301860px;}
.ls31_c00491{letter-spacing:3.335760px;}
.ls8f_c00491{letter-spacing:3.390000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{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__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00491{word-spacing:-2.359440px;}
.ws5_c00491{word-spacing:-1.450920px;}
.wsb_c00491{word-spacing:0.000000px;}
.ws8_c00491{word-spacing:0.433920px;}
.ws7_c00491{word-spacing:1.837380px;}
.ws2_c00491{word-spacing:5.776560px;}
.ws6_c00491{word-spacing:6.590160px;}
.ws9_c00491{word-spacing:8.217360px;}
.ws0_c00491{word-spacing:9.088560px;}
.wsa_c00491{word-spacing:24.448680px;}
.ws4_c00491{word-spacing:26.833560px;}
.ws3_c00491{word-spacing:31.974480px;}
._f_c00491{margin-left:-15.526200px;}
._13_c00491{margin-left:-11.358480px;}
._12_c00491{margin-left:-8.257680px;}
._9_c00491{margin-left:-6.056220px;}
._5_c00491{margin-left:-4.495140px;}
._8_c00491{margin-left:-3.321840px;}
._6_c00491{margin-left:-1.389900px;}
._11_c00491{width:1.317660px;}
._7_c00491{width:2.542500px;}
._4_c00491{width:3.660840px;}
._b_c00491{width:5.397240px;}
._a_c00491{width:7.276500px;}
._0_c00491{width:8.855760px;}
._14_c00491{width:10.203900px;}
._d_c00491{width:11.378100px;}
._2_c00491{width:13.143840px;}
._16_c00491{width:14.190540px;}
._10_c00491{width:15.289200px;}
._1_c00491{width:17.234760px;}
._c_c00491{width:18.882900px;}
._3_c00491{width:20.977320px;}
._15_c00491{width:22.618200px;}
._17_c00491{width:23.708940px;}
._e_c00491{width:26.436600px;}
.fc0_c00491{color:transparent;}
.fs0_c00491{font-size:58.200000px;}
.fs4_c00491{font-size:58.800000px;}
.fs1_c00491{font-size:67.800000px;}
.fs2_c00491{font-size:69.000000px;}
.fs3_c00491{font-size:75.000000px;}
.y0_c00491{bottom:0.000000px;}
.y1e_c00491{bottom:70.920000px;}
.y1d_c00491{bottom:131.040000px;}
.y1c_c00491{bottom:162.360000px;}
.y1b_c00491{bottom:222.855000px;}
.y19_c00491{bottom:254.173050px;}
.y1a_c00491{bottom:254.175000px;}
.y18_c00491{bottom:316.091400px;}
.y17_c00491{bottom:347.415000px;}
.y16_c00491{bottom:378.372600px;}
.y15_c00491{bottom:439.935000px;}
.y14_c00491{bottom:439.942200px;}
.y13_c00491{bottom:470.520000px;}
.y12_c00491{bottom:531.360000px;}
.y11_c00491{bottom:563.032350px;}
.y10_c00491{bottom:594.007350px;}
.yf_c00491{bottom:624.975000px;}
.ye_c00491{bottom:686.520000px;}
.yc_c00491{bottom:748.434450px;}
.yd_c00491{bottom:748.440000px;}
.yb_c00491{bottom:779.775000px;}
.ya_c00491{bottom:841.695000px;}
.y9_c00491{bottom:872.295000px;}
.y8_c00491{bottom:872.302200px;}
.y7_c00491{bottom:902.880000px;}
.y6_c00491{bottom:964.818150px;}
.y5_c00491{bottom:995.040000px;}
.y4_c00491{bottom:1025.997600px;}
.y3_c00491{bottom:1087.560000px;}
.y2_c00491{bottom:1118.880000px;}
.y1_c00491{bottom:1195.560000px;}
.ha_c00491{height:57.708984px;}
.h2_c00491{height:58.654687px;}
.h4_c00491{height:66.541992px;}
.h9_c00491{height:66.572592px;}
.h3_c00491{height:67.686035px;}
.h7_c00491{height:67.708235px;}
.h5_c00491{height:70.713281px;}
.h8_c00491{height:71.964844px;}
.h6_c00491{height:78.232256px;}
.h1_c00491{height:1263.000000px;}
.h0_c00491{height:1263.240000px;}
.w1_c00491{width:892.500000px;}
.w0_c00491{width:892.800000px;}
.x0_c00491{left:0.000000px;}
.xd_c00491{left:123.960000px;}
.xa_c00491{left:125.625000px;}
.x5_c00491{left:126.644850px;}
.x2_c00491{left:128.010000px;}
.x1_c00491{left:129.150000px;}
.x3_c00491{left:174.555000px;}
.x4_c00491{left:189.540000px;}
.xe_c00491{left:201.660000px;}
.x10_c00491{left:237.105000px;}
.x11_c00491{left:254.295000px;}
.xb_c00491{left:269.040000px;}
.x15_c00491{left:273.780000px;}
.x16_c00491{left:297.135000px;}
.xc_c00491{left:302.400000px;}
.x17_c00491{left:427.260000px;}
.x12_c00491{left:435.765000px;}
.x13_c00491{left:456.870000px;}
.x6_c00491{left:485.370000px;}
.x7_c00491{left:527.205000px;}
.xf_c00491{left:551.340000px;}
.x8_c00491{left:557.760000px;}
.x9_c00491{left:591.120000px;}
.x14_c00491{left:738.555000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls7f_c00491{letter-spacing:-2.146667pt;}
.ls75_c00491{letter-spacing:-2.109333pt;}
.ls80_c00491{letter-spacing:-1.993333pt;}
.ls85_c00491{letter-spacing:-1.808000pt;}
.ls84_c00491{letter-spacing:-1.465867pt;}
.ls70_c00491{letter-spacing:-1.349973pt;}
.ls81_c00491{letter-spacing:-1.208267pt;}
.ls87_c00491{letter-spacing:-1.133013pt;}
.ls9c_c00491{letter-spacing:-1.036533pt;}
.ls8d_c00491{letter-spacing:-0.785067pt;}
.ls96_c00491{letter-spacing:-0.772800pt;}
.ls8c_c00491{letter-spacing:-0.558133pt;}
.ls7a_c00491{letter-spacing:-0.536373pt;}
.ls78_c00491{letter-spacing:-0.533600pt;}
.ls89_c00491{letter-spacing:-0.521333pt;}
.ls76_c00491{letter-spacing:-0.400000pt;}
.ls9b_c00491{letter-spacing:-0.368000pt;}
.ls77_c00491{letter-spacing:-0.367627pt;}
.ls7d_c00491{letter-spacing:-0.307360pt;}
.ls9e_c00491{letter-spacing:-0.288267pt;}
.ls7b_c00491{letter-spacing:-0.247093pt;}
.ls79_c00491{letter-spacing:-0.245333pt;}
.ls9f_c00491{letter-spacing:-0.229013pt;}
.ls9d_c00491{letter-spacing:-0.208533pt;}
.ls72_c00491{letter-spacing:-0.168747pt;}
.ls8e_c00491{letter-spacing:-0.144640pt;}
.ls91_c00491{letter-spacing:-0.102453pt;}
.ls97_c00491{letter-spacing:-0.073600pt;}
.ls9a_c00491{letter-spacing:-0.067467pt;}
.ls88_c00491{letter-spacing:-0.061333pt;}
.ls71_c00491{letter-spacing:0.000000pt;}
.ls8_c00491{letter-spacing:0.030133pt;}
.ls1c_c00491{letter-spacing:0.084373pt;}
.ls86_c00491{letter-spacing:0.090400pt;}
.ls18_c00491{letter-spacing:0.116533pt;}
.ls3e_c00491{letter-spacing:0.144640pt;}
.ls1f_c00491{letter-spacing:0.150667pt;}
.ls38_c00491{letter-spacing:0.192853pt;}
.ls6e_c00491{letter-spacing:0.198880pt;}
.ls48_c00491{letter-spacing:0.216960pt;}
.ls26_c00491{letter-spacing:0.229013pt;}
.lsa0_c00491{letter-spacing:0.240427pt;}
.ls64_c00491{letter-spacing:0.241067pt;}
.ls35_c00491{letter-spacing:0.245333pt;}
.ls93_c00491{letter-spacing:0.277227pt;}
.ls58_c00491{letter-spacing:0.295307pt;}
.lsf_c00491{letter-spacing:0.331467pt;}
.ls11_c00491{letter-spacing:0.343520pt;}
.ls2e_c00491{letter-spacing:0.361600pt;}
.ls51_c00491{letter-spacing:0.379680pt;}
.ls63_c00491{letter-spacing:0.398667pt;}
.ls61_c00491{letter-spacing:0.404800pt;}
.ls3c_c00491{letter-spacing:0.409813pt;}
.ls6c_c00491{letter-spacing:0.429333pt;}
.ls2_c00491{letter-spacing:0.445973pt;}
.ls95_c00491{letter-spacing:0.488160pt;}
.ls5a_c00491{letter-spacing:0.490667pt;}
.ls1b_c00491{letter-spacing:0.533600pt;}
.ls5c_c00491{letter-spacing:0.572533pt;}
.ls36_c00491{letter-spacing:0.613333pt;}
.ls5e_c00491{letter-spacing:0.614720pt;}
.ls7e_c00491{letter-spacing:0.620747pt;}
.ls73_c00491{letter-spacing:0.637867pt;}
.ls50_c00491{letter-spacing:0.650880pt;}
.ls1a_c00491{letter-spacing:0.668533pt;}
.ls6d_c00491{letter-spacing:0.668960pt;}
.ls94_c00491{letter-spacing:0.674987pt;}
.lsb_c00491{letter-spacing:0.705120pt;}
.ls69_c00491{letter-spacing:0.723200pt;}
.lsc_c00491{letter-spacing:0.735253pt;}
.ls2d_c00491{letter-spacing:0.760533pt;}
.ls92_c00491{letter-spacing:0.765387pt;}
.ls4f_c00491{letter-spacing:0.813600pt;}
.ls62_c00491{letter-spacing:0.815733pt;}
.ls12_c00491{letter-spacing:0.891947pt;}
.ls83_c00491{letter-spacing:0.897973pt;}
.ls7c_c00491{letter-spacing:0.922080pt;}
.ls60_c00491{letter-spacing:0.928107pt;}
.ls82_c00491{letter-spacing:0.981333pt;}
.ls17_c00491{letter-spacing:1.000427pt;}
.ls45_c00491{letter-spacing:1.006453pt;}
.ls40_c00491{letter-spacing:1.024533pt;}
.ls90_c00491{letter-spacing:1.042613pt;}
.ls9_c00491{letter-spacing:1.048640pt;}
.ls29_c00491{letter-spacing:1.054667pt;}
.ls28_c00491{letter-spacing:1.066720pt;}
.lsa_c00491{letter-spacing:1.072747pt;}
.ls34_c00491{letter-spacing:1.078773pt;}
.ls2a_c00491{letter-spacing:1.090827pt;}
.ls32_c00491{letter-spacing:1.102880pt;}
.ls3b_c00491{letter-spacing:1.104000pt;}
.ls98_c00491{letter-spacing:1.133013pt;}
.ls5_c00491{letter-spacing:1.140800pt;}
.ls15_c00491{letter-spacing:1.181227pt;}
.ls6_c00491{letter-spacing:1.199307pt;}
.ls5f_c00491{letter-spacing:1.205333pt;}
.ls22_c00491{letter-spacing:1.217387pt;}
.ls21_c00491{letter-spacing:1.235467pt;}
.ls3_c00491{letter-spacing:1.238933pt;}
.ls4a_c00491{letter-spacing:1.247520pt;}
.ls19_c00491{letter-spacing:1.263467pt;}
.ls20_c00491{letter-spacing:1.265600pt;}
.lsd_c00491{letter-spacing:1.271627pt;}
.ls3f_c00491{letter-spacing:1.289707pt;}
.ls55_c00491{letter-spacing:1.295733pt;}
.ls13_c00491{letter-spacing:1.301760pt;}
.ls1_c00491{letter-spacing:1.307787pt;}
.ls4_c00491{letter-spacing:1.312533pt;}
.ls42_c00491{letter-spacing:1.313813pt;}
.ls30_c00491{letter-spacing:1.331893pt;}
.ls47_c00491{letter-spacing:1.343947pt;}
.ls6a_c00491{letter-spacing:1.356000pt;}
.ls52_c00491{letter-spacing:1.362027pt;}
.ls66_c00491{letter-spacing:1.368053pt;}
.ls8b_c00491{letter-spacing:1.392160pt;}
.ls4b_c00491{letter-spacing:1.416267pt;}
.ls14_c00491{letter-spacing:1.446400pt;}
.ls1e_c00491{letter-spacing:1.458453pt;}
.ls7_c00491{letter-spacing:1.476533pt;}
.ls6f_c00491{letter-spacing:1.484747pt;}
.ls33_c00491{letter-spacing:1.500640pt;}
.ls16_c00491{letter-spacing:1.506667pt;}
.ls2b_c00491{letter-spacing:1.512693pt;}
.ls3a_c00491{letter-spacing:1.566933pt;}
.ls2c_c00491{letter-spacing:1.572960pt;}
.ls59_c00491{letter-spacing:1.591040pt;}
.ls5d_c00491{letter-spacing:1.597067pt;}
.ls4e_c00491{letter-spacing:1.615147pt;}
.ls67_c00491{letter-spacing:1.621173pt;}
.lse_c00491{letter-spacing:1.639253pt;}
.ls25_c00491{letter-spacing:1.687467pt;}
.ls46_c00491{letter-spacing:1.717600pt;}
.ls8a_c00491{letter-spacing:1.747733pt;}
.ls68_c00491{letter-spacing:1.771840pt;}
.ls56_c00491{letter-spacing:1.783893pt;}
.ls5b_c00491{letter-spacing:1.789920pt;}
.ls1d_c00491{letter-spacing:1.808000pt;}
.ls54_c00491{letter-spacing:1.826080pt;}
.ls99_c00491{letter-spacing:1.904427pt;}
.ls0_c00491{letter-spacing:1.982773pt;}
.ls37_c00491{letter-spacing:2.061120pt;}
.ls2f_c00491{letter-spacing:2.097280pt;}
.ls65_c00491{letter-spacing:2.103307pt;}
.ls27_c00491{letter-spacing:2.139467pt;}
.ls3d_c00491{letter-spacing:2.151520pt;}
.ls53_c00491{letter-spacing:2.175627pt;}
.ls4d_c00491{letter-spacing:2.211787pt;}
.ls23_c00491{letter-spacing:2.260000pt;}
.ls4c_c00491{letter-spacing:2.284107pt;}
.ls57_c00491{letter-spacing:2.290133pt;}
.ls74_c00491{letter-spacing:2.296160pt;}
.ls39_c00491{letter-spacing:2.314240pt;}
.ls41_c00491{letter-spacing:2.326293pt;}
.ls24_c00491{letter-spacing:2.452853pt;}
.ls43_c00491{letter-spacing:2.618933pt;}
.ls44_c00491{letter-spacing:2.693920pt;}
.ls6b_c00491{letter-spacing:2.699947pt;}
.ls49_c00491{letter-spacing:2.712000pt;}
.ls10_c00491{letter-spacing:2.934987pt;}
.ls31_c00491{letter-spacing:2.965120pt;}
.ls8f_c00491{letter-spacing:3.013333pt;}
.ws1_c00491{word-spacing:-2.097280pt;}
.ws5_c00491{word-spacing:-1.289707pt;}
.wsb_c00491{word-spacing:0.000000pt;}
.ws8_c00491{word-spacing:0.385707pt;}
.ws7_c00491{word-spacing:1.633227pt;}
.ws2_c00491{word-spacing:5.134720pt;}
.ws6_c00491{word-spacing:5.857920pt;}
.ws9_c00491{word-spacing:7.304320pt;}
.ws0_c00491{word-spacing:8.078720pt;}
.wsa_c00491{word-spacing:21.732160pt;}
.ws4_c00491{word-spacing:23.852053pt;}
.ws3_c00491{word-spacing:28.421760pt;}
._f_c00491{margin-left:-13.801067pt;}
._13_c00491{margin-left:-10.096427pt;}
._12_c00491{margin-left:-7.340160pt;}
._9_c00491{margin-left:-5.383307pt;}
._5_c00491{margin-left:-3.995680pt;}
._8_c00491{margin-left:-2.952747pt;}
._6_c00491{margin-left:-1.235467pt;}
._11_c00491{width:1.171253pt;}
._7_c00491{width:2.260000pt;}
._4_c00491{width:3.254080pt;}
._b_c00491{width:4.797547pt;}
._a_c00491{width:6.468000pt;}
._0_c00491{width:7.871787pt;}
._14_c00491{width:9.070133pt;}
._d_c00491{width:10.113867pt;}
._2_c00491{width:11.683413pt;}
._16_c00491{width:12.613813pt;}
._10_c00491{width:13.590400pt;}
._1_c00491{width:15.319787pt;}
._c_c00491{width:16.784800pt;}
._3_c00491{width:18.646507pt;}
._15_c00491{width:20.105067pt;}
._17_c00491{width:21.074613pt;}
._e_c00491{width:23.499200pt;}
.fs0_c00491{font-size:51.733333pt;}
.fs4_c00491{font-size:52.266667pt;}
.fs1_c00491{font-size:60.266667pt;}
.fs2_c00491{font-size:61.333333pt;}
.fs3_c00491{font-size:66.666667pt;}
.y0_c00491{bottom:0.000000pt;}
.y1e_c00491{bottom:63.040000pt;}
.y1d_c00491{bottom:116.480000pt;}
.y1c_c00491{bottom:144.320000pt;}
.y1b_c00491{bottom:198.093333pt;}
.y19_c00491{bottom:225.931600pt;}
.y1a_c00491{bottom:225.933333pt;}
.y18_c00491{bottom:280.970133pt;}
.y17_c00491{bottom:308.813333pt;}
.y16_c00491{bottom:336.331200pt;}
.y15_c00491{bottom:391.053333pt;}
.y14_c00491{bottom:391.059733pt;}
.y13_c00491{bottom:418.240000pt;}
.y12_c00491{bottom:472.320000pt;}
.y11_c00491{bottom:500.473200pt;}
.y10_c00491{bottom:528.006533pt;}
.yf_c00491{bottom:555.533333pt;}
.ye_c00491{bottom:610.240000pt;}
.yc_c00491{bottom:665.275067pt;}
.yd_c00491{bottom:665.280000pt;}
.yb_c00491{bottom:693.133333pt;}
.ya_c00491{bottom:748.173333pt;}
.y9_c00491{bottom:775.373333pt;}
.y8_c00491{bottom:775.379733pt;}
.y7_c00491{bottom:802.560000pt;}
.y6_c00491{bottom:857.616133pt;}
.y5_c00491{bottom:884.480000pt;}
.y4_c00491{bottom:911.997867pt;}
.y3_c00491{bottom:966.720000pt;}
.y2_c00491{bottom:994.560000pt;}
.y1_c00491{bottom:1062.720000pt;}
.ha_c00491{height:51.296875pt;}
.h2_c00491{height:52.137500pt;}
.h4_c00491{height:59.148438pt;}
.h9_c00491{height:59.175638pt;}
.h3_c00491{height:60.165365pt;}
.h7_c00491{height:60.185098pt;}
.h5_c00491{height:62.856250pt;}
.h8_c00491{height:63.968750pt;}
.h6_c00491{height:69.539783pt;}
.h1_c00491{height:1122.666667pt;}
.h0_c00491{height:1122.880000pt;}
.w1_c00491{width:793.333333pt;}
.w0_c00491{width:793.600000pt;}
.x0_c00491{left:0.000000pt;}
.xd_c00491{left:110.186667pt;}
.xa_c00491{left:111.666667pt;}
.x5_c00491{left:112.573200pt;}
.x2_c00491{left:113.786667pt;}
.x1_c00491{left:114.800000pt;}
.x3_c00491{left:155.160000pt;}
.x4_c00491{left:168.480000pt;}
.xe_c00491{left:179.253333pt;}
.x10_c00491{left:210.760000pt;}
.x11_c00491{left:226.040000pt;}
.xb_c00491{left:239.146667pt;}
.x15_c00491{left:243.360000pt;}
.x16_c00491{left:264.120000pt;}
.xc_c00491{left:268.800000pt;}
.x17_c00491{left:379.786667pt;}
.x12_c00491{left:387.346667pt;}
.x13_c00491{left:406.106667pt;}
.x6_c00491{left:431.440000pt;}
.x7_c00491{left:468.626667pt;}
.xf_c00491{left:490.080000pt;}
.x8_c00491{left:495.786667pt;}
.x9_c00491{left:525.440000pt;}
.x14_c00491{left:656.493333pt;}
}





/* 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_c00492 {
    display:none;
  }
  .loading-indicator_c00492.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00492 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_c00492 { 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_c00492" -> "#page-container .classname_c00492")
 */
.pf_c00492 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00492 { /* 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_c00492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00492 { /* 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_c00492 { /* 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_c00492 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00492 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00492 {overflow:visible;}
  }
}
.c_c00492 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00492 { /* 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_c00492:after { /* webkit #35443 */
  content: '';
}
.t_c00492:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00492 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 */
}
.__c00492 { /* 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_c00492 { /* info for Javascript */
  display:none;
}
.l_c00492 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00492 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00492 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00492: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_c00492 {
    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_c00492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00492.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_c00492 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00492{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00492;src:url('chunks/assets/font_30206512b5f043e29f7d8c7d.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.311035;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_c00492;src:url('chunks/assets/font_7f166cac9f9d3653ab96ffc6.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.284668;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_c00492;src:url('chunks/assets/font_e7dedcf6bef155c62b2eaf39.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.284180;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_c00492;src:url('chunks/assets/font_f6e7fa1e02d10e75f06930e1.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;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;}
.m1_c00492{transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);}
.m3_c00492{transform:matrix(0.244397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244397,0.000000,0.000000,0.250000,0,0);}
.m0_c00492{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);}
.m2_c00492{transform:matrix(0.267717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267717,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls22_c00492{letter-spacing:-2.478000px;}
.ls25_c00492{letter-spacing:-2.394000px;}
.ls26_c00492{letter-spacing:-1.648440px;}
.ls27_c00492{letter-spacing:-1.292760px;}
.ls20_c00492{letter-spacing:-1.032840px;}
.ls23_c00492{letter-spacing:-0.691560px;}
.ls28_c00492{letter-spacing:-0.623760px;}
.ls1b_c00492{letter-spacing:-0.567720px;}
.ls2a_c00492{letter-spacing:-0.552900px;}
.ls1a_c00492{letter-spacing:-0.501720px;}
.ls1f_c00492{letter-spacing:-0.218880px;}
.ls1e_c00492{letter-spacing:-0.136800px;}
.ls18_c00492{letter-spacing:-0.128820px;}
.ls1c_c00492{letter-spacing:0.000000px;}
.ls19_c00492{letter-spacing:0.033900px;}
.ls21_c00492{letter-spacing:0.123120px;}
.lsc_c00492{letter-spacing:0.250860px;}
.ls29_c00492{letter-spacing:0.325440px;}
.ls1_c00492{letter-spacing:0.406800px;}
.ls2_c00492{letter-spacing:0.501720px;}
.ls6_c00492{letter-spacing:0.515280px;}
.ls16_c00492{letter-spacing:0.526680px;}
.lsb_c00492{letter-spacing:0.596640px;}
.ls10_c00492{letter-spacing:0.615600px;}
.ls12_c00492{letter-spacing:0.670320px;}
.ls7_c00492{letter-spacing:0.711900px;}
.ls1d_c00492{letter-spacing:0.745560px;}
.ls8_c00492{letter-spacing:0.786480px;}
.ls11_c00492{letter-spacing:0.984960px;}
.ls14_c00492{letter-spacing:1.026000px;}
.ls4_c00492{letter-spacing:1.098360px;}
.ls9_c00492{letter-spacing:1.444140px;}
.ls5_c00492{letter-spacing:1.478040px;}
.lsa_c00492{letter-spacing:1.525500px;}
.ls17_c00492{letter-spacing:1.536480px;}
.lse_c00492{letter-spacing:1.634760px;}
.ls0_c00492{letter-spacing:1.647540px;}
.ls15_c00492{letter-spacing:1.688220px;}
.ls13_c00492{letter-spacing:1.689480px;}
.lsd_c00492{letter-spacing:2.099880px;}
.lsf_c00492{letter-spacing:2.202480px;}
.ls3_c00492{letter-spacing:2.773020px;}
.ls24_c00492{letter-spacing:3.420000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{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__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:-1.779240px;}
.ws1_c00492{word-spacing:0.000000px;}
._2_c00492{margin-left:-4.796880px;}
._3_c00492{margin-left:-3.634080px;}
._4_c00492{margin-left:-2.210280px;}
._0_c00492{margin-left:-1.091580px;}
._5_c00492{width:1.193280px;}
._8_c00492{width:2.435040px;}
._9_c00492{width:4.240800px;}
._1_c00492{width:6.644400px;}
._6_c00492{width:8.481780px;}
._7_c00492{width:9.999780px;}
._a_c00492{width:11.121840px;}
.fc0_c00492{color:transparent;}
.fs5_c00492{font-size:57.000000px;}
.fs0_c00492{font-size:58.200000px;}
.fs3_c00492{font-size:66.000000px;}
.fs1_c00492{font-size:67.800000px;}
.fs2_c00492{font-size:68.400000px;}
.fs4_c00492{font-size:70.800000px;}
.y0_c00492{bottom:0.000000px;}
.y6_c00492{bottom:72.360015px;}
.y5_c00492{bottom:1055.520015px;}
.y4_c00492{bottom:1055.526015px;}
.y3_c00492{bottom:1086.127365px;}
.y2_c00492{bottom:1117.095015px;}
.y1_c00492{bottom:1193.415015px;}
.h7_c00492{height:55.942383px;}
.h2_c00492{height:58.654687px;}
.h3_c00492{height:66.541992px;}
.h5_c00492{height:67.097461px;}
.h4_c00492{height:68.866538px;}
.h6_c00492{height:69.486328px;}
.h1_c00492{height:1263.000000px;}
.h0_c00492{height:1263.240015px;}
.w1_c00492{width:892.500000px;}
.w0_c00492{width:892.800015px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:126.630015px;}
.x2_c00492{left:127.818915px;}
.x3_c00492{left:352.125015px;}
.x4_c00492{left:370.365015px;}
.x8_c00492{left:422.580015px;}
.x5_c00492{left:454.500015px;}
.x6_c00492{left:483.495015px;}
.x7_c00492{left:516.405015px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls22_c00492{letter-spacing:-2.202667pt;}
.ls25_c00492{letter-spacing:-2.128000pt;}
.ls26_c00492{letter-spacing:-1.465280pt;}
.ls27_c00492{letter-spacing:-1.149120pt;}
.ls20_c00492{letter-spacing:-0.918080pt;}
.ls23_c00492{letter-spacing:-0.614720pt;}
.ls28_c00492{letter-spacing:-0.554453pt;}
.ls1b_c00492{letter-spacing:-0.504640pt;}
.ls2a_c00492{letter-spacing:-0.491467pt;}
.ls1a_c00492{letter-spacing:-0.445973pt;}
.ls1f_c00492{letter-spacing:-0.194560pt;}
.ls1e_c00492{letter-spacing:-0.121600pt;}
.ls18_c00492{letter-spacing:-0.114507pt;}
.ls1c_c00492{letter-spacing:0.000000pt;}
.ls19_c00492{letter-spacing:0.030133pt;}
.ls21_c00492{letter-spacing:0.109440pt;}
.lsc_c00492{letter-spacing:0.222987pt;}
.ls29_c00492{letter-spacing:0.289280pt;}
.ls1_c00492{letter-spacing:0.361600pt;}
.ls2_c00492{letter-spacing:0.445973pt;}
.ls6_c00492{letter-spacing:0.458027pt;}
.ls16_c00492{letter-spacing:0.468160pt;}
.lsb_c00492{letter-spacing:0.530347pt;}
.ls10_c00492{letter-spacing:0.547200pt;}
.ls12_c00492{letter-spacing:0.595840pt;}
.ls7_c00492{letter-spacing:0.632800pt;}
.ls1d_c00492{letter-spacing:0.662720pt;}
.ls8_c00492{letter-spacing:0.699093pt;}
.ls11_c00492{letter-spacing:0.875520pt;}
.ls14_c00492{letter-spacing:0.912000pt;}
.ls4_c00492{letter-spacing:0.976320pt;}
.ls9_c00492{letter-spacing:1.283680pt;}
.ls5_c00492{letter-spacing:1.313813pt;}
.lsa_c00492{letter-spacing:1.356000pt;}
.ls17_c00492{letter-spacing:1.365760pt;}
.lse_c00492{letter-spacing:1.453120pt;}
.ls0_c00492{letter-spacing:1.464480pt;}
.ls15_c00492{letter-spacing:1.500640pt;}
.ls13_c00492{letter-spacing:1.501760pt;}
.lsd_c00492{letter-spacing:1.866560pt;}
.lsf_c00492{letter-spacing:1.957760pt;}
.ls3_c00492{letter-spacing:2.464907pt;}
.ls24_c00492{letter-spacing:3.040000pt;}
.ws0_c00492{word-spacing:-1.581547pt;}
.ws1_c00492{word-spacing:0.000000pt;}
._2_c00492{margin-left:-4.263893pt;}
._3_c00492{margin-left:-3.230293pt;}
._4_c00492{margin-left:-1.964693pt;}
._0_c00492{margin-left:-0.970293pt;}
._5_c00492{width:1.060693pt;}
._8_c00492{width:2.164480pt;}
._9_c00492{width:3.769600pt;}
._1_c00492{width:5.906133pt;}
._6_c00492{width:7.539360pt;}
._7_c00492{width:8.888693pt;}
._a_c00492{width:9.886080pt;}
.fs5_c00492{font-size:50.666667pt;}
.fs0_c00492{font-size:51.733333pt;}
.fs3_c00492{font-size:58.666667pt;}
.fs1_c00492{font-size:60.266667pt;}
.fs2_c00492{font-size:60.800000pt;}
.fs4_c00492{font-size:62.933333pt;}
.y0_c00492{bottom:0.000000pt;}
.y6_c00492{bottom:64.320013pt;}
.y5_c00492{bottom:938.240013pt;}
.y4_c00492{bottom:938.245347pt;}
.y3_c00492{bottom:965.446547pt;}
.y2_c00492{bottom:992.973347pt;}
.y1_c00492{bottom:1060.813347pt;}
.h7_c00492{height:49.726562pt;}
.h2_c00492{height:52.137500pt;}
.h3_c00492{height:59.148438pt;}
.h5_c00492{height:59.642187pt;}
.h4_c00492{height:61.214700pt;}
.h6_c00492{height:61.765625pt;}
.h1_c00492{height:1122.666667pt;}
.h0_c00492{height:1122.880013pt;}
.w1_c00492{width:793.333333pt;}
.w0_c00492{width:793.600013pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:112.560013pt;}
.x2_c00492{left:113.616813pt;}
.x3_c00492{left:313.000013pt;}
.x4_c00492{left:329.213347pt;}
.x8_c00492{left:375.626680pt;}
.x5_c00492{left:404.000013pt;}
.x6_c00492{left:429.773347pt;}
.x7_c00492{left:459.026680pt;}
}





/* 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_c00493 {
    display:none;
  }
  .loading-indicator_c00493.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00493 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_c00493 { 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_c00493" -> "#page-container .classname_c00493")
 */
.pf_c00493 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00493 { /* 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_c00493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00493 { /* 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_c00493 { /* 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_c00493 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00493 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00493 {overflow:visible;}
  }
}
.c_c00493 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00493 { /* 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_c00493:after { /* webkit #35443 */
  content: '';
}
.t_c00493:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00493 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 */
}
.__c00493 { /* 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_c00493 { /* info for Javascript */
  display:none;
}
.l_c00493 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00493 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00493 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00493: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_c00493 {
    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_c00493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00493.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_c00493 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00493{font-family:sans-serif;visibility:hidden;}
.sc__c00493{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
}
.y0_c00493{bottom:0.000000px;}
.h1_c00493{height:1263.000000px;}
.h0_c00493{height:1263.240000px;}
.w1_c00493{width:892.500000px;}
.w0_c00493{width:892.800000px;}
.x0_c00493{left:0.000000px;}
@media print{
.y0_c00493{bottom:0.000000pt;}
.h1_c00493{height:1122.666667pt;}
.h0_c00493{height:1122.880000pt;}
.w1_c00493{width:793.333333pt;}
.w0_c00493{width:793.600000pt;}
.x0_c00493{left:0.000000pt;}
}





/* 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_c00494 {
    display:none;
  }
  .loading-indicator_c00494.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00494 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_c00494 { 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_c00494" -> "#page-container .classname_c00494")
 */
.pf_c00494 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00494 { /* 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_c00494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00494 { /* 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_c00494 { /* 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_c00494 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00494 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00494 {overflow:visible;}
  }
}
.c_c00494 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00494 { /* 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_c00494:after { /* webkit #35443 */
  content: '';
}
.t_c00494:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00494 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 */
}
.__c00494 { /* 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_c00494 { /* info for Javascript */
  display:none;
}
.l_c00494 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00494 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00494 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00494: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_c00494 {
    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_c00494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00494.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_c00494 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00494{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00494;src:url('chunks/assets/font_ab95ec98b0f3a68eba560ade.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00494{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_c00494{transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls1_c00494{letter-spacing:-2.434320px;}
.ls0_c00494{letter-spacing:2.840040px;}
.ls2_c00494{letter-spacing:3.403080px;}
.ls3_c00494{letter-spacing:4.140000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{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__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00494{word-spacing:0.000000px;}
._1_c00494{margin-left:-4.338720px;}
._0_c00494{width:8.462160px;}
.fc0_c00494{color:transparent;}
.fs0_c00494{font-size:82.800000px;}
.y0_c00494{bottom:0.000000px;}
.y1_c00494{bottom:644.775000px;}
.h2_c00494{height:81.263672px;}
.h1_c00494{height:1263.000000px;}
.h0_c00494{height:1263.240000px;}
.w1_c00494{width:892.500000px;}
.w0_c00494{width:892.800000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:323.040000px;}
.x2_c00494{left:482.670000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls1_c00494{letter-spacing:-2.163840pt;}
.ls0_c00494{letter-spacing:2.524480pt;}
.ls2_c00494{letter-spacing:3.024960pt;}
.ls3_c00494{letter-spacing:3.680000pt;}
.ws0_c00494{word-spacing:0.000000pt;}
._1_c00494{margin-left:-3.856640pt;}
._0_c00494{width:7.521920pt;}
.fs0_c00494{font-size:73.600000pt;}
.y0_c00494{bottom:0.000000pt;}
.y1_c00494{bottom:573.133333pt;}
.h2_c00494{height:72.234375pt;}
.h1_c00494{height:1122.666667pt;}
.h0_c00494{height:1122.880000pt;}
.w1_c00494{width:793.333333pt;}
.w0_c00494{width:793.600000pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:287.146667pt;}
.x2_c00494{left:429.040000pt;}
}





/* 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_c00495 {
    display:none;
  }
  .loading-indicator_c00495.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00495 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_c00495 { 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_c00495" -> "#page-container .classname_c00495")
 */
.pf_c00495 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00495 { /* 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_c00495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00495 { /* 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_c00495 { /* 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_c00495 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00495 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00495 {overflow:visible;}
  }
}
.c_c00495 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00495 { /* 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_c00495:after { /* webkit #35443 */
  content: '';
}
.t_c00495:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00495 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 */
}
.__c00495 { /* 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_c00495 { /* info for Javascript */
  display:none;
}
.l_c00495 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00495 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00495 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00495: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_c00495 {
    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_c00495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00495.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_c00495 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00495{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00495;src:url('chunks/assets/font_c391a81bcd063bcc4e1e94af.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.284668;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_c00495;src:url('chunks/assets/font_6292eafd0d13259b3df4b780.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.284180;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_c00495;src:url('chunks/assets/font_27303635b2074661a2cdaaca.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;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;}
.m7_c00495{transform:matrix(0.236223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236223,0.000000,0.000000,0.250000,0,0);}
.m5_c00495{transform:matrix(0.242730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242730,0.000000,0.000000,0.250000,0,0);}
.m2_c00495{transform:matrix(0.242964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242964,0.000000,0.000000,0.250000,0,0);}
.m4_c00495{transform:matrix(0.243114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243114,0.000000,0.000000,0.250000,0,0);}
.m3_c00495{transform:matrix(0.246339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246339,0.000000,0.000000,0.250000,0,0);}
.m1_c00495{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);}
.ma_c00495{transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);}
.m0_c00495{transform:matrix(0.258162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258162,0.000000,0.000000,0.250000,0,0);}
.m9_c00495{transform:matrix(0.264540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264540,0.000000,0.000000,0.250000,0,0);}
.m6_c00495{transform:matrix(0.265636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265636,0.000000,0.000000,0.250000,0,0);}
.m8_c00495{transform:matrix(0.278918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278918,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls16_c00495{letter-spacing:-2.058000px;}
.ls1f_c00495{letter-spacing:-1.974000px;}
.ls1b_c00495{letter-spacing:-1.890000px;}
.ls22_c00495{letter-spacing:-1.601760px;}
.ls19_c00495{letter-spacing:-1.178760px;}
.ls1c_c00495{letter-spacing:-0.705600px;}
.ls1a_c00495{letter-spacing:-0.355320px;}
.ls18_c00495{letter-spacing:-0.005880px;}
.ls15_c00495{letter-spacing:0.000000px;}
.ls8_c00495{letter-spacing:0.158760px;}
.ls1_c00495{letter-spacing:0.312120px;}
.ls2_c00495{letter-spacing:0.370440px;}
.ls6_c00495{letter-spacing:0.476280px;}
.ls7_c00495{letter-spacing:0.617400px;}
.ls1d_c00495{letter-spacing:0.682080px;}
.ls9_c00495{letter-spacing:0.721920px;}
.ls12_c00495{letter-spacing:0.750120px;}
.ls17_c00495{letter-spacing:1.043400px;}
.ls13_c00495{letter-spacing:1.077240px;}
.ls11_c00495{letter-spacing:1.167480px;}
.lsf_c00495{letter-spacing:1.195680px;}
.ls3_c00495{letter-spacing:1.240680px;}
.ls5_c00495{letter-spacing:1.460760px;}
.lsc_c00495{letter-spacing:1.477680px;}
.ls10_c00495{letter-spacing:1.500240px;}
.lse_c00495{letter-spacing:1.567920px;}
.ls4_c00495{letter-spacing:1.641240px;}
.lsd_c00495{letter-spacing:1.669920px;}
.lsb_c00495{letter-spacing:1.787880px;}
.ls20_c00495{letter-spacing:2.165760px;}
.ls1e_c00495{letter-spacing:2.640000px;}
.ls23_c00495{letter-spacing:2.790000px;}
.ls21_c00495{letter-spacing:2.820000px;}
.ls14_c00495{letter-spacing:3.060000px;}
.ls0_c00495{letter-spacing:3.182400px;}
.lsa_c00495{letter-spacing:6.147600px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{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__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00495{word-spacing:-15.577680px;}
.ws0_c00495{word-spacing:-15.560760px;}
.ws4_c00495{word-spacing:-15.267480px;}
.ws5_c00495{word-spacing:-15.177240px;}
.ws2_c00495{word-spacing:-14.700000px;}
.ws3_c00495{word-spacing:-13.994400px;}
.ws6_c00495{word-spacing:0.000000px;}
._4_c00495{margin-left:-4.452360px;}
._1_c00495{margin-left:-2.080800px;}
._3_c00495{width:1.358280px;}
._7_c00495{width:2.442120px;}
._5_c00495{width:4.138920px;}
._0_c00495{width:5.628840px;}
._6_c00495{width:11.405280px;}
._2_c00495{width:46.997160px;}
.fc0_c00495{color:transparent;}
.fs5_c00495{font-size:52.800000px;}
.fs3_c00495{font-size:54.000000px;}
.fs6_c00495{font-size:55.800000px;}
.fs2_c00495{font-size:56.400000px;}
.fs1_c00495{font-size:58.800000px;}
.fs0_c00495{font-size:61.200000px;}
.fs7_c00495{font-size:77.400000px;}
.fse_c00495{font-size:88.800000px;}
.fs4_c00495{font-size:91.200000px;}
.fs8_c00495{font-size:110.400000px;}
.fsb_c00495{font-size:112.200600px;}
.fsc_c00495{font-size:115.800000px;}
.fsa_c00495{font-size:128.400000px;}
.fs9_c00495{font-size:151.200600px;}
.fsd_c00495{font-size:186.000000px;}
.y0_c00495{bottom:0.000000px;}
.y6_c00495{bottom:86.553435px;}
.y5_c00495{bottom:125.179635px;}
.yb_c00495{bottom:132.318435px;}
.y4_c00495{bottom:143.058435px;}
.y3_c00495{bottom:424.848435px;}
.ya_c00495{bottom:482.793435px;}
.y9_c00495{bottom:482.794635px;}
.y8_c00495{bottom:500.673435px;}
.y16_c00495{bottom:517.833435px;}
.y15_c00495{bottom:529.998435px;}
.y14_c00495{bottom:560.748435px;}
.y13_c00495{bottom:575.058435px;}
.y12_c00495{bottom:587.208435px;}
.y11_c00495{bottom:605.088435px;}
.y10_c00495{bottom:620.118435px;}
.yf_c00495{bottom:635.853435px;}
.ye_c00495{bottom:662.313435px;}
.yd_c00495{bottom:692.358435px;}
.yc_c00495{bottom:713.808435px;}
.y2_c00495{bottom:771.033435px;}
.y7_c00495{bottom:909.063435px;}
.y1_c00495{bottom:1145.088435px;}
.h7_c00495{height:55.068750px;}
.h8_c00495{height:55.325977px;}
.h4_c00495{height:55.353516px;}
.h5_c00495{height:56.320312px;}
.h3_c00495{height:57.680273px;}
.h9_c00495{height:58.197656px;}
.h2_c00495{height:60.064453px;}
.ha_c00495{height:80.725781px;}
.h11_c00495{height:92.615625px;}
.h6_c00495{height:95.118750px;}
.hb_c00495{height:108.351562px;}
.he_c00495{height:110.118753px;}
.hf_c00495{height:120.775781px;}
.hd_c00495{height:126.017578px;}
.hc_c00495{height:157.697501px;}
.h10_c00495{height:193.992188px;}
.h1_c00495{height:1263.000000px;}
.h0_c00495{height:1263.099435px;}
.w1_c00495{width:892.500000px;}
.w0_c00495{width:892.609200px;}
.x0_c00495{left:0.000000px;}
.x3_c00495{left:133.592700px;}
.x5_c00495{left:147.185400px;}
.x4_c00495{left:148.907700px;}
.x1_c00495{left:390.422700px;}
.x6_c00495{left:419.792700px;}
.x2_c00495{left:429.032700px;}
.xb_c00495{left:464.762700px;}
.x7_c00495{left:475.067700px;}
.xc_c00495{left:479.672700px;}
.xf_c00495{left:483.432000px;}
.x8_c00495{left:491.507700px;}
.x10_c00495{left:599.207700px;}
.x11_c00495{left:611.942700px;}
.x9_c00495{left:629.867700px;}
.xd_c00495{left:637.727700px;}
.xa_c00495{left:652.952700px;}
.xe_c00495{left:657.242700px;}
.x12_c00495{left:659.192700px;}
.x13_c00495{left:678.692700px;}
.x16_c00495{left:875.582700px;}
.x15_c00495{left:877.337700px;}
.x14_c00495{left:878.492700px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls16_c00495{letter-spacing:-1.829333pt;}
.ls1f_c00495{letter-spacing:-1.754667pt;}
.ls1b_c00495{letter-spacing:-1.680000pt;}
.ls22_c00495{letter-spacing:-1.423787pt;}
.ls19_c00495{letter-spacing:-1.047787pt;}
.ls1c_c00495{letter-spacing:-0.627200pt;}
.ls1a_c00495{letter-spacing:-0.315840pt;}
.ls18_c00495{letter-spacing:-0.005227pt;}
.ls15_c00495{letter-spacing:0.000000pt;}
.ls8_c00495{letter-spacing:0.141120pt;}
.ls1_c00495{letter-spacing:0.277440pt;}
.ls2_c00495{letter-spacing:0.329280pt;}
.ls6_c00495{letter-spacing:0.423360pt;}
.ls7_c00495{letter-spacing:0.548800pt;}
.ls1d_c00495{letter-spacing:0.606293pt;}
.ls9_c00495{letter-spacing:0.641707pt;}
.ls12_c00495{letter-spacing:0.666773pt;}
.ls17_c00495{letter-spacing:0.927467pt;}
.ls13_c00495{letter-spacing:0.957547pt;}
.ls11_c00495{letter-spacing:1.037760pt;}
.lsf_c00495{letter-spacing:1.062827pt;}
.ls3_c00495{letter-spacing:1.102827pt;}
.ls5_c00495{letter-spacing:1.298453pt;}
.lsc_c00495{letter-spacing:1.313493pt;}
.ls10_c00495{letter-spacing:1.333547pt;}
.lse_c00495{letter-spacing:1.393707pt;}
.ls4_c00495{letter-spacing:1.458880pt;}
.lsd_c00495{letter-spacing:1.484373pt;}
.lsb_c00495{letter-spacing:1.589227pt;}
.ls20_c00495{letter-spacing:1.925120pt;}
.ls1e_c00495{letter-spacing:2.346667pt;}
.ls23_c00495{letter-spacing:2.480000pt;}
.ls21_c00495{letter-spacing:2.506667pt;}
.ls14_c00495{letter-spacing:2.720000pt;}
.ls0_c00495{letter-spacing:2.828800pt;}
.lsa_c00495{letter-spacing:5.464533pt;}
.ws1_c00495{word-spacing:-13.846827pt;}
.ws0_c00495{word-spacing:-13.831787pt;}
.ws4_c00495{word-spacing:-13.571093pt;}
.ws5_c00495{word-spacing:-13.490880pt;}
.ws2_c00495{word-spacing:-13.066667pt;}
.ws3_c00495{word-spacing:-12.439467pt;}
.ws6_c00495{word-spacing:0.000000pt;}
._4_c00495{margin-left:-3.957653pt;}
._1_c00495{margin-left:-1.849600pt;}
._3_c00495{width:1.207360pt;}
._7_c00495{width:2.170773pt;}
._5_c00495{width:3.679040pt;}
._0_c00495{width:5.003413pt;}
._6_c00495{width:10.138027pt;}
._2_c00495{width:41.775253pt;}
.fs5_c00495{font-size:46.933333pt;}
.fs3_c00495{font-size:48.000000pt;}
.fs6_c00495{font-size:49.600000pt;}
.fs2_c00495{font-size:50.133333pt;}
.fs1_c00495{font-size:52.266667pt;}
.fs0_c00495{font-size:54.400000pt;}
.fs7_c00495{font-size:68.800000pt;}
.fse_c00495{font-size:78.933333pt;}
.fs4_c00495{font-size:81.066667pt;}
.fs8_c00495{font-size:98.133333pt;}
.fsb_c00495{font-size:99.733867pt;}
.fsc_c00495{font-size:102.933333pt;}
.fsa_c00495{font-size:114.133333pt;}
.fs9_c00495{font-size:134.400533pt;}
.fsd_c00495{font-size:165.333333pt;}
.y0_c00495{bottom:0.000000pt;}
.y6_c00495{bottom:76.936387pt;}
.y5_c00495{bottom:111.270787pt;}
.yb_c00495{bottom:117.616387pt;}
.y4_c00495{bottom:127.163053pt;}
.y3_c00495{bottom:377.643053pt;}
.ya_c00495{bottom:429.149720pt;}
.y9_c00495{bottom:429.150787pt;}
.y8_c00495{bottom:445.043053pt;}
.y16_c00495{bottom:460.296387pt;}
.y15_c00495{bottom:471.109720pt;}
.y14_c00495{bottom:498.443053pt;}
.y13_c00495{bottom:511.163053pt;}
.y12_c00495{bottom:521.963053pt;}
.y11_c00495{bottom:537.856387pt;}
.y10_c00495{bottom:551.216387pt;}
.yf_c00495{bottom:565.203053pt;}
.ye_c00495{bottom:588.723053pt;}
.yd_c00495{bottom:615.429720pt;}
.yc_c00495{bottom:634.496387pt;}
.y2_c00495{bottom:685.363053pt;}
.y7_c00495{bottom:808.056387pt;}
.y1_c00495{bottom:1017.856387pt;}
.h7_c00495{height:48.950000pt;}
.h8_c00495{height:49.178646pt;}
.h4_c00495{height:49.203125pt;}
.h5_c00495{height:50.062500pt;}
.h3_c00495{height:51.271354pt;}
.h9_c00495{height:51.731250pt;}
.h2_c00495{height:53.390625pt;}
.ha_c00495{height:71.756250pt;}
.h11_c00495{height:82.325000pt;}
.h6_c00495{height:84.550000pt;}
.hb_c00495{height:96.312500pt;}
.he_c00495{height:97.883336pt;}
.hf_c00495{height:107.356250pt;}
.hd_c00495{height:112.015625pt;}
.hc_c00495{height:140.175556pt;}
.h10_c00495{height:172.437500pt;}
.h1_c00495{height:1122.666667pt;}
.h0_c00495{height:1122.755053pt;}
.w1_c00495{width:793.333333pt;}
.w0_c00495{width:793.430400pt;}
.x0_c00495{left:0.000000pt;}
.x3_c00495{left:118.749067pt;}
.x5_c00495{left:130.831467pt;}
.x4_c00495{left:132.362400pt;}
.x1_c00495{left:347.042400pt;}
.x6_c00495{left:373.149067pt;}
.x2_c00495{left:381.362400pt;}
.xb_c00495{left:413.122400pt;}
.x7_c00495{left:422.282400pt;}
.xc_c00495{left:426.375733pt;}
.xf_c00495{left:429.717333pt;}
.x8_c00495{left:436.895733pt;}
.x10_c00495{left:532.629067pt;}
.x11_c00495{left:543.949067pt;}
.x9_c00495{left:559.882400pt;}
.xd_c00495{left:566.869067pt;}
.xa_c00495{left:580.402400pt;}
.xe_c00495{left:584.215733pt;}
.x12_c00495{left:585.949067pt;}
.x13_c00495{left:603.282400pt;}
.x16_c00495{left:778.295733pt;}
.x15_c00495{left:779.855733pt;}
.x14_c00495{left:780.882400pt;}
}





/* 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_c00496 {
    display:none;
  }
  .loading-indicator_c00496.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00496 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_c00496 { 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_c00496" -> "#page-container .classname_c00496")
 */
.pf_c00496 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00496 { /* 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_c00496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00496 { /* 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_c00496 { /* 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_c00496 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00496 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00496 {overflow:visible;}
  }
}
.c_c00496 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00496 { /* 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_c00496:after { /* webkit #35443 */
  content: '';
}
.t_c00496:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00496 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 */
}
.__c00496 { /* 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_c00496 { /* info for Javascript */
  display:none;
}
.l_c00496 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00496 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00496 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00496: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_c00496 {
    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_c00496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00496.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_c00496 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00496{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00496;src:url('chunks/assets/font_94e08654ab989683db92bd3a.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.284180;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_c00496;src:url('chunks/assets/font_6260034e6471afebb9a81b7d.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;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_c00496;src:url('chunks/assets/font_788560e0a1f1aad6839ffeaf.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.284668;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;}
.m7_c00496{transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);}
.m6_c00496{transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);}
.m4_c00496{transform:matrix(0.233971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233971,0.000000,0.000000,0.250000,0,0);}
.m5_c00496{transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);}
.m8_c00496{transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);}
.m0_c00496{transform:matrix(0.248026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248026,0.000000,0.000000,0.250000,0,0);}
.m3_c00496{transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);}
.m1_c00496{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);}
.m9_c00496{transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);}
.m2_c00496{transform:matrix(0.292199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292199,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls14_c00496{letter-spacing:-3.801000px;}
.ls15_c00496{letter-spacing:-3.528000px;}
.ls12_c00496{letter-spacing:-2.184000px;}
.ls13_c00496{letter-spacing:-2.163000px;}
.lsd_c00496{letter-spacing:-2.016000px;}
.ls1a_c00496{letter-spacing:-0.597060px;}
.ls10_c00496{letter-spacing:0.000000px;}
.ls6_c00496{letter-spacing:0.097200px;}
.ls0_c00496{letter-spacing:0.201600px;}
.ls19_c00496{letter-spacing:0.401760px;}
.ls9_c00496{letter-spacing:0.610560px;}
.lsa_c00496{letter-spacing:0.875520px;}
.ls8_c00496{letter-spacing:0.927360px;}
.lsb_c00496{letter-spacing:0.967680px;}
.ls3_c00496{letter-spacing:1.175040px;}
.lsc_c00496{letter-spacing:1.198080px;}
.ls17_c00496{letter-spacing:1.226880px;}
.ls7_c00496{letter-spacing:1.347840px;}
.ls1b_c00496{letter-spacing:1.355940px;}
.ls4_c00496{letter-spacing:1.543680px;}
.ls1_c00496{letter-spacing:1.858140px;}
.ls5_c00496{letter-spacing:2.265480px;}
.ls16_c00496{letter-spacing:2.271060px;}
.lse_c00496{letter-spacing:2.350080px;}
.ls2_c00496{letter-spacing:2.534400px;}
.lsf_c00496{letter-spacing:2.640000px;}
.ls18_c00496{letter-spacing:2.790000px;}
.ls11_c00496{letter-spacing:2.901600px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{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__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00496{word-spacing:-16.221060px;}
.ws0_c00496{word-spacing:-15.808140px;}
.ws2_c00496{word-spacing:-15.327360px;}
.ws1_c00496{word-spacing:-15.109200px;}
.ws3_c00496{word-spacing:-15.010560px;}
.ws5_c00496{word-spacing:0.000000px;}
._4_c00496{margin-left:-13.733520px;}
._1_c00496{margin-left:-4.911360px;}
._3_c00496{margin-left:-3.835680px;}
._0_c00496{margin-left:-2.500320px;}
._2_c00496{width:3.965280px;}
._5_c00496{width:7.116180px;}
.fc0_c00496{color:transparent;}
.fs1_c00496{font-size:52.800000px;}
.fs3_c00496{font-size:54.000000px;}
.fs2_c00496{font-size:55.800000px;}
.fs0_c00496{font-size:57.600000px;}
.fs5_c00496{font-size:61.800000px;}
.fs4_c00496{font-size:62.400000px;}
.fs9_c00496{font-size:73.200000px;}
.fsd_c00496{font-size:77.400000px;}
.fs7_c00496{font-size:100.800000px;}
.fs6_c00496{font-size:108.600000px;}
.fsf_c00496{font-size:112.200600px;}
.fsa_c00496{font-size:114.600000px;}
.fse_c00496{font-size:116.400000px;}
.fs8_c00496{font-size:123.600000px;}
.fsc_c00496{font-size:128.400000px;}
.fsb_c00496{font-size:151.200600px;}
.fs10_c00496{font-size:228.000000px;}
.y0_c00496{bottom:0.000000px;}
.y4_c00496{bottom:88.699050px;}
.y2_c00496{bottom:113.014050px;}
.ya_c00496{bottom:115.159050px;}
.y1_c00496{bottom:459.904050px;}
.y9_c00496{bottom:461.329050px;}
.y14_c00496{bottom:526.414050px;}
.y13_c00496{bottom:562.894050px;}
.y12_c00496{bottom:577.909050px;}
.y11_c00496{bottom:590.074050px;}
.y10_c00496{bottom:608.674050px;}
.yf_c00496{bottom:625.834050px;}
.ye_c00496{bottom:638.704050px;}
.yd_c00496{bottom:664.459050px;}
.yc_c00496{bottom:694.504050px;}
.yb_c00496{bottom:716.674050px;}
.y8_c00496{bottom:757.444050px;}
.y7_c00496{bottom:981.304050px;}
.y6_c00496{bottom:1075.714050px;}
.y5_c00496{bottom:1084.294050px;}
.y3_c00496{bottom:1147.954050px;}
.h4_c00496{height:54.764648px;}
.h3_c00496{height:55.068750px;}
.h12_c00496{height:56.320312px;}
.h2_c00496{height:56.503125px;}
.ha_c00496{height:58.197656px;}
.h6_c00496{height:60.653320px;}
.h5_c00496{height:61.242188px;}
.hb_c00496{height:76.345312px;}
.hf_c00496{height:80.725781px;}
.h10_c00496{height:98.929688px;}
.h8_c00496{height:105.131250px;}
.h13_c00496{height:110.118753px;}
.hc_c00496{height:112.473633px;}
.h7_c00496{height:113.266406px;}
.h9_c00496{height:121.306641px;}
.h11_c00496{height:121.401562px;}
.he_c00496{height:126.017578px;}
.hd_c00496{height:157.697501px;}
.h14_c00496{height:223.769531px;}
.h1_c00496{height:1263.000000px;}
.h0_c00496{height:1263.100050px;}
.w1_c00496{width:892.500000px;}
.w0_c00496{width:892.609365px;}
.x0_c00496{left:0.000000px;}
.x1_c00496{left:150.143865px;}
.x5_c00496{left:151.493865px;}
.x2_c00496{left:166.058865px;}
.x6_c00496{left:180.278865px;}
.x3_c00496{left:261.503865px;}
.x4_c00496{left:282.458865px;}
.x7_c00496{left:399.728865px;}
.x9_c00496{left:431.213865px;}
.x8_c00496{left:470.423865px;}
.xa_c00496{left:525.803865px;}
.xb_c00496{left:536.078865px;}
.xf_c00496{left:549.518865px;}
.x13_c00496{left:550.583865px;}
.x10_c00496{left:564.443865px;}
.xc_c00496{left:583.463865px;}
.x11_c00496{left:672.068865px;}
.x12_c00496{left:691.568865px;}
.xd_c00496{left:712.808865px;}
.xe_c00496{left:733.058865px;}
.x15_c00496{left:875.693865px;}
.x14_c00496{left:877.793865px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls14_c00496{letter-spacing:-3.378667pt;}
.ls15_c00496{letter-spacing:-3.136000pt;}
.ls12_c00496{letter-spacing:-1.941333pt;}
.ls13_c00496{letter-spacing:-1.922667pt;}
.lsd_c00496{letter-spacing:-1.792000pt;}
.ls1a_c00496{letter-spacing:-0.530720pt;}
.ls10_c00496{letter-spacing:0.000000pt;}
.ls6_c00496{letter-spacing:0.086400pt;}
.ls0_c00496{letter-spacing:0.179200pt;}
.ls19_c00496{letter-spacing:0.357120pt;}
.ls9_c00496{letter-spacing:0.542720pt;}
.lsa_c00496{letter-spacing:0.778240pt;}
.ls8_c00496{letter-spacing:0.824320pt;}
.lsb_c00496{letter-spacing:0.860160pt;}
.ls3_c00496{letter-spacing:1.044480pt;}
.lsc_c00496{letter-spacing:1.064960pt;}
.ls17_c00496{letter-spacing:1.090560pt;}
.ls7_c00496{letter-spacing:1.198080pt;}
.ls1b_c00496{letter-spacing:1.205280pt;}
.ls4_c00496{letter-spacing:1.372160pt;}
.ls1_c00496{letter-spacing:1.651680pt;}
.ls5_c00496{letter-spacing:2.013760pt;}
.ls16_c00496{letter-spacing:2.018720pt;}
.lse_c00496{letter-spacing:2.088960pt;}
.ls2_c00496{letter-spacing:2.252800pt;}
.lsf_c00496{letter-spacing:2.346667pt;}
.ls18_c00496{letter-spacing:2.480000pt;}
.ls11_c00496{letter-spacing:2.579200pt;}
.ws4_c00496{word-spacing:-14.418720pt;}
.ws0_c00496{word-spacing:-14.051680pt;}
.ws2_c00496{word-spacing:-13.624320pt;}
.ws1_c00496{word-spacing:-13.430400pt;}
.ws3_c00496{word-spacing:-13.342720pt;}
.ws5_c00496{word-spacing:0.000000pt;}
._4_c00496{margin-left:-12.207573pt;}
._1_c00496{margin-left:-4.365653pt;}
._3_c00496{margin-left:-3.409493pt;}
._0_c00496{margin-left:-2.222507pt;}
._2_c00496{width:3.524693pt;}
._5_c00496{width:6.325493pt;}
.fs1_c00496{font-size:46.933333pt;}
.fs3_c00496{font-size:48.000000pt;}
.fs2_c00496{font-size:49.600000pt;}
.fs0_c00496{font-size:51.200000pt;}
.fs5_c00496{font-size:54.933333pt;}
.fs4_c00496{font-size:55.466667pt;}
.fs9_c00496{font-size:65.066667pt;}
.fsd_c00496{font-size:68.800000pt;}
.fs7_c00496{font-size:89.600000pt;}
.fs6_c00496{font-size:96.533333pt;}
.fsf_c00496{font-size:99.733867pt;}
.fsa_c00496{font-size:101.866667pt;}
.fse_c00496{font-size:103.466667pt;}
.fs8_c00496{font-size:109.866667pt;}
.fsc_c00496{font-size:114.133333pt;}
.fsb_c00496{font-size:134.400533pt;}
.fs10_c00496{font-size:202.666667pt;}
.y0_c00496{bottom:0.000000pt;}
.y4_c00496{bottom:78.843600pt;}
.y2_c00496{bottom:100.456933pt;}
.ya_c00496{bottom:102.363600pt;}
.y1_c00496{bottom:408.803600pt;}
.y9_c00496{bottom:410.070267pt;}
.y14_c00496{bottom:467.923600pt;}
.y13_c00496{bottom:500.350267pt;}
.y12_c00496{bottom:513.696933pt;}
.y11_c00496{bottom:524.510267pt;}
.y10_c00496{bottom:541.043600pt;}
.yf_c00496{bottom:556.296933pt;}
.ye_c00496{bottom:567.736933pt;}
.yd_c00496{bottom:590.630267pt;}
.yc_c00496{bottom:617.336933pt;}
.yb_c00496{bottom:637.043600pt;}
.y8_c00496{bottom:673.283600pt;}
.y7_c00496{bottom:872.270267pt;}
.y6_c00496{bottom:956.190267pt;}
.y5_c00496{bottom:963.816933pt;}
.y3_c00496{bottom:1020.403600pt;}
.h4_c00496{height:48.679688pt;}
.h3_c00496{height:48.950000pt;}
.h12_c00496{height:50.062500pt;}
.h2_c00496{height:50.225000pt;}
.ha_c00496{height:51.731250pt;}
.h6_c00496{height:53.914062pt;}
.h5_c00496{height:54.437500pt;}
.hb_c00496{height:67.862500pt;}
.hf_c00496{height:71.756250pt;}
.h10_c00496{height:87.937500pt;}
.h8_c00496{height:93.450000pt;}
.h13_c00496{height:97.883336pt;}
.hc_c00496{height:99.976562pt;}
.h7_c00496{height:100.681250pt;}
.h9_c00496{height:107.828125pt;}
.h11_c00496{height:107.912500pt;}
.he_c00496{height:112.015625pt;}
.hd_c00496{height:140.175556pt;}
.h14_c00496{height:198.906250pt;}
.h1_c00496{height:1122.666667pt;}
.h0_c00496{height:1122.755600pt;}
.w1_c00496{width:793.333333pt;}
.w0_c00496{width:793.430547pt;}
.x0_c00496{left:0.000000pt;}
.x1_c00496{left:133.461213pt;}
.x5_c00496{left:134.661213pt;}
.x2_c00496{left:147.607880pt;}
.x6_c00496{left:160.247880pt;}
.x3_c00496{left:232.447880pt;}
.x4_c00496{left:251.074547pt;}
.x7_c00496{left:355.314547pt;}
.x9_c00496{left:383.301213pt;}
.x8_c00496{left:418.154547pt;}
.xa_c00496{left:467.381213pt;}
.xb_c00496{left:476.514547pt;}
.xf_c00496{left:488.461213pt;}
.x13_c00496{left:489.407880pt;}
.x10_c00496{left:501.727880pt;}
.xc_c00496{left:518.634547pt;}
.x11_c00496{left:597.394547pt;}
.x12_c00496{left:614.727880pt;}
.xd_c00496{left:633.607880pt;}
.xe_c00496{left:651.607880pt;}
.x15_c00496{left:778.394547pt;}
.x14_c00496{left:780.261213pt;}
}





/* 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_c00497 {
    display:none;
  }
  .loading-indicator_c00497.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00497 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_c00497 { 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_c00497" -> "#page-container .classname_c00497")
 */
.pf_c00497 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00497 { /* 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_c00497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00497 { /* 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_c00497 { /* 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_c00497 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00497 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00497 {overflow:visible;}
  }
}
.c_c00497 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00497 { /* 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_c00497:after { /* webkit #35443 */
  content: '';
}
.t_c00497:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00497 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 */
}
.__c00497 { /* 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_c00497 { /* info for Javascript */
  display:none;
}
.l_c00497 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00497 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00497 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00497: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_c00497 {
    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_c00497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00497.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_c00497 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00497{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00497;src:url('chunks/assets/font_3dfa509d1f548885d64335df.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;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:ff2_c00497;src:url('chunks/assets/font_d03ba787c4a5bbd7ff603fd6.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.284668;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_c00497;src:url('chunks/assets/font_816dfae5436cd038f07d25d6.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.284180;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_c00497;src:url('chunks/assets/font_9483c99246416698a65985f5.woff2')format("woff");}.ff4_c00497{font-family:ff4_c00497;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:ff5_c00497;src:url('chunks/assets/font_075d987599c62afbdee2694b.woff2')format("woff");}.ff5_c00497{font-family:ff5_c00497;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:ff6_c00497;src:url('chunks/assets/font_2d4e949df5bd328e1f7340a6.woff2')format("woff");}.ff6_c00497{font-family:ff6_c00497;line-height:0.666000;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;}
.m14_c00497{transform:matrix(0.106562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106562,0.000000,0.000000,0.250000,0,0);}
.m1b_c00497{transform:matrix(0.121906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121906,0.000000,0.000000,0.250000,0,0);}
.md_c00497{transform:matrix(0.127616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127616,0.000000,0.000000,0.250000,0,0);}
.m15_c00497{transform:matrix(0.130641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130641,0.000000,0.000000,0.250000,0,0);}
.m13_c00497{transform:matrix(0.145343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145343,0.000000,0.000000,0.250000,0,0);}
.m8_c00497{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.m1a_c00497{transform:matrix(0.176418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176418,0.000000,0.000000,0.250000,0,0);}
.m4_c00497{transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);}
.m5_c00497{transform:matrix(0.191160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191160,0.000000,0.000000,0.250000,0,0);}
.m17_c00497{transform:matrix(0.208240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208240,0.000000,0.000000,0.250000,0,0);}
.m19_c00497{transform:matrix(0.226566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226566,0.000000,0.000000,0.250000,0,0);}
.mb_c00497{transform:matrix(0.230727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230727,0.000000,0.000000,0.250000,0,0);}
.mc_c00497{transform:matrix(0.232852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232852,0.000000,0.000000,0.250000,0,0);}
.m16_c00497{transform:matrix(0.233737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233737,0.000000,0.000000,0.250000,0,0);}
.m3_c00497{transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);}
.m7_c00497{transform:matrix(0.245469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245469,0.000000,0.000000,0.250000,0,0);}
.ma_c00497{transform:matrix(0.248711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248711,0.000000,0.000000,0.250000,0,0);}
.m6_c00497{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);}
.m18_c00497{transform:matrix(0.250463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250463,0.000000,0.000000,0.250000,0,0);}
.m2_c00497{transform:matrix(0.254244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254244,0.000000,0.000000,0.250000,0,0);}
.m1_c00497{transform:matrix(0.257135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257135,0.000000,0.000000,0.250000,0,0);}
.m9_c00497{transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);}
.m12_c00497{transform:matrix(0.260161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260161,0.000000,0.000000,0.250000,0,0);}
.mf_c00497{transform:matrix(0.263518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263518,0.000000,0.000000,0.250000,0,0);}
.m0_c00497{transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);}
.m10_c00497{transform:matrix(0.312503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312503,0.000000,0.000000,0.250000,0,0);}
.me_c00497{transform:matrix(0.331861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331861,0.000000,0.000000,0.250000,0,0);}
.m11_c00497{transform:matrix(0.406248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406248,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.v1_c00497{vertical-align:51.480000px;}
.ls19_c00497{letter-spacing:-10.416000px;}
.ls25_c00497{letter-spacing:-6.384000px;}
.ls15_c00497{letter-spacing:-4.158000px;}
.ls18_c00497{letter-spacing:-4.053000px;}
.lsd_c00497{letter-spacing:-3.612021px;}
.ls12_c00497{letter-spacing:-2.310000px;}
.ls1e_c00497{letter-spacing:-2.121000px;}
.ls9_c00497{letter-spacing:-2.100000px;}
.lsb_c00497{letter-spacing:-2.037000px;}
.ls1a_c00497{letter-spacing:-1.995000px;}
.ls21_c00497{letter-spacing:-1.974000px;}
.ls14_c00497{letter-spacing:-1.432560px;}
.lsf_c00497{letter-spacing:-1.246440px;}
.ls1f_c00497{letter-spacing:-1.218240px;}
.ls22_c00497{letter-spacing:-1.190040px;}
.ls1d_c00497{letter-spacing:-0.715080px;}
.ls23_c00497{letter-spacing:-0.355320px;}
.ls1c_c00497{letter-spacing:-0.156600px;}
.ls13_c00497{letter-spacing:-0.065520px;}
.lsa_c00497{letter-spacing:0.000000px;}
.ls1_c00497{letter-spacing:0.097200px;}
.ls6_c00497{letter-spacing:0.101520px;}
.lse_c00497{letter-spacing:0.157920px;}
.ls4_c00497{letter-spacing:0.359100px;}
.ls0_c00497{letter-spacing:0.576180px;}
.ls2_c00497{letter-spacing:0.966420px;}
.lsc_c00497{letter-spacing:0.983580px;}
.ls24_c00497{letter-spacing:1.043400px;}
.ls7_c00497{letter-spacing:1.082880px;}
.ls5_c00497{letter-spacing:1.331520px;}
.ls10_c00497{letter-spacing:1.601760px;}
.ls1b_c00497{letter-spacing:1.920900px;}
.ls17_c00497{letter-spacing:1.950030px;}
.ls3_c00497{letter-spacing:2.515440px;}
.ls8_c00497{letter-spacing:2.610000px;}
.ls11_c00497{letter-spacing:2.700000px;}
.ls20_c00497{letter-spacing:2.820000px;}
.ls16_c00497{letter-spacing:2.910000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{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__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00497{word-spacing:-32.192400px;}
.ws1_c00497{word-spacing:-16.500000px;}
.ws6_c00497{word-spacing:-15.182880px;}
.ws0_c00497{word-spacing:-15.109200px;}
.ws2_c00497{word-spacing:-14.246640px;}
.ws4_c00497{word-spacing:-14.201520px;}
.ws5_c00497{word-spacing:-12.909960px;}
.ws7_c00497{word-spacing:0.000000px;}
._b_c00497{margin-left:-19.487400px;}
._9_c00497{margin-left:-15.864600px;}
._4_c00497{margin-left:-2.074200px;}
._0_c00497{width:1.565580px;}
._2_c00497{width:3.326400px;}
._5_c00497{width:5.231940px;}
._3_c00497{width:6.934200px;}
._1_c00497{width:10.056120px;}
._7_c00497{width:14.968800px;}
._a_c00497{width:28.079700px;}
._8_c00497{width:58.838400px;}
._6_c00497{width:409.679640px;}
.fc0_c00497{color:transparent;}
.fs12_c00497{font-size:22.887600px;}
.fs14_c00497{font-size:39.000600px;}
.fs1a_c00497{font-size:45.600000px;}
.fs0_c00497{font-size:52.200000px;}
.fs7_c00497{font-size:54.000000px;}
.fsa_c00497{font-size:54.600000px;}
.fs6_c00497{font-size:56.400000px;}
.fs19_c00497{font-size:57.000000px;}
.fs4_c00497{font-size:58.200000px;}
.fs1_c00497{font-size:60.000000px;}
.fs1c_c00497{font-size:60.600000px;}
.fs25_c00497{font-size:61.200000px;}
.fs9_c00497{font-size:65.400000px;}
.fs8_c00497{font-size:66.000000px;}
.fs13_c00497{font-size:68.400000px;}
.fse_c00497{font-size:70.800000px;}
.fs27_c00497{font-size:72.600000px;}
.fs18_c00497{font-size:76.200000px;}
.fs20_c00497{font-size:77.400000px;}
.fs11_c00497{font-size:78.000000px;}
.fsc_c00497{font-size:79.200000px;}
.fs1b_c00497{font-size:88.800000px;}
.fs5_c00497{font-size:103.200600px;}
.fs21_c00497{font-size:104.400000px;}
.fs2_c00497{font-size:112.200600px;}
.fs15_c00497{font-size:115.800000px;}
.fsb_c00497{font-size:118.200600px;}
.fsf_c00497{font-size:118.800000px;}
.fs1e_c00497{font-size:123.600000px;}
.fs24_c00497{font-size:127.200600px;}
.fs23_c00497{font-size:128.400000px;}
.fs10_c00497{font-size:141.600000px;}
.fs22_c00497{font-size:151.200600px;}
.fs1f_c00497{font-size:182.400000px;}
.fs26_c00497{font-size:186.000000px;}
.fsd_c00497{font-size:189.600000px;}
.fs17_c00497{font-size:214.200600px;}
.fs16_c00497{font-size:297.600000px;}
.fs1d_c00497{font-size:326.400600px;}
.fs3_c00497{font-size:414.600600px;}
.y0_c00497{bottom:0.000000px;}
.y19_c00497{bottom:88.702489px;}
.y18_c00497{bottom:140.914789px;}
.y17_c00497{bottom:158.074789px;}
.y5_c00497{bottom:167.370589px;}
.y6_c00497{bottom:167.374789px;}
.y16_c00497{bottom:240.319789px;}
.y1c_c00497{bottom:255.349789px;}
.y1b_c00497{bottom:271.789789px;}
.y15_c00497{bottom:295.399789px;}
.y1a_c00497{bottom:392.674789px;}
.y14_c00497{bottom:439.879789px;}
.y13_c00497{bottom:494.239789px;}
.y4_c00497{bottom:524.269789px;}
.y26_c00497{bottom:534.289789px;}
.y25_c00497{bottom:565.039789px;}
.y12_c00497{bottom:570.049789px;}
.y24_c00497{bottom:579.349789px;}
.y23_c00497{bottom:591.499790px;}
.y11_c00497{bottom:596.509790px;}
.y10_c00497{bottom:606.529789px;}
.y22_c00497{bottom:609.379789px;}
.y21_c00497{bottom:624.409789px;}
.y20_c00497{bottom:640.144790px;}
.yf_c00497{bottom:642.289789px;}
.y1f_c00497{bottom:666.604789px;}
.ye_c00497{bottom:669.469789px;}
.y3_c00497{bottom:694.504789px;}
.y1e_c00497{bottom:696.649789px;}
.yd_c00497{bottom:699.499790px;}
.yc_c00497{bottom:708.799789px;}
.y1d_c00497{bottom:718.099789px;}
.yb_c00497{bottom:735.259790px;}
.ya_c00497{bottom:748.144790px;}
.y9_c00497{bottom:796.774789px;}
.y2_c00497{bottom:811.789790px;}
.y1_c00497{bottom:870.439790px;}
.y8_c00497{bottom:924.079789px;}
.y7_c00497{bottom:1147.954790px;}
.h13_c00497{height:15.243142px;}
.h15_c00497{height:38.276956px;}
.h1a_c00497{height:47.559375px;}
.h2_c00497{height:54.442969px;}
.h8_c00497{height:55.353516px;}
.h19_c00497{height:55.914551px;}
.h9_c00497{height:56.320312px;}
.h6_c00497{height:57.091699px;}
.hc_c00497{height:58.823438px;}
.h3_c00497{height:58.886719px;}
.h1c_c00497{height:59.445996px;}
.h25_c00497{height:60.064453px;}
.h12_c00497{height:60.700781px;}
.hb_c00497{height:64.186523px;}
.ha_c00497{height:64.775391px;}
.h27_c00497{height:71.252930px;}
.h14_c00497{height:71.339063px;}
.he_c00497{height:73.842188px;}
.h20_c00497{height:80.725781px;}
.h11_c00497{height:81.351562px;}
.h1b_c00497{height:92.615625px;}
.h7_c00497{height:101.285745px;}
.h21_c00497{height:108.885937px;}
.h4_c00497{height:110.118753px;}
.h16_c00497{height:120.775781px;}
.h1e_c00497{height:121.306641px;}
.hf_c00497{height:123.904688px;}
.h24_c00497{height:124.840433px;}
.h23_c00497{height:126.017578px;}
.h10_c00497{height:147.684375px;}
.h22_c00497{height:157.697501px;}
.h1f_c00497{height:190.237500px;}
.h26_c00497{height:193.992188px;}
.h18_c00497{height:210.226175px;}
.hd_c00497{height:249.226875px;}
.h17_c00497{height:310.387500px;}
.h1d_c00497{height:340.425626px;}
.h5_c00497{height:406.907815px;}
.h1_c00497{height:1263.000000px;}
.h0_c00497{height:1263.099289px;}
.w1_c00497{width:892.500000px;}
.w0_c00497{width:892.608603px;}
.x0_c00497{left:0.000000px;}
.xa_c00497{left:146.559603px;}
.x1_c00497{left:148.659603px;}
.x2_c00497{left:161.289603px;}
.x3_c00497{left:220.839603px;}
.x9_c00497{left:221.859603px;}
.x8_c00497{left:257.739603px;}
.xb_c00497{left:278.184603px;}
.x4_c00497{left:283.779603px;}
.x5_c00497{left:303.024603px;}
.x6_c00497{left:311.019603px;}
.x7_c00497{left:323.694603px;}
.x10_c00497{left:393.279603px;}
.xc_c00497{left:395.424603px;}
.xd_c00497{left:418.329603px;}
.x2c_c00497{left:428.352003px;}
.xe_c00497{left:439.929603px;}
.x26_c00497{left:449.604603px;}
.x24_c00497{left:453.864603px;}
.x25_c00497{left:455.964603px;}
.xf_c00497{left:466.839603px;}
.x2b_c00497{left:468.339603px;}
.x18_c00497{left:522.834603px;}
.x27_c00497{left:525.534603px;}
.x19_c00497{left:531.429603px;}
.x20_c00497{left:535.569603px;}
.x1f_c00497{left:543.159603px;}
.x11_c00497{left:545.604603px;}
.x1a_c00497{left:546.729603px;}
.x21_c00497{left:550.449603px;}
.x1b_c00497{left:555.324603px;}
.x1c_c00497{left:562.824603px;}
.x12_c00497{left:570.279603px;}
.x1d_c00497{left:573.999603px;}
.x28_c00497{left:594.294603px;}
.x29_c00497{left:615.519603px;}
.x14_c00497{left:641.154603px;}
.x13_c00497{left:650.544603px;}
.x2a_c00497{left:658.734603px;}
.x17_c00497{left:674.724603px;}
.x1e_c00497{left:686.124603px;}
.x22_c00497{left:687.804603px;}
.x15_c00497{left:691.929603px;}
.x2e_c00497{left:694.704603px;}
.x23_c00497{left:707.319603px;}
.x16_c00497{left:708.849603px;}
.x2d_c00497{left:714.339603px;}
.x2f_c00497{left:877.059603px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.v1_c00497{vertical-align:45.760000pt;}
.ls19_c00497{letter-spacing:-9.258667pt;}
.ls25_c00497{letter-spacing:-5.674667pt;}
.ls15_c00497{letter-spacing:-3.696000pt;}
.ls18_c00497{letter-spacing:-3.602667pt;}
.lsd_c00497{letter-spacing:-3.210685pt;}
.ls12_c00497{letter-spacing:-2.053333pt;}
.ls1e_c00497{letter-spacing:-1.885333pt;}
.ls9_c00497{letter-spacing:-1.866667pt;}
.lsb_c00497{letter-spacing:-1.810667pt;}
.ls1a_c00497{letter-spacing:-1.773333pt;}
.ls21_c00497{letter-spacing:-1.754667pt;}
.ls14_c00497{letter-spacing:-1.273387pt;}
.lsf_c00497{letter-spacing:-1.107947pt;}
.ls1f_c00497{letter-spacing:-1.082880pt;}
.ls22_c00497{letter-spacing:-1.057813pt;}
.ls1d_c00497{letter-spacing:-0.635627pt;}
.ls23_c00497{letter-spacing:-0.315840pt;}
.ls1c_c00497{letter-spacing:-0.139200pt;}
.ls13_c00497{letter-spacing:-0.058240pt;}
.lsa_c00497{letter-spacing:0.000000pt;}
.ls1_c00497{letter-spacing:0.086400pt;}
.ls6_c00497{letter-spacing:0.090240pt;}
.lse_c00497{letter-spacing:0.140373pt;}
.ls4_c00497{letter-spacing:0.319200pt;}
.ls0_c00497{letter-spacing:0.512160pt;}
.ls2_c00497{letter-spacing:0.859040pt;}
.lsc_c00497{letter-spacing:0.874293pt;}
.ls24_c00497{letter-spacing:0.927467pt;}
.ls7_c00497{letter-spacing:0.962560pt;}
.ls5_c00497{letter-spacing:1.183573pt;}
.ls10_c00497{letter-spacing:1.423787pt;}
.ls1b_c00497{letter-spacing:1.707467pt;}
.ls17_c00497{letter-spacing:1.733360pt;}
.ls3_c00497{letter-spacing:2.235947pt;}
.ls8_c00497{letter-spacing:2.320000pt;}
.ls11_c00497{letter-spacing:2.400000pt;}
.ls20_c00497{letter-spacing:2.506667pt;}
.ls16_c00497{letter-spacing:2.586667pt;}
.ws3_c00497{word-spacing:-28.615467pt;}
.ws1_c00497{word-spacing:-14.666667pt;}
.ws6_c00497{word-spacing:-13.495893pt;}
.ws0_c00497{word-spacing:-13.430400pt;}
.ws2_c00497{word-spacing:-12.663680pt;}
.ws4_c00497{word-spacing:-12.623573pt;}
.ws5_c00497{word-spacing:-11.475520pt;}
.ws7_c00497{word-spacing:0.000000pt;}
._b_c00497{margin-left:-17.322133pt;}
._9_c00497{margin-left:-14.101867pt;}
._4_c00497{margin-left:-1.843733pt;}
._0_c00497{width:1.391627pt;}
._2_c00497{width:2.956800pt;}
._5_c00497{width:4.650613pt;}
._3_c00497{width:6.163733pt;}
._1_c00497{width:8.938773pt;}
._7_c00497{width:13.305600pt;}
._a_c00497{width:24.959733pt;}
._8_c00497{width:52.300800pt;}
._6_c00497{width:364.159680pt;}
.fs12_c00497{font-size:20.344533pt;}
.fs14_c00497{font-size:34.667200pt;}
.fs1a_c00497{font-size:40.533333pt;}
.fs0_c00497{font-size:46.400000pt;}
.fs7_c00497{font-size:48.000000pt;}
.fsa_c00497{font-size:48.533333pt;}
.fs6_c00497{font-size:50.133333pt;}
.fs19_c00497{font-size:50.666667pt;}
.fs4_c00497{font-size:51.733333pt;}
.fs1_c00497{font-size:53.333333pt;}
.fs1c_c00497{font-size:53.866667pt;}
.fs25_c00497{font-size:54.400000pt;}
.fs9_c00497{font-size:58.133333pt;}
.fs8_c00497{font-size:58.666667pt;}
.fs13_c00497{font-size:60.800000pt;}
.fse_c00497{font-size:62.933333pt;}
.fs27_c00497{font-size:64.533333pt;}
.fs18_c00497{font-size:67.733333pt;}
.fs20_c00497{font-size:68.800000pt;}
.fs11_c00497{font-size:69.333333pt;}
.fsc_c00497{font-size:70.400000pt;}
.fs1b_c00497{font-size:78.933333pt;}
.fs5_c00497{font-size:91.733867pt;}
.fs21_c00497{font-size:92.800000pt;}
.fs2_c00497{font-size:99.733867pt;}
.fs15_c00497{font-size:102.933333pt;}
.fsb_c00497{font-size:105.067200pt;}
.fsf_c00497{font-size:105.600000pt;}
.fs1e_c00497{font-size:109.866667pt;}
.fs24_c00497{font-size:113.067200pt;}
.fs23_c00497{font-size:114.133333pt;}
.fs10_c00497{font-size:125.866667pt;}
.fs22_c00497{font-size:134.400533pt;}
.fs1f_c00497{font-size:162.133333pt;}
.fs26_c00497{font-size:165.333333pt;}
.fsd_c00497{font-size:168.533333pt;}
.fs17_c00497{font-size:190.400533pt;}
.fs16_c00497{font-size:264.533333pt;}
.fs1d_c00497{font-size:290.133867pt;}
.fs3_c00497{font-size:368.533867pt;}
.y0_c00497{bottom:0.000000pt;}
.y19_c00497{bottom:78.846657pt;}
.y18_c00497{bottom:125.257591pt;}
.y17_c00497{bottom:140.510924pt;}
.y5_c00497{bottom:148.773857pt;}
.y6_c00497{bottom:148.777591pt;}
.y16_c00497{bottom:213.617591pt;}
.y1c_c00497{bottom:226.977591pt;}
.y1b_c00497{bottom:241.590924pt;}
.y15_c00497{bottom:262.577591pt;}
.y1a_c00497{bottom:349.044257pt;}
.y14_c00497{bottom:391.004257pt;}
.y13_c00497{bottom:439.324257pt;}
.y4_c00497{bottom:466.017591pt;}
.y26_c00497{bottom:474.924257pt;}
.y25_c00497{bottom:502.257591pt;}
.y12_c00497{bottom:506.710924pt;}
.y24_c00497{bottom:514.977591pt;}
.y23_c00497{bottom:525.777591pt;}
.y11_c00497{bottom:530.230924pt;}
.y10_c00497{bottom:539.137591pt;}
.y22_c00497{bottom:541.670924pt;}
.y21_c00497{bottom:555.030924pt;}
.y20_c00497{bottom:569.017591pt;}
.yf_c00497{bottom:570.924257pt;}
.y1f_c00497{bottom:592.537591pt;}
.ye_c00497{bottom:595.084257pt;}
.y3_c00497{bottom:617.337591pt;}
.y1e_c00497{bottom:619.244257pt;}
.yd_c00497{bottom:621.777591pt;}
.yc_c00497{bottom:630.044257pt;}
.y1d_c00497{bottom:638.310924pt;}
.yb_c00497{bottom:653.564257pt;}
.ya_c00497{bottom:665.017591pt;}
.y9_c00497{bottom:708.244257pt;}
.y2_c00497{bottom:721.590924pt;}
.y1_c00497{bottom:773.724257pt;}
.y8_c00497{bottom:821.404257pt;}
.y7_c00497{bottom:1020.404257pt;}
.h13_c00497{height:13.549459pt;}
.h15_c00497{height:34.023961pt;}
.h1a_c00497{height:42.275000pt;}
.h2_c00497{height:48.393750pt;}
.h8_c00497{height:49.203125pt;}
.h19_c00497{height:49.701823pt;}
.h9_c00497{height:50.062500pt;}
.h6_c00497{height:50.748177pt;}
.hc_c00497{height:52.287500pt;}
.h3_c00497{height:52.343750pt;}
.h1c_c00497{height:52.840885pt;}
.h25_c00497{height:53.390625pt;}
.h12_c00497{height:53.956250pt;}
.hb_c00497{height:57.054688pt;}
.ha_c00497{height:57.578125pt;}
.h27_c00497{height:63.335938pt;}
.h14_c00497{height:63.412500pt;}
.he_c00497{height:65.637500pt;}
.h20_c00497{height:71.756250pt;}
.h11_c00497{height:72.312500pt;}
.h1b_c00497{height:82.325000pt;}
.h7_c00497{height:90.031773pt;}
.h21_c00497{height:96.787500pt;}
.h4_c00497{height:97.883336pt;}
.h16_c00497{height:107.356250pt;}
.h1e_c00497{height:107.828125pt;}
.hf_c00497{height:110.137500pt;}
.h24_c00497{height:110.969273pt;}
.h23_c00497{height:112.015625pt;}
.h10_c00497{height:131.275000pt;}
.h22_c00497{height:140.175556pt;}
.h1f_c00497{height:169.100000pt;}
.h26_c00497{height:172.437500pt;}
.h18_c00497{height:186.867711pt;}
.hd_c00497{height:221.535000pt;}
.h17_c00497{height:275.900000pt;}
.h1d_c00497{height:302.600556pt;}
.h5_c00497{height:361.695836pt;}
.h1_c00497{height:1122.666667pt;}
.h0_c00497{height:1122.754924pt;}
.w1_c00497{width:793.333333pt;}
.w0_c00497{width:793.429869pt;}
.x0_c00497{left:0.000000pt;}
.xa_c00497{left:130.275203pt;}
.x1_c00497{left:132.141869pt;}
.x2_c00497{left:143.368536pt;}
.x3_c00497{left:196.301869pt;}
.x9_c00497{left:197.208536pt;}
.x8_c00497{left:229.101869pt;}
.xb_c00497{left:247.275203pt;}
.x4_c00497{left:252.248536pt;}
.x5_c00497{left:269.355203pt;}
.x6_c00497{left:276.461869pt;}
.x7_c00497{left:287.728536pt;}
.x10_c00497{left:349.581869pt;}
.xc_c00497{left:351.488536pt;}
.xd_c00497{left:371.848536pt;}
.x2c_c00497{left:380.757336pt;}
.xe_c00497{left:391.048536pt;}
.x26_c00497{left:399.648536pt;}
.x24_c00497{left:403.435203pt;}
.x25_c00497{left:405.301869pt;}
.xf_c00497{left:414.968536pt;}
.x2b_c00497{left:416.301869pt;}
.x18_c00497{left:464.741869pt;}
.x27_c00497{left:467.141869pt;}
.x19_c00497{left:472.381869pt;}
.x20_c00497{left:476.061869pt;}
.x1f_c00497{left:482.808536pt;}
.x11_c00497{left:484.981869pt;}
.x1a_c00497{left:485.981869pt;}
.x21_c00497{left:489.288536pt;}
.x1b_c00497{left:493.621869pt;}
.x1c_c00497{left:500.288536pt;}
.x12_c00497{left:506.915203pt;}
.x1d_c00497{left:510.221869pt;}
.x28_c00497{left:528.261869pt;}
.x29_c00497{left:547.128536pt;}
.x14_c00497{left:569.915203pt;}
.x13_c00497{left:578.261869pt;}
.x2a_c00497{left:585.541869pt;}
.x17_c00497{left:599.755203pt;}
.x1e_c00497{left:609.888536pt;}
.x22_c00497{left:611.381869pt;}
.x15_c00497{left:615.048536pt;}
.x2e_c00497{left:617.515203pt;}
.x23_c00497{left:628.728536pt;}
.x16_c00497{left:630.088536pt;}
.x2d_c00497{left:634.968536pt;}
.x2f_c00497{left:779.608536pt;}
}





/* 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_c00498 {
    display:none;
  }
  .loading-indicator_c00498.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00498 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_c00498 { 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_c00498" -> "#page-container .classname_c00498")
 */
.pf_c00498 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00498 { /* 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_c00498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00498 { /* 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_c00498 { /* 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_c00498 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00498 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00498 {overflow:visible;}
  }
}
.c_c00498 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00498 { /* 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_c00498:after { /* webkit #35443 */
  content: '';
}
.t_c00498:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00498 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 */
}
.__c00498 { /* 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_c00498 { /* info for Javascript */
  display:none;
}
.l_c00498 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00498 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00498 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00498: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_c00498 {
    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_c00498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00498.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_c00498 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00498{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00498;src:url('chunks/assets/font_03979408bde12c433c390fd7.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.284668;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_c00498;src:url('chunks/assets/font_fe1815216eb9be91eb7dfaeb.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.284180;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_c00498;src:url('chunks/assets/font_99dbafca0c952fddb117bf94.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;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;}
.m4_c00498{transform:matrix(0.191160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191160,0.000000,0.000000,0.250000,0,0);}
.m3_c00498{transform:matrix(0.208627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208627,0.000000,0.000000,0.250000,0,0);}
.m8_c00498{transform:matrix(0.228742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228742,0.000000,0.000000,0.250000,0,0);}
.m5_c00498{transform:matrix(0.235235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235235,0.000000,0.000000,0.250000,0,0);}
.m2_c00498{transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);}
.m7_c00498{transform:matrix(0.240663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240663,0.000000,0.000000,0.250000,0,0);}
.m1_c00498{transform:matrix(0.241714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241714,0.000000,0.000000,0.250000,0,0);}
.ma_c00498{transform:matrix(0.244168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244168,0.000000,0.000000,0.250000,0,0);}
.m9_c00498{transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);}
.m0_c00498{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);}
.m6_c00498{transform:matrix(0.254171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254171,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.v1_c00498{vertical-align:5.760000px;}
.ls1b_c00498{letter-spacing:-12.474021px;}
.lsf_c00498{letter-spacing:-2.205000px;}
.ls16_c00498{letter-spacing:-2.163000px;}
.ls13_c00498{letter-spacing:-2.100000px;}
.ls1c_c00498{letter-spacing:-2.058000px;}
.ls1f_c00498{letter-spacing:-2.016000px;}
.ls21_c00498{letter-spacing:-1.974000px;}
.ls15_c00498{letter-spacing:-1.969920px;}
.ls14_c00498{letter-spacing:-1.428000px;}
.ls17_c00498{letter-spacing:-1.174200px;}
.ls20_c00498{letter-spacing:-0.891120px;}
.ls10_c00498{letter-spacing:-0.768600px;}
.ls19_c00498{letter-spacing:-0.473100px;}
.ls1d_c00498{letter-spacing:-0.346920px;}
.ls1a_c00498{letter-spacing:-0.262200px;}
.ls1e_c00498{letter-spacing:-0.241080px;}
.ls11_c00498{letter-spacing:-0.101520px;}
.lse_c00498{letter-spacing:0.000000px;}
.ls1_c00498{letter-spacing:0.380160px;}
.ls3_c00498{letter-spacing:0.466560px;}
.ls0_c00498{letter-spacing:0.516600px;}
.ls8_c00498{letter-spacing:0.576240px;}
.lsb_c00498{letter-spacing:0.777600px;}
.lsa_c00498{letter-spacing:0.858480px;}
.ls12_c00498{letter-spacing:0.960960px;}
.ls2_c00498{letter-spacing:0.961920px;}
.ls7_c00498{letter-spacing:1.020300px;}
.ls5_c00498{letter-spacing:1.139280px;}
.lsd_c00498{letter-spacing:1.319760px;}
.ls22_c00498{letter-spacing:1.489860px;}
.lsc_c00498{letter-spacing:1.708920px;}
.ls6_c00498{letter-spacing:1.816080px;}
.ls4_c00498{letter-spacing:2.565000px;}
.ls18_c00498{letter-spacing:2.850000px;}
.ls9_c00498{letter-spacing:11.936400px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{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__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00498{word-spacing:-16.266600px;}
.wsa_c00498{word-spacing:-15.808920px;}
.ws8_c00498{word-spacing:-15.558480px;}
.ws6_c00498{word-spacing:-15.276240px;}
.ws9_c00498{word-spacing:-15.177600px;}
.ws2_c00498{word-spacing:-14.866560px;}
.ws7_c00498{word-spacing:-14.458920px;}
.ws3_c00498{word-spacing:-14.400000px;}
.ws5_c00498{word-spacing:-13.987800px;}
.ws4_c00498{word-spacing:-13.776900px;}
.ws1_c00498{word-spacing:-13.572000px;}
.wsb_c00498{word-spacing:0.000000px;}
._5_c00498{margin-left:-5.520000px;}
._4_c00498{margin-left:-4.515600px;}
._8_c00498{margin-left:-2.887680px;}
._7_c00498{margin-left:-1.103520px;}
._2_c00498{width:2.890800px;}
._3_c00498{width:4.686960px;}
._1_c00498{width:7.275600px;}
._0_c00498{width:9.979200px;}
._9_c00498{width:478.275600px;}
._6_c00498{width:741.513240px;}
.fc0_c00498{color:transparent;}
.fs3_c00498{font-size:52.800000px;}
.fs12_c00498{font-size:54.000000px;}
.fsa_c00498{font-size:55.800000px;}
.fs2_c00498{font-size:56.400000px;}
.fs7_c00498{font-size:57.000000px;}
.fs5_c00498{font-size:57.600000px;}
.fs9_c00498{font-size:58.800000px;}
.fs4_c00498{font-size:60.000000px;}
.fs6_c00498{font-size:61.800000px;}
.fs0_c00498{font-size:63.000000px;}
.fsb_c00498{font-size:73.200000px;}
.fsf_c00498{font-size:82.200000px;}
.fs15_c00498{font-size:84.600000px;}
.fs10_c00498{font-size:100.800000px;}
.fsc_c00498{font-size:108.600000px;}
.fs13_c00498{font-size:112.200600px;}
.fs11_c00498{font-size:120.000000px;}
.fs1_c00498{font-size:130.200600px;}
.fse_c00498{font-size:139.200600px;}
.fsd_c00498{font-size:147.000000px;}
.fs14_c00498{font-size:182.400000px;}
.fs8_c00498{font-size:356.400600px;}
.y0_c00498{bottom:0.000000px;}
.y9_c00498{bottom:87.268650px;}
.y7_c00498{bottom:133.033650px;}
.y8_c00498{bottom:134.473650px;}
.y6_c00498{bottom:406.258650px;}
.y5_c00498{bottom:479.923650px;}
.y14_c00498{bottom:519.973650px;}
.y13_c00498{bottom:531.418650px;}
.y12_c00498{bottom:561.463650px;}
.y11_c00498{bottom:576.478650px;}
.y10_c00498{bottom:588.643650px;}
.yf_c00498{bottom:607.243650px;}
.ye_c00498{bottom:620.833650px;}
.yd_c00498{bottom:637.273650px;}
.yc_c00498{bottom:663.748650px;}
.yb_c00498{bottom:693.073650px;}
.ya_c00498{bottom:718.813650px;}
.y4_c00498{bottom:851.848650px;}
.y3_c00498{bottom:869.728650px;}
.y2_c00498{bottom:976.303650px;}
.y1_c00498{bottom:1146.523650px;}
.he_c00498{height:54.764648px;}
.h4_c00498{height:55.325977px;}
.h8_c00498{height:55.942383px;}
.h16_c00498{height:56.320312px;}
.h6_c00498{height:56.531250px;}
.hb_c00498{height:57.680273px;}
.hd_c00498{height:58.823438px;}
.h5_c00498{height:58.886719px;}
.h7_c00498{height:60.623145px;}
.h9_c00498{height:61.702383px;}
.h2_c00498{height:61.831055px;}
.hc_c00498{height:64.583438px;}
.hf_c00498{height:76.345312px;}
.h13_c00498{height:80.674805px;}
.h19_c00498{height:83.030273px;}
.h14_c00498{height:98.929688px;}
.h17_c00498{height:110.118753px;}
.h10_c00498{height:113.266406px;}
.h15_c00498{height:117.773438px;}
.h3_c00498{height:127.784769px;}
.h12_c00498{height:136.617776px;}
.h11_c00498{height:153.316406px;}
.h18_c00498{height:190.237500px;}
.ha_c00498{height:349.787698px;}
.h1_c00498{height:1263.000000px;}
.h0_c00498{height:1263.099150px;}
.w1_c00498{width:892.500000px;}
.w0_c00498{width:892.608900px;}
.x0_c00498{left:0.000000px;}
.xb_c00498{left:147.987900px;}
.x11_c00498{left:162.777900px;}
.xc_c00498{left:179.442900px;}
.x10_c00498{left:202.377900px;}
.xd_c00498{left:222.987900px;}
.xe_c00498{left:270.897900px;}
.xf_c00498{left:291.042900px;}
.x5_c00498{left:312.402900px;}
.xa_c00498{left:328.872900px;}
.x12_c00498{left:338.142900px;}
.x13_c00498{left:357.537900px;}
.x1_c00498{left:397.587900px;}
.x16_c00498{left:428.367900px;}
.x6_c00498{left:438.987900px;}
.x2_c00498{left:441.372900px;}
.x7_c00498{left:458.232900px;}
.x8_c00498{left:466.212900px;}
.x3_c00498{left:468.252900px;}
.x9_c00498{left:478.887900px;}
.x4_c00498{left:525.882900px;}
.x14_c00498{left:637.872900px;}
.x15_c00498{left:657.642900px;}
.x18_c00498{left:876.372900px;}
.x17_c00498{left:877.692900px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.v1_c00498{vertical-align:5.120000pt;}
.ls1b_c00498{letter-spacing:-11.088019pt;}
.lsf_c00498{letter-spacing:-1.960000pt;}
.ls16_c00498{letter-spacing:-1.922667pt;}
.ls13_c00498{letter-spacing:-1.866667pt;}
.ls1c_c00498{letter-spacing:-1.829333pt;}
.ls1f_c00498{letter-spacing:-1.792000pt;}
.ls21_c00498{letter-spacing:-1.754667pt;}
.ls15_c00498{letter-spacing:-1.751040pt;}
.ls14_c00498{letter-spacing:-1.269333pt;}
.ls17_c00498{letter-spacing:-1.043733pt;}
.ls20_c00498{letter-spacing:-0.792107pt;}
.ls10_c00498{letter-spacing:-0.683200pt;}
.ls19_c00498{letter-spacing:-0.420533pt;}
.ls1d_c00498{letter-spacing:-0.308373pt;}
.ls1a_c00498{letter-spacing:-0.233067pt;}
.ls1e_c00498{letter-spacing:-0.214293pt;}
.ls11_c00498{letter-spacing:-0.090240pt;}
.lse_c00498{letter-spacing:0.000000pt;}
.ls1_c00498{letter-spacing:0.337920pt;}
.ls3_c00498{letter-spacing:0.414720pt;}
.ls0_c00498{letter-spacing:0.459200pt;}
.ls8_c00498{letter-spacing:0.512213pt;}
.lsb_c00498{letter-spacing:0.691200pt;}
.lsa_c00498{letter-spacing:0.763093pt;}
.ls12_c00498{letter-spacing:0.854187pt;}
.ls2_c00498{letter-spacing:0.855040pt;}
.ls7_c00498{letter-spacing:0.906933pt;}
.ls5_c00498{letter-spacing:1.012693pt;}
.lsd_c00498{letter-spacing:1.173120pt;}
.ls22_c00498{letter-spacing:1.324320pt;}
.lsc_c00498{letter-spacing:1.519040pt;}
.ls6_c00498{letter-spacing:1.614293pt;}
.ls4_c00498{letter-spacing:2.280000pt;}
.ls18_c00498{letter-spacing:2.533333pt;}
.ls9_c00498{letter-spacing:10.610133pt;}
.ws0_c00498{word-spacing:-14.459200pt;}
.wsa_c00498{word-spacing:-14.052373pt;}
.ws8_c00498{word-spacing:-13.829760pt;}
.ws6_c00498{word-spacing:-13.578880pt;}
.ws9_c00498{word-spacing:-13.491200pt;}
.ws2_c00498{word-spacing:-13.214720pt;}
.ws7_c00498{word-spacing:-12.852373pt;}
.ws3_c00498{word-spacing:-12.800000pt;}
.ws5_c00498{word-spacing:-12.433600pt;}
.ws4_c00498{word-spacing:-12.246133pt;}
.ws1_c00498{word-spacing:-12.064000pt;}
.wsb_c00498{word-spacing:0.000000pt;}
._5_c00498{margin-left:-4.906667pt;}
._4_c00498{margin-left:-4.013867pt;}
._8_c00498{margin-left:-2.566827pt;}
._7_c00498{margin-left:-0.980907pt;}
._2_c00498{width:2.569600pt;}
._3_c00498{width:4.166187pt;}
._1_c00498{width:6.467200pt;}
._0_c00498{width:8.870400pt;}
._9_c00498{width:425.133867pt;}
._6_c00498{width:659.122880pt;}
.fs3_c00498{font-size:46.933333pt;}
.fs12_c00498{font-size:48.000000pt;}
.fsa_c00498{font-size:49.600000pt;}
.fs2_c00498{font-size:50.133333pt;}
.fs7_c00498{font-size:50.666667pt;}
.fs5_c00498{font-size:51.200000pt;}
.fs9_c00498{font-size:52.266667pt;}
.fs4_c00498{font-size:53.333333pt;}
.fs6_c00498{font-size:54.933333pt;}
.fs0_c00498{font-size:56.000000pt;}
.fsb_c00498{font-size:65.066667pt;}
.fsf_c00498{font-size:73.066667pt;}
.fs15_c00498{font-size:75.200000pt;}
.fs10_c00498{font-size:89.600000pt;}
.fsc_c00498{font-size:96.533333pt;}
.fs13_c00498{font-size:99.733867pt;}
.fs11_c00498{font-size:106.666667pt;}
.fs1_c00498{font-size:115.733867pt;}
.fse_c00498{font-size:123.733867pt;}
.fsd_c00498{font-size:130.666667pt;}
.fs14_c00498{font-size:162.133333pt;}
.fs8_c00498{font-size:316.800533pt;}
.y0_c00498{bottom:0.000000pt;}
.y9_c00498{bottom:77.572133pt;}
.y7_c00498{bottom:118.252133pt;}
.y8_c00498{bottom:119.532133pt;}
.y6_c00498{bottom:361.118800pt;}
.y5_c00498{bottom:426.598800pt;}
.y14_c00498{bottom:462.198800pt;}
.y13_c00498{bottom:472.372133pt;}
.y12_c00498{bottom:499.078800pt;}
.y11_c00498{bottom:512.425467pt;}
.y10_c00498{bottom:523.238800pt;}
.yf_c00498{bottom:539.772133pt;}
.ye_c00498{bottom:551.852133pt;}
.yd_c00498{bottom:566.465467pt;}
.yc_c00498{bottom:589.998800pt;}
.yb_c00498{bottom:616.065467pt;}
.ya_c00498{bottom:638.945467pt;}
.y4_c00498{bottom:757.198800pt;}
.y3_c00498{bottom:773.092133pt;}
.y2_c00498{bottom:867.825467pt;}
.y1_c00498{bottom:1019.132133pt;}
.he_c00498{height:48.679688pt;}
.h4_c00498{height:49.178646pt;}
.h8_c00498{height:49.726562pt;}
.h16_c00498{height:50.062500pt;}
.h6_c00498{height:50.250000pt;}
.hb_c00498{height:51.271354pt;}
.hd_c00498{height:52.287500pt;}
.h5_c00498{height:52.343750pt;}
.h7_c00498{height:53.887240pt;}
.h9_c00498{height:54.846562pt;}
.h2_c00498{height:54.960938pt;}
.hc_c00498{height:57.407500pt;}
.hf_c00498{height:67.862500pt;}
.h13_c00498{height:71.710937pt;}
.h19_c00498{height:73.804688pt;}
.h14_c00498{height:87.937500pt;}
.h17_c00498{height:97.883336pt;}
.h10_c00498{height:100.681250pt;}
.h15_c00498{height:104.687500pt;}
.h3_c00498{height:113.586461pt;}
.h12_c00498{height:121.438023pt;}
.h11_c00498{height:136.281250pt;}
.h18_c00498{height:169.100000pt;}
.ha_c00498{height:310.922398pt;}
.h1_c00498{height:1122.666667pt;}
.h0_c00498{height:1122.754800pt;}
.w1_c00498{width:793.333333pt;}
.w0_c00498{width:793.430133pt;}
.x0_c00498{left:0.000000pt;}
.xb_c00498{left:131.544800pt;}
.x11_c00498{left:144.691467pt;}
.xc_c00498{left:159.504800pt;}
.x10_c00498{left:179.891467pt;}
.xd_c00498{left:198.211467pt;}
.xe_c00498{left:240.798133pt;}
.xf_c00498{left:258.704800pt;}
.x5_c00498{left:277.691467pt;}
.xa_c00498{left:292.331467pt;}
.x12_c00498{left:300.571467pt;}
.x13_c00498{left:317.811467pt;}
.x1_c00498{left:353.411467pt;}
.x16_c00498{left:380.771467pt;}
.x6_c00498{left:390.211467pt;}
.x2_c00498{left:392.331467pt;}
.x7_c00498{left:407.318133pt;}
.x8_c00498{left:414.411467pt;}
.x3_c00498{left:416.224800pt;}
.x9_c00498{left:425.678133pt;}
.x4_c00498{left:467.451467pt;}
.x14_c00498{left:566.998133pt;}
.x15_c00498{left:584.571467pt;}
.x18_c00498{left:778.998133pt;}
.x17_c00498{left:780.171467pt;}
}





/* 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_c00499 {
    display:none;
  }
  .loading-indicator_c00499.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00499 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_c00499 { 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_c00499" -> "#page-container .classname_c00499")
 */
.pf_c00499 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00499 { /* 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_c00499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00499 { /* 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_c00499 { /* 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_c00499 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00499 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00499 {overflow:visible;}
  }
}
.c_c00499 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00499 { /* 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_c00499:after { /* webkit #35443 */
  content: '';
}
.t_c00499:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00499 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 */
}
.__c00499 { /* 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_c00499 { /* info for Javascript */
  display:none;
}
.l_c00499 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00499 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00499 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00499: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_c00499 {
    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_c00499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00499.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_c00499 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00499{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00499;src:url('chunks/assets/font_6e0effe0ca1111b701519de4.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.284668;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_c00499;src:url('chunks/assets/font_b2bf38ca240c919c71bac52c.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.284180;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_c00499;src:url('chunks/assets/font_a1e875b9c7ce75672fcd7346.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:0.666000;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_c00499;src:url('chunks/assets/font_f9e1e9cf5e139130077f8979.woff2')format("woff");}.ff4_c00499{font-family:ff4_c00499;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:ff5_c00499;src:url('chunks/assets/font_23b315f0545d2f4b550448be.woff2')format("woff");}.ff5_c00499{font-family:ff5_c00499;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;}
.m9_c00499{transform:matrix(0.114551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114551,0.000000,0.000000,0.250000,0,0);}
.m5_c00499{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m4_c00499{transform:matrix(0.218908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218908,0.000000,0.000000,0.250000,0,0);}
.m1_c00499{transform:matrix(0.219714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219714,0.000000,0.000000,0.250000,0,0);}
.mb_c00499{transform:matrix(0.235569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235569,0.000000,0.000000,0.250000,0,0);}
.mc_c00499{transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);}
.m3_c00499{transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);}
.me_c00499{transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);}
.m0_c00499{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);}
.m8_c00499{transform:matrix(0.254087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254087,0.000000,0.000000,0.250000,0,0);}
.m6_c00499{transform:matrix(0.258932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258932,0.000000,0.000000,0.250000,0,0);}
.m7_c00499{transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);}
.ma_c00499{transform:matrix(0.264503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264503,0.000000,0.000000,0.250000,0,0);}
.md_c00499{transform:matrix(0.266791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266791,0.000000,0.000000,0.250000,0,0);}
.m2_c00499{transform:matrix(0.278218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278218,0.000000,0.000000,0.250000,0,0);}
.v1_c00499{vertical-align:-51.480000px;}
.v0_c00499{vertical-align:0.000000px;}
.ls16_c00499{letter-spacing:-6.153000px;}
.ls7_c00499{letter-spacing:-2.310000px;}
.lsd_c00499{letter-spacing:-2.121000px;}
.lsc_c00499{letter-spacing:-2.016000px;}
.ls1a_c00499{letter-spacing:-1.932000px;}
.ls18_c00499{letter-spacing:-1.827000px;}
.ls15_c00499{letter-spacing:-1.667040px;}
.ls12_c00499{letter-spacing:-1.283400px;}
.lse_c00499{letter-spacing:-0.739320px;}
.lsa_c00499{letter-spacing:-0.156000px;}
.ls8_c00499{letter-spacing:0.000000px;}
.ls6_c00499{letter-spacing:0.026400px;}
.ls1_c00499{letter-spacing:0.097200px;}
.ls2_c00499{letter-spacing:0.132480px;}
.ls11_c00499{letter-spacing:0.155520px;}
.ls10_c00499{letter-spacing:0.714240px;}
.ls0_c00499{letter-spacing:0.777600px;}
.lsb_c00499{letter-spacing:0.834000px;}
.ls5_c00499{letter-spacing:1.266660px;}
.ls19_c00499{letter-spacing:1.524240px;}
.ls3_c00499{letter-spacing:1.835820px;}
.ls4_c00499{letter-spacing:1.841400px;}
.ls13_c00499{letter-spacing:2.204100px;}
.ls17_c00499{letter-spacing:2.610000px;}
.lsf_c00499{letter-spacing:2.700000px;}
.ls14_c00499{letter-spacing:2.760000px;}
.ls9_c00499{letter-spacing:3.000000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{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__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00499{word-spacing:-15.785820px;}
.ws0_c00499{word-spacing:-15.177600px;}
.ws1_c00499{word-spacing:-15.150000px;}
.ws2_c00499{word-spacing:-15.109200px;}
.ws3_c00499{word-spacing:-14.532480px;}
.ws4_c00499{word-spacing:-12.666600px;}
.ws6_c00499{word-spacing:0.000000px;}
._6_c00499{margin-left:-23.095800px;}
._7_c00499{margin-left:-3.606000px;}
._2_c00499{margin-left:-2.545200px;}
._3_c00499{margin-left:-1.366800px;}
._1_c00499{width:2.040000px;}
._4_c00499{width:4.296600px;}
._0_c00499{width:6.300000px;}
._5_c00499{width:249.000000px;}
.fc0_c00499{color:transparent;}
.fs5_c00499{font-size:40.053000px;}
.fsc_c00499{font-size:52.200000px;}
.fs6_c00499{font-size:54.000000px;}
.fs9_c00499{font-size:55.200000px;}
.fs8_c00499{font-size:55.800000px;}
.fs3_c00499{font-size:57.600000px;}
.fs2_c00499{font-size:60.000000px;}
.fs4_c00499{font-size:60.600000px;}
.fs7_c00499{font-size:61.200000px;}
.fs0_c00499{font-size:66.000000px;}
.fs15_c00499{font-size:72.600000px;}
.fse_c00499{font-size:77.400000px;}
.fsd_c00499{font-size:95.400000px;}
.fsf_c00499{font-size:104.400000px;}
.fs12_c00499{font-size:112.200600px;}
.fs13_c00499{font-size:127.200600px;}
.fs11_c00499{font-size:128.400000px;}
.fs10_c00499{font-size:151.200600px;}
.fsb_c00499{font-size:163.800000px;}
.fsa_c00499{font-size:175.800000px;}
.fs14_c00499{font-size:186.000000px;}
.fs1_c00499{font-size:254.400600px;}
.y0_c00499{bottom:0.000000px;}
.y6_c00499{bottom:76.532989px;}
.y5_c00499{bottom:191.689789px;}
.y4_c00499{bottom:209.569789px;}
.y9_c00499{bottom:210.994789px;}
.ya_c00499{bottom:249.619790px;}
.y8_c00499{bottom:263.209789px;}
.y15_c00499{bottom:524.269789px;}
.y14_c00499{bottom:534.289789px;}
.y13_c00499{bottom:565.039789px;}
.y12_c00499{bottom:579.349789px;}
.y11_c00499{bottom:591.499790px;}
.y10_c00499{bottom:609.379789px;}
.yf_c00499{bottom:624.409789px;}
.y3_c00499{bottom:630.844790px;}
.y7_c00499{bottom:632.269789px;}
.ye_c00499{bottom:640.144790px;}
.yd_c00499{bottom:666.604789px;}
.yc_c00499{bottom:696.649789px;}
.yb_c00499{bottom:718.099789px;}
.y2_c00499{bottom:858.994790px;}
.y1_c00499{bottom:1135.789790px;}
.h7_c00499{height:26.675298px;}
.hc_c00499{height:54.442969px;}
.h8_c00499{height:56.320312px;}
.h5_c00499{height:56.531250px;}
.ha_c00499{height:57.571875px;}
.h4_c00499{height:58.857422px;}
.h6_c00499{height:59.445996px;}
.h9_c00499{height:60.064453px;}
.h2_c00499{height:64.775391px;}
.h15_c00499{height:71.252930px;}
.he_c00499{height:80.725781px;}
.hd_c00499{height:93.629883px;}
.hf_c00499{height:108.885937px;}
.h12_c00499{height:110.118753px;}
.h13_c00499{height:124.840433px;}
.h11_c00499{height:126.017578px;}
.h10_c00499{height:157.697501px;}
.hb_c00499{height:172.538086px;}
.h14_c00499{height:193.992188px;}
.h3_c00499{height:249.680276px;}
.h1_c00499{height:1263.000000px;}
.h0_c00499{height:1263.099289px;}
.w1_c00499{width:892.500000px;}
.w0_c00499{width:892.608603px;}
.x0_c00499{left:0.000000px;}
.x4_c00499{left:183.654603px;}
.x5_c00499{left:196.359603px;}
.x9_c00499{left:197.814603px;}
.xe_c00499{left:201.624603px;}
.x6_c00499{left:225.849603px;}
.xa_c00499{left:257.484603px;}
.xb_c00499{left:282.519603px;}
.xc_c00499{left:307.299603px;}
.xd_c00499{left:326.814603px;}
.x7_c00499{left:371.754603px;}
.x3_c00499{left:382.599603px;}
.x8_c00499{left:391.854603px;}
.x1_c00499{left:397.584603px;}
.xf_c00499{left:431.232003px;}
.x2_c00499{left:468.924603px;}
.x10_c00499{left:505.584603px;}
.x15_c00499{left:506.934603px;}
.x13_c00499{left:512.394603px;}
.x14_c00499{left:536.934603px;}
.x16_c00499{left:559.809603px;}
.x17_c00499{left:580.569603px;}
.x18_c00499{left:588.444603px;}
.x19_c00499{left:610.689603px;}
.x11_c00499{left:650.619603px;}
.x12_c00499{left:670.059603px;}
.x1a_c00499{left:671.484603px;}
.x1b_c00499{left:691.254603px;}
.x1c_c00499{left:702.684603px;}
.x1d_c00499{left:877.059603px;}
@media print{
.v1_c00499{vertical-align:-45.760000pt;}
.v0_c00499{vertical-align:0.000000pt;}
.ls16_c00499{letter-spacing:-5.469333pt;}
.ls7_c00499{letter-spacing:-2.053333pt;}
.lsd_c00499{letter-spacing:-1.885333pt;}
.lsc_c00499{letter-spacing:-1.792000pt;}
.ls1a_c00499{letter-spacing:-1.717333pt;}
.ls18_c00499{letter-spacing:-1.624000pt;}
.ls15_c00499{letter-spacing:-1.481813pt;}
.ls12_c00499{letter-spacing:-1.140800pt;}
.lse_c00499{letter-spacing:-0.657173pt;}
.lsa_c00499{letter-spacing:-0.138667pt;}
.ls8_c00499{letter-spacing:0.000000pt;}
.ls6_c00499{letter-spacing:0.023467pt;}
.ls1_c00499{letter-spacing:0.086400pt;}
.ls2_c00499{letter-spacing:0.117760pt;}
.ls11_c00499{letter-spacing:0.138240pt;}
.ls10_c00499{letter-spacing:0.634880pt;}
.ls0_c00499{letter-spacing:0.691200pt;}
.lsb_c00499{letter-spacing:0.741333pt;}
.ls5_c00499{letter-spacing:1.125920pt;}
.ls19_c00499{letter-spacing:1.354880pt;}
.ls3_c00499{letter-spacing:1.631840pt;}
.ls4_c00499{letter-spacing:1.636800pt;}
.ls13_c00499{letter-spacing:1.959200pt;}
.ls17_c00499{letter-spacing:2.320000pt;}
.lsf_c00499{letter-spacing:2.400000pt;}
.ls14_c00499{letter-spacing:2.453333pt;}
.ls9_c00499{letter-spacing:2.666667pt;}
.ws5_c00499{word-spacing:-14.031840pt;}
.ws0_c00499{word-spacing:-13.491200pt;}
.ws1_c00499{word-spacing:-13.466667pt;}
.ws2_c00499{word-spacing:-13.430400pt;}
.ws3_c00499{word-spacing:-12.917760pt;}
.ws4_c00499{word-spacing:-11.259200pt;}
.ws6_c00499{word-spacing:0.000000pt;}
._6_c00499{margin-left:-20.529600pt;}
._7_c00499{margin-left:-3.205333pt;}
._2_c00499{margin-left:-2.262400pt;}
._3_c00499{margin-left:-1.214933pt;}
._1_c00499{width:1.813333pt;}
._4_c00499{width:3.819200pt;}
._0_c00499{width:5.600000pt;}
._5_c00499{width:221.333333pt;}
.fs5_c00499{font-size:35.602667pt;}
.fsc_c00499{font-size:46.400000pt;}
.fs6_c00499{font-size:48.000000pt;}
.fs9_c00499{font-size:49.066667pt;}
.fs8_c00499{font-size:49.600000pt;}
.fs3_c00499{font-size:51.200000pt;}
.fs2_c00499{font-size:53.333333pt;}
.fs4_c00499{font-size:53.866667pt;}
.fs7_c00499{font-size:54.400000pt;}
.fs0_c00499{font-size:58.666667pt;}
.fs15_c00499{font-size:64.533333pt;}
.fse_c00499{font-size:68.800000pt;}
.fsd_c00499{font-size:84.800000pt;}
.fsf_c00499{font-size:92.800000pt;}
.fs12_c00499{font-size:99.733867pt;}
.fs13_c00499{font-size:113.067200pt;}
.fs11_c00499{font-size:114.133333pt;}
.fs10_c00499{font-size:134.400533pt;}
.fsb_c00499{font-size:145.600000pt;}
.fsa_c00499{font-size:156.266667pt;}
.fs14_c00499{font-size:165.333333pt;}
.fs1_c00499{font-size:226.133867pt;}
.y0_c00499{bottom:0.000000pt;}
.y6_c00499{bottom:68.029324pt;}
.y5_c00499{bottom:170.390924pt;}
.y4_c00499{bottom:186.284257pt;}
.y9_c00499{bottom:187.550924pt;}
.ya_c00499{bottom:221.884257pt;}
.y8_c00499{bottom:233.964257pt;}
.y15_c00499{bottom:466.017591pt;}
.y14_c00499{bottom:474.924257pt;}
.y13_c00499{bottom:502.257591pt;}
.y12_c00499{bottom:514.977591pt;}
.y11_c00499{bottom:525.777591pt;}
.y10_c00499{bottom:541.670924pt;}
.yf_c00499{bottom:555.030924pt;}
.y3_c00499{bottom:560.750924pt;}
.y7_c00499{bottom:562.017591pt;}
.ye_c00499{bottom:569.017591pt;}
.yd_c00499{bottom:592.537591pt;}
.yc_c00499{bottom:619.244257pt;}
.yb_c00499{bottom:638.310924pt;}
.y2_c00499{bottom:763.550924pt;}
.y1_c00499{bottom:1009.590924pt;}
.h7_c00499{height:23.711376pt;}
.hc_c00499{height:48.393750pt;}
.h8_c00499{height:50.062500pt;}
.h5_c00499{height:50.250000pt;}
.ha_c00499{height:51.175000pt;}
.h4_c00499{height:52.317708pt;}
.h6_c00499{height:52.840885pt;}
.h9_c00499{height:53.390625pt;}
.h2_c00499{height:57.578125pt;}
.h15_c00499{height:63.335938pt;}
.he_c00499{height:71.756250pt;}
.hd_c00499{height:83.226562pt;}
.hf_c00499{height:96.787500pt;}
.h12_c00499{height:97.883336pt;}
.h13_c00499{height:110.969273pt;}
.h11_c00499{height:112.015625pt;}
.h10_c00499{height:140.175556pt;}
.hb_c00499{height:153.367188pt;}
.h14_c00499{height:172.437500pt;}
.h3_c00499{height:221.938023pt;}
.h1_c00499{height:1122.666667pt;}
.h0_c00499{height:1122.754924pt;}
.w1_c00499{width:793.333333pt;}
.w0_c00499{width:793.429869pt;}
.x0_c00499{left:0.000000pt;}
.x4_c00499{left:163.248536pt;}
.x5_c00499{left:174.541869pt;}
.x9_c00499{left:175.835203pt;}
.xe_c00499{left:179.221869pt;}
.x6_c00499{left:200.755203pt;}
.xa_c00499{left:228.875203pt;}
.xb_c00499{left:251.128536pt;}
.xc_c00499{left:273.155203pt;}
.xd_c00499{left:290.501869pt;}
.x7_c00499{left:330.448536pt;}
.x3_c00499{left:340.088536pt;}
.x8_c00499{left:348.315203pt;}
.x1_c00499{left:353.408536pt;}
.xf_c00499{left:383.317336pt;}
.x2_c00499{left:416.821869pt;}
.x10_c00499{left:449.408536pt;}
.x15_c00499{left:450.608536pt;}
.x13_c00499{left:455.461869pt;}
.x14_c00499{left:477.275203pt;}
.x16_c00499{left:497.608536pt;}
.x17_c00499{left:516.061869pt;}
.x18_c00499{left:523.061869pt;}
.x19_c00499{left:542.835203pt;}
.x11_c00499{left:578.328536pt;}
.x12_c00499{left:595.608536pt;}
.x1a_c00499{left:596.875203pt;}
.x1b_c00499{left:614.448536pt;}
.x1c_c00499{left:624.608536pt;}
.x1d_c00499{left:779.608536pt;}
}





/* 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_c00001 {
    display:none;
  }
  .loading-indicator_c00001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00001 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_c00001 { 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_c00001" -> "#page-container .classname_c00001")
 */
.pf_c00001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00001 { /* 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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00001 { /* 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_c00001 { /* 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_c00001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00001 {overflow:visible;}
  }
}
.c_c00001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00001 { /* 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_c00001:after { /* webkit #35443 */
  content: '';
}
.t_c00001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00001 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 */
}
.__c00001 { /* 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_c00001 { /* info for Javascript */
  display:none;
}
.l_c00001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00001: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_c00001 {
    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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00001.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_c00001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_d6a1c857ed0391a0790d27d6.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.284668;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_c00001;src:url('chunks/assets/font_c392a8c569b441deb6b504f7.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;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_c00001;src:url('chunks/assets/font_396aaf20c7d950638a021b67.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;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:ff4_c00001;src:url('chunks/assets/font_6afd3585040fb02dbe2846d0.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.284180;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_c00001;src:url('chunks/assets/font_f19a54bc15f1703836ff027a.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:0.666000;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_c00001;src:url('chunks/assets/font_9a539a1909debf9f3fbf6ff8.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:1.284668;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_c00001;src:url('chunks/assets/font_607bfe8de490b5c2e8097b6a.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.284180;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_c00001;src:url('chunks/assets/font_a6b1cb0a81401f45157d5e91.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:1.311035;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_c00001;src:url('chunks/assets/font_3dcc84ddc37e0a1cca4a7636.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:1.284180;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_c00001;src:url('chunks/assets/font_f19a54bc15f1703836ff027a.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:0.666000;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_c00001;src:url('chunks/assets/font_e30aaabbc86d7a714f726ef4.woff2')format("woff");}.ffb_c00001{font-family:ffb_c00001;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:ffc_c00001;src:url('chunks/assets/font_cddf5685536806dfe884a2b2.woff2')format("woff");}.ffc_c00001{font-family:ffc_c00001;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:ffd_c00001;src:url('chunks/assets/font_f58f2e6534eeb7361b346a72.woff2')format("woff");}.ffd_c00001{font-family:ffd_c00001;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:ffe_c00001;src:url('chunks/assets/font_50b875b721badfb333395032.woff2')format("woff");}.ffe_c00001{font-family:ffe_c00001;line-height:1.284668;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_c00001;src:url('chunks/assets/font_c31fff518c7204a47d0e5382.woff2')format("woff");}.fff_c00001{font-family:fff_c00001;line-height:1.284180;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_c00001;src:url('chunks/assets/font_4831f62504f0b87ad5b738ef.woff2')format("woff");}.ff10_c00001{font-family:ff10_c00001;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:ff11_c00001;src:url('chunks/assets/font_915bab8cf35e8b7dae8ef619.woff2')format("woff");}.ff11_c00001{font-family:ff11_c00001;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:ff12_c00001;src:url('chunks/assets/font_4f55bbca7e0a471b480f41dd.woff2')format("woff");}.ff12_c00001{font-family:ff12_c00001;line-height:1.284668;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_c00001;src:url('chunks/assets/font_4d30324a394ac412b0626f20.woff2')format("woff");}.ff13_c00001{font-family:ff13_c00001;line-height:1.284668;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_c00001;src:url('chunks/assets/font_0528dc22ec15c65dad07b058.woff2')format("woff");}.ff14_c00001{font-family:ff14_c00001;line-height:0.666000;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_c00001;src:url('chunks/assets/font_2c5fa95eb6330ad0bcb266dd.woff2')format("woff");}.ff15_c00001{font-family:ff15_c00001;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:ff16_c00001;src:url('chunks/assets/font_3e0c6738266c3534522404df.woff2')format("woff");}.ff16_c00001{font-family:ff16_c00001;line-height:1.284180;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:ff17_c00001;src:url('chunks/assets/font_9138f39f745be6dd699657c0.woff2')format("woff");}.ff17_c00001{font-family:ff17_c00001;line-height:1.284668;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:ff18_c00001;src:url('chunks/assets/font_dc92604ce696eaadb32d9912.woff2')format("woff");}.ff18_c00001{font-family:ff18_c00001;line-height:1.284180;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:ff19_c00001;src:url('chunks/assets/font_09bd249d1a110fe630c00c48.woff2')format("woff");}.ff19_c00001{font-family:ff19_c00001;line-height:1.284668;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:ff1a_c00001;src:url('chunks/assets/font_a7744e3a0cba404f124c8b86.woff2')format("woff");}.ff1a_c00001{font-family:ff1a_c00001;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:ff1b_c00001;src:url('chunks/assets/font_a770cd10eda0b9b79624363e.woff2')format("woff");}.ff1b_c00001{font-family:ff1b_c00001;line-height:0.666000;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:ff1c_c00001;src:url('chunks/assets/font_dd1234484809bad914d5b509.woff2')format("woff");}.ff1c_c00001{font-family:ff1c_c00001;line-height:1.284668;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:ff1d_c00001;src:url('chunks/assets/font_171591e46a73d9ee0a8497f5.woff2')format("woff");}.ff1d_c00001{font-family:ff1d_c00001;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:ff1e_c00001;src:url('chunks/assets/font_233a7cc042ad9889ee39b247.woff2')format("woff");}.ff1e_c00001{font-family:ff1e_c00001;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:ff1f_c00001;src:url('chunks/assets/font_ebd23d0830f69c04a555551d.woff2')format("woff");}.ff1f_c00001{font-family:ff1f_c00001;line-height:0.666000;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:ff20_c00001;src:url('chunks/assets/font_f9c7204a81305dce9c8b40a1.woff2')format("woff");}.ff20_c00001{font-family:ff20_c00001;line-height:1.284668;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:ff21_c00001;src:url('chunks/assets/font_477c0a9be3500401a45c3162.woff2')format("woff");}.ff21_c00001{font-family:ff21_c00001;line-height:0.666000;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:ff22_c00001;src:url('chunks/assets/font_6457b5d7bc63a16c391ee1c9.woff2')format("woff");}.ff22_c00001{font-family:ff22_c00001;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:ff23_c00001;src:url('chunks/assets/font_b8f3b4e03d7ef81051a15545.woff2')format("woff");}.ff23_c00001{font-family:ff23_c00001;line-height:1.284668;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:ff24_c00001;src:url('chunks/assets/font_51891b3352c787861bdb73f9.woff2')format("woff");}.ff24_c00001{font-family:ff24_c00001;line-height:1.284668;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:ff25_c00001;src:url('chunks/assets/font_210f4bee5c3bd48da2862b63.woff2')format("woff");}.ff25_c00001{font-family:ff25_c00001;line-height:1.311035;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:ff26_c00001;src:url('chunks/assets/font_7c3dc471d54c8bb7ffd1218b.woff2')format("woff");}.ff26_c00001{font-family:ff26_c00001;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:ff27_c00001;src:url('chunks/assets/font_a946d650f9ceaa540d0221db.woff2')format("woff");}.ff27_c00001{font-family:ff27_c00001;line-height:0.666000;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:ff28_c00001;src:url('chunks/assets/font_171fbbaec7373eb562a23d97.woff2')format("woff");}.ff28_c00001{font-family:ff28_c00001;line-height:1.284180;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:ff29_c00001;src:url('chunks/assets/font_c485f0f42f7d6bb026954fd6.woff2')format("woff");}.ff29_c00001{font-family:ff29_c00001;line-height:1.284668;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:ff2a_c00001;src:url('chunks/assets/font_1f41fad34e087e430e3df16e.woff2')format("woff");}.ff2a_c00001{font-family:ff2a_c00001;line-height:1.311035;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:ff2b_c00001;src:url('chunks/assets/font_443cf43519beecb7a6f53d2e.woff2')format("woff");}.ff2b_c00001{font-family:ff2b_c00001;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:ff2c_c00001;src:url('chunks/assets/font_7b07d8c2123f5b5b0cc3c6b0.woff2')format("woff");}.ff2c_c00001{font-family:ff2c_c00001;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:ff2d_c00001;src:url('chunks/assets/font_49a338e15918b47ae6332282.woff2')format("woff");}.ff2d_c00001{font-family:ff2d_c00001;line-height:0.666000;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:ff2e_c00001;src:url('chunks/assets/font_8f07459ad952c026cebda554.woff2')format("woff");}.ff2e_c00001{font-family:ff2e_c00001;line-height:1.284180;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:ff2f_c00001;src:url('chunks/assets/font_9024b958d5eb308e00311fa0.woff2')format("woff");}.ff2f_c00001{font-family:ff2f_c00001;line-height:1.284180;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:ff30_c00001;src:url('chunks/assets/font_585162a4a000127e3bef2a77.woff2')format("woff");}.ff30_c00001{font-family:ff30_c00001;line-height:1.284668;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:ff31_c00001;src:url('chunks/assets/font_45323d7d92120c8fba019f18.woff2')format("woff");}.ff31_c00001{font-family:ff31_c00001;line-height:1.311035;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:ff32_c00001;src:url('chunks/assets/font_c1c7875f235ba34863d718ec.woff2')format("woff");}.ff32_c00001{font-family:ff32_c00001;line-height:1.284180;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:ff33_c00001;src:url('chunks/assets/font_3f1201bc1fdbf91fdeaa2a86.woff2')format("woff");}.ff33_c00001{font-family:ff33_c00001;line-height:1.284668;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:ff34_c00001;src:url('chunks/assets/font_bb796a942df4aa69ec78364a.woff2')format("woff");}.ff34_c00001{font-family:ff34_c00001;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:ff35_c00001;src:url('chunks/assets/font_ba3efd4da521fc6992ea5409.woff2')format("woff");}.ff35_c00001{font-family:ff35_c00001;line-height:0.666000;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:ff36_c00001;src:url('chunks/assets/font_c921e1c6a6a3f482277e1880.woff2')format("woff");}.ff36_c00001{font-family:ff36_c00001;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:ff37_c00001;src:url('chunks/assets/font_45323d7d92120c8fba019f18.woff2')format("woff");}.ff37_c00001{font-family:ff37_c00001;line-height:1.311035;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:ff38_c00001;src:url('chunks/assets/font_cf293d5e7897d64e8870d7dc.woff2')format("woff");}.ff38_c00001{font-family:ff38_c00001;line-height:1.284180;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:ff39_c00001;src:url('chunks/assets/font_7b68eacf292432714a5b2b4b.woff2')format("woff");}.ff39_c00001{font-family:ff39_c00001;line-height:1.284668;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:ff3a_c00001;src:url('chunks/assets/font_3243241cd0e6a324220665fb.woff2')format("woff");}.ff3a_c00001{font-family:ff3a_c00001;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:ff3b_c00001;src:url('chunks/assets/font_7e11b7f185850f299d35ff1c.woff2')format("woff");}.ff3b_c00001{font-family:ff3b_c00001;line-height:1.284668;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:ff3c_c00001;src:url('chunks/assets/font_89ac7afddc013b1dec86ac37.woff2')format("woff");}.ff3c_c00001{font-family:ff3c_c00001;line-height:0.666000;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:ff3d_c00001;src:url('chunks/assets/font_adfdad9ed6e7c94d1289423d.woff2')format("woff");}.ff3d_c00001{font-family:ff3d_c00001;line-height:1.284180;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:ff3e_c00001;src:url('chunks/assets/font_02d5b501cdf7f7324de55152.woff2')format("woff");}.ff3e_c00001{font-family:ff3e_c00001;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:ff3f_c00001;src:url('chunks/assets/font_84e1cbee92acd4fb1d299acb.woff2')format("woff");}.ff3f_c00001{font-family:ff3f_c00001;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:ff40_c00001;src:url('chunks/assets/font_04a782179f45bc64cffb94c0.woff2')format("woff");}.ff40_c00001{font-family:ff40_c00001;line-height:1.311035;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:ff41_c00001;src:url('chunks/assets/font_cc9b08824b2e3e428a7357fa.woff2')format("woff");}.ff41_c00001{font-family:ff41_c00001;line-height:1.284180;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:ff42_c00001;src:url('chunks/assets/font_e619b3e07f0b085961d7d6dd.woff2')format("woff");}.ff42_c00001{font-family:ff42_c00001;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:ff43_c00001;src:url('chunks/assets/font_78ea6deda2b1d3e953f6216c.woff2')format("woff");}.ff43_c00001{font-family:ff43_c00001;line-height:1.284180;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:ff44_c00001;src:url('chunks/assets/font_f23111be14db044fecf4d7f7.woff2')format("woff");}.ff44_c00001{font-family:ff44_c00001;line-height:1.284668;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:ff45_c00001;src:url('chunks/assets/font_0451e6ebb6816d9ab1649f53.woff2')format("woff");}.ff45_c00001{font-family:ff45_c00001;line-height:0.666000;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:ff46_c00001;src:url('chunks/assets/font_f4ad0ee1871e1ecac2cd8880.woff2')format("woff");}.ff46_c00001{font-family:ff46_c00001;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:ff47_c00001;src:url('chunks/assets/font_4b804d1f814d6c4228eead6d.woff2')format("woff");}.ff47_c00001{font-family:ff47_c00001;line-height:1.284668;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:ff48_c00001;src:url('chunks/assets/font_26679a6df9697c59a52258ea.woff2')format("woff");}.ff48_c00001{font-family:ff48_c00001;line-height:1.284180;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:ff49_c00001;src:url('chunks/assets/font_0451e6ebb6816d9ab1649f53.woff2')format("woff");}.ff49_c00001{font-family:ff49_c00001;line-height:0.666000;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:ff4a_c00001;src:url('chunks/assets/font_d2a3da37665f8742aa333eac.woff2')format("woff");}.ff4a_c00001{font-family:ff4a_c00001;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:ff4b_c00001;src:url('chunks/assets/font_dad3e1606d5c82015f4b983c.woff2')format("woff");}.ff4b_c00001{font-family:ff4b_c00001;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:ff4c_c00001;src:url('chunks/assets/font_2dc613ff3dc8e00f48cea680.woff2')format("woff");}.ff4c_c00001{font-family:ff4c_c00001;line-height:1.311035;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:ff4d_c00001;src:url('chunks/assets/font_eba62119a381e26bcb06b969.woff2')format("woff");}.ff4d_c00001{font-family:ff4d_c00001;line-height:1.284180;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:ff4e_c00001;src:url('chunks/assets/font_e8c45e6d1c6676ff32dfabde.woff2')format("woff");}.ff4e_c00001{font-family:ff4e_c00001;line-height:1.284668;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:ff4f_c00001;src:url('chunks/assets/font_d09be899375fda7a66266dd2.woff2')format("woff");}.ff4f_c00001{font-family:ff4f_c00001;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:ff50_c00001;src:url('chunks/assets/font_3bc0babc84fda18b523861ff.woff2')format("woff");}.ff50_c00001{font-family:ff50_c00001;line-height:0.666000;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:ff51_c00001;src:url('chunks/assets/font_dfb9d638ac90c7e5369ceb36.woff2')format("woff");}.ff51_c00001{font-family:ff51_c00001;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:ff52_c00001;src:url('chunks/assets/font_b091801ae8a87fa1af8df050.woff2')format("woff");}.ff52_c00001{font-family:ff52_c00001;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:ff53_c00001;src:url('chunks/assets/font_2cee13cd58f3791b7f91a0f3.woff2')format("woff");}.ff53_c00001{font-family:ff53_c00001;line-height:1.284180;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:ff54_c00001;src:url('chunks/assets/font_415977810f137094ed853278.woff2')format("woff");}.ff54_c00001{font-family:ff54_c00001;line-height:1.311035;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:ff55_c00001;src:url('chunks/assets/font_9cc300860a15e07bb3456663.woff2')format("woff");}.ff55_c00001{font-family:ff55_c00001;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:ff56_c00001;src:url('chunks/assets/font_18f8ac3dce791ec925ff9bd9.woff2')format("woff");}.ff56_c00001{font-family:ff56_c00001;line-height:1.284180;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:ff57_c00001;src:url('chunks/assets/font_892e6147e875c8ff1c9f2f9a.woff2')format("woff");}.ff57_c00001{font-family:ff57_c00001;line-height:1.284668;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;}
.mdc_c00001{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.me3_c00001{transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);}
.mac_c00001{transform:matrix(0.052630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052630,0.000000,0.000000,0.250000,0,0);}
.m15_c00001{transform:matrix(0.053573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053573,0.000000,0.000000,0.250000,0,0);}
.maa_c00001{transform:matrix(0.065788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065788,0.000000,0.000000,0.250000,0,0);}
.m9_c00001{transform:matrix(0.067901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067901,0.000000,0.000000,0.250000,0,0);}
.m57_c00001{transform:matrix(0.084246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084246,0.000000,0.000000,0.250000,0,0);}
.md3_c00001{transform:matrix(0.088069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088069,0.000000,0.000000,0.250000,0,0);}
.meb_c00001{transform:matrix(0.096978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096978,0.000000,0.000000,0.250000,0,0);}
.m99_c00001{transform:matrix(0.104550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104550,0.000000,0.000000,0.250000,0,0);}
.m93_c00001{transform:matrix(0.106649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106649,0.000000,0.000000,0.250000,0,0);}
.m2a_c00001{transform:matrix(0.107843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107843,0.000000,0.000000,0.250000,0,0);}
.m40_c00001{transform:matrix(0.109091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109091,0.000000,0.000000,0.250000,0,0);}
.me_c00001{transform:matrix(0.112812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112812,0.000000,0.000000,0.250000,0,0);}
.ma_c00001{transform:matrix(0.115741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115741,0.000000,0.000000,0.250000,0,0);}
.m3e_c00001{transform:matrix(0.118752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118752,0.000000,0.000000,0.250000,0,0);}
.m5f_c00001{transform:matrix(0.119121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119121,0.000000,0.000000,0.250000,0,0);}
.m78_c00001{transform:matrix(0.121528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121528,0.000000,0.000000,0.250000,0,0);}
.ma4_c00001{transform:matrix(0.122396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122396,0.000000,0.000000,0.250000,0,0);}
.m59_c00001{transform:matrix(0.125219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125219,0.000000,0.000000,0.250000,0,0);}
.m60_c00001{transform:matrix(0.129952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129952,0.000000,0.000000,0.250000,0,0);}
.mb_c00001{transform:matrix(0.129967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129967,0.000000,0.000000,0.250000,0,0);}
.m7a_c00001{transform:matrix(0.133446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133446,0.000000,0.000000,0.250000,0,0);}
.m12_c00001{transform:matrix(0.135064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135064,0.000000,0.000000,0.250000,0,0);}
.mc8_c00001{transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);}
.m68_c00001{transform:matrix(0.138367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138367,0.000000,0.000000,0.250000,0,0);}
.m5b_c00001{transform:matrix(0.138485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138485,0.000000,0.000000,0.250000,0,0);}
.mc7_c00001{transform:matrix(0.141366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141366,0.000000,0.000000,0.250000,0,0);}
.m16_c00001{transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);}
.m56_c00001{transform:matrix(0.144673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144673,0.000000,0.000000,0.250000,0,0);}
.mbc_c00001{transform:matrix(0.144737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144737,0.000000,0.000000,0.250000,0,0);}
.m62_c00001{transform:matrix(0.144821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144821,0.000000,0.000000,0.250000,0,0);}
.mde_c00001{transform:matrix(0.147219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147219,0.000000,0.000000,0.250000,0,0);}
.m14_c00001{transform:matrix(0.147322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147322,0.000000,0.000000,0.250000,0,0);}
.m64_c00001{transform:matrix(0.147948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147948,0.000000,0.000000,0.250000,0,0);}
.m8e_c00001{transform:matrix(0.149126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149126,0.000000,0.000000,0.250000,0,0);}
.m27_c00001{transform:matrix(0.154073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154073,0.000000,0.000000,0.250000,0,0);}
.mdd_c00001{transform:matrix(0.155986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155986,0.000000,0.000000,0.250000,0,0);}
.m1b_c00001{transform:matrix(0.156060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156060,0.000000,0.000000,0.250000,0,0);}
.md2_c00001{transform:matrix(0.158211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158211,0.000000,0.000000,0.250000,0,0);}
.mca_c00001{transform:matrix(0.159257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159257,0.000000,0.000000,0.250000,0,0);}
.m6b_c00001{transform:matrix(0.159301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159301,0.000000,0.000000,0.250000,0,0);}
.m83_c00001{transform:matrix(0.162310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162310,0.000000,0.000000,0.250000,0,0);}
.md1_c00001{transform:matrix(0.163369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163369,0.000000,0.000000,0.250000,0,0);}
.md_c00001{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.m69_c00001{transform:matrix(0.165578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165578,0.000000,0.000000,0.250000,0,0);}
.md6_c00001{transform:matrix(0.170162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170162,0.000000,0.000000,0.250000,0,0);}
.m8d_c00001{transform:matrix(0.171299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171299,0.000000,0.000000,0.250000,0,0);}
.m77_c00001{transform:matrix(0.172032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172032,0.000000,0.000000,0.250000,0,0);}
.m6e_c00001{transform:matrix(0.172344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172344,0.000000,0.000000,0.250000,0,0);}
.m6d_c00001{transform:matrix(0.173267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173267,0.000000,0.000000,0.250000,0,0);}
.mf5_c00001{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.md4_c00001{transform:matrix(0.180344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180344,0.000000,0.000000,0.250000,0,0);}
.ma9_c00001{transform:matrix(0.184206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184206,0.000000,0.000000,0.250000,0,0);}
.me5_c00001{transform:matrix(0.184312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184312,0.000000,0.000000,0.250000,0,0);}
.mec_c00001{transform:matrix(0.184992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184992,0.000000,0.000000,0.250000,0,0);}
.ma6_c00001{transform:matrix(0.185901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185901,0.000000,0.000000,0.250000,0,0);}
.m91_c00001{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m85_c00001{transform:matrix(0.187517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187517,0.000000,0.000000,0.250000,0,0);}
.m89_c00001{transform:matrix(0.188839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188839,0.000000,0.000000,0.250000,0,0);}
.mf4_c00001{transform:matrix(0.193013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193013,0.000000,0.000000,0.250000,0,0);}
.ma1_c00001{transform:matrix(0.194408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194408,0.000000,0.000000,0.250000,0,0);}
.m6a_c00001{transform:matrix(0.194870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194870,0.000000,0.000000,0.250000,0,0);}
.mf3_c00001{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.med_c00001{transform:matrix(0.195649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195649,0.000000,0.000000,0.250000,0,0);}
.ma0_c00001{transform:matrix(0.196129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196129,0.000000,0.000000,0.250000,0,0);}
.m4c_c00001{transform:matrix(0.198297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198297,0.000000,0.000000,0.250000,0,0);}
.ma3_c00001{transform:matrix(0.200991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200991,0.000000,0.000000,0.250000,0,0);}
.m49_c00001{transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);}
.m19_c00001{transform:matrix(0.203594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203594,0.000000,0.000000,0.250000,0,0);}
.m9c_c00001{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mcc_c00001{transform:matrix(0.204679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204679,0.000000,0.000000,0.250000,0,0);}
.mad_c00001{transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);}
.m9e_c00001{transform:matrix(0.212116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212116,0.000000,0.000000,0.250000,0,0);}
.ma5_c00001{transform:matrix(0.213691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213691,0.000000,0.000000,0.250000,0,0);}
.m86_c00001{transform:matrix(0.214165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214165,0.000000,0.000000,0.250000,0,0);}
.m92_c00001{transform:matrix(0.215286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215286,0.000000,0.000000,0.250000,0,0);}
.me7_c00001{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00001{transform:matrix(0.220418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220418,0.000000,0.000000,0.250000,0,0);}
.me6_c00001{transform:matrix(0.222203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222203,0.000000,0.000000,0.250000,0,0);}
.mc_c00001{transform:matrix(0.224232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224232,0.000000,0.000000,0.250000,0,0);}
.m87_c00001{transform:matrix(0.224917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224917,0.000000,0.000000,0.250000,0,0);}
.m1a_c00001{transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);}
.m9f_c00001{transform:matrix(0.227339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227339,0.000000,0.000000,0.250000,0,0);}
.m2c_c00001{transform:matrix(0.228431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228431,0.000000,0.000000,0.250000,0,0);}
.mae_c00001{transform:matrix(0.230258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230258,0.000000,0.000000,0.250000,0,0);}
.m18_c00001{transform:matrix(0.230727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230727,0.000000,0.000000,0.250000,0,0);}
.mcb_c00001{transform:matrix(0.232168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232168,0.000000,0.000000,0.250000,0,0);}
.m5_c00001{transform:matrix(0.232734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232734,0.000000,0.000000,0.250000,0,0);}
.m46_c00001{transform:matrix(0.233518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233518,0.000000,0.000000,0.250000,0,0);}
.m1c_c00001{transform:matrix(0.234062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234062,0.000000,0.000000,0.250000,0,0);}
.m20_c00001{transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);}
.mc2_c00001{transform:matrix(0.234687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234687,0.000000,0.000000,0.250000,0,0);}
.mf_c00001{transform:matrix(0.235966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235966,0.000000,0.000000,0.250000,0,0);}
.mea_c00001{transform:matrix(0.236661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236661,0.000000,0.000000,0.250000,0,0);}
.m8c_c00001{transform:matrix(0.237791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237791,0.000000,0.000000,0.250000,0,0);}
.m58_c00001{transform:matrix(0.238078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238078,0.000000,0.000000,0.250000,0,0);}
.mf6_c00001{transform:matrix(0.238098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238098,0.000000,0.000000,0.250000,0,0);}
.m8_c00001{transform:matrix(0.238261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238261,0.000000,0.000000,0.250000,0,0);}
.m9d_c00001{transform:matrix(0.238470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238470,0.000000,0.000000,0.250000,0,0);}
.m88_c00001{transform:matrix(0.238989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238989,0.000000,0.000000,0.250000,0,0);}
.m8b_c00001{transform:matrix(0.239530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239530,0.000000,0.000000,0.250000,0,0);}
.mb7_c00001{transform:matrix(0.239950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239950,0.000000,0.000000,0.250000,0,0);}
.ma2_c00001{transform:matrix(0.240068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240068,0.000000,0.000000,0.250000,0,0);}
.m5c_c00001{transform:matrix(0.240229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240229,0.000000,0.000000,0.250000,0,0);}
.m22_c00001{transform:matrix(0.240684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240684,0.000000,0.000000,0.250000,0,0);}
.m7b_c00001{transform:matrix(0.241243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241243,0.000000,0.000000,0.250000,0,0);}
.mbf_c00001{transform:matrix(0.241577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241577,0.000000,0.000000,0.250000,0,0);}
.me9_c00001{transform:matrix(0.241787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241787,0.000000,0.000000,0.250000,0,0);}
.m1d_c00001{transform:matrix(0.242448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242448,0.000000,0.000000,0.250000,0,0);}
.m3f_c00001{transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);}
.mb4_c00001{transform:matrix(0.244061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244061,0.000000,0.000000,0.250000,0,0);}
.mcf_c00001{transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244161,0.000000,0.000000,0.250000,0,0);}
.mcd_c00001{transform:matrix(0.244413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244413,0.000000,0.000000,0.250000,0,0);}
.m1_c00001{transform:matrix(0.244493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244493,0.000000,0.000000,0.250000,0,0);}
.m17_c00001{transform:matrix(0.244508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244508,0.000000,0.000000,0.250000,0,0);}
.mf0_c00001{transform:matrix(0.244932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244932,0.000000,0.000000,0.250000,0,0);}
.mce_c00001{transform:matrix(0.245797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245797,0.000000,0.000000,0.250000,0,0);}
.m7_c00001{transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);}
.m98_c00001{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.m7d_c00001{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.me4_c00001{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.me2_c00001{transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);}
.m42_c00001{transform:matrix(0.247709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247709,0.000000,0.000000,0.250000,0,0);}
.m37_c00001{transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);}
.m3c_c00001{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m3a_c00001{transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249101,0.000000,0.000000,0.250000,0,0);}
.mc0_c00001{transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);}
.m13_c00001{transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);}
.m7f_c00001{transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);}
.m25_c00001{transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);}
.mb8_c00001{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m8a_c00001{transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{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);}
.m26_c00001{transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);}
.m81_c00001{transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);}
.m75_c00001{transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);}
.m43_c00001{transform:matrix(0.250169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250169,0.000000,0.000000,0.250000,0,0);}
.m41_c00001{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.mc1_c00001{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.m32_c00001{transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);}
.m34_c00001{transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);}
.m36_c00001{transform:matrix(0.250631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250631,0.000000,0.000000,0.250000,0,0);}
.m3b_c00001{transform:matrix(0.250678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250678,0.000000,0.000000,0.250000,0,0);}
.m28_c00001{transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);}
.mbe_c00001{transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);}
.mc3_c00001{transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);}
.m38_c00001{transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);}
.m1e_c00001{transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);}
.m6_c00001{transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);}
.m6f_c00001{transform:matrix(0.251524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251524,0.000000,0.000000,0.250000,0,0);}
.mf7_c00001{transform:matrix(0.251624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251624,0.000000,0.000000,0.250000,0,0);}
.m39_c00001{transform:matrix(0.251886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251886,0.000000,0.000000,0.250000,0,0);}
.m73_c00001{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m72_c00001{transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);}
.mb9_c00001{transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);}
.m79_c00001{transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);}
.m84_c00001{transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);}
.m30_c00001{transform:matrix(0.252510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252510,0.000000,0.000000,0.250000,0,0);}
.m2f_c00001{transform:matrix(0.252840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252840,0.000000,0.000000,0.250000,0,0);}
.m3d_c00001{transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);}
.m7c_c00001{transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);}
.m23_c00001{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m2d_c00001{transform:matrix(0.253404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253404,0.000000,0.000000,0.250000,0,0);}
.mb3_c00001{transform:matrix(0.253588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253588,0.000000,0.000000,0.250000,0,0);}
.m4_c00001{transform:matrix(0.254087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254087,0.000000,0.000000,0.250000,0,0);}
.m29_c00001{transform:matrix(0.254219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254219,0.000000,0.000000,0.250000,0,0);}
.m2e_c00001{transform:matrix(0.254542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254542,0.000000,0.000000,0.250000,0,0);}
.mc9_c00001{transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);}
.mb2_c00001{transform:matrix(0.254613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254613,0.000000,0.000000,0.250000,0,0);}
.m3_c00001{transform:matrix(0.254932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254932,0.000000,0.000000,0.250000,0,0);}
.m80_c00001{transform:matrix(0.255427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255427,0.000000,0.000000,0.250000,0,0);}
.m10_c00001{transform:matrix(0.255503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255503,0.000000,0.000000,0.250000,0,0);}
.m35_c00001{transform:matrix(0.255748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255748,0.000000,0.000000,0.250000,0,0);}
.m70_c00001{transform:matrix(0.255949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255949,0.000000,0.000000,0.250000,0,0);}
.mf8_c00001{transform:matrix(0.255996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255996,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(0.257497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257497,0.000000,0.000000,0.250000,0,0);}
.mba_c00001{transform:matrix(0.257563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257563,0.000000,0.000000,0.250000,0,0);}
.m76_c00001{transform:matrix(0.257919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257919,0.000000,0.000000,0.250000,0,0);}
.m33_c00001{transform:matrix(0.257972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257972,0.000000,0.000000,0.250000,0,0);}
.m7e_c00001{transform:matrix(0.258252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258252,0.000000,0.000000,0.250000,0,0);}
.m24_c00001{transform:matrix(0.258366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258366,0.000000,0.000000,0.250000,0,0);}
.m4e_c00001{transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);}
.m71_c00001{transform:matrix(0.258483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258483,0.000000,0.000000,0.250000,0,0);}
.m1f_c00001{transform:matrix(0.258744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258744,0.000000,0.000000,0.250000,0,0);}
.m2b_c00001{transform:matrix(0.259698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259698,0.000000,0.000000,0.250000,0,0);}
.m21_c00001{transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);}
.mb0_c00001{transform:matrix(0.260266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260266,0.000000,0.000000,0.250000,0,0);}
.m44_c00001{transform:matrix(0.261496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261496,0.000000,0.000000,0.250000,0,0);}
.m4b_c00001{transform:matrix(0.261832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261832,0.000000,0.000000,0.250000,0,0);}
.mbd_c00001{transform:matrix(0.262057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262057,0.000000,0.000000,0.250000,0,0);}
.m48_c00001{transform:matrix(0.262585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262585,0.000000,0.000000,0.250000,0,0);}
.me0_c00001{transform:matrix(0.263358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263358,0.000000,0.000000,0.250000,0,0);}
.m74_c00001{transform:matrix(0.264904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264904,0.000000,0.000000,0.250000,0,0);}
.m9b_c00001{transform:matrix(0.265505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265505,0.000000,0.000000,0.250000,0,0);}
.me1_c00001{transform:matrix(0.266346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266346,0.000000,0.000000,0.250000,0,0);}
.mb5_c00001{transform:matrix(0.267794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267794,0.000000,0.000000,0.250000,0,0);}
.m31_c00001{transform:matrix(0.269746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269746,0.000000,0.000000,0.250000,0,0);}
.md0_c00001{transform:matrix(0.269903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269903,0.000000,0.000000,0.250000,0,0);}
.mdf_c00001{transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);}
.m11_c00001{transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);}
.m4f_c00001{transform:matrix(0.279926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279926,0.000000,0.000000,0.250000,0,0);}
.mf1_c00001{transform:matrix(0.283351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283351,0.000000,0.000000,0.250000,0,0);}
.m4a_c00001{transform:matrix(0.284032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284032,0.000000,0.000000,0.250000,0,0);}
.maf_c00001{transform:matrix(0.284916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284916,0.000000,0.000000,0.250000,0,0);}
.mf2_c00001{transform:matrix(0.292827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292827,0.000000,0.000000,0.250000,0,0);}
.m9a_c00001{transform:matrix(0.293239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293239,0.000000,0.000000,0.250000,0,0);}
.m4d_c00001{transform:matrix(0.297571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297571,0.000000,0.000000,0.250000,0,0);}
.m82_c00001{transform:matrix(0.299510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299510,0.000000,0.000000,0.250000,0,0);}
.mb1_c00001{transform:matrix(0.299791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299791,0.000000,0.000000,0.250000,0,0);}
.md5_c00001{transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);}
.m45_c00001{transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);}
.mc5_c00001{transform:matrix(0.315611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315611,0.000000,0.000000,0.250000,0,0);}
.m63_c00001{transform:matrix(0.323483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323483,0.000000,0.000000,0.250000,0,0);}
.m65_c00001{transform:matrix(0.327014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327014,0.000000,0.000000,0.250000,0,0);}
.m90_c00001{transform:matrix(0.333928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333928,0.000000,0.000000,0.250000,0,0);}
.mdb_c00001{transform:matrix(0.341800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341800,0.000000,0.000000,0.250000,0,0);}
.me8_c00001{transform:matrix(0.345045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345045,0.000000,0.000000,0.250000,0,0);}
.md8_c00001{transform:matrix(0.345418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345418,0.000000,0.000000,0.250000,0,0);}
.m53_c00001{transform:matrix(0.372881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372881,0.000000,0.000000,0.250000,0,0);}
.m5e_c00001{transform:matrix(0.377813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377813,0.000000,0.000000,0.250000,0,0);}
.m8f_c00001{transform:matrix(0.380243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380243,0.000000,0.000000,0.250000,0,0);}
.m50_c00001{transform:matrix(0.384858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384858,0.000000,0.000000,0.250000,0,0);}
.m67_c00001{transform:matrix(0.384940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384940,0.000000,0.000000,0.250000,0,0);}
.mc4_c00001{transform:matrix(0.392333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392333,0.000000,0.000000,0.250000,0,0);}
.md9_c00001{transform:matrix(0.401451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401451,0.000000,0.000000,0.250000,0,0);}
.mef_c00001{transform:matrix(0.404994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404994,0.000000,0.000000,0.250000,0,0);}
.md7_c00001{transform:matrix(0.439905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439905,0.000000,0.000000,0.250000,0,0);}
.m47_c00001{transform:matrix(0.448971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448971,0.000000,0.000000,0.250000,0,0);}
.m5a_c00001{transform:matrix(0.450581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450581,0.000000,0.000000,0.250000,0,0);}
.mc6_c00001{transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);}
.mee_c00001{transform:matrix(0.458030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458030,0.000000,0.000000,0.250000,0,0);}
.m52_c00001{transform:matrix(0.464979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464979,0.000000,0.000000,0.250000,0,0);}
.m94_c00001{transform:matrix(0.469629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469629,0.000000,0.000000,0.250000,0,0);}
.m96_c00001{transform:matrix(0.479327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479327,0.000000,0.000000,0.250000,0,0);}
.m5d_c00001{transform:matrix(0.482216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482216,0.000000,0.000000,0.250000,0,0);}
.m61_c00001{transform:matrix(0.483562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483562,0.000000,0.000000,0.250000,0,0);}
.m55_c00001{transform:matrix(0.495262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495262,0.000000,0.000000,0.250000,0,0);}
.m95_c00001{transform:matrix(0.509282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509282,0.000000,0.000000,0.250000,0,0);}
.ma8_c00001{transform:matrix(0.511724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511724,0.000000,0.000000,0.250000,0,0);}
.mda_c00001{transform:matrix(0.513375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513375,0.000000,0.000000,0.250000,0,0);}
.mbb_c00001{transform:matrix(0.539484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539484,0.000000,0.000000,0.250000,0,0);}
.m97_c00001{transform:matrix(0.550556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550556,0.000000,0.000000,0.250000,0,0);}
.m6c_c00001{transform:matrix(0.560241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560241,0.000000,0.000000,0.250000,0,0);}
.m66_c00001{transform:matrix(0.671875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671875,0.000000,0.000000,0.250000,0,0);}
.mb6_c00001{transform:matrix(0.924238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.924238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.924238,0.000000,0.000000,0.250000,0,0);}
.m54_c00001{transform:matrix(0.979194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.979194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.979194,0.000000,0.000000,0.250000,0,0);}
.mab_c00001{transform:matrix(1.156308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.156308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.156308,0.000000,0.000000,0.250000,0,0);}
.m51_c00001{transform:matrix(1.443355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.443355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.443355,0.000000,0.000000,0.250000,0,0);}
.v2_c00001{vertical-align:-14.280000px;}
.v0_c00001{vertical-align:0.000000px;}
.v5_c00001{vertical-align:2.880000px;}
.v3_c00001{vertical-align:22.860000px;}
.v4_c00001{vertical-align:28.782000px;}
.v1_c00001{vertical-align:94.440000px;}
.ls16_c00001{letter-spacing:-12.390000px;}
.ls1b_c00001{letter-spacing:-10.437021px;}
.ls456_c00001{letter-spacing:-4.788000px;}
.ls4a_c00001{letter-spacing:-4.536000px;}
.ls415_c00001{letter-spacing:-3.738000px;}
.ls43d_c00001{letter-spacing:-3.591000px;}
.ls15_c00001{letter-spacing:-3.192000px;}
.ls278_c00001{letter-spacing:-2.583000px;}
.ls196_c00001{letter-spacing:-2.541000px;}
.ls97_c00001{letter-spacing:-2.520000px;}
.ls19b_c00001{letter-spacing:-2.511960px;}
.ls427_c00001{letter-spacing:-2.499000px;}
.ls345_c00001{letter-spacing:-2.478000px;}
.ls2c5_c00001{letter-spacing:-2.457000px;}
.ls96_c00001{letter-spacing:-2.448000px;}
.ls153_c00001{letter-spacing:-2.436000px;}
.ls1eb_c00001{letter-spacing:-2.417580px;}
.ls33d_c00001{letter-spacing:-2.415000px;}
.ls455_c00001{letter-spacing:-2.414880px;}
.ls1e6_c00001{letter-spacing:-2.410320px;}
.ls3da_c00001{letter-spacing:-2.394000px;}
.ls387_c00001{letter-spacing:-2.373000px;}
.ls42b_c00001{letter-spacing:-2.352000px;}
.ls8_c00001{letter-spacing:-2.310000px;}
.ls408_c00001{letter-spacing:-2.309580px;}
.ls2c9_c00001{letter-spacing:-2.289000px;}
.ls2c_c00001{letter-spacing:-2.268000px;}
.ls433_c00001{letter-spacing:-2.250600px;}
.ls468_c00001{letter-spacing:-2.247000px;}
.ls1c1_c00001{letter-spacing:-2.228820px;}
.ls38b_c00001{letter-spacing:-2.226000px;}
.ls1b5_c00001{letter-spacing:-2.207040px;}
.ls25f_c00001{letter-spacing:-2.204280px;}
.ls462_c00001{letter-spacing:-2.192400px;}
.ls1c2_c00001{letter-spacing:-2.170740px;}
.ls428_c00001{letter-spacing:-2.163000px;}
.ls1ec_c00001{letter-spacing:-2.141700px;}
.ls33a_c00001{letter-spacing:-2.139000px;}
.ls301_c00001{letter-spacing:-2.060160px;}
.ls3d9_c00001{letter-spacing:-2.058840px;}
.ls2a_c00001{letter-spacing:-2.058000px;}
.ls21_c00001{letter-spacing:-2.037000px;}
.ls1dd_c00001{letter-spacing:-1.996500px;}
.ls11_c00001{letter-spacing:-1.995000px;}
.ls42_c00001{letter-spacing:-1.974000px;}
.ls382_c00001{letter-spacing:-1.966200px;}
.ls465_c00001{letter-spacing:-1.955760px;}
.ls14_c00001{letter-spacing:-1.953000px;}
.ls25b_c00001{letter-spacing:-1.951560px;}
.ls1c_c00001{letter-spacing:-1.932300px;}
.ls1e_c00001{letter-spacing:-1.932000px;}
.ls8d_c00001{letter-spacing:-1.922400px;}
.ls432_c00001{letter-spacing:-1.921920px;}
.ls263_c00001{letter-spacing:-1.916460px;}
.ls2d_c00001{letter-spacing:-1.911000px;}
.ls40d_c00001{letter-spacing:-1.902420px;}
.ls434_c00001{letter-spacing:-1.879200px;}
.ls453_c00001{letter-spacing:-1.865280px;}
.lsaa_c00001{letter-spacing:-1.828800px;}
.ls414_c00001{letter-spacing:-1.825200px;}
.lsa9_c00001{letter-spacing:-1.785600px;}
.ls272_c00001{letter-spacing:-1.785000px;}
.ls3ac_c00001{letter-spacing:-1.766400px;}
.ls412_c00001{letter-spacing:-1.764000px;}
.ls3ab_c00001{letter-spacing:-1.706400px;}
.ls1a9_c00001{letter-spacing:-1.706100px;}
.ls413_c00001{letter-spacing:-1.683600px;}
.ls279_c00001{letter-spacing:-1.680000px;}
.ls143_c00001{letter-spacing:-1.649520px;}
.ls37d_c00001{letter-spacing:-1.638021px;}
.ls254_c00001{letter-spacing:-1.635660px;}
.ls45e_c00001{letter-spacing:-1.628640px;}
.ls3d3_c00001{letter-spacing:-1.628400px;}
.lsc8_c00001{letter-spacing:-1.612800px;}
.ls1c3_c00001{letter-spacing:-1.611720px;}
.lscf_c00001{letter-spacing:-1.605600px;}
.ls460_c00001{letter-spacing:-1.593000px;}
.lsc1_c00001{letter-spacing:-1.569600px;}
.ls18f_c00001{letter-spacing:-1.568160px;}
.ls40b_c00001{letter-spacing:-1.551420px;}
.ls1e3_c00001{letter-spacing:-1.546380px;}
.ls142_c00001{letter-spacing:-1.531200px;}
.ls43c_c00001{letter-spacing:-1.512000px;}
.ls1bd_c00001{letter-spacing:-1.481040px;}
.ls15a_c00001{letter-spacing:-1.475520px;}
.ls43_c00001{letter-spacing:-1.463400px;}
.lsa0_c00001{letter-spacing:-1.454400px;}
.ls19e_c00001{letter-spacing:-1.452000px;}
.ls43b_c00001{letter-spacing:-1.428021px;}
.ls149_c00001{letter-spacing:-1.426800px;}
.ls2b_c00001{letter-spacing:-1.421280px;}
.ls3a8_c00001{letter-spacing:-1.414500px;}
.lsc3_c00001{letter-spacing:-1.396800px;}
.ls485_c00001{letter-spacing:-1.386000px;}
.ls336_c00001{letter-spacing:-1.380960px;}
.ls95_c00001{letter-spacing:-1.375200px;}
.ls27d_c00001{letter-spacing:-1.365021px;}
.ls1d6_c00001{letter-spacing:-1.364880px;}
.ls34b_c00001{letter-spacing:-1.359360px;}
.ls3e_c00001{letter-spacing:-1.333800px;}
.ls463_c00001{letter-spacing:-1.324800px;}
.ls3de_c00001{letter-spacing:-1.302000px;}
.ls45d_c00001{letter-spacing:-1.284660px;}
.ls3cf_c00001{letter-spacing:-1.278720px;}
.ls1b6_c00001{letter-spacing:-1.255980px;}
.ls1e9_c00001{letter-spacing:-1.248720px;}
.ls381_c00001{letter-spacing:-1.247520px;}
.ls275_c00001{letter-spacing:-1.244400px;}
.ls1a7_c00001{letter-spacing:-1.241460px;}
.ls27b_c00001{letter-spacing:-1.239021px;}
.lsb9_c00001{letter-spacing:-1.216800px;}
.ls8f_c00001{letter-spacing:-1.202400px;}
.ls40e_c00001{letter-spacing:-1.186380px;}
.ls8c_c00001{letter-spacing:-1.180800px;}
.ls154_c00001{letter-spacing:-1.169280px;}
.ls1a_c00001{letter-spacing:-1.155600px;}
.ls3dc_c00001{letter-spacing:-1.155021px;}
.ls43a_c00001{letter-spacing:-1.150577px;}
.ls276_c00001{letter-spacing:-1.142400px;}
.ls9f_c00001{letter-spacing:-1.116000px;}
.ls91_c00001{letter-spacing:-1.108800px;}
.ls300_c00001{letter-spacing:-1.092720px;}
.ls33c_c00001{letter-spacing:-1.048800px;}
.ls148_c00001{letter-spacing:-1.030080px;}
.ls3f_c00001{letter-spacing:-1.009980px;}
.lsb8_c00001{letter-spacing:-1.008000px;}
.ls161_c00001{letter-spacing:-1.002240px;}
.ls1e5_c00001{letter-spacing:-1.001880px;}
.ls436_c00001{letter-spacing:-0.996600px;}
.ls1d7_c00001{letter-spacing:-0.987360px;}
.ls1c4_c00001{letter-spacing:-0.972840px;}
.ls3e5_c00001{letter-spacing:-0.971280px;}
.lsc7_c00001{letter-spacing:-0.964800px;}
.ls1bb_c00001{letter-spacing:-0.936540px;}
.ls265_c00001{letter-spacing:-0.919620px;}
.ls386_c00001{letter-spacing:-0.908520px;}
.ls2fb_c00001{letter-spacing:-0.897840px;}
.ls1e4_c00001{letter-spacing:-0.892980px;}
.ls1a0_c00001{letter-spacing:-0.885720px;}
.lsc5_c00001{letter-spacing:-0.885600px;}
.ls156_c00001{letter-spacing:-0.883920px;}
.ls1ee_c00001{letter-spacing:-0.878460px;}
.ls2c6_c00001{letter-spacing:-0.856440px;}
.ls2c3_c00001{letter-spacing:-0.849420px;}
.lsa4_c00001{letter-spacing:-0.828000px;}
.ls3dd_c00001{letter-spacing:-0.814200px;}
.lsad_c00001{letter-spacing:-0.813600px;}
.ls194_c00001{letter-spacing:-0.798600px;}
.ls262_c00001{letter-spacing:-0.793260px;}
.ls19d_c00001{letter-spacing:-0.791340px;}
.ls191_c00001{letter-spacing:-0.769560px;}
.ls259_c00001{letter-spacing:-0.765180px;}
.ls1a3_c00001{letter-spacing:-0.762300px;}
.ls42f_c00001{letter-spacing:-0.759000px;}
.ls26c_c00001{letter-spacing:-0.744120px;}
.ls1e1_c00001{letter-spacing:-0.733260px;}
.lsce_c00001{letter-spacing:-0.720000px;}
.ls1cd_c00001{letter-spacing:-0.718740px;}
.ls1d0_c00001{letter-spacing:-0.711480px;}
.ls342_c00001{letter-spacing:-0.710700px;}
.ls3a6_c00001{letter-spacing:-0.696900px;}
.lsc2_c00001{letter-spacing:-0.676800px;}
.ls1ba_c00001{letter-spacing:-0.675180px;}
.ls348_c00001{letter-spacing:-0.672600px;}
.ls1ed_c00001{letter-spacing:-0.660660px;}
.ls14d_c00001{letter-spacing:-0.647280px;}
.lsc4_c00001{letter-spacing:-0.640800px;}
.ls1cb_c00001{letter-spacing:-0.638880px;}
.ls1bf_c00001{letter-spacing:-0.624360px;}
.ls144_c00001{letter-spacing:-0.619440px;}
.ls3d7_c00001{letter-spacing:-0.615600px;}
.ls261_c00001{letter-spacing:-0.610740px;}
.ls159_c00001{letter-spacing:-0.605520px;}
.ls1bc_c00001{letter-spacing:-0.602580px;}
.ls1c7_c00001{letter-spacing:-0.595320px;}
.ls1e7_c00001{letter-spacing:-0.588060px;}
.ls10_c00001{letter-spacing:-0.579600px;}
.lsca_c00001{letter-spacing:-0.576000px;}
.ls1af_c00001{letter-spacing:-0.559020px;}
.ls441_c00001{letter-spacing:-0.552900px;}
.lsd_c00001{letter-spacing:-0.541500px;}
.ls7_c00001{letter-spacing:-0.541200px;}
.ls1cc_c00001{letter-spacing:-0.529980px;}
.ls1b1_c00001{letter-spacing:-0.522720px;}
.ls258_c00001{letter-spacing:-0.512460px;}
.ls2be_c00001{letter-spacing:-0.491400px;}
.ls15c_c00001{letter-spacing:-0.487200px;}
.ls48b_c00001{letter-spacing:-0.483840px;}
.ls430_c00001{letter-spacing:-0.480240px;}
.ls1ea_c00001{letter-spacing:-0.479160px;}
.lsa1_c00001{letter-spacing:-0.475200px;}
.ls252_c00001{letter-spacing:-0.470340px;}
.ls48a_c00001{letter-spacing:-0.463680px;}
.ls40c_c00001{letter-spacing:-0.463320px;}
.lsb7_c00001{letter-spacing:-0.460800px;}
.lsa5_c00001{letter-spacing:-0.453600px;}
.ls1e8_c00001{letter-spacing:-0.450120px;}
.ls268_c00001{letter-spacing:-0.449280px;}
.ls9a_c00001{letter-spacing:-0.446400px;}
.ls13f_c00001{letter-spacing:-0.445440px;}
.ls151_c00001{letter-spacing:-0.438480px;}
.ls190_c00001{letter-spacing:-0.435600px;}
.lsc6_c00001{letter-spacing:-0.432000px;}
.ls15f_c00001{letter-spacing:-0.431880px;}
.ls45a_c00001{letter-spacing:-0.424560px;}
.ls1c8_c00001{letter-spacing:-0.421080px;}
.ls1b3_c00001{letter-spacing:-0.406560px;}
.lsbc_c00001{letter-spacing:-0.396000px;}
.ls1c0_c00001{letter-spacing:-0.392040px;}
.ls495_c00001{letter-spacing:-0.383040px;}
.ls146_c00001{letter-spacing:-0.382800px;}
.ls1b0_c00001{letter-spacing:-0.377520px;}
.ls145_c00001{letter-spacing:-0.375840px;}
.ls1da_c00001{letter-spacing:-0.370260px;}
.ls1de_c00001{letter-spacing:-0.363000px;}
.ls15e_c00001{letter-spacing:-0.361920px;}
.lsa6_c00001{letter-spacing:-0.360000px;}
.ls1e0_c00001{letter-spacing:-0.355740px;}
.ls3e0_c00001{letter-spacing:-0.355680px;}
.ls484_c00001{letter-spacing:-0.352440px;}
.ls1be_c00001{letter-spacing:-0.348480px;}
.lsb1_c00001{letter-spacing:-0.345600px;}
.ls1d1_c00001{letter-spacing:-0.341220px;}
.ls1db_c00001{letter-spacing:-0.333960px;}
.ls98_c00001{letter-spacing:-0.331200px;}
.ls269_c00001{letter-spacing:-0.329940px;}
.ls1ca_c00001{letter-spacing:-0.326700px;}
.ls34d_c00001{letter-spacing:-0.324300px;}
.ls1b7_c00001{letter-spacing:-0.312180px;}
.ls1a8_c00001{letter-spacing:-0.304920px;}
.ls26a_c00001{letter-spacing:-0.301860px;}
.ls1ad_c00001{letter-spacing:-0.297660px;}
.ls1b9_c00001{letter-spacing:-0.290400px;}
.ls1b4_c00001{letter-spacing:-0.283140px;}
.ls27e_c00001{letter-spacing:-0.282240px;}
.ls197_c00001{letter-spacing:-0.275880px;}
.ls467_c00001{letter-spacing:-0.273780px;}
.lsa3_c00001{letter-spacing:-0.273600px;}
.ls18e_c00001{letter-spacing:-0.268620px;}
.ls2c2_c00001{letter-spacing:-0.266760px;}
.lsbb_c00001{letter-spacing:-0.266400px;}
.ls1a4_c00001{letter-spacing:-0.261360px;}
.ls1b8_c00001{letter-spacing:-0.254100px;}
.ls3e1_c00001{letter-spacing:-0.253080px;}
.ls14f_c00001{letter-spacing:-0.250560px;}
.ls1ce_c00001{letter-spacing:-0.246840px;}
.ls8a_c00001{letter-spacing:-0.244800px;}
.ls1a6_c00001{letter-spacing:-0.239580px;}
.lsb6_c00001{letter-spacing:-0.237600px;}
.ls19f_c00001{letter-spacing:-0.232320px;}
.ls2c7_c00001{letter-spacing:-0.231660px;}
.lsac_c00001{letter-spacing:-0.230400px;}
.ls1ae_c00001{letter-spacing:-0.225060px;}
.lsb2_c00001{letter-spacing:-0.223200px;}
.ls46_c00001{letter-spacing:-0.221160px;}
.ls1c9_c00001{letter-spacing:-0.217800px;}
.lscb_c00001{letter-spacing:-0.216000px;}
.lsaf_c00001{letter-spacing:-0.208800px;}
.ls9e_c00001{letter-spacing:-0.201600px;}
.ls25c_c00001{letter-spacing:-0.196560px;}
.ls198_c00001{letter-spacing:-0.196020px;}
.ls99_c00001{letter-spacing:-0.194400px;}
.ls40_c00001{letter-spacing:-0.189720px;}
.ls1cf_c00001{letter-spacing:-0.188760px;}
.ls45f_c00001{letter-spacing:-0.187920px;}
.ls3c_c00001{letter-spacing:-0.187200px;}
.ls3d2_c00001{letter-spacing:-0.184680px;}
.ls1c5_c00001{letter-spacing:-0.181500px;}
.ls14b_c00001{letter-spacing:-0.180960px;}
.ls9b_c00001{letter-spacing:-0.180000px;}
.lscc_c00001{letter-spacing:-0.172800px;}
.ls1dc_c00001{letter-spacing:-0.166980px;}
.lsb4_c00001{letter-spacing:-0.165600px;}
.ls2c0_c00001{letter-spacing:-0.154440px;}
.ls2fe_c00001{letter-spacing:-0.153120px;}
.ls195_c00001{letter-spacing:-0.152460px;}
.lsc0_c00001{letter-spacing:-0.151200px;}
.ls407_c00001{letter-spacing:-0.147420px;}
.ls8b_c00001{letter-spacing:-0.144000px;}
.ls1d3_c00001{letter-spacing:-0.137940px;}
.ls1df_c00001{letter-spacing:-0.130680px;}
.ls1a5_c00001{letter-spacing:-0.123420px;}
.ls1d2_c00001{letter-spacing:-0.116160px;}
.ls92_c00001{letter-spacing:-0.115200px;}
.ls40a_c00001{letter-spacing:-0.112320px;}
.ls18c_c00001{letter-spacing:-0.108900px;}
.lsa7_c00001{letter-spacing:-0.108000px;}
.ls193_c00001{letter-spacing:-0.101640px;}
.ls192_c00001{letter-spacing:-0.094380px;}
.ls26e_c00001{letter-spacing:-0.091260px;}
.ls140_c00001{letter-spacing:-0.090480px;}
.ls18d_c00001{letter-spacing:-0.087120px;}
.lsb0_c00001{letter-spacing:-0.086400px;}
.ls1d9_c00001{letter-spacing:-0.079860px;}
.lsb5_c00001{letter-spacing:-0.079200px;}
.ls147_c00001{letter-spacing:-0.076560px;}
.ls1d4_c00001{letter-spacing:-0.072600px;}
.lsb3_c00001{letter-spacing:-0.072000px;}
.ls1ac_c00001{letter-spacing:-0.070200px;}
.ls199_c00001{letter-spacing:-0.065340px;}
.ls1d5_c00001{letter-spacing:-0.058080px;}
.ls19c_c00001{letter-spacing:-0.050820px;}
.ls257_c00001{letter-spacing:-0.049140px;}
.ls30_c00001{letter-spacing:-0.048600px;}
.ls94_c00001{letter-spacing:-0.043200px;}
.ls3d6_c00001{letter-spacing:-0.041040px;}
.ls1a1_c00001{letter-spacing:-0.036300px;}
.lsbd_c00001{letter-spacing:-0.036000px;}
.ls45b_c00001{letter-spacing:-0.034800px;}
.ls1c6_c00001{letter-spacing:-0.029040px;}
.ls9c_c00001{letter-spacing:-0.028800px;}
.ls255_c00001{letter-spacing:-0.028080px;}
.lscd_c00001{letter-spacing:-0.021600px;}
.lsab_c00001{letter-spacing:-0.014400px;}
.ls253_c00001{letter-spacing:-0.014040px;}
.ls19a_c00001{letter-spacing:-0.007260px;}
.ls8e_c00001{letter-spacing:-0.007200px;}
.ls303_c00001{letter-spacing:-0.005820px;}
.ls9_c00001{letter-spacing:0.000000px;}
.ls12b_c00001{letter-spacing:0.006960px;}
.ls186_c00001{letter-spacing:0.007260px;}
.lsfc_c00001{letter-spacing:0.013920px;}
.ls56_c00001{letter-spacing:0.014400px;}
.ls34e_c00001{letter-spacing:0.020700px;}
.ls106_c00001{letter-spacing:0.027840px;}
.ls26b_c00001{letter-spacing:0.028080px;}
.ls6a_c00001{letter-spacing:0.028800px;}
.ls458_c00001{letter-spacing:0.032400px;}
.lsf1_c00001{letter-spacing:0.034800px;}
.ls4d_c00001{letter-spacing:0.036000px;}
.ls179_c00001{letter-spacing:0.036300px;}
.ls2af_c00001{letter-spacing:0.042120px;}
.ls5c_c00001{letter-spacing:0.043200px;}
.ls17c_c00001{letter-spacing:0.043560px;}
.ls318_c00001{letter-spacing:0.048300px;}
.ls138_c00001{letter-spacing:0.048720px;}
.ls466_c00001{letter-spacing:0.049560px;}
.ls70_c00001{letter-spacing:0.050400px;}
.ls260_c00001{letter-spacing:0.056160px;}
.ls74_c00001{letter-spacing:0.057600px;}
.ls86_c00001{letter-spacing:0.064800px;}
.ls168_c00001{letter-spacing:0.065340px;}
.ls77_c00001{letter-spacing:0.072000px;}
.ls166_c00001{letter-spacing:0.072600px;}
.ls349_c00001{letter-spacing:0.077220px;}
.ls53_c00001{letter-spacing:0.079200px;}
.ls3d_c00001{letter-spacing:0.088200px;}
.ls231_c00001{letter-spacing:0.091260px;}
.ls72_c00001{letter-spacing:0.093600px;}
.lsf0_c00001{letter-spacing:0.097440px;}
.ls16c_c00001{letter-spacing:0.101640px;}
.ls3d8_c00001{letter-spacing:0.102600px;}
.ls2fa_c00001{letter-spacing:0.104400px;}
.ls1f3_c00001{letter-spacing:0.105300px;}
.ls418_c00001{letter-spacing:0.107100px;}
.ls189_c00001{letter-spacing:0.108900px;}
.ls183_c00001{letter-spacing:0.123420px;}
.ls15d_c00001{letter-spacing:0.125280px;}
.ls225_c00001{letter-spacing:0.126360px;}
.ls4c_c00001{letter-spacing:0.129600px;}
.ls25a_c00001{letter-spacing:0.133380px;}
.ls34_c00001{letter-spacing:0.135360px;}
.ls174_c00001{letter-spacing:0.137940px;}
.ls2c8_c00001{letter-spacing:0.140400px;}
.ls78_c00001{letter-spacing:0.144000px;}
.ls171_c00001{letter-spacing:0.145200px;}
.ls302_c00001{letter-spacing:0.146160px;}
.ls26d_c00001{letter-spacing:0.147420px;}
.ls64_c00001{letter-spacing:0.151200px;}
.ls6c_c00001{letter-spacing:0.158400px;}
.ls41b_c00001{letter-spacing:0.165600px;}
.ls2cd_c00001{letter-spacing:0.167040px;}
.ls2ee_c00001{letter-spacing:0.174000px;}
.ls2b6_c00001{letter-spacing:0.175500px;}
.ls249_c00001{letter-spacing:0.189540px;}
.ls37f_c00001{letter-spacing:0.189840px;}
.ls20_c00001{letter-spacing:0.192060px;}
.ls5e_c00001{letter-spacing:0.194400px;}
.ls172_c00001{letter-spacing:0.196020px;}
.ls3af_c00001{letter-spacing:0.201600px;}
.ls16e_c00001{letter-spacing:0.203280px;}
.lsd0_c00001{letter-spacing:0.203580px;}
.lsa_c00001{letter-spacing:0.206401px;}
.ls160_c00001{letter-spacing:0.208800px;}
.ls1fc_c00001{letter-spacing:0.210600px;}
.ls29_c00001{letter-spacing:0.214320px;}
.lsda_c00001{letter-spacing:0.215760px;}
.ls75_c00001{letter-spacing:0.216000px;}
.ls16f_c00001{letter-spacing:0.217800px;}
.ls343_c00001{letter-spacing:0.220800px;}
.lsde_c00001{letter-spacing:0.222720px;}
.ls85_c00001{letter-spacing:0.223200px;}
.ls42e_c00001{letter-spacing:0.224400px;}
.ls60_c00001{letter-spacing:0.230400px;}
.ls294_c00001{letter-spacing:0.231660px;}
.ls83_c00001{letter-spacing:0.237600px;}
.ls17f_c00001{letter-spacing:0.239580px;}
.ls429_c00001{letter-spacing:0.241920px;}
.ls6d_c00001{letter-spacing:0.244800px;}
.ls21c_c00001{letter-spacing:0.245700px;}
.ls2de_c00001{letter-spacing:0.250560px;}
.ls61_c00001{letter-spacing:0.252000px;}
.ls266_c00001{letter-spacing:0.252720px;}
.ls28_c00001{letter-spacing:0.254400px;}
.ls17_c00001{letter-spacing:0.256500px;}
.ls4f_c00001{letter-spacing:0.259200px;}
.ls24b_c00001{letter-spacing:0.259740px;}
.ls59_c00001{letter-spacing:0.266400px;}
.ls131_c00001{letter-spacing:0.271440px;}
.ls90_c00001{letter-spacing:0.273600px;}
.ls38_c00001{letter-spacing:0.279360px;}
.ls69_c00001{letter-spacing:0.280800px;}
.ls1_c00001{letter-spacing:0.285000px;}
.ls240_c00001{letter-spacing:0.287820px;}
.ls57_c00001{letter-spacing:0.288000px;}
.ls3a2_c00001{letter-spacing:0.295200px;}
.ls1a2_c00001{letter-spacing:0.297660px;}
.ls41e_c00001{letter-spacing:0.299280px;}
.ls26f_c00001{letter-spacing:0.301860px;}
.ls51_c00001{letter-spacing:0.309600px;}
.ls49_c00001{letter-spacing:0.314280px;}
.ls7b_c00001{letter-spacing:0.316800px;}
.lsed_c00001{letter-spacing:0.320160px;}
.ls234_c00001{letter-spacing:0.322920px;}
.lsa2_c00001{letter-spacing:0.324000px;}
.ls105_c00001{letter-spacing:0.327120px;}
.ls487_c00001{letter-spacing:0.329948px;}
.ls7d_c00001{letter-spacing:0.331200px;}
.lsd3_c00001{letter-spacing:0.334080px;}
.ls245_c00001{letter-spacing:0.336960px;}
.ls6b_c00001{letter-spacing:0.338400px;}
.ls1f4_c00001{letter-spacing:0.343980px;}
.ls4e_c00001{letter-spacing:0.345600px;}
.ls152_c00001{letter-spacing:0.348000px;}
.ls449_c00001{letter-spacing:0.351000px;}
.ls222_c00001{letter-spacing:0.358020px;}
.ls130_c00001{letter-spacing:0.368880px;}
.ls24c_c00001{letter-spacing:0.372060px;}
.ls332_c00001{letter-spacing:0.372600px;}
.ls81_c00001{letter-spacing:0.374400px;}
.ls14a_c00001{letter-spacing:0.375840px;}
.ls42d_c00001{letter-spacing:0.376200px;}
.ls17e_c00001{letter-spacing:0.377520px;}
.ls1b2_c00001{letter-spacing:0.384780px;}
.ls20c_c00001{letter-spacing:0.386100px;}
.ls79_c00001{letter-spacing:0.388800px;}
.lsf3_c00001{letter-spacing:0.389760px;}
.ls274_c00001{letter-spacing:0.392700px;}
.ls346_c00001{letter-spacing:0.393300px;}
.ls2ff_c00001{letter-spacing:0.396720px;}
.ls22c_c00001{letter-spacing:0.400140px;}
.ls3bf_c00001{letter-spacing:0.400200px;}
.ls2cc_c00001{letter-spacing:0.403680px;}
.ls1d8_c00001{letter-spacing:0.406560px;}
.ls493_c00001{letter-spacing:0.407160px;}
.ls133_c00001{letter-spacing:0.410640px;}
.ls1f6_c00001{letter-spacing:0.421200px;}
.lse2_c00001{letter-spacing:0.424560px;}
.ls50_c00001{letter-spacing:0.424800px;}
.ls2c1_c00001{letter-spacing:0.428220px;}
.ls127_c00001{letter-spacing:0.431520px;}
.ls416_c00001{letter-spacing:0.437760px;}
.ls157_c00001{letter-spacing:0.445440px;}
.ls33e_c00001{letter-spacing:0.448500px;}
.ls2ae_c00001{letter-spacing:0.449280px;}
.ls129_c00001{letter-spacing:0.452400px;}
.ls200_c00001{letter-spacing:0.456300px;}
.ls23a_c00001{letter-spacing:0.463320px;}
.ls3d5_c00001{letter-spacing:0.465120px;}
.ls113_c00001{letter-spacing:0.466320px;}
.ls267_c00001{letter-spacing:0.470340px;}
.ls211_c00001{letter-spacing:0.477360px;}
.ls101_c00001{letter-spacing:0.480240px;}
.ls314_c00001{letter-spacing:0.483000px;}
.ls205_c00001{letter-spacing:0.484380px;}
.lsd7_c00001{letter-spacing:0.487200px;}
.ls1f1_c00001{letter-spacing:0.491400px;}
.ls134_c00001{letter-spacing:0.494160px;}
.lsbe_c00001{letter-spacing:0.496800px;}
.ls444_c00001{letter-spacing:0.498420px;}
.ls2d8_c00001{letter-spacing:0.501120px;}
.ls1ff_c00001{letter-spacing:0.505440px;}
.ls141_c00001{letter-spacing:0.508080px;}
.ls5d_c00001{letter-spacing:0.511200px;}
.ls25d_c00001{letter-spacing:0.512460px;}
.ls2fd_c00001{letter-spacing:0.515040px;}
.ls480_c00001{letter-spacing:0.517440px;}
.ls344_c00001{letter-spacing:0.517500px;}
.ls221_c00001{letter-spacing:0.519480px;}
.ls132_c00001{letter-spacing:0.522000px;}
.ls25e_c00001{letter-spacing:0.526500px;}
.ls380_c00001{letter-spacing:0.528840px;}
.ls122_c00001{letter-spacing:0.528960px;}
.ls22_c00001{letter-spacing:0.530100px;}
.ls65_c00001{letter-spacing:0.532800px;}
.ls22e_c00001{letter-spacing:0.533520px;}
.ls114_c00001{letter-spacing:0.535920px;}
.ls359_c00001{letter-spacing:0.538200px;}
.ls21d_c00001{letter-spacing:0.540540px;}
.lsd6_c00001{letter-spacing:0.542880px;}
.ls1ef_c00001{letter-spacing:0.546480px;}
.ls238_c00001{letter-spacing:0.547560px;}
.ls111_c00001{letter-spacing:0.549840px;}
.ls21e_c00001{letter-spacing:0.554580px;}
.ls104_c00001{letter-spacing:0.556800px;}
.ls1fb_c00001{letter-spacing:0.561600px;}
.ls12c_c00001{letter-spacing:0.563760px;}
.ls483_c00001{letter-spacing:0.565800px;}
.ls237_c00001{letter-spacing:0.568620px;}
.lse1_c00001{letter-spacing:0.570720px;}
.ls3a5_c00001{letter-spacing:0.572700px;}
.ls409_c00001{letter-spacing:0.575640px;}
.ls120_c00001{letter-spacing:0.577680px;}
.ls88_c00001{letter-spacing:0.582660px;}
.lsa8_c00001{letter-spacing:0.583200px;}
.ls396_c00001{letter-spacing:0.584640px;}
.ls497_c00001{letter-spacing:0.587400px;}
.ls25_c00001{letter-spacing:0.589680px;}
.ls125_c00001{letter-spacing:0.591600px;}
.ls18_c00001{letter-spacing:0.592800px;}
.ls44d_c00001{letter-spacing:0.596700px;}
.ls236_c00001{letter-spacing:0.603720px;}
.ls295_c00001{letter-spacing:0.610740px;}
.ls486_c00001{letter-spacing:0.613440px;}
.ls375_c00001{letter-spacing:0.614100px;}
.lse_c00001{letter-spacing:0.615600px;}
.ls44f_c00001{letter-spacing:0.615960px;}
.ls22a_c00001{letter-spacing:0.617760px;}
.ls10c_c00001{letter-spacing:0.619440px;}
.ls6_c00001{letter-spacing:0.622740px;}
.ls169_c00001{letter-spacing:0.624780px;}
.ls107_c00001{letter-spacing:0.626400px;}
.ls4_c00001{letter-spacing:0.627000px;}
.ls3c3_c00001{letter-spacing:0.627900px;}
.ls227_c00001{letter-spacing:0.631800px;}
.ls398_c00001{letter-spacing:0.633360px;}
.ls80_c00001{letter-spacing:0.633600px;}
.ls377_c00001{letter-spacing:0.634800px;}
.ls440_c00001{letter-spacing:0.638400px;}
.ls264_c00001{letter-spacing:0.638820px;}
.ls36c_c00001{letter-spacing:0.641700px;}
.ls31e_c00001{letter-spacing:0.644280px;}
.ls214_c00001{letter-spacing:0.645840px;}
.ls2e1_c00001{letter-spacing:0.647280px;}
.ls84_c00001{letter-spacing:0.648000px;}
.ls364_c00001{letter-spacing:0.648600px;}
.ls2a7_c00001{letter-spacing:0.652860px;}
.ls16b_c00001{letter-spacing:0.653400px;}
.ls425_c00001{letter-spacing:0.654240px;}
.ls5_c00001{letter-spacing:0.655500px;}
.ls246_c00001{letter-spacing:0.659880px;}
.ls277_c00001{letter-spacing:0.660030px;}
.ls177_c00001{letter-spacing:0.660660px;}
.ls139_c00001{letter-spacing:0.661200px;}
.ls366_c00001{letter-spacing:0.662400px;}
.ls48_c00001{letter-spacing:0.665520px;}
.ls20e_c00001{letter-spacing:0.666900px;}
.ls39d_c00001{letter-spacing:0.668160px;}
.ls35f_c00001{letter-spacing:0.669300px;}
.ls241_c00001{letter-spacing:0.673920px;}
.ls10b_c00001{letter-spacing:0.675120px;}
.ls44_c00001{letter-spacing:0.675960px;}
.ls362_c00001{letter-spacing:0.676200px;}
.ls224_c00001{letter-spacing:0.680940px;}
.ls45c_c00001{letter-spacing:0.682080px;}
.ls340_c00001{letter-spacing:0.683100px;}
.ls203_c00001{letter-spacing:0.687960px;}
.ls2f8_c00001{letter-spacing:0.689040px;}
.ls358_c00001{letter-spacing:0.690000px;}
.ls58_c00001{letter-spacing:0.691200px;}
.ls220_c00001{letter-spacing:0.694980px;}
.ls11f_c00001{letter-spacing:0.696000px;}
.ls355_c00001{letter-spacing:0.696900px;}
.lsb_c00001{letter-spacing:0.701100px;}
.ls242_c00001{letter-spacing:0.702000px;}
.ls2dd_c00001{letter-spacing:0.702960px;}
.ls35b_c00001{letter-spacing:0.703800px;}
.ls67_c00001{letter-spacing:0.705600px;}
.ls1aa_c00001{letter-spacing:0.709020px;}
.ls2db_c00001{letter-spacing:0.709920px;}
.ls356_c00001{letter-spacing:0.710700px;}
.ls435_c00001{letter-spacing:0.712320px;}
.ls2b0_c00001{letter-spacing:0.716040px;}
.lsf8_c00001{letter-spacing:0.716880px;}
.ls23e_c00001{letter-spacing:0.723060px;}
.ls137_c00001{letter-spacing:0.723840px;}
.ls2d2_c00001{letter-spacing:0.730800px;}
.ls213_c00001{letter-spacing:0.737100px;}
.lsd4_c00001{letter-spacing:0.737760px;}
.ls34c_c00001{letter-spacing:0.738300px;}
.lsef_c00001{letter-spacing:0.744720px;}
.ls347_c00001{letter-spacing:0.745200px;}
.ls201_c00001{letter-spacing:0.751140px;}
.lsf9_c00001{letter-spacing:0.751680px;}
.ls350_c00001{letter-spacing:0.756600px;}
.ls223_c00001{letter-spacing:0.758160px;}
.lsfe_c00001{letter-spacing:0.758640px;}
.ls36d_c00001{letter-spacing:0.759000px;}
.ls464_c00001{letter-spacing:0.764640px;}
.ls230_c00001{letter-spacing:0.765180px;}
.ls2d7_c00001{letter-spacing:0.765600px;}
.ls3ea_c00001{letter-spacing:0.765900px;}
.ls9d_c00001{letter-spacing:0.770400px;}
.ls2b7_c00001{letter-spacing:0.772200px;}
.ls397_c00001{letter-spacing:0.772560px;}
.ls36b_c00001{letter-spacing:0.772800px;}
.ls89_c00001{letter-spacing:0.779220px;}
.lsf4_c00001{letter-spacing:0.779520px;}
.ls3ff_c00001{letter-spacing:0.779700px;}
.ls173_c00001{letter-spacing:0.784080px;}
.ls22b_c00001{letter-spacing:0.786240px;}
.lse8_c00001{letter-spacing:0.786480px;}
.ls341_c00001{letter-spacing:0.786600px;}
.ls447_c00001{letter-spacing:0.793260px;}
.lsd5_c00001{letter-spacing:0.793440px;}
.ls3f6_c00001{letter-spacing:0.793500px;}
.ls239_c00001{letter-spacing:0.800280px;}
.ls3ed_c00001{letter-spacing:0.800400px;}
.ls228_c00001{letter-spacing:0.807300px;}
.ls2d9_c00001{letter-spacing:0.807360px;}
.ls3f9_c00001{letter-spacing:0.814200px;}
.lsd9_c00001{letter-spacing:0.814320px;}
.ls3a_c00001{letter-spacing:0.817800px;}
.ls351_c00001{letter-spacing:0.820620px;}
.ls3ee_c00001{letter-spacing:0.821100px;}
.ls10d_c00001{letter-spacing:0.821280px;}
.ls20b_c00001{letter-spacing:0.821340px;}
.ls11d_c00001{letter-spacing:0.828240px;}
.ls1fa_c00001{letter-spacing:0.828360px;}
.ls11a_c00001{letter-spacing:0.835200px;}
.ls1f2_c00001{letter-spacing:0.835380px;}
.ls35a_c00001{letter-spacing:0.841800px;}
.lsd2_c00001{letter-spacing:0.842160px;}
.ls244_c00001{letter-spacing:0.842400px;}
.ls316_c00001{letter-spacing:0.848700px;}
.lsfa_c00001{letter-spacing:0.849120px;}
.ls207_c00001{letter-spacing:0.849420px;}
.ls33_c00001{letter-spacing:0.852600px;}
.ls334_c00001{letter-spacing:0.855600px;}
.ls135_c00001{letter-spacing:0.856080px;}
.ls256_c00001{letter-spacing:0.856440px;}
.ls329_c00001{letter-spacing:0.862500px;}
.ls100_c00001{letter-spacing:0.863040px;}
.lsae_c00001{letter-spacing:0.864000px;}
.ls32c_c00001{letter-spacing:0.869400px;}
.ls11e_c00001{letter-spacing:0.870000px;}
.ls461_c00001{letter-spacing:0.870480px;}
.ls330_c00001{letter-spacing:0.876300px;}
.ls2f7_c00001{letter-spacing:0.876960px;}
.ls2ba_c00001{letter-spacing:0.877500px;}
.ls3b5_c00001{letter-spacing:0.882360px;}
.ls31b_c00001{letter-spacing:0.883200px;}
.ls121_c00001{letter-spacing:0.883920px;}
.ls217_c00001{letter-spacing:0.884520px;}
.ls30a_c00001{letter-spacing:0.890100px;}
.ls406_c00001{letter-spacing:0.890820px;}
.ls2d5_c00001{letter-spacing:0.890880px;}
.ls235_c00001{letter-spacing:0.891540px;}
.ls320_c00001{letter-spacing:0.897000px;}
.lsf2_c00001{letter-spacing:0.897840px;}
.ls2ab_c00001{letter-spacing:0.898560px;}
.ls162_c00001{letter-spacing:0.900240px;}
.ls30d_c00001{letter-spacing:0.903900px;}
.ls2f9_c00001{letter-spacing:0.904800px;}
.ls206_c00001{letter-spacing:0.905580px;}
.ls384_c00001{letter-spacing:0.908520px;}
.ls33f_c00001{letter-spacing:0.910800px;}
.lse3_c00001{letter-spacing:0.911760px;}
.ls2bd_c00001{letter-spacing:0.912600px;}
.ls46b_c00001{letter-spacing:0.917700px;}
.ls155_c00001{letter-spacing:0.918720px;}
.ls1f5_c00001{letter-spacing:0.919620px;}
.ls3e7_c00001{letter-spacing:0.921120px;}
.lsc9_c00001{letter-spacing:0.921600px;}
.ls36e_c00001{letter-spacing:0.924600px;}
.lsf7_c00001{letter-spacing:0.925680px;}
.ls21b_c00001{letter-spacing:0.926640px;}
.ls150_c00001{letter-spacing:0.932640px;}
.ls47b_c00001{letter-spacing:0.938400px;}
.lsdf_c00001{letter-spacing:0.939600px;}
.ls20f_c00001{letter-spacing:0.940680px;}
.ls1f_c00001{letter-spacing:0.942840px;}
.ls7f_c00001{letter-spacing:0.943200px;}
.ls123_c00001{letter-spacing:0.946560px;}
.ls208_c00001{letter-spacing:0.947700px;}
.ls52_c00001{letter-spacing:0.950400px;}
.ls2f1_c00001{letter-spacing:0.953520px;}
.ls23d_c00001{letter-spacing:0.954720px;}
.ls2cf_c00001{letter-spacing:0.960480px;}
.ls42a_c00001{letter-spacing:0.960960px;}
.ls29a_c00001{letter-spacing:0.961740px;}
.ls46d_c00001{letter-spacing:0.966000px;}
.ls10f_c00001{letter-spacing:0.967440px;}
.ls28f_c00001{letter-spacing:0.968760px;}
.ls2d1_c00001{letter-spacing:0.974400px;}
.ls210_c00001{letter-spacing:0.975780px;}
.ls379_c00001{letter-spacing:0.977760px;}
.ls474_c00001{letter-spacing:0.981120px;}
.ls13b_c00001{letter-spacing:0.981360px;}
.ls2a4_c00001{letter-spacing:0.982800px;}
.ls3ad_c00001{letter-spacing:0.987840px;}
.lsea_c00001{letter-spacing:0.988320px;}
.ls1f8_c00001{letter-spacing:0.989820px;}
.ls6f_c00001{letter-spacing:0.993600px;}
.ls473_c00001{letter-spacing:0.994560px;}
.lsfb_c00001{letter-spacing:0.995280px;}
.ls2bf_c00001{letter-spacing:0.996840px;}
.lse0_c00001{letter-spacing:1.002240px;}
.ls29f_c00001{letter-spacing:1.003860px;}
.lsd8_c00001{letter-spacing:1.009200px;}
.ls1fd_c00001{letter-spacing:1.010880px;}
.ls459_c00001{letter-spacing:1.016160px;}
.ls2b4_c00001{letter-spacing:1.017900px;}
.ls3b2_c00001{letter-spacing:1.021200px;}
.lsf6_c00001{letter-spacing:1.023120px;}
.ls292_c00001{letter-spacing:1.024920px;}
.ls2ef_c00001{letter-spacing:1.030080px;}
.ls472_c00001{letter-spacing:1.035000px;}
.ls280_c00001{letter-spacing:1.038960px;}
.ls243_c00001{letter-spacing:1.045980px;}
.ls3b6_c00001{letter-spacing:1.046520px;}
.ls3aa_c00001{letter-spacing:1.050030px;}
.ls419_c00001{letter-spacing:1.050960px;}
.ls491_c00001{letter-spacing:1.053000px;}
.ls452_c00001{letter-spacing:1.054440px;}
.ls46e_c00001{letter-spacing:1.055700px;}
.ls11b_c00001{letter-spacing:1.057920px;}
.ls2a2_c00001{letter-spacing:1.060020px;}
.ls36f_c00001{letter-spacing:1.062600px;}
.lseb_c00001{letter-spacing:1.064880px;}
.lsba_c00001{letter-spacing:1.065600px;}
.ls3b3_c00001{letter-spacing:1.069500px;}
.lse9_c00001{letter-spacing:1.071840px;}
.ls3b4_c00001{letter-spacing:1.073880px;}
.ls36_c00001{letter-spacing:1.076940px;}
.ls124_c00001{letter-spacing:1.078800px;}
.ls37a_c00001{letter-spacing:1.080000px;}
.ls3df_c00001{letter-spacing:1.080720px;}
.ls2a3_c00001{letter-spacing:1.081080px;}
.lsd1_c00001{letter-spacing:1.082400px;}
.lsdd_c00001{letter-spacing:1.085760px;}
.ls232_c00001{letter-spacing:1.088100px;}
.ls3c9_c00001{letter-spacing:1.090200px;}
.ls158_c00001{letter-spacing:1.092720px;}
.ls204_c00001{letter-spacing:1.095120px;}
.ls36a_c00001{letter-spacing:1.097100px;}
.ls2e0_c00001{letter-spacing:1.099680px;}
.ls215_c00001{letter-spacing:1.102140px;}
.ls35c_c00001{letter-spacing:1.104000px;}
.ls2e4_c00001{letter-spacing:1.106640px;}
.ls2bb_c00001{letter-spacing:1.109160px;}
.ls39b_c00001{letter-spacing:1.113600px;}
.ls297_c00001{letter-spacing:1.116180px;}
.ls3_c00001{letter-spacing:1.117200px;}
.ls128_c00001{letter-spacing:1.120560px;}
.ls216_c00001{letter-spacing:1.123200px;}
.ls32a_c00001{letter-spacing:1.124700px;}
.ls23c_c00001{letter-spacing:1.130220px;}
.ls2d4_c00001{letter-spacing:1.134480px;}
.ls209_c00001{letter-spacing:1.137240px;}
.ls35d_c00001{letter-spacing:1.138500px;}
.ls353_c00001{letter-spacing:1.140720px;}
.ls2e6_c00001{letter-spacing:1.141440px;}
.ls23_c00001{letter-spacing:1.143900px;}
.ls2aa_c00001{letter-spacing:1.144260px;}
.ls354_c00001{letter-spacing:1.145400px;}
.ls2e2_c00001{letter-spacing:1.148400px;}
.ls2a9_c00001{letter-spacing:1.151280px;}
.ls327_c00001{letter-spacing:1.152300px;}
.lse5_c00001{letter-spacing:1.155360px;}
.ls34f_c00001{letter-spacing:1.157760px;}
.ls28a_c00001{letter-spacing:1.158300px;}
.ls401_c00001{letter-spacing:1.159200px;}
.ls112_c00001{letter-spacing:1.162320px;}
.ls298_c00001{letter-spacing:1.165320px;}
.ls46f_c00001{letter-spacing:1.166100px;}
.ls41a_c00001{letter-spacing:1.169280px;}
.ls37e_c00001{letter-spacing:1.170030px;}
.ls219_c00001{letter-spacing:1.172340px;}
.ls373_c00001{letter-spacing:1.173000px;}
.ls365_c00001{letter-spacing:1.179900px;}
.ls421_c00001{letter-spacing:1.183200px;}
.ls3d4_c00001{letter-spacing:1.183320px;}
.ls3ae_c00001{letter-spacing:1.186560px;}
.ls470_c00001{letter-spacing:1.186800px;}
.ls10e_c00001{letter-spacing:1.190160px;}
.ls282_c00001{letter-spacing:1.193400px;}
.ls371_c00001{letter-spacing:1.193700px;}
.ls39_c00001{letter-spacing:1.195680px;}
.ls2e8_c00001{letter-spacing:1.197120px;}
.ls181_c00001{letter-spacing:1.197900px;}
.ls43f_c00001{letter-spacing:1.200000px;}
.ls286_c00001{letter-spacing:1.200420px;}
.ls402_c00001{letter-spacing:1.200600px;}
.ls7c_c00001{letter-spacing:1.202400px;}
.ls87_c00001{letter-spacing:1.207440px;}
.ls3ba_c00001{letter-spacing:1.207500px;}
.ls108_c00001{letter-spacing:1.211040px;}
.ls23b_c00001{letter-spacing:1.214460px;}
.lsec_c00001{letter-spacing:1.218000px;}
.ls367_c00001{letter-spacing:1.221300px;}
.ls423_c00001{letter-spacing:1.224960px;}
.ls357_c00001{letter-spacing:1.228200px;}
.ls3db_c00001{letter-spacing:1.230000px;}
.ls102_c00001{letter-spacing:1.231920px;}
.ls3cd_c00001{letter-spacing:1.232100px;}
.ls352_c00001{letter-spacing:1.233840px;}
.ls317_c00001{letter-spacing:1.235100px;}
.ls2b5_c00001{letter-spacing:1.235520px;}
.ls3c7_c00001{letter-spacing:1.238760px;}
.ls12d_c00001{letter-spacing:1.238880px;}
.ls363_c00001{letter-spacing:1.242000px;}
.ls23f_c00001{letter-spacing:1.242540px;}
.ls489_c00001{letter-spacing:1.243200px;}
.ls3ca_c00001{letter-spacing:1.245420px;}
.ls178_c00001{letter-spacing:1.248720px;}
.ls3be_c00001{letter-spacing:1.248900px;}
.lsf5_c00001{letter-spacing:1.252800px;}
.ls44a_c00001{letter-spacing:1.256580px;}
.ls3c4_c00001{letter-spacing:1.258740px;}
.lsee_c00001{letter-spacing:1.259760px;}
.ls55_c00001{letter-spacing:1.260000px;}
.ls3ce_c00001{letter-spacing:1.261440px;}
.ls448_c00001{letter-spacing:1.263600px;}
.ls46c_c00001{letter-spacing:1.269600px;}
.ls2a0_c00001{letter-spacing:1.270620px;}
.ls479_c00001{letter-spacing:1.276500px;}
.ls28d_c00001{letter-spacing:1.277640px;}
.ls3bb_c00001{letter-spacing:1.283400px;}
.ls37b_c00001{letter-spacing:1.290030px;}
.ls3bc_c00001{letter-spacing:1.290300px;}
.ls291_c00001{letter-spacing:1.291680px;}
.ls426_c00001{letter-spacing:1.294560px;}
.ls35_c00001{letter-spacing:1.295160px;}
.ls369_c00001{letter-spacing:1.297200px;}
.ls494_c00001{letter-spacing:1.297860px;}
.ls29c_c00001{letter-spacing:1.298700px;}
.ls12f_c00001{letter-spacing:1.301520px;}
.ls374_c00001{letter-spacing:1.304100px;}
.ls29e_c00001{letter-spacing:1.305720px;}
.ls475_c00001{letter-spacing:1.310400px;}
.ls328_c00001{letter-spacing:1.311000px;}
.ls3d0_c00001{letter-spacing:1.312020px;}
.ls0_c00001{letter-spacing:1.316700px;}
.ls372_c00001{letter-spacing:1.317900px;}
.ls284_c00001{letter-spacing:1.319760px;}
.ls43e_c00001{letter-spacing:1.320030px;}
.ls116_c00001{letter-spacing:1.322400px;}
.ls48d_c00001{letter-spacing:1.332780px;}
.ls28c_c00001{letter-spacing:1.333800px;}
.ls3a0_c00001{letter-spacing:1.336320px;}
.ls47e_c00001{letter-spacing:1.337280px;}
.ls48f_c00001{letter-spacing:1.344420px;}
.ls3bd_c00001{letter-spacing:1.345500px;}
.ls287_c00001{letter-spacing:1.347840px;}
.lse6_c00001{letter-spacing:1.350240px;}
.ls164_c00001{letter-spacing:1.350360px;}
.ls47a_c00001{letter-spacing:1.352400px;}
.ls21f_c00001{letter-spacing:1.354860px;}
.ls2ed_c00001{letter-spacing:1.357200px;}
.ls32e_c00001{letter-spacing:1.359300px;}
.ls82_c00001{letter-spacing:1.360800px;}
.ls490_c00001{letter-spacing:1.364160px;}
.ls324_c00001{letter-spacing:1.366200px;}
.ls2b8_c00001{letter-spacing:1.368900px;}
.ls399_c00001{letter-spacing:1.371120px;}
.ls46a_c00001{letter-spacing:1.373100px;}
.ls388_c00001{letter-spacing:1.380000px;}
.ls451_c00001{letter-spacing:1.389960px;}
.ls492_c00001{letter-spacing:1.391040px;}
.ls11c_c00001{letter-spacing:1.392000px;}
.ls118_c00001{letter-spacing:1.398960px;}
.ls370_c00001{letter-spacing:1.400700px;}
.ls54_c00001{letter-spacing:1.404000px;}
.ls395_c00001{letter-spacing:1.405920px;}
.ls37c_c00001{letter-spacing:1.408698px;}
.ls2cb_c00001{letter-spacing:1.412880px;}
.ls3cb_c00001{letter-spacing:1.414500px;}
.ls335_c00001{letter-spacing:1.421400px;}
.ls21a_c00001{letter-spacing:1.425060px;}
.ls2d0_c00001{letter-spacing:1.426800px;}
.ls319_c00001{letter-spacing:1.428300px;}
.ls315_c00001{letter-spacing:1.435200px;}
.ls24_c00001{letter-spacing:1.438200px;}
.ls3e4_c00001{letter-spacing:1.440030px;}
.ls3a7_c00001{letter-spacing:1.440720px;}
.ls445_c00001{letter-spacing:1.453140px;}
.ls1f7_c00001{letter-spacing:1.460160px;}
.ls34a_c00001{letter-spacing:1.462800px;}
.ls2f6_c00001{letter-spacing:1.468560px;}
.ls477_c00001{letter-spacing:1.469700px;}
.ls3a9_c00001{letter-spacing:1.470030px;}
.ls48e_c00001{letter-spacing:1.472460px;}
.ls218_c00001{letter-spacing:1.474200px;}
.ls38c_c00001{letter-spacing:1.474560px;}
.ls15b_c00001{letter-spacing:1.475520px;}
.ls32d_c00001{letter-spacing:1.476600px;}
.ls2b3_c00001{letter-spacing:1.481220px;}
.ls333_c00001{letter-spacing:1.483500px;}
.ls288_c00001{letter-spacing:1.488240px;}
.ls47f_c00001{letter-spacing:1.490400px;}
.ls3b9_c00001{letter-spacing:1.497300px;}
.ls119_c00001{letter-spacing:1.503360px;}
.ls30c_c00001{letter-spacing:1.504200px;}
.ls337_c00001{letter-spacing:1.504260px;}
.ls233_c00001{letter-spacing:1.509300px;}
.ls17a_c00001{letter-spacing:1.510080px;}
.ls41f_c00001{letter-spacing:1.524240px;}
.ls325_c00001{letter-spacing:1.524900px;}
.ls389_c00001{letter-spacing:1.530000px;}
.ls2ac_c00001{letter-spacing:1.530360px;}
.ls2ea_c00001{letter-spacing:1.531200px;}
.ls313_c00001{letter-spacing:1.531800px;}
.ls71_c00001{letter-spacing:1.533600px;}
.ls446_c00001{letter-spacing:1.537380px;}
.ls311_c00001{letter-spacing:1.538700px;}
.ls176_c00001{letter-spacing:1.539120px;}
.ls2c4_c00001{letter-spacing:1.544400px;}
.ls5f_c00001{letter-spacing:1.548000px;}
.ls3b0_c00001{letter-spacing:1.549440px;}
.ls27_c00001{letter-spacing:1.550400px;}
.ls28e_c00001{letter-spacing:1.551420px;}
.ls32f_c00001{letter-spacing:1.552500px;}
.ls68_c00001{letter-spacing:1.555200px;}
.ls48c_c00001{letter-spacing:1.559400px;}
.ls273_c00001{letter-spacing:1.560000px;}
.ls2ad_c00001{letter-spacing:1.565460px;}
.ls404_c00001{letter-spacing:1.566300px;}
.ls281_c00001{letter-spacing:1.572480px;}
.ls3c8_c00001{letter-spacing:1.573200px;}
.ls3a4_c00001{letter-spacing:1.578240px;}
.ls32b_c00001{letter-spacing:1.580100px;}
.ls293_c00001{letter-spacing:1.586520px;}
.ls30f_c00001{letter-spacing:1.587000px;}
.ls26_c00001{letter-spacing:1.590480px;}
.ls331_c00001{letter-spacing:1.593900px;}
.ls12_c00001{letter-spacing:1.596000px;}
.ls2ce_c00001{letter-spacing:1.600800px;}
.ls1d_c00001{letter-spacing:1.601700px;}
.ls2e3_c00001{letter-spacing:1.607760px;}
.ls76_c00001{letter-spacing:1.612800px;}
.ls3f5_c00001{letter-spacing:1.614600px;}
.ls14c_c00001{letter-spacing:1.614720px;}
.ls16d_c00001{letter-spacing:1.618980px;}
.ls368_c00001{letter-spacing:1.621500px;}
.ls3ec_c00001{letter-spacing:1.628400px;}
.ls2b1_c00001{letter-spacing:1.628640px;}
.ls383_c00001{letter-spacing:1.633980px;}
.ls38d_c00001{letter-spacing:1.641600px;}
.ls3c2_c00001{letter-spacing:1.642200px;}
.ls103_c00001{letter-spacing:1.642560px;}
.ls22d_c00001{letter-spacing:1.642680px;}
.ls322_c00001{letter-spacing:1.649100px;}
.ls182_c00001{letter-spacing:1.655280px;}
.ls3b7_c00001{letter-spacing:1.656000px;}
.ls3f8_c00001{letter-spacing:1.662900px;}
.ls2fc_c00001{letter-spacing:1.663440px;}
.ls271_c00001{letter-spacing:1.667700px;}
.ls3b8_c00001{letter-spacing:1.669800px;}
.ls12a_c00001{letter-spacing:1.670400px;}
.ls289_c00001{letter-spacing:1.670760px;}
.ls165_c00001{letter-spacing:1.677060px;}
.ls42c_c00001{letter-spacing:1.680000px;}
.ls35e_c00001{letter-spacing:1.683600px;}
.ls411_c00001{letter-spacing:1.710000px;}
.ls405_c00001{letter-spacing:1.718100px;}
.ls469_c00001{letter-spacing:1.722240px;}
.ls3fe_c00001{letter-spacing:1.725000px;}
.ls117_c00001{letter-spacing:1.726080px;}
.ls115_c00001{letter-spacing:1.733040px;}
.ls185_c00001{letter-spacing:1.735140px;}
.ls454_c00001{letter-spacing:1.740000px;}
.ls202_c00001{letter-spacing:1.747980px;}
.ls38f_c00001{letter-spacing:1.756800px;}
.ls187_c00001{letter-spacing:1.756920px;}
.ls323_c00001{letter-spacing:1.759500px;}
.ls442_c00001{letter-spacing:1.763460px;}
.ls3cc_c00001{letter-spacing:1.764900px;}
.ls2d3_c00001{letter-spacing:1.767840px;}
.ls247_c00001{letter-spacing:1.769040px;}
.ls27a_c00001{letter-spacing:1.770030px;}
.ls31_c00001{letter-spacing:1.771200px;}
.ls40f_c00001{letter-spacing:1.773300px;}
.ls299_c00001{letter-spacing:1.776060px;}
.ls6e_c00001{letter-spacing:1.785600px;}
.ls2a1_c00001{letter-spacing:1.790100px;}
.ls250_c00001{letter-spacing:1.800300px;}
.ls126_c00001{letter-spacing:1.802640px;}
.ls283_c00001{letter-spacing:1.804140px;}
.ls2b2_c00001{letter-spacing:1.811160px;}
.ls3f3_c00001{letter-spacing:1.814700px;}
.ls180_c00001{letter-spacing:1.815000px;}
.ls226_c00001{letter-spacing:1.818180px;}
.ls5b_c00001{letter-spacing:1.821600px;}
.ls422_c00001{letter-spacing:1.823520px;}
.ls44b_c00001{letter-spacing:1.825200px;}
.ls31a_c00001{letter-spacing:1.828500px;}
.ls3f0_c00001{letter-spacing:1.835400px;}
.ls24f_c00001{letter-spacing:1.839240px;}
.ls410_c00001{letter-spacing:1.853280px;}
.ls3fa_c00001{letter-spacing:1.856100px;}
.ls3f2_c00001{letter-spacing:1.869900px;}
.ls376_c00001{letter-spacing:1.876800px;}
.ls310_c00001{letter-spacing:1.897500px;}
.ls392_c00001{letter-spacing:1.907040px;}
.ls30b_c00001{letter-spacing:1.911300px;}
.ls248_c00001{letter-spacing:1.930500px;}
.ls3f4_c00001{letter-spacing:1.932000px;}
.ls3fc_c00001{letter-spacing:1.938900px;}
.ls3c5_c00001{letter-spacing:1.945800px;}
.ls27c_c00001{letter-spacing:1.950030px;}
.ls3eb_c00001{letter-spacing:1.952700px;}
.ls394_c00001{letter-spacing:1.955760px;}
.ls38e_c00001{letter-spacing:1.958400px;}
.ls481_c00001{letter-spacing:1.962240px;}
.ls305_c00001{letter-spacing:1.962360px;}
.ls39c_c00001{letter-spacing:1.962720px;}
.lsbf_c00001{letter-spacing:1.965600px;}
.ls47c_c00001{letter-spacing:1.966500px;}
.ls2e_c00001{letter-spacing:1.971060px;}
.ls471_c00001{letter-spacing:1.980300px;}
.lse7_c00001{letter-spacing:1.983600px;}
.ls2ec_c00001{letter-spacing:1.997520px;}
.ls73_c00001{letter-spacing:2.016000px;}
.ls29b_c00001{letter-spacing:2.028780px;}
.ls30e_c00001{letter-spacing:2.042400px;}
.ls3f1_c00001{letter-spacing:2.056200px;}
.ls22f_c00001{letter-spacing:2.056860px;}
.ls393_c00001{letter-spacing:2.060160px;}
.ls16a_c00001{letter-spacing:2.061840px;}
.ls403_c00001{letter-spacing:2.063100px;}
.ls390_c00001{letter-spacing:2.067120px;}
.ls437_c00001{letter-spacing:2.076480px;}
.ls378_c00001{letter-spacing:2.076900px;}
.ls38a_c00001{letter-spacing:2.080500px;}
.ls39e_c00001{letter-spacing:2.081040px;}
.ls12e_c00001{letter-spacing:2.088000px;}
.ls285_c00001{letter-spacing:2.098980px;}
.ls163_c00001{letter-spacing:2.105400px;}
.ls2dc_c00001{letter-spacing:2.108880px;}
.ls3b_c00001{letter-spacing:2.115000px;}
.lse4_c00001{letter-spacing:2.122800px;}
.ls3ef_c00001{letter-spacing:2.132100px;}
.ls391_c00001{letter-spacing:2.136720px;}
.ls2f5_c00001{letter-spacing:2.143680px;}
.ls167_c00001{letter-spacing:2.148960px;}
.ls2f2_c00001{letter-spacing:2.150640px;}
.lsff_c00001{letter-spacing:2.164560px;}
.ls312_c00001{letter-spacing:2.187300px;}
.ls290_c00001{letter-spacing:2.204280px;}
.ls28b_c00001{letter-spacing:2.211300px;}
.ls321_c00001{letter-spacing:2.214900px;}
.ls39a_c00001{letter-spacing:2.220240px;}
.ls17d_c00001{letter-spacing:2.221560px;}
.ls2bc_c00001{letter-spacing:2.225340px;}
.ls41d_c00001{letter-spacing:2.227200px;}
.ls361_c00001{letter-spacing:2.249400px;}
.ls24e_c00001{letter-spacing:2.253420px;}
.ls37_c00001{letter-spacing:2.259900px;}
.ls457_c00001{letter-spacing:2.260440px;}
.ls450_c00001{letter-spacing:2.274480px;}
.ls17b_c00001{letter-spacing:2.279640px;}
.ls110_c00001{letter-spacing:2.282880px;}
.ls3fb_c00001{letter-spacing:2.290800px;}
.ls2f0_c00001{letter-spacing:2.303760px;}
.ls5a_c00001{letter-spacing:2.304000px;}
.ls439_c00001{letter-spacing:2.310000px;}
.ls3c0_c00001{letter-spacing:2.311500px;}
.ls2df_c00001{letter-spacing:2.317680px;}
.ls31f_c00001{letter-spacing:2.325300px;}
.ls1f9_c00001{letter-spacing:2.330640px;}
.ls3e8_c00001{letter-spacing:2.333100px;}
.lsdc_c00001{letter-spacing:2.338560px;}
.ls3e6_c00001{letter-spacing:2.339160px;}
.ls3f7_c00001{letter-spacing:2.346000px;}
.ls7a_c00001{letter-spacing:2.347200px;}
.ls385_c00001{letter-spacing:2.352660px;}
.ls476_c00001{letter-spacing:2.359800px;}
.ls14e_c00001{letter-spacing:2.366400px;}
.ls308_c00001{letter-spacing:2.375580px;}
.ls360_c00001{letter-spacing:2.394300px;}
.ls229_c00001{letter-spacing:2.400840px;}
.ls2ca_c00001{letter-spacing:2.415120px;}
.ls63_c00001{letter-spacing:2.419200px;}
.ls296_c00001{letter-spacing:2.421900px;}
.ls188_c00001{letter-spacing:2.424840px;}
.ls109_c00001{letter-spacing:2.436000px;}
.ls47d_c00001{letter-spacing:2.439360px;}
.ls339_c00001{letter-spacing:2.441340px;}
.ls307_c00001{letter-spacing:2.442600px;}
.ls2da_c00001{letter-spacing:2.442960px;}
.ls3b1_c00001{letter-spacing:2.464200px;}
.ls18a_c00001{letter-spacing:2.466420px;}
.lsfd_c00001{letter-spacing:2.477760px;}
.ls3c1_c00001{letter-spacing:2.484000px;}
.ls20d_c00001{letter-spacing:2.485080px;}
.ls3a3_c00001{letter-spacing:2.505600px;}
.ls2e7_c00001{letter-spacing:2.519520px;}
.ls488_c00001{letter-spacing:2.520000px;}
.ls2a8_c00001{letter-spacing:2.520180px;}
.ls3e9_c00001{letter-spacing:2.527020px;}
.ls270_c00001{letter-spacing:2.550000px;}
.ls24a_c00001{letter-spacing:2.555280px;}
.ls175_c00001{letter-spacing:2.555520px;}
.ls2b9_c00001{letter-spacing:2.576340px;}
.ls45_c00001{letter-spacing:2.580000px;}
.ls2f4_c00001{letter-spacing:2.589120px;}
.ls44e_c00001{letter-spacing:2.604420px;}
.ls3a1_c00001{letter-spacing:2.630880px;}
.ls136_c00001{letter-spacing:2.637840px;}
.ls2e9_c00001{letter-spacing:2.644800px;}
.ls13a_c00001{letter-spacing:2.651760px;}
.ls31d_c00001{letter-spacing:2.656500px;}
.ls2a6_c00001{letter-spacing:2.660580px;}
.ls3e2_c00001{letter-spacing:2.664000px;}
.ls1f0_c00001{letter-spacing:2.672460px;}
.ls24d_c00001{letter-spacing:2.674620px;}
.ls2_c00001{letter-spacing:2.679000px;}
.ls482_c00001{letter-spacing:2.681280px;}
.ls39f_c00001{letter-spacing:2.693760px;}
.ls13c_c00001{letter-spacing:2.694000px;}
.ls19_c00001{letter-spacing:2.700000px;}
.ls420_c00001{letter-spacing:2.700480px;}
.ls27f_c00001{letter-spacing:2.702700px;}
.ls2f_c00001{letter-spacing:2.730000px;}
.ls443_c00001{letter-spacing:2.733060px;}
.ls41_c00001{letter-spacing:2.739780px;}
.ls10a_c00001{letter-spacing:2.742240px;}
.ls1fe_c00001{letter-spacing:2.744820px;}
.lsf_c00001{letter-spacing:2.760000px;}
.ls478_c00001{letter-spacing:2.766900px;}
.ls2d6_c00001{letter-spacing:2.770080px;}
.ls309_c00001{letter-spacing:2.787600px;}
.ls13_c00001{letter-spacing:2.790000px;}
.ls3fd_c00001{letter-spacing:2.815200px;}
.ls47_c00001{letter-spacing:2.820000px;}
.ls44c_c00001{letter-spacing:2.822040px;}
.ls417_c00001{letter-spacing:2.834580px;}
.ls431_c00001{letter-spacing:2.838000px;}
.lsc_c00001{letter-spacing:2.850000px;}
.ls41c_c00001{letter-spacing:2.853600px;}
.ls7e_c00001{letter-spacing:2.858400px;}
.ls31c_c00001{letter-spacing:2.877300px;}
.ls32_c00001{letter-spacing:2.901600px;}
.ls170_c00001{letter-spacing:2.904000px;}
.ls251_c00001{letter-spacing:2.908800px;}
.ls62_c00001{letter-spacing:2.916000px;}
.ls438_c00001{letter-spacing:2.963400px;}
.ls2f3_c00001{letter-spacing:2.971920px;}
.ls20a_c00001{letter-spacing:2.990520px;}
.ls2eb_c00001{letter-spacing:2.992800px;}
.ls13d_c00001{letter-spacing:3.000000px;}
.ls18b_c00001{letter-spacing:3.030000px;}
.ls29d_c00001{letter-spacing:3.046680px;}
.ls3e3_c00001{letter-spacing:3.056940px;}
.ls212_c00001{letter-spacing:3.081780px;}
.ls338_c00001{letter-spacing:3.120000px;}
.ls424_c00001{letter-spacing:3.138960px;}
.ls2a5_c00001{letter-spacing:3.208140px;}
.ls3c6_c00001{letter-spacing:3.243420px;}
.ls2e5_c00001{letter-spacing:3.250320px;}
.lsdb_c00001{letter-spacing:3.278160px;}
.ls66_c00001{letter-spacing:3.312000px;}
.ls3d1_c00001{letter-spacing:3.330000px;}
.ls496_c00001{letter-spacing:3.360000px;}
.ls184_c00001{letter-spacing:3.412200px;}
.ls326_c00001{letter-spacing:3.443100px;}
.ls33b_c00001{letter-spacing:3.450000px;}
.ls13e_c00001{letter-spacing:3.480000px;}
.ls1ab_c00001{letter-spacing:3.510000px;}
.ls93_c00001{letter-spacing:3.600000px;}
.ls306_c00001{letter-spacing:3.610080px;}
.ls1e2_c00001{letter-spacing:3.630000px;}
.ls304_c00001{letter-spacing:3.783960px;}
.ls4b_c00001{letter-spacing:4.140000px;}
.ls400_c00001{letter-spacing:17.409600px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{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__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c00001{word-spacing:-18.144720px;}
.ws12_c00001{word-spacing:-18.111600px;}
.ws8_c00001{word-spacing:-16.500000px;}
.ws10_c00001{word-spacing:-16.215000px;}
.ws9_c00001{word-spacing:-15.690480px;}
.wse_c00001{word-spacing:-15.639960px;}
.ws0_c00001{word-spacing:-15.566700px;}
.wsa_c00001{word-spacing:-14.963400px;}
.ws5_c00001{word-spacing:-14.905500px;}
.wsf_c00001{word-spacing:-14.829360px;}
.ws2_c00001{word-spacing:-14.766000px;}
.ws6_c00001{word-spacing:-14.550000px;}
.ws3_c00001{word-spacing:-14.506500px;}
.wsd_c00001{word-spacing:-14.235360px;}
.ws4_c00001{word-spacing:-13.856400px;}
.ws1_c00001{word-spacing:-13.708500px;}
.wsb_c00001{word-spacing:-13.678200px;}
.ws7_c00001{word-spacing:0.000000px;}
.wsc_c00001{word-spacing:525.060000px;}
._1_c00001{margin-left:-47.359534px;}
._7_c00001{margin-left:-28.125000px;}
._39_c00001{margin-left:-21.465600px;}
._3a_c00001{margin-left:-19.153200px;}
._31_c00001{margin-left:-17.436300px;}
._c_c00001{margin-left:-16.182000px;}
._30_c00001{margin-left:-14.407200px;}
._26_c00001{margin-left:-13.215420px;}
._e_c00001{margin-left:-12.000000px;}
._2e_c00001{margin-left:-10.635000px;}
._2c_c00001{margin-left:-8.879580px;}
._2f_c00001{margin-left:-6.920700px;}
._18_c00001{margin-left:-5.112000px;}
._f_c00001{margin-left:-3.701400px;}
._a_c00001{margin-left:-2.328000px;}
._b_c00001{margin-left:-1.310100px;}
._4_c00001{width:1.076400px;}
._3_c00001{width:3.021000px;}
._6_c00001{width:4.600800px;}
._10_c00001{width:5.631600px;}
._2_c00001{width:7.125000px;}
._9_c00001{width:8.256900px;}
._d_c00001{width:9.466800px;}
._8_c00001{width:11.328000px;}
._11_c00001{width:13.214400px;}
._12_c00001{width:14.304300px;}
._17_c00001{width:16.071600px;}
._16_c00001{width:17.136000px;}
._2a_c00001{width:18.549660px;}
._15_c00001{width:19.692000px;}
._2d_c00001{width:20.714700px;}
._14_c00001{width:21.823200px;}
._21_c00001{width:22.860000px;}
._13_c00001{width:24.162000px;}
._23_c00001{width:25.271760px;}
._28_c00001{width:26.792640px;}
._20_c00001{width:28.048800px;}
._25_c00001{width:29.830560px;}
._22_c00001{width:31.263600px;}
._27_c00001{width:32.478240px;}
._24_c00001{width:34.250160px;}
._1e_c00001{width:35.964000px;}
._1d_c00001{width:37.296000px;}
._1c_c00001{width:38.361600px;}
._1f_c00001{width:39.672000px;}
._19_c00001{width:40.996800px;}
._1a_c00001{width:43.560000px;}
._1b_c00001{width:46.123200px;}
._2b_c00001{width:53.476260px;}
._33_c00001{width:84.840600px;}
._37_c00001{width:102.373200px;}
._32_c00001{width:108.599640px;}
._34_c00001{width:114.832800px;}
._35_c00001{width:152.642400px;}
._3b_c00001{width:196.460400px;}
._5_c00001{width:274.836000px;}
._0_c00001{width:287.234400px;}
._36_c00001{width:1874.520000px;}
._29_c00001{width:1877.752380px;}
._38_c00001{width:1952.894400px;}
.fc0_c00001{color:transparent;}
.fs47_c00001{font-size:11.520000px;}
.fs45_c00001{font-size:13.200600px;}
.fs57_c00001{font-size:17.280000px;}
.fs5d_c00001{font-size:18.720000px;}
.fs4f_c00001{font-size:19.800600px;}
.fs50_c00001{font-size:20.400600px;}
.fs62_c00001{font-size:21.000600px;}
.fs3f_c00001{font-size:21.600000px;}
.fs4a_c00001{font-size:23.400600px;}
.fs72_c00001{font-size:24.000000px;}
.fs35_c00001{font-size:24.600000px;}
.fs51_c00001{font-size:25.200000px;}
.fs55_c00001{font-size:25.800600px;}
.fs71_c00001{font-size:26.400600px;}
.fs61_c00001{font-size:27.360600px;}
.fs5b_c00001{font-size:27.600000px;}
.fs74_c00001{font-size:28.800000px;}
.fs5f_c00001{font-size:28.800600px;}
.fs60_c00001{font-size:29.400600px;}
.fs5c_c00001{font-size:30.600000px;}
.fs44_c00001{font-size:31.200000px;}
.fs5a_c00001{font-size:31.680000px;}
.fs64_c00001{font-size:33.000600px;}
.fs77_c00001{font-size:33.120600px;}
.fs66_c00001{font-size:34.200000px;}
.fs56_c00001{font-size:34.560000px;}
.fs46_c00001{font-size:35.400600px;}
.fs4e_c00001{font-size:37.200000px;}
.fs42_c00001{font-size:39.000600px;}
.fs76_c00001{font-size:39.600000px;}
.fs15_c00001{font-size:40.053000px;}
.fs6e_c00001{font-size:40.800600px;}
.fs78_c00001{font-size:42.600000px;}
.fs21_c00001{font-size:42.914400px;}
.fs6f_c00001{font-size:43.200000px;}
.fs49_c00001{font-size:45.600000px;}
.fs6d_c00001{font-size:46.200000px;}
.fs58_c00001{font-size:46.800600px;}
.fs25_c00001{font-size:48.000000px;}
.fs67_c00001{font-size:48.600000px;}
.fs68_c00001{font-size:50.400000px;}
.fs40_c00001{font-size:51.000000px;}
.fs30_c00001{font-size:51.600000px;}
.fs52_c00001{font-size:51.840000px;}
.fs38_c00001{font-size:52.800000px;}
.fs4b_c00001{font-size:53.280000px;}
.fs79_c00001{font-size:53.400000px;}
.fse_c00001{font-size:54.000000px;}
.fs22_c00001{font-size:54.600000px;}
.fs53_c00001{font-size:54.720000px;}
.fs7_c00001{font-size:55.200000px;}
.fs8_c00001{font-size:55.800000px;}
.fs73_c00001{font-size:56.160000px;}
.fs1f_c00001{font-size:56.400000px;}
.fs6_c00001{font-size:57.000000px;}
.fs3c_c00001{font-size:57.600000px;}
.fs14_c00001{font-size:58.200000px;}
.fs20_c00001{font-size:58.800000px;}
.fs43_c00001{font-size:59.400000px;}
.fs39_c00001{font-size:60.000000px;}
.fs3d_c00001{font-size:60.600000px;}
.fs65_c00001{font-size:61.200000px;}
.fs6b_c00001{font-size:61.800000px;}
.fs2d_c00001{font-size:62.400000px;}
.fs5e_c00001{font-size:63.600000px;}
.fs75_c00001{font-size:64.200000px;}
.fs23_c00001{font-size:64.800000px;}
.fs2f_c00001{font-size:65.400000px;}
.fs0_c00001{font-size:66.000000px;}
.fs63_c00001{font-size:66.600000px;}
.fs6c_c00001{font-size:67.200000px;}
.fs59_c00001{font-size:67.800000px;}
.fs54_c00001{font-size:68.400000px;}
.fs4d_c00001{font-size:69.000000px;}
.fs48_c00001{font-size:69.120000px;}
.fs3a_c00001{font-size:69.600000px;}
.fs36_c00001{font-size:70.200000px;}
.fs3b_c00001{font-size:70.800000px;}
.fs6a_c00001{font-size:71.400000px;}
.fs33_c00001{font-size:72.000000px;}
.fs3e_c00001{font-size:72.600000px;}
.fs26_c00001{font-size:73.200000px;}
.fs34_c00001{font-size:73.440000px;}
.fs37_c00001{font-size:73.800000px;}
.fs16_c00001{font-size:76.200000px;}
.fs7a_c00001{font-size:76.800000px;}
.fsa_c00001{font-size:77.245200px;}
.fs1a_c00001{font-size:77.400000px;}
.fs41_c00001{font-size:79.200000px;}
.fs4c_c00001{font-size:81.000000px;}
.fs13_c00001{font-size:81.600000px;}
.fs2a_c00001{font-size:82.200000px;}
.fs32_c00001{font-size:82.800000px;}
.fs2c_c00001{font-size:84.600000px;}
.fs9_c00001{font-size:88.800000px;}
.fsd_c00001{font-size:90.000000px;}
.fsb_c00001{font-size:91.200000px;}
.fs17_c00001{font-size:96.600000px;}
.fs1b_c00001{font-size:100.800000px;}
.fs70_c00001{font-size:102.600000px;}
.fs2_c00001{font-size:103.200600px;}
.fs69_c00001{font-size:106.800000px;}
.fs27_c00001{font-size:108.600000px;}
.fs24_c00001{font-size:111.600000px;}
.fs1d_c00001{font-size:112.200600px;}
.fs4_c00001{font-size:112.800000px;}
.fs1c_c00001{font-size:116.400000px;}
.fs2b_c00001{font-size:120.000000px;}
.fs3_c00001{font-size:123.600000px;}
.fs31_c00001{font-size:129.600000px;}
.fs19_c00001{font-size:131.400000px;}
.fs5_c00001{font-size:136.800000px;}
.fs29_c00001{font-size:139.200600px;}
.fs28_c00001{font-size:147.000000px;}
.fs18_c00001{font-size:151.200600px;}
.fs1_c00001{font-size:162.600000px;}
.fsf_c00001{font-size:163.200600px;}
.fs1e_c00001{font-size:182.400000px;}
.fs12_c00001{font-size:207.000000px;}
.fs10_c00001{font-size:225.000000px;}
.fs2e_c00001{font-size:240.000000px;}
.fs11_c00001{font-size:298.200600px;}
.fsc_c00001{font-size:354.000000px;}
.y0_c00001{bottom:0.000000px;}
.y37_c00001{bottom:76.543650px;}
.y25_c00001{bottom:77.248650px;}
.y8_c00001{bottom:86.550000px;}
.y21d_c00001{bottom:99.360000px;}
.yea_c00001{bottom:101.520015px;}
.y57_c00001{bottom:102.975006px;}
.y217_c00001{bottom:103.695000px;}
.y78_c00001{bottom:104.760015px;}
.y150_c00001{bottom:105.840006px;}
.y12e_c00001{bottom:105.840015px;}
.yc7_c00001{bottom:106.200006px;}
.y198_c00001{bottom:106.560000px;}
.y175_c00001{bottom:106.935000px;}
.y106_c00001{bottom:108.015006px;}
.ya6_c00001{bottom:114.480000px;}
.y1f7_c00001{bottom:115.920015px;}
.y216_c00001{bottom:152.280000px;}
.y14f_c00001{bottom:154.800006px;}
.y1d3_c00001{bottom:155.160006px;}
.y197_c00001{bottom:155.520000px;}
.y1bf_c00001{bottom:155.520015px;}
.y174_c00001{bottom:155.895000px;}
.ya5_c00001{bottom:164.160000px;}
.y1f6_c00001{bottom:165.960015px;}
.y56_c00001{bottom:171.720006px;}
.y12d_c00001{bottom:180.735015px;}
.ye9_c00001{bottom:181.772715px;}
.y215_c00001{bottom:182.880000px;}
.y77_c00001{bottom:184.327215px;}
.y14e_c00001{bottom:184.680006px;}
.y196_c00001{bottom:185.760000px;}
.y1be_c00001{bottom:186.120015px;}
.y173_c00001{bottom:186.480000px;}
.yc6_c00001{bottom:186.495006px;}
.ya3_c00001{bottom:195.134100px;}
.ya4_c00001{bottom:195.135000px;}
.y1f3_c00001{bottom:196.575015px;}
.y1f5_c00001{bottom:202.695015px;}
.y1f4_c00001{bottom:202.696515px;}
.y16_c00001{bottom:203.130000px;}
.y3a_c00001{bottom:207.418650px;}
.y24_c00001{bottom:210.283650px;}
.y28_c00001{bottom:211.003650px;}
.y12c_c00001{bottom:211.335765px;}
.ye8_c00001{bottom:212.379915px;}
.y214_c00001{bottom:213.495000px;}
.y14d_c00001{bottom:215.280006px;}
.y76_c00001{bottom:216.378015px;}
.y194_c00001{bottom:216.720000px;}
.y1bd_c00001{bottom:217.080015px;}
.yc5_c00001{bottom:217.095006px;}
.y172_c00001{bottom:217.455000px;}
.y7_c00001{bottom:218.865000px;}
.y15_c00001{bottom:220.305000px;}
.yc4_c00001{bottom:220.335006px;}
.y195_c00001{bottom:221.055000px;}
.ya2_c00001{bottom:225.735000px;}
.y39_c00001{bottom:226.018650px;}
.y1f2_c00001{bottom:227.535015px;}
.y55_c00001{bottom:234.015006px;}
.y12b_c00001{bottom:241.575015px;}
.y36_c00001{bottom:242.473650px;}
.ye7_c00001{bottom:243.706665px;}
.y213_c00001{bottom:244.095000px;}
.y75_c00001{bottom:245.905815px;}
.y14c_c00001{bottom:246.255006px;}
.y1d2_c00001{bottom:246.615006px;}
.y1bc_c00001{bottom:247.695015px;}
.y193_c00001{bottom:248.055000px;}
.y171_c00001{bottom:248.415000px;}
.yc3_c00001{bottom:248.767356px;}
.ya1_c00001{bottom:256.335000px;}
.y1f1_c00001{bottom:258.120015px;}
.y54_c00001{bottom:264.975006px;}
.y12a_c00001{bottom:272.529015px;}
.ye6_c00001{bottom:274.313865px;}
.y212_c00001{bottom:274.695000px;}
.y14b_c00001{bottom:276.840006px;}
.y74_c00001{bottom:276.860415px;}
.y1d1_c00001{bottom:277.215006px;}
.yc2_c00001{bottom:278.649606px;}
.y192_c00001{bottom:278.655000px;}
.y1ba_c00001{bottom:278.655015px;}
.y170_c00001{bottom:279.015000px;}
.y1bb_c00001{bottom:285.855015px;}
.y16f_c00001{bottom:286.200000px;}
.ya0_c00001{bottom:286.214250px;}
.y1f0_c00001{bottom:289.455015px;}
.y53_c00001{bottom:295.215006px;}
.y35_c00001{bottom:303.268650px;}
.y129_c00001{bottom:303.855015px;}
.y128_c00001{bottom:303.858015px;}
.ye5_c00001{bottom:304.921065px;}
.y211_c00001{bottom:305.295000px;}
.y14a_c00001{bottom:307.800006px;}
.y73_c00001{bottom:307.815015px;}
.y191_c00001{bottom:309.255000px;}
.y16e_c00001{bottom:309.975000px;}
.y1b9_c00001{bottom:309.975015px;}
.yc1_c00001{bottom:310.327356px;}
.y1b8_c00001{bottom:313.575015px;}
.y9f_c00001{bottom:318.975000px;}
.y9e_c00001{bottom:318.983700px;}
.y1ef_c00001{bottom:320.040015px;}
.y52_c00001{bottom:325.797006px;}
.y127_c00001{bottom:333.735015px;}
.ye4_c00001{bottom:335.528265px;}
.y210_c00001{bottom:335.895000px;}
.y149_c00001{bottom:338.415006px;}
.y1d0_c00001{bottom:338.775006px;}
.y72_c00001{bottom:339.124215px;}
.y1b7_c00001{bottom:339.855015px;}
.y190_c00001{bottom:340.200000px;}
.yc0_c00001{bottom:340.215006px;}
.y16d_c00001{bottom:340.575000px;}
.y9d_c00001{bottom:348.495600px;}
.y1ee_c00001{bottom:351.000015px;}
.y51_c00001{bottom:357.135006px;}
.y126_c00001{bottom:365.407515px;}
.y20f_c00001{bottom:366.495000px;}
.ye3_c00001{bottom:366.855015px;}
.y71_c00001{bottom:369.000015px;}
.y70_c00001{bottom:369.003015px;}
.y148_c00001{bottom:369.015006px;}
.y18f_c00001{bottom:370.800000px;}
.ybf_c00001{bottom:370.800606px;}
.y1b6_c00001{bottom:371.535015px;}
.y16c_c00001{bottom:371.895000px;}
.y105_c00001{bottom:372.973806px;}
.y9c_c00001{bottom:380.893350px;}
.y1ed_c00001{bottom:381.975015px;}
.y50_c00001{bottom:388.455006px;}
.y125_c00001{bottom:395.991765px;}
.y20e_c00001{bottom:397.440000px;}
.ye2_c00001{bottom:397.815015px;}
.y147_c00001{bottom:399.255006px;}
.y1cf_c00001{bottom:399.615006px;}
.y6f_c00001{bottom:399.975015px;}
.ybe_c00001{bottom:400.688256px;}
.y18e_c00001{bottom:401.055000px;}
.y1b5_c00001{bottom:402.135015px;}
.y104_c00001{bottom:402.484206px;}
.y16b_c00001{bottom:403.200000px;}
.y9b_c00001{bottom:410.768250px;}
.y1ec_c00001{bottom:412.920015px;}
.y4f_c00001{bottom:419.055006px;}
.y124_c00001{bottom:427.335015px;}
.ye1_c00001{bottom:428.415015px;}
.y20d_c00001{bottom:428.775000px;}
.y146_c00001{bottom:430.560006px;}
.y1ce_c00001{bottom:430.935006px;}
.y6e_c00001{bottom:431.653815px;}
.y18d_c00001{bottom:432.015000px;}
.ybd_c00001{bottom:432.015006px;}
.y1b4_c00001{bottom:432.735015px;}
.y16a_c00001{bottom:433.800000px;}
.y103_c00001{bottom:433.804206px;}
.y9a_c00001{bottom:442.438950px;}
.y1eb_c00001{bottom:443.895015px;}
.ye0_c00001{bottom:447.480015px;}
.y4e_c00001{bottom:449.637006px;}
.y1b3_c00001{bottom:452.175015px;}
.y123_c00001{bottom:457.920015px;}
.y38_c00001{bottom:458.473650px;}
.y20c_c00001{bottom:459.360000px;}
.ydf_c00001{bottom:459.375015px;}
.y145_c00001{bottom:461.535006px;}
.y1cd_c00001{bottom:461.880006px;}
.y6d_c00001{bottom:461.890815px;}
.ybc_c00001{bottom:462.962406px;}
.y18c_c00001{bottom:462.975000px;}
.y1b2_c00001{bottom:463.680015px;}
.y169_c00001{bottom:464.400000px;}
.y102_c00001{bottom:464.776206px;}
.y13_c00001{bottom:464.910000px;}
.y11_c00001{bottom:469.200000px;}
.y98_c00001{bottom:472.691100px;}
.y99_c00001{bottom:472.695000px;}
.y1ea_c00001{bottom:474.480015px;}
.y10_c00001{bottom:475.635000px;}
.y122_c00001{bottom:476.295015px;}
.yde_c00001{bottom:479.895015px;}
.y4d_c00001{bottom:481.317006px;}
.y12_c00001{bottom:484.935000px;}
.y121_c00001{bottom:488.895015px;}
.y20b_c00001{bottom:490.335000px;}
.ydd_c00001{bottom:490.335015px;}
.y144_c00001{bottom:492.480006px;}
.y6c_c00001{bottom:492.480015px;}
.ybb_c00001{bottom:493.552056px;}
.y18b_c00001{bottom:493.560000px;}
.y1b1_c00001{bottom:494.295015px;}
.y168_c00001{bottom:495.375000px;}
.y101_c00001{bottom:495.713406px;}
.y120_c00001{bottom:501.480015px;}
.y97_c00001{bottom:503.655000px;}
.y1e9_c00001{bottom:505.455015px;}
.y4c_c00001{bottom:511.557006px;}
.y3b_c00001{bottom:517.123650px;}
.y11f_c00001{bottom:519.840015px;}
.y33_c00001{bottom:519.973650px;}
.y96_c00001{bottom:520.935000px;}
.ydc_c00001{bottom:521.295015px;}
.y6b_c00001{bottom:523.083015px;}
.y143_c00001{bottom:523.455006px;}
.y21_c00001{bottom:523.560000px;}
.y18a_c00001{bottom:524.175000px;}
.yba_c00001{bottom:524.527806px;}
.y1b0_c00001{bottom:524.895015px;}
.y167_c00001{bottom:525.615000px;}
.y100_c00001{bottom:526.320006px;}
.y32_c00001{bottom:531.418650px;}
.y27_c00001{bottom:532.138650px;}
.y189_c00001{bottom:533.175000px;}
.yf_c00001{bottom:534.285000px;}
.y94_c00001{bottom:534.586050px;}
.y95_c00001{bottom:534.600000px;}
.y1e8_c00001{bottom:535.680015px;}
.y20_c00001{bottom:535.710000px;}
.y4b_c00001{bottom:542.535006px;}
.y11e_c00001{bottom:550.443765px;}
.ydb_c00001{bottom:551.888265px;}
.y20a_c00001{bottom:551.895000px;}
.y142_c00001{bottom:553.695006px;}
.y1cc_c00001{bottom:554.055006px;}
.y6a_c00001{bottom:554.055015px;}
.y188_c00001{bottom:554.775000px;}
.yb9_c00001{bottom:555.128256px;}
.y1af_c00001{bottom:555.840015px;}
.y166_c00001{bottom:556.560000px;}
.yff_c00001{bottom:557.269806px;}
.y31_c00001{bottom:561.463650px;}
.y93_c00001{bottom:565.568100px;}
.y1f_c00001{bottom:565.755000px;}
.y1e7_c00001{bottom:567.000015px;}
.y4a_c00001{bottom:574.215006px;}
.y30_c00001{bottom:576.478650px;}
.y1e_c00001{bottom:580.770000px;}
.y11d_c00001{bottom:581.752515px;}
.y209_c00001{bottom:582.855000px;}
.yd9_c00001{bottom:583.212165px;}
.yda_c00001{bottom:583.215015px;}
.y141_c00001{bottom:584.640006px;}
.y1cb_c00001{bottom:585.015006px;}
.y68_c00001{bottom:585.733815px;}
.y69_c00001{bottom:585.735015px;}
.y187_c00001{bottom:586.095000px;}
.yb8_c00001{bottom:586.443156px;}
.y1ae_c00001{bottom:587.175015px;}
.y165_c00001{bottom:587.535000px;}
.yfe_c00001{bottom:588.241806px;}
.y2f_c00001{bottom:588.643650px;}
.y1d_c00001{bottom:592.935000px;}
.y91_c00001{bottom:596.892300px;}
.y92_c00001{bottom:596.895000px;}
.y1e6_c00001{bottom:597.975015px;}
.y49_c00001{bottom:604.455006px;}
.y2e_c00001{bottom:607.243650px;}
.y1c_c00001{bottom:611.535000px;}
.y11c_c00001{bottom:612.371265px;}
.y21f_c00001{bottom:612.375000px;}
.y208_c00001{bottom:613.440000px;}
.yd8_c00001{bottom:613.819365px;}
.y140_c00001{bottom:615.255006px;}
.y1ca_c00001{bottom:615.615006px;}
.y21e_c00001{bottom:615.975000px;}
.y67_c00001{bottom:615.975015px;}
.y186_c00001{bottom:616.695000px;}
.yb7_c00001{bottom:617.050356px;}
.y1ad_c00001{bottom:617.760015px;}
.y164_c00001{bottom:618.480000px;}
.yfd_c00001{bottom:618.848406px;}
.y2d_c00001{bottom:620.833650px;}
.y1b_c00001{bottom:625.125000px;}
.y90_c00001{bottom:626.767200px;}
.y1e5_c00001{bottom:628.920015px;}
.y23_c00001{bottom:631.558650px;}
.y26_c00001{bottom:632.983650px;}
.y48_c00001{bottom:635.397006px;}
.y2c_c00001{bottom:637.273650px;}
.y107_c00001{bottom:638.655000px;}
.y6_c00001{bottom:640.140000px;}
.y1a_c00001{bottom:641.565000px;}
.ye_c00001{bottom:642.285000px;}
.y11b_c00001{bottom:643.329765px;}
.y3c_c00001{bottom:644.040000px;}
.yd7_c00001{bottom:644.760015px;}
.y13f_c00001{bottom:645.855006px;}
.y1c9_c00001{bottom:646.215006px;}
.y66_c00001{bottom:646.932615px;}
.y185_c00001{bottom:647.640000px;}
.yb6_c00001{bottom:647.658906px;}
.y1ac_c00001{bottom:648.735015px;}
.y163_c00001{bottom:649.095000px;}
.yfc_c00001{bottom:649.455006px;}
.yfb_c00001{bottom:649.470006px;}
.y34_c00001{bottom:653.008650px;}
.y8f_c00001{bottom:658.438950px;}
.y1e4_c00001{bottom:659.895015px;}
.y2b_c00001{bottom:663.748650px;}
.y47_c00001{bottom:666.375006px;}
.y19_c00001{bottom:668.040000px;}
.y11a_c00001{bottom:673.914015px;}
.y207_c00001{bottom:674.655000px;}
.yd6_c00001{bottom:675.375015px;}
.y13e_c00001{bottom:676.800006px;}
.y1c8_c00001{bottom:677.175006px;}
.y65_c00001{bottom:677.539215px;}
.y184_c00001{bottom:678.615000px;}
.yb5_c00001{bottom:678.985656px;}
.y1ab_c00001{bottom:679.680015px;}
.y162_c00001{bottom:680.055000px;}
.yfa_c00001{bottom:680.407206px;}
.y8d_c00001{bottom:688.682550px;}
.y8e_c00001{bottom:688.695000px;}
.y1e3_c00001{bottom:690.840015px;}
.yd_c00001{bottom:690.915000px;}
.y2a_c00001{bottom:693.073650px;}
.y46_c00001{bottom:696.975006px;}
.y18_c00001{bottom:697.365000px;}
.y119_c00001{bottom:704.895015px;}
.y206_c00001{bottom:705.600000px;}
.yd5_c00001{bottom:706.335015px;}
.y13d_c00001{bottom:707.400006px;}
.y1c7_c00001{bottom:708.135006px;}
.y64_c00001{bottom:708.145815px;}
.y5_c00001{bottom:708.795000px;}
.y183_c00001{bottom:709.200000px;}
.yb4_c00001{bottom:709.224306px;}
.y1aa_c00001{bottom:711.000015px;}
.yf9_c00001{bottom:711.013806px;}
.y161_c00001{bottom:711.015000px;}
.y29_c00001{bottom:718.813650px;}
.y8c_c00001{bottom:719.991300px;}
.y1e2_c00001{bottom:721.815015px;}
.y17_c00001{bottom:723.105000px;}
.y4_c00001{bottom:723.825000px;}
.y45_c00001{bottom:727.215006px;}
.y14_c00001{bottom:733.125000px;}
.y118_c00001{bottom:735.840015px;}
.y205_c00001{bottom:736.200000px;}
.yd4_c00001{bottom:737.295015px;}
.y13c_c00001{bottom:738.375006px;}
.y63_c00001{bottom:738.752415px;}
.y1c6_c00001{bottom:739.095006px;}
.yb3_c00001{bottom:739.813956px;}
.y182_c00001{bottom:740.175000px;}
.y1a9_c00001{bottom:741.600015px;}
.yf8_c00001{bottom:741.620406px;}
.y160_c00001{bottom:741.975000px;}
.yc_c00001{bottom:746.715000px;}
.y8b_c00001{bottom:750.592200px;}
.y1e1_c00001{bottom:752.055015px;}
.y117_c00001{bottom:766.455015px;}
.y204_c00001{bottom:767.175000px;}
.yd3_c00001{bottom:767.873265px;}
.y13b_c00001{bottom:769.320006px;}
.y62_c00001{bottom:769.689615px;}
.y1c5_c00001{bottom:770.055006px;}
.yb2_c00001{bottom:770.421156px;}
.y181_c00001{bottom:771.135000px;}
.y203_c00001{bottom:771.855000px;}
.y1a8_c00001{bottom:772.560015px;}
.yf7_c00001{bottom:772.575006px;}
.y15f_c00001{bottom:773.280000px;}
.y8a_c00001{bottom:781.193100px;}
.y1e0_c00001{bottom:783.000015px;}
.y44_c00001{bottom:789.135006px;}
.y116_c00001{bottom:789.480015px;}
.y115_c00001{bottom:797.415015px;}
.y202_c00001{bottom:797.775000px;}
.yd2_c00001{bottom:799.198215px;}
.y13a_c00001{bottom:800.280006px;}
.y61_c00001{bottom:800.296215px;}
.y1c4_c00001{bottom:800.640006px;}
.yb1_c00001{bottom:801.361806px;}
.y180_c00001{bottom:802.080000px;}
.y1a7_c00001{bottom:803.175015px;}
.yf6_c00001{bottom:803.533806px;}
.y15e_c00001{bottom:804.240000px;}
.y89_c00001{bottom:812.520000px;}
.y1df_c00001{bottom:813.615015px;}
.y1a6_c00001{bottom:818.295015px;}
.y114_c00001{bottom:818.655015px;}
.y43_c00001{bottom:820.095006px;}
.y1a5_c00001{bottom:824.775015px;}
.y88_c00001{bottom:828.000000px;}
.y113_c00001{bottom:828.000015px;}
.y201_c00001{bottom:828.360000px;}
.yd1_c00001{bottom:829.805415px;}
.y60_c00001{bottom:830.885415px;}
.y139_c00001{bottom:831.255006px;}
.yb0_c00001{bottom:832.335006px;}
.y17f_c00001{bottom:832.695000px;}
.y1a4_c00001{bottom:834.135015px;}
.yf5_c00001{bottom:834.488406px;}
.y15d_c00001{bottom:835.200000px;}
.y112_c00001{bottom:842.775015px;}
.y87_c00001{bottom:843.495000px;}
.y1de_c00001{bottom:844.935015px;}
.y1a3_c00001{bottom:846.360015px;}
.y42_c00001{bottom:851.055006px;}
.y200_c00001{bottom:859.335000px;}
.y111_c00001{bottom:859.335015px;}
.yd0_c00001{bottom:861.132165px;}
.y5f_c00001{bottom:861.840015px;}
.y138_c00001{bottom:862.215006px;}
.yaf_c00001{bottom:863.293206px;}
.y3_c00001{bottom:863.295000px;}
.y17e_c00001{bottom:863.655000px;}
.y1a2_c00001{bottom:864.720015px;}
.yf4_c00001{bottom:865.460406px;}
.y15c_c00001{bottom:866.175000px;}
.y110_c00001{bottom:871.560015px;}
.y86_c00001{bottom:873.360000px;}
.y1dd_c00001{bottom:875.520015px;}
.y10f_c00001{bottom:879.480015px;}
.y10e_c00001{bottom:889.935015px;}
.y1ff_c00001{bottom:890.295000px;}
.ycf_c00001{bottom:892.090365px;}
.y1c3_c00001{bottom:892.800006px;}
.y5e_c00001{bottom:892.816215px;}
.y137_c00001{bottom:893.160006px;}
.y17d_c00001{bottom:894.240000px;}
.yae_c00001{bottom:894.268956px;}
.y1a1_c00001{bottom:895.335015px;}
.yf3_c00001{bottom:896.415006px;}
.yf2_c00001{bottom:896.424606px;}
.y15b_c00001{bottom:896.760000px;}
.y84_c00001{bottom:905.033100px;}
.y85_c00001{bottom:905.040000px;}
.y1dc_c00001{bottom:906.480015px;}
.y41_c00001{bottom:913.317006px;}
.y10c_c00001{bottom:920.876265px;}
.y1fe_c00001{bottom:920.880000px;}
.y10d_c00001{bottom:920.880015px;}
.y2_c00001{bottom:922.650000px;}
.yce_c00001{bottom:922.680015px;}
.y136_c00001{bottom:923.415006px;}
.y5d_c00001{bottom:923.422815px;}
.y17c_c00001{bottom:924.855000px;}
.yad_c00001{bottom:925.227156px;}
.y1a0_c00001{bottom:926.295015px;}
.yf1_c00001{bottom:926.648406px;}
.y15a_c00001{bottom:927.375000px;}
.yb_c00001{bottom:933.390000px;}
.y83_c00001{bottom:936.360000px;}
.y1db_c00001{bottom:937.095015px;}
.y40_c00001{bottom:943.575006px;}
.ya_c00001{bottom:946.260000px;}
.y9_c00001{bottom:950.550000px;}
.y1fd_c00001{bottom:951.495000px;}
.y10b_c00001{bottom:951.840015px;}
.ycd_c00001{bottom:953.659965px;}
.y135_c00001{bottom:954.000006px;}
.y5c_c00001{bottom:954.360015px;}
.y17b_c00001{bottom:955.440000px;}
.yac_c00001{bottom:956.167806px;}
.y19f_c00001{bottom:956.880015px;}
.yf0_c00001{bottom:957.255006px;}
.y159_c00001{bottom:957.975000px;}
.y82_c00001{bottom:960.135000px;}
.y81_c00001{bottom:966.975000px;}
.y80_c00001{bottom:966.977250px;}
.y1da_c00001{bottom:968.040015px;}
.y3f_c00001{bottom:974.160006px;}
.y158_c00001{bottom:976.335000px;}
.y21c_c00001{bottom:980.295000px;}
.y1fc_c00001{bottom:982.455000px;}
.y10a_c00001{bottom:982.455765px;}
.y134_c00001{bottom:984.615006px;}
.y5b_c00001{bottom:984.976215px;}
.ycc_c00001{bottom:984.986715px;}
.y17a_c00001{bottom:985.695000px;}
.yab_c00001{bottom:986.775006px;}
.y19e_c00001{bottom:987.480015px;}
.yef_c00001{bottom:988.203006px;}
.y157_c00001{bottom:988.560000px;}
.y3e_c00001{bottom:992.895006px;}
.y7e_c00001{bottom:997.552050px;}
.y7f_c00001{bottom:997.560000px;}
.y1d9_c00001{bottom:998.655015px;}
.y156_c00001{bottom:1004.400000px;}
.y3d_c00001{bottom:1004.775006px;}
.y21b_c00001{bottom:1011.255000px;}
.y1d8_c00001{bottom:1011.615015px;}
.y1fb_c00001{bottom:1013.040000px;}
.y109_c00001{bottom:1013.040015px;}
.ycb_c00001{bottom:1015.207815px;}
.y133_c00001{bottom:1015.215006px;}
.y5a_c00001{bottom:1015.565415px;}
.y179_c00001{bottom:1016.655000px;}
.yaa_c00001{bottom:1017.360606px;}
.yee_c00001{bottom:1018.444206px;}
.y19d_c00001{bottom:1018.455015px;}
.y155_c00001{bottom:1019.535000px;}
.y7d_c00001{bottom:1028.171100px;}
.y1d7_c00001{bottom:1029.615015px;}
.y154_c00001{bottom:1038.240000px;}
.y21a_c00001{bottom:1042.200000px;}
.y1fa_c00001{bottom:1043.655000px;}
.y132_c00001{bottom:1045.800006px;}
.yca_c00001{bottom:1045.815015px;}
.y1c2_c00001{bottom:1046.160006px;}
.y59_c00001{bottom:1046.520015px;}
.y178_c00001{bottom:1046.895000px;}
.ya9_c00001{bottom:1047.616806px;}
.y19c_c00001{bottom:1049.040015px;}
.yed_c00001{bottom:1049.050806px;}
.y153_c00001{bottom:1050.135000px;}
.y7c_c00001{bottom:1059.135000px;}
.y7b_c00001{bottom:1059.137250px;}
.y1d6_c00001{bottom:1060.560015px;}
.y19b_c00001{bottom:1070.655015px;}
.y219_c00001{bottom:1073.160000px;}
.y1f9_c00001{bottom:1074.240000px;}
.y131_c00001{bottom:1076.055006px;}
.yc9_c00001{bottom:1076.415015px;}
.y1c1_c00001{bottom:1077.135006px;}
.y177_c00001{bottom:1077.495000px;}
.y108_c00001{bottom:1077.840015px;}
.ya8_c00001{bottom:1078.575006px;}
.yec_c00001{bottom:1079.640006px;}
.y19a_c00001{bottom:1080.000015px;}
.y152_c00001{bottom:1080.720000px;}
.y130_c00001{bottom:1080.735006px;}
.y7a_c00001{bottom:1089.720000px;}
.y1d5_c00001{bottom:1091.175015px;}
.y22_c00001{bottom:1135.798650px;}
.y1_c00001{bottom:1145.100000px;}
.y218_c00001{bottom:1149.840000px;}
.y1f8_c00001{bottom:1149.855000px;}
.y12f_c00001{bottom:1152.360006px;}
.y58_c00001{bottom:1152.360015px;}
.yc8_c00001{bottom:1152.720015px;}
.y1c0_c00001{bottom:1152.735006px;}
.ya7_c00001{bottom:1153.800006px;}
.y176_c00001{bottom:1153.815000px;}
.yeb_c00001{bottom:1155.255006px;}
.y199_c00001{bottom:1157.040015px;}
.y151_c00001{bottom:1157.760000px;}
.y79_c00001{bottom:1166.040000px;}
.y1d4_c00001{bottom:1168.560015px;}
.h5b_c00001{height:7.672320px;}
.h74_c00001{height:11.508480px;}
.h7b_c00001{height:12.467520px;}
.h57_c00001{height:13.767813px;}
.h82_c00001{height:18.222160px;}
.ha7_c00001{height:19.180800px;}
.h66_c00001{height:19.433206px;}
.h68_c00001{height:20.022073px;}
.h78_c00001{height:21.098880px;}
.h83_c00001{height:21.902970px;}
.hab_c00001{height:22.058320px;}
.h48_c00001{height:22.528125px;}
.h88_c00001{height:22.966409px;}
.h73_c00001{height:23.016960px;}
.h89_c00001{height:24.143555px;}
.h5f_c00001{height:24.406095px;}
.ha1_c00001{height:25.031250px;}
.h3d_c00001{height:25.657031px;}
.h69_c00001{height:26.282813px;}
.h18_c00001{height:26.675298px;}
.h71_c00001{height:26.909220px;}
.h79_c00001{height:27.074414px;}
.ha0_c00001{height:27.535001px;}
.h9e_c00001{height:28.252151px;}
.h26_c00001{height:28.580990px;}
.h7a_c00001{height:30.017285px;}
.h80_c00001{height:30.038126px;}
.h81_c00001{height:30.663907px;}
.h8a_c00001{height:32.388284px;}
.h56_c00001{height:32.540625px;}
.h6c_c00001{height:34.525440px;}
.h60_c00001{height:35.484480px;}
.h8e_c00001{height:35.669531px;}
.h6d_c00001{height:36.443520px;}
.h8b_c00001{height:36.509766px;}
.h59_c00001{height:36.921720px;}
.ha3_c00001{height:37.402560px;}
.h5a_c00001{height:38.276956px;}
.ha2_c00001{height:38.361600px;}
.h65_c00001{height:38.798438px;}
.h9b_c00001{height:40.023635px;}
.h4f_c00001{height:40.676407px;}
.h9c_c00001{height:41.119355px;}
.ha9_c00001{height:41.301562px;}
.h9d_c00001{height:42.377344px;}
.h4a_c00001{height:43.156800px;}
.haa_c00001{height:45.056250px;}
.h76_c00001{height:45.909378px;}
.h5d_c00001{height:46.033920px;}
.h9a_c00001{height:46.560938px;}
.h58_c00001{height:47.109375px;}
.h75_c00001{height:47.166230px;}
.h5e_c00001{height:47.559375px;}
.haf_c00001{height:48.375000px;}
.hac_c00001{height:48.811563px;}
.h3c_c00001{height:48.911040px;}
.had_c00001{height:49.440234px;}
.h93_c00001{height:49.464844px;}
.h55_c00001{height:50.053711px;}
.h92_c00001{height:50.688281px;}
.hae_c00001{height:50.793750px;}
.hc_c00001{height:51.445303px;}
.h4e_c00001{height:52.747200px;}
.h34_c00001{height:52.998047px;}
.h4b_c00001{height:53.191406px;}
.h28_c00001{height:53.560254px;}
.h36_c00001{height:53.817187px;}
.h23_c00001{height:54.737402px;}
.h3f_c00001{height:55.068750px;}
.h33_c00001{height:55.353516px;}
.hb2_c00001{height:55.694531px;}
.h7_c00001{height:55.914551px;}
.h8c_c00001{height:55.942383px;}
.h10_c00001{height:56.320312px;}
.h45_c00001{height:56.531250px;}
.h24_c00001{height:56.840625px;}
.h72_c00001{height:56.946094px;}
.h17_c00001{height:57.120117px;}
.h8_c00001{height:57.571875px;}
.h25_c00001{height:57.680273px;}
.h84_c00001{height:57.708984px;}
.h7d_c00001{height:58.050000px;}
.h9_c00001{height:58.197656px;}
.h51_c00001{height:58.297852px;}
.h70_c00001{height:58.654687px;}
.hb0_c00001{height:58.823438px;}
.h41_c00001{height:58.886719px;}
.ha_c00001{height:59.449219px;}
.h46_c00001{height:59.475586px;}
.h7f_c00001{height:60.075000px;}
.h31_c00001{height:61.242188px;}
.ha4_c00001{height:61.326563px;}
.h7c_c00001{height:62.419922px;}
.ha8_c00001{height:63.008789px;}
.h27_c00001{height:63.597656px;}
.h8d_c00001{height:63.829687px;}
.h35_c00001{height:64.186523px;}
.h98_c00001{height:64.455469px;}
.h2_c00001{height:64.775391px;}
.h62_c00001{height:65.081250px;}
.h87_c00001{height:65.331738px;}
.h85_c00001{height:65.364258px;}
.hb1_c00001{height:65.920312px;}
.h99_c00001{height:65.953125px;}
.ha6_c00001{height:66.332812px;}
.h77_c00001{height:66.541992px;}
.h86_c00001{height:67.130859px;}
.h64_c00001{height:67.686035px;}
.h6f_c00001{height:67.716727px;}
.h63_c00001{height:67.719727px;}
.h7e_c00001{height:68.274609px;}
.h42_c00001{height:68.308594px;}
.h43_c00001{height:68.325394px;}
.hb4_c00001{height:68.835938px;}
.h6b_c00001{height:68.863184px;}
.h49_c00001{height:68.897461px;}
.h5c_c00001{height:68.904661px;}
.h54_c00001{height:68.919061px;}
.h53_c00001{height:68.924461px;}
.h52_c00001{height:68.944861px;}
.h44_c00001{height:69.434958px;}
.h67_c00001{height:69.486328px;}
.h6a_c00001{height:69.507328px;}
.h96_c00001{height:70.040332px;}
.h3b_c00001{height:70.664062px;}
.h47_c00001{height:71.252930px;}
.h50_c00001{height:71.257130px;}
.h4c_c00001{height:71.263730px;}
.h4d_c00001{height:71.308730px;}
.h6e_c00001{height:71.363063px;}
.h94_c00001{height:71.777461px;}
.h97_c00001{height:71.957813px;}
.h3e_c00001{height:72.430664px;}
.h8f_c00001{height:72.590625px;}
.h91_c00001{height:73.216406px;}
.h19_c00001{height:74.786133px;}
.h2a_c00001{height:76.345312px;}
.hb3_c00001{height:80.100000px;}
.h2e_c00001{height:80.674805px;}
.h1d_c00001{height:80.725781px;}
.h39_c00001{height:81.263672px;}
.h61_c00001{height:82.842187px;}
.h30_c00001{height:83.030273px;}
.he_c00001{height:89.463281px;}
.hd_c00001{height:89.507812px;}
.hb_c00001{height:92.615625px;}
.h16_c00001{height:95.118750px;}
.h1e_c00001{height:98.929688px;}
.h9f_c00001{height:100.646191px;}
.h1a_c00001{height:100.750781px;}
.h90_c00001{height:102.016406px;}
.h29_c00001{height:109.529297px;}
.h20_c00001{height:110.118753px;}
.h95_c00001{height:111.389063px;}
.h2b_c00001{height:113.266406px;}
.h5_c00001{height:117.646875px;}
.h2f_c00001{height:117.773438px;}
.h4_c00001{height:121.306641px;}
.h1f_c00001{height:121.401562px;}
.h11_c00001{height:128.910938px;}
.h1c_c00001{height:128.961914px;}
.ha5_c00001{height:134.194922px;}
.h37_c00001{height:135.168750px;}
.h2d_c00001{height:136.617776px;}
.h6_c00001{height:142.678125px;}
.h2c_c00001{height:153.316406px;}
.h1b_c00001{height:157.697501px;}
.h12_c00001{height:170.213126px;}
.h21_c00001{height:190.237500px;}
.h3_c00001{height:202.075001px;}
.h15_c00001{height:215.894531px;}
.h13_c00001{height:234.667969px;}
.h32_c00001{height:235.546875px;}
.h14_c00001{height:292.667581px;}
.hf_c00001{height:369.210938px;}
.h1_c00001{height:1263.000000px;}
.h0_c00001{height:1263.099000px;}
.h22_c00001{height:1263.099150px;}
.h38_c00001{height:1263.240000px;}
.h3a_c00001{height:1263.240006px;}
.h40_c00001{height:1263.240015px;}
.w1_c00001{width:892.500000px;}
.w2_c00001{width:892.608900px;}
.w0_c00001{width:892.609500px;}
.w4_c00001{width:892.799998px;}
.w3_c00001{width:892.800000px;}
.w5_c00001{width:892.800015px;}
.x0_c00001{left:0.000000px;}
.xa7_c00001{left:106.635015px;}
.xa3_c00001{left:107.801115px;}
.xa0_c00001{left:109.005015px;}
.x4e_c00001{left:110.138999px;}
.x4d_c00001{left:111.218998px;}
.x4a_c00001{left:112.889999px;}
.x5e_c00001{left:114.399615px;}
.x51_c00001{left:115.410015px;}
.x53_c00001{left:116.445015px;}
.xaf_c00001{left:117.675015px;}
.xea_c00001{left:121.215015px;}
.xed_c00001{left:122.970000px;}
.x86_c00001{left:124.019999px;}
.xdc_c00001{left:126.165015px;}
.xd0_c00001{left:130.590000px;}
.x3b_c00001{left:136.767900px;}
.xc0_c00001{left:138.524998px;}
.xe0_c00001{left:141.569998px;}
.xc7_c00001{left:143.280000px;}
.xa1_c00001{left:150.660015px;}
.xa4_c00001{left:160.395015px;}
.xc8_c00001{left:162.000000px;}
.x54_c00001{left:163.050015px;}
.x48_c00001{left:166.214999px;}
.x56_c00001{left:171.330015px;}
.xac_c00001{left:172.424998px;}
.xd2_c00001{left:173.700000px;}
.xd4_c00001{left:174.810000px;}
.x4f_c00001{left:176.189998px;}
.x60_c00001{left:178.755000px;}
.x3c_c00001{left:180.897900px;}
.xa9_c00001{left:182.894998px;}
.x7_c00001{left:184.365000px;}
.x5b_c00001{left:188.565015px;}
.xde_c00001{left:190.379998px;}
.xc1_c00001{left:191.879998px;}
.xd5_c00001{left:196.470000px;}
.xd_c00001{left:197.835000px;}
.x31_c00001{left:198.837900px;}
.x52_c00001{left:200.385015px;}
.x57_c00001{left:203.970015px;}
.x66_c00001{left:206.490000px;}
.x61_c00001{left:208.635000px;}
.x58_c00001{left:211.965015px;}
.xdb_c00001{left:215.640015px;}
.x3_c00001{left:219.600000px;}
.xd3_c00001{left:222.855000px;}
.xce_c00001{left:223.935000px;}
.x87_c00001{left:225.599998px;}
.xc9_c00001{left:228.255000px;}
.x62_c00001{left:229.635000px;}
.x55_c00001{left:231.525015px;}
.x88_c00001{left:232.979998px;}
.xd8_c00001{left:234.000015px;}
.xee_c00001{left:235.080000px;}
.xc5_c00001{left:236.565000px;}
.x6_c00001{left:238.050000px;}
.xe1_c00001{left:240.404999px;}
.xb1_c00001{left:244.080015px;}
.x4_c00001{left:246.255000px;}
.x89_c00001{left:249.674998px;}
.x6c_c00001{left:251.115000px;}
.xe2_c00001{left:253.334998px;}
.x8a_c00001{left:254.909999px;}
.x8_c00001{left:256.815000px;}
.xd1_c00001{left:263.535000px;}
.x59_c00001{left:266.070015px;}
.x9_c00001{left:270.285000px;}
.xc4_c00001{left:271.769999px;}
.x6d_c00001{left:273.195000px;}
.xd9_c00001{left:274.350015px;}
.x32_c00001{left:276.642900px;}
.x80_c00001{left:281.114999px;}
.xda_c00001{left:283.680015px;}
.xca_c00001{left:290.145000px;}
.xa_c00001{left:292.410000px;}
.x5a_c00001{left:294.870015px;}
.x8b_c00001{left:295.949999px;}
.xe8_c00001{left:299.010015px;}
.xd7_c00001{left:300.450015px;}
.xe3_c00001{left:308.954998px;}
.xe9_c00001{left:312.480015px;}
.x7d_c00001{left:313.755000px;}
.x63_c00001{left:315.555000px;}
.xef_c00001{left:322.020000px;}
.x3d_c00001{left:323.847900px;}
.x39_c00001{left:326.607900px;}
.x75_c00001{left:328.875000px;}
.xe_c00001{left:331.620000px;}
.x7e_c00001{left:335.160000px;}
.xe6_c00001{left:336.255015px;}
.x64_c00001{left:337.890000px;}
.xe7_c00001{left:340.200015px;}
.xb_c00001{left:341.640000px;}
.x3e_c00001{left:343.227900px;}
.x3a_c00001{left:346.122900px;}
.x65_c00001{left:347.610000px;}
.x4b_c00001{left:349.094999px;}
.x76_c00001{left:350.595000px;}
.xf_c00001{left:351.780000px;}
.x7b_c00001{left:359.475000px;}
.xc_c00001{left:361.080000px;}
.x8c_c00001{left:367.079998px;}
.x79_c00001{left:369.570000px;}
.x10_c00001{left:371.550000px;}
.x5_c00001{left:377.670000px;}
.xb0_c00001{left:379.665015px;}
.x7c_c00001{left:381.450000px;}
.x6a_c00001{left:386.475000px;}
.x8d_c00001{left:388.574998px;}
.x47_c00001{left:394.020000px;}
.x1_c00001{left:399.015000px;}
.x38_c00001{left:400.437900px;}
.x6b_c00001{left:407.835000px;}
.x81_c00001{left:416.504998px;}
.xa8_c00001{left:421.860015px;}
.x9f_c00001{left:424.379999px;}
.x50_c00001{left:425.474999px;}
.x5f_c00001{left:426.540015px;}
.x7f_c00001{left:427.980000px;}
.x3f_c00001{left:429.087900px;}
.x11_c00001{left:431.955000px;}
.xf3_c00001{left:433.395000px;}
.xad_c00001{left:437.159999px;}
.x82_c00001{left:438.479999px;}
.xaa_c00001{left:440.474999px;}
.xf2_c00001{left:442.080000px;}
.x30_c00001{left:443.517900px;}
.xf0_c00001{left:449.880000px;}
.xf1_c00001{left:451.620000px;}
.x83_c00001{left:455.744999px;}
.xae_c00001{left:457.019998px;}
.x8e_c00001{left:462.014998px;}
.xab_c00001{left:464.609998px;}
.xc6_c00001{left:468.360000px;}
.x2_c00001{left:469.680000px;}
.x8f_c00001{left:479.414999px;}
.x77_c00001{left:480.435000px;}
.x90_c00001{left:483.959999px;}
.xbd_c00001{left:485.130015px;}
.x91_c00001{left:492.719998px;}
.xeb_c00001{left:493.815000px;}
.xbe_c00001{left:498.600015px;}
.xec_c00001{left:500.040000px;}
.x78_c00001{left:501.840000px;}
.x43_c00001{left:504.822900px;}
.x1d_c00001{left:506.970000px;}
.x23_c00001{left:512.430000px;}
.x42_c00001{left:514.557900px;}
.x13_c00001{left:516.765000px;}
.x44_c00001{left:519.912900px;}
.x1e_c00001{left:521.130000px;}
.x92_c00001{left:524.429999px;}
.x29_c00001{left:526.350000px;}
.x12_c00001{left:528.765000px;}
.x1b_c00001{left:531.765000px;}
.x84_c00001{left:534.554999px;}
.xb3_c00001{left:543.810015px;}
.xe4_c00001{left:548.295015px;}
.x93_c00001{left:550.694999px;}
.xe5_c00001{left:552.240015px;}
.x2a_c00001{left:553.590000px;}
.x94_c00001{left:555.524999px;}
.xb4_c00001{left:557.280015px;}
.x1c_c00001{left:561.915000px;}
.x67_c00001{left:565.395000px;}
.x14_c00001{left:570.045000px;}
.x95_c00001{left:572.294999px;}
.x2b_c00001{left:578.625000px;}
.x1f_c00001{left:580.650000px;}
.x25_c00001{left:582.225000px;}
.x24_c00001{left:583.500000px;}
.x68_c00001{left:588.420000px;}
.x96_c00001{left:591.704998px;}
.x2c_c00001{left:597.780000px;}
.x33_c00001{left:599.337900px;}
.xb5_c00001{left:607.170015px;}
.x6e_c00001{left:609.675000px;}
.x97_c00001{left:612.254999px;}
.x15_c00001{left:617.250000px;}
.xb6_c00001{left:620.640015px;}
.x85_c00001{left:624.974999px;}
.x20_c00001{left:629.325000px;}
.x6f_c00001{left:632.010000px;}
.x98_c00001{left:633.449998px;}
.x34_c00001{left:634.917900px;}
.x2d_c00001{left:644.400000px;}
.x21_c00001{left:646.305000px;}
.x5c_c00001{left:649.650015px;}
.x72_c00001{left:651.795000px;}
.x45_c00001{left:652.857900px;}
.x35_c00001{left:654.372900px;}
.x2e_c00001{left:658.425000px;}
.x16_c00001{left:659.910000px;}
.x99_c00001{left:662.789999px;}
.x40_c00001{left:665.112900px;}
.x22_c00001{left:666.480000px;}
.x17_c00001{left:668.265000px;}
.x5d_c00001{left:669.795015px;}
.x9a_c00001{left:675.614998px;}
.x73_c00001{left:677.325000px;}
.x27_c00001{left:680.070000px;}
.x18_c00001{left:681.420000px;}
.x41_c00001{left:685.527900px;}
.x36_c00001{left:688.317900px;}
.x9b_c00001{left:689.504999px;}
.x19_c00001{left:690.990000px;}
.x1a_c00001{left:694.350000px;}
.x26_c00001{left:696.795000px;}
.x7a_c00001{left:698.145000px;}
.x28_c00001{left:699.840000px;}
.xcc_c00001{left:702.165000px;}
.xa6_c00001{left:704.895015px;}
.x69_c00001{left:705.975000px;}
.xa2_c00001{left:709.380015px;}
.x9c_c00001{left:711.599999px;}
.x9d_c00001{left:716.789999px;}
.xdf_c00001{left:719.819999px;}
.x70_c00001{left:724.155000px;}
.x46_c00001{left:725.427900px;}
.xcd_c00001{left:729.090000px;}
.xc2_c00001{left:731.774999px;}
.x74_c00001{left:732.975000px;}
.xbf_c00001{left:734.144999px;}
.xcf_c00001{left:736.335000px;}
.x9e_c00001{left:737.534999px;}
.xbc_c00001{left:739.695015px;}
.xba_c00001{left:740.895015px;}
.xbb_c00001{left:742.335015px;}
.xb9_c00001{left:743.535015px;}
.xb2_c00001{left:745.410015px;}
.x71_c00001{left:746.850000px;}
.x4c_c00001{left:747.944999px;}
.xc3_c00001{left:750.059999px;}
.xb8_c00001{left:752.205015px;}
.xb7_c00001{left:753.690015px;}
.xdd_c00001{left:754.830015px;}
.xcb_c00001{left:758.070000px;}
.xa5_c00001{left:759.300015px;}
.x49_c00001{left:761.039999px;}
.xd6_c00001{left:763.050015px;}
.xf5_c00001{left:849.375000px;}
.xf4_c00001{left:850.425000px;}
.x37_c00001{left:875.607900px;}
.x2f_c00001{left:876.960000px;}
@media print{
.v2_c00001{vertical-align:-12.693333pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v5_c00001{vertical-align:2.560000pt;}
.v3_c00001{vertical-align:20.320000pt;}
.v4_c00001{vertical-align:25.584000pt;}
.v1_c00001{vertical-align:83.946667pt;}
.ls16_c00001{letter-spacing:-11.013333pt;}
.ls1b_c00001{letter-spacing:-9.277352pt;}
.ls456_c00001{letter-spacing:-4.256000pt;}
.ls4a_c00001{letter-spacing:-4.032000pt;}
.ls415_c00001{letter-spacing:-3.322667pt;}
.ls43d_c00001{letter-spacing:-3.192000pt;}
.ls15_c00001{letter-spacing:-2.837333pt;}
.ls278_c00001{letter-spacing:-2.296000pt;}
.ls196_c00001{letter-spacing:-2.258667pt;}
.ls97_c00001{letter-spacing:-2.240000pt;}
.ls19b_c00001{letter-spacing:-2.232853pt;}
.ls427_c00001{letter-spacing:-2.221333pt;}
.ls345_c00001{letter-spacing:-2.202667pt;}
.ls2c5_c00001{letter-spacing:-2.184000pt;}
.ls96_c00001{letter-spacing:-2.176000pt;}
.ls153_c00001{letter-spacing:-2.165333pt;}
.ls1eb_c00001{letter-spacing:-2.148960pt;}
.ls33d_c00001{letter-spacing:-2.146667pt;}
.ls455_c00001{letter-spacing:-2.146560pt;}
.ls1e6_c00001{letter-spacing:-2.142507pt;}
.ls3da_c00001{letter-spacing:-2.128000pt;}
.ls387_c00001{letter-spacing:-2.109333pt;}
.ls42b_c00001{letter-spacing:-2.090667pt;}
.ls8_c00001{letter-spacing:-2.053333pt;}
.ls408_c00001{letter-spacing:-2.052960pt;}
.ls2c9_c00001{letter-spacing:-2.034667pt;}
.ls2c_c00001{letter-spacing:-2.016000pt;}
.ls433_c00001{letter-spacing:-2.000533pt;}
.ls468_c00001{letter-spacing:-1.997333pt;}
.ls1c1_c00001{letter-spacing:-1.981173pt;}
.ls38b_c00001{letter-spacing:-1.978667pt;}
.ls1b5_c00001{letter-spacing:-1.961813pt;}
.ls25f_c00001{letter-spacing:-1.959360pt;}
.ls462_c00001{letter-spacing:-1.948800pt;}
.ls1c2_c00001{letter-spacing:-1.929547pt;}
.ls428_c00001{letter-spacing:-1.922667pt;}
.ls1ec_c00001{letter-spacing:-1.903733pt;}
.ls33a_c00001{letter-spacing:-1.901333pt;}
.ls301_c00001{letter-spacing:-1.831253pt;}
.ls3d9_c00001{letter-spacing:-1.830080pt;}
.ls2a_c00001{letter-spacing:-1.829333pt;}
.ls21_c00001{letter-spacing:-1.810667pt;}
.ls1dd_c00001{letter-spacing:-1.774667pt;}
.ls11_c00001{letter-spacing:-1.773333pt;}
.ls42_c00001{letter-spacing:-1.754667pt;}
.ls382_c00001{letter-spacing:-1.747733pt;}
.ls465_c00001{letter-spacing:-1.738453pt;}
.ls14_c00001{letter-spacing:-1.736000pt;}
.ls25b_c00001{letter-spacing:-1.734720pt;}
.ls1c_c00001{letter-spacing:-1.717600pt;}
.ls1e_c00001{letter-spacing:-1.717333pt;}
.ls8d_c00001{letter-spacing:-1.708800pt;}
.ls432_c00001{letter-spacing:-1.708373pt;}
.ls263_c00001{letter-spacing:-1.703520pt;}
.ls2d_c00001{letter-spacing:-1.698667pt;}
.ls40d_c00001{letter-spacing:-1.691040pt;}
.ls434_c00001{letter-spacing:-1.670400pt;}
.ls453_c00001{letter-spacing:-1.658027pt;}
.lsaa_c00001{letter-spacing:-1.625600pt;}
.ls414_c00001{letter-spacing:-1.622400pt;}
.lsa9_c00001{letter-spacing:-1.587200pt;}
.ls272_c00001{letter-spacing:-1.586667pt;}
.ls3ac_c00001{letter-spacing:-1.570133pt;}
.ls412_c00001{letter-spacing:-1.568000pt;}
.ls3ab_c00001{letter-spacing:-1.516800pt;}
.ls1a9_c00001{letter-spacing:-1.516533pt;}
.ls413_c00001{letter-spacing:-1.496533pt;}
.ls279_c00001{letter-spacing:-1.493333pt;}
.ls143_c00001{letter-spacing:-1.466240pt;}
.ls37d_c00001{letter-spacing:-1.456019pt;}
.ls254_c00001{letter-spacing:-1.453920pt;}
.ls45e_c00001{letter-spacing:-1.447680pt;}
.ls3d3_c00001{letter-spacing:-1.447467pt;}
.lsc8_c00001{letter-spacing:-1.433600pt;}
.ls1c3_c00001{letter-spacing:-1.432640pt;}
.lscf_c00001{letter-spacing:-1.427200pt;}
.ls460_c00001{letter-spacing:-1.416000pt;}
.lsc1_c00001{letter-spacing:-1.395200pt;}
.ls18f_c00001{letter-spacing:-1.393920pt;}
.ls40b_c00001{letter-spacing:-1.379040pt;}
.ls1e3_c00001{letter-spacing:-1.374560pt;}
.ls142_c00001{letter-spacing:-1.361067pt;}
.ls43c_c00001{letter-spacing:-1.344000pt;}
.ls1bd_c00001{letter-spacing:-1.316480pt;}
.ls15a_c00001{letter-spacing:-1.311573pt;}
.ls43_c00001{letter-spacing:-1.300800pt;}
.lsa0_c00001{letter-spacing:-1.292800pt;}
.ls19e_c00001{letter-spacing:-1.290667pt;}
.ls43b_c00001{letter-spacing:-1.269352pt;}
.ls149_c00001{letter-spacing:-1.268267pt;}
.ls2b_c00001{letter-spacing:-1.263360pt;}
.ls3a8_c00001{letter-spacing:-1.257333pt;}
.lsc3_c00001{letter-spacing:-1.241600pt;}
.ls485_c00001{letter-spacing:-1.232000pt;}
.ls336_c00001{letter-spacing:-1.227520pt;}
.ls95_c00001{letter-spacing:-1.222400pt;}
.ls27d_c00001{letter-spacing:-1.213352pt;}
.ls1d6_c00001{letter-spacing:-1.213227pt;}
.ls34b_c00001{letter-spacing:-1.208320pt;}
.ls3e_c00001{letter-spacing:-1.185600pt;}
.ls463_c00001{letter-spacing:-1.177600pt;}
.ls3de_c00001{letter-spacing:-1.157333pt;}
.ls45d_c00001{letter-spacing:-1.141920pt;}
.ls3cf_c00001{letter-spacing:-1.136640pt;}
.ls1b6_c00001{letter-spacing:-1.116427pt;}
.ls1e9_c00001{letter-spacing:-1.109973pt;}
.ls381_c00001{letter-spacing:-1.108907pt;}
.ls275_c00001{letter-spacing:-1.106133pt;}
.ls1a7_c00001{letter-spacing:-1.103520pt;}
.ls27b_c00001{letter-spacing:-1.101352pt;}
.lsb9_c00001{letter-spacing:-1.081600pt;}
.ls8f_c00001{letter-spacing:-1.068800pt;}
.ls40e_c00001{letter-spacing:-1.054560pt;}
.ls8c_c00001{letter-spacing:-1.049600pt;}
.ls154_c00001{letter-spacing:-1.039360pt;}
.ls1a_c00001{letter-spacing:-1.027200pt;}
.ls3dc_c00001{letter-spacing:-1.026685pt;}
.ls43a_c00001{letter-spacing:-1.022735pt;}
.ls276_c00001{letter-spacing:-1.015467pt;}
.ls9f_c00001{letter-spacing:-0.992000pt;}
.ls91_c00001{letter-spacing:-0.985600pt;}
.ls300_c00001{letter-spacing:-0.971307pt;}
.ls33c_c00001{letter-spacing:-0.932267pt;}
.ls148_c00001{letter-spacing:-0.915627pt;}
.ls3f_c00001{letter-spacing:-0.897760pt;}
.lsb8_c00001{letter-spacing:-0.896000pt;}
.ls161_c00001{letter-spacing:-0.890880pt;}
.ls1e5_c00001{letter-spacing:-0.890560pt;}
.ls436_c00001{letter-spacing:-0.885867pt;}
.ls1d7_c00001{letter-spacing:-0.877653pt;}
.ls1c4_c00001{letter-spacing:-0.864747pt;}
.ls3e5_c00001{letter-spacing:-0.863360pt;}
.lsc7_c00001{letter-spacing:-0.857600pt;}
.ls1bb_c00001{letter-spacing:-0.832480pt;}
.ls265_c00001{letter-spacing:-0.817440pt;}
.ls386_c00001{letter-spacing:-0.807573pt;}
.ls2fb_c00001{letter-spacing:-0.798080pt;}
.ls1e4_c00001{letter-spacing:-0.793760pt;}
.ls1a0_c00001{letter-spacing:-0.787307pt;}
.lsc5_c00001{letter-spacing:-0.787200pt;}
.ls156_c00001{letter-spacing:-0.785707pt;}
.ls1ee_c00001{letter-spacing:-0.780853pt;}
.ls2c6_c00001{letter-spacing:-0.761280pt;}
.ls2c3_c00001{letter-spacing:-0.755040pt;}
.lsa4_c00001{letter-spacing:-0.736000pt;}
.ls3dd_c00001{letter-spacing:-0.723733pt;}
.lsad_c00001{letter-spacing:-0.723200pt;}
.ls194_c00001{letter-spacing:-0.709867pt;}
.ls262_c00001{letter-spacing:-0.705120pt;}
.ls19d_c00001{letter-spacing:-0.703413pt;}
.ls191_c00001{letter-spacing:-0.684053pt;}
.ls259_c00001{letter-spacing:-0.680160pt;}
.ls1a3_c00001{letter-spacing:-0.677600pt;}
.ls42f_c00001{letter-spacing:-0.674667pt;}
.ls26c_c00001{letter-spacing:-0.661440pt;}
.ls1e1_c00001{letter-spacing:-0.651787pt;}
.lsce_c00001{letter-spacing:-0.640000pt;}
.ls1cd_c00001{letter-spacing:-0.638880pt;}
.ls1d0_c00001{letter-spacing:-0.632427pt;}
.ls342_c00001{letter-spacing:-0.631733pt;}
.ls3a6_c00001{letter-spacing:-0.619467pt;}
.lsc2_c00001{letter-spacing:-0.601600pt;}
.ls1ba_c00001{letter-spacing:-0.600160pt;}
.ls348_c00001{letter-spacing:-0.597867pt;}
.ls1ed_c00001{letter-spacing:-0.587253pt;}
.ls14d_c00001{letter-spacing:-0.575360pt;}
.lsc4_c00001{letter-spacing:-0.569600pt;}
.ls1cb_c00001{letter-spacing:-0.567893pt;}
.ls1bf_c00001{letter-spacing:-0.554987pt;}
.ls144_c00001{letter-spacing:-0.550613pt;}
.ls3d7_c00001{letter-spacing:-0.547200pt;}
.ls261_c00001{letter-spacing:-0.542880pt;}
.ls159_c00001{letter-spacing:-0.538240pt;}
.ls1bc_c00001{letter-spacing:-0.535627pt;}
.ls1c7_c00001{letter-spacing:-0.529173pt;}
.ls1e7_c00001{letter-spacing:-0.522720pt;}
.ls10_c00001{letter-spacing:-0.515200pt;}
.lsca_c00001{letter-spacing:-0.512000pt;}
.ls1af_c00001{letter-spacing:-0.496907pt;}
.ls441_c00001{letter-spacing:-0.491467pt;}
.lsd_c00001{letter-spacing:-0.481333pt;}
.ls7_c00001{letter-spacing:-0.481067pt;}
.ls1cc_c00001{letter-spacing:-0.471093pt;}
.ls1b1_c00001{letter-spacing:-0.464640pt;}
.ls258_c00001{letter-spacing:-0.455520pt;}
.ls2be_c00001{letter-spacing:-0.436800pt;}
.ls15c_c00001{letter-spacing:-0.433067pt;}
.ls48b_c00001{letter-spacing:-0.430080pt;}
.ls430_c00001{letter-spacing:-0.426880pt;}
.ls1ea_c00001{letter-spacing:-0.425920pt;}
.lsa1_c00001{letter-spacing:-0.422400pt;}
.ls252_c00001{letter-spacing:-0.418080pt;}
.ls48a_c00001{letter-spacing:-0.412160pt;}
.ls40c_c00001{letter-spacing:-0.411840pt;}
.lsb7_c00001{letter-spacing:-0.409600pt;}
.lsa5_c00001{letter-spacing:-0.403200pt;}
.ls1e8_c00001{letter-spacing:-0.400107pt;}
.ls268_c00001{letter-spacing:-0.399360pt;}
.ls9a_c00001{letter-spacing:-0.396800pt;}
.ls13f_c00001{letter-spacing:-0.395947pt;}
.ls151_c00001{letter-spacing:-0.389760pt;}
.ls190_c00001{letter-spacing:-0.387200pt;}
.lsc6_c00001{letter-spacing:-0.384000pt;}
.ls15f_c00001{letter-spacing:-0.383893pt;}
.ls45a_c00001{letter-spacing:-0.377387pt;}
.ls1c8_c00001{letter-spacing:-0.374293pt;}
.ls1b3_c00001{letter-spacing:-0.361387pt;}
.lsbc_c00001{letter-spacing:-0.352000pt;}
.ls1c0_c00001{letter-spacing:-0.348480pt;}
.ls495_c00001{letter-spacing:-0.340480pt;}
.ls146_c00001{letter-spacing:-0.340267pt;}
.ls1b0_c00001{letter-spacing:-0.335573pt;}
.ls145_c00001{letter-spacing:-0.334080pt;}
.ls1da_c00001{letter-spacing:-0.329120pt;}
.ls1de_c00001{letter-spacing:-0.322667pt;}
.ls15e_c00001{letter-spacing:-0.321707pt;}
.lsa6_c00001{letter-spacing:-0.320000pt;}
.ls1e0_c00001{letter-spacing:-0.316213pt;}
.ls3e0_c00001{letter-spacing:-0.316160pt;}
.ls484_c00001{letter-spacing:-0.313280pt;}
.ls1be_c00001{letter-spacing:-0.309760pt;}
.lsb1_c00001{letter-spacing:-0.307200pt;}
.ls1d1_c00001{letter-spacing:-0.303307pt;}
.ls1db_c00001{letter-spacing:-0.296853pt;}
.ls98_c00001{letter-spacing:-0.294400pt;}
.ls269_c00001{letter-spacing:-0.293280pt;}
.ls1ca_c00001{letter-spacing:-0.290400pt;}
.ls34d_c00001{letter-spacing:-0.288267pt;}
.ls1b7_c00001{letter-spacing:-0.277493pt;}
.ls1a8_c00001{letter-spacing:-0.271040pt;}
.ls26a_c00001{letter-spacing:-0.268320pt;}
.ls1ad_c00001{letter-spacing:-0.264587pt;}
.ls1b9_c00001{letter-spacing:-0.258133pt;}
.ls1b4_c00001{letter-spacing:-0.251680pt;}
.ls27e_c00001{letter-spacing:-0.250880pt;}
.ls197_c00001{letter-spacing:-0.245227pt;}
.ls467_c00001{letter-spacing:-0.243360pt;}
.lsa3_c00001{letter-spacing:-0.243200pt;}
.ls18e_c00001{letter-spacing:-0.238773pt;}
.ls2c2_c00001{letter-spacing:-0.237120pt;}
.lsbb_c00001{letter-spacing:-0.236800pt;}
.ls1a4_c00001{letter-spacing:-0.232320pt;}
.ls1b8_c00001{letter-spacing:-0.225867pt;}
.ls3e1_c00001{letter-spacing:-0.224960pt;}
.ls14f_c00001{letter-spacing:-0.222720pt;}
.ls1ce_c00001{letter-spacing:-0.219413pt;}
.ls8a_c00001{letter-spacing:-0.217600pt;}
.ls1a6_c00001{letter-spacing:-0.212960pt;}
.lsb6_c00001{letter-spacing:-0.211200pt;}
.ls19f_c00001{letter-spacing:-0.206507pt;}
.ls2c7_c00001{letter-spacing:-0.205920pt;}
.lsac_c00001{letter-spacing:-0.204800pt;}
.ls1ae_c00001{letter-spacing:-0.200053pt;}
.lsb2_c00001{letter-spacing:-0.198400pt;}
.ls46_c00001{letter-spacing:-0.196587pt;}
.ls1c9_c00001{letter-spacing:-0.193600pt;}
.lscb_c00001{letter-spacing:-0.192000pt;}
.lsaf_c00001{letter-spacing:-0.185600pt;}
.ls9e_c00001{letter-spacing:-0.179200pt;}
.ls25c_c00001{letter-spacing:-0.174720pt;}
.ls198_c00001{letter-spacing:-0.174240pt;}
.ls99_c00001{letter-spacing:-0.172800pt;}
.ls40_c00001{letter-spacing:-0.168640pt;}
.ls1cf_c00001{letter-spacing:-0.167787pt;}
.ls45f_c00001{letter-spacing:-0.167040pt;}
.ls3c_c00001{letter-spacing:-0.166400pt;}
.ls3d2_c00001{letter-spacing:-0.164160pt;}
.ls1c5_c00001{letter-spacing:-0.161333pt;}
.ls14b_c00001{letter-spacing:-0.160853pt;}
.ls9b_c00001{letter-spacing:-0.160000pt;}
.lscc_c00001{letter-spacing:-0.153600pt;}
.ls1dc_c00001{letter-spacing:-0.148427pt;}
.lsb4_c00001{letter-spacing:-0.147200pt;}
.ls2c0_c00001{letter-spacing:-0.137280pt;}
.ls2fe_c00001{letter-spacing:-0.136107pt;}
.ls195_c00001{letter-spacing:-0.135520pt;}
.lsc0_c00001{letter-spacing:-0.134400pt;}
.ls407_c00001{letter-spacing:-0.131040pt;}
.ls8b_c00001{letter-spacing:-0.128000pt;}
.ls1d3_c00001{letter-spacing:-0.122613pt;}
.ls1df_c00001{letter-spacing:-0.116160pt;}
.ls1a5_c00001{letter-spacing:-0.109707pt;}
.ls1d2_c00001{letter-spacing:-0.103253pt;}
.ls92_c00001{letter-spacing:-0.102400pt;}
.ls40a_c00001{letter-spacing:-0.099840pt;}
.ls18c_c00001{letter-spacing:-0.096800pt;}
.lsa7_c00001{letter-spacing:-0.096000pt;}
.ls193_c00001{letter-spacing:-0.090347pt;}
.ls192_c00001{letter-spacing:-0.083893pt;}
.ls26e_c00001{letter-spacing:-0.081120pt;}
.ls140_c00001{letter-spacing:-0.080427pt;}
.ls18d_c00001{letter-spacing:-0.077440pt;}
.lsb0_c00001{letter-spacing:-0.076800pt;}
.ls1d9_c00001{letter-spacing:-0.070987pt;}
.lsb5_c00001{letter-spacing:-0.070400pt;}
.ls147_c00001{letter-spacing:-0.068053pt;}
.ls1d4_c00001{letter-spacing:-0.064533pt;}
.lsb3_c00001{letter-spacing:-0.064000pt;}
.ls1ac_c00001{letter-spacing:-0.062400pt;}
.ls199_c00001{letter-spacing:-0.058080pt;}
.ls1d5_c00001{letter-spacing:-0.051627pt;}
.ls19c_c00001{letter-spacing:-0.045173pt;}
.ls257_c00001{letter-spacing:-0.043680pt;}
.ls30_c00001{letter-spacing:-0.043200pt;}
.ls94_c00001{letter-spacing:-0.038400pt;}
.ls3d6_c00001{letter-spacing:-0.036480pt;}
.ls1a1_c00001{letter-spacing:-0.032267pt;}
.lsbd_c00001{letter-spacing:-0.032000pt;}
.ls45b_c00001{letter-spacing:-0.030933pt;}
.ls1c6_c00001{letter-spacing:-0.025813pt;}
.ls9c_c00001{letter-spacing:-0.025600pt;}
.ls255_c00001{letter-spacing:-0.024960pt;}
.lscd_c00001{letter-spacing:-0.019200pt;}
.lsab_c00001{letter-spacing:-0.012800pt;}
.ls253_c00001{letter-spacing:-0.012480pt;}
.ls19a_c00001{letter-spacing:-0.006453pt;}
.ls8e_c00001{letter-spacing:-0.006400pt;}
.ls303_c00001{letter-spacing:-0.005173pt;}
.ls9_c00001{letter-spacing:0.000000pt;}
.ls12b_c00001{letter-spacing:0.006187pt;}
.ls186_c00001{letter-spacing:0.006453pt;}
.lsfc_c00001{letter-spacing:0.012373pt;}
.ls56_c00001{letter-spacing:0.012800pt;}
.ls34e_c00001{letter-spacing:0.018400pt;}
.ls106_c00001{letter-spacing:0.024747pt;}
.ls26b_c00001{letter-spacing:0.024960pt;}
.ls6a_c00001{letter-spacing:0.025600pt;}
.ls458_c00001{letter-spacing:0.028800pt;}
.lsf1_c00001{letter-spacing:0.030933pt;}
.ls4d_c00001{letter-spacing:0.032000pt;}
.ls179_c00001{letter-spacing:0.032267pt;}
.ls2af_c00001{letter-spacing:0.037440pt;}
.ls5c_c00001{letter-spacing:0.038400pt;}
.ls17c_c00001{letter-spacing:0.038720pt;}
.ls318_c00001{letter-spacing:0.042933pt;}
.ls138_c00001{letter-spacing:0.043307pt;}
.ls466_c00001{letter-spacing:0.044053pt;}
.ls70_c00001{letter-spacing:0.044800pt;}
.ls260_c00001{letter-spacing:0.049920pt;}
.ls74_c00001{letter-spacing:0.051200pt;}
.ls86_c00001{letter-spacing:0.057600pt;}
.ls168_c00001{letter-spacing:0.058080pt;}
.ls77_c00001{letter-spacing:0.064000pt;}
.ls166_c00001{letter-spacing:0.064533pt;}
.ls349_c00001{letter-spacing:0.068640pt;}
.ls53_c00001{letter-spacing:0.070400pt;}
.ls3d_c00001{letter-spacing:0.078400pt;}
.ls231_c00001{letter-spacing:0.081120pt;}
.ls72_c00001{letter-spacing:0.083200pt;}
.lsf0_c00001{letter-spacing:0.086613pt;}
.ls16c_c00001{letter-spacing:0.090347pt;}
.ls3d8_c00001{letter-spacing:0.091200pt;}
.ls2fa_c00001{letter-spacing:0.092800pt;}
.ls1f3_c00001{letter-spacing:0.093600pt;}
.ls418_c00001{letter-spacing:0.095200pt;}
.ls189_c00001{letter-spacing:0.096800pt;}
.ls183_c00001{letter-spacing:0.109707pt;}
.ls15d_c00001{letter-spacing:0.111360pt;}
.ls225_c00001{letter-spacing:0.112320pt;}
.ls4c_c00001{letter-spacing:0.115200pt;}
.ls25a_c00001{letter-spacing:0.118560pt;}
.ls34_c00001{letter-spacing:0.120320pt;}
.ls174_c00001{letter-spacing:0.122613pt;}
.ls2c8_c00001{letter-spacing:0.124800pt;}
.ls78_c00001{letter-spacing:0.128000pt;}
.ls171_c00001{letter-spacing:0.129067pt;}
.ls302_c00001{letter-spacing:0.129920pt;}
.ls26d_c00001{letter-spacing:0.131040pt;}
.ls64_c00001{letter-spacing:0.134400pt;}
.ls6c_c00001{letter-spacing:0.140800pt;}
.ls41b_c00001{letter-spacing:0.147200pt;}
.ls2cd_c00001{letter-spacing:0.148480pt;}
.ls2ee_c00001{letter-spacing:0.154667pt;}
.ls2b6_c00001{letter-spacing:0.156000pt;}
.ls249_c00001{letter-spacing:0.168480pt;}
.ls37f_c00001{letter-spacing:0.168747pt;}
.ls20_c00001{letter-spacing:0.170720pt;}
.ls5e_c00001{letter-spacing:0.172800pt;}
.ls172_c00001{letter-spacing:0.174240pt;}
.ls3af_c00001{letter-spacing:0.179200pt;}
.ls16e_c00001{letter-spacing:0.180693pt;}
.lsd0_c00001{letter-spacing:0.180960pt;}
.lsa_c00001{letter-spacing:0.183468pt;}
.ls160_c00001{letter-spacing:0.185600pt;}
.ls1fc_c00001{letter-spacing:0.187200pt;}
.ls29_c00001{letter-spacing:0.190507pt;}
.lsda_c00001{letter-spacing:0.191787pt;}
.ls75_c00001{letter-spacing:0.192000pt;}
.ls16f_c00001{letter-spacing:0.193600pt;}
.ls343_c00001{letter-spacing:0.196267pt;}
.lsde_c00001{letter-spacing:0.197973pt;}
.ls85_c00001{letter-spacing:0.198400pt;}
.ls42e_c00001{letter-spacing:0.199467pt;}
.ls60_c00001{letter-spacing:0.204800pt;}
.ls294_c00001{letter-spacing:0.205920pt;}
.ls83_c00001{letter-spacing:0.211200pt;}
.ls17f_c00001{letter-spacing:0.212960pt;}
.ls429_c00001{letter-spacing:0.215040pt;}
.ls6d_c00001{letter-spacing:0.217600pt;}
.ls21c_c00001{letter-spacing:0.218400pt;}
.ls2de_c00001{letter-spacing:0.222720pt;}
.ls61_c00001{letter-spacing:0.224000pt;}
.ls266_c00001{letter-spacing:0.224640pt;}
.ls28_c00001{letter-spacing:0.226133pt;}
.ls17_c00001{letter-spacing:0.228000pt;}
.ls4f_c00001{letter-spacing:0.230400pt;}
.ls24b_c00001{letter-spacing:0.230880pt;}
.ls59_c00001{letter-spacing:0.236800pt;}
.ls131_c00001{letter-spacing:0.241280pt;}
.ls90_c00001{letter-spacing:0.243200pt;}
.ls38_c00001{letter-spacing:0.248320pt;}
.ls69_c00001{letter-spacing:0.249600pt;}
.ls1_c00001{letter-spacing:0.253333pt;}
.ls240_c00001{letter-spacing:0.255840pt;}
.ls57_c00001{letter-spacing:0.256000pt;}
.ls3a2_c00001{letter-spacing:0.262400pt;}
.ls1a2_c00001{letter-spacing:0.264587pt;}
.ls41e_c00001{letter-spacing:0.266027pt;}
.ls26f_c00001{letter-spacing:0.268320pt;}
.ls51_c00001{letter-spacing:0.275200pt;}
.ls49_c00001{letter-spacing:0.279360pt;}
.ls7b_c00001{letter-spacing:0.281600pt;}
.lsed_c00001{letter-spacing:0.284587pt;}
.ls234_c00001{letter-spacing:0.287040pt;}
.lsa2_c00001{letter-spacing:0.288000pt;}
.ls105_c00001{letter-spacing:0.290773pt;}
.ls487_c00001{letter-spacing:0.293288pt;}
.ls7d_c00001{letter-spacing:0.294400pt;}
.lsd3_c00001{letter-spacing:0.296960pt;}
.ls245_c00001{letter-spacing:0.299520pt;}
.ls6b_c00001{letter-spacing:0.300800pt;}
.ls1f4_c00001{letter-spacing:0.305760pt;}
.ls4e_c00001{letter-spacing:0.307200pt;}
.ls152_c00001{letter-spacing:0.309333pt;}
.ls449_c00001{letter-spacing:0.312000pt;}
.ls222_c00001{letter-spacing:0.318240pt;}
.ls130_c00001{letter-spacing:0.327893pt;}
.ls24c_c00001{letter-spacing:0.330720pt;}
.ls332_c00001{letter-spacing:0.331200pt;}
.ls81_c00001{letter-spacing:0.332800pt;}
.ls14a_c00001{letter-spacing:0.334080pt;}
.ls42d_c00001{letter-spacing:0.334400pt;}
.ls17e_c00001{letter-spacing:0.335573pt;}
.ls1b2_c00001{letter-spacing:0.342027pt;}
.ls20c_c00001{letter-spacing:0.343200pt;}
.ls79_c00001{letter-spacing:0.345600pt;}
.lsf3_c00001{letter-spacing:0.346453pt;}
.ls274_c00001{letter-spacing:0.349067pt;}
.ls346_c00001{letter-spacing:0.349600pt;}
.ls2ff_c00001{letter-spacing:0.352640pt;}
.ls22c_c00001{letter-spacing:0.355680pt;}
.ls3bf_c00001{letter-spacing:0.355733pt;}
.ls2cc_c00001{letter-spacing:0.358827pt;}
.ls1d8_c00001{letter-spacing:0.361387pt;}
.ls493_c00001{letter-spacing:0.361920pt;}
.ls133_c00001{letter-spacing:0.365013pt;}
.ls1f6_c00001{letter-spacing:0.374400pt;}
.lse2_c00001{letter-spacing:0.377387pt;}
.ls50_c00001{letter-spacing:0.377600pt;}
.ls2c1_c00001{letter-spacing:0.380640pt;}
.ls127_c00001{letter-spacing:0.383573pt;}
.ls416_c00001{letter-spacing:0.389120pt;}
.ls157_c00001{letter-spacing:0.395947pt;}
.ls33e_c00001{letter-spacing:0.398667pt;}
.ls2ae_c00001{letter-spacing:0.399360pt;}
.ls129_c00001{letter-spacing:0.402133pt;}
.ls200_c00001{letter-spacing:0.405600pt;}
.ls23a_c00001{letter-spacing:0.411840pt;}
.ls3d5_c00001{letter-spacing:0.413440pt;}
.ls113_c00001{letter-spacing:0.414507pt;}
.ls267_c00001{letter-spacing:0.418080pt;}
.ls211_c00001{letter-spacing:0.424320pt;}
.ls101_c00001{letter-spacing:0.426880pt;}
.ls314_c00001{letter-spacing:0.429333pt;}
.ls205_c00001{letter-spacing:0.430560pt;}
.lsd7_c00001{letter-spacing:0.433067pt;}
.ls1f1_c00001{letter-spacing:0.436800pt;}
.ls134_c00001{letter-spacing:0.439253pt;}
.lsbe_c00001{letter-spacing:0.441600pt;}
.ls444_c00001{letter-spacing:0.443040pt;}
.ls2d8_c00001{letter-spacing:0.445440pt;}
.ls1ff_c00001{letter-spacing:0.449280pt;}
.ls141_c00001{letter-spacing:0.451627pt;}
.ls5d_c00001{letter-spacing:0.454400pt;}
.ls25d_c00001{letter-spacing:0.455520pt;}
.ls2fd_c00001{letter-spacing:0.457813pt;}
.ls480_c00001{letter-spacing:0.459947pt;}
.ls344_c00001{letter-spacing:0.460000pt;}
.ls221_c00001{letter-spacing:0.461760pt;}
.ls132_c00001{letter-spacing:0.464000pt;}
.ls25e_c00001{letter-spacing:0.468000pt;}
.ls380_c00001{letter-spacing:0.470080pt;}
.ls122_c00001{letter-spacing:0.470187pt;}
.ls22_c00001{letter-spacing:0.471200pt;}
.ls65_c00001{letter-spacing:0.473600pt;}
.ls22e_c00001{letter-spacing:0.474240pt;}
.ls114_c00001{letter-spacing:0.476373pt;}
.ls359_c00001{letter-spacing:0.478400pt;}
.ls21d_c00001{letter-spacing:0.480480pt;}
.lsd6_c00001{letter-spacing:0.482560pt;}
.ls1ef_c00001{letter-spacing:0.485760pt;}
.ls238_c00001{letter-spacing:0.486720pt;}
.ls111_c00001{letter-spacing:0.488747pt;}
.ls21e_c00001{letter-spacing:0.492960pt;}
.ls104_c00001{letter-spacing:0.494933pt;}
.ls1fb_c00001{letter-spacing:0.499200pt;}
.ls12c_c00001{letter-spacing:0.501120pt;}
.ls483_c00001{letter-spacing:0.502933pt;}
.ls237_c00001{letter-spacing:0.505440pt;}
.lse1_c00001{letter-spacing:0.507307pt;}
.ls3a5_c00001{letter-spacing:0.509067pt;}
.ls409_c00001{letter-spacing:0.511680pt;}
.ls120_c00001{letter-spacing:0.513493pt;}
.ls88_c00001{letter-spacing:0.517920pt;}
.lsa8_c00001{letter-spacing:0.518400pt;}
.ls396_c00001{letter-spacing:0.519680pt;}
.ls497_c00001{letter-spacing:0.522133pt;}
.ls25_c00001{letter-spacing:0.524160pt;}
.ls125_c00001{letter-spacing:0.525867pt;}
.ls18_c00001{letter-spacing:0.526933pt;}
.ls44d_c00001{letter-spacing:0.530400pt;}
.ls236_c00001{letter-spacing:0.536640pt;}
.ls295_c00001{letter-spacing:0.542880pt;}
.ls486_c00001{letter-spacing:0.545280pt;}
.ls375_c00001{letter-spacing:0.545867pt;}
.lse_c00001{letter-spacing:0.547200pt;}
.ls44f_c00001{letter-spacing:0.547520pt;}
.ls22a_c00001{letter-spacing:0.549120pt;}
.ls10c_c00001{letter-spacing:0.550613pt;}
.ls6_c00001{letter-spacing:0.553547pt;}
.ls169_c00001{letter-spacing:0.555360pt;}
.ls107_c00001{letter-spacing:0.556800pt;}
.ls4_c00001{letter-spacing:0.557333pt;}
.ls3c3_c00001{letter-spacing:0.558133pt;}
.ls227_c00001{letter-spacing:0.561600pt;}
.ls398_c00001{letter-spacing:0.562987pt;}
.ls80_c00001{letter-spacing:0.563200pt;}
.ls377_c00001{letter-spacing:0.564267pt;}
.ls440_c00001{letter-spacing:0.567467pt;}
.ls264_c00001{letter-spacing:0.567840pt;}
.ls36c_c00001{letter-spacing:0.570400pt;}
.ls31e_c00001{letter-spacing:0.572693pt;}
.ls214_c00001{letter-spacing:0.574080pt;}
.ls2e1_c00001{letter-spacing:0.575360pt;}
.ls84_c00001{letter-spacing:0.576000pt;}
.ls364_c00001{letter-spacing:0.576533pt;}
.ls2a7_c00001{letter-spacing:0.580320pt;}
.ls16b_c00001{letter-spacing:0.580800pt;}
.ls425_c00001{letter-spacing:0.581547pt;}
.ls5_c00001{letter-spacing:0.582667pt;}
.ls246_c00001{letter-spacing:0.586560pt;}
.ls277_c00001{letter-spacing:0.586693pt;}
.ls177_c00001{letter-spacing:0.587253pt;}
.ls139_c00001{letter-spacing:0.587733pt;}
.ls366_c00001{letter-spacing:0.588800pt;}
.ls48_c00001{letter-spacing:0.591573pt;}
.ls20e_c00001{letter-spacing:0.592800pt;}
.ls39d_c00001{letter-spacing:0.593920pt;}
.ls35f_c00001{letter-spacing:0.594933pt;}
.ls241_c00001{letter-spacing:0.599040pt;}
.ls10b_c00001{letter-spacing:0.600107pt;}
.ls44_c00001{letter-spacing:0.600853pt;}
.ls362_c00001{letter-spacing:0.601067pt;}
.ls224_c00001{letter-spacing:0.605280pt;}
.ls45c_c00001{letter-spacing:0.606293pt;}
.ls340_c00001{letter-spacing:0.607200pt;}
.ls203_c00001{letter-spacing:0.611520pt;}
.ls2f8_c00001{letter-spacing:0.612480pt;}
.ls358_c00001{letter-spacing:0.613333pt;}
.ls58_c00001{letter-spacing:0.614400pt;}
.ls220_c00001{letter-spacing:0.617760pt;}
.ls11f_c00001{letter-spacing:0.618667pt;}
.ls355_c00001{letter-spacing:0.619467pt;}
.lsb_c00001{letter-spacing:0.623200pt;}
.ls242_c00001{letter-spacing:0.624000pt;}
.ls2dd_c00001{letter-spacing:0.624853pt;}
.ls35b_c00001{letter-spacing:0.625600pt;}
.ls67_c00001{letter-spacing:0.627200pt;}
.ls1aa_c00001{letter-spacing:0.630240pt;}
.ls2db_c00001{letter-spacing:0.631040pt;}
.ls356_c00001{letter-spacing:0.631733pt;}
.ls435_c00001{letter-spacing:0.633173pt;}
.ls2b0_c00001{letter-spacing:0.636480pt;}
.lsf8_c00001{letter-spacing:0.637227pt;}
.ls23e_c00001{letter-spacing:0.642720pt;}
.ls137_c00001{letter-spacing:0.643413pt;}
.ls2d2_c00001{letter-spacing:0.649600pt;}
.ls213_c00001{letter-spacing:0.655200pt;}
.lsd4_c00001{letter-spacing:0.655787pt;}
.ls34c_c00001{letter-spacing:0.656267pt;}
.lsef_c00001{letter-spacing:0.661973pt;}
.ls347_c00001{letter-spacing:0.662400pt;}
.ls201_c00001{letter-spacing:0.667680pt;}
.lsf9_c00001{letter-spacing:0.668160pt;}
.ls350_c00001{letter-spacing:0.672533pt;}
.ls223_c00001{letter-spacing:0.673920pt;}
.lsfe_c00001{letter-spacing:0.674347pt;}
.ls36d_c00001{letter-spacing:0.674667pt;}
.ls464_c00001{letter-spacing:0.679680pt;}
.ls230_c00001{letter-spacing:0.680160pt;}
.ls2d7_c00001{letter-spacing:0.680533pt;}
.ls3ea_c00001{letter-spacing:0.680800pt;}
.ls9d_c00001{letter-spacing:0.684800pt;}
.ls2b7_c00001{letter-spacing:0.686400pt;}
.ls397_c00001{letter-spacing:0.686720pt;}
.ls36b_c00001{letter-spacing:0.686933pt;}
.ls89_c00001{letter-spacing:0.692640pt;}
.lsf4_c00001{letter-spacing:0.692907pt;}
.ls3ff_c00001{letter-spacing:0.693067pt;}
.ls173_c00001{letter-spacing:0.696960pt;}
.ls22b_c00001{letter-spacing:0.698880pt;}
.lse8_c00001{letter-spacing:0.699093pt;}
.ls341_c00001{letter-spacing:0.699200pt;}
.ls447_c00001{letter-spacing:0.705120pt;}
.lsd5_c00001{letter-spacing:0.705280pt;}
.ls3f6_c00001{letter-spacing:0.705333pt;}
.ls239_c00001{letter-spacing:0.711360pt;}
.ls3ed_c00001{letter-spacing:0.711467pt;}
.ls228_c00001{letter-spacing:0.717600pt;}
.ls2d9_c00001{letter-spacing:0.717653pt;}
.ls3f9_c00001{letter-spacing:0.723733pt;}
.lsd9_c00001{letter-spacing:0.723840pt;}
.ls3a_c00001{letter-spacing:0.726933pt;}
.ls351_c00001{letter-spacing:0.729440pt;}
.ls3ee_c00001{letter-spacing:0.729867pt;}
.ls10d_c00001{letter-spacing:0.730027pt;}
.ls20b_c00001{letter-spacing:0.730080pt;}
.ls11d_c00001{letter-spacing:0.736213pt;}
.ls1fa_c00001{letter-spacing:0.736320pt;}
.ls11a_c00001{letter-spacing:0.742400pt;}
.ls1f2_c00001{letter-spacing:0.742560pt;}
.ls35a_c00001{letter-spacing:0.748267pt;}
.lsd2_c00001{letter-spacing:0.748587pt;}
.ls244_c00001{letter-spacing:0.748800pt;}
.ls316_c00001{letter-spacing:0.754400pt;}
.lsfa_c00001{letter-spacing:0.754773pt;}
.ls207_c00001{letter-spacing:0.755040pt;}
.ls33_c00001{letter-spacing:0.757867pt;}
.ls334_c00001{letter-spacing:0.760533pt;}
.ls135_c00001{letter-spacing:0.760960pt;}
.ls256_c00001{letter-spacing:0.761280pt;}
.ls329_c00001{letter-spacing:0.766667pt;}
.ls100_c00001{letter-spacing:0.767147pt;}
.lsae_c00001{letter-spacing:0.768000pt;}
.ls32c_c00001{letter-spacing:0.772800pt;}
.ls11e_c00001{letter-spacing:0.773333pt;}
.ls461_c00001{letter-spacing:0.773760pt;}
.ls330_c00001{letter-spacing:0.778933pt;}
.ls2f7_c00001{letter-spacing:0.779520pt;}
.ls2ba_c00001{letter-spacing:0.780000pt;}
.ls3b5_c00001{letter-spacing:0.784320pt;}
.ls31b_c00001{letter-spacing:0.785067pt;}
.ls121_c00001{letter-spacing:0.785707pt;}
.ls217_c00001{letter-spacing:0.786240pt;}
.ls30a_c00001{letter-spacing:0.791200pt;}
.ls406_c00001{letter-spacing:0.791840pt;}
.ls2d5_c00001{letter-spacing:0.791893pt;}
.ls235_c00001{letter-spacing:0.792480pt;}
.ls320_c00001{letter-spacing:0.797333pt;}
.lsf2_c00001{letter-spacing:0.798080pt;}
.ls2ab_c00001{letter-spacing:0.798720pt;}
.ls162_c00001{letter-spacing:0.800213pt;}
.ls30d_c00001{letter-spacing:0.803467pt;}
.ls2f9_c00001{letter-spacing:0.804267pt;}
.ls206_c00001{letter-spacing:0.804960pt;}
.ls384_c00001{letter-spacing:0.807573pt;}
.ls33f_c00001{letter-spacing:0.809600pt;}
.lse3_c00001{letter-spacing:0.810453pt;}
.ls2bd_c00001{letter-spacing:0.811200pt;}
.ls46b_c00001{letter-spacing:0.815733pt;}
.ls155_c00001{letter-spacing:0.816640pt;}
.ls1f5_c00001{letter-spacing:0.817440pt;}
.ls3e7_c00001{letter-spacing:0.818773pt;}
.lsc9_c00001{letter-spacing:0.819200pt;}
.ls36e_c00001{letter-spacing:0.821867pt;}
.lsf7_c00001{letter-spacing:0.822827pt;}
.ls21b_c00001{letter-spacing:0.823680pt;}
.ls150_c00001{letter-spacing:0.829013pt;}
.ls47b_c00001{letter-spacing:0.834133pt;}
.lsdf_c00001{letter-spacing:0.835200pt;}
.ls20f_c00001{letter-spacing:0.836160pt;}
.ls1f_c00001{letter-spacing:0.838080pt;}
.ls7f_c00001{letter-spacing:0.838400pt;}
.ls123_c00001{letter-spacing:0.841387pt;}
.ls208_c00001{letter-spacing:0.842400pt;}
.ls52_c00001{letter-spacing:0.844800pt;}
.ls2f1_c00001{letter-spacing:0.847573pt;}
.ls23d_c00001{letter-spacing:0.848640pt;}
.ls2cf_c00001{letter-spacing:0.853760pt;}
.ls42a_c00001{letter-spacing:0.854187pt;}
.ls29a_c00001{letter-spacing:0.854880pt;}
.ls46d_c00001{letter-spacing:0.858667pt;}
.ls10f_c00001{letter-spacing:0.859947pt;}
.ls28f_c00001{letter-spacing:0.861120pt;}
.ls2d1_c00001{letter-spacing:0.866133pt;}
.ls210_c00001{letter-spacing:0.867360pt;}
.ls379_c00001{letter-spacing:0.869120pt;}
.ls474_c00001{letter-spacing:0.872107pt;}
.ls13b_c00001{letter-spacing:0.872320pt;}
.ls2a4_c00001{letter-spacing:0.873600pt;}
.ls3ad_c00001{letter-spacing:0.878080pt;}
.lsea_c00001{letter-spacing:0.878507pt;}
.ls1f8_c00001{letter-spacing:0.879840pt;}
.ls6f_c00001{letter-spacing:0.883200pt;}
.ls473_c00001{letter-spacing:0.884053pt;}
.lsfb_c00001{letter-spacing:0.884693pt;}
.ls2bf_c00001{letter-spacing:0.886080pt;}
.lse0_c00001{letter-spacing:0.890880pt;}
.ls29f_c00001{letter-spacing:0.892320pt;}
.lsd8_c00001{letter-spacing:0.897067pt;}
.ls1fd_c00001{letter-spacing:0.898560pt;}
.ls459_c00001{letter-spacing:0.903253pt;}
.ls2b4_c00001{letter-spacing:0.904800pt;}
.ls3b2_c00001{letter-spacing:0.907733pt;}
.lsf6_c00001{letter-spacing:0.909440pt;}
.ls292_c00001{letter-spacing:0.911040pt;}
.ls2ef_c00001{letter-spacing:0.915627pt;}
.ls472_c00001{letter-spacing:0.920000pt;}
.ls280_c00001{letter-spacing:0.923520pt;}
.ls243_c00001{letter-spacing:0.929760pt;}
.ls3b6_c00001{letter-spacing:0.930240pt;}
.ls3aa_c00001{letter-spacing:0.933360pt;}
.ls419_c00001{letter-spacing:0.934187pt;}
.ls491_c00001{letter-spacing:0.936000pt;}
.ls452_c00001{letter-spacing:0.937280pt;}
.ls46e_c00001{letter-spacing:0.938400pt;}
.ls11b_c00001{letter-spacing:0.940373pt;}
.ls2a2_c00001{letter-spacing:0.942240pt;}
.ls36f_c00001{letter-spacing:0.944533pt;}
.lseb_c00001{letter-spacing:0.946560pt;}
.lsba_c00001{letter-spacing:0.947200pt;}
.ls3b3_c00001{letter-spacing:0.950667pt;}
.lse9_c00001{letter-spacing:0.952747pt;}
.ls3b4_c00001{letter-spacing:0.954560pt;}
.ls36_c00001{letter-spacing:0.957280pt;}
.ls124_c00001{letter-spacing:0.958933pt;}
.ls37a_c00001{letter-spacing:0.960000pt;}
.ls3df_c00001{letter-spacing:0.960640pt;}
.ls2a3_c00001{letter-spacing:0.960960pt;}
.lsd1_c00001{letter-spacing:0.962133pt;}
.lsdd_c00001{letter-spacing:0.965120pt;}
.ls232_c00001{letter-spacing:0.967200pt;}
.ls3c9_c00001{letter-spacing:0.969067pt;}
.ls158_c00001{letter-spacing:0.971307pt;}
.ls204_c00001{letter-spacing:0.973440pt;}
.ls36a_c00001{letter-spacing:0.975200pt;}
.ls2e0_c00001{letter-spacing:0.977493pt;}
.ls215_c00001{letter-spacing:0.979680pt;}
.ls35c_c00001{letter-spacing:0.981333pt;}
.ls2e4_c00001{letter-spacing:0.983680pt;}
.ls2bb_c00001{letter-spacing:0.985920pt;}
.ls39b_c00001{letter-spacing:0.989867pt;}
.ls297_c00001{letter-spacing:0.992160pt;}
.ls3_c00001{letter-spacing:0.993067pt;}
.ls128_c00001{letter-spacing:0.996053pt;}
.ls216_c00001{letter-spacing:0.998400pt;}
.ls32a_c00001{letter-spacing:0.999733pt;}
.ls23c_c00001{letter-spacing:1.004640pt;}
.ls2d4_c00001{letter-spacing:1.008427pt;}
.ls209_c00001{letter-spacing:1.010880pt;}
.ls35d_c00001{letter-spacing:1.012000pt;}
.ls353_c00001{letter-spacing:1.013973pt;}
.ls2e6_c00001{letter-spacing:1.014613pt;}
.ls23_c00001{letter-spacing:1.016800pt;}
.ls2aa_c00001{letter-spacing:1.017120pt;}
.ls354_c00001{letter-spacing:1.018133pt;}
.ls2e2_c00001{letter-spacing:1.020800pt;}
.ls2a9_c00001{letter-spacing:1.023360pt;}
.ls327_c00001{letter-spacing:1.024267pt;}
.lse5_c00001{letter-spacing:1.026987pt;}
.ls34f_c00001{letter-spacing:1.029120pt;}
.ls28a_c00001{letter-spacing:1.029600pt;}
.ls401_c00001{letter-spacing:1.030400pt;}
.ls112_c00001{letter-spacing:1.033173pt;}
.ls298_c00001{letter-spacing:1.035840pt;}
.ls46f_c00001{letter-spacing:1.036533pt;}
.ls41a_c00001{letter-spacing:1.039360pt;}
.ls37e_c00001{letter-spacing:1.040027pt;}
.ls219_c00001{letter-spacing:1.042080pt;}
.ls373_c00001{letter-spacing:1.042667pt;}
.ls365_c00001{letter-spacing:1.048800pt;}
.ls421_c00001{letter-spacing:1.051733pt;}
.ls3d4_c00001{letter-spacing:1.051840pt;}
.ls3ae_c00001{letter-spacing:1.054720pt;}
.ls470_c00001{letter-spacing:1.054933pt;}
.ls10e_c00001{letter-spacing:1.057920pt;}
.ls282_c00001{letter-spacing:1.060800pt;}
.ls371_c00001{letter-spacing:1.061067pt;}
.ls39_c00001{letter-spacing:1.062827pt;}
.ls2e8_c00001{letter-spacing:1.064107pt;}
.ls181_c00001{letter-spacing:1.064800pt;}
.ls43f_c00001{letter-spacing:1.066667pt;}
.ls286_c00001{letter-spacing:1.067040pt;}
.ls402_c00001{letter-spacing:1.067200pt;}
.ls7c_c00001{letter-spacing:1.068800pt;}
.ls87_c00001{letter-spacing:1.073280pt;}
.ls3ba_c00001{letter-spacing:1.073333pt;}
.ls108_c00001{letter-spacing:1.076480pt;}
.ls23b_c00001{letter-spacing:1.079520pt;}
.lsec_c00001{letter-spacing:1.082667pt;}
.ls367_c00001{letter-spacing:1.085600pt;}
.ls423_c00001{letter-spacing:1.088853pt;}
.ls357_c00001{letter-spacing:1.091733pt;}
.ls3db_c00001{letter-spacing:1.093333pt;}
.ls102_c00001{letter-spacing:1.095040pt;}
.ls3cd_c00001{letter-spacing:1.095200pt;}
.ls352_c00001{letter-spacing:1.096747pt;}
.ls317_c00001{letter-spacing:1.097867pt;}
.ls2b5_c00001{letter-spacing:1.098240pt;}
.ls3c7_c00001{letter-spacing:1.101120pt;}
.ls12d_c00001{letter-spacing:1.101227pt;}
.ls363_c00001{letter-spacing:1.104000pt;}
.ls23f_c00001{letter-spacing:1.104480pt;}
.ls489_c00001{letter-spacing:1.105067pt;}
.ls3ca_c00001{letter-spacing:1.107040pt;}
.ls178_c00001{letter-spacing:1.109973pt;}
.ls3be_c00001{letter-spacing:1.110133pt;}
.lsf5_c00001{letter-spacing:1.113600pt;}
.ls44a_c00001{letter-spacing:1.116960pt;}
.ls3c4_c00001{letter-spacing:1.118880pt;}
.lsee_c00001{letter-spacing:1.119787pt;}
.ls55_c00001{letter-spacing:1.120000pt;}
.ls3ce_c00001{letter-spacing:1.121280pt;}
.ls448_c00001{letter-spacing:1.123200pt;}
.ls46c_c00001{letter-spacing:1.128533pt;}
.ls2a0_c00001{letter-spacing:1.129440pt;}
.ls479_c00001{letter-spacing:1.134667pt;}
.ls28d_c00001{letter-spacing:1.135680pt;}
.ls3bb_c00001{letter-spacing:1.140800pt;}
.ls37b_c00001{letter-spacing:1.146693pt;}
.ls3bc_c00001{letter-spacing:1.146933pt;}
.ls291_c00001{letter-spacing:1.148160pt;}
.ls426_c00001{letter-spacing:1.150720pt;}
.ls35_c00001{letter-spacing:1.151253pt;}
.ls369_c00001{letter-spacing:1.153067pt;}
.ls494_c00001{letter-spacing:1.153653pt;}
.ls29c_c00001{letter-spacing:1.154400pt;}
.ls12f_c00001{letter-spacing:1.156907pt;}
.ls374_c00001{letter-spacing:1.159200pt;}
.ls29e_c00001{letter-spacing:1.160640pt;}
.ls475_c00001{letter-spacing:1.164800pt;}
.ls328_c00001{letter-spacing:1.165333pt;}
.ls3d0_c00001{letter-spacing:1.166240pt;}
.ls0_c00001{letter-spacing:1.170400pt;}
.ls372_c00001{letter-spacing:1.171467pt;}
.ls284_c00001{letter-spacing:1.173120pt;}
.ls43e_c00001{letter-spacing:1.173360pt;}
.ls116_c00001{letter-spacing:1.175467pt;}
.ls48d_c00001{letter-spacing:1.184693pt;}
.ls28c_c00001{letter-spacing:1.185600pt;}
.ls3a0_c00001{letter-spacing:1.187840pt;}
.ls47e_c00001{letter-spacing:1.188693pt;}
.ls48f_c00001{letter-spacing:1.195040pt;}
.ls3bd_c00001{letter-spacing:1.196000pt;}
.ls287_c00001{letter-spacing:1.198080pt;}
.lse6_c00001{letter-spacing:1.200213pt;}
.ls164_c00001{letter-spacing:1.200320pt;}
.ls47a_c00001{letter-spacing:1.202133pt;}
.ls21f_c00001{letter-spacing:1.204320pt;}
.ls2ed_c00001{letter-spacing:1.206400pt;}
.ls32e_c00001{letter-spacing:1.208267pt;}
.ls82_c00001{letter-spacing:1.209600pt;}
.ls490_c00001{letter-spacing:1.212587pt;}
.ls324_c00001{letter-spacing:1.214400pt;}
.ls2b8_c00001{letter-spacing:1.216800pt;}
.ls399_c00001{letter-spacing:1.218773pt;}
.ls46a_c00001{letter-spacing:1.220533pt;}
.ls388_c00001{letter-spacing:1.226667pt;}
.ls451_c00001{letter-spacing:1.235520pt;}
.ls492_c00001{letter-spacing:1.236480pt;}
.ls11c_c00001{letter-spacing:1.237333pt;}
.ls118_c00001{letter-spacing:1.243520pt;}
.ls370_c00001{letter-spacing:1.245067pt;}
.ls54_c00001{letter-spacing:1.248000pt;}
.ls395_c00001{letter-spacing:1.249707pt;}
.ls37c_c00001{letter-spacing:1.252176pt;}
.ls2cb_c00001{letter-spacing:1.255893pt;}
.ls3cb_c00001{letter-spacing:1.257333pt;}
.ls335_c00001{letter-spacing:1.263467pt;}
.ls21a_c00001{letter-spacing:1.266720pt;}
.ls2d0_c00001{letter-spacing:1.268267pt;}
.ls319_c00001{letter-spacing:1.269600pt;}
.ls315_c00001{letter-spacing:1.275733pt;}
.ls24_c00001{letter-spacing:1.278400pt;}
.ls3e4_c00001{letter-spacing:1.280027pt;}
.ls3a7_c00001{letter-spacing:1.280640pt;}
.ls445_c00001{letter-spacing:1.291680pt;}
.ls1f7_c00001{letter-spacing:1.297920pt;}
.ls34a_c00001{letter-spacing:1.300267pt;}
.ls2f6_c00001{letter-spacing:1.305387pt;}
.ls477_c00001{letter-spacing:1.306400pt;}
.ls3a9_c00001{letter-spacing:1.306693pt;}
.ls48e_c00001{letter-spacing:1.308853pt;}
.ls218_c00001{letter-spacing:1.310400pt;}
.ls38c_c00001{letter-spacing:1.310720pt;}
.ls15b_c00001{letter-spacing:1.311573pt;}
.ls32d_c00001{letter-spacing:1.312533pt;}
.ls2b3_c00001{letter-spacing:1.316640pt;}
.ls333_c00001{letter-spacing:1.318667pt;}
.ls288_c00001{letter-spacing:1.322880pt;}
.ls47f_c00001{letter-spacing:1.324800pt;}
.ls3b9_c00001{letter-spacing:1.330933pt;}
.ls119_c00001{letter-spacing:1.336320pt;}
.ls30c_c00001{letter-spacing:1.337067pt;}
.ls337_c00001{letter-spacing:1.337120pt;}
.ls233_c00001{letter-spacing:1.341600pt;}
.ls17a_c00001{letter-spacing:1.342293pt;}
.ls41f_c00001{letter-spacing:1.354880pt;}
.ls325_c00001{letter-spacing:1.355467pt;}
.ls389_c00001{letter-spacing:1.360000pt;}
.ls2ac_c00001{letter-spacing:1.360320pt;}
.ls2ea_c00001{letter-spacing:1.361067pt;}
.ls313_c00001{letter-spacing:1.361600pt;}
.ls71_c00001{letter-spacing:1.363200pt;}
.ls446_c00001{letter-spacing:1.366560pt;}
.ls311_c00001{letter-spacing:1.367733pt;}
.ls176_c00001{letter-spacing:1.368107pt;}
.ls2c4_c00001{letter-spacing:1.372800pt;}
.ls5f_c00001{letter-spacing:1.376000pt;}
.ls3b0_c00001{letter-spacing:1.377280pt;}
.ls27_c00001{letter-spacing:1.378133pt;}
.ls28e_c00001{letter-spacing:1.379040pt;}
.ls32f_c00001{letter-spacing:1.380000pt;}
.ls68_c00001{letter-spacing:1.382400pt;}
.ls48c_c00001{letter-spacing:1.386133pt;}
.ls273_c00001{letter-spacing:1.386667pt;}
.ls2ad_c00001{letter-spacing:1.391520pt;}
.ls404_c00001{letter-spacing:1.392267pt;}
.ls281_c00001{letter-spacing:1.397760pt;}
.ls3c8_c00001{letter-spacing:1.398400pt;}
.ls3a4_c00001{letter-spacing:1.402880pt;}
.ls32b_c00001{letter-spacing:1.404533pt;}
.ls293_c00001{letter-spacing:1.410240pt;}
.ls30f_c00001{letter-spacing:1.410667pt;}
.ls26_c00001{letter-spacing:1.413760pt;}
.ls331_c00001{letter-spacing:1.416800pt;}
.ls12_c00001{letter-spacing:1.418667pt;}
.ls2ce_c00001{letter-spacing:1.422933pt;}
.ls1d_c00001{letter-spacing:1.423733pt;}
.ls2e3_c00001{letter-spacing:1.429120pt;}
.ls76_c00001{letter-spacing:1.433600pt;}
.ls3f5_c00001{letter-spacing:1.435200pt;}
.ls14c_c00001{letter-spacing:1.435307pt;}
.ls16d_c00001{letter-spacing:1.439093pt;}
.ls368_c00001{letter-spacing:1.441333pt;}
.ls3ec_c00001{letter-spacing:1.447467pt;}
.ls2b1_c00001{letter-spacing:1.447680pt;}
.ls383_c00001{letter-spacing:1.452427pt;}
.ls38d_c00001{letter-spacing:1.459200pt;}
.ls3c2_c00001{letter-spacing:1.459733pt;}
.ls103_c00001{letter-spacing:1.460053pt;}
.ls22d_c00001{letter-spacing:1.460160pt;}
.ls322_c00001{letter-spacing:1.465867pt;}
.ls182_c00001{letter-spacing:1.471360pt;}
.ls3b7_c00001{letter-spacing:1.472000pt;}
.ls3f8_c00001{letter-spacing:1.478133pt;}
.ls2fc_c00001{letter-spacing:1.478613pt;}
.ls271_c00001{letter-spacing:1.482400pt;}
.ls3b8_c00001{letter-spacing:1.484267pt;}
.ls12a_c00001{letter-spacing:1.484800pt;}
.ls289_c00001{letter-spacing:1.485120pt;}
.ls165_c00001{letter-spacing:1.490720pt;}
.ls42c_c00001{letter-spacing:1.493333pt;}
.ls35e_c00001{letter-spacing:1.496533pt;}
.ls411_c00001{letter-spacing:1.520000pt;}
.ls405_c00001{letter-spacing:1.527200pt;}
.ls469_c00001{letter-spacing:1.530880pt;}
.ls3fe_c00001{letter-spacing:1.533333pt;}
.ls117_c00001{letter-spacing:1.534293pt;}
.ls115_c00001{letter-spacing:1.540480pt;}
.ls185_c00001{letter-spacing:1.542347pt;}
.ls454_c00001{letter-spacing:1.546667pt;}
.ls202_c00001{letter-spacing:1.553760pt;}
.ls38f_c00001{letter-spacing:1.561600pt;}
.ls187_c00001{letter-spacing:1.561707pt;}
.ls323_c00001{letter-spacing:1.564000pt;}
.ls442_c00001{letter-spacing:1.567520pt;}
.ls3cc_c00001{letter-spacing:1.568800pt;}
.ls2d3_c00001{letter-spacing:1.571413pt;}
.ls247_c00001{letter-spacing:1.572480pt;}
.ls27a_c00001{letter-spacing:1.573360pt;}
.ls31_c00001{letter-spacing:1.574400pt;}
.ls40f_c00001{letter-spacing:1.576267pt;}
.ls299_c00001{letter-spacing:1.578720pt;}
.ls6e_c00001{letter-spacing:1.587200pt;}
.ls2a1_c00001{letter-spacing:1.591200pt;}
.ls250_c00001{letter-spacing:1.600267pt;}
.ls126_c00001{letter-spacing:1.602347pt;}
.ls283_c00001{letter-spacing:1.603680pt;}
.ls2b2_c00001{letter-spacing:1.609920pt;}
.ls3f3_c00001{letter-spacing:1.613067pt;}
.ls180_c00001{letter-spacing:1.613333pt;}
.ls226_c00001{letter-spacing:1.616160pt;}
.ls5b_c00001{letter-spacing:1.619200pt;}
.ls422_c00001{letter-spacing:1.620907pt;}
.ls44b_c00001{letter-spacing:1.622400pt;}
.ls31a_c00001{letter-spacing:1.625333pt;}
.ls3f0_c00001{letter-spacing:1.631467pt;}
.ls24f_c00001{letter-spacing:1.634880pt;}
.ls410_c00001{letter-spacing:1.647360pt;}
.ls3fa_c00001{letter-spacing:1.649867pt;}
.ls3f2_c00001{letter-spacing:1.662133pt;}
.ls376_c00001{letter-spacing:1.668267pt;}
.ls310_c00001{letter-spacing:1.686667pt;}
.ls392_c00001{letter-spacing:1.695147pt;}
.ls30b_c00001{letter-spacing:1.698933pt;}
.ls248_c00001{letter-spacing:1.716000pt;}
.ls3f4_c00001{letter-spacing:1.717333pt;}
.ls3fc_c00001{letter-spacing:1.723467pt;}
.ls3c5_c00001{letter-spacing:1.729600pt;}
.ls27c_c00001{letter-spacing:1.733360pt;}
.ls3eb_c00001{letter-spacing:1.735733pt;}
.ls394_c00001{letter-spacing:1.738453pt;}
.ls38e_c00001{letter-spacing:1.740800pt;}
.ls481_c00001{letter-spacing:1.744213pt;}
.ls305_c00001{letter-spacing:1.744320pt;}
.ls39c_c00001{letter-spacing:1.744640pt;}
.lsbf_c00001{letter-spacing:1.747200pt;}
.ls47c_c00001{letter-spacing:1.748000pt;}
.ls2e_c00001{letter-spacing:1.752053pt;}
.ls471_c00001{letter-spacing:1.760267pt;}
.lse7_c00001{letter-spacing:1.763200pt;}
.ls2ec_c00001{letter-spacing:1.775573pt;}
.ls73_c00001{letter-spacing:1.792000pt;}
.ls29b_c00001{letter-spacing:1.803360pt;}
.ls30e_c00001{letter-spacing:1.815467pt;}
.ls3f1_c00001{letter-spacing:1.827733pt;}
.ls22f_c00001{letter-spacing:1.828320pt;}
.ls393_c00001{letter-spacing:1.831253pt;}
.ls16a_c00001{letter-spacing:1.832747pt;}
.ls403_c00001{letter-spacing:1.833867pt;}
.ls390_c00001{letter-spacing:1.837440pt;}
.ls437_c00001{letter-spacing:1.845760pt;}
.ls378_c00001{letter-spacing:1.846133pt;}
.ls38a_c00001{letter-spacing:1.849333pt;}
.ls39e_c00001{letter-spacing:1.849813pt;}
.ls12e_c00001{letter-spacing:1.856000pt;}
.ls285_c00001{letter-spacing:1.865760pt;}
.ls163_c00001{letter-spacing:1.871467pt;}
.ls2dc_c00001{letter-spacing:1.874560pt;}
.ls3b_c00001{letter-spacing:1.880000pt;}
.lse4_c00001{letter-spacing:1.886933pt;}
.ls3ef_c00001{letter-spacing:1.895200pt;}
.ls391_c00001{letter-spacing:1.899307pt;}
.ls2f5_c00001{letter-spacing:1.905493pt;}
.ls167_c00001{letter-spacing:1.910187pt;}
.ls2f2_c00001{letter-spacing:1.911680pt;}
.lsff_c00001{letter-spacing:1.924053pt;}
.ls312_c00001{letter-spacing:1.944267pt;}
.ls290_c00001{letter-spacing:1.959360pt;}
.ls28b_c00001{letter-spacing:1.965600pt;}
.ls321_c00001{letter-spacing:1.968800pt;}
.ls39a_c00001{letter-spacing:1.973547pt;}
.ls17d_c00001{letter-spacing:1.974720pt;}
.ls2bc_c00001{letter-spacing:1.978080pt;}
.ls41d_c00001{letter-spacing:1.979733pt;}
.ls361_c00001{letter-spacing:1.999467pt;}
.ls24e_c00001{letter-spacing:2.003040pt;}
.ls37_c00001{letter-spacing:2.008800pt;}
.ls457_c00001{letter-spacing:2.009280pt;}
.ls450_c00001{letter-spacing:2.021760pt;}
.ls17b_c00001{letter-spacing:2.026347pt;}
.ls110_c00001{letter-spacing:2.029227pt;}
.ls3fb_c00001{letter-spacing:2.036267pt;}
.ls2f0_c00001{letter-spacing:2.047787pt;}
.ls5a_c00001{letter-spacing:2.048000pt;}
.ls439_c00001{letter-spacing:2.053333pt;}
.ls3c0_c00001{letter-spacing:2.054667pt;}
.ls2df_c00001{letter-spacing:2.060160pt;}
.ls31f_c00001{letter-spacing:2.066933pt;}
.ls1f9_c00001{letter-spacing:2.071680pt;}
.ls3e8_c00001{letter-spacing:2.073867pt;}
.lsdc_c00001{letter-spacing:2.078720pt;}
.ls3e6_c00001{letter-spacing:2.079253pt;}
.ls3f7_c00001{letter-spacing:2.085333pt;}
.ls7a_c00001{letter-spacing:2.086400pt;}
.ls385_c00001{letter-spacing:2.091253pt;}
.ls476_c00001{letter-spacing:2.097600pt;}
.ls14e_c00001{letter-spacing:2.103467pt;}
.ls308_c00001{letter-spacing:2.111627pt;}
.ls360_c00001{letter-spacing:2.128267pt;}
.ls229_c00001{letter-spacing:2.134080pt;}
.ls2ca_c00001{letter-spacing:2.146773pt;}
.ls63_c00001{letter-spacing:2.150400pt;}
.ls296_c00001{letter-spacing:2.152800pt;}
.ls188_c00001{letter-spacing:2.155413pt;}
.ls109_c00001{letter-spacing:2.165333pt;}
.ls47d_c00001{letter-spacing:2.168320pt;}
.ls339_c00001{letter-spacing:2.170080pt;}
.ls307_c00001{letter-spacing:2.171200pt;}
.ls2da_c00001{letter-spacing:2.171520pt;}
.ls3b1_c00001{letter-spacing:2.190400pt;}
.ls18a_c00001{letter-spacing:2.192373pt;}
.lsfd_c00001{letter-spacing:2.202453pt;}
.ls3c1_c00001{letter-spacing:2.208000pt;}
.ls20d_c00001{letter-spacing:2.208960pt;}
.ls3a3_c00001{letter-spacing:2.227200pt;}
.ls2e7_c00001{letter-spacing:2.239573pt;}
.ls488_c00001{letter-spacing:2.240000pt;}
.ls2a8_c00001{letter-spacing:2.240160pt;}
.ls3e9_c00001{letter-spacing:2.246240pt;}
.ls270_c00001{letter-spacing:2.266667pt;}
.ls24a_c00001{letter-spacing:2.271360pt;}
.ls175_c00001{letter-spacing:2.271573pt;}
.ls2b9_c00001{letter-spacing:2.290080pt;}
.ls45_c00001{letter-spacing:2.293333pt;}
.ls2f4_c00001{letter-spacing:2.301440pt;}
.ls44e_c00001{letter-spacing:2.315040pt;}
.ls3a1_c00001{letter-spacing:2.338560pt;}
.ls136_c00001{letter-spacing:2.344747pt;}
.ls2e9_c00001{letter-spacing:2.350933pt;}
.ls13a_c00001{letter-spacing:2.357120pt;}
.ls31d_c00001{letter-spacing:2.361333pt;}
.ls2a6_c00001{letter-spacing:2.364960pt;}
.ls3e2_c00001{letter-spacing:2.368000pt;}
.ls1f0_c00001{letter-spacing:2.375520pt;}
.ls24d_c00001{letter-spacing:2.377440pt;}
.ls2_c00001{letter-spacing:2.381333pt;}
.ls482_c00001{letter-spacing:2.383360pt;}
.ls39f_c00001{letter-spacing:2.394453pt;}
.ls13c_c00001{letter-spacing:2.394667pt;}
.ls19_c00001{letter-spacing:2.400000pt;}
.ls420_c00001{letter-spacing:2.400427pt;}
.ls27f_c00001{letter-spacing:2.402400pt;}
.ls2f_c00001{letter-spacing:2.426667pt;}
.ls443_c00001{letter-spacing:2.429387pt;}
.ls41_c00001{letter-spacing:2.435360pt;}
.ls10a_c00001{letter-spacing:2.437547pt;}
.ls1fe_c00001{letter-spacing:2.439840pt;}
.lsf_c00001{letter-spacing:2.453333pt;}
.ls478_c00001{letter-spacing:2.459467pt;}
.ls2d6_c00001{letter-spacing:2.462293pt;}
.ls309_c00001{letter-spacing:2.477867pt;}
.ls13_c00001{letter-spacing:2.480000pt;}
.ls3fd_c00001{letter-spacing:2.502400pt;}
.ls47_c00001{letter-spacing:2.506667pt;}
.ls44c_c00001{letter-spacing:2.508480pt;}
.ls417_c00001{letter-spacing:2.519627pt;}
.ls431_c00001{letter-spacing:2.522667pt;}
.lsc_c00001{letter-spacing:2.533333pt;}
.ls41c_c00001{letter-spacing:2.536533pt;}
.ls7e_c00001{letter-spacing:2.540800pt;}
.ls31c_c00001{letter-spacing:2.557600pt;}
.ls32_c00001{letter-spacing:2.579200pt;}
.ls170_c00001{letter-spacing:2.581333pt;}
.ls251_c00001{letter-spacing:2.585600pt;}
.ls62_c00001{letter-spacing:2.592000pt;}
.ls438_c00001{letter-spacing:2.634133pt;}
.ls2f3_c00001{letter-spacing:2.641707pt;}
.ls20a_c00001{letter-spacing:2.658240pt;}
.ls2eb_c00001{letter-spacing:2.660267pt;}
.ls13d_c00001{letter-spacing:2.666667pt;}
.ls18b_c00001{letter-spacing:2.693333pt;}
.ls29d_c00001{letter-spacing:2.708160pt;}
.ls3e3_c00001{letter-spacing:2.717280pt;}
.ls212_c00001{letter-spacing:2.739360pt;}
.ls338_c00001{letter-spacing:2.773333pt;}
.ls424_c00001{letter-spacing:2.790187pt;}
.ls2a5_c00001{letter-spacing:2.851680pt;}
.ls3c6_c00001{letter-spacing:2.883040pt;}
.ls2e5_c00001{letter-spacing:2.889173pt;}
.lsdb_c00001{letter-spacing:2.913920pt;}
.ls66_c00001{letter-spacing:2.944000pt;}
.ls3d1_c00001{letter-spacing:2.960000pt;}
.ls496_c00001{letter-spacing:2.986667pt;}
.ls184_c00001{letter-spacing:3.033067pt;}
.ls326_c00001{letter-spacing:3.060533pt;}
.ls33b_c00001{letter-spacing:3.066667pt;}
.ls13e_c00001{letter-spacing:3.093333pt;}
.ls1ab_c00001{letter-spacing:3.120000pt;}
.ls93_c00001{letter-spacing:3.200000pt;}
.ls306_c00001{letter-spacing:3.208960pt;}
.ls1e2_c00001{letter-spacing:3.226667pt;}
.ls304_c00001{letter-spacing:3.363520pt;}
.ls4b_c00001{letter-spacing:3.680000pt;}
.ls400_c00001{letter-spacing:15.475200pt;}
.ws11_c00001{word-spacing:-16.128640pt;}
.ws12_c00001{word-spacing:-16.099200pt;}
.ws8_c00001{word-spacing:-14.666667pt;}
.ws10_c00001{word-spacing:-14.413333pt;}
.ws9_c00001{word-spacing:-13.947093pt;}
.wse_c00001{word-spacing:-13.902187pt;}
.ws0_c00001{word-spacing:-13.837067pt;}
.wsa_c00001{word-spacing:-13.300800pt;}
.ws5_c00001{word-spacing:-13.249333pt;}
.wsf_c00001{word-spacing:-13.181653pt;}
.ws2_c00001{word-spacing:-13.125333pt;}
.ws6_c00001{word-spacing:-12.933333pt;}
.ws3_c00001{word-spacing:-12.894667pt;}
.wsd_c00001{word-spacing:-12.653653pt;}
.ws4_c00001{word-spacing:-12.316800pt;}
.ws1_c00001{word-spacing:-12.185333pt;}
.wsb_c00001{word-spacing:-12.158400pt;}
.ws7_c00001{word-spacing:0.000000pt;}
.wsc_c00001{word-spacing:466.720000pt;}
._1_c00001{margin-left:-42.097363pt;}
._7_c00001{margin-left:-25.000000pt;}
._39_c00001{margin-left:-19.080533pt;}
._3a_c00001{margin-left:-17.025067pt;}
._31_c00001{margin-left:-15.498933pt;}
._c_c00001{margin-left:-14.384000pt;}
._30_c00001{margin-left:-12.806400pt;}
._26_c00001{margin-left:-11.747040pt;}
._e_c00001{margin-left:-10.666667pt;}
._2e_c00001{margin-left:-9.453333pt;}
._2c_c00001{margin-left:-7.892960pt;}
._2f_c00001{margin-left:-6.151733pt;}
._18_c00001{margin-left:-4.544000pt;}
._f_c00001{margin-left:-3.290133pt;}
._a_c00001{margin-left:-2.069333pt;}
._b_c00001{margin-left:-1.164533pt;}
._4_c00001{width:0.956800pt;}
._3_c00001{width:2.685333pt;}
._6_c00001{width:4.089600pt;}
._10_c00001{width:5.005867pt;}
._2_c00001{width:6.333333pt;}
._9_c00001{width:7.339467pt;}
._d_c00001{width:8.414933pt;}
._8_c00001{width:10.069333pt;}
._11_c00001{width:11.746133pt;}
._12_c00001{width:12.714933pt;}
._17_c00001{width:14.285867pt;}
._16_c00001{width:15.232000pt;}
._2a_c00001{width:16.488587pt;}
._15_c00001{width:17.504000pt;}
._2d_c00001{width:18.413067pt;}
._14_c00001{width:19.398400pt;}
._21_c00001{width:20.320000pt;}
._13_c00001{width:21.477333pt;}
._23_c00001{width:22.463787pt;}
._28_c00001{width:23.815680pt;}
._20_c00001{width:24.932267pt;}
._25_c00001{width:26.516053pt;}
._22_c00001{width:27.789867pt;}
._27_c00001{width:28.869547pt;}
._24_c00001{width:30.444587pt;}
._1e_c00001{width:31.968000pt;}
._1d_c00001{width:33.152000pt;}
._1c_c00001{width:34.099200pt;}
._1f_c00001{width:35.264000pt;}
._19_c00001{width:36.441600pt;}
._1a_c00001{width:38.720000pt;}
._1b_c00001{width:40.998400pt;}
._2b_c00001{width:47.534453pt;}
._33_c00001{width:75.413867pt;}
._37_c00001{width:90.998400pt;}
._32_c00001{width:96.533013pt;}
._34_c00001{width:102.073600pt;}
._35_c00001{width:135.682133pt;}
._3b_c00001{width:174.631467pt;}
._5_c00001{width:244.298667pt;}
._0_c00001{width:255.319467pt;}
._36_c00001{width:1666.240000pt;}
._29_c00001{width:1669.113227pt;}
._38_c00001{width:1735.906133pt;}
.fs47_c00001{font-size:10.240000pt;}
.fs45_c00001{font-size:11.733867pt;}
.fs57_c00001{font-size:15.360000pt;}
.fs5d_c00001{font-size:16.640000pt;}
.fs4f_c00001{font-size:17.600533pt;}
.fs50_c00001{font-size:18.133867pt;}
.fs62_c00001{font-size:18.667200pt;}
.fs3f_c00001{font-size:19.200000pt;}
.fs4a_c00001{font-size:20.800533pt;}
.fs72_c00001{font-size:21.333333pt;}
.fs35_c00001{font-size:21.866667pt;}
.fs51_c00001{font-size:22.400000pt;}
.fs55_c00001{font-size:22.933867pt;}
.fs71_c00001{font-size:23.467200pt;}
.fs61_c00001{font-size:24.320533pt;}
.fs5b_c00001{font-size:24.533333pt;}
.fs74_c00001{font-size:25.600000pt;}
.fs5f_c00001{font-size:25.600533pt;}
.fs60_c00001{font-size:26.133867pt;}
.fs5c_c00001{font-size:27.200000pt;}
.fs44_c00001{font-size:27.733333pt;}
.fs5a_c00001{font-size:28.160000pt;}
.fs64_c00001{font-size:29.333867pt;}
.fs77_c00001{font-size:29.440533pt;}
.fs66_c00001{font-size:30.400000pt;}
.fs56_c00001{font-size:30.720000pt;}
.fs46_c00001{font-size:31.467200pt;}
.fs4e_c00001{font-size:33.066667pt;}
.fs42_c00001{font-size:34.667200pt;}
.fs76_c00001{font-size:35.200000pt;}
.fs15_c00001{font-size:35.602667pt;}
.fs6e_c00001{font-size:36.267200pt;}
.fs78_c00001{font-size:37.866667pt;}
.fs21_c00001{font-size:38.146133pt;}
.fs6f_c00001{font-size:38.400000pt;}
.fs49_c00001{font-size:40.533333pt;}
.fs6d_c00001{font-size:41.066667pt;}
.fs58_c00001{font-size:41.600533pt;}
.fs25_c00001{font-size:42.666667pt;}
.fs67_c00001{font-size:43.200000pt;}
.fs68_c00001{font-size:44.800000pt;}
.fs40_c00001{font-size:45.333333pt;}
.fs30_c00001{font-size:45.866667pt;}
.fs52_c00001{font-size:46.080000pt;}
.fs38_c00001{font-size:46.933333pt;}
.fs4b_c00001{font-size:47.360000pt;}
.fs79_c00001{font-size:47.466667pt;}
.fse_c00001{font-size:48.000000pt;}
.fs22_c00001{font-size:48.533333pt;}
.fs53_c00001{font-size:48.640000pt;}
.fs7_c00001{font-size:49.066667pt;}
.fs8_c00001{font-size:49.600000pt;}
.fs73_c00001{font-size:49.920000pt;}
.fs1f_c00001{font-size:50.133333pt;}
.fs6_c00001{font-size:50.666667pt;}
.fs3c_c00001{font-size:51.200000pt;}
.fs14_c00001{font-size:51.733333pt;}
.fs20_c00001{font-size:52.266667pt;}
.fs43_c00001{font-size:52.800000pt;}
.fs39_c00001{font-size:53.333333pt;}
.fs3d_c00001{font-size:53.866667pt;}
.fs65_c00001{font-size:54.400000pt;}
.fs6b_c00001{font-size:54.933333pt;}
.fs2d_c00001{font-size:55.466667pt;}
.fs5e_c00001{font-size:56.533333pt;}
.fs75_c00001{font-size:57.066667pt;}
.fs23_c00001{font-size:57.600000pt;}
.fs2f_c00001{font-size:58.133333pt;}
.fs0_c00001{font-size:58.666667pt;}
.fs63_c00001{font-size:59.200000pt;}
.fs6c_c00001{font-size:59.733333pt;}
.fs59_c00001{font-size:60.266667pt;}
.fs54_c00001{font-size:60.800000pt;}
.fs4d_c00001{font-size:61.333333pt;}
.fs48_c00001{font-size:61.440000pt;}
.fs3a_c00001{font-size:61.866667pt;}
.fs36_c00001{font-size:62.400000pt;}
.fs3b_c00001{font-size:62.933333pt;}
.fs6a_c00001{font-size:63.466667pt;}
.fs33_c00001{font-size:64.000000pt;}
.fs3e_c00001{font-size:64.533333pt;}
.fs26_c00001{font-size:65.066667pt;}
.fs34_c00001{font-size:65.280000pt;}
.fs37_c00001{font-size:65.600000pt;}
.fs16_c00001{font-size:67.733333pt;}
.fs7a_c00001{font-size:68.266667pt;}
.fsa_c00001{font-size:68.662400pt;}
.fs1a_c00001{font-size:68.800000pt;}
.fs41_c00001{font-size:70.400000pt;}
.fs4c_c00001{font-size:72.000000pt;}
.fs13_c00001{font-size:72.533333pt;}
.fs2a_c00001{font-size:73.066667pt;}
.fs32_c00001{font-size:73.600000pt;}
.fs2c_c00001{font-size:75.200000pt;}
.fs9_c00001{font-size:78.933333pt;}
.fsd_c00001{font-size:80.000000pt;}
.fsb_c00001{font-size:81.066667pt;}
.fs17_c00001{font-size:85.866667pt;}
.fs1b_c00001{font-size:89.600000pt;}
.fs70_c00001{font-size:91.200000pt;}
.fs2_c00001{font-size:91.733867pt;}
.fs69_c00001{font-size:94.933333pt;}
.fs27_c00001{font-size:96.533333pt;}
.fs24_c00001{font-size:99.200000pt;}
.fs1d_c00001{font-size:99.733867pt;}
.fs4_c00001{font-size:100.266667pt;}
.fs1c_c00001{font-size:103.466667pt;}
.fs2b_c00001{font-size:106.666667pt;}
.fs3_c00001{font-size:109.866667pt;}
.fs31_c00001{font-size:115.200000pt;}
.fs19_c00001{font-size:116.800000pt;}
.fs5_c00001{font-size:121.600000pt;}
.fs29_c00001{font-size:123.733867pt;}
.fs28_c00001{font-size:130.666667pt;}
.fs18_c00001{font-size:134.400533pt;}
.fs1_c00001{font-size:144.533333pt;}
.fsf_c00001{font-size:145.067200pt;}
.fs1e_c00001{font-size:162.133333pt;}
.fs12_c00001{font-size:184.000000pt;}
.fs10_c00001{font-size:200.000000pt;}
.fs2e_c00001{font-size:213.333333pt;}
.fs11_c00001{font-size:265.067200pt;}
.fsc_c00001{font-size:314.666667pt;}
.y0_c00001{bottom:0.000000pt;}
.y37_c00001{bottom:68.038800pt;}
.y25_c00001{bottom:68.665467pt;}
.y8_c00001{bottom:76.933333pt;}
.y21d_c00001{bottom:88.320000pt;}
.yea_c00001{bottom:90.240013pt;}
.y57_c00001{bottom:91.533339pt;}
.y217_c00001{bottom:92.173333pt;}
.y78_c00001{bottom:93.120013pt;}
.y150_c00001{bottom:94.080005pt;}
.y12e_c00001{bottom:94.080013pt;}
.yc7_c00001{bottom:94.400005pt;}
.y198_c00001{bottom:94.720000pt;}
.y175_c00001{bottom:95.053333pt;}
.y106_c00001{bottom:96.013339pt;}
.ya6_c00001{bottom:101.760000pt;}
.y1f7_c00001{bottom:103.040013pt;}
.y216_c00001{bottom:135.360000pt;}
.y14f_c00001{bottom:137.600005pt;}
.y1d3_c00001{bottom:137.920005pt;}
.y197_c00001{bottom:138.240000pt;}
.y1bf_c00001{bottom:138.240013pt;}
.y174_c00001{bottom:138.573333pt;}
.ya5_c00001{bottom:145.920000pt;}
.y1f6_c00001{bottom:147.520013pt;}
.y56_c00001{bottom:152.640005pt;}
.y12d_c00001{bottom:160.653347pt;}
.ye9_c00001{bottom:161.575747pt;}
.y215_c00001{bottom:162.560000pt;}
.y77_c00001{bottom:163.846413pt;}
.y14e_c00001{bottom:164.160005pt;}
.y196_c00001{bottom:165.120000pt;}
.y1be_c00001{bottom:165.440013pt;}
.y173_c00001{bottom:165.760000pt;}
.yc6_c00001{bottom:165.773339pt;}
.ya3_c00001{bottom:173.452533pt;}
.ya4_c00001{bottom:173.453333pt;}
.y1f3_c00001{bottom:174.733347pt;}
.y1f5_c00001{bottom:180.173347pt;}
.y1f4_c00001{bottom:180.174680pt;}
.y16_c00001{bottom:180.560000pt;}
.y3a_c00001{bottom:184.372133pt;}
.y24_c00001{bottom:186.918800pt;}
.y28_c00001{bottom:187.558800pt;}
.y12c_c00001{bottom:187.854013pt;}
.ye8_c00001{bottom:188.782147pt;}
.y214_c00001{bottom:189.773333pt;}
.y14d_c00001{bottom:191.360005pt;}
.y76_c00001{bottom:192.336013pt;}
.y194_c00001{bottom:192.640000pt;}
.y1bd_c00001{bottom:192.960013pt;}
.yc5_c00001{bottom:192.973339pt;}
.y172_c00001{bottom:193.293333pt;}
.y7_c00001{bottom:194.546667pt;}
.y15_c00001{bottom:195.826667pt;}
.yc4_c00001{bottom:195.853339pt;}
.y195_c00001{bottom:196.493333pt;}
.ya2_c00001{bottom:200.653333pt;}
.y39_c00001{bottom:200.905467pt;}
.y1f2_c00001{bottom:202.253347pt;}
.y55_c00001{bottom:208.013339pt;}
.y12b_c00001{bottom:214.733347pt;}
.y36_c00001{bottom:215.532133pt;}
.ye7_c00001{bottom:216.628147pt;}
.y213_c00001{bottom:216.973333pt;}
.y75_c00001{bottom:218.582947pt;}
.y14c_c00001{bottom:218.893339pt;}
.y1d2_c00001{bottom:219.213339pt;}
.y1bc_c00001{bottom:220.173347pt;}
.y193_c00001{bottom:220.493333pt;}
.y171_c00001{bottom:220.813333pt;}
.yc3_c00001{bottom:221.126539pt;}
.ya1_c00001{bottom:227.853333pt;}
.y1f1_c00001{bottom:229.440013pt;}
.y54_c00001{bottom:235.533339pt;}
.y12a_c00001{bottom:242.248013pt;}
.ye6_c00001{bottom:243.834547pt;}
.y212_c00001{bottom:244.173333pt;}
.y14b_c00001{bottom:246.080005pt;}
.y74_c00001{bottom:246.098147pt;}
.y1d1_c00001{bottom:246.413339pt;}
.yc2_c00001{bottom:247.688539pt;}
.y192_c00001{bottom:247.693333pt;}
.y1ba_c00001{bottom:247.693347pt;}
.y170_c00001{bottom:248.013333pt;}
.y1bb_c00001{bottom:254.093347pt;}
.y16f_c00001{bottom:254.400000pt;}
.ya0_c00001{bottom:254.412667pt;}
.y1f0_c00001{bottom:257.293347pt;}
.y53_c00001{bottom:262.413339pt;}
.y35_c00001{bottom:269.572133pt;}
.y129_c00001{bottom:270.093347pt;}
.y128_c00001{bottom:270.096013pt;}
.ye5_c00001{bottom:271.040947pt;}
.y211_c00001{bottom:271.373333pt;}
.y14a_c00001{bottom:273.600005pt;}
.y73_c00001{bottom:273.613347pt;}
.y191_c00001{bottom:274.893333pt;}
.y16e_c00001{bottom:275.533333pt;}
.y1b9_c00001{bottom:275.533347pt;}
.yc1_c00001{bottom:275.846539pt;}
.y1b8_c00001{bottom:278.733347pt;}
.y9f_c00001{bottom:283.533333pt;}
.y9e_c00001{bottom:283.541067pt;}
.y1ef_c00001{bottom:284.480013pt;}
.y52_c00001{bottom:289.597339pt;}
.y127_c00001{bottom:296.653347pt;}
.ye4_c00001{bottom:298.247347pt;}
.y210_c00001{bottom:298.573333pt;}
.y149_c00001{bottom:300.813339pt;}
.y1d0_c00001{bottom:301.133339pt;}
.y72_c00001{bottom:301.443747pt;}
.y1b7_c00001{bottom:302.093347pt;}
.y190_c00001{bottom:302.400000pt;}
.yc0_c00001{bottom:302.413339pt;}
.y16d_c00001{bottom:302.733333pt;}
.y9d_c00001{bottom:309.773867pt;}
.y1ee_c00001{bottom:312.000013pt;}
.y51_c00001{bottom:317.453339pt;}
.y126_c00001{bottom:324.806680pt;}
.y20f_c00001{bottom:325.773333pt;}
.ye3_c00001{bottom:326.093347pt;}
.y71_c00001{bottom:328.000013pt;}
.y70_c00001{bottom:328.002680pt;}
.y148_c00001{bottom:328.013339pt;}
.y18f_c00001{bottom:329.600000pt;}
.ybf_c00001{bottom:329.600539pt;}
.y1b6_c00001{bottom:330.253347pt;}
.y16c_c00001{bottom:330.573333pt;}
.y105_c00001{bottom:331.532272pt;}
.y9c_c00001{bottom:338.571867pt;}
.y1ed_c00001{bottom:339.533347pt;}
.y50_c00001{bottom:345.293339pt;}
.y125_c00001{bottom:351.992680pt;}
.y20e_c00001{bottom:353.280000pt;}
.ye2_c00001{bottom:353.613347pt;}
.y147_c00001{bottom:354.893339pt;}
.y1cf_c00001{bottom:355.213339pt;}
.y6f_c00001{bottom:355.533347pt;}
.ybe_c00001{bottom:356.167339pt;}
.y18e_c00001{bottom:356.493333pt;}
.y1b5_c00001{bottom:357.453347pt;}
.y104_c00001{bottom:357.763739pt;}
.y16b_c00001{bottom:358.400000pt;}
.y9b_c00001{bottom:365.127333pt;}
.y1ec_c00001{bottom:367.040013pt;}
.y4f_c00001{bottom:372.493339pt;}
.y124_c00001{bottom:379.853347pt;}
.ye1_c00001{bottom:380.813347pt;}
.y20d_c00001{bottom:381.133333pt;}
.y146_c00001{bottom:382.720005pt;}
.y1ce_c00001{bottom:383.053339pt;}
.y6e_c00001{bottom:383.692280pt;}
.y18d_c00001{bottom:384.013333pt;}
.ybd_c00001{bottom:384.013339pt;}
.y1b4_c00001{bottom:384.653347pt;}
.y16a_c00001{bottom:385.600000pt;}
.y103_c00001{bottom:385.603739pt;}
.y9a_c00001{bottom:393.279067pt;}
.y1eb_c00001{bottom:394.573347pt;}
.ye0_c00001{bottom:397.760013pt;}
.y4e_c00001{bottom:399.677339pt;}
.y1b3_c00001{bottom:401.933347pt;}
.y123_c00001{bottom:407.040013pt;}
.y38_c00001{bottom:407.532133pt;}
.y20c_c00001{bottom:408.320000pt;}
.ydf_c00001{bottom:408.333347pt;}
.y145_c00001{bottom:410.253339pt;}
.y1cd_c00001{bottom:410.560005pt;}
.y6d_c00001{bottom:410.569613pt;}
.ybc_c00001{bottom:411.522139pt;}
.y18c_c00001{bottom:411.533333pt;}
.y1b2_c00001{bottom:412.160013pt;}
.y169_c00001{bottom:412.800000pt;}
.y102_c00001{bottom:413.134405pt;}
.y13_c00001{bottom:413.253333pt;}
.y11_c00001{bottom:417.066667pt;}
.y98_c00001{bottom:420.169867pt;}
.y99_c00001{bottom:420.173333pt;}
.y1ea_c00001{bottom:421.760013pt;}
.y10_c00001{bottom:422.786667pt;}
.y122_c00001{bottom:423.373347pt;}
.yde_c00001{bottom:426.573347pt;}
.y4d_c00001{bottom:427.837339pt;}
.y12_c00001{bottom:431.053333pt;}
.y121_c00001{bottom:434.573347pt;}
.y20b_c00001{bottom:435.853333pt;}
.ydd_c00001{bottom:435.853347pt;}
.y144_c00001{bottom:437.760005pt;}
.y6c_c00001{bottom:437.760013pt;}
.ybb_c00001{bottom:438.712939pt;}
.y18b_c00001{bottom:438.720000pt;}
.y1b1_c00001{bottom:439.373347pt;}
.y168_c00001{bottom:440.333333pt;}
.y101_c00001{bottom:440.634139pt;}
.y120_c00001{bottom:445.760013pt;}
.y97_c00001{bottom:447.693333pt;}
.y1e9_c00001{bottom:449.293347pt;}
.y4c_c00001{bottom:454.717339pt;}
.y3b_c00001{bottom:459.665467pt;}
.y11f_c00001{bottom:462.080013pt;}
.y33_c00001{bottom:462.198800pt;}
.y96_c00001{bottom:463.053333pt;}
.ydc_c00001{bottom:463.373347pt;}
.y6b_c00001{bottom:464.962680pt;}
.y143_c00001{bottom:465.293339pt;}
.y21_c00001{bottom:465.386667pt;}
.y18a_c00001{bottom:465.933333pt;}
.yba_c00001{bottom:466.246939pt;}
.y1b0_c00001{bottom:466.573347pt;}
.y167_c00001{bottom:467.213333pt;}
.y100_c00001{bottom:467.840005pt;}
.y32_c00001{bottom:472.372133pt;}
.y27_c00001{bottom:473.012133pt;}
.y189_c00001{bottom:473.933333pt;}
.yf_c00001{bottom:474.920000pt;}
.y94_c00001{bottom:475.187600pt;}
.y95_c00001{bottom:475.200000pt;}
.y1e8_c00001{bottom:476.160013pt;}
.y20_c00001{bottom:476.186667pt;}
.y4b_c00001{bottom:482.253339pt;}
.y11e_c00001{bottom:489.283347pt;}
.ydb_c00001{bottom:490.567347pt;}
.y20a_c00001{bottom:490.573333pt;}
.y142_c00001{bottom:492.173339pt;}
.y1cc_c00001{bottom:492.493339pt;}
.y6a_c00001{bottom:492.493347pt;}
.y188_c00001{bottom:493.133333pt;}
.yb9_c00001{bottom:493.447339pt;}
.y1af_c00001{bottom:494.080013pt;}
.y166_c00001{bottom:494.720000pt;}
.yff_c00001{bottom:495.350939pt;}
.y31_c00001{bottom:499.078800pt;}
.y93_c00001{bottom:502.727200pt;}
.y1f_c00001{bottom:502.893333pt;}
.y1e7_c00001{bottom:504.000013pt;}
.y4a_c00001{bottom:510.413339pt;}
.y30_c00001{bottom:512.425467pt;}
.y1e_c00001{bottom:516.240000pt;}
.y11d_c00001{bottom:517.113347pt;}
.y209_c00001{bottom:518.093333pt;}
.yd9_c00001{bottom:518.410813pt;}
.yda_c00001{bottom:518.413347pt;}
.y141_c00001{bottom:519.680005pt;}
.y1cb_c00001{bottom:520.013339pt;}
.y68_c00001{bottom:520.652280pt;}
.y69_c00001{bottom:520.653347pt;}
.y187_c00001{bottom:520.973333pt;}
.yb8_c00001{bottom:521.282805pt;}
.y1ae_c00001{bottom:521.933347pt;}
.y165_c00001{bottom:522.253333pt;}
.yfe_c00001{bottom:522.881605pt;}
.y2f_c00001{bottom:523.238800pt;}
.y1d_c00001{bottom:527.053333pt;}
.y91_c00001{bottom:530.570933pt;}
.y92_c00001{bottom:530.573333pt;}
.y1e6_c00001{bottom:531.533347pt;}
.y49_c00001{bottom:537.293339pt;}
.y2e_c00001{bottom:539.772133pt;}
.y1c_c00001{bottom:543.586667pt;}
.y11c_c00001{bottom:544.330013pt;}
.y21f_c00001{bottom:544.333333pt;}
.y208_c00001{bottom:545.280000pt;}
.yd8_c00001{bottom:545.617213pt;}
.y140_c00001{bottom:546.893339pt;}
.y1ca_c00001{bottom:547.213339pt;}
.y21e_c00001{bottom:547.533333pt;}
.y67_c00001{bottom:547.533347pt;}
.y186_c00001{bottom:548.173333pt;}
.yb7_c00001{bottom:548.489205pt;}
.y1ad_c00001{bottom:549.120013pt;}
.y164_c00001{bottom:549.760000pt;}
.yfd_c00001{bottom:550.087472pt;}
.y2d_c00001{bottom:551.852133pt;}
.y1b_c00001{bottom:555.666667pt;}
.y90_c00001{bottom:557.126400pt;}
.y1e5_c00001{bottom:559.040013pt;}
.y23_c00001{bottom:561.385467pt;}
.y26_c00001{bottom:562.652133pt;}
.y48_c00001{bottom:564.797339pt;}
.y2c_c00001{bottom:566.465467pt;}
.y107_c00001{bottom:567.693333pt;}
.y6_c00001{bottom:569.013333pt;}
.y1a_c00001{bottom:570.280000pt;}
.ye_c00001{bottom:570.920000pt;}
.y11b_c00001{bottom:571.848680pt;}
.y3c_c00001{bottom:572.480000pt;}
.yd7_c00001{bottom:573.120013pt;}
.y13f_c00001{bottom:574.093339pt;}
.y1c9_c00001{bottom:574.413339pt;}
.y66_c00001{bottom:575.051213pt;}
.y185_c00001{bottom:575.680000pt;}
.yb6_c00001{bottom:575.696805pt;}
.y1ac_c00001{bottom:576.653347pt;}
.y163_c00001{bottom:576.973333pt;}
.yfc_c00001{bottom:577.293339pt;}
.yfb_c00001{bottom:577.306672pt;}
.y34_c00001{bottom:580.452133pt;}
.y8f_c00001{bottom:585.279067pt;}
.y1e4_c00001{bottom:586.573347pt;}
.y2b_c00001{bottom:589.998800pt;}
.y47_c00001{bottom:592.333339pt;}
.y19_c00001{bottom:593.813333pt;}
.y11a_c00001{bottom:599.034680pt;}
.y207_c00001{bottom:599.693333pt;}
.yd6_c00001{bottom:600.333347pt;}
.y13e_c00001{bottom:601.600005pt;}
.y1c8_c00001{bottom:601.933339pt;}
.y65_c00001{bottom:602.257080pt;}
.y184_c00001{bottom:603.213333pt;}
.yb5_c00001{bottom:603.542805pt;}
.y1ab_c00001{bottom:604.160013pt;}
.y162_c00001{bottom:604.493333pt;}
.yfa_c00001{bottom:604.806405pt;}
.y8d_c00001{bottom:612.162267pt;}
.y8e_c00001{bottom:612.173333pt;}
.y1e3_c00001{bottom:614.080013pt;}
.yd_c00001{bottom:614.146667pt;}
.y2a_c00001{bottom:616.065467pt;}
.y46_c00001{bottom:619.533339pt;}
.y18_c00001{bottom:619.880000pt;}
.y119_c00001{bottom:626.573347pt;}
.y206_c00001{bottom:627.200000pt;}
.yd5_c00001{bottom:627.853347pt;}
.y13d_c00001{bottom:628.800005pt;}
.y1c7_c00001{bottom:629.453339pt;}
.y64_c00001{bottom:629.462947pt;}
.y5_c00001{bottom:630.040000pt;}
.y183_c00001{bottom:630.400000pt;}
.yb4_c00001{bottom:630.421605pt;}
.y1aa_c00001{bottom:632.000013pt;}
.yf9_c00001{bottom:632.012272pt;}
.y161_c00001{bottom:632.013333pt;}
.y29_c00001{bottom:638.945467pt;}
.y8c_c00001{bottom:639.992267pt;}
.y1e2_c00001{bottom:641.613347pt;}
.y17_c00001{bottom:642.760000pt;}
.y4_c00001{bottom:643.400000pt;}
.y45_c00001{bottom:646.413339pt;}
.y14_c00001{bottom:651.666667pt;}
.y118_c00001{bottom:654.080013pt;}
.y205_c00001{bottom:654.400000pt;}
.yd4_c00001{bottom:655.373347pt;}
.y13c_c00001{bottom:656.333339pt;}
.y63_c00001{bottom:656.668813pt;}
.y1c6_c00001{bottom:656.973339pt;}
.yb3_c00001{bottom:657.612405pt;}
.y182_c00001{bottom:657.933333pt;}
.y1a9_c00001{bottom:659.200013pt;}
.yf8_c00001{bottom:659.218139pt;}
.y160_c00001{bottom:659.533333pt;}
.yc_c00001{bottom:663.746667pt;}
.y8b_c00001{bottom:667.193067pt;}
.y1e1_c00001{bottom:668.493347pt;}
.y117_c00001{bottom:681.293347pt;}
.y204_c00001{bottom:681.933333pt;}
.yd3_c00001{bottom:682.554013pt;}
.y13b_c00001{bottom:683.840005pt;}
.y62_c00001{bottom:684.168547pt;}
.y1c5_c00001{bottom:684.493339pt;}
.yb2_c00001{bottom:684.818805pt;}
.y181_c00001{bottom:685.453333pt;}
.y203_c00001{bottom:686.093333pt;}
.y1a8_c00001{bottom:686.720013pt;}
.yf7_c00001{bottom:686.733339pt;}
.y15f_c00001{bottom:687.360000pt;}
.y8a_c00001{bottom:694.393867pt;}
.y1e0_c00001{bottom:696.000013pt;}
.y44_c00001{bottom:701.453339pt;}
.y116_c00001{bottom:701.760013pt;}
.y115_c00001{bottom:708.813347pt;}
.y202_c00001{bottom:709.133333pt;}
.yd2_c00001{bottom:710.398413pt;}
.y13a_c00001{bottom:711.360005pt;}
.y61_c00001{bottom:711.374413pt;}
.y1c4_c00001{bottom:711.680005pt;}
.yb1_c00001{bottom:712.321605pt;}
.y180_c00001{bottom:712.960000pt;}
.y1a7_c00001{bottom:713.933347pt;}
.yf6_c00001{bottom:714.252272pt;}
.y15e_c00001{bottom:714.880000pt;}
.y89_c00001{bottom:722.240000pt;}
.y1df_c00001{bottom:723.213347pt;}
.y1a6_c00001{bottom:727.373347pt;}
.y114_c00001{bottom:727.693347pt;}
.y43_c00001{bottom:728.973339pt;}
.y1a5_c00001{bottom:733.133347pt;}
.y88_c00001{bottom:736.000000pt;}
.y113_c00001{bottom:736.000013pt;}
.y201_c00001{bottom:736.320000pt;}
.yd1_c00001{bottom:737.604813pt;}
.y60_c00001{bottom:738.564813pt;}
.y139_c00001{bottom:738.893339pt;}
.yb0_c00001{bottom:739.853339pt;}
.y17f_c00001{bottom:740.173333pt;}
.y1a4_c00001{bottom:741.453347pt;}
.yf5_c00001{bottom:741.767472pt;}
.y15d_c00001{bottom:742.400000pt;}
.y112_c00001{bottom:749.133347pt;}
.y87_c00001{bottom:749.773333pt;}
.y1de_c00001{bottom:751.053347pt;}
.y1a3_c00001{bottom:752.320013pt;}
.y42_c00001{bottom:756.493339pt;}
.y200_c00001{bottom:763.853333pt;}
.y111_c00001{bottom:763.853347pt;}
.yd0_c00001{bottom:765.450813pt;}
.y5f_c00001{bottom:766.080013pt;}
.y138_c00001{bottom:766.413339pt;}
.yaf_c00001{bottom:767.371739pt;}
.y3_c00001{bottom:767.373333pt;}
.y17e_c00001{bottom:767.693333pt;}
.y1a2_c00001{bottom:768.640013pt;}
.yf4_c00001{bottom:769.298139pt;}
.y15c_c00001{bottom:769.933333pt;}
.y110_c00001{bottom:774.720013pt;}
.y86_c00001{bottom:776.320000pt;}
.y1dd_c00001{bottom:778.240013pt;}
.y10f_c00001{bottom:781.760013pt;}
.y10e_c00001{bottom:791.053347pt;}
.y1ff_c00001{bottom:791.373333pt;}
.ycf_c00001{bottom:792.969213pt;}
.y1c3_c00001{bottom:793.600005pt;}
.y5e_c00001{bottom:793.614413pt;}
.y137_c00001{bottom:793.920005pt;}
.y17d_c00001{bottom:794.880000pt;}
.yae_c00001{bottom:794.905739pt;}
.y1a1_c00001{bottom:795.853347pt;}
.yf3_c00001{bottom:796.813339pt;}
.yf2_c00001{bottom:796.821872pt;}
.y15b_c00001{bottom:797.120000pt;}
.y84_c00001{bottom:804.473867pt;}
.y85_c00001{bottom:804.480000pt;}
.y1dc_c00001{bottom:805.760013pt;}
.y41_c00001{bottom:811.837339pt;}
.y10c_c00001{bottom:818.556680pt;}
.y1fe_c00001{bottom:818.560000pt;}
.y10d_c00001{bottom:818.560013pt;}
.y2_c00001{bottom:820.133333pt;}
.yce_c00001{bottom:820.160013pt;}
.y136_c00001{bottom:820.813339pt;}
.y5d_c00001{bottom:820.820280pt;}
.y17c_c00001{bottom:822.093333pt;}
.yad_c00001{bottom:822.424139pt;}
.y1a0_c00001{bottom:823.373347pt;}
.yf1_c00001{bottom:823.687472pt;}
.y15a_c00001{bottom:824.333333pt;}
.yb_c00001{bottom:829.680000pt;}
.y83_c00001{bottom:832.320000pt;}
.y1db_c00001{bottom:832.973347pt;}
.y40_c00001{bottom:838.733339pt;}
.ya_c00001{bottom:841.120000pt;}
.y9_c00001{bottom:844.933333pt;}
.y1fd_c00001{bottom:845.773333pt;}
.y10b_c00001{bottom:846.080013pt;}
.ycd_c00001{bottom:847.697747pt;}
.y135_c00001{bottom:848.000005pt;}
.y5c_c00001{bottom:848.320013pt;}
.y17b_c00001{bottom:849.280000pt;}
.yac_c00001{bottom:849.926939pt;}
.y19f_c00001{bottom:850.560013pt;}
.yf0_c00001{bottom:850.893339pt;}
.y159_c00001{bottom:851.533333pt;}
.y82_c00001{bottom:853.453333pt;}
.y81_c00001{bottom:859.533333pt;}
.y80_c00001{bottom:859.535333pt;}
.y1da_c00001{bottom:860.480013pt;}
.y3f_c00001{bottom:865.920005pt;}
.y158_c00001{bottom:867.853333pt;}
.y21c_c00001{bottom:871.373333pt;}
.y1fc_c00001{bottom:873.293333pt;}
.y10a_c00001{bottom:873.294013pt;}
.y134_c00001{bottom:875.213339pt;}
.y5b_c00001{bottom:875.534413pt;}
.ycc_c00001{bottom:875.543747pt;}
.y17a_c00001{bottom:876.173333pt;}
.yab_c00001{bottom:877.133339pt;}
.y19e_c00001{bottom:877.760013pt;}
.yef_c00001{bottom:878.402672pt;}
.y157_c00001{bottom:878.720000pt;}
.y3e_c00001{bottom:882.573339pt;}
.y7e_c00001{bottom:886.712933pt;}
.y7f_c00001{bottom:886.720000pt;}
.y1d9_c00001{bottom:887.693347pt;}
.y156_c00001{bottom:892.800000pt;}
.y3d_c00001{bottom:893.133339pt;}
.y21b_c00001{bottom:898.893333pt;}
.y1d8_c00001{bottom:899.213347pt;}
.y1fb_c00001{bottom:900.480000pt;}
.y109_c00001{bottom:900.480013pt;}
.ycb_c00001{bottom:902.406947pt;}
.y133_c00001{bottom:902.413339pt;}
.y5a_c00001{bottom:902.724813pt;}
.y179_c00001{bottom:903.693333pt;}
.yaa_c00001{bottom:904.320539pt;}
.yee_c00001{bottom:905.283739pt;}
.y19d_c00001{bottom:905.293347pt;}
.y155_c00001{bottom:906.253333pt;}
.y7d_c00001{bottom:913.929867pt;}
.y1d7_c00001{bottom:915.213347pt;}
.y154_c00001{bottom:922.880000pt;}
.y21a_c00001{bottom:926.400000pt;}
.y1fa_c00001{bottom:927.693333pt;}
.y132_c00001{bottom:929.600005pt;}
.yca_c00001{bottom:929.613347pt;}
.y1c2_c00001{bottom:929.920005pt;}
.y59_c00001{bottom:930.240013pt;}
.y178_c00001{bottom:930.573333pt;}
.ya9_c00001{bottom:931.214939pt;}
.y19c_c00001{bottom:932.480013pt;}
.yed_c00001{bottom:932.489605pt;}
.y153_c00001{bottom:933.453333pt;}
.y7c_c00001{bottom:941.453333pt;}
.y7b_c00001{bottom:941.455333pt;}
.y1d6_c00001{bottom:942.720013pt;}
.y19b_c00001{bottom:951.693347pt;}
.y219_c00001{bottom:953.920000pt;}
.y1f9_c00001{bottom:954.880000pt;}
.y131_c00001{bottom:956.493339pt;}
.yc9_c00001{bottom:956.813347pt;}
.y1c1_c00001{bottom:957.453339pt;}
.y177_c00001{bottom:957.773333pt;}
.y108_c00001{bottom:958.080013pt;}
.ya8_c00001{bottom:958.733339pt;}
.yec_c00001{bottom:959.680005pt;}
.y19a_c00001{bottom:960.000013pt;}
.y152_c00001{bottom:960.640000pt;}
.y130_c00001{bottom:960.653339pt;}
.y7a_c00001{bottom:968.640000pt;}
.y1d5_c00001{bottom:969.933347pt;}
.y22_c00001{bottom:1009.598800pt;}
.y1_c00001{bottom:1017.866667pt;}
.y218_c00001{bottom:1022.080000pt;}
.y1f8_c00001{bottom:1022.093333pt;}
.y12f_c00001{bottom:1024.320005pt;}
.y58_c00001{bottom:1024.320013pt;}
.yc8_c00001{bottom:1024.640013pt;}
.y1c0_c00001{bottom:1024.653339pt;}
.ya7_c00001{bottom:1025.600005pt;}
.y176_c00001{bottom:1025.613333pt;}
.yeb_c00001{bottom:1026.893339pt;}
.y199_c00001{bottom:1028.480013pt;}
.y151_c00001{bottom:1029.120000pt;}
.y79_c00001{bottom:1036.480000pt;}
.y1d4_c00001{bottom:1038.720013pt;}
.h5b_c00001{height:6.819840pt;}
.h74_c00001{height:10.229760pt;}
.h7b_c00001{height:11.082240pt;}
.h57_c00001{height:12.238056pt;}
.h82_c00001{height:16.197475pt;}
.ha7_c00001{height:17.049600pt;}
.h66_c00001{height:17.273961pt;}
.h68_c00001{height:17.797398pt;}
.h78_c00001{height:18.754560pt;}
.h83_c00001{height:19.469306pt;}
.hab_c00001{height:19.607395pt;}
.h48_c00001{height:20.025000pt;}
.h88_c00001{height:20.414586pt;}
.h73_c00001{height:20.459520pt;}
.h89_c00001{height:21.460937pt;}
.h5f_c00001{height:21.694306pt;}
.ha1_c00001{height:22.250000pt;}
.h3d_c00001{height:22.806250pt;}
.h69_c00001{height:23.362500pt;}
.h18_c00001{height:23.711376pt;}
.h71_c00001{height:23.919306pt;}
.h79_c00001{height:24.066146pt;}
.ha0_c00001{height:24.475556pt;}
.h9e_c00001{height:25.113023pt;}
.h26_c00001{height:25.405325pt;}
.h7a_c00001{height:26.682031pt;}
.h80_c00001{height:26.700556pt;}
.h81_c00001{height:27.256806pt;}
.h8a_c00001{height:28.789586pt;}
.h56_c00001{height:28.925000pt;}
.h6c_c00001{height:30.689280pt;}
.h60_c00001{height:31.541760pt;}
.h8e_c00001{height:31.706250pt;}
.h6d_c00001{height:32.394240pt;}
.h8b_c00001{height:32.453125pt;}
.h59_c00001{height:32.819306pt;}
.ha3_c00001{height:33.246720pt;}
.h5a_c00001{height:34.023961pt;}
.ha2_c00001{height:34.099200pt;}
.h65_c00001{height:34.487500pt;}
.h9b_c00001{height:35.576565pt;}
.h4f_c00001{height:36.156806pt;}
.h9c_c00001{height:36.550537pt;}
.ha9_c00001{height:36.712500pt;}
.h9d_c00001{height:37.668750pt;}
.h4a_c00001{height:38.361600pt;}
.haa_c00001{height:40.050000pt;}
.h76_c00001{height:40.808336pt;}
.h5d_c00001{height:40.919040pt;}
.h9a_c00001{height:41.387500pt;}
.h58_c00001{height:41.875000pt;}
.h75_c00001{height:41.925537pt;}
.h5e_c00001{height:42.275000pt;}
.haf_c00001{height:43.000000pt;}
.hac_c00001{height:43.388056pt;}
.h3c_c00001{height:43.476480pt;}
.had_c00001{height:43.946875pt;}
.h93_c00001{height:43.968750pt;}
.h55_c00001{height:44.492188pt;}
.h92_c00001{height:45.056250pt;}
.hae_c00001{height:45.150000pt;}
.hc_c00001{height:45.729158pt;}
.h4e_c00001{height:46.886400pt;}
.h34_c00001{height:47.109375pt;}
.h4b_c00001{height:47.281250pt;}
.h28_c00001{height:47.609115pt;}
.h36_c00001{height:47.837500pt;}
.h23_c00001{height:48.655469pt;}
.h3f_c00001{height:48.950000pt;}
.h33_c00001{height:49.203125pt;}
.hb2_c00001{height:49.506250pt;}
.h7_c00001{height:49.701823pt;}
.h8c_c00001{height:49.726562pt;}
.h10_c00001{height:50.062500pt;}
.h45_c00001{height:50.250000pt;}
.h24_c00001{height:50.525000pt;}
.h72_c00001{height:50.618750pt;}
.h17_c00001{height:50.773437pt;}
.h8_c00001{height:51.175000pt;}
.h25_c00001{height:51.271354pt;}
.h84_c00001{height:51.296875pt;}
.h7d_c00001{height:51.600000pt;}
.h9_c00001{height:51.731250pt;}
.h51_c00001{height:51.820312pt;}
.h70_c00001{height:52.137500pt;}
.hb0_c00001{height:52.287500pt;}
.h41_c00001{height:52.343750pt;}
.ha_c00001{height:52.843750pt;}
.h46_c00001{height:52.867187pt;}
.h7f_c00001{height:53.400000pt;}
.h31_c00001{height:54.437500pt;}
.ha4_c00001{height:54.512500pt;}
.h7c_c00001{height:55.484375pt;}
.ha8_c00001{height:56.007812pt;}
.h27_c00001{height:56.531250pt;}
.h8d_c00001{height:56.737500pt;}
.h35_c00001{height:57.054688pt;}
.h98_c00001{height:57.293750pt;}
.h2_c00001{height:57.578125pt;}
.h62_c00001{height:57.850000pt;}
.h87_c00001{height:58.072656pt;}
.h85_c00001{height:58.101562pt;}
.hb1_c00001{height:58.595833pt;}
.h99_c00001{height:58.625000pt;}
.ha6_c00001{height:58.962500pt;}
.h77_c00001{height:59.148438pt;}
.h86_c00001{height:59.671875pt;}
.h64_c00001{height:60.165365pt;}
.h6f_c00001{height:60.192646pt;}
.h63_c00001{height:60.195312pt;}
.h7e_c00001{height:60.688542pt;}
.h42_c00001{height:60.718750pt;}
.h43_c00001{height:60.733683pt;}
.hb4_c00001{height:61.187500pt;}
.h6b_c00001{height:61.211719pt;}
.h49_c00001{height:61.242187pt;}
.h5c_c00001{height:61.248588pt;}
.h54_c00001{height:61.261388pt;}
.h53_c00001{height:61.266188pt;}
.h52_c00001{height:61.284321pt;}
.h44_c00001{height:61.719963pt;}
.h67_c00001{height:61.765625pt;}
.h6a_c00001{height:61.784292pt;}
.h96_c00001{height:62.258073pt;}
.h3b_c00001{height:62.812500pt;}
.h47_c00001{height:63.335938pt;}
.h50_c00001{height:63.339671pt;}
.h4c_c00001{height:63.345538pt;}
.h4d_c00001{height:63.385537pt;}
.h6e_c00001{height:63.433833pt;}
.h94_c00001{height:63.802187pt;}
.h97_c00001{height:63.962500pt;}
.h3e_c00001{height:64.382813pt;}
.h8f_c00001{height:64.525000pt;}
.h91_c00001{height:65.081250pt;}
.h19_c00001{height:66.476562pt;}
.h2a_c00001{height:67.862500pt;}
.hb3_c00001{height:71.200000pt;}
.h2e_c00001{height:71.710937pt;}
.h1d_c00001{height:71.756250pt;}
.h39_c00001{height:72.234375pt;}
.h61_c00001{height:73.637500pt;}
.h30_c00001{height:73.804688pt;}
.he_c00001{height:79.522917pt;}
.hd_c00001{height:79.562500pt;}
.hb_c00001{height:82.325000pt;}
.h16_c00001{height:84.550000pt;}
.h1e_c00001{height:87.937500pt;}
.h9f_c00001{height:89.463281pt;}
.h1a_c00001{height:89.556250pt;}
.h90_c00001{height:90.681250pt;}
.h29_c00001{height:97.359375pt;}
.h20_c00001{height:97.883336pt;}
.h95_c00001{height:99.012500pt;}
.h2b_c00001{height:100.681250pt;}
.h5_c00001{height:104.575000pt;}
.h2f_c00001{height:104.687500pt;}
.h4_c00001{height:107.828125pt;}
.h1f_c00001{height:107.912500pt;}
.h11_c00001{height:114.587500pt;}
.h1c_c00001{height:114.632812pt;}
.ha5_c00001{height:119.284375pt;}
.h37_c00001{height:120.150000pt;}
.h2d_c00001{height:121.438023pt;}
.h6_c00001{height:126.825000pt;}
.h2c_c00001{height:136.281250pt;}
.h1b_c00001{height:140.175556pt;}
.h12_c00001{height:151.300556pt;}
.h21_c00001{height:169.100000pt;}
.h3_c00001{height:179.622223pt;}
.h15_c00001{height:191.906250pt;}
.h13_c00001{height:208.593750pt;}
.h32_c00001{height:209.375000pt;}
.h14_c00001{height:260.148961pt;}
.hf_c00001{height:328.187500pt;}
.h1_c00001{height:1122.666667pt;}
.h0_c00001{height:1122.754667pt;}
.h22_c00001{height:1122.754800pt;}
.h38_c00001{height:1122.880000pt;}
.h3a_c00001{height:1122.880005pt;}
.h40_c00001{height:1122.880013pt;}
.w1_c00001{width:793.333333pt;}
.w2_c00001{width:793.430133pt;}
.w0_c00001{width:793.430667pt;}
.w4_c00001{width:793.599999pt;}
.w3_c00001{width:793.600000pt;}
.w5_c00001{width:793.600013pt;}
.x0_c00001{left:0.000000pt;}
.xa7_c00001{left:94.786680pt;}
.xa3_c00001{left:95.823213pt;}
.xa0_c00001{left:96.893347pt;}
.x4e_c00001{left:97.901332pt;}
.x4d_c00001{left:98.861332pt;}
.x4a_c00001{left:100.346665pt;}
.x5e_c00001{left:101.688547pt;}
.x51_c00001{left:102.586680pt;}
.x53_c00001{left:103.506680pt;}
.xaf_c00001{left:104.600013pt;}
.xea_c00001{left:107.746680pt;}
.xed_c00001{left:109.306667pt;}
.x86_c00001{left:110.239999pt;}
.xdc_c00001{left:112.146680pt;}
.xd0_c00001{left:116.080000pt;}
.x3b_c00001{left:121.571467pt;}
.xc0_c00001{left:123.133332pt;}
.xe0_c00001{left:125.839999pt;}
.xc7_c00001{left:127.360000pt;}
.xa1_c00001{left:133.920013pt;}
.xa4_c00001{left:142.573347pt;}
.xc8_c00001{left:144.000000pt;}
.x54_c00001{left:144.933347pt;}
.x48_c00001{left:147.746665pt;}
.x56_c00001{left:152.293347pt;}
.xac_c00001{left:153.266665pt;}
.xd2_c00001{left:154.400000pt;}
.xd4_c00001{left:155.386667pt;}
.x4f_c00001{left:156.613332pt;}
.x60_c00001{left:158.893333pt;}
.x3c_c00001{left:160.798133pt;}
.xa9_c00001{left:162.573332pt;}
.x7_c00001{left:163.880000pt;}
.x5b_c00001{left:167.613347pt;}
.xde_c00001{left:169.226665pt;}
.xc1_c00001{left:170.559999pt;}
.xd5_c00001{left:174.640000pt;}
.xd_c00001{left:175.853333pt;}
.x31_c00001{left:176.744800pt;}
.x52_c00001{left:178.120013pt;}
.x57_c00001{left:181.306680pt;}
.x66_c00001{left:183.546667pt;}
.x61_c00001{left:185.453333pt;}
.x58_c00001{left:188.413347pt;}
.xdb_c00001{left:191.680013pt;}
.x3_c00001{left:195.200000pt;}
.xd3_c00001{left:198.093333pt;}
.xce_c00001{left:199.053333pt;}
.x87_c00001{left:200.533332pt;}
.xc9_c00001{left:202.893333pt;}
.x62_c00001{left:204.120000pt;}
.x55_c00001{left:205.800013pt;}
.x88_c00001{left:207.093332pt;}
.xd8_c00001{left:208.000013pt;}
.xee_c00001{left:208.960000pt;}
.xc5_c00001{left:210.280000pt;}
.x6_c00001{left:211.600000pt;}
.xe1_c00001{left:213.693332pt;}
.xb1_c00001{left:216.960013pt;}
.x4_c00001{left:218.893333pt;}
.x89_c00001{left:221.933332pt;}
.x6c_c00001{left:223.213333pt;}
.xe2_c00001{left:225.186665pt;}
.x8a_c00001{left:226.586665pt;}
.x8_c00001{left:228.280000pt;}
.xd1_c00001{left:234.253333pt;}
.x59_c00001{left:236.506680pt;}
.x9_c00001{left:240.253333pt;}
.xc4_c00001{left:241.573332pt;}
.x6d_c00001{left:242.840000pt;}
.xd9_c00001{left:243.866680pt;}
.x32_c00001{left:245.904800pt;}
.x80_c00001{left:249.879999pt;}
.xda_c00001{left:252.160013pt;}
.xca_c00001{left:257.906667pt;}
.xa_c00001{left:259.920000pt;}
.x5a_c00001{left:262.106680pt;}
.x8b_c00001{left:263.066665pt;}
.xe8_c00001{left:265.786680pt;}
.xd7_c00001{left:267.066680pt;}
.xe3_c00001{left:274.626665pt;}
.xe9_c00001{left:277.760013pt;}
.x7d_c00001{left:278.893333pt;}
.x63_c00001{left:280.493333pt;}
.xef_c00001{left:286.240000pt;}
.x3d_c00001{left:287.864800pt;}
.x39_c00001{left:290.318133pt;}
.x75_c00001{left:292.333333pt;}
.xe_c00001{left:294.773333pt;}
.x7e_c00001{left:297.920000pt;}
.xe6_c00001{left:298.893347pt;}
.x64_c00001{left:300.346667pt;}
.xe7_c00001{left:302.400013pt;}
.xb_c00001{left:303.680000pt;}
.x3e_c00001{left:305.091467pt;}
.x3a_c00001{left:307.664800pt;}
.x65_c00001{left:308.986667pt;}
.x4b_c00001{left:310.306665pt;}
.x76_c00001{left:311.640000pt;}
.xf_c00001{left:312.693333pt;}
.x7b_c00001{left:319.533333pt;}
.xc_c00001{left:320.960000pt;}
.x8c_c00001{left:326.293332pt;}
.x79_c00001{left:328.506667pt;}
.x10_c00001{left:330.266667pt;}
.x5_c00001{left:335.706667pt;}
.xb0_c00001{left:337.480013pt;}
.x7c_c00001{left:339.066667pt;}
.x6a_c00001{left:343.533333pt;}
.x8d_c00001{left:345.399999pt;}
.x47_c00001{left:350.240000pt;}
.x1_c00001{left:354.680000pt;}
.x38_c00001{left:355.944800pt;}
.x6b_c00001{left:362.520000pt;}
.x81_c00001{left:370.226665pt;}
.xa8_c00001{left:374.986680pt;}
.x9f_c00001{left:377.226665pt;}
.x50_c00001{left:378.199999pt;}
.x5f_c00001{left:379.146680pt;}
.x7f_c00001{left:380.426667pt;}
.x3f_c00001{left:381.411467pt;}
.x11_c00001{left:383.960000pt;}
.xf3_c00001{left:385.240000pt;}
.xad_c00001{left:388.586665pt;}
.x82_c00001{left:389.759999pt;}
.xaa_c00001{left:391.533332pt;}
.xf2_c00001{left:392.960000pt;}
.x30_c00001{left:394.238133pt;}
.xf0_c00001{left:399.893333pt;}
.xf1_c00001{left:401.440000pt;}
.x83_c00001{left:405.106665pt;}
.xae_c00001{left:406.239999pt;}
.x8e_c00001{left:410.679999pt;}
.xab_c00001{left:412.986665pt;}
.xc6_c00001{left:416.320000pt;}
.x2_c00001{left:417.493333pt;}
.x8f_c00001{left:426.146665pt;}
.x77_c00001{left:427.053333pt;}
.x90_c00001{left:430.186665pt;}
.xbd_c00001{left:431.226680pt;}
.x91_c00001{left:437.973332pt;}
.xeb_c00001{left:438.946667pt;}
.xbe_c00001{left:443.200013pt;}
.xec_c00001{left:444.480000pt;}
.x78_c00001{left:446.080000pt;}
.x43_c00001{left:448.731467pt;}
.x1d_c00001{left:450.640000pt;}
.x23_c00001{left:455.493333pt;}
.x42_c00001{left:457.384800pt;}
.x13_c00001{left:459.346667pt;}
.x44_c00001{left:462.144800pt;}
.x1e_c00001{left:463.226667pt;}
.x92_c00001{left:466.159999pt;}
.x29_c00001{left:467.866667pt;}
.x12_c00001{left:470.013333pt;}
.x1b_c00001{left:472.680000pt;}
.x84_c00001{left:475.159999pt;}
.xb3_c00001{left:483.386680pt;}
.xe4_c00001{left:487.373347pt;}
.x93_c00001{left:489.506665pt;}
.xe5_c00001{left:490.880013pt;}
.x2a_c00001{left:492.080000pt;}
.x94_c00001{left:493.799999pt;}
.xb4_c00001{left:495.360013pt;}
.x1c_c00001{left:499.480000pt;}
.x67_c00001{left:502.573333pt;}
.x14_c00001{left:506.706667pt;}
.x95_c00001{left:508.706665pt;}
.x2b_c00001{left:514.333333pt;}
.x1f_c00001{left:516.133333pt;}
.x25_c00001{left:517.533333pt;}
.x24_c00001{left:518.666667pt;}
.x68_c00001{left:523.040000pt;}
.x96_c00001{left:525.959999pt;}
.x2c_c00001{left:531.360000pt;}
.x33_c00001{left:532.744800pt;}
.xb5_c00001{left:539.706680pt;}
.x6e_c00001{left:541.933333pt;}
.x97_c00001{left:544.226665pt;}
.x15_c00001{left:548.666667pt;}
.xb6_c00001{left:551.680013pt;}
.x85_c00001{left:555.533332pt;}
.x20_c00001{left:559.400000pt;}
.x6f_c00001{left:561.786667pt;}
.x98_c00001{left:563.066665pt;}
.x34_c00001{left:564.371467pt;}
.x2d_c00001{left:572.800000pt;}
.x21_c00001{left:574.493333pt;}
.x5c_c00001{left:577.466680pt;}
.x72_c00001{left:579.373333pt;}
.x45_c00001{left:580.318133pt;}
.x35_c00001{left:581.664800pt;}
.x2e_c00001{left:585.266667pt;}
.x16_c00001{left:586.586667pt;}
.x99_c00001{left:589.146665pt;}
.x40_c00001{left:591.211467pt;}
.x22_c00001{left:592.426667pt;}
.x17_c00001{left:594.013333pt;}
.x5d_c00001{left:595.373347pt;}
.x9a_c00001{left:600.546665pt;}
.x73_c00001{left:602.066667pt;}
.x27_c00001{left:604.506667pt;}
.x18_c00001{left:605.706667pt;}
.x41_c00001{left:609.358133pt;}
.x36_c00001{left:611.838133pt;}
.x9b_c00001{left:612.893332pt;}
.x19_c00001{left:614.213333pt;}
.x1a_c00001{left:617.200000pt;}
.x26_c00001{left:619.373333pt;}
.x7a_c00001{left:620.573333pt;}
.x28_c00001{left:622.080000pt;}
.xcc_c00001{left:624.146667pt;}
.xa6_c00001{left:626.573347pt;}
.x69_c00001{left:627.533333pt;}
.xa2_c00001{left:630.560013pt;}
.x9c_c00001{left:632.533332pt;}
.x9d_c00001{left:637.146665pt;}
.xdf_c00001{left:639.839999pt;}
.x70_c00001{left:643.693333pt;}
.x46_c00001{left:644.824800pt;}
.xcd_c00001{left:648.080000pt;}
.xc2_c00001{left:650.466665pt;}
.x74_c00001{left:651.533333pt;}
.xbf_c00001{left:652.573332pt;}
.xcf_c00001{left:654.520000pt;}
.x9e_c00001{left:655.586665pt;}
.xbc_c00001{left:657.506680pt;}
.xba_c00001{left:658.573347pt;}
.xbb_c00001{left:659.853347pt;}
.xb9_c00001{left:660.920013pt;}
.xb2_c00001{left:662.586680pt;}
.x71_c00001{left:663.866667pt;}
.x4c_c00001{left:664.839999pt;}
.xc3_c00001{left:666.719999pt;}
.xb8_c00001{left:668.626680pt;}
.xb7_c00001{left:669.946680pt;}
.xdd_c00001{left:670.960013pt;}
.xcb_c00001{left:673.840000pt;}
.xa5_c00001{left:674.933347pt;}
.x49_c00001{left:676.479999pt;}
.xd6_c00001{left:678.266680pt;}
.xf5_c00001{left:755.000000pt;}
.xf4_c00001{left:755.933333pt;}
.x37_c00001{left:778.318133pt;}
.x2f_c00001{left:779.520000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  